[
  {
    "path": ".flake8",
    "content": "[flake8]\nignore = E501,W503\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "*Issue #, if available:*\n\n*Description of changes:*\n\n\nBy submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.\n"
  },
  {
    "path": ".github/workflows/test_pull_request.yml",
    "content": "# Controls when the action will run. Triggers the workflow on push or pull request\n# events but only for the main branch and changes in folder src-python\nname: Test-Pull-Request\non:\n  pull_request:\n    types: [assigned, opened, synchronize, reopened]\n    paths:\n      - src-python\n\n  workflow_dispatch:\n\n# Run the tests\njobs:\n  build:\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        python-version: [\"3.8\", \"3.9\", \"3.10\", \"3.11\"]\n    defaults:\n      run:\n        working-directory: ./src-python\n\n    steps:\n      # Checks out the repository\n      - uses: actions/checkout@v3\n      - name: Set up Python ${{ matrix.python-version }}\n        uses: actions/setup-python@v4\n        with:\n          python-version: ${{ matrix.python-version }}\n\n      # Install package locally\n      - name: Install package\n        run: pip install -e .\n\n      # Install dev dependencies\n      - name: Install dependencies\n        run: pip install -r ./extras/dev.txt\n\n      # Run tests\n      - name: Test\n        run: pytest\n"
  },
  {
    "path": ".idea/amazon-textract-response-parser.iml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module type=\"PYTHON_MODULE\" version=\"4\">\n  <component name=\"NewModuleRootManager\">\n    <content url=\"file://$MODULE_DIR$\">\n      <excludeFolder url=\"file://$MODULE_DIR$/venv\" />\n    </content>\n    <orderEntry type=\"jdk\" jdkName=\"Python 3.8 (venv)\" jdkType=\"Python SDK\" />\n    <orderEntry type=\"sourceFolder\" forTests=\"false\" />\n  </component>\n  <component name=\"PyDocumentationSettings\">\n    <option name=\"format\" value=\"EPYTEXT\" />\n    <option name=\"myDocStringFormat\" value=\"Epytext\" />\n  </component>\n  <component name=\"TestRunnerService\">\n    <option name=\"PROJECT_TEST_RUNNER\" value=\"py.test\" />\n  </component>\n</module>"
  },
  {
    "path": ".idea/inspectionProfiles/profiles_settings.xml",
    "content": "<component name=\"InspectionProjectProfileManager\">\n  <settings>\n    <option name=\"USE_PROJECT_PROFILE\" value=\"false\" />\n    <version value=\"1.0\" />\n  </settings>\n</component>"
  },
  {
    "path": ".idea/misc.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"ProjectRootManager\" version=\"2\" project-jdk-name=\"Python 3.8 (venv)\" project-jdk-type=\"Python SDK\" />\n</project>"
  },
  {
    "path": ".idea/modules.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"ProjectModuleManager\">\n    <modules>\n      <module fileurl=\"file://$PROJECT_DIR$/.idea/amazon-textract-response-parser.iml\" filepath=\"$PROJECT_DIR$/.idea/amazon-textract-response-parser.iml\" />\n    </modules>\n  </component>\n</project>"
  },
  {
    "path": ".idea/vcs.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"VcsDirectoryMappings\">\n    <mapping directory=\"$PROJECT_DIR$\" vcs=\"Git\" />\n  </component>\n</project>"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "## Code of Conduct\nThis project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).\nFor more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact\nopensource-codeofconduct@amazon.com with any additional questions or comments.\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing Guidelines\n\nThank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional\ndocumentation, we greatly value feedback and contributions from our community.\n\nPlease read through this document before submitting any issues or pull requests to ensure we have all the necessary\ninformation to effectively respond to your bug report or contribution.\n\n\n## Reporting Bugs/Feature Requests\n\nWe welcome you to use the GitHub issue tracker to report bugs or suggest features.\n\nWhen filing an issue, please check [existing open](https://github.com/aws-samples/amazon-textract-response-parser/issues), or [recently closed](https://github.com/aws-samples/amazon-textract-response-parser/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already\nreported the issue. Please try to include as much information as you can. Details like these are incredibly useful:\n\n* A reproducible test case or series of steps\n* The version of our code being used\n* Any modifications you've made relevant to the bug\n* Anything unusual about your environment or deployment\n\n\n## Contributing via Pull Requests\nContributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:\n\n1. You are working against the latest source on the *master* branch.\n2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.\n3. You open an issue to discuss any significant work - we would hate for your time to be wasted.\n\nTo send us a pull request, please:\n\n1. Fork the repository.\n2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.\n3. Ensure local tests pass.\n4. Commit to your fork using clear commit messages.\n5. Send us a pull request, answering any default questions in the pull request interface.\n6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.\n\nGitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and\n[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).\n\n\n## Finding contributions to work on\nLooking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-samples/amazon-textract-response-parser/labels/help%20wanted) issues is a great place to start.\n\n\n## Code of Conduct\nThis project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).\nFor more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact\nopensource-codeofconduct@amazon.com with any additional questions or comments.\n\n\n## Security issue notifications\nIf you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.\n\n\n## Licensing\n\nSee the [LICENSE](https://github.com/aws-samples/amazon-textract-response-parser/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.\n\nWe may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.\n"
  },
  {
    "path": "LICENSE",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n"
  },
  {
    "path": "README.md",
    "content": "# Textract Response Parser\n\nYou can use Textract response parser library to easily parse JSON returned by Amazon Textract. The library parses JSON and provides programming language specific constructs to work with different parts of the document. [textractor](https://github.com/aws-samples/amazon-textract-textractor) is an example of a PoC batch processing tool that takes advantage of the Textract response parser library and generates output in multiple formats.\n\n## Python Usage\n\nFor documentation on usage see: [src-python/README.md](src-python/README.md)\n\n## JavaScript/TypeScript Usage\n\nFor documentation on usage see: [src-js/README.md](src-js/README.md)\n\n## C# Usage\n\n### Forms\n\n```csharp\ndocument.Pages.ForEach(page => {\n    Console.WriteLine(\"Print Lines and Words:\");\n    page.Lines.ForEach(line => {\n        Console.WriteLine(\"{0}--{1}\", line.Text, line.Confidence);\n        line.Words.ForEach(word => {\n            Console.WriteLine(\"{0}--{1}\", word.Text, word.Confidence);\n        });\n    });\n    Console.WriteLine(\"Print Fields:\");\n    page.Form.Fields.ForEach(f => {\n        Console.WriteLine(\"Field: Key: {0}, Value {1}\", f.Key, f.Value);\n    });\n    Console.WriteLine(\"Get Field by Key:\");\n    var key = \"Phone Number:\";\n    var field = page.Form.GetFieldByKey(key);\n    if(field != null) {\n        Console.WriteLine(\"Field: Key: {0}, Value: {1}\", field.Key, field.Value);\n    }\n});\n```\n\n### Tables\n\n```csharp\ndocument.Pages.ForEach(page => {\n    page.Tables.ForEach(table => {\n        var r = 0;\n        table.Rows.ForEach(row => {\n            r++;\n            var c = 0;\n            row.Cells.ForEach(cell => {\n                c++;\n                Console.WriteLine(\"Table [{0}][{1}] = {2}--{3}\", r, c, cell.Text, cell.Confidence);\n            });\n        });\n    });\n});\n```\n\nCheck out the `src-csharp` folder for instructions on how to run [.NET Core C#](src-csharp/readme.md) samples\n\n## Other Resources\n\n- [Large scale document processing with Amazon Textract - Reference Architecture](https://github.com/aws-samples/amazon-textract-serverless-large-scale-document-processing)\n- [Batch processing tool](https://github.com/aws-samples/amazon-textract-textractor)\n- [Code samples](https://github.com/aws-samples/amazon-textract-code-samples)\n\n## License Summary\n\nThis sample code is made available under the Apache License V2.0 license. See the LICENSE file.\n\n"
  },
  {
    "path": "src-csharp/LICENSE",
    "content": "Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
  },
  {
    "path": "src-csharp/Program.cs",
    "content": "﻿using System;\r\nusing Microsoft.Extensions.Configuration;\r\nusing Amazon.Textract;\r\nusing Amazon.Textract.Model;\r\nusing System.Collections.Generic;\r\nusing System.Threading.Tasks;\r\n\r\nnamespace parser {\r\n\tclass Program {\r\n\t\tconst string BucketName = \"<your-bucket-name>\";\r\n\t\tconst string FormFile = \"employmentapp.png\";\r\n\t\tstatic void Main(string[] args) {\r\n\t\t\tvar textractAnalysisClient = BuildTextractClient();\r\n\t\t\tvar document = PrepareDocument(textractAnalysisClient, \"FORMS\");\r\n\t\t\tdocument.Pages.ForEach(page => {\r\n\t\t\t\tConsole.WriteLine(\"Print Lines and Words:\");\r\n\t\t\t\tpage.Lines.ForEach(line => {\r\n\t\t\t\t\tConsole.WriteLine(\"{0}--{1}\", line.Text, line.Confidence);\r\n\t\t\t\t\tline.Words.ForEach(word => {\r\n\t\t\t\t\t\tConsole.WriteLine(\"{0}--{1}\", word.Text, word.Confidence);\r\n\t\t\t\t\t});\r\n\t\t\t\t});\r\n\t\t\t\tConsole.WriteLine(\"Print Fields:\");\r\n\t\t\t\tpage.Form.Fields.ForEach(f => {\r\n\t\t\t\t\tConsole.WriteLine(\"Field: Key: {0}, Value {1}\", f.Key, f.Value);\r\n\t\t\t\t});\r\n\t\t\t\tConsole.WriteLine(\"Get Field by Key:\");\r\n\t\t\t\tvar key = \"Phone Number:\";\r\n\t\t\t\tvar field = page.Form.GetFieldByKey(key);\r\n\t\t\t\tif(field != null) {\r\n\t\t\t\t\tConsole.WriteLine(\"Field: Key: {0}, Value: {1}\", field.Key, field.Value);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\r\n\t\t\tdocument = PrepareDocument(textractAnalysisClient, \"TABLES\");\r\n\t\t\tdocument.Pages.ForEach(page => {\r\n\t\t\t\tpage.Tables.ForEach(table => {\r\n\t\t\t\t\tvar r = 0;\r\n\t\t\t\t\ttable.Rows.ForEach(row => {\r\n\t\t\t\t\t\tr++;\r\n\t\t\t\t\t\tvar c = 0;\r\n\t\t\t\t\t\trow.Cells.ForEach(cell => {\r\n\t\t\t\t\t\t\tc++;\r\n\t\t\t\t\t\t\tConsole.WriteLine(\"Table [{0}][{1}] = {2}--{3}\", r, c, cell.Text, cell.Confidence);\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t});\r\n\t\t\t\t});\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tstatic TextractDocument PrepareDocument(TextractTextAnalysisService textractAnalysisClient, string type) {\r\n\t\t\tvar task = textractAnalysisClient.StartDocumentAnalysis(BucketName, FormFile, type);\r\n\t\t\tvar jobId = task.Result;\r\n\t\t\ttextractAnalysisClient.WaitForJobCompletion(jobId);\r\n\t\t\tvar results = textractAnalysisClient.GetJobResults(jobId);\r\n\t\t\treturn new TextractDocument(results);\r\n\t\t}\r\n\r\n\t\tstatic TextractTextAnalysisService BuildTextractClient() {\r\n\t\t\tvar builder = new ConfigurationBuilder()\r\n\t\t\t\t.SetBasePath(Environment.CurrentDirectory)\r\n\t\t\t\t.AddJsonFile(\"appsettings.json\", optional: false, reloadOnChange: true)\r\n\t\t\t\t.AddEnvironmentVariables()\r\n\t\t\t\t.Build();\r\n\t\t\tvar awsOptions = builder.GetAWSOptions();\r\n\t\t\treturn new TextractTextAnalysisService(awsOptions.CreateServiceClient<IAmazonTextract>());\r\n\t\t}\r\n\t}\r\n\r\n\tpublic class TextractTextAnalysisService {\r\n\t\tprivate IAmazonTextract textract;\r\n\t\tpublic TextractTextAnalysisService(IAmazonTextract textract) {\r\n\t\t\tthis.textract = textract;\r\n\t\t}\r\n\t\tpublic GetDocumentAnalysisResponse GetJobResults(string jobId) {\r\n\t\t\tvar response = this.textract.GetDocumentAnalysisAsync(new GetDocumentAnalysisRequest {\r\n\t\t\t\tJobId = jobId\r\n\t\t\t});\r\n\t\t\tresponse.Wait();\r\n\t\t\treturn response.Result;\r\n\t\t}\r\n\r\n\t\tpublic bool IsJobComplete(string jobId) {\r\n\t\t\tvar response = this.textract.GetDocumentAnalysisAsync(new GetDocumentAnalysisRequest {\r\n\t\t\t\tJobId = jobId\r\n\t\t\t});\r\n\t\t\tresponse.Wait();\r\n\t\t\treturn !response.Result.JobStatus.Equals(\"IN_PROGRESS\");\r\n\t\t}\r\n\r\n\t\tpublic async Task<string> StartDocumentAnalysis(string bucketName, string key, string featureType) {\r\n\t\t\tvar request = new StartDocumentAnalysisRequest();\r\n\t\t\tvar s3Object = new S3Object {\r\n\t\t\t\tBucket = bucketName,\r\n\t\t\t\tName = key\r\n\t\t\t};\r\n\t\t\trequest.DocumentLocation = new DocumentLocation {\r\n\t\t\t\tS3Object = s3Object\r\n\t\t\t};\r\n\t\t\trequest.FeatureTypes = new List<string> { featureType };\r\n\t\t\tvar response = await this.textract.StartDocumentAnalysisAsync(request);\r\n\t\t\treturn response.JobId;\r\n\t\t}\r\n\r\n\t\tpublic void WaitForJobCompletion(string jobId, int delay = 5000) {\r\n\t\t\twhile(!IsJobComplete(jobId)) {\r\n\t\t\t\tthis.Wait(delay);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tprivate void Wait(int delay = 5000) {\r\n\t\t\tTask.Delay(delay).Wait();\r\n\t\t\tConsole.Write(\".\");\r\n\t\t}\r\n\t}\r\n}\r\n"
  },
  {
    "path": "src-csharp/README.md",
    "content": "# Usage\n\n## Forms\n\n```csharp\ndocument.Pages.ForEach(page => {\n    Console.WriteLine(\"Print Lines and Words:\");\n    page.Lines.ForEach(line => {\n        Console.WriteLine(\"{0}--{1}\", line.Text, line.Confidence);\n        line.Words.ForEach(word => {\n            Console.WriteLine(\"{0}--{1}\", word.Text, word.Confidence);\n        });\n    });\n    Console.WriteLine(\"Print Fields:\");\n    page.Form.Fields.ForEach(f => {\n        Console.WriteLine(\"Field: Key: {0}, Value {1}\", f.Key, f.Value);\n    });\n    Console.WriteLine(\"Get Field by Key:\");\n    var key = \"Phone Number:\";\n    var field = page.Form.GetFieldByKey(key);\n    if(field != null) {\n        Console.WriteLine(\"Field: Key: {0}, Value: {1}\", field.Key, field.Value);\n    }\n});\n```\n\n## Tables\n\n```csharp\ndocument.Pages.ForEach(page => {\n    page.Tables.ForEach(table => {\n        var r = 0;\n        table.Rows.ForEach(row => {\n            r++;\n            var c = 0;\n            row.Cells.ForEach(cell => {\n                c++;\n                Console.WriteLine(\"Table [{0}][{1}] = {2}--{3}\", r, c, cell.Text, cell.Confidence);\n            });\n        });\n    });\n});\n```\n\n# Test\n\n## Prerequisites\n\n- [Install](https://dotnet.microsoft.com/download) .NET Core\n- [Install](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html)\n  and\n  [Configure](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html)\n  AWS CLI\n\nThen\n\n- Download source code to your local machine\n- Run the following at a command line inside the source code folder to execute\n\n```\ndotnet run\n```\n\n# Extra\n\nupload file to S3\n\n```\naws s3 cp test-files/employmentapp.png s3://<your-s3-bucket>\n```\n"
  },
  {
    "path": "src-csharp/TextractExtensions.cs",
    "content": "using System;\nusing System.Collections.Generic;\n\nnamespace Amazon.Textract.Model {\n\n\tpublic class Word {\n\t\tpublic Word(Block block, List<Block> blocks) {\n\t\t\tthis.Block = block;\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.Text = block == null ? string.Empty : block.Text;\n\t\t}\n\n\t\tpublic Block Block { get; set; }\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\t\tpublic string Text { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\treturn Text;\n\t\t}\n\t}\n\n\tpublic class TextractDocument {\n\t\tprivate List<Block> blockMap = new List<Block>();\n\t\tList<List<Block>> documentPages = new List<List<Block>>();\n\n\t\tpublic TextractDocument(GetDocumentAnalysisResponse response) {\n\t\t\tthis.Pages = new List<Page>();\n\t\t\tthis.ResponsePages = new List<GetDocumentAnalysisResponse>();\n\t\t\tthis.ResponsePages.Add(response);\n\n\t\t\tthis.ParseDocumentPagesAndBlockMap();\n\t\t\tthis.Parse();\n\t\t}\n\n\t\tprivate void ParseDocumentPagesAndBlockMap() {\n\t\t\tList<Block> documentPage = null;\n\t\t\tthis.ResponsePages.ForEach(page => {\n\t\t\t\tpage.Blocks.ForEach(block => {\n\t\t\t\t\tthis.blockMap.Add(block);\n\n\t\t\t\t\tif(block.BlockType == \"PAGE\") {\n\t\t\t\t\t\tif(documentPage != null) {\n\t\t\t\t\t\t\tthis.documentPages.Add(documentPage);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdocumentPage = new List<Block>();\n\t\t\t\t\t\tdocumentPage.Add(block);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdocumentPage.Add(block);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t});\n\n\t\t\tif(documentPage != null) {\n\t\t\t\tthis.documentPages.Add(documentPage);\n\t\t\t}\n\n\t\t}\n\n\t\tprivate void Parse() {\n\t\t\tthis.documentPages.ForEach(documentPage => {\n\t\t\t\tvar page = new Page(documentPage, this.blockMap);\n\t\t\t\tthis.Pages.Add(page);\n\t\t\t});\n\t\t}\n\n\t\tpublic Block GetBlockById(string blockId) {\n\t\t\treturn this.blockMap.Find(x => x.Id == blockId);\n\t\t}\n\n\t\tpublic List<GetDocumentAnalysisResponse> ResponsePages { get; set; }\n\t\tpublic List<Page> Pages { get; set; }\n\t\tpublic List<List<Block>> PageBlocks {\n\t\t\tget {\n\t\t\t\treturn this.documentPages;\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic class Table {\n\t\tpublic Table(Block block, List<Block> blocks) {\n\t\t\tthis.Block = block;\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.Rows = new List<Row>();\n\t\t\tvar ri = 1;\n\t\t\tvar row = new Row();\n\n\t\t\tvar relationships = block.Relationships;\n\t\t\tif(relationships != null && relationships.Count > 0) {\n\t\t\t\trelationships.ForEach(r => {\n\t\t\t\t\tif(r.Type == \"CHILD\") {\n\t\t\t\t\t\tr.Ids.ForEach(id => {\n\t\t\t\t\t\t\tvar cell = new Cell(blocks.Find(b => b.Id == id), blocks);\n\t\t\t\t\t\t\tif(cell.RowIndex > ri) {\n\t\t\t\t\t\t\t\tthis.Rows.Add(row);\n\t\t\t\t\t\t\t\trow = new Row();\n\t\t\t\t\t\t\t\tri = cell.RowIndex;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\trow.Cells.Add(cell);\n\t\t\t\t\t\t});\n\t\t\t\t\t\tif(row != null && row.Cells.Count > 0)\n\t\t\t\t\t\t\tthis.Rows.Add(row);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tpublic List<Row> Rows { get; set; }\n\t\tpublic Block Block { get; set; }\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\tvar result = new List<string>();\n\t\t\tresult.Add(string.Format(\"Table{0}===={0}\", Environment.NewLine));\n\t\t\tthis.Rows.ForEach(r => {\n\t\t\t\tresult.Add(string.Format(\"Row{0}===={0}{1}{0}\", Environment.NewLine, r));\n\t\t\t});\n\t\t\treturn string.Join(\"\", result);\n\t\t}\n\t}\n\n\tpublic class SelectionElement {\n\t\tpublic SelectionElement(Block block, List<Block> blocks) {\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.SelectionStatus = block.SelectionStatus;\n\t\t}\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\t\tpublic string SelectionStatus { get; set; }\n\n\t}\n\n\tpublic class Row {\n\t\tpublic Row() {\n\t\t\tthis.Cells = new List<Cell>();\n\t\t}\n\t\tpublic List<Cell> Cells { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\tvar result = new List<string>();\n\t\t\tthis.Cells.ForEach(c => {\n\t\t\t\tresult.Add(string.Format(\"[{0}]\", c));\n\t\t\t});\n\t\t\treturn string.Join(\"\", result);\n\t\t}\n\t}\n\n\tpublic class Page {\n\t\tpublic Page(List<Block> blocks, List<Block> blockMap) {\n\t\t\tthis.Blocks = blocks;\n\t\t\tthis.Text = string.Empty;\n\t\t\tthis.Lines = new List<Line>();\n\t\t\tthis.Form = new Form();\n\t\t\tthis.Tables = new List<Table>();\n\t\t\tthis.Content = new List<dynamic>();\n\n\t\t\tblocks.ForEach(b => {\n\t\t\t\tif(b.BlockType == \"PAGE\") {\n\t\t\t\t\tthis.Geometry = new NewGeometry(b.Geometry);\n\t\t\t\t\tthis.Id = b.Id;\n\t\t\t\t} else if(b.BlockType == \"LINE\") {\n\t\t\t\t\tvar l = new Line(b, blockMap);\n\t\t\t\t\tthis.Lines.Add(l);\n\t\t\t\t\tthis.Content.Add(l);\n\t\t\t\t\tthis.Text = this.Text + l.Text + Environment.NewLine;\n\t\t\t\t} else if(b.BlockType == \"TABLE\") {\n\t\t\t\t\tvar t = new Table(b, blockMap);\n\t\t\t\t\tthis.Tables.Add(t);\n\t\t\t\t\tthis.Content.Add(t);\n\t\t\t\t} else if(b.BlockType == \"KEY_VALUE_SET\") {\n\t\t\t\t\tif(b.EntityTypes.Contains(\"KEY\")) {\n\t\t\t\t\t\tvar f = new Field(b, blockMap);\n\t\t\t\t\t\tif(f.Key != null) {\n\t\t\t\t\t\t\tthis.Form.AddField(f);\n\t\t\t\t\t\t\tthis.Content.Add(f);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\n\t\t}\n\n\t\tpublic List<IndexedText> GetLinesInReadingOrder() {\n\t\t\tvar lines = new List<IndexedText>();\n\t\t\tvar columns = new List<Column>();\n\t\t\tthis.Lines.ForEach(line => {\n\t\t\t\tvar columnFound = false;\n\t\t\t\tfor(var index = 0; index < columns.Count; index++) {\n\t\t\t\t\tvar column = columns[index];\n\t\t\t\t\tvar bb = line.Geometry.BoundingBox;\n\t\t\t\t\tvar bbLeft = bb.Left;\n\t\t\t\t\tvar bbRight = bb.Left + bb.Width;\n\t\t\t\t\tvar bbCentre = bb.Left + (bb.Width / 2);\n\t\t\t\t\tvar columnCentre = column.Left + (column.Right / 2);\n\n\t\t\t\t\tif((bbCentre > column.Left && bbCentre < column.Right) || (columnCentre > bbLeft && columnCentre < bbRight)) {\n\t\t\t\t\t\tlines.Add(new IndexedText { ColumnIndex = index, Text = line.Text });\n\t\t\t\t\t\tcolumnFound = true;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(!columnFound) {\n\t\t\t\t\tvar bb = line.Geometry.BoundingBox;\n\t\t\t\t\tcolumns.Add(new Column { Left = bb.Left, Right = bb.Left + bb.Width });\n\t\t\t\t\tlines.Add(new IndexedText { ColumnIndex = columns.Count - 1, Text = line.Text });\n\t\t\t\t}\n\t\t\t});\n\t\t\tlines.FindAll(line => line.ColumnIndex == 0).ForEach(line => Console.WriteLine(line));\n\t\t\treturn lines;\n\t\t}\n\n\t\tpublic string GetTextInReadingOrder() {\n\t\t\tvar lines = this.GetLinesInReadingOrder();\n\t\t\tvar text = string.Empty;\n\t\t\tlines.ForEach(line => {\n\t\t\t\ttext = text + line.Text + \"\\n\";\n\t\t\t});\n\t\t\treturn text;\n\t\t}\n\n\n\t\tpublic List<Block> Blocks { get; set; }\n\t\tpublic string Text { get; set; }\n\t\tpublic List<Line> Lines { get; set; }\n\t\tpublic Form Form { get; set; }\n\t\tpublic List<Table> Tables { get; set; }\n\t\tpublic List<dynamic> Content { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\tvar result = new List<string>();\n\t\t\tresult.Add(string.Format(\"Page{0}===={0}\", Environment.NewLine));\n\t\t\tthis.Content.ForEach(c => {\n\t\t\t\tresult.Add(string.Format(\"{1}{0}\", Environment.NewLine, c));\n\t\t\t});\n\t\t\treturn string.Join(\"\", result);\n\t\t}\n\n\t\tpublic class Column {\n\t\t\tpublic float Left { get; set; }\n\t\t\tpublic float Right { get; set; }\n\n\t\t\tpublic override string ToString() {\n\t\t\t\treturn string.Format(\"Left: {0}, Right :{1}\", this.Left, this.Right);\n\t\t\t}\n\t\t}\n\n\t\tpublic class IndexedText {\n\t\t\tpublic int ColumnIndex { get; set; }\n\t\t\tpublic string Text { get; set; }\n\n\t\t\tpublic override string ToString() {\n\t\t\t\treturn string.Format(\"[{0}] {1}\", this.ColumnIndex, this.Text);\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic class NewGeometry : Geometry {\n\n\t\tpublic NewGeometry(Geometry geometry) : base() {\n\t\t\tthis.BoundingBox = geometry.BoundingBox;\n\t\t\tthis.Polygon = geometry.Polygon;\n\t\t\tvar bb = new NewBoundingBox(this.BoundingBox.Width, this.BoundingBox.Height, this.BoundingBox.Left, this.BoundingBox.Top);\n\t\t\tvar pgs = new List<Point>();\n\t\t\tPolygon.ForEach(pg => pgs.Add(new Point {\n\t\t\t\tX = pg.X,\n\t\t\t\tY = pg.Y\n\t\t\t}));\n\n\t\t\tBoundingBox = bb;\n\t\t\tPolygon = pgs;\n\t\t}\n\n\t\tpublic override string ToString() {\n\t\t\treturn string.Format(\"BoundingBox: {0}{1}\", BoundingBox, Environment.NewLine);\n\t\t}\n\n\n\t}\n\n\tpublic class NewBoundingBox : BoundingBox {\n\t\tpublic NewBoundingBox(float width, float height, float left, float top) : base() {\n\t\t\tthis.Width = width;\n\t\t\tthis.Height = height;\n\t\t\tthis.Left = left;\n\t\t\tthis.Top = top;\n\t\t}\n\n\t\tpublic override string ToString() {\n\t\t\treturn string.Format(\"width: {0}, height: {1}, left: {2}, top: {3}\", Width, Height, Left, Top);\n\t\t}\n\t}\n\n\tpublic class Line {\n\t\tpublic Line(Block block, List<Block> blocks) {\n\t\t\tthis.Block = block;\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.Text = block == null ? string.Empty : block.Text;\n\t\t\tthis.Words = new List<Word>();\n\n\t\t\tvar relationships = block.Relationships;\n\t\t\tif(relationships != null && relationships.Count > 0) {\n\t\t\t\trelationships.ForEach(r => {\n\t\t\t\t\tif(r.Type == \"CHILD\") {\n\t\t\t\t\t\tr.Ids.ForEach(id => {\n\t\t\t\t\t\t\tthis.Words.Add(new Word(blocks.Find(b => b.BlockType == \"WORD\" && b.Id == id), blocks));\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\t\tpublic List<Word> Words { get; set; }\n\t\tpublic string Text { get; set; }\n\t\tpublic Block Block { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\treturn string.Format(@\"\n                Line{0}===={0}\n                {1} {0}\n                Words{0}----{0}\n                {2}{0}\n                ----\n            \", Environment.NewLine, this.Text, string.Join(\", \", this.Words));\n\t\t}\n\t}\n\n\tpublic class Form {\n\t\tpublic List<Field> Fields { get; set; }\n\t\tprivate Dictionary<string, Field> fieldMap;\n\n\t\tpublic Form() {\n\t\t\tthis.Fields = new List<Field>();\n\t\t\tthis.fieldMap = new Dictionary<string, Field>();\n\t\t}\n\n\t\tpublic void AddField(Field field) {\n\t\t\tthis.Fields.Add(field);\n\t\t\tthis.fieldMap.Add(field.Key.ToString(), field);\n\t\t}\n\t\tpublic Field GetFieldByKey(string key) {\n\t\t\treturn this.fieldMap.GetValueOrDefault(key);\n\t\t}\n\n\t\tpublic List<Field> SearchFieldsByKey(string key) {\n\t\t\treturn this.Fields.FindAll(f => f.Key.ToString().ToLower().Contains(key.ToLower()));\n\t\t}\n\n\t\tpublic override string ToString() {\n\t\t\treturn string.Join(\"\\n\", this.Fields);\n\t\t}\n\t}\n\n\tpublic class FieldValue {\n\t\tpublic FieldValue(Block block, List<string> children, List<Block> blocks) {\n\t\t\tthis.Block = block;\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.Text = string.Empty;\n\t\t\tthis.Content = new List<dynamic>();\n\n\t\t\tvar words = new List<string>();\n\t\t\tif(children != null && children.Count > 0) {\n\t\t\t\tchildren.ForEach(c => {\n\t\t\t\t\tvar wordBlock = blocks.Find(b => b.Id == c);\n\t\t\t\t\tif(wordBlock.BlockType == \"WORD\") {\n\t\t\t\t\t\tvar w = new Word(wordBlock, blocks);\n\t\t\t\t\t\tthis.Content.Add(w);\n\t\t\t\t\t\twords.Add(w.Text);\n\t\t\t\t\t} else if(wordBlock.BlockType == \"SELECTION_ELEMENT\") {\n\t\t\t\t\t\tvar selection = new SelectionElement(wordBlock, blocks);\n\t\t\t\t\t\tthis.Content.Add(selection);\n\t\t\t\t\t\twords.Add(selection.SelectionStatus);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif(words.Count > 0) {\n\t\t\t\tthis.Text = string.Join(\" \", words);\n\t\t\t}\n\t\t}\n\t\tpublic List<dynamic> Content { get; set; }\n\t\tpublic Block Block { get; set; }\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\t\tpublic string Text { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\treturn Text;\n\t\t}\n\t}\n\n\tpublic class FieldKey {\n\t\tpublic FieldKey(Block block, List<string> children, List<Block> blocks) {\n\t\t\tthis.Block = block;\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.Text = string.Empty;\n\t\t\tthis.Content = new List<dynamic>();\n\n\t\t\tvar words = new List<string>();\n\n\t\t\tif(children != null && children.Count > 0) {\n\t\t\t\tchildren.ForEach(c => {\n\t\t\t\t\tvar wordBlock = blocks.Find(b => b.Id == c);\n\t\t\t\t\tif(wordBlock.BlockType == \"WORD\") {\n\t\t\t\t\t\tvar w = new Word(wordBlock, blocks);\n\t\t\t\t\t\tthis.Content.Add(w);\n\t\t\t\t\t\twords.Add(w.Text);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif(words.Count > 0) {\n\t\t\t\tthis.Text = string.Join(\" \", words);\n\t\t\t}\n\n\t\t}\n\t\tpublic List<dynamic> Content { get; set; }\n\t\tpublic Block Block { get; set; }\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\t\tpublic string Text { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\treturn Text;\n\t\t}\n\t}\n\n\tpublic class Field {\n\t\tpublic Field(Block block, List<Block> blocks) {\n\t\t\tvar relationships = block.Relationships;\n\t\t\tif(relationships != null && relationships.Count > 0) {\n\t\t\t\trelationships.ForEach(r => {\n\t\t\t\t\tif(r.Type == \"CHILD\") {\n\t\t\t\t\t\tthis.Key = new FieldKey(block, r.Ids, blocks);\n\t\t\t\t\t} else if(r.Type == \"VALUE\") {\n\t\t\t\t\t\tr.Ids.ForEach(id => {\n\t\t\t\t\t\t\tvar v = blocks.Find(b => b.Id == id);\n\t\t\t\t\t\t\tif(v.EntityTypes.Contains(\"VALUE\")) {\n\t\t\t\t\t\t\t\tvar vr = v.Relationships;\n\t\t\t\t\t\t\t\tif(vr != null && vr.Count > 0) {\n\t\t\t\t\t\t\t\t\tvr.ForEach(vc => {\n\t\t\t\t\t\t\t\t\t\tif(vc.Type == \"CHILD\") {\n\t\t\t\t\t\t\t\t\t\t\tthis.Value = new FieldValue(v, vc.Ids, blocks);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tpublic FieldKey Key { get; set; }\n\t\tpublic FieldValue Value { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\tvar k = this.Key == null ? string.Empty : this.Key.ToString();\n\t\t\tvar v = this.Value == null ? string.Empty : this.Value.ToString();\n\t\t\treturn string.Format(@\"\n                {0}Field{0}===={0}\n                Key: {1}, Value: {2}\n            \", Environment.NewLine, k, v);\n\t\t}\n\t}\n\n\tpublic class Cell {\n\t\tpublic Cell(Block block, List<Block> blocks) {\n\t\t\tthis.Block = block;\n\t\t\tthis.ColumnIndex = block.ColumnIndex;\n\t\t\tthis.ColumnSpan = block.ColumnSpan;\n\t\t\tthis.Confidence = block.Confidence;\n\t\t\tthis.Content = new List<dynamic>();\n\t\t\tthis.Geometry = block.Geometry;\n\t\t\tthis.Id = block.Id;\n\t\t\tthis.RowIndex = block.RowIndex;\n\t\t\tthis.RowSpan = block.RowSpan;\n\t\t\tthis.Text = string.Empty;\n\n\t\t\tvar relationships = block.Relationships;\n\t\t\tif(relationships != null && relationships.Count > 0) {\n\t\t\t\trelationships.ForEach(r => {\n\t\t\t\t\tif(r.Type == \"CHILD\") {\n\t\t\t\t\t\tr.Ids.ForEach(id => {\n\t\t\t\t\t\t\tvar rb = blocks.Find(b => b.Id == id);\n\t\t\t\t\t\t\tif(rb.BlockType == \"WORD\") {\n\t\t\t\t\t\t\t\tvar w = new Word(rb, blocks);\n\t\t\t\t\t\t\t\tthis.Content.Add(w);\n\t\t\t\t\t\t\t\tthis.Text = this.Text + w.Text + \" \";\n\t\t\t\t\t\t\t} else if(rb.BlockType == \"SELECTION_ELEMENT\") {\n\t\t\t\t\t\t\t\tvar se = new SelectionElement(rb, blocks);\n\t\t\t\t\t\t\t\tthis.Content.Add(se);\n\t\t\t\t\t\t\t\tthis.Text = this.Text + se.SelectionStatus + \", \";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tpublic int RowIndex { get; set; }\n\t\tpublic int RowSpan { get; set; }\n\t\tpublic int ColumnIndex { get; set; }\n\t\tpublic int ColumnSpan { get; set; }\n\t\tpublic List<dynamic> Content { get; set; }\n\t\tpublic Block Block { get; set; }\n\t\tpublic float Confidence { get; set; }\n\t\tpublic Geometry Geometry { get; set; }\n\t\tpublic string Id { get; set; }\n\t\tpublic string Text { get; set; }\n\n\t\tpublic override string ToString() {\n\t\t\treturn this.Text;\n\t\t}\n\t}\n}"
  },
  {
    "path": "src-csharp/appsettings.json",
    "content": "{\n  \"AWS\": {\n    \"Profile\": \"default\",\n    \"Region\": \"us-west-2\"\n  }\n}\n"
  },
  {
    "path": "src-csharp/parser.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\r\n\r\n  <PropertyGroup>\r\n    <OutputType>Exe</OutputType>\r\n    <TargetFramework>netcoreapp2.2</TargetFramework>\r\n  </PropertyGroup>\r\n\r\n<ItemGroup>\r\n    <PackageReference Include=\"AWSSDK.Extensions.NETCore.Setup\" Version=\"3.3.100.1\" />\r\n    <PackageReference Include=\"AWSSDK.S3\" Version=\"3.3.102.12\" />\r\n    <PackageReference Include=\"AWSSDK.Textract\" Version=\"3.3.101.23\" />\r\n    <PackageReference Include=\"Microsoft.Extensions.Configuration\" Version=\"2.2.0\" />\r\n    <PackageReference Include=\"Microsoft.Extensions.Configuration.EnvironmentVariables\" Version=\"2.2.4\" />\r\n    <PackageReference Include=\"Microsoft.Extensions.Configuration.Json\" Version=\"2.2.0\" />\r\n    <PackageReference Include=\"System.Drawing.Common\" Version=\"4.7.2\" />\r\n  </ItemGroup>\r\n\r\n  <ItemGroup>\r\n    <None Update=\"test-files\\*\">\r\n      <CopyToOutputDirectory>Always</CopyToOutputDirectory>\r\n    </None>\r\n    \r\n  </ItemGroup>\r\n\r\n</Project>\r\n"
  },
  {
    "path": "src-js/.eslintrc.js",
    "content": "module.exports = {\n  parser: \"@typescript-eslint/parser\", // Specifies the ESLint parser\n  parserOptions: {\n    ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features\n    sourceType: \"module\" // Allows for the use of imports\n  },\n  plugins: [\"@typescript-eslint\", \"prettier\"],\n  extends: [\n    // \"plugin:@typescript-eslint/recommended\", // Uses the recommended rules from the @typescript-eslint/eslint-plugin\n    // \"prettier/@typescript-eslint\", // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier\n    // \"plugin:prettier/recommended\", // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.\n    \"eslint:recommended\",\n    \"plugin:@typescript-eslint/eslint-recommended\",\n    \"plugin:@typescript-eslint/recommended\",\n    \"prettier\",\n  ],\n  rules: {\n    // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended config\n    // e.g. \"@typescript-eslint/explicit-function-return-type\": \"off\",\n    \"prettier/prettier\": 2,\n  },\n};\n"
  },
  {
    "path": "src-js/.nvmrc",
    "content": "lts/hydrogen\n"
  },
  {
    "path": "src-js/.prettierrc.js",
    "content": "module.exports = {\n  printWidth: 110,\n};\n"
  },
  {
    "path": "src-js/CHANGELOG.md",
    "content": "# Changelog\n\n## 0.4.3 (2024-11-19)\n### Changed\n- Bumped dev dependencies (including `cross-spawn`, `lint-staged`, `rollup`) for dependabot/audit\n### Fixed\n- `.html()` no longer fails on empty pages with no content (proposed fix for [this AWS re:Post question](https://repost.aws/questions/QU68wHh5vLSkiDC9Vt4lXXsw))\n\n## 0.4.2 (2024-06-28)\n### Added\n- Filter content by block type in a variety of contexts, with `includeBlockTypes` (allow-list) and `skipBlockTypes` (deny-list) options. These filters are available in the core `iter/listContent()`, `Layout.iter/listItems()` and `LayoutItem.iter/listLayoutChildren()` accessors, but can also be used to hide certain content (like page headers and footers) when you render with `.html({...})`. ([#179](https://github.com/aws-samples/amazon-textract-response-parser/issues/179))\n- Low-level relationship traversal via `iter/listRelatedItemsByRelType()` is now supported from `Page`s (PAGE blocks)\n- New accessor on `SelectionElement.isSelected`, in convenient boolean format (versus the 2-member `.selectionStatus` enumeration)\n- Form `Field.isCheckbox` and `FieldValue.isCheckbox`, check if a K->V field corresponds to a (label)->(checkbox) pair. Also added `{Field/FieldValue}.isSelected` and `.selectionStatus`, which return `null` for non-'checkbox' fields. (Pre-work for [#183](https://github.com/aws-samples/amazon-textract-response-parser/issues/183))\n### Changed\n- `WithContent` mixin options refactored to more closely mirror `IBlockTypeFilterOpts`, because WithContent now aligns to `iter/listRelatedItemsByRelType()` under the hood. This will give us more fine-grained but standardised control of missing and unexpected non-content child block type handling, per item class... But means some warning/error behaviour when parsing Textract JSON might have shifted a little (hopefully for the better).\n- A page's `Layout` no longer keeps any internal list-of-items state, instead referring to the parent `PAGE` block's child relationships directly.\n\n## 0.4.1 (2024-06-04)\n### Added\n- `iter/listRelatedItemsByRelType()` utility methods on all host-linked block wrapper objects, as most common use-cases for `relatedBlockIdsByRelType()` were just to then fetch the parsed wrapper for the retrieved block ID. Hope to further standardise across `childBlockIds`, `relatedBlockIdsByRelType`, and these new methods in a future release - but this might require some breaking changes to drive consistency in the handling of invalid JSONs (with missing block IDs, etc).\n- `iter/listLayoutChildren()` utility methods to generically traverse (nested?) child layout elements. We support generic & recursive access, but today the only known nesting is LAYOUT_LIST->LAYOUT_TEXT.\n### Fixed\n- `html()`, `str()` and `text` representations of page `Layout` no longer duplicate the content of `LAYOUT_TEXT` children under `LAYOUT_LIST` obects. ([#177](https://github.com/aws-samples/amazon-textract-response-parser/issues/177))\n### Deprecated\n- Page `Layout.nItems` is ambiguous: Prefer `.nItemsTotal` for previous behaviour (counting all direct and indirect children) or `.nItemsDirect` to count only top-level layout items, excluding those referenced as children by others.\n\n## 0.4.0 (2024-02-06)\n### Added\n- Load and navigate [Amazon Textract Layout analysis](https://aws.amazon.com/blogs/machine-learning/amazon-textracts-new-layout-feature-introduces-efficiencies-in-general-purpose-and-generative-ai-document-processing-tasks/) data. ([#164](https://github.com/aws-samples/amazon-textract-response-parser/issues/164))\n- Serialize individual elements, pages and documents to semantic markup with `.html()` (for page and document level, currently depends on `Layout` being enabled).\n- Proper support for [table title and footer elements](https://aws.amazon.com/blogs/machine-learning/announcing-enhanced-table-extractions-with-amazon-textract/) (`TABLE_TITLE` and `TABLE_FOOTER`) linked from tables. ([#171](https://github.com/aws-samples/amazon-textract-response-parser/issues/171))\n- Support [signature detection results](https://aws.amazon.com/blogs/machine-learning/detect-signatures-on-documents-or-images-using-the-signatures-feature-in-amazon-textract/) (`SIGNATURE` blocks)\n- More complete exposure of Textract API model constructs and `base.ts` utility functions in external-facing TRP API\n### Changed\n- **(BREAKING)** Previously-exposed `CellBase` class is removed, due to refactoring `Cell` and `MergedCell` to depend more on composable mixins and less on fragile hierarchy of (now internal) `CellBaseGeneric`. Use `Cell | MergedCell` instead for typing.\n- `Page`s now explicitly track parsed objects in their scope by block ID, which reduced state tracking requirements for other objects (like `Line`, `Query`) as we work toward supporting more edit/mutation operations. See `IBlockManager.registerParsedItem()` and `.getItemByBlockId()` for details. This may result in some **minor warning & error behavior changes** when handling invalid or incomplete Textract JSON.\n- Split out `api-models/document` types to better align with library components, and made some minor typing updates.\n### Fixed\n- `Table.nCells` now correctly reflects merged cells (instead of just counting all sub-cells).\n- Support alternative `KEY` and `VALUE` blocks for Forms K-V data, observed in place of the typical `KEY_VALUE_SET` blocks for some test data files (Was this a temporary API issue? A change going forward? 🤷‍♂️)\n### Deprecated\n- `ApiBlockWrapper` base class is now slated to become internal-only: Please let us know if you have use-cases\n- Various re-exports from `/api-modules/document` sub-module: Prefer importing direct from top-level\n- `ApiAsyncJobOuputInProgress` typo superseded by `ApiAsyncJobOutputInProgress`, but original not yet fully removed\n\n## 0.3.1 (2023-08-28)\n### Fixed\n- Suppress \"content may be truncated\" warnings when API `NextToken` is present but `null` ([#154](https://github.com/aws-samples/amazon-textract-response-parser/issues/154))\n- Fix typed `TABLE_FOOTER` and `TABLE_SECTION_HEADER` EntityType values to match the [API doc](https://docs.aws.amazon.com/textract/latest/dg/API_Block.html) ([#158](https://github.com/aws-samples/amazon-textract-response-parser/issues/158))\n\n## 0.3.0 (2023-07-31)\n### Added\n- **(BREAKING)** `ignoreMerged` and `repeatMultiRowCells` options on `Table` methods are now wrapped into `opts` objects for better future extensibility and clearer user code.\n- Expose the `ignoreMerged` option through `Table.rowAt()`, `Table.iterRows()`, and `Table.listRows()`, to enable navigating table rows ignoring merged cells.\n- Page-level access to [Amazon Textract Queries](https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html) results. (Still assessing compositing architecture for a unified document-level view in future) ([#80](https://github.com/aws-samples/amazon-textract-response-parser/issues/80))\n- Average OCR (text recognition) confidence is now available on form fields (and their keys and values) as well as tables, table rows, and table cells - via `getOcrConfidence()`, with configurable aggregation method (including minimum, mean, etc.).\n- `EntityTypes` for tables and table cells/merged-cells are now accessible through `Table.tableType` property and `Cell.hasEntityTypes()` function - and also added to the underlying API data types. ([#78](https://github.com/aws-samples/amazon-textract-response-parser/issues/78))\n### Changed\n- **(BREAKING)** UMD module output `dist/umd` removed, following deprecation at v0.2.0 and no requests from users to restore it.\n### Fixed\n- Corrected wrongly typed `ApiCellBlock.Relationships` from an array of `ApiChildRelationship` to an optional array of same: This field may be omitted altogether when a cell is detected but has no content.\n- Corrected wrongly typed `ApiKeyValueSetBlock.EntityTypes` data model from `ApiKeyValueEntityType` to an array of same.\n\n## 0.2.2 (2023-06-19)\n### Fixed\n- Removed `browser` field from package.json because front end bundlers like webpack use it, and the (IIFE `dist/browser`) build it pointed to was not appropriate for these build systems. Added `jsdelivr` field in its place to help ensure direct-to-browser CDN imports continue to consume the IIFE build by default. ([Issue #139](https://github.com/aws-samples/amazon-textract-response-parser/issues/139))\n\n## 0.2.1 (2023-05-22)\n### Fixed\n- `.geometry` on Expense result fields is now optional, as the underlying field may not be returned by Amazon Textract in some cases. Typings updated to reflect the fix. ([Issue #102](https://github.com/aws-samples/amazon-textract-response-parser/issues/102))\n\n## 0.2.0 (2022-04-28)\n### Added\n- Initial support for Amazon Textract [identity document APIs](https://docs.aws.amazon.com/textract/latest/dg/how-it-works-identity.html).\n- Document-level Form field access and querying via `TextractDocument.form` in addition to `Page.form`.\n- `Page.pageNumber` to find and return 1-based index of the current page in the parent document.\n- New ES (esnext) module output in `dist/es` and `module` hint in package.json to encourage compatible tools to use this output.\n### Changed\n- Use CommonJS `dist/cjs` as default NPM module format instead of previous UMD `dist/umd`.\n- Separate type declarations into `dist/types` to reduce duplication and build size.\n- Use new [merged table cells](https://aws.amazon.com/about-aws/whats-new/2022/03/amazon-textract-updates-tables-check-detection/) feature by default, rather than classic split cells.\n- Eliminate trailing whitespace previously automatically added to Cell.text\n### Deprecated\n- UMD module output `dist/umd` slated to be removed in a future version: Please let us know if the other format options don't work for you!\n\n## 0.1.2 (2021-12-16)\n### Added\n- Header and footer segmentation utility (by text `LINE`)\n### Changed\n- Significantly improved `inReadingOrder` results for multi-column documents.\n"
  },
  {
    "path": "src-js/README.md",
    "content": "# Textract Response Parser for JavaScript/TypeScript\n\nThis library loads [Amazon Textract](https://docs.aws.amazon.com/textract/latest/dg/what-is.html) API response JSONs into structured classes with helper methods, for easier post-processing.\n\nIt's designed to work in both NodeJS and browser environments, and to support projects in either JavaScript or TypeScript.\n\n> ⚠️ **Warning:** If you're migrating from another TRP implementation such as the [Textract Response Parser for Python](https://github.com/aws-samples/amazon-textract-response-parser/tree/master/src-python), please note that the APIs and available features may be substantially different. Please let us know if there's a feature you're missing!\n\n\n## Installation\n\nYou can use TRP in your JavaScript or TypeScript NPM projects:\n\n```sh\n$ npm install amazon-textract-response-parser\n```\n\n```js\n// With CommonJS-style require:\nconst { TextractDocument, TextractIdentity } = require(\"amazon-textract-response-parser\");\n// Or ES-style module imports:\nimport { TextractDocument, TextractExpense } from \"amazon-textract-response-parser\";\n```\n\n...Or link directly in the browser - for example via a CDN like [unpkg](https://unpkg.com/):\n\n```html\n<script src=\"https://unpkg.com/amazon-textract-response-parser@x.y.z\"></script>\n\n<script>\n  // Use the main parser classes:\n  var doc = new trp.TextractDocument(...);\n  // Or other exported utility functions/classes/enums/etc:\n  var avg = trp.aggregate([1, 2, 3], trp.AggregationMethod.Mean);\n</script>\n```\n\nTo enable this, the distribution of this library provides multiple builds:\n\n- `dist/cjs` (default `main`), for CommonJS environments like NodeJS - including most front end applications built with tools like React and Webpack.\n- `dist/es` (default `module`), for ES6/ES2015/esnext capable environments.\n- `dist/browser` (default `jsdelivr` and `unpkg`), for linking directly from browser HTML with no module framework (IIFE).\n\nThis means that **deep imports** will depend on your build environment, but are generally discouraged anyway and may not work correctly with TypeScript. Check out the [examples/](examples/README.md) folder on GitHub for some basic starters using the different styles.\n\n\n## Loading data\n\nInitialize a `TextractDocument` (or `TextractExpense`, `TextractIdentity`) by providing the parsed response JSON object from the corresponding [Amazon Textract APIs](https://docs.aws.amazon.com/textract/latest/dg/API_Reference.html) such as [GetDocumentAnalysis](https://docs.aws.amazon.com/textract/latest/dg/API_GetDocumentAnalysis.html), [AnalyzeID](https://docs.aws.amazon.com/textract/latest/dg/API_AnalyzeID.html), or [AnalyzeExpense](https://docs.aws.amazon.com/textract/latest/dg/API_AnalyzeExpense.html). In most cases, providing an **array** of response objects is also supported (for use when a large Amazon Textract response was split/paginated).\n\nFor example, loading a response JSON from file in NodeJS:\n\n```js\nfs.readFile(\"./my-analyze-document-response.json\", (err, resBuffer) => {\n  if (err) throw err;\n  const doc = new TextractDocument(JSON.parse(resBuffer));\n  // ...\n});\n```\n\nIf you're using TypeScript, you may need to **typecast** your input JSON while loading it.\n\n> The `ApiResponsePage` input interface exposed and expected by this module is more constrained than - but functionally compatible with - the output types produced by the [AWS SDK for JavaScript Textract Client](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/index.html).\n\n```typescript\nimport { ApiAnalyzeExpenseResponse } from \"amazon-textract-response-parser\";\nimport { TextractClient, AnalyzeExpenseCommand } from \"@aws-sdk/client-textract\";\nconst textract = new TextractClient({});\n\nasync function main() {\n  const textractResponse = await textract.send(\n    new AnalyzeExpenseCommand({\n      Document: { Bytes: await fs.readFile(\"...\") },\n    })\n  );\n  const expense = new TextractExpense((textractResponse as unknown) as ApiAnalyzeExpenseResponse);\n}\n```\n\nWith your data loaded in to a TRP `TextractDocument` or similar, you're ready to take advantage of the higher-level TRP.js functions to navigate and analyze the result.\n\n\n## Generic document text navigation\n\nIn general, this library avoids directly exposing **arrays** in results (see the *Mutation operations* section below). Instead, you can use:\n\n- `.n***` properties to count items\n- `.list***()` functions to return a copy of the underlying array\n- `.iter***()` functions to iterate through collections, or\n- `.***At***()` functions to fetch a specific item from a collection\n\nFor example:\n\n```typescript\n// Navigate the document hierarchy:\nconsole.log(`Opened doc with ${doc.nPages} pages`);\nconsole.log(\n  `The first word of the first line is ${doc.pageNumber(1).lineAtIndex(0).wordAtIndex(0).text}`\n);\n\n// Iterate through content:\nfor (const page of doc.iterPages()) {\n  // (In Textract's output order...)\n  for (const line of page.iterLines()) {\n    for (const word of line.iterWords()) {\n      console.log(word.text);\n    }\n  }\n}\n\n// ...Or get snapshot arrays instead of iterators, if you need:\nconst linesArrsByPage = doc.listPages().map((p) => p.listLines());\n```\n\nThese arrays are in the raw order returned by Amazon Textract, which is not necessarily a logical human reading order - especially for multi-column documents. See the *Layout analysis* and *List text in approximate reading order* sections below for extra content sorting utilities.\n\n\n## Queries\n\nThe results of [Amazon Textract Queries](https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html) are accessible at the page level under `page.queries`. You can `get*` a query by exact question text or alias, or `search*` them by case-insensitive substrings:\n\n```typescript\ndoc.listPages().forEach((page) => {\n  // Log a quick human-readable overview of queries & answers:\n  console.log(page.queries.str());\n\n  // Get a query (and its top result's text) by exact alias:\n  const customer = page.queries.getQueryByAlias(\"customer_name\")?.topResult?.text;\n\n  // Get possible results of a query from most to least confident:\n  const shippingAddrCandidates =\n    page.queries.getQueryByAlias(\"shipping_addr\")?.listResultsByConfidence() || [];\n  const shippingAddrTopConf = shippingAddrCandidates[0].confidence;\n\n  // Seaching matches queries e.g. 'What is the Shipping Address?', 'FIND THE BILLING ADDRESS', etc\n  const addrQueries = page.queries.searchQueriesByQuestion(\"address\");\n});\n```\n\n\n## Forms (Key-Value pairs)\n\nAs well as looping through the [form data key-value pairs](https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html) in the document, you can query fields by key:\n\n```typescript\nconsole.log(doc.form.nFields);\nconst fields = doc.form.listFields();\n\n// Exact match:\nconst addr = doc.form.getFieldByKey(\"Address\").value?.text;\n\n// Search key containing (case-insensitive):\nconst addresses = doc.form.searchFieldsByKey(\"address\");\naddresses.forEach((addrField) => { console.log(addrField.key.text); });\n```\n\nNote that the `Field.confidence`, `FieldKey.confidence` and `FieldValue.confidence` scores reflect confidence of the **key-value structure detection** model. For aggregated OCR confidence of their **actual text**, use `.getOcrConfidence()` instead.\n\nYou can also search form keys at the individual page level, or look up the page number for detected fields:\n\n```typescript\nconst fieldByDoc = doc.form.getFieldByKey(\"Address\");\nconsole.log(`Detected Address on page ${fieldByDoc.parentPage.pageNumber}`);\n\nconst page = doc.pageNumber(1);\nconst fieldByPage = page.form.getFieldByKey(\"Address\");\n```\n\n`field.isCheckbox` is true for fields whose value contain exactly one SelectionElement object: meaning they're a (key=label)->(value=checkbox/radio) pair. For these fields, you can directly use `field.selectionStatus` or `field.isSelected` to look up the value's status. For other (non-checkbox) fields, they'll return `null`.\n\n\n## Tables\n\nThis library's table navigation tools address **[merged cells](https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html) by default**, for convenience.\n\n```typescript\nconsole.log(page.nTables);\nconst table = page.tableAtIndex(0);\n\n// Index cells by row, column, or both:\nconst headerStrs = table.cellsAt(1, null)?.map(cell => cell.text);\nconst firstColCells = table.cellsAt(null, 1);\nconst targetCell = table.cellAt(2, 4);\n\n// Iterate over rows/cells:\nfor (const row of table.iterRows()) {\n  for (const cell of row.iterCells()) {\n    console.log(cell.text);\n  }\n}\n```\n\nFurther configuration arguments can be used to change the treatment of merged cells if needed:\n\n```typescript\n// Iterate over rows repeating any cells spanning multiple rows:\nfor (const row of table.iterRows({repeatMultiRowCells: true})) {}\n\n// Return split sub-cells instead of merged cells when indexing:\nconst firstColCellFragments = table.cellsAt(null, 1, {ignoreMerged: true});\n```\n\nThe `Table.confidence`, `Row.getConfidence()` and `Cell.confidence` scores reflect confidence of the **table structure detection** model. For aggregated OCR confidence of the text contained inside, use `.getOcrConfidence()` instead.\n\nUse `Table.tableType` and `Cell.hasEntityTypes()` to explore the more advanced [entity types](https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html) extracted by Amazon Textract: For example column headers, title cells, footer cells, and summary cells:\n\n```typescript\nimport { ApiTableCellEntityType, ApiTableEntityType } from \"amazon-textract-response-parser\";\n\nconst isSemiStruct = table.tableType === ApiTableEntityType.SemiStructuredTable;\nconst colHeaders = table.rowAt(1).listCells()\n  .filter((c) => c.hasEntityTypes(ApiTableCellEntityType.ColumnHeader));\n```\n\nFor [overall table-level title and footer captions](https://aws.amazon.com/blogs/machine-learning/announcing-enhanced-table-extractions-with-amazon-textract/), see `table.listTitles()` and `table.listFooters()`, etc.\n\n\n## Layout analysis\n\n[Layout analysis in Amazon Textract](https://aws.amazon.com/blogs/machine-learning/amazon-textracts-new-layout-feature-introduces-efficiencies-in-general-purpose-and-generative-ai-document-processing-tasks/) detects higher-level semantic components than the core text Lines & Words - like paragraphs and headings. If you enabled this analysis, you can access the results through the `page.layout` collection:\n\n```typescript\n// Loop through content in implied reading order (from Layout API):\npage.layout.listItems().forEach((layItem) => {\n  console.log(layItem.blockType);  // There are different kinds of Layout Item\n  const textLines = layItem.listTextLines();  // All Layout* items can be queried for text LINEs\n  const children = layItem.listContent();  // Usually text LINEs, but sometimes other Layout* items\n  console.log(layItem.text + \"\\n\");  // ...Or you can just pull up the text\n});\n\n// Filtering by content type is also supported:\nfor (const layItem of page.layout.listItems({\n  skipBlockTypes: [\n    ApiBlockType.LayoutHeader, ApiBlockType.LayoutFooter, ApiBlockType.LayoutPageNumber\n  ],\n})) {\n  console.log(layItem.text);\n}\n```\n\nIf Forms and/or Tables analyses were also enabled, you'll be able to traverse from the relevant Layout object types to these more detailed representations. **However,** because these are separate analyses the correspondence may not be 1-to-1 and TRP is having to do some reconciliation under the hood:\n\n```typescript\nimport { ApiBlockType, LayoutKeyValue, LayoutTable } from \"amazon-textract-response-parser\";\n\npage.layout.listItems().forEach((layItem) => {\n  if (layItem.blockType === ApiBlockType.LayoutKeyValue) {\n    const fields = (layItem as LayoutKeyValue).listFields(); // Probably multiple\n    fields.forEach((field) => console.log(field.key.text));\n  } else if (layItem.blockType === ApiBlockType.LayoutTable) {\n    const tables = (layItem as LayoutTable).listTables(); // Probably just 1\n    tables.forEach((table) => console.log(table.nCells));\n  }\n});\n```\n\n\n### List text in approximate reading order (with or without `Layout`)\n\nParticularly for multi-column documents, the default output sequence for Amazon Textract `LINE`/`WORD` OCR results will likely not be the overall reading order you'd like. For best performance, enable and use the `Layout` analysis because **layout items are returned in implied reading order** as estimated by the AI service.\n\nAlternatively, TRP.js provides a **client-side heuristic algorithm** that can attempt to sort results without Layout. There are even some configuration parameters exposed to help you tune the results for your particular domain, and test harnesses in the [tests/unit/corpus folder](tests/unit/corpus) to help you experiment via `npm run test:unit`:\n\n```typescript\nimport { ReadingOrderLayoutMode } from \"amazon-textract-response-parser\";\n\n// By default, we automatically use `Layout` when it's available and heuristics when it's not:\nlet textInReadingOrder: string = page.getTextInReadingOrder();  // Just generate text\nlet pseudoParas = page.getLineClustersInReadingOrder();\n\n// You can force use of `Layout` (throwing an error if none available):\nlet layText = page.getTextInReadingOrder({ useLayout: ReadingOrderLayoutMode.RequireLayout });\n// Or fine-tune heuristic parameters:\nlet layParas = page.getLineClustersInReadingOrder({\n  colHOverlapThresh = 0.75,\n  paraVDistTol = 0.8,\n  // ...\n  useLayout: ReadingOrderLayoutMode.IgnoreLayout,\n});\n\n// Lines are clustered by \"paragraph\"/layout element:\nfor (const pseudoParagraph of pseudoParas) {\n  for (const line of pseudoParagraph) {\n    console.log(line.text);\n  }\n  console.log();  // Print a gap between \"paragraphs\"\n}\n```\n\nWhen configured to use Layout analysis results, these functions should be equivalent to just looping through your `page.layout.iterItems()` to get the text from each one in order.\n\n\n### Render documents to semantic markup/markdown\n\nIf you'd like to use AI/ML models to further post-process your Amazon Textract results, you have a choice between those that take text-only inputs - and \"multi-modal\" models that can also ingest structural information (see for example [this Amazon Comprehend feature](https://aws.amazon.com/about-aws/whats-new/2021/09/amazon-comprehend-extract-entities-native-format/) and [this Amazon SageMaker sample](https://github.com/aws-samples/amazon-textract-transformer-pipeline/tree/main)). While multi-modal models may work best on complex structured documents, the pace of research on text-only Large Language Models has historically been faster (perhaps because plain text data is easier to come by and work with).\n\n**Semantic markup like HTML** provides somewhat of a middle ground where we can try to preserve the layout/form/table/etc structure Amazon Textract extracted, but still provide plain text. This may be particularly useful for working with **Generative Large Language Models** (GenAI/LLMs) like those on [Amazon Bedrock](https://aws.amazon.com/bedrock/).\n\n```typescript\n// Render HTML for individual components:\nconsole.log(page.listTables[0].html());\n\n// ...Or for whole pages/documents:\nconst docHtml = doc.html();\nfs.writeFile(\"./my-doc.html\", docHtml, (err) => {});\n```\n\nSome caveats to be aware of:\n\n- Top-level `Page.html()` and `TextractDocument.html()` currently depend on Layout analysis being enabled, because the Layout results are used to sequence all the elements together.\n- Only HTML is supported currently, but we're keen to add `.markdown()` if there's interest\n\nYou can also **filter out** types of content you don't want to include in your HTML. \n\n```typescript\n// Most commonly, you'll `skip` high-level layout elements like `LayoutHeader`:\nconst docHtml = doc.html({\n  skipBlockTypes: [\n    ApiBlockType.LayoutHeader, ApiBlockType.LayoutFooter, ApiBlockType.LayoutPageNumber\n  ],\n});\n\n// Skipping lower-level blocks is also possible, but can produce weird results:\nconst docHtmlNoCellsOrSelectors = doc.html({\n  skipBlockTypes: [ApiBlockType.Cell, ApiBlockType.SelectionElement],\n});\n\n// Allow-listing is also possible, but you should include *everything* relevant:\nconst docTablesHtml = doc.html({\n  includeBlockTypes: [\n    ApiBlockType.Page,\n    ApiBlockType.LayoutTable,\n    ApiBlockType.Table,\n    ApiBlockType.Cell,\n    ApiBlockType.SelectionElement,\n    ApiBlockType.Word,\n  ],\n});\n```\n\nIf you have feedback about these features, please let us know in the GitHub issues to help prioritise!\n\n\n### Segment headers and footers from main content\n\nThis is another task for which you might find [Textract Layout analysis](https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html) useful - by looping through layout items and filtering out those of type `LayoutHeader`, `LayoutFooter` and `PageNumber`.\n\nHowever, TRP.js also provides a heuristic function you can try instead:\n\n```typescript\nconst segmented = page.getLinesByLayoutArea(\n  true  // (Also try to sort lines in reading order)\n);\n\nconsole.log(\"---- HEADER:\")\nconsole.log(segmented.header.map((l) => l.text).join(\"\\n\"));\nconsole.log(\"\\n---- CONTENT:\")\nconsole.log(segmented.content.map((l) => l.text).join(\"\\n\"));\nconsole.log(\"\\n---- FOOTER:\")\nconsole.log(segmented.footer.map((l) => l.text).join(\"\\n\"));\n```\n\n**Note:** Unlike the `*inReadingOrder` APIs, this utility has not yet been updated to use Textract Layout analysis when it's available. That behavior might change in future.\n\n\n### Calculate average skew of page text\n\nCalculating the overall skew of a page can be useful for validation checks: For example to detect and reject a strongly skewed image which might degrade the accuracy of tables, forms, or other downstream analyses.\n\n```typescript\n// Check the average angle/skew of detected text:\nconst skew = page.getModalWordOrientationDegrees();\n```\n\nThis method aggregates the skew to find the most common angle across all content on the page.\n\n\n## Signatures\n\nIf you enabled [signature detection in Amazon Textract](https://aws.amazon.com/blogs/machine-learning/detect-signatures-on-documents-or-images-using-the-signatures-feature-in-amazon-textract/), you can check for signatures at the page level:\n\n```typescript\n// e.g. print number of signatures detected by page:\ndoc.listPages()\n      .forEach((page, ix) => { console.log(`${page.nSignatures} signatures on page ${ix+1}`); });\n// ...Or get the position of the first signature on the first page:\nconst bbox = doc.pageNumber(1).listSignatures()[0].geometry.boundingBox;\n```\n\n\n## Expense (invoice and receipt) objects\n\nSince the format of responses for Amazon Textract's [Expense results](https://docs.aws.amazon.com/textract/latest/dg/expensedocuments.html) is very different from the [general document analysis APIs](https://docs.aws.amazon.com/textract/latest/dg/how-it-works-document-layout.html), you can use the separate `TextractExpense` class in this library to process these.\n\n```typescript\nconst expense = new TextractExpense(textractResponse);\n\n// Iterate through content:\nconsole.log(`Found ${expense.nDocs} expense docs in file`);\nconst expenseDoc = [...expense.iterDocs()][0];\nfor (const group of expenseDoc.iterLineItemGroups()) {\n  for (const item of group.iterLineItems()) {\n    console.log(`Found line item with ${item.nFields} fields`);\n    for (const field of item.iterFields()) {\n      ...\n    }\n  }\n}\n\n// Get snapshot arrays instead of iterators, if you need:\nconst summaryFieldsArrByDoc = expense.listDocs().map((doc) => doc.listSummaryFields());\nconst linesArrsByPage = doc.listPages().map((p) => p.listLines())\n\n// Retrieve item fields by their tagged 'type':\nconst vendorNameFields = expenseDoc.searchSummaryFieldsByType(\"VENDOR_NAME\");\nconsole.log(`Found ${vendorNameFields.length} vendor name fields in doc summary`);\nconsole.log(vendorNameFields[0].fieldType.text); // \"VENDOR_NAME\"\nconsole.log(vendorNameFields[0].value.text); // e.g. \"Amazon.com\"\n```\n\n\n## Identity document objects\n\nSimilarly to expenses mentioned above, Amazon Textract offers specific APIs for [identity document analysis](https://docs.aws.amazon.com/textract/latest/dg/how-it-works-identity.html). You can use the separate `TextractIdentity` class in this library to process these.\n\n```typescript\nimport { ApiAnalyzeIdResponse, TextractIdentity } from \"amazon-textract-response-parser\";\nimport { TextractClient, AnalyzeIDCommand } from \"@aws-sdk/client-textract\";\nconst textract = new TextractClient({});\n\nasync function main() {\n  const textractResponse = await textract.send(\n    new AnalyzeIDCommand({\n      Document: { Bytes: await fs.readFile(\"...\") },\n    })\n  );\n  const identity = new TextractIdentity((textractResponse as unknown) as ApiAnalyzeIdResponse);\n}\n```\n\nThe library implements some enumerations of known values (for field types, ID types, and so on) to make processing AnalyzeID responses a little simpler:\n\n```typescript\nimport { IdDocumentType, IdFieldType } from \"amazon-textract-response-parser\";\n\nconst idDoc = identity.getDocAtIndex(0); // (Or iterate, list docs in a result)\n\nif (idDoc.idType === IdDocumentType.Passport) {\n  // Fetch fields by known type:\n  const passNumField = idDoc.getFieldByType(IdFieldType.DocumentNumber);\n  console.log(\n    `Passport number ${passNumField.value}, confidence ${passNumField.valueConfidence}%`\n  );\n\n} else if (idDoc.idType === IdDocumentType.DrivingLicense) {\n  // ...Or list or iterate the document's fields:\n  for (const field of idDoc.iterFields()) {\n    console.log(`${field.fieldTypeRaw}: ${field.valueRaw}`);\n  }\n\n} else {\n  // Produce human-readable representations of fields, documents, or whole responses:\n  console.log(idDoc.str());\n}\n```\n\n\n## Mutation operations\n\nEasier analysis and querying of Textract results is useful, but what if you want to augment or edit your Textract JSONs with JS/TS Textract Response Parser?\n\nIn general:\n\n- Where the library classes (`TextractDocument`, `Page`, `Word`, etc) offer mutation operations, these should modify the source API JSON object **in-place** and ensure self-consistency.\n- For library classes that are backed by a specific object in the source API JSON, you can access it via the `.dict` property (`word.dict`, `table.dict`, etc) but then *you're* responsible for updating any required references in other objects if making changes there.\n- Any individual-block-level changes you make to the underlying API JSON should be dynamically reflected in the parsed TRP objects (e.g. overriding word text, coordinates, etc)... But changes that affect inter-block relationships are more likely to cause staleness issues.\n\nIn particular for **array properties**, you'll note that TRP generally exposes getters and iterators (such as `table.nRows`, `table.iterRows()`, `table.listRows()`, `table.cellsAt()`) rather than direct access to lists - to avoid implying that arbitrary array mutations (such as `table.rows.pop()`) are properly supported.\n\n\n## Other features and examples\n\nFor more examples on how to use the library, you can refer to the (basic) [examples](examples/) and (more complete) [test](test/) folders on GitHub, and the source code itself. If you have suggestions for additional features that would be useful, please open a GitHub issue!\n\n\n## Development\n\nThe integration tests for this library validate the end-to-end toolchain for calling Amazon Textract and parsing the result, so note that to run the full `npm run test` command:\n\n1. Your environment will need to be configured with a login to AWS (e.g. via the [AWS CLI](https://aws.amazon.com/cli/))\n2. Billable API requests may be made\n\nYou can alternatively run just the local/unit tests via `npm run test:unit`.\n"
  },
  {
    "path": "src-js/bin/reading-order-diagnostic.js",
    "content": "/**\n * Basic script to extract and save reading-order text from Amazon Textract JSONs.\n *\n * This script uses the built NodeJS library, so check your build is up-to-date by first running\n * `npm run build`! JSON files are read from IN_FOLDER, parsed with the TRP, and reading-order text\n * files output to the OUT_FOLDER. This can be a helpful tool for debugging issues with (or writing\n * corpus tests for) the 'inReadingOrder' functions.\n */\n/* eslint-disable no-undef */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\n// Node Built-Ins:\nconst fs = require(\"fs\");\nconst path = require(\"path\");\n\n// Local Dependencies:\nconst { TextractDocument } = require(\"../dist/cjs\");\n\nconst IN_FOLDER = \"test/data/corpus\";\nconst OUT_FOLDER = \"test/data/corpus-readingorder\";\n\nif (!fs.existsSync(OUT_FOLDER)) {\n  fs.mkdirSync(OUT_FOLDER, { recursive: true });\n}\n\nfs.readdirSync(IN_FOLDER).forEach((file) => {\n  let response;\n  try {\n    response = JSON.parse(fs.readFileSync(path.join(IN_FOLDER, file)));\n  } catch (err) {\n    console.error(`Skipping ${file} - doesn't look like valid JSON`);\n    return;\n  }\n  const pageTexts = [];\n  const doc = new TextractDocument(response);\n  doc.listPages().forEach((page, ixPage) => {\n    pageTexts.push(\n      [\n        \"------------------------------------------------\",\n        `PAGE ${ixPage + 1}`,\n        \"------------------------------------------------\",\n        page.getTextInReadingOrder(),\n      ].join(\"\\n\")\n    );\n  });\n\n  const outFileRoot = path.join(OUT_FOLDER, file.split(\".\")[0]);\n  fs.writeFileSync(`${outFileRoot}.readingorder.txt`, pageTexts.join(\"\\n\\n\\n\"));\n  fs.writeFileSync(\n    `${outFileRoot}.readingorder.json`,\n    JSON.stringify(\n      doc\n        .listPages()\n        .map((page) =>\n          page._getLineClustersByColumn().map((col) => col.map((cluster) => cluster.map((line) => line.text)))\n        ),\n      null,\n      2\n    )\n  );\n  console.log(`Done ${file}`);\n});\nconsole.log(\"All done!\");\n"
  },
  {
    "path": "src-js/examples/README.md",
    "content": "# Examples for TRP.js\n\nThis folder contains example projects using the Amazon Textract Response Parser for JavaScript/TypeScript from various different build environments, to help you get started.\n\n> ⚠️ **Note:** While all of the example projects reference local API response JSON files, some also make Amazon Textract API calls by default - so running them may incur (typically very small) charges. See [Amazon Textract Pricing](https://aws.amazon.com/textract/pricing/) for details.\n\n\n## Pre-requisites for running the examples\n\n\n### Local builds of TRP.js\n\nThe projects use the **local build** of the library for pre-publication testing, so you'll need to run `npm run build` in the parent `src-js` folder before they'll work.\n\nTo instead switch to published TRP.js versions (if you're using an example as a skeleton for your own project):\n\n- For NodeJS projects, Replace the package.json relative path in `\"amazon-textract-response-parser\": \"file:../..\"` with a normal version spec like `\"amazon-textract-response-parser\": \"^0.4.3\"`, and re-run `npm install`\n- For browser IIFE projects, edit the `<script>` tag in the HTML to point to your chosen CDN or downloaded `trp.min.js` location\n\n\n### API credentials for Amazon Textract\n\nFor the example projects that demonstrate actual integration with Amazon Textract, we create a [TextractClient](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/textract/) with empty [configuration](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-textract/TypeAlias/TextractClientConfigType/). This assumes that your AWS IAM **credentials** and default **region** are pre-configured for access through e.g. environment variables.\n\nIf you're new to setting up AWS credentials for CLI and SDK access in general, refer to the credentials guidance in the [AWS SDK for JavaScript (v3) Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/setting-credentials.html) and/or the [AWS CLI user guide](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html).\n\n\n## Working with multi-page documents or many documents at once\n\nThe ['synchronous' request/response APIs](https://docs.aws.amazon.com/textract/latest/dg/sync.html) used in these examples generally only support images or single-page documents. Multi-page documents will need to use [Asynchronous Textract APIs](https://docs.aws.amazon.com/textract/latest/dg/async.html) instead. Since Asynchronous APIs like [StartDocumentAnalysis](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/textract/command/StartDocumentAnalysisCommand/) return a **job ID** rather than an immediate result, applications will need to wait and [GetDocumentAnalysis](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/textract/command/GetDocumentAnalysisCommand/) to retrieve the result once it's ready. You'll also need to **upload the source document to Amazon S3** rather than passing it directly in the API request.\n\nFurthermore, Amazon Textract applies [quota limits](https://docs.aws.amazon.com/textract/latest/dg/limits-quotas-explained.html) on these APIs.\n\nAs a result, applications processing multi-page documents will generally need to orchestrate uploading the source file to S3; starting the analysis job; and resuming the processing flow once [notified via Amazon SNS](https://docs.aws.amazon.com/textract/latest/dg/async-notification-payload.html) that the analysis is ready (which is much more quota-efficient than polling the `GetDocumentAnalysis` API)... Particularly spiky workflows (where many documents are submitted at once) may also want to implement queuing to manage inbound request rates.\n\nA full end-to-end solution for this involves deploying cloud infrastructure like AWS Lambda functions and Amazon SNS topics, so is outside the scope of these TRP samples. Instead, refer to:\n\n- [Amazon Textract IDP CDK Constructs](https://github.com/aws-samples/amazon-textract-idp-cdk-constructs) for composable, deployable solution components written in [AWS CDK](https://aws.amazon.com/cdk/).\n- [Amazon Textract Textractor](https://github.com/aws-samples/amazon-textract-textractor/) which mainly provides Python bindings, but also a [handy CLI](https://aws-samples.github.io/amazon-textract-textractor/commandline.html) for processing a batch of documents for a quick PoC.\n- Other code samples listed in the [Amazon Textract Developer Guide](https://docs.aws.amazon.com/textract/latest/dg/service_code_examples.html).\n"
  },
  {
    "path": "src-js/examples/browser-iife/main.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <!--\n      Add a <script> tag to your page to load the IIFE version of TRP.js\n      \n      In this example we use the local development version of the library via the dist/ folder\n      (which means you'll need to have run `npm run build`!).\n    -->\n    <script src=\"../../dist/browser/trp.min.js\"></script>\n    <!--\n      To use the published versions of the library through a CDN like jsDelivr or UNPKG, you might\n      set up your tag something like the below.\n\n        <script\n          src=\"https://cdn.jsdelivr.net/npm/amazon-textract-response-parser@0.4.3\"\n          integrity=\"sha384-alwjvV+x6bUphISfuDH4sYFrZGG8wUyerOE69EjRDcgkKbLNzYg4lWvDYp+L+7W9\"\n          crossorigin=\"anonymous\"\n        ></script>\n      \n      or:\n\n        <script\n          src=\"https://unpkg.com/amazon-textract-response-parser@0.4.3\"\n          integrity=\"sha384-alwjvV+x6bUphISfuDH4sYFrZGG8wUyerOE69EjRDcgkKbLNzYg4lWvDYp+L+7W9\"\n          crossorigin=\"anonymous\"\n        ></script>\n\n      These CDNs should resolve `/dist/browser/trp.min.js` as the default file automatically, but\n      you can specify it explicitly at the end of the URL if you prefer. You could check the\n      expected integrity hash via a tool like https://www.srihash.org/\n    -->\n  </head>\n  <body>\n    <!--\n      After loading the TRP script above, the global `window.trp` object should be set for your\n      code to use. In this example we've put the example JavaScript in main.js - but you could\n      inline it to the <script> tag in this HTML if you prefer:\n    -->\n    <script src=\"./main.js\"></script>\n    <!--\n      Browser JavaScript generally can't access the local filesystem for security reasons, so this\n      example uses a file upload control which the test runner will automatically operate:\n    -->\n    <h1>Select an Amazon Textract API response JSON file to analyze</h1>\n    <input id=\"textractJson\" type=\"file\" onchange=\"onFileUpload(this)\"/>\n  </body>\n</html>\n"
  },
  {
    "path": "src-js/examples/browser-iife/main.js",
    "content": "/**\n * Browser Javascript for main.html to demonstrate using TRP.js via IIFE <script> tag.\n *\n * This script assumes the TRP.js IIFE bundle has already been included (e.g. via another <script>\n * tag), to define the global `trp` object.\n *\n * Basic initial tests run as soon as the script is executed, but we can only demonstrate loading\n * a Textract JSON once the HTML file input is updated, which will trigger `onFileUpload()`.\n */\n\n// Set a global flag which will be polled by Puppeteer to determine when the tests have succeeded:\nwindow.fileProcessed = false;\n\n// Run initial tests that don't require the Textract JSON:\nconsole.log(\"Checking some expected components are accessible through IIFE...\");\nconst CHILD = trp.ApiRelationshipType.Child;\nconst ApiTextType = trp.ApiTextType;\nconst ApiKeyValueEntityTypeEnum = trp.ApiKeyValueEntityType;\nconst ApiJobStatus = trp.ApiJobStatus;\nconst ApiTableEntityType = trp.ApiTableEntityType;\nconst aggregate = trp.aggregate;\nconst Word = trp.Word;\nconst TexDoc = trp.TextractDocument;\nconst TexExp = trp.TextractExpense;\nconst FormGeneric = trp.FormGeneric;\nconst Geometry = trp.Geometry;\nconst TexId = trp.TextractIdentity;\nconst QueryResultGeneric = trp.QueryResultGeneric;\nconst TableGeneric = trp.TableGeneric;\nconsole.log(\"Testing aggregate() utility function...\");\nconst aggTest = aggregate([1, 2, 3, 4], trp.AggregationMethod.Mean);\nif (aggTest !== 2.5) {\n  throw new Error(`Expected trp.aggregate([1, 2, 3, 4], \"MEAN\") to return 2.5: Got ${aggTest}`);\n}\n\n/**\n * Demonstrate basic parsing and analysis of a Textract response JSON with TRP\n *\n * @param {string} textractJsonStr\n */\nfunction parseDocResult(textractJsonStr) {\n  console.log(\"Loading Amazon Textract response JSON with TRP...\");\n  const doc = new trp.TextractDocument(JSON.parse(textractJsonStr));\n\n  console.log(`Got ${doc.nPages} pages`);\n  console.log(\"Testing getLineClustersInReadingOrder()\");\n  doc.pageNumber(1).getLineClustersInReadingOrder();\n\n  console.log(\"Marking tests finished\");\n  window.fileProcessed = true;\n}\n\n/**\n * Extract JSON content when user selects a file, and call `parseDocResult()` with it.\n *\n * @param {HTMLInputElement} fileInput The type=\"file\" input that generated the event\n */\nfunction onFileUpload(fileInput) {\n  const file = fileInput.files[0];\n  if (file) {\n    const reader = new FileReader();\n    reader.onload = (evt) => {\n      parseDocResult(evt.target.result);\n    };\n    reader.onerror = (err) => {\n      throw err;\n    };\n    reader.readAsText(file, \"UTF-8\");\n  } else {\n    throw new Error(\"No JSON file selected\");\n  }\n}\n"
  },
  {
    "path": "src-js/examples/browser-iife/package.json",
    "content": "{\n  \"name\": \"@amazon-textract-response-parser-examples/browser-iife\",\n  \"version\": \"0.0.1\",\n  \"description\": \"Example of using TRP.js via global object from HTML <script> tag\",\n  \"main\": \"main.js\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"test\": \"node test.js\"\n  },\n  \"author\": \"Amazon Rekognition Textract Demos <rekognition-textract-demos@amazon.com>\",\n  \"license\": \"Apache-2.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"colors\": \"^1.4.0\",\n    \"puppeteer\": \"^22.9.0\"\n  }\n}\n"
  },
  {
    "path": "src-js/examples/browser-iife/test.js",
    "content": "/**\n * Script to test main.html using headless Chrome browser via Puppeteer\n *\n * This test script opens the HTML file in a headless browser, selects an example Textract response\n * JSON from the test data folder, and then waits for the JS to process the file.\n */\n// NodeJS Built-Ins:\nimport path from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\n\n// External Dependencies:\nimport colors from \"colors\";\nimport puppeteer from \"puppeteer\";\n\n// We need an absolute path to main.html for puppeteer, but __dirname is not defined in ES module\n// mode NodeJS - so need to go through some extra steps:\nconst __filename = fileURLToPath(import.meta.url);\nconst __dirname = path.dirname(__filename);\nconst HTML_URI = `file:///${__dirname}/main.html`;\nconst RESPONSE_JSON_PATH = path.join(__dirname, \"..\", \"..\", \"test\", \"data\", \"test-response.json\");\n\n// A try/catch block is necessary to run top-level `await`s in NodeJS module:\n// eslint-disable-next-line no-useless-catch\ntry {\n  // Launch the browser & configure event listeners to forward console msgs + throw errors:\n  const browser = await puppeteer.launch();\n  const page = await browser.newPage();\n  page\n    .on(\"console\", (message) =>\n      console.log(`[${message.type().substring(0, 3).toUpperCase()}] ${message.text()}`),\n    )\n    .on(\"pageerror\", (err) => {\n      console.error(\"Browser page error\");\n      throw err;\n    })\n    .on(\"requestfailed\", (req) => {\n      console.error(\"Browser request failed\");\n      throw new Error(req.failure().errorText);\n    });\n\n  console.log(colors.green(\"Opening main.html in browser...\"));\n  await page.goto(HTML_URI);\n\n  console.log(colors.green(\"Uploading Amazon Textract sample JSON...\"));\n  const elementHandle = await page.$(\"input#textractJson\");\n  await elementHandle.uploadFile(RESPONSE_JSON_PATH);\n\n  console.log(colors.green(\"Waiting for sample JS to process the file...\"));\n  await page.waitForFunction(\"window.fileProcessed\", {\n    timeout: 5000, // 5sec\n  });\n\n  console.log(colors.green(\"Closing browser...\"));\n  await browser.close();\n  console.log(colors.green(\"Done!\"));\n} catch (err) {\n  // We want to re-throw any error so it marks the test run as failed:\n  throw err;\n}\n"
  },
  {
    "path": "src-js/examples/nodejs-import/main.js",
    "content": "/**\n * Example script using TRP.js from NodeJS with ES-style module imports\n *\n * This script shows how you can get started with TRP using either local Amazon Textract JSON\n * response files, or calling synchronous Amazon Textract APIs.\n */\n// NodeJS Built-Ins:\nimport { strict as assert } from \"node:assert\";\nimport { mkdir, readFile, writeFile } from \"node:fs/promises\";\n\n// External Dependencies:\nimport { TextractClient, AnalyzeDocumentCommand } from \"@aws-sdk/client-textract\";\n\n// TRP.js:\nimport { TextractDocument, TextractExpense } from \"amazon-textract-response-parser\";\n\n// You could also directly `import` static JSON test data files like this:\n// (These data file imports will only work in this example project, because the files aren't\n// published to NPM)\n// import staticTestResponse from \"amazon-textract-response-parser/test/data/test-response.json\" assert { type: \"json\" };\n// import staticExpResponse from \"amazon-textract-response-parser/test/data/invoice-expense-response.json\" assert { type: \"json\" };\n\n// Quick smoke tests with pre-existing data files:\n// (Note top-level `await`s like this may only work with the `--experimental-specifier-resolution` flag.\n// Otherwise you may need to wrap the code in an `async function`)\nconst staticTestResponse = JSON.parse(await readFile(\"../../test/data/test-response.json\", \"utf-8\"));\nconst staticDoc = new TextractDocument(staticTestResponse);\nassert.strictEqual(staticDoc.nPages, 1);\nassert.strictEqual(staticDoc.pageNumber(1).nTables, 1);\nstaticDoc.pageNumber(1).getLineClustersInReadingOrder();\nstaticDoc.pageNumber(1).getLinesByLayoutArea();\n\nconst staticExpResponse = JSON.parse(\n  await readFile(\"../../test/data/invoice-expense-response.json\", \"utf-8\"),\n);\nconst staticExpense = new TextractExpense(staticExpResponse);\nassert.strictEqual(staticExpense.nDocs, 1);\nconst staticExpenseDoc = [...staticExpense.iterDocs()][0];\nassert.strictEqual(staticExpenseDoc.nSummaryFields, 31);\n\n// Actually call Amazon Textract and use the results:\nconst textract = new TextractClient({});\nconst textractResponse = await textract.send(\n  new AnalyzeDocumentCommand({\n    Document: {\n      Bytes: await readFile(\"../../test/data/default_document_4.png\"),\n    },\n    FeatureTypes: [\"FORMS\", \"LAYOUT\", \"TABLES\"],\n  }),\n);\nconst doc = new TextractDocument(textractResponse);\nassert.strictEqual(doc.nPages, 1);\nassert.strictEqual(Math.abs(doc.pageNumber(1).getModalWordOrientationDegrees()), 0);\n\n// Render the test doc to an HTML file:\n// eslint-disable-next-line @typescript-eslint/no-empty-function\nawait mkdir(\"./data-tmp\", { recursive: true }).catch((_) => {});\nawait writeFile(\"./data-tmp/doc.html\", doc.html(), \"utf-8\");\n\nconsole.log(\"Done!\");\n"
  },
  {
    "path": "src-js/examples/nodejs-import/package.json",
    "content": "{\n  \"name\": \"@amazon-textract-response-parser-examples/nodejs-import\",\n  \"version\": \"0.0.1\",\n  \"description\": \"Example of using TRP.js from NodeJS with ES-style 'import' statements\",\n  \"main\": \"main.js\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"test\": \"node --experimental-specifier-resolution=node main.js\"\n  },\n  \"author\": \"Amazon Rekognition Textract Demos <rekognition-textract-demos@amazon.com>\",\n  \"license\": \"Apache-2.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"@aws-sdk/client-textract\": \"^3.499.0\",\n    \"amazon-textract-response-parser\": \"file:../..\"\n  },\n  \"engines\": {\n    \"node\": \">=18\"\n  }\n}\n"
  },
  {
    "path": "src-js/examples/nodejs-require/main.js",
    "content": "/**\n * Example script using TRP.js from NodeJS with CommonJS-style module `require()`s\n *\n * This script shows how you can get started with TRP using either local Amazon Textract JSON\n * response files, or calling synchronous Amazon Textract APIs.\n */\n// NodeJS Built-Ins:\nconst assert = require(\"node:assert\").strict;\nconst { mkdir, readFile, writeFile } = require(\"node:fs/promises\");\n\n// External Dependencies:\nconst { TextractClient, AnalyzeDocumentCommand } = require(\"@aws-sdk/client-textract\");\n\n// TRP.js:\nconst { TextractDocument, TextractExpense } = require(\"amazon-textract-response-parser\");\n\n// You could also directly `require` static JSON test data files like this:\n// (These data file imports will only work in this example project, because the files aren't\n// published to NPM)\n// const testResponse = require(\"amazon-textract-response-parser/test/data/test-response.json\");\n// const testExpenseResponse = require(\"amazon-textract-response-parser/test/data/invoice-expense-response.json\");\n\n/**\n * Quick smoke tests with pre-existing data files\n */\nasync function testStaticFiles() {\n  const staticTestResponse = JSON.parse(await readFile(\"../../test/data/test-response.json\", \"utf-8\"));\n  const staticDoc = new TextractDocument(staticTestResponse);\n  assert.strictEqual(staticDoc.nPages, 1);\n  assert.strictEqual(staticDoc.pageNumber(1).nTables, 1);\n  staticDoc.pageNumber(1).getLineClustersInReadingOrder();\n  staticDoc.pageNumber(1).getLinesByLayoutArea();\n\n  const staticExpResponse = JSON.parse(\n    await readFile(\"../../test/data/invoice-expense-response.json\", \"utf-8\"),\n  );\n  const staticExpense = new TextractExpense(staticExpResponse);\n  assert.strictEqual(staticExpense.nDocs, 1);\n  const staticExpenseDoc = [...staticExpense.iterDocs()][0];\n  assert.strictEqual(staticExpenseDoc.nSummaryFields, 31);\n}\n\n/**\n * Actually call Amazon Textract and use the results\n */\nasync function testCallTextract() {\n  const textract = new TextractClient({});\n  const textractResponse = await textract.send(\n    new AnalyzeDocumentCommand({\n      Document: {\n        Bytes: await readFile(\"../../test/data/default_document_4.png\"),\n      },\n      FeatureTypes: [\"FORMS\", \"LAYOUT\", \"TABLES\"],\n    }),\n  );\n  const doc = new TextractDocument(textractResponse);\n  assert.strictEqual(doc.nPages, 1);\n  assert.strictEqual(Math.abs(doc.pageNumber(1).getModalWordOrientationDegrees()), 0);\n\n  // Render the test doc to an HTML file:\n  // eslint-disable-next-line @typescript-eslint/no-empty-function\n  await mkdir(\"./data-tmp\", { recursive: true }).catch((_) => {});\n  await writeFile(\"./data-tmp/doc.html\", doc.html(), \"utf-8\");\n}\n\ntestStaticFiles()\n  .then(() => testCallTextract())\n  .then(() => console.log(\"Done!\"));\n"
  },
  {
    "path": "src-js/examples/nodejs-require/package.json",
    "content": "{\n  \"name\": \"@amazon-textract-response-parser-examples/nodejs-require\",\n  \"version\": \"0.0.1\",\n  \"description\": \"Example of using TRP.js from NodeJS with CommonJS-style 'require' statements\",\n  \"main\": \"main.js\",\n  \"scripts\": {\n    \"test\": \"node main.js\"\n  },\n  \"author\": \"Amazon Rekognition Textract Demos <rekognition-textract-demos@amazon.com>\",\n  \"license\": \"Apache-2.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"@aws-sdk/client-textract\": \"^3.499.0\",\n    \"amazon-textract-response-parser\": \"file:../..\"\n  }\n}\n"
  },
  {
    "path": "src-js/examples/nodejs-typescript/package.json",
    "content": "{\n  \"name\": \"@amazon-textract-response-parser-examples/nodejs-typescript\",\n  \"version\": \"0.0.1\",\n  \"description\": \"Example of using TRP.js from NodeJS with TypeScript\",\n  \"main\": \"dist/main.js\",\n  \"scripts\": {\n    \"build\": \"tsc\",\n    \"clean\": \"rimraf dist\",\n    \"start\": \"node dist/main.js\",\n    \"test\": \"npm run clean && npm run build && npm run start\"\n  },\n  \"author\": \"Amazon Rekognition Textract Demos <rekognition-textract-demos@amazon.com>\",\n  \"license\": \"Apache-2.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"@aws-sdk/client-textract\": \"^3.499.0\",\n    \"amazon-textract-response-parser\": \"file:../..\"\n  },\n  \"devDependencies\": {\n    \"rimraf\": \"^5.0.5\",\n    \"typescript\": \"^4.9.5\"\n  }\n}\n"
  },
  {
    "path": "src-js/examples/nodejs-typescript/src/main.ts",
    "content": "/**\n * Example script using TRP.js from NodeJS with ES-style module imports in TypeScript\n *\n * This script shows how you can get started with TRP using either local Amazon Textract JSON\n * response files, or calling synchronous Amazon Textract APIs.\n */\n// NodeJS Built-Ins:\nimport { strict as assert } from \"node:assert\";\nimport { mkdir, readFile, writeFile } from \"node:fs/promises\";\n\n// External Dependencies:\nimport { TextractClient, AnalyzeDocumentCommand } from \"@aws-sdk/client-textract\";\n\n// TRP.js:\nimport {\n  ApiAnalyzeDocumentResponse,\n  ApiAnalyzeExpenseResponse,\n  TextractDocument,\n  TextractExpense,\n} from \"amazon-textract-response-parser\";\n\n// You could also directly `import` static JSON test data files like this:\n// (These data file imports will only work in this example project, because the files aren't\n// published to NPM)\n// eslint-disable-next-line @typescript-eslint/no-var-requires\n// const testResponse: ApiAnalyzeDocumentResponse = require(\"amazon-textract-response-parser/test/data/test-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\n// const testExpenseResponse: ApiAnalyzeExpenseResponse = require(\"amazon-textract-response-parser/test/data/invoice-expense-response.json\");\n\n/**\n * Quick smoke tests with pre-existing data files\n */\nasync function testStaticFiles() {\n  const staticTestResponse: ApiAnalyzeDocumentResponse = JSON.parse(\n    await readFile(\"../../test/data/test-response.json\", \"utf-8\"),\n  );\n  const staticDoc = new TextractDocument(staticTestResponse);\n  assert.strictEqual(staticDoc.nPages, 1);\n  assert.strictEqual(staticDoc.pageNumber(1).nTables, 1);\n  staticDoc.pageNumber(1).getLineClustersInReadingOrder();\n  staticDoc.pageNumber(1).getLinesByLayoutArea();\n\n  const staticExpResponse: ApiAnalyzeExpenseResponse = JSON.parse(\n    await readFile(\"../../test/data/invoice-expense-response.json\", \"utf-8\"),\n  );\n  const staticExpense = new TextractExpense(staticExpResponse);\n  assert.strictEqual(staticExpense.nDocs, 1);\n  const staticExpenseDoc = [...staticExpense.iterDocs()][0];\n  assert.strictEqual(staticExpenseDoc.nSummaryFields, 31);\n}\n\n/**\n * Actually call Amazon Textract and use the results\n */\nasync function testCallTextract() {\n  const textract = new TextractClient({});\n  const textractResponse = await textract.send(\n    new AnalyzeDocumentCommand({\n      Document: {\n        Bytes: await readFile(\"../../test/data/default_document_4.png\"),\n      },\n      FeatureTypes: [\"FORMS\", \"LAYOUT\", \"TABLES\"],\n    }),\n  );\n  const doc = new TextractDocument(textractResponse as ApiAnalyzeDocumentResponse);\n  assert.strictEqual(doc.nPages, 1);\n  const angle = doc.pageNumber(1).getModalWordOrientationDegrees();\n  assert.notStrictEqual(angle, null);\n  assert.strictEqual(Math.abs(angle as number), 0);\n\n  // Render the test doc to an HTML file:\n  // eslint-disable-next-line @typescript-eslint/no-empty-function\n  await mkdir(\"./data-tmp\", { recursive: true }).catch((_) => {});\n  await writeFile(\"./data-tmp/doc.html\", doc.html(), \"utf-8\");\n}\n\ntestStaticFiles()\n  .then(() => testCallTextract())\n  .then(() => console.log(\"Done!\"));\n"
  },
  {
    "path": "src-js/examples/nodejs-typescript/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"lib\": [\"es2016\"],\n    \"module\": \"CommonJS\",\n    \"moduleResolution\": \"node\",\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitOverride\": true,\n    \"outDir\": \"dist\",\n    \"removeComments\": true,\n    \"sourceMap\": true,\n    \"strict\": true,\n    \"target\": \"ES6\"\n  },\n  \"exclude\": [\"dist/\", \"node_modules/\", \"**/*.spec.*\"],\n  \"include\": [\"src/\"]\n}\n"
  },
  {
    "path": "src-js/jest.config.js",
    "content": "module.exports = {\n  preset: \"ts-jest\",\n  testEnvironment: \"node\",\n  // `examples` packages define their own test commands\n  testPathIgnorePatterns: [\"/examples/\", \"/node_modules/\"]\n};\n"
  },
  {
    "path": "src-js/package.json",
    "content": "{\n  \"name\": \"amazon-textract-response-parser\",\n  \"version\": \"0.4.3\",\n  \"description\": \"Parse API responses from Amazon Textract with higher-level helpers\",\n  \"keywords\": [\n    \"aws\",\n    \"amazon-textract\",\n    \"textract\"\n  ],\n  \"main\": \"dist/cjs/index.js\",\n  \"module\": \"dist/es/index.js\",\n  \"types\": \"dist/types/index.d.ts\",\n  \"jsdelivr\": \"dist/browser/trp.min.js\",\n  \"unpkg\": \"dist/browser/trp.min.js\",\n  \"directories\": {\n    \"lib\": \"lib\"\n  },\n  \"files\": [\n    \"/dist\"\n  ],\n  \"scripts\": {\n    \"audit:examples\": \"(set -e && for ex in examples/*; do if [ $ex == 'examples/README.md' ]; then continue; fi; (cd $ex && npm audit fix); done)\",\n    \"build:browser\": \"rollup -c\",\n    \"build:cjs\": \"tsc -p tsconfig.cjs.json\",\n    \"build:es\": \"tsc -p tsconfig.es.json\",\n    \"//\": \"# TODO: Remove below `replace` fix when https://github.com/microsoft/TypeScript/issues/54879 resolved\",\n    \"build:types\": \"tsc -p tsconfig.types.json && replace 'readonly text: string;' 'get text(): string;' ./dist/types -r\",\n    \"build\": \"concurrently -n 'iife,cjs,es,types' 'npm run build:browser' 'npm run build:cjs' 'npm run build:es' 'npm run build:types'\",\n    \"clean\": \"rimraf dist\",\n    \"//\": \"# TODO: clean:examples command is not yet cross-platform - requires bash-like shell\",\n    \"clean:examples\": \"(set -e && for ex in examples/*; do if [ $ex == 'examples/README.md' ]; then continue; fi; (cd $ex && rimraf node_modules); done)\",\n    \"prepublishOnly\": \"npm run clean && npm run build && npm run test:examples\",\n    \"prettify\": \"prettier --config .prettierrc.js 'src/**/*.{js,ts,tsx}' --write\",\n    \"lint:src\": \"eslint --quiet --fix 'src/**/*.{js,ts,tsx}'\",\n    \"lint\": \"eslint --quiet --fix '{src,test}/**/*.{js,ts,tsx}'\",\n    \"reading-order-diagnostic\": \"npm run build && node bin/reading-order-diagnostic.js\",\n    \"test\": \"jest --coverage\",\n    \"//\": \"# TODO: test:examples command is not yet cross-platform - requires bash-like shell\",\n    \"test:examples\": \"(set -e && for ex in examples/*; do if [ $ex == 'examples/README.md' ]; then continue; fi; (cd $ex && npm install && npm run test); done)\",\n    \"test:unit\": \"jest --coverage --testPathPattern=test/unit\",\n    \"update:examples\": \"(set -e && for ex in examples/*; do if [ $ex == 'examples/README.md' ]; then continue; fi; (cd $ex && npm update); done)\"\n  },\n  \"repository\": {\n    \"directory\": \"src-js\",\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/aws-samples/amazon-textract-response-parser.git\"\n  },\n  \"author\": \"Amazon Rekognition Textract Demos <rekognition-textract-demos@amazon.com>\",\n  \"license\": \"Apache-2.0\",\n  \"bugs\": {\n    \"url\": \"https://github.com/aws-samples/amazon-textract-response-parser/issues\"\n  },\n  \"homepage\": \"https://github.com/aws-samples/amazon-textract-response-parser#readme\",\n  \"devDependencies\": {\n    \"@aws-sdk/client-textract\": \"^3.421.0\",\n    \"@rollup/plugin-node-resolve\": \"^15.0.0\",\n    \"@rollup/plugin-terser\": \"^0.4.4\",\n    \"@rollup/plugin-typescript\": \"^11.0.0\",\n    \"@types/jest\": \"^29.0.0\",\n    \"@typescript-eslint/eslint-plugin\": \"^6.1.0\",\n    \"@typescript-eslint/parser\": \"^6.1.0\",\n    \"concurrently\": \"^8.0.1\",\n    \"eslint\": \"^8.0.0\",\n    \"eslint-config-prettier\": \"^9.0.0\",\n    \"eslint-plugin-prettier\": \"^5.1.3\",\n    \"husky\": \"^8.0.3\",\n    \"jest\": \"^29.0.0\",\n    \"lint-staged\": \"^15.2.10\",\n    \"prettier\": \"^3.0.3\",\n    \"replace\": \"^1.2.2\",\n    \"rimraf\": \"^5.0.0||^6.0.0\",\n    \"rollup\": \"^3.29.5\",\n    \"ts-jest\": \"^29.0.0\",\n    \"typescript\": \"^5.3.3\"\n  },\n  \"husky\": {\n    \"hooks\": {\n      \"pre-commit\": \"lint-staged\"\n    }\n  },\n  \"lint-staged\": {\n    \"*.{js,ts,tsx}\": [\n      \"eslint --fix\"\n    ]\n  }\n}\n"
  },
  {
    "path": "src-js/rollup.config.mjs",
    "content": "// External Dependencies:\nimport resolve from \"@rollup/plugin-node-resolve\";\nimport typescript from \"@rollup/plugin-typescript\";\nimport terser from \"@rollup/plugin-terser\";\n\nexport default [\n  {\n    input: \"src/index.ts\",\n    output: {\n      name: \"trp\",\n      file: \"dist/browser/trp.min.js\",\n      format: \"iife\",\n      sourcemap: true,\n      plugins: [\n        terser({\n          keep_classnames: true,\n          keep_fnames: true,\n        }),\n      ],\n    },\n    plugins: [\n      resolve({ extensions: [\".js\", \".json\", \".ts\"] }),\n      typescript({ tsconfig: \"tsconfig.browser.json\" }),\n    ],\n  },\n];\n"
  },
  {
    "path": "src-js/src/api-models/base.ts",
    "content": "/**\n * Common Textract API models used by (multiple features in) the Textract Response Parser.\n *\n * This file collects types/interfaces common across multiple API sections.\n */\n// Local Dependencies:\nimport { ApiGeometry } from \"./geometry\";\n\n/**\n * Enumeration of all inter-Block Relationship types defined by Textract\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Relationship.html\n */\nexport const enum ApiRelationshipType {\n  /**\n   * Used to link QUERY blocks to QUERY_RESULTs\n   */\n  Answer = \"ANSWER\",\n  /**\n   * Used in a range of block types to link content within the block (e.g. LINE->WORD)\n   */\n  Child = \"CHILD\",\n  /**\n   * TODO: Usage of this type is not clear at time of writing\n   */\n  ComplexFeatures = \"COMPLEX_FEATURES\",\n  /**\n   * Used to link from a TABLE to its MERGED_CELL children\n   *\n   * (CHILD is used for the table's standard/un-merged CELL blocks, and from MERGED_CELL->CELL)\n   */\n  MergedCell = \"MERGED_CELL\",\n  /**\n   * Used to link from a TABLE to its associated TABLE_FOOTER, if present\n   */\n  TableFooter = \"TABLE_FOOTER\",\n  /**\n   * Used to link from a TABLE to its associated TABLE_TITLE, if present\n   */\n  TableTitle = \"TABLE_TITLE\",\n  /**\n   * Used to link from a forms/K-V KEY block to its associated VALUE block\n   */\n  Value = \"VALUE\",\n}\n\n/**\n * Internal interface for Relationships linking a `Block` to a list of (one or more) others\n *\n * See `ApiRelationship` and: https://docs.aws.amazon.com/textract/latest/dg/API_Relationship.html\n */\ninterface IRelationshipBase {\n  /**\n   * Unique IDs of target API `Block`s linked by the relationship\n   */\n  Ids: string[];\n  /**\n   * Semantic type of this relationship\n   */\n  Type: ApiRelationshipType;\n}\n\nexport interface ApiAnswerRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.Answer;\n}\n\nexport interface ApiChildRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.Child;\n}\n\nexport interface ApiComplexFeaturesRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.ComplexFeatures;\n}\n\nexport interface ApiMergedCellRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.MergedCell;\n}\n\nexport interface ApiTableFooterRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.TableFooter;\n}\n\nexport interface ApiTableTitleRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.TableTitle;\n}\n\nexport interface ApiValueRelationship extends IRelationshipBase {\n  Type: ApiRelationshipType.Value;\n}\n\n/**\n * Relationship linking a `Block` to a list of (one or more) others\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Relationship.html\n */\nexport type ApiRelationship =\n  | ApiAnswerRelationship\n  | ApiChildRelationship\n  | ApiComplexFeaturesRelationship\n  | ApiMergedCellRelationship\n  | ApiTableFooterRelationship\n  | ApiTableTitleRelationship\n  | ApiValueRelationship;\n\n/**\n * Enumeration of all types of `Block` (content item) detected by Amazon Textract\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Block.html\n */\nexport const enum ApiBlockType {\n  /**\n   * Plain table cell ignoring any merges (see MERGED_CELL instead)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n   */\n  Cell = \"CELL\",\n  /**\n   * Key element for a Form Data Key-Value pair (alternative style seen in some test cases)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n   */\n  Key = \"KEY\",\n  /**\n   * Compound block for Form Key-Value pairs - more recently replaced by KEY and VALUE\n   *\n   * Textract Form data results used to use this type for both the Key and Value of detected K-V\n   * pairs, with the `EntityType` field (and relationships) differentiating which was which. More\n   * recent responses appear to only use `KEY` and `VALUE` BlockTypes instead.\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n   */\n  KeyValueSet = \"KEY_VALUE_SET\",\n  /**\n   * Layout analysis result for a diagram / image / figure\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutFigure = \"LAYOUT_FIGURE\",\n  /**\n   * Layout analysis result segmenting page footer from other content\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutFooter = \"LAYOUT_FOOTER\",\n  /**\n   * Layout analysis result segmenting page header from other content\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutHeader = \"LAYOUT_HEADER\",\n  /**\n   * Layout analysis result for a Forms Key-Value pair\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutKeyValue = \"LAYOUT_KEY_VALUE\",\n  /**\n   * Layout analysis result for a list (e.g. bullet points or numbered paragraphs)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutList = \"LAYOUT_LIST\",\n  /**\n   * Layout analysis result for a page number annotation\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutPageNumber = \"LAYOUT_PAGE_NUMBER\",\n  /**\n   * Layout analysis result for a section-level heading\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutSectionHeader = \"LAYOUT_SECTION_HEADER\",\n  /**\n   * Layout analysis result for a table\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutTable = \"LAYOUT_TABLE\",\n  /**\n   * Layout analysis result for a paragraph of text\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutText = \"LAYOUT_TEXT\",\n  /**\n   * Layout analysis result for the main title of the document\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  LayoutTitle = \"LAYOUT_TITLE\",\n  /**\n   * A contiguous string of non-breaking-whitespace separated `WORD`s\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-lines-words.html\n   */\n  Line = \"LINE\",\n  /**\n   * Merged cell spanning multiple underlying rows or columns of a TABLE\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n   */\n  MergedCell = \"MERGED_CELL\",\n  /**\n   * Top-level container for an individual page (also present for single-image/-page requests)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-pages.html\n   */\n  Page = \"PAGE\",\n  /**\n   * Page-level instance of an input \"Query\" asked of the document\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n   */\n  Query = \"QUERY\",\n  /**\n   * (Potentially one of multiple) results returned for an input QUERY\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n   */\n  QueryResult = \"QUERY_RESULT\",\n  /**\n   * A boolean selection element such as a checkbox, radio button, circled word, etc\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-selectables.html\n   */\n  SelectionElement = \"SELECTION_ELEMENT\",\n  /**\n   * A detected signature (possibly in a key-value pair or table cell)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-analyzing.html\n   */\n  Signature = \"SIGNATURE\",\n  /**\n   * An overall table object\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n   */\n  Table = \"TABLE\",\n  /**\n   * A trailing/footer caption associated with a TABLE\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n   */\n  TableFooter = \"TABLE_FOOTER\",\n  /**\n   * A leading/header caption associated with a TABLE\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n   */\n  TableTitle = \"TABLE_TITLE\",\n  /**\n   * Value element for a Form Data Key-Value pair (alternative style seen in some test cases)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n   */\n  Value = \"VALUE\",\n  /**\n   * An individual \"word\" of text (string of characters not separated by whitespace)\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-lines-words.html\n   */\n  Word = \"WORD\",\n}\n\n/**\n * Subset type of the ApiBlockType enumeration that corresponds to LAYOUT_* blocks\n *\n * TODO: Should/can all the Layout-specific stuff in here be moved out of `base.ts`?\n */\nexport type ApiLayoutBlockType =\n  | ApiBlockType.LayoutFigure\n  | ApiBlockType.LayoutFooter\n  | ApiBlockType.LayoutHeader\n  | ApiBlockType.LayoutKeyValue\n  | ApiBlockType.LayoutList\n  | ApiBlockType.LayoutPageNumber\n  | ApiBlockType.LayoutSectionHeader\n  | ApiBlockType.LayoutTable\n  | ApiBlockType.LayoutText\n  | ApiBlockType.LayoutTitle;\n\n/**\n * Canonical Set of API block types counted as Layout* elements\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport const LAYOUT_BLOCK_TYPES = new Set([\n  ApiBlockType.LayoutFigure,\n  ApiBlockType.LayoutFooter,\n  ApiBlockType.LayoutHeader,\n  ApiBlockType.LayoutKeyValue,\n  ApiBlockType.LayoutList,\n  ApiBlockType.LayoutPageNumber,\n  ApiBlockType.LayoutSectionHeader,\n  ApiBlockType.LayoutTable,\n  ApiBlockType.LayoutText,\n  ApiBlockType.LayoutTitle,\n]);\n\n/**\n * Check if an API Block.BlockType corresponds to a Layout* element.\n */\nexport function isLayoutBlockType(blockType: ApiBlockType): boolean {\n  return LAYOUT_BLOCK_TYPES.has(blockType);\n}\n\n/**\n * Basic interface common to all types of Textract API `Block` (individual detected items)\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Block.html\n */\nexport interface ApiBlockBase {\n  /**\n   * Type of item detected\n   */\n  BlockType: ApiBlockType;\n  /**\n   * 0-100 based confidence score the model assigned to this detection\n   *\n   * (May not be present on all block types, for example QUERY)\n   */\n  Confidence?: number;\n  /**\n   * Position of the item on the input image / page\n   */\n  Geometry?: ApiGeometry;\n  /**\n   * Unique ID of this `Block`\n   *\n   * As mentioned in https://docs.aws.amazon.com/textract/latest/dg/API_Block.html this ID is only\n   * technically guaranteed to be unique within the scope of the API request\n   */\n  readonly Id: string;\n  /**\n   * Related Blocks\n   */\n  readonly Relationships?: ApiRelationship[];\n}\n"
  },
  {
    "path": "src-js/src/api-models/content.ts",
    "content": "/**\n * Low-level content Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to the low level text/content objects detected by\n * general document analysis, including text words/lines and selection elements.\n *\n * See:\n * - https://docs.aws.amazon.com/textract/latest/dg/how-it-works-lines-words.html\n * - https://docs.aws.amazon.com/textract/latest/dg/how-it-works-selectables.html\n */\n// Local Dependencies:\nimport { ApiBlockBase, ApiBlockType, ApiChildRelationship } from \"./base\";\nimport { ApiGeometry } from \"./geometry\";\n\n/**\n * Enumeration of detectable text types: handwriting vs computer printed text\n */\nexport const enum ApiTextType {\n  Handwriting = \"HANDWRITING\",\n  Printed = \"PRINTED\",\n}\n\n/**\n * Block representing a contiguous sequence of characters with no whitespace\n *\n * (Might include e.g. hyphens, underscores, etc)\n */\nexport interface ApiWordBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Word;\n  /**\n   * 0-100 based confidence of the OCR model in extracting the text of this word\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // Should always be present for WORD blocks\n  /**\n   * Text extracted by the OCR model\n   */\n  Text: string;\n  /**\n   * Whether the text appears hand-written or computer-generated\n   */\n  TextType: ApiTextType;\n}\n\n/**\n * Block representing a contiguous sequence of whitespace-separated WORDs\n */\nexport interface ApiLineBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Line;\n  /**\n   * TODO: Is this confidence of structure or aggregate of child words' OCR?\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // Should always be present for LINE blocks\n  /**\n   * Links to individual WORD blocks in this line\n   */\n  readonly Relationships: ApiChildRelationship[];\n  /**\n   * Pre-computed concatenated text for the overall line - no need to loop through\n   */\n  Text: string;\n}\n\n/**\n * Enumeration of (boolean) states a selection element can take\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-selectables.html\n */\nexport const enum ApiSelectionStatus {\n  Selected = \"SELECTED\",\n  NotSelected = \"NOT_SELECTED\",\n}\n\n/**\n * Block representing a selection element (e.g. checkbox, radio button, circled option)\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-selectables.html\n */\nexport interface ApiSelectionElementBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.SelectionElement;\n  /**\n   * 0-100 based confidence of the model detecting this selection element and its status\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // Should always be present for SELECTION_ELEMENT blocks\n  /**\n   * Whether the element is selected/ticked/checked/etc, or not\n   */\n  SelectionStatus: ApiSelectionStatus;\n}\n\n/**\n * Block representing a detected signature\n *\n * Signature blocks don't return OCR results, just their presence and locations\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-analyzing.html\n */\nexport interface ApiSignatureBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Signature;\n  /**\n   * 0-100 based confidence of the signature detection model for this result\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // Should always be present for SIGNATURE blocks\n  /**\n   * SIGNATURE blocks don't seem to specify any related blocks\n   */\n  Relationships?: never[];\n}\n"
  },
  {
    "path": "src-js/src/api-models/document.ts",
    "content": "/**\n * Document processing Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to Textract's overall \"document\" APIs (rather than\n * e.g. Expense and Identity, or the individual components like Forms/Queries/Tables)\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-document-layout.html\n */\n// Local Dependencies:\nimport { ApiBlockBase, ApiBlockType, ApiChildRelationship } from \"./base\";\nimport { ApiLineBlock, ApiSelectionElementBlock, ApiSignatureBlock, ApiWordBlock } from \"./content\";\nimport { ApiKeyBlock, ApiKeyValueSetBlock, ApiValueBlock } from \"./form\";\nimport { ApiGeometry } from \"./geometry\";\nimport { ApiLayoutBlock } from \"./layout\";\nimport { ApiQueryBlock, ApiQueryResultBlock } from \"./query\";\nimport {\n  ApiCellBlock,\n  ApiMergedCellBlock,\n  ApiTableBlock,\n  ApiTableFooterBlock,\n  ApiTableTitleBlock,\n} from \"./table\";\n\n// Temporary re-exports for consistency with old API:\nexport {\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiRelationshipType,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiAnswerRelationship,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiChildRelationship,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiComplexFeaturesRelationship,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiMergedCellRelationship,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiValueRelationship,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiRelationship,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiBlockType,\n} from \"./base\";\nexport {\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiTextType,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiWordBlock,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiLineBlock,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiSelectionStatus,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiSelectionElementBlock,\n} from \"./content\";\nexport {\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiKeyValueEntityType,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiKeyValueSetBlock,\n} from \"./form\";\nexport {\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiQueryBlock,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiQueryResultBlock,\n} from \"./query\";\nexport {\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiTableEntityType,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiTableBlock,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiTableCellEntityType,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiCellBlock,\n  /**\n   * @deprecated Please import direct from top-level TRP.js\n   */\n  ApiMergedCellBlock,\n} from \"./table\";\n\n/**\n * Block representing an overall page within a (potentially multi-page) document\n */\nexport interface ApiPageBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Page;\n  Geometry: ApiGeometry; // Always present for PAGE blocks\n  /**\n   * Top-level content contained within this page\n   *\n   * (These Blocks may in turn link to further sub-levels e.g. from TABLE to CELL)\n   */\n  readonly Relationships?: ApiChildRelationship[];\n}\n\n/**\n * Type describing actual 'Block' objects returnable by Textract general document analysis\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Block.html\n */\nexport type ApiBlock =\n  | ApiCellBlock\n  | ApiKeyBlock\n  | ApiKeyValueSetBlock\n  | ApiLayoutBlock\n  | ApiLineBlock\n  | ApiMergedCellBlock\n  | ApiPageBlock\n  | ApiQueryBlock\n  | ApiQueryResultBlock\n  | ApiSelectionElementBlock\n  | ApiSignatureBlock\n  | ApiTableBlock\n  | ApiTableFooterBlock\n  | ApiTableTitleBlock\n  | ApiValueBlock\n  | ApiWordBlock;\n"
  },
  {
    "path": "src-js/src/api-models/expense.ts",
    "content": "/**\n * Expense analysis Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to Textract's expense/invoice/receipt analysis APIs\n * as per https://docs.aws.amazon.com/textract/latest/dg/invoices-receipts.html\n */\n\n// Local Dependencies:\nimport { ApiGeometry } from \"./geometry\";\n\nexport interface ApiExpenseComponentDetection {\n  Confidence: number;\n  /**\n   * Geometry may be absent if 'Text' is \"\".\n   */\n  Geometry?: ApiGeometry;\n  Text: string;\n}\n\nexport interface ApiExpenseFieldType {\n  Confidence: number;\n  Text: string;\n}\n\nexport interface ApiExpenseField {\n  LabelDetection?: ApiExpenseComponentDetection;\n  PageNumber: number;\n  Type: ApiExpenseFieldType;\n  ValueDetection: ApiExpenseComponentDetection;\n}\n\nexport interface ApiExpenseLineItem {\n  LineItemExpenseFields: ApiExpenseField[];\n}\n\nexport interface ApiExpenseLineItemGroup {\n  readonly LineItemGroupIndex: number;\n  LineItems: ApiExpenseLineItem[];\n}\n\nexport interface ApiExpenseDocument {\n  readonly ExpenseIndex: number;\n  LineItemGroups: ApiExpenseLineItemGroup[];\n  SummaryFields: ApiExpenseField[];\n}\n"
  },
  {
    "path": "src-js/src/api-models/form.ts",
    "content": "/**\n * Form data (key-value pairs) analysis Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to the Form data / Key-Value pairs functionality in\n * general document analysis: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n */\n// Local Dependencies:\nimport { ApiBlockBase, ApiBlockType, ApiChildRelationship, ApiValueRelationship } from \"./base\";\nimport { ApiGeometry } from \"./geometry\";\n\n/**\n * Enumeration of EntityTypes supported for form key/value objects\n */\nexport const enum ApiKeyValueEntityType {\n  /**\n   * The key or \"label\" of the pair\n   */\n  Key = \"KEY\",\n  /**\n   * The value or \"data\" of the pair\n   */\n  Value = \"VALUE\",\n}\n\n/**\n * Alternative style for Key (label) item in a Forms key-value pair\n *\n * Conventionally, forms results appear to use KEY_VALUE_SET blocks for both key and value.\n * However, distinct 'KEY' and 'VALUE' blocks were observed in some responses.\n */\nexport interface ApiKeyBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Key;\n  /**\n   * 0-100 based confidence that this is a K-V key (*separate* from actual text OCR confidence!)\n   */\n  Confidence: number;\n  /**\n   * For compatibility with KEY_VALUE_SET, but always contains KEY for this BlockType\n   */\n  EntityTypes: ApiKeyValueEntityType.Key[];\n  Geometry: ApiGeometry; // Believe Geometry should always be present on this block type\n  /**\n   * Links to key text (CHILD) blocks and corresponding value/result (VALUE)\n   */\n  Relationships: Array<ApiChildRelationship | ApiValueRelationship>;\n}\n\n/**\n * Either a key or a value item for a key-value pair in a Forms analysis result\n *\n * Usually this `KEY_VALUE_SET` BlockType is used to indicate both key and value in K-V results,\n * with the `EntityTypes` (and relationship patterns) differentiating between the two. In some\n * cases, an alternative pattern has been observed using distinct `KEY` and `VALUE` blocks instead.\n */\nexport interface ApiKeyValueSetBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.KeyValueSet;\n  /**\n   * 0-100 based confidence of the key-value structure model (*separate* from text OCR confidence!)\n   *\n   * Confidence of the key-value relation is separate from text extraction confidence.\n   */\n  Confidence: number;\n  /**\n   * Differentiates whether this block is a KEY or a VALUE in the K-V pair\n   */\n  EntityTypes: ApiKeyValueEntityType[];\n  Geometry: ApiGeometry; // Believe Geometry should always be present on this block type\n  /**\n   * Links to text (CHILD) blocks and corresponding value/result (VALUE when EntityTypes=KEY)\n   *\n   * May not be present for VALUE blocks with no text (empty/unfilled form elements)\n   */\n  Relationships?: Array<ApiChildRelationship | ApiValueRelationship>;\n}\n\n/**\n * Alternative style for Value (data) item in a Forms key-value pair\n *\n * Conventionally, forms results appear to use KEY_VALUE_SET blocks for both key and value.\n * However, distinct 'KEY' and 'VALUE' blocks were observed in some responses.\n */\nexport interface ApiValueBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Value;\n  /**\n   * 0-100 based confidence of this key-value relation (*separate* from text OCR confidence!)\n   */\n  Confidence: number;\n  /**\n   * For compatibility with KEY_VALUE_SET, but always contains VALUE for this BlockType\n   */\n  EntityTypes: ApiKeyValueEntityType.Value[];\n  Geometry: ApiGeometry; // Believe Geometry should always be present on this block type\n  // `Relationships` may not be present when the value is empty/unfilled\n  /**\n   * Links to value text (CHILD) blocks, if present (might not be for empty/unfilled form elements)\n   */\n  Relationships?: ApiChildRelationship[];\n}\n"
  },
  {
    "path": "src-js/src/api-models/geometry.ts",
    "content": "/**\n * Core geometry/shape API models used by the Textract Response Parser.\n */\n\n/**\n * An axis-aligned bounding box on the page in relative coordinates\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_BoundingBox.html\n */\nexport interface ApiBoundingBox {\n  /**\n   * Height of the box relative to the input page/image, from 0-1\n   */\n  Height: number;\n  /**\n   * X coordinate of the left side of the box relative to the input page/image edge, from 0-1\n   */\n  Left: number;\n  /**\n   * Y coordinate of the top of the box relative to the top of the input page/image edge, from 0-1\n   */\n  Top: number;\n  /**\n   * Width of the box relative to the input page/image, from 0-1\n   */\n  Width: number;\n}\n\n/**\n * A specific point on the page in relative coordinates\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Point.html\n */\nexport interface ApiPoint {\n  /**\n   * X coordinate of the point relative to the input page/image edge, from 0-1\n   */\n  X: number;\n  /**\n   * Y coordinate of the point relative to the top of the input page/image edge, from 0-1\n   */\n  Y: number;\n}\n\n/**\n * Information about the location of a detected element on the input page/image\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_Geometry.html\n */\nexport interface ApiGeometry {\n  /**\n   * The smallest coordinate-aligned box containing the element\n   */\n  BoundingBox: ApiBoundingBox;\n  /**\n   * A fine-grained polygon around the element (usually a 4-point box, but may not be axis-aligned)\n   */\n  Polygon: ApiPoint[];\n}\n"
  },
  {
    "path": "src-js/src/api-models/id.ts",
    "content": "/**\n * Identity document analysis Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to Textract's ID analysis APIs\n */\n\nexport interface ApiIdentityDocumentFieldType {\n  /**\n   * 0-100 confidence score of the detected text\n   */\n  Confidence: number;\n  /**\n   * Theoretically possible per the API docs but I haven't seen this in practice so far.\n   */\n  NormalizedValue?: {\n    Value: string;\n    ValueType: string;\n  };\n  Text: string;\n}\n\nexport interface ApiIdentityDocumentFieldValueDetection {\n  /**\n   * 0-100 confidence score for the detected value text\n   */\n  Confidence: number;\n  /**\n   * Only \"DATE\" (\"yy-MM-ddThh:mm:ss\") type is mentioned per the API doc\n   *\n   * https://docs.aws.amazon.com/textract/latest/dg/API_NormalizedValue.html\n   */\n  NormalizedValue?: {\n    Value: string;\n    ValueType: string;\n  };\n  Text: string;\n}\n\nexport interface ApiIdentityDocumentField {\n  Type: ApiIdentityDocumentFieldType;\n  ValueDetection: ApiIdentityDocumentFieldValueDetection;\n}\n\nexport interface ApiIdentityDocument {\n  readonly DocumentIndex: number;\n  IdentityDocumentFields: ApiIdentityDocumentField[];\n}\n"
  },
  {
    "path": "src-js/src/api-models/index.ts",
    "content": "/**\n * Amazon Textract API models (TypeScript interfaces) used by the response parser.\n\n * While these models should correspond fairly closely to those in the actual typings for the\n * @aws-sdk/client-textract module, there may be some cases where we can be more specific - and\n * maintaining lets us avoid introducing dependencies of the AWS SDK for JS.\n */\n\nexport {\n  ApiAnswerRelationship,\n  ApiBlockBase,\n  ApiBlockType,\n  ApiChildRelationship,\n  ApiComplexFeaturesRelationship,\n  ApiMergedCellRelationship,\n  ApiRelationship,\n  ApiRelationshipType,\n  ApiTableFooterRelationship,\n  ApiTableTitleRelationship,\n  ApiValueRelationship,\n  isLayoutBlockType,\n} from \"./base\";\nexport {\n  ApiLineBlock,\n  ApiSelectionStatus,\n  ApiSelectionElementBlock,\n  ApiSignatureBlock,\n  ApiTextType,\n  ApiWordBlock,\n} from \"./content\";\nexport { ApiBlock, ApiPageBlock } from \"./document\";\nexport {\n  ApiExpenseComponentDetection,\n  ApiExpenseDocument,\n  ApiExpenseField,\n  ApiExpenseFieldType,\n  ApiExpenseLineItem,\n  ApiExpenseLineItemGroup,\n} from \"./expense\";\nexport { ApiKeyBlock, ApiKeyValueEntityType, ApiKeyValueSetBlock, ApiValueBlock } from \"./form\";\nexport { ApiBoundingBox, ApiPoint, ApiGeometry } from \"./geometry\";\nexport {\n  ApiIdentityDocument,\n  ApiIdentityDocumentField,\n  ApiIdentityDocumentFieldType,\n  ApiIdentityDocumentFieldValueDetection,\n} from \"./id\";\nexport {\n  ApiLayoutBlock,\n  ApiLayoutFigureBlock,\n  ApiLayoutFooterBlock,\n  ApiLayoutHeaderBlock,\n  ApiLayoutKeyValueBlock,\n  ApiLayoutListBlock,\n  ApiLayoutPageNumberBlock,\n  ApiLayoutSectionHeaderBlock,\n  ApiLayoutTableBlock,\n  ApiLayoutTextBlock,\n  ApiLayoutTitleBlock,\n} from \"./layout\";\nexport { ApiQueryBlock, ApiQueryResultBlock } from \"./query\";\nexport {\n  ApiAnalyzeDocumentResponse,\n  ApiAnalyzeExpenseResponse,\n  ApiAnalyzeIdResponse,\n  ApiAsyncDocumentAnalysis,\n  ApiAsyncDocumentTextDetection,\n  /**\n   * @deprecated Backward compatibility for typo: Please use ApiAsyncJobOutputInProgress\n   */\n  ApiAsyncJobOuputInProgress,\n  ApiAsyncJobOutputFailed,\n  ApiAsyncJobOutputInProgress,\n  ApiAsyncJobOutputPartialSuccess,\n  ApiAsyncJobOuputSucceded,\n  ApiDetectDocumentTextResponse,\n  ApiDocumentMetadata,\n  ApiJobStatus,\n  ApiResponsePage,\n  ApiResponsePages,\n  ApiResponseWithContent,\n  ApiResultWarning,\n} from \"./response\";\nexport {\n  ApiCellBlock,\n  ApiMergedCellBlock,\n  ApiTableBlock,\n  ApiTableCellEntityType,\n  ApiTableEntityType,\n  ApiTableFooterBlock,\n  ApiTableTitleBlock,\n} from \"./table\";\n"
  },
  {
    "path": "src-js/src/api-models/layout.ts",
    "content": "/**\n * Layout analysis Textract API models used by the Textract response parser.\n *\n * This file collects types/interfaces specific to the Layout analysis functionality in general\n * document analysis: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\n// Local Dependencies:\nimport { ApiBlockBase, ApiBlockType, ApiChildRelationship } from \"./base\";\nimport { ApiGeometry } from \"./geometry\";\n\n// (Internal base interface to reduce duplication)\ninterface ApiLayoutBlockBase extends ApiBlockBase {\n  /**\n   * 0-100 based confidence of the detection of this layout object (*separate* from OCR confidence)\n   *\n   * This confidence reflects only the Layout model's scoring for identifying this structural\n   * element in the document - not the OCR of the text/content within.\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // (Geometry should always be present for Layout objects)\n  /**\n   * Content within the layout item, if any is present\n   *\n   * (Layout objects will nearly always have content, except e.g. LAYOUT_FIGURE)\n   */\n  Relationships?: ApiChildRelationship[];\n}\n\n/**\n * Layout Block representing an image / diagram / figure\n *\n * From example responses, these blocks are unlikely to contain any content.\n */\nexport interface ApiLayoutFigureBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutFigure;\n}\n\n/**\n * Layout Block representing an element of the page footer\n *\n * From example responses, there seems to be a separate element for each cluster of text (usually\n * horizontal clusters), each linking to LINE children. LAYOUT_PAGE_NUMBER blocks are peers, not\n * children.\n */\nexport interface ApiLayoutFooterBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutFooter;\n}\n\n/**\n * Layout Block representing an element of the page header\n *\n * From example responses, there seems to be a separate element for each cluster of text (usually\n * horizontal clusters), each linking to LINE children. LAYOUT_PAGE_NUMBER blocks are peers, not\n * children.\n */\nexport interface ApiLayoutHeaderBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutHeader;\n}\n\n/**\n * Layout Block representing a key-value / form field pair (use FORMS analysis for more detail)\n */\nexport interface ApiLayoutKeyValueBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutKeyValue;\n}\n\n/**\n * Layout Block representing a list (e.g. bullet points or numbered paragraphs)\n */\nexport interface ApiLayoutListBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutList;\n}\n\n/**\n * Layout Block representing a page number annotation\n *\n * From example responses, these link to (normally exactly one) LINE children\n */\nexport interface ApiLayoutPageNumberBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutPageNumber;\n}\n\n/**\n * Layout Block representing an individual section heading/title\n */\nexport interface ApiLayoutSectionHeaderBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutSectionHeader;\n}\n\n/**\n * Layout Block representing a table (use TABLES analysis for more detailed structure)\n */\nexport interface ApiLayoutTableBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutTable;\n}\n\n/**\n * Layout Block representing a paragraph of text\n */\nexport interface ApiLayoutTextBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutText;\n}\n\n/**\n * Layout Block representing a top-level document title\n */\nexport interface ApiLayoutTitleBlock extends ApiLayoutBlockBase {\n  BlockType: ApiBlockType.LayoutTitle;\n}\n\n/**\n * All possible Blocks returned by Textract LAYOUT analysis of overall doc/page structure\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport type ApiLayoutBlock =\n  | ApiLayoutFigureBlock\n  | ApiLayoutFooterBlock\n  | ApiLayoutHeaderBlock\n  | ApiLayoutKeyValueBlock\n  | ApiLayoutListBlock\n  | ApiLayoutPageNumberBlock\n  | ApiLayoutSectionHeaderBlock\n  | ApiLayoutTableBlock\n  | ApiLayoutTextBlock\n  | ApiLayoutTitleBlock;\n"
  },
  {
    "path": "src-js/src/api-models/query.ts",
    "content": "/**\n * Queries analysis Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to the Amazon Textract Queries functionality:\n * https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\n// Local Dependencies:\nimport { ApiAnswerRelationship, ApiBlockBase, ApiBlockType } from \"./base\";\n\n/**\n * Page-level instance of the input Query/question submitted for the analysis\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\nexport interface ApiQueryBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Query;\n  /**\n   * Since QUERY blocks represent input questions, they don't carry confidence scores\n   */\n  Confidence: never;\n  /**\n   * Page number for this query block\n   *\n   * When a query is applied to multiple pages, it generates several QUERY blocks in the result -\n   * each the 'CHILD' of one page and each with a Page number.\n   */\n  Page?: number;\n  /**\n   * The Query input to the API\n   */\n  readonly Query: {\n    /**\n     * The optional unique alias provided for this query (to simplify retrieval/searching)\n     */\n    Alias?: string;\n    /**\n     * The original question/query text\n     */\n    Text: string;\n  };\n  /**\n   * Links to (potentially multiple) QUERY_RESULT answer objects, if any were found.\n   */\n  Relationships?: ApiAnswerRelationship[];\n}\n\n/**\n * Detected result/answer for a Query\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\nexport interface ApiQueryResultBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.QueryResult;\n  /**\n   * 0-100 based confidence of the Textract model for this answer to the Query\n   */\n  Confidence: number;\n  /**\n   * Page number for this query result\n   *\n   * If not present, refer to the linked QUERY's parent PAGE\n   */\n  Page?: number;\n  /**\n   * Text of the result\n   */\n  Text: string;\n  /**\n   * QUERY_RESULT blocks do not seem to link answers through to underlying WORD/LINEs/etc\n   */\n  Relationships?: never[];\n  /**\n   * (Legacy) when present, appeared to mirror `Text` - which should be preferred\n   *\n   * @deprecated Does not seem to be in use in current responses\n   */\n  SearchKey?: string;\n}\n"
  },
  {
    "path": "src-js/src/api-models/response.ts",
    "content": "/**\n * Top-level API response models used by the Textract Response Parser.\n *\n * These models/interfaces cover the top-level response structures as returned by Textract APIs\n */\n\n// Local Dependencies:\nimport { ApiExpenseDocument } from \"./expense\";\nimport { ApiIdentityDocument } from \"./id\";\nimport { ApiBlock } from \"./document\";\n\n/**\n * Enumeration of status messages reported for async API jobs\n */\nexport const enum ApiJobStatus {\n  Failed = \"FAILED\",\n  InProgress = \"IN_PROGRESS\",\n  PartialSuccess = \"PARTIAL_SUCCESS\",\n  Succeeded = \"SUCCEEDED\",\n}\n\n/**\n * Information about an input document\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_DocumentMetadata.html\n */\nexport interface ApiDocumentMetadata {\n  Pages: number;\n}\n\n/**\n * Result data from an Amazon Textract expense analysis\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_AnalyzeExpense.html\n *\n * (Async GetExpenseAnalysis results share the structure but add fields)\n */\nexport interface ApiAnalyzeExpenseResponse {\n  DocumentMetadata: ApiDocumentMetadata;\n  ExpenseDocuments: ApiExpenseDocument[];\n}\n\n/**\n * Result data from an Amazon Textract identity document analysis\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_AnalyzeID.html\n */\nexport interface ApiAnalyzeIdResponse {\n  readonly AnalyzeIDModelVersion: string;\n  DocumentMetadata: ApiDocumentMetadata;\n  IdentityDocuments: ApiIdentityDocument[];\n}\n\nexport interface ApiResponseWithContent {\n  Blocks: ApiBlock[];\n  DocumentMetadata: ApiDocumentMetadata;\n}\n\n/**\n * Result data from an Amazon Textract general document analysis\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_GetDocumentAnalysis.html\n */\nexport interface ApiAnalyzeDocumentResponse extends ApiResponseWithContent {\n  AnalyzeDocumentModelVersion: string;\n  HumanLoopActivationOutput?: {\n    HumanLoopActivationConditionsEvaluationResults: string;\n    HumanLoopActivationReasons: string[];\n    HumanLoopArn: string;\n  };\n}\n\n/**\n * Result data from an Amazon Textract text detection job (OCR only, no analysis)\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/API_GetDocumentTextDetection.html\n */\nexport interface ApiDetectDocumentTextResponse extends ApiResponseWithContent {\n  DetectDocumentTextModelVersion: string;\n}\n\nexport interface ApiAsyncJobOutputInProgress {\n  JobStatus: \"IN_PROGRESS\";\n  StatusMessage?: string; // If not completed\n  Warnings?: [\n    {\n      ErrorCode: string;\n      Pages: number[];\n    },\n  ];\n}\n\n/**\n * @deprecated Backward compatibility for typo: Please use ApiAsyncJobOutputInProgress\n */\nexport interface ApiAsyncJobOuputInProgress extends ApiAsyncJobOutputInProgress {}\n\n/**\n * Shared fields reported for Get*Analysis APIs concerning asynchronous jobs\n */\ninterface ApiAsyncJobOutputStatus {\n  JobStatus: \"IN_PROGRESS\" | \"SUCCEEDED\" | \"FAILED\" | \"PARTIAL_SUCCESS\";\n  /**\n   * When present, a continuation token to fetch the next section of the response\n   *\n   * In some cases this field can be present but set to null, as raised in\n   * https://github.com/aws-samples/amazon-textract-response-parser/issues/154\n   */\n  NextToken?: string | null;\n  StatusMessage?: string;\n  Warnings?: ApiResultWarning[];\n}\n\nexport interface ApiResultWarning {\n  ErrorCode: string;\n  Pages: number[];\n}\n\nexport interface ApiAsyncJobOuputSucceded extends ApiResponseWithContent, ApiAsyncJobOutputStatus {\n  JobStatus: \"SUCCEEDED\";\n}\n\nexport interface ApiAsyncJobOutputPartialSuccess extends ApiResponseWithContent, ApiAsyncJobOutputStatus {\n  JobStatus: \"PARTIAL_SUCCESS\";\n}\n\nexport interface ApiAsyncJobOutputFailed extends ApiAsyncJobOutputStatus {\n  JobStatus: \"FAILED\";\n}\n\nexport type ApiAsyncDocumentAnalysis =\n  | ApiAsyncJobOutputInProgress\n  | ({ AnalyzeDocumentModelVersion: string } & (\n      | ApiAsyncJobOutputFailed\n      | ApiAsyncJobOutputPartialSuccess\n      | ApiAsyncJobOuputSucceded\n    ));\n\nexport type ApiAsyncDocumentTextDetection =\n  | ApiAsyncJobOutputInProgress\n  | ({ DetectDocumentTextModelVersion: string } & (\n      | ApiAsyncJobOutputFailed\n      | ApiAsyncJobOutputPartialSuccess\n      | ApiAsyncJobOuputSucceded\n    ));\n\nexport type ApiResponsePage =\n  | ApiAnalyzeDocumentResponse\n  | ApiAsyncDocumentAnalysis\n  | ApiAsyncDocumentTextDetection\n  | ApiDetectDocumentTextResponse;\n\nexport type ApiResponsePages =\n  | ApiAnalyzeDocumentResponse[]\n  | ApiAsyncDocumentAnalysis[]\n  | ApiAsyncDocumentTextDetection[]\n  | ApiDetectDocumentTextResponse[];\n"
  },
  {
    "path": "src-js/src/api-models/table.ts",
    "content": "/**\n * Table analysis Textract API models used by the Textract Response Parser.\n *\n * This file collects types/interfaces specific to the tables structure analysis functionality in\n * general document analysis:\n * https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\n// Local Dependencies:\nimport {\n  ApiBlockBase,\n  ApiBlockType,\n  ApiChildRelationship,\n  ApiMergedCellRelationship,\n  ApiTableFooterRelationship,\n  ApiTableTitleRelationship,\n} from \"./base\";\nimport { ApiGeometry } from \"./geometry\";\n\n/**\n * Enumeration of EntityTypes supported for top-level TABLE objects\n *\n * TODO: Haven't seen a clear definition yet of the deliniation between these\n */\nexport const enum ApiTableEntityType {\n  StructuredTable = \"STRUCTURED_TABLE\",\n  SemiStructuredTable = \"SEMI_STRUCTURED_TABLE\",\n}\n\n/**\n * Block representing an overall table with extracted structure\n */\nexport interface ApiTableBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Table;\n  /**\n   * 0-100 based confidence of the table identification model (separate from OCR content conf)\n   */\n  Confidence: number;\n  /**\n   * If present, defines whether this is a structured or semi-structured table\n   */\n  EntityTypes?: ApiTableEntityType[];\n  Geometry: ApiGeometry;\n  /**\n   * Links to (merged or underlying) cells, titles, or footers contained within this table\n   *\n   * CHILD relationships point to underlying cells; MERGED_CELL to merged cells; TABLE_FOOTER and\n   * TABLE_TITLE to footers and titles respectively.\n   */\n  Relationships: Array<\n    ApiChildRelationship | ApiMergedCellRelationship | ApiTableFooterRelationship | ApiTableTitleRelationship\n  >;\n}\n\n/**\n * Enumeration of EntityTypes supported for individual table cells\n */\nexport const enum ApiTableCellEntityType {\n  Title = \"TABLE_TITLE\",\n  Footer = \"TABLE_FOOTER\",\n  SectionTitle = \"TABLE_SECTION_TITLE\",\n  ColumnHeader = \"COLUMN_HEADER\",\n  Summary = \"TABLE_SUMMARY\",\n}\n\n/**\n * Block representing an *underlying* cell before consideration of merged cells\n *\n * CELL blocks ignore any merged cell structure, treating the table as a uniform grid. For a more\n * human-like representation, you probably want to check for any linked MERGED_CELL entries first.\n */\nexport interface ApiCellBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.Cell;\n  /**\n   * 1-based index of the table column for this underlying cell\n   */\n  ColumnIndex: number;\n  /**\n   * This property is always = 1 as CELL blocks ignore merged cell structure\n   */\n  ColumnSpan: 1;\n  /**\n   * 0-100 based confidence of the table structure model (separate from OCR content confidence)\n   */\n  Confidence: number;\n  /**\n   * Metadata tagging the type of cell e.g. column header, summary, etc.\n   */\n  EntityTypes?: ApiTableCellEntityType[];\n  Geometry: ApiGeometry; // Should always be present for CELL blocks\n  /**\n   * Content items (e.g. WORD, SELECTION_ELEMENT) within this underlying cell\n   */\n  Relationships?: ApiChildRelationship[];\n  /**\n   * 1-based index of the table row for this underlying cell\n   */\n  RowIndex: number;\n  /**\n   * This property is always = 1 as CELL blocks ignore merged cell structure\n   */\n  RowSpan: 1;\n}\n\n/**\n * Block representing a merged cell spanning multiple rows/columns of the underlying structure\n */\nexport interface ApiMergedCellBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.MergedCell;\n  /**\n   * 1-based index of the starting column for this merged cell\n   */\n  ColumnIndex: number;\n  /**\n   * Number of underlying table columns this cell covers\n   */\n  ColumnSpan: number;\n  /**\n   * 0-100 based confidence of the table structure model (separate from OCR content confidence)\n   */\n  Confidence: number;\n  /**\n   * Metadata tagging the type of cell e.g. column header, summary, etc.\n   */\n  EntityTypes?: ApiTableCellEntityType[];\n  Geometry: ApiGeometry; // Should always be present for MERGED_CELL blocks\n  /**\n   * Underlying CELL Blocks covered by this merged cell.\n   */\n  Relationships: ApiChildRelationship[];\n  /**\n   * 1-based index of the table row for this underlying cell\n   */\n  RowIndex: number;\n  /**\n   * Number of underlying table rows this cell covers\n   */\n  RowSpan: number;\n}\n\n/**\n * Block representing a trailing/footer caption associated with a table\n */\nexport interface ApiTableFooterBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.TableFooter;\n  /**\n   * 0-100 based confidence of the table structure model (separate from OCR content confidence)\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // Should always be present for TABLE_FOOTER blocks\n  /**\n   * As far as I can tell, TABLE_FOOTER blocks always link directly to WORD children (not LINE)\n   */\n  readonly Relationships: ApiChildRelationship[];\n}\n\n/**\n * Block representing a leading/header caption associated with a table\n */\nexport interface ApiTableTitleBlock extends ApiBlockBase {\n  BlockType: ApiBlockType.TableTitle;\n  /**\n   * 0-100 based confidence of the table structure model (separate from OCR content confidence)\n   */\n  Confidence: number;\n  Geometry: ApiGeometry; // Should always be present for TABLE_TITLE blocks\n  /**\n   * As far as I can tell, TABLE_TITLE blocks always link directly to WORD children (not LINE)\n   */\n  readonly Relationships: ApiChildRelationship[];\n}\n"
  },
  {
    "path": "src-js/src/base.ts",
    "content": "/**\n * Common shared utilities, interfaces, etc.\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationshipType } from \"./api-models/base\";\nimport { ApiBlock } from \"./api-models/document\";\nimport { ApiDocumentMetadata } from \"./api-models/response\";\n\n/**\n * Generic typing for a concrete class constructor to support TypeScript Mixins pattern\n *\n * (could use `abstract new` to type abstract base clasess)\n *\n * See: https://www.typescriptlang.org/docs/handbook/mixins.html\n */\nexport type Constructor<T> = new (...args: any[]) => T; // eslint-disable-line @typescript-eslint/no-explicit-any\n\n/**\n * Base class for all classes which wrap over an actual Textract API object.\n *\n * Exposes the underlying object for access as `dict`.\n */\nexport class ApiObjectWrapper<T> {\n  _dict: T;\n\n  constructor(dict: T) {\n    this._dict = dict;\n  }\n\n  /**\n   * Raw underlying Amazon Textract API object that this parsed item wraps\n   */\n  get dict(): T {\n    return this._dict;\n  }\n}\n\n/**\n * Basic properties exposed by all classes which wrap over a Textract API `Block` object.\n */\nexport interface IApiBlockWrapper<T extends ApiBlock> {\n  /**\n   * Raw underlying Amazon Textract API `Block` object that this parsed item wraps\n   */\n  get dict(): T;\n  /**\n   * Unique ID of the underlying Amazon Textract API `Block` object that this parsed item wraps\n   */\n  get id(): string;\n  /**\n   * Type of underlying Amazon Textract API `Block` object that this parsed item wraps\n   */\n  get blockType(): ApiBlockType;\n  /**\n   * Dynamic accessor for the unique Block IDs of all CHILD relationships from this Block\n   */\n  get childBlockIds(): string[];\n  /**\n   * Fetch the unique Block IDs of this block's `Relationships`, filtered by type(s)\n   * @param relType Only keep IDs corresponding to relations of this type (or list of types)\n   */\n  relatedBlockIdsByRelType(relType: ApiRelationshipType | ApiRelationshipType[]): string[];\n}\n\nexport interface IWithText {\n  /**\n   * Return the text content of this element (and any child content)\n   *\n   * Unlike `.str()`, this includes only the actual text content and no semantic information.\n   */\n  get text(): string;\n}\n\n/**\n * Configurations for filtering rendering (e.g. HTML) by block type\n *\n * This interface is designed for general compatibility with `IBlockTypeFilterOpts`, but where the\n * concept of `onUnexpectedBlockType` may not be applicable.\n */\nexport interface IRenderOpts {\n  /**\n   * *Only* render blocks of the given type(s)\n   *\n   * By default, all blocks are returned unless otherwise documented. If you specify this filter,\n   * you probably want to include *at least* ApiBlockType.Line and ApiBlockType.Word!\n   */\n  includeBlockTypes?: ApiBlockType | ApiBlockType[] | Set<ApiBlockType> | null;\n  /**\n   * Block types to omit from the results\n   */\n  skipBlockTypes?: ApiBlockType[] | Set<ApiBlockType> | null;\n}\n\n/**\n * Convenience method to check whether a block type filter spec allows a particular BlockType\n *\n * Useful for handling un-normalized arguments where e.g. the whole filter spec may be null, or the\n * specifiers haven't been normalized to `Set`s.\n *\n * @param filterOpts An (un-normalized) filter specification for methods like listContent\n * @param blockType The block type of interest\n * @returns false if the block type is explicitly disallowed by skip or include rules, else true\n */\nexport function doesFilterAllowBlockType(\n  filterOpts: IRenderOpts | null | undefined,\n  blockType: ApiBlockType,\n): boolean {\n  if (!filterOpts) return true;\n  if (filterOpts.skipBlockTypes) {\n    const skipBlockTypes = normalizeOptionalSet(filterOpts.skipBlockTypes);\n    if (skipBlockTypes.has(blockType)) return false;\n  }\n  if (filterOpts.includeBlockTypes) {\n    const includeBlockTypes = normalizeOptionalSet(filterOpts.includeBlockTypes);\n    if (!includeBlockTypes.has(blockType)) return false;\n  }\n  return true;\n}\n\nexport interface IRenderable extends IWithText {\n  /**\n   * Return a best-effort semantic HTML representation of this element and its content\n   *\n   * @param opts Optional configuration for filtering rendering to certain content types\n   */\n  html(opts?: IRenderOpts): string;\n\n  // TODO: Add Markdown options in future?\n\n  /**\n   * Return a text representation of this element and its content\n   *\n   * Unlike `.text`, this may include additional characters to try and communicate the type of the\n   * element for an overall representation of a page.\n   */\n  str(): string;\n}\n\n/**\n * Base for classes which wrap over a Textract API 'Block' object.\n */\nexport class ApiBlockWrapper<T extends ApiBlock> extends ApiObjectWrapper<T> implements IApiBlockWrapper<T> {\n  get id(): string {\n    return this._dict.Id;\n  }\n\n  get blockType(): ApiBlockType {\n    return this._dict.BlockType;\n  }\n\n  get childBlockIds(): string[] {\n    return this.relatedBlockIdsByRelType(ApiRelationshipType.Child);\n  }\n\n  relatedBlockIdsByRelType(relType: ApiRelationshipType | ApiRelationshipType[]): string[] {\n    const isMultiType = Array.isArray(relType);\n    let ids: string[] = [];\n    (this._dict.Relationships || []).forEach((rs) => {\n      if (isMultiType) {\n        if (relType.indexOf(rs.Type) >= 0) {\n          ids = ids.concat(rs.Ids);\n        }\n      } else {\n        if (rs.Type === relType) {\n          ids = ids.concat(rs.Ids);\n        }\n      }\n    });\n    return ids;\n  }\n}\n\n/**\n * Parsed TRP object representing a document metadata descriptor from a Textract API result\n *\n * You'll usually create this via `TextractDocument`, `TextractExpense`, `TextractIdentity`\n * classes, etc - rather than directly.\n */\nexport class DocumentMetadata extends ApiObjectWrapper<ApiDocumentMetadata> {\n  /**\n   * Number of pages in the document, according to the Amazon Textract DocumentMetadata field\n   */\n  get nPages(): number {\n    return this._dict?.Pages || 0;\n  }\n}\n\n/**\n * Configuration options for iterating nested lists\n */\nexport interface INestedListOpts {\n  /**\n   * Include nested children (true) or top-level items only (false)\n   */\n  deep?: boolean;\n}\n\n/**\n * Utility function to create an iterable from a collection\n *\n * Input is a collection *fetching function*, rather than a direct collection, in case a user\n * re-uses the iterable after the parent object is mutated. For example:\n *\n * @example\n * const iterWords = line.iterWords(); // Implemented with getIterable(() => this._words)\n * let words = [...iterWords];\n * line._words = [];\n * let words = [...iterWords]; // Should return [] as expected\n */\nexport function getIterable<T>(collectionFetcher: () => T[]): Iterable<T> {\n  const getIterator = (): Iterator<T> => {\n    const collection = collectionFetcher();\n    let ixItem = 0;\n    return {\n      next: (): IteratorResult<T> => {\n        return ixItem < collection.length\n          ? {\n              done: false,\n              value: collection[ixItem++],\n            }\n          : {\n              done: true,\n              value: undefined,\n            };\n      },\n    };\n  };\n  return {\n    [Symbol.iterator]: getIterator,\n  };\n}\n\n/**\n * Configuration options for escaping text for HTML\n */\nexport interface IEscapeHtmlOpts {\n  /**\n   * Set true if escaping within an element attribute <el attr=\"...\">\n   *\n   * For standard text nodes, there's no need to escape single or double quotes\n   * @default false;\n   */\n  forAttr?: boolean;\n}\n\n/**\n * Escape a document text string for use in HTML (TextNodes only by default)\n * @param str Raw text to be escaped\n * @returns Escaped string ready to be used in a HTML document\n */\nexport function escapeHtml(str: string, { forAttr = false }: IEscapeHtmlOpts = {}): string {\n  return str.replace(\n    forAttr ? /[&<>'\"]/g : /[&<>]/g,\n    (entity) =>\n      ({\n        \"&\": \"&amp;\",\n        \"<\": \"&lt;\",\n        \">\": \"&gt;\",\n        \"'\": \"&#39;\",\n        '\"': \"&quot;\",\n      })[entity] as string,\n  );\n}\n\n/**\n * Configuration options for indenting text\n */\nexport interface IIndentOpts {\n  /**\n   * The character/string that should be used to indent text.\n   *\n   * We default to 1x tab (rather than e.g. 2x spaces) to minimize token count for LLM use-cases\n   *\n   * @default \"\\t\"\n   */\n  character?: string;\n  /**\n   * The number of times the indent `character` should be repeated.\n   *\n   * We default to 1x tab (rather than e.g. 2x spaces) to minimize token count for LLM use-cases\n   *\n   * @default 1\n   */\n  count?: number;\n  /**\n   * Whether indentation should also be applied to empty & whitespace-only lines.\n   * @default false\n   */\n  includeEmptyLines?: boolean;\n  /**\n   * Set true to skip the first line of text when applying indentation\n   * @default false\n   */\n  skipFirstLine?: boolean;\n}\n\n/**\n * Indent all lines of `text` by a certain amount\n */\nexport function indent(\n  text: string,\n  { character = \"\\t\", count = 1, includeEmptyLines = false, skipFirstLine = false }: IIndentOpts = {},\n): string {\n  const result = text.replace(includeEmptyLines ? /^/gm : /^(?!\\s*$)/gm, character.repeat(count));\n  if (skipFirstLine) {\n    return result.substring(count * character.length);\n  } else {\n    return result;\n  }\n}\n\n/**\n * Statistical methods for aggregating multiple scores/numbers into one representative value\n *\n * Different use-cases may wish to use different aggregations: For example summarizing OCR\n * confidence for a whole page or region based on the individual words/lines.\n */\nexport const enum AggregationMethod {\n  GeometricMean = \"GEOMEAN\",\n  Max = \"MAX\",\n  Mean = \"MEAN\",\n  Min = \"MIN\",\n  Mode = \"MODE\",\n}\n\n/**\n * Get the most common value in an Iterable of numbers\n *\n * @returns The most common value, or null if `arr` was empty.\n */\nexport function modalAvg(arr: Iterable<number>): number | null {\n  const freqs: { [key: number]: { value: number; freq: number } } = {};\n  for (const item of arr) {\n    if (freqs[item]) {\n      ++freqs[item].freq;\n    } else {\n      freqs[item] = { value: item, freq: 1 };\n    }\n  }\n\n  let maxFreq = 0;\n  let mode: number | null = null;\n  for (const item in freqs) {\n    if (freqs[item].freq > maxFreq) {\n      maxFreq = freqs[item].freq;\n      mode = freqs[item].value;\n    }\n  }\n  return mode;\n}\n\n/**\n * Summarize an Iterable of numbers using a statistic of your choice\n *\n * If `arr` is empty, this function will return `null`.\n */\nexport function aggregate(arr: Iterable<number>, aggMethod: AggregationMethod): number | null {\n  // Altough some aggregations could process streaming-style, we'd need to implement zero-length\n  // detection separately for each one. Therefore simplest method is just to extract arr as an\n  // actual array up-front:\n  const actualArr: Array<number> = Array.isArray(arr) ? arr : Array.from(arr);\n  if (actualArr.length === 0) return null;\n\n  if (aggMethod === AggregationMethod.GeometricMean) {\n    // Performing arithmetic mean in logspace better numerically conditioned than just multiplying:\n    return Math.exp(actualArr.reduce((acc, next) => acc + Math.log(next), 0) / actualArr.length);\n  } else if (aggMethod === AggregationMethod.Max) {\n    return Math.max(...actualArr);\n  } else if (aggMethod === AggregationMethod.Mean) {\n    return actualArr.reduce((acc, next) => acc + next, 0) / actualArr.length;\n  } else if (aggMethod === AggregationMethod.Min) {\n    return Math.min(...actualArr);\n  } else if (aggMethod === AggregationMethod.Mode) {\n    return modalAvg(actualArr);\n  } else {\n    throw new Error(`Unsupported aggMethod '${aggMethod}' not in allowed AggregationMethod enum`);\n  }\n}\n\n/**\n * Extract the maximum value and the first index where it appears from an array of numbers\n *\n * If `arr` is empty or no elements are numeric, this function will return a value of `-Infinity`\n * and an index of `-1`.\n */\nexport function argMax(arr: number[]): { maxValue: number; maxIndex: number } {\n  return arr.reduce(\n    (state, nextVal, nextIx) => (nextVal > state.maxValue ? { maxValue: nextVal, maxIndex: nextIx } : state),\n    { maxValue: -Infinity, maxIndex: -1 },\n  );\n}\n\n/**\n * Possible actions to take when encountering a missing Block referenced in results\n *\n * \"error\" throws an error, \"warn\" logs a warning, and falsy values silently ignore.\n *\n * TODO: Could/should we introduce a callback option one day?\n */\nexport type ActionOnMissingBlock = \"error\" | \"warn\" | null;\n\n/**\n * Possible actions to take when encountering an unexpected Block type in results\n *\n * \"error\" throws an error, \"warn\" logs a warning, and falsy values silently ignore.\n *\n * TODO: Could/should we introduce a callback option one day?\n */\nexport type ActionOnUnexpectedBlockType = \"error\" | \"warn\" | null;\n\n/**\n * Configuration options for filtering collections of Textract API \"Block\"s by type\n */\nexport interface IBlockTypeFilterOpts {\n  /**\n   * Only return API Blocks of the given type(s)\n   *\n   * By default, all blocks are returned unless otherwise documented.\n   */\n  includeBlockTypes?: ApiBlockType | ApiBlockType[] | Set<ApiBlockType> | null;\n  /**\n   * Action to take on encountering a Block of unexpected BlockType\n   *\n   * Set \"error\" to throw an error, \"warn\" to log a warning, or falsy to skip silently.\n   */\n  onUnexpectedBlockType?: ActionOnUnexpectedBlockType;\n  /**\n   * Block types to silently skip/ignore in the results\n   */\n  skipBlockTypes?: ApiBlockType[] | Set<ApiBlockType> | null;\n}\n\n/**\n * Configuration options for handling data inconsistency in underlying Textract results\n */\nexport interface IMissingBlockOpts {\n  /**\n   * Action to take on encountering a Block of unexpected BlockType\n   *\n   * Set \"error\" to throw an error, \"warn\" to log a warning, or null/falsy to skip silently.\n   */\n  onMissingBlockId?: ActionOnMissingBlock;\n}\n\n/**\n * Normalize an optional Set-like or individual-object parameter to a Set\n */\nexport function normalizeOptionalSet<T, TArg extends T | T[] | Set<T> | null | undefined>(\n  raw: TArg,\n): T extends null ? null : T extends undefined ? undefined : Set<T>;\nexport function normalizeOptionalSet<T>(raw: T | T[] | Set<T> | null | undefined): Set<T> | null {\n  if (raw instanceof Set) return raw;\n  if (raw === null || typeof raw === \"undefined\") return null;\n  if (Array.isArray(raw)) return new Set(raw);\n  return new Set([raw]);\n}\n\n/**\n * Polyfill for Set.intersection() which is not available in all our target runtimes\n *\n * See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/intersection\n */\nexport function setIntersection<T>(a: Set<T>, b: Set<T>) {\n  const result = new Set(a);\n  for (const entry of result) {\n    if (!b.has(entry)) result.delete(entry);\n  }\n  return result;\n}\n\n/**\n * Polyfill for Set.union() which is not available in all our target runtimes\n *\n * See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/union\n */\nexport function setUnion<T>(a: Set<T>, b: Set<T>) {\n  const result = new Set(a);\n  for (const entry of b) {\n    result.add(entry);\n  }\n  return result;\n}\n\n/**\n * Interface for a (TextractDocument-like) object that can query Textract Blocks\n *\n * Unlike `IBlockManager` (below), implementers of `IDocBlocks` can only query underlying API Block\n * objects - and not their associated parsed TRP items.\n *\n * This interface is used to avoid circular references in child classes which need to reference some\n * TextractDocument-like parent, before the actual TextractDocument class is defined.\n */\nexport interface IDocBlocks {\n  /**\n   * Retrieve an underlying Amazon Textract API `Block` response object by its unique ID\n   */\n  getBlockById: { (blockId: string): ApiBlock | undefined };\n  /**\n   * List all underlying Amazon Textract API `Block` objects managed by this parser\n   */\n  listBlocks: { (): ApiBlock[] };\n}\n\n/**\n * Interface for a (Page-like) object that can query Textract Blocks and their parsed wrapper items\n *\n * This interface extends `IDocBlocks` to also support looking up parsed TRP items by underlying\n * `Block` ID. It's used to avoid circular references in child classes which need to reference some\n * Page-like parent, before the actual Page class is defined.\n */\nexport interface IBlockManager extends IDocBlocks {\n  /**\n   * Return a parsed TRP.js object corresponding to an API Block\n   *\n   * The return value is *nearly* always some subtype of `ApiBlockWrapper`, except that for form\n   * fields we return the overall `Field` object instead of the `FieldKey`.\n   *\n   * @param blockId Unique ID of the API Block for which a parsed object should be fetched\n   * @param allowBlockTypes Optional restriction on acceptable ApiBlockType(s) to return\n   * @throws If no parsed object exists for the block ID, or it doesn't match `allowBlockTypes`\n   */\n  getItemByBlockId(\n    blockId: string,\n    allowBlockTypes?: ApiBlockType | ApiBlockType[] | null,\n  ): IApiBlockWrapper<ApiBlock>;\n  /**\n   * Register a newly parsed ApiBlockWrapper for a particular block ID\n   *\n   * In cases where a BlockManager devolves parsing certain block types down to an intermediate\n   * layer (e.g. QueryInstance parsing related QueryResult blocks) - the lower parser should use\n   * this function to register the created items with the block manager to allow later retrieval.\n   *\n   * @param blockId Unique ID of the API Block for which a parsed object should be registered\n   * @param allowBlockTypes Optional restriction on acceptable ApiBlockType(s) to return\n   * @throws If no parsed object exists for the block ID, or it doesn't match `allowBlockTypes`\n   */\n  registerParsedItem(blockId: string, item: IApiBlockWrapper<ApiBlock>): void;\n}\n\n/**\n * Interface for objects that track a reference to the Page on which they're defined\n */\nexport interface IWithParentPage<TPage extends IBlockManager> {\n  /**\n   * Parsed TRP.js `Page` that this object is a member of\n   */\n  parentPage: TPage;\n}\n\n/**\n * Interface for usually (API block wrapper) objects that can traverse related parsed objects\n *\n * TODO: Should we enforce/guarantee related items are also `I{Hosted?}ApiBlockWrapper`s?\n */\nexport interface IWithRelatedItems<TRelated extends IApiBlockWrapper<ApiBlock>> {\n  /**\n   * Iterate through directly related Blocks' parsed wrapper items, with optional filters\n   *\n   * This low-level method traverses the `Relationships` of the wrapped block, but looks up the\n   * linked block IDs to return the actual parsed wrapper items for each target - since that's\n   * usually what you'll want to work with anyway.\n   *\n   * @param relType Type(s) of relationships to consider\n   * @param opts Options for filtering the returned items\n   */\n  iterRelatedItemsByRelType(\n    relType: ApiRelationshipType | ApiRelationshipType[],\n    opts?: IBlockTypeFilterOpts,\n  ): Iterable<TRelated>;\n\n  /**\n   * List directly related Blocks' parsed wrapper items, with optional filters\n   *\n   * This low-level method traverses the `Relationships` of the wrapped block, but looks up the\n   * linked block IDs to return the actual parsed wrapper items for each target - since that's\n   * usually what you'll want to work with anyway.\n   *\n   * @param relType Type(s) of relationships to consider\n   * @param opts Options for filtering the returned items\n   */\n  listRelatedItemsByRelType(\n    relType: ApiRelationshipType | ApiRelationshipType[],\n    opts?: IBlockTypeFilterOpts,\n  ): TRelated[];\n}\n\n/**\n * INTERNAL shared implementation for iterRelatedBlocksByRelType\n *\n * Iterate through Blocks related to `me` by a given `relType`, optionally filtering related blocks\n * by type.\n *\n * @param relType The type of relationship to iterate through\n * @param opts Filtering options and unexpected/missing block behaviour config\n * @param me Block wrapper from which relations should be traversed\n * @param host IDocBlocks that can be used to look up related blocks\n */\nexport function _implIterRelatedBlocksByRelType(\n  relType: ApiRelationshipType | ApiRelationshipType[],\n  {\n    includeBlockTypes = null,\n    onMissingBlockId = \"error\",\n    onUnexpectedBlockType = null,\n    skipBlockTypes = null,\n  }: IBlockTypeFilterOpts & IMissingBlockOpts = {},\n  me: IApiBlockWrapper<ApiBlock>,\n  host: IDocBlocks,\n): Iterable<ApiBlock> {\n  // Normalize optional set parameters:\n  includeBlockTypes = normalizeOptionalSet(includeBlockTypes);\n  skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n\n  const getIterator = (): Iterator<ApiBlock> => {\n    const blockIds = me.relatedBlockIdsByRelType(relType);\n    let ixItem = 0;\n    return {\n      next: (): IteratorResult<ApiBlock> => {\n        while (ixItem < blockIds.length) {\n          const blockId = blockIds[ixItem++];\n          // TODO: Directly support IBlockTypeFilterOpts in getItemByBlockId maybe?\n          const block = host.getBlockById(blockId);\n          if (!block) {\n            if (!onMissingBlockId) continue;\n            const msg = `(While iterating ${relType} relations of parent ${me.id}) Referenced block ID ${blockId} not found!`;\n            if (onMissingBlockId === \"warn\") {\n              console.warn(msg);\n              continue;\n            } else {\n              throw new Error(msg);\n            }\n          }\n          if (skipBlockTypes && skipBlockTypes.has(block.BlockType)) continue;\n          if (includeBlockTypes && !includeBlockTypes.has(block.BlockType)) {\n            if (!onUnexpectedBlockType) continue;\n            const msg = `(While iterating ${relType} relations of parent ${me.id}) Found unexpected block ID ${blockId} of type ${block.BlockType} not in set ${Array.from(includeBlockTypes)}`;\n            if (onUnexpectedBlockType === \"warn\") {\n              console.warn(msg);\n              continue;\n            } else {\n              throw new Error(msg);\n            }\n          }\n          return {\n            done: false,\n            value: block,\n          };\n        }\n        return {\n          done: true,\n          value: undefined,\n        };\n      },\n    };\n  };\n  return {\n    [Symbol.iterator]: getIterator,\n  };\n}\n\n/**\n * INTERNAL shared implementation for iterRelatedItemsByRelType\n *\n * Most block wrappers will inherit this method via `PageHostedApiBlockWrapper`, but `Page` itself\n * cannot: Because currently `Page` is the block manager for its own block. This layer lets us\n * provide the `IWithRelatedItems` interface on `Page` without duplication.\n *\n * TODO: Maybe we should make Page more like a regular block, and TextractDocument the manager?\n *\n * @param relType The type of relationship to iterate through\n * @param opts Filtering options and unexpected/missing block behaviour config\n * @param me Block wrapper from which relations should be traversed\n * @param host IBlockManager that can be used to look up related blocks + parsed items\n */\nexport function _implIterRelatedItemsByRelType(\n  relType: ApiRelationshipType | ApiRelationshipType[],\n  opts: IBlockTypeFilterOpts & IMissingBlockOpts = {},\n  me: IApiBlockWrapper<ApiBlock>,\n  host: IBlockManager,\n): Iterable<IApiBlockWrapper<ApiBlock>> {\n  const baseIterable = _implIterRelatedBlocksByRelType(relType, opts, me, host);\n  const getIterator = (): Iterator<IApiBlockWrapper<ApiBlock>> => {\n    const baseIterator = baseIterable[Symbol.iterator]();\n    return {\n      next: (): IteratorResult<IApiBlockWrapper<ApiBlock>> => {\n        const nextResult = baseIterator.next();\n        if (nextResult.done) return nextResult;\n        return {\n          done: false,\n          value: host.getItemByBlockId(nextResult.value.Id, nextResult.value.BlockType),\n        };\n      },\n    };\n  };\n  return {\n    [Symbol.iterator]: getIterator,\n  };\n}\n\n/**\n * INTERNAL shared implementation for listRelatedBlocksByRelType\n *\n * List Blocks related to `me` by a given `relType`, optionally filtering related blocks by type.\n *\n * @param relType The type of relationship to list targets for\n * @param opts Filtering options and unexpected/missing block behaviour config\n * @param me Block wrapper from which relations should be traversed\n * @param host IDocBlocks that can be used to look up related blocks\n */\nexport function _implListRelatedBlocksByRelType(\n  relType: ApiRelationshipType | ApiRelationshipType[],\n  {\n    includeBlockTypes = null,\n    onMissingBlockId = \"error\",\n    onUnexpectedBlockType = null,\n    skipBlockTypes = null,\n  }: IBlockTypeFilterOpts & IMissingBlockOpts = {},\n  me: IApiBlockWrapper<ApiBlock>,\n  host: IDocBlocks,\n): ApiBlock[] {\n  // Normalize optional set parameters:\n  includeBlockTypes = normalizeOptionalSet(includeBlockTypes);\n  skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n\n  // Retrieve initial list & check blocks all exist:\n  let blocks: ApiBlock[] = [];\n  for (const blockId of me.relatedBlockIdsByRelType(relType)) {\n    const block = host.getBlockById(blockId);\n    if (!block) {\n      if (!onMissingBlockId) continue;\n      const msg = `(While iterating ${relType} relations of parent ${me.id}) Referenced block ID ${blockId} not found!`;\n      if (onMissingBlockId === \"warn\") {\n        console.warn(msg);\n        continue;\n      } else {\n        throw new Error(msg);\n      }\n    }\n    blocks.push(block);\n  }\n\n  // Apply block type filters:\n  if (skipBlockTypes) blocks = blocks.filter((block) => !skipBlockTypes.has(block.BlockType));\n  if (includeBlockTypes) {\n    blocks = blocks.filter((block) => {\n      if (includeBlockTypes.has(block.BlockType)) return true;\n      if (!onUnexpectedBlockType) return false;\n      // Otherwise need to take action on this unexpected block:\n      const msg = `(While iterating ${relType} relations of parent ${me.id}) Found unexpected block ID ${block.Id} of type ${block.BlockType} not in set ${Array.from(includeBlockTypes)}`;\n      if (onUnexpectedBlockType === \"warn\") {\n        console.warn(msg);\n        return false;\n      } else {\n        throw new Error(msg);\n      }\n    });\n  }\n  return blocks;\n}\n\n/**\n * INTERNAL shared implementation for listRelatedItemsByRelType\n *\n * Most block wrappers will inherit this method via `PageHostedApiBlockWrapper`, but `Page` itself\n * cannot: Because currently `Page` is the block manager for its own block. This layer lets us\n * provide the `IWithRelatedItems` interface on `Page` without duplication.\n *\n * TODO: Maybe we should make Page more like a regular block, and TextractDocument the manager?\n *\n * @param relType The type of relationship to list targets for\n * @param opts Filtering options and unexpected/missing block behaviour config\n * @param me Block wrapper from which relations should be traversed\n * @param host IBlockManager that can be used to look up related blocks + parsed items\n */\nexport function _implListRelatedItemsByRelType(\n  relType: ApiRelationshipType | ApiRelationshipType[],\n  opts: IBlockTypeFilterOpts & IMissingBlockOpts = {},\n  me: IApiBlockWrapper<ApiBlock>,\n  host: IBlockManager,\n): IApiBlockWrapper<ApiBlock>[] {\n  return _implListRelatedBlocksByRelType(relType, opts, me, host).map((block) =>\n    host.getItemByBlockId(block.Id, block.BlockType),\n  );\n}\n\n/**\n * Base interface for classes which wrap over a Textract API `Block` *and* are parent doc/page-aware\n *\n * Holding a reference to the hosting page/document allows direct lookup of related parsed objects.\n */\nexport interface IHostedApiBlockWrapper<TBlock extends ApiBlock, TPage extends IBlockManager>\n  extends ApiBlockWrapper<TBlock>,\n    IWithParentPage<TPage>,\n    IWithRelatedItems<IApiBlockWrapper<ApiBlock>> {}\n\n/**\n * Base class for an item parser wrapping Textract `Block` object, that tracks its parent page\n *\n * Items derived from this base automatically register themselves with the parent page on construct\n */\nexport class PageHostedApiBlockWrapper<TBlock extends ApiBlock, TPage extends IBlockManager>\n  extends ApiBlockWrapper<TBlock>\n  implements IHostedApiBlockWrapper<TBlock, TPage>\n{\n  _parentPage: TPage;\n\n  constructor(dict: TBlock, parentPage: TPage) {\n    super(dict);\n    this._parentPage = parentPage;\n    parentPage.registerParsedItem(dict.Id, this);\n  }\n\n  get parentPage(): TPage {\n    return this._parentPage;\n  }\n\n  iterRelatedItemsByRelType(\n    relType: ApiRelationshipType | ApiRelationshipType[],\n    opts: IBlockTypeFilterOpts = {},\n  ): Iterable<IApiBlockWrapper<ApiBlock>> {\n    return _implIterRelatedItemsByRelType(relType, opts, this, this.parentPage);\n  }\n\n  listRelatedItemsByRelType(\n    relType: ApiRelationshipType | ApiRelationshipType[],\n    opts: IBlockTypeFilterOpts = {},\n  ): IApiBlockWrapper<ApiBlock>[] {\n    return _implListRelatedItemsByRelType(relType, opts, this, this.parentPage);\n  }\n}\n"
  },
  {
    "path": "src-js/src/content.ts",
    "content": "/**\n * TRP classes for (generic document) low-level content objects\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationshipType } from \"./api-models/base\";\nimport {\n  ApiLineBlock,\n  ApiSelectionElementBlock,\n  ApiSelectionStatus,\n  ApiSignatureBlock,\n  ApiTextType,\n  ApiWordBlock,\n} from \"./api-models/content\";\nimport { ApiBlock } from \"./api-models/document\";\nimport {\n  ActionOnUnexpectedBlockType,\n  ApiBlockWrapper,\n  Constructor,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  IApiBlockWrapper,\n  IBlockManager,\n  IBlockTypeFilterOpts,\n  IHostedApiBlockWrapper,\n  IRenderable,\n  IRenderOpts,\n  IWithParentPage,\n  IWithText,\n  normalizeOptionalSet,\n  PageHostedApiBlockWrapper,\n  setIntersection,\n  setUnion,\n} from \"./base\";\nimport { Geometry, IWithGeometry } from \"./geometry\";\n\n/**\n * TRP.js parsed object for an individual word of text\n *\n * Wraps an Amazon Textract `WORD` block in the underlying API response.\n */\nexport class Word\n  extends ApiBlockWrapper<ApiWordBlock>\n  implements IRenderable, IWithGeometry<ApiWordBlock, Word>\n{\n  _geometry: Geometry<ApiWordBlock, Word>;\n\n  constructor(block: ApiWordBlock) {\n    super(block);\n    this._geometry = new Geometry(block.Geometry, this);\n  }\n\n  /**\n   * 0-100 based confidence of the OCR model in extracting the text of this word\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  /**\n   * Position of the word on the input image / page\n   */\n  get geometry(): Geometry<ApiWordBlock, Word> {\n    return this._geometry;\n  }\n  /**\n   * Text extracted by the OCR model\n   */\n  get text(): string {\n    return this._dict.Text;\n  }\n  /**\n   * Whether the text appears hand-written or computer-generated\n   */\n  get textType(): ApiTextType {\n    return this._dict.TextType;\n  }\n  set textType(newVal: ApiTextType) {\n    this._dict.TextType = newVal;\n  }\n\n  /**\n   * The semantic `html()` representation of a `Word` is just the (HTML-escaped) text\n   */\n  html(opts?: IRenderOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return escapeHtml(this.text);\n  }\n\n  /**\n   * The basic human-readable `str()` representation of a `Word` is just the `.text`\n   */\n  str(): string {\n    return this.text;\n  }\n}\n\n/**\n * Interface for objects that have child items representing actual \"content\"\n *\n * Typically used for containers of low-level content items like `Word`s and `SelectionElement`s.\n * In some cases (like Layout), higher-level containers (of items like `LINE` may use the same\n * interface.\n *\n * For objects guaranteed to contain only `Word`s (no `SelectionElement`s), prefer `IWithWords`\n * instead.\n */\nexport interface IWithContent<TContent extends IApiBlockWrapper<ApiBlock> & IRenderable> extends IWithText {\n  /**\n   * Number of content items in this object\n   */\n  get nContentItems(): number;\n  /**\n   * Return the text content of this element, with additional options\n   *\n   * Unlike the plain `.text` property, this method supports filtering which block types are\n   * included and controlling behaviour when unexpected ones are encountered.\n   *\n   * @param opts Optional configuration for filtering rendering to certain content types\n   */\n  getText(opts?: IBlockTypeFilterOpts): string;\n  /**\n   * Iterate through the Content items in this object\n   *\n   * Optionally filter certain content Block types by specifying `opts`\n   *\n   * @example\n   * for (const item of cell.iterContent()) {\n   *   console.log(item.text);\n   * }\n   * @example\n   * [...cell.iterContent({ skipBlockTypes: [ApiBlockType.SelectionElement] })].forEach(\n   *   (item) => console.log(item.text)\n   * );\n   */\n  iterContent(opts?: IBlockTypeFilterOpts): Iterable<TContent>;\n  /**\n   * List the Content items in this object\n   */\n  listContent(opts?: IBlockTypeFilterOpts): Array<TContent>;\n}\n\n/**\n * Configuration options for WithContent mixin (see `buildWithContent`)\n */\nexport interface IWithContentMixinOptions {\n  /**\n   * What types of direct Child Block to consider as \"content\"\n   *\n   * Defaults to [SELECTION_ELEMENT, SIGNATURE, WORD] as per `buildWithContent`\n   */\n  contentTypes?: ApiBlockType[];\n\n  /**\n   * Action to take on encountering a child Block of unexpected BlockType\n   *\n   * Set \"error\" to throw an error, \"warn\" to log a warning, or falsy to skip silently.\n   */\n  onUnexpectedBlockType?: ActionOnUnexpectedBlockType;\n\n  /**\n   * Other types of direct child block that are expected but non-content\n   *\n   * This is optional to specify, but setting it up will provide more useful behaviour when using\n   * strict `onUnexpectedBlockType`s settings.\n   */\n  otherExpectedChildTypes?: ApiBlockType[] | null;\n}\n\n/**\n * Mixin factory for elements that have child Content (such as `Word`s and/or `SelectionElement`s)\n *\n * While it's possible to apply a TS mixin to a generic base class (with expressions like\n * `extends MyMixin(BaseClass)<TBaseArgs...>`), mixins cannot alter the base class' constructor\n * signature so they can't introduce additional type arguments (generic aspects) of their own. This\n * double-call mixin factory pattern provides a workaround *only* for cases where we're able to\n * specify the mixin type arguments at the point it's applied: Enabling a somewhat generic\n * definition of \"content\" that consumer classes can dictate.\n *\n * For objects guaranteed to contain only `Word` items, prefer `WithWords` instead.\n *\n * See: https://stackoverflow.com/a/48492205/13352657\n *\n * @param contentBlockTypes API block types to be included when listing child \"Content\". Set `[]`\n *    to disable this filter and preserve all items\n */\nexport function buildWithContent<TContent extends IApiBlockWrapper<ApiBlock> & IRenderable>({\n  contentTypes = [ApiBlockType.SelectionElement, ApiBlockType.Signature, ApiBlockType.Word],\n  onUnexpectedBlockType = null,\n  otherExpectedChildTypes = null,\n}: IWithContentMixinOptions = {}) {\n  // (contentTypes cannot be `undefined` or null because of the default value)\n  const contentTypesSet: Set<ApiBlockType> = new Set(contentTypes);\n  const defaultOnUnexpected = onUnexpectedBlockType; // Need to rename because it'll be shadowed\n  const otherTypesSet: Set<ApiBlockType> = otherExpectedChildTypes\n    ? new Set(otherExpectedChildTypes)\n    : new Set();\n  /**\n   * TypeScript mixin for a container `Block` wrapper whose `Child` blocks are actual content\n   *\n   * (For example a LINE of text, or a CELL/MERGED_CELL)\n   *\n   * @param SuperClass Base class to be extended with the mixin properties\n   */\n  return function WithContent<\n    TBlock extends ApiBlock,\n    TPage extends IBlockManager,\n    T extends Constructor<IHostedApiBlockWrapper<TBlock, TPage>>,\n  >(SuperClass: T) {\n    return class extends SuperClass implements IWithContent<TContent> {\n      getText(opts?: IBlockTypeFilterOpts) {\n        if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n        return this.listContent(opts)\n          .map((c) => c.text)\n          .join(\" \");\n      }\n\n      iterContent({\n        includeBlockTypes = null,\n        onUnexpectedBlockType = defaultOnUnexpected,\n        skipBlockTypes = null,\n      }: IBlockTypeFilterOpts = {}): Iterable<TContent> {\n        if (includeBlockTypes) {\n          includeBlockTypes = normalizeOptionalSet(includeBlockTypes);\n          includeBlockTypes = setIntersection(contentTypesSet, includeBlockTypes);\n        } else {\n          includeBlockTypes = contentTypesSet;\n        }\n        if (skipBlockTypes) {\n          skipBlockTypes;\n          skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n          skipBlockTypes = setUnion(skipBlockTypes, otherTypesSet);\n        } else {\n          skipBlockTypes = otherTypesSet;\n        }\n        return this.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n          includeBlockTypes,\n          onUnexpectedBlockType,\n          skipBlockTypes,\n        }) as Iterable<TContent>;\n      }\n\n      listContent({\n        includeBlockTypes = null,\n        onUnexpectedBlockType = defaultOnUnexpected,\n        skipBlockTypes = null,\n      }: IBlockTypeFilterOpts = {}): Array<TContent> {\n        if (includeBlockTypes) {\n          includeBlockTypes = normalizeOptionalSet(includeBlockTypes);\n          includeBlockTypes = setIntersection(contentTypesSet, includeBlockTypes);\n        } else {\n          includeBlockTypes = contentTypesSet;\n        }\n        if (skipBlockTypes) {\n          skipBlockTypes;\n          skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n          skipBlockTypes = setUnion(skipBlockTypes, otherTypesSet);\n        } else {\n          skipBlockTypes = otherTypesSet;\n        }\n        return this.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n          includeBlockTypes,\n          onUnexpectedBlockType,\n          skipBlockTypes,\n        }) as TContent[];\n      }\n\n      get nContentItems(): number {\n        return this.listContent().length;\n      }\n\n      /**\n       * A default text representation getter that concatenates child content separated by spaces\n       *\n       * Objects (like `Line`) that define their own representation of the overall text or need to\n       * join content with something other than a space (like a newline) should override this.\n       */\n      get text(): string {\n        return this.getText();\n      }\n    };\n  };\n}\n\n/**\n * Configuration options for WithWords mixin\n */\nexport interface IWithWordsMixinOptions {\n  /**\n   * Action to take on encountering a child Block of unexpected BlockType\n   *\n   * Set \"error\" to throw an error, \"warn\" to log a warning, or falsy to skip silently.\n   */\n  onUnexpectedBlockType?: ActionOnUnexpectedBlockType;\n\n  /**\n   * Other types of direct child block that are expected but non-content\n   *\n   * This is optional to specify, but setting it up will provide more useful behaviour when using\n   * strict `onUnexpectedBlockType`s settings.\n   */\n  otherExpectedChildTypes?: ApiBlockType[] | null;\n}\n\n/**\n * Interface for objects that have child `Word`s (such as LINEs of text)\n *\n * For objects that might contain `SelectionElement`s as well (such as table cells), use\n * `IWithContent` instead.\n */\nexport interface IWithWords extends IWithText {\n  /**\n   * Number of text Words in this object\n   */\n  get nWords(): number;\n  /**\n   * Return the text content of this element, with additional options\n   *\n   * Unlike the plain `.text` property, this method supports controlling error behaviour when\n   * non-WORD blocks are encountered.\n   *\n   * @param opts Optional configuration for filtering rendering to certain content types\n   */\n  getText(opts?: IBlockTypeFilterOpts): string;\n  /**\n   * Iterate through the text `Word` items in this object\n   *\n   * Optionally control what happens when unexpected (non-Word) block types are encountered, by\n   * specifying filter `opts`.\n   *\n   * @example\n   * for (const word of line.iterWords()) {\n   *   console.log(word.text);\n   * }\n   * @example\n   * [...line.iterWords()].forEach(\n   *   (word) => console.log(word.text)\n   * );\n   */\n  iterWords(opts?: IBlockTypeFilterOpts): Iterable<Word>;\n  /**\n   * List the text `Word`s in this object\n   *\n   * Optionally control what happens when unexpected (non-Word) block types are encountered, by\n   * specifying filter `opts`.\n   */\n  listWords(opts?: IBlockTypeFilterOpts): Word[];\n  /**\n   * Fetch a particular text `Word` in this object by index from 0 to `.nWords - 1`\n   * @param ix 0-based index in the word list\n   * @throws if the index is out of bounds\n   */\n  wordAtIndex(ix: number): Word;\n}\n\n/**\n * Mixin for page-hosted API block wrappers with CHILD relations to WORD objects\n *\n * Adds dynamic functionality to list and traverse the Word objects contained in the content, and a\n * basic implementation for getting the overall `.text`.\n *\n * @param SuperClass The class to extend\n * @param opts Configuration options for how to handle other (non-WORD) child blocks\n */\nexport function WithWords<\n  TBlock extends ApiBlock,\n  TPage extends IBlockManager,\n  T extends Constructor<IHostedApiBlockWrapper<TBlock, TPage> & IWithParentPage<TPage>>,\n>(\n  SuperClass: T,\n  { onUnexpectedBlockType = null, otherExpectedChildTypes = null }: IWithWordsMixinOptions = {},\n) {\n  const contentTypesSet = new Set([ApiBlockType.Word]);\n  const defaultOnUnexpected = onUnexpectedBlockType; // Need to rename because it'll be shadowed\n  const otherTypesSet: Set<ApiBlockType> = otherExpectedChildTypes\n    ? new Set(otherExpectedChildTypes)\n    : new Set();\n  return class extends SuperClass implements IWithWords {\n    getText(opts?: IBlockTypeFilterOpts) {\n      if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n      return this.listWords(opts)\n        .map((w) => w.text)\n        .join(\" \");\n    }\n\n    iterWords({\n      includeBlockTypes = null,\n      onUnexpectedBlockType = defaultOnUnexpected,\n      skipBlockTypes = null,\n    }: IBlockTypeFilterOpts = {}): Iterable<Word> {\n      if (includeBlockTypes) {\n        includeBlockTypes = normalizeOptionalSet(includeBlockTypes);\n        includeBlockTypes = setIntersection(contentTypesSet, includeBlockTypes);\n      } else {\n        includeBlockTypes = contentTypesSet;\n      }\n      if (skipBlockTypes) {\n        skipBlockTypes;\n        skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n        skipBlockTypes = setUnion(skipBlockTypes, otherTypesSet);\n      } else {\n        skipBlockTypes = otherTypesSet;\n      }\n      return this.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes,\n        onUnexpectedBlockType,\n        skipBlockTypes,\n      }) as Iterable<Word>;\n    }\n\n    listWords({\n      includeBlockTypes = null,\n      onUnexpectedBlockType = defaultOnUnexpected,\n      skipBlockTypes = null,\n    }: IBlockTypeFilterOpts = {}): Word[] {\n      if (includeBlockTypes) {\n        includeBlockTypes = normalizeOptionalSet(includeBlockTypes);\n        includeBlockTypes = setIntersection(contentTypesSet, includeBlockTypes);\n      } else {\n        includeBlockTypes = contentTypesSet;\n      }\n      if (skipBlockTypes) {\n        skipBlockTypes;\n        skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n        skipBlockTypes = setUnion(skipBlockTypes, otherTypesSet);\n      } else {\n        skipBlockTypes = otherTypesSet;\n      }\n      return this.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes,\n        onUnexpectedBlockType,\n        skipBlockTypes,\n      }) as Word[];\n    }\n\n    get nWords(): number {\n      return this.listWords().length;\n    }\n\n    /**\n     * A default text representation getter that concatenates child `Word`s separated by spaces\n     *\n     * Objects (like `Line`) that define their own representation of the overall text or need to\n     * join words with something other than a space (like a newline) should override this.\n     */\n    get text(): string {\n      return this.getText();\n    }\n\n    wordAtIndex(ix: number): Word {\n      if (ix < 0) throw new Error(`Word index ${ix} must be >=0`);\n      let ixCurr = 0;\n      for (const word of this.iterWords()) {\n        if (ixCurr === ix) return word;\n        ++ixCurr;\n      }\n      throw new Error(`Word index ${ix} out of bounds for length ${ixCurr}`);\n    }\n  };\n}\n\n/**\n * Generic base class for a Line, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/Line`.\n */\nexport class LineGeneric<TPage extends IBlockManager>\n  extends WithWords(PageHostedApiBlockWrapper)<ApiLineBlock, TPage>\n  implements IRenderable, IWithGeometry<ApiLineBlock, LineGeneric<TPage>>\n{\n  _geometry: Geometry<ApiLineBlock, LineGeneric<TPage>>;\n\n  constructor(block: ApiLineBlock, parentPage: TPage) {\n    super(block, parentPage);\n    this._geometry = new Geometry(block.Geometry, this);\n  }\n\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  /**\n   * Position of the text line on the input image / page\n   */\n  get geometry(): Geometry<ApiLineBlock, LineGeneric<TPage>> {\n    return this._geometry;\n  }\n  /**\n   * Text content of the LINE\n   *\n   * This uses the pre-calculated `.Text` property on the Block, rather than concatenating WORDs\n   */\n  override get text(): string {\n    return this._dict.Text;\n  }\n\n  /**\n   * Fetch the text in this line with filtering options\n   *\n   * Note that since `LINE.Text` comes directly from Textract, filtering out `ApiBlockType.Word`\n   * won't have any effect here.\n   *\n   * @param opts Optional configuration for filtering rendering to certain content types\n   */\n  override getText(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return this._dict.Text;\n  }\n\n  /**\n   * The semantic `html()` representation of a `Line` is just the (HTML-escaped) text\n   *\n   * Note that since `LINE.Text` comes directly from Textract, filtering out `ApiBlockType.Word`\n   * won't have any effect here.\n   */\n  html(opts?: IRenderOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return escapeHtml(this.text);\n  }\n\n  str(): string {\n    return `Line\\n==========\\n${this._dict.Text}\\nWords\\n----------\\n${this.listWords()\n      .map((word) => `[${word.str()}]`)\n      .join(\"\")}`;\n  }\n}\n\n/**\n * TRP.js parsed object for a selection element, such as a checkbox or radio selector\n *\n * Wraps an Amazon Textract `SELECTION_ELEMENT` block in the underlying API response.\n */\nexport class SelectionElement\n  extends ApiBlockWrapper<ApiSelectionElementBlock>\n  implements IRenderable, IWithGeometry<ApiSelectionElementBlock, SelectionElement>\n{\n  _geometry: Geometry<ApiSelectionElementBlock, SelectionElement>;\n\n  constructor(block: ApiSelectionElementBlock) {\n    super(block);\n    this._geometry = new Geometry(block.Geometry, this);\n  }\n\n  /**\n   * 0-100 based confidence of the model detecting this selection element and its status\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  /**\n   * Position of the selection element on the input image / page\n   */\n  get geometry(): Geometry<ApiSelectionElementBlock, SelectionElement> {\n    return this._geometry;\n  }\n  /**\n   * `true` if SELECTED, `false` if NOT_SELECTED, or raise an error if some unexpected value\n   */\n  get isSelected(): boolean {\n    if (this.selectionStatus === ApiSelectionStatus.Selected) return true;\n    if (this.selectionStatus === ApiSelectionStatus.NotSelected) return false;\n    throw new Error(`Block ${this.id} has unexpected SelectionStatus: ${this.selectionStatus}`);\n  }\n  /**\n   * Whether the element is selected/ticked/checked/etc, or not\n   */\n  get selectionStatus(): ApiSelectionStatus {\n    return this._dict.SelectionStatus;\n  }\n  set selectionStatus(newVal: ApiSelectionStatus) {\n    this._dict.SelectionStatus = newVal;\n  }\n\n  /**\n   * The semantic `html()` representation of a `SelectionElement` uses an `<input>` element\n   *\n   * We render a checkbox, but `disable` it to prevent accidental edits when viewing reports\n   */\n  html(opts?: IRenderOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return `<input type=\"checkbox\" disabled ${\n      this.selectionStatus === ApiSelectionStatus.Selected ? \"checked \" : \"\"\n    }/>`;\n  }\n\n  /**\n   * The human-readable `str()` representation of a sel. element is just the `.selectionStatus`\n   */\n  str(): string {\n    return this.selectionStatus;\n  }\n\n  /**\n   * The \"text content\" of a sel. element is just the `.selectionStatus`\n   */\n  get text(): string {\n    return this.selectionStatus;\n  }\n}\n\n/**\n * TRP.js parsed object for a detected signature\n *\n * Wraps an Amazon Textract `SIGNATURE` block in the underlying API response.\n */\nexport class Signature\n  extends ApiBlockWrapper<ApiSignatureBlock>\n  implements IRenderable, IWithGeometry<ApiSignatureBlock, Signature>\n{\n  _geometry: Geometry<ApiSignatureBlock, Signature>;\n\n  constructor(block: ApiSignatureBlock) {\n    super(block);\n    this._geometry = new Geometry(block.Geometry, this);\n  }\n\n  /**\n   * 0-100 based confidence of the model detecting this selection element and its status\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  /**\n   * Position of the selection element on the input image / page\n   */\n  get geometry(): Geometry<ApiSignatureBlock, Signature> {\n    return this._geometry;\n  }\n\n  /**\n   * The semantic `html()` representation of a `SelectionElement` uses an `<input>` element\n   *\n   * We render a checkbox, but `disable` it to prevent accidental edits when viewirg reports\n   */\n  html(opts?: IRenderOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return `<input class=\"signature\" type=\"text\" disabled value=\"[SIGNATURE]\"/>`;\n  }\n\n  /**\n   * The human-readable `str()` representation of a signature is a placeholder\n   *\n   * Looks like:\n   *\n   * /-------------\\\n   * | [SIGNATURE] |\n   * \\-------------/\n   */\n  str(): string {\n    return \"/-------------\\\\\\n| [SIGNATURE] |\\n\\\\-------------/\";\n  }\n\n  /**\n   * The \"text content\" of a signature element is empty\n   */\n  get text(): \"\" {\n    return \"\";\n  }\n}\n"
  },
  {
    "path": "src-js/src/document.ts",
    "content": "/**\n * TRP classes for standard document/OCR results (e.g. DetectText and AnalyzeDocument)\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationshipType } from \"./api-models/base\";\nimport { ApiLineBlock } from \"./api-models/content\";\nimport { ApiBlock, ApiPageBlock } from \"./api-models/document\";\nimport { ApiKeyBlock, ApiKeyValueEntityType, ApiKeyValueSetBlock } from \"./api-models/form\";\nimport { ApiQueryBlock } from \"./api-models/query\";\nimport {\n  ApiDocumentMetadata,\n  ApiResponsePage,\n  ApiResponsePages,\n  ApiResponseWithContent,\n  ApiResultWarning,\n} from \"./api-models/response\";\nimport {\n  ApiBlockWrapper,\n  ApiObjectWrapper,\n  getIterable,\n  IDocBlocks,\n  indent,\n  modalAvg,\n  IBlockManager,\n  IRenderable,\n  IRenderOpts,\n  IApiBlockWrapper,\n  IWithRelatedItems,\n  IBlockTypeFilterOpts,\n  _implIterRelatedItemsByRelType,\n  _implListRelatedItemsByRelType,\n} from \"./base\";\nimport { LineGeneric, SelectionElement, Signature, Word } from \"./content\";\nimport {\n  FieldGeneric,\n  FieldKeyGeneric,\n  FieldValueGeneric,\n  FormsCompositeGeneric,\n  FormGeneric,\n  IWithForm,\n} from \"./form\";\nimport { BoundingBox, Geometry } from \"./geometry\";\nimport {\n  LayoutFigureGeneric,\n  LayoutFooterGeneric,\n  LayoutGeneric,\n  LayoutHeaderGeneric,\n  LayoutItemGeneric,\n  LayoutKeyValueGeneric,\n  LayoutListGeneric,\n  LayoutPageNumberGeneric,\n  LayoutSectionHeaderGeneric,\n  LayoutTableGeneric,\n  LayoutTextGeneric,\n  LayoutTitleGeneric,\n} from \"./layout\";\nimport { QueryInstanceCollectionGeneric, QueryInstanceGeneric, QueryResultGeneric } from \"./query\";\nimport {\n  CellGeneric,\n  IWithTables,\n  MergedCellGeneric,\n  RowGeneric,\n  TableFooterGeneric,\n  TableGeneric,\n  TableTitleGeneric,\n} from \"./table\";\n\n// Direct Exports:\n// We don't directly export the *Generic classes here, and instead define concrete alternatives below once\n// Page is defined: Because e.g. using `MergedCell` in user code is much nicer than having to put\n// `MergedCellGeneric<Page>` everywhere.\nexport {\n  /**\n   * @deprecated Planned for private-only: Please let us know if you have a use-case for this?\n   */\n  ApiBlockWrapper,\n} from \"./base\";\nexport { SelectionElement, Word } from \"./content\";\n\n/**\n * How heuristic reading order methods should react to the presence of Textract Layout results\n *\n * When the `Layout` analysis is enabled in Amazon Textract, additional `LAYOUT_*` blocks are\n * generated using ML to infer the structural layout and reference reading order of the page. This\n * carries additional API charges, but is likely to produce more accurate results than our simple\n * TRP.js heuristics.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n *\n * @experimental\n */\nexport const enum ReadingOrderLayoutMode {\n  /**\n   * Use Textract Layout results for reading order when present, heuristics otherwise\n   */\n  Auto = \"AUTO\",\n  /**\n   * Use heuristics for reading order, even if Textract Layout results are present\n   */\n  IgnoreLayout = \"IGNORE_LAYOUT\",\n  /**\n   * Use Textract Layout results for reading order, throw an error if they're not available\n   */\n  RequireLayout = \"REQUIRE_LAYOUT\",\n}\n\n/**\n * @experimental\n */\nexport interface HeuristicReadingOrderModelParams {\n  /**\n   * Minimum ratio (0-1) of overlap to count a paragraph within a detected column. Applied relative\n   * to the *minimum* of {paragraph width, column width}. Can set close to 1 if your columns are\n   * well-defined with little skew and no hanging indents.\n   */\n  colHOverlapThresh?: number;\n  /**\n   * Minimum ratio (0-1) of intersection to count a paragraph within a detected column. Applied\n   * relative to the *union* of {paragraph, column} horizontal span, and *only* when both the\n   * paragraph and column contain multiple lines (since single-line paragraphs may be significantly\n   * short). Can set close to 1 if your text is justified, since individual paragraphs in a column\n   * should have reliably very similar widths.\n   */\n  colHMultilineUnionThresh?: number;\n  /**\n   * Maximum vertical distance, in multiples of line height, for a line to be considered eligible\n   * for merging into a paragraph. 1.0 may make a sensible default. May set >1.0 if your text has\n   * large spacing between lines within a paragraph, or <1.0 if your paragraphs have little\n   * vertical separating space between them.\n   */\n  paraVDistTol?: number;\n  /**\n   * Maximum ratio of deviation of this line height from average line height in a paragraph, for a\n   * line to be considered eligible for merging into a paragraph. Set close to 0 to encourage text\n   * size changes to be represented as paragraph breaks (e.g. close-together heading/subheading).\n   */\n  paraLineHeightTol?: number;\n  /**\n   * Optional maximum indentation of a line versus previous, after which the line will be forced\n   * into a new paragraph even if vertical distance is small. Set =0 to disable this behavior (for\n   * e.g. with center-aligned text or where paragraphs are marked by vertical whitespace), or >0 to\n   * specify paragraph indentation in terms of a multiplier on text line-height. Default 0.\n   */\n  paraIndentThresh?: number;\n  /**\n   * Whether to use Textract Layout results *instead* of heuristics for improved reading order when\n   * available; or always use heuristics; or insist on Layout and throw an error if not present.\n   */\n  useLayout?: ReadingOrderLayoutMode;\n}\n\n/**\n * @experimental\n */\nexport interface HeaderFooterSegmentModelParams {\n  /**\n   * Cut-off maximum proportion of the page height that the header/footer must be within. Set close\n   * to 0 if main content is known to start very close to the page edge, or higher to allow more\n   * space for the header/footer search. Default 0.16 (16% page height).\n   * @default 0.16 (16% page height)\n   */\n  maxMargin?: number;\n  /**\n   * Minimum vertical spacing between header/footer and main page content, as a proportion of\n   * average local text LINE height. The header/footer will break on the first gap bigger than\n   * this, working in from the edge of the page towards content. Set close to 0 if the main content\n   * is known to start very close, or higher if multiple vertically-separate paragraphs/lines\n   * should be captured in the header/footer. Default 0.8 (80% line height).\n   * @default 0.8 (80% line height)\n   */\n  minGap?: number;\n}\n\n/**\n * Parsed TRP.js object for a single page in a document analysis / text detection result\n *\n * Wraps an Amazon Textract API `PAGE` Block, with utilities for analysis. You'll usually create\n * this via a `TextractDocument`, rather than directly.\n *\n * TODO: Should we be making TextractDocument the block manager, rather than Page?\n */\nexport class Page\n  extends ApiBlockWrapper<ApiPageBlock>\n  implements\n    IBlockManager,\n    IRenderable,\n    IWithForm<Page>,\n    IWithRelatedItems<IApiBlockWrapper<ApiBlock>>,\n    IWithTables<Page>\n{\n  _blocks: ApiBlock[];\n  _content: Array<LineGeneric<Page> | TableGeneric<Page> | FieldGeneric<Page>>;\n  _form: FormGeneric<Page>;\n  _geometry: Geometry<ApiPageBlock, Page>;\n  _itemsByBlockId: {\n    [blockId: string]:\n      | LineGeneric<Page>\n      | SelectionElement\n      | Signature\n      | Word\n      | FieldGeneric<Page>\n      | FieldValueGeneric<Page>\n      | LayoutItemGeneric<Page>\n      | QueryInstanceGeneric<Page>\n      | QueryResultGeneric<Page>\n      | TableGeneric<Page>\n      | CellGeneric<Page>;\n  };\n  _layout: LayoutGeneric<Page>;\n  _lines: LineGeneric<Page>[];\n  _parentDocument: TextractDocument;\n  _queries: QueryInstanceCollectionGeneric<Page>;\n  _tables: TableGeneric<Page>[];\n\n  /**\n   * Create (parse) a Page object from a PAGE block and the list of other Blocks ocurring on it\n   *\n   * @param pageBlock The API Block object representing the PAGE itself\n   * @param blocks The list of all API Blocks occurring on this Page\n   * @param parentDocument The parsed TRP.js TextractDocument object the page belongs to\n   */\n  constructor(pageBlock: ApiPageBlock, blocks: ApiBlock[], parentDocument: TextractDocument) {\n    super(pageBlock);\n    this._blocks = blocks;\n    this._parentDocument = parentDocument;\n    this._geometry = new Geometry(pageBlock.Geometry, this);\n\n    this._content = [];\n    this._itemsByBlockId = {};\n    this._lines = [];\n    this._tables = [];\n    // TODO: Make .form & .queries stateless like .layout already is\n    const formKeyBlocks: Array<ApiKeyBlock | ApiKeyValueSetBlock> = [];\n    const queryBlocks: ApiQueryBlock[] = [];\n\n    blocks.forEach((item) => {\n      if (item.BlockType == ApiBlockType.Line) {\n        const l = new LineGeneric(item, this);\n        this._lines.push(l);\n        this._content.push(l);\n        this._itemsByBlockId[l.id] = l;\n      } else if (item.BlockType === ApiBlockType.Key) {\n        formKeyBlocks.push(item);\n      } else if (item.BlockType === ApiBlockType.KeyValueSet) {\n        if (item.EntityTypes.indexOf(ApiKeyValueEntityType.Key) >= 0) {\n          formKeyBlocks.push(item);\n        }\n      } else if (item.BlockType === ApiBlockType.Query) {\n        queryBlocks.push(item);\n      } else if (item.BlockType === ApiBlockType.SelectionElement) {\n        const s = new SelectionElement(item);\n        this._itemsByBlockId[s.id] = s;\n      } else if (item.BlockType === ApiBlockType.Signature) {\n        const sig = new Signature(item);\n        this._itemsByBlockId[sig.id] = sig;\n      } else if (item.BlockType === ApiBlockType.Table) {\n        const t = new TableGeneric(item, this);\n        this._tables.push(t);\n        this._content.push(t);\n        this._itemsByBlockId[t.id] = t;\n      } else if (item.BlockType === ApiBlockType.Word) {\n        const w = new Word(item);\n        this._itemsByBlockId[w.id] = w;\n      }\n    });\n\n    this._form = new FormGeneric<Page>(formKeyBlocks, this);\n    this._queries = new QueryInstanceCollectionGeneric<Page>(queryBlocks, this);\n    this._layout = new LayoutGeneric<Page>(this);\n  }\n\n  getBlockById(blockId: string): ApiBlock | undefined {\n    return this._parentDocument.getBlockById(blockId);\n  }\n\n  getItemByBlockId(\n    blockId: string,\n    allowBlockTypes?: ApiBlockType | ApiBlockType[] | null,\n  ):\n    | Page\n    | LineGeneric<Page>\n    | SelectionElement\n    | Signature\n    | Word\n    | FieldGeneric<Page>\n    | FieldValueGeneric<Page>\n    | LayoutItemGeneric<Page>\n    | QueryInstanceGeneric<Page>\n    | QueryResultGeneric<Page>\n    | TableGeneric<Page>\n    | CellGeneric<Page> {\n    if (blockId === this.id) return this;\n    const result = this._itemsByBlockId[blockId];\n    if (!result) {\n      throw new Error(`Missing parser item for block ID ${blockId}`);\n    }\n    if (allowBlockTypes) {\n      const typeMatch = Array.isArray(allowBlockTypes)\n        ? allowBlockTypes.indexOf(result.blockType) >= 0\n        : allowBlockTypes === result.blockType;\n      if (!typeMatch) {\n        throw new Error(\n          `Parser item for block ID ${blockId} had BlockType ${result.blockType} (expected ${allowBlockTypes})`,\n        );\n      }\n    }\n    return result;\n  }\n\n  /**\n   * Calculate the most common orientation (in whole degrees) of 'WORD' content in the page.\n   *\n   * Returns `null` if the page contains no valid word blocks.\n   */\n  getModalWordOrientationDegrees(): number | null {\n    const wordDegreesByLine = this.listLines().map((line) =>\n      line.listWords().map((word) => word.geometry.orientationDegrees()),\n    );\n\n    const wordDegrees = ([] as Array<number | null>)\n      .concat(...wordDegreesByLine)\n      .filter((n) => n != null) as number[];\n\n    return modalAvg(wordDegrees.map((n) => Math.round(n)));\n  }\n\n  /**\n   * List lines in reading order, grouped by pseudo-'paragraph' and contiguous 'column'\n   * @returns Nested array of text lines by column, paragraph, line\n   * @private\n   */\n  _getLineClustersByColumn({\n    colHOverlapThresh = 0.8,\n    colHMultilineUnionThresh = 0.7,\n    paraVDistTol = 0.7,\n    paraLineHeightTol = 0.3,\n    paraIndentThresh = 0,\n  }: HeuristicReadingOrderModelParams = {}): LineGeneric<Page>[][][] {\n    // First, assign lines to paragraphs:\n    const paraBoxes: BoundingBox<ApiLineBlock, ApiObjectWrapper<ApiLineBlock>>[] = [];\n    const paraLines: LineGeneric<Page>[][] = [];\n    const paraTotalLineHeight: number[] = [];\n    const lineHCenters = this._lines.map((l) => l.geometry.boundingBox.hCenter);\n    this._lines.forEach((line, ixLine) => {\n      const lineBox = line.geometry.boundingBox;\n      const lineHCenter = lineHCenters[ixLine];\n      // Geometries we get from Amazon Textract are bounding boxes for the detections, not necessarily\n      // corrected for the inferred font size / line height. For example 'A' will be significantly taller\n      // than 'a', and extreme outliers may be possible like e.g. '-'. In order to have some notion of line\n      // height for grouping text to paragraphs, we'll heuristically adjust the raw boxes in special cases\n      // where only a subset of small-height characters were detected:\n      let isLineHeightGarbage: boolean;\n      let adjLineBox: BoundingBox<unknown, ApiBlockWrapper<unknown & ApiBlock>>;\n      if (!/[^.,_\\s]/.test(line.text)) {\n        // All low punctuation marks - line height is really a guess\n        isLineHeightGarbage = true;\n        adjLineBox = new BoundingBox(\n          {\n            Top: lineBox.top - lineBox.height * 1.5,\n            Left: lineBox.left,\n            Height: lineBox.height * 2.5,\n            Width: lineBox.width,\n          },\n          null,\n        );\n      } else if (!/[^-–—=~\\s]/.test(line.text)) {\n        // All low punctuation marks (e.g. just a dash?) - line height is really a guess\n        isLineHeightGarbage = true;\n        adjLineBox = new BoundingBox(\n          {\n            Top: lineBox.top - lineBox.height * 0.75, // Vertically centered on previous\n            Left: lineBox.left,\n            Height: lineBox.height * 2.5,\n            Width: lineBox.width,\n          },\n          null,\n        );\n      } else if (!/[^'\"`^\\s]/.test(line.text)) {\n        // All high punctuation marks - line height is really a guess\n        isLineHeightGarbage = true;\n        adjLineBox = new BoundingBox(\n          {\n            Top: lineBox.top,\n            Left: lineBox.left,\n            Height: lineBox.height * 2.5,\n            Width: lineBox.width,\n          },\n          null,\n        );\n      } else if (!/[^-–—=~.,_acemnorsuvwxz+<>:;\\s]/.test(line.text)) {\n        // All low/mid punctuation and x-height letters - adjust line height up slightly\n        isLineHeightGarbage = false;\n        adjLineBox = new BoundingBox(\n          {\n            Top: lineBox.top - lineBox.height * 0.25,\n            Left: lineBox.left,\n            Height: lineBox.height * 1.25,\n            Width: lineBox.width,\n          },\n          null,\n        );\n      } else {\n        // Keep box as-is\n        isLineHeightGarbage = false;\n        adjLineBox = lineBox;\n      }\n      let assignedPara: number | null = null;\n      for (let ixPara = 0; ixPara < paraBoxes.length; ++ixPara) {\n        const paraBox = paraBoxes[ixPara];\n        const paraHCenter = paraBox.hCenter;\n        const nCurrParaLines = paraLines[ixPara].length;\n        let newTotalLineHeight: number;\n        let newAvgLineHeight: number;\n        if (isLineHeightGarbage) {\n          newAvgLineHeight = paraTotalLineHeight[ixPara] / nCurrParaLines; // Unchanged\n          newTotalLineHeight = newAvgLineHeight * (nCurrParaLines + 1);\n        } else {\n          newTotalLineHeight = paraTotalLineHeight[ixPara] + adjLineBox.height;\n          newAvgLineHeight = newTotalLineHeight / (nCurrParaLines + 1);\n        }\n        // These distances can't both be >0, and will both be <0 if they overlap\n        const vDist = Math.max(0, adjLineBox.top - paraBox.bottom, paraBox.top - adjLineBox.bottom);\n        let passIndentationCheck: boolean;\n        if (paraIndentThresh) {\n          const paraLastLine = paraLines[ixPara][nCurrParaLines - 1];\n          // If paragraphs are started with indentation, we should regard paragraphs with only a single line\n          // in as having a reference position offset to the left. Otherwise, just paragraph bbox:\n          const paraRefLeft =\n            paraLastLine.geometry.boundingBox.left -\n            (nCurrParaLines === 1 ? paraIndentThresh * newAvgLineHeight : 0);\n          const vIsectTop = Math.max(adjLineBox.top, paraBox.top);\n          const vIsectBottom = Math.min(adjLineBox.bottom, paraBox.bottom);\n          const vIsect = Math.max(0, vIsectBottom - vIsectTop);\n          passIndentationCheck =\n            Math.max(0, adjLineBox.left - paraRefLeft) < paraIndentThresh * newAvgLineHeight ||\n            vIsect > 0.5 * adjLineBox.height;\n        } else {\n          passIndentationCheck = true;\n        }\n        if (\n          // Line has good horizontal overlap with the working \"paragraph\":\n          ((lineHCenter > paraBox.left && lineHCenter < paraBox.right) ||\n            (paraHCenter > lineBox.left && paraHCenter < lineBox.right)) &&\n          // Line is vertically within N line-heights of the \"paragraph\":\n          vDist < newAvgLineHeight * paraVDistTol &&\n          // Line has similar line height to the rest of the \"paragraph\"s text, unless the line is\n          // composed of such charcters that it's height is basically meaningless:\n          (isLineHeightGarbage ||\n            Math.abs((newAvgLineHeight - adjLineBox.height) / newAvgLineHeight) < paraLineHeightTol) &&\n          // Indentation check if enabled:\n          passIndentationCheck\n        ) {\n          assignedPara = ixPara;\n          paraBoxes[ixPara] = paraBox.union(lineBox);\n          paraLines[ixPara].push(line);\n          paraTotalLineHeight[ixPara] = newTotalLineHeight;\n          break;\n        }\n      }\n      if (assignedPara == null) {\n        paraBoxes.push(new BoundingBox(lineBox.dict));\n        paraLines.push([line]);\n        paraTotalLineHeight.push(lineBox.height);\n      }\n    });\n\n    // At this point we essentially have paragraphs in default order, so typically columns will be\n    // interleaved. Assign the paragraphs to \"columns\" to correct for this:\n    const colBoxes: BoundingBox<ApiLineBlock, ApiObjectWrapper<ApiLineBlock>>[] = [];\n    const colParas: LineGeneric<Page>[][][] = [];\n    paraLines.forEach((para, ixPara) => {\n      const paraBox = paraBoxes[ixPara];\n      let assignedCol: number | null = null;\n      for (let ixCol = 0; ixCol < colBoxes.length; ++ixCol) {\n        const colBox = colBoxes[ixCol];\n        const thisColParas = colParas[ixCol];\n        const vIsectTop = Math.max(colBox.top, paraBox.top);\n        const vIsectBottom = Math.min(colBox.bottom, paraBox.bottom);\n        const vIsect = Math.max(0, vIsectBottom - vIsectTop);\n        const hIsectLeft = Math.max(colBox.left, paraBox.left);\n        const hIsectRight = Math.min(colBox.right, paraBox.right);\n        const hIsect = Math.max(0, hIsectRight - hIsectLeft);\n        const hUnion = Math.max(colBox.right, paraBox.right) - Math.min(colBox.left, paraBox.left);\n        const minWidth = Math.min(colBox.width, paraBox.width);\n        const proposedColBox = colBox.union(paraBox);\n        const matchingVsSingleLine =\n          para.length === 1 || (thisColParas.length === 1 && thisColParas[0].length === 1);\n        const paraLineHeight = paraTotalLineHeight[ixPara] / paraLines[ixPara].length;\n        if (\n          // Paragraph has no significant vertical overlap with the working column:\n          vIsect < paraLineHeight * 0.1 &&\n          // Paragraph has good horizontal overlap with the working column:\n          hIsect / minWidth >= colHOverlapThresh &&\n          // Multi-line paragraph should have a more stringent horizontal overlap with the working\n          // column (because a single-line paragraph can be short):\n          (matchingVsSingleLine || hIsect / hUnion >= colHMultilineUnionThresh) &&\n          hIsect / minWidth >= colHOverlapThresh &&\n          // The newly-modified column would not overlap with any other column:\n          colBoxes.filter((cbox) => cbox.intersection(proposedColBox)).length === 1\n        ) {\n          assignedCol = ixCol;\n          colBoxes[ixCol] = colBox.union(paraBox);\n          colParas[ixCol].push(para);\n          break;\n        }\n      }\n      if (assignedCol == null) {\n        colBoxes.push(new BoundingBox(paraBox.dict));\n        colParas.push([para]);\n      }\n    });\n\n    return colParas;\n  }\n\n  /**\n   * List lines in reading order, grouped by 'cluster' (somewhat like a paragraph)\n   *\n   * By default if Amazon Textract Layout analysis was enabled for the document, this method will\n   * use those results to infer separate clusters (e.g. paragraphs, headings) and arrange them in\n   * expected reading order. If Layout was not analyzed service-side, this method applies local\n   * heuristics to group text together into paragraphs, and then sorts paragraphs into \"columns\" in\n   * reading order. Although parameters are exposed to customize the heuristic model, note that\n   * this customization API is experimental and subject to change.\n   *\n   * Textract's ML-powered Layout functionality should generally work better than local heuristics,\n   * but carries extra cost and in edge cases it's difficult for any method to define one \"correct\"\n   * reading order for rich content: So can set the `useLayout` mode to ignore (or force)\n   * Layout-based calculation if you need.\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   *\n   * @returns Nested array of text lines by \"paragraph\"/element, line\n   */\n  getLineClustersInReadingOrder({\n    colHOverlapThresh = 0.8,\n    colHMultilineUnionThresh = 0.7,\n    paraVDistTol = 0.7,\n    paraLineHeightTol = 0.3,\n    paraIndentThresh = 0,\n    useLayout = ReadingOrderLayoutMode.Auto,\n  }: HeuristicReadingOrderModelParams = {}): LineGeneric<Page>[][] {\n    if (this.hasLayout) {\n      if (useLayout !== ReadingOrderLayoutMode.IgnoreLayout) {\n        return this.layout.listItems().map((item) => item.listTextLines());\n      }\n    } else if (useLayout === ReadingOrderLayoutMode.RequireLayout) {\n      throw new Error(\n        `Configured with useLayout=${useLayout}, but Amazon Textract Layout analysis results not found on page ${this.id}`,\n      );\n    }\n    // Pass through to the private function, but flatten the result to simplify out the \"columns\":\n    return ([] as LineGeneric<Page>[][]).concat(\n      ...this._getLineClustersByColumn({\n        colHOverlapThresh,\n        colHMultilineUnionThresh,\n        paraVDistTol,\n        paraLineHeightTol,\n        paraIndentThresh,\n      }),\n    );\n  }\n\n  /**\n   * Extract all page text in approximate reading order\n   *\n   * By default if Amazon Textract Layout analysis was enabled for the document, this method will\n   * use those results to infer separate clusters (e.g. paragraphs, headings) and arrange them in\n   * expected reading order. If Layout was not analyzed service-side, this method applies local\n   * heuristics to group text together into paragraphs, and then sorts paragraphs into \"columns\" in\n   * reading order. Although parameters are exposed to customize the heuristic model, note that\n   * this customization API is experimental and subject to change.\n   *\n   * Textract's ML-powered Layout functionality should generally work better than local heuristics,\n   * but carries extra cost and in edge cases it's difficult for any method to define one \"correct\"\n   * reading order for rich content: So can set the `useLayout` mode to ignore (or force)\n   * Layout-based calculation if you need.\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   *\n   * @returns Nested array of text lines by \"paragraph\"/element, line\n   */\n  getTextInReadingOrder({\n    colHOverlapThresh = 0.8,\n    colHMultilineUnionThresh = 0.7,\n    paraVDistTol = 0.7,\n    paraLineHeightTol = 0.3,\n    paraIndentThresh = 0,\n    useLayout = ReadingOrderLayoutMode.Auto,\n  }: HeuristicReadingOrderModelParams = {}): string {\n    return this.getLineClustersInReadingOrder({\n      colHOverlapThresh,\n      colHMultilineUnionThresh,\n      paraVDistTol,\n      paraLineHeightTol,\n      paraIndentThresh,\n      useLayout,\n    })\n      .map((lines) => lines.map((l) => l.text).join(\"\\n\"))\n      .join(\"\\n\\n\");\n  }\n\n  /**\n   * Split lines of text into vertically contiguous groups, and describe the gaps between groups\n   *\n   * Useful for finding vertical cut-offs by looking for largest vertical gaps in a region. Note\n   * that by 'contiguous' here we mean literally overlapping: small gaps are not filtered out, and\n   * the iterative splitting process may cause the output order to be different from either the\n   * human reading order or the Amazon Textract output order.\n   *\n   * @param {number} focusTop Top coordinate of the search area on the page. All lines above the\n   *      search area will be compressed into one group regardless of separation.\n   * @param {number} focusHeight Height of the search area on the page. All lines below the search\n   *      area will be compressed into one group regardless of separation.\n   * @param {Line[]} [lines] Optional array of Line objects to group. By default, the full list of\n   *      lines on the page will be analyzed.\n   * @returns Object with props 'lines' (the list of Lines in each group) and 'vGaps' (a\n   *      list of BoundingBox objects describing the gaps between the groups). Note that this means\n   *      `lines.length == vGaps.length + 1`.\n   */\n  _groupLinesByVerticalGaps(\n    focusTop: number,\n    focusHeight: number,\n    lines?: LineGeneric<Page>[],\n  ): { vGaps: BoundingBox<unknown, ApiObjectWrapper<unknown>>[]; lines: LineGeneric<Page>[][] } {\n    // Start with one big \"gap\" covering the entire focus region, and iteratively split/refine it\n    // from the lines of text:\n    let vGaps = [\n      new BoundingBox(\n        {\n          Top: focusTop,\n          Left: this._geometry.boundingBox.left,\n          Height: focusHeight,\n          Width: this._geometry.boundingBox.width,\n        },\n        null,\n      ),\n    ];\n    let preGapLineLists: LineGeneric<Page>[][] = [[]];\n    let postLines: LineGeneric<Page>[] = [];\n\n    (lines || this._lines).forEach((line) => {\n      const lineBox = line.geometry.boundingBox;\n      // Fast exit for lines not in the focus area:\n      if (lineBox.top > vGaps[vGaps.length - 1].bottom) {\n        postLines.push(line);\n        return;\n      } else if (lineBox.bottom < vGaps[0].top) {\n        preGapLineLists[0].push(line);\n        return;\n      }\n\n      const nextGaps = [];\n      const nextPreGapLineLists = [];\n      let orphanedLines: LineGeneric<Page>[] = [];\n      let lineAssigned = false;\n      // Loop from top to bottom, updating the vGaps per the new text line:\n      for (let ixGap = 0; ixGap < vGaps.length; ++ixGap) {\n        const gap = vGaps[ixGap];\n        const preGapLineList = preGapLineLists[ixGap];\n        const isect = lineBox.intersection(gap);\n        if (!isect) {\n          // This gap is preserved as-is\n          nextGaps.push(gap);\n          nextPreGapLineLists.push(orphanedLines.concat(preGapLineList));\n          orphanedLines = [];\n          continue;\n        } else if (isect.top === gap.top && isect.height === gap.height) {\n          // This gap is fully covered by the line: Delete it\n          orphanedLines = orphanedLines.concat(preGapLineList);\n          continue;\n        } else if (isect.top > gap.top && isect.bottom < gap.bottom) {\n          // This gap is split in two\n          nextGaps.push(\n            new BoundingBox(\n              {\n                Top: gap.top,\n                Left: gap.left,\n                Height: isect.top - gap.top,\n                Width: gap.width,\n              },\n              null,\n            ),\n          );\n          nextPreGapLineLists.push(orphanedLines.concat(preGapLineList));\n          orphanedLines = [];\n          nextGaps.push(\n            new BoundingBox(\n              {\n                Top: isect.bottom,\n                Left: gap.left,\n                Height: gap.bottom - isect.bottom,\n                Width: gap.width,\n              },\n              null,\n            ),\n          );\n          nextPreGapLineLists.push([line]);\n          lineAssigned = true;\n        } else {\n          // This gap is part-covered: Adjust it\n          const preGapLines = orphanedLines.concat(preGapLineList);\n          if (isect.top === gap.top) {\n            // If the intersection starts at the gap top, this gap must be the one that immediately\n            // follows this line:\n            preGapLines.push(line);\n            lineAssigned = true;\n            nextGaps.push(\n              new BoundingBox(\n                {\n                  Top: gap.top + isect.height,\n                  Left: gap.left,\n                  Height: gap.height - isect.height,\n                  Width: gap.width,\n                },\n                null,\n              ),\n            );\n          } else {\n            nextGaps.push(\n              new BoundingBox(\n                {\n                  Top: gap.top,\n                  Left: gap.left,\n                  Height: isect.top - gap.top,\n                  Width: gap.width,\n                },\n                null,\n              ),\n            );\n          }\n          nextPreGapLineLists.push(preGapLines);\n          orphanedLines = [];\n        }\n      }\n      vGaps = nextGaps;\n      preGapLineLists = nextPreGapLineLists;\n      postLines = orphanedLines.concat(postLines);\n\n      // If the text line was not already directly assigned to a vGap (by splitting a gap or\n      // trimming its top), then find the latest gap immediately following it:\n      if (!lineAssigned) {\n        const followGapIx = vGaps.findIndex((gap) => gap.top >= lineBox.bottom);\n        if (followGapIx < 0) {\n          postLines.push(line);\n        } else {\n          preGapLineLists[followGapIx].push(line);\n        }\n      }\n    });\n\n    return {\n      vGaps,\n      lines: preGapLineLists.concat([postLines]),\n    };\n  }\n\n  /**\n   * Identify (via heuristics) the list of Lines likely to be page header or page footer.\n   *\n   * Output lines are not guaranteed to be sorted either in reading order or strictly in the\n   * default Amazon Textract output order.\n   *\n   * @param {boolean} isHeader Set true for header, or false for footer.\n   * @param {HeaderFooterSegmentModelParams} [config] (Experimental) heuristic configurations.\n   * @param {Line[]} [fromLines] Optional array of Line objects to group. By default, the full list\n   *      of lines on the page will be analyzed.\n   * @returns {Line[]} Array of Lines in the relevant section.\n   */\n  _getHeaderOrFooterLines(\n    isHeader: boolean,\n    { maxMargin = 0.16, minGap = 0.8 }: HeaderFooterSegmentModelParams = {},\n    fromLines?: LineGeneric<Page>[],\n  ): LineGeneric<Page>[] {\n    // Find contiguous vertical gaps (spaces with no LINEs) in the defined area of the page:\n    const { vGaps, lines: linesByGap } = this._groupLinesByVerticalGaps(\n      isHeader ? this._geometry.boundingBox.top : this._geometry.boundingBox.bottom - maxMargin,\n      maxMargin,\n      fromLines,\n    );\n\n    // We'll look at gaps relative to text line height, rather than absolute page size:\n    // ...But need to be careful as some linesByGap (e.g. at the very edge of the page) may have\n    // no text.\n    const lineGroupAvgHeights: Array<number | null> = linesByGap.map((lines) =>\n      lines.length ? lines.reduce((acc, l) => acc + l.geometry.boundingBox.height, 0) / lines.length : null,\n    );\n    const nonNullLineGroupAvgHeights = lineGroupAvgHeights.filter((h) => h) as number[];\n    const defaultLineHeight =\n      nonNullLineGroupAvgHeights.reduce((acc, h) => acc + h, 0) / nonNullLineGroupAvgHeights.length;\n    const gapAvgLineHeights = vGaps.map((_, ixGap) => {\n      const components: number[] = [];\n      // Use the pre-gap section avg height if it's not null/zero:\n      const preGapHeight = lineGroupAvgHeights[ixGap];\n      if (preGapHeight) components.push(preGapHeight);\n      // Also use the post-gap section avg height if it's not null/zero:\n      const postGapHeight = lineGroupAvgHeights[ixGap + 1];\n      if (postGapHeight) components.push(postGapHeight);\n\n      if (components.length) {\n        return components.reduce((acc, h) => acc + h, 0) / components.length;\n      } else {\n        // If neither the pre-gap nor post-gap line height are usable, take the default across all content:\n        return defaultLineHeight;\n      }\n    });\n\n    // Select the most likely gap in the focus area as the split between header/footer and content.\n    if (isHeader) {\n      // The header/content separator is the *first* gap which:\n      // - Has some content on the edgeward side of it (i.e. not the gap at the very page edge)\n      // - Is bigger than the minGap threshold\n      const ixSplit = vGaps.findIndex(\n        (gap, ixGap) =>\n          (ixGap > 0 || linesByGap[ixGap].length) && gap.height >= gapAvgLineHeights[ixGap] * minGap,\n      );\n      return ixSplit < 0 ? [] : ([] as LineGeneric<Page>[]).concat(...linesByGap.slice(0, ixSplit + 1));\n    } else {\n      // For footer, apply the same process as header but working backwards from the page bottom.\n      const revLinesBygap = linesByGap.slice().reverse();\n      const revGapAvgLineHeights = gapAvgLineHeights.slice().reverse();\n      const ixRevSplit = vGaps\n        .slice()\n        .reverse()\n        .findIndex(\n          (gap, ixGap) =>\n            (ixGap > 0 || revLinesBygap[ixGap].length) && gap.height >= revGapAvgLineHeights[ixGap] * minGap,\n        );\n      return ixRevSplit < 0\n        ? []\n        : ([] as LineGeneric<Page>[]).concat(...linesByGap.slice(vGaps.length - ixRevSplit));\n    }\n  }\n\n  /**\n   * Identify (via heuristics) the list of Lines likely to be page footer.\n   *\n   * Output lines are not guaranteed to be sorted either in reading order or strictly in the\n   * default Amazon Textract output order. See also getLinesByLayoutArea() for this.\n   *\n   * TODO: Consider updating for Textract Layout where available\n   *\n   * @param {HeaderFooterSegmentModelParams} [config] (Experimental) heuristic configurations.\n   * @param {Line[]} [fromLines] Optional array of Line objects to group. By default, the full list\n   *      of lines on the page will be analyzed.\n   * @returns {Line[]} Array of Lines in the relevant section.\n   */\n  getFooterLines(\n    config: HeaderFooterSegmentModelParams = {},\n    fromLines?: LineGeneric<Page>[],\n  ): LineGeneric<Page>[] {\n    return this._getHeaderOrFooterLines(false, config, fromLines);\n  }\n\n  /**\n   * Identify (via heuristics) the list of Lines likely to be page header.\n   *\n   * Output lines are not guaranteed to be sorted either in reading order or strictly in the\n   * default Amazon Textract output order. See also getLinesByLayoutArea() for this.\n   *\n   * TODO: Consider updating for Textract Layout where available\n   *\n   * @param {HeaderFooterSegmentModelParams} [config] (Experimental) heuristic configurations.\n   * @param {Line[]} [fromLines] Optional array of Line objects to group. By default, the full list\n   *      of lines on the page will be analyzed.\n   * @returns {Line[]} Array of Lines in the relevant section.\n   */\n  getHeaderLines(\n    config: HeaderFooterSegmentModelParams = {},\n    fromLines?: LineGeneric<Page>[],\n  ): LineGeneric<Page>[] {\n    return this._getHeaderOrFooterLines(true, config, fromLines);\n  }\n\n  /**\n   * Segment page text into header, content, and footer - optionally in (approximate) reading order\n   *\n   * TODO: Consider updating for Textract Layout where available\n   *\n   * @param {boolean|HeuristicReadingOrderModelParams} [inReadingOrder=false] Set true to sort text\n   *      in reading order, or leave false (the default) to use the standard Textract ouput order\n   *      instead. To customize the (experimental) parameters of the reading order model, pass in a\n   *      configuration object instead of true.\n   * @param {HeaderFooterSegmentModelParams} [headerConfig] (Experimental) heuristic configurations\n   *      for header extraction.\n   * @param {HeaderFooterSegmentModelParams} [footerConfig] (Experimental) heuristic configurations\n   *      for footer extraction.\n   * @returns Object with .header, .content, .footer properties: Each of type Line[].\n   */\n  getLinesByLayoutArea(\n    inReadingOrder: boolean | HeuristicReadingOrderModelParams = false,\n    headerConfig: HeaderFooterSegmentModelParams = {},\n    footerConfig: HeaderFooterSegmentModelParams = {},\n  ): { header: LineGeneric<Page>[]; content: LineGeneric<Page>[]; footer: LineGeneric<Page>[] } {\n    const sourceLines = inReadingOrder\n      ? ([] as LineGeneric<Page>[]).concat(\n          ...(inReadingOrder === true\n            ? this.getLineClustersInReadingOrder()\n            : this.getLineClustersInReadingOrder(inReadingOrder)),\n        )\n      : this._lines;\n\n    const sourceLineSortOrder = sourceLines.reduce(\n      (acc, next, ix) => {\n        acc[next.id] = ix;\n        return acc;\n      },\n      {} as { [id: string]: number },\n    );\n\n    const header = this._getHeaderOrFooterLines(true, headerConfig, sourceLines).sort(\n      (a, b) => sourceLineSortOrder[a.id] - sourceLineSortOrder[b.id],\n    );\n    let usedIds = header.reduce(\n      (acc, next) => {\n        acc[next.id] = true;\n        return acc;\n      },\n      {} as { [key: string]: true },\n    );\n\n    const footer = this._getHeaderOrFooterLines(\n      false,\n      footerConfig,\n      sourceLines.filter((l) => !(l.id in usedIds)),\n    ).sort((a, b) => sourceLineSortOrder[a.id] - sourceLineSortOrder[b.id]);\n    usedIds = footer.reduce((acc, next) => {\n      acc[next.id] = true;\n      return acc;\n    }, usedIds);\n\n    return {\n      header,\n      content: sourceLines\n        .filter((l) => !(l.id in usedIds))\n        .sort((a, b) => sourceLineSortOrder[a.id] - sourceLineSortOrder[b.id]),\n      footer,\n    };\n  }\n\n  /**\n   * Iterate through the text lines on the page in raw Textract order\n   *\n   * For reading order, see `.layout` or `.getLineClustersInReadingOrder` instead.\n   *\n   * @example\n   * for (const line of page.iterLines()) {\n   *   console.log(line.text);\n   * }\n   */\n  iterLines(): Iterable<LineGeneric<Page>> {\n    return getIterable(() => this._lines);\n  }\n\n  iterRelatedItemsByRelType(\n    relType: ApiRelationshipType | ApiRelationshipType[],\n    opts: IBlockTypeFilterOpts = {},\n  ): Iterable<IApiBlockWrapper<ApiBlock>> {\n    return _implIterRelatedItemsByRelType(relType, opts, this, this);\n  }\n\n  /**\n   * Iterate through any signatures detected on the page\n   *\n   * If this Textract feature was not enabled, the iterator will be empty\n   *\n   * @example\n   * for (const line of page.iterLines()) {\n   *   console.log(line.text);\n   * }\n   */\n  iterSignatures(): Iterable<Signature> {\n    return getIterable(() => this.listSignatures());\n  }\n\n  /**\n   * Iterate through the tables on the page\n   *\n   * If TABLES analysis was not enabled, the iterable will be empty.\n   *\n   * @example\n   * for (const table of page.iterTables()) {\n   *   console.log(table.str());\n   * }\n   * @example\n   * const tables = [...page.iterTables()];\n   */\n  iterTables(): Iterable<TableGeneric<Page>> {\n    return getIterable(() => this._tables);\n  }\n\n  /**\n   * Fetch a particular parsed `Line` of text on the page by its index in the Textract result\n   *\n   * For reading order, see `.layout` or `.getLineClustersInReadingOrder` instead.\n   *\n   * @param ix 0-based index of the parsed Line to fetch\n   * @returns The item at position `ix` in this page's list of text lines (in raw Textract order)\n   * @throws If `ix` is less than 0, or gte than the number of text lines on the page\n   */\n  lineAtIndex(ix: number): LineGeneric<Page> {\n    if (ix < 0 || ix >= this._lines.length) {\n      throw new Error(`Line index ${ix} must be >=0 and <${this._lines.length}`);\n    }\n    return this._lines[ix];\n  }\n\n  /**\n   * Fetch a snapshot of the list of all API `Block` items owned by this PAGE\n   *\n   * @returns (A shallow copy of) the list of raw `Block` objects\n   */\n  listBlocks(): ApiBlock[] {\n    return this._blocks.slice();\n  }\n\n  /**\n   * Fetch a snapshot of the list of all text lines on the page, in raw Textract order\n   *\n   * For reading order, see `.layout` or `.getLineClustersInReadingOrder` instead.\n   *\n   * @returns (A shallow copy of) the list of parsed `Line`s present on this page\n   */\n  listLines(): LineGeneric<Page>[] {\n    return this._lines.slice();\n  }\n\n  listRelatedItemsByRelType(\n    relType: ApiRelationshipType | ApiRelationshipType[],\n    opts: IBlockTypeFilterOpts = {},\n  ): IApiBlockWrapper<ApiBlock>[] {\n    return _implListRelatedItemsByRelType(relType, opts, this, this);\n  }\n\n  /**\n   * Fetch a snapshot list of any signatures detected on the page\n   *\n   * If this Textract feature was not enabled, the iterator will be empty\n   *\n   * @returns (A shallow/snapshot copy of) the list of parsed `Signature`s present on this page\n   */\n  listSignatures(): Signature[] {\n    return this._blocks\n      .filter((block) => block.BlockType === ApiBlockType.Signature)\n      .map((block) => this.getItemByBlockId(block.Id) as Signature);\n  }\n\n  /**\n   * Fetch a snapshot of the list of Tables present on this page\n   *\n   * If TABLES analysis was not enabled, will return empty list `[]`.\n   *\n   * @returns (A shallow copy of) the list of parsed `Table`s present on this page\n   */\n  listTables(): TableGeneric<Page>[] {\n    return this._tables.slice();\n  }\n\n  registerParsedItem(\n    blockId: string,\n    item:\n      | LineGeneric<Page>\n      | SelectionElement\n      | Word\n      | FieldGeneric<Page>\n      | FieldValueGeneric<Page>\n      | LayoutItemGeneric<Page>\n      | QueryInstanceGeneric<Page>\n      | QueryResultGeneric<Page>\n      | TableGeneric<Page>\n      | CellGeneric<Page>,\n  ): void {\n    this._itemsByBlockId[blockId] = item;\n  }\n\n  /**\n   * Fetch a particular parsed `Table` on the page by its index in the Textract result\n   *\n   * (See also `.iterTables()`, `.listTables()`)\n   *\n   * @param ix 0-based index of the Table to fetch\n   * @returns The item at position `ix` in this page's list of tables\n   * @throws If `ix` is less than 0, or gte than the number of tables on the page\n   */\n  tableAtIndex(ix: number): TableGeneric<Page> {\n    if (ix < 0 || ix >= this._tables.length) {\n      throw new Error(`Table index ${ix} must be >=0 and <${this._tables.length}`);\n    }\n    return this._tables[ix];\n  }\n\n  /**\n   * The Textract Forms analysis result container for this page (even if the feature was disabled)\n   *\n   * For details see: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n   */\n  get form(): FormGeneric<Page> {\n    return this._form;\n  }\n  /**\n   * Shape & position of the page relative to the input image.\n   *\n   * This is typically the whole [0,0]-[1,1] box (esp for digital documents e.g. PDFs), or\n   * something close to it (for photographs of receipts, etc).\n   */\n  get geometry(): Geometry<ApiPageBlock, Page> {\n    return this._geometry;\n  }\n  /**\n   * Whether this page includes results from a Textract Layout analysis\n   *\n   * For details see: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  get hasLayout(): boolean {\n    return this._layout.nItemsTotal > 0;\n  }\n  /**\n   * The Textract Layout analysis result container for this page (even if the feature was disabled)\n   *\n   * For details see: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   */\n  get layout(): LayoutGeneric<Page> {\n    return this._layout;\n  }\n  /**\n   * Number of text LINE blocks present in the page\n   */\n  get nLines(): number {\n    return this._lines.length;\n  }\n  /**\n   * Number of SIGNATURE blocks detected in the page (0 if Signatures analysis was not enabled)\n   */\n  get nSignatures(): number {\n    return this.listSignatures().length;\n  }\n  /**\n   * Number of TABLEs present in the page (0 if Tables analysis was not enabled)\n   */\n  get nTables(): number {\n    return this._tables.length;\n  }\n\n  /**\n   * 1-based page number of this Page in the parent TextractDocument\n   */\n  get pageNumber(): number {\n    const pageIndex = this._parentDocument._pages.indexOf(this);\n    if (pageIndex < 0) {\n      throw new Error(\"parentDocument does not seem to contain this Page\");\n    } else {\n      return pageIndex + 1;\n    }\n  }\n  /**\n   * Parsed document object to which this individual page belongs\n   */\n  get parentDocument(): TextractDocument {\n    return this._parentDocument;\n  }\n\n  /**\n   * The Textract Queries analysis result container for this page (even if the feature was disabled)\n   *\n   * For details see: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n   */\n  get queries(): QueryInstanceCollectionGeneric<Page> {\n    return this._queries;\n  }\n  /**\n   * Property to simply extract all text on the page\n   *\n   * This is calculated by concatenating the text of all the page's LINE Blocks.\n   */\n  get text(): string {\n    return this._lines.map((l) => l.text).join(\"\\n\");\n  }\n\n  /**\n   * Return a best-effort semantic HTML representation of the page content\n   *\n   * This is useful for ingesting the document into tools like search engines or Generative Large\n   * Language Models (LLMs) that might be capable of understanding semantic structure such as\n   * paragraphs or headings, but cannot consume fully multi-modal (image/text coordinate) data.\n   *\n   * If the Textract LAYOUT feature was enabled, this function uses its results to assemble and\n   * sequence paragraphs, headings, and other features.\n   *\n   * TODO: Support more basic .html() on Textract results for which LAYOUT analysis was not enabled\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   *\n   * @param opts Optional configuration to filter rendering to certain content types\n   *\n   * @throws If Textract Layout analysis was not enabled in the API request.\n   */\n  html(opts?: IRenderOpts): string {\n    if (this.hasLayout) {\n      // Since the Textract LAYOUT feature was enabled, we can use it to render semantic HTML\n      return this._layout.html(opts);\n    } else {\n      // To render semantic HTML for non-Layout-analysed documents, we'd want to collect the\n      // various components (plain text lines, fields, tables, etc) in approximate reading order\n      // and intersperse them. It seems possible, but not straightforward - don't have a solution\n      // yet. Only allow returning empty HTML for empty page:\n      if (this.listRelatedItemsByRelType(ApiRelationshipType.Child).length) {\n        throw new Error(\n          \"Page.html() is not yet implemented for results where Textract LAYOUT was not enabled\",\n        );\n      } else {\n        return \"\";\n      }\n    }\n  }\n\n  str(): string {\n    return `Page\\n==========\\n${this._content.join(\"\\n\")}\\n`;\n  }\n}\n\n// content.ts concrete Page-dependent types:\n/**\n * Parsed TRP object for a line of text on the page\n *\n * Wraps an Amazon Textract `LINE` Block in the underlying API response. You'll usually create\n * this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-lines-words.html\n */\nexport class Line extends LineGeneric<Page> {}\n\n// form.ts concrete Page-dependent types:\n/**\n * Parsed TRP object for a key-value field in form analysis data\n *\n * You'll usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n */\nexport class Field extends FieldGeneric<Page> {}\n/**\n * Parsed TRP object for the key/label of a key-value field pair in form analysis data\n *\n * Wraps an Amazon Textract `KEY_VALUE_SET` (or `KEY`) Block in the underlying API response. You'll\n * usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n */\nexport class FieldKey extends FieldKeyGeneric<Page> {}\n/**\n * Parsed TRP object for the value/data of a key-value field pair in form analysis data\n *\n * Wraps an Amazon Textract `KEY_VALUE_SET` (or `VALUE`) Block in the underlying API response.\n * You'll usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n */\nexport class FieldValue extends FieldValueGeneric<Page> {}\n/**\n * Parsed TRP object wrapping all the key-value form data for one page of a document\n *\n * You'll usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n */\nexport class Form extends FormGeneric<Page> {}\n\n// layout.ts concrete Page-dependent types:\n/**\n * Parsed TRP object for a diagram / image / figure on a page, detected by document layout analysis\n *\n * Wraps an Amazon Textract `LAYOUT_FIGURE` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutFigure extends LayoutFigureGeneric<Page> {}\n/**\n * Parsed TRP object for an element of page footer content, detected by document layout analysis\n *\n * Note this excludes page numbers (see `LayoutPageNumber`). Wraps an Amazon Textract\n * `LAYOUT_FOOTER` Block in the underlying API response. You'll usually create this via a\n * `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutFooter extends LayoutFooterGeneric<Page> {}\n/**\n * Parsed TRP object for an element of page header content, detected by document layout analysis\n *\n * Note this excludes page numbers (see `LayoutPageNumber`). Wraps an Amazon Textract\n * `LAYOUT_HEADER` Block in the underlying API response. You'll usually create this via a\n * `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutHeader extends LayoutHeaderGeneric<Page> {}\n/**\n * Parsed TRP object for an area of key-value (form data) content, detected by layout analysis\n *\n * Note this typically includes multiple `Field` objects (if you have forms data analysis enabled).\n * Wraps an Amazon Textract `LAYOUT_KEY_VALUE` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutKeyValue extends LayoutKeyValueGeneric<Page> {}\n/**\n * Parsed TRP object for a page number annotation, detected by document layout analysis\n *\n * Wraps an Amazon Textract `LAYOUT_PAGE_NUMBER` Block in the underlying API response. You'll\n * usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutPageNumber extends LayoutPageNumberGeneric<Page> {}\n/**\n * Parsed TRP object for a section heading / title, detected by document layout analysis\n *\n * Wraps an Amazon Textract `LAYOUT_SECTION_HEADER` Block in the underlying API response. You'll\n * usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutSectionHeader extends LayoutSectionHeaderGeneric<Page> {}\n/**\n * Parsed TRP object for a table, detected by document layout analysis\n *\n * Note this can link through to, but may not correspond 1:1 with, structured table data extracted\n * by the Tables analysis. Wraps an Amazon Textract `LAYOUT_TABLE` Block in the underlying API\n * response. You'll usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutTable extends LayoutTableGeneric<Page> {}\n/**\n * Parsed TRP object for a paragraph / independent element of text, detected by layout analysis\n *\n * Wraps an Amazon Textract `LAYOUT_TEXT` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutText extends LayoutTextGeneric<Page> {}\n/**\n * Parsed TRP object for an overall document title, detected by document layout analysis\n *\n * Wraps an Amazon Textract `LAYOUT_TITLE` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutTitle extends LayoutTitleGeneric<Page> {}\n/**\n * Parsed TRP object for a bulleted or numbered list, detected by document layout analysis\n *\n * Wraps an Amazon Textract `LAYOUT_LIST` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class LayoutList extends LayoutListGeneric<Page> {}\n/**\n * Parsed TRP object for the overall layout of a page, detected by document layout analysis\n *\n * Can be used to iterate through content like headings, paragraphs, headers and footers, in\n * implied reading order (even for multi-column documents). You'll usually create this via a\n * `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\nexport class Layout extends LayoutGeneric<Page> {}\n\n// query.ts concrete Page-dependent types:\n/**\n * Parsed TRP object for one page's instance of a submitted Amazon Textract Query\n *\n * Wraps an Amazon Textract `QUERY` Block in the underlying API response. You'll usually create\n * this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\nexport class QueryInstance extends QueryInstanceGeneric<Page> {}\n/**\n * Parsed TRP object wrapping all the Textract Queries results for one page in a document\n *\n * You'll usually create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\nexport class QueryInstanceCollection extends QueryInstanceCollectionGeneric<Page> {}\n/**\n * Parsed TRP object for one detected result for a submitted Amazon Textract Query\n *\n * Wraps an Amazon Textract `QUERY_RESULT` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\nexport class QueryResult extends QueryResultGeneric<Page> {}\n\n// table.ts concrete Page-dependent types:\n/**\n * Parsed TRP object for a (sub-)cell of a table, before considering any merged cells\n *\n * Wraps an Amazon Textract `CELL` Block in the underlying API response. You'll usually create this\n * via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\nexport class Cell extends CellGeneric<Page> {}\n/**\n * Parsed TRP object for a merged cell in a table\n *\n * Wraps an Amazon Textract `MERGED_CELL` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\nexport class MergedCell extends MergedCellGeneric<Page> {}\n/**\n * Parsed TRP object for one row in a table\n *\n * `Row`s don't directly wrap any one object in Amazon Textract API results, but are a collection\n * used to help iterate through table contents. You'll usually create this via a\n * `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\nexport class Row extends RowGeneric<Page> {}\n/**\n * Parsed TRP object for a table on a page, detected by document tables analysis\n *\n * Wraps an Amazon Textract `TABLE` Block in the underlying API response. You'll usually create\n * this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\nexport class Table extends TableGeneric<Page> {}\n/**\n * Parsed TRP object for a trailing/footer caption of a table\n *\n * Wraps an Amazon Textract `TABLE_FOOTER` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\nexport class TableFooter extends TableFooterGeneric<Page> {}\n/**\n * Parsed TRP object for a leading/header caption of a table\n *\n * Wraps an Amazon Textract `TABLE_TITLE` Block in the underlying API response. You'll usually\n * create this via a `TextractDocument`, rather than directly.\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n */\nexport class TableTitle extends TableTitleGeneric<Page> {}\n\n/**\n * Main TRP class to parse and analyze Amazon Textract document analysis & text detection results\n */\nexport class TextractDocument\n  extends ApiObjectWrapper<ApiResponsePage & ApiResponseWithContent>\n  implements IDocBlocks, IRenderable\n{\n  _blockMap: { [blockId: string]: ApiBlock };\n  _form: FormsCompositeGeneric<Page, TextractDocument>;\n  _pages: Page[];\n\n  /**\n   * Create (parse) a TextractDocument from Amazon Textract API response JSON(s)\n   *\n   * @param textractResults A (parsed) Textract response JSON, or an array of multiple from the same job\n   */\n  constructor(textractResults: ApiResponsePage | ApiResponsePages) {\n    let dict;\n    if (Array.isArray(textractResults)) {\n      dict = TextractDocument._consolidateMultipleResponses(textractResults);\n    } else {\n      if (!(\"Blocks\" in textractResults && textractResults.Blocks?.length)) {\n        throw new Error(`Provided Textract JSON has no content! (.Blocks array)`);\n      }\n      dict = textractResults;\n    }\n    super(dict);\n\n    if (\"NextToken\" in this._dict && this._dict.NextToken) {\n      console.warn(`Provided Textract JSON contains a NextToken: Content may be truncated!`);\n    }\n\n    this._blockMap = {};\n    this._pages = [];\n    this._form = new FormsCompositeGeneric([], this);\n    this._parse();\n  }\n\n  _parse(): void {\n    this._blockMap = this._dict.Blocks.reduce(\n      (acc, next) => {\n        acc[next.Id] = next;\n        return acc;\n      },\n      {} as { [blockId: string]: ApiBlock },\n    );\n\n    let currentPageBlock: ApiPageBlock | null = null;\n    let currentPageContent: ApiBlock[] = [];\n    this._pages = [];\n    this._dict.Blocks.forEach((block) => {\n      if (block.BlockType == ApiBlockType.Page) {\n        if (currentPageBlock) {\n          this._pages.push(new Page(currentPageBlock, currentPageContent, this));\n        }\n        currentPageBlock = block;\n        currentPageContent = [block];\n      } else {\n        currentPageContent.push(block);\n      }\n    });\n    if (currentPageBlock) {\n      this._pages.push(new Page(currentPageBlock, currentPageContent, this));\n    }\n\n    this._form = new FormsCompositeGeneric(\n      this._pages.map((p) => p.form),\n      this,\n    );\n  }\n\n  static _consolidateMultipleResponses(\n    textractResultArray: ApiResponsePages,\n  ): ApiResponsePage & ApiResponseWithContent {\n    if (!textractResultArray?.length) throw new Error(`Input Textract Results list empty!`);\n    let nPages = 0;\n    const docMetadata: ApiDocumentMetadata = { Pages: 0 };\n    let blocks: ApiBlock[] = [];\n    let modelVersion = \"\";\n    let analysisType: null | \"AnalyzeDocument\" | \"DetectText\" = null;\n    let jobStatus: null | \"IN_PROGRESS\" | \"SUCCEEDED\" | \"PARTIAL_SUCCESS\" = null;\n    let jobStatusMessage: null | string = null;\n    let warnings: null | ApiResultWarning[] = null;\n    for (const textractResult of textractResultArray) {\n      if (\"Blocks\" in textractResult && textractResult.Blocks) {\n        blocks = blocks.concat(textractResult.Blocks);\n      } else {\n        console.warn(\"Found Textract response with no content\");\n      }\n      if (\"DocumentMetadata\" in textractResult) {\n        Object.assign(docMetadata, textractResult[\"DocumentMetadata\"]);\n        nPages = Math.max(nPages, textractResult.DocumentMetadata.Pages);\n      }\n      if (\"AnalyzeDocumentModelVersion\" in textractResult) {\n        if (analysisType && analysisType !== \"AnalyzeDocument\") {\n          throw new Error(\"Inconsistent textractResults contain both AnalyzeDocument and DetectText results\");\n        }\n        analysisType = \"AnalyzeDocument\";\n        if (modelVersion && modelVersion !== textractResult.AnalyzeDocumentModelVersion) {\n          console.warn(\n            `Inconsistent Textract model versions ${modelVersion} and ${textractResult.AnalyzeDocumentModelVersion}: Ignoring latter`,\n          );\n        } else {\n          modelVersion = textractResult.AnalyzeDocumentModelVersion;\n        }\n      }\n      if (\"DetectDocumentTextModelVersion\" in textractResult) {\n        if (analysisType && analysisType !== \"DetectText\") {\n          throw new Error(\"Inconsistent textractResults contain both AnalyzeDocument and DetectText results\");\n        }\n        analysisType = \"DetectText\";\n        if (modelVersion && modelVersion !== textractResult.DetectDocumentTextModelVersion) {\n          console.warn(\n            `Inconsistent Textract model versions ${modelVersion} and ${textractResult.DetectDocumentTextModelVersion}: Ignoring latter`,\n          );\n        } else {\n          modelVersion = textractResult.DetectDocumentTextModelVersion;\n        }\n      }\n      if (\"JobStatus\" in textractResult) {\n        if (\n          textractResult.JobStatus == \"FAILED\" ||\n          (textractResult.JobStatus || \"\").toLocaleUpperCase().indexOf(\"FAIL\") >= 0\n        ) {\n          throw new Error(`Textract results contain failed job of status ${textractResult.JobStatus}`);\n        } else if (jobStatus && jobStatus !== textractResult.JobStatus) {\n          throw new Error(\n            `Textract results inconsistent JobStatus values ${jobStatus}, ${textractResult.JobStatus}`,\n          );\n        }\n        jobStatus = textractResult.JobStatus;\n      }\n      if (\"StatusMessage\" in textractResult && textractResult.StatusMessage) {\n        if (jobStatusMessage && textractResult.StatusMessage !== jobStatusMessage) {\n          console.warn(`Multiple StatusMessages in Textract results - keeping longest`);\n          if (textractResult.StatusMessage.length > jobStatusMessage.length) {\n            jobStatusMessage = textractResult.StatusMessage;\n          }\n        } else {\n          jobStatusMessage = textractResult.StatusMessage;\n        }\n      }\n      if (\"Warnings\" in textractResult && textractResult.Warnings) {\n        warnings = warnings ? warnings.concat(textractResult.Warnings) : textractResult.Warnings;\n      }\n    }\n\n    const content: ApiResponseWithContent = {\n      DocumentMetadata: docMetadata,\n      Blocks: blocks,\n    };\n    const modelVersionFields =\n      analysisType == \"AnalyzeDocument\"\n        ? { AnalyzeDocumentModelVersion: modelVersion }\n        : analysisType == \"DetectText\"\n          ? { DetectDocumentTextModelVersion: modelVersion }\n          : { AnalyzeDocumentModelVersion: modelVersion || \"Unknown\" };\n    const jobStatusFields = jobStatus ? { JobStatus: jobStatus } : {};\n    const statusMessageFields = jobStatusMessage ? { StatusMessage: jobStatusMessage } : {};\n    const warningFields = warnings ? { ArfBarf: warnings } : {};\n\n    const lastItem = textractResultArray[textractResultArray.length - 1];\n    const nextTokenFields = \"NextToken\" in lastItem ? { NextToken: lastItem.NextToken } : {};\n\n    return {\n      ...content,\n      ...modelVersionFields,\n      ...jobStatusFields,\n      ...statusMessageFields,\n      ...warningFields,\n      ...nextTokenFields,\n    };\n  }\n\n  /**\n   * The Textract Forms analysis result container for all K-Vs across the document\n   *\n   * This object is still created (but will be empty) if the Textract FORMS analysis was disabled\n   *\n   * For details see: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-kvp.html\n   */\n  get form(): FormsComposite {\n    return this._form;\n  }\n\n  /**\n   * The number of pages present in the document\n   */\n  get nPages(): number {\n    return this._pages.length;\n  }\n\n  /**\n   * Property to simply extract the document content as flat text\n   *\n   * Page contents are separated by 4 newlines\n   */\n  get text(): string {\n    return this._pages.map((page) => page.text).join(\"\\n\\n\\n\\n\");\n  }\n\n  getBlockById(blockId: string): ApiBlock | undefined {\n    return this._blockMap && this._blockMap[blockId];\n  }\n\n  /**\n   * Return a parsed TRP.js object corresponding to an API Block\n   *\n   * At the document level, this works by querying each `Page` in turn\n   *\n   * @param blockId Unique ID of the API Block for which a parsed object should be fetched\n   * @param allowBlockTypes Optional restriction on acceptable ApiBlockType(s) to return\n   * @throws If no parsed object exists for the block ID, or it doesn't match `allowBlockTypes`\n   */\n  getItemByBlockId(\n    blockId: string,\n    allowBlockTypes?: ApiBlockType | ApiBlockType[] | null,\n  ): IApiBlockWrapper<ApiBlock> {\n    for (const page of this._pages) {\n      try {\n        return page.getItemByBlockId(blockId, allowBlockTypes);\n      } catch {\n        // Throws when no block present - so ignore this and try next page\n      }\n    }\n    throw new Error(`No parser item found on any page, for block ID ${blockId}`);\n  }\n\n  /**\n   * Iterate through the pages of the document\n   * @example\n   * for (const page of doc.iterPages()) {\n   *   console.log(page.str());\n   * }\n   * @example\n   * const pages = [...doc.iterPages()];\n   */\n  iterPages(): Iterable<Page> {\n    return getIterable(() => this._pages);\n  }\n\n  /**\n   * Fetch a snapshot of the list of all API `Block` items owned by this PAGE\n   *\n   * @returns (A shallow copy of) the list of raw `Block` objects\n   */\n  listBlocks(): ApiBlock[] {\n    return this._dict.Blocks.slice();\n  }\n\n  /**\n   * Fetch a snapshot of the list of parsed `Page`s in this document object\n   *\n   * @returns (A shallow copy of) the list of parsed `Page` objects\n   */\n  listPages(): Page[] {\n    return this._pages.slice();\n  }\n\n  /**\n   * Fetch a parsed `Page` of the document by 1-based page number\n   * @param pageNum 1-based index of the target page to fetch\n   * @throws If `pageNum` is less than 1, or greater than or equal to `doc.nPages``\n   */\n  pageNumber(pageNum: number): Page {\n    if (!(pageNum >= 1 && pageNum <= this._pages.length)) {\n      throw new Error(`pageNum ${pageNum} must be between 1 and ${this._pages.length}`);\n    }\n    return this._pages[pageNum - 1];\n  }\n\n  /**\n   * Return a best-effort semantic HTML representation of the document\n   *\n   * This is useful for ingesting the document into tools like search engines or Generative Large\n   * Language Models (LLMs) that might be capable of understanding semantic structure such as\n   * paragraphs or headings, but cannot consume fully multi-modal (image/text coordinate) data.\n   *\n   * As per `Page.html()`, this currently depends on the Textract LAYOUT feature being enabled in\n   * the underlying API request.\n   *\n   * TODO: Support more basic .html() on Textract results for which LAYOUT analysis was not enabled\n   *\n   * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n   *\n   * @param opts Optional configuration to filter rendering to certain content types\n   *\n   * @throws If Textract Layout analysis was not enabled in the API request.\n   */\n  html(opts?: IRenderOpts): string {\n    const bodyHtml = [\n      \"<body>\",\n      indent(this._pages.map((page) => `<div class=\"page\">\\n${indent(page.html(opts))}\\n</div>`).join(\"\\n\")),\n      \"</body>\",\n    ].join(\"\\n\");\n\n    return `<!DOCTYPE html>\\n<html>\\n${bodyHtml}\\n</html>`;\n  }\n\n  str(): string {\n    return `\\nDocument\\n==========\\n${this._pages.map((p) => p.str()).join(\"\\n\\n\")}\\n\\n`;\n  }\n}\n\nexport class FormsComposite extends FormsCompositeGeneric<Page, TextractDocument> {}\n"
  },
  {
    "path": "src-js/src/expense.ts",
    "content": "/**\n * TRP classes for expense API results (e.g. AnalyzeExpense)\n */\n\n// Local Dependencies:\nimport {\n  ApiExpenseComponentDetection,\n  ApiExpenseDocument,\n  ApiExpenseField,\n  ApiExpenseFieldType,\n  ApiExpenseLineItem,\n  ApiExpenseLineItemGroup,\n} from \"./api-models/expense\";\nimport { ApiAnalyzeExpenseResponse } from \"./api-models/response\";\nimport { ApiObjectWrapper, DocumentMetadata, getIterable } from \"./base\";\nimport { Geometry } from \"./geometry\";\n\nexport class ExpenseComponentDetection extends ApiObjectWrapper<ApiExpenseComponentDetection> {\n  _geometry?: Geometry<ApiExpenseComponentDetection, ExpenseComponentDetection>;\n  _parentField: ExpenseField;\n\n  constructor(dict: ApiExpenseComponentDetection, parentField: ExpenseField) {\n    super(dict);\n    this._parentField = parentField;\n    this._geometry = dict.Geometry ? new Geometry(dict.Geometry, this) : undefined;\n  }\n\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  /**\n   * geometry may be undefined when no `text` is detected.\n   */\n  get geometry(): undefined | Geometry<ApiExpenseComponentDetection, ExpenseComponentDetection> {\n    return this._geometry;\n  }\n  get parentField(): ExpenseField {\n    return this._parentField;\n  }\n  get text(): string {\n    return this._dict.Text;\n  }\n  set text(newVal: string) {\n    this._dict.Text = newVal;\n  }\n}\n\nexport class ExpenseFieldType extends ApiObjectWrapper<ApiExpenseFieldType> {\n  _parentField: ExpenseField;\n\n  constructor(dict: ApiExpenseFieldType, parentField: ExpenseField) {\n    super(dict);\n    this._parentField = parentField;\n  }\n\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  get parentField(): ExpenseField {\n    return this._parentField;\n  }\n  get text(): string {\n    return this._dict.Text;\n  }\n  set text(newVal: string) {\n    this._dict.Text = newVal;\n  }\n}\n\nexport class ExpenseField extends ApiObjectWrapper<ApiExpenseField> {\n  _fieldType: ExpenseFieldType;\n  _label: ExpenseComponentDetection | null;\n  _parent: ExpenseDocument | ExpenseLineItem;\n  _value: ExpenseComponentDetection;\n\n  constructor(dict: ApiExpenseField, parent: ExpenseDocument | ExpenseLineItem) {\n    super(dict);\n    this._parent = parent;\n    this._fieldType = new ExpenseFieldType(dict.Type, this);\n    this._label = dict.LabelDetection ? new ExpenseComponentDetection(dict.LabelDetection, this) : null;\n    this._value = new ExpenseComponentDetection(dict.ValueDetection, this);\n  }\n\n  get fieldType(): ExpenseFieldType {\n    return this._fieldType;\n  }\n  get label(): ExpenseComponentDetection | null {\n    return this._label;\n  }\n  get pageNumber(): number {\n    return this._dict.PageNumber;\n  }\n  get parent(): ExpenseDocument | ExpenseLineItem {\n    return this._parent;\n  }\n  get value(): ExpenseComponentDetection {\n    return this._value;\n  }\n}\n\nexport class ExpenseLineItem extends ApiObjectWrapper<ApiExpenseLineItem> {\n  _fields: ExpenseField[];\n  _parentGroup: ExpenseLineItemGroup;\n\n  constructor(dict: ApiExpenseLineItem, parentGroup: ExpenseLineItemGroup) {\n    super(dict);\n    this._parentGroup = parentGroup;\n    this._fields = (dict.LineItemExpenseFields || []).map((d) => new ExpenseField(d, this));\n  }\n\n  get nFields(): number {\n    return this._fields.length;\n  }\n  get parentGroup(): ExpenseLineItemGroup {\n    return this._parentGroup;\n  }\n\n  /**\n   * Iterate through the fields in an expense line item\n   * @example\n   * for (const field of lineItem.iterFields()) {\n   *   console.log(field.label.text);\n   * }\n   * @example\n   * [...lineItem.iterFields()].forEach(\n   *   (field) => console.log(field.label.text)\n   * );\n   */\n  iterFields(): Iterable<ExpenseField> {\n    return getIterable(() => this._fields);\n  }\n\n  listFields(): ExpenseField[] {\n    return this._fields.slice();\n  }\n\n  getFieldByType(fieldType: string): ExpenseField | null {\n    const results = this.searchFieldsByType(fieldType);\n    return results.length ? results[0] : null;\n  }\n\n  searchFieldsByType(fieldType: string): ExpenseField[] {\n    return this._fields.filter((f) => f.fieldType.text == fieldType);\n  }\n}\n\nexport class ExpenseLineItemGroup extends ApiObjectWrapper<ApiExpenseLineItemGroup> {\n  _lineItems: ExpenseLineItem[];\n  _parentDoc: ExpenseDocument;\n\n  constructor(dict: ApiExpenseLineItemGroup, parentDoc: ExpenseDocument) {\n    super(dict);\n    this._parentDoc = parentDoc;\n    this._lineItems = (dict.LineItems || []).map((d) => new ExpenseLineItem(d, this));\n  }\n  /**\n   * ONE-BASED index of this line item group within the parent expense document.\n   */\n  get index(): number {\n    return this._dict.LineItemGroupIndex;\n  }\n  get nLineItems(): number {\n    return this._lineItems.length;\n  }\n  get parentDoc(): ExpenseDocument {\n    return this._parentDoc;\n  }\n\n  /**\n   * Iterate through the line items in the group\n   * @example\n   * for (const lineItem of group.iterLineItems()) {\n   *   console.log(lineItem.nFields);\n   * }\n   * @example\n   * [...group.iterLineItems()].forEach(\n   *   (item) => console.log(item.nFields)\n   * );\n   */\n  iterLineItems(): Iterable<ExpenseLineItem> {\n    return getIterable(() => this._lineItems);\n  }\n\n  listLineItems(): ExpenseLineItem[] {\n    return this._lineItems.slice();\n  }\n}\n\n/**\n * Parsed TRP object for a single expense/invoice/receipt in an expense analysis result\n *\n * You'll usually create this via a `TextractExpense`, rather than directly.\n */\nexport class ExpenseDocument extends ApiObjectWrapper<ApiExpenseDocument> {\n  _lineItemGroups: ExpenseLineItemGroup[];\n  _parentExpense: TextractExpense | null;\n  _summaryFields: ExpenseField[];\n\n  constructor(dict: ApiExpenseDocument, parentExpense: TextractExpense | null = null) {\n    super(dict);\n    this._parentExpense = parentExpense;\n    this._lineItemGroups = (dict.LineItemGroups || []).map((d) => new ExpenseLineItemGroup(d, this));\n    this._summaryFields = (dict.SummaryFields || []).map((d) => new ExpenseField(d, this));\n  }\n\n  /**\n   * ONE-BASED index of this expense document within the parent response object.\n   */\n  get index(): number {\n    return this._dict.ExpenseIndex;\n  }\n  get nLineItemGroups(): number {\n    return this._lineItemGroups.length;\n  }\n  get nSummaryFields(): number {\n    return this._summaryFields.length;\n  }\n  get parentExpense(): TextractExpense | null {\n    return this._parentExpense;\n  }\n\n  getSummaryFieldByType(fieldType: string): ExpenseField | null {\n    const results = this.searchSummaryFieldsByType(fieldType);\n    return results.length ? results[0] : null;\n  }\n\n  searchSummaryFieldsByType(fieldType: string): ExpenseField[] {\n    return this._summaryFields.filter((f) => f.fieldType.text == fieldType);\n  }\n\n  /**\n   * Iterate through the line item groups in the document\n   * @example\n   * for (const group of doc.iterLineItemGroups()) {\n   *   console.log(group.nLineItems);\n   * }\n   * @example\n   * [...doc.iterLineItemGroups()].forEach(\n   *   (group) => console.log(group.nLineItems)\n   * );\n   */\n  iterLineItemGroups(): Iterable<ExpenseLineItemGroup> {\n    return getIterable(() => this._lineItemGroups);\n  }\n\n  /**\n   * Iterate through the expense summary fields in the document\n   * @example\n   * for (const field of doc.iterSummaryFields()) {\n   *   console.log(field.label.text);\n   * }\n   * @example\n   * [...doc.iterSummaryFields()].forEach(\n   *   (field) => console.log(field.label.text)\n   * );\n   */\n  iterSummaryFields(): Iterable<ExpenseField> {\n    return getIterable(() => this._summaryFields);\n  }\n\n  listLineItemGroups(): ExpenseLineItemGroup[] {\n    return this._lineItemGroups.slice();\n  }\n\n  listSummaryFields(): ExpenseField[] {\n    return this._summaryFields.slice();\n  }\n}\n\n/**\n * Main TRP class to parse and analyze Amazon Textract expense analysis results\n *\n * Contains a list of (potentially multiple separate) detected expense documents from the submitted\n * content\n */\nexport class TextractExpense extends ApiObjectWrapper<ApiAnalyzeExpenseResponse> {\n  _docs: ExpenseDocument[];\n  _metadata: DocumentMetadata;\n\n  /**\n   * Create (parse) a TextractExpense object from Amazon Textract expense analysis result JSON\n   * @param textractResult Response JSON from sync or async expense analysis APIs\n   */\n  constructor(textractResult: ApiAnalyzeExpenseResponse) {\n    super(textractResult);\n\n    if (!textractResult.ExpenseDocuments) {\n      throw new Error(\n        \"Input doesn't seem like a Textract expense analysis result: missing property 'ExpenseDocuments'\",\n      );\n    }\n\n    this._metadata = new DocumentMetadata(textractResult.DocumentMetadata);\n    this._docs = (textractResult.ExpenseDocuments || []).map((d) => new ExpenseDocument(d, this));\n  }\n\n  get metadata(): DocumentMetadata {\n    return this._metadata;\n  }\n  get nDocs(): number {\n    return this._docs.length;\n  }\n\n  /**\n   * Iterate through the expense expense documents in the result\n   * @example\n   * for (const doc of expense.iterDocs()) {\n   *   console.log(doc.nSummaryFields);\n   * }\n   * @example\n   * [...expense.iterDocs()].forEach(\n   *   (doc) => console.log(doc.nSummaryFields)\n   * );\n   */\n  iterDocs(): Iterable<ExpenseDocument> {\n    return getIterable(() => this._docs);\n  }\n\n  listDocs(): ExpenseDocument[] {\n    return this._docs.slice();\n  }\n}\n"
  },
  {
    "path": "src-js/src/form.ts",
    "content": "/**\n * TRP classes for (generic document) key-value form objects\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationshipType } from \"./api-models/base\";\nimport { ApiSelectionStatus } from \"./api-models/content\";\nimport { ApiKeyBlock, ApiKeyValueSetBlock, ApiValueBlock } from \"./api-models/form\";\nimport {\n  aggregate,\n  AggregationMethod,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  getIterable,\n  IApiBlockWrapper,\n  IBlockManager,\n  IDocBlocks,\n  indent,\n  IRenderable,\n  IRenderOpts,\n  normalizeOptionalSet,\n  PageHostedApiBlockWrapper,\n} from \"./base\";\nimport { buildWithContent, IWithContent, SelectionElement, Signature, WithWords, Word } from \"./content\";\nimport { Geometry, IWithGeometry } from \"./geometry\";\n\n/**\n * Generic base class for a FieldKey, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/FieldKey`.\n */\nexport class FieldKeyGeneric<TPage extends IBlockManager>\n  extends WithWords(PageHostedApiBlockWrapper)<ApiKeyBlock | ApiKeyValueSetBlock, TPage>\n  implements IRenderable, IWithGeometry<ApiKeyBlock | ApiKeyValueSetBlock, FieldKeyGeneric<TPage>>\n{\n  _geometry: Geometry<ApiKeyBlock | ApiKeyValueSetBlock, FieldKeyGeneric<TPage>>;\n  _parentField: FieldGeneric<TPage>;\n\n  constructor(block: ApiKeyBlock | ApiKeyValueSetBlock, parentField: FieldGeneric<TPage>) {\n    super(block, parentField.parentPage);\n    this._parentField = parentField;\n    this._geometry = new Geometry(block.Geometry, this);\n  }\n\n  get geometry(): Geometry<ApiKeyBlock | ApiKeyValueSetBlock, FieldKeyGeneric<TPage>> {\n    return this._geometry;\n  }\n  get parentField(): FieldGeneric<TPage> {\n    return this._parentField;\n  }\n\n  /**\n   * Structural (not text) confidence score of the key/value pair detection\n   *\n   * This score reflects the confidence of the model detecting the key-value relation. For the text\n   * OCR confidence, see the `.getOcrConfidence()` method instead.\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n\n  /**\n   * Aggregate OCR confidence score of the text in this field key\n   *\n   * This score reflects the aggregated OCR confidence of the text detected in the field key. For\n   * the model's confidence on the key/value relation itself, see `.confidence`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n   * @returns Aggregated confidence, or null if this field key has no content/text\n   */\n  getOcrConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n    return aggregate(\n      this.listWords().map((w) => w.confidence),\n      aggMethod,\n    );\n  }\n  /**\n   * The semantic `html()` representation of a field key is just the (HTML-escaped) text\n   */\n  html({ includeBlockTypes = null, skipBlockTypes = null }: IRenderOpts = {}): string {\n    // WithWords.getText already filters by our self block type (KEY or KEY_VALUE_SET), but we'd\n    // like to also support explicitly skipping by KEY even if our block is KEY_VALUE_SET:\n    if (skipBlockTypes) {\n      skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n      if (skipBlockTypes.has(ApiBlockType.Key)) return \"\";\n    }\n    return escapeHtml(this.getText({ includeBlockTypes, skipBlockTypes }));\n  }\n  /**\n   * The `str()` representation of a field key is just the contained text\n   */\n  str(): string {\n    return this.text;\n  }\n}\n\n/**\n * Generic base class for a FieldValue, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/FieldValue`.\n */\nexport class FieldValueGeneric<TPage extends IBlockManager>\n  extends buildWithContent<SelectionElement | Signature | Word>()(PageHostedApiBlockWrapper)<\n    ApiKeyValueSetBlock | ApiValueBlock,\n    TPage\n  >\n  implements\n    IRenderable,\n    IWithContent<SelectionElement | Signature | Word>,\n    IWithGeometry<ApiKeyValueSetBlock | ApiValueBlock, FieldValueGeneric<TPage>>\n{\n  _geometry: Geometry<ApiKeyValueSetBlock | ApiValueBlock, FieldValueGeneric<TPage>>;\n  _parentField: FieldGeneric<TPage>;\n\n  constructor(valueBlock: ApiKeyValueSetBlock | ApiValueBlock, parentField: FieldGeneric<TPage>) {\n    super(valueBlock, parentField.parentPage);\n    this._parentField = parentField;\n    this._geometry = new Geometry(valueBlock.Geometry, this);\n  }\n\n  /**\n   * Structural (not text) confidence score of the key/value pair detection\n   *\n   * This score reflects the confidence of the model detecting the key-value relation. For the text\n   * OCR confidence, see the `.getOcrConfidence()` method instead.\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  get geometry(): Geometry<ApiKeyValueSetBlock | ApiValueBlock, FieldValueGeneric<TPage>> {\n    return this._geometry;\n  }\n  /**\n   * A field value is \"a checkbox\" if it contains one SELECTION_ELEMENT\n   *\n   * Use this to check whether this field value is a checkbox/radio button/etc. Other (text)\n   * content may also be present.\n   */\n  get isCheckbox(): boolean {\n    return this.listContent({ includeBlockTypes: [ApiBlockType.SelectionElement] }).length == 1;\n  }\n  /**\n   * Selection status if field value is one SELECTION_ELEMENT, else null\n   *\n   * If the field value contains exactly one SELECTION_ELEMENT, this property returns `true` if\n   * it's SELECTED or `false` if it's NOT_SELECTED. Otherwise, this property returns null.\n   */\n  get isSelected(): boolean | null {\n    const selEls = this.listContent({\n      includeBlockTypes: [ApiBlockType.SelectionElement],\n    }) as SelectionElement[];\n    return selEls.length === 1 ? selEls[0].selectionStatus === ApiSelectionStatus.Selected : null;\n  }\n  get parentField(): FieldGeneric<TPage> {\n    return this._parentField;\n  }\n  /**\n   * Selection status if field value is one SELECTION_ELEMENT, else null\n   *\n   * If the field value contains exactly one SELECTION_ELEMENT, this property returns its\n   * SelectionStatus. Otherwise, null.\n   */\n  get selectionStatus(): ApiSelectionStatus | null {\n    const selEls = this.listContent({\n      includeBlockTypes: [ApiBlockType.SelectionElement],\n    }) as SelectionElement[];\n    return selEls.length === 1 ? selEls[0].selectionStatus : null;\n  }\n\n  /**\n   * Aggregate OCR confidence score of the text in this field value\n   *\n   * This score reflects the aggregated OCR confidence of the text detected in the field value. For\n   * the model's confidence on the key/value relation itself, see `.confidence`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n   * @returns Aggregated confidence, or null if this field value has no content/text\n   */\n  getOcrConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n    return aggregate(\n      this.listContent().map((c) => c.confidence),\n      aggMethod,\n    );\n  }\n  /**\n   * The semantic `html()` representation of a field value is just the (HTML-escaped) text\n   */\n  html({ includeBlockTypes = null, skipBlockTypes = null }: IRenderOpts = {}): string {\n    // WithContent.getText already filters by our self block type (KEY or KEY_VALUE_SET), but we'd\n    // like to also support explicitly skipping by VALUE even if our block is KEY_VALUE_SET:\n    if (skipBlockTypes) {\n      skipBlockTypes = normalizeOptionalSet(skipBlockTypes);\n      if (skipBlockTypes.has(ApiBlockType.Value)) return \"\";\n    }\n    return escapeHtml(this.getText({ includeBlockTypes, skipBlockTypes }));\n  }\n  /**\n   * The `str()` representation of a field value is just the contained text\n   */\n  str(): string {\n    return this.text;\n  }\n}\n\n/**\n * Generic base class for a Field, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/Field`.\n *\n * TODO: We should probably do away with FieldKeyGeneric and just use this class?\n * Then it could directly wrap underlying objects\n */\nexport class FieldGeneric<TPage extends IBlockManager>\n  implements IApiBlockWrapper<ApiKeyBlock | ApiKeyValueSetBlock>, IRenderable\n{\n  _key: FieldKeyGeneric<TPage>;\n  _parentForm: FormGeneric<TPage>;\n  _value: FieldValueGeneric<TPage> | null;\n\n  constructor(keyBlock: ApiKeyBlock | ApiKeyValueSetBlock, parentForm: FormGeneric<TPage>) {\n    this._parentForm = parentForm;\n    this._value = null;\n\n    this._key = new FieldKeyGeneric(keyBlock, this);\n\n    let valueBlockIds: string[] = [];\n    (keyBlock.Relationships || []).forEach((rs) => {\n      if (rs.Type == ApiRelationshipType.Value) {\n        valueBlockIds = valueBlockIds.concat(rs.Ids);\n      }\n    });\n\n    if (valueBlockIds.length > 1) {\n      const fieldLogName = this._key ? `field '${this._key.text}'` : \"unnamed form field\";\n      console.warn(\n        `Got ${valueBlockIds.length} value blocks for ${fieldLogName} (Expected 0-1). Including first only.`,\n      );\n    }\n    if (valueBlockIds.length) {\n      const valBlockId = valueBlockIds[0];\n      const valBlock = parentForm.parentPage.getBlockById(valBlockId);\n      if (!valBlock) {\n        console.warn(\n          `Document missing child block ${valBlockId} referenced by value for field key ${this.key.id}`,\n        );\n      } else {\n        this._value = new FieldValueGeneric(valBlock as ApiKeyValueSetBlock | ApiValueBlock, this);\n      }\n    }\n  }\n\n  get blockType(): ApiBlockType {\n    // Hoisting required property from key to implement IApiBlockWrapper\n    return this._key.blockType;\n  }\n  /**\n   * Overall structural (not text) confidence score of the key/value pair detection\n   *\n   * Note this score describes the model's confidence in the validity of the key-value pair, not\n   * the underlying OCR confidence of the text. (For that, see `.getOcrConfidence()` instead)\n   *\n   * Returns the average structure confidence over whichever of {key} and {value} are present.\n   */\n  get confidence(): number {\n    const scores = [];\n    if (this._key) {\n      scores.push(this._key.confidence || 0);\n    }\n    if (this._value) {\n      scores.push(this._value.confidence || 0);\n    }\n    if (scores.length) {\n      return scores.reduce((acc, next) => acc + next, 0) / scores.length;\n    } else {\n      return 0;\n    }\n  }\n  get childBlockIds(): string[] {\n    // Hoisting required property from key to implement IApiBlockWrapper\n    return this._key.childBlockIds;\n  }\n  get dict(): ApiKeyBlock | ApiKeyValueSetBlock {\n    // Hoisting required property from key to implement IApiBlockWrapper\n    return this._key.dict;\n  }\n  get id(): string {\n    // Hoisting required property from key to implement IApiBlockWrapper\n    return this._key.id;\n  }\n  /**\n   * Selection status if field value is one SELECTION_ELEMENT, else null\n   *\n   * If the field value contains exactly one SELECTION_ELEMENT, this property returns `true` if\n   * it's SELECTED or `false` if it's NOT_SELECTED. Otherwise, this property returns null.\n   */\n  get isSelected(): boolean | null {\n    return this.value ? this.value.isSelected : null;\n  }\n  /**\n   * A field is a \"checkbox\" if its .value contains one SELECTION_ELEMENT\n   *\n   * Use this to check whether this is a checkbox/radio button/etc field. Other (text) content may\n   * also be present.\n   */\n  get isCheckbox(): boolean {\n    return !!this.value?.isCheckbox;\n  }\n  get key(): FieldKeyGeneric<TPage> {\n    return this._key;\n  }\n  get parentForm(): FormGeneric<TPage> {\n    return this._parentForm;\n  }\n  get parentPage(): TPage {\n    return this._parentForm.parentPage;\n  }\n  /**\n   * Selection status if field value is one SELECTION_ELEMENT, else null\n   *\n   * If the field value contains exactly one SELECTION_ELEMENT, this property returns its\n   * SelectionStatus. Otherwise, null.\n   */\n  get selectionStatus(): ApiSelectionStatus | null {\n    return this.value ? this.value.selectionStatus : null;\n  }\n  get text(): string {\n    return `${this._key.text}: ${this._value?.text || \"\"}`;\n  }\n  get value(): FieldValueGeneric<TPage> | null {\n    return this._value;\n  }\n\n  /**\n   * Aggregate OCR confidence score of the text in this field key and value (whichever are present)\n   *\n   * This score reflects the aggregated OCR confidence of all the text content detected in the\n   * field key and/or value (whichever of the two are present). For the model's confidence on the\n   * key/value relation itself, see `.confidence`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n   * @returns Aggregated confidence, or null if this field has no content/text\n   */\n  getOcrConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n    const keyValContent = (this._value ? this._value.listContent() : []).concat(this._key.listWords());\n    return aggregate(\n      keyValContent.map((c) => c.confidence),\n      aggMethod,\n    );\n  }\n\n  relatedBlockIdsByRelType(relType: ApiRelationshipType | ApiRelationshipType[]): string[] {\n    // Hoisting required property from key to implement IApiBlockWrapper\n    return this._key.relatedBlockIdsByRelType(relType);\n  }\n\n  /**\n   * The semantic `html()` representation of a form field uses an `<input>` element\n   *\n   * We render a text field, but `disable` it to prevent accidental edits when viewing reports\n   */\n  html(opts?: IRenderOpts): string {\n    let renderKey = doesFilterAllowBlockType(opts, this.key.blockType);\n    let renderValue = this.value && doesFilterAllowBlockType(opts, this.value.blockType);\n    if (opts && opts.skipBlockTypes) {\n      const skipSpec = normalizeOptionalSet(opts.skipBlockTypes);\n      if (skipSpec.has(ApiBlockType.Key)) renderKey = false;\n      if (skipSpec.has(ApiBlockType.Value)) renderValue = false;\n    }\n    if (!renderKey && !renderValue) return \"\";\n\n    const keyPartial = renderKey ? ` label=\"${escapeHtml(this._key.getText(opts), { forAttr: true })}\"` : \"\";\n    const valPartial = renderValue\n      ? ` value=\"${escapeHtml(this.value ? this.value.getText(opts) : \"\", { forAttr: true })}\"`\n      : \"\";\n    // TODO: Checkbox type for selector fields?\n    return `<input${keyPartial} type=\"text\" disabled${valPartial} />`;\n  }\n\n  str(): string {\n    // TODO: Probably we can do away with `._key?` checks as it should always be set per type moel?\n    return `\\nField\\n==========\\nKey: ${this._key ? this._key.str() : \"\"}\\nValue: ${\n      this._value ? this._value.str() : \"\"\n    }`;\n  }\n}\n\n/**\n * Generic class for a Form, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/Form`.\n */\nexport class FormGeneric<TPage extends IBlockManager> implements IRenderable {\n  _fields: FieldGeneric<TPage>[];\n  _fieldsMap: { [keyText: string]: FieldGeneric<TPage> };\n  _parentPage: TPage;\n\n  constructor(keyBlocks: Array<ApiKeyBlock | ApiKeyValueSetBlock>, parentPage: TPage) {\n    this._fields = [];\n    this._fieldsMap = {};\n    this._parentPage = parentPage;\n\n    keyBlocks.forEach((keyBlock) => {\n      const f = new FieldGeneric(keyBlock, this);\n      this._fields.push(f);\n      const fieldKeyText = f.key.text || \"\";\n      if (fieldKeyText) {\n        if (fieldKeyText in this._fieldsMap) {\n          if (f.confidence > this._fieldsMap[fieldKeyText].confidence) {\n            this._fieldsMap[fieldKeyText] = f;\n          }\n        } else {\n          this._fieldsMap[fieldKeyText] = f;\n        }\n      }\n    });\n  }\n\n  get nFields(): number {\n    return this._fields.length;\n  }\n  get parentPage(): TPage {\n    return this._parentPage;\n  }\n  get text(): string {\n    return this.listFields()\n      .map((f) => f.text)\n      .join(\"\\n\");\n  }\n\n  getFieldByKey(key: string): FieldGeneric<TPage> | null {\n    return this._fieldsMap[key] || null;\n  }\n\n  /**\n   * The semantic `html()` representation of a Form field collection uses a `<form>` element\n   *\n   * Within the `<form>`, we list out all the individual fields\n   */\n  html(opts: IRenderOpts = {}): string {\n    const fieldHtmls = this.listFields()\n      .map((f) => f.html(opts))\n      .filter((s) => s);\n    return fieldHtmls.length ? `<form>\\n${indent(fieldHtmls.join(\"\\n\"))}\\n</form>` : \"<form></form>\";\n  }\n\n  /**\n   * Iterate through the Fields in the Form.\n   * @param skipFieldsWithoutKey Set `true` to skip fields with no field.key (Included by default)\n   * @example\n   * for (const field of form.iterFields()) {\n   *   console.log(field?.key.text);\n   * }\n   * @example\n   * const fields = [...form.iterFields()];\n   */\n  iterFields(skipFieldsWithoutKey = false): Iterable<FieldGeneric<TPage>> {\n    return getIterable(() => this.listFields(skipFieldsWithoutKey));\n  }\n\n  /**\n   * List the Fields in the Form.\n   * @param skipFieldsWithoutKey Set `true` to skip fields with no field.key (Included by default)\n   */\n  listFields(skipFieldsWithoutKey = false): FieldGeneric<TPage>[] {\n    return skipFieldsWithoutKey ? this._fields.filter((f) => f.key) : this._fields.slice();\n  }\n\n  /**\n   * List the Fields in the Form with key text containing (case-insensitive) `key`\n   * @param key The text to search for in field keys\n   */\n  searchFieldsByKey(key: string): FieldGeneric<TPage>[] {\n    const searchKey = key.toLowerCase();\n    return this._fields.filter((field) => field.key && field.key.text.toLowerCase().indexOf(searchKey) >= 0);\n  }\n\n  str(): string {\n    return this._fields.map((f) => f.str()).join(\"\\n\");\n  }\n}\n\n/**\n * Generic base class for a composite of multiple Forms, as Page and TextractDocument are not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/FormsComposite`.\n *\n * While a Form is associated with a particular page, the FormsComposite class exposes a similar interface\n * for querying detected fields across all pages of the document at once. In general, results are analyzed\n * and presented in page order.\n */\nexport class FormsCompositeGeneric<TPage extends IBlockManager, TDocument extends IDocBlocks>\n  implements IRenderable\n{\n  _forms: FormGeneric<TPage>[];\n  _parentDocument: TDocument;\n\n  constructor(forms: FormGeneric<TPage>[], parentDocument: TDocument) {\n    this._forms = forms;\n    this._parentDocument = parentDocument;\n  }\n\n  get nFields(): number {\n    return this._forms.reduce((acc, next) => acc + next.nFields, 0);\n  }\n  get parentDocument(): TDocument {\n    return this._parentDocument;\n  }\n  get text(): string {\n    return this._forms.map((f) => f.text).join(\"\\n\\n\");\n  }\n\n  getFieldByKey(key: string): FieldGeneric<TPage> | null {\n    for (const form of this._forms) {\n      const result = form.getFieldByKey(key);\n      if (result) return result;\n    }\n    return null;\n  }\n\n  /**\n   * The semantic `html()` for a composite form uses a `<div>` of class \"form-page\"\n   *\n   * Within the container, we render the representation of each page's separate `<form>`.\n   */\n  html(): string {\n    const pageHtmls = this._forms.map(\n      (form, ixForm) =>\n        `<div class=\"form-page\" id=\"form-page-${ixForm}\">\\n${indent(\n          form\n            .listFields()\n            .map((f) => `${f.html()}\\n`) // Ensure a trailing newline\n            .join(\"\"),\n        )}</div>\\n`, // Ensure a trailing newline\n    );\n    return `<form>\\n${indent(pageHtmls.join(\"\"))}</form>`;\n  }\n\n  /**\n   * Iterate through the Fields in all Forms.\n   * @param skipFieldsWithoutKey Set `true` to skip fields with no field.key (Included by default)\n   * @example\n   * for (const field of form.iterFields()) {\n   *   console.log(field?.key.text);\n   * }\n   * @example\n   * const fields = [...form.iterFields()];\n   */\n  iterFields(skipFieldsWithoutKey = false): Iterable<FieldGeneric<TPage>> {\n    return getIterable(() => this.listFields(skipFieldsWithoutKey));\n  }\n\n  /**\n   * List the Fields in all Forms.\n   * @param skipFieldsWithoutKey Set `true` to skip fields with no field.key (Included by default)\n   */\n  listFields(skipFieldsWithoutKey = false): FieldGeneric<TPage>[] {\n    const allFields = ([] as FieldGeneric<TPage>[]).concat(...this._forms.map((form) => form.listFields()));\n    if (skipFieldsWithoutKey) {\n      return allFields.filter((f) => f.key);\n    } else {\n      return allFields;\n    }\n  }\n\n  /**\n   * List the Fields in the Form with key text containing (case-insensitive) `key`\n   * @param key The text to search for in field keys\n   */\n  searchFieldsByKey(key: string): FieldGeneric<TPage>[] {\n    return ([] as FieldGeneric<TPage>[]).concat(...this._forms.map((f) => f.searchFieldsByKey(key)));\n  }\n\n  str(): string {\n    return this._forms.map((f) => f.str()).join(\"\\n\");\n  }\n}\n\n/**\n * Interface for a (`Page`-like) object that exposes page-level form data\n */\nexport interface IWithForm<TPage extends IBlockManager> {\n  /**\n   * Parsed Forms (key-value pairs) data\n   */\n  form: FormGeneric<TPage>;\n}\n\n/**\n * Interface for a (`TextractDocument`-like) object that exposes document-level composite form data\n */\nexport interface IWithFormsComposite<TPage extends IBlockManager, TDocument extends IDocBlocks> {\n  /**\n   * Parsed Forms (key-value pairs) data\n   */\n  form: FormsCompositeGeneric<TPage, TDocument>;\n}\n"
  },
  {
    "path": "src-js/src/geometry.ts",
    "content": "/**\n * TRP classes for objects describing geometry (of e.g. words, text lines, tables) on the page\n */\n// Local Dependencies:\nimport { ApiBoundingBox, ApiGeometry, ApiPoint } from \"./api-models/geometry\";\nimport { ApiObjectWrapper } from \"./base\";\n\n/**\n * The coordinate axis-aligned bounding box of a detected object\n */\nexport class BoundingBox<\n  TParentBlock,\n  TParent extends ApiObjectWrapper<TParentBlock>,\n> extends ApiObjectWrapper<ApiBoundingBox> {\n  _parentGeometry: Geometry<TParentBlock, TParent> | null;\n\n  constructor(dict: ApiBoundingBox, parentGeometry: Geometry<TParentBlock, TParent> | null = null) {\n    super(dict);\n    this._parentGeometry = parentGeometry;\n  }\n\n  /**\n   * 0-1, top-to-bottom Y coordinate of the bottom of the box relative to the input page/image\n   */\n  get bottom(): number {\n    return this.top + this.height;\n  }\n  /**\n   * 0-1, left-to-right X coordinate of the center of the box relative to the input page/image\n   */\n  get hCenter(): number {\n    return this.left + this.width / 2;\n  }\n  /**\n   * Height of the box relative to the input page/image, from 0-1\n   */\n  get height(): number {\n    return this._dict.Height;\n  }\n  /**\n   * 0-1, left-to-right X coordinate of the left side of the box relative to the input page/image\n   */\n  get left(): number {\n    return this._dict.Left;\n  }\n  /**\n   * Optional parent geometry object owning this bounding box\n   */\n  get parentGeometry(): Geometry<TParentBlock, TParent> | null {\n    return this._parentGeometry;\n  }\n  /**\n   * 0-1, top-to-bottom Y coordinate of the top of the box relative to the input page/image\n   */\n  get top(): number {\n    return this._dict.Top;\n  }\n  /**\n   * 0-1, left-to-right X coordinate of the right side of the box relative to the input page/image\n   */\n  get right(): number {\n    return this.left + this.width;\n  }\n  /**\n   * 0-1, top-to-bottom Y coordinate of the middle of the box relative to the input page/image\n   */\n  get vCenter(): number {\n    return this.top + this.height / 2;\n  }\n  /**\n   * Width of the box relative to the input page/image, from 0-1\n   */\n  get width(): number {\n    return this._dict.Width;\n  }\n\n  /**\n   * Calculate the minimum box enclosing both this and `other`.\n   * @returns A new BoundingBox object with null `parentGeometry`.\n   */\n  union<T>(other: BoundingBox<T, ApiObjectWrapper<T>>): BoundingBox<T, ApiObjectWrapper<T>> {\n    const left = Math.min(this.left, other.left);\n    const top = Math.min(this.top, other.top);\n    const right = Math.max(this.right, other.right);\n    const bottom = Math.max(this.bottom, other.bottom);\n    return new BoundingBox(\n      {\n        Height: bottom - top,\n        Left: left,\n        Top: top,\n        Width: right - left,\n      },\n      null,\n    );\n  }\n\n  /**\n   * Calculate the intersection (if there is one) between two boxes.\n   * @returns A new BoundingBox object with null `parentGeometry`, or null if inputs don't overlap\n   */\n  intersection<T>(other: BoundingBox<T, ApiObjectWrapper<T>>): BoundingBox<T, ApiObjectWrapper<T>> | null {\n    const vIsectTop = Math.max(this.top, other.top);\n    const vIsectBottom = Math.min(this.bottom, other.bottom);\n    const vIsect = Math.max(0, vIsectBottom - vIsectTop);\n    const hIsectLeft = Math.max(this.left, other.left);\n    const hIsectRight = Math.min(this.right, other.right);\n    const hIsect = Math.max(0, hIsectRight - hIsectLeft);\n    if (vIsect > 0 && hIsect > 0) {\n      return new BoundingBox(\n        {\n          Height: vIsectBottom - vIsectTop,\n          Left: hIsectLeft,\n          Top: vIsectTop,\n          Width: hIsectRight - hIsectLeft,\n        },\n        null,\n      );\n    } else {\n      return null;\n    }\n  }\n\n  /**\n   * Create a human-readable string representation of this bounding box's key characteristics\n   */\n  str(): string {\n    return `width: ${this._dict.Width}, height: ${this._dict.Height}, left: ${this._dict.Left}, top: ${this._dict.Top}`;\n  }\n}\n\n/**\n * One X-Y point from a polygon describing the detailed shape of a detected object\n */\nexport class Point<\n  TParentBlock,\n  TParent extends ApiObjectWrapper<TParentBlock>,\n> extends ApiObjectWrapper<ApiPoint> {\n  _parentGeometry: Geometry<TParentBlock, TParent> | null;\n\n  constructor(dict: ApiPoint, parentGeometry: Geometry<TParentBlock, TParent> | null = null) {\n    super(dict);\n    this._parentGeometry = parentGeometry;\n  }\n\n  /**\n   * Optional parent geometry object owning this point\n   */\n  get parentGeometry(): Geometry<TParentBlock, TParent> | null {\n    return this._parentGeometry;\n  }\n  /**\n   * 0-1, left-to-right X coordinate of the point relative to the input image/page\n   */\n  get x(): number {\n    return this._dict.X;\n  }\n  /**\n   * 0-1, top-to-bottom Y coordinate of the point relative to the input image/page\n   */\n  get y(): number {\n    return this._dict.Y;\n  }\n\n  /**\n   * Create a human-readable string representation of this point's key characteristics\n   */\n  str(): string {\n    return `x: ${this._dict.X}, y: ${this._dict.Y}`;\n  }\n}\n\n/**\n * Shape/location on the page of an element detected by Textract\n */\nexport class Geometry<\n  TParentBlock,\n  TParent extends ApiObjectWrapper<TParentBlock>,\n> extends ApiObjectWrapper<ApiGeometry> {\n  _boundingBox: BoundingBox<TParentBlock, TParent>;\n  _parentObject: TParent | null;\n  _polygon: Point<TParentBlock, TParent>[];\n\n  constructor(dict: ApiGeometry, parentObject: TParent | null) {\n    super(dict);\n    this._parentObject = parentObject;\n    this._boundingBox = new BoundingBox(dict.BoundingBox, this);\n    this._polygon = dict.Polygon.map((pnt) => new Point(pnt, this));\n  }\n\n  /**\n   * The minimal coordinate-axis-aligned box containing the object\n   */\n  get boundingBox(): BoundingBox<TParentBlock, TParent> {\n    return this._boundingBox;\n  }\n  /**\n   * The (optional) TRP object that this geometry belongs to\n   */\n  get parentObject(): TParent | null {\n    return this._parentObject;\n  }\n  /**\n   * The detailed polygon shape of the object\n   *\n   * Usually this is still just a 4-point quadrilateral, but can help to indicate the element's\n   * actual orientation as used in `.orientationRadians()`\n   */\n  get polygon(): Point<TParentBlock, TParent>[] {\n    return this._polygon.slice();\n  }\n\n  /**\n   * Get the slope (in radians -pi < x +pi) of the initial segment of the polygon.\n   *\n   * Because Textract constructs polygons with first two points as T-L and T-R corners, this yields\n   * the approximate (since it might not be completely rectangular) orientation of the object.\n   */\n  orientationRadians(): number | null {\n    // (this._polygon must be a valid array, per constructor)\n    if (this._polygon.length < 2) return null;\n    const point0 = this._polygon[0];\n    const point1 = this._polygon[1];\n    return Math.atan2(point1.y - point0.y, point1.x - point0.x);\n  }\n\n  /**\n   * Wrapper over orientationRadians to translate result to degrees (-180 < x < 180).\n   */\n  orientationDegrees(): number | null {\n    const rads = this.orientationRadians();\n    if (rads == null) return rads;\n    return (rads * 180) / Math.PI;\n  }\n\n  /**\n   * Create a human-readable representation of this geometry's key characteristics\n   */\n  str(): string {\n    return `BoundingBox: ${this._boundingBox.str()}`;\n  }\n}\n\n/**\n * Basic interface for objects referencing an Amazon Textract Geometry\n */\nexport interface IWithGeometry<TParentBlock, TParent extends ApiObjectWrapper<TParentBlock>> {\n  /**\n   * Geometry of this object on the page\n   */\n  get geometry(): Geometry<TParentBlock, TParent>;\n}\n"
  },
  {
    "path": "src-js/src/id.ts",
    "content": "/**\n * TRP classes for identity document API results (e.g. AnalyzeID)\n */\n\n// Local Dependencies:\nimport { ApiIdentityDocument, ApiIdentityDocumentField } from \"./api-models/id\";\nimport { ApiAnalyzeIdResponse } from \"./api-models/response\";\nimport { ApiObjectWrapper, getIterable } from \"./base\";\n\n/**\n * Enum of Textract identity document field types recognised by TRP.js\n *\n * Any unrecognised types will be mapped to `Other`.\n *\n * https://docs.aws.amazon.com/textract/latest/dg/identitydocumentfields.html\n */\nexport enum IdFieldType {\n  FirstName = \"FIRST_NAME\",\n  LastName = \"LAST_NAME\",\n  MiddleName = \"MIDDLE_NAME\",\n  Suffix = \"SUFFIX\",\n  AddressCity = \"CITY_IN_ADDRESS\",\n  AddressZipCode = \"ZIP_CODE_IN_ADDRESS\",\n  AddressState = \"STATE_IN_ADDRESS\",\n  StateName = \"STATE_NAME\",\n  DocumentNumber = \"DOCUMENT_NUMBER\",\n  ExpirationDate = \"EXPIRATION_DATE\",\n  DateOfBirth = \"DATE_OF_BIRTH\",\n  DateOfIssue = \"DATE_OF_ISSUE\",\n  IdType = \"ID_TYPE\",\n  Endorsements = \"ENDORSEMENTS\",\n  Veteran = \"VETERAN\",\n  Restrictions = \"RESTRICTIONS\",\n  Class = \"CLASS\",\n  Address = \"ADDRESS\",\n  County = \"COUNTY\",\n  PlaceOfBirth = \"PLACE_OF_BIRTH\",\n  Other = \"OTHER\",\n}\n\n/**\n * Enum of Textract identity document field *data* types recognised by TRP.js\n *\n * This refers to the actual data type of the value (e.g. date vs other) rather than the field type (e.g.\n * expiration date vs date of issue).\n *\n * https://docs.aws.amazon.com/textract/latest/dg/identitydocumentfields.html\n */\nexport const enum IdFieldValueType {\n  Date = \"DATE\",\n  Other = \"OTHER\",\n}\n\n/**\n * Enum of TRP-recognised ID document types (known values for ID_TYPE fields)\n */\nexport enum IdDocumentType {\n  DrivingLicense = \"DRIVER LICENSE FRONT\",\n  Passport = \"PASSPORT\",\n  Other = \"OTHER\",\n}\n\nexport class IdDocumentField extends ApiObjectWrapper<ApiIdentityDocumentField> {\n  _parentDocument?: IdDocument;\n\n  constructor(dict: ApiIdentityDocumentField, parentDocument: IdDocument | undefined = undefined) {\n    super(dict);\n    this._parentDocument = parentDocument;\n  }\n\n  get isValueNormalized(): boolean {\n    return typeof this._dict.ValueDetection?.NormalizedValue?.Value !== \"undefined\";\n  }\n  /**\n   * Raw \"field type\" from Amazon Textract\n   */\n  get fieldTypeRaw(): string | undefined {\n    return this._dict.Type?.Text;\n  }\n  /**\n   * TRP-normalized \"field type\"\n   */\n  get fieldType(): IdFieldType {\n    const typeDict = this._dict.Type;\n    const textractFieldType = (typeDict?.NormalizedValue?.Value || typeDict?.Text || \"\").toUpperCase();\n\n    if (Object.values(IdFieldType).some((t: string) => t === textractFieldType)) {\n      return <IdFieldType>textractFieldType;\n    } else {\n      return IdFieldType.Other;\n    }\n  }\n  /**\n   * Identity document to which this field object belongs\n   */\n  get parentDocument(): IdDocument | undefined {\n    return this._parentDocument;\n  }\n  /**\n   * Value of the field, normalized if applicable\n   */\n  get value(): string {\n    const detection = this._dict.ValueDetection;\n    return detection?.NormalizedValue?.Value || detection?.Text || \"\";\n  }\n  get valueConfidence(): number {\n    return this._dict.ValueDetection?.Confidence || 0;\n  }\n  /**\n   * Raw value of the field without any normalization\n   */\n  get valueRaw(): string | undefined {\n    return this._dict.ValueDetection?.Text;\n  }\n  /**\n   * TRP-normalized data \"type\" for this field\n   */\n  get valueType(): IdFieldValueType {\n    let rawValueType = this._dict.ValueDetection?.NormalizedValue?.ValueType;\n    if (rawValueType) rawValueType = rawValueType.toUpperCase();\n    if (rawValueType === \"DATE\") {\n      return IdFieldValueType.Date;\n    } else {\n      return IdFieldValueType.Other;\n    }\n  }\n\n  /**\n   * Produce a human-readable string representation of this detected field\n   */\n  str(): string {\n    return `${this.fieldType}: ${this.value} (${this.valueConfidence.toFixed(1)}% Confidence)`;\n  }\n}\n\n/**\n * Parsed TRP object for a single identity document in an identity analysis result\n *\n * You'll usually create this via a `TextractIdentity`, rather than directly.\n */\nexport class IdDocument extends ApiObjectWrapper<ApiIdentityDocument> {\n  _fields: IdDocumentField[];\n  _fieldsByNormalizedType: { [key in IdFieldType]?: IdDocumentField };\n  _parentResult?: TextractIdentity;\n\n  constructor(dict: ApiIdentityDocument, parentResult: TextractIdentity | undefined = undefined) {\n    super(dict);\n    this._parentResult = parentResult;\n    this._fields = (dict.IdentityDocumentFields || []).map((d) => new IdDocumentField(d, this));\n\n    this._fieldsByNormalizedType = {};\n    this._fields.forEach((field) => {\n      this._fieldsByNormalizedType[field.fieldType] = field;\n    });\n  }\n\n  get index(): number {\n    return this._dict.DocumentIndex;\n  }\n\n  /**\n   * Detected type of this identity document\n   */\n  get idType(): IdDocumentType {\n    const idTypeValue = this.getFieldByType(IdFieldType.IdType)?.value;\n    if (Object.values(IdDocumentType).some((t: string) => t === idTypeValue)) {\n      return <IdDocumentType>idTypeValue;\n    } else {\n      return IdDocumentType.Other;\n    }\n  }\n  get nFields(): number {\n    return this._fields.length;\n  }\n  /**\n   * Parent API result this document belongs to\n   */\n  get parentCollection(): TextractIdentity | undefined {\n    return this._parentResult;\n  }\n\n  getFieldByType(fieldType: IdFieldType): IdDocumentField | undefined {\n    return this._fieldsByNormalizedType[fieldType];\n  }\n\n  /**\n   * Iterate through the detected fields in this identity document\n   * @param skipFieldsWithoutKey Set `true` to skip fields with no field.key (Included by default)\n   * @example\n   * for (const idDoc of result.iterDocuments()) {\n   *   console.log(idDoc.nFields);\n   * }\n   * @example\n   * const idDocs = [...result.iterDocuments()];\n   */\n  iterFields(): Iterable<IdDocumentField> {\n    return getIterable(() => this.listFields());\n  }\n\n  /**\n   * List the detected fields in this identity document\n   */\n  listFields(): IdDocumentField[] {\n    return this._fields.slice();\n  }\n\n  /**\n   * Produce a human-readable string representation of the ID document\n   */\n  str(): string {\n    const fldStr = this._fields.map((f) => f.str()).join(\"\\n\");\n    return `==========\\nIdentity Document ${this.index} (${this.idType})\\n----------\\n${fldStr}\\n==========`;\n  }\n}\n\n/**\n * Main TRP class to parse and analyze Amazon Textract identity analysis results\n *\n * Contains a list of (potentially multiple separate) detected identity documents from the\n * submitted content\n */\nexport class TextractIdentity extends ApiObjectWrapper<ApiAnalyzeIdResponse> {\n  _documents: IdDocument[];\n\n  /**\n   * Create (parse) a TextractIdentity object from Amazon Textract identity analysis result JSON\n   * @param textractResult Response JSON from identity analysis API\n   */\n  constructor(dict: ApiAnalyzeIdResponse) {\n    super(dict);\n    this._documents = (dict.IdentityDocuments || []).map((docDict) => new IdDocument(docDict, this));\n  }\n\n  get modelVersion(): string {\n    return this._dict.AnalyzeIDModelVersion;\n  }\n\n  /**\n   * Number of identity documents in this API result\n   */\n  get nDocuments(): number {\n    return this._documents.length;\n  }\n\n  get nPages(): number {\n    return this._dict.DocumentMetadata?.Pages || 0;\n  }\n\n  /**\n   * Get a particular identity document from the result by (0-based) index\n   * @throws Error if index is out of bounds 0 <= index < nDocuments\n   */\n  getDocAtIndex(index: number): IdDocument {\n    if (!(index >= 0 && index < this._documents.length)) {\n      throw new Error(`Document index ${index} must be between 0 and ${this._documents.length}`);\n    }\n    return this._documents[index];\n  }\n\n  /**\n   * Iterate through the identity documents in the result\n   * @param skipFieldsWithoutKey Set `true` to skip fields with no field.key (Included by default)\n   * @example\n   * for (const idDoc of result.iterDocuments()) {\n   *   console.log(idDoc.nFields);\n   * }\n   * @example\n   * const idDocs = [...result.iterDocuments()];\n   */\n  iterDocuments(): Iterable<IdDocument> {\n    return getIterable(() => this.listDocuments());\n  }\n\n  /**\n   * List the identity documents in the result\n   */\n  listDocuments(): IdDocument[] {\n    return this._documents.slice();\n  }\n\n  /**\n   * Produce a human-readable string representation of the AnalyzeId response\n   */\n  str(): string {\n    return this._documents.map((d) => d.str()).join(\"\\n\\n\");\n  }\n}\n"
  },
  {
    "path": "src-js/src/index.ts",
    "content": "/**\n * Amazon Textract Response Parser (JS/TS) main entry point\n */\n\n// api-models/index.ts handles filtering for this sub-module:\nexport * from \"./api-models\";\n\nexport {\n  ActionOnMissingBlock,\n  ActionOnUnexpectedBlockType,\n  aggregate,\n  AggregationMethod,\n  /**\n   * @deprecated Planned for private-only: Please let us know if you have a use-case for this?\n   */\n  ApiBlockWrapper,\n  argMax,\n  DocumentMetadata,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  getIterable,\n  IApiBlockWrapper,\n  IBlockManager,\n  IBlockTypeFilterOpts,\n  IDocBlocks,\n  IEscapeHtmlOpts,\n  IIndentOpts,\n  indent,\n  IRenderable,\n  IRenderOpts,\n  modalAvg,\n} from \"./base\";\nexport {\n  IWithContent,\n  IWithContentMixinOptions,\n  IWithWords,\n  IWithWordsMixinOptions,\n  SelectionElement,\n  Signature,\n  Word,\n} from \"./content\";\nexport {\n  Cell,\n  Field,\n  FieldKey,\n  FieldValue,\n  Form,\n  FormsComposite,\n  HeaderFooterSegmentModelParams,\n  HeuristicReadingOrderModelParams,\n  Layout,\n  LayoutFigure,\n  LayoutFooter,\n  LayoutHeader,\n  LayoutKeyValue,\n  LayoutPageNumber,\n  LayoutSectionHeader,\n  LayoutTable,\n  LayoutText,\n  LayoutTitle,\n  LayoutList,\n  Line,\n  MergedCell,\n  Page,\n  QueryInstance,\n  QueryInstanceCollection,\n  QueryResult,\n  ReadingOrderLayoutMode,\n  Row,\n  Table,\n  TableFooter,\n  TableTitle,\n  TextractDocument,\n} from \"./document\";\nexport {\n  ExpenseComponentDetection,\n  ExpenseFieldType,\n  ExpenseField,\n  ExpenseLineItem,\n  ExpenseLineItemGroup,\n  ExpenseDocument,\n  TextractExpense,\n} from \"./expense\";\nexport { BoundingBox, Point, Geometry } from \"./geometry\";\nexport {\n  IdDocumentType,\n  IdDocumentField,\n  IdDocument,\n  IdFieldType,\n  IdFieldValueType,\n  TextractIdentity,\n} from \"./id\";\nexport { ILayoutItem } from \"./layout\";\nexport { IFilterQueryOpts } from \"./query\";\nexport { IWithTables } from \"./table\";\n"
  },
  {
    "path": "src-js/src/layout.ts",
    "content": "/**\n * TRP classes for (generic document) layout analysis objects\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/layoutresponse.html\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationshipType, LAYOUT_BLOCK_TYPES } from \"./api-models/base\";\nimport { ApiBlock } from \"./api-models/document\";\nimport {\n  ApiLayoutBlock,\n  ApiLayoutFigureBlock,\n  ApiLayoutFooterBlock,\n  ApiLayoutHeaderBlock,\n  ApiLayoutKeyValueBlock,\n  ApiLayoutListBlock,\n  ApiLayoutPageNumberBlock,\n  ApiLayoutSectionHeaderBlock,\n  ApiLayoutTableBlock,\n  ApiLayoutTextBlock,\n  ApiLayoutTitleBlock,\n} from \"./api-models/layout\";\nimport {\n  _implIterRelatedBlocksByRelType,\n  ApiObjectWrapper,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  getIterable,\n  IApiBlockWrapper,\n  IBlockManager,\n  IBlockTypeFilterOpts,\n  indent,\n  INestedListOpts,\n  IRenderable,\n  IRenderOpts,\n  IWithParentPage,\n  IWithRelatedItems,\n  normalizeOptionalSet,\n  PageHostedApiBlockWrapper,\n  setIntersection,\n} from \"./base\";\nimport { buildWithContent, IWithContent, LineGeneric } from \"./content\";\nimport { FieldGeneric, IWithForm } from \"./form\";\nimport { Geometry, IWithGeometry } from \"./geometry\";\nimport { IWithTables, TableGeneric } from \"./table\";\n\n/**\n * Standard interface for parsed Layout items\n */\nexport interface ILayoutItem<\n  TBlock extends ApiLayoutBlock,\n  TContent extends IApiBlockWrapper<ApiBlock> & IRenderable,\n  TPage extends IApiBlockWrapper<ApiBlock> &\n    IBlockManager &\n    IWithForm<IBlockManager> &\n    IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n    IWithTables<IBlockManager>,\n  TGeometryHost extends ApiObjectWrapper<TBlock>,\n> extends IApiBlockWrapper<TBlock>,\n    IRenderable,\n    IWithContent<TContent>,\n    IWithParentPage<TPage>,\n    IWithGeometry<TBlock, TGeometryHost> {\n  /**\n   * 0-100 based confidence of the layout model for this element (*separate* from OCR confidence!)\n   */\n  confidence: number;\n  /**\n   * Position of this layout element on the input image/page\n   */\n  geometry: Geometry<TBlock, TGeometryHost>;\n  /**\n   * Number of layout items (any layout blocks) linked as direct children of this item\n   *\n   * Note this does *not* include any nested children. At the time of writing, only\n   * LAYOUT_LIST items link to LAYOUT_TEXT children - so no nesting should be present anyway.\n   */\n  get nLayoutChildrenDirect(): number;\n  /**\n   * *Total* number of layout items (any layout blocks) linked as direct or indirect children\n   *\n   * This includes any nested children. At the time of writing, only LAYOUT_LIST items link to\n   * LAYOUT_TEXT children - so no nesting should be present anyway.\n   */\n  get nLayoutChildrenTotal(): number;\n  /**\n   * Number of text `Line`s in this object\n   */\n  get nTextLines(): number;\n  /**\n   * Parsed page layout collection that this element belongs to\n   */\n  parentLayout: LayoutGeneric<TPage>;\n  // Because they're all content containers, Layout* items support the full IBlockTypeFilterOpts\n  // rather than just IRenderOpts\n  html(opts?: IBlockTypeFilterOpts): string;\n  /**\n   * Layout items (any layout block types) linked as children to this item\n   *\n   * Supports recursing via `opts.deep`, but at the time of writing only LAYOUT_LIST items link to\n   * LAYOUT_TEXT children - so no nesting should be present anyway.\n   */\n  iterLayoutChildren(\n    opts: IBlockTypeFilterOpts & INestedListOpts,\n  ): Iterable<\n    ILayoutItem<\n      ApiLayoutBlock,\n      IApiBlockWrapper<ApiBlock> & IRenderable,\n      TPage,\n      ApiObjectWrapper<ApiLayoutBlock>\n    >\n  >;\n  /**\n   * Iterate through the text `Line`s in this object\n   * @example\n   * for (const line of layItem.iterTextLines()) {\n   *   console.log(line.text);\n   * }\n   * @example\n   * [...layItem.iterTextLines()].forEach(\n   *   (line) => console.log(line.text)\n   * );\n   */\n  iterTextLines(): Iterable<LineGeneric<TPage>>;\n  /**\n   * Layout items (any layout block types) linked as children to this item\n   *\n   * Supports recursing via `opts.deep`, but at the time of writing only LAYOUT_LIST items link to\n   * LAYOUT_TEXT children - so no nesting should be present anyway.\n   */\n  listLayoutChildren(\n    opts?: IBlockTypeFilterOpts & INestedListOpts,\n  ): Array<\n    ILayoutItem<\n      ApiLayoutBlock,\n      IApiBlockWrapper<ApiBlock> & IRenderable,\n      TPage,\n      ApiObjectWrapper<ApiLayoutBlock>\n    >\n  >;\n  /**\n   * List the text `Line` items in this object\n   */\n  listTextLines(): Array<LineGeneric<TPage>>;\n}\n\n/**\n * Generic class on which layout items are based\n */\nclass LayoutItemBaseGeneric<\n    TBlock extends ApiLayoutBlock,\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends PageHostedApiBlockWrapper<TBlock, TPage>\n  implements IWithGeometry<TBlock, LayoutItemBaseGeneric<TBlock, TPage>>, IWithParentPage<TPage>\n{\n  _geometry: Geometry<ApiLayoutBlock, LayoutItemBaseGeneric<TBlock, TPage>>;\n  _parentLayout: LayoutGeneric<TPage>;\n\n  constructor(block: TBlock, parentLayout: LayoutGeneric<TPage>) {\n    super(block, parentLayout.parentPage);\n    this._geometry = new Geometry(block.Geometry, this);\n    this._parentLayout = parentLayout;\n  }\n\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  get geometry(): Geometry<ApiLayoutBlock, LayoutItemBaseGeneric<TBlock, TPage>> {\n    return this._geometry;\n  }\n  get nLayoutChildrenDirect(): number {\n    return this.listLayoutChildren({ deep: false }).length;\n  }\n  get nLayoutChildrenTotal(): number {\n    return this.listLayoutChildren({ deep: true }).length;\n  }\n  get parentLayout(): LayoutGeneric<TPage> {\n    return this._parentLayout;\n  }\n  iterLayoutChildren(\n    opts: IBlockTypeFilterOpts & INestedListOpts = {},\n  ): Iterable<\n    ILayoutItem<\n      ApiLayoutBlock,\n      IApiBlockWrapper<ApiBlock> & IRenderable,\n      TPage,\n      ApiObjectWrapper<ApiLayoutBlock>\n    >\n  > {\n    return getIterable(() => this.listLayoutChildren(opts));\n  }\n  listLayoutChildren({\n    deep = false,\n    includeBlockTypes = null,\n    onUnexpectedBlockType = null,\n    skipBlockTypes = null,\n  }: IBlockTypeFilterOpts & INestedListOpts = {}): Array<\n    ILayoutItem<\n      ApiLayoutBlock,\n      IApiBlockWrapper<ApiBlock> & IRenderable,\n      TPage,\n      ApiObjectWrapper<ApiLayoutBlock>\n    >\n  > {\n    let result: Array<\n      ILayoutItem<\n        ApiLayoutBlock,\n        IApiBlockWrapper<ApiBlock> & IRenderable,\n        TPage,\n        ApiObjectWrapper<ApiLayoutBlock>\n      >\n    > = [];\n    if (includeBlockTypes) {\n      includeBlockTypes = setIntersection(LAYOUT_BLOCK_TYPES, normalizeOptionalSet(includeBlockTypes));\n    } else {\n      includeBlockTypes = LAYOUT_BLOCK_TYPES;\n    }\n    for (const childRaw of this.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes,\n      onUnexpectedBlockType,\n      skipBlockTypes,\n    })) {\n      const child = childRaw as ILayoutItem<\n        ApiLayoutBlock,\n        IApiBlockWrapper<ApiBlock> & IRenderable,\n        TPage,\n        ApiObjectWrapper<ApiLayoutBlock>\n      >;\n      result.push(child);\n      if (deep)\n        result = result.concat(\n          child.listLayoutChildren({\n            deep,\n            includeBlockTypes,\n            onUnexpectedBlockType,\n            skipBlockTypes,\n          }),\n        );\n    }\n    return result;\n  }\n}\n\n/**\n * Common base class for Layout items whose `Child`ren are always text LINEs\n *\n * Not a big fan of relying heavily on this level of hierarchy because of its fragility... But at\n * the moment it seems like almost every Layout item contains only text `LINE` blocks, and it'd be\n * better to represent the `.text` of these as newline-joined rather than the default space-joined\n * from the mixin... So for now this helps us reduce some code duplication.\n */\nclass LayoutLineContainerItem<\n  TBlock extends ApiLayoutBlock,\n  TPage extends IApiBlockWrapper<ApiBlock> &\n    IBlockManager &\n    IWithForm<IBlockManager> &\n    IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n    IWithTables<IBlockManager>,\n> extends buildWithContent<LineGeneric<IBlockManager>>({ contentTypes: [ApiBlockType.Line] })(\n  LayoutItemBaseGeneric,\n)<TBlock, TPage> {\n  override getText(opts?: IBlockTypeFilterOpts) {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return this.listContent(opts)\n      .map((c) => c.text)\n      .join(\"\\n\");\n  }\n\n  /**\n   * Iterate through the text `Line`s in this object\n   *\n   * (Should be equivalent to iterContent, for LayoutLineContainer items that only contain text\n   * LINE objects)\n   *\n   * @example\n   * for (const line of layItem.iterTextLines()) {\n   *   console.log(line.text);\n   * }\n   * @example\n   * [...layItem.iterTextLines()].forEach(\n   *   (line) => console.log(line.text)\n   * );\n   */\n  iterTextLines(): Iterable<LineGeneric<TPage>> {\n    // For this base, the 'content' is typed as text Lines only anyway:\n    return getIterable(() => this.listTextLines());\n  }\n  /**\n   * List the text `Line` items in this object\n   *\n   * (Should be equivalent to listContent, for LayoutLineContainer items that only contain text\n   * LINE objects)\n   */\n  listTextLines(): Array<LineGeneric<TPage>> {\n    // For this base, the 'content' is typed as text Lines only anyway:\n    return this.listContent() as LineGeneric<TPage>[];\n  }\n\n  /**\n   * Number of text `Line`s in this object\n   *\n   * (Should be equivalent to nContentItems, for LayoutLineContainer items that only contain text\n   * LINE objects)\n   */\n  get nTextLines(): number {\n    return this.listTextLines().length;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a diagram, figure, or image\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutFigure`.\n */\nexport class LayoutFigureGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutFigureBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutFigureBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutFigureBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a figure is a <div> of class `figure`\n   *\n   * Detected text within the figure (if any), is included inside the div\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<div class=\"figure\">${content}</div>`;\n  }\n\n  /**\n   * The str() representation of a figure allows including text, but usually doesn't have any\n   */\n  str(): string {\n    return `#### Figure ####\\n${this.text}${this.text ? \"\\n\" : \"\"}################`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a page footer element\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutFooter`.\n */\nexport class LayoutFooterGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutFooterBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutFooterBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutFooterBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a Footer element is a <div> of class `footer-el`\n   *\n   * Note that there might be multiple footer elements on a page (e.g. horizontal columns)\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<div class=\"footer-el\">${content}</div>`;\n  }\n\n  str(): string {\n    return `---- Footer text ----\\n${this.text}\\n---------------------`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a page header element\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutHeader`.\n */\nexport class LayoutHeaderGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutHeaderBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutHeaderBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutHeaderBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a Footer element is a <div> of class `footer-el`\n   *\n   * Note that there might be multiple footer elements on a page (e.g. horizontal columns)\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<div class=\"header-el\">${content}</div>`;\n  }\n\n  str(): string {\n    return `---- Header text ----\\n${this.text}\\n---------------------`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a key-value (form data) pair\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutKeyValue`.\n */\nexport class LayoutKeyValueGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutKeyValueBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutKeyValueBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutKeyValueBlock, TPage>\n    >\n{\n  /**\n   * Utility function to list all content (word, signature, etc) block IDs within a K-V Form Field\n   *\n   * Used to support mapping between Layout and K-V Forms objects e.g. in\n   * `_mapPageContentToFormFields()`\n   *\n   * @param field Parsed TRP.js `Field` object from forms analysis\n   * @returns Snapshot list of all the content (word, etc) block IDs in the Field's Key and Value\n   */\n  protected _listContentIdsInFormField<TPage extends IBlockManager>(field: FieldGeneric<TPage>): string[] {\n    const keyContentIds = field.key.listWords().map((word) => word.id);\n    const fieldVal = field.value;\n    return fieldVal ? keyContentIds.concat(fieldVal.listContent().map((item) => item.id)) : keyContentIds;\n  }\n\n  /**\n   * Utility function to generate a (point-in-time) mapping from field K/V content to field objects\n   *\n   * Since Textract JSON only stores one-way mappings from Key->WORD, Key->Value, and\n   * Value->(WORD/SELECTION_ELEMENT/SIGNATURE), and from LAYOUT_KEY_VALUE->LINE->WORD, we need to\n   * calculate some inverse mappings to enable searches to link from Layout to form Fields.\n   *\n   * TODO: If this has utility elsewhere, move it to FormGeneric and consider caching?\n   */\n  protected _mapPageContentToFormFields(): { [blockId: string]: FieldGeneric<TPage> } {\n    const contentToFields: { [blockId: string]: FieldGeneric<TPage> } = {};\n    // A little type cast to extend from formally-provable IBlockManager to practical TPage:\n    (this.parentPage.form.listFields() as FieldGeneric<TPage>[]).forEach((field) => {\n      this._listContentIdsInFormField(field).forEach((id) => {\n        contentToFields[id] = field;\n      });\n    });\n    return contentToFields;\n  }\n\n  /**\n   * Iterate through the Form Fields spanned by this LayoutKeyValue item\n   *\n   * Note this is a non-trivial lookup that requires searching through associated WORD blocks, due\n   * to the structure of Textract responses. If Textract FORMS analysis was not also enabled in the\n   * API, this will return an empty list [].\n   *\n   * @example\n   * for (const field of form.iterFields()) {\n   *   console.log(field?.key.text);\n   * }\n   * @example\n   * const fields = [...form.iterFields()];\n   */\n  iterFields(): Iterable<FieldGeneric<TPage>> {\n    return getIterable(() => this.listFields());\n  }\n\n  /**\n   * List the Form Fields spanned by this LayoutKeyValue item\n   *\n   * Note this is a non-trivial lookup that requires searching through associated WORD blocks, due\n   * to the structure of Textract responses. If Textract FORMS analysis was not also enabled in the\n   * API, this will return an empty list [].\n   */\n  listFields(): FieldGeneric<TPage>[] {\n    const wordsToFields = this._mapPageContentToFormFields();\n    const consumedIds: { [id: string]: true } = {};\n    const result: FieldGeneric<TPage>[] = [];\n    for (const line of this.iterContent()) {\n      for (const word of line.iterWords()) {\n        if (word.id in consumedIds) continue;\n        const field = wordsToFields[word.id];\n        if (field) {\n          result.push(field);\n          this._listContentIdsInFormField(field).forEach((id) => {\n            consumedIds[id] = true;\n          });\n        }\n      }\n    }\n    return result;\n  }\n\n  /**\n   * The semantic HTML representation for a key-value element is a <div> of class \"key-value\"\n   *\n   * Note this attempts to reconcile the contained content to Forms analysis' Key-Value pairs for\n   * optimally semantic HTML, *if* the Forms feature was also enabled - but this is a non-trivial\n   * operation.\n   *\n   * Since there's no guaranteed 1:1 correspondence between Layout K-V regions and detected form\n   * fields, we loop through the plain text (from layout) but insert the semantic HTML for a whole\n   * K-V Form Field at the first overlapping mention.\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const wordsToFields = this._mapPageContentToFormFields();\n    const consumedIds: { [id: string]: true } = {};\n    const lineReprs: string[] = [];\n    for (const line of this.iterContent(opts)) {\n      const wordReprs: string[] = [];\n      for (const word of line.iterWords(opts)) {\n        const wordId = word.id;\n        if (wordId in consumedIds) continue;\n        if (wordId in wordsToFields) {\n          const field = wordsToFields[wordId];\n          wordReprs.push(field.html(opts));\n          this._listContentIdsInFormField(field).forEach((id) => {\n            consumedIds[id] = true;\n          });\n        } else {\n          wordReprs.push(word.html(opts));\n        }\n      }\n      lineReprs.push(wordReprs.join(\" \"));\n    }\n    const lineReprTexts = lineReprs.filter((rep) => rep).join(\"\\n\");\n    const content = lineReprTexts ? `\\n${indent(lineReprTexts)}\\n` : \"\";\n    return `<div class=\"key-value\">${content}</div>`;\n  }\n\n  /**\n   * The human-readable `str()` representation for this element does not do KV Forms reconciliation\n   *\n   * It just returns the Layout object's `text` with some bookends for clarity.\n   */\n  str(): string {\n    return `---- Key-value ----\\n${this.text}\\n-------------------`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a page number annotation\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutPageNumber`.\n */\nexport class LayoutPageNumberGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutPageNumberBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutPageNumberBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutPageNumberBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a page number element is a <div> of class \"page-num\"\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<div class=\"page-num\">${content}</div>`;\n  }\n\n  str(): string {\n    return `---- Page number: ${this.text}`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a section heading / title\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutSectionHeader`.\n */\nexport class LayoutSectionHeaderGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutSectionHeaderBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutSectionHeaderBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutSectionHeaderBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a section heading is a <h2> tag\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<h2>${content}</h2>`;\n  }\n\n  str(): string {\n    return `\\n${this.text}\\n${\"-\".repeat(this.text.length)}\\n`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a table\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutTable`.\n */\nexport class LayoutTableGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutTableBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutTableBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutTableBlock, TPage>\n    >\n{\n  /**\n   * Utility function to list all content (word, signature, etc) block IDs within a parsed Table object\n   *\n   * Used to support mapping between Layout and Tables analysis objects e.g. in\n   * `_mapPageContentToTables()`\n   *\n   * @param field Parsed TRP.js `Field` object from forms analysis\n   * @returns Snapshot list of all the content (word, etc) block IDs in the Field's Key and Value\n   */\n  protected _listContentIdsInTable<TPage extends IBlockManager>(table: TableGeneric<TPage>): string[] {\n    // Need to consider header and footer sections as well as actual cells\n    const cellContentIds = table\n      .listRows()\n      .map((row) =>\n        row\n          .listCells()\n          .map((cell) =>\n            cell\n              .listContent()\n              .map((item) => item.id)\n              .flat(),\n          )\n          .flat(),\n      )\n      .flat();\n    const footerIds = table\n      .listFooters()\n      .map((foot) =>\n        foot\n          .listWords()\n          .map((word) => word.id)\n          .flat(),\n      )\n      .flat();\n    const titleIds = table\n      .listTitles()\n      .map((title) =>\n        title\n          .listWords()\n          .map((word) => word.id)\n          .flat(),\n      )\n      .flat();\n    return titleIds.concat(cellContentIds, footerIds);\n  }\n\n  /**\n   * Utility function to generate a (point-in-time) mapping from table content to Table objects\n   *\n   * Since Textract JSON only stores one-way mappings from CELL/MERGED_CELL->WORD, TABLE->CELL etc,\n   * we need to calculate some inverse mappings to enable searches to link from Layout to table\n   * objects.\n   *\n   * TODO: If this has utility elsewhere, move it to TableGeneric and consider caching?\n   */\n  protected _mapPageContentToTables(): { [blockId: string]: TableGeneric<TPage> } {\n    const contentToTables: { [blockId: string]: TableGeneric<TPage> } = {};\n    // A little type cast to extend from formally-provable IBlockManager to practical TPage:\n    (this.parentPage.listTables() as TableGeneric<TPage>[]).forEach((table) => {\n      this._listContentIdsInTable(table).forEach((id) => {\n        contentToTables[id] = table;\n      });\n    });\n    return contentToTables;\n  }\n\n  /**\n   * Iterate through the Table objects spanned by this LayoutTable item (usually just 1)\n   *\n   * Note this is a non-trivial lookup that requires searching through associated WORD blocks, due\n   * to the structure of Textract responses. If Textract TABLES analysis was not also enabled in\n   * the API, this will return an empty list [].\n   *\n   * @example\n   * for (const field of form.iterFields()) {\n   *   console.log(field?.key.text);\n   * }\n   * @example\n   * const fields = [...form.iterFields()];\n   */\n  iterTables(): Iterable<TableGeneric<TPage>> {\n    return getIterable(() => this.listTables());\n  }\n\n  /**\n   * List the Table objects spanned by this LayoutTable item (usually just 1)\n   *\n   * Note this is a non-trivial lookup that requires searching through associated WORD blocks, due\n   * to the structure of Textract responses. If Textract TABLES analysis was not also enabled in\n   * the API, this will return an empty list [].\n   */\n  listTables(): TableGeneric<TPage>[] {\n    const wordsToTables = this._mapPageContentToTables();\n    const consumedIds: { [id: string]: true } = {};\n    const result: TableGeneric<TPage>[] = [];\n    for (const line of this.iterContent()) {\n      for (const word of line.iterWords()) {\n        if (word.id in consumedIds) continue;\n        const table = wordsToTables[word.id];\n        if (table) {\n          result.push(table);\n          this._listContentIdsInTable(table).forEach((id) => {\n            consumedIds[id] = true;\n          });\n        }\n      }\n    }\n    return result;\n  }\n\n  /**\n   * The outer semantic HTML representation for a key-value element is a <div class=\"table\">\n   *\n   * IF Textract TABLES analysis was also run on the document, this will attempt to reconcile the\n   * tagged Layout content to extracted `Table`(s) - but this is a non-trivial operation.\n   *\n   * Since there's no guaranteed 1:1 correspondence between the Layout Table regions and detected\n   * Table objects, populate the div content by looping through the plain text (from layout) but\n   * inserting the semantic HTML for each whole `<table>` at the first overlapping mention.\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const wordsToTables = this._mapPageContentToTables();\n    const consumedIds: { [id: string]: true } = {};\n    const lineReprs: string[] = [];\n    for (const line of this.iterContent(opts)) {\n      const wordReprs: string[] = [];\n      for (const word of line.iterWords(opts)) {\n        const wordId = word.id;\n        if (wordId in consumedIds) continue;\n        if (wordId in wordsToTables) {\n          const table = wordsToTables[wordId];\n          wordReprs.push(table.html(opts));\n          this._listContentIdsInTable(table).forEach((id) => {\n            consumedIds[id] = true;\n          });\n        } else {\n          wordReprs.push(word.html(opts));\n        }\n      }\n      lineReprs.push(wordReprs.join(\" \"));\n    }\n    const lineReprsText = lineReprs.filter((rep) => rep).join(\"\\n\");\n    const content = lineReprsText ? `\\n${indent(lineReprsText)}\\n` : \"\";\n    return `<div class=\"table\">${content}</div>`;\n  }\n\n  /**\n   * The human-readable `str()` representation for this element does not do Tables reconciliation\n   *\n   * It just returns the Layout object's `text` with some bookends for clarity.\n   */\n  str(): string {\n    return [\"|==== Table (structure unknown) ====|\", this.text, \"|==================================|\"].join(\n      \"\\n\",\n    );\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a paragraph of text\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutText`.\n */\nexport class LayoutTextGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutTextBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutTextBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutTextBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a text element is a <p> paragraph tag\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<p>${content}</p>`;\n  }\n\n  /**\n   * The human-readable string representation for a text element is just the text itself.\n   */\n  str(): string {\n    return this.text;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a top-level document title\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutTitle`.\n */\nexport class LayoutTitleGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends LayoutLineContainerItem<ApiLayoutTitleBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutTitleBlock,\n      LineGeneric<IBlockManager>,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutTitleBlock, TPage>\n    >\n{\n  /**\n   * The semantic HTML representation for a top-level title is a <h1> tag\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rawText = this.getText(opts);\n    const content = rawText ? `\\n${indent(escapeHtml(rawText))}\\n` : \"\";\n    return `<h1>${content}</h1>`;\n  }\n\n  str(): string {\n    return `\\n\\n${this.text}\\n${\"=\".repeat(this.text.length)}\\n`;\n  }\n}\n\n/**\n * Generic base class for a layout entity describing a bulleted or numbered list\n *\n * If you're consuming this library, you probably just want to use `document.ts/LayoutList`.\n */\nexport class LayoutListGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  extends buildWithContent<\n    LayoutTextGeneric<\n      IApiBlockWrapper<ApiBlock> &\n        IBlockManager &\n        IWithForm<IBlockManager> &\n        IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n        IWithTables<IBlockManager>\n    >\n  >({ contentTypes: [ApiBlockType.LayoutText] })(LayoutItemBaseGeneric)<ApiLayoutListBlock, TPage>\n  implements\n    ILayoutItem<\n      ApiLayoutListBlock,\n      LayoutTextGeneric<\n        IApiBlockWrapper<ApiBlock> &\n          IBlockManager &\n          IWithForm<IBlockManager> &\n          IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n          IWithTables<IBlockManager>\n      >,\n      TPage,\n      LayoutItemBaseGeneric<ApiLayoutListBlock, TPage>\n    >\n{\n  /**\n   * Render the list as HTML\n   *\n   * TODO: Support ordered/numbered lists with <ol>, if we can infer when to use it?\n   * TODO: innerHTML option on LayoutText to get rid of the <p> tags maybe?\n   *\n   * @param opts Optional configuration for filtering rendering to certain content types\n   */\n  html(opts?: IBlockTypeFilterOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const itemHtmls = this.listContent(opts)\n      .map((item) => item.html(opts))\n      .filter((s) => s)\n      .map((s) => `<li>${s}</li>`);\n    const content = itemHtmls.length ? `\\n${indent(itemHtmls.join(\"\\n\"))}\\n` : \"\";\n    return `<ul>${content}</ul>`;\n  }\n  /**\n   * Iterate through the text `Line`s in this object\n   *\n   * @example\n   * for (const item of layList.iterTextLines()) {\n   *   console.log(item.text);\n   * }\n   * @example\n   * [...layList.iterTextLines()].forEach(\n   *   (line) => console.log(line.text)\n   * );\n   */\n  iterTextLines(): Iterable<LineGeneric<TPage>> {\n    // For this base, the 'content' is typed as text Lines only anyway:\n    return getIterable(() => this.listTextLines());\n  }\n  /**\n   * List the text `Line` items in this object\n   */\n  listTextLines(): Array<LineGeneric<TPage>> {\n    /**\n     * Recursively listContent() to find items that are text LINEs or have nested content lines\n     *\n     * Flexible recursion should not actually be necessary because the hierarchy looks fixed\n     * LAYOUT_LIST->LAYOUT_TEXT->LINE: But we do it this way to try and flexibly support updates.\n     */\n    function extractLinesRecursive(\n      items: Array<\n        IApiBlockWrapper<ApiBlock> & IRenderable & IWithContent<IApiBlockWrapper<ApiBlock> & IRenderable>\n      >,\n    ): LineGeneric<TPage>[] {\n      return items\n        .map((item) => {\n          if (item.blockType === ApiBlockType.Line) return [item as unknown as LineGeneric<TPage>];\n          else if (typeof item.listContent !== \"undefined\")\n            return extractLinesRecursive(\n              // Scary typing basically reduces to: \"Whatever was in the function signature, but\n              // the content it contains is also that type\"\n              (\n                item as unknown as IApiBlockWrapper<ApiBlock> &\n                  IRenderable &\n                  IWithContent<\n                    IApiBlockWrapper<ApiBlock> &\n                      IRenderable &\n                      IWithContent<IApiBlockWrapper<ApiBlock> & IRenderable>\n                  >\n              ).listContent(),\n            );\n          else return [];\n        })\n        .flat();\n    }\n\n    return extractLinesRecursive(this.listContent());\n  }\n  /**\n   * The human-readable `str()` representation of a layout list is same as the (bulleted) `.text`\n   */\n  str(): string {\n    return this.text;\n  }\n\n  /**\n   * Number of text `Line`s in this object\n   */\n  get nTextLines(): number {\n    return this.listTextLines().length;\n  }\n  /**\n   * Text for LayoutList is rendered with '-' bullet points at 2/4-space indentation\n   */\n  override get text(): string {\n    return this.listContent()\n      .map((item) => `  - ${indent(item.text, { character: \" \", count: 4, skipFirstLine: true })}`)\n      .join(\"\\n\");\n  }\n}\n\n/**\n * TypeScript type collecting all possible TRP parsed objects corresponding to layout elements\n */\nexport type LayoutItemGeneric<\n  TPage extends IApiBlockWrapper<ApiBlock> &\n    IBlockManager &\n    IWithForm<IBlockManager> &\n    IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n    IWithTables<IBlockManager>,\n> =\n  | LayoutFigureGeneric<TPage>\n  | LayoutFooterGeneric<TPage>\n  | LayoutHeaderGeneric<TPage>\n  | LayoutKeyValueGeneric<TPage>\n  | LayoutListGeneric<TPage>\n  | LayoutPageNumberGeneric<TPage>\n  | LayoutSectionHeaderGeneric<TPage>\n  | LayoutTableGeneric<TPage>\n  | LayoutTextGeneric<TPage>\n  | LayoutTitleGeneric<TPage>;\n\n/**\n * Generic base class for a page-level Layout analysis container\n *\n * If you're consuming this library, you probably just want to use `document.ts/Layout`.\n */\nexport class LayoutGeneric<\n    TPage extends IApiBlockWrapper<ApiBlock> &\n      IBlockManager &\n      IWithForm<IBlockManager> &\n      IWithRelatedItems<IApiBlockWrapper<ApiBlock>> &\n      IWithTables<IBlockManager>,\n  >\n  implements IRenderable, IWithParentPage<TPage>\n{\n  _parentPage: TPage;\n\n  constructor(parentPage: TPage) {\n    this._parentPage = parentPage;\n\n    for (const block of _implIterRelatedBlocksByRelType(\n      ApiRelationshipType.Child,\n      { includeBlockTypes: LAYOUT_BLOCK_TYPES, onMissingBlockId: \"error\" },\n      parentPage,\n      parentPage,\n    )) {\n      // The PageHostedBlockWrappers will automatically self-register with the manager (page):\n      switch (block.BlockType) {\n        case ApiBlockType.LayoutFigure:\n          new LayoutFigureGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutHeader:\n          new LayoutHeaderGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutFooter:\n          new LayoutFooterGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutKeyValue:\n          new LayoutKeyValueGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutList:\n          new LayoutListGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutPageNumber:\n          new LayoutPageNumberGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutSectionHeader:\n          new LayoutSectionHeaderGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutTable:\n          new LayoutTableGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutText:\n          new LayoutTextGeneric(block, this);\n          break;\n        case ApiBlockType.LayoutTitle:\n          new LayoutTitleGeneric(block, this);\n          break;\n      }\n    }\n  }\n\n  /**\n   * *Total* number of layout elements detected on the page, including nested items\n   *\n   * @deprecated Migrate to `.nItemsTotal` for clarity.\n   */\n  get nItems(): number {\n    return this.nItemsTotal;\n  }\n  /**\n   * Number of *top-level* layout elements detected on the page\n   *\n   * Some LAYOUT_* blocks may point to others as children, and this count will only include\n   * top-level items.\n   */\n  get nItemsDirect(): number {\n    return this.listItems({ deep: false }).length;\n  }\n  /**\n   * *Total* number of layout elements detected on the page, including nested items\n   *\n   * Some LAYOUT_* blocks may point to others as children, and this count will include all layout\n   * items on the page, not just those at the top level.\n   */\n  get nItemsTotal(): number {\n    return this.listItems({ deep: true }).length;\n  }\n  /**\n   * Parsed TRP.js page to which this Layout corresponds\n   */\n  get parentPage(): TPage {\n    return this._parentPage;\n  }\n  /**\n   * Collects the plain text content of all layout items, connected by \\n\\n\n   */\n  get text(): string {\n    return this.listItems({ deep: false })\n      .map((item) => item.text)\n      .join(\"\\n\\n\");\n  }\n\n  /**\n   * Concatenate the HTML representations of items in the layout\n   *\n   * Since this class is just a collection and not an API object wrapper, we don't wrap the content\n   * HTML in anything: Leave that up to `Page`, `Document`, etc.\n   */\n  html(opts?: IRenderOpts): string {\n    return this.listItems({ deep: false, ...opts })\n      .map((item) => item.html(opts))\n      .filter((s) => s)\n      .join(\"\\n\");\n  }\n\n  /**\n   * Iterate through (just the top level, or all) the Items in the Layout.\n   */\n  iterItems({\n    deep = true,\n    includeBlockTypes = null,\n    onUnexpectedBlockType = null,\n    skipBlockTypes = null,\n  }: IBlockTypeFilterOpts & INestedListOpts = {}): Iterable<LayoutItemGeneric<TPage>> {\n    return getIterable(() =>\n      this.listItems({ deep, includeBlockTypes, onUnexpectedBlockType, skipBlockTypes }),\n    );\n  }\n\n  /**\n   * List (just the top level, or all) the Items in the Layout.\n   */\n  listItems({\n    deep = true,\n    includeBlockTypes = null,\n    onUnexpectedBlockType = null,\n    skipBlockTypes = null,\n  }: IBlockTypeFilterOpts & INestedListOpts = {}): LayoutItemGeneric<TPage>[] {\n    let normIncludeBlockTypes = includeBlockTypes;\n    if (normIncludeBlockTypes) {\n      normIncludeBlockTypes = normalizeOptionalSet(normIncludeBlockTypes);\n      normIncludeBlockTypes = setIntersection(LAYOUT_BLOCK_TYPES, normIncludeBlockTypes);\n    } else {\n      normIncludeBlockTypes = LAYOUT_BLOCK_TYPES;\n    }\n\n    const visitedIds = new Set<string>();\n    const result: LayoutItemGeneric<TPage>[] = [];\n\n    for (const item of this.parentPage.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: normIncludeBlockTypes,\n      onUnexpectedBlockType,\n      skipBlockTypes, // TODO: Specify base PAGE skipBlockTypes for better warn/error behaviour\n    }) as Iterable<LayoutItemGeneric<TPage>>) {\n      if (visitedIds.has(item.id)) continue;\n      result.push(item);\n      // PAGE children include all LAYOUT_* items, even those listed as children by each other.\n      // Therefore if the user wants `deep`, we can just return the whole _items list... But\n      // otherwise, we need to actively find and filter out the nested children:\n      if (!deep) {\n        item\n          .listLayoutChildren({\n            deep: true,\n            includeBlockTypes,\n            onUnexpectedBlockType,\n            skipBlockTypes,\n          })\n          .forEach((child) => visitedIds.add(child.id));\n      }\n    }\n    return result;\n  }\n\n  /**\n   * The human-readable `str()` representation for a page layout\n   *\n   * This includes contained items' `str()`s, with bookends for clarity\n   */\n  str(): string {\n    const content = this.listItems({ deep: false })\n      .map((item) => item.str())\n      .join(\"\\n\\n\");\n    return [\n      \"\",\n      \"#### BEGIN PAGE LAYOUT #################\",\n      content,\n      \"#### END PAGE LAYOUT   #################\",\n      \"\",\n    ].join(\"\\n\");\n  }\n}\n"
  },
  {
    "path": "src-js/src/query.ts",
    "content": "/**\n * TRP classes for (generic document) query objects\n *\n * See: https://docs.aws.amazon.com/textract/latest/dg/queryresponse.html\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationshipType } from \"./api-models/base\";\nimport { ApiQueryBlock, ApiQueryResultBlock } from \"./api-models/query\";\nimport {\n  argMax,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  getIterable,\n  IBlockManager,\n  indent,\n  IRenderable,\n  IRenderOpts,\n  PageHostedApiBlockWrapper,\n} from \"./base\";\nimport { Geometry } from \"./geometry\";\n\n/**\n * Generic base class for a QueryResult, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/QueryResult`.\n */\nexport class QueryResultGeneric<TPage extends IBlockManager>\n  extends PageHostedApiBlockWrapper<ApiQueryResultBlock, TPage>\n  implements IRenderable\n{\n  _geometry?: Geometry<ApiQueryResultBlock, QueryResultGeneric<TPage>>;\n  _parentQuery: QueryInstanceGeneric<TPage>;\n\n  constructor(block: ApiQueryResultBlock, parentQuery: QueryInstanceGeneric<TPage>) {\n    super(block, parentQuery.parentPage);\n    this._geometry = block.Geometry ? new Geometry(block.Geometry, this) : undefined;\n    this._parentQuery = parentQuery;\n  }\n\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  /**\n   * geometry may be undefined for interpreted (rather than literal) query answers.\n   */\n  get geometry(): undefined | Geometry<ApiQueryResultBlock, QueryResultGeneric<TPage>> {\n    return this._geometry;\n  }\n  get parentQuery(): QueryInstanceGeneric<TPage> {\n    return this._parentQuery;\n  }\n  get text(): string {\n    return this._dict.Text;\n  }\n\n  /**\n   * The semantic `html()` representation of a query result is just its (HTML-escaped) text\n   */\n  html(opts?: IRenderOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    return escapeHtml(this.text);\n  }\n\n  str(): string {\n    return this.text;\n  }\n}\n\n/**\n * Generic base class for a QueryInstance, as the parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/QueryResult`.\n */\nexport class QueryInstanceGeneric<TPage extends IBlockManager>\n  extends PageHostedApiBlockWrapper<ApiQueryBlock, TPage>\n  implements IRenderable\n{\n  constructor(block: ApiQueryBlock, parentPage: TPage) {\n    super(block, parentPage);\n    this._parentPage = parentPage;\n\n    // Parsing of QUERY_RESULT objects is handled by this QueryInstanceGeneric:\n    this.relatedBlockIdsByRelType(ApiRelationshipType.Answer).forEach((id) => {\n      const ansBlock = parentPage.getBlockById(id);\n      if (!ansBlock) {\n        console.warn(\n          `Answer block ${id} referenced by QUERY block ${block.Id} is missing and will be skipped`,\n        );\n      } else if (ansBlock.BlockType !== ApiBlockType.QueryResult) {\n        console.warn(\n          `Expected block ${id} to be of type ${ApiBlockType.QueryResult} as referenced by QUERY block ${block.Id}, but got type: ${ansBlock.BlockType}`,\n        );\n      } else {\n        // Automatically self-registers with the parent block manager (page):\n        new QueryResultGeneric(ansBlock, this);\n      }\n    });\n  }\n\n  /**\n   * Alias of the query as configured in the original AnalyzeDocument request (if one was set)\n   */\n  get alias(): string | undefined {\n    return this._dict.Query.Alias;\n  }\n  get nResults(): number {\n    return this._listResults().length;\n  }\n\n  /**\n   * Text of the input query (question)\n   */\n  get text(): string {\n    return this._dict.Query.Text;\n  }\n\n  /**\n   * Retrieve the top result by confidence score, if any are available.\n   */\n  get topResult(): QueryResultGeneric<TPage> | undefined {\n    const results = this._listResults();\n    const top = argMax(results.map((r) => r.confidence));\n    if (top.maxIndex < 0) return undefined;\n    return results[top.maxIndex];\n  }\n\n  /**\n   * List this query instance's results, in raw Amazon Textract response order\n   *\n   * Any invalid relationship block IDs will be skipped from the list (no logs)\n   *\n   * TODO: Refactor to use list/iterRelatedItemsByRelType when ready for breaking change\n   *\n   * This refactor will require changing the handling of invalid JSONs (i.e. missing blocks) for\n   * more consistency between different modules of TRP.js.\n   */\n  protected _listResults(): QueryResultGeneric<TPage>[] {\n    return this.relatedBlockIdsByRelType(ApiRelationshipType.Answer)\n      .map((id) => {\n        try {\n          return this.parentPage.getItemByBlockId(id, ApiBlockType.QueryResult) as QueryResultGeneric<TPage>;\n        } catch {\n          return null as unknown as QueryResultGeneric<TPage>;\n        }\n      })\n      .filter((obj) => obj);\n  }\n\n  /**\n   * List this query instance's results, sorted from the most to least confident.\n   */\n  listResultsByConfidence(): QueryResultGeneric<TPage>[] {\n    return this._listResults()\n      .slice()\n      .sort(\n        // Negative -> a sorted before b\n        (a, b) => b.confidence - a.confidence,\n      );\n  }\n\n  /**\n   * The HTML for a `QueryInstance` uses a `<div>` of class \"query\"\n   *\n   * The question itself is presented within `<p>` tags, and then a bulleted list of the answers /\n   * results in order of descending confidence.\n   */\n  html(opts?: IRenderOpts): string {\n    const renderQuery = doesFilterAllowBlockType(opts, ApiBlockType.Query);\n    const renderResults = doesFilterAllowBlockType(opts, ApiBlockType.QueryResult);\n    if (!renderQuery && !renderResults) return \"\";\n    const resultsByConf = renderResults ? this.listResultsByConfidence() : [];\n    const resultsHtml = resultsByConf.map((res) => `<li>${res.html()}</li>`).join(\"\\n\");\n    return [\n      '<div class=\"query\">',\n      renderQuery ? indent(`<p>${escapeHtml(this.text)}</p>`) : \"\",\n      renderResults\n        ? indent(resultsByConf.length ? [\"<ul>\", indent(resultsHtml), \"</ul>\"].join(\"\\n\") : \"<ul></ul>\")\n        : \"\",\n      \"</div>\",\n    ].join(\"\\n\");\n  }\n\n  /**\n   * Generate a human-readable representation of this query instance\n   */\n  str(): string {\n    return `Query\\n==========\\nQuestion: ${this.text}\\nAnswers:\\n - ${this.listResultsByConfidence()\n      .map((r) => r.text)\n      .join(\"\\n - \")}`;\n  }\n}\n\n/**\n * Configuration options for listing/filtering Amazon Textract Queries\n */\nexport interface IFilterQueryOpts {\n  /**\n   * Set `true` to skip queries with no answers (by default, they're included)\n   */\n  skipUnanswered?: boolean;\n}\n\n/**\n * Generic base class for a collection of query instances, as parent Page is not defined here.\n *\n * If you're consuming this library, you probably just want to use `document.ts/QueryInstanceCollection`.\n */\nexport class QueryInstanceCollectionGeneric<TPage extends IBlockManager> implements IRenderable {\n  _queries: QueryInstanceGeneric<TPage>[];\n  _parentPage: TPage;\n\n  constructor(queryBlocks: ApiQueryBlock[], parentPage: TPage) {\n    this._queries = [];\n    this._parentPage = parentPage;\n\n    queryBlocks.forEach((queryBlock) => {\n      this._queries.push(new QueryInstanceGeneric(queryBlock, parentPage));\n    });\n  }\n\n  get nQueries(): number {\n    return this._queries.length;\n  }\n  get parentPage(): TPage {\n    return this._parentPage;\n  }\n\n  /**\n   * Return the text content of all queries and their results, ordered by confidence score\n   */\n  get text(): string {\n    return this._queries\n      .map(\n        (query) =>\n          `${query.text}\\n${query\n            .listResultsByConfidence()\n            .map((r) => r.text)\n            .join(\"\\n\")}`,\n      )\n      .join(\"\\n\\n\");\n  }\n\n  /**\n   * Find a query by exact match of query alias, if one exists\n   * @param alias Alias provided for the query (in the Amazon Textract AnalyzeDocument request)\n   * @returns A matching query instance, or undefined if none is found\n   */\n  getQueryByAlias(alias: string): QueryInstanceGeneric<TPage> | undefined {\n    if (!alias) return;\n    return this._queries.find((q) => q.alias === alias);\n  }\n\n  /**\n   * Find a query by exact match of query text (question), if one exists\n   * @param question Text of the original query (in the Amazon Textract AnalyzeDocument request)\n   * @returns A matching query instance, or undefined if none is found\n   */\n  getQueryByQuestion(question: string): QueryInstanceGeneric<TPage> | undefined {\n    if (!question) return;\n    return this._queries.find((q) => q.text === question);\n  }\n\n  /**\n   * The `html()` for a QueryCollection lists all queries within a `<div>` of class \"queries\"\n   */\n  html(opts?: IRenderOpts): string {\n    const renderQuery = doesFilterAllowBlockType(opts, ApiBlockType.Query);\n    const renderResults = doesFilterAllowBlockType(opts, ApiBlockType.QueryResult);\n    if (!renderQuery && !renderResults) return \"\";\n    const queryHtmls = this._queries\n      .map((q) => q.html(opts))\n      .filter((s) => s)\n      .join(\"\\n\");\n    const content = queryHtmls ? `\\n${indent(queryHtmls)}\\n` : \"\";\n    return `<div class=\"queries\">${content}</div>`;\n  }\n\n  /**\n   * Iterate through the Queries in the collection.\n   * @param opts Filtering options to control which queries are included\n   * @example\n   * for (const query of q.iterQueries()) {\n   *   console.log(query.text);\n   * }\n   * @example\n   * const queries = [...q.iterQueries()];\n   */\n  iterQueries(opts: IFilterQueryOpts = {}): Iterable<QueryInstanceGeneric<TPage>> {\n    return getIterable(() => this.listQueries(opts));\n  }\n\n  /**\n   * List the Queries in the collection.\n   * @param opts Filtering options to control which queries are included\n   */\n  listQueries(opts: IFilterQueryOpts = {}): QueryInstanceGeneric<TPage>[] {\n    return opts.skipUnanswered ? this._queries.filter((q) => q.nResults > 0) : this._queries.slice();\n  }\n\n  /**\n   * List the Queries in the collection with alias text containing (case-insensitive) `alias`\n   * @param alias The text to search for in query aliases\n   * @param opts Filtering options to control which queries are included in the search\n   */\n  searchQueriesByAlias(alias: string, opts: IFilterQueryOpts = {}): QueryInstanceGeneric<TPage>[] {\n    if (!alias) return [];\n    const searchKey = alias.toLowerCase();\n    return this.listQueries(opts).filter((q) => q.alias && q.alias.toLowerCase().indexOf(searchKey) >= 0);\n  }\n\n  /**\n   * List the Queries in the collection with question text containing (case-insensitive) `question`\n   * @param question The text to search for in query text\n   * @param opts Filtering options to control which queries are included in the search\n   */\n  searchQueriesByQuestion(question: string, opts: IFilterQueryOpts = {}): QueryInstanceGeneric<TPage>[] {\n    if (!question) return [];\n    const searchKey = question.toLowerCase();\n    return this.listQueries(opts).filter((q) => q.text.toLowerCase().indexOf(searchKey) >= 0);\n  }\n\n  /**\n   * Generate a human-readable representation of the query collection\n   */\n  str(): string {\n    return this._queries.map((q) => q.str()).join(\"\\n\");\n  }\n}\n"
  },
  {
    "path": "src-js/src/table.ts",
    "content": "/**\n * TRP classes for (generic document) table objects\n */\n\n// Local Dependencies:\nimport { ApiBlockType, ApiRelationship, ApiRelationshipType } from \"./api-models/base\";\nimport { ApiBlock } from \"./api-models/document\";\nimport {\n  ApiCellBlock,\n  ApiMergedCellBlock,\n  ApiTableBlock,\n  ApiTableCellEntityType,\n  ApiTableEntityType,\n  ApiTableFooterBlock,\n  ApiTableTitleBlock,\n} from \"./api-models/table\";\nimport {\n  aggregate,\n  AggregationMethod,\n  Constructor,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  getIterable,\n  IBlockManager,\n  IBlockTypeFilterOpts,\n  IHostedApiBlockWrapper,\n  indent,\n  IRenderable,\n  IRenderOpts,\n  IWithParentPage,\n  IWithText,\n  PageHostedApiBlockWrapper,\n} from \"./base\";\nimport { buildWithContent, IWithContent, SelectionElement, Signature, WithWords, Word } from \"./content\";\nimport { Geometry } from \"./geometry\";\n\n/**\n * Generic base class for a table cell, which may be merged or not\n *\n * (Because mixins can't implement constructor logic)\n */\nclass CellBaseGeneric<TBlock extends ApiCellBlock | ApiMergedCellBlock, TPage extends IBlockManager>\n  extends PageHostedApiBlockWrapper<TBlock, TPage>\n  implements IHostedApiBlockWrapper<TBlock, TPage>\n{\n  _geometry: Geometry<TBlock, CellBaseGeneric<TBlock, TPage>>;\n  _parentTable: TableGeneric<TPage>;\n\n  constructor(block: TBlock, parentTable: TableGeneric<TPage>) {\n    super(block, parentTable.parentPage);\n    this._geometry = new Geometry(block.Geometry, this);\n    this._parentTable = parentTable;\n  }\n\n  /**\n   * Position of the cell on the input image / page\n   */\n  get geometry(): Geometry<TBlock, CellBaseGeneric<TBlock, TPage>> {\n    return this._geometry;\n  }\n  /**\n   * Parsed `Table` to which this cell belongs\n   */\n  get parentTable(): TableGeneric<TPage> {\n    return this._parentTable;\n  }\n}\n\n/**\n * Properties that a table cell should implement regardless whether it's merged or classic\n */\nexport interface ICellBaseProps {\n  /**\n   * 1-based index for which column this cell starts at in the table\n   */\n  get columnIndex(): number;\n  /**\n   * How many columns of the table this cell spans (if merged - otherwise always =1)\n   */\n  get columnSpan(): number;\n  /**\n   * Confidence score of the table cell structure detection\n   *\n   * This score reflects the confidence of the model detecting the table cell structure itself. For\n   * the text OCR confidence, see the `.getOcrConfidence()` method instead.\n   */\n  get confidence(): number;\n  set confidence(newVal: number);\n  /**\n   * 1-based index for which row this cell starts at in the table\n   */\n  get rowIndex(): number;\n  /**\n   * How many rows of the table this cell spans (if merged - otherwise always =1)\n   */\n  get rowSpan(): number;\n  /**\n   * Aggregate OCR confidence score of the text (and selection elements) in this cell\n   *\n   * This score reflects the aggregated OCR confidence of all the text content detected in the\n   * cell. For the model's confidence on the table structure itself, see `.confidence`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n   * @returns Aggregated confidence, or null if this cell contains no content/text\n   */\n  getOcrConfidence(aggMethod?: AggregationMethod): number | null;\n  /**\n   * Check if this cell is tagged with any of the given EntityType(s) e.g. COLUMN_HEADER, etc.\n   *\n   * For more information on table cell entity types returnable by Amazon Textract, see:\n   * https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n   *\n   * @param entityType The type to check for, or an array of multiple types to allow.\n   * @returns true if the EntityType is set, null if block EntityTypes is undefined, false otherwise.\n   */\n  hasEntityTypes(entityType: ApiTableCellEntityType | ApiTableCellEntityType[]): boolean | null;\n}\n\n/**\n * Mixin to add basic table cell properties to a parent class\n */\nfunction WithCellBaseProps<\n  TBlock extends ApiCellBlock | ApiMergedCellBlock,\n  TPage extends IBlockManager,\n  T extends Constructor<\n    IHostedApiBlockWrapper<TBlock, TPage> &\n      IWithContent<SelectionElement | Signature | Word> &\n      IWithParentPage<TPage> &\n      IWithText\n  >,\n>(SuperClass: T) {\n  return class extends SuperClass implements ICellBaseProps, IRenderable {\n    get columnIndex(): number {\n      return this.dict.ColumnIndex;\n    }\n    get columnSpan(): number {\n      return this.dict.ColumnSpan || 1;\n    }\n\n    /**\n     * 0-100 based confidence score of the table cell structure detection\n     *\n     * This score reflects the confidence of the model detecting the table cell structure itself. For\n     * the text OCR confidence, see the `.getOcrConfidence()` method instead.\n     */\n    get confidence(): number {\n      return this.dict.Confidence;\n    }\n    set confidence(newVal: number) {\n      this.dict.Confidence = newVal;\n    }\n    get rowIndex(): number {\n      return this.dict.RowIndex;\n    }\n    get rowSpan(): number {\n      return this.dict.RowSpan || 1;\n    }\n\n    /**\n     * Aggregate OCR confidence score of the text (and selection elements) in this cell\n     *\n     * This score reflects the aggregated OCR confidence of all the text content detected in the\n     * cell. For the model's confidence on the table structure itself, see `.confidence`.\n     *\n     * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n     * @returns Aggregated confidence, or null if this cell contains no content/text\n     */\n    getOcrConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n      return aggregate(\n        this.listContent().map((c) => c.confidence),\n        aggMethod,\n      );\n    }\n\n    /**\n     * Check if this cell is tagged with any of the given EntityType(s) e.g. COLUMN_HEADER, etc.\n     *\n     * For more information on table cell entity types returnable by Amazon Textract, see:\n     * https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\n     *\n     * @param entityType The type to check for, or an array of multiple types to allow.\n     * @returns true if the EntityType is set, null if block EntityTypes is undefined, false otherwise.\n     */\n    hasEntityTypes(entityType: ApiTableCellEntityType | ApiTableCellEntityType[]): boolean | null {\n      if (!this.dict.EntityTypes) return null;\n      if (Array.isArray(entityType)) {\n        return entityType.some(\n          // (Safe type cast because the block above has already returned null if Entitytypes not set)\n          (eType) => (this.dict.EntityTypes as ApiTableCellEntityType[]).indexOf(eType) >= 0,\n        );\n      }\n      return this.dict.EntityTypes.indexOf(entityType) >= 0;\n    }\n\n    /**\n     * Get semantic HTML of the cell as a `<th>` (if header/title EntityType) or `<td>` element\n     */\n    html(opts?: IRenderOpts): string {\n      if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n      const tagName = this.hasEntityTypes([\n        ApiTableCellEntityType.ColumnHeader,\n        ApiTableCellEntityType.SectionTitle,\n        ApiTableCellEntityType.Title,\n      ])\n        ? \"th\"\n        : \"td\";\n      return indent(\n        [\n          \"<\",\n          tagName,\n          this.columnSpan > 1 ? ` colspan=\"${this.columnSpan}\"` : \"\",\n          this.rowSpan > 1 ? ` rowspan=\"${this.rowSpan}\"` : \"\",\n          \">\",\n          escapeHtml(this.getText(opts)),\n          `</${tagName}>`,\n        ].join(\"\"),\n        { skipFirstLine: true },\n      );\n    }\n\n    /**\n     * The basic human-readable `str()` representation for a table cell is just the cell's text.\n     */\n    str(): string {\n      return this.text;\n    }\n  };\n}\n\n/**\n * Generic base class for a non-merged table cell (or sub-cell of a merged cell)\n *\n * If you're consuming this library, you probably just want to use `document.ts/Cell`.\n */\nexport class CellGeneric<TPage extends IBlockManager>\n  extends WithCellBaseProps(buildWithContent<SelectionElement | Signature | Word>()(CellBaseGeneric))<\n    ApiCellBlock,\n    TPage\n  >\n  implements IWithContent<SelectionElement | Signature | Word>\n{\n  constructor(block: ApiCellBlock, parentTable: TableGeneric<TPage>) {\n    super(block, parentTable);\n    this._geometry = new Geometry(block.Geometry, this);\n    this.childBlockIds.forEach((cid) => {\n      if (!this.parentPage.getBlockById(cid)) {\n        console.warn(`Document missing child block ${cid} referenced by table cell ${this.id}`);\n      }\n    });\n  }\n}\n\n/**\n * Generic base class for a merged table cell (Spanning more than one row or column of the table)\n *\n * If you're consuming this library, you probably just want to use `document.ts/MergedCell`.\n */\nexport class MergedCellGeneric<TPage extends IBlockManager> extends WithCellBaseProps(\n  buildWithContent<SelectionElement | Signature | Word>()(CellBaseGeneric),\n)<ApiMergedCellBlock, TPage> {\n  constructor(block: ApiMergedCellBlock, parentTable: TableGeneric<TPage>) {\n    super(block, parentTable);\n    this._geometry = new Geometry(block.Geometry, this);\n  }\n\n  /**\n   * Number of underlying (un-merged) sub-cells spanned by this merged cell\n   */\n  get nSubCells(): number {\n    return this.listSubCells().length;\n  }\n\n  /**\n   * Fetch a list of the underlying (un-merged) sub-`Cell`s spanned by this merged cell\n   *\n   * The returned list is a shallow-copied snapshot\n   */\n  listSubCells(): CellGeneric<TPage>[] {\n    return this.childBlockIds.map((cid) => this.parentTable._getSplitCellByBlockId(cid));\n  }\n\n  override iterContent(opts: IBlockTypeFilterOpts = {}): Iterable<SelectionElement | Signature | Word> {\n    // iterContent needs to traverse each child CELL in turn, instead of directly scannning current\n    const getIterator = (): Iterator<SelectionElement | Signature | Word> => {\n      const cells = this.listSubCells();\n      const tryListCellContents = (ixCell: number) =>\n        cells.length > ixCell ? cells[ixCell].listContent(opts) : [];\n      let ixCurrCell = 0;\n      let cellContents = tryListCellContents(ixCurrCell);\n      let ixCurrItem = -1;\n      return {\n        next: (): IteratorResult<SelectionElement | Signature | Word> => {\n          ++ixCurrItem;\n          while (ixCurrItem >= cellContents.length) {\n            ++ixCurrCell;\n            ixCurrItem = 0;\n            if (ixCurrCell >= cells.length) return { done: true, value: undefined };\n            cellContents = tryListCellContents(ixCurrCell);\n          }\n          return { done: false, value: cellContents[ixCurrItem] };\n        },\n      };\n    };\n    return {\n      [Symbol.iterator]: getIterator,\n    };\n  }\n\n  /**\n   * List the content items in this object\n   *\n   * Concatenates content across all sub-cells\n   */\n  override listContent(opts: IBlockTypeFilterOpts = {}): Array<SelectionElement | Signature | Word> {\n    // listContent needs to traverse each child CELL in turn, instead of directly scannning current\n    return ([] as Array<SelectionElement | Signature | Word>).concat(\n      ...this.listSubCells().map((c) => c.listContent(opts)),\n    );\n  }\n\n  /**\n   * Iterate through the sub-cells of this merged cell\n   * @example\n   * for (const subCell of merged.iterCells()) {\n   *   console.log(subCell.str());\n   * }\n   * @example\n   * const subCells = [...merged.iterCells()];\n   */\n  iterSubCells(): Iterable<CellGeneric<TPage>> {\n    return getIterable(() => this.listSubCells());\n  }\n}\n\n/**\n * Generic base class for a table row\n *\n * If you're consuming this library, you probably just want to use `document.ts/Row`.\n */\nexport class RowGeneric<TPage extends IBlockManager> {\n  _cells: Array<CellGeneric<TPage> | MergedCellGeneric<TPage>>;\n  _parentTable: TableGeneric<TPage>;\n\n  constructor(\n    cells: Array<CellGeneric<TPage> | MergedCellGeneric<TPage>> = [],\n    parentTable: TableGeneric<TPage>,\n  ) {\n    this._cells = cells;\n    this._parentTable = parentTable;\n  }\n\n  /**\n   * Number of cells in this table row\n   */\n  get nCells(): number {\n    return this._cells.length;\n  }\n  /**\n   * Parsed `Table` to which this row belongs\n   */\n  get parentTable(): TableGeneric<TPage> {\n    return this._parentTable;\n  }\n  /**\n   * Tab-separated text from each cell in this row\n   */\n  get text(): string {\n    return this._cells.map((cell) => cell.text).join(\"\\t\");\n  }\n\n  /**\n   * Aggregate table structure confidence score of the cells in this row\n   *\n   * This score reflects the overall confidence of the table cell structure in this row. For the\n   * actual OCR confidence of cell contents, see `.getOcrConfidence()`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual cell confidences together\n   * @returns Aggregated confidence, or null if this row contains no content/text\n   */\n  getConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n    return aggregate(\n      this._cells.map((c) => c.confidence),\n      aggMethod,\n    );\n  }\n\n  /**\n   * Aggregate OCR confidence score of the text (and selection elements) in this row\n   *\n   * This score reflects the aggregated OCR confidence of all the text content detected in this\n   * row's cells. For the model's confidence on the table structure itself, see `.getConfidence()`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n   * @returns Aggregated confidence, or null if this row contains no content/text\n   */\n  getOcrConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n    const contentConfs = ([] as number[]).concat(\n      ...this._cells.map((cell) => cell.listContent().map((content) => content.confidence)),\n    );\n    return aggregate(contentConfs, aggMethod);\n  }\n\n  /**\n   * Iterate through the cells in this row\n   * @example\n   * for (const cell of row.iterCells()) {\n   *   console.log(cell.text);\n   * }\n   * @example\n   * [...row.iterCells()].forEach(\n   *   (cell) => console.log(cell.text)\n   * );\n   */\n  iterCells(): Iterable<CellGeneric<TPage> | MergedCellGeneric<TPage>> {\n    return getIterable(() => this._cells);\n  }\n\n  /**\n   * Create a snapshot list of the cells in this row\n   */\n  listCells(): Array<CellGeneric<TPage> | MergedCellGeneric<TPage>> {\n    return this._cells.slice();\n  }\n\n  /**\n   * The human-readable `str()` representation of a table row uses `[]` to wrap each cell's content\n   */\n  str(): string {\n    return this._cells.map((cell) => `[${cell.str()}]`).join(\"\");\n  }\n}\n\n/**\n * Configuration options for listing merged & multi-spanned table cells\n */\nexport interface IGetCellOptions {\n  /**\n   * Set `true` to ignore merged cells, returning specific sub-cells. (Default `false`)\n   */\n  ignoreMerged?: boolean;\n}\n\n/**\n * Configuration options for listing table rows\n */\nexport interface IGetRowOptions {\n  /**\n   * Set `true` to ignore merged cells, returning specific sub-cells. (Default `false`)\n   */\n  ignoreMerged?: boolean;\n\n  /**\n   * Set `true` to include rowspan>1 cells in every `Row` they intersect with. (Default `false`)\n   */\n  repeatMultiRowCells?: boolean;\n}\n\n/**\n * Generic base class for a trailing/footer caption on a table\n *\n * If you're consuming this library, you probably just want to use `document.ts/TableFooter`.\n */\nexport class TableFooterGeneric<TPage extends IBlockManager>\n  extends WithWords(PageHostedApiBlockWrapper)<ApiTableFooterBlock, TPage>\n  implements IRenderable\n{\n  /**\n   * 0-100 based confidence of the table structure model (separate from OCR content confidence)\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n\n  /**\n   * Semantic `html()` for a table footer is just the inner (HTML-escaped) text content\n   *\n   * The presence of header and/or footer will affect what element it gets wrapped in when rendering\n   * an overall `Table` object.\n   */\n  html({ includeBlockTypes = null, skipBlockTypes = null }: IRenderOpts = {}): string {\n    // WithWords.getText already filters by our self (TABLE_FOOTER) block type:\n    return escapeHtml(this.getText({ includeBlockTypes, skipBlockTypes }));\n  }\n\n  str(): string {\n    return `==== [Table footer] ====\\n${this.text}\\n========================`;\n  }\n}\n\n/**\n * Generic base class for a leading/header caption on a table\n *\n * If you're consuming this library, you probably just want to use `document.ts/TableTitle`.\n */\nexport class TableTitleGeneric<TPage extends IBlockManager>\n  extends WithWords(PageHostedApiBlockWrapper)<ApiTableTitleBlock, TPage>\n  implements IRenderable\n{\n  /**\n   * 0-100 based confidence of the table structure model (separate from OCR content confidence)\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n\n  /**\n   * Semantic `html()` for a table title is just the inner (HTML-escaped) text content\n   *\n   * The presence of header and/or footer will affect what element it gets wrapped in when rendering\n   * an overall `Table` object.\n   */\n  html({ includeBlockTypes = null, skipBlockTypes = null }: IRenderOpts = {}): string {\n    // WithWords.getText already filters by our self (TABLE_TITLE) block type:\n    return escapeHtml(this.getText({ includeBlockTypes, skipBlockTypes }));\n  }\n\n  str(): string {\n    return `==== [Table header] ====\\n${this.text}\\n========================`;\n  }\n}\n\n/**\n * Generic base class for a table, since Page is not defined yet here\n *\n * If you're consuming this library, you probably just want to use `document.ts/Table`.\n */\nexport class TableGeneric<TPage extends IBlockManager> extends PageHostedApiBlockWrapper<\n  ApiTableBlock,\n  TPage\n> {\n  _cells: CellGeneric<TPage>[];\n  _cellsById: { [id: string]: CellGeneric<TPage> };\n  _geometry: Geometry<ApiTableBlock, TableGeneric<TPage>>;\n  _mergedCells: MergedCellGeneric<TPage>[];\n  _nCols: number;\n  _nRows: number;\n\n  constructor(block: ApiTableBlock, parentPage: TPage) {\n    super(block, parentPage);\n    this._geometry = new Geometry(block.Geometry, this);\n\n    this._cells = [];\n    for (const rs of block.Relationships) {\n      const itemBlocks = rs.Ids.map((cid) => {\n        const cblk = parentPage.getBlockById(cid);\n        if (!cblk) {\n          console.warn(`Document missing related block ${cid} referenced by TABLE ${this.id}`);\n          return;\n        }\n        return cblk;\n      }).filter((cblk) => cblk) as ApiBlock[];\n\n      if (rs.Type === ApiRelationshipType.Child) {\n        this._cells = this._cells.concat(\n          itemBlocks.map((cblk) => new CellGeneric(cblk as ApiCellBlock, this)),\n        );\n      } else if (rs.Type === ApiRelationshipType.TableFooter) {\n        // Parsed objects will self-register with the parentPage:\n        itemBlocks.map((cblk) => new TableFooterGeneric(cblk as ApiTableFooterBlock, parentPage));\n      } else if (rs.Type === ApiRelationshipType.TableTitle) {\n        // Parsed objects will self-register with the parentPage:\n        itemBlocks.map((cblk) => new TableTitleGeneric(cblk as ApiTableTitleBlock, parentPage));\n      } else if (rs.Type !== ApiRelationshipType.MergedCell) {\n        // MERGED_CELL relationships are handled later - anything else is unexpected:\n        console.warn(\n          `TABLE ${this.id} contained a relationship of unexpected type '${\n            (rs as ApiRelationship).Type\n          }' which will be ignored`,\n        );\n      }\n    }\n\n    this._sortCellsByLocation(this._cells);\n    // This indexing could be moved to a utility function if supporting more mutation operations in future:\n    this._nCols = this._cells.reduce((acc, next) => Math.max(acc, next.columnIndex + next.columnSpan - 1), 0);\n    this._nRows = this._cells.reduce((acc, next) => Math.max(acc, next.rowIndex + next.rowSpan - 1), 0);\n\n    this._cellsById = {};\n    this._updateCellsById();\n    this._mergedCells = ([] as MergedCellGeneric<TPage>[]).concat(\n      ...(block.Relationships || [])\n        .filter((rs) => rs.Type == ApiRelationshipType.MergedCell)\n        .map(\n          (rs) =>\n            rs.Ids.map((cid) => {\n              const cellBlock = parentPage.getBlockById(cid);\n              if (!cellBlock) {\n                // No warning needed: We'll already have issued one in the loop above\n                return;\n              }\n              return new MergedCellGeneric(cellBlock as ApiMergedCellBlock, this);\n            }).filter((cell) => cell) as MergedCellGeneric<TPage>[],\n        ),\n    );\n  }\n\n  /**\n   * Sort an array of table cells by position (row, column) in-place\n   * @param cells Array of (merged or raw) cells\n   */\n  _sortCellsByLocation<T extends CellGeneric<TPage> | MergedCellGeneric<TPage>>(cells: Array<T>): void {\n    cells.sort((a, b) => a.rowIndex - b.rowIndex || a.columnIndex - b.columnIndex);\n  }\n\n  /**\n   * Update this Table instance's map of (split) Cells by ID for efficient retrieval\n   */\n  _updateCellsById(): void {\n    this._cellsById = this._cells.reduce(\n      (acc, next) => {\n        acc[next.id] = next;\n        return acc;\n      },\n      {} as { [id: string]: CellGeneric<TPage> },\n    );\n  }\n\n  /**\n   * Efficiently retrieve a (split) Cell in this table by Textract block ID\n   *\n   * This allows MergedCell objects to retrieve references to parsed Cells they wrap, instead of raw\n   * ApiCellBlocks.\n   * @throws (Rather than returning undefined) if the block ID is missing from the table.\n   */\n  _getSplitCellByBlockId(id: string): CellGeneric<TPage> {\n    let result: CellGeneric<TPage> = this._cellsById[id];\n    if (result) {\n      return result;\n    } else {\n      this._updateCellsById();\n      result = this._cellsById[id];\n      if (!result) {\n        throw new Error(`Referenced cell ID ${id} missing from TABLE ${this.id}`);\n      }\n\n      return result;\n    }\n  }\n\n  /**\n   * Get the Cell at a particular Y, X coordinate in the table.\n   * @param rowIndex 1-based index of the target row in the table\n   * @param columnIndex 1-based index of the target column in the table\n   * @param opts Configuration options for merged and multi-spanning cells\n   * @returns Cell at the specified row & column, or undefined if none is present.\n   */\n  cellAt(\n    rowIndex: number,\n    columnIndex: number,\n    opts: IGetCellOptions = {},\n  ): CellGeneric<TPage> | MergedCellGeneric<TPage> | undefined {\n    const ignoreMerged = opts.ignoreMerged || false;\n    const mergedResult =\n      !ignoreMerged &&\n      this._mergedCells.find(\n        (c) =>\n          c.columnIndex <= columnIndex &&\n          c.columnIndex + c.columnSpan > columnIndex &&\n          c.rowIndex <= rowIndex &&\n          c.rowIndex + c.rowSpan > rowIndex,\n      );\n    if (mergedResult) {\n      return mergedResult;\n    } else {\n      // Non-merged cells cannot have rowSpan/columnSpan > 1 anyway:\n      return this._cells.find((c) => c.columnIndex === columnIndex && c.rowIndex === rowIndex);\n    }\n  }\n\n  /**\n   * List the cells at a particular {row, column, or combination} in the table\n   * @param rowIndex 1-based index of the target row in the table\n   * @param columnIndex 1-based index of the target column in the table\n   * @param opts Configuration options for merged and multi-spanning cells\n   * @returns Cell at the specified row & column, or undefined if none is present.\n   */\n  cellsAt(\n    rowIndex: number | null,\n    columnIndex: number | null,\n    opts: IGetCellOptions = {},\n  ): Array<CellGeneric<TPage> | MergedCellGeneric<TPage>> {\n    const ignoreMerged = opts.ignoreMerged || false;\n    const mergedCells = ignoreMerged\n      ? []\n      : this._mergedCells.filter(\n          (c) =>\n            (rowIndex == null || (c.rowIndex <= rowIndex && c.rowIndex + c.rowSpan > rowIndex)) &&\n            (columnIndex == null ||\n              (c.columnIndex <= columnIndex && c.columnIndex + c.columnSpan > columnIndex)),\n        );\n    const mergedCellChildIds = mergedCells.reduce(\n      (acc, next) => {\n        next.listSubCells().forEach((c) => {\n          acc[c.id] = true;\n        });\n        return acc;\n      },\n      {} as { [id: string]: true },\n    );\n    const rawCells = this._cells.filter(\n      (c) =>\n        (rowIndex == null || c.rowIndex === rowIndex) &&\n        (columnIndex == null || c.columnIndex === columnIndex) &&\n        !(c.id in mergedCellChildIds),\n    );\n    const result = (mergedCells as Array<CellGeneric<TPage> | MergedCellGeneric<TPage>>).concat(rawCells);\n    this._sortCellsByLocation(result);\n    return result;\n  }\n\n  /**\n   * Aggregate OCR confidence score of the text (and selection elements) in this table\n   *\n   * This score reflects the aggregated OCR confidence of all the text content detected in this\n   * table. For the model's confidence on the table structure itself, see `.confidence`.\n   *\n   * @param {AggregationMethod} aggMethod How to combine individual word OCR confidences together\n   * @returns Aggregated confidence, or null if this table contains no content/text\n   */\n  getOcrConfidence(aggMethod: AggregationMethod = AggregationMethod.Mean): number | null {\n    const contentConfs = ([] as number[]).concat(\n      ...this._cells.map((cell) => cell.listContent().map((content) => content.confidence)),\n    );\n    return aggregate(contentConfs, aggMethod);\n  }\n\n  /**\n   * Iterate through the footers linked to this table\n   */\n  iterFooters(): Iterable<TableFooterGeneric<TPage>> {\n    return getIterable(() => this.listFooters());\n  }\n\n  /**\n   * Iterate through the rows of the table\n   * @param opts Configuration options for merged and multi-spanning cells\n   * @example\n   * for (const row of table.iterRows()) {\n   *   for (const cell of row.iterCells()) {\n   *     console.log(cell.text);\n   *   }\n   * }\n   * @example\n   * [...table.iterRows()].forEach(\n   *   (row) => [...row.iterCells()].forEach(\n   *     (cell) => console.log(cell.text)\n   *   )\n   * );\n   */\n  iterRows(opts: IGetRowOptions = {}): Iterable<RowGeneric<TPage>> {\n    const getIterator = (): Iterator<RowGeneric<TPage>> => {\n      let ixRow = 0;\n      return {\n        next: (): IteratorResult<RowGeneric<TPage>> => {\n          if (ixRow < this._nRows) {\n            return {\n              done: false,\n              value: this.rowAt(++ixRow, opts),\n            };\n          } else {\n            return {\n              done: true,\n              value: undefined,\n            };\n          }\n        },\n      };\n    };\n    return {\n      [Symbol.iterator]: getIterator,\n    };\n  }\n\n  /**\n   * Iterate through the titles linked to this table\n   */\n  iterTitles(): Iterable<TableTitleGeneric<TPage>> {\n    return getIterable(() => this.listTitles());\n  }\n\n  /**\n   * List the footer(s) associated with the table\n   */\n  listFooters(): TableFooterGeneric<TPage>[] {\n    return this.listRelatedItemsByRelType(ApiRelationshipType.TableFooter, {\n      includeBlockTypes: ApiBlockType.TableFooter,\n      onUnexpectedBlockType: \"warn\",\n    }) as TableFooterGeneric<TPage>[];\n  }\n\n  /**\n   * List the rows of the table\n   * @param opts Configuration options for merged and multi-spanning cells\n   */\n  listRows(opts: IGetRowOptions = {}): RowGeneric<TPage>[] {\n    return [...Array(this._nRows).keys()].map((ixRow) => this.rowAt(ixRow + 1, opts));\n  }\n\n  /**\n   * List the title(s) associated with the table\n   */\n  listTitles(): TableTitleGeneric<TPage>[] {\n    return this.listRelatedItemsByRelType(ApiRelationshipType.TableTitle, {\n      includeBlockTypes: ApiBlockType.TableTitle,\n      onUnexpectedBlockType: \"warn\",\n    }) as TableTitleGeneric<TPage>[];\n  }\n\n  /**\n   * List the cells at a particular {row, column, or combination} in the table\n   * @param rowIndex 1-based index of the target row in the table\n   * @param opts Configuration options for merged and multi-spanning cells\n   */\n  rowAt(rowIndex: number, opts: IGetRowOptions = {}): RowGeneric<TPage> {\n    const repeatMultiRowCells = opts.repeatMultiRowCells || false;\n    const allRowCells = this.cellsAt(rowIndex, null, { ignoreMerged: opts.ignoreMerged });\n    return new RowGeneric(\n      repeatMultiRowCells ? allRowCells : allRowCells.filter((c) => c.rowIndex === rowIndex),\n      this,\n    );\n  }\n\n  /**\n   * Confidence score of the table structure detection\n   *\n   * This score reflects the confidence of the model detecting the table structure itself. For the\n   * combined table content OCR confidence, see the `.getOcrConfidence()` method instead.\n   */\n  get confidence(): number {\n    return this._dict.Confidence;\n  }\n  set confidence(newVal: number) {\n    this._dict.Confidence = newVal;\n  }\n  /**\n   * Access the first `TableFooter` associated to this table, if any\n   *\n   * This convenience property is provided because as far as we're aware at time of writing,\n   * there's always either 0 or 1 footer linked to a table by the model - no more.\n   */\n  get firstFooter(): TableFooterGeneric<TPage> | undefined {\n    const footers = this.listFooters();\n    return footers.length ? footers[0] : undefined;\n  }\n  /**\n   * Access the first `TableTitle` associated to this table, if any\n   *\n   * This convenience property is provided because as far as we're aware at time of writing,\n   * there's always either 0 or 1 title linked to a table by the model - no more.\n   */\n  get firstTitle(): TableTitleGeneric<TPage> | undefined {\n    const titles = this.listTitles();\n    return titles.length ? titles[0] : undefined;\n  }\n  /**\n   * Position of the table on the input image / page\n   */\n  get geometry(): Geometry<ApiTableBlock, TableGeneric<TPage>> {\n    return this._geometry;\n  }\n  /**\n   * Total number of cells in the table\n   *\n   * (For the total number of *sub-cells* ignoring merged cells, just use `nColumns * nRows`)\n   */\n  get nCells(): number {\n    // Total sub-cells, plus total merged cells, minus the number of sub-cells each merge covers\n    const nMergeTargets = this._mergedCells.map((mc) => mc.nSubCells).reduce((acc, next) => acc + next, 0);\n    return this._cells.length + this._mergedCells.length - nMergeTargets;\n  }\n  /**\n   * Number of columns in the table\n   */\n  get nColumns(): number {\n    return this._nCols;\n  }\n  /**\n   * Number of rows in the table\n   */\n  get nRows(): number {\n    return this._nRows;\n  }\n\n  /**\n   * Get the overall type (EntityType) of this table\n   *\n   * In the underlying Amazon Textract API, table EntityTypes is a list. In practice though, it will either\n   * contain `STRUCTURED_TABLE`, or `SEMI_STRUCTURED_TABLE`, or neither.\n   *\n   * This dynamic property simplifies checking whether a table is structured, semi-structured, or untagged.\n   *\n   * @throws Error if the table block is tagged with multiple conflicting EntityTypes.\n   */\n  get tableType(): ApiTableEntityType | null {\n    if (!this._dict.EntityTypes) return null;\n\n    const isStructured = this._dict.EntityTypes.indexOf(ApiTableEntityType.StructuredTable) >= 0;\n    const isSemiStructured = this._dict.EntityTypes.indexOf(ApiTableEntityType.SemiStructuredTable) >= 0;\n    const nMatches = +isStructured + +isSemiStructured;\n    if (nMatches === 0) return null;\n    if (nMatches > 1) {\n      throw new Error(\n        `TABLE block ${this._dict.Id} EntityTypes contained multiple conflicting table types: \"${this._dict.EntityTypes}\"`,\n      );\n    }\n    if (isStructured) return ApiTableEntityType.StructuredTable;\n    return ApiTableEntityType.SemiStructuredTable;\n  }\n\n  /**\n   * The plain text content of this table, with newlines between rows and tabs between cells\n   */\n  get text(): string {\n    return this.listRows()\n      .map((row) => row.text)\n      .join(\"\\n\");\n  }\n\n  /**\n   * Generate semantic HTML representation for this table\n   *\n   * The outer element will be a `<table>` *unless both* table title and footer elements are\n   * present - because an HTML table can only have one `<caption>` child. In those cases, you'll\n   * see an outer `<div class=\"table-wrapper\">`.\n   */\n  html(opts?: IRenderOpts): string {\n    if (!doesFilterAllowBlockType(opts, this.blockType)) return \"\";\n    const rowHtmls = this.listRows().map((row) =>\n      [\n        \"<tr>\",\n        indent(\n          row\n            .listCells()\n            .map((cell) => cell.html(opts))\n            .join(\"\\n\"),\n        ),\n        \"</tr>\",\n      ].join(\"\\n\"),\n    );\n    const titleTexts = this.listTitles()\n      .map((item) => item.html(opts))\n      .filter((s) => s);\n    const footerTexts = this.listFooters()\n      .map((item) => item.html(opts))\n      .filter((s) => s);\n    if (titleTexts.length && footerTexts.length) {\n      // Need to accommodate both a title and a footer -> Use <div>s\n      const titleInnerHtml =\n        titleTexts.length > 1 ? titleTexts.map((text) => `<p>${text}</p>`).join(\"\\n\") : titleTexts[0];\n      const footerInnerHtml =\n        titleTexts.length > 1 ? titleTexts.map((text) => `<p>${text}</p>`).join(\"\\n\") : titleTexts[0];\n      return [\n        '<div class=\"table-wrapper\">',\n        indent(\n          [\n            '<div class=\"table-title\">',\n            indent(titleInnerHtml),\n            \"</div>\",\n            \"<table>\",\n            indent(rowHtmls.join(\"\\n\")),\n            \"</table>\",\n            '<div class=\"table-footer\">',\n            indent(footerInnerHtml),\n            \"</div>\",\n          ].join(\"\\n\"),\n        ),\n        \"</div>\",\n      ].join(\"\\n\");\n    } else if (!(titleTexts.length || footerTexts.length)) {\n      // No title or footer - just render table with content\n      return `<table>\\n${indent(rowHtmls.join(\"\\n\"))}\\n</table>`;\n    } else {\n      // Only one of titles or footers is present\n      const isTitle = titleTexts.length != 0;\n      const captionTexts = isTitle ? titleTexts : footerTexts;\n      // Only wrap caption elements in paragraph tags if there's more than one:\n      const captionHtml =\n        captionTexts.length > 1 ? captionTexts.map((text) => `<p>${text}</p>`).join(\"\\n\") : captionTexts[0];\n      const innerHtml = [\n        `<caption style=\"caption-side: ${isTitle ? \"top\" : \"bottom\"}\">`,\n        indent(captionHtml),\n        \"</caption>\",\n      ]\n        .concat(rowHtmls)\n        .join(\"\\n\");\n      return `<table>\\n${indent(innerHtml)}\\n</table>`;\n    }\n  }\n\n  str(): string {\n    return (\n      \"Table\\n==========\\n\" +\n      this.listRows()\n        .map((row) => `Row\\n==========\\n${row.str()}`)\n        .join(\"\\n\")\n    );\n  }\n}\n\n/**\n * Interface for a (`Page`-like) object that exposes a collection of tables\n */\nexport interface IWithTables<TPage extends IBlockManager> {\n  /**\n   * Iterate through the available `Table`s\n   */\n  iterTables(): Iterable<TableGeneric<TPage>>;\n  /**\n   * Fetch a snapshot of the list of `Table`s\n   */\n  listTables(): TableGeneric<TPage>[];\n  /**\n   * Fetch a particular parsed `Table` by its index\n   */\n  tableAtIndex(ix: number): TableGeneric<TPage>;\n  /**\n   * Number of `Table`s present\n   */\n  get nTables(): number;\n}\n"
  },
  {
    "path": "src-js/test/data/analyzeid-test-drivers-license-response.json",
    "content": "{\n  \"Comment\": \"AnalyzeId response for synthetic example drivers license per the Amazon Textract console\",\n  \"IdentityDocuments\": [\n    {\n      \"DocumentIndex\": 1,\n      \"IdentityDocumentFields\": [\n        {\n          \"Type\": {\n            \"Text\": \"FIRST_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"GARCIA\",\n            \"Confidence\": 99.48689270019531\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"LAST_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"MARIA\",\n            \"Confidence\": 98.49578857421875\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"MIDDLE_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.1700439453125\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"SUFFIX\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.64495849609375\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CITY_IN_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"BIGTOWN\",\n            \"Confidence\": 98.14332580566406\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ZIP_CODE_IN_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"02801\",\n            \"Confidence\": 98.75949096679688\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE_IN_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"MA\",\n            \"Confidence\": 99.49725341796875\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"MASSACHUSETTS\",\n            \"Confidence\": 98.30329132080078\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DOCUMENT_NUMBER\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"736HDV7874JSB\",\n            \"Confidence\": 95.6583251953125\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"EXPIRATION_DATE\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"01/20/2028\",\n            \"NormalizedValue\": {\n              \"Value\": \"2028-01-20T00:00:00\",\n              \"ValueType\": \"Date\"\n            },\n            \"Confidence\": 98.64090728759766\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DATE_OF_BIRTH\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"03/18/2001\",\n            \"NormalizedValue\": {\n              \"Value\": \"2001-03-18T00:00:00\",\n              \"ValueType\": \"Date\"\n            },\n            \"Confidence\": 97.46344757080078\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DATE_OF_ISSUE\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"03/18/2018\",\n            \"NormalizedValue\": {\n              \"Value\": \"2018-03-18T00:00:00\",\n              \"ValueType\": \"Date\"\n            },\n            \"Confidence\": 98.7216567993164\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ID_TYPE\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"DRIVER LICENSE FRONT\",\n            \"Confidence\": 98.71986389160156\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ENDORSEMENTS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"NONE\",\n            \"Confidence\": 99.265869140625\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VETERAN\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.63630676269531\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"RESTRICTIONS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"NONE\",\n            \"Confidence\": 99.33734130859375\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CLASS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"D\",\n            \"Confidence\": 99.08406829833984\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"100 MARKET STREET\",\n            \"Confidence\": 99.20429229736328\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"COUNTY\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.57963562011719\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"PLACE_OF_BIRTH\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.62541198730469\n          }\n        }\n      ]\n    }\n  ],\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"AnalyzeIDModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/analyzeid-test-passport-response.json",
    "content": "{\n  \"Comment\": \"AnalyzeId response for synthetic example passport per the Amazon Textract console\",\n  \"IdentityDocuments\": [\n    {\n      \"DocumentIndex\": 1,\n      \"IdentityDocumentFields\": [\n        {\n          \"Type\": {\n            \"Text\": \"FIRST_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"LI\",\n            \"Confidence\": 98.9061508178711\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"LAST_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"JUAN\",\n            \"Confidence\": 99.0864486694336\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"MIDDLE_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.58706665039062\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"SUFFIX\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 97.21086120605469\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CITY_IN_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.6075439453125\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ZIP_CODE_IN_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.6566390991211\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE_IN_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.630615234375\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.62137603759766\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DOCUMENT_NUMBER\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"0002028373\",\n            \"Confidence\": 97.796142578125\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"EXPIRATION_DATE\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"09 MAY 2029\",\n            \"NormalizedValue\": {\n              \"Value\": \"2029-05-09T00:00:00\",\n              \"ValueType\": \"Date\"\n            },\n            \"Confidence\": 98.75630187988281\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DATE_OF_BIRTH\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"01 MAY 1982\",\n            \"NormalizedValue\": {\n              \"Value\": \"1982-05-01T00:00:00\",\n              \"ValueType\": \"Date\"\n            },\n            \"Confidence\": 99.00655364990234\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DATE_OF_ISSUE\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"09 MAY 2019\",\n            \"NormalizedValue\": {\n              \"Value\": \"2019-05-09T00:00:00\",\n              \"ValueType\": \"Date\"\n            },\n            \"Confidence\": 98.68514251708984\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ID_TYPE\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"PASSPORT\",\n            \"Confidence\": 99.3958740234375\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ENDORSEMENTS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 98.99522399902344\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VETERAN\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.62472534179688\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"RESTRICTIONS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.49139404296875\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CLASS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.62535095214844\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.62577819824219\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"COUNTY\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"\",\n            \"Confidence\": 99.6469955444336\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"PLACE_OF_BIRTH\"\n          },\n          \"ValueDetection\": {\n            \"Text\": \"NEW YORK CITY\",\n            \"Confidence\": 98.29044342041016\n          }\n        }\n      ]\n    }\n  ],\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"AnalyzeIDModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/expense-missing-geoms-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"ExpenseDocuments\": [\n    {\n      \"ExpenseIndex\": 1,\n      \"LineItemGroups\": [],\n      \"SummaryFields\": [\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"CITY\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.95603942871094,\n            \"Text\": \"\"\n          }\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "src-js/test/data/financial-document-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0000723913763067685,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 2.780956833703385e-7\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"9f96dfd3-65bb-46f0-a808-c4e147ea2229\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bd0b8aed-b700-49af-9b93-6dbce6e0777c\",\n            \"2b711119-9b54-4cc6-9b3c-1355493c6981\",\n            \"52ad7a7a-496a-49d9-ad89-5d9107f333cd\",\n            \"e7ede095-24e5-48da-ab73-314738ef5891\",\n            \"454bf866-80da-47dc-9b7c-072785bf5efb\",\n            \"a0f1da78-b0a6-477d-86c7-7ff2df32019a\",\n            \"c82a358a-e9f1-4b3c-94ac-b3352a7c6da5\",\n            \"d0ae0063-fa83-4b05-854b-744594b92020\",\n            \"83b539da-a9ef-4e43-a5dd-5f9b50ad60be\",\n            \"832a4c1f-9d2f-4f18-99ef-37eb49a2ca76\",\n            \"9d7d283a-3a98-4866-9665-0dbe21a15e02\",\n            \"2f5a348a-86de-4f2b-a6e3-54c374726f79\",\n            \"2bc8e6c7-6267-42f5-bb82-44ad2dcd85ed\",\n            \"2d9a4205-0d9f-4c05-8941-0b069f19c429\",\n            \"cbffa156-cfab-480a-8888-70f9106f3d0b\",\n            \"66e5d0c3-ea18-4da3-9876-89e73315527f\",\n            \"4a54d4b3-8006-489e-ac5f-7a45f845c58d\",\n            \"e4447442-1aff-4392-82ed-c44997f66899\",\n            \"d5ff7481-bed9-4745-9f29-4eb9090b06c6\",\n            \"79c6da7b-d8ad-4bc5-98a3-be1c6b982636\",\n            \"80021045-9e19-4a2d-b854-c2086604c95a\",\n            \"25809043-9166-4b6b-a978-df8127a3c3ad\",\n            \"d5fe6d81-1845-427a-a831-f26f3152accb\",\n            \"2766a3dc-e091-4aad-9016-cfd6c70ce2d6\",\n            \"eba993a5-3745-441f-96eb-1a6ec4765969\",\n            \"c5df1173-8f2a-48e2-819e-8634e7cf5b05\",\n            \"d0cee485-fe24-4f6b-9e73-15b03e41a3cb\",\n            \"58ce2b3d-87ff-47ee-b4dc-32292f68fa1e\",\n            \"032bf61e-edfb-4694-8898-ba95f27df5ce\",\n            \"d96e7607-3559-4eb4-a6b6-140f340c985f\",\n            \"92a5af6f-ad33-4102-bd2c-b654df045f20\",\n            \"759eba37-f21d-4179-89d1-e46473d0704b\",\n            \"19fc7de8-c98e-4020-925d-a3d6eca294e8\",\n            \"da12f83f-5b6a-4fbc-931f-28955c412be5\",\n            \"309b6df4-e01d-4365-8fd3-42230a9b44ba\",\n            \"e28c2ae0-e4e2-4b55-843c-cdba7fe6023f\",\n            \"8a7ccc80-9c9a-48e7-be5d-d2b8cb252194\",\n            \"ec4f7b92-6fdf-4e1c-a464-60233bb389a2\",\n            \"70bc60d9-479e-4d33-9aaf-02bea779499f\",\n            \"0cb981f6-0f72-4a9c-a3ab-faf97aba0c71\",\n            \"27c79dfb-ba6d-4986-b339-bc8671abaaf5\",\n            \"9b87584c-8c30-4e8c-a714-f34275009f5b\",\n            \"a47fd7b7-171a-4182-8ba0-35c55337fc6f\",\n            \"0b8b1380-b8b3-4f01-bf19-d0fbffe37f09\",\n            \"c8e0d2bd-98a7-446d-b484-0e0428993343\",\n            \"8f922c06-0a26-4b88-a99e-07a4193d0fc7\",\n            \"d321e8fd-3f62-4230-9809-67bb551f7bf0\",\n            \"cadeaa33-82b5-4398-bb6d-de1427b45267\",\n            \"189d8d77-784b-4bc6-8129-35b6b085d12f\",\n            \"d7358027-16af-481d-a1f3-6338d609bcab\",\n            \"8c73fd1e-edc0-4dc6-8fe6-bce511fe7070\",\n            \"2a6ae35d-98b3-4bad-ae8a-85dfa3ccb5be\",\n            \"2879ab1d-0062-45d1-bcae-4fe6a12ef5ba\",\n            \"9f60471c-ebfa-47d1-9b37-bd01d07f08f0\",\n            \"399d579b-d1c7-4a67-9161-185398fddde7\",\n            \"c4306ce9-365c-4aff-8a56-51e76396c097\",\n            \"c38cec55-1ec0-4b05-a989-075e779e4432\",\n            \"b27a894d-ab01-4afa-a012-471c880a9ba0\",\n            \"f9cce1db-1701-43b9-8c0c-8aebe79ed38a\",\n            \"e12a28f1-1e11-4b22-88e9-965cc2d2313d\",\n            \"39d0bd15-18c2-4e7b-a5f5-dc4ea8d1150f\",\n            \"56e51128-c30c-4bac-84ba-9eb8c884098f\",\n            \"e3544281-562a-4f50-8ccf-db72aef134ad\",\n            \"7069122a-3db8-41f8-b616-09a08bf53e44\",\n            \"9db0f682-746a-4943-b805-3e5abd70bd71\",\n            \"9c2de95b-073a-4075-b037-bc46788c49e7\",\n            \"3c73578e-5e75-4f65-a2c5-b65d58e302f1\",\n            \"ad6ce9a3-1c7a-476b-bfc5-0aabbe4b2096\",\n            \"01f1cb7d-5147-45b6-9b51-270072ec6d40\",\n            \"dfd1e6d0-a218-43e5-91fb-61d8f9a180b0\",\n            \"890cc366-b3d1-40fa-9254-c106077553f5\",\n            \"d996cf4d-afda-419c-a51e-de72c2e8dfc6\",\n            \"eb126a63-0b7c-4d0e-924e-6855f8ce4522\",\n            \"afb68475-73dd-4fba-86fa-3b5ed82179b9\",\n            \"26187b32-4498-4e68-a9d5-90745824d857\",\n            \"87669421-1d87-47c5-8737-28df08b3fb20\",\n            \"acb80e54-d122-431b-9919-d82ec143b20d\",\n            \"ee26943f-3c43-483c-a46a-993df4c5eb02\",\n            \"e79d7d6d-a79e-482c-806f-50570c7c647e\",\n            \"3c16cb82-f70f-4781-9e60-38ac1451d9eb\",\n            \"53729296-e9cd-46b0-b47c-ac373579c5fd\",\n            \"83fd62b2-d356-46c4-8f99-5c6c98065c1f\",\n            \"ef17717e-30dd-491b-8dbe-6560874cdd6c\",\n            \"47b14a64-a1d0-4883-9dc2-2e51bb5c6964\",\n            \"c0688fe5-b681-4fc0-bd36-cdc3c3725f23\",\n            \"f8ca168c-b830-4652-b2b5-0b843a404a5b\",\n            \"080711e9-3886-432d-b627-f5c6571d6d71\",\n            \"05ed4d51-06f5-4d5d-a655-1c69c3275646\",\n            \"9ab5eeff-d942-42f2-86fa-a8a29c954fd4\",\n            \"6f84e06c-9e8f-407e-bb02-100a43197d8d\",\n            \"948da51a-159f-4324-9e89-a692e56e8231\",\n            \"161535cf-4808-464b-a205-18f0c2727fa4\",\n            \"180da397-d96f-414c-a3fa-61ef37b66973\",\n            \"925c4758-c2dd-40b8-999e-04b44bdc308d\",\n            \"f7c53f0d-7786-42c4-bbc7-358027c8317a\",\n            \"059ae5be-47d5-4e32-ba93-3d104a382cdf\",\n            \"28753ac7-ae25-4109-94c3-a8b55a792d66\",\n            \"6b065e4c-7fcc-4977-9341-5eef0cd84ead\",\n            \"f74d13f3-be80-46a9-86a8-6c846654e456\",\n            \"19fe2b40-cad7-44d8-a347-818c9c91aea5\",\n            \"2e86f427-7e33-4d19-ac8d-dec9d3dbf719\",\n            \"334cf30c-8270-4c61-a525-f3a12e2c296a\",\n            \"9bd52181-2597-49b7-8e25-cdacab5fbc59\",\n            \"fa0d8429-c34a-4c0e-83f1-96c12e495b46\",\n            \"3f79fbd1-d2c2-4456-99e0-61c9ec40262b\",\n            \"46ff936c-44c5-4ca7-bd1a-289d036cee9c\",\n            \"3abba07d-577e-4594-aa00-b74013d6f123\",\n            \"9107a9fa-b463-40f5-862c-a497a905a4e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.02369689941406,\n      \"Text\": \"IV. Administered Accounts\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16622620820999146,\n          \"Height\": 0.009065395221114159,\n          \"Left\": 0.06935500353574753,\n          \"Top\": 0.04881434142589569\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06935665011405945,\n            \"Y\": 0.04881434142589569\n          },\n          {\n            \"X\": 0.2355812042951584,\n            \"Y\": 0.048907432705163956\n          },\n          {\n            \"X\": 0.23558035492897034,\n            \"Y\": 0.057879738509655\n          },\n          {\n            \"X\": 0.06935500353574753,\n            \"Y\": 0.05778639763593674\n          }\n        ]\n      },\n      \"Id\": \"bd0b8aed-b700-49af-9b93-6dbce6e0777c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5483a101-94d0-4ae7-b848-1cb543c82ace\",\n            \"dccc3533-ba55-4b5c-adb1-b78c9c8a813f\",\n            \"c2404b08-56a4-4f47-8f97-e970c133c829\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89788818359375,\n      \"Text\": \"At October 31, 2021 and for the six months then ended\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34066304564476013,\n          \"Height\": 0.009830567985773087,\n          \"Left\": 0.3993512690067291,\n          \"Top\": 0.04902533069252968\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3993513584136963,\n            \"Y\": 0.04902533069252968\n          },\n          {\n            \"X\": 0.7400126457214355,\n            \"Y\": 0.04921611398458481\n          },\n          {\n            \"X\": 0.7400143146514893,\n            \"Y\": 0.058855898678302765\n          },\n          {\n            \"X\": 0.3993512690067291,\n            \"Y\": 0.05866457149386406\n          }\n        ]\n      },\n      \"Id\": \"2b711119-9b54-4cc6-9b3c-1355493c6981\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"19d6c8be-eed8-46f9-a298-b0d05c4d0ff8\",\n            \"3bfd5c6d-38be-4214-b3fd-d7957ee94e4a\",\n            \"2555e355-01eb-4879-832b-9c5547d5ca9d\",\n            \"cc794421-e0a7-4fa5-9445-68c00582497d\",\n            \"9aaaf77c-bf18-43b8-870d-aa40a96741ae\",\n            \"fb739ca5-7743-451a-b948-e1206535dd24\",\n            \"51f44ffa-fe5a-46c5-a75f-de662a504655\",\n            \"fad71e86-9000-42ea-93b1-c41fab256d91\",\n            \"3105f543-8270-44b9-a239-b2739da5f823\",\n            \"6baddf73-dbd1-4145-ab2f-0dfde73d591f\",\n            \"63ff79c5-7931-4c27-8665-d9214e44a2bd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.13107299804688,\n      \"Text\": \"ADMINISTERED ACCOUNTS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32981640100479126,\n          \"Height\": 0.01522541232407093,\n          \"Left\": 0.09297806769609451,\n          \"Top\": 0.10282439738512039\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09298064559698105,\n            \"Y\": 0.10282439738512039\n          },\n          {\n            \"X\": 0.4227944016456604,\n            \"Y\": 0.10301203280687332\n          },\n          {\n            \"X\": 0.4227944612503052,\n            \"Y\": 0.11804980784654617\n          },\n          {\n            \"X\": 0.09297806769609451,\n            \"Y\": 0.11786135286092758\n          }\n        ]\n      },\n      \"Id\": \"52ad7a7a-496a-49d9-ad89-5d9107f333cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b8fbb762-8808-4452-b5a8-9d69d166a0d6\",\n            \"f154f17c-9fbf-47c2-a8cd-bf612d3513f4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89695739746094,\n      \"Text\": \"At the request of certain members, the IMF has established accounts to administer resources contributed by these\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8250725865364075,\n          \"Height\": 0.013437972404062748,\n          \"Left\": 0.09352346509695053,\n          \"Top\": 0.1424936056137085\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09352567791938782,\n            \"Y\": 0.1424936056137085\n          },\n          {\n            \"X\": 0.9185925722122192,\n            \"Y\": 0.14296838641166687\n          },\n          {\n            \"X\": 0.9185960292816162,\n            \"Y\": 0.15593157708644867\n          },\n          {\n            \"X\": 0.09352346509695053,\n            \"Y\": 0.15545502305030823\n          }\n        ]\n      },\n      \"Id\": \"e7ede095-24e5-48da-ab73-314738ef5891\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"037170ef-6940-4ae8-b7e9-0efb49382fc9\",\n            \"a656cdbf-4739-4b2a-ae8e-c1851d65962a\",\n            \"40f793db-ac4e-476d-9d7a-b1e1ce6db685\",\n            \"0a8e5274-0fd8-4437-9d19-cfb834b32d58\",\n            \"229d0d11-9d5c-4ed7-8cc9-50533696eee1\",\n            \"bbdf7a7d-0b48-4801-a078-88c930a84aa7\",\n            \"bdd1abf0-f70d-4110-aadc-146a2b2eb32d\",\n            \"8fdcd320-5cd5-4f0e-bbe7-0d73d209b80d\",\n            \"9faebd19-9c34-4aca-af76-12ce489db28a\",\n            \"1df1b8c2-02f2-4094-922d-af9a3fd7a225\",\n            \"59ce6113-9199-402e-a2f3-150ea0472e1d\",\n            \"4e6571e6-295f-4bc7-a7eb-b1dd3c91e6c9\",\n            \"747dea1e-8e30-465c-8cac-bdf482cb0fb1\",\n            \"95304c96-f7b6-4933-b025-f795e2c98354\",\n            \"cbe7d004-0f4a-4efa-8447-1290d1df6d86\",\n            \"95027f60-11ad-4492-9437-3380d56e6839\",\n            \"55d44c21-e05a-4337-a47f-55e2eaf29f6e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86031341552734,\n      \"Text\": \"members and to perform financial and technical services consistent with the purposes of the IMF.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.700750470161438,\n          \"Height\": 0.013328354805707932,\n          \"Left\": 0.09459516406059265,\n          \"Top\": 0.15822240710258484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09459736198186874,\n            \"Y\": 0.15822240710258484\n          },\n          {\n            \"X\": 0.7953429818153381,\n            \"Y\": 0.1586274653673172\n          },\n          {\n            \"X\": 0.7953456044197083,\n            \"Y\": 0.17155076563358307\n          },\n          {\n            \"X\": 0.09459516406059265,\n            \"Y\": 0.17114421725273132\n          }\n        ]\n      },\n      \"Id\": \"454bf866-80da-47dc-9b7c-072785bf5efb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94b26a86-1c92-4b8a-bf35-1131337f76d4\",\n            \"fbc12d0b-aeab-4d55-bfc0-c524e23ae655\",\n            \"0d7e3bc2-ebcd-435b-ba4f-fba92668b9e4\",\n            \"382f4223-e2d3-411a-94a4-ba8c5f116dee\",\n            \"0aef41ec-4cc5-48b7-80c6-e3cea1e80924\",\n            \"c1788c96-b977-4ade-ae42-7bccc05cd0f5\",\n            \"a6720cb7-9f2e-4f62-8e6d-44c39d7dd2f2\",\n            \"faa80eeb-cfde-4d72-9ddb-c552f5b407e1\",\n            \"2dfb090f-bbdf-4f58-afb2-d5b2c3535f18\",\n            \"6a1e8cf4-58e1-4994-94f8-b87c4aa793e5\",\n            \"649e6aaf-1b95-4f2c-97cd-81b46fa2f61d\",\n            \"03d9fdd5-8745-43b6-8f17-94fbf136d6ff\",\n            \"eea597c4-2f76-48e9-856b-0d44fc6ba1e6\",\n            \"ac99f2c2-802a-4400-929a-4425f6ac8ee4\",\n            \"b08f500f-1edd-4ba4-a06a-4089eb1db22e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88452911376953,\n      \"Text\": \"The instruments establishing the Administered Accounts provide the terms and conditions, as agreed with the IMF\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.823157548904419,\n          \"Height\": 0.013728019781410694,\n          \"Left\": 0.09371211379766464,\n          \"Top\": 0.1905985325574875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09371437877416611,\n            \"Y\": 0.1905985325574875\n          },\n          {\n            \"X\": 0.9168661236763,\n            \"Y\": 0.19107873737812042\n          },\n          {\n            \"X\": 0.9168696403503418,\n            \"Y\": 0.2043265551328659\n          },\n          {\n            \"X\": 0.09371211379766464,\n            \"Y\": 0.2038445621728897\n          }\n        ]\n      },\n      \"Id\": \"a0f1da78-b0a6-477d-86c7-7ff2df32019a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dbedc88c-640e-4123-b080-7eef8df21c30\",\n            \"346f000b-193a-439c-b542-f54927feca4f\",\n            \"9e4ef3bc-1b42-4597-b57a-b71a54c59e1d\",\n            \"a0ce6006-c7f3-48b6-8ec3-463b2e45547b\",\n            \"339b65b3-1da4-4d61-9542-9d0a2b485674\",\n            \"8275ea8a-af91-448a-8efb-4c17d5fe7677\",\n            \"13c6e1bf-66d7-4083-8530-c8d11202ab79\",\n            \"7fea46c4-0896-4590-9fc6-af9ac12afe1a\",\n            \"b7a43041-8693-4bb8-ab6a-450628fd4180\",\n            \"3cfed3dd-ceb5-45d6-a47c-ff2f777cbeed\",\n            \"fcc98150-ce7c-4530-b70b-184d95be4895\",\n            \"f394d799-f949-4963-a39c-283f99538d12\",\n            \"c325c8e3-73ec-482e-9d9a-f09a9b3552ac\",\n            \"9102670e-1dee-44c7-a4bc-d7ba26e3a6c7\",\n            \"1d3e6e83-fadb-447f-b4ee-8791fa4156ae\",\n            \"72d8d4ed-5c34-4c07-9c3c-b6bae0ff65ce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88705444335938,\n      \"Text\": \"and contributing parties, under which the resources may be used. The assets of each account (subaccount) are\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8048243522644043,\n          \"Height\": 0.013679498806595802,\n          \"Left\": 0.09405208379030228,\n          \"Top\": 0.20637474954128265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09405434131622314,\n            \"Y\": 0.20637474954128265\n          },\n          {\n            \"X\": 0.898872971534729,\n            \"Y\": 0.20684635639190674\n          },\n          {\n            \"X\": 0.898876428604126,\n            \"Y\": 0.2200542539358139\n          },\n          {\n            \"X\": 0.09405208379030228,\n            \"Y\": 0.21958090364933014\n          }\n        ]\n      },\n      \"Id\": \"c82a358a-e9f1-4b3c-94ac-b3352a7c6da5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f4bb5b69-c159-4959-a472-170ab348d9ed\",\n            \"252dbba2-604a-4778-bde0-9c2f249f049a\",\n            \"bd515eb4-a7bf-4b7e-8f9c-e0891f5b8338\",\n            \"f0f14982-c28c-4655-8087-d4403a2de427\",\n            \"ca9c6a33-4b25-41d9-a955-fcd294988f6c\",\n            \"eed281a6-e35c-4916-8a96-bb30b0c5943b\",\n            \"812eaece-32ab-44ef-9f07-9d5d9f37dbcb\",\n            \"1ebfa70f-8f2b-42bc-8085-ccf8db0c9b80\",\n            \"6ce4a961-018d-48b4-a393-5ecb396239ce\",\n            \"8b99ffa4-aa9f-4998-be7d-f7ea2448742d\",\n            \"e2f73aa2-1bcd-4a9d-945a-a53d8bc39364\",\n            \"89269dc8-f31c-4dd3-a744-4728fcb87bd7\",\n            \"bf15f5b2-2146-4e2f-a867-abd0f7685b8e\",\n            \"d1b0d222-9312-4918-8a1c-75883babab55\",\n            \"fc16557f-5934-4560-af6a-076de1eb15af\",\n            \"b24f6e9f-1819-43f6-8cb9-cb568f34d875\",\n            \"c98d7bbc-e8fd-4bf8-b34c-8e759a3d64b7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79246520996094,\n      \"Text\": \"separate from the assets of all other accounts (subaccounts) of, or administered by, the IMF. The assets of each\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.810827374458313,\n          \"Height\": 0.013636517338454723,\n          \"Left\": 0.09399541467428207,\n          \"Top\": 0.22272196412086487\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09399766474962234,\n            \"Y\": 0.22272196412086487\n          },\n          {\n            \"X\": 0.9048193693161011,\n            \"Y\": 0.223199263215065\n          },\n          {\n            \"X\": 0.9048227667808533,\n            \"Y\": 0.23635847866535187\n          },\n          {\n            \"X\": 0.09399541467428207,\n            \"Y\": 0.23587942123413086\n          }\n        ]\n      },\n      \"Id\": \"d0ae0063-fa83-4b05-854b-744594b92020\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6728165d-5249-40da-97c6-e5963105fa3c\",\n            \"e50d9dbb-9c03-4de0-bd47-7a2f8af234de\",\n            \"201d39aa-7c21-491d-beec-2e2c4054089e\",\n            \"c502b45b-104b-4cc6-96d9-9eb70f2349d7\",\n            \"7efd5367-48a5-49b5-a548-17d9910cd9b5\",\n            \"90bb5656-30ce-4941-9dee-fb4a7f5af4ca\",\n            \"7d57dd65-606c-4e53-9b2a-d59efe089a20\",\n            \"389f0563-a57b-403e-9711-0ce6e5757d65\",\n            \"147ce85c-547f-4747-b457-a936de470fd5\",\n            \"ebffd917-43f2-46fb-ac80-0b20f842a0a3\",\n            \"6567dffd-7035-4589-bf2f-da52dfcc6073\",\n            \"ec87f64a-b5db-49c1-8804-2b7abc092160\",\n            \"4881e74a-0130-49db-b76c-f19c05cfc9f4\",\n            \"5ddb6e55-f173-49d2-8b67-33acf738c2fb\",\n            \"a7e1dbc1-2a0e-4505-b8e9-fb4bec732afe\",\n            \"ff0d19f8-a6d8-4188-80d7-585888ffb57f\",\n            \"905eda18-af89-4283-a5bb-9a92e23a6792\",\n            \"5658c072-948b-4ff1-8448-4e9184c262f8\",\n            \"72c28c19-dc9a-4cd1-8e33-7d435302f542\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89527130126953,\n      \"Text\": \"account (subaccount) are not to be used to discharge liabilities or to cover losses incurred in the administration of\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8184731602668762,\n          \"Height\": 0.01374120358377695,\n          \"Left\": 0.09402202069759369,\n          \"Top\": 0.23847396671772003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09402428567409515,\n            \"Y\": 0.23847396671772003\n          },\n          {\n            \"X\": 0.9124916195869446,\n            \"Y\": 0.23895788192749023\n          },\n          {\n            \"X\": 0.9124951362609863,\n            \"Y\": 0.252215176820755\n          },\n          {\n            \"X\": 0.09402202069759369,\n            \"Y\": 0.25172945857048035\n          }\n        ]\n      },\n      \"Id\": \"83b539da-a9ef-4e43-a5dd-5f9b50ad60be\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3ec05f9b-e857-4662-982d-e017bdd2cc14\",\n            \"db5ccb70-768e-4546-b88a-45519eb7c996\",\n            \"091ee2b0-b193-4a18-8f87-6713d7320e92\",\n            \"f10adb63-5197-40d7-bd73-2de79a189f02\",\n            \"56f2b7eb-66be-4422-a06b-3fea73f744da\",\n            \"59baa264-89f5-4a77-b233-15831b4e8dc1\",\n            \"b986116f-c0ba-4891-a234-d6e5446bc20b\",\n            \"c5a98ff5-b31e-44cf-8943-e364d471db10\",\n            \"2f40ed57-8936-4c8b-942a-985f6fd83910\",\n            \"1a53de21-4b73-4016-a234-ae028c5b91e3\",\n            \"bb3ba9b2-2807-4759-9e8e-cc611dff975e\",\n            \"aaa6680c-6bac-4573-b70b-4ac60c1b80ac\",\n            \"13785f8b-aadf-4503-afa1-a93ba334b628\",\n            \"41cf10fc-da3c-40fa-821c-7459a2096b64\",\n            \"07a619d0-e082-4eb0-9fd0-bbb89da795da\",\n            \"d5c8b74a-7b24-4ab3-bb4b-dd580bf89a50\",\n            \"aae4d055-cc08-4a33-beb8-4e1e813546b6\",\n            \"c738ba54-ad68-4f30-98ba-3e146ba9faa2\",\n            \"b234afad-622e-47c1-9837-6378a91f9503\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.44320678710938,\n      \"Text\": \"other accounts (subaccounts).\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21872234344482422,\n          \"Height\": 0.012812777422368526,\n          \"Left\": 0.09396176785230637,\n          \"Top\": 0.2554517984390259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09396393597126007,\n            \"Y\": 0.2554517984390259\n          },\n          {\n            \"X\": 0.3126841187477112,\n            \"Y\": 0.25558173656463623\n          },\n          {\n            \"X\": 0.31268343329429626,\n            \"Y\": 0.2682645618915558\n          },\n          {\n            \"X\": 0.09396176785230637,\n            \"Y\": 0.2681341767311096\n          }\n        ]\n      },\n      \"Id\": \"832a4c1f-9d2f-4f18-99ef-37eb49a2ca76\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96457c5c-d07d-41bf-ac13-b9e8e61d2055\",\n            \"a993f897-6fd7-43fa-80f9-1b1bd4242d08\",\n            \"b4133266-54fa-4223-9938-2698a4c12e92\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95457458496094,\n      \"Text\": \"The changes in total assets of these accounts were as follows:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4514772295951843,\n          \"Height\": 0.01316615380346775,\n          \"Left\": 0.09392870962619781,\n          \"Top\": 0.3035045862197876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0939309149980545,\n            \"Y\": 0.3035045862197876\n          },\n          {\n            \"X\": 0.5454050302505493,\n            \"Y\": 0.303776353597641\n          },\n          {\n            \"X\": 0.545405924320221,\n            \"Y\": 0.3166707456111908\n          },\n          {\n            \"X\": 0.09392870962619781,\n            \"Y\": 0.3163979947566986\n          }\n        ]\n      },\n      \"Id\": \"9d7d283a-3a98-4866-9665-0dbe21a15e02\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"282cb843-c0f3-403c-9cae-3578ff3ba03f\",\n            \"2b94ba16-efa0-49b6-975b-63ae13cc7209\",\n            \"b6e77682-bd4d-4427-a223-2aac6f21fb9a\",\n            \"f37a47b8-3423-4533-96db-69d34549aa66\",\n            \"0dedfa05-0537-4b25-8a56-5bf60d3749e8\",\n            \"5612412c-7ef9-4d08-af54-599109c34387\",\n            \"12dcb674-a206-4a98-9150-3cc0face2c56\",\n            \"9caf4b7d-4b0a-415a-ac68-d64c9e18513b\",\n            \"53b7d129-429f-47af-a7f2-1ec728133f03\",\n            \"fa06e9fd-60f2-46b6-93c2-8b1aba74beb5\",\n            \"6c611d71-5b93-468c-9fd4-527c46f7c3fb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81375122070312,\n      \"Text\": \"April 30,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05167880654335022,\n          \"Height\": 0.010071716271340847,\n          \"Left\": 0.5051074624061584,\n          \"Top\": 0.33661210536956787\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5051074624061584,\n            \"Y\": 0.33661210536956787\n          },\n          {\n            \"X\": 0.556785523891449,\n            \"Y\": 0.3366434872150421\n          },\n          {\n            \"X\": 0.556786298751831,\n            \"Y\": 0.3466838300228119\n          },\n          {\n            \"X\": 0.5051079988479614,\n            \"Y\": 0.3466523587703705\n          }\n        ]\n      },\n      \"Id\": \"2f5a348a-86de-4f2b-a6e3-54c374726f79\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"10646fb8-c86c-42c6-8d54-334fbe679eef\",\n            \"09bad234-9061-49df-862f-878dd0855ae0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.65056610107422,\n      \"Text\": \"Contributions / Net income / Transfers\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.25246867537498474,\n          \"Height\": 0.008858729153871536,\n          \"Left\": 0.5845335721969604,\n          \"Top\": 0.3362292945384979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5845335721969604,\n            \"Y\": 0.3362292945384979\n          },\n          {\n            \"X\": 0.8370002508163452,\n            \"Y\": 0.3363826274871826\n          },\n          {\n            \"X\": 0.8370022177696228,\n            \"Y\": 0.34508803486824036\n          },\n          {\n            \"X\": 0.5845343470573425,\n            \"Y\": 0.344934344291687\n          }\n        ]\n      },\n      \"Id\": \"2bc8e6c7-6267-42f5-bb82-44ad2dcd85ed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b2b0a0e-19f2-4228-9f7a-65949a2b1c74\",\n            \"91ef6bc5-71b0-4a03-bd0b-ca30aa47992c\",\n            \"8d5f866c-6841-4aa5-89a1-bcdf9d8d7774\",\n            \"3a885612-44f7-4d6b-882f-b4541eee1f33\",\n            \"b8f3b006-b961-4896-b9bb-e5d0042da25c\",\n            \"139349b8-e76e-4068-b74a-a402cf4c8c6d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7512435913086,\n      \"Text\": \"October 31,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07065112143754959,\n          \"Height\": 0.009670774452388287,\n          \"Left\": 0.8599080443382263,\n          \"Top\": 0.3366129398345947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8599080443382263,\n            \"Y\": 0.3366129398345947\n          },\n          {\n            \"X\": 0.9305564761161804,\n            \"Y\": 0.336655855178833\n          },\n          {\n            \"X\": 0.9305591583251953,\n            \"Y\": 0.3462837338447571\n          },\n          {\n            \"X\": 0.8599103093147278,\n            \"Y\": 0.34624069929122925\n          }\n        ]\n      },\n      \"Id\": \"2d9a4205-0d9f-4c05-8941-0b069f19c429\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"747092f5-fa82-4cbc-a43c-a10aff095099\",\n            \"22f02315-f591-48ce-9710-570620dc0a35\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.977294921875,\n      \"Text\": \"2021\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027683641761541367,\n          \"Height\": 0.008008001372218132,\n          \"Left\": 0.5171093940734863,\n          \"Top\": 0.3483313024044037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5171093940734863,\n            \"Y\": 0.3483313024044037\n          },\n          {\n            \"X\": 0.5447924733161926,\n            \"Y\": 0.34834814071655273\n          },\n          {\n            \"X\": 0.5447930097579956,\n            \"Y\": 0.3563392758369446\n          },\n          {\n            \"X\": 0.5171098113059998,\n            \"Y\": 0.35632237792015076\n          }\n        ]\n      },\n      \"Id\": \"cbffa156-cfab-480a-8888-70f9106f3d0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"66716a8f-321b-4dfa-8f10-f84170255e10\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9128646850586,\n      \"Text\": \"transfers in\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07107782363891602,\n          \"Height\": 0.008537827990949154,\n          \"Left\": 0.5949962139129639,\n          \"Top\": 0.3479679226875305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5949962139129639,\n            \"Y\": 0.3479679226875305\n          },\n          {\n            \"X\": 0.6660729050636292,\n            \"Y\": 0.34801122546195984\n          },\n          {\n            \"X\": 0.6660740375518799,\n            \"Y\": 0.35650575160980225\n          },\n          {\n            \"X\": 0.5949970483779907,\n            \"Y\": 0.35646235942840576\n          }\n        ]\n      },\n      \"Id\": \"66e5d0c3-ea18-4da3-9876-89e73315527f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9c3529dc-5248-46b2-9a68-11d1bf2923ff\",\n            \"d4702430-f95b-4669-a856-9a3f0acf97a6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94196319580078,\n      \"Text\": \"(loss)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03428610414266586,\n          \"Height\": 0.010315220803022385,\n          \"Left\": 0.7092127203941345,\n          \"Top\": 0.34802454710006714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7092127203941345,\n            \"Y\": 0.34802454710006714\n          },\n          {\n            \"X\": 0.7434970140457153,\n            \"Y\": 0.3480454087257385\n          },\n          {\n            \"X\": 0.7434988021850586,\n            \"Y\": 0.35833975672721863\n          },\n          {\n            \"X\": 0.7092143297195435,\n            \"Y\": 0.3583188056945801\n          }\n        ]\n      },\n      \"Id\": \"4a54d4b3-8006-489e-ac5f-7a45f845c58d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"26a952e4-3524-4c97-8dfd-43061b7f10e9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93180084228516,\n      \"Text\": \"out\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020119598135352135,\n          \"Height\": 0.007771907839924097,\n          \"Left\": 0.7976240515708923,\n          \"Top\": 0.348744660615921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7976240515708923,\n            \"Y\": 0.348744660615921\n          },\n          {\n            \"X\": 0.8177419900894165,\n            \"Y\": 0.34875690937042236\n          },\n          {\n            \"X\": 0.8177436590194702,\n            \"Y\": 0.3565165400505066\n          },\n          {\n            \"X\": 0.7976256608963013,\n            \"Y\": 0.35650426149368286\n          }\n        ]\n      },\n      \"Id\": \"e4447442-1aff-4392-82ed-c44997f66899\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e25c204c-3286-491f-ba57-3d92e71af8f7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97674560546875,\n      \"Text\": \"2021\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027827927842736244,\n          \"Height\": 0.008063133805990219,\n          \"Left\": 0.8807635307312012,\n          \"Top\": 0.3481891453266144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8807635307312012,\n            \"Y\": 0.3481891453266144\n          },\n          {\n            \"X\": 0.9085893630981445,\n            \"Y\": 0.348206102848053\n          },\n          {\n            \"X\": 0.9085914492607117,\n            \"Y\": 0.3562522828578949\n          },\n          {\n            \"X\": 0.8807655572891235,\n            \"Y\": 0.3562352955341339\n          }\n        ]\n      },\n      \"Id\": \"d5ff7481-bed9-4745-9f29-4eb9090b06c6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e5615969-1237-4e63-8996-b8054df7d22f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.00201416015625,\n      \"Text\": \"(in millions of SDRs)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12721917033195496,\n          \"Height\": 0.010510673746466637,\n          \"Left\": 0.6516987681388855,\n          \"Top\": 0.36862635612487793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6516987681388855,\n            \"Y\": 0.36862635612487793\n          },\n          {\n            \"X\": 0.7789158821105957,\n            \"Y\": 0.36870428919792175\n          },\n          {\n            \"X\": 0.7789179086685181,\n            \"Y\": 0.3791370093822479\n          },\n          {\n            \"X\": 0.6517000794410706,\n            \"Y\": 0.3790588676929474\n          }\n        ]\n      },\n      \"Id\": \"79c6da7b-d8ad-4bc5-98a3-be1c6b982636\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1f78a538-a8ad-4150-a188-d24cb91ee96d\",\n            \"91391922-426d-4ae4-820c-a03c9c4857c8\",\n            \"79930df2-9add-4480-ad74-dea95608f895\",\n            \"83c441ee-c6e8-433e-916e-0ee8407c5819\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.43528747558594,\n      \"Text\": \"Supplementary Financing Facility Subsidy Account\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2969191372394562,\n          \"Height\": 0.011742742732167244,\n          \"Left\": 0.09923765808343887,\n          \"Top\": 0.3899633586406708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09923959523439407,\n            \"Y\": 0.3899633586406708\n          },\n          {\n            \"X\": 0.39615678787231445,\n            \"Y\": 0.39014631509780884\n          },\n          {\n            \"X\": 0.3961566984653473,\n            \"Y\": 0.40170612931251526\n          },\n          {\n            \"X\": 0.09923765808343887,\n            \"Y\": 0.40152260661125183\n          }\n        ]\n      },\n      \"Id\": \"80021045-9e19-4a2d-b854-c2086604c95a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34097f28-91c4-4a5e-9a12-7a15a71a6e08\",\n            \"ffeb80c0-dc7c-48e6-81ca-e89665c68e47\",\n            \"380afcad-5e7c-4346-be57-a80dd36345fb\",\n            \"f53100e1-b571-4965-a70d-30f9bac1dab4\",\n            \"6d7b8efe-3b24-41c8-b6f5-4702120d9531\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65178680419922,\n      \"Text\": \"0.9\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01838512532413006,\n          \"Height\": 0.008325915783643723,\n          \"Left\": 0.5317409634590149,\n          \"Top\": 0.39137542247772217\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5317409634590149,\n            \"Y\": 0.39137542247772217\n          },\n          {\n            \"X\": 0.5501254796981812,\n            \"Y\": 0.3913867771625519\n          },\n          {\n            \"X\": 0.5501260757446289,\n            \"Y\": 0.3997013568878174\n          },\n          {\n            \"X\": 0.5317414402961731,\n            \"Y\": 0.39969000220298767\n          }\n        ]\n      },\n      \"Id\": \"25809043-9166-4b6b-a978-df8127a3c3ad\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6825288a-7feb-481c-b152-8eae64abba96\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 69.69273376464844,\n      \"Text\": \"**\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010377820581197739,\n          \"Height\": 0.003294130088761449,\n          \"Left\": 0.7309357523918152,\n          \"Top\": 0.3915030062198639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7309357523918152,\n            \"Y\": 0.3915030062198639\n          },\n          {\n            \"X\": 0.7413129806518555,\n            \"Y\": 0.39150938391685486\n          },\n          {\n            \"X\": 0.7413135766983032,\n            \"Y\": 0.39479711651802063\n          },\n          {\n            \"X\": 0.7309362888336182,\n            \"Y\": 0.39479073882102966\n          }\n        ]\n      },\n      \"Id\": \"d5fe6d81-1845-427a-a831-f26f3152accb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b6f4d390-65a9-46aa-8fd0-a5c855e83b0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.83621978759766,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01487675216048956,\n          \"Height\": 0.0024920518044382334,\n          \"Left\": 0.6393078565597534,\n          \"Top\": 0.39507216215133667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6393078565597534,\n            \"Y\": 0.39507216215133667\n          },\n          {\n            \"X\": 0.6541842818260193,\n            \"Y\": 0.3950813412666321\n          },\n          {\n            \"X\": 0.6541846394538879,\n            \"Y\": 0.39756420254707336\n          },\n          {\n            \"X\": 0.6393081545829773,\n            \"Y\": 0.39755502343177795\n          }\n        ]\n      },\n      \"Id\": \"2766a3dc-e091-4aad-9016-cfd6c70ce2d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"22cf6fc9-74d5-4c18-ad10-3c45597036bd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96549224853516,\n      \"Text\": \"(0.9)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026767950505018234,\n          \"Height\": 0.010027052834630013,\n          \"Left\": 0.8126078844070435,\n          \"Top\": 0.391043484210968\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8126078844070435,\n            \"Y\": 0.391043484210968\n          },\n          {\n            \"X\": 0.8393735885620117,\n            \"Y\": 0.3910599946975708\n          },\n          {\n            \"X\": 0.8393758535385132,\n            \"Y\": 0.4010705351829529\n          },\n          {\n            \"X\": 0.8126100301742554,\n            \"Y\": 0.4010539948940277\n          }\n        ]\n      },\n      \"Id\": \"eba993a5-3745-441f-96eb-1a6ec4765969\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"77e77d2a-2a7b-4140-9d25-d74d9942ddef\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.83393859863281,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014761989004909992,\n          \"Height\": 0.0023207750637084246,\n          \"Left\": 0.9110887050628662,\n          \"Top\": 0.39513465762138367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9110887050628662,\n            \"Y\": 0.39513465762138367\n          },\n          {\n            \"X\": 0.9258500933647156,\n            \"Y\": 0.3951437473297119\n          },\n          {\n            \"X\": 0.9258506894111633,\n            \"Y\": 0.3974554240703583\n          },\n          {\n            \"X\": 0.911089301109314,\n            \"Y\": 0.39744630455970764\n          }\n        ]\n      },\n      \"Id\": \"c5df1173-8f2a-48e2-819e-8634e7cf5b05\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d6801a44-e0ae-4802-b491-9a8c4d6554c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92414093017578,\n      \"Text\": \"Administered Account People's Bank of China\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26677456498146057,\n          \"Height\": 0.010446906089782715,\n          \"Left\": 0.09865160286426544,\n          \"Top\": 0.4124242663383484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09865333139896393,\n            \"Y\": 0.4124242663383484\n          },\n          {\n            \"X\": 0.3654261529445648,\n            \"Y\": 0.4125896096229553\n          },\n          {\n            \"X\": 0.36542588472366333,\n            \"Y\": 0.4228711724281311\n          },\n          {\n            \"X\": 0.09865160286426544,\n            \"Y\": 0.42270535230636597\n          }\n        ]\n      },\n      \"Id\": \"d0cee485-fe24-4f6b-9e73-15b03e41a3cb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5358b28e-d7b1-4f57-9f8b-b99dabe84cd9\",\n            \"bc721c9b-5201-4d4d-a83e-6fae893ebe81\",\n            \"6b5b745f-99c3-4891-bae4-7a212695d39f\",\n            \"c6424d12-cf46-4ac5-8117-6a2cfb9bfd78\",\n            \"e0a8a3d7-035f-4182-b108-011b4628c8ec\",\n            \"172c658a-0d16-4a0d-b50d-8a703852d037\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.46062469482422,\n      \"Text\": \"178.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030503328889608383,\n          \"Height\": 0.008532295934855938,\n          \"Left\": 0.5180454254150391,\n          \"Top\": 0.41264697909355164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5180454254150391,\n            \"Y\": 0.41264697909355164\n          },\n          {\n            \"X\": 0.54854816198349,\n            \"Y\": 0.4126659035682678\n          },\n          {\n            \"X\": 0.5485487580299377,\n            \"Y\": 0.42117929458618164\n          },\n          {\n            \"X\": 0.5180459022521973,\n            \"Y\": 0.42116034030914307\n          }\n        ]\n      },\n      \"Id\": \"58ce2b3d-87ff-47ee-b4dc-32292f68fa1e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e6cf40c-4f0b-4b07-85cb-28e16f0cd9c5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.7513198852539,\n      \"Text\": \"**\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010162388905882835,\n          \"Height\": 0.0039049906190484762,\n          \"Left\": 0.7308574318885803,\n          \"Top\": 0.41269049048423767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7308574318885803,\n            \"Y\": 0.41269049048423767\n          },\n          {\n            \"X\": 0.7410191297531128,\n            \"Y\": 0.4126967787742615\n          },\n          {\n            \"X\": 0.7410198450088501,\n            \"Y\": 0.4165954887866974\n          },\n          {\n            \"X\": 0.7308580875396729,\n            \"Y\": 0.4165891706943512\n          }\n        ]\n      },\n      \"Id\": \"032bf61e-edfb-4694-8898-ba95f27df5ce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1b035dec-bb2d-4db3-a216-b18153c45d70\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.8380126953125,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014756896533071995,\n          \"Height\": 0.002314892830327153,\n          \"Left\": 0.639248251914978,\n          \"Top\": 0.41687288880348206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.639248251914978,\n            \"Y\": 0.41687288880348206\n          },\n          {\n            \"X\": 0.6540048122406006,\n            \"Y\": 0.4168820381164551\n          },\n          {\n            \"X\": 0.6540051102638245,\n            \"Y\": 0.4191877841949463\n          },\n          {\n            \"X\": 0.6392484903335571,\n            \"Y\": 0.4191786050796509\n          }\n        ]\n      },\n      \"Id\": \"d96e7607-3559-4eb4-a6b6-140f340c985f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"86c54474-59f6-4477-b826-46cdbc2384c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86975860595703,\n      \"Text\": \"(2.2)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026759402826428413,\n          \"Height\": 0.010266831144690514,\n          \"Left\": 0.812705397605896,\n          \"Top\": 0.41256436705589294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.812705397605896,\n            \"Y\": 0.41256436705589294\n          },\n          {\n            \"X\": 0.8394624590873718,\n            \"Y\": 0.4125809669494629\n          },\n          {\n            \"X\": 0.8394647836685181,\n            \"Y\": 0.4228312075138092\n          },\n          {\n            \"X\": 0.8127075433731079,\n            \"Y\": 0.42281457781791687\n          }\n        ]\n      },\n      \"Id\": \"92a5af6f-ad33-4102-bd2c-b654df045f20\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e6c80a6d-3b77-4df9-9ffa-2104ef1d9f6b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95393371582031,\n      \"Text\": \"175.9\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03242531791329384,\n          \"Height\": 0.008486154489219189,\n          \"Left\": 0.8926869034767151,\n          \"Top\": 0.4126778244972229\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8926869034767151,\n            \"Y\": 0.4126778244972229\n          },\n          {\n            \"X\": 0.92510986328125,\n            \"Y\": 0.4126979112625122\n          },\n          {\n            \"X\": 0.9251121878623962,\n            \"Y\": 0.42116397619247437\n          },\n          {\n            \"X\": 0.892689049243927,\n            \"Y\": 0.4211438298225403\n          }\n        ]\n      },\n      \"Id\": \"759eba37-f21d-4179-89d1-e46473d0704b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"50256324-cec9-4100-8549-f70c0d16bbd7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81112670898438,\n      \"Text\": \"Somalia Administered Account\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17807483673095703,\n          \"Height\": 0.008481457829475403,\n          \"Left\": 0.09891686588525772,\n          \"Top\": 0.43423423171043396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09891827404499054,\n            \"Y\": 0.43423423171043396\n          },\n          {\n            \"X\": 0.27699169516563416,\n            \"Y\": 0.4343452453613281\n          },\n          {\n            \"X\": 0.2769910991191864,\n            \"Y\": 0.44271567463874817\n          },\n          {\n            \"X\": 0.09891686588525772,\n            \"Y\": 0.4426044225692749\n          }\n        ]\n      },\n      \"Id\": \"19fc7de8-c98e-4020-925d-a3d6eca294e8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3f11a638-5349-48a0-8409-d0a76e26a53b\",\n            \"cf730587-b681-48f9-a8f4-b8da88577020\",\n            \"75197cb6-c66e-4716-9a92-e9160460e098\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.92436218261719,\n      \"Text\": \"224.9\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03254067525267601,\n          \"Height\": 0.008513852953910828,\n          \"Left\": 0.5172187685966492,\n          \"Top\": 0.43430206179618835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172187685966492,\n            \"Y\": 0.43430206179618835\n          },\n          {\n            \"X\": 0.5497588515281677,\n            \"Y\": 0.4343223571777344\n          },\n          {\n            \"X\": 0.5497594475746155,\n            \"Y\": 0.4428159296512604\n          },\n          {\n            \"X\": 0.5172192454338074,\n            \"Y\": 0.4427955746650696\n          }\n        ]\n      },\n      \"Id\": \"da12f83f-5b6a-4fbc-931f-28955c412be5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fcc572b7-9f41-426b-a203-9348b8a28234\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.47703552246094,\n      \"Text\": \"8.0\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018025482073426247,\n          \"Height\": 0.008353388868272305,\n          \"Left\": 0.6349307298660278,\n          \"Top\": 0.43441474437713623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6349307298660278,\n            \"Y\": 0.43441474437713623\n          },\n          {\n            \"X\": 0.652955174446106,\n            \"Y\": 0.4344259798526764\n          },\n          {\n            \"X\": 0.6529561877250671,\n            \"Y\": 0.4427681267261505\n          },\n          {\n            \"X\": 0.634931743144989,\n            \"Y\": 0.44275686144828796\n          }\n        ]\n      },\n      \"Id\": \"309b6df4-e01d-4365-8fd3-42230a9b44ba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"29b1b245-65a6-450a-899f-0f67b8f69da6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83094024658203,\n      \"Text\": \"0.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017064621672034264,\n          \"Height\": 0.008382059633731842,\n          \"Left\": 0.7229316830635071,\n          \"Top\": 0.4342258870601654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229316830635071,\n            \"Y\": 0.4342258870601654\n          },\n          {\n            \"X\": 0.7399948835372925,\n            \"Y\": 0.4342365264892578\n          },\n          {\n            \"X\": 0.7399963140487671,\n            \"Y\": 0.44260793924331665\n          },\n          {\n            \"X\": 0.7229330539703369,\n            \"Y\": 0.44259729981422424\n          }\n        ]\n      },\n      \"Id\": \"e28c2ae0-e4e2-4b55-843c-cdba7fe6023f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d11ad0e5-1444-474c-a439-87c7da553a07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.0929183959961,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014816362410783768,\n          \"Height\": 0.00232748338021338,\n          \"Left\": 0.8189767003059387,\n          \"Top\": 0.43821215629577637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8189767003059387,\n            \"Y\": 0.43821215629577637\n          },\n          {\n            \"X\": 0.833792507648468,\n            \"Y\": 0.43822142481803894\n          },\n          {\n            \"X\": 0.833793044090271,\n            \"Y\": 0.4405396580696106\n          },\n          {\n            \"X\": 0.8189771771430969,\n            \"Y\": 0.440530389547348\n          }\n        ]\n      },\n      \"Id\": \"8a7ccc80-9c9a-48e7-be5d-d2b8cb252194\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d61d3b0f-57fa-43ed-8d3e-b37234e46554\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96021270751953,\n      \"Text\": \"233.0\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03317226096987724,\n          \"Height\": 0.008354859426617622,\n          \"Left\": 0.8919452428817749,\n          \"Top\": 0.4342987537384033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8919452428817749,\n            \"Y\": 0.4342987537384033\n          },\n          {\n            \"X\": 0.9251152276992798,\n            \"Y\": 0.4343194365501404\n          },\n          {\n            \"X\": 0.9251174926757812,\n            \"Y\": 0.442653626203537\n          },\n          {\n            \"X\": 0.891947329044342,\n            \"Y\": 0.44263291358947754\n          }\n        ]\n      },\n      \"Id\": \"ec4f7b92-6fdf-4e1c-a464-60233bb389a2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a8046a68-a819-4363-810c-d7478ae9aacf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 86.31681823730469,\n      \"Text\": \"Sudan Administered Account2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17286460101604462,\n          \"Height\": 0.009151401929557323,\n          \"Left\": 0.0990280881524086,\n          \"Top\": 0.45508620142936707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09902960807085037,\n            \"Y\": 0.45508620142936707\n          },\n          {\n            \"X\": 0.2718926966190338,\n            \"Y\": 0.4551945626735687\n          },\n          {\n            \"X\": 0.2718920111656189,\n            \"Y\": 0.46423760056495667\n          },\n          {\n            \"X\": 0.0990280881524086,\n            \"Y\": 0.4641289710998535\n          }\n        ]\n      },\n      \"Id\": \"70bc60d9-479e-4d33-9aaf-02bea779499f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a2673eaa-acb2-40a7-8ef9-ab7213daee88\",\n            \"eb9677f4-dcf3-4426-ad8e-e93bc9fdbc3f\",\n            \"17c7f917-16ff-4116-a28b-0f04bf33dc0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.9155044555664,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014651252888143063,\n          \"Height\": 0.002121728379279375,\n          \"Left\": 0.5362687706947327,\n          \"Top\": 0.45995721220970154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5362687706947327,\n            \"Y\": 0.45995721220970154\n          },\n          {\n            \"X\": 0.5509198904037476,\n            \"Y\": 0.45996642112731934\n          },\n          {\n            \"X\": 0.5509200692176819,\n            \"Y\": 0.4620789587497711\n          },\n          {\n            \"X\": 0.536268949508667,\n            \"Y\": 0.4620697498321533\n          }\n        ]\n      },\n      \"Id\": \"0cb981f6-0f72-4a9c-a3ab-faf97aba0c71\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55904831-392e-4c24-8a28-e941463647f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82044982910156,\n      \"Text\": \"653.0\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03297549858689308,\n          \"Height\": 0.008483055047690868,\n          \"Left\": 0.6199467778205872,\n          \"Top\": 0.455857515335083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6199467778205872,\n            \"Y\": 0.455857515335083\n          },\n          {\n            \"X\": 0.652921199798584,\n            \"Y\": 0.45587819814682007\n          },\n          {\n            \"X\": 0.6529222726821899,\n            \"Y\": 0.46434056758880615\n          },\n          {\n            \"X\": 0.6199476718902588,\n            \"Y\": 0.4643198549747467\n          }\n        ]\n      },\n      \"Id\": \"27c79dfb-ba6d-4986-b339-bc8671abaaf5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afd0c405-2c7a-4353-9692-183304a19388\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87775421142578,\n      \"Text\": \"0.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016978537663817406,\n          \"Height\": 0.00841369666159153,\n          \"Left\": 0.7229979634284973,\n          \"Top\": 0.45586320757865906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229979634284973,\n            \"Y\": 0.45586320757865906\n          },\n          {\n            \"X\": 0.7399750351905823,\n            \"Y\": 0.45587384700775146\n          },\n          {\n            \"X\": 0.7399765253067017,\n            \"Y\": 0.46427690982818604\n          },\n          {\n            \"X\": 0.7229993343353271,\n            \"Y\": 0.46426624059677124\n          }\n        ]\n      },\n      \"Id\": \"9b87584c-8c30-4e8c-a714-f34275009f5b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"426cde40-181e-4278-9b0b-153613e910d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92355346679688,\n      \"Text\": \"(0.5)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02668021433055401,\n          \"Height\": 0.010533343069255352,\n          \"Left\": 0.8126025199890137,\n          \"Top\": 0.45551934838294983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8126025199890137,\n            \"Y\": 0.45551934838294983\n          },\n          {\n            \"X\": 0.8392803072929382,\n            \"Y\": 0.4555360674858093\n          },\n          {\n            \"X\": 0.839282751083374,\n            \"Y\": 0.46605271100997925\n          },\n          {\n            \"X\": 0.8126047253608704,\n            \"Y\": 0.466035932302475\n          }\n        ]\n      },\n      \"Id\": \"a47fd7b7-171a-4182-8ba0-35c55337fc6f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68b7deb3-e1c1-4231-b0b7-6eae1c9986af\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95960235595703,\n      \"Text\": \"652.6\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03297312930226326,\n          \"Height\": 0.008464285172522068,\n          \"Left\": 0.8921318054199219,\n          \"Top\": 0.4557745158672333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8921318054199219,\n            \"Y\": 0.4557745158672333\n          },\n          {\n            \"X\": 0.9251026511192322,\n            \"Y\": 0.45579519867897034\n          },\n          {\n            \"X\": 0.9251049160957336,\n            \"Y\": 0.46423882246017456\n          },\n          {\n            \"X\": 0.8921339511871338,\n            \"Y\": 0.4642180800437927\n          }\n        ]\n      },\n      \"Id\": \"0b8b1380-b8b3-4f01-bf19-d0fbffe37f09\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e375f93-5aa7-4173-98d3-e1cc0c0eac67\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.4002914428711,\n      \"Text\": \"Framework Interim Account\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16404706239700317,\n          \"Height\": 0.009503122419118881,\n          \"Left\": 0.09904022514820099,\n          \"Top\": 0.4770224094390869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09904180467128754,\n            \"Y\": 0.4770224094390869\n          },\n          {\n            \"X\": 0.26308730244636536,\n            \"Y\": 0.4771258234977722\n          },\n          {\n            \"X\": 0.2630865275859833,\n            \"Y\": 0.4865255355834961\n          },\n          {\n            \"X\": 0.09904022514820099,\n            \"Y\": 0.4864218533039093\n          }\n        ]\n      },\n      \"Id\": \"c8e0d2bd-98a7-446d-b484-0e0428993343\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b6da673-cf66-41eb-8aff-2bc0588e8a4e\",\n            \"4e845789-65dd-4a5c-b479-a88bd20f1ef5\",\n            \"227e3c38-8fe2-4dde-a476-69e3cc00f698\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80412292480469,\n      \"Text\": \"186.7\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03181260824203491,\n          \"Height\": 0.008394600823521614,\n          \"Left\": 0.5181803703308105,\n          \"Top\": 0.47809523344039917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5181803703308105,\n            \"Y\": 0.47809523344039917\n          },\n          {\n            \"X\": 0.5499923825263977,\n            \"Y\": 0.4781152904033661\n          },\n          {\n            \"X\": 0.5499929785728455,\n            \"Y\": 0.48648983240127563\n          },\n          {\n            \"X\": 0.5181808471679688,\n            \"Y\": 0.48646974563598633\n          }\n        ]\n      },\n      \"Id\": \"8f922c06-0a26-4b88-a99e-07a4193d0fc7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81ee46ee-9183-4e28-88a2-d06f44cf26fb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81877136230469,\n      \"Text\": \"210.8\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033066585659980774,\n          \"Height\": 0.008570018224418163,\n          \"Left\": 0.6198625564575195,\n          \"Top\": 0.47806668281555176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6198625564575195,\n            \"Y\": 0.47806668281555176\n          },\n          {\n            \"X\": 0.6529280543327332,\n            \"Y\": 0.47808751463890076\n          },\n          {\n            \"X\": 0.6529291272163391,\n            \"Y\": 0.4866366982460022\n          },\n          {\n            \"X\": 0.6198635101318359,\n            \"Y\": 0.4866158068180084\n          }\n        ]\n      },\n      \"Id\": \"d321e8fd-3f62-4230-9809-67bb551f7bf0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f8e46cf-7e4b-435c-b262-0920aef47045\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9051742553711,\n      \"Text\": \"0.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016930826008319855,\n          \"Height\": 0.008561721071600914,\n          \"Left\": 0.7229181528091431,\n          \"Top\": 0.4780835807323456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229181528091431,\n            \"Y\": 0.4780835807323456\n          },\n          {\n            \"X\": 0.7398474812507629,\n            \"Y\": 0.4780942499637604\n          },\n          {\n            \"X\": 0.7398489713668823,\n            \"Y\": 0.48664531111717224\n          },\n          {\n            \"X\": 0.7229195833206177,\n            \"Y\": 0.48663461208343506\n          }\n        ]\n      },\n      \"Id\": \"cadeaa33-82b5-4398-bb6d-de1427b45267\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4401e828-a79e-4b41-ad24-e1aff1a08a19\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96096801757812,\n      \"Text\": \"(33.6)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03410457447171211,\n          \"Height\": 0.009981617331504822,\n          \"Left\": 0.8053233623504639,\n          \"Top\": 0.4779271185398102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8053233623504639,\n            \"Y\": 0.4779271185398102\n          },\n          {\n            \"X\": 0.8394256830215454,\n            \"Y\": 0.4779486358165741\n          },\n          {\n            \"X\": 0.8394279479980469,\n            \"Y\": 0.4879087507724762\n          },\n          {\n            \"X\": 0.805325448513031,\n            \"Y\": 0.4878871738910675\n          }\n        ]\n      },\n      \"Id\": \"189d8d77-784b-4bc6-8129-35b6b085d12f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5377695-2f2d-46a0-bbc6-aee60a4acd2d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97181701660156,\n      \"Text\": \"364.0\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03290132060647011,\n          \"Height\": 0.00842680037021637,\n          \"Left\": 0.8921893239021301,\n          \"Top\": 0.47809749841690063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8921893239021301,\n            \"Y\": 0.47809749841690063\n          },\n          {\n            \"X\": 0.9250883460044861,\n            \"Y\": 0.47811824083328247\n          },\n          {\n            \"X\": 0.9250906705856323,\n            \"Y\": 0.4865243136882782\n          },\n          {\n            \"X\": 0.892191469669342,\n            \"Y\": 0.4865035116672516\n          }\n        ]\n      },\n      \"Id\": \"d7358027-16af-481d-a1f3-6338d609bcab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ae797609-9e94-4d70-93ef-1ebadf940a51\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72489929199219,\n      \"Text\": \"(in millions of U.S. dollars)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1642865538597107,\n          \"Height\": 0.01044241338968277,\n          \"Left\": 0.6335120797157288,\n          \"Top\": 0.4992300570011139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6335120797157288,\n            \"Y\": 0.4992300570011139\n          },\n          {\n            \"X\": 0.7977964878082275,\n            \"Y\": 0.4993342161178589\n          },\n          {\n            \"X\": 0.7977986335754395,\n            \"Y\": 0.5096724629402161\n          },\n          {\n            \"X\": 0.6335132718086243,\n            \"Y\": 0.5095680356025696\n          }\n        ]\n      },\n      \"Id\": \"8c73fd1e-edc0-4dc6-8fe6-bce511fe7070\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e4502487-282d-45e9-8037-9114e8c1380c\",\n            \"8927ee7d-c31f-4136-b41a-e615e9685b51\",\n            \"cc335cf4-4ef0-4683-8bf5-7f67e72c5c52\",\n            \"829091f2-0eac-4709-a228-aa65ddccce12\",\n            \"308e2d31-237d-4354-85a0-c178110d39d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 86.91358947753906,\n      \"Text\": \"Administered Account Japan3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17186948657035828,\n          \"Height\": 0.010903526097536087,\n          \"Left\": 0.09818638116121292,\n          \"Top\": 0.5202950835227966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09818820655345917,\n            \"Y\": 0.5202950835227966\n          },\n          {\n            \"X\": 0.2700558602809906,\n            \"Y\": 0.5204046964645386\n          },\n          {\n            \"X\": 0.27005505561828613,\n            \"Y\": 0.5311986207962036\n          },\n          {\n            \"X\": 0.09818638116121292,\n            \"Y\": 0.5310887098312378\n          }\n        ]\n      },\n      \"Id\": \"2a6ae35d-98b3-4bad-ae8a-85dfa3ccb5be\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bf82c026-b5b7-447b-86c2-0827f4cdba69\",\n            \"f3e94be1-504b-40a2-bca8-4a1ac22c048c\",\n            \"2c8c967c-3824-4e6b-8d01-5716e8c2d4cd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94896697998047,\n      \"Text\": \"279.0\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03275129199028015,\n          \"Height\": 0.008385010063648224,\n          \"Left\": 0.5172755122184753,\n          \"Top\": 0.5212523341178894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172755122184753,\n            \"Y\": 0.5212523341178894\n          },\n          {\n            \"X\": 0.5500261783599854,\n            \"Y\": 0.5212731957435608\n          },\n          {\n            \"X\": 0.5500267744064331,\n            \"Y\": 0.529637336730957\n          },\n          {\n            \"X\": 0.5172759294509888,\n            \"Y\": 0.5296164155006409\n          }\n        ]\n      },\n      \"Id\": \"2879ab1d-0062-45d1-bcae-4fe6a12ef5ba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f1edae2-d7cb-4ad7-94c4-555c3212b298\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.06403350830078,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014544103294610977,\n          \"Height\": 0.0022092903964221478,\n          \"Left\": 0.63911372423172,\n          \"Top\": 0.525206983089447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.63911372423172,\n            \"Y\": 0.525206983089447\n          },\n          {\n            \"X\": 0.6536575555801392,\n            \"Y\": 0.5252162218093872\n          },\n          {\n            \"X\": 0.6536577939987183,\n            \"Y\": 0.5274162292480469\n          },\n          {\n            \"X\": 0.6391139626502991,\n            \"Y\": 0.5274069309234619\n          }\n        ]\n      },\n      \"Id\": \"9f60471c-ebfa-47d1-9b37-bd01d07f08f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67da8660-d7e9-463a-bd04-7bd9b8a120a8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92974090576172,\n      \"Text\": \"0.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016934964805841446,\n          \"Height\": 0.008725491352379322,\n          \"Left\": 0.7229637503623962,\n          \"Top\": 0.5210941433906555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229637503623962,\n            \"Y\": 0.5210941433906555\n          },\n          {\n            \"X\": 0.7398971915245056,\n            \"Y\": 0.5211049914360046\n          },\n          {\n            \"X\": 0.739898681640625,\n            \"Y\": 0.529819667339325\n          },\n          {\n            \"X\": 0.7229651808738708,\n            \"Y\": 0.5298088192939758\n          }\n        ]\n      },\n      \"Id\": \"399d579b-d1c7-4a67-9161-185398fddde7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81133539-4882-40f8-a086-e602e536b681\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83872985839844,\n      \"Text\": \"(50.0)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03401261195540428,\n          \"Height\": 0.01035663764923811,\n          \"Left\": 0.8053510189056396,\n          \"Top\": 0.5210024118423462\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8053510189056396,\n            \"Y\": 0.5210024118423462\n          },\n          {\n            \"X\": 0.839361310005188,\n            \"Y\": 0.5210241079330444\n          },\n          {\n            \"X\": 0.8393636345863342,\n            \"Y\": 0.531359076499939\n          },\n          {\n            \"X\": 0.8053531646728516,\n            \"Y\": 0.531337320804596\n          }\n        ]\n      },\n      \"Id\": \"c4306ce9-365c-4aff-8a56-51e76396c097\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a39c45dc-2d42-4292-a541-3eb44101f145\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90898132324219,\n      \"Text\": \"229.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031707145273685455,\n          \"Height\": 0.008443168364465237,\n          \"Left\": 0.8919540047645569,\n          \"Top\": 0.5212310552597046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8919540047645569,\n            \"Y\": 0.5212310552597046\n          },\n          {\n            \"X\": 0.9236588478088379,\n            \"Y\": 0.5212512612342834\n          },\n          {\n            \"X\": 0.9236611127853394,\n            \"Y\": 0.529674232006073\n          },\n          {\n            \"X\": 0.8919561505317688,\n            \"Y\": 0.5296539664268494\n          }\n        ]\n      },\n      \"Id\": \"c38cec55-1ec0-4b05-a989-075e779e4432\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96e5c5ab-382c-46f4-90de-c5c7b3b60274\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9267578125,\n      \"Text\": \"Framework Administered Account for Selected Fund Activities\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.35767418146133423,\n          \"Height\": 0.008840895257890224,\n          \"Left\": 0.09910006821155548,\n          \"Top\": 0.5432153940200806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09910151362419128,\n            \"Y\": 0.5432153940200806\n          },\n          {\n            \"X\": 0.4567740559577942,\n            \"Y\": 0.543444812297821\n          },\n          {\n            \"X\": 0.4567742645740509,\n            \"Y\": 0.5520563125610352\n          },\n          {\n            \"X\": 0.09910006821155548,\n            \"Y\": 0.5518264174461365\n          }\n        ]\n      },\n      \"Id\": \"b27a894d-ab01-4afa-a012-471c880a9ba0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4f4ed387-8345-409f-8eab-762c4fb64ae7\",\n            \"c8d87cc0-8397-4269-85c5-faa1b1cae3b0\",\n            \"b8971a0d-8f37-487e-b106-4e84c499cc89\",\n            \"c746a9c2-a55e-4d70-87a1-de19db55a761\",\n            \"fc1b0c0e-5af3-4740-9060-30eb5fd5b24a\",\n            \"8dca1876-48e0-4e2b-91ee-e75640f9b85e\",\n            \"b05e8a1f-8950-4208-8a1c-89468efda9cc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97798919677734,\n      \"Text\": \"425.8\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03262467682361603,\n          \"Height\": 0.008430032059550285,\n          \"Left\": 0.517191469669342,\n          \"Top\": 0.543376624584198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.517191469669342,\n            \"Y\": 0.543376624584198\n          },\n          {\n            \"X\": 0.5498155355453491,\n            \"Y\": 0.5433975458145142\n          },\n          {\n            \"X\": 0.5498161911964417,\n            \"Y\": 0.551806628704071\n          },\n          {\n            \"X\": 0.5171919465065002,\n            \"Y\": 0.5517857074737549\n          }\n        ]\n      },\n      \"Id\": \"f9cce1db-1701-43b9-8c0c-8aebe79ed38a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"498aa71e-a79f-4e47-ba19-517802b4dd2c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73516845703125,\n      \"Text\": \"66.4\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025384092703461647,\n          \"Height\": 0.008414817042648792,\n          \"Left\": 0.6274357438087463,\n          \"Top\": 0.5434505939483643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6274357438087463,\n            \"Y\": 0.5434505939483643\n          },\n          {\n            \"X\": 0.6528187394142151,\n            \"Y\": 0.5434668660163879\n          },\n          {\n            \"X\": 0.652819812297821,\n            \"Y\": 0.5518653988838196\n          },\n          {\n            \"X\": 0.6274366974830627,\n            \"Y\": 0.5518490672111511\n          }\n        ]\n      },\n      \"Id\": \"e12a28f1-1e11-4b22-88e9-965cc2d2313d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"805aea4f-86a5-4c37-bc10-e01f0d2caa0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94337463378906,\n      \"Text\": \"0.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017174270004034042,\n          \"Height\": 0.008556858636438847,\n          \"Left\": 0.7228876352310181,\n          \"Top\": 0.5433524250984192\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7228876352310181,\n            \"Y\": 0.5433524250984192\n          },\n          {\n            \"X\": 0.7400604486465454,\n            \"Y\": 0.5433633923530579\n          },\n          {\n            \"X\": 0.7400619387626648,\n            \"Y\": 0.5519092679023743\n          },\n          {\n            \"X\": 0.7228890657424927,\n            \"Y\": 0.5518982410430908\n          }\n        ]\n      },\n      \"Id\": \"39d0bd15-18c2-4e7b-a5f5-dc4ea8d1150f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b12cb94-a9f1-4856-a95f-e798ee8c0498\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.17211151123047,\n      \"Text\": \"(67.1)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03402953967452049,\n          \"Height\": 0.010114100761711597,\n          \"Left\": 0.8051763772964478,\n          \"Top\": 0.5432726144790649\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8051763772964478,\n            \"Y\": 0.5432726144790649\n          },\n          {\n            \"X\": 0.8392036557197571,\n            \"Y\": 0.5432944297790527\n          },\n          {\n            \"X\": 0.8392059206962585,\n            \"Y\": 0.5533866882324219\n          },\n          {\n            \"X\": 0.8051784634590149,\n            \"Y\": 0.5533648133277893\n          }\n        ]\n      },\n      \"Id\": \"56e51128-c30c-4bac-84ba-9eb8c884098f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b15644a-179f-42f1-804c-e89ad0a5914c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.9655990600586,\n      \"Text\": \"425.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033508896827697754,\n          \"Height\": 0.008409774862229824,\n          \"Left\": 0.8917081952095032,\n          \"Top\": 0.5434271097183228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8917081952095032,\n            \"Y\": 0.5434271097183228\n          },\n          {\n            \"X\": 0.9252148270606995,\n            \"Y\": 0.5434486269950867\n          },\n          {\n            \"X\": 0.9252170920372009,\n            \"Y\": 0.5518369078636169\n          },\n          {\n            \"X\": 0.8917103409767151,\n            \"Y\": 0.551815390586853\n          }\n        ]\n      },\n      \"Id\": \"e3544281-562a-4f50-8ccf-db72aef134ad\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"64cfa011-2c83-44d6-ab18-4ae004f85850\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87399291992188,\n      \"Text\": \"Administered Account for Interim Holdings of Voluntary\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.31838589906692505,\n          \"Height\": 0.0106936851516366,\n          \"Left\": 0.09831230342388153,\n          \"Top\": 0.5625390410423279\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.098314069211483,\n            \"Y\": 0.5625390410423279\n          },\n          {\n            \"X\": 0.4166981875896454,\n            \"Y\": 0.5627442598342896\n          },\n          {\n            \"X\": 0.4166981875896454,\n            \"Y\": 0.5732327699661255\n          },\n          {\n            \"X\": 0.09831230342388153,\n            \"Y\": 0.5730269551277161\n          }\n        ]\n      },\n      \"Id\": \"7069122a-3db8-41f8-b616-09a08bf53e44\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d57f1857-ee99-44cf-820b-d0ad783f529a\",\n            \"b1c5d5bd-788a-47fb-9684-23b5099fbfa4\",\n            \"d3028b3c-3814-40a0-bf75-004d8e5330d1\",\n            \"1eb3c498-e480-4633-bf15-066aa9988a33\",\n            \"0930d282-26a4-4fd5-8b8c-00c36f3b3c9d\",\n            \"fc7e0079-6706-43b0-a85a-0fabfd79c7b9\",\n            \"17f6c74b-7d39-4e73-8f5b-ed8312a5cb5a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.33567810058594,\n      \"Text\": \"Contributions for Fund Activities\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18904787302017212,\n          \"Height\": 0.008910559117794037,\n          \"Left\": 0.09898991882801056,\n          \"Top\": 0.5739494562149048\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09899139404296875,\n            \"Y\": 0.5739494562149048\n          },\n          {\n            \"X\": 0.28803780674934387,\n            \"Y\": 0.5740716457366943\n          },\n          {\n            \"X\": 0.2880372107028961,\n            \"Y\": 0.582859992980957\n          },\n          {\n            \"X\": 0.09898991882801056,\n            \"Y\": 0.5827375054359436\n          }\n        ]\n      },\n      \"Id\": \"9db0f682-746a-4943-b805-3e5abd70bd71\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81824642-2185-43a4-8a0c-ada74f176015\",\n            \"1ea07f75-8bce-4b3e-a143-d5084bf25c82\",\n            \"3901c22b-a297-4c68-93bf-643c4119de82\",\n            \"3bd9035d-009a-4d42-9826-98c7b0f50f95\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.51028442382812,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0147967878729105,\n          \"Height\": 0.0022516471799463034,\n          \"Left\": 0.5362036228179932,\n          \"Top\": 0.5782873630523682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5362036228179932,\n            \"Y\": 0.5782873630523682\n          },\n          {\n            \"X\": 0.5510002970695496,\n            \"Y\": 0.578296959400177\n          },\n          {\n            \"X\": 0.5510004162788391,\n            \"Y\": 0.5805390477180481\n          },\n          {\n            \"X\": 0.5362038016319275,\n            \"Y\": 0.5805294513702393\n          }\n        ]\n      },\n      \"Id\": \"9c2de95b-073a-4075-b037-bc46788c49e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"104d5ae2-37d4-4aad-855d-0b26c8ef7eee\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.64248657226562,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014849746599793434,\n          \"Height\": 0.0022246697917580605,\n          \"Left\": 0.6392083168029785,\n          \"Top\": 0.5782706141471863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6392083168029785,\n            \"Y\": 0.5782706141471863\n          },\n          {\n            \"X\": 0.6540577411651611,\n            \"Y\": 0.5782802104949951\n          },\n          {\n            \"X\": 0.654058039188385,\n            \"Y\": 0.580495297908783\n          },\n          {\n            \"X\": 0.6392085552215576,\n            \"Y\": 0.5804856419563293\n          }\n        ]\n      },\n      \"Id\": \"3c73578e-5e75-4f65-a2c5-b65d58e302f1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c7058c6-6fa5-4ab5-a412-75ed10cec6a7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.31015014648438,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014701824635267258,\n          \"Height\": 0.002169540384784341,\n          \"Left\": 0.7271449565887451,\n          \"Top\": 0.5783023238182068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7271449565887451,\n            \"Y\": 0.5783023238182068\n          },\n          {\n            \"X\": 0.7418463826179504,\n            \"Y\": 0.5783118605613708\n          },\n          {\n            \"X\": 0.7418467402458191,\n            \"Y\": 0.5804718732833862\n          },\n          {\n            \"X\": 0.7271453142166138,\n            \"Y\": 0.5804623961448669\n          }\n        ]\n      },\n      \"Id\": \"ad6ce9a3-1c7a-476b-bfc5-0aabbe4b2096\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cc62967d-0730-494d-848f-4c13f458c287\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.17951965332031,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014820035547018051,\n          \"Height\": 0.0021082607563585043,\n          \"Left\": 0.822374165058136,\n          \"Top\": 0.5783460140228271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.822374165058136,\n            \"Y\": 0.5783460140228271\n          },\n          {\n            \"X\": 0.8371937274932861,\n            \"Y\": 0.578355610370636\n          },\n          {\n            \"X\": 0.8371942043304443,\n            \"Y\": 0.5804542899131775\n          },\n          {\n            \"X\": 0.8223746418952942,\n            \"Y\": 0.5804446935653687\n          }\n        ]\n      },\n      \"Id\": \"01f1cb7d-5147-45b6-9b51-270072ec6d40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4cdf3035-1f04-4f09-84d6-3152600a87d8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.56625366210938,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014707767404615879,\n          \"Height\": 0.0021358837839215994,\n          \"Left\": 0.9110796451568604,\n          \"Top\": 0.5783584713935852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9110796451568604,\n            \"Y\": 0.5783584713935852\n          },\n          {\n            \"X\": 0.9257868528366089,\n            \"Y\": 0.5783680081367493\n          },\n          {\n            \"X\": 0.9257874488830566,\n            \"Y\": 0.5804944038391113\n          },\n          {\n            \"X\": 0.9110802412033081,\n            \"Y\": 0.5804848670959473\n          }\n        ]\n      },\n      \"Id\": \"dfd1e6d0-a218-43e5-91fb-61d8f9a180b0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aa713b33-6d68-4647-807f-791e2816ba03\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.8276138305664,\n      \"Text\": \"Administered Account - Switzerland\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20983903110027313,\n          \"Height\": 0.008864061906933784,\n          \"Left\": 0.09794101119041443,\n          \"Top\": 0.596287727355957\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09794248640537262,\n            \"Y\": 0.596287727355957\n          },\n          {\n            \"X\": 0.30778005719184875,\n            \"Y\": 0.5964241623878479\n          },\n          {\n            \"X\": 0.30777955055236816,\n            \"Y\": 0.6051518321037292\n          },\n          {\n            \"X\": 0.09794101119041443,\n            \"Y\": 0.6050150990486145\n          }\n        ]\n      },\n      \"Id\": \"890cc366-b3d1-40fa-9254-c106077553f5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fdd20a32-a5aa-430f-a6f8-bba90d3dd1f4\",\n            \"fdb7bb0b-7b91-44cf-9b9e-79b34d955002\",\n            \"7f741e4d-3fb9-40fa-ad15-43bfca941a45\",\n            \"0d260337-37c7-4717-83e6-5dba2a5c9888\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 89.7455062866211,\n      \"Text\": \"**\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010340782813727856,\n          \"Height\": 0.0037655411288142204,\n          \"Left\": 0.5401411056518555,\n          \"Top\": 0.5966303944587708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5401411056518555,\n            \"Y\": 0.5966303944587708\n          },\n          {\n            \"X\": 0.5504816174507141,\n            \"Y\": 0.5966371297836304\n          },\n          {\n            \"X\": 0.550481915473938,\n            \"Y\": 0.600395917892456\n          },\n          {\n            \"X\": 0.5401414036750793,\n            \"Y\": 0.6003891825675964\n          }\n        ]\n      },\n      \"Id\": \"d996cf4d-afda-419c-a51e-de72c2e8dfc6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bb9a2b5c-61a3-41a9-bc6d-feead71e8f8b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80023956298828,\n      \"Text\": \"1.6\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0173890832811594,\n          \"Height\": 0.008534150198101997,\n          \"Left\": 0.6356040239334106,\n          \"Top\": 0.5965507626533508\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6356040239334106,\n            \"Y\": 0.5965507626533508\n          },\n          {\n            \"X\": 0.6529920101165771,\n            \"Y\": 0.5965620279312134\n          },\n          {\n            \"X\": 0.6529930830001831,\n            \"Y\": 0.6050848960876465\n          },\n          {\n            \"X\": 0.6356050372123718,\n            \"Y\": 0.6050735712051392\n          }\n        ]\n      },\n      \"Id\": \"eb126a63-0b7c-4d0e-924e-6855f8ce4522\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a9647ff-b5b6-4fa5-a9f9-43ce55e1d8e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.56011962890625,\n      \"Text\": \"(1.6)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026705607771873474,\n          \"Height\": 0.010201111435890198,\n          \"Left\": 0.8125906586647034,\n          \"Top\": 0.5964352488517761\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8125906586647034,\n            \"Y\": 0.5964352488517761\n          },\n          {\n            \"X\": 0.8392939567565918,\n            \"Y\": 0.5964526534080505\n          },\n          {\n            \"X\": 0.839296281337738,\n            \"Y\": 0.6066364049911499\n          },\n          {\n            \"X\": 0.8125928640365601,\n            \"Y\": 0.6066190004348755\n          }\n        ]\n      },\n      \"Id\": \"afb68475-73dd-4fba-86fa-3b5ed82179b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"85003356-0676-434c-ac1a-d3470330e100\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.08413696289062,\n      \"Text\": \"**\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010456024669110775,\n          \"Height\": 0.0036083701997995377,\n          \"Left\": 0.9147530794143677,\n          \"Top\": 0.5966693162918091\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9147530794143677,\n            \"Y\": 0.5966693162918091\n          },\n          {\n            \"X\": 0.9252080917358398,\n            \"Y\": 0.5966761708259583\n          },\n          {\n            \"X\": 0.925209105014801,\n            \"Y\": 0.6002777218818665\n          },\n          {\n            \"X\": 0.9147540330886841,\n            \"Y\": 0.6002709269523621\n          }\n        ]\n      },\n      \"Id\": \"26187b32-4498-4e68-a9d5-90745824d857\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7ce5a45-aec4-4429-9d4d-49b19e57b47a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.6274185180664,\n      \"Text\": \"-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014550291933119297,\n          \"Height\": 0.0022243510466068983,\n          \"Left\": 0.7271994948387146,\n          \"Top\": 0.6007333993911743\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7271994948387146,\n            \"Y\": 0.6007333993911743\n          },\n          {\n            \"X\": 0.7417494058609009,\n            \"Y\": 0.6007428765296936\n          },\n          {\n            \"X\": 0.7417497634887695,\n            \"Y\": 0.6029577255249023\n          },\n          {\n            \"X\": 0.7271998524665833,\n            \"Y\": 0.6029482483863831\n          }\n        ]\n      },\n      \"Id\": \"87669421-1d87-47c5-8737-28df08b3fb20\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d1c193a9-4f3e-4c17-b1e5-c80331bfe900\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 89.48284912109375,\n      \"Text\": \"**\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009715652093291283,\n          \"Height\": 0.004147687926888466,\n          \"Left\": 0.09419460594654083,\n          \"Top\": 0.6171811819076538\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09419531375169754,\n            \"Y\": 0.6171811819076538\n          },\n          {\n            \"X\": 0.10391025990247726,\n            \"Y\": 0.6171875\n          },\n          {\n            \"X\": 0.10390957444906235,\n            \"Y\": 0.6213288307189941\n          },\n          {\n            \"X\": 0.09419460594654083,\n            \"Y\": 0.621322512626648\n          }\n        ]\n      },\n      \"Id\": \"acb80e54-d122-431b-9919-d82ec143b20d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5cf874f4-4bd1-4e41-a23d-f0c54e98f4d1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.51869201660156,\n      \"Text\": \"Less than US$50,000.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12089700251817703,\n          \"Height\": 0.009247124195098877,\n          \"Left\": 0.10878956317901611,\n          \"Top\": 0.6175515651702881\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1087910532951355,\n            \"Y\": 0.6175515651702881\n          },\n          {\n            \"X\": 0.22968655824661255,\n            \"Y\": 0.6176306009292603\n          },\n          {\n            \"X\": 0.22968566417694092,\n            \"Y\": 0.626798689365387\n          },\n          {\n            \"X\": 0.10878956317901611,\n            \"Y\": 0.6267194747924805\n          }\n        ]\n      },\n      \"Id\": \"ee26943f-3c43-483c-a46a-993df4c5eb02\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"64c28d0a-28c7-46ab-802d-8f75caf7081c\",\n            \"c10d1ef8-56e3-4ea8-ba1e-fc556c4b4af6\",\n            \"3c89766c-3875-4aed-8b02-535faea876a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72209930419922,\n      \"Text\": \"1 One member (Sudan), overdue in the payment of charges to the General Department of the IMF on April 30, 2021, remained eligible to receive previously\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8389673233032227,\n          \"Height\": 0.010795215144753456,\n          \"Left\": 0.09417945146560669,\n          \"Top\": 0.6295810341835022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09418120235204697,\n            \"Y\": 0.6295810341835022\n          },\n          {\n            \"X\": 0.9331439733505249,\n            \"Y\": 0.6301310658454895\n          },\n          {\n            \"X\": 0.9331467747688293,\n            \"Y\": 0.6403762698173523\n          },\n          {\n            \"X\": 0.09417945146560669,\n            \"Y\": 0.6398248076438904\n          }\n        ]\n      },\n      \"Id\": \"e79d7d6d-a79e-482c-806f-50570c7c647e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"214d8b19-ec89-4c50-9270-efc42a447752\",\n            \"58ceeb96-68f1-457c-aaa6-fff6430b89ab\",\n            \"27ff7dd4-28b2-4061-aa32-89f63499da79\",\n            \"a4763f0c-9aea-44f6-bec1-b451380d41dc\",\n            \"fb876f59-d3a1-4b03-896d-1b0eb4d3331c\",\n            \"e9ec1576-e872-4bab-aa3d-b4ad0c937963\",\n            \"75458c01-000f-4b7d-9a33-e9764ebe4045\",\n            \"e97de01c-e616-4e6f-a5da-38cea772967c\",\n            \"fb90bfd5-719d-4270-935c-ff0ee6ba29f8\",\n            \"637a7af5-2dcd-49bd-8cc4-c8c2f69c0dd9\",\n            \"ae6ed45c-60f4-4ac8-9fbd-7a410da08cbb\",\n            \"c4cb5e8e-931e-414a-b744-a6097917f006\",\n            \"365ff193-5314-4c77-a476-cdf903f1f849\",\n            \"cbf16b21-29e1-4286-9fd8-3074b06a9e97\",\n            \"18892917-90f2-44c3-bf81-b9a98aa52249\",\n            \"2f5c8b70-8639-40db-8e4f-45bace05d849\",\n            \"51603f99-3c68-48d9-9845-6a24ac49b6dc\",\n            \"b0c571cf-0b88-469f-a9a3-6707ec35b32d\",\n            \"3a4dd2b6-54d1-4db7-bf90-765d4ad6e73c\",\n            \"904e1837-2438-4858-ac7a-0baee832f962\",\n            \"fe4acaff-0e87-4d75-b597-fa18144d1768\",\n            \"0fa5ae11-2714-4060-b3f6-f7f9678673ea\",\n            \"0d91a86d-3385-4bce-bd94-9fe2bc815579\",\n            \"1d43482b-eff7-411f-b757-579a73afbfda\",\n            \"b90832b1-116d-4bcf-8f4b-c11fe019bbd3\",\n            \"9a0ea415-749a-449d-a8cf-77f0754f3e1d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.9401626586914,\n      \"Text\": \"approved subsidy payments of SDR 0.9 million. On June 29, 2021, Sudan settled its overdue charges in the General Department, and the account was\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8177209496498108,\n          \"Height\": 0.010779178701341152,\n          \"Left\": 0.09395191818475723,\n          \"Top\": 0.6419066190719604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09395366907119751,\n            \"Y\": 0.6419066190719604\n          },\n          {\n            \"X\": 0.9116701483726501,\n            \"Y\": 0.642444372177124\n          },\n          {\n            \"X\": 0.911672830581665,\n            \"Y\": 0.652685821056366\n          },\n          {\n            \"X\": 0.09395191818475723,\n            \"Y\": 0.6521466970443726\n          }\n        ]\n      },\n      \"Id\": \"3c16cb82-f70f-4781-9e60-38ac1451d9eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e42fe3c3-9afa-4576-bfa9-77fe2bd13337\",\n            \"870a4894-5b50-4aa4-804d-6bccc12f1665\",\n            \"a00d65c4-f007-47f7-b24e-6b69da43804d\",\n            \"0f804313-c8fb-4a60-b3d2-9e4c883086c0\",\n            \"cd1a5081-21d8-4726-a172-b03f7187e402\",\n            \"4f6ac833-2172-43c2-a860-5f3fdc652cdc\",\n            \"6b2b82a6-d457-4dd3-aaf5-b14b6477989e\",\n            \"5a956a50-2a4d-43ad-a5c0-53d5f6a204d1\",\n            \"36ac4f67-daea-4341-b55c-d84d258bd68e\",\n            \"9b051279-5d04-4495-8d3d-e5b2b7e85081\",\n            \"f9eddd6a-4d1a-4289-8e88-ba58dd6354cd\",\n            \"a0dda8be-3616-4cdc-aedd-c5cbe752f04b\",\n            \"233e77c9-889c-4295-af09-88bbfd2a1b6f\",\n            \"cfe08676-d4ab-4d75-b4c9-0b2f756da043\",\n            \"1c4d9c08-b7c6-45ac-ac21-4fdcfaa32344\",\n            \"930bfada-f227-47d7-83c3-8ba44a57c923\",\n            \"ddf682c1-ed50-4d21-886a-219266ab94aa\",\n            \"27ae48fc-59fa-4821-b3ba-52e025169a11\",\n            \"8bb5e199-d88a-4fc6-9ca6-ec0ced71d0fb\",\n            \"a0a7e179-4a47-4eb7-82d3-20fb7a16fef8\",\n            \"28f3a93b-4d7d-4e6f-be8c-e909d2b80014\",\n            \"a0c729af-8236-4484-bbd7-c685629e9f3d\",\n            \"3d024cd4-06a8-404e-a967-337d70c7c46f\",\n            \"309b31aa-2ad4-425c-9a2d-7f2a89525de7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 75.09809875488281,\n      \"Text\": \"terminated\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06155256927013397,\n          \"Height\": 0.008092462085187435,\n          \"Left\": 0.09325011819601059,\n          \"Top\": 0.6545301079750061\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09325149655342102,\n            \"Y\": 0.6545301079750061\n          },\n          {\n            \"X\": 0.15480268001556396,\n            \"Y\": 0.6545707583427429\n          },\n          {\n            \"X\": 0.15480157732963562,\n            \"Y\": 0.6626225709915161\n          },\n          {\n            \"X\": 0.09325011819601059,\n            \"Y\": 0.6625819206237793\n          }\n        ]\n      },\n      \"Id\": \"53729296-e9cd-46b0-b47c-ac373579c5fd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ee0acfb7-79bf-4b26-ae53-9dbf2c24afee\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.33818054199219,\n      \"Text\": \"2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004891505464911461,\n          \"Height\": 0.005694333929568529,\n          \"Left\": 0.09356535971164703,\n          \"Top\": 0.6655026078224182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09356633573770523,\n            \"Y\": 0.6655026078224182\n          },\n          {\n            \"X\": 0.09845686703920364,\n            \"Y\": 0.6655058264732361\n          },\n          {\n            \"X\": 0.09845590591430664,\n            \"Y\": 0.6711969375610352\n          },\n          {\n            \"X\": 0.09356535971164703,\n            \"Y\": 0.6711937189102173\n          }\n        ]\n      },\n      \"Id\": \"83fd62b2-d356-46c4-8f99-5c6c98065c1f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"73ffaeec-5756-4273-bc7b-86963c7e6aef\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81715393066406,\n      \"Text\": \"Sudan Administered Account and the Interim Sudan Subaccount of the Framework Interim Account were established on May 10, 2021 to facilitate\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7895148396492004,\n          \"Height\": 0.010313685983419418,\n          \"Left\": 0.1007743552327156,\n          \"Top\": 0.666214108467102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10077599436044693,\n            \"Y\": 0.666214108467102\n          },\n          {\n            \"X\": 0.8902867436408997,\n            \"Y\": 0.6667364835739136\n          },\n          {\n            \"X\": 0.8902891874313354,\n            \"Y\": 0.6765277981758118\n          },\n          {\n            \"X\": 0.1007743552327156,\n            \"Y\": 0.67600417137146\n          }\n        ]\n      },\n      \"Id\": \"ef17717e-30dd-491b-8dbe-6560874cdd6c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b695bad1-ba0f-4fc0-81fc-61ed2f99ecb2\",\n            \"e9a38848-0945-4c35-bb52-3538e2757442\",\n            \"93202fe2-fb8f-413b-b978-c3ad959b78a6\",\n            \"b281f228-61b3-41e6-ae8d-c873632e2a13\",\n            \"b5de7365-300c-4a3b-9148-4e3ba41aa448\",\n            \"6d14c8f3-e2b9-4366-a221-acc829a2605e\",\n            \"c81e8218-651e-4c4c-8dd3-e3328515c30a\",\n            \"d638d8a5-b5cd-4d68-ac58-e9f0f07cf6bc\",\n            \"97fe417c-2c73-4594-a64f-4c375c780506\",\n            \"3dfc396d-925e-424a-8071-88535dd834b8\",\n            \"1673716c-d700-4147-a5e6-d6dfd27d688f\",\n            \"0d7e28c2-0899-4a23-a9c7-40b63cb18993\",\n            \"cf86b63b-02fe-4bc4-a83f-e9e6fd0ab425\",\n            \"9c36f350-6f84-4c4c-b572-eed8d3e17ccc\",\n            \"c07dabf5-98ac-45f0-a0f3-691922957f1c\",\n            \"588b8bb1-763f-4de5-bd51-2b5a969037e1\",\n            \"2c68c642-49f3-42be-b0ae-f0419e978525\",\n            \"dbe90c8d-6499-42eb-bd64-3020b943bf2e\",\n            \"1d0ae8d4-edf6-4eaa-ad5c-2ddcdb6f5c33\",\n            \"628f17a4-b04e-43a7-8de1-7caadef57b9b\",\n            \"8fa29edb-e0d9-46f9-9db6-83c6b1c303a7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54000854492188,\n      \"Text\": \"fundraising for, and delivery of, debt relief to Sudan in respect of obligations owed to the IMF. Starting from June 29, 2021, Sudan Administered Account\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8248603343963623,\n          \"Height\": 0.010815896093845367,\n          \"Left\": 0.09349269419908524,\n          \"Top\": 0.6778027415275574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09349444508552551,\n            \"Y\": 0.6778027415275574\n          },\n          {\n            \"X\": 0.9183502793312073,\n            \"Y\": 0.6783500909805298\n          },\n          {\n            \"X\": 0.9183530211448669,\n            \"Y\": 0.6886186599731445\n          },\n          {\n            \"X\": 0.09349269419908524,\n            \"Y\": 0.6880699396133423\n          }\n        ]\n      },\n      \"Id\": \"47b14a64-a1d0-4883-9dc2-2e51bb5c6964\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bfe26a7e-f851-46d1-8136-db2413b00d1b\",\n            \"dc776582-fe4a-4f80-8007-0a7201b1912d\",\n            \"d17b406c-a4ea-4dea-a60c-764927e82092\",\n            \"9303e061-2c29-4812-9081-efbbebe29406\",\n            \"7d5fc7a7-7b1e-4725-8f1e-aa941bc7e443\",\n            \"745e20a9-541e-4790-8d07-234f1fa57b2a\",\n            \"9a7e64b7-085a-491c-93f8-248dd73c506a\",\n            \"2a41187a-59a8-4b97-a19b-202c28d9dccb\",\n            \"4df05427-6ce2-40f0-887e-c59bb3fe0383\",\n            \"961780e4-1008-4ad8-b5ba-86cacf38da3f\",\n            \"149528f9-5a6a-4811-b9e9-fe1ff1361348\",\n            \"73c78f2a-5a75-4426-9954-33d5e4ad04cc\",\n            \"dd099be1-ffe1-484a-aa40-7d51f2603dd5\",\n            \"cd1aea12-aafb-4cba-84ea-123fa337fce3\",\n            \"0492a647-e57c-423d-8ad2-4914f1fadf50\",\n            \"c8c072a7-ff2f-4e33-9908-d6668f1d88a9\",\n            \"8167d8eb-b12f-4894-bb29-16911e981297\",\n            \"afde11ba-dc69-4e49-99a5-6a334903dea6\",\n            \"3747d502-842a-40e1-bed0-5b176491f4ba\",\n            \"f46905ef-85d4-4836-92a8-b3584e7d1b23\",\n            \"46a174da-209e-4283-a1dc-c6dc47a74b23\",\n            \"ec944a61-87e1-4174-bea0-fd380d80dfb6\",\n            \"52150f9c-33b0-4492-a18a-301392b60cf9\",\n            \"64fd5185-80f0-4d1a-95a9-ca506a4b5e9e\",\n            \"52f0921b-f882-43b4-a30f-6e2f5cd95ac0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84759521484375,\n      \"Text\": \"received about SDR 653 million in contributions from 83 member countries and the Interim Sudan Subaccount of the Framework Interim Account received\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.833103358745575,\n          \"Height\": 0.009110862389206886,\n          \"Left\": 0.09392671287059784,\n          \"Top\": 0.689907431602478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09392817318439484,\n            \"Y\": 0.689907431602478\n          },\n          {\n            \"X\": 0.927027702331543,\n            \"Y\": 0.6904618740081787\n          },\n          {\n            \"X\": 0.9270300269126892,\n            \"Y\": 0.6990182995796204\n          },\n          {\n            \"X\": 0.09392671287059784,\n            \"Y\": 0.6984626650810242\n          }\n        ]\n      },\n      \"Id\": \"c0688fe5-b681-4fc0-bd36-cdc3c3725f23\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"311dc1a6-8494-4d7d-bde6-504fc9122e92\",\n            \"2502b778-48f4-4ebe-88c3-3a747615b605\",\n            \"cafc5e36-5210-4f90-9ddf-9da88f5b546d\",\n            \"493859db-ef4d-4387-b422-b117c6ef6406\",\n            \"e4c47147-3dad-44e6-9831-148b4c1e0891\",\n            \"363bbfba-3a5a-4301-8933-8bdd3cbf1bb9\",\n            \"c8da32d4-efdb-4c13-a453-dfd573fcc74a\",\n            \"d9484113-4a0e-4801-97b0-ad71a7b23294\",\n            \"9714b133-9273-4173-9f38-e7a085b67e04\",\n            \"76754d7b-1f25-4baa-8bb3-edaae21dbd45\",\n            \"fb95e17a-fba6-4dd1-8943-23ef6dce3cfb\",\n            \"b54e09d6-48a6-4b50-9204-3f510fb0e47e\",\n            \"e5bc5763-8294-4542-93f2-963d3193a374\",\n            \"8f49f242-d445-423d-9016-b736232ff04f\",\n            \"f7927854-19c7-42e8-9642-744a916a7f87\",\n            \"ac11e3a6-6977-46dd-84ce-e89c4d0e3b46\",\n            \"e2751441-bf83-46c1-a79d-4f8e5312271d\",\n            \"37fdde07-96b1-4e9a-a248-4359d7d6491d\",\n            \"b76095e7-fbd4-4b5c-a6bf-27e73b16f91a\",\n            \"a8734a24-cd18-495a-bc4b-7bbf2b49e560\",\n            \"b098023c-6139-4c86-9611-50568c798494\",\n            \"9068cac5-6495-4d93-be9d-229026bc1ee9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.64664459228516,\n      \"Text\": \"SDR 210 million in contributions pending further instructions from member countries.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4576265513896942,\n          \"Height\": 0.010058669373393059,\n          \"Left\": 0.09409338980913162,\n          \"Top\": 0.7024175524711609\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09409505873918533,\n            \"Y\": 0.7024175524711609\n          },\n          {\n            \"X\": 0.5517192482948303,\n            \"Y\": 0.7027230858802795\n          },\n          {\n            \"X\": 0.5517199635505676,\n            \"Y\": 0.7124762535095215\n          },\n          {\n            \"X\": 0.09409338980913162,\n            \"Y\": 0.7121700048446655\n          }\n        ]\n      },\n      \"Id\": \"f8ca168c-b830-4652-b2b5-0b843a404a5b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1cbde2b7-408b-426d-b33f-feef4309d6c9\",\n            \"04502daf-17d6-4d53-85ba-e03646327c9c\",\n            \"4981d1a5-cbcd-4bf6-9950-a83f2cbc490b\",\n            \"645ba121-45fe-4fd9-ab63-e7308c7c787e\",\n            \"211402ac-274b-4276-b930-815199cd0aa7\",\n            \"08e78dcb-3327-4344-b83a-954ce5e5a458\",\n            \"9a767162-bcab-40f9-a4e2-62669740f76d\",\n            \"4a6d9851-4b18-4d74-8543-842b1c82cca8\",\n            \"84c6ea46-5c92-4100-8ef6-11fed3aaaf0e\",\n            \"50a65e8d-6672-4247-84d7-75a6856aaa18\",\n            \"b613e6b7-78e9-4bab-b35b-23449d662ea1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74243927001953,\n      \"Text\": \"3 Transfer out represents transfer to the CCR Trust in accordance with Japan's instructions.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4936118423938751,\n          \"Height\": 0.011042335070669651,\n          \"Left\": 0.093724824488163,\n          \"Top\": 0.7137748003005981\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09372664988040924,\n            \"Y\": 0.7137748003005981\n          },\n          {\n            \"X\": 0.5873356461524963,\n            \"Y\": 0.7141053080558777\n          },\n          {\n            \"X\": 0.5873366594314575,\n            \"Y\": 0.724817156791687\n          },\n          {\n            \"X\": 0.093724824488163,\n            \"Y\": 0.7244858145713806\n          }\n        ]\n      },\n      \"Id\": \"080711e9-3886-432d-b627-f5c6571d6d71\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef922cb1-c999-4403-b18b-60d431c4dc21\",\n            \"97000b24-7957-41b4-abdd-cf8062d8aea2\",\n            \"3407fe2b-5e14-4262-a208-29551b6b7497\",\n            \"8f84512f-46d2-4c88-a6c9-57730305fa17\",\n            \"de23c710-2970-4588-a0dd-2e11d469b961\",\n            \"a6d7f1f8-48bb-4aee-b5ef-913725462272\",\n            \"b977a0e3-8339-41c9-a40e-c20f28521647\",\n            \"878fc512-0fa4-4dbe-9bc2-1fb50ddab427\",\n            \"b530ed0b-4158-447c-9333-b69698edfa39\",\n            \"52a06b0c-1151-437e-8e66-99f0259ca1af\",\n            \"fcda573c-0f9a-4fa2-8aa9-a9e84049c16f\",\n            \"71810344-635a-4207-9bf4-37a8fc4f4334\",\n            \"abcf844f-7e95-49dc-8c76-5699971aa1ed\",\n            \"b1dd0020-64e4-4966-9b5e-3209d89bfc3a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8458480834961,\n      \"Text\": \"4 The account is still open but had a zero balance on April 30, 2021 and October 31, 2021 due to no activity.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5829983353614807,\n          \"Height\": 0.011072871275246143,\n          \"Left\": 0.0937890037894249,\n          \"Top\": 0.7252883315086365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09379082918167114,\n            \"Y\": 0.7252883315086365\n          },\n          {\n            \"X\": 0.6767858266830444,\n            \"Y\": 0.7256796956062317\n          },\n          {\n            \"X\": 0.6767873167991638,\n            \"Y\": 0.7363612055778503\n          },\n          {\n            \"X\": 0.0937890037894249,\n            \"Y\": 0.7359687685966492\n          }\n        ]\n      },\n      \"Id\": \"05ed4d51-06f5-4d5d-a655-1c69c3275646\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a70faaf-b7f2-46e5-867a-6db40fa90e2d\",\n            \"beb66b02-db3c-41f0-865d-346031b761e2\",\n            \"3279f99b-d88c-4ff1-a6c8-cb66e3363639\",\n            \"b8219a65-e047-467e-aaaa-17aaa98a9fa1\",\n            \"6ebc396e-14a5-4b0f-b8c9-e7b53eed8a2a\",\n            \"fed4d6e0-b32b-4cbd-9679-fe8ac78f7da9\",\n            \"24e67836-7c99-4345-8979-ef8c0e1f7404\",\n            \"a6c7521d-8b45-427d-bd60-51d815bb8664\",\n            \"c5e1d3d2-5066-431c-8eee-c3ee7ec976a9\",\n            \"65ee55a9-284d-4d7f-91fb-0af3d3accb40\",\n            \"6a2d061c-3003-45f9-a966-8bed019681f3\",\n            \"6964f2fe-6d19-492f-9903-2033299ca27b\",\n            \"20717807-77e9-4fb5-ac8a-0310bcec284c\",\n            \"3403cdad-34f4-4daa-a17a-3ae756918128\",\n            \"9b2bf285-48a4-4d41-98d2-5f5294f725b7\",\n            \"5d7adfa2-4cd9-4e72-b3af-ad6d6180e4a7\",\n            \"c8ff7c38-205b-4940-a176-47ae26f60c62\",\n            \"0dee8c94-572d-4e3f-965b-2b9b3abcb073\",\n            \"2914bcb2-e2ee-4dee-aa50-6bd206fdf839\",\n            \"4b5288f4-7100-4fc3-948d-2c5676f2a74d\",\n            \"b992e35a-13ce-4f62-9aae-1f9d3cf1fef5\",\n            \"11e2f61c-6158-403b-bdec-b27d54822e38\",\n            \"72557e48-9daf-4dc1-b650-bad505f5867c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.28353118896484,\n      \"Text\": \"57\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015799038112163544,\n          \"Height\": 0.009009525179862976,\n          \"Left\": 0.9087359309196472,\n          \"Top\": 0.9708130359649658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9087359309196472,\n            \"Y\": 0.9708130359649658\n          },\n          {\n            \"X\": 0.9245325326919556,\n            \"Y\": 0.9708243012428284\n          },\n          {\n            \"X\": 0.9245349764823914,\n            \"Y\": 0.97982257604599\n          },\n          {\n            \"X\": 0.9087383151054382,\n            \"Y\": 0.9798113107681274\n          }\n        ]\n      },\n      \"Id\": \"9ab5eeff-d942-42f2-86fa-a8a29c954fd4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4069d9b-584b-4801-b3b3-4461c4c2d1a9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.51288604736328,\n      \"Text\": \"IV.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01587226614356041,\n          \"Height\": 0.008833557367324829,\n          \"Left\": 0.06935501098632812,\n          \"Top\": 0.04892858490347862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06935662776231766,\n            \"Y\": 0.04892858490347862\n          },\n          {\n            \"X\": 0.08522727340459824,\n            \"Y\": 0.04893747344613075\n          },\n          {\n            \"X\": 0.08522572368383408,\n            \"Y\": 0.05776214227080345\n          },\n          {\n            \"X\": 0.06935501098632812,\n            \"Y\": 0.05775322765111923\n          }\n        ]\n      },\n      \"Id\": \"5483a101-94d0-4ae7-b848-1cb543c82ace\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8292236328125,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08448436856269836,\n          \"Height\": 0.008896869607269764,\n          \"Left\": 0.08844789862632751,\n          \"Top\": 0.048825036734342575\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08844943344593048,\n            \"Y\": 0.048825036734342575\n          },\n          {\n            \"X\": 0.17293226718902588,\n            \"Y\": 0.04887234792113304\n          },\n          {\n            \"X\": 0.17293113470077515,\n            \"Y\": 0.057721905410289764\n          },\n          {\n            \"X\": 0.08844789862632751,\n            \"Y\": 0.05767446756362915\n          }\n        ]\n      },\n      \"Id\": \"dccc3533-ba55-4b5c-adb1-b78c9c8a813f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7289810180664,\n      \"Text\": \"Accounts\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05977001413702965,\n          \"Height\": 0.00881179142743349,\n          \"Left\": 0.17581117153167725,\n          \"Top\": 0.04906794801354408\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17581228911876678,\n            \"Y\": 0.04906794801354408\n          },\n          {\n            \"X\": 0.2355811893939972,\n            \"Y\": 0.04910141974687576\n          },\n          {\n            \"X\": 0.23558035492897034,\n            \"Y\": 0.057879738509655\n          },\n          {\n            \"X\": 0.17581117153167725,\n            \"Y\": 0.057846177369356155\n          }\n        ]\n      },\n      \"Id\": \"c2404b08-56a4-4f47-8f97-e970c133c829\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87065887451172,\n      \"Text\": \"At\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015531590208411217,\n          \"Height\": 0.008492082357406616,\n          \"Left\": 0.3993512690067291,\n          \"Top\": 0.04929398000240326\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3993513584136963,\n            \"Y\": 0.04929398000240326\n          },\n          {\n            \"X\": 0.4148828685283661,\n            \"Y\": 0.04930267855525017\n          },\n          {\n            \"X\": 0.4148828685283661,\n            \"Y\": 0.057786062359809875\n          },\n          {\n            \"X\": 0.3993512690067291,\n            \"Y\": 0.057777341455221176\n          }\n        ]\n      },\n      \"Id\": \"19d6c8be-eed8-46f9-a298-b0d05c4d0ff8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84513854980469,\n      \"Text\": \"October\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04964594170451164,\n          \"Height\": 0.007949038408696651,\n          \"Left\": 0.41854456067085266,\n          \"Top\": 0.049459461122751236\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41854456067085266,\n            \"Y\": 0.049459461122751236\n          },\n          {\n            \"X\": 0.4681902527809143,\n            \"Y\": 0.049487270414829254\n          },\n          {\n            \"X\": 0.4681904911994934,\n            \"Y\": 0.05740850046277046\n          },\n          {\n            \"X\": 0.41854456067085266,\n            \"Y\": 0.05738062784075737\n          }\n        ]\n      },\n      \"Id\": \"3bfd5c6d-38be-4214-b3fd-d7957ee94e4a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72085571289062,\n      \"Text\": \"31,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017561106011271477,\n          \"Height\": 0.009479179047048092,\n          \"Left\": 0.4709547460079193,\n          \"Top\": 0.04923546686768532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4709547460079193,\n            \"Y\": 0.04923546686768532\n          },\n          {\n            \"X\": 0.4885154664516449,\n            \"Y\": 0.049245305359363556\n          },\n          {\n            \"X\": 0.48851585388183594,\n            \"Y\": 0.058714646846055984\n          },\n          {\n            \"X\": 0.4709550440311432,\n            \"Y\": 0.058704786002635956\n          }\n        ]\n      },\n      \"Id\": \"2555e355-01eb-4879-832b-9c5547d5ca9d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89283752441406,\n      \"Text\": \"2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028582805767655373,\n          \"Height\": 0.008267965167760849,\n          \"Left\": 0.49282029271125793,\n          \"Top\": 0.04927048087120056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49282029271125793,\n            \"Y\": 0.04927048087120056\n          },\n          {\n            \"X\": 0.5214025974273682,\n            \"Y\": 0.04928648844361305\n          },\n          {\n            \"X\": 0.5214030742645264,\n            \"Y\": 0.05753844603896141\n          },\n          {\n            \"X\": 0.4928206205368042,\n            \"Y\": 0.05752239748835564\n          }\n        ]\n      },\n      \"Id\": \"cc794421-e0a7-4fa5-9445-68c00582497d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98194122314453,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024112919345498085,\n          \"Height\": 0.008237510919570923,\n          \"Left\": 0.5252240896224976,\n          \"Top\": 0.04925140365958214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5252240896224976,\n            \"Y\": 0.04925140365958214\n          },\n          {\n            \"X\": 0.5493364334106445,\n            \"Y\": 0.04926490783691406\n          },\n          {\n            \"X\": 0.5493370294570923,\n            \"Y\": 0.05748891457915306\n          },\n          {\n            \"X\": 0.5252246260643005,\n            \"Y\": 0.05747537687420845\n          }\n        ]\n      },\n      \"Id\": \"9aaaf77c-bf18-43b8-870d-aa40a96741ae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96728515625,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01855485700070858,\n          \"Height\": 0.008459396660327911,\n          \"Left\": 0.5520675778388977,\n          \"Top\": 0.04911085590720177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5520675778388977,\n            \"Y\": 0.04911085590720177\n          },\n          {\n            \"X\": 0.5706217288970947,\n            \"Y\": 0.049121249467134476\n          },\n          {\n            \"X\": 0.570622444152832,\n            \"Y\": 0.05757025256752968\n          },\n          {\n            \"X\": 0.5520681738853455,\n            \"Y\": 0.05755983665585518\n          }\n        ]\n      },\n      \"Id\": \"fb739ca5-7743-451a-b948-e1206535dd24\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9806137084961,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01949641853570938,\n          \"Height\": 0.008298465982079506,\n          \"Left\": 0.573476254940033,\n          \"Top\": 0.04928676411509514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.573476254940033,\n            \"Y\": 0.04928676411509514\n          },\n          {\n            \"X\": 0.5929718613624573,\n            \"Y\": 0.04929768294095993\n          },\n          {\n            \"X\": 0.5929726958274841,\n            \"Y\": 0.057585231959819794\n          },\n          {\n            \"X\": 0.5734769701957703,\n            \"Y\": 0.05757428705692291\n          }\n        ]\n      },\n      \"Id\": \"51f44ffa-fe5a-46c5-a75f-de662a504655\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89443969726562,\n      \"Text\": \"six\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018638096749782562,\n          \"Height\": 0.008431803435087204,\n          \"Left\": 0.5966579914093018,\n          \"Top\": 0.049256663769483566\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5966579914093018,\n            \"Y\": 0.049256663769483566\n          },\n          {\n            \"X\": 0.6152951717376709,\n            \"Y\": 0.04926710203289986\n          },\n          {\n            \"X\": 0.6152960658073425,\n            \"Y\": 0.05768846720457077\n          },\n          {\n            \"X\": 0.5966588258743286,\n            \"Y\": 0.05767800286412239\n          }\n        ]\n      },\n      \"Id\": \"fad71e86-9000-42ea-93b1-c41fab256d91\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92222595214844,\n      \"Text\": \"months\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047313250601291656,\n          \"Height\": 0.008380030281841755,\n          \"Left\": 0.6183395385742188,\n          \"Top\": 0.04932639002799988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6183395385742188,\n            \"Y\": 0.04932639002799988\n          },\n          {\n            \"X\": 0.6656516790390015,\n            \"Y\": 0.04935288801789284\n          },\n          {\n            \"X\": 0.6656527519226074,\n            \"Y\": 0.05770642310380936\n          },\n          {\n            \"X\": 0.6183404326438904,\n            \"Y\": 0.057679858058691025\n          }\n        ]\n      },\n      \"Id\": \"3105f543-8270-44b9-a239-b2739da5f823\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8642349243164,\n      \"Text\": \"then\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027135299518704414,\n          \"Height\": 0.008379247970879078,\n          \"Left\": 0.6695825457572937,\n          \"Top\": 0.04924023896455765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6695825457572937,\n            \"Y\": 0.04924023896455765\n          },\n          {\n            \"X\": 0.6967165470123291,\n            \"Y\": 0.04925543814897537\n          },\n          {\n            \"X\": 0.6967178583145142,\n            \"Y\": 0.05761948972940445\n          },\n          {\n            \"X\": 0.6695836782455444,\n            \"Y\": 0.05760425329208374\n          }\n        ]\n      },\n      \"Id\": \"6baddf73-dbd1-4145-ab2f-0dfde73d591f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9365463256836,\n      \"Text\": \"ended\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03903842344880104,\n          \"Height\": 0.008222660049796104,\n          \"Left\": 0.7009756565093994,\n          \"Top\": 0.04940730705857277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7009756565093994,\n            \"Y\": 0.04940730705857277\n          },\n          {\n            \"X\": 0.7400127053260803,\n            \"Y\": 0.04942917078733444\n          },\n          {\n            \"X\": 0.7400141358375549,\n            \"Y\": 0.057629965245723724\n          },\n          {\n            \"X\": 0.7009769678115845,\n            \"Y\": 0.05760804936289787\n          }\n        ]\n      },\n      \"Id\": \"63ff79c5-7931-4c27-8665-d9214e44a2bd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.3420639038086,\n      \"Text\": \"ADMINISTERED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18624725937843323,\n          \"Height\": 0.015143376775085926,\n          \"Left\": 0.09297806769609451,\n          \"Top\": 0.10282439738512039\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09298064559698105,\n            \"Y\": 0.10282439738512039\n          },\n          {\n            \"X\": 0.27922531962394714,\n            \"Y\": 0.10293035209178925\n          },\n          {\n            \"X\": 0.2792242467403412,\n            \"Y\": 0.11796776950359344\n          },\n          {\n            \"X\": 0.09297806769609451,\n            \"Y\": 0.11786135286092758\n          }\n        ]\n      },\n      \"Id\": \"b8fbb762-8808-4452-b5a8-9d69d166a0d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92007446289062,\n      \"Text\": \"ACCOUNTS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1372840851545334,\n          \"Height\": 0.01486404798924923,\n          \"Left\": 0.285510390996933,\n          \"Top\": 0.10294492542743683\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28551140427589417,\n            \"Y\": 0.10294492542743683\n          },\n          {\n            \"X\": 0.4227944016456604,\n            \"Y\": 0.10302302986383438\n          },\n          {\n            \"X\": 0.4227944612503052,\n            \"Y\": 0.11780897527933121\n          },\n          {\n            \"X\": 0.285510390996933,\n            \"Y\": 0.1177305355668068\n          }\n        ]\n      },\n      \"Id\": \"f154f17c-9fbf-47c2-a8cd-bf612d3513f4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93019104003906,\n      \"Text\": \"At\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016454162076115608,\n          \"Height\": 0.010226002894341946,\n          \"Left\": 0.09352385252714157,\n          \"Top\": 0.14294807612895966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09352560341358185,\n            \"Y\": 0.14294807612895966\n          },\n          {\n            \"X\": 0.10997802019119263,\n            \"Y\": 0.14295753836631775\n          },\n          {\n            \"X\": 0.10997635871171951,\n            \"Y\": 0.15317407250404358\n          },\n          {\n            \"X\": 0.09352385252714157,\n            \"Y\": 0.1531645804643631\n          }\n        ]\n      },\n      \"Id\": \"037170ef-6940-4ae8-b7e9-0efb49382fc9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99224853515625,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023178866133093834,\n          \"Height\": 0.010096084326505661,\n          \"Left\": 0.11354757845401764,\n          \"Top\": 0.1430562138557434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11354919523000717,\n            \"Y\": 0.1430562138557434\n          },\n          {\n            \"X\": 0.13672643899917603,\n            \"Y\": 0.1430695503950119\n          },\n          {\n            \"X\": 0.13672494888305664,\n            \"Y\": 0.15315230190753937\n          },\n          {\n            \"X\": 0.11354757845401764,\n            \"Y\": 0.1531389206647873\n          }\n        ]\n      },\n      \"Id\": \"a656cdbf-4739-4b2a-ae8e-c1851d65962a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98287200927734,\n      \"Text\": \"request\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055024269968271255,\n          \"Height\": 0.01212744414806366,\n          \"Left\": 0.14120835065841675,\n          \"Top\": 0.14338690042495728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14121010899543762,\n            \"Y\": 0.14338690042495728\n          },\n          {\n            \"X\": 0.1962326169013977,\n            \"Y\": 0.1434185802936554\n          },\n          {\n            \"X\": 0.19623121619224548,\n            \"Y\": 0.15551434457302094\n          },\n          {\n            \"X\": 0.14120835065841675,\n            \"Y\": 0.15548257529735565\n          }\n        ]\n      },\n      \"Id\": \"40f793db-ac4e-476d-9d7a-b1e1ce6db685\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97809600830078,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014798365533351898,\n          \"Height\": 0.01031471136957407,\n          \"Left\": 0.200148805975914,\n          \"Top\": 0.14277002215385437\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20014998316764832,\n            \"Y\": 0.14277002215385437\n          },\n          {\n            \"X\": 0.2149471640586853,\n            \"Y\": 0.14277854561805725\n          },\n          {\n            \"X\": 0.21494607627391815,\n            \"Y\": 0.15308474004268646\n          },\n          {\n            \"X\": 0.200148805975914,\n            \"Y\": 0.1530762016773224\n          }\n        ]\n      },\n      \"Id\": \"0a8e5274-0fd8-4437-9d19-cfb834b32d58\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97358703613281,\n      \"Text\": \"certain\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04913300648331642,\n          \"Height\": 0.01013228204101324,\n          \"Left\": 0.2181532084941864,\n          \"Top\": 0.14302121102809906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21815426647663116,\n            \"Y\": 0.14302121102809906\n          },\n          {\n            \"X\": 0.2672862112522125,\n            \"Y\": 0.1430494785308838\n          },\n          {\n            \"X\": 0.26728543639183044,\n            \"Y\": 0.15315349400043488\n          },\n          {\n            \"X\": 0.2181532084941864,\n            \"Y\": 0.15312513709068298\n          }\n        ]\n      },\n      \"Id\": \"229d0d11-9d5c-4ed7-8cc9-50533696eee1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.0296630859375,\n      \"Text\": \"members,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07165772467851639,\n          \"Height\": 0.011639534495770931,\n          \"Left\": 0.2722185254096985,\n          \"Top\": 0.14305101335048676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27221938967704773,\n            \"Y\": 0.14305101335048676\n          },\n          {\n            \"X\": 0.3438762426376343,\n            \"Y\": 0.14309225976467133\n          },\n          {\n            \"X\": 0.34387582540512085,\n            \"Y\": 0.15469054877758026\n          },\n          {\n            \"X\": 0.2722185254096985,\n            \"Y\": 0.15464916825294495\n          }\n        ]\n      },\n      \"Id\": \"bbdf7a7d-0b48-4801-a078-88c930a84aa7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98319244384766,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022845564410090446,\n          \"Height\": 0.010089456103742123,\n          \"Left\": 0.3485645353794098,\n          \"Top\": 0.14304795861244202\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34856489300727844,\n            \"Y\": 0.14304795861244202\n          },\n          {\n            \"X\": 0.3714101016521454,\n            \"Y\": 0.14306111633777618\n          },\n          {\n            \"X\": 0.37140989303588867,\n            \"Y\": 0.1531374156475067\n          },\n          {\n            \"X\": 0.3485645353794098,\n            \"Y\": 0.15312422811985016\n          }\n        ]\n      },\n      \"Id\": \"bdd1abf0-f70d-4110-aadc-146a2b2eb32d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88166046142578,\n      \"Text\": \"IMF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02718953602015972,\n          \"Height\": 0.010346807539463043,\n          \"Left\": 0.3769865036010742,\n          \"Top\": 0.14279119670391083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37698671221733093,\n            \"Y\": 0.14279119670391083\n          },\n          {\n            \"X\": 0.4041760563850403,\n            \"Y\": 0.14280684292316437\n          },\n          {\n            \"X\": 0.4041759967803955,\n            \"Y\": 0.15313801169395447\n          },\n          {\n            \"X\": 0.3769865036010742,\n            \"Y\": 0.15312232077121735\n          }\n        ]\n      },\n      \"Id\": \"8fdcd320-5cd5-4f0e-bbe7-0d73d209b80d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94559478759766,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02602047100663185,\n          \"Height\": 0.010294881649315357,\n          \"Left\": 0.4091905951499939,\n          \"Top\": 0.14290235936641693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4091905951499939,\n            \"Y\": 0.14290235936641693\n          },\n          {\n            \"X\": 0.4352109432220459,\n            \"Y\": 0.14291733503341675\n          },\n          {\n            \"X\": 0.43521106243133545,\n            \"Y\": 0.1531972438097\n          },\n          {\n            \"X\": 0.4091905951499939,\n            \"Y\": 0.1531822234392166\n          }\n        ]\n      },\n      \"Id\": \"9faebd19-9c34-4aca-af76-12ce489db28a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94405364990234,\n      \"Text\": \"established\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08245774358510971,\n          \"Height\": 0.010207577608525753,\n          \"Left\": 0.4399588406085968,\n          \"Top\": 0.1429114192724228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4399588406085968,\n            \"Y\": 0.1429114192724228\n          },\n          {\n            \"X\": 0.5224159955978394,\n            \"Y\": 0.1429588794708252\n          },\n          {\n            \"X\": 0.5224165916442871,\n            \"Y\": 0.15311899781227112\n          },\n          {\n            \"X\": 0.43995898962020874,\n            \"Y\": 0.15307140350341797\n          }\n        ]\n      },\n      \"Id\": \"1df1b8c2-02f2-4094-922d-af9a3fd7a225\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92805480957031,\n      \"Text\": \"accounts\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06552055478096008,\n          \"Height\": 0.009767893701791763,\n          \"Left\": 0.527221143245697,\n          \"Top\": 0.14341971278190613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.527221143245697,\n            \"Y\": 0.14341971278190613\n          },\n          {\n            \"X\": 0.5927407741546631,\n            \"Y\": 0.14345741271972656\n          },\n          {\n            \"X\": 0.5927417278289795,\n            \"Y\": 0.1531876027584076\n          },\n          {\n            \"X\": 0.5272217392921448,\n            \"Y\": 0.1531497836112976\n          }\n        ]\n      },\n      \"Id\": \"59ce6113-9199-402e-a2f3-150ea0472e1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98374938964844,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013826814480125904,\n          \"Height\": 0.009552465751767159,\n          \"Left\": 0.5967704653739929,\n          \"Top\": 0.14346307516098022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5967704653739929,\n            \"Y\": 0.14346307516098022\n          },\n          {\n            \"X\": 0.6105962991714478,\n            \"Y\": 0.14347103238105774\n          },\n          {\n            \"X\": 0.6105972528457642,\n            \"Y\": 0.15301553905010223\n          },\n          {\n            \"X\": 0.5967713594436646,\n            \"Y\": 0.15300756692886353\n          }\n        ]\n      },\n      \"Id\": \"4e6571e6-295f-4bc7-a7eb-b1dd3c91e6c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80241394042969,\n      \"Text\": \"administer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07598552852869034,\n          \"Height\": 0.010031532496213913,\n          \"Left\": 0.6153157949447632,\n          \"Top\": 0.14305420219898224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6153157949447632,\n            \"Y\": 0.14305420219898224\n          },\n          {\n            \"X\": 0.6912998557090759,\n            \"Y\": 0.143097922205925\n          },\n          {\n            \"X\": 0.6913013458251953,\n            \"Y\": 0.15308572351932526\n          },\n          {\n            \"X\": 0.6153168678283691,\n            \"Y\": 0.15304186940193176\n          }\n        ]\n      },\n      \"Id\": \"747dea1e-8e30-465c-8cac-bdf482cb0fb1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96260070800781,\n      \"Text\": \"resources\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07126213610172272,\n          \"Height\": 0.008048743940889835,\n          \"Left\": 0.695446789264679,\n          \"Top\": 0.14509953558444977\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.695446789264679,\n            \"Y\": 0.14509953558444977\n          },\n          {\n            \"X\": 0.7667074203491211,\n            \"Y\": 0.14514057338237762\n          },\n          {\n            \"X\": 0.7667089104652405,\n            \"Y\": 0.15314827859401703\n          },\n          {\n            \"X\": 0.6954479813575745,\n            \"Y\": 0.153107151389122\n          }\n        ]\n      },\n      \"Id\": \"95304c96-f7b6-4933-b025-f795e2c98354\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95582580566406,\n      \"Text\": \"contributed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08049681782722473,\n          \"Height\": 0.010186124593019485,\n          \"Left\": 0.7716238498687744,\n          \"Top\": 0.14291240274906158\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7716238498687744,\n            \"Y\": 0.14291240274906158\n          },\n          {\n            \"X\": 0.8521183133125305,\n            \"Y\": 0.14295873045921326\n          },\n          {\n            \"X\": 0.8521206974983215,\n            \"Y\": 0.15309852361679077\n          },\n          {\n            \"X\": 0.771625816822052,\n            \"Y\": 0.15305207669734955\n          }\n        ]\n      },\n      \"Id\": \"cbe7d004-0f4a-4efa-8447-1290d1df6d86\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98106384277344,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017426853999495506,\n          \"Height\": 0.012689667753875256,\n          \"Left\": 0.8571037650108337,\n          \"Top\": 0.14293301105499268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8571037650108337,\n            \"Y\": 0.14293301105499268\n          },\n          {\n            \"X\": 0.8745275139808655,\n            \"Y\": 0.14294303953647614\n          },\n          {\n            \"X\": 0.8745306134223938,\n            \"Y\": 0.1556226760149002\n          },\n          {\n            \"X\": 0.8571068048477173,\n            \"Y\": 0.15561261773109436\n          }\n        ]\n      },\n      \"Id\": \"95027f60-11ad-4492-9437-3380d56e6839\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9934310913086,\n      \"Text\": \"these\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040213361382484436,\n          \"Height\": 0.010104062967002392,\n          \"Left\": 0.8783819079399109,\n          \"Top\": 0.14302851259708405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8783819079399109,\n            \"Y\": 0.14302851259708405\n          },\n          {\n            \"X\": 0.9185925722122192,\n            \"Y\": 0.1430516541004181\n          },\n          {\n            \"X\": 0.9185953140258789,\n            \"Y\": 0.1531325876712799\n          },\n          {\n            \"X\": 0.8783844113349915,\n            \"Y\": 0.1531093716621399\n          }\n        ]\n      },\n      \"Id\": \"55d44c21-e05a-4337-a47f-55e2eaf29f6e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92076110839844,\n      \"Text\": \"members\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06740983575582504,\n          \"Height\": 0.01044432818889618,\n          \"Left\": 0.0945955216884613,\n          \"Top\": 0.1586202085018158\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09459729492664337,\n            \"Y\": 0.1586202085018158\n          },\n          {\n            \"X\": 0.16200536489486694,\n            \"Y\": 0.1586591750383377\n          },\n          {\n            \"X\": 0.16200396418571472,\n            \"Y\": 0.16906453669071198\n          },\n          {\n            \"X\": 0.0945955216884613,\n            \"Y\": 0.1690254509449005\n          }\n        ]\n      },\n      \"Id\": \"94b26a86-1c92-4b8a-bf35-1131337f76d4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99015045166016,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027159051969647408,\n          \"Height\": 0.01010777335613966,\n          \"Left\": 0.16659802198410034,\n          \"Top\": 0.15885736048221588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1665993481874466,\n            \"Y\": 0.15885736048221588\n          },\n          {\n            \"X\": 0.1937570720911026,\n            \"Y\": 0.1588730663061142\n          },\n          {\n            \"X\": 0.1937558799982071,\n            \"Y\": 0.168965145945549\n          },\n          {\n            \"X\": 0.16659802198410034,\n            \"Y\": 0.16894939541816711\n          }\n        ]\n      },\n      \"Id\": \"fbc12d0b-aeab-4d55-bfc0-c524e23ae655\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98332214355469,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014230960048735142,\n          \"Height\": 0.009733336046338081,\n          \"Left\": 0.19786284863948822,\n          \"Top\": 0.15923088788986206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19786396622657776,\n            \"Y\": 0.15923088788986206\n          },\n          {\n            \"X\": 0.2120938003063202,\n            \"Y\": 0.15923912823200226\n          },\n          {\n            \"X\": 0.21209275722503662,\n            \"Y\": 0.168964222073555\n          },\n          {\n            \"X\": 0.19786284863948822,\n            \"Y\": 0.1689559817314148\n          }\n        ]\n      },\n      \"Id\": \"0d7e3bc2-ebcd-435b-ba4f-fba92668b9e4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9593276977539,\n      \"Text\": \"perform\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05636828765273094,\n          \"Height\": 0.01256681326776743,\n          \"Left\": 0.2163102924823761,\n          \"Top\": 0.158680722117424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21631160378456116,\n            \"Y\": 0.158680722117424\n          },\n          {\n            \"X\": 0.27267858386039734,\n            \"Y\": 0.15871331095695496\n          },\n          {\n            \"X\": 0.27267763018608093,\n            \"Y\": 0.17124752700328827\n          },\n          {\n            \"X\": 0.2163102924823761,\n            \"Y\": 0.17121483385562897\n          }\n        ]\n      },\n      \"Id\": \"382f4223-e2d3-411a-94a4-ba8c5f116dee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91048431396484,\n      \"Text\": \"financial\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06034243479371071,\n          \"Height\": 0.010376966558396816,\n          \"Left\": 0.27714985609054565,\n          \"Top\": 0.1585817039012909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27715060114860535,\n            \"Y\": 0.1585817039012909\n          },\n          {\n            \"X\": 0.33749228715896606,\n            \"Y\": 0.1586165875196457\n          },\n          {\n            \"X\": 0.33749186992645264,\n            \"Y\": 0.1689586639404297\n          },\n          {\n            \"X\": 0.27714985609054565,\n            \"Y\": 0.16892367601394653\n          }\n        ]\n      },\n      \"Id\": \"0aef41ec-4cc5-48b7-80c6-e3cea1e80924\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9912338256836,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027345925569534302,\n          \"Height\": 0.010085216723382473,\n          \"Left\": 0.34176909923553467,\n          \"Top\": 0.15879616141319275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3417694866657257,\n            \"Y\": 0.15879616141319275\n          },\n          {\n            \"X\": 0.36911502480506897,\n            \"Y\": 0.15881197154521942\n          },\n          {\n            \"X\": 0.36911478638648987,\n            \"Y\": 0.1688813716173172\n          },\n          {\n            \"X\": 0.34176909923553467,\n            \"Y\": 0.16886551678180695\n          }\n        ]\n      },\n      \"Id\": \"c1788c96-b977-4ade-ae42-7bccc05cd0f5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8877182006836,\n      \"Text\": \"technical\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0647902712225914,\n          \"Height\": 0.010166843421757221,\n          \"Left\": 0.37337183952331543,\n          \"Top\": 0.15873196721076965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37337204813957214,\n            \"Y\": 0.15873196721076965\n          },\n          {\n            \"X\": 0.4381619691848755,\n            \"Y\": 0.158769428730011\n          },\n          {\n            \"X\": 0.43816208839416504,\n            \"Y\": 0.1688988208770752\n          },\n          {\n            \"X\": 0.37337183952331543,\n            \"Y\": 0.1688612550497055\n          }\n        ]\n      },\n      \"Id\": \"a6720cb7-9f2e-4f62-8e6d-44c39d7dd2f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8420639038086,\n      \"Text\": \"services\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05976543202996254,\n          \"Height\": 0.01000108290463686,\n          \"Left\": 0.44272905588150024,\n          \"Top\": 0.15897510945796967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44272905588150024,\n            \"Y\": 0.15897510945796967\n          },\n          {\n            \"X\": 0.5024940371513367,\n            \"Y\": 0.159009650349617\n          },\n          {\n            \"X\": 0.5024945139884949,\n            \"Y\": 0.16897618770599365\n          },\n          {\n            \"X\": 0.4427292048931122,\n            \"Y\": 0.16894154250621796\n          }\n        ]\n      },\n      \"Id\": \"faa80eeb-cfde-4d72-9ddb-c552f5b407e1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8545913696289,\n      \"Text\": \"consistent\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07398516684770584,\n          \"Height\": 0.009905452840030193,\n          \"Left\": 0.5072001814842224,\n          \"Top\": 0.1589720994234085\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5072001814842224,\n            \"Y\": 0.1589720994234085\n          },\n          {\n            \"X\": 0.5811845064163208,\n            \"Y\": 0.15901486575603485\n          },\n          {\n            \"X\": 0.5811853408813477,\n            \"Y\": 0.16887754201889038\n          },\n          {\n            \"X\": 0.5072007179260254,\n            \"Y\": 0.1688346564769745\n          }\n        ]\n      },\n      \"Id\": \"2dfb090f-bbdf-4f58-afb2-d5b2c3535f18\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99104309082031,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029053468257188797,\n          \"Height\": 0.009898114949464798,\n          \"Left\": 0.5848352909088135,\n          \"Top\": 0.15885624289512634\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5848352909088135,\n            \"Y\": 0.15885624289512634\n          },\n          {\n            \"X\": 0.6138877272605896,\n            \"Y\": 0.1588730365037918\n          },\n          {\n            \"X\": 0.6138888001441956,\n            \"Y\": 0.16875435411930084\n          },\n          {\n            \"X\": 0.5848362445831299,\n            \"Y\": 0.1687375158071518\n          }\n        ]\n      },\n      \"Id\": \"6a1e8cf4-58e1-4994-94f8-b87c4aa793e5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99443054199219,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02313343994319439,\n          \"Height\": 0.009957964532077312,\n          \"Left\": 0.618078351020813,\n          \"Top\": 0.15892750024795532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.618078351020813,\n            \"Y\": 0.15892750024795532\n          },\n          {\n            \"X\": 0.6412105560302734,\n            \"Y\": 0.1589408665895462\n          },\n          {\n            \"X\": 0.6412118077278137,\n            \"Y\": 0.1688854694366455\n          },\n          {\n            \"X\": 0.618079423904419,\n            \"Y\": 0.16887205839157104\n          }\n        ]\n      },\n      \"Id\": \"649e6aaf-1b95-4f2c-97cd-81b46fa2f61d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8336410522461,\n      \"Text\": \"purposes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06749504804611206,\n          \"Height\": 0.010279168374836445,\n          \"Left\": 0.6458002924919128,\n          \"Top\": 0.16093800961971283\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6458002924919128,\n            \"Y\": 0.16093800961971283\n          },\n          {\n            \"X\": 0.7132936716079712,\n            \"Y\": 0.1609770506620407\n          },\n          {\n            \"X\": 0.7132953405380249,\n            \"Y\": 0.1712171733379364\n          },\n          {\n            \"X\": 0.6458015441894531,\n            \"Y\": 0.17117801308631897\n          }\n        ]\n      },\n      \"Id\": \"03d9fdd5-8745-43b6-8f17-94fbf136d6ff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97933197021484,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014898442663252354,\n          \"Height\": 0.010220786556601524,\n          \"Left\": 0.7177020907402039,\n          \"Top\": 0.1586725264787674\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7177020907402039,\n            \"Y\": 0.1586725264787674\n          },\n          {\n            \"X\": 0.7325988411903381,\n            \"Y\": 0.15868113934993744\n          },\n          {\n            \"X\": 0.7326005697250366,\n            \"Y\": 0.16889330744743347\n          },\n          {\n            \"X\": 0.7177037596702576,\n            \"Y\": 0.16888467967510223\n          }\n        ]\n      },\n      \"Id\": \"eea597c4-2f76-48e9-856b-0d44fc6ba1e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99592590332031,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022961512207984924,\n          \"Height\": 0.009985577315092087,\n          \"Left\": 0.7355678677558899,\n          \"Top\": 0.15892501175403595\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7355678677558899,\n            \"Y\": 0.15892501175403595\n          },\n          {\n            \"X\": 0.7585275769233704,\n            \"Y\": 0.15893828868865967\n          },\n          {\n            \"X\": 0.7585293650627136,\n            \"Y\": 0.16891059279441833\n          },\n          {\n            \"X\": 0.7355695962905884,\n            \"Y\": 0.16889728605747223\n          }\n        ]\n      },\n      \"Id\": \"ac99f2c2-802a-4400-929a-4425f6ac8ee4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.77063751220703,\n      \"Text\": \"IMF.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03190173953771591,\n          \"Height\": 0.010575609281659126,\n          \"Left\": 0.7634434103965759,\n          \"Top\": 0.1586090326309204\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7634434103965759,\n            \"Y\": 0.1586090326309204\n          },\n          {\n            \"X\": 0.7953429818153381,\n            \"Y\": 0.1586274653673172\n          },\n          {\n            \"X\": 0.79534512758255,\n            \"Y\": 0.1691846400499344\n          },\n          {\n            \"X\": 0.7634453773498535,\n            \"Y\": 0.16916614770889282\n          }\n        ]\n      },\n      \"Id\": \"b08f500f-1edd-4ba4-a06a-4089eb1db22e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97928619384766,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028241844847798347,\n          \"Height\": 0.010400904342532158,\n          \"Left\": 0.09371254593133926,\n          \"Top\": 0.19092918932437897\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09371431916952133,\n            \"Y\": 0.19092918932437897\n          },\n          {\n            \"X\": 0.12195438891649246,\n            \"Y\": 0.19094567000865936\n          },\n          {\n            \"X\": 0.12195277214050293,\n            \"Y\": 0.20133009552955627\n          },\n          {\n            \"X\": 0.09371254593133926,\n            \"Y\": 0.2013135701417923\n          }\n        ]\n      },\n      \"Id\": \"dbedc88c-640e-4123-b080-7eef8df21c30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75050354003906,\n      \"Text\": \"instruments\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08430729806423187,\n          \"Height\": 0.010331109166145325,\n          \"Left\": 0.1267656683921814,\n          \"Top\": 0.19100640714168549\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12676724791526794,\n            \"Y\": 0.19100640714168549\n          },\n          {\n            \"X\": 0.21107296645641327,\n            \"Y\": 0.19105559587478638\n          },\n          {\n            \"X\": 0.21107184886932373,\n            \"Y\": 0.2013375163078308\n          },\n          {\n            \"X\": 0.1267656683921814,\n            \"Y\": 0.20128819346427917\n          }\n        ]\n      },\n      \"Id\": \"346f000b-193a-439c-b542-f54927feca4f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8953628540039,\n      \"Text\": \"establishing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08614463359117508,\n          \"Height\": 0.012939992360770702,\n          \"Left\": 0.21588799357414246,\n          \"Top\": 0.19102653861045837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2158893644809723,\n            \"Y\": 0.19102653861045837\n          },\n          {\n            \"X\": 0.30203261971473694,\n            \"Y\": 0.19107680022716522\n          },\n          {\n            \"X\": 0.30203187465667725,\n            \"Y\": 0.20396654307842255\n          },\n          {\n            \"X\": 0.21588799357414246,\n            \"Y\": 0.20391608774662018\n          }\n        ]\n      },\n      \"Id\": \"9e4ef3bc-1b42-4597-b57a-b71a54c59e1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99314880371094,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023412516340613365,\n          \"Height\": 0.010066626593470573,\n          \"Left\": 0.30572670698165894,\n          \"Top\": 0.19115813076496124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3057273030281067,\n            \"Y\": 0.19115813076496124\n          },\n          {\n            \"X\": 0.32913923263549805,\n            \"Y\": 0.191171795129776\n          },\n          {\n            \"X\": 0.32913875579833984,\n            \"Y\": 0.20122475922107697\n          },\n          {\n            \"X\": 0.30572670698165894,\n            \"Y\": 0.20121106505393982\n          }\n        ]\n      },\n      \"Id\": \"a0ce6006-c7f3-48b6-8ec3-463b2e45547b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81348419189453,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09660259634256363,\n          \"Height\": 0.010360464453697205,\n          \"Left\": 0.3326006829738617,\n          \"Top\": 0.19101203978061676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3326011300086975,\n            \"Y\": 0.19101203978061676\n          },\n          {\n            \"X\": 0.42920318245887756,\n            \"Y\": 0.1910683959722519\n          },\n          {\n            \"X\": 0.4292032718658447,\n            \"Y\": 0.20137250423431396\n          },\n          {\n            \"X\": 0.3326006829738617,\n            \"Y\": 0.2013159692287445\n          }\n        ]\n      },\n      \"Id\": \"339b65b3-1da4-4d61-9542-9d0a2b485674\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93506622314453,\n      \"Text\": \"Accounts\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06772150099277496,\n          \"Height\": 0.01015952043235302,\n          \"Left\": 0.4330778419971466,\n          \"Top\": 0.19109731912612915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4330778419971466,\n            \"Y\": 0.19109731912612915\n          },\n          {\n            \"X\": 0.5007988810539246,\n            \"Y\": 0.19113682210445404\n          },\n          {\n            \"X\": 0.5007993578910828,\n            \"Y\": 0.20125684142112732\n          },\n          {\n            \"X\": 0.43307796120643616,\n            \"Y\": 0.20121721923351288\n          }\n        ]\n      },\n      \"Id\": \"8275ea8a-af91-448a-8efb-4c17d5fe7677\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98005676269531,\n      \"Text\": \"provide\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052921734750270844,\n          \"Height\": 0.012486699968576431,\n          \"Left\": 0.5057722330093384,\n          \"Top\": 0.19110937416553497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5057722330093384,\n            \"Y\": 0.19110937416553497\n          },\n          {\n            \"X\": 0.558692991733551,\n            \"Y\": 0.19114024937152863\n          },\n          {\n            \"X\": 0.5586939454078674,\n            \"Y\": 0.2035960853099823\n          },\n          {\n            \"X\": 0.5057728290557861,\n            \"Y\": 0.2035650908946991\n          }\n        ]\n      },\n      \"Id\": \"13c6e1bf-66d7-4083-8530-c8d11202ab79\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99519348144531,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022791096940636635,\n          \"Height\": 0.010016649961471558,\n          \"Left\": 0.5631130337715149,\n          \"Top\": 0.1912188082933426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5631130337715149,\n            \"Y\": 0.1912188082933426\n          },\n          {\n            \"X\": 0.5859032273292542,\n            \"Y\": 0.1912321001291275\n          },\n          {\n            \"X\": 0.5859041213989258,\n            \"Y\": 0.20123545825481415\n          },\n          {\n            \"X\": 0.563113808631897,\n            \"Y\": 0.20122212171554565\n          }\n        ]\n      },\n      \"Id\": \"7fea46c4-0896-4590-9fc6-af9ac12afe1a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94502258300781,\n      \"Text\": \"terms\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04118653014302254,\n          \"Height\": 0.009773582220077515,\n          \"Left\": 0.5905618667602539,\n          \"Top\": 0.1914854496717453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5905618667602539,\n            \"Y\": 0.1914854496717453\n          },\n          {\n            \"X\": 0.631747305393219,\n            \"Y\": 0.19150948524475098\n          },\n          {\n            \"X\": 0.6317484378814697,\n            \"Y\": 0.20125903189182281\n          },\n          {\n            \"X\": 0.5905628204345703,\n            \"Y\": 0.20123493671417236\n          }\n        ]\n      },\n      \"Id\": \"b7a43041-8693-4bb8-ab6a-450628fd4180\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9847640991211,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02664780430495739,\n          \"Height\": 0.010035443119704723,\n          \"Left\": 0.6365781426429749,\n          \"Top\": 0.19121253490447998\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6365781426429749,\n            \"Y\": 0.19121253490447998\n          },\n          {\n            \"X\": 0.6632246375083923,\n            \"Y\": 0.19122807681560516\n          },\n          {\n            \"X\": 0.6632259488105774,\n            \"Y\": 0.20124797523021698\n          },\n          {\n            \"X\": 0.6365793347358704,\n            \"Y\": 0.20123238861560822\n          }\n        ]\n      },\n      \"Id\": \"3cfed3dd-ceb5-45d6-a47c-ff2f777cbeed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.98587799072266,\n      \"Text\": \"conditions,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07742663472890854,\n          \"Height\": 0.011842787265777588,\n          \"Left\": 0.6680733561515808,\n          \"Top\": 0.19115139544010162\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6680733561515808,\n            \"Y\": 0.19115139544010162\n          },\n          {\n            \"X\": 0.7454978823661804,\n            \"Y\": 0.19119656085968018\n          },\n          {\n            \"X\": 0.7454999685287476,\n            \"Y\": 0.2029941827058792\n          },\n          {\n            \"X\": 0.6680749654769897,\n            \"Y\": 0.20294886827468872\n          }\n        ]\n      },\n      \"Id\": \"fcc98150-ce7c-4530-b70b-184d95be4895\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9768295288086,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016761040315032005,\n          \"Height\": 0.007840246893465519,\n          \"Left\": 0.750965416431427,\n          \"Top\": 0.19347690045833588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.750965416431427,\n            \"Y\": 0.19347690045833588\n          },\n          {\n            \"X\": 0.7677249908447266,\n            \"Y\": 0.19348669052124023\n          },\n          {\n            \"X\": 0.7677264213562012,\n            \"Y\": 0.20131714642047882\n          },\n          {\n            \"X\": 0.7509667873382568,\n            \"Y\": 0.20130734145641327\n          }\n        ]\n      },\n      \"Id\": \"f394d799-f949-4963-a39c-283f99538d12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9803695678711,\n      \"Text\": \"agreed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05042058601975441,\n          \"Height\": 0.01246646884828806,\n          \"Left\": 0.7728266716003418,\n          \"Top\": 0.19123147428035736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7728266716003418,\n            \"Y\": 0.19123147428035736\n          },\n          {\n            \"X\": 0.823244571685791,\n            \"Y\": 0.19126088917255402\n          },\n          {\n            \"X\": 0.8232472538948059,\n            \"Y\": 0.20369793474674225\n          },\n          {\n            \"X\": 0.7728290557861328,\n            \"Y\": 0.20366841554641724\n          }\n        ]\n      },\n      \"Id\": \"c325c8e3-73ec-482e-9d9a-f09a9b3552ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9931869506836,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029056839644908905,\n          \"Height\": 0.01016208902001381,\n          \"Left\": 0.827581524848938,\n          \"Top\": 0.1911316215991974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.827581524848938,\n            \"Y\": 0.1911316215991974\n          },\n          {\n            \"X\": 0.8566359877586365,\n            \"Y\": 0.191148579120636\n          },\n          {\n            \"X\": 0.8566383719444275,\n            \"Y\": 0.2012937068939209\n          },\n          {\n            \"X\": 0.8275837898254395,\n            \"Y\": 0.2012767195701599\n          }\n        ]\n      },\n      \"Id\": \"9102670e-1dee-44c7-a4bc-d7ba26e3a6c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99102020263672,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022674579173326492,\n          \"Height\": 0.009996439330279827,\n          \"Left\": 0.8613044619560242,\n          \"Top\": 0.19123181700706482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8613044619560242,\n            \"Y\": 0.19123181700706482\n          },\n          {\n            \"X\": 0.8839765191078186,\n            \"Y\": 0.19124504923820496\n          },\n          {\n            \"X\": 0.8839790225028992,\n            \"Y\": 0.20122826099395752\n          },\n          {\n            \"X\": 0.8613068461418152,\n            \"Y\": 0.201214998960495\n          }\n        ]\n      },\n      \"Id\": \"1d3e6e83-fadb-447f-b4ee-8791fa4156ae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95330047607422,\n      \"Text\": \"IMF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02758488617837429,\n          \"Height\": 0.010050537064671516,\n          \"Left\": 0.8892838954925537,\n          \"Top\": 0.19106264412403107\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8892838954925537,\n            \"Y\": 0.19106264412403107\n          },\n          {\n            \"X\": 0.9168661236763,\n            \"Y\": 0.19107873737812042\n          },\n          {\n            \"X\": 0.9168688058853149,\n            \"Y\": 0.20111317932605743\n          },\n          {\n            \"X\": 0.889286458492279,\n            \"Y\": 0.2010970413684845\n          }\n        ]\n      },\n      \"Id\": \"72d8d4ed-5c34-4c07-9c3c-b6bae0ff65ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99210357666016,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026860244572162628,\n          \"Height\": 0.010132042691111565,\n          \"Left\": 0.0940525159239769,\n          \"Top\": 0.20691590011119843\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09405424445867538,\n            \"Y\": 0.20691590011119843\n          },\n          {\n            \"X\": 0.12091276049613953,\n            \"Y\": 0.20693163573741913\n          },\n          {\n            \"X\": 0.12091118097305298,\n            \"Y\": 0.21704794466495514\n          },\n          {\n            \"X\": 0.0940525159239769,\n            \"Y\": 0.21703214943408966\n          }\n        ]\n      },\n      \"Id\": \"f4bb5b69-c159-4959-a472-170ab348d9ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9670181274414,\n      \"Text\": \"contributing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08423886448144913,\n          \"Height\": 0.012894044630229473,\n          \"Left\": 0.12593522667884827,\n          \"Top\": 0.2067551612854004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12593720853328705,\n            \"Y\": 0.2067551612854004\n          },\n          {\n            \"X\": 0.210174098610878,\n            \"Y\": 0.2068045288324356\n          },\n          {\n            \"X\": 0.21017269790172577,\n            \"Y\": 0.21964919567108154\n          },\n          {\n            \"X\": 0.12593522667884827,\n            \"Y\": 0.2195996642112732\n          }\n        ]\n      },\n      \"Id\": \"252dbba2-604a-4778-bde0-9c2f249f049a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8718490600586,\n      \"Text\": \"parties,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05262140557169914,\n          \"Height\": 0.01232923660427332,\n          \"Left\": 0.21520882844924927,\n          \"Top\": 0.20703645050525665\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21521012485027313,\n            \"Y\": 0.20703645050525665\n          },\n          {\n            \"X\": 0.2678302228450775,\n            \"Y\": 0.20706729590892792\n          },\n          {\n            \"X\": 0.2678292691707611,\n            \"Y\": 0.2193656861782074\n          },\n          {\n            \"X\": 0.21520882844924927,\n            \"Y\": 0.21933473646640778\n          }\n        ]\n      },\n      \"Id\": \"bd515eb4-a7bf-4b7e-8f9c-e0891f5b8338\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97390747070312,\n      \"Text\": \"under\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04242860898375511,\n          \"Height\": 0.010037862695753574,\n          \"Left\": 0.27316251397132874,\n          \"Top\": 0.20699919760227203\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2731632590293884,\n            \"Y\": 0.20699919760227203\n          },\n          {\n            \"X\": 0.31559112668037415,\n            \"Y\": 0.20702406764030457\n          },\n          {\n            \"X\": 0.31559059023857117,\n            \"Y\": 0.21703706681728363\n          },\n          {\n            \"X\": 0.27316251397132874,\n            \"Y\": 0.21701213717460632\n          }\n        ]\n      },\n      \"Id\": \"f0f14982-c28c-4655-8087-d4403a2de427\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97586059570312,\n      \"Text\": \"which\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042097028344869614,\n          \"Height\": 0.010097126476466656,\n          \"Left\": 0.31907281279563904,\n          \"Top\": 0.20683906972408295\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31907331943511963,\n            \"Y\": 0.20683906972408295\n          },\n          {\n            \"X\": 0.36116984486579895,\n            \"Y\": 0.20686373114585876\n          },\n          {\n            \"X\": 0.3611695468425751,\n            \"Y\": 0.21693618595600128\n          },\n          {\n            \"X\": 0.31907281279563904,\n            \"Y\": 0.2169114500284195\n          }\n        ]\n      },\n      \"Id\": \"ca9c6a33-4b25-41d9-a955-fcd294988f6c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99089813232422,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023232368752360344,\n          \"Height\": 0.009898917749524117,\n          \"Left\": 0.36530327796936035,\n          \"Top\": 0.20700973272323608\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36530351638793945,\n            \"Y\": 0.20700973272323608\n          },\n          {\n            \"X\": 0.38853564858436584,\n            \"Y\": 0.20702333748340607\n          },\n          {\n            \"X\": 0.3885354995727539,\n            \"Y\": 0.21690864861011505\n          },\n          {\n            \"X\": 0.36530327796936035,\n            \"Y\": 0.2168949842453003\n          }\n        ]\n      },\n      \"Id\": \"eed281a6-e35c-4916-8a96-bb30b0c5943b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96398162841797,\n      \"Text\": \"resources\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07149061560630798,\n          \"Height\": 0.00810256041586399,\n          \"Left\": 0.3931381106376648,\n          \"Top\": 0.2090083807706833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39313820004463196,\n            \"Y\": 0.2090083807706833\n          },\n          {\n            \"X\": 0.46462851762771606,\n            \"Y\": 0.20905029773712158\n          },\n          {\n            \"X\": 0.4646287262439728,\n            \"Y\": 0.21711093187332153\n          },\n          {\n            \"X\": 0.3931381106376648,\n            \"Y\": 0.21706892549991608\n          }\n        ]\n      },\n      \"Id\": \"812eaece-32ab-44ef-9f07-9d5d9f37dbcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98345184326172,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03076360560953617,\n          \"Height\": 0.010156242176890373,\n          \"Left\": 0.4694817066192627,\n          \"Top\": 0.20930249989032745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4694817066192627,\n            \"Y\": 0.20930249989032745\n          },\n          {\n            \"X\": 0.5002448558807373,\n            \"Y\": 0.209320530295372\n          },\n          {\n            \"X\": 0.5002453327178955,\n            \"Y\": 0.21945874392986298\n          },\n          {\n            \"X\": 0.4694820046424866,\n            \"Y\": 0.21944065392017365\n          }\n        ]\n      },\n      \"Id\": \"1ebfa70f-8f2b-42bc-8085-ccf8db0c9b80\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90921020507812,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018063314259052277,\n          \"Height\": 0.010033183731138706,\n          \"Left\": 0.5047110319137573,\n          \"Top\": 0.20689362287521362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5047110319137573,\n            \"Y\": 0.20689362287521362\n          },\n          {\n            \"X\": 0.5227737426757812,\n            \"Y\": 0.20690420269966125\n          },\n          {\n            \"X\": 0.522774338722229,\n            \"Y\": 0.21692681312561035\n          },\n          {\n            \"X\": 0.5047115087509155,\n            \"Y\": 0.21691618859767914\n          }\n        ]\n      },\n      \"Id\": \"6ce4a961-018d-48b4-a393-5ecb396239ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58377838134766,\n      \"Text\": \"used.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03904090076684952,\n          \"Height\": 0.01006038673222065,\n          \"Left\": 0.5274701714515686,\n          \"Top\": 0.20704157650470734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5274701714515686,\n            \"Y\": 0.20704157650470734\n          },\n          {\n            \"X\": 0.5665102601051331,\n            \"Y\": 0.2070644646883011\n          },\n          {\n            \"X\": 0.5665110349655151,\n            \"Y\": 0.21710196137428284\n          },\n          {\n            \"X\": 0.5274707674980164,\n            \"Y\": 0.2170790284872055\n          }\n        ]\n      },\n      \"Id\": \"8b99ffa4-aa9f-4998-be7d-f7ea2448742d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97229766845703,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027925074100494385,\n          \"Height\": 0.010174984112381935,\n          \"Left\": 0.5718822479248047,\n          \"Top\": 0.20684215426445007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5718822479248047,\n            \"Y\": 0.20684215426445007\n          },\n          {\n            \"X\": 0.5998063087463379,\n            \"Y\": 0.20685851573944092\n          },\n          {\n            \"X\": 0.5998073220252991,\n            \"Y\": 0.21701712906360626\n          },\n          {\n            \"X\": 0.5718831419944763,\n            \"Y\": 0.21700072288513184\n          }\n        ]\n      },\n      \"Id\": \"e2f73aa2-1bcd-4a9d-945a-a53d8bc39364\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9835433959961,\n      \"Text\": \"assets\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047094959765672684,\n          \"Height\": 0.009685216471552849,\n          \"Left\": 0.6043609380722046,\n          \"Top\": 0.20742253959178925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6043609380722046,\n            \"Y\": 0.20742253959178925\n          },\n          {\n            \"X\": 0.6514546871185303,\n            \"Y\": 0.20745013654232025\n          },\n          {\n            \"X\": 0.6514558792114258,\n            \"Y\": 0.21710775792598724\n          },\n          {\n            \"X\": 0.604361891746521,\n            \"Y\": 0.21708007156848907\n          }\n        ]\n      },\n      \"Id\": \"89269dc8-f31c-4dd3-a744-4728fcb87bd7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96844482421875,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014405468478798866,\n          \"Height\": 0.010211247950792313,\n          \"Left\": 0.6561165452003479,\n          \"Top\": 0.2067561000585556\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6561165452003479,\n            \"Y\": 0.2067561000585556\n          },\n          {\n            \"X\": 0.6705206036567688,\n            \"Y\": 0.20676453411579132\n          },\n          {\n            \"X\": 0.6705219745635986,\n            \"Y\": 0.21696734428405762\n          },\n          {\n            \"X\": 0.656117856502533,\n            \"Y\": 0.2169588804244995\n          }\n        ]\n      },\n      \"Id\": \"bf15f5b2-2146-4e2f-a867-abd0f7685b8e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98885345458984,\n      \"Text\": \"each\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03491581231355667,\n          \"Height\": 0.010075673460960388,\n          \"Left\": 0.6744885444641113,\n          \"Top\": 0.2070067822933197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6744885444641113,\n            \"Y\": 0.2070067822933197\n          },\n          {\n            \"X\": 0.7094027996063232,\n            \"Y\": 0.20702724158763885\n          },\n          {\n            \"X\": 0.7094044089317322,\n            \"Y\": 0.2170824557542801\n          },\n          {\n            \"X\": 0.6744899749755859,\n            \"Y\": 0.21706193685531616\n          }\n        ]\n      },\n      \"Id\": \"d1b0d222-9312-4918-8a1c-75883babab55\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98092651367188,\n      \"Text\": \"account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05786518007516861,\n          \"Height\": 0.009621401317417622,\n          \"Left\": 0.7144820690155029,\n          \"Top\": 0.2074882537126541\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7144820690155029,\n            \"Y\": 0.2074882537126541\n          },\n          {\n            \"X\": 0.7723454236984253,\n            \"Y\": 0.2075221687555313\n          },\n          {\n            \"X\": 0.7723472118377686,\n            \"Y\": 0.21710966527462006\n          },\n          {\n            \"X\": 0.7144836187362671,\n            \"Y\": 0.2170756608247757\n          }\n        ]\n      },\n      \"Id\": \"fc16557f-5934-4560-af6a-076de1eb15af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.98368835449219,\n      \"Text\": \"(subaccount)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09454579651355743,\n          \"Height\": 0.012908977456390858,\n          \"Left\": 0.7759851813316345,\n          \"Top\": 0.20677433907985687\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7759851813316345,\n            \"Y\": 0.20677433907985687\n          },\n          {\n            \"X\": 0.8705278635025024,\n            \"Y\": 0.2068297415971756\n          },\n          {\n            \"X\": 0.8705310225486755,\n            \"Y\": 0.21968331933021545\n          },\n          {\n            \"X\": 0.7759876847267151,\n            \"Y\": 0.2196277230978012\n          }\n        ]\n      },\n      \"Id\": \"b24f6e9f-1819-43f6-8cb9-cb568f34d875\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99009704589844,\n      \"Text\": \"are\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023867234587669373,\n          \"Height\": 0.007884746417403221,\n          \"Left\": 0.8750084042549133,\n          \"Top\": 0.20923636853694916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8750084042549133,\n            \"Y\": 0.20923636853694916\n          },\n          {\n            \"X\": 0.8988736271858215,\n            \"Y\": 0.20925036072731018\n          },\n          {\n            \"X\": 0.8988756537437439,\n            \"Y\": 0.21712110936641693\n          },\n          {\n            \"X\": 0.8750103712081909,\n            \"Y\": 0.21710708737373352\n          }\n        ]\n      },\n      \"Id\": \"c98d7bbc-e8fd-4bf8-b34c-8e759a3d64b7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77914428710938,\n      \"Text\": \"separate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06335442513227463,\n          \"Height\": 0.012099869549274445,\n          \"Left\": 0.09399541467428207,\n          \"Top\": 0.22381699085235596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09399747848510742,\n            \"Y\": 0.22381699085235596\n          },\n          {\n            \"X\": 0.1573498398065567,\n            \"Y\": 0.22385428845882416\n          },\n          {\n            \"X\": 0.15734818577766418,\n            \"Y\": 0.2359168529510498\n          },\n          {\n            \"X\": 0.09399541467428207,\n            \"Y\": 0.23587942123413086\n          }\n        ]\n      },\n      \"Id\": \"6728165d-5249-40da-97c6-e5963105fa3c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99066162109375,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03296501561999321,\n          \"Height\": 0.010193157009780407,\n          \"Left\": 0.1616927832365036,\n          \"Top\": 0.22336603701114655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16169415414333344,\n            \"Y\": 0.22336603701114655\n          },\n          {\n            \"X\": 0.1946578025817871,\n            \"Y\": 0.22338543832302094\n          },\n          {\n            \"X\": 0.1946566104888916,\n            \"Y\": 0.23355919122695923\n          },\n          {\n            \"X\": 0.1616927832365036,\n            \"Y\": 0.23353973031044006\n          }\n        ]\n      },\n      \"Id\": \"e50d9dbb-9c03-4de0-bd47-7a2f8af234de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97967529296875,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023146720603108406,\n          \"Height\": 0.010001848451793194,\n          \"Left\": 0.198907271027565,\n          \"Top\": 0.22352838516235352\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19890841841697693,\n            \"Y\": 0.22352838516235352\n          },\n          {\n            \"X\": 0.22205398976802826,\n            \"Y\": 0.2235420048236847\n          },\n          {\n            \"X\": 0.22205297648906708,\n            \"Y\": 0.2335302233695984\n          },\n          {\n            \"X\": 0.198907271027565,\n            \"Y\": 0.23351655900478363\n          }\n        ]\n      },\n      \"Id\": \"201d39aa-7c21-491d-beec-2e2c4054089e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9842758178711,\n      \"Text\": \"assets\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04709915816783905,\n          \"Height\": 0.009778891690075397,\n          \"Left\": 0.22658486664295197,\n          \"Top\": 0.2238413542509079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22658585011959076,\n            \"Y\": 0.2238413542509079\n          },\n          {\n            \"X\": 0.273684024810791,\n            \"Y\": 0.22386908531188965\n          },\n          {\n            \"X\": 0.2736833095550537,\n            \"Y\": 0.23362025618553162\n          },\n          {\n            \"X\": 0.22658486664295197,\n            \"Y\": 0.2335924357175827\n          }\n        ]\n      },\n      \"Id\": \"c502b45b-104b-4cc6-96d9-9eb70f2349d7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98328399658203,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015003670938313007,\n          \"Height\": 0.010311700403690338,\n          \"Left\": 0.2779533565044403,\n          \"Top\": 0.22320756316184998\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2779541015625,\n            \"Y\": 0.22320756316184998\n          },\n          {\n            \"X\": 0.29295703768730164,\n            \"Y\": 0.22321639955043793\n          },\n          {\n            \"X\": 0.2929563522338867,\n            \"Y\": 0.2335192710161209\n          },\n          {\n            \"X\": 0.2779533565044403,\n            \"Y\": 0.23351040482521057\n          }\n        ]\n      },\n      \"Id\": \"7efd5367-48a5-49b5-a548-17d9910cd9b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90216827392578,\n      \"Text\": \"all\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01612711139023304,\n          \"Height\": 0.010176725685596466,\n          \"Left\": 0.2962803244590759,\n          \"Top\": 0.2234523892402649\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29628098011016846,\n            \"Y\": 0.2234523892402649\n          },\n          {\n            \"X\": 0.3124074339866638,\n            \"Y\": 0.22346188127994537\n          },\n          {\n            \"X\": 0.31240689754486084,\n            \"Y\": 0.23362910747528076\n          },\n          {\n            \"X\": 0.2962803244590759,\n            \"Y\": 0.2336195856332779\n          }\n        ]\n      },\n      \"Id\": \"90bb5656-30ce-4941-9dee-fb4a7f5af4ca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98297119140625,\n      \"Text\": \"other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038101959973573685,\n          \"Height\": 0.01002807728946209,\n          \"Left\": 0.31700459122657776,\n          \"Top\": 0.2234652191400528\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31700509786605835,\n            \"Y\": 0.2234652191400528\n          },\n          {\n            \"X\": 0.35510653257369995,\n            \"Y\": 0.22348766028881073\n          },\n          {\n            \"X\": 0.3551062345504761,\n            \"Y\": 0.23349329829216003\n          },\n          {\n            \"X\": 0.31700459122657776,\n            \"Y\": 0.23347081243991852\n          }\n        ]\n      },\n      \"Id\": \"7d57dd65-606c-4e53-9b2a-d59efe089a20\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94124603271484,\n      \"Text\": \"accounts\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0655171200633049,\n          \"Height\": 0.009763729758560658,\n          \"Left\": 0.35877981781959534,\n          \"Top\": 0.22384920716285706\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3587800860404968,\n            \"Y\": 0.22384920716285706\n          },\n          {\n            \"X\": 0.42429688572883606,\n            \"Y\": 0.22388778626918793\n          },\n          {\n            \"X\": 0.42429691553115845,\n            \"Y\": 0.23361293971538544\n          },\n          {\n            \"X\": 0.35877981781959534,\n            \"Y\": 0.2335742563009262\n          }\n        ]\n      },\n      \"Id\": \"389f0563-a57b-403e-9711-0ce6e5757d65\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.87512969970703,\n      \"Text\": \"(subaccounts)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10208801180124283,\n          \"Height\": 0.012738797813653946,\n          \"Left\": 0.42938584089279175,\n          \"Top\": 0.2232675552368164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42938584089279175,\n            \"Y\": 0.2232675552368164\n          },\n          {\n            \"X\": 0.5314730405807495,\n            \"Y\": 0.2233276516199112\n          },\n          {\n            \"X\": 0.5314738154411316,\n            \"Y\": 0.23600634932518005\n          },\n          {\n            \"X\": 0.4293859302997589,\n            \"Y\": 0.23594602942466736\n          }\n        ]\n      },\n      \"Id\": \"147ce85c-547f-4747-b457-a936de470fd5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.53263092041016,\n      \"Text\": \"of,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017754165455698967,\n          \"Height\": 0.011744411662220955,\n          \"Left\": 0.535841703414917,\n          \"Top\": 0.2233343869447708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.535841703414917,\n            \"Y\": 0.2233343869447708\n          },\n          {\n            \"X\": 0.5535950064659119,\n            \"Y\": 0.2233448475599289\n          },\n          {\n            \"X\": 0.5535958409309387,\n            \"Y\": 0.23507879674434662\n          },\n          {\n            \"X\": 0.5358424782752991,\n            \"Y\": 0.23506832122802734\n          }\n        ]\n      },\n      \"Id\": \"ebffd917-43f2-46fb-ac80-0b20f842a0a3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95481872558594,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015061464160680771,\n          \"Height\": 0.008164171129465103,\n          \"Left\": 0.5588275790214539,\n          \"Top\": 0.2253894954919815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5588275790214539,\n            \"Y\": 0.2253894954919815\n          },\n          {\n            \"X\": 0.57388836145401,\n            \"Y\": 0.22539836168289185\n          },\n          {\n            \"X\": 0.5738890767097473,\n            \"Y\": 0.2335536628961563\n          },\n          {\n            \"X\": 0.5588282346725464,\n            \"Y\": 0.23354478180408478\n          }\n        ]\n      },\n      \"Id\": \"6567dffd-7035-4589-bf2f-da52dfcc6073\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8489761352539,\n      \"Text\": \"administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09261848032474518,\n          \"Height\": 0.010061568580567837,\n          \"Left\": 0.5781168937683105,\n          \"Top\": 0.22346976399421692\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781168937683105,\n            \"Y\": 0.22346976399421692\n          },\n          {\n            \"X\": 0.6707339882850647,\n            \"Y\": 0.2235242873430252\n          },\n          {\n            \"X\": 0.6707353591918945,\n            \"Y\": 0.23353132605552673\n          },\n          {\n            \"X\": 0.5781177878379822,\n            \"Y\": 0.2334766536951065\n          }\n        ]\n      },\n      \"Id\": \"ec87f64a-b5db-49c1-8804-2b7abc092160\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89556884765625,\n      \"Text\": \"by,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021383721381425858,\n          \"Height\": 0.01263118814677,\n          \"Left\": 0.6759320497512817,\n          \"Top\": 0.22342410683631897\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6759320497512817,\n            \"Y\": 0.22342410683631897\n          },\n          {\n            \"X\": 0.6973138451576233,\n            \"Y\": 0.22343669831752777\n          },\n          {\n            \"X\": 0.6973157525062561,\n            \"Y\": 0.23605529963970184\n          },\n          {\n            \"X\": 0.6759337782859802,\n            \"Y\": 0.23604266345500946\n          }\n        ]\n      },\n      \"Id\": \"4881e74a-0130-49db-b76c-f19c05cfc9f4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98995971679688,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022564677521586418,\n          \"Height\": 0.010050307027995586,\n          \"Left\": 0.7021958231925964,\n          \"Top\": 0.22349348664283752\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7021958231925964,\n            \"Y\": 0.22349348664283752\n          },\n          {\n            \"X\": 0.7247588038444519,\n            \"Y\": 0.22350677847862244\n          },\n          {\n            \"X\": 0.7247604727745056,\n            \"Y\": 0.23354379832744598\n          },\n          {\n            \"X\": 0.7021973729133606,\n            \"Y\": 0.23353047668933868\n          }\n        ]\n      },\n      \"Id\": \"5ddb6e55-f173-49d2-8b67-33acf738c2fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.48417663574219,\n      \"Text\": \"IMF.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03106646053493023,\n          \"Height\": 0.010404998436570168,\n          \"Left\": 0.7304387092590332,\n          \"Top\": 0.2232111245393753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7304387092590332,\n            \"Y\": 0.2232111245393753\n          },\n          {\n            \"X\": 0.7615032196044922,\n            \"Y\": 0.22322940826416016\n          },\n          {\n            \"X\": 0.761505126953125,\n            \"Y\": 0.23361612856388092\n          },\n          {\n            \"X\": 0.7304404377937317,\n            \"Y\": 0.2335977852344513\n          }\n        ]\n      },\n      \"Id\": \"a7e1dbc1-2a0e-4505-b8e9-fb4bec732afe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98506164550781,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028535064309835434,\n          \"Height\": 0.010313359089195728,\n          \"Left\": 0.76642245054245,\n          \"Top\": 0.22321708500385284\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.76642245054245,\n            \"Y\": 0.22321708500385284\n          },\n          {\n            \"X\": 0.7949554324150085,\n            \"Y\": 0.2232338786125183\n          },\n          {\n            \"X\": 0.7949575185775757,\n            \"Y\": 0.2335304319858551\n          },\n          {\n            \"X\": 0.7664243578910828,\n            \"Y\": 0.23351359367370605\n          }\n        ]\n      },\n      \"Id\": \"ff0d19f8-a6d8-4188-80d7-585888ffb57f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98417663574219,\n      \"Text\": \"assets\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04685797914862633,\n          \"Height\": 0.009897524490952492,\n          \"Left\": 0.7995246648788452,\n          \"Top\": 0.2237945944070816\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7995246648788452,\n            \"Y\": 0.2237945944070816\n          },\n          {\n            \"X\": 0.846380352973938,\n            \"Y\": 0.22382217645645142\n          },\n          {\n            \"X\": 0.8463826775550842,\n            \"Y\": 0.23369210958480835\n          },\n          {\n            \"X\": 0.7995266914367676,\n            \"Y\": 0.23366445302963257\n          }\n        ]\n      },\n      \"Id\": \"905eda18-af89-4283-a5bb-9a92e23a6792\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97208404541016,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015050021931529045,\n          \"Height\": 0.010319937951862812,\n          \"Left\": 0.8509330749511719,\n          \"Top\": 0.2231675386428833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8509330749511719,\n            \"Y\": 0.2231675386428833\n          },\n          {\n            \"X\": 0.8659805655479431,\n            \"Y\": 0.22317638993263245\n          },\n          {\n            \"X\": 0.8659830689430237,\n            \"Y\": 0.23348747193813324\n          },\n          {\n            \"X\": 0.8509354591369629,\n            \"Y\": 0.2334785908460617\n          }\n        ]\n      },\n      \"Id\": \"5658c072-948b-4ff1-8448-4e9184c262f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99079132080078,\n      \"Text\": \"each\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035143643617630005,\n          \"Height\": 0.010155677795410156,\n          \"Left\": 0.8696784377098083,\n          \"Top\": 0.2234405279159546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8696784377098083,\n            \"Y\": 0.2234405279159546\n          },\n          {\n            \"X\": 0.9048194289207458,\n            \"Y\": 0.22346121072769165\n          },\n          {\n            \"X\": 0.904822051525116,\n            \"Y\": 0.23359620571136475\n          },\n          {\n            \"X\": 0.8696808815002441,\n            \"Y\": 0.23357544839382172\n          }\n        ]\n      },\n      \"Id\": \"72c28c19-dc9a-4cd1-8e33-7d435302f542\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96253967285156,\n      \"Text\": \"account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05790025368332863,\n          \"Height\": 0.009776724502444267,\n          \"Left\": 0.09402242302894592,\n          \"Top\": 0.23961474001407623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09402409195899963,\n            \"Y\": 0.23961474001407623\n          },\n          {\n            \"X\": 0.15192267298698425,\n            \"Y\": 0.2396489828824997\n          },\n          {\n            \"X\": 0.1519213169813156,\n            \"Y\": 0.24939146637916565\n          },\n          {\n            \"X\": 0.09402242302894592,\n            \"Y\": 0.24935713410377502\n          }\n        ]\n      },\n      \"Id\": \"3ec05f9b-e857-4662-982d-e017bdd2cc14\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.93480682373047,\n      \"Text\": \"(subaccount)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09433218091726303,\n          \"Height\": 0.013003207743167877,\n          \"Left\": 0.15598535537719727,\n          \"Top\": 0.23881900310516357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15598714351654053,\n            \"Y\": 0.23881900310516357\n          },\n          {\n            \"X\": 0.2503175437450409,\n            \"Y\": 0.23887477815151215\n          },\n          {\n            \"X\": 0.25031641125679016,\n            \"Y\": 0.25182220339775085\n          },\n          {\n            \"X\": 0.15598535537719727,\n            \"Y\": 0.25176623463630676\n          }\n        ]\n      },\n      \"Id\": \"db5ccb70-768e-4546-b88a-45519eb7c996\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98188781738281,\n      \"Text\": \"are\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02387552708387375,\n          \"Height\": 0.008159467950463295,\n          \"Left\": 0.25458425283432007,\n          \"Top\": 0.2412441223859787\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.254584938287735,\n            \"Y\": 0.2412441223859787\n          },\n          {\n            \"X\": 0.2784597873687744,\n            \"Y\": 0.24125824868679047\n          },\n          {\n            \"X\": 0.27845919132232666,\n            \"Y\": 0.24940358102321625\n          },\n          {\n            \"X\": 0.25458425283432007,\n            \"Y\": 0.2493894249200821\n          }\n        ]\n      },\n      \"Id\": \"091ee2b0-b193-4a18-8f87-6713d7320e92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98089599609375,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02322687767446041,\n          \"Height\": 0.009791623800992966,\n          \"Left\": 0.28298434615135193,\n          \"Top\": 0.2396508902311325\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28298503160476685,\n            \"Y\": 0.2396508902311325\n          },\n          {\n            \"X\": 0.3062112331390381,\n            \"Y\": 0.23966462910175323\n          },\n          {\n            \"X\": 0.3062106668949127,\n            \"Y\": 0.24944251775741577\n          },\n          {\n            \"X\": 0.28298434615135193,\n            \"Y\": 0.24942874908447266\n          }\n        ]\n      },\n      \"Id\": \"f10adb63-5197-40d7-bd73-2de79a189f02\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98644256591797,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01397821493446827,\n          \"Height\": 0.009687905199825764,\n          \"Left\": 0.3096882104873657,\n          \"Top\": 0.2396911382675171\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3096887469291687,\n            \"Y\": 0.2396911382675171\n          },\n          {\n            \"X\": 0.32366642355918884,\n            \"Y\": 0.23969940841197968\n          },\n          {\n            \"X\": 0.32366594672203064,\n            \"Y\": 0.24937903881072998\n          },\n          {\n            \"X\": 0.3096882104873657,\n            \"Y\": 0.2493707537651062\n          }\n        ]\n      },\n      \"Id\": \"56f2b7eb-66be-4422-a06b-3fea73f744da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9313735961914,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017696931958198547,\n          \"Height\": 0.010133020579814911,\n          \"Left\": 0.3285711705684662,\n          \"Top\": 0.23923157155513763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3285716474056244,\n            \"Y\": 0.23923157155513763\n          },\n          {\n            \"X\": 0.3462681174278259,\n            \"Y\": 0.23924203217029572\n          },\n          {\n            \"X\": 0.3462677597999573,\n            \"Y\": 0.24936459958553314\n          },\n          {\n            \"X\": 0.3285711705684662,\n            \"Y\": 0.24935409426689148\n          }\n        ]\n      },\n      \"Id\": \"59baa264-89f5-4a77-b233-15831b4e8dc1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9647445678711,\n      \"Text\": \"used\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03502817079424858,\n          \"Height\": 0.01013196725398302,\n          \"Left\": 0.35119929909706116,\n          \"Top\": 0.23923014104366302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3511996269226074,\n            \"Y\": 0.23923014104366302\n          },\n          {\n            \"X\": 0.38622745871543884,\n            \"Y\": 0.23925085365772247\n          },\n          {\n            \"X\": 0.3862273097038269,\n            \"Y\": 0.24936211109161377\n          },\n          {\n            \"X\": 0.35119929909706116,\n            \"Y\": 0.24934133887290955\n          }\n        ]\n      },\n      \"Id\": \"b986116f-c0ba-4891-a234-d6e5446bc20b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98611450195312,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013676740229129791,\n          \"Height\": 0.009572151117026806,\n          \"Left\": 0.39071837067604065,\n          \"Top\": 0.2397163212299347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3907184898853302,\n            \"Y\": 0.2397163212299347\n          },\n          {\n            \"X\": 0.40439513325691223,\n            \"Y\": 0.23972441256046295\n          },\n          {\n            \"X\": 0.40439507365226746,\n            \"Y\": 0.24928846955299377\n          },\n          {\n            \"X\": 0.39071837067604065,\n            \"Y\": 0.24928036332130432\n          }\n        ]\n      },\n      \"Id\": \"c5a98ff5-b31e-44cf-8943-e364d471db10\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90631103515625,\n      \"Text\": \"discharge\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0706881508231163,\n          \"Height\": 0.012888059951364994,\n          \"Left\": 0.40925419330596924,\n          \"Top\": 0.23903855681419373\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4092542231082916,\n            \"Y\": 0.23903855681419373\n          },\n          {\n            \"X\": 0.47994187474250793,\n            \"Y\": 0.23908035457134247\n          },\n          {\n            \"X\": 0.47994232177734375,\n            \"Y\": 0.25192660093307495\n          },\n          {\n            \"X\": 0.40925419330596924,\n            \"Y\": 0.25188466906547546\n          }\n        ]\n      },\n      \"Id\": \"2f40ed57-8936-4c8b-942a-985f6fd83910\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85220336914062,\n      \"Text\": \"liabilities\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06173993647098541,\n          \"Height\": 0.010266849771142006,\n          \"Left\": 0.4846798777580261,\n          \"Top\": 0.23911970853805542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4846798777580261,\n            \"Y\": 0.23911970853805542\n          },\n          {\n            \"X\": 0.546419084072113,\n            \"Y\": 0.23915621638298035\n          },\n          {\n            \"X\": 0.5464197993278503,\n            \"Y\": 0.24938656389713287\n          },\n          {\n            \"X\": 0.48468026518821716,\n            \"Y\": 0.2493499517440796\n          }\n        ]\n      },\n      \"Id\": \"1a53de21-4b73-4016-a234-ae028c5b91e3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9598617553711,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015244522131979465,\n          \"Height\": 0.007798934355378151,\n          \"Left\": 0.5507619976997375,\n          \"Top\": 0.24156709015369415\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5507619976997375,\n            \"Y\": 0.24156709015369415\n          },\n          {\n            \"X\": 0.5660058856010437,\n            \"Y\": 0.24157610535621643\n          },\n          {\n            \"X\": 0.5660065412521362,\n            \"Y\": 0.24936603009700775\n          },\n          {\n            \"X\": 0.5507625937461853,\n            \"Y\": 0.24935698509216309\n          }\n        ]\n      },\n      \"Id\": \"bb3ba9b2-2807-4759-9e8e-cc611dff975e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9885482788086,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014117654412984848,\n          \"Height\": 0.009508123621344566,\n          \"Left\": 0.5696669220924377,\n          \"Top\": 0.23979191482067108\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5696669220924377,\n            \"Y\": 0.23979191482067108\n          },\n          {\n            \"X\": 0.5837836861610413,\n            \"Y\": 0.23980025947093964\n          },\n          {\n            \"X\": 0.5837845802307129,\n            \"Y\": 0.2493000328540802\n          },\n          {\n            \"X\": 0.5696676969528198,\n            \"Y\": 0.24929167330265045\n          }\n        ]\n      },\n      \"Id\": \"aaa6680c-6bac-4573-b70b-4ac60c1b80ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92958068847656,\n      \"Text\": \"cover\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04040278121829033,\n          \"Height\": 0.007850157096982002,\n          \"Left\": 0.5882871150970459,\n          \"Top\": 0.24148254096508026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5882871150970459,\n            \"Y\": 0.24148254096508026\n          },\n          {\n            \"X\": 0.6286889910697937,\n            \"Y\": 0.2415064424276352\n          },\n          {\n            \"X\": 0.6286898851394653,\n            \"Y\": 0.24933269619941711\n          },\n          {\n            \"X\": 0.5882878303527832,\n            \"Y\": 0.2493087500333786\n          }\n        ]\n      },\n      \"Id\": \"13785f8b-aadf-4503-afa1-a93ba334b628\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87342834472656,\n      \"Text\": \"losses\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045753978192806244,\n          \"Height\": 0.009845748543739319,\n          \"Left\": 0.6328450441360474,\n          \"Top\": 0.23945704102516174\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6328450441360474,\n            \"Y\": 0.23945704102516174\n          },\n          {\n            \"X\": 0.678597629070282,\n            \"Y\": 0.23948410153388977\n          },\n          {\n            \"X\": 0.6785989999771118,\n            \"Y\": 0.24930278956890106\n          },\n          {\n            \"X\": 0.6328461766242981,\n            \"Y\": 0.24927566945552826\n          }\n        ]\n      },\n      \"Id\": \"41cf10fc-da3c-40fa-821c-7459a2096b64\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98292541503906,\n      \"Text\": \"incurred\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05847112089395523,\n          \"Height\": 0.010028820484876633,\n          \"Left\": 0.6837551593780518,\n          \"Top\": 0.23924151062965393\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6837551593780518,\n            \"Y\": 0.23924151062965393\n          },\n          {\n            \"X\": 0.7422245144844055,\n            \"Y\": 0.23927608132362366\n          },\n          {\n            \"X\": 0.742226243019104,\n            \"Y\": 0.24927033483982086\n          },\n          {\n            \"X\": 0.6837565898895264,\n            \"Y\": 0.24923565983772278\n          }\n        ]\n      },\n      \"Id\": \"07a619d0-e082-4eb0-9fd0-bbb89da795da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98048400878906,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012396258302032948,\n          \"Height\": 0.009863286279141903,\n          \"Left\": 0.7472844123840332,\n          \"Top\": 0.2393052577972412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7472844123840332,\n            \"Y\": 0.2393052577972412\n          },\n          {\n            \"X\": 0.7596789002418518,\n            \"Y\": 0.23931258916854858\n          },\n          {\n            \"X\": 0.7596806883811951,\n            \"Y\": 0.2491685450077057\n          },\n          {\n            \"X\": 0.7472862005233765,\n            \"Y\": 0.24916119873523712\n          }\n        ]\n      },\n      \"Id\": \"d5c8b74a-7b24-4ab3-bb4b-dd580bf89a50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99573516845703,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023213790729641914,\n          \"Height\": 0.009921571239829063,\n          \"Left\": 0.7639899849891663,\n          \"Top\": 0.23938213288784027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7639899849891663,\n            \"Y\": 0.23938213288784027\n          },\n          {\n            \"X\": 0.7872018218040466,\n            \"Y\": 0.2393958568572998\n          },\n          {\n            \"X\": 0.7872037887573242,\n            \"Y\": 0.2493036985397339\n          },\n          {\n            \"X\": 0.7639918327331543,\n            \"Y\": 0.24928992986679077\n          }\n        ]\n      },\n      \"Id\": \"aae4d055-cc08-4a33-beb8-4e1e813546b6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82955169677734,\n      \"Text\": \"administration\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10131904482841492,\n          \"Height\": 0.010387754067778587,\n          \"Left\": 0.7915577292442322,\n          \"Top\": 0.23900988698005676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7915577292442322,\n            \"Y\": 0.23900988698005676\n          },\n          {\n            \"X\": 0.8928741216659546,\n            \"Y\": 0.23906978964805603\n          },\n          {\n            \"X\": 0.8928768038749695,\n            \"Y\": 0.2493976354598999\n          },\n          {\n            \"X\": 0.7915598154067993,\n            \"Y\": 0.2493375539779663\n          }\n        ]\n      },\n      \"Id\": \"c738ba54-ad68-4f30-98ba-3e146ba9faa2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98283386230469,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014839721843600273,\n          \"Height\": 0.010307418182492256,\n          \"Left\": 0.89765465259552,\n          \"Top\": 0.23894910514354706\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.89765465259552,\n            \"Y\": 0.23894910514354706\n          },\n          {\n            \"X\": 0.9124916195869446,\n            \"Y\": 0.23895788192749023\n          },\n          {\n            \"X\": 0.9124943614006042,\n            \"Y\": 0.24925652146339417\n          },\n          {\n            \"X\": 0.8976572751998901,\n            \"Y\": 0.2492477297782898\n          }\n        ]\n      },\n      \"Id\": \"b234afad-622e-47c1-9837-6378a91f9503\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99168395996094,\n      \"Text\": \"other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037951551377773285,\n          \"Height\": 0.010063636116683483,\n          \"Left\": 0.09396214783191681,\n          \"Top\": 0.2558780610561371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0939638614654541,\n            \"Y\": 0.2558780610561371\n          },\n          {\n            \"X\": 0.1319136917591095,\n            \"Y\": 0.2559005916118622\n          },\n          {\n            \"X\": 0.13191218674182892,\n            \"Y\": 0.26594167947769165\n          },\n          {\n            \"X\": 0.09396214783191681,\n            \"Y\": 0.2659190893173218\n          }\n        ]\n      },\n      \"Id\": \"96457c5c-d07d-41bf-ac13-b9e8e61d2055\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94820404052734,\n      \"Text\": \"accounts\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06526791304349899,\n          \"Height\": 0.009685518220067024,\n          \"Left\": 0.13616110384464264,\n          \"Top\": 0.25624269247055054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13616253435611725,\n            \"Y\": 0.25624269247055054\n          },\n          {\n            \"X\": 0.20142902433872223,\n            \"Y\": 0.25628146529197693\n          },\n          {\n            \"X\": 0.20142792165279388,\n            \"Y\": 0.2659282088279724\n          },\n          {\n            \"X\": 0.13616110384464264,\n            \"Y\": 0.26588934659957886\n          }\n        ]\n      },\n      \"Id\": \"a993f897-6fd7-43fa-80f9-1b1bd4242d08\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.38973999023438,\n      \"Text\": \"(subaccounts).\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1064906120300293,\n          \"Height\": 0.012746107764542103,\n          \"Left\": 0.2061934918165207,\n          \"Top\": 0.25551846623420715\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2061949074268341,\n            \"Y\": 0.25551846623420715\n          },\n          {\n            \"X\": 0.3126841187477112,\n            \"Y\": 0.25558173656463623\n          },\n          {\n            \"X\": 0.31268343329429626,\n            \"Y\": 0.2682645618915558\n          },\n          {\n            \"X\": 0.2061934918165207,\n            \"Y\": 0.26820108294487\n          }\n        ]\n      },\n      \"Id\": \"b4133266-54fa-4223-9938-2698a4c12e92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96459197998047,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02802998386323452,\n          \"Height\": 0.010264240205287933,\n          \"Left\": 0.09392910450696945,\n          \"Top\": 0.3038250803947449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09393085539340973,\n            \"Y\": 0.3038250803947449\n          },\n          {\n            \"X\": 0.12195909023284912,\n            \"Y\": 0.3038419485092163\n          },\n          {\n            \"X\": 0.12195749580860138,\n            \"Y\": 0.3140893280506134\n          },\n          {\n            \"X\": 0.09392910450696945,\n            \"Y\": 0.3140724003314972\n          }\n        ]\n      },\n      \"Id\": \"282cb843-c0f3-403c-9cae-3578ff3ba03f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9282455444336,\n      \"Text\": \"changes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06147453933954239,\n          \"Height\": 0.012628375552594662,\n          \"Left\": 0.1268385946750641,\n          \"Top\": 0.3038266599178314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1268405318260193,\n            \"Y\": 0.3038266599178314\n          },\n          {\n            \"X\": 0.18831314146518707,\n            \"Y\": 0.30386364459991455\n          },\n          {\n            \"X\": 0.1883116215467453,\n            \"Y\": 0.31645503640174866\n          },\n          {\n            \"X\": 0.1268385946750641,\n            \"Y\": 0.3164179027080536\n          }\n        ]\n      },\n      \"Id\": \"2b94ba16-efa0-49b6-975b-63ae13cc7209\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97467803955078,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012427822686731815,\n          \"Height\": 0.010072821751236916,\n          \"Left\": 0.19294005632400513,\n          \"Top\": 0.30387699604034424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19294123351573944,\n            \"Y\": 0.30387699604034424\n          },\n          {\n            \"X\": 0.20536787807941437,\n            \"Y\": 0.30388447642326355\n          },\n          {\n            \"X\": 0.20536674559116364,\n            \"Y\": 0.3139498233795166\n          },\n          {\n            \"X\": 0.19294005632400513,\n            \"Y\": 0.3139423131942749\n          }\n        ]\n      },\n      \"Id\": \"b6e77682-bd4d-4427-a223-2aac6f21fb9a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97013854980469,\n      \"Text\": \"total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03134876862168312,\n          \"Height\": 0.010128427296876907,\n          \"Left\": 0.2096366286277771,\n          \"Top\": 0.30368658900260925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20963773131370544,\n            \"Y\": 0.30368658900260925\n          },\n          {\n            \"X\": 0.24098539352416992,\n            \"Y\": 0.30370545387268066\n          },\n          {\n            \"X\": 0.2409844547510147,\n            \"Y\": 0.31381499767303467\n          },\n          {\n            \"X\": 0.2096366286277771,\n            \"Y\": 0.3137960731983185\n          }\n        ]\n      },\n      \"Id\": \"f37a47b8-3423-4533-96db-69d34549aa66\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.985107421875,\n      \"Text\": \"assets\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047153912484645844,\n          \"Height\": 0.009823477827012539,\n          \"Left\": 0.24541664123535156,\n          \"Top\": 0.30426645278930664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.245417520403862,\n            \"Y\": 0.30426645278930664\n          },\n          {\n            \"X\": 0.292570561170578,\n            \"Y\": 0.3042948246002197\n          },\n          {\n            \"X\": 0.2925699055194855,\n            \"Y\": 0.31408992409706116\n          },\n          {\n            \"X\": 0.24541664123535156,\n            \"Y\": 0.3140614628791809\n          }\n        ]\n      },\n      \"Id\": \"0dedfa05-0537-4b25-8a56-5bf60d3749e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9861068725586,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014627829194068909,\n          \"Height\": 0.010315267369151115,\n          \"Left\": 0.29730623960494995,\n          \"Top\": 0.30370479822158813\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2973068654537201,\n            \"Y\": 0.30370479822158813\n          },\n          {\n            \"X\": 0.31193405389785767,\n            \"Y\": 0.3037136197090149\n          },\n          {\n            \"X\": 0.3119334876537323,\n            \"Y\": 0.3140200674533844\n          },\n          {\n            \"X\": 0.29730623960494995,\n            \"Y\": 0.31401124596595764\n          }\n        ]\n      },\n      \"Id\": \"5612412c-7ef9-4d08-af54-599109c34387\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9903564453125,\n      \"Text\": \"these\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04039229080080986,\n          \"Height\": 0.010005932301282883,\n          \"Left\": 0.3150721490383148,\n          \"Top\": 0.3039744794368744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3150726854801178,\n            \"Y\": 0.3039744794368744\n          },\n          {\n            \"X\": 0.35546445846557617,\n            \"Y\": 0.30399879813194275\n          },\n          {\n            \"X\": 0.3554641306400299,\n            \"Y\": 0.31398043036460876\n          },\n          {\n            \"X\": 0.3150721490383148,\n            \"Y\": 0.31395602226257324\n          }\n        ]\n      },\n      \"Id\": \"12dcb674-a206-4a98-9150-3cc0face2c56\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96214294433594,\n      \"Text\": \"accounts\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06519856303930283,\n          \"Height\": 0.009706903249025345,\n          \"Left\": 0.36018964648246765,\n          \"Top\": 0.3043457865715027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36018994450569153,\n            \"Y\": 0.3043457865715027\n          },\n          {\n            \"X\": 0.4253881573677063,\n            \"Y\": 0.3043850362300873\n          },\n          {\n            \"X\": 0.4253882169723511,\n            \"Y\": 0.31405267119407654\n          },\n          {\n            \"X\": 0.36018964648246765,\n            \"Y\": 0.3140133321285248\n          }\n        ]\n      },\n      \"Id\": \"9caf4b7d-4b0a-415a-ac68-d64c9e18513b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9811782836914,\n      \"Text\": \"were\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03593678027391434,\n          \"Height\": 0.007812627591192722,\n          \"Left\": 0.4292522072792053,\n          \"Top\": 0.3061528503894806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4292522072792053,\n            \"Y\": 0.3061528503894806\n          },\n          {\n            \"X\": 0.46518877148628235,\n            \"Y\": 0.30617451667785645\n          },\n          {\n            \"X\": 0.46518898010253906,\n            \"Y\": 0.31396549940109253\n          },\n          {\n            \"X\": 0.4292522668838501,\n            \"Y\": 0.3139438033103943\n          }\n        ]\n      },\n      \"Id\": \"53b7d129-429f-47af-a7f2-1ec728133f03\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97380065917969,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016802148893475533,\n          \"Height\": 0.007713027764111757,\n          \"Left\": 0.4700133502483368,\n          \"Top\": 0.30626174807548523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4700133502483368,\n            \"Y\": 0.30626174807548523\n          },\n          {\n            \"X\": 0.4868151843547821,\n            \"Y\": 0.30627185106277466\n          },\n          {\n            \"X\": 0.486815482378006,\n            \"Y\": 0.3139747679233551\n          },\n          {\n            \"X\": 0.4700135588645935,\n            \"Y\": 0.3139646351337433\n          }\n        ]\n      },\n      \"Id\": \"fa06e9fd-60f2-46b6-93c2-8b1aba74beb5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78399658203125,\n      \"Text\": \"follows:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05426274612545967,\n          \"Height\": 0.010415904223918915,\n          \"Left\": 0.49114301800727844,\n          \"Top\": 0.3037436902523041\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49114301800727844,\n            \"Y\": 0.3037436902523041\n          },\n          {\n            \"X\": 0.5454050302505493,\n            \"Y\": 0.303776353597641\n          },\n          {\n            \"X\": 0.5454057455062866,\n            \"Y\": 0.3141595721244812\n          },\n          {\n            \"X\": 0.49114346504211426,\n            \"Y\": 0.3141268193721771\n          }\n        ]\n      },\n      \"Id\": \"6c611d71-5b93-468c-9fd4-527c46f7c3fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90959167480469,\n      \"Text\": \"April\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03032832220196724,\n          \"Height\": 0.010058713145554066,\n          \"Left\": 0.5051074624061584,\n          \"Top\": 0.33661210536956787\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5051074624061584,\n            \"Y\": 0.33661210536956787\n          },\n          {\n            \"X\": 0.535435140132904,\n            \"Y\": 0.33663052320480347\n          },\n          {\n            \"X\": 0.5354357957839966,\n            \"Y\": 0.34667083621025085\n          },\n          {\n            \"X\": 0.5051079988479614,\n            \"Y\": 0.3466523587703705\n          }\n        ]\n      },\n      \"Id\": \"10646fb8-c86c-42c6-8d54-334fbe679eef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7179183959961,\n      \"Text\": \"30,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01753835566341877,\n          \"Height\": 0.009591001085937023,\n          \"Left\": 0.5392479300498962,\n          \"Top\": 0.3367171585559845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5392479300498962,\n            \"Y\": 0.3367171585559845\n          },\n          {\n            \"X\": 0.556785523891449,\n            \"Y\": 0.3367277979850769\n          },\n          {\n            \"X\": 0.5567862391471863,\n            \"Y\": 0.3463081419467926\n          },\n          {\n            \"X\": 0.539248526096344,\n            \"Y\": 0.3462974727153778\n          }\n        ]\n      },\n      \"Id\": \"09bad234-9061-49df-862f-878dd0855ae0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61124420166016,\n      \"Text\": \"Contributions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08568776398897171,\n          \"Height\": 0.008445016108453274,\n          \"Left\": 0.5845335721969604,\n          \"Top\": 0.3365415036678314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5845335721969604,\n            \"Y\": 0.3365415036678314\n          },\n          {\n            \"X\": 0.6702201962471008,\n            \"Y\": 0.33659353852272034\n          },\n          {\n            \"X\": 0.6702213287353516,\n            \"Y\": 0.3449864983558655\n          },\n          {\n            \"X\": 0.5845343470573425,\n            \"Y\": 0.344934344291687\n          }\n        ]\n      },\n      \"Id\": \"8b2b0a0e-19f2-4228-9f7a-65949a2b1c74\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.1831283569336,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004984432365745306,\n          \"Height\": 0.008651554584503174,\n          \"Left\": 0.6730255484580994,\n          \"Top\": 0.3363025486469269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6730255484580994,\n            \"Y\": 0.3363025486469269\n          },\n          {\n            \"X\": 0.6780087351799011,\n            \"Y\": 0.33630555868148804\n          },\n          {\n            \"X\": 0.6780099868774414,\n            \"Y\": 0.34495410323143005\n          },\n          {\n            \"X\": 0.6730267405509949,\n            \"Y\": 0.3449510633945465\n          }\n        ]\n      },\n      \"Id\": \"91ef6bc5-71b0-4a03-bd0b-ca30aa47992c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79901885986328,\n      \"Text\": \"Net\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02066594734787941,\n          \"Height\": 0.008332264609634876,\n          \"Left\": 0.6879351735115051,\n          \"Top\": 0.3365973234176636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6879351735115051,\n            \"Y\": 0.3365973234176636\n          },\n          {\n            \"X\": 0.708599865436554,\n            \"Y\": 0.3366098999977112\n          },\n          {\n            \"X\": 0.708601176738739,\n            \"Y\": 0.34492960572242737\n          },\n          {\n            \"X\": 0.6879364252090454,\n            \"Y\": 0.34491702914237976\n          }\n        ]\n      },\n      \"Id\": \"8d5f866c-6841-4aa5-89a1-bcdf9d8d7774\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88410186767578,\n      \"Text\": \"income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04566148295998573,\n          \"Height\": 0.00836423970758915,\n          \"Left\": 0.7122724056243896,\n          \"Top\": 0.3366430103778839\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7122724056243896,\n            \"Y\": 0.3366430103778839\n          },\n          {\n            \"X\": 0.7579323649406433,\n            \"Y\": 0.33667075634002686\n          },\n          {\n            \"X\": 0.7579338550567627,\n            \"Y\": 0.3450072705745697\n          },\n          {\n            \"X\": 0.7122737169265747,\n            \"Y\": 0.344979465007782\n          }\n        ]\n      },\n      \"Id\": \"3a885612-44f7-4d6b-882f-b4541eee1f33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.52427673339844,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005158871412277222,\n          \"Height\": 0.008505902253091335,\n          \"Left\": 0.7607846856117249,\n          \"Top\": 0.3363363444805145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7607846856117249,\n            \"Y\": 0.3363363444805145\n          },\n          {\n            \"X\": 0.7659419775009155,\n            \"Y\": 0.33633947372436523\n          },\n          {\n            \"X\": 0.7659435868263245,\n            \"Y\": 0.34484222531318665\n          },\n          {\n            \"X\": 0.7607862949371338,\n            \"Y\": 0.34483909606933594\n          }\n        ]\n      },\n      \"Id\": \"b8f3b006-b961-4896-b9bb-e5d0042da25c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90166473388672,\n      \"Text\": \"Transfers\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060336992144584656,\n          \"Height\": 0.008420322090387344,\n          \"Left\": 0.776665210723877,\n          \"Top\": 0.3365754187107086\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.776665210723877,\n            \"Y\": 0.3365754187107086\n          },\n          {\n            \"X\": 0.83700031042099,\n            \"Y\": 0.3366120755672455\n          },\n          {\n            \"X\": 0.8370022177696228,\n            \"Y\": 0.34499573707580566\n          },\n          {\n            \"X\": 0.7766668796539307,\n            \"Y\": 0.344959020614624\n          }\n        ]\n      },\n      \"Id\": \"139349b8-e76e-4068-b74a-a402cf4c8c6d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.867919921875,\n      \"Text\": \"October\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050034720450639725,\n          \"Height\": 0.008356522768735886,\n          \"Left\": 0.8599080443382263,\n          \"Top\": 0.33666500449180603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8599080443382263,\n            \"Y\": 0.33666500449180603\n          },\n          {\n            \"X\": 0.9099405407905579,\n            \"Y\": 0.3366953730583191\n          },\n          {\n            \"X\": 0.9099427461624146,\n            \"Y\": 0.345021516084671\n          },\n          {\n            \"X\": 0.8599100112915039,\n            \"Y\": 0.3449910581111908\n          }\n        ]\n      },\n      \"Id\": \"747092f5-fa82-4cbc-a43c-a10aff095099\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63456726074219,\n      \"Text\": \"31,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017520438879728317,\n          \"Height\": 0.009638506919145584,\n          \"Left\": 0.9130387306213379,\n          \"Top\": 0.3366452157497406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9130387306213379,\n            \"Y\": 0.3366452157497406\n          },\n          {\n            \"X\": 0.9305564761161804,\n            \"Y\": 0.336655855178833\n          },\n          {\n            \"X\": 0.9305591583251953,\n            \"Y\": 0.3462837338447571\n          },\n          {\n            \"X\": 0.9130412936210632,\n            \"Y\": 0.3462730646133423\n          }\n        ]\n      },\n      \"Id\": \"22f02315-f591-48ce-9710-570620dc0a35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.977294921875,\n      \"Text\": \"2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027683641761541367,\n          \"Height\": 0.008008001372218132,\n          \"Left\": 0.5171093940734863,\n          \"Top\": 0.3483313024044037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5171093940734863,\n            \"Y\": 0.3483313024044037\n          },\n          {\n            \"X\": 0.5447924733161926,\n            \"Y\": 0.34834814071655273\n          },\n          {\n            \"X\": 0.5447930097579956,\n            \"Y\": 0.3563392758369446\n          },\n          {\n            \"X\": 0.5171098113059998,\n            \"Y\": 0.35632237792015076\n          }\n        ]\n      },\n      \"Id\": \"66716a8f-321b-4dfa-8f10-f84170255e10\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89532470703125,\n      \"Text\": \"transfers\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055640462785959244,\n          \"Height\": 0.008312808349728584,\n          \"Left\": 0.5949962735176086,\n          \"Top\": 0.3481835126876831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5949962735176086,\n            \"Y\": 0.3481835126876831\n          },\n          {\n            \"X\": 0.6506356596946716,\n            \"Y\": 0.3482174277305603\n          },\n          {\n            \"X\": 0.6506367325782776,\n            \"Y\": 0.35649633407592773\n          },\n          {\n            \"X\": 0.5949970483779907,\n            \"Y\": 0.35646235942840576\n          }\n        ]\n      },\n      \"Id\": \"9c3529dc-5248-46b2-9a68-11d1bf2923ff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93041229248047,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011131375096738338,\n          \"Height\": 0.008346732705831528,\n          \"Left\": 0.6549426317214966,\n          \"Top\": 0.34800446033477783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6549426317214966,\n            \"Y\": 0.34800446033477783\n          },\n          {\n            \"X\": 0.6660729050636292,\n            \"Y\": 0.34801122546195984\n          },\n          {\n            \"X\": 0.6660740375518799,\n            \"Y\": 0.35635116696357727\n          },\n          {\n            \"X\": 0.6549437046051025,\n            \"Y\": 0.3563443720340729\n          }\n        ]\n      },\n      \"Id\": \"d4702430-f95b-4669-a856-9a3f0acf97a6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94196319580078,\n      \"Text\": \"(loss)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03428610414266586,\n          \"Height\": 0.010315220803022385,\n          \"Left\": 0.7092127203941345,\n          \"Top\": 0.34802454710006714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7092127203941345,\n            \"Y\": 0.34802454710006714\n          },\n          {\n            \"X\": 0.7434970140457153,\n            \"Y\": 0.3480454087257385\n          },\n          {\n            \"X\": 0.7434988021850586,\n            \"Y\": 0.35833975672721863\n          },\n          {\n            \"X\": 0.7092143297195435,\n            \"Y\": 0.3583188056945801\n          }\n        ]\n      },\n      \"Id\": \"26a952e4-3524-4c97-8dfd-43061b7f10e9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93180084228516,\n      \"Text\": \"out\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020119598135352135,\n          \"Height\": 0.007771907839924097,\n          \"Left\": 0.7976240515708923,\n          \"Top\": 0.348744660615921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7976240515708923,\n            \"Y\": 0.348744660615921\n          },\n          {\n            \"X\": 0.8177419900894165,\n            \"Y\": 0.34875690937042236\n          },\n          {\n            \"X\": 0.8177436590194702,\n            \"Y\": 0.3565165400505066\n          },\n          {\n            \"X\": 0.7976256608963013,\n            \"Y\": 0.35650426149368286\n          }\n        ]\n      },\n      \"Id\": \"e25c204c-3286-491f-ba57-3d92e71af8f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97674560546875,\n      \"Text\": \"2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027827927842736244,\n          \"Height\": 0.008063133805990219,\n          \"Left\": 0.8807635307312012,\n          \"Top\": 0.3481891453266144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8807635307312012,\n            \"Y\": 0.3481891453266144\n          },\n          {\n            \"X\": 0.9085893630981445,\n            \"Y\": 0.348206102848053\n          },\n          {\n            \"X\": 0.9085914492607117,\n            \"Y\": 0.3562522828578949\n          },\n          {\n            \"X\": 0.8807655572891235,\n            \"Y\": 0.3562352955341339\n          }\n        ]\n      },\n      \"Id\": \"e5615969-1237-4e63-8996-b8054df7d22f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61306762695312,\n      \"Text\": \"(in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015856990590691566,\n          \"Height\": 0.010312664322555065,\n          \"Left\": 0.6516987681388855,\n          \"Top\": 0.36875593662261963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6516987681388855,\n            \"Y\": 0.36875593662261963\n          },\n          {\n            \"X\": 0.6675543785095215,\n            \"Y\": 0.368765652179718\n          },\n          {\n            \"X\": 0.6675557494163513,\n            \"Y\": 0.37906861305236816\n          },\n          {\n            \"X\": 0.6517000794410706,\n            \"Y\": 0.3790588676929474\n          }\n        ]\n      },\n      \"Id\": \"1f78a538-a8ad-4150-a188-d24cb91ee96d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9178237915039,\n      \"Text\": \"millions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04987975209951401,\n          \"Height\": 0.00860709697008133,\n          \"Left\": 0.6711095571517944,\n          \"Top\": 0.36889252066612244\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6711095571517944,\n            \"Y\": 0.36889252066612244\n          },\n          {\n            \"X\": 0.7209879159927368,\n            \"Y\": 0.3689230680465698\n          },\n          {\n            \"X\": 0.7209893465042114,\n            \"Y\": 0.37749961018562317\n          },\n          {\n            \"X\": 0.6711107492446899,\n            \"Y\": 0.3774689733982086\n          }\n        ]\n      },\n      \"Id\": \"91391922-426d-4ae4-820c-a03c9c4857c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93661499023438,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013838217593729496,\n          \"Height\": 0.00855149608105421,\n          \"Left\": 0.7243842482566833,\n          \"Top\": 0.36867088079452515\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7243842482566833,\n            \"Y\": 0.36867088079452515\n          },\n          {\n            \"X\": 0.7382209897041321,\n            \"Y\": 0.36867934465408325\n          },\n          {\n            \"X\": 0.7382224798202515,\n            \"Y\": 0.37722235918045044\n          },\n          {\n            \"X\": 0.724385678768158,\n            \"Y\": 0.37721386551856995\n          }\n        ]\n      },\n      \"Id\": \"79930df2-9add-4480-ad74-dea95608f895\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.54054260253906,\n      \"Text\": \"SDRs)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037927933037281036,\n          \"Height\": 0.010076743550598621,\n          \"Left\": 0.7409899234771729,\n          \"Top\": 0.3688044250011444\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7409899234771729,\n            \"Y\": 0.3688044250011444\n          },\n          {\n            \"X\": 0.7789159417152405,\n            \"Y\": 0.3688276410102844\n          },\n          {\n            \"X\": 0.7789178490638733,\n            \"Y\": 0.37888115644454956\n          },\n          {\n            \"X\": 0.7409917116165161,\n            \"Y\": 0.3788578510284424\n          }\n        ]\n      },\n      \"Id\": \"83c441ee-c6e8-433e-916e-0ee8407c5819\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87739562988281,\n      \"Text\": \"Supplementary\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08759105950593948,\n          \"Height\": 0.010402729734778404,\n          \"Left\": 0.09923765808343887,\n          \"Top\": 0.3911740183830261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09923939406871796,\n            \"Y\": 0.3911740183830261\n          },\n          {\n            \"X\": 0.18682871758937836,\n            \"Y\": 0.39122799038887024\n          },\n          {\n            \"X\": 0.18682746589183807,\n            \"Y\": 0.4015767276287079\n          },\n          {\n            \"X\": 0.09923765808343887,\n            \"Y\": 0.40152260661125183\n          }\n        ]\n      },\n      \"Id\": \"34097f28-91c4-4a5e-9a12-7a15a71a6e08\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89966583251953,\n      \"Text\": \"Financing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05618354678153992,\n          \"Height\": 0.01044177170842886,\n          \"Left\": 0.19084002077579498,\n          \"Top\": 0.3911280632019043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19084125757217407,\n            \"Y\": 0.3911280632019043\n          },\n          {\n            \"X\": 0.2470235675573349,\n            \"Y\": 0.3911626636981964\n          },\n          {\n            \"X\": 0.24702264368534088,\n            \"Y\": 0.40156981348991394\n          },\n          {\n            \"X\": 0.19084002077579498,\n            \"Y\": 0.4015350937843323\n          }\n        ]\n      },\n      \"Id\": \"ffeb80c0-dc7c-48e6-81ca-e89665c68e47\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92889404296875,\n      \"Text\": \"Facility\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040807344019412994,\n          \"Height\": 0.010448349639773369,\n          \"Left\": 0.25091448426246643,\n          \"Top\": 0.39108750224113464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25091540813446045,\n            \"Y\": 0.39108750224113464\n          },\n          {\n            \"X\": 0.2917218506336212,\n            \"Y\": 0.39111265540122986\n          },\n          {\n            \"X\": 0.2917211651802063,\n            \"Y\": 0.40153586864471436\n          },\n          {\n            \"X\": 0.25091448426246643,\n            \"Y\": 0.401510626077652\n          }\n        ]\n      },\n      \"Id\": \"380afcad-5e7c-4346-be57-a80dd36345fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89729309082031,\n      \"Text\": \"Subsidy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04695770516991615,\n          \"Height\": 0.010355819948017597,\n          \"Left\": 0.29499655961990356,\n          \"Top\": 0.39104723930358887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2949972152709961,\n            \"Y\": 0.39104723930358887\n          },\n          {\n            \"X\": 0.3419542610645294,\n            \"Y\": 0.3910761773586273\n          },\n          {\n            \"X\": 0.341953843832016,\n            \"Y\": 0.4014030694961548\n          },\n          {\n            \"X\": 0.29499655961990356,\n            \"Y\": 0.40137404203414917\n          }\n        ]\n      },\n      \"Id\": \"f53100e1-b571-4965-a70d-30f9bac1dab4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 67.57320404052734,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051403943449258804,\n          \"Height\": 0.00950203649699688,\n          \"Left\": 0.34475284814834595,\n          \"Top\": 0.3901146650314331\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3447532057762146,\n            \"Y\": 0.3901146650314331\n          },\n          {\n            \"X\": 0.39615678787231445,\n            \"Y\": 0.39014631509780884\n          },\n          {\n            \"X\": 0.3961566984653473,\n            \"Y\": 0.39961668848991394\n          },\n          {\n            \"X\": 0.34475284814834595,\n            \"Y\": 0.39958494901657104\n          }\n        ]\n      },\n      \"Id\": \"6d7b8efe-3b24-41c8-b6f5-4702120d9531\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65178680419922,\n      \"Text\": \"0.9\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01838512532413006,\n          \"Height\": 0.008325915783643723,\n          \"Left\": 0.5317409634590149,\n          \"Top\": 0.39137542247772217\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5317409634590149,\n            \"Y\": 0.39137542247772217\n          },\n          {\n            \"X\": 0.5501254796981812,\n            \"Y\": 0.3913867771625519\n          },\n          {\n            \"X\": 0.5501260757446289,\n            \"Y\": 0.3997013568878174\n          },\n          {\n            \"X\": 0.5317414402961731,\n            \"Y\": 0.39969000220298767\n          }\n        ]\n      },\n      \"Id\": \"6825288a-7feb-481c-b152-8eae64abba96\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.69273376464844,\n      \"Text\": \"**\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010377820581197739,\n          \"Height\": 0.003294130088761449,\n          \"Left\": 0.7309357523918152,\n          \"Top\": 0.3915030062198639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7309357523918152,\n            \"Y\": 0.3915030062198639\n          },\n          {\n            \"X\": 0.7413129806518555,\n            \"Y\": 0.39150938391685486\n          },\n          {\n            \"X\": 0.7413135766983032,\n            \"Y\": 0.39479711651802063\n          },\n          {\n            \"X\": 0.7309362888336182,\n            \"Y\": 0.39479073882102966\n          }\n        ]\n      },\n      \"Id\": \"b6f4d390-65a9-46aa-8fd0-a5c855e83b0d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.83621978759766,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01487675216048956,\n          \"Height\": 0.0024920518044382334,\n          \"Left\": 0.6393078565597534,\n          \"Top\": 0.39507216215133667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6393078565597534,\n            \"Y\": 0.39507216215133667\n          },\n          {\n            \"X\": 0.6541842818260193,\n            \"Y\": 0.3950813412666321\n          },\n          {\n            \"X\": 0.6541846394538879,\n            \"Y\": 0.39756420254707336\n          },\n          {\n            \"X\": 0.6393081545829773,\n            \"Y\": 0.39755502343177795\n          }\n        ]\n      },\n      \"Id\": \"22cf6fc9-74d5-4c18-ad10-3c45597036bd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96549224853516,\n      \"Text\": \"(0.9)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026767950505018234,\n          \"Height\": 0.010027052834630013,\n          \"Left\": 0.8126078844070435,\n          \"Top\": 0.391043484210968\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8126078844070435,\n            \"Y\": 0.391043484210968\n          },\n          {\n            \"X\": 0.8393735885620117,\n            \"Y\": 0.3910599946975708\n          },\n          {\n            \"X\": 0.8393758535385132,\n            \"Y\": 0.4010705351829529\n          },\n          {\n            \"X\": 0.8126100301742554,\n            \"Y\": 0.4010539948940277\n          }\n        ]\n      },\n      \"Id\": \"77e77d2a-2a7b-4140-9d25-d74d9942ddef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.83393859863281,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014761989004909992,\n          \"Height\": 0.0023207750637084246,\n          \"Left\": 0.9110887050628662,\n          \"Top\": 0.39513465762138367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9110887050628662,\n            \"Y\": 0.39513465762138367\n          },\n          {\n            \"X\": 0.9258500933647156,\n            \"Y\": 0.3951437473297119\n          },\n          {\n            \"X\": 0.9258506894111633,\n            \"Y\": 0.3974554240703583\n          },\n          {\n            \"X\": 0.911089301109314,\n            \"Y\": 0.39744630455970764\n          }\n        ]\n      },\n      \"Id\": \"d6801a44-e0ae-4802-b491-9a8c4d6554c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83963012695312,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07599171251058578,\n          \"Height\": 0.008393768221139908,\n          \"Left\": 0.09865187108516693,\n          \"Top\": 0.41276079416275024\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09865327179431915,\n            \"Y\": 0.41276079416275024\n          },\n          {\n            \"X\": 0.17464357614517212,\n            \"Y\": 0.4128078818321228\n          },\n          {\n            \"X\": 0.17464251816272736,\n            \"Y\": 0.42115455865859985\n          },\n          {\n            \"X\": 0.09865187108516693,\n            \"Y\": 0.42110735177993774\n          }\n        ]\n      },\n      \"Id\": \"5358b28e-d7b1-4f57-9f8b-b99dabe84cd9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96237182617188,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0484716035425663,\n          \"Height\": 0.00834323838353157,\n          \"Left\": 0.17803433537483215,\n          \"Top\": 0.41276639699935913\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17803537845611572,\n            \"Y\": 0.41276639699935913\n          },\n          {\n            \"X\": 0.22650593519210815,\n            \"Y\": 0.4127964377403259\n          },\n          {\n            \"X\": 0.2265051007270813,\n            \"Y\": 0.4211096465587616\n          },\n          {\n            \"X\": 0.17803433537483215,\n            \"Y\": 0.42107951641082764\n          }\n        ]\n      },\n      \"Id\": \"bc721c9b-5201-4d4d-a83e-6fae893ebe81\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96016693115234,\n      \"Text\": \"People's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05021999031305313,\n          \"Height\": 0.010148996487259865,\n          \"Left\": 0.22967903316020966,\n          \"Top\": 0.41266900300979614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22968003153800964,\n            \"Y\": 0.41266900300979614\n          },\n          {\n            \"X\": 0.2798990309238434,\n            \"Y\": 0.4127001166343689\n          },\n          {\n            \"X\": 0.2798982858657837,\n            \"Y\": 0.42281800508499146\n          },\n          {\n            \"X\": 0.22967903316020966,\n            \"Y\": 0.42278677225112915\n          }\n        ]\n      },\n      \"Id\": \"6b5b745f-99c3-4891-bae4-7a212695d39f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95352935791016,\n      \"Text\": \"Bank\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029937414452433586,\n          \"Height\": 0.008378226310014725,\n          \"Left\": 0.2834944427013397,\n          \"Top\": 0.4126909077167511\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2834950089454651,\n            \"Y\": 0.4126909077167511\n          },\n          {\n            \"X\": 0.31343185901641846,\n            \"Y\": 0.41270947456359863\n          },\n          {\n            \"X\": 0.31343141198158264,\n            \"Y\": 0.42106911540031433\n          },\n          {\n            \"X\": 0.2834944427013397,\n            \"Y\": 0.4210505187511444\n          }\n        ]\n      },\n      \"Id\": \"c6424d12-cf46-4ac5-8117-6a2cfb9bfd78\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96290588378906,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012138213962316513,\n          \"Height\": 0.00842700619250536,\n          \"Left\": 0.3165215849876404,\n          \"Top\": 0.41255930066108704\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3165220320224762,\n            \"Y\": 0.41255930066108704\n          },\n          {\n            \"X\": 0.3286598026752472,\n            \"Y\": 0.4125668406486511\n          },\n          {\n            \"X\": 0.32865941524505615,\n            \"Y\": 0.4209862947463989\n          },\n          {\n            \"X\": 0.3165215849876404,\n            \"Y\": 0.42097875475883484\n          }\n        ]\n      },\n      \"Id\": \"e0a8a3d7-035f-4182-b108-011b4628c8ec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86622619628906,\n      \"Text\": \"China\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03411372750997543,\n          \"Height\": 0.008536473847925663,\n          \"Left\": 0.3313124179840088,\n          \"Top\": 0.4126208424568176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33131280541419983,\n            \"Y\": 0.4126208424568176\n          },\n          {\n            \"X\": 0.3654261529445648,\n            \"Y\": 0.4126420021057129\n          },\n          {\n            \"X\": 0.3654259145259857,\n            \"Y\": 0.4211573302745819\n          },\n          {\n            \"X\": 0.3313124179840088,\n            \"Y\": 0.42113611102104187\n          }\n        ]\n      },\n      \"Id\": \"172c658a-0d16-4a0d-b50d-8a703852d037\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46062469482422,\n      \"Text\": \"178.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030503328889608383,\n          \"Height\": 0.008532295934855938,\n          \"Left\": 0.5180454254150391,\n          \"Top\": 0.41264697909355164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5180454254150391,\n            \"Y\": 0.41264697909355164\n          },\n          {\n            \"X\": 0.54854816198349,\n            \"Y\": 0.4126659035682678\n          },\n          {\n            \"X\": 0.5485487580299377,\n            \"Y\": 0.42117929458618164\n          },\n          {\n            \"X\": 0.5180459022521973,\n            \"Y\": 0.42116034030914307\n          }\n        ]\n      },\n      \"Id\": \"1e6cf40c-4f0b-4b07-85cb-28e16f0cd9c5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.7513198852539,\n      \"Text\": \"**\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010162388905882835,\n          \"Height\": 0.0039049906190484762,\n          \"Left\": 0.7308574318885803,\n          \"Top\": 0.41269049048423767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7308574318885803,\n            \"Y\": 0.41269049048423767\n          },\n          {\n            \"X\": 0.7410191297531128,\n            \"Y\": 0.4126967787742615\n          },\n          {\n            \"X\": 0.7410198450088501,\n            \"Y\": 0.4165954887866974\n          },\n          {\n            \"X\": 0.7308580875396729,\n            \"Y\": 0.4165891706943512\n          }\n        ]\n      },\n      \"Id\": \"1b035dec-bb2d-4db3-a216-b18153c45d70\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.8380126953125,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014756896533071995,\n          \"Height\": 0.002314892830327153,\n          \"Left\": 0.639248251914978,\n          \"Top\": 0.41687288880348206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.639248251914978,\n            \"Y\": 0.41687288880348206\n          },\n          {\n            \"X\": 0.6540048122406006,\n            \"Y\": 0.4168820381164551\n          },\n          {\n            \"X\": 0.6540051102638245,\n            \"Y\": 0.4191877841949463\n          },\n          {\n            \"X\": 0.6392484903335571,\n            \"Y\": 0.4191786050796509\n          }\n        ]\n      },\n      \"Id\": \"86c54474-59f6-4477-b826-46cdbc2384c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86975860595703,\n      \"Text\": \"(2.2)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026759402826428413,\n          \"Height\": 0.010266831144690514,\n          \"Left\": 0.812705397605896,\n          \"Top\": 0.41256436705589294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.812705397605896,\n            \"Y\": 0.41256436705589294\n          },\n          {\n            \"X\": 0.8394624590873718,\n            \"Y\": 0.4125809669494629\n          },\n          {\n            \"X\": 0.8394647836685181,\n            \"Y\": 0.4228312075138092\n          },\n          {\n            \"X\": 0.8127075433731079,\n            \"Y\": 0.42281457781791687\n          }\n        ]\n      },\n      \"Id\": \"e6c80a6d-3b77-4df9-9ffa-2104ef1d9f6b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95393371582031,\n      \"Text\": \"175.9\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03242531791329384,\n          \"Height\": 0.008486154489219189,\n          \"Left\": 0.8926869034767151,\n          \"Top\": 0.4126778244972229\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8926869034767151,\n            \"Y\": 0.4126778244972229\n          },\n          {\n            \"X\": 0.92510986328125,\n            \"Y\": 0.4126979112625122\n          },\n          {\n            \"X\": 0.9251121878623962,\n            \"Y\": 0.42116397619247437\n          },\n          {\n            \"X\": 0.892689049243927,\n            \"Y\": 0.4211438298225403\n          }\n        ]\n      },\n      \"Id\": \"50256324-cec9-4100-8549-f70c0d16bbd7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62089538574219,\n      \"Text\": \"Somalia\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046730827540159225,\n          \"Height\": 0.008200605399906635,\n          \"Left\": 0.09891688078641891,\n          \"Top\": 0.43434977531433105\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09891825169324875,\n            \"Y\": 0.43434977531433105\n          },\n          {\n            \"X\": 0.14564770460128784,\n            \"Y\": 0.4343789219856262\n          },\n          {\n            \"X\": 0.14564654231071472,\n            \"Y\": 0.442550390958786\n          },\n          {\n            \"X\": 0.09891688078641891,\n            \"Y\": 0.44252118468284607\n          }\n        ]\n      },\n      \"Id\": \"3f11a638-5349-48a0-8409-d0a76e26a53b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8447036743164,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07693278789520264,\n          \"Height\": 0.008418329060077667,\n          \"Left\": 0.14898242056369781,\n          \"Top\": 0.4342654347419739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14898359775543213,\n            \"Y\": 0.4342654347419739\n          },\n          {\n            \"X\": 0.22591520845890045,\n            \"Y\": 0.43431341648101807\n          },\n          {\n            \"X\": 0.2259143739938736,\n            \"Y\": 0.44268378615379333\n          },\n          {\n            \"X\": 0.14898242056369781,\n            \"Y\": 0.442635715007782\n          }\n        ]\n      },\n      \"Id\": \"cf730587-b681-48f9-a8f4-b8da88577020\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9677734375,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04782998561859131,\n          \"Height\": 0.008094260469079018,\n          \"Left\": 0.22916169464588165,\n          \"Top\": 0.434480756521225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22916249930858612,\n            \"Y\": 0.434480756521225\n          },\n          {\n            \"X\": 0.27699169516563416,\n            \"Y\": 0.43451058864593506\n          },\n          {\n            \"X\": 0.2769910991191864,\n            \"Y\": 0.44257503747940063\n          },\n          {\n            \"X\": 0.22916169464588165,\n            \"Y\": 0.4425451457500458\n          }\n        ]\n      },\n      \"Id\": \"75197cb6-c66e-4716-9a92-e9160460e098\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.92436218261719,\n      \"Text\": \"224.9\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03254067525267601,\n          \"Height\": 0.008513852953910828,\n          \"Left\": 0.5172187685966492,\n          \"Top\": 0.43430206179618835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172187685966492,\n            \"Y\": 0.43430206179618835\n          },\n          {\n            \"X\": 0.5497588515281677,\n            \"Y\": 0.4343223571777344\n          },\n          {\n            \"X\": 0.5497594475746155,\n            \"Y\": 0.4428159296512604\n          },\n          {\n            \"X\": 0.5172192454338074,\n            \"Y\": 0.4427955746650696\n          }\n        ]\n      },\n      \"Id\": \"fcc572b7-9f41-426b-a203-9348b8a28234\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47703552246094,\n      \"Text\": \"8.0\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018025482073426247,\n          \"Height\": 0.008353388868272305,\n          \"Left\": 0.6349307298660278,\n          \"Top\": 0.43441474437713623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6349307298660278,\n            \"Y\": 0.43441474437713623\n          },\n          {\n            \"X\": 0.652955174446106,\n            \"Y\": 0.4344259798526764\n          },\n          {\n            \"X\": 0.6529561877250671,\n            \"Y\": 0.4427681267261505\n          },\n          {\n            \"X\": 0.634931743144989,\n            \"Y\": 0.44275686144828796\n          }\n        ]\n      },\n      \"Id\": \"29b1b245-65a6-450a-899f-0f67b8f69da6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83094024658203,\n      \"Text\": \"0.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017064621672034264,\n          \"Height\": 0.008382059633731842,\n          \"Left\": 0.7229316830635071,\n          \"Top\": 0.4342258870601654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229316830635071,\n            \"Y\": 0.4342258870601654\n          },\n          {\n            \"X\": 0.7399948835372925,\n            \"Y\": 0.4342365264892578\n          },\n          {\n            \"X\": 0.7399963140487671,\n            \"Y\": 0.44260793924331665\n          },\n          {\n            \"X\": 0.7229330539703369,\n            \"Y\": 0.44259729981422424\n          }\n        ]\n      },\n      \"Id\": \"d11ad0e5-1444-474c-a439-87c7da553a07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.0929183959961,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014816362410783768,\n          \"Height\": 0.00232748338021338,\n          \"Left\": 0.8189767003059387,\n          \"Top\": 0.43821215629577637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8189767003059387,\n            \"Y\": 0.43821215629577637\n          },\n          {\n            \"X\": 0.833792507648468,\n            \"Y\": 0.43822142481803894\n          },\n          {\n            \"X\": 0.833793044090271,\n            \"Y\": 0.4405396580696106\n          },\n          {\n            \"X\": 0.8189771771430969,\n            \"Y\": 0.440530389547348\n          }\n        ]\n      },\n      \"Id\": \"d61d3b0f-57fa-43ed-8d3e-b37234e46554\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96021270751953,\n      \"Text\": \"233.0\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03317226096987724,\n          \"Height\": 0.008354859426617622,\n          \"Left\": 0.8919452428817749,\n          \"Top\": 0.4342987537384033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8919452428817749,\n            \"Y\": 0.4342987537384033\n          },\n          {\n            \"X\": 0.9251152276992798,\n            \"Y\": 0.4343194365501404\n          },\n          {\n            \"X\": 0.9251174926757812,\n            \"Y\": 0.442653626203537\n          },\n          {\n            \"X\": 0.891947329044342,\n            \"Y\": 0.44263291358947754\n          }\n        ]\n      },\n      \"Id\": \"a8046a68-a819-4363-810c-d7478ae9aacf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88525390625,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03739361837506294,\n          \"Height\": 0.008346114307641983,\n          \"Left\": 0.0990280881524086,\n          \"Top\": 0.4558063745498657\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09902948886156082,\n            \"Y\": 0.4558063745498657\n          },\n          {\n            \"X\": 0.13642171025276184,\n            \"Y\": 0.45582979917526245\n          },\n          {\n            \"X\": 0.13642047345638275,\n            \"Y\": 0.4641524851322174\n          },\n          {\n            \"X\": 0.0990280881524086,\n            \"Y\": 0.4641289710998535\n          }\n        ]\n      },\n      \"Id\": \"a2673eaa-acb2-40a7-8ef9-ab7213daee88\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82347106933594,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07722945511341095,\n          \"Height\": 0.008445306681096554,\n          \"Left\": 0.13967011868953705,\n          \"Top\": 0.45568206906318665\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13967135548591614,\n            \"Y\": 0.45568206906318665\n          },\n          {\n            \"X\": 0.216899573802948,\n            \"Y\": 0.45573046803474426\n          },\n          {\n            \"X\": 0.21689869463443756,\n            \"Y\": 0.4641273617744446\n          },\n          {\n            \"X\": 0.13967011868953705,\n            \"Y\": 0.4640788435935974\n          }\n        ]\n      },\n      \"Id\": \"eb9677f4-dcf3-4426-ad8e-e93bc9fdbc3f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 59.241737365722656,\n      \"Text\": \"Account2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05196746066212654,\n          \"Height\": 0.009073768742382526,\n          \"Left\": 0.21992522478103638,\n          \"Top\": 0.455161988735199\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2199261635541916,\n            \"Y\": 0.455161988735199\n          },\n          {\n            \"X\": 0.2718926966190338,\n            \"Y\": 0.4551945626735687\n          },\n          {\n            \"X\": 0.2718920111656189,\n            \"Y\": 0.46423575282096863\n          },\n          {\n            \"X\": 0.21992522478103638,\n            \"Y\": 0.4642031192779541\n          }\n        ]\n      },\n      \"Id\": \"17c7f917-16ff-4116-a28b-0f04bf33dc0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.9155044555664,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014651252888143063,\n          \"Height\": 0.002121728379279375,\n          \"Left\": 0.5362687706947327,\n          \"Top\": 0.45995721220970154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5362687706947327,\n            \"Y\": 0.45995721220970154\n          },\n          {\n            \"X\": 0.5509198904037476,\n            \"Y\": 0.45996642112731934\n          },\n          {\n            \"X\": 0.5509200692176819,\n            \"Y\": 0.4620789587497711\n          },\n          {\n            \"X\": 0.536268949508667,\n            \"Y\": 0.4620697498321533\n          }\n        ]\n      },\n      \"Id\": \"55904831-392e-4c24-8a28-e941463647f0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82044982910156,\n      \"Text\": \"653.0\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03297549858689308,\n          \"Height\": 0.008483055047690868,\n          \"Left\": 0.6199467778205872,\n          \"Top\": 0.455857515335083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6199467778205872,\n            \"Y\": 0.455857515335083\n          },\n          {\n            \"X\": 0.652921199798584,\n            \"Y\": 0.45587819814682007\n          },\n          {\n            \"X\": 0.6529222726821899,\n            \"Y\": 0.46434056758880615\n          },\n          {\n            \"X\": 0.6199476718902588,\n            \"Y\": 0.4643198549747467\n          }\n        ]\n      },\n      \"Id\": \"afd0c405-2c7a-4353-9692-183304a19388\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87775421142578,\n      \"Text\": \"0.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016978537663817406,\n          \"Height\": 0.00841369666159153,\n          \"Left\": 0.7229979634284973,\n          \"Top\": 0.45586320757865906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229979634284973,\n            \"Y\": 0.45586320757865906\n          },\n          {\n            \"X\": 0.7399750351905823,\n            \"Y\": 0.45587384700775146\n          },\n          {\n            \"X\": 0.7399765253067017,\n            \"Y\": 0.46427690982818604\n          },\n          {\n            \"X\": 0.7229993343353271,\n            \"Y\": 0.46426624059677124\n          }\n        ]\n      },\n      \"Id\": \"426cde40-181e-4278-9b0b-153613e910d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92355346679688,\n      \"Text\": \"(0.5)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02668021433055401,\n          \"Height\": 0.010533343069255352,\n          \"Left\": 0.8126025199890137,\n          \"Top\": 0.45551934838294983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8126025199890137,\n            \"Y\": 0.45551934838294983\n          },\n          {\n            \"X\": 0.8392803072929382,\n            \"Y\": 0.4555360674858093\n          },\n          {\n            \"X\": 0.839282751083374,\n            \"Y\": 0.46605271100997925\n          },\n          {\n            \"X\": 0.8126047253608704,\n            \"Y\": 0.466035932302475\n          }\n        ]\n      },\n      \"Id\": \"68b7deb3-e1c1-4231-b0b7-6eae1c9986af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95960235595703,\n      \"Text\": \"652.6\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03297312930226326,\n          \"Height\": 0.008464285172522068,\n          \"Left\": 0.8921318054199219,\n          \"Top\": 0.4557745158672333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8921318054199219,\n            \"Y\": 0.4557745158672333\n          },\n          {\n            \"X\": 0.9251026511192322,\n            \"Y\": 0.45579519867897034\n          },\n          {\n            \"X\": 0.9251049160957336,\n            \"Y\": 0.46423882246017456\n          },\n          {\n            \"X\": 0.8921339511871338,\n            \"Y\": 0.4642180800437927\n          }\n        ]\n      },\n      \"Id\": \"5e375f93-5aa7-4173-98d3-e1cc0c0eac67\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72067260742188,\n      \"Text\": \"Framework\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0654793307185173,\n          \"Height\": 0.008399147540330887,\n          \"Left\": 0.09904022514820099,\n          \"Top\": 0.47806409001350403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09904163330793381,\n            \"Y\": 0.47806409001350403\n          },\n          {\n            \"X\": 0.1645195633172989,\n            \"Y\": 0.478105366230011\n          },\n          {\n            \"X\": 0.16451844573020935,\n            \"Y\": 0.4864632189273834\n          },\n          {\n            \"X\": 0.09904022514820099,\n            \"Y\": 0.4864218533039093\n          }\n        ]\n      },\n      \"Id\": \"0b6da673-cf66-41eb-8aff-2bc0588e8a4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26276397705078,\n      \"Text\": \"Interim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03953177109360695,\n          \"Height\": 0.008405407890677452,\n          \"Left\": 0.16803070902824402,\n          \"Top\": 0.4780319035053253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16803181171417236,\n            \"Y\": 0.4780319035053253\n          },\n          {\n            \"X\": 0.20756247639656067,\n            \"Y\": 0.47805681824684143\n          },\n          {\n            \"X\": 0.20756155252456665,\n            \"Y\": 0.4864373207092285\n          },\n          {\n            \"X\": 0.16803070902824402,\n            \"Y\": 0.48641231656074524\n          }\n        ]\n      },\n      \"Id\": \"4e845789-65dd-4a5c-b479-a88bd20f1ef5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 78.21743774414062,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051922593265771866,\n          \"Height\": 0.009427906014025211,\n          \"Left\": 0.2111646980047226,\n          \"Top\": 0.4770931005477905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21116571128368378,\n            \"Y\": 0.4770931005477905\n          },\n          {\n            \"X\": 0.26308730244636536,\n            \"Y\": 0.4771258234977722\n          },\n          {\n            \"X\": 0.2630865275859833,\n            \"Y\": 0.48652100563049316\n          },\n          {\n            \"X\": 0.2111646980047226,\n            \"Y\": 0.4864881932735443\n          }\n        ]\n      },\n      \"Id\": \"227e3c38-8fe2-4dde-a476-69e3cc00f698\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80412292480469,\n      \"Text\": \"186.7\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03181260824203491,\n          \"Height\": 0.008394600823521614,\n          \"Left\": 0.5181803703308105,\n          \"Top\": 0.47809523344039917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5181803703308105,\n            \"Y\": 0.47809523344039917\n          },\n          {\n            \"X\": 0.5499923825263977,\n            \"Y\": 0.4781152904033661\n          },\n          {\n            \"X\": 0.5499929785728455,\n            \"Y\": 0.48648983240127563\n          },\n          {\n            \"X\": 0.5181808471679688,\n            \"Y\": 0.48646974563598633\n          }\n        ]\n      },\n      \"Id\": \"81ee46ee-9183-4e28-88a2-d06f44cf26fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81877136230469,\n      \"Text\": \"210.8\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033066585659980774,\n          \"Height\": 0.008570018224418163,\n          \"Left\": 0.6198625564575195,\n          \"Top\": 0.47806668281555176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6198625564575195,\n            \"Y\": 0.47806668281555176\n          },\n          {\n            \"X\": 0.6529280543327332,\n            \"Y\": 0.47808751463890076\n          },\n          {\n            \"X\": 0.6529291272163391,\n            \"Y\": 0.4866366982460022\n          },\n          {\n            \"X\": 0.6198635101318359,\n            \"Y\": 0.4866158068180084\n          }\n        ]\n      },\n      \"Id\": \"2f8e46cf-7e4b-435c-b262-0920aef47045\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9051742553711,\n      \"Text\": \"0.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016930826008319855,\n          \"Height\": 0.008561721071600914,\n          \"Left\": 0.7229181528091431,\n          \"Top\": 0.4780835807323456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229181528091431,\n            \"Y\": 0.4780835807323456\n          },\n          {\n            \"X\": 0.7398474812507629,\n            \"Y\": 0.4780942499637604\n          },\n          {\n            \"X\": 0.7398489713668823,\n            \"Y\": 0.48664531111717224\n          },\n          {\n            \"X\": 0.7229195833206177,\n            \"Y\": 0.48663461208343506\n          }\n        ]\n      },\n      \"Id\": \"4401e828-a79e-4b41-ad24-e1aff1a08a19\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96096801757812,\n      \"Text\": \"(33.6)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03410457447171211,\n          \"Height\": 0.009981617331504822,\n          \"Left\": 0.8053233623504639,\n          \"Top\": 0.4779271185398102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8053233623504639,\n            \"Y\": 0.4779271185398102\n          },\n          {\n            \"X\": 0.8394256830215454,\n            \"Y\": 0.4779486358165741\n          },\n          {\n            \"X\": 0.8394279479980469,\n            \"Y\": 0.4879087507724762\n          },\n          {\n            \"X\": 0.805325448513031,\n            \"Y\": 0.4878871738910675\n          }\n        ]\n      },\n      \"Id\": \"f5377695-2f2d-46a0-bbc6-aee60a4acd2d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97181701660156,\n      \"Text\": \"364.0\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03290132060647011,\n          \"Height\": 0.00842680037021637,\n          \"Left\": 0.8921893239021301,\n          \"Top\": 0.47809749841690063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8921893239021301,\n            \"Y\": 0.47809749841690063\n          },\n          {\n            \"X\": 0.9250883460044861,\n            \"Y\": 0.47811824083328247\n          },\n          {\n            \"X\": 0.9250906705856323,\n            \"Y\": 0.4865243136882782\n          },\n          {\n            \"X\": 0.892191469669342,\n            \"Y\": 0.4865035116672516\n          }\n        ]\n      },\n      \"Id\": \"ae797609-9e94-4d70-93ef-1ebadf940a51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.40287780761719,\n      \"Text\": \"(in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015847597271203995,\n          \"Height\": 0.009991859085857868,\n          \"Left\": 0.6335120797157288,\n          \"Top\": 0.49958622455596924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6335120797157288,\n            \"Y\": 0.49958622455596924\n          },\n          {\n            \"X\": 0.6493584513664246,\n            \"Y\": 0.4995962679386139\n          },\n          {\n            \"X\": 0.6493597030639648,\n            \"Y\": 0.5095781087875366\n          },\n          {\n            \"X\": 0.6335132718086243,\n            \"Y\": 0.5095680356025696\n          }\n        ]\n      },\n      \"Id\": \"e4502487-282d-45e9-8037-9114e8c1380c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9162826538086,\n      \"Text\": \"millions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04945524409413338,\n          \"Height\": 0.008693723008036613,\n          \"Left\": 0.6524105668067932,\n          \"Top\": 0.4994823932647705\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6524105668067932,\n            \"Y\": 0.4994823932647705\n          },\n          {\n            \"X\": 0.70186448097229,\n            \"Y\": 0.49951374530792236\n          },\n          {\n            \"X\": 0.7018657922744751,\n            \"Y\": 0.5081760883331299\n          },\n          {\n            \"X\": 0.6524116396903992,\n            \"Y\": 0.5081446766853333\n          }\n        ]\n      },\n      \"Id\": \"8927ee7d-c31f-4136-b41a-e615e9685b51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90251159667969,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013921016827225685,\n          \"Height\": 0.008551872335374355,\n          \"Left\": 0.7058643698692322,\n          \"Top\": 0.4994906485080719\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7058643698692322,\n            \"Y\": 0.4994906485080719\n          },\n          {\n            \"X\": 0.7197839617729187,\n            \"Y\": 0.49949946999549866\n          },\n          {\n            \"X\": 0.7197853922843933,\n            \"Y\": 0.5080425143241882\n          },\n          {\n            \"X\": 0.7058656811714172,\n            \"Y\": 0.5080336928367615\n          }\n        ]\n      },\n      \"Id\": \"cc335cf4-4ef0-4683-8bf5-7f67e72c5c52\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61613464355469,\n      \"Text\": \"U.S.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024288669228553772,\n          \"Height\": 0.008387681096792221,\n          \"Left\": 0.7222484946250916,\n          \"Top\": 0.4996218681335449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7222484946250916,\n            \"Y\": 0.4996218681335449\n          },\n          {\n            \"X\": 0.7465356588363647,\n            \"Y\": 0.49963727593421936\n          },\n          {\n            \"X\": 0.7465371489524841,\n            \"Y\": 0.5080095529556274\n          },\n          {\n            \"X\": 0.7222498655319214,\n            \"Y\": 0.5079941153526306\n          }\n        ]\n      },\n      \"Id\": \"829091f2-0eac-4709-a228-aa65ddccce12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78669738769531,\n      \"Text\": \"dollars)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046979792416095734,\n          \"Height\": 0.010322978720068932,\n          \"Left\": 0.7508188486099243,\n          \"Top\": 0.4993044435977936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7508188486099243,\n            \"Y\": 0.4993044435977936\n          },\n          {\n            \"X\": 0.7977964878082275,\n            \"Y\": 0.4993342161178589\n          },\n          {\n            \"X\": 0.7977986335754395,\n            \"Y\": 0.5096274018287659\n          },\n          {\n            \"X\": 0.7508206963539124,\n            \"Y\": 0.5095975399017334\n          }\n        ]\n      },\n      \"Id\": \"308e2d31-237d-4354-85a0-c178110d39d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.751708984375,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07680612057447433,\n          \"Height\": 0.008428134024143219,\n          \"Left\": 0.09818664193153381,\n          \"Top\": 0.52117919921875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09818805754184723,\n            \"Y\": 0.52117919921875\n          },\n          {\n            \"X\": 0.17499275505542755,\n            \"Y\": 0.5212281942367554\n          },\n          {\n            \"X\": 0.1749916970729828,\n            \"Y\": 0.5296072959899902\n          },\n          {\n            \"X\": 0.09818664193153381,\n            \"Y\": 0.5295582413673401\n          }\n        ]\n      },\n      \"Id\": \"bf82c026-b5b7-447b-86c2-0827f4cdba69\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96463775634766,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04847387596964836,\n          \"Height\": 0.008100953884422779,\n          \"Left\": 0.17811712622642517,\n          \"Top\": 0.5213944315910339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17811813950538635,\n            \"Y\": 0.5213944315910339\n          },\n          {\n            \"X\": 0.22659100592136383,\n            \"Y\": 0.5214253664016724\n          },\n          {\n            \"X\": 0.22659018635749817,\n            \"Y\": 0.5294954180717468\n          },\n          {\n            \"X\": 0.17811712622642517,\n            \"Y\": 0.5294644236564636\n          }\n        ]\n      },\n      \"Id\": \"f3e94be1-504b-40a2-bca8-4a1ac22c048c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 61.0244026184082,\n      \"Text\": \"Japan3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041055601090192795,\n          \"Height\": 0.01082011591643095,\n          \"Left\": 0.2290002703666687,\n          \"Top\": 0.5203784704208374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22900132834911346,\n            \"Y\": 0.5203784704208374\n          },\n          {\n            \"X\": 0.2700558602809906,\n            \"Y\": 0.5204046964645386\n          },\n          {\n            \"X\": 0.27005505561828613,\n            \"Y\": 0.5311986207962036\n          },\n          {\n            \"X\": 0.2290002703666687,\n            \"Y\": 0.5311723351478577\n          }\n        ]\n      },\n      \"Id\": \"2c8c967c-3824-4e6b-8d01-5716e8c2d4cd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94896697998047,\n      \"Text\": \"279.0\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03275129199028015,\n          \"Height\": 0.008385010063648224,\n          \"Left\": 0.5172755122184753,\n          \"Top\": 0.5212523341178894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172755122184753,\n            \"Y\": 0.5212523341178894\n          },\n          {\n            \"X\": 0.5500261783599854,\n            \"Y\": 0.5212731957435608\n          },\n          {\n            \"X\": 0.5500267744064331,\n            \"Y\": 0.529637336730957\n          },\n          {\n            \"X\": 0.5172759294509888,\n            \"Y\": 0.5296164155006409\n          }\n        ]\n      },\n      \"Id\": \"6f1edae2-d7cb-4ad7-94c4-555c3212b298\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.06403350830078,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014544103294610977,\n          \"Height\": 0.0022092903964221478,\n          \"Left\": 0.63911372423172,\n          \"Top\": 0.525206983089447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.63911372423172,\n            \"Y\": 0.525206983089447\n          },\n          {\n            \"X\": 0.6536575555801392,\n            \"Y\": 0.5252162218093872\n          },\n          {\n            \"X\": 0.6536577939987183,\n            \"Y\": 0.5274162292480469\n          },\n          {\n            \"X\": 0.6391139626502991,\n            \"Y\": 0.5274069309234619\n          }\n        ]\n      },\n      \"Id\": \"67da8660-d7e9-463a-bd04-7bd9b8a120a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92974090576172,\n      \"Text\": \"0.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016934964805841446,\n          \"Height\": 0.008725491352379322,\n          \"Left\": 0.7229637503623962,\n          \"Top\": 0.5210941433906555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7229637503623962,\n            \"Y\": 0.5210941433906555\n          },\n          {\n            \"X\": 0.7398971915245056,\n            \"Y\": 0.5211049914360046\n          },\n          {\n            \"X\": 0.739898681640625,\n            \"Y\": 0.529819667339325\n          },\n          {\n            \"X\": 0.7229651808738708,\n            \"Y\": 0.5298088192939758\n          }\n        ]\n      },\n      \"Id\": \"81133539-4882-40f8-a086-e602e536b681\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83872985839844,\n      \"Text\": \"(50.0)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03401261195540428,\n          \"Height\": 0.01035663764923811,\n          \"Left\": 0.8053510189056396,\n          \"Top\": 0.5210024118423462\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8053510189056396,\n            \"Y\": 0.5210024118423462\n          },\n          {\n            \"X\": 0.839361310005188,\n            \"Y\": 0.5210241079330444\n          },\n          {\n            \"X\": 0.8393636345863342,\n            \"Y\": 0.531359076499939\n          },\n          {\n            \"X\": 0.8053531646728516,\n            \"Y\": 0.531337320804596\n          }\n        ]\n      },\n      \"Id\": \"a39c45dc-2d42-4292-a541-3eb44101f145\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90898132324219,\n      \"Text\": \"229.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031707145273685455,\n          \"Height\": 0.008443168364465237,\n          \"Left\": 0.8919540047645569,\n          \"Top\": 0.5212310552597046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8919540047645569,\n            \"Y\": 0.5212310552597046\n          },\n          {\n            \"X\": 0.9236588478088379,\n            \"Y\": 0.5212512612342834\n          },\n          {\n            \"X\": 0.9236611127853394,\n            \"Y\": 0.529674232006073\n          },\n          {\n            \"X\": 0.8919561505317688,\n            \"Y\": 0.5296539664268494\n          }\n        ]\n      },\n      \"Id\": \"96e5c5ab-382c-46f4-90de-c5c7b3b60274\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7956771850586,\n      \"Text\": \"Framework\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06553726643323898,\n          \"Height\": 0.008311519399285316,\n          \"Left\": 0.09910007566213608,\n          \"Top\": 0.543502688407898\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0991014614701271,\n            \"Y\": 0.543502688407898\n          },\n          {\n            \"X\": 0.16463734209537506,\n            \"Y\": 0.5435447096824646\n          },\n          {\n            \"X\": 0.16463623940944672,\n            \"Y\": 0.5518141984939575\n          },\n          {\n            \"X\": 0.09910007566213608,\n            \"Y\": 0.5517720580101013\n          }\n        ]\n      },\n      \"Id\": \"4f4ed387-8345-409f-8eab-762c4fb64ae7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84317779541016,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0771636962890625,\n          \"Height\": 0.008491989225149155,\n          \"Left\": 0.16715988516807556,\n          \"Top\": 0.5434277653694153\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1671609878540039,\n            \"Y\": 0.5434277653694153\n          },\n          {\n            \"X\": 0.24432358145713806,\n            \"Y\": 0.5434772372245789\n          },\n          {\n            \"X\": 0.24432282149791718,\n            \"Y\": 0.5519197583198547\n          },\n          {\n            \"X\": 0.16715988516807556,\n            \"Y\": 0.5518701672554016\n          }\n        ]\n      },\n      \"Id\": \"c8d87cc0-8397-4269-85c5-faa1b1cae3b0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9748764038086,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048234909772872925,\n          \"Height\": 0.008348808623850346,\n          \"Left\": 0.24720673263072968,\n          \"Top\": 0.5435104370117188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24720746278762817,\n            \"Y\": 0.5435104370117188\n          },\n          {\n            \"X\": 0.2954416275024414,\n            \"Y\": 0.5435413718223572\n          },\n          {\n            \"X\": 0.2954411208629608,\n            \"Y\": 0.5518592596054077\n          },\n          {\n            \"X\": 0.24720673263072968,\n            \"Y\": 0.5518282651901245\n          }\n        ]\n      },\n      \"Id\": \"b8971a0d-8f37-487e-b106-4e84c499cc89\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97020721435547,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016194254159927368,\n          \"Height\": 0.00821306835860014,\n          \"Left\": 0.2982400953769684,\n          \"Top\": 0.5434496402740479\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.298240602016449,\n            \"Y\": 0.5434496402740479\n          },\n          {\n            \"X\": 0.31443434953689575,\n            \"Y\": 0.5434600114822388\n          },\n          {\n            \"X\": 0.31443390250205994,\n            \"Y\": 0.5516626834869385\n          },\n          {\n            \"X\": 0.2982400953769684,\n            \"Y\": 0.5516522526741028\n          }\n        ]\n      },\n      \"Id\": \"c746a9c2-a55e-4d70-87a1-de19db55a761\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9800796508789,\n      \"Text\": \"Selected\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05061778053641319,\n          \"Height\": 0.008593859151005745,\n          \"Left\": 0.3175947368144989,\n          \"Top\": 0.5433752536773682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31759515404701233,\n            \"Y\": 0.5433752536773682\n          },\n          {\n            \"X\": 0.36821249127388,\n            \"Y\": 0.5434077382087708\n          },\n          {\n            \"X\": 0.3682122826576233,\n            \"Y\": 0.5519691109657288\n          },\n          {\n            \"X\": 0.3175947368144989,\n            \"Y\": 0.5519366264343262\n          }\n        ]\n      },\n      \"Id\": \"fc1b0c0e-5af3-4740-9060-30eb5fd5b24a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9802474975586,\n      \"Text\": \"Fund\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02935061976313591,\n          \"Height\": 0.008410779759287834,\n          \"Left\": 0.3722127079963684,\n          \"Top\": 0.5433905720710754\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37221288681030273,\n            \"Y\": 0.5433905720710754\n          },\n          {\n            \"X\": 0.4015633165836334,\n            \"Y\": 0.5434094071388245\n          },\n          {\n            \"X\": 0.40156325697898865,\n            \"Y\": 0.5518013834953308\n          },\n          {\n            \"X\": 0.3722127079963684,\n            \"Y\": 0.551782488822937\n          }\n        ]\n      },\n      \"Id\": \"8dca1876-48e0-4e2b-91ee-e75640f9b85e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94302368164062,\n      \"Text\": \"Activities\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05197969824075699,\n          \"Height\": 0.008470247499644756,\n          \"Left\": 0.4047945439815521,\n          \"Top\": 0.543550431728363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4047946035861969,\n            \"Y\": 0.543550431728363\n          },\n          {\n            \"X\": 0.4567740559577942,\n            \"Y\": 0.5435838103294373\n          },\n          {\n            \"X\": 0.4567742645740509,\n            \"Y\": 0.5520207285881042\n          },\n          {\n            \"X\": 0.4047945439815521,\n            \"Y\": 0.5519872903823853\n          }\n        ]\n      },\n      \"Id\": \"b05e8a1f-8950-4208-8a1c-89468efda9cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97798919677734,\n      \"Text\": \"425.8\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03262467682361603,\n          \"Height\": 0.008430032059550285,\n          \"Left\": 0.517191469669342,\n          \"Top\": 0.543376624584198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.517191469669342,\n            \"Y\": 0.543376624584198\n          },\n          {\n            \"X\": 0.5498155355453491,\n            \"Y\": 0.5433975458145142\n          },\n          {\n            \"X\": 0.5498161911964417,\n            \"Y\": 0.551806628704071\n          },\n          {\n            \"X\": 0.5171919465065002,\n            \"Y\": 0.5517857074737549\n          }\n        ]\n      },\n      \"Id\": \"498aa71e-a79f-4e47-ba19-517802b4dd2c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73516845703125,\n      \"Text\": \"66.4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025384092703461647,\n          \"Height\": 0.008414817042648792,\n          \"Left\": 0.6274357438087463,\n          \"Top\": 0.5434505939483643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6274357438087463,\n            \"Y\": 0.5434505939483643\n          },\n          {\n            \"X\": 0.6528187394142151,\n            \"Y\": 0.5434668660163879\n          },\n          {\n            \"X\": 0.652819812297821,\n            \"Y\": 0.5518653988838196\n          },\n          {\n            \"X\": 0.6274366974830627,\n            \"Y\": 0.5518490672111511\n          }\n        ]\n      },\n      \"Id\": \"805aea4f-86a5-4c37-bc10-e01f0d2caa0d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94337463378906,\n      \"Text\": \"0.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017174270004034042,\n          \"Height\": 0.008556858636438847,\n          \"Left\": 0.7228876352310181,\n          \"Top\": 0.5433524250984192\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7228876352310181,\n            \"Y\": 0.5433524250984192\n          },\n          {\n            \"X\": 0.7400604486465454,\n            \"Y\": 0.5433633923530579\n          },\n          {\n            \"X\": 0.7400619387626648,\n            \"Y\": 0.5519092679023743\n          },\n          {\n            \"X\": 0.7228890657424927,\n            \"Y\": 0.5518982410430908\n          }\n        ]\n      },\n      \"Id\": \"3b12cb94-a9f1-4856-a95f-e798ee8c0498\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.17211151123047,\n      \"Text\": \"(67.1)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03402953967452049,\n          \"Height\": 0.010114100761711597,\n          \"Left\": 0.8051763772964478,\n          \"Top\": 0.5432726144790649\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8051763772964478,\n            \"Y\": 0.5432726144790649\n          },\n          {\n            \"X\": 0.8392036557197571,\n            \"Y\": 0.5432944297790527\n          },\n          {\n            \"X\": 0.8392059206962585,\n            \"Y\": 0.5533866882324219\n          },\n          {\n            \"X\": 0.8051784634590149,\n            \"Y\": 0.5533648133277893\n          }\n        ]\n      },\n      \"Id\": \"3b15644a-179f-42f1-804c-e89ad0a5914c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9655990600586,\n      \"Text\": \"425.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033508896827697754,\n          \"Height\": 0.008409774862229824,\n          \"Left\": 0.8917081952095032,\n          \"Top\": 0.5434271097183228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8917081952095032,\n            \"Y\": 0.5434271097183228\n          },\n          {\n            \"X\": 0.9252148270606995,\n            \"Y\": 0.5434486269950867\n          },\n          {\n            \"X\": 0.9252170920372009,\n            \"Y\": 0.5518369078636169\n          },\n          {\n            \"X\": 0.8917103409767151,\n            \"Y\": 0.551815390586853\n          }\n        ]\n      },\n      \"Id\": \"64cfa011-2c83-44d6-ab18-4ae004f85850\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7666015625,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07627671957015991,\n          \"Height\": 0.008230933919548988,\n          \"Left\": 0.0983126312494278,\n          \"Top\": 0.5629096031188965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09831400215625763,\n            \"Y\": 0.5629096031188965\n          },\n          {\n            \"X\": 0.1745893508195877,\n            \"Y\": 0.5629587769508362\n          },\n          {\n            \"X\": 0.17458829283714294,\n            \"Y\": 0.5711405873298645\n          },\n          {\n            \"X\": 0.0983126312494278,\n            \"Y\": 0.5710912942886353\n          }\n        ]\n      },\n      \"Id\": \"d57f1857-ee99-44cf-820b-d0ad783f529a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97757720947266,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048312604427337646,\n          \"Height\": 0.008319850079715252,\n          \"Left\": 0.17805282771587372,\n          \"Top\": 0.5630499720573425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1780538707971573,\n            \"Y\": 0.5630499720573425\n          },\n          {\n            \"X\": 0.22636543214321136,\n            \"Y\": 0.5630811452865601\n          },\n          {\n            \"X\": 0.2263645976781845,\n            \"Y\": 0.5713698267936707\n          },\n          {\n            \"X\": 0.17805282771587372,\n            \"Y\": 0.5713386535644531\n          }\n        ]\n      },\n      \"Id\": \"b1c5d5bd-788a-47fb-9684-23b5099fbfa4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97020721435547,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01609581895172596,\n          \"Height\": 0.008399917744100094,\n          \"Left\": 0.2291250377893448,\n          \"Top\": 0.5628339648246765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22912587225437164,\n            \"Y\": 0.5628339648246765\n          },\n          {\n            \"X\": 0.2452208548784256,\n            \"Y\": 0.5628443360328674\n          },\n          {\n            \"X\": 0.2452201098203659,\n            \"Y\": 0.571233868598938\n          },\n          {\n            \"X\": 0.2291250377893448,\n            \"Y\": 0.5712234973907471\n          }\n        ]\n      },\n      \"Id\": \"d3028b3c-3814-40a0-bf75-004d8e5330d1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58732604980469,\n      \"Text\": \"Interim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04019199311733246,\n          \"Height\": 0.008446508087217808,\n          \"Left\": 0.2483464628458023,\n          \"Top\": 0.5627989172935486\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.248347207903862,\n            \"Y\": 0.5627989172935486\n          },\n          {\n            \"X\": 0.28853845596313477,\n            \"Y\": 0.5628248453140259\n          },\n          {\n            \"X\": 0.2885378897190094,\n            \"Y\": 0.5712454319000244\n          },\n          {\n            \"X\": 0.2483464628458023,\n            \"Y\": 0.5712194442749023\n          }\n        ]\n      },\n      \"Id\": \"1eb3c498-e480-4633-bf15-066aa9988a33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96739959716797,\n      \"Text\": \"Holdings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050504934042692184,\n          \"Height\": 0.0102801863104105,\n          \"Left\": 0.29233646392822266,\n          \"Top\": 0.5629048347473145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2923371493816376,\n            \"Y\": 0.5629048347473145\n          },\n          {\n            \"X\": 0.34284141659736633,\n            \"Y\": 0.5629373788833618\n          },\n          {\n            \"X\": 0.3428410291671753,\n            \"Y\": 0.5731850266456604\n          },\n          {\n            \"X\": 0.29233646392822266,\n            \"Y\": 0.5731523633003235\n          }\n        ]\n      },\n      \"Id\": \"0930d282-26a4-4fd5-8b8c-00c36f3b3c9d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94570922851562,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012504883110523224,\n          \"Height\": 0.008606236428022385,\n          \"Left\": 0.3461306393146515,\n          \"Top\": 0.5626987814903259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34613093733787537,\n            \"Y\": 0.5626987814903259\n          },\n          {\n            \"X\": 0.3586355149745941,\n            \"Y\": 0.5627068281173706\n          },\n          {\n            \"X\": 0.358635276556015,\n            \"Y\": 0.5713050365447998\n          },\n          {\n            \"X\": 0.3461306393146515,\n            \"Y\": 0.5712969303131104\n          }\n        ]\n      },\n      \"Id\": \"fc7e0079-6706-43b0-a85a-0fabfd79c7b9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90315246582031,\n      \"Text\": \"Voluntary\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05605467036366463,\n          \"Height\": 0.010387600399553776,\n          \"Left\": 0.36064353585243225,\n          \"Top\": 0.5628401637077332\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36064383387565613,\n            \"Y\": 0.5628401637077332\n          },\n          {\n            \"X\": 0.4166981875896454,\n            \"Y\": 0.5628763437271118\n          },\n          {\n            \"X\": 0.4166981875896454,\n            \"Y\": 0.5732277631759644\n          },\n          {\n            \"X\": 0.36064353585243225,\n            \"Y\": 0.5731915831565857\n          }\n        ]\n      },\n      \"Id\": \"17f6c74b-7d39-4e73-8f5b-ed8312a5cb5a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73466491699219,\n      \"Text\": \"Contributions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07646628469228745,\n          \"Height\": 0.008488512597978115,\n          \"Left\": 0.09898991882801056,\n          \"Top\": 0.5742985606193542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09899134188890457,\n            \"Y\": 0.5742985606193542\n          },\n          {\n            \"X\": 0.1754562109708786,\n            \"Y\": 0.574347972869873\n          },\n          {\n            \"X\": 0.17545512318611145,\n            \"Y\": 0.5827870965003967\n          },\n          {\n            \"X\": 0.09898991882801056,\n            \"Y\": 0.5827375054359436\n          }\n        ]\n      },\n      \"Id\": \"81824642-2185-43a4-8a0c-ada74f176015\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9625244140625,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016163039952516556,\n          \"Height\": 0.008320287801325321,\n          \"Left\": 0.1789812594652176,\n          \"Top\": 0.5742912292480469\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17898230254650116,\n            \"Y\": 0.5742912292480469\n          },\n          {\n            \"X\": 0.19514431059360504,\n            \"Y\": 0.5743016600608826\n          },\n          {\n            \"X\": 0.19514332711696625,\n            \"Y\": 0.5826115012168884\n          },\n          {\n            \"X\": 0.1789812594652176,\n            \"Y\": 0.582601010799408\n          }\n        ]\n      },\n      \"Id\": \"1ea07f75-8bce-4b3e-a143-d5084bf25c82\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98291778564453,\n      \"Text\": \"Fund\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029638443142175674,\n          \"Height\": 0.00839227344840765,\n          \"Left\": 0.19844751060009003,\n          \"Top\": 0.5743370652198792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19844847917556763,\n            \"Y\": 0.5743370652198792\n          },\n          {\n            \"X\": 0.2280859649181366,\n            \"Y\": 0.574356198310852\n          },\n          {\n            \"X\": 0.22808513045310974,\n            \"Y\": 0.5827293395996094\n          },\n          {\n            \"X\": 0.19844751060009003,\n            \"Y\": 0.5827100872993469\n          }\n        ]\n      },\n      \"Id\": \"3901c22b-a297-4c68-93bf-643c4119de82\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 73.66260528564453,\n      \"Text\": \"Activities\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05704164132475853,\n          \"Height\": 0.008716724812984467,\n          \"Left\": 0.23099614679813385,\n          \"Top\": 0.5740348100662231\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2309969961643219,\n            \"Y\": 0.5740348100662231\n          },\n          {\n            \"X\": 0.28803780674934387,\n            \"Y\": 0.5740716457366943\n          },\n          {\n            \"X\": 0.2880372107028961,\n            \"Y\": 0.5827515125274658\n          },\n          {\n            \"X\": 0.23099614679813385,\n            \"Y\": 0.5827145576477051\n          }\n        ]\n      },\n      \"Id\": \"3bd9035d-009a-4d42-9826-98c7b0f50f95\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.51028442382812,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0147967878729105,\n          \"Height\": 0.0022516471799463034,\n          \"Left\": 0.5362036228179932,\n          \"Top\": 0.5782873630523682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5362036228179932,\n            \"Y\": 0.5782873630523682\n          },\n          {\n            \"X\": 0.5510002970695496,\n            \"Y\": 0.578296959400177\n          },\n          {\n            \"X\": 0.5510004162788391,\n            \"Y\": 0.5805390477180481\n          },\n          {\n            \"X\": 0.5362038016319275,\n            \"Y\": 0.5805294513702393\n          }\n        ]\n      },\n      \"Id\": \"104d5ae2-37d4-4aad-855d-0b26c8ef7eee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.64248657226562,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014849746599793434,\n          \"Height\": 0.0022246697917580605,\n          \"Left\": 0.6392083168029785,\n          \"Top\": 0.5782706141471863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6392083168029785,\n            \"Y\": 0.5782706141471863\n          },\n          {\n            \"X\": 0.6540577411651611,\n            \"Y\": 0.5782802104949951\n          },\n          {\n            \"X\": 0.654058039188385,\n            \"Y\": 0.580495297908783\n          },\n          {\n            \"X\": 0.6392085552215576,\n            \"Y\": 0.5804856419563293\n          }\n        ]\n      },\n      \"Id\": \"3c7058c6-6fa5-4ab5-a412-75ed10cec6a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.31015014648438,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014701824635267258,\n          \"Height\": 0.002169540384784341,\n          \"Left\": 0.7271449565887451,\n          \"Top\": 0.5783023238182068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7271449565887451,\n            \"Y\": 0.5783023238182068\n          },\n          {\n            \"X\": 0.7418463826179504,\n            \"Y\": 0.5783118605613708\n          },\n          {\n            \"X\": 0.7418467402458191,\n            \"Y\": 0.5804718732833862\n          },\n          {\n            \"X\": 0.7271453142166138,\n            \"Y\": 0.5804623961448669\n          }\n        ]\n      },\n      \"Id\": \"cc62967d-0730-494d-848f-4c13f458c287\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.17951965332031,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014820035547018051,\n          \"Height\": 0.0021082607563585043,\n          \"Left\": 0.822374165058136,\n          \"Top\": 0.5783460140228271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.822374165058136,\n            \"Y\": 0.5783460140228271\n          },\n          {\n            \"X\": 0.8371937274932861,\n            \"Y\": 0.578355610370636\n          },\n          {\n            \"X\": 0.8371942043304443,\n            \"Y\": 0.5804542899131775\n          },\n          {\n            \"X\": 0.8223746418952942,\n            \"Y\": 0.5804446935653687\n          }\n        ]\n      },\n      \"Id\": \"4cdf3035-1f04-4f09-84d6-3152600a87d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.56625366210938,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014707767404615879,\n          \"Height\": 0.0021358837839215994,\n          \"Left\": 0.9110796451568604,\n          \"Top\": 0.5783584713935852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9110796451568604,\n            \"Y\": 0.5783584713935852\n          },\n          {\n            \"X\": 0.9257868528366089,\n            \"Y\": 0.5783680081367493\n          },\n          {\n            \"X\": 0.9257874488830566,\n            \"Y\": 0.5804944038391113\n          },\n          {\n            \"X\": 0.9110802412033081,\n            \"Y\": 0.5804848670959473\n          }\n        ]\n      },\n      \"Id\": \"aa713b33-6d68-4647-807f-791e2816ba03\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79752349853516,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07740557938814163,\n          \"Height\": 0.008484943769872189,\n          \"Left\": 0.09794106334447861,\n          \"Top\": 0.596287727355957\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09794248640537262,\n            \"Y\": 0.596287727355957\n          },\n          {\n            \"X\": 0.17534664273262024,\n            \"Y\": 0.5963380932807922\n          },\n          {\n            \"X\": 0.17534556984901428,\n            \"Y\": 0.604772686958313\n          },\n          {\n            \"X\": 0.09794106334447861,\n            \"Y\": 0.604722261428833\n          }\n        ]\n      },\n      \"Id\": \"fdd20a32-a5aa-430f-a6f8-bba90d3dd1f4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85995483398438,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048844121396541595,\n          \"Height\": 0.008410775102674961,\n          \"Left\": 0.17789629101753235,\n          \"Top\": 0.5966882109642029\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1778973489999771,\n            \"Y\": 0.5966882109642029\n          },\n          {\n            \"X\": 0.22674041986465454,\n            \"Y\": 0.5967199802398682\n          },\n          {\n            \"X\": 0.22673958539962769,\n            \"Y\": 0.6050990223884583\n          },\n          {\n            \"X\": 0.17789629101753235,\n            \"Y\": 0.6050671935081482\n          }\n        ]\n      },\n      \"Id\": \"fdb7bb0b-7b91-44cf-9b9e-79b34d955002\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.33575439453125,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00817753653973341,\n          \"Height\": 0.0021415979135781527,\n          \"Left\": 0.228801891207695,\n          \"Top\": 0.6005581617355347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22880209982395172,\n            \"Y\": 0.6005581617355347\n          },\n          {\n            \"X\": 0.2369794249534607,\n            \"Y\": 0.6005634665489197\n          },\n          {\n            \"X\": 0.23697921633720398,\n            \"Y\": 0.6026997566223145\n          },\n          {\n            \"X\": 0.228801891207695,\n            \"Y\": 0.6026944518089294\n          }\n        ]\n      },\n      \"Id\": \"7f741e4d-3fb9-40fa-ad15-43bfca941a45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.31722259521484,\n      \"Text\": \"Switzerland\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06732934713363647,\n          \"Height\": 0.008614788763225079,\n          \"Left\": 0.2404506951570511,\n          \"Top\": 0.596518337726593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24045148491859436,\n            \"Y\": 0.596518337726593\n          },\n          {\n            \"X\": 0.30778002738952637,\n            \"Y\": 0.5965620875358582\n          },\n          {\n            \"X\": 0.30777955055236816,\n            \"Y\": 0.6051331162452698\n          },\n          {\n            \"X\": 0.2404506951570511,\n            \"Y\": 0.6050892472267151\n          }\n        ]\n      },\n      \"Id\": \"0d260337-37c7-4717-83e6-5dba2a5c9888\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.7455062866211,\n      \"Text\": \"**\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010340782813727856,\n          \"Height\": 0.0037655411288142204,\n          \"Left\": 0.5401411056518555,\n          \"Top\": 0.5966303944587708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5401411056518555,\n            \"Y\": 0.5966303944587708\n          },\n          {\n            \"X\": 0.5504816174507141,\n            \"Y\": 0.5966371297836304\n          },\n          {\n            \"X\": 0.550481915473938,\n            \"Y\": 0.600395917892456\n          },\n          {\n            \"X\": 0.5401414036750793,\n            \"Y\": 0.6003891825675964\n          }\n        ]\n      },\n      \"Id\": \"bb9a2b5c-61a3-41a9-bc6d-feead71e8f8b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80023956298828,\n      \"Text\": \"1.6\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0173890832811594,\n          \"Height\": 0.008534150198101997,\n          \"Left\": 0.6356040239334106,\n          \"Top\": 0.5965507626533508\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6356040239334106,\n            \"Y\": 0.5965507626533508\n          },\n          {\n            \"X\": 0.6529920101165771,\n            \"Y\": 0.5965620279312134\n          },\n          {\n            \"X\": 0.6529930830001831,\n            \"Y\": 0.6050848960876465\n          },\n          {\n            \"X\": 0.6356050372123718,\n            \"Y\": 0.6050735712051392\n          }\n        ]\n      },\n      \"Id\": \"6a9647ff-b5b6-4fa5-a9f9-43ce55e1d8e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56011962890625,\n      \"Text\": \"(1.6)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026705607771873474,\n          \"Height\": 0.010201111435890198,\n          \"Left\": 0.8125906586647034,\n          \"Top\": 0.5964352488517761\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8125906586647034,\n            \"Y\": 0.5964352488517761\n          },\n          {\n            \"X\": 0.8392939567565918,\n            \"Y\": 0.5964526534080505\n          },\n          {\n            \"X\": 0.839296281337738,\n            \"Y\": 0.6066364049911499\n          },\n          {\n            \"X\": 0.8125928640365601,\n            \"Y\": 0.6066190004348755\n          }\n        ]\n      },\n      \"Id\": \"85003356-0676-434c-ac1a-d3470330e100\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.08413696289062,\n      \"Text\": \"**\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010456024669110775,\n          \"Height\": 0.0036083701997995377,\n          \"Left\": 0.9147530794143677,\n          \"Top\": 0.5966693162918091\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9147530794143677,\n            \"Y\": 0.5966693162918091\n          },\n          {\n            \"X\": 0.9252080917358398,\n            \"Y\": 0.5966761708259583\n          },\n          {\n            \"X\": 0.925209105014801,\n            \"Y\": 0.6002777218818665\n          },\n          {\n            \"X\": 0.9147540330886841,\n            \"Y\": 0.6002709269523621\n          }\n        ]\n      },\n      \"Id\": \"e7ce5a45-aec4-4429-9d4d-49b19e57b47a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.6274185180664,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014550291933119297,\n          \"Height\": 0.0022243510466068983,\n          \"Left\": 0.7271994948387146,\n          \"Top\": 0.6007333993911743\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7271994948387146,\n            \"Y\": 0.6007333993911743\n          },\n          {\n            \"X\": 0.7417494058609009,\n            \"Y\": 0.6007428765296936\n          },\n          {\n            \"X\": 0.7417497634887695,\n            \"Y\": 0.6029577255249023\n          },\n          {\n            \"X\": 0.7271998524665833,\n            \"Y\": 0.6029482483863831\n          }\n        ]\n      },\n      \"Id\": \"d1c193a9-4f3e-4c17-b1e5-c80331bfe900\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.48284912109375,\n      \"Text\": \"**\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009715652093291283,\n          \"Height\": 0.004147687926888466,\n          \"Left\": 0.09419460594654083,\n          \"Top\": 0.6171811819076538\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09419531375169754,\n            \"Y\": 0.6171811819076538\n          },\n          {\n            \"X\": 0.10391025990247726,\n            \"Y\": 0.6171875\n          },\n          {\n            \"X\": 0.10390957444906235,\n            \"Y\": 0.6213288307189941\n          },\n          {\n            \"X\": 0.09419460594654083,\n            \"Y\": 0.621322512626648\n          }\n        ]\n      },\n      \"Id\": \"5cf874f4-4bd1-4e41-a23d-f0c54e98f4d1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82821655273438,\n      \"Text\": \"Less\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025800619274377823,\n          \"Height\": 0.007753373123705387,\n          \"Left\": 0.10878971219062805,\n          \"Top\": 0.6180580854415894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10879097133874893,\n            \"Y\": 0.6180580854415894\n          },\n          {\n            \"X\": 0.13459032773971558,\n            \"Y\": 0.6180749535560608\n          },\n          {\n            \"X\": 0.13458918035030365,\n            \"Y\": 0.6258114576339722\n          },\n          {\n            \"X\": 0.10878971219062805,\n            \"Y\": 0.6257945895195007\n          }\n        ]\n      },\n      \"Id\": \"64c28d0a-28c7-46ab-802d-8f75caf7081c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95172882080078,\n      \"Text\": \"than\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02434382028877735,\n          \"Height\": 0.007831668481230736,\n          \"Left\": 0.13761423528194427,\n          \"Top\": 0.6180080771446228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1376153826713562,\n            \"Y\": 0.6180080771446228\n          },\n          {\n            \"X\": 0.16195805370807648,\n            \"Y\": 0.6180239915847778\n          },\n          {\n            \"X\": 0.1619570106267929,\n            \"Y\": 0.6258397698402405\n          },\n          {\n            \"X\": 0.13761423528194427,\n            \"Y\": 0.6258237957954407\n          }\n        ]\n      },\n      \"Id\": \"c10d1ef8-56e3-4ea8-ba1e-fc556c4b4af6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 80.776123046875,\n      \"Text\": \"US$50,000.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0646071657538414,\n          \"Height\": 0.009210332296788692,\n          \"Left\": 0.16507939994335175,\n          \"Top\": 0.6175883412361145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16508062183856964,\n            \"Y\": 0.6175883412361145\n          },\n          {\n            \"X\": 0.22968655824661255,\n            \"Y\": 0.6176306009292603\n          },\n          {\n            \"X\": 0.22968566417694092,\n            \"Y\": 0.626798689365387\n          },\n          {\n            \"X\": 0.16507939994335175,\n            \"Y\": 0.6267563700675964\n          }\n        ]\n      },\n      \"Id\": \"3c89766c-3875-4aed-8b02-535faea876a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.21127319335938,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.003906405530869961,\n          \"Height\": 0.005012135487049818,\n          \"Left\": 0.09418033808469772,\n          \"Top\": 0.6296496987342834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09418118745088577,\n            \"Y\": 0.6296496987342834\n          },\n          {\n            \"X\": 0.09808674454689026,\n            \"Y\": 0.6296522617340088\n          },\n          {\n            \"X\": 0.09808589518070221,\n            \"Y\": 0.634661853313446\n          },\n          {\n            \"X\": 0.09418033808469772,\n            \"Y\": 0.6346592903137207\n          }\n        ]\n      },\n      \"Id\": \"214d8b19-ec89-4c50-9270-efc42a447752\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91826629638672,\n      \"Text\": \"One\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02371319942176342,\n          \"Height\": 0.00793419312685728,\n          \"Left\": 0.10047997534275055,\n          \"Top\": 0.630099356174469\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1004813015460968,\n            \"Y\": 0.630099356174469\n          },\n          {\n            \"X\": 0.12419317662715912,\n            \"Y\": 0.6301148533821106\n          },\n          {\n            \"X\": 0.12419194728136063,\n            \"Y\": 0.6380335092544556\n          },\n          {\n            \"X\": 0.10047997534275055,\n            \"Y\": 0.6380179524421692\n          }\n        ]\n      },\n      \"Id\": \"58ceeb96-68f1-457c-aaa6-fff6430b89ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96731567382812,\n      \"Text\": \"member\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04573555290699005,\n          \"Height\": 0.007949049584567547,\n          \"Left\": 0.12736284732818604,\n          \"Top\": 0.6301965117454529\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12736405432224274,\n            \"Y\": 0.6301965117454529\n          },\n          {\n            \"X\": 0.1730984002351761,\n            \"Y\": 0.6302264928817749\n          },\n          {\n            \"X\": 0.1730973720550537,\n            \"Y\": 0.6381455659866333\n          },\n          {\n            \"X\": 0.12736284732818604,\n            \"Y\": 0.6381155252456665\n          }\n        ]\n      },\n      \"Id\": \"27ff7dd4-28b2-4061-aa32-89f63499da79\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.71089172363281,\n      \"Text\": \"(Sudan),\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04618513584136963,\n          \"Height\": 0.010069950483739376,\n          \"Left\": 0.1761416345834732,\n          \"Top\": 0.6298391222953796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17614290118217468,\n            \"Y\": 0.6298391222953796\n          },\n          {\n            \"X\": 0.22232677042484283,\n            \"Y\": 0.6298694014549255\n          },\n          {\n            \"X\": 0.22232574224472046,\n            \"Y\": 0.639909029006958\n          },\n          {\n            \"X\": 0.1761416345834732,\n            \"Y\": 0.6398786902427673\n          }\n        ]\n      },\n      \"Id\": \"a4763f0c-9aea-44f6-bec1-b451380d41dc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90567779541016,\n      \"Text\": \"overdue\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044365379959344864,\n          \"Height\": 0.008080713450908661,\n          \"Left\": 0.2261008620262146,\n          \"Top\": 0.6301400065422058\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22610166668891907,\n            \"Y\": 0.6301400065422058\n          },\n          {\n            \"X\": 0.27046623826026917,\n            \"Y\": 0.6301690936088562\n          },\n          {\n            \"X\": 0.270465612411499,\n            \"Y\": 0.6382207274436951\n          },\n          {\n            \"X\": 0.2261008620262146,\n            \"Y\": 0.6381915807723999\n          }\n        ]\n      },\n      \"Id\": \"fb876f59-d3a1-4b03-896d-1b0eb4d3331c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96771240234375,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009739789180457592,\n          \"Height\": 0.007873686030507088,\n          \"Left\": 0.2737528681755066,\n          \"Top\": 0.6300948858261108\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27375346422195435,\n            \"Y\": 0.6300948858261108\n          },\n          {\n            \"X\": 0.28349265456199646,\n            \"Y\": 0.6301013231277466\n          },\n          {\n            \"X\": 0.2834920883178711,\n            \"Y\": 0.6379685997962952\n          },\n          {\n            \"X\": 0.2737528681755066,\n            \"Y\": 0.6379622220993042\n          }\n        ]\n      },\n      \"Id\": \"e9ec1576-e872-4bab-aa3d-b4ad0c937963\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98955535888672,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017893431708216667,\n          \"Height\": 0.007898556999862194,\n          \"Left\": 0.28612637519836426,\n          \"Top\": 0.6301970481872559\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28612691164016724,\n            \"Y\": 0.6301970481872559\n          },\n          {\n            \"X\": 0.3040198087692261,\n            \"Y\": 0.6302087903022766\n          },\n          {\n            \"X\": 0.30401933193206787,\n            \"Y\": 0.6380956172943115\n          },\n          {\n            \"X\": 0.28612637519836426,\n            \"Y\": 0.638083815574646\n          }\n        ]\n      },\n      \"Id\": \"75458c01-000f-4b7d-9a33-e9764ebe4045\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97281646728516,\n      \"Text\": \"payment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04781476408243179,\n          \"Height\": 0.009312804788351059,\n          \"Left\": 0.30720412731170654,\n          \"Top\": 0.6306518316268921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3072046637535095,\n            \"Y\": 0.6306518316268921\n          },\n          {\n            \"X\": 0.3550189137458801,\n            \"Y\": 0.630683183670044\n          },\n          {\n            \"X\": 0.35501861572265625,\n            \"Y\": 0.6399646401405334\n          },\n          {\n            \"X\": 0.30720412731170654,\n            \"Y\": 0.6399332284927368\n          }\n        ]\n      },\n      \"Id\": \"e97de01c-e616-4e6f-a5da-38cea772967c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9609603881836,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01125695277005434,\n          \"Height\": 0.007960419170558453,\n          \"Left\": 0.3576844036579132,\n          \"Top\": 0.6300310492515564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3576846420764923,\n            \"Y\": 0.6300310492515564\n          },\n          {\n            \"X\": 0.3689413368701935,\n            \"Y\": 0.6300384402275085\n          },\n          {\n            \"X\": 0.36894115805625916,\n            \"Y\": 0.6379914879798889\n          },\n          {\n            \"X\": 0.3576844036579132,\n            \"Y\": 0.6379840970039368\n          }\n        ]\n      },\n      \"Id\": \"fb90bfd5-719d-4270-935c-ff0ee6ba29f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76973724365234,\n      \"Text\": \"charges\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04361533001065254,\n          \"Height\": 0.00969401653856039,\n          \"Left\": 0.3712717890739441,\n          \"Top\": 0.6302013397216797\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3712719976902008,\n            \"Y\": 0.6302013397216797\n          },\n          {\n            \"X\": 0.41488710045814514,\n            \"Y\": 0.6302299499511719\n          },\n          {\n            \"X\": 0.41488710045814514,\n            \"Y\": 0.6398953795433044\n          },\n          {\n            \"X\": 0.3712717890739441,\n            \"Y\": 0.6398667097091675\n          }\n        ]\n      },\n      \"Id\": \"637a7af5-2dcd-49bd-8cc4-c8c2f69c0dd9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93832397460938,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010758176445960999,\n          \"Height\": 0.007458256557583809,\n          \"Left\": 0.4179922938346863,\n          \"Top\": 0.6305168271064758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4179922938346863,\n            \"Y\": 0.6305168271064758\n          },\n          {\n            \"X\": 0.4287503957748413,\n            \"Y\": 0.6305238604545593\n          },\n          {\n            \"X\": 0.4287504553794861,\n            \"Y\": 0.6379750370979309\n          },\n          {\n            \"X\": 0.4179922938346863,\n            \"Y\": 0.6379680037498474\n          }\n        ]\n      },\n      \"Id\": \"ae6ed45c-60f4-4ac8-9fbd-7a410da08cbb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98729705810547,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017572833225131035,\n          \"Height\": 0.007872712798416615,\n          \"Left\": 0.43171173334121704,\n          \"Top\": 0.6300925612449646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43171173334121704,\n            \"Y\": 0.6300925612449646\n          },\n          {\n            \"X\": 0.4492844343185425,\n            \"Y\": 0.6301040649414062\n          },\n          {\n            \"X\": 0.4492845833301544,\n            \"Y\": 0.6379652619361877\n          },\n          {\n            \"X\": 0.4317118227481842,\n            \"Y\": 0.6379537582397461\n          }\n        ]\n      },\n      \"Id\": \"c4cb5e8e-931e-414a-b744-a6097917f006\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94745635986328,\n      \"Text\": \"General\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04362829774618149,\n          \"Height\": 0.008179153315722942,\n          \"Left\": 0.45255720615386963,\n          \"Top\": 0.6299976110458374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45255720615386963,\n            \"Y\": 0.6299976110458374\n          },\n          {\n            \"X\": 0.49618515372276306,\n            \"Y\": 0.6300262212753296\n          },\n          {\n            \"X\": 0.4961855113506317,\n            \"Y\": 0.6381767988204956\n          },\n          {\n            \"X\": 0.45255738496780396,\n            \"Y\": 0.6381481289863586\n          }\n        ]\n      },\n      \"Id\": \"365ff193-5314-4c77-a476-cdf903f1f849\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95635223388672,\n      \"Text\": \"Department\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06411806493997574,\n          \"Height\": 0.009612317197024822,\n          \"Left\": 0.49975821375846863,\n          \"Top\": 0.630311131477356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49975821375846863,\n            \"Y\": 0.630311131477356\n          },\n          {\n            \"X\": 0.5638754963874817,\n            \"Y\": 0.6303531527519226\n          },\n          {\n            \"X\": 0.5638762712478638,\n            \"Y\": 0.6399234533309937\n          },\n          {\n            \"X\": 0.49975866079330444,\n            \"Y\": 0.6398813128471375\n          }\n        ]\n      },\n      \"Id\": \"cbf16b21-29e1-4286-9fd8-3074b06a9e97\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94515991210938,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011103425174951553,\n          \"Height\": 0.007967001758515835,\n          \"Left\": 0.5668172240257263,\n          \"Top\": 0.6299931406974792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5668172240257263,\n            \"Y\": 0.6299931406974792\n          },\n          {\n            \"X\": 0.5779199600219727,\n            \"Y\": 0.6300004124641418\n          },\n          {\n            \"X\": 0.57792067527771,\n            \"Y\": 0.6379601359367371\n          },\n          {\n            \"X\": 0.5668178796768188,\n            \"Y\": 0.6379528641700745\n          }\n        ]\n      },\n      \"Id\": \"18892917-90f2-44c3-bf81-b9a98aa52249\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98622131347656,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017318367958068848,\n          \"Height\": 0.007811170537024736,\n          \"Left\": 0.5800983309745789,\n          \"Top\": 0.6301524639129639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5800983309745789,\n            \"Y\": 0.6301524639129639\n          },\n          {\n            \"X\": 0.5974159240722656,\n            \"Y\": 0.630163848400116\n          },\n          {\n            \"X\": 0.5974166989326477,\n            \"Y\": 0.6379636526107788\n          },\n          {\n            \"X\": 0.5800989866256714,\n            \"Y\": 0.6379522681236267\n          }\n        ]\n      },\n      \"Id\": \"2f5c8b70-8639-40db-8e4f-45bace05d849\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80452728271484,\n      \"Text\": \"IMF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020614143460989,\n          \"Height\": 0.008034422062337399,\n          \"Left\": 0.6011837720870972,\n          \"Top\": 0.6299134492874146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6011837720870972,\n            \"Y\": 0.6299134492874146\n          },\n          {\n            \"X\": 0.6217970252037048,\n            \"Y\": 0.6299269795417786\n          },\n          {\n            \"X\": 0.6217978596687317,\n            \"Y\": 0.6379478573799133\n          },\n          {\n            \"X\": 0.6011845469474792,\n            \"Y\": 0.6379343271255493\n          }\n        ]\n      },\n      \"Id\": \"51603f99-3c68-48d9-9845-6a24ac49b6dc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97069549560547,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013510148040950298,\n          \"Height\": 0.006054558791220188,\n          \"Left\": 0.625544011592865,\n          \"Top\": 0.6319392323493958\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.625544011592865,\n            \"Y\": 0.6319392323493958\n          },\n          {\n            \"X\": 0.6390534043312073,\n            \"Y\": 0.6319481134414673\n          },\n          {\n            \"X\": 0.6390541791915894,\n            \"Y\": 0.6379938125610352\n          },\n          {\n            \"X\": 0.6255446672439575,\n            \"Y\": 0.6379849314689636\n          }\n        ]\n      },\n      \"Id\": \"b0c571cf-0b88-469f-a9a3-6707ec35b32d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85191345214844,\n      \"Text\": \"April\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025303512811660767,\n          \"Height\": 0.009745115414261818,\n          \"Left\": 0.6421157121658325,\n          \"Top\": 0.6300092935562134\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6421157121658325,\n            \"Y\": 0.6300092935562134\n          },\n          {\n            \"X\": 0.6674178838729858,\n            \"Y\": 0.6300258636474609\n          },\n          {\n            \"X\": 0.6674191951751709,\n            \"Y\": 0.6397544145584106\n          },\n          {\n            \"X\": 0.642116904258728,\n            \"Y\": 0.6397377848625183\n          }\n        ]\n      },\n      \"Id\": \"3a4dd2b6-54d1-4db7-bf90-765d4ad6e73c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.24737548828125,\n      \"Text\": \"30,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016712691634893417,\n          \"Height\": 0.00913279503583908,\n          \"Left\": 0.6705962419509888,\n          \"Top\": 0.6300912499427795\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6705962419509888,\n            \"Y\": 0.6300912499427795\n          },\n          {\n            \"X\": 0.687307596206665,\n            \"Y\": 0.6301022171974182\n          },\n          {\n            \"X\": 0.6873089075088501,\n            \"Y\": 0.6392240524291992\n          },\n          {\n            \"X\": 0.670597493648529,\n            \"Y\": 0.6392130851745605\n          }\n        ]\n      },\n      \"Id\": \"904e1837-2438-4858-ac7a-0baee832f962\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.91244506835938,\n      \"Text\": \"2021,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030652539804577827,\n          \"Height\": 0.00929928570985794,\n          \"Left\": 0.6905537247657776,\n          \"Top\": 0.630007266998291\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6905537247657776,\n            \"Y\": 0.630007266998291\n          },\n          {\n            \"X\": 0.7212047576904297,\n            \"Y\": 0.6300273537635803\n          },\n          {\n            \"X\": 0.7212062478065491,\n            \"Y\": 0.6393065452575684\n          },\n          {\n            \"X\": 0.6905550956726074,\n            \"Y\": 0.6392863988876343\n          }\n        ]\n      },\n      \"Id\": \"fe4acaff-0e87-4d75-b597-fa18144d1768\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98795318603516,\n      \"Text\": \"remained\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051190756261348724,\n          \"Height\": 0.008147334679961205,\n          \"Left\": 0.7248718738555908,\n          \"Top\": 0.6301413774490356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7248718738555908,\n            \"Y\": 0.6301413774490356\n          },\n          {\n            \"X\": 0.7760610580444336,\n            \"Y\": 0.6301749348640442\n          },\n          {\n            \"X\": 0.7760626077651978,\n            \"Y\": 0.638288676738739\n          },\n          {\n            \"X\": 0.7248732447624207,\n            \"Y\": 0.6382550597190857\n          }\n        ]\n      },\n      \"Id\": \"0fa5ae11-2714-4060-b3f6-f7f9678673ea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96084594726562,\n      \"Text\": \"eligible\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03814780339598656,\n          \"Height\": 0.009633539244532585,\n          \"Left\": 0.7793450355529785,\n          \"Top\": 0.6302614808082581\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7793450355529785,\n            \"Y\": 0.6302614808082581\n          },\n          {\n            \"X\": 0.8174907565116882,\n            \"Y\": 0.6302865147590637\n          },\n          {\n            \"X\": 0.8174928426742554,\n            \"Y\": 0.6398950219154358\n          },\n          {\n            \"X\": 0.7793469429016113,\n            \"Y\": 0.6398699879646301\n          }\n        ]\n      },\n      \"Id\": \"0d91a86d-3385-4bce-bd94-9fe2bc815579\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9809799194336,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011280246078968048,\n          \"Height\": 0.0073058269917964935,\n          \"Left\": 0.8201053142547607,\n          \"Top\": 0.630646288394928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8201053142547607,\n            \"Y\": 0.630646288394928\n          },\n          {\n            \"X\": 0.8313839435577393,\n            \"Y\": 0.6306536793708801\n          },\n          {\n            \"X\": 0.8313855528831482,\n            \"Y\": 0.6379520893096924\n          },\n          {\n            \"X\": 0.8201069235801697,\n            \"Y\": 0.6379446983337402\n          }\n        ]\n      },\n      \"Id\": \"1d43482b-eff7-411f-b757-579a73afbfda\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94517517089844,\n      \"Text\": \"receive\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039308100938797,\n          \"Height\": 0.007724584545940161,\n          \"Left\": 0.8347374200820923,\n          \"Top\": 0.6302374601364136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8347374200820923,\n            \"Y\": 0.6302374601364136\n          },\n          {\n            \"X\": 0.8740436434745789,\n            \"Y\": 0.6302632093429565\n          },\n          {\n            \"X\": 0.8740454912185669,\n            \"Y\": 0.6379620432853699\n          },\n          {\n            \"X\": 0.8347391486167908,\n            \"Y\": 0.6379362344741821\n          }\n        ]\n      },\n      \"Id\": \"b90832b1-116d-4bcf-8f4b-c11fe019bbd3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97771453857422,\n      \"Text\": \"previously\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05565164238214493,\n          \"Height\": 0.0095397112891078,\n          \"Left\": 0.8774949908256531,\n          \"Top\": 0.6303101181983948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8774949908256531,\n            \"Y\": 0.6303101181983948\n          },\n          {\n            \"X\": 0.9331440329551697,\n            \"Y\": 0.6303465962409973\n          },\n          {\n            \"X\": 0.9331466555595398,\n            \"Y\": 0.639849841594696\n          },\n          {\n            \"X\": 0.8774973750114441,\n            \"Y\": 0.6398133039474487\n          }\n        ]\n      },\n      \"Id\": \"9a0ea415-749a-449d-a8cf-77f0754f3e1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97400665283203,\n      \"Text\": \"approved\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051031846553087234,\n          \"Height\": 0.009651344269514084,\n          \"Left\": 0.09395193308591843,\n          \"Top\": 0.6424219608306885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09395357966423035,\n            \"Y\": 0.6424219608306885\n          },\n          {\n            \"X\": 0.14498378336429596,\n            \"Y\": 0.642455518245697\n          },\n          {\n            \"X\": 0.14498239755630493,\n            \"Y\": 0.652073323726654\n          },\n          {\n            \"X\": 0.09395193308591843,\n            \"Y\": 0.652039647102356\n          }\n        ]\n      },\n      \"Id\": \"e42fe3c3-9afa-4576-bfa9-77fe2bd13337\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91802978515625,\n      \"Text\": \"subsidy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04214468598365784,\n          \"Height\": 0.010036464780569077,\n          \"Left\": 0.1484651267528534,\n          \"Top\": 0.6421739459037781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1484665423631668,\n            \"Y\": 0.6421739459037781\n          },\n          {\n            \"X\": 0.19060981273651123,\n            \"Y\": 0.6422016620635986\n          },\n          {\n            \"X\": 0.19060862064361572,\n            \"Y\": 0.6522104144096375\n          },\n          {\n            \"X\": 0.1484651267528534,\n            \"Y\": 0.6521826386451721\n          }\n        ]\n      },\n      \"Id\": \"870a4894-5b50-4aa4-804d-6bccc12f1665\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9439926147461,\n      \"Text\": \"payments\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053124234080314636,\n          \"Height\": 0.00946520734578371,\n          \"Left\": 0.19340850412845612,\n          \"Top\": 0.6427246332168579\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19340962171554565,\n            \"Y\": 0.6427246332168579\n          },\n          {\n            \"X\": 0.24653275310993195,\n            \"Y\": 0.6427595615386963\n          },\n          {\n            \"X\": 0.2465319037437439,\n            \"Y\": 0.6521898508071899\n          },\n          {\n            \"X\": 0.19340850412845612,\n            \"Y\": 0.652154803276062\n          }\n        ]\n      },\n      \"Id\": \"a00d65c4-f007-47f7-b24e-6b69da43804d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86149597167969,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011573417112231255,\n          \"Height\": 0.008241118863224983,\n          \"Left\": 0.24963022768497467,\n          \"Top\": 0.6420090198516846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24963095784187317,\n            \"Y\": 0.6420090198516846\n          },\n          {\n            \"X\": 0.2612036466598511,\n            \"Y\": 0.6420166492462158\n          },\n          {\n            \"X\": 0.26120299100875854,\n            \"Y\": 0.6502501368522644\n          },\n          {\n            \"X\": 0.24963022768497467,\n            \"Y\": 0.6502425074577332\n          }\n        ]\n      },\n      \"Id\": \"0f804313-c8fb-4a60-b3d2-9e4c883086c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61450958251953,\n      \"Text\": \"SDR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025898030027747154,\n          \"Height\": 0.008090388961136341,\n          \"Left\": 0.26373282074928284,\n          \"Top\": 0.6421909928321838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.263733446598053,\n            \"Y\": 0.6421909928321838\n          },\n          {\n            \"X\": 0.28963083028793335,\n            \"Y\": 0.6422080397605896\n          },\n          {\n            \"X\": 0.28963029384613037,\n            \"Y\": 0.6502813696861267\n          },\n          {\n            \"X\": 0.26373282074928284,\n            \"Y\": 0.650264322757721\n          }\n        ]\n      },\n      \"Id\": \"cd1a5081-21d8-4726-a172-b03f7187e402\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20514678955078,\n      \"Text\": \"0.9\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01715271547436714,\n          \"Height\": 0.00798182375729084,\n          \"Left\": 0.292650431394577,\n          \"Top\": 0.642315685749054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2926509380340576,\n            \"Y\": 0.642315685749054\n          },\n          {\n            \"X\": 0.30980315804481506,\n            \"Y\": 0.6423269510269165\n          },\n          {\n            \"X\": 0.30980271100997925,\n            \"Y\": 0.6502974629402161\n          },\n          {\n            \"X\": 0.292650431394577,\n            \"Y\": 0.6502861976623535\n          }\n        ]\n      },\n      \"Id\": \"4f6ac833-2172-43c2-a860-5f3fdc652cdc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.69712829589844,\n      \"Text\": \"million.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03830783814191818,\n          \"Height\": 0.008106713183224201,\n          \"Left\": 0.3132794201374054,\n          \"Top\": 0.6422561407089233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3132798373699188,\n            \"Y\": 0.6422561407089233\n          },\n          {\n            \"X\": 0.3515872359275818,\n            \"Y\": 0.6422812938690186\n          },\n          {\n            \"X\": 0.3515869677066803,\n            \"Y\": 0.6503628492355347\n          },\n          {\n            \"X\": 0.3132794201374054,\n            \"Y\": 0.6503375768661499\n          }\n        ]\n      },\n      \"Id\": \"6b2b82a6-d457-4dd3-aaf5-b14b6477989e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9500732421875,\n      \"Text\": \"On\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016564765945076942,\n          \"Height\": 0.00786321796476841,\n          \"Left\": 0.3549947440624237,\n          \"Top\": 0.6423816680908203\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3549949824810028,\n            \"Y\": 0.6423816680908203\n          },\n          {\n            \"X\": 0.3715595006942749,\n            \"Y\": 0.6423925161361694\n          },\n          {\n            \"X\": 0.3715593218803406,\n            \"Y\": 0.6502448916435242\n          },\n          {\n            \"X\": 0.3549947440624237,\n            \"Y\": 0.6502339243888855\n          }\n        ]\n      },\n      \"Id\": \"5a956a50-2a4d-43ad-a5c0-53d5f6a204d1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86219787597656,\n      \"Text\": \"June\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026981914415955544,\n          \"Height\": 0.007914546877145767,\n          \"Left\": 0.3745378851890564,\n          \"Top\": 0.642339289188385\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37453803420066833,\n            \"Y\": 0.642339289188385\n          },\n          {\n            \"X\": 0.4015198051929474,\n            \"Y\": 0.6423570513725281\n          },\n          {\n            \"X\": 0.4015197455883026,\n            \"Y\": 0.6502538323402405\n          },\n          {\n            \"X\": 0.3745378851890564,\n            \"Y\": 0.6502360701560974\n          }\n        ]\n      },\n      \"Id\": \"36ac4f67-daea-4341-b55c-d84d258bd68e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.54977416992188,\n      \"Text\": \"29,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016668865457177162,\n          \"Height\": 0.009187061339616776,\n          \"Left\": 0.4047192931175232,\n          \"Top\": 0.6422688961029053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4047193229198456,\n            \"Y\": 0.6422688961029053\n          },\n          {\n            \"X\": 0.4213881194591522,\n            \"Y\": 0.642279863357544\n          },\n          {\n            \"X\": 0.4213881492614746,\n            \"Y\": 0.6514559984207153\n          },\n          {\n            \"X\": 0.4047192931175232,\n            \"Y\": 0.6514449715614319\n          }\n        ]\n      },\n      \"Id\": \"9b051279-5d04-4495-8d3d-e5b2b7e85081\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.58814239501953,\n      \"Text\": \"2021,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030371326953172684,\n          \"Height\": 0.00906306691467762,\n          \"Left\": 0.42489922046661377,\n          \"Top\": 0.6422886848449707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42489922046661377,\n            \"Y\": 0.6422886848449707\n          },\n          {\n            \"X\": 0.45527034997940063,\n            \"Y\": 0.6423086524009705\n          },\n          {\n            \"X\": 0.45527055859565735,\n            \"Y\": 0.6513517498970032\n          },\n          {\n            \"X\": 0.42489928007125854,\n            \"Y\": 0.6513317227363586\n          }\n        ]\n      },\n      \"Id\": \"f9eddd6a-4d1a-4289-8e88-ba58dd6354cd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92855072021484,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03545455262064934,\n          \"Height\": 0.008176516741514206,\n          \"Left\": 0.45926031470298767,\n          \"Top\": 0.6421786546707153\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45926031470298767,\n            \"Y\": 0.6421786546707153\n          },\n          {\n            \"X\": 0.49471449851989746,\n            \"Y\": 0.6422019600868225\n          },\n          {\n            \"X\": 0.4947148561477661,\n            \"Y\": 0.6503551602363586\n          },\n          {\n            \"X\": 0.459260493516922,\n            \"Y\": 0.6503317952156067\n          }\n        ]\n      },\n      \"Id\": \"a0dda8be-3616-4cdc-aedd-c5cbe752f04b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87042236328125,\n      \"Text\": \"settled\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036163393408060074,\n          \"Height\": 0.00804485660046339,\n          \"Left\": 0.4982122778892517,\n          \"Top\": 0.6422640681266785\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4982122778892517,\n            \"Y\": 0.6422640681266785\n          },\n          {\n            \"X\": 0.5343751311302185,\n            \"Y\": 0.6422878503799438\n          },\n          {\n            \"X\": 0.5343756675720215,\n            \"Y\": 0.6503089070320129\n          },\n          {\n            \"X\": 0.49821263551712036,\n            \"Y\": 0.6502850651741028\n          }\n        ]\n      },\n      \"Id\": \"233e77c9-889c-4295-af09-88bbfd2a1b6f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95176696777344,\n      \"Text\": \"its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01224612072110176,\n          \"Height\": 0.007813618518412113,\n          \"Left\": 0.5376792550086975,\n          \"Top\": 0.6423345804214478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5376792550086975,\n            \"Y\": 0.6423345804214478\n          },\n          {\n            \"X\": 0.5499247908592224,\n            \"Y\": 0.6423426270484924\n          },\n          {\n            \"X\": 0.5499253869056702,\n            \"Y\": 0.6501482129096985\n          },\n          {\n            \"X\": 0.5376797914505005,\n            \"Y\": 0.650140106678009\n          }\n        ]\n      },\n      \"Id\": \"cfe08676-d4ab-4d75-b4c9-0b2f756da043\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78520202636719,\n      \"Text\": \"overdue\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04445849731564522,\n          \"Height\": 0.007852432318031788,\n          \"Left\": 0.5532487034797668,\n          \"Top\": 0.6424426436424255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5532487034797668,\n            \"Y\": 0.6424426436424255\n          },\n          {\n            \"X\": 0.5977064371109009,\n            \"Y\": 0.6424719095230103\n          },\n          {\n            \"X\": 0.597707211971283,\n            \"Y\": 0.650295078754425\n          },\n          {\n            \"X\": 0.5532492995262146,\n            \"Y\": 0.6502658128738403\n          }\n        ]\n      },\n      \"Id\": \"1c4d9c08-b7c6-45ac-ac21-4fdcfaa32344\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57257843017578,\n      \"Text\": \"charges\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04335484653711319,\n          \"Height\": 0.009675625711679459,\n          \"Left\": 0.6010515093803406,\n          \"Top\": 0.6424457430839539\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6010515093803406,\n            \"Y\": 0.6424457430839539\n          },\n          {\n            \"X\": 0.6444051861763,\n            \"Y\": 0.6424742937088013\n          },\n          {\n            \"X\": 0.6444063186645508,\n            \"Y\": 0.652121365070343\n          },\n          {\n            \"X\": 0.601052463054657,\n            \"Y\": 0.6520928144454956\n          }\n        ]\n      },\n      \"Id\": \"930bfada-f227-47d7-83c3-8ba44a57c923\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93806457519531,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00954452808946371,\n          \"Height\": 0.007841577753424644,\n          \"Left\": 0.6477515697479248,\n          \"Top\": 0.6423404216766357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6477515697479248,\n            \"Y\": 0.6423404216766357\n          },\n          {\n            \"X\": 0.6572951078414917,\n            \"Y\": 0.6423467397689819\n          },\n          {\n            \"X\": 0.6572961211204529,\n            \"Y\": 0.6501820087432861\n          },\n          {\n            \"X\": 0.647752583026886,\n            \"Y\": 0.6501757502555847\n          }\n        ]\n      },\n      \"Id\": \"ddf682c1-ed50-4d21-886a-219266ab94aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98151397705078,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017338668927550316,\n          \"Height\": 0.007755388971418142,\n          \"Left\": 0.6606327891349792,\n          \"Top\": 0.6424494385719299\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6606327891349792,\n            \"Y\": 0.6424494385719299\n          },\n          {\n            \"X\": 0.6779703497886658,\n            \"Y\": 0.642460823059082\n          },\n          {\n            \"X\": 0.6779714822769165,\n            \"Y\": 0.6502048373222351\n          },\n          {\n            \"X\": 0.6606338024139404,\n            \"Y\": 0.6501933932304382\n          }\n        ]\n      },\n      \"Id\": \"27ae48fc-59fa-4821-b3ba-52e025169a11\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90469360351562,\n      \"Text\": \"General\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042992305010557175,\n          \"Height\": 0.007763447239995003,\n          \"Left\": 0.6819918155670166,\n          \"Top\": 0.6423227190971375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6819918155670166,\n            \"Y\": 0.6423227190971375\n          },\n          {\n            \"X\": 0.7249828577041626,\n            \"Y\": 0.642350971698761\n          },\n          {\n            \"X\": 0.7249841690063477,\n            \"Y\": 0.6500861644744873\n          },\n          {\n            \"X\": 0.6819929480552673,\n            \"Y\": 0.650057852268219\n          }\n        ]\n      },\n      \"Id\": \"8bb5e199-d88a-4fc6-9ca6-ec0ced71d0fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 81.58926391601562,\n      \"Text\": \"Department,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06690139323472977,\n          \"Height\": 0.00944919791072607,\n          \"Left\": 0.7283675074577332,\n          \"Top\": 0.6424357295036316\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7283675074577332,\n            \"Y\": 0.6424357295036316\n          },\n          {\n            \"X\": 0.7952669858932495,\n            \"Y\": 0.6424797177314758\n          },\n          {\n            \"X\": 0.7952688932418823,\n            \"Y\": 0.651884913444519\n          },\n          {\n            \"X\": 0.7283690571784973,\n            \"Y\": 0.65184086561203\n          }\n        ]\n      },\n      \"Id\": \"a0a7e179-4a47-4eb7-82d3-20fb7a16fef8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9912338256836,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02051836997270584,\n          \"Height\": 0.007705663330852985,\n          \"Left\": 0.7992401719093323,\n          \"Top\": 0.6424712538719177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7992401719093323,\n            \"Y\": 0.6424712538719177\n          },\n          {\n            \"X\": 0.8197568655014038,\n            \"Y\": 0.642484724521637\n          },\n          {\n            \"X\": 0.8197585344314575,\n            \"Y\": 0.6501768827438354\n          },\n          {\n            \"X\": 0.7992417812347412,\n            \"Y\": 0.6501634120941162\n          }\n        ]\n      },\n      \"Id\": \"28f3a93b-4d7d-4e6f-be8c-e909d2b80014\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95783233642578,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017405899241566658,\n          \"Height\": 0.007675448432564735,\n          \"Left\": 0.8226237893104553,\n          \"Top\": 0.6424999833106995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8226237893104553,\n            \"Y\": 0.6424999833106995\n          },\n          {\n            \"X\": 0.840027928352356,\n            \"Y\": 0.6425114870071411\n          },\n          {\n            \"X\": 0.8400296568870544,\n            \"Y\": 0.6501754522323608\n          },\n          {\n            \"X\": 0.822625458240509,\n            \"Y\": 0.650164008140564\n          }\n        ]\n      },\n      \"Id\": \"a0c729af-8236-4484-bbd7-c685629e9f3d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96798706054688,\n      \"Text\": \"account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04347663000226021,\n          \"Height\": 0.007345456164330244,\n          \"Left\": 0.8433498740196228,\n          \"Top\": 0.6428533792495728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8433498740196228,\n            \"Y\": 0.6428533792495728\n          },\n          {\n            \"X\": 0.8868246078491211,\n            \"Y\": 0.6428819894790649\n          },\n          {\n            \"X\": 0.8868264555931091,\n            \"Y\": 0.6501988172531128\n          },\n          {\n            \"X\": 0.8433515429496765,\n            \"Y\": 0.6501702070236206\n          }\n        ]\n      },\n      \"Id\": \"3d024cd4-06a8-404e-a967-337d70c7c46f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96026611328125,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022189248353242874,\n          \"Height\": 0.0062168980948626995,\n          \"Left\": 0.8894829154014587,\n          \"Top\": 0.6440402865409851\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8894829154014587,\n            \"Y\": 0.6440402865409851\n          },\n          {\n            \"X\": 0.9116705656051636,\n            \"Y\": 0.6440548896789551\n          },\n          {\n            \"X\": 0.9116721749305725,\n            \"Y\": 0.6502571702003479\n          },\n          {\n            \"X\": 0.8894845247268677,\n            \"Y\": 0.6502425670623779\n          }\n        ]\n      },\n      \"Id\": \"309b31aa-2ad4-425c-9a2d-7f2a89525de7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 75.09809875488281,\n      \"Text\": \"terminated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06155256927013397,\n          \"Height\": 0.008092462085187435,\n          \"Left\": 0.09325011819601059,\n          \"Top\": 0.6545301079750061\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09325149655342102,\n            \"Y\": 0.6545301079750061\n          },\n          {\n            \"X\": 0.15480268001556396,\n            \"Y\": 0.6545707583427429\n          },\n          {\n            \"X\": 0.15480157732963562,\n            \"Y\": 0.6626225709915161\n          },\n          {\n            \"X\": 0.09325011819601059,\n            \"Y\": 0.6625819206237793\n          }\n        ]\n      },\n      \"Id\": \"ee0acfb7-79bf-4b26-ae53-9dbf2c24afee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.33818054199219,\n      \"Text\": \"2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004891505464911461,\n          \"Height\": 0.005694333929568529,\n          \"Left\": 0.09356535971164703,\n          \"Top\": 0.6655026078224182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09356633573770523,\n            \"Y\": 0.6655026078224182\n          },\n          {\n            \"X\": 0.09845686703920364,\n            \"Y\": 0.6655058264732361\n          },\n          {\n            \"X\": 0.09845590591430664,\n            \"Y\": 0.6711969375610352\n          },\n          {\n            \"X\": 0.09356535971164703,\n            \"Y\": 0.6711937189102173\n          }\n        ]\n      },\n      \"Id\": \"73ffaeec-5756-4273-bc7b-86963c7e6aef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8848876953125,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035687826573848724,\n          \"Height\": 0.008227396756410599,\n          \"Left\": 0.10077455639839172,\n          \"Top\": 0.6666191816329956\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10077592730522156,\n            \"Y\": 0.6666191816329956\n          },\n          {\n            \"X\": 0.13646237552165985,\n            \"Y\": 0.6666428446769714\n          },\n          {\n            \"X\": 0.13646116852760315,\n            \"Y\": 0.6748465895652771\n          },\n          {\n            \"X\": 0.10077455639839172,\n            \"Y\": 0.6748229265213013\n          }\n        ]\n      },\n      \"Id\": \"b695bad1-ba0f-4fc0-81fc-61ed2f99ecb2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86444091796875,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07185584306716919,\n          \"Height\": 0.007998407818377018,\n          \"Left\": 0.13919489085674286,\n          \"Top\": 0.6667314767837524\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13919606804847717,\n            \"Y\": 0.6667314767837524\n          },\n          {\n            \"X\": 0.21105073392391205,\n            \"Y\": 0.6667790412902832\n          },\n          {\n            \"X\": 0.211049884557724,\n            \"Y\": 0.6747298836708069\n          },\n          {\n            \"X\": 0.13919489085674286,\n            \"Y\": 0.6746822595596313\n          }\n        ]\n      },\n      \"Id\": \"e9a38848-0945-4c35-bb52-3538e2757442\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97671508789062,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04539003595709801,\n          \"Height\": 0.007777293678373098,\n          \"Left\": 0.21400843560695648,\n          \"Top\": 0.6669410467147827\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21400927007198334,\n            \"Y\": 0.6669410467147827\n          },\n          {\n            \"X\": 0.259398490190506,\n            \"Y\": 0.6669710874557495\n          },\n          {\n            \"X\": 0.25939783453941345,\n            \"Y\": 0.6747183203697205\n          },\n          {\n            \"X\": 0.21400843560695648,\n            \"Y\": 0.6746882200241089\n          }\n        ]\n      },\n      \"Id\": \"93202fe2-fb8f-413b-b978-c3ad959b78a6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99055480957031,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020462051033973694,\n          \"Height\": 0.007923831231892109,\n          \"Left\": 0.2621004581451416,\n          \"Top\": 0.666812539100647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26210111379623413,\n            \"Y\": 0.666812539100647\n          },\n          {\n            \"X\": 0.2825625240802765,\n            \"Y\": 0.666826069355011\n          },\n          {\n            \"X\": 0.2825619578361511,\n            \"Y\": 0.6747363805770874\n          },\n          {\n            \"X\": 0.2621004581451416,\n            \"Y\": 0.6747227907180786\n          }\n        ]\n      },\n      \"Id\": \"b281f228-61b3-41e6-ae8d-c873632e2a13\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98283386230469,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017646033316850662,\n          \"Height\": 0.0078120362013578415,\n          \"Left\": 0.28554290533065796,\n          \"Top\": 0.6668822765350342\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28554344177246094,\n            \"Y\": 0.6668822765350342\n          },\n          {\n            \"X\": 0.30318892002105713,\n            \"Y\": 0.6668939590454102\n          },\n          {\n            \"X\": 0.3031884729862213,\n            \"Y\": 0.674694299697876\n          },\n          {\n            \"X\": 0.28554290533065796,\n            \"Y\": 0.6746826171875\n          }\n        ]\n      },\n      \"Id\": \"b5de7365-300c-4a3b-9148-4e3ba41aa448\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.41133117675781,\n      \"Text\": \"Interim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03760626167058945,\n          \"Height\": 0.00791733805090189,\n          \"Left\": 0.30646637082099915,\n          \"Top\": 0.6667604446411133\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30646681785583496,\n            \"Y\": 0.6667604446411133\n          },\n          {\n            \"X\": 0.3440726399421692,\n            \"Y\": 0.6667853593826294\n          },\n          {\n            \"X\": 0.3440723419189453,\n            \"Y\": 0.6746777892112732\n          },\n          {\n            \"X\": 0.30646637082099915,\n            \"Y\": 0.6746528744697571\n          }\n        ]\n      },\n      \"Id\": \"6d14c8f3-e2b9-4366-a221-acc829a2605e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89627838134766,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03552541509270668,\n          \"Height\": 0.008159204386174679,\n          \"Left\": 0.34733691811561584,\n          \"Top\": 0.6666706800460815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3473372161388397,\n            \"Y\": 0.6666706800460815\n          },\n          {\n            \"X\": 0.3828623294830322,\n            \"Y\": 0.666694164276123\n          },\n          {\n            \"X\": 0.3828621804714203,\n            \"Y\": 0.67482990026474\n          },\n          {\n            \"X\": 0.34733691811561584,\n            \"Y\": 0.6748063564300537\n          }\n        ]\n      },\n      \"Id\": \"c81e8218-651e-4c4c-8dd3-e3328515c30a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77584838867188,\n      \"Text\": \"Subaccount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06523925065994263,\n          \"Height\": 0.008321761153638363,\n          \"Left\": 0.3862997889518738,\n          \"Top\": 0.66640305519104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38629990816116333,\n            \"Y\": 0.66640305519104\n          },\n          {\n            \"X\": 0.4515388607978821,\n            \"Y\": 0.6664462089538574\n          },\n          {\n            \"X\": 0.4515390396118164,\n            \"Y\": 0.674724817276001\n          },\n          {\n            \"X\": 0.3862997889518738,\n            \"Y\": 0.674681544303894\n          }\n        ]\n      },\n      \"Id\": \"d638d8a5-b5cd-4d68-ac58-e9f0f07cf6bc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96366119384766,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011125089600682259,\n          \"Height\": 0.008069568313658237,\n          \"Left\": 0.4541815221309662,\n          \"Top\": 0.6666564345359802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4541815221309662,\n            \"Y\": 0.6666564345359802\n          },\n          {\n            \"X\": 0.4653063714504242,\n            \"Y\": 0.6666638255119324\n          },\n          {\n            \"X\": 0.4653066098690033,\n            \"Y\": 0.6747260093688965\n          },\n          {\n            \"X\": 0.4541816711425781,\n            \"Y\": 0.6747186183929443\n          }\n        ]\n      },\n      \"Id\": \"97fe417c-2c73-4594-a64f-4c375c780506\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99472045898438,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01775200478732586,\n          \"Height\": 0.007845890708267689,\n          \"Left\": 0.4673713743686676,\n          \"Top\": 0.6669122576713562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4673713743686676,\n            \"Y\": 0.6669122576713562\n          },\n          {\n            \"X\": 0.4851230978965759,\n            \"Y\": 0.666923999786377\n          },\n          {\n            \"X\": 0.4851233959197998,\n            \"Y\": 0.6747581362724304\n          },\n          {\n            \"X\": 0.4673716127872467,\n            \"Y\": 0.6747463345527649\n          }\n        ]\n      },\n      \"Id\": \"3dfc396d-925e-424a-8071-88535dd834b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58121490478516,\n      \"Text\": \"Framework\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.061638008803129196,\n          \"Height\": 0.008153077214956284,\n          \"Left\": 0.4886793792247772,\n          \"Top\": 0.6665938496589661\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4886793792247772,\n            \"Y\": 0.6665938496589661\n          },\n          {\n            \"X\": 0.5503168106079102,\n            \"Y\": 0.6666346192359924\n          },\n          {\n            \"X\": 0.5503174066543579,\n            \"Y\": 0.6747469305992126\n          },\n          {\n            \"X\": 0.4886797070503235,\n            \"Y\": 0.6747061014175415\n          }\n        ]\n      },\n      \"Id\": \"1673716c-d700-4147-a5e6-d6dfd27d688f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.72441101074219,\n      \"Text\": \"Interim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03700069710612297,\n          \"Height\": 0.007768383249640465,\n          \"Left\": 0.5534670352935791,\n          \"Top\": 0.6668285131454468\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5534670352935791,\n            \"Y\": 0.6668285131454468\n          },\n          {\n            \"X\": 0.5904670357704163,\n            \"Y\": 0.6668530106544495\n          },\n          {\n            \"X\": 0.5904677510261536,\n            \"Y\": 0.674596905708313\n          },\n          {\n            \"X\": 0.5534676313400269,\n            \"Y\": 0.6745723485946655\n          }\n        ]\n      },\n      \"Id\": \"0d7e28c2-0899-4a23-a9c7-40b63cb18993\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95938873291016,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045594602823257446,\n          \"Height\": 0.007695259992033243,\n          \"Left\": 0.5933651328086853,\n          \"Top\": 0.6669130325317383\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5933651328086853,\n            \"Y\": 0.6669130325317383\n          },\n          {\n            \"X\": 0.6389588117599487,\n            \"Y\": 0.6669431924819946\n          },\n          {\n            \"X\": 0.6389597654342651,\n            \"Y\": 0.6746082901954651\n          },\n          {\n            \"X\": 0.5933658480644226,\n            \"Y\": 0.674578070640564\n          }\n        ]\n      },\n      \"Id\": \"cf86b63b-02fe-4bc4-a83f-e9e6fd0ab425\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97100067138672,\n      \"Text\": \"were\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026964325457811356,\n          \"Height\": 0.006019722670316696,\n          \"Left\": 0.6411786675453186,\n          \"Top\": 0.6688002347946167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6411786675453186,\n            \"Y\": 0.6688002347946167\n          },\n          {\n            \"X\": 0.6681421399116516,\n            \"Y\": 0.6688181161880493\n          },\n          {\n            \"X\": 0.6681429743766785,\n            \"Y\": 0.6748199462890625\n          },\n          {\n            \"X\": 0.6411793828010559,\n            \"Y\": 0.6748020648956299\n          }\n        ]\n      },\n      \"Id\": \"9c36f350-6f84-4c4c-b572-eed8d3e17ccc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94535827636719,\n      \"Text\": \"established\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.062226567417383194,\n          \"Height\": 0.007859738543629646,\n          \"Left\": 0.6713737845420837,\n          \"Top\": 0.6668322086334229\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6713737845420837,\n            \"Y\": 0.6668322086334229\n          },\n          {\n            \"X\": 0.733599066734314,\n            \"Y\": 0.6668733954429626\n          },\n          {\n            \"X\": 0.733600378036499,\n            \"Y\": 0.6746919751167297\n          },\n          {\n            \"X\": 0.6713748574256897,\n            \"Y\": 0.6746507287025452\n          }\n        ]\n      },\n      \"Id\": \"c07dabf5-98ac-45f0-a0f3-691922957f1c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9630355834961,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013300343416631222,\n          \"Height\": 0.006192129570990801,\n          \"Left\": 0.7370259761810303,\n          \"Top\": 0.6684920191764832\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7370259761810303,\n            \"Y\": 0.6684920191764832\n          },\n          {\n            \"X\": 0.7503252625465393,\n            \"Y\": 0.6685008406639099\n          },\n          {\n            \"X\": 0.7503263354301453,\n            \"Y\": 0.6746841669082642\n          },\n          {\n            \"X\": 0.7370270490646362,\n            \"Y\": 0.6746753454208374\n          }\n        ]\n      },\n      \"Id\": \"588b8bb1-763f-4de5-bd51-2b5a969037e1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9675064086914,\n      \"Text\": \"May\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023674314841628075,\n          \"Height\": 0.009691959246993065,\n          \"Left\": 0.7540615200996399,\n          \"Top\": 0.6667612195014954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7540615200996399,\n            \"Y\": 0.6667612195014954\n          },\n          {\n            \"X\": 0.7777339220046997,\n            \"Y\": 0.6667768359184265\n          },\n          {\n            \"X\": 0.7777358293533325,\n            \"Y\": 0.676453173160553\n          },\n          {\n            \"X\": 0.7540632486343384,\n            \"Y\": 0.6764374375343323\n          }\n        ]\n      },\n      \"Id\": \"2c68c642-49f3-42be-b0ae-f0419e978525\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57746124267578,\n      \"Text\": \"10,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0160102229565382,\n          \"Height\": 0.009034140966832638,\n          \"Left\": 0.7813608646392822,\n          \"Top\": 0.6668702960014343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7813608646392822,\n            \"Y\": 0.6668702960014343\n          },\n          {\n            \"X\": 0.7973692417144775,\n            \"Y\": 0.6668809056282043\n          },\n          {\n            \"X\": 0.7973710894584656,\n            \"Y\": 0.6759044528007507\n          },\n          {\n            \"X\": 0.7813626527786255,\n            \"Y\": 0.6758938431739807\n          }\n        ]\n      },\n      \"Id\": \"dbe90c8d-6499-42eb-bd64-3020b943bf2e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95299530029297,\n      \"Text\": \"2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026671871542930603,\n          \"Height\": 0.007922409102320671,\n          \"Left\": 0.8007017374038696,\n          \"Top\": 0.6667900085449219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8007017374038696,\n            \"Y\": 0.6667900085449219\n          },\n          {\n            \"X\": 0.8273718953132629,\n            \"Y\": 0.6668077111244202\n          },\n          {\n            \"X\": 0.8273736238479614,\n            \"Y\": 0.6747124195098877\n          },\n          {\n            \"X\": 0.8007034063339233,\n            \"Y\": 0.6746947765350342\n          }\n        ]\n      },\n      \"Id\": \"1d0ae8d4-edf6-4eaa-ad5c-2ddcdb6f5c33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93697357177734,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010979692451655865,\n          \"Height\": 0.007336121052503586,\n          \"Left\": 0.8309945464134216,\n          \"Top\": 0.6673097014427185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8309945464134216,\n            \"Y\": 0.6673097014427185\n          },\n          {\n            \"X\": 0.8419725894927979,\n            \"Y\": 0.6673169732093811\n          },\n          {\n            \"X\": 0.8419742584228516,\n            \"Y\": 0.6746458411216736\n          },\n          {\n            \"X\": 0.8309962153434753,\n            \"Y\": 0.674638569355011\n          }\n        ]\n      },\n      \"Id\": \"628f17a4-b04e-43a7-8de1-7caadef57b9b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83972930908203,\n      \"Text\": \"facilitate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04513636231422424,\n          \"Height\": 0.00789992418140173,\n          \"Left\": 0.8451523780822754,\n          \"Top\": 0.6667713522911072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8451523780822754,\n            \"Y\": 0.6667713522911072\n          },\n          {\n            \"X\": 0.8902867436408997,\n            \"Y\": 0.6668012142181396\n          },\n          {\n            \"X\": 0.890288770198822,\n            \"Y\": 0.6746712923049927\n          },\n          {\n            \"X\": 0.8451541662216187,\n            \"Y\": 0.6746413707733154\n          }\n        ]\n      },\n      \"Id\": \"8fa29edb-e0d9-46f9-9db6-83c6b1c303a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49873352050781,\n      \"Text\": \"fundraising\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06048665940761566,\n          \"Height\": 0.009881113655865192,\n          \"Left\": 0.09349269419908524,\n          \"Top\": 0.678229033946991\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09349437803030014,\n            \"Y\": 0.678229033946991\n          },\n          {\n            \"X\": 0.1539793461561203,\n            \"Y\": 0.6782692074775696\n          },\n          {\n            \"X\": 0.15397799015045166,\n            \"Y\": 0.6881101727485657\n          },\n          {\n            \"X\": 0.09349269419908524,\n            \"Y\": 0.6880699396133423\n          }\n        ]\n      },\n      \"Id\": \"bfe26a7e-f851-46d1-8136-db2413b00d1b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46851348876953,\n      \"Text\": \"for,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01768062636256218,\n          \"Height\": 0.009160321205854416,\n          \"Left\": 0.15714648365974426,\n          \"Top\": 0.678171694278717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15714773535728455,\n            \"Y\": 0.678171694278717\n          },\n          {\n            \"X\": 0.17482711374759674,\n            \"Y\": 0.6781834363937378\n          },\n          {\n            \"X\": 0.17482593655586243,\n            \"Y\": 0.687332034111023\n          },\n          {\n            \"X\": 0.15714648365974426,\n            \"Y\": 0.6873202323913574\n          }\n        ]\n      },\n      \"Id\": \"dc776582-fe4a-4f80-8007-0a7201b1912d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98873901367188,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02080432139337063,\n          \"Height\": 0.00787139032036066,\n          \"Left\": 0.17842650413513184,\n          \"Top\": 0.678310751914978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17842750251293182,\n            \"Y\": 0.678310751914978\n          },\n          {\n            \"X\": 0.1992308348417282,\n            \"Y\": 0.6783245801925659\n          },\n          {\n            \"X\": 0.19922992587089539,\n            \"Y\": 0.6861821413040161\n          },\n          {\n            \"X\": 0.17842650413513184,\n            \"Y\": 0.6861683130264282\n          }\n        ]\n      },\n      \"Id\": \"d17b406c-a4ea-4dea-a60c-764927e82092\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96312713623047,\n      \"Text\": \"delivery\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04255891218781471,\n          \"Height\": 0.009921268559992313,\n          \"Left\": 0.20238839089870453,\n          \"Top\": 0.6781890988349915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20238950848579407,\n            \"Y\": 0.6781890988349915\n          },\n          {\n            \"X\": 0.24494729936122894,\n            \"Y\": 0.6782172918319702\n          },\n          {\n            \"X\": 0.2449464201927185,\n            \"Y\": 0.6881103515625\n          },\n          {\n            \"X\": 0.20238839089870453,\n            \"Y\": 0.6880820393562317\n          }\n        ]\n      },\n      \"Id\": \"9303e061-2c29-4812-9081-efbbebe29406\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.30113983154297,\n      \"Text\": \"of,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01367259956896305,\n          \"Height\": 0.009132321923971176,\n          \"Left\": 0.24785928428173065,\n          \"Top\": 0.6781278848648071\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24786008894443512,\n            \"Y\": 0.6781278848648071\n          },\n          {\n            \"X\": 0.26153188943862915,\n            \"Y\": 0.678136944770813\n          },\n          {\n            \"X\": 0.26153114438056946,\n            \"Y\": 0.6872602105140686\n          },\n          {\n            \"X\": 0.24785928428173065,\n            \"Y\": 0.687251091003418\n          }\n        ]\n      },\n      \"Id\": \"7d5fc7a7-7b1e-4725-8f1e-aa941bc7e443\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96266174316406,\n      \"Text\": \"debt\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02456563338637352,\n          \"Height\": 0.007949797436594963,\n          \"Left\": 0.2650320827960968,\n          \"Top\": 0.6782703399658203\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26503270864486694,\n            \"Y\": 0.6782703399658203\n          },\n          {\n            \"X\": 0.2895977199077606,\n            \"Y\": 0.678286612033844\n          },\n          {\n            \"X\": 0.28959718346595764,\n            \"Y\": 0.686220109462738\n          },\n          {\n            \"X\": 0.2650320827960968,\n            \"Y\": 0.6862037777900696\n          }\n        ]\n      },\n      \"Id\": \"745e20a9-541e-4790-8d07-234f1fa57b2a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8613052368164,\n      \"Text\": \"relief\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027266450226306915,\n          \"Height\": 0.007935818284749985,\n          \"Left\": 0.29218074679374695,\n          \"Top\": 0.6782254576683044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2921812832355499,\n            \"Y\": 0.6782254576683044\n          },\n          {\n            \"X\": 0.31944721937179565,\n            \"Y\": 0.6782435774803162\n          },\n          {\n            \"X\": 0.3194468021392822,\n            \"Y\": 0.6861612796783447\n          },\n          {\n            \"X\": 0.29218074679374695,\n            \"Y\": 0.686143159866333\n          }\n        ]\n      },\n      \"Id\": \"9a7e64b7-085a-491c-93f8-248dd73c506a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95648956298828,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011040113866329193,\n          \"Height\": 0.007397753652185202,\n          \"Left\": 0.32166746258735657,\n          \"Top\": 0.6786595582962036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3216678500175476,\n            \"Y\": 0.6786595582962036\n          },\n          {\n            \"X\": 0.33270758390426636,\n            \"Y\": 0.678666889667511\n          },\n          {\n            \"X\": 0.3327072560787201,\n            \"Y\": 0.6860572695732117\n          },\n          {\n            \"X\": 0.32166746258735657,\n            \"Y\": 0.6860499382019043\n          }\n        ]\n      },\n      \"Id\": \"2a41187a-59a8-4b97-a19b-202c28d9dccb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90430450439453,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0353708490729332,\n          \"Height\": 0.008053508587181568,\n          \"Left\": 0.33595845103263855,\n          \"Top\": 0.6781772971153259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3359587788581848,\n            \"Y\": 0.6781772971153259\n          },\n          {\n            \"X\": 0.37132930755615234,\n            \"Y\": 0.6782007813453674\n          },\n          {\n            \"X\": 0.371329128742218,\n            \"Y\": 0.6862308382987976\n          },\n          {\n            \"X\": 0.33595845103263855,\n            \"Y\": 0.6862072944641113\n          }\n        ]\n      },\n      \"Id\": \"4df05427-6ce2-40f0-887e-c59bb3fe0383\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95984649658203,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010042956098914146,\n          \"Height\": 0.007758742198348045,\n          \"Left\": 0.37446895241737366,\n          \"Top\": 0.6783322691917419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3744691014289856,\n            \"Y\": 0.6783322691917419\n          },\n          {\n            \"X\": 0.38451188802719116,\n            \"Y\": 0.6783389449119568\n          },\n          {\n            \"X\": 0.3845117688179016,\n            \"Y\": 0.6860910058021545\n          },\n          {\n            \"X\": 0.37446895241737366,\n            \"Y\": 0.6860843300819397\n          }\n        ]\n      },\n      \"Id\": \"961780e4-1008-4ad8-b5ba-86cacf38da3f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98535919189453,\n      \"Text\": \"respect\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040738314390182495,\n          \"Height\": 0.009174869395792484,\n          \"Left\": 0.38754791021347046,\n          \"Top\": 0.6786581873893738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38754802942276,\n            \"Y\": 0.6786581873893738\n          },\n          {\n            \"X\": 0.4282861351966858,\n            \"Y\": 0.6786852478981018\n          },\n          {\n            \"X\": 0.42828622460365295,\n            \"Y\": 0.6878330707550049\n          },\n          {\n            \"X\": 0.38754791021347046,\n            \"Y\": 0.6878059506416321\n          }\n        ]\n      },\n      \"Id\": \"149528f9-5a6a-4811-b9e9-fe1ff1361348\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95980072021484,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01142540480941534,\n          \"Height\": 0.008079958148300648,\n          \"Left\": 0.4310818910598755,\n          \"Top\": 0.6781280040740967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4310818910598755,\n            \"Y\": 0.6781280040740967\n          },\n          {\n            \"X\": 0.44250717759132385,\n            \"Y\": 0.6781355738639832\n          },\n          {\n            \"X\": 0.4425072968006134,\n            \"Y\": 0.6862079501152039\n          },\n          {\n            \"X\": 0.43108198046684265,\n            \"Y\": 0.6862003803253174\n          }\n        ]\n      },\n      \"Id\": \"73c78f2a-5a75-4426-9954-33d5e4ad04cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73211669921875,\n      \"Text\": \"obligations\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05869756266474724,\n          \"Height\": 0.009810047224164009,\n          \"Left\": 0.4448007345199585,\n          \"Top\": 0.6780898571014404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4448007345199585,\n            \"Y\": 0.6780898571014404\n          },\n          {\n            \"X\": 0.503497838973999,\n            \"Y\": 0.6781288385391235\n          },\n          {\n            \"X\": 0.5034983158111572,\n            \"Y\": 0.6878999471664429\n          },\n          {\n            \"X\": 0.44480088353157043,\n            \"Y\": 0.687860906124115\n          }\n        ]\n      },\n      \"Id\": \"dd099be1-ffe1-484a-aa40-7d51f2603dd5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88636016845703,\n      \"Text\": \"owed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02929190918803215,\n          \"Height\": 0.00764628779143095,\n          \"Left\": 0.506771445274353,\n          \"Top\": 0.6784998178482056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.506771445274353,\n            \"Y\": 0.6784998178482056\n          },\n          {\n            \"X\": 0.5360628366470337,\n            \"Y\": 0.6785192489624023\n          },\n          {\n            \"X\": 0.5360633730888367,\n            \"Y\": 0.686146080493927\n          },\n          {\n            \"X\": 0.5067718029022217,\n            \"Y\": 0.6861265897750854\n          }\n        ]\n      },\n      \"Id\": \"cd1aea12-aafb-4cba-84ea-123fa337fce3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96216583251953,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010708429850637913,\n          \"Height\": 0.007412640377879143,\n          \"Left\": 0.539030909538269,\n          \"Top\": 0.678712785243988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.539030909538269,\n            \"Y\": 0.678712785243988\n          },\n          {\n            \"X\": 0.5497387647628784,\n            \"Y\": 0.6787198781967163\n          },\n          {\n            \"X\": 0.5497393012046814,\n            \"Y\": 0.6861254572868347\n          },\n          {\n            \"X\": 0.5390313863754272,\n            \"Y\": 0.6861183047294617\n          }\n        ]\n      },\n      \"Id\": \"0492a647-e57c-423d-8ad2-4914f1fadf50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9871826171875,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017786316573619843,\n          \"Height\": 0.007697805296629667,\n          \"Left\": 0.552586019039154,\n          \"Top\": 0.6784487366676331\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.552586019039154,\n            \"Y\": 0.6784487366676331\n          },\n          {\n            \"X\": 0.5703717470169067,\n            \"Y\": 0.6784605383872986\n          },\n          {\n            \"X\": 0.5703723430633545,\n            \"Y\": 0.6861465573310852\n          },\n          {\n            \"X\": 0.5525866150856018,\n            \"Y\": 0.6861346960067749\n          }\n        ]\n      },\n      \"Id\": \"c8c072a7-ff2f-4e33-9908-d6668f1d88a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.40848541259766,\n      \"Text\": \"IMF.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02356841042637825,\n          \"Height\": 0.007968946360051632,\n          \"Left\": 0.5740333199501038,\n          \"Top\": 0.6782740950584412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5740333199501038,\n            \"Y\": 0.6782740950584412\n          },\n          {\n            \"X\": 0.5976009368896484,\n            \"Y\": 0.6782897114753723\n          },\n          {\n            \"X\": 0.5976017117500305,\n            \"Y\": 0.6862430572509766\n          },\n          {\n            \"X\": 0.5740339756011963,\n            \"Y\": 0.6862273812294006\n          }\n        ]\n      },\n      \"Id\": \"8167d8eb-b12f-4894-bb29-16911e981297\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93045043945312,\n      \"Text\": \"Starting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04186973720788956,\n          \"Height\": 0.009728314355015755,\n          \"Left\": 0.601769745349884,\n          \"Top\": 0.6782436370849609\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.601769745349884,\n            \"Y\": 0.6782436370849609\n          },\n          {\n            \"X\": 0.6436382532119751,\n            \"Y\": 0.6782714128494263\n          },\n          {\n            \"X\": 0.6436394453048706,\n            \"Y\": 0.6879719495773315\n          },\n          {\n            \"X\": 0.6017706990242004,\n            \"Y\": 0.6879441142082214\n          }\n        ]\n      },\n      \"Id\": \"afde11ba-dc69-4e49-99a5-6a334903dea6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98115539550781,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02499973401427269,\n          \"Height\": 0.007855546660721302,\n          \"Left\": 0.6467753052711487,\n          \"Top\": 0.67824786901474\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6467753052711487,\n            \"Y\": 0.67824786901474\n          },\n          {\n            \"X\": 0.6717739701271057,\n            \"Y\": 0.6782644391059875\n          },\n          {\n            \"X\": 0.6717750430107117,\n            \"Y\": 0.6861034035682678\n          },\n          {\n            \"X\": 0.6467762589454651,\n            \"Y\": 0.6860867738723755\n          }\n        ]\n      },\n      \"Id\": \"3747d502-842a-40e1-bed0-5b176491f4ba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78591918945312,\n      \"Text\": \"June\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027098137885332108,\n          \"Height\": 0.00780445383861661,\n          \"Left\": 0.6746976971626282,\n          \"Top\": 0.6783379316329956\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6746976971626282,\n            \"Y\": 0.6783379316329956\n          },\n          {\n            \"X\": 0.7017946243286133,\n            \"Y\": 0.6783559322357178\n          },\n          {\n            \"X\": 0.7017958164215088,\n            \"Y\": 0.6861423850059509\n          },\n          {\n            \"X\": 0.6746987700462341,\n            \"Y\": 0.6861243844032288\n          }\n        ]\n      },\n      \"Id\": \"f46905ef-85d4-4836-92a8-b3584e7d1b23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.34294128417969,\n      \"Text\": \"29,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016740089282393456,\n          \"Height\": 0.009065132588148117,\n          \"Left\": 0.7050538063049316,\n          \"Top\": 0.6783543229103088\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7050538063049316,\n            \"Y\": 0.6783543229103088\n          },\n          {\n            \"X\": 0.7217923998832703,\n            \"Y\": 0.6783654093742371\n          },\n          {\n            \"X\": 0.7217938899993896,\n            \"Y\": 0.6874194145202637\n          },\n          {\n            \"X\": 0.7050551772117615,\n            \"Y\": 0.6874083280563354\n          }\n        ]\n      },\n      \"Id\": \"46a174da-209e-4283-a1dc-c6dc47a74b23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.22209167480469,\n      \"Text\": \"2021,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030361203476786613,\n          \"Height\": 0.009134387597441673,\n          \"Left\": 0.7255935668945312,\n          \"Top\": 0.6782766580581665\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7255935668945312,\n            \"Y\": 0.6782766580581665\n          },\n          {\n            \"X\": 0.7559531331062317,\n            \"Y\": 0.6782968044281006\n          },\n          {\n            \"X\": 0.7559548020362854,\n            \"Y\": 0.6874110102653503\n          },\n          {\n            \"X\": 0.7255951166152954,\n            \"Y\": 0.6873908042907715\n          }\n        ]\n      },\n      \"Id\": \"ec944a61-87e1-4174-bea0-fd380d80dfb6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63521575927734,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03545701876282692,\n          \"Height\": 0.007851225323975086,\n          \"Left\": 0.7598154544830322,\n          \"Top\": 0.6783092617988586\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7598154544830322,\n            \"Y\": 0.6783092617988586\n          },\n          {\n            \"X\": 0.7952708601951599,\n            \"Y\": 0.6783328056335449\n          },\n          {\n            \"X\": 0.7952724695205688,\n            \"Y\": 0.6861605048179626\n          },\n          {\n            \"X\": 0.7598168849945068,\n            \"Y\": 0.6861369013786316\n          }\n        ]\n      },\n      \"Id\": \"52150f9c-33b0-4492-a18a-301392b60cf9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84332275390625,\n      \"Text\": \"Administered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07226598262786865,\n          \"Height\": 0.007852207869291306,\n          \"Left\": 0.7978398203849792,\n          \"Top\": 0.6783798933029175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7978398203849792,\n            \"Y\": 0.6783798933029175\n          },\n          {\n            \"X\": 0.8701038956642151,\n            \"Y\": 0.6784278750419617\n          },\n          {\n            \"X\": 0.8701058030128479,\n            \"Y\": 0.6862320899963379\n          },\n          {\n            \"X\": 0.7978414297103882,\n            \"Y\": 0.6861840486526489\n          }\n        ]\n      },\n      \"Id\": \"64fd5185-80f0-4d1a-95a9-ca506a4b5e9e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97274780273438,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04540364816784859,\n          \"Height\": 0.00795109011232853,\n          \"Left\": 0.8729487657546997,\n          \"Top\": 0.6783199310302734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8729487657546997,\n            \"Y\": 0.6783199310302734\n          },\n          {\n            \"X\": 0.9183502793312073,\n            \"Y\": 0.6783500909805298\n          },\n          {\n            \"X\": 0.9183524250984192,\n            \"Y\": 0.6862710118293762\n          },\n          {\n            \"X\": 0.8729506731033325,\n            \"Y\": 0.6862408518791199\n          }\n        ]\n      },\n      \"Id\": \"52f0921b-f882-43b4-a30f-6e2f5cd95ac0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97576141357422,\n      \"Text\": \"received\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04660763218998909,\n          \"Height\": 0.008065602742135525,\n          \"Left\": 0.09392671287059784,\n          \"Top\": 0.6904281377792358\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09392808377742767,\n            \"Y\": 0.6904281377792358\n          },\n          {\n            \"X\": 0.14053434133529663,\n            \"Y\": 0.690459132194519\n          },\n          {\n            \"X\": 0.14053316414356232,\n            \"Y\": 0.6984937191009521\n          },\n          {\n            \"X\": 0.09392671287059784,\n            \"Y\": 0.6984626650810242\n          }\n        ]\n      },\n      \"Id\": \"311dc1a6-8494-4d7d-bde6-504fc9122e92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9719467163086,\n      \"Text\": \"about\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03132559731602669,\n          \"Height\": 0.007940424606204033,\n          \"Left\": 0.14365644752979279,\n          \"Top\": 0.6905728578567505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1436575949192047,\n            \"Y\": 0.6905728578567505\n          },\n          {\n            \"X\": 0.17498204112052917,\n            \"Y\": 0.6905937194824219\n          },\n          {\n            \"X\": 0.174981027841568,\n            \"Y\": 0.6985132694244385\n          },\n          {\n            \"X\": 0.14365644752979279,\n            \"Y\": 0.6984924077987671\n          }\n        ]\n      },\n      \"Id\": \"2502b778-48f4-4ebe-88c3-3a747615b605\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83661651611328,\n      \"Text\": \"SDR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02554553560912609,\n          \"Height\": 0.008062469772994518,\n          \"Left\": 0.17832262814044952,\n          \"Top\": 0.6904329657554626\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1783236265182495,\n            \"Y\": 0.6904329657554626\n          },\n          {\n            \"X\": 0.20386815071105957,\n            \"Y\": 0.6904499530792236\n          },\n          {\n            \"X\": 0.20386725664138794,\n            \"Y\": 0.6984954476356506\n          },\n          {\n            \"X\": 0.17832262814044952,\n            \"Y\": 0.6984784007072449\n          }\n        ]\n      },\n      \"Id\": \"cafc5e36-5210-4f90-9ddf-9da88f5b546d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9152603149414,\n      \"Text\": \"653\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02073221281170845,\n          \"Height\": 0.007924041710793972,\n          \"Left\": 0.2070310115814209,\n          \"Top\": 0.6903864145278931\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20703189074993134,\n            \"Y\": 0.6903864145278931\n          },\n          {\n            \"X\": 0.22776322066783905,\n            \"Y\": 0.6904001832008362\n          },\n          {\n            \"X\": 0.22776244580745697,\n            \"Y\": 0.6983104348182678\n          },\n          {\n            \"X\": 0.2070310115814209,\n            \"Y\": 0.6982966065406799\n          }\n        ]\n      },\n      \"Id\": \"493859db-ef4d-4387-b422-b117c6ef6406\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96393585205078,\n      \"Text\": \"million\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03470541164278984,\n          \"Height\": 0.00796861294656992,\n          \"Left\": 0.23103216290473938,\n          \"Top\": 0.6905174851417542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23103293776512146,\n            \"Y\": 0.6905174851417542\n          },\n          {\n            \"X\": 0.2657375633716583,\n            \"Y\": 0.690540611743927\n          },\n          {\n            \"X\": 0.2657369375228882,\n            \"Y\": 0.6984860897064209\n          },\n          {\n            \"X\": 0.23103216290473938,\n            \"Y\": 0.698462963104248\n          }\n        ]\n      },\n      \"Id\": \"e4c47147-3dad-44e6-9831-148b4c1e0891\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9691390991211,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009743992239236832,\n          \"Height\": 0.007780047133564949,\n          \"Left\": 0.26894301176071167,\n          \"Top\": 0.6904864311218262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2689436078071594,\n            \"Y\": 0.6904864311218262\n          },\n          {\n            \"X\": 0.2786870002746582,\n            \"Y\": 0.6904929280281067\n          },\n          {\n            \"X\": 0.27868643403053284,\n            \"Y\": 0.6982665061950684\n          },\n          {\n            \"X\": 0.26894301176071167,\n            \"Y\": 0.6982600092887878\n          }\n        ]\n      },\n      \"Id\": \"363bbfba-3a5a-4301-8933-8bdd3cbf1bb9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87377166748047,\n      \"Text\": \"contributions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06965997815132141,\n          \"Height\": 0.007984789088368416,\n          \"Left\": 0.2820630371570587,\n          \"Top\": 0.6904757022857666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2820636034011841,\n            \"Y\": 0.6904757022857666\n          },\n          {\n            \"X\": 0.3517230153083801,\n            \"Y\": 0.6905220150947571\n          },\n          {\n            \"X\": 0.35172274708747864,\n            \"Y\": 0.6984604597091675\n          },\n          {\n            \"X\": 0.2820630371570587,\n            \"Y\": 0.6984140276908875\n          }\n        ]\n      },\n      \"Id\": \"c8da32d4-efdb-4c13-a453-dfd573fcc74a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98573303222656,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02513100765645504,\n          \"Height\": 0.008048107847571373,\n          \"Left\": 0.3545525372028351,\n          \"Top\": 0.6902846097946167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3545528054237366,\n            \"Y\": 0.6902846097946167\n          },\n          {\n            \"X\": 0.37968355417251587,\n            \"Y\": 0.6903013586997986\n          },\n          {\n            \"X\": 0.37968340516090393,\n            \"Y\": 0.6983327269554138\n          },\n          {\n            \"X\": 0.3545525372028351,\n            \"Y\": 0.6983159780502319\n          }\n        ]\n      },\n      \"Id\": \"d9484113-4a0e-4801-97b0-ad71a7b23294\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91551971435547,\n      \"Text\": \"83\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013676002621650696,\n          \"Height\": 0.007935726083815098,\n          \"Left\": 0.3828975558280945,\n          \"Top\": 0.6903878450393677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38289767503738403,\n            \"Y\": 0.6903878450393677\n          },\n          {\n            \"X\": 0.39657357335090637,\n            \"Y\": 0.6903969049453735\n          },\n          {\n            \"X\": 0.3965734839439392,\n            \"Y\": 0.6983235478401184\n          },\n          {\n            \"X\": 0.3828975558280945,\n            \"Y\": 0.6983144283294678\n          }\n        ]\n      },\n      \"Id\": \"9714b133-9273-4173-9f38-e7a085b67e04\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98663330078125,\n      \"Text\": \"member\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04568714275956154,\n          \"Height\": 0.007939882576465607,\n          \"Left\": 0.39978334307670593,\n          \"Top\": 0.6905107498168945\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3997834026813507,\n            \"Y\": 0.6905107498168945\n          },\n          {\n            \"X\": 0.4454703629016876,\n            \"Y\": 0.6905412077903748\n          },\n          {\n            \"X\": 0.4454704821109772,\n            \"Y\": 0.6984506845474243\n          },\n          {\n            \"X\": 0.39978334307670593,\n            \"Y\": 0.6984201669692993\n          }\n        ]\n      },\n      \"Id\": \"76754d7b-1f25-4baa-8bb3-edaae21dbd45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76152801513672,\n      \"Text\": \"countries\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049952272325754166,\n          \"Height\": 0.008034748025238514,\n          \"Left\": 0.44810840487480164,\n          \"Top\": 0.6904352903366089\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44810840487480164,\n            \"Y\": 0.6904352903366089\n          },\n          {\n            \"X\": 0.49806031584739685,\n            \"Y\": 0.6904685497283936\n          },\n          {\n            \"X\": 0.4980606734752655,\n            \"Y\": 0.6984700560569763\n          },\n          {\n            \"X\": 0.4481085538864136,\n            \"Y\": 0.6984367370605469\n          }\n        ]\n      },\n      \"Id\": \"fb95e17a-fba6-4dd1-8943-23ef6dce3cfb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99248504638672,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020388657227158546,\n          \"Height\": 0.007839701138436794,\n          \"Left\": 0.5012050867080688,\n          \"Top\": 0.6904453039169312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5012050867080688,\n            \"Y\": 0.6904453039169312\n          },\n          {\n            \"X\": 0.5215933322906494,\n            \"Y\": 0.6904588937759399\n          },\n          {\n            \"X\": 0.5215937495231628,\n            \"Y\": 0.6982849836349487\n          },\n          {\n            \"X\": 0.5012055039405823,\n            \"Y\": 0.6982713937759399\n          }\n        ]\n      },\n      \"Id\": \"b54e09d6-48a6-4b50-9204-3f510fb0e47e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99331665039062,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017585253342986107,\n          \"Height\": 0.007647267542779446,\n          \"Left\": 0.5246717929840088,\n          \"Top\": 0.6905798316001892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5246717929840088,\n            \"Y\": 0.6905798316001892\n          },\n          {\n            \"X\": 0.5422565340995789,\n            \"Y\": 0.69059157371521\n          },\n          {\n            \"X\": 0.5422570109367371,\n            \"Y\": 0.6982271075248718\n          },\n          {\n            \"X\": 0.5246722102165222,\n            \"Y\": 0.6982153654098511\n          }\n        ]\n      },\n      \"Id\": \"e5bc5763-8294-4542-93f2-963d3193a374\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.96775817871094,\n      \"Text\": \"Interim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0373372957110405,\n          \"Height\": 0.007708510383963585,\n          \"Left\": 0.5457020401954651,\n          \"Top\": 0.6905901432037354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5457020401954651,\n            \"Y\": 0.6905901432037354\n          },\n          {\n            \"X\": 0.5830386281013489,\n            \"Y\": 0.6906149387359619\n          },\n          {\n            \"X\": 0.5830393433570862,\n            \"Y\": 0.6982986330986023\n          },\n          {\n            \"X\": 0.5457025766372681,\n            \"Y\": 0.6982737183570862\n          }\n        ]\n      },\n      \"Id\": \"8f49f242-d445-423d-9016-b736232ff04f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82717895507812,\n      \"Text\": \"Sudan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03487786278128624,\n          \"Height\": 0.007874944247305393,\n          \"Left\": 0.5868468284606934,\n          \"Top\": 0.6903908848762512\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5868468284606934,\n            \"Y\": 0.6903908848762512\n          },\n          {\n            \"X\": 0.6217238306999207,\n            \"Y\": 0.6904141306877136\n          },\n          {\n            \"X\": 0.6217247247695923,\n            \"Y\": 0.6982658505439758\n          },\n          {\n            \"X\": 0.5868475437164307,\n            \"Y\": 0.6982426047325134\n          }\n        ]\n      },\n      \"Id\": \"f7927854-19c7-42e8-9642-744a916a7f87\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73513793945312,\n      \"Text\": \"Subaccount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06522831320762634,\n          \"Height\": 0.007850350812077522,\n          \"Left\": 0.625520646572113,\n          \"Top\": 0.690456748008728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.625520646572113,\n            \"Y\": 0.690456748008728\n          },\n          {\n            \"X\": 0.6907477974891663,\n            \"Y\": 0.6905001997947693\n          },\n          {\n            \"X\": 0.6907489895820618,\n            \"Y\": 0.6983070969581604\n          },\n          {\n            \"X\": 0.6255215406417847,\n            \"Y\": 0.6982636451721191\n          }\n        ]\n      },\n      \"Id\": \"ac11e3a6-6977-46dd-84ce-e89c4d0e3b46\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95936584472656,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011583075858652592,\n          \"Height\": 0.007949663326144218,\n          \"Left\": 0.6931921243667603,\n          \"Top\": 0.6903062462806702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6931921243667603,\n            \"Y\": 0.6903062462806702\n          },\n          {\n            \"X\": 0.7047739624977112,\n            \"Y\": 0.6903139352798462\n          },\n          {\n            \"X\": 0.7047752141952515,\n            \"Y\": 0.6982558965682983\n          },\n          {\n            \"X\": 0.6931933164596558,\n            \"Y\": 0.6982482075691223\n          }\n        ]\n      },\n      \"Id\": \"e2751441-bf83-46c1-a79d-4f8e5312271d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98410034179688,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017368996515870094,\n          \"Height\": 0.007677038665860891,\n          \"Left\": 0.7067567706108093,\n          \"Top\": 0.6905646920204163\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7067567706108093,\n            \"Y\": 0.6905646920204163\n          },\n          {\n            \"X\": 0.7241244912147522,\n            \"Y\": 0.6905762553215027\n          },\n          {\n            \"X\": 0.7241258025169373,\n            \"Y\": 0.6982417106628418\n          },\n          {\n            \"X\": 0.7067579627037048,\n            \"Y\": 0.6982301473617554\n          }\n        ]\n      },\n      \"Id\": \"37fdde07-96b1-4e9a-a248-4359d7d6491d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83869171142578,\n      \"Text\": \"Framework\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06114216521382332,\n          \"Height\": 0.007812097668647766,\n          \"Left\": 0.7280687689781189,\n          \"Top\": 0.6906173229217529\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7280687689781189,\n            \"Y\": 0.6906173229217529\n          },\n          {\n            \"X\": 0.7892093658447266,\n            \"Y\": 0.6906580328941345\n          },\n          {\n            \"X\": 0.7892109155654907,\n            \"Y\": 0.6984294652938843\n          },\n          {\n            \"X\": 0.7280700206756592,\n            \"Y\": 0.6983886361122131\n          }\n        ]\n      },\n      \"Id\": \"b76095e7-fbd4-4b5c-a6bf-27e73b16f91a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25343322753906,\n      \"Text\": \"Interim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03753919154405594,\n          \"Height\": 0.0076640695333480835,\n          \"Left\": 0.7921612858772278,\n          \"Top\": 0.6905633211135864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7921612858772278,\n            \"Y\": 0.6905633211135864\n          },\n          {\n            \"X\": 0.8296988010406494,\n            \"Y\": 0.6905882954597473\n          },\n          {\n            \"X\": 0.8297005295753479,\n            \"Y\": 0.6982274055480957\n          },\n          {\n            \"X\": 0.7921628355979919,\n            \"Y\": 0.69820237159729\n          }\n        ]\n      },\n      \"Id\": \"a8734a24-cd18-495a-bc4b-7bbf2b49e560\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97151947021484,\n      \"Text\": \"Account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044892873615026474,\n          \"Height\": 0.007733672391623259,\n          \"Left\": 0.8327184915542603,\n          \"Top\": 0.690620481967926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8327184915542603,\n            \"Y\": 0.690620481967926\n          },\n          {\n            \"X\": 0.8776094317436218,\n            \"Y\": 0.6906503438949585\n          },\n          {\n            \"X\": 0.8776113390922546,\n            \"Y\": 0.6983541250228882\n          },\n          {\n            \"X\": 0.832720160484314,\n            \"Y\": 0.6983242034912109\n          }\n        ]\n      },\n      \"Id\": \"b098023c-6139-4c86-9611-50568c798494\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96834564208984,\n      \"Text\": \"received\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04656078666448593,\n          \"Height\": 0.007998442277312279,\n          \"Left\": 0.8804691433906555,\n          \"Top\": 0.6904518604278564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8804691433906555,\n            \"Y\": 0.6904518604278564\n          },\n          {\n            \"X\": 0.927027702331543,\n            \"Y\": 0.6904828548431396\n          },\n          {\n            \"X\": 0.9270299077033997,\n            \"Y\": 0.6984502673149109\n          },\n          {\n            \"X\": 0.8804711103439331,\n            \"Y\": 0.6984192132949829\n          }\n        ]\n      },\n      \"Id\": \"9068cac5-6495-4d93-be9d-229026bc1ee9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84170532226562,\n      \"Text\": \"SDR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025920173153281212,\n          \"Height\": 0.008002514950931072,\n          \"Left\": 0.09409365803003311,\n          \"Top\": 0.7026350498199463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09409502148628235,\n            \"Y\": 0.7026350498199463\n          },\n          {\n            \"X\": 0.12001382559537888,\n            \"Y\": 0.7026523947715759\n          },\n          {\n            \"X\": 0.12001257389783859,\n            \"Y\": 0.7106375694274902\n          },\n          {\n            \"X\": 0.09409365803003311,\n            \"Y\": 0.7106202244758606\n          }\n        ]\n      },\n      \"Id\": \"1cbde2b7-408b-426d-b33f-feef4309d6c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92908477783203,\n      \"Text\": \"210\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020821798592805862,\n          \"Height\": 0.007948729209601879,\n          \"Left\": 0.12299633771181107,\n          \"Top\": 0.7026259303092957\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12299756705760956,\n            \"Y\": 0.7026259303092957\n          },\n          {\n            \"X\": 0.14381812512874603,\n            \"Y\": 0.7026398777961731\n          },\n          {\n            \"X\": 0.1438169926404953,\n            \"Y\": 0.7105746865272522\n          },\n          {\n            \"X\": 0.12299633771181107,\n            \"Y\": 0.7105607390403748\n          }\n        ]\n      },\n      \"Id\": \"04502daf-17d6-4d53-85ba-e03646327c9c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96649932861328,\n      \"Text\": \"million\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0349016934633255,\n          \"Height\": 0.008105291053652763,\n          \"Left\": 0.14709579944610596,\n          \"Top\": 0.7025787830352783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14709694683551788,\n            \"Y\": 0.7025787830352783\n          },\n          {\n            \"X\": 0.18199749290943146,\n            \"Y\": 0.7026020884513855\n          },\n          {\n            \"X\": 0.18199649453163147,\n            \"Y\": 0.710684061050415\n          },\n          {\n            \"X\": 0.14709579944610596,\n            \"Y\": 0.7106606960296631\n          }\n        ]\n      },\n      \"Id\": \"4981d1a5-cbcd-4bf6-9950-a83f2cbc490b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97547149658203,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009494778700172901,\n          \"Height\": 0.00792410783469677,\n          \"Left\": 0.1854434460401535,\n          \"Top\": 0.7026587724685669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1854444146156311,\n            \"Y\": 0.7026587724685669\n          },\n          {\n            \"X\": 0.19493822753429413,\n            \"Y\": 0.7026650905609131\n          },\n          {\n            \"X\": 0.1949373036623001,\n            \"Y\": 0.7105828523635864\n          },\n          {\n            \"X\": 0.1854434460401535,\n            \"Y\": 0.7105765342712402\n          }\n        ]\n      },\n      \"Id\": \"645ba121-45fe-4fd9-ab63-e7308c7c787e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90190887451172,\n      \"Text\": \"contributions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06961680948734283,\n          \"Height\": 0.008070966228842735,\n          \"Left\": 0.19838620722293854,\n          \"Top\": 0.7026336193084717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19838713109493256,\n            \"Y\": 0.7026336193084717\n          },\n          {\n            \"X\": 0.26800301671028137,\n            \"Y\": 0.7026801109313965\n          },\n          {\n            \"X\": 0.26800239086151123,\n            \"Y\": 0.7107046246528625\n          },\n          {\n            \"X\": 0.19838620722293854,\n            \"Y\": 0.7106580138206482\n          }\n        ]\n      },\n      \"Id\": \"211402ac-274b-4276-b930-815199cd0aa7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98218536376953,\n      \"Text\": \"pending\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043537188321352005,\n          \"Height\": 0.00960601307451725,\n          \"Left\": 0.2710537910461426,\n          \"Top\": 0.7027115225791931\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27105453610420227,\n            \"Y\": 0.7027115225791931\n          },\n          {\n            \"X\": 0.3145909905433655,\n            \"Y\": 0.7027406096458435\n          },\n          {\n            \"X\": 0.3145904839038849,\n            \"Y\": 0.7123175263404846\n          },\n          {\n            \"X\": 0.2710537910461426,\n            \"Y\": 0.7122884392738342\n          }\n        ]\n      },\n      \"Id\": \"08e78dcb-3327-4344-b83a-954ce5e5a458\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93265533447266,\n      \"Text\": \"further\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036278486251831055,\n          \"Height\": 0.00801983755081892,\n          \"Left\": 0.31780341267585754,\n          \"Top\": 0.7026078104972839\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3178038001060486,\n            \"Y\": 0.7026078104972839\n          },\n          {\n            \"X\": 0.3540818989276886,\n            \"Y\": 0.7026320099830627\n          },\n          {\n            \"X\": 0.3540816307067871,\n            \"Y\": 0.7106276154518127\n          },\n          {\n            \"X\": 0.31780341267585754,\n            \"Y\": 0.7106033563613892\n          }\n        ]\n      },\n      \"Id\": \"9a767162-bcab-40f9-a4e2-62669740f76d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87315368652344,\n      \"Text\": \"instructions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06236390024423599,\n          \"Height\": 0.00800009723752737,\n          \"Left\": 0.3568108379840851,\n          \"Top\": 0.7026201486587524\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3568111062049866,\n            \"Y\": 0.7026201486587524\n          },\n          {\n            \"X\": 0.4191747307777405,\n            \"Y\": 0.7026618123054504\n          },\n          {\n            \"X\": 0.41917476058006287,\n            \"Y\": 0.7106202840805054\n          },\n          {\n            \"X\": 0.3568108379840851,\n            \"Y\": 0.7105785608291626\n          }\n        ]\n      },\n      \"Id\": \"4a6d9851-4b18-4d74-8543-842b1c82cca8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9856948852539,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025297367945313454,\n          \"Height\": 0.007878685370087624,\n          \"Left\": 0.421868234872818,\n          \"Top\": 0.7026363611221313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.421868234872818,\n            \"Y\": 0.7026363611221313\n          },\n          {\n            \"X\": 0.44716545939445496,\n            \"Y\": 0.7026532888412476\n          },\n          {\n            \"X\": 0.4471656084060669,\n            \"Y\": 0.7105150818824768\n          },\n          {\n            \"X\": 0.4218682646751404,\n            \"Y\": 0.7104981541633606\n          }\n        ]\n      },\n      \"Id\": \"84c6ea46-5c92-4100-8ef6-11fed3aaaf0e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97377014160156,\n      \"Text\": \"member\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04595528542995453,\n          \"Height\": 0.007816918194293976,\n          \"Left\": 0.4502459764480591,\n          \"Top\": 0.7027727365493774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4502459764480591,\n            \"Y\": 0.7027727365493774\n          },\n          {\n            \"X\": 0.49620091915130615,\n            \"Y\": 0.702803373336792\n          },\n          {\n            \"X\": 0.4962012767791748,\n            \"Y\": 0.7105896472930908\n          },\n          {\n            \"X\": 0.450246125459671,\n            \"Y\": 0.7105588912963867\n          }\n        ]\n      },\n      \"Id\": \"50a65e8d-6672-4247-84d7-75a6856aaa18\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.75099182128906,\n      \"Text\": \"countries.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0529143363237381,\n          \"Height\": 0.0075273965485394,\n          \"Left\": 0.4988054633140564,\n          \"Top\": 0.7029961943626404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4988054633140564,\n            \"Y\": 0.7029961943626404\n          },\n          {\n            \"X\": 0.5517192482948303,\n            \"Y\": 0.7030314803123474\n          },\n          {\n            \"X\": 0.5517197847366333,\n            \"Y\": 0.7105235457420349\n          },\n          {\n            \"X\": 0.49880579113960266,\n            \"Y\": 0.7104881405830383\n          }\n        ]\n      },\n      \"Id\": \"b613e6b7-78e9-4bab-b35b-23449d662ea1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.5428695678711,\n      \"Text\": \"3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004519821610301733,\n          \"Height\": 0.005358388181775808,\n          \"Left\": 0.09372573345899582,\n          \"Top\": 0.7137748003005981\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09372664988040924,\n            \"Y\": 0.7137748003005981\n          },\n          {\n            \"X\": 0.09824556112289429,\n            \"Y\": 0.7137778401374817\n          },\n          {\n            \"X\": 0.09824465960264206,\n            \"Y\": 0.719133198261261\n          },\n          {\n            \"X\": 0.09372573345899582,\n            \"Y\": 0.7191301584243774\n          }\n        ]\n      },\n      \"Id\": \"ef922cb1-c999-4403-b18b-60d431c4dc21\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70333862304688,\n      \"Text\": \"Transfer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04649115353822708,\n          \"Height\": 0.008440600708127022,\n          \"Left\": 0.10066439211368561,\n          \"Top\": 0.7144710421562195\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10066580027341843,\n            \"Y\": 0.7144710421562195\n          },\n          {\n            \"X\": 0.1471555531024933,\n            \"Y\": 0.714502215385437\n          },\n          {\n            \"X\": 0.14715434610843658,\n            \"Y\": 0.7229116559028625\n          },\n          {\n            \"X\": 0.10066439211368561,\n            \"Y\": 0.722880482673645\n          }\n        ]\n      },\n      \"Id\": \"97000b24-7957-41b4-abdd-cf8062d8aea2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95349884033203,\n      \"Text\": \"out\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017607955262064934,\n          \"Height\": 0.007675454020500183,\n          \"Left\": 0.14983530342578888,\n          \"Top\": 0.7151936292648315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14983637630939484,\n            \"Y\": 0.7151936292648315\n          },\n          {\n            \"X\": 0.16744326055049896,\n            \"Y\": 0.7152054309844971\n          },\n          {\n            \"X\": 0.16744224727153778,\n            \"Y\": 0.7228690981864929\n          },\n          {\n            \"X\": 0.14983530342578888,\n            \"Y\": 0.7228572368621826\n          }\n        ]\n      },\n      \"Id\": \"3407fe2b-5e14-4262-a208-29551b6b7497\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94979858398438,\n      \"Text\": \"represents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05794377624988556,\n          \"Height\": 0.009468451142311096,\n          \"Left\": 0.1707264930009842,\n          \"Top\": 0.7151079773902893\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1707277148962021,\n            \"Y\": 0.7151079773902893\n          },\n          {\n            \"X\": 0.22867026925086975,\n            \"Y\": 0.7151467800140381\n          },\n          {\n            \"X\": 0.22866934537887573,\n            \"Y\": 0.7245764136314392\n          },\n          {\n            \"X\": 0.1707264930009842,\n            \"Y\": 0.7245375514030457\n          }\n        ]\n      },\n      \"Id\": \"8f84512f-46d2-4c88-a6c9-57730305fa17\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97383117675781,\n      \"Text\": \"transfer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04254665598273277,\n          \"Height\": 0.007944622077047825,\n          \"Left\": 0.23148123919963837,\n          \"Top\": 0.7149308919906616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23148201406002045,\n            \"Y\": 0.7149308919906616\n          },\n          {\n            \"X\": 0.27402788400650024,\n            \"Y\": 0.7149593830108643\n          },\n          {\n            \"X\": 0.2740272879600525,\n            \"Y\": 0.7228754758834839\n          },\n          {\n            \"X\": 0.23148123919963837,\n            \"Y\": 0.7228469848632812\n          }\n        ]\n      },\n      \"Id\": \"de23c710-2970-4588-a0dd-2e11d469b961\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96881103515625,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010621380060911179,\n          \"Height\": 0.007408400997519493,\n          \"Left\": 0.27628570795059204,\n          \"Top\": 0.7153195738792419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.276286244392395,\n            \"Y\": 0.7153195738792419\n          },\n          {\n            \"X\": 0.2869070768356323,\n            \"Y\": 0.7153266668319702\n          },\n          {\n            \"X\": 0.2869065999984741,\n            \"Y\": 0.7227279543876648\n          },\n          {\n            \"X\": 0.27628570795059204,\n            \"Y\": 0.7227208614349365\n          }\n        ]\n      },\n      \"Id\": \"a6d7f1f8-48bb-4aee-b5ef-913725462272\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99113464355469,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0174607802182436,\n          \"Height\": 0.007798492442816496,\n          \"Left\": 0.2897314727306366,\n          \"Top\": 0.7150041460990906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2897319793701172,\n            \"Y\": 0.7150041460990906\n          },\n          {\n            \"X\": 0.30719223618507385,\n            \"Y\": 0.7150158286094666\n          },\n          {\n            \"X\": 0.30719178915023804,\n            \"Y\": 0.7228026390075684\n          },\n          {\n            \"X\": 0.2897314727306366,\n            \"Y\": 0.7227908968925476\n          }\n        ]\n      },\n      \"Id\": \"b977a0e3-8339-41c9-a40e-c20f28521647\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88285064697266,\n      \"Text\": \"CCR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026768069714307785,\n          \"Height\": 0.007928954437375069,\n          \"Left\": 0.3107492923736572,\n          \"Top\": 0.7147842049598694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31074973940849304,\n            \"Y\": 0.7147842049598694\n          },\n          {\n            \"X\": 0.3375173509120941,\n            \"Y\": 0.714802086353302\n          },\n          {\n            \"X\": 0.33751705288887024,\n            \"Y\": 0.7227131724357605\n          },\n          {\n            \"X\": 0.3107492923736572,\n            \"Y\": 0.7226951718330383\n          }\n        ]\n      },\n      \"Id\": \"878fc512-0fa4-4dbe-9bc2-1fb50ddab427\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90538024902344,\n      \"Text\": \"Trust\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028826089575886726,\n          \"Height\": 0.008005117997527122,\n          \"Left\": 0.34015417098999023,\n          \"Top\": 0.714760422706604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3401544690132141,\n            \"Y\": 0.714760422706604\n          },\n          {\n            \"X\": 0.3689802587032318,\n            \"Y\": 0.7147797346115112\n          },\n          {\n            \"X\": 0.3689800500869751,\n            \"Y\": 0.7227655649185181\n          },\n          {\n            \"X\": 0.34015417098999023,\n            \"Y\": 0.7227462530136108\n          }\n        ]\n      },\n      \"Id\": \"b530ed0b-4158-447c-9333-b69698edfa39\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95805358886719,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009341455064713955,\n          \"Height\": 0.007753009907901287,\n          \"Left\": 0.37185484170913696,\n          \"Top\": 0.7148880958557129\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3718550205230713,\n            \"Y\": 0.7148880958557129\n          },\n          {\n            \"X\": 0.3811962902545929,\n            \"Y\": 0.7148943543434143\n          },\n          {\n            \"X\": 0.38119617104530334,\n            \"Y\": 0.722641110420227\n          },\n          {\n            \"X\": 0.37185484170913696,\n            \"Y\": 0.7226348519325256\n          }\n        ]\n      },\n      \"Id\": \"52a06b0c-1151-437e-8e66-99f0259ca1af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97086334228516,\n      \"Text\": \"accordance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06355033069849014,\n          \"Height\": 0.0077059571631252766,\n          \"Left\": 0.38470104336738586,\n          \"Top\": 0.715118408203125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3847011625766754,\n            \"Y\": 0.715118408203125\n          },\n          {\n            \"X\": 0.44825121760368347,\n            \"Y\": 0.7151609659194946\n          },\n          {\n            \"X\": 0.4482513666152954,\n            \"Y\": 0.7228243947029114\n          },\n          {\n            \"X\": 0.38470104336738586,\n            \"Y\": 0.7227817177772522\n          }\n        ]\n      },\n      \"Id\": \"fcda573c-0f9a-4fa2-8aa9-a9e84049c16f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97884368896484,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022157656028866768,\n          \"Height\": 0.007839001715183258,\n          \"Left\": 0.4510194659233093,\n          \"Top\": 0.7148728370666504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4510194659233093,\n            \"Y\": 0.7148728370666504\n          },\n          {\n            \"X\": 0.47317686676979065,\n            \"Y\": 0.7148876786231995\n          },\n          {\n            \"X\": 0.47317713499069214,\n            \"Y\": 0.7227118611335754\n          },\n          {\n            \"X\": 0.45101961493492126,\n            \"Y\": 0.7226969599723816\n          }\n        ]\n      },\n      \"Id\": \"71810344-635a-4207-9bf4-37a8fc4f4334\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92613983154297,\n      \"Text\": \"Japan's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042453497648239136,\n          \"Height\": 0.009588692337274551,\n          \"Left\": 0.47631245851516724,\n          \"Top\": 0.7148969173431396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47631245851516724,\n            \"Y\": 0.7148969173431396\n          },\n          {\n            \"X\": 0.518765389919281,\n            \"Y\": 0.7149253487586975\n          },\n          {\n            \"X\": 0.518765926361084,\n            \"Y\": 0.7244856357574463\n          },\n          {\n            \"X\": 0.4763127565383911,\n            \"Y\": 0.7244571447372437\n          }\n        ]\n      },\n      \"Id\": \"abcf844f-7e95-49dc-8c76-5699971aa1ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.68879699707031,\n      \"Text\": \"instructions.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06507763266563416,\n          \"Height\": 0.00796380266547203,\n          \"Left\": 0.5222588181495667,\n          \"Top\": 0.7148385047912598\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5222588181495667,\n            \"Y\": 0.7148385047912598\n          },\n          {\n            \"X\": 0.5873357057571411,\n            \"Y\": 0.7148820757865906\n          },\n          {\n            \"X\": 0.5873364806175232,\n            \"Y\": 0.7228023409843445\n          },\n          {\n            \"X\": 0.5222592949867249,\n            \"Y\": 0.7227586507797241\n          }\n        ]\n      },\n      \"Id\": \"b1dd0020-64e4-4966-9b5e-3209d89bfc3a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.59037780761719,\n      \"Text\": \"4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004521778319031,\n          \"Height\": 0.005259919911623001,\n          \"Left\": 0.09378992766141891,\n          \"Top\": 0.7252883315086365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09379082918167114,\n            \"Y\": 0.7252883315086365\n          },\n          {\n            \"X\": 0.09831170737743378,\n            \"Y\": 0.72529137134552\n          },\n          {\n            \"X\": 0.09831082075834274,\n            \"Y\": 0.7305482625961304\n          },\n          {\n            \"X\": 0.09378992766141891,\n            \"Y\": 0.7305452227592468\n          }\n        ]\n      },\n      \"Id\": \"4a70faaf-b7f2-46e5-867a-6db40fa90e2d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87667846679688,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021916914731264114,\n          \"Height\": 0.008084447123110294,\n          \"Left\": 0.10010883212089539,\n          \"Top\": 0.726189136505127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10011018812656403,\n            \"Y\": 0.726189136505127\n          },\n          {\n            \"X\": 0.1220257505774498,\n            \"Y\": 0.7262038588523865\n          },\n          {\n            \"X\": 0.12202449142932892,\n            \"Y\": 0.7342735528945923\n          },\n          {\n            \"X\": 0.10010883212089539,\n            \"Y\": 0.7342588305473328\n          }\n        ]\n      },\n      \"Id\": \"beb66b02-db3c-41f0-865d-346031b761e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97474670410156,\n      \"Text\": \"account\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04356939718127251,\n          \"Height\": 0.007564349565654993,\n          \"Left\": 0.12545788288116455,\n          \"Top\": 0.7268357276916504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12545904517173767,\n            \"Y\": 0.7268357276916504\n          },\n          {\n            \"X\": 0.16902728378772736,\n            \"Y\": 0.7268649935722351\n          },\n          {\n            \"X\": 0.16902630031108856,\n            \"Y\": 0.7344000935554504\n          },\n          {\n            \"X\": 0.12545788288116455,\n            \"Y\": 0.734370768070221\n          }\n        ]\n      },\n      \"Id\": \"3279f99b-d88c-4ff1-a6c8-cb66e3363639\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96760559082031,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008892402052879333,\n          \"Height\": 0.007954399101436138,\n          \"Left\": 0.17177176475524902,\n          \"Top\": 0.7263772487640381\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1717727929353714,\n            \"Y\": 0.7263772487640381\n          },\n          {\n            \"X\": 0.18066416680812836,\n            \"Y\": 0.7263832092285156\n          },\n          {\n            \"X\": 0.18066316843032837,\n            \"Y\": 0.7343316674232483\n          },\n          {\n            \"X\": 0.17177176475524902,\n            \"Y\": 0.734325647354126\n          }\n        ]\n      },\n      \"Id\": \"b8219a65-e047-467e-aaaa-17aaa98a9fa1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9148941040039,\n      \"Text\": \"still\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018020687624812126,\n          \"Height\": 0.00803046952933073,\n          \"Left\": 0.18395663797855377,\n          \"Top\": 0.7262946963310242\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18395762145519257,\n            \"Y\": 0.7262946963310242\n          },\n          {\n            \"X\": 0.20197732746601105,\n            \"Y\": 0.7263067960739136\n          },\n          {\n            \"X\": 0.20197641849517822,\n            \"Y\": 0.7343251705169678\n          },\n          {\n            \"X\": 0.18395663797855377,\n            \"Y\": 0.7343130111694336\n          }\n        ]\n      },\n      \"Id\": \"6ebc396e-14a5-4b0f-b8c9-e7b53eed8a2a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95757293701172,\n      \"Text\": \"open\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027415314689278603,\n          \"Height\": 0.00801909901201725,\n          \"Left\": 0.20502997934818268,\n          \"Top\": 0.7280430197715759\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2050308734178543,\n            \"Y\": 0.7280430197715759\n          },\n          {\n            \"X\": 0.23244529962539673,\n            \"Y\": 0.7280614376068115\n          },\n          {\n            \"X\": 0.23244452476501465,\n            \"Y\": 0.7360621094703674\n          },\n          {\n            \"X\": 0.20502997934818268,\n            \"Y\": 0.7360436320304871\n          }\n        ]\n      },\n      \"Id\": \"fed4d6e0-b32b-4cbd-9679-fe8ac78f7da9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.943603515625,\n      \"Text\": \"but\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018008116632699966,\n          \"Height\": 0.007932246662676334,\n          \"Left\": 0.23562490940093994,\n          \"Top\": 0.7263475060462952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23562565445899963,\n            \"Y\": 0.7263475060462952\n          },\n          {\n            \"X\": 0.2536330223083496,\n            \"Y\": 0.7263596057891846\n          },\n          {\n            \"X\": 0.2536323368549347,\n            \"Y\": 0.7342797517776489\n          },\n          {\n            \"X\": 0.23562490940093994,\n            \"Y\": 0.7342675924301147\n          }\n        ]\n      },\n      \"Id\": \"24e67836-7c99-4345-8979-ef8c0e1f7404\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93550872802734,\n      \"Text\": \"had\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020812232047319412,\n          \"Height\": 0.007979919202625751,\n          \"Left\": 0.2561483383178711,\n          \"Top\": 0.7263249754905701\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2561489939689636,\n            \"Y\": 0.7263249754905701\n          },\n          {\n            \"X\": 0.276960551738739,\n            \"Y\": 0.7263389229774475\n          },\n          {\n            \"X\": 0.27695998549461365,\n            \"Y\": 0.7343048453330994\n          },\n          {\n            \"X\": 0.2561483383178711,\n            \"Y\": 0.7342908382415771\n          }\n        ]\n      },\n      \"Id\": \"a6c7521d-8b45-427d-bd60-51d815bb8664\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94284057617188,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00711824418976903,\n          \"Height\": 0.006026333663612604,\n          \"Left\": 0.27987003326416016,\n          \"Top\": 0.7282339930534363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2798704504966736,\n            \"Y\": 0.7282339930534363\n          },\n          {\n            \"X\": 0.2869882583618164,\n            \"Y\": 0.7282387614250183\n          },\n          {\n            \"X\": 0.28698787093162537,\n            \"Y\": 0.7342603206634521\n          },\n          {\n            \"X\": 0.27987003326416016,\n            \"Y\": 0.7342555522918701\n          }\n        ]\n      },\n      \"Id\": \"c5e1d3d2-5066-431c-8eee-c3ee7ec976a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79312896728516,\n      \"Text\": \"zero\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02455989271402359,\n          \"Height\": 0.0062083834782242775,\n          \"Left\": 0.28979212045669556,\n          \"Top\": 0.7280749082565308\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.289792537689209,\n            \"Y\": 0.7280749082565308\n          },\n          {\n            \"X\": 0.31435200572013855,\n            \"Y\": 0.7280914187431335\n          },\n          {\n            \"X\": 0.3143516778945923,\n            \"Y\": 0.7342833280563354\n          },\n          {\n            \"X\": 0.28979212045669556,\n            \"Y\": 0.7342667579650879\n          }\n        ]\n      },\n      \"Id\": \"65ee55a9-284d-4d7f-91fb-0af3d3accb40\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91952514648438,\n      \"Text\": \"balance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042956843972206116,\n          \"Height\": 0.00795502308756113,\n          \"Left\": 0.31731072068214417,\n          \"Top\": 0.7263369560241699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3173111379146576,\n            \"Y\": 0.7263369560241699\n          },\n          {\n            \"X\": 0.3602675497531891,\n            \"Y\": 0.7263658046722412\n          },\n          {\n            \"X\": 0.3602673411369324,\n            \"Y\": 0.7342919707298279\n          },\n          {\n            \"X\": 0.31731072068214417,\n            \"Y\": 0.7342630624771118\n          }\n        ]\n      },\n      \"Id\": \"6a2d061c-3003-45f9-a966-8bed019681f3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9659194946289,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013604994863271713,\n          \"Height\": 0.006181150209158659,\n          \"Left\": 0.36377230286598206,\n          \"Top\": 0.7281309962272644\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3637724816799164,\n            \"Y\": 0.7281309962272644\n          },\n          {\n            \"X\": 0.37737730145454407,\n            \"Y\": 0.728140115737915\n          },\n          {\n            \"X\": 0.3773771822452545,\n            \"Y\": 0.734312117099762\n          },\n          {\n            \"X\": 0.36377230286598206,\n            \"Y\": 0.7343029975891113\n          }\n        ]\n      },\n      \"Id\": \"6964f2fe-6d19-492f-9903-2033299ca27b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97036743164062,\n      \"Text\": \"April\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025219600647687912,\n          \"Height\": 0.009456631727516651,\n          \"Left\": 0.38043132424354553,\n          \"Top\": 0.7263804078102112\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38043147325515747,\n            \"Y\": 0.7263804078102112\n          },\n          {\n            \"X\": 0.40565091371536255,\n            \"Y\": 0.7263973355293274\n          },\n          {\n            \"X\": 0.40565088391304016,\n            \"Y\": 0.7358370423316956\n          },\n          {\n            \"X\": 0.38043132424354553,\n            \"Y\": 0.7358200550079346\n          }\n        ]\n      },\n      \"Id\": \"20717807-77e9-4fb5-ac8a-0310bcec284c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82765197753906,\n      \"Text\": \"30,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016600431874394417,\n          \"Height\": 0.008926243521273136,\n          \"Left\": 0.4088505804538727,\n          \"Top\": 0.7264525890350342\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40885061025619507,\n            \"Y\": 0.7264525890350342\n          },\n          {\n            \"X\": 0.4254509508609772,\n            \"Y\": 0.7264637351036072\n          },\n          {\n            \"X\": 0.42545101046562195,\n            \"Y\": 0.7353788018226624\n          },\n          {\n            \"X\": 0.4088505804538727,\n            \"Y\": 0.7353676557540894\n          }\n        ]\n      },\n      \"Id\": \"3403cdad-34f4-4daa-a17a-3ae756918128\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95884704589844,\n      \"Text\": \"2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02684842236340046,\n          \"Height\": 0.007912885397672653,\n          \"Left\": 0.42868679761886597,\n          \"Top\": 0.7263779044151306\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42868679761886597,\n            \"Y\": 0.7263779044151306\n          },\n          {\n            \"X\": 0.45553505420684814,\n            \"Y\": 0.7263959646224976\n          },\n          {\n            \"X\": 0.45553523302078247,\n            \"Y\": 0.7342907786369324\n          },\n          {\n            \"X\": 0.42868685722351074,\n            \"Y\": 0.7342727184295654\n          }\n        ]\n      },\n      \"Id\": \"9b2bf285-48a4-4d41-98d2-5f5294f725b7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99369812011719,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02046290412545204,\n          \"Height\": 0.007826066575944424,\n          \"Left\": 0.4597620964050293,\n          \"Top\": 0.7264748215675354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4597620964050293,\n            \"Y\": 0.7264748215675354\n          },\n          {\n            \"X\": 0.48022472858428955,\n            \"Y\": 0.7264885306358337\n          },\n          {\n            \"X\": 0.48022499680519104,\n            \"Y\": 0.7343008518218994\n          },\n          {\n            \"X\": 0.4597622752189636,\n            \"Y\": 0.7342870831489563\n          }\n        ]\n      },\n      \"Id\": \"5d7adfa2-4cd9-4e72-b3af-ad6d6180e4a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77465057373047,\n      \"Text\": \"October\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04441802203655243,\n          \"Height\": 0.008221744559705257,\n          \"Left\": 0.4835502505302429,\n          \"Top\": 0.7261308431625366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4835502505302429,\n            \"Y\": 0.7261308431625366\n          },\n          {\n            \"X\": 0.5279678106307983,\n            \"Y\": 0.7261606454849243\n          },\n          {\n            \"X\": 0.5279682874679565,\n            \"Y\": 0.7343525886535645\n          },\n          {\n            \"X\": 0.4835505783557892,\n            \"Y\": 0.734322726726532\n          }\n        ]\n      },\n      \"Id\": \"c8ff7c38-205b-4940-a176-47ae26f60c62\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57443237304688,\n      \"Text\": \"31,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01661473698914051,\n          \"Height\": 0.008883392438292503,\n          \"Left\": 0.5309096574783325,\n          \"Top\": 0.7264739871025085\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5309096574783325,\n            \"Y\": 0.7264739871025085\n          },\n          {\n            \"X\": 0.5475237965583801,\n            \"Y\": 0.7264851331710815\n          },\n          {\n            \"X\": 0.5475243926048279,\n            \"Y\": 0.7353573441505432\n          },\n          {\n            \"X\": 0.5309101939201355,\n            \"Y\": 0.7353461980819702\n          }\n        ]\n      },\n      \"Id\": \"0dee8c94-572d-4e3f-965b-2b9b3abcb073\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92269897460938,\n      \"Text\": \"2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026589158922433853,\n          \"Height\": 0.007919808849692345,\n          \"Left\": 0.5508887767791748,\n          \"Top\": 0.726439893245697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5508887767791748,\n            \"Y\": 0.726439893245697\n          },\n          {\n            \"X\": 0.577477216720581,\n            \"Y\": 0.7264577150344849\n          },\n          {\n            \"X\": 0.5774779319763184,\n            \"Y\": 0.7343596816062927\n          },\n          {\n            \"X\": 0.5508893132209778,\n            \"Y\": 0.7343418002128601\n          }\n        ]\n      },\n      \"Id\": \"2914bcb2-e2ee-4dee-aa50-6bd206fdf839\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94491577148438,\n      \"Text\": \"due\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02068343572318554,\n          \"Height\": 0.007798086851835251,\n          \"Left\": 0.5815562605857849,\n          \"Top\": 0.7264719605445862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5815562605857849,\n            \"Y\": 0.7264719605445862\n          },\n          {\n            \"X\": 0.6022388935089111,\n            \"Y\": 0.7264858484268188\n          },\n          {\n            \"X\": 0.6022396683692932,\n            \"Y\": 0.7342700362205505\n          },\n          {\n            \"X\": 0.5815569758415222,\n            \"Y\": 0.7342561483383179\n          }\n        ]\n      },\n      \"Id\": \"4b5288f4-7100-4fc3-948d-2c5676f2a74d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98280334472656,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010839712806046009,\n          \"Height\": 0.0073892949149012566,\n          \"Left\": 0.6053381562232971,\n          \"Top\": 0.7268629670143127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6053381562232971,\n            \"Y\": 0.7268629670143127\n          },\n          {\n            \"X\": 0.6161770820617676,\n            \"Y\": 0.7268702387809753\n          },\n          {\n            \"X\": 0.6161779165267944,\n            \"Y\": 0.7342522144317627\n          },\n          {\n            \"X\": 0.6053389310836792,\n            \"Y\": 0.7342449426651001\n          }\n        ]\n      },\n      \"Id\": \"b992e35a-13ce-4f62-9aae-1f9d3cf1fef5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91682434082031,\n      \"Text\": \"no\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01380431279540062,\n          \"Height\": 0.0060449568554759026,\n          \"Left\": 0.6192780137062073,\n          \"Top\": 0.7281630635261536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6192780137062073,\n            \"Y\": 0.7281630635261536\n          },\n          {\n            \"X\": 0.6330816149711609,\n            \"Y\": 0.7281723022460938\n          },\n          {\n            \"X\": 0.6330823302268982,\n            \"Y\": 0.7342079877853394\n          },\n          {\n            \"X\": 0.6192786693572998,\n            \"Y\": 0.7341987490653992\n          }\n        ]\n      },\n      \"Id\": \"11e2f61c-6158-403b-bdec-b27d54822e38\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8051986694336,\n      \"Text\": \"activity.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0405404195189476,\n          \"Height\": 0.009453288279473782,\n          \"Left\": 0.6362468600273132,\n          \"Top\": 0.7266250848770142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6362468600273132,\n            \"Y\": 0.7266250848770142\n          },\n          {\n            \"X\": 0.676785945892334,\n            \"Y\": 0.7266522645950317\n          },\n          {\n            \"X\": 0.676787257194519,\n            \"Y\": 0.7360783815383911\n          },\n          {\n            \"X\": 0.636247992515564,\n            \"Y\": 0.736051082611084\n          }\n        ]\n      },\n      \"Id\": \"72557e48-9daf-4dc1-b650-bad505f5867c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.28353118896484,\n      \"Text\": \"57\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015799038112163544,\n          \"Height\": 0.009009525179862976,\n          \"Left\": 0.9087359309196472,\n          \"Top\": 0.9708130359649658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9087359309196472,\n            \"Y\": 0.9708130359649658\n          },\n          {\n            \"X\": 0.9245325326919556,\n            \"Y\": 0.9708243012428284\n          },\n          {\n            \"X\": 0.9245349764823914,\n            \"Y\": 0.97982257604599\n          },\n          {\n            \"X\": 0.9087383151054382,\n            \"Y\": 0.9798113107681274\n          }\n        ]\n      },\n      \"Id\": \"b4069d9b-584b-4801-b3b3-4461c4c2d1a9\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.951171875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8590391874313354,\n          \"Height\": 0.2825284004211426,\n          \"Left\": 0.0902990773320198,\n          \"Top\": 0.32859668135643005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0903477817773819,\n            \"Y\": 0.32859668135643005\n          },\n          {\n            \"X\": 0.9492577314376831,\n            \"Y\": 0.3291172683238983\n          },\n          {\n            \"X\": 0.9493382573127747,\n            \"Y\": 0.611125111579895\n          },\n          {\n            \"X\": 0.0902990773320198,\n            \"Y\": 0.6105645895004272\n          }\n        ]\n      },\n      \"Id\": \"6f84e06c-9e8f-407e-bb02-100a43197d8d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b61e2ab-cdc4-4ada-9687-5ea6e4359afb\",\n            \"0fa1f7c1-1ad4-4ab4-84cc-629a55601983\",\n            \"ec9027ce-e378-4c1f-b08b-ca96a9b8f2b8\",\n            \"1315388f-9fd0-407c-9af7-304d1f557be9\",\n            \"fafd3e95-e996-4101-b659-a7d2368ffa10\",\n            \"ba29f225-7d89-48ab-8f43-c57cbf144d26\",\n            \"51c86c64-740a-42c0-bb30-44be4a466644\",\n            \"318cea10-6425-4d41-809f-046be7b8f6b2\",\n            \"e6b9a095-9f01-4b23-80ec-e165e8b3430e\",\n            \"bf4a09ef-6ad7-4517-8824-38563f00f534\",\n            \"7a5df5ca-d61d-4b48-a67a-02de5577bc43\",\n            \"06464d01-3c48-4b71-a743-aa1e81eb6b12\",\n            \"d163a8e8-e2b1-4327-a223-32d5fe812722\",\n            \"59043b93-7317-42fd-912a-659a06f70999\",\n            \"0b9b254c-7bbc-4e4b-97c7-e1c09cc05225\",\n            \"3387859b-3dda-4767-ad68-725dc10e0757\",\n            \"dfa2926e-ce33-4fd1-9ce6-31942198ff05\",\n            \"916593fa-2d9e-4043-819f-436476c7b784\",\n            \"6a4f2288-2d02-4f25-ab29-385dc2867450\",\n            \"b21299b5-3018-4352-a2c1-5a81f26f86ac\",\n            \"5f274ff4-1ed9-456c-9621-7f1f5a083436\",\n            \"dac52e1b-140e-47e9-a724-770eaf10e12d\",\n            \"912901be-cb2f-4cee-839e-8fa348b2f0b5\",\n            \"4388a653-4a4c-4c45-afda-49c6206aab09\",\n            \"82235a4b-6ef3-4e93-9196-bdc4e65f129f\",\n            \"b41adec7-07c1-49cd-9330-d0541e11ecb8\",\n            \"fba59b12-3866-4fe6-b6c4-accfd8b49dcb\",\n            \"53ab7828-6b75-47de-a04d-28ec9716ad41\",\n            \"ef0507e0-8715-467b-9220-e297299cbe7c\",\n            \"106443d2-8943-4b64-8b01-2e70ffd79d6f\",\n            \"47d33f94-5476-4bdd-988d-54cafccea4ee\",\n            \"c62dfe77-101e-4ea0-a59b-c56786f90f5f\",\n            \"c357f7a2-6fc7-4d00-8475-9402f217c0ae\",\n            \"5510e06b-91ab-4572-a97a-3cb59e94327a\",\n            \"74705742-0b2d-4dac-bc33-8af077d8d8ee\",\n            \"6536fbe0-05f4-438e-8d2c-19d4d6f4c85d\",\n            \"6beec616-b968-4fed-95fe-aff0fd1933a7\",\n            \"2cb896d6-91f2-40fd-81ee-988a0b7a137d\",\n            \"c3a4140e-a889-4892-b5c8-26c8d763f82f\",\n            \"2c2e4a18-aac6-45e6-b5f5-8f44bfd25a48\",\n            \"8396d11c-0756-407b-83be-817de4a610e6\",\n            \"fcfe21e9-0b2a-4189-b154-5bd4b113d718\",\n            \"a529e39f-d69a-411c-907a-7cbbaff5d89d\",\n            \"c4b3a306-05df-495e-8379-5cd5ea306c83\",\n            \"6f4b7951-1da2-44db-8089-ba73a40c418e\",\n            \"98b5dea8-1ef3-4da7-bff9-d6b41d7e6064\",\n            \"7c041a1f-a46f-4f1d-aa19-b52cdf401661\",\n            \"b2279d61-5595-44e5-a410-247decffb1fc\",\n            \"dd67597a-338f-4446-bbcb-4b9bdde57153\",\n            \"d4878b69-b665-4a21-a77a-ea33cccdb827\",\n            \"d6aee447-293e-47bf-8a30-0d7873e847dc\",\n            \"2433193d-3075-46df-9f02-28d03965d6d6\",\n            \"fcfce793-833e-4576-b3f7-f70f9cb11060\",\n            \"fbcc05ec-d2e5-4cef-964e-4097a03dc917\",\n            \"24cb6ded-3f6a-4ac0-8390-55f87a0a2b2d\",\n            \"d5e55990-f373-4062-a933-44e671e72666\",\n            \"033170c7-2081-4b0a-a259-22b0214bec6d\",\n            \"9d91ad04-4833-42fb-b4a2-c0f94531c6f7\",\n            \"6175fb83-3385-497d-ae8f-7ae807a011c0\",\n            \"7ab39d0d-bbfa-426b-83ad-80bb8f427567\",\n            \"650968be-4fa1-407f-86fb-8a220349e80b\",\n            \"a14873b0-c43f-4c4f-9d95-4487c4757590\",\n            \"9231c752-5282-4b13-a663-1f99a9c4f2fe\",\n            \"9137c284-468d-41b4-b24b-1a2be085854e\",\n            \"5f9b1c32-3165-44d8-91a2-b17d6054b2d7\",\n            \"df97bff2-0186-4641-88cb-9fb0f1ffee72\",\n            \"064fd8e1-8531-40d9-ba28-321a5938db43\",\n            \"e6021213-cfdd-4ec2-9ca8-639859b5a846\",\n            \"fd78fa82-8083-4ece-b23d-aa72983b00b9\",\n            \"f97183e8-3423-4656-9d70-8c575ec8c3e7\",\n            \"47644a03-26bd-4fe5-a644-650f9241e61b\",\n            \"c9333da3-465f-43cc-b653-69d69f8fcf72\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"7f8ff37d-c79a-4843-b9f2-f662c0362d9d\",\n            \"20d96602-5f79-447a-8d0f-3268ba9c38a7\",\n            \"4c03a802-4c00-435f-b4ea-e1f85c6d1d0e\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_TITLE\",\n          \"Ids\": [\n            \"058a519f-4aa4-44a0-aa65-625754764565\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_FOOTER\",\n          \"Ids\": [\n            \"4acc9d59-2e22-4214-82ac-90c2294ba7a2\",\n            \"536c8b9b-3f66-48ab-a147-df36e284b5ec\",\n            \"252dc979-6d60-4536-811f-24955ed8bb03\",\n            \"e89f0860-71b5-4aea-9f38-a8443e64444f\",\n            \"924e61b6-997a-4aff-a6ef-e071afea3b1a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.3671875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3935451805591583,\n          \"Height\": 0.03332370147109032,\n          \"Left\": 0.09051898866891861,\n          \"Top\": 0.32882627844810486\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09052469581365585,\n            \"Y\": 0.32882627844810486\n          },\n          {\n            \"X\": 0.48406293988227844,\n            \"Y\": 0.32906481623649597\n          },\n          {\n            \"X\": 0.48406416177749634,\n            \"Y\": 0.3621499836444855\n          },\n          {\n            \"X\": 0.09051898866891861,\n            \"Y\": 0.36190930008888245\n          }\n        ]\n      },\n      \"Id\": \"8b61e2ab-cdc4-4ada-9687-5ea6e4359afb\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.212890625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09608574211597443,\n          \"Height\": 0.03337343409657478,\n          \"Left\": 0.48406293988227844,\n          \"Top\": 0.32883530855178833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48406293988227844,\n            \"Y\": 0.32883530855178833\n          },\n          {\n            \"X\": 0.5801457166671753,\n            \"Y\": 0.3288935422897339\n          },\n          {\n            \"X\": 0.5801486968994141,\n            \"Y\": 0.362208753824234\n          },\n          {\n            \"X\": 0.48406416177749634,\n            \"Y\": 0.3621499836444855\n          }\n        ]\n      },\n      \"Id\": \"0fa1f7c1-1ad4-4ab4-84cc-629a55601983\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"10646fb8-c86c-42c6-8d54-334fbe679eef\",\n            \"09bad234-9061-49df-862f-878dd0855ae0\",\n            \"66716a8f-321b-4dfa-8f10-f84170255e10\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.580078125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1034819632768631,\n          \"Height\": 0.0333784855902195,\n          \"Left\": 0.5801457166671753,\n          \"Top\": 0.3288935422897339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801457166671753,\n            \"Y\": 0.3288935422897339\n          },\n          {\n            \"X\": 0.6836228966712952,\n            \"Y\": 0.3289562463760376\n          },\n          {\n            \"X\": 0.6836276650428772,\n            \"Y\": 0.3622720241546631\n          },\n          {\n            \"X\": 0.5801486968994141,\n            \"Y\": 0.362208753824234\n          }\n        ]\n      },\n      \"Id\": \"ec9027ce-e378-4c1f-b08b-ca96a9b8f2b8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b2b0a0e-19f2-4228-9f7a-65949a2b1c74\",\n            \"91ef6bc5-71b0-4a03-bd0b-ca30aa47992c\",\n            \"9c3529dc-5248-46b2-9a68-11d1bf2923ff\",\n            \"d4702430-f95b-4669-a856-9a3f0acf97a6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.45703125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870389312505722,\n          \"Height\": 0.033370014280080795,\n          \"Left\": 0.6836228966712952,\n          \"Top\": 0.3289562463760376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836228966712952,\n            \"Y\": 0.3289562463760376\n          },\n          {\n            \"X\": 0.7723203897476196,\n            \"Y\": 0.329010009765625\n          },\n          {\n            \"X\": 0.7723267674446106,\n            \"Y\": 0.3623262643814087\n          },\n          {\n            \"X\": 0.6836276650428772,\n            \"Y\": 0.3622720241546631\n          }\n        ]\n      },\n      \"Id\": \"1315388f-9fd0-407c-9af7-304d1f557be9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d5f866c-6841-4aa5-89a1-bcdf9d8d7774\",\n            \"3a885612-44f7-4d6b-882f-b4541eee1f33\",\n            \"b8f3b006-b961-4896-b9bb-e5d0042da25c\",\n            \"26a952e4-3524-4c97-8dfd-43061b7f10e9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.3828125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131615072488785,\n          \"Height\": 0.03336598351597786,\n          \"Left\": 0.7723203897476196,\n          \"Top\": 0.329010009765625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723203897476196,\n            \"Y\": 0.329010009765625\n          },\n          {\n            \"X\": 0.8536287546157837,\n            \"Y\": 0.32905930280685425\n          },\n          {\n            \"X\": 0.8536365628242493,\n            \"Y\": 0.36237600445747375\n          },\n          {\n            \"X\": 0.7723267674446106,\n            \"Y\": 0.3623262643814087\n          }\n        ]\n      },\n      \"Id\": \"fafd3e95-e996-4101-b659-a7d2368ffa10\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"139349b8-e76e-4068-b74a-a402cf4c8c6d\",\n            \"e25c204c-3286-491f-ba57-3d92e71af8f7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.9921875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09563849866390228,\n          \"Height\": 0.03337518870830536,\n          \"Left\": 0.8536287546157837,\n          \"Top\": 0.32905930280685425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536287546157837,\n            \"Y\": 0.32905930280685425\n          },\n          {\n            \"X\": 0.9492577314376831,\n            \"Y\": 0.3291172683238983\n          },\n          {\n            \"X\": 0.9492672681808472,\n            \"Y\": 0.3624344766139984\n          },\n          {\n            \"X\": 0.8536365628242493,\n            \"Y\": 0.36237600445747375\n          }\n        ]\n      },\n      \"Id\": \"ba29f225-7d89-48ab-8f43-c57cbf144d26\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"747092f5-fa82-4cbc-a43c-a10aff095099\",\n            \"22f02315-f591-48ce-9710-570620dc0a35\",\n            \"e5615969-1237-4e63-8996-b8054df7d22f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.3671875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39354971051216125,\n          \"Height\": 0.02181859128177166,\n          \"Left\": 0.09051526337862015,\n          \"Top\": 0.36190930008888245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09051898866891861,\n            \"Y\": 0.36190930008888245\n          },\n          {\n            \"X\": 0.48406416177749634,\n            \"Y\": 0.3621499836444855\n          },\n          {\n            \"X\": 0.4840649664402008,\n            \"Y\": 0.38372790813446045\n          },\n          {\n            \"X\": 0.09051526337862015,\n            \"Y\": 0.3834858238697052\n          }\n        ]\n      },\n      \"Id\": \"51c86c64-740a-42c0-bb30-44be4a466644\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.76953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09608641266822815,\n          \"Height\": 0.021637018769979477,\n          \"Left\": 0.48406416177749634,\n          \"Top\": 0.3621499836444855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48406416177749634,\n            \"Y\": 0.3621499836444855\n          },\n          {\n            \"X\": 0.5801486968994141,\n            \"Y\": 0.362208753824234\n          },\n          {\n            \"X\": 0.5801506042480469,\n            \"Y\": 0.38378700613975525\n          },\n          {\n            \"X\": 0.4840649664402008,\n            \"Y\": 0.38372790813446045\n          }\n        ]\n      },\n      \"Id\": \"318cea10-6425-4d41-809f-046be7b8f6b2\",\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.76953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348211973905563,\n          \"Height\": 0.021641910076141357,\n          \"Left\": 0.5801486968994141,\n          \"Top\": 0.362208753824234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801486968994141,\n            \"Y\": 0.362208753824234\n          },\n          {\n            \"X\": 0.6836276650428772,\n            \"Y\": 0.3622720241546631\n          },\n          {\n            \"X\": 0.6836307644844055,\n            \"Y\": 0.38385066390037537\n          },\n          {\n            \"X\": 0.5801506042480469,\n            \"Y\": 0.38378700613975525\n          }\n        ]\n      },\n      \"Id\": \"e6b9a095-9f01-4b23-80ec-e165e8b3430e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1f78a538-a8ad-4150-a188-d24cb91ee96d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.76953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0887032300233841,\n          \"Height\": 0.02163318544626236,\n          \"Left\": 0.6836276650428772,\n          \"Top\": 0.3622720241546631\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836276650428772,\n            \"Y\": 0.3622720241546631\n          },\n          {\n            \"X\": 0.7723267674446106,\n            \"Y\": 0.3623262643814087\n          },\n          {\n            \"X\": 0.7723309397697449,\n            \"Y\": 0.38390520215034485\n          },\n          {\n            \"X\": 0.6836307644844055,\n            \"Y\": 0.38385066390037537\n          }\n        ]\n      },\n      \"Id\": \"bf4a09ef-6ad7-4517-8824-38563f00f534\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"91391922-426d-4ae4-820c-a03c9c4857c8\",\n            \"79930df2-9add-4480-ad74-dea95608f895\",\n            \"83c441ee-c6e8-433e-916e-0ee8407c5819\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.76953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131484687328339,\n          \"Height\": 0.021628957241773605,\n          \"Left\": 0.7723267674446106,\n          \"Top\": 0.3623262643814087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723267674446106,\n            \"Y\": 0.3623262643814087\n          },\n          {\n            \"X\": 0.8536365628242493,\n            \"Y\": 0.36237600445747375\n          },\n          {\n            \"X\": 0.8536416292190552,\n            \"Y\": 0.3839552402496338\n          },\n          {\n            \"X\": 0.7723309397697449,\n            \"Y\": 0.38390520215034485\n          }\n        ]\n      },\n      \"Id\": \"7a5df5ca-d61d-4b48-a67a-02de5577bc43\",\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.76953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09517832845449448,\n          \"Height\": 0.021637773141264915,\n          \"Left\": 0.8536365628242493,\n          \"Top\": 0.36237600445747375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536365628242493,\n            \"Y\": 0.36237600445747375\n          },\n          {\n            \"X\": 0.9488087296485901,\n            \"Y\": 0.3624342083930969\n          },\n          {\n            \"X\": 0.948814868927002,\n            \"Y\": 0.3840137720108032\n          },\n          {\n            \"X\": 0.8536416292190552,\n            \"Y\": 0.3839552402496338\n          }\n        ]\n      },\n      \"Id\": \"06464d01-3c48-4b71-a743-aa1e81eb6b12\",\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.138671875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937310576438904,\n          \"Height\": 0.02110130898654461,\n          \"Left\": 0.0903346985578537,\n          \"Top\": 0.38348570466041565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09033829718828201,\n            \"Y\": 0.38348570466041565\n          },\n          {\n            \"X\": 0.4840649664402008,\n            \"Y\": 0.38372790813446045\n          },\n          {\n            \"X\": 0.4840657711029053,\n            \"Y\": 0.4045870304107666\n          },\n          {\n            \"X\": 0.0903346985578537,\n            \"Y\": 0.40434348583221436\n          }\n        ]\n      },\n      \"Id\": \"d163a8e8-e2b1-4327-a223-32d5fe812722\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34097f28-91c4-4a5e-9a12-7a15a71a6e08\",\n            \"ffeb80c0-dc7c-48e6-81ca-e89665c68e47\",\n            \"380afcad-5e7c-4346-be57-a80dd36345fb\",\n            \"f53100e1-b571-4965-a70d-30f9bac1dab4\",\n            \"6d7b8efe-3b24-41c8-b6f5-4702120d9531\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.208984375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09608745574951172,\n          \"Height\": 0.020918557420372963,\n          \"Left\": 0.4840649664402008,\n          \"Top\": 0.38372790813446045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4840649664402008,\n            \"Y\": 0.38372790813446045\n          },\n          {\n            \"X\": 0.5801506042480469,\n            \"Y\": 0.38378700613975525\n          },\n          {\n            \"X\": 0.5801524519920349,\n            \"Y\": 0.40464645624160767\n          },\n          {\n            \"X\": 0.4840657711029053,\n            \"Y\": 0.4045870304107666\n          }\n        ]\n      },\n      \"Id\": \"59043b93-7317-42fd-912a-659a06f70999\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6825288a-7feb-481c-b152-8eae64abba96\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.576171875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348320752382278,\n          \"Height\": 0.020923461765050888,\n          \"Left\": 0.5801506042480469,\n          \"Top\": 0.38378700613975525\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801506042480469,\n            \"Y\": 0.38378700613975525\n          },\n          {\n            \"X\": 0.6836307644844055,\n            \"Y\": 0.38385066390037537\n          },\n          {\n            \"X\": 0.6836338043212891,\n            \"Y\": 0.40471047163009644\n          },\n          {\n            \"X\": 0.5801524519920349,\n            \"Y\": 0.40464645624160767\n          }\n        ]\n      },\n      \"Id\": \"0b9b254c-7bbc-4e4b-97c7-e1c09cc05225\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"22cf6fc9-74d5-4c18-ad10-3c45597036bd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.453125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870410919189453,\n          \"Height\": 0.020914675667881966,\n          \"Left\": 0.6836307644844055,\n          \"Top\": 0.38385066390037537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836307644844055,\n            \"Y\": 0.38385066390037537\n          },\n          {\n            \"X\": 0.7723309397697449,\n            \"Y\": 0.38390520215034485\n          },\n          {\n            \"X\": 0.7723348736763,\n            \"Y\": 0.4047653377056122\n          },\n          {\n            \"X\": 0.6836338043212891,\n            \"Y\": 0.40471047163009644\n          }\n        ]\n      },\n      \"Id\": \"3387859b-3dda-4767-ad68-725dc10e0757\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b6f4d390-65a9-46aa-8fd0-a5c855e83b0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.427734375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131561428308487,\n          \"Height\": 0.020910410210490227,\n          \"Left\": 0.7723309397697449,\n          \"Top\": 0.38390520215034485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723309397697449,\n            \"Y\": 0.38390520215034485\n          },\n          {\n            \"X\": 0.8536416292190552,\n            \"Y\": 0.3839552402496338\n          },\n          {\n            \"X\": 0.8536465167999268,\n            \"Y\": 0.4048156142234802\n          },\n          {\n            \"X\": 0.7723348736763,\n            \"Y\": 0.4047653377056122\n          }\n        ]\n      },\n      \"Id\": \"dfa2926e-ce33-4fd1-9ce6-31942198ff05\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"77e77d2a-2a7b-4140-9d25-d74d9942ddef\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.0859375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0956377387046814,\n          \"Height\": 0.020919548347592354,\n          \"Left\": 0.8536416292190552,\n          \"Top\": 0.3839552402496338\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536416292190552,\n            \"Y\": 0.3839552402496338\n          },\n          {\n            \"X\": 0.949273407459259,\n            \"Y\": 0.3840140402317047\n          },\n          {\n            \"X\": 0.9492793679237366,\n            \"Y\": 0.4048747718334198\n          },\n          {\n            \"X\": 0.8536465167999268,\n            \"Y\": 0.4048156142234802\n          }\n        ]\n      },\n      \"Id\": \"916593fa-2d9e-4043-819f-436476c7b784\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d6801a44-e0ae-4802-b491-9a8c4d6554c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.96875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39373573660850525,\n          \"Height\": 0.02254173718392849,\n          \"Left\": 0.09033084660768509,\n          \"Top\": 0.40434348583221436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0903346985578537,\n            \"Y\": 0.40434348583221436\n          },\n          {\n            \"X\": 0.4840657711029053,\n            \"Y\": 0.4045870304107666\n          },\n          {\n            \"X\": 0.48406657576560974,\n            \"Y\": 0.4268852174282074\n          },\n          {\n            \"X\": 0.09033084660768509,\n            \"Y\": 0.42664024233818054\n          }\n        ]\n      },\n      \"Id\": \"6a4f2288-2d02-4f25-ab29-385dc2867450\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5358b28e-d7b1-4f57-9f8b-b99dabe84cd9\",\n            \"bc721c9b-5201-4d4d-a83e-6fae893ebe81\",\n            \"6b5b745f-99c3-4891-bae4-7a212695d39f\",\n            \"c6424d12-cf46-4ac5-8117-6a2cfb9bfd78\",\n            \"e0a8a3d7-035f-4182-b108-011b4628c8ec\",\n            \"172c658a-0d16-4a0d-b50d-8a703852d037\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.990234375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09608865529298782,\n          \"Height\": 0.022357985377311707,\n          \"Left\": 0.4840657711029053,\n          \"Top\": 0.4045870304107666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4840657711029053,\n            \"Y\": 0.4045870304107666\n          },\n          {\n            \"X\": 0.5801524519920349,\n            \"Y\": 0.40464645624160767\n          },\n          {\n            \"X\": 0.5801544189453125,\n            \"Y\": 0.4269450008869171\n          },\n          {\n            \"X\": 0.48406657576560974,\n            \"Y\": 0.4268852174282074\n          }\n        ]\n      },\n      \"Id\": \"b21299b5-3018-4352-a2c1-5a81f26f86ac\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e6cf40c-4f0b-4b07-85cb-28e16f0cd9c5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.357421875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348456352949142,\n          \"Height\": 0.02236294001340866,\n          \"Left\": 0.5801524519920349,\n          \"Top\": 0.40464645624160767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801524519920349,\n            \"Y\": 0.40464645624160767\n          },\n          {\n            \"X\": 0.6836338043212891,\n            \"Y\": 0.40471047163009644\n          },\n          {\n            \"X\": 0.6836370229721069,\n            \"Y\": 0.4270094037055969\n          },\n          {\n            \"X\": 0.5801544189453125,\n            \"Y\": 0.4269450008869171\n          }\n        ]\n      },\n      \"Id\": \"5f274ff4-1ed9-456c-9621-7f1f5a083436\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"86c54474-59f6-4477-b826-46cdbc2384c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.234375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870537579059601,\n          \"Height\": 0.02235412411391735,\n          \"Left\": 0.6836338043212891,\n          \"Top\": 0.40471047163009644\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836338043212891,\n            \"Y\": 0.40471047163009644\n          },\n          {\n            \"X\": 0.7723348736763,\n            \"Y\": 0.4047653377056122\n          },\n          {\n            \"X\": 0.7723391652107239,\n            \"Y\": 0.42706459760665894\n          },\n          {\n            \"X\": 0.6836370229721069,\n            \"Y\": 0.4270094037055969\n          }\n        ]\n      },\n      \"Id\": \"dac52e1b-140e-47e9-a724-770eaf10e12d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1b035dec-bb2d-4db3-a216-b18153c45d70\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.208984375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131685853004456,\n          \"Height\": 0.022349851205945015,\n          \"Left\": 0.7723348736763,\n          \"Top\": 0.4047653377056122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723348736763,\n            \"Y\": 0.4047653377056122\n          },\n          {\n            \"X\": 0.8536465167999268,\n            \"Y\": 0.4048156142234802\n          },\n          {\n            \"X\": 0.853651762008667,\n            \"Y\": 0.42711517214775085\n          },\n          {\n            \"X\": 0.7723391652107239,\n            \"Y\": 0.42706459760665894\n          }\n        ]\n      },\n      \"Id\": \"912901be-cb2f-4cee-839e-8fa348b2f0b5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e6c80a6d-3b77-4df9-9ffa-2104ef1d9f6b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.8671875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09563921391963959,\n          \"Height\": 0.022359061986207962,\n          \"Left\": 0.8536465167999268,\n          \"Top\": 0.4048156142234802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536465167999268,\n            \"Y\": 0.4048156142234802\n          },\n          {\n            \"X\": 0.9492793679237366,\n            \"Y\": 0.4048747718334198\n          },\n          {\n            \"X\": 0.9492857456207275,\n            \"Y\": 0.4271746873855591\n          },\n          {\n            \"X\": 0.853651762008667,\n            \"Y\": 0.42711517214775085\n          }\n        ]\n      },\n      \"Id\": \"4388a653-4a4c-4c45-afda-49c6206aab09\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"50256324-cec9-4100-8549-f70c0d16bbd7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.943359375,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937402665615082,\n          \"Height\": 0.021824393421411514,\n          \"Left\": 0.09032712131738663,\n          \"Top\": 0.42664024233818054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09033084660768509,\n            \"Y\": 0.42664024233818054\n          },\n          {\n            \"X\": 0.48406657576560974,\n            \"Y\": 0.4268852174282074\n          },\n          {\n            \"X\": 0.4840674102306366,\n            \"Y\": 0.44846463203430176\n          },\n          {\n            \"X\": 0.09032712131738663,\n            \"Y\": 0.4482182264328003\n          }\n        ]\n      },\n      \"Id\": \"82235a4b-6ef3-4e93-9196-bdc4e65f129f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3f11a638-5349-48a0-8409-d0a76e26a53b\",\n            \"cf730587-b681-48f9-a8f4-b8da88577020\",\n            \"75197cb6-c66e-4716-9a92-e9160460e098\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.013671875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09608972817659378,\n          \"Height\": 0.021639535203576088,\n          \"Left\": 0.48406657576560974,\n          \"Top\": 0.4268852174282074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48406657576560974,\n            \"Y\": 0.4268852174282074\n          },\n          {\n            \"X\": 0.5801544189453125,\n            \"Y\": 0.4269450008869171\n          },\n          {\n            \"X\": 0.5801563262939453,\n            \"Y\": 0.44852474331855774\n          },\n          {\n            \"X\": 0.4840674102306366,\n            \"Y\": 0.44846463203430176\n          }\n        ]\n      },\n      \"Id\": \"b41adec7-07c1-49cd-9330-d0541e11ecb8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fcc572b7-9f41-426b-a203-9348b8a28234\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.33203125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348568856716156,\n          \"Height\": 0.021644504740834236,\n          \"Left\": 0.5801544189453125,\n          \"Top\": 0.4269450008869171\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801544189453125,\n            \"Y\": 0.4269450008869171\n          },\n          {\n            \"X\": 0.6836370229721069,\n            \"Y\": 0.4270094037055969\n          },\n          {\n            \"X\": 0.6836401224136353,\n            \"Y\": 0.4485895037651062\n          },\n          {\n            \"X\": 0.5801563262939453,\n            \"Y\": 0.44852474331855774\n          }\n        ]\n      },\n      \"Id\": \"fba59b12-3866-4fe6-b6c4-accfd8b49dcb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"29b1b245-65a6-450a-899f-0f67b8f69da6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.208984375,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870629221200943,\n          \"Height\": 0.021635623648762703,\n          \"Left\": 0.6836370229721069,\n          \"Top\": 0.4270094037055969\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836370229721069,\n            \"Y\": 0.4270094037055969\n          },\n          {\n            \"X\": 0.7723391652107239,\n            \"Y\": 0.42706459760665894\n          },\n          {\n            \"X\": 0.7723432779312134,\n            \"Y\": 0.4486450254917145\n          },\n          {\n            \"X\": 0.6836401224136353,\n            \"Y\": 0.4485895037651062\n          }\n        ]\n      },\n      \"Id\": \"53ab7828-6b75-47de-a04d-28ec9716ad41\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d11ad0e5-1444-474c-a439-87c7da553a07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.232421875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131765574216843,\n          \"Height\": 0.021631315350532532,\n          \"Left\": 0.7723391652107239,\n          \"Top\": 0.42706459760665894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723391652107239,\n            \"Y\": 0.42706459760665894\n          },\n          {\n            \"X\": 0.853651762008667,\n            \"Y\": 0.42711517214775085\n          },\n          {\n            \"X\": 0.8536568284034729,\n            \"Y\": 0.4486958980560303\n          },\n          {\n            \"X\": 0.7723432779312134,\n            \"Y\": 0.4486450254917145\n          }\n        ]\n      },\n      \"Id\": \"ef0507e0-8715-467b-9220-e297299cbe7c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d61d3b0f-57fa-43ed-8d3e-b37234e46554\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.841796875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0956401452422142,\n          \"Height\": 0.021640567108988762,\n          \"Left\": 0.853651762008667,\n          \"Top\": 0.42711517214775085\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.853651762008667,\n            \"Y\": 0.42711517214775085\n          },\n          {\n            \"X\": 0.9492857456207275,\n            \"Y\": 0.4271746873855591\n          },\n          {\n            \"X\": 0.9492918848991394,\n            \"Y\": 0.44875574111938477\n          },\n          {\n            \"X\": 0.8536568284034729,\n            \"Y\": 0.4486958980560303\n          }\n        ]\n      },\n      \"Id\": \"106443d2-8943-4b64-8b01-2e70ffd79d6f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a8046a68-a819-4363-810c-d7478ae9aacf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.748046875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39374497532844543,\n          \"Height\": 0.022545630112290382,\n          \"Left\": 0.09032326936721802,\n          \"Top\": 0.4482182264328003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09032712131738663,\n            \"Y\": 0.4482182264328003\n          },\n          {\n            \"X\": 0.4840674102306366,\n            \"Y\": 0.44846463203430176\n          },\n          {\n            \"X\": 0.48406821489334106,\n            \"Y\": 0.4707638621330261\n          },\n          {\n            \"X\": 0.09032326936721802,\n            \"Y\": 0.47051602602005005\n          }\n        ]\n      },\n      \"Id\": \"47d33f94-5476-4bdd-988d-54cafccea4ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a2673eaa-acb2-40a7-8ef9-ab7213daee88\",\n            \"eb9677f4-dcf3-4426-ad8e-e93bc9fdbc3f\",\n            \"17c7f917-16ff-4116-a28b-0f04bf33dc0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.818359375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0960909053683281,\n          \"Height\": 0.022359725087881088,\n          \"Left\": 0.4840674102306366,\n          \"Top\": 0.44846463203430176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4840674102306366,\n            \"Y\": 0.44846463203430176\n          },\n          {\n            \"X\": 0.5801563262939453,\n            \"Y\": 0.44852474331855774\n          },\n          {\n            \"X\": 0.5801582932472229,\n            \"Y\": 0.47082436084747314\n          },\n          {\n            \"X\": 0.48406821489334106,\n            \"Y\": 0.4707638621330261\n          }\n        ]\n      },\n      \"Id\": \"c62dfe77-101e-4ea0-a59b-c56786f90f5f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55904831-392e-4c24-8a28-e941463647f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.13671875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348698496818542,\n          \"Height\": 0.02236473187804222,\n          \"Left\": 0.5801563262939453,\n          \"Top\": 0.44852474331855774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801563262939453,\n            \"Y\": 0.44852474331855774\n          },\n          {\n            \"X\": 0.6836401224136353,\n            \"Y\": 0.4485895037651062\n          },\n          {\n            \"X\": 0.6836432814598083,\n            \"Y\": 0.47088947892189026\n          },\n          {\n            \"X\": 0.5801582932472229,\n            \"Y\": 0.47082436084747314\n          }\n        ]\n      },\n      \"Id\": \"c357f7a2-6fc7-4d00-8475-9402f217c0ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afd0c405-2c7a-4353-9692-183304a19388\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.013671875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870744705200195,\n          \"Height\": 0.022355809807777405,\n          \"Left\": 0.6836401224136353,\n          \"Top\": 0.4485895037651062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836401224136353,\n            \"Y\": 0.4485895037651062\n          },\n          {\n            \"X\": 0.7723432779312134,\n            \"Y\": 0.4486450254917145\n          },\n          {\n            \"X\": 0.7723475694656372,\n            \"Y\": 0.4709453284740448\n          },\n          {\n            \"X\": 0.6836432814598083,\n            \"Y\": 0.47088947892189026\n          }\n        ]\n      },\n      \"Id\": \"5510e06b-91ab-4572-a97a-3cb59e94327a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"426cde40-181e-4278-9b0b-153613e910d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.037109375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131875842809677,\n          \"Height\": 0.02235148474574089,\n          \"Left\": 0.7723432779312134,\n          \"Top\": 0.4486450254917145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723432779312134,\n            \"Y\": 0.4486450254917145\n          },\n          {\n            \"X\": 0.8536568284034729,\n            \"Y\": 0.4486958980560303\n          },\n          {\n            \"X\": 0.8536620736122131,\n            \"Y\": 0.4709964990615845\n          },\n          {\n            \"X\": 0.7723475694656372,\n            \"Y\": 0.4709453284740448\n          }\n        ]\n      },\n      \"Id\": \"74705742-0b2d-4dac-bc33-8af077d8d8ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68b7deb3-e1c1-4231-b0b7-6eae1c9986af\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.646484375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09564145654439926,\n          \"Height\": 0.022360797971487045,\n          \"Left\": 0.8536568284034729,\n          \"Top\": 0.4486958980560303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536568284034729,\n            \"Y\": 0.4486958980560303\n          },\n          {\n            \"X\": 0.9492918848991394,\n            \"Y\": 0.44875574111938477\n          },\n          {\n            \"X\": 0.9492982625961304,\n            \"Y\": 0.4710566997528076\n          },\n          {\n            \"X\": 0.8536620736122131,\n            \"Y\": 0.4709964990615845\n          }\n        ]\n      },\n      \"Id\": \"6536fbe0-05f4-438e-8d2c-19d4d6f4c85d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e375f93-5aa7-4173-98d3-e1cc0c0eac67\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.431640625,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39374950528144836,\n          \"Height\": 0.02182825282216072,\n          \"Left\": 0.09031954407691956,\n          \"Top\": 0.47051602602005005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09032326936721802,\n            \"Y\": 0.47051602602005005\n          },\n          {\n            \"X\": 0.48406821489334106,\n            \"Y\": 0.4707638621330261\n          },\n          {\n            \"X\": 0.4840690493583679,\n            \"Y\": 0.49234429001808167\n          },\n          {\n            \"X\": 0.09031954407691956,\n            \"Y\": 0.49209505319595337\n          }\n        ]\n      },\n      \"Id\": \"6beec616-b968-4fed-95fe-aff0fd1933a7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b6da673-cf66-41eb-8aff-2bc0588e8a4e\",\n            \"4e845789-65dd-4a5c-b479-a88bd20f1ef5\",\n            \"227e3c38-8fe2-4dde-a476-69e3cc00f698\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.501953125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09609197825193405,\n          \"Height\": 0.021641241386532784,\n          \"Left\": 0.48406821489334106,\n          \"Top\": 0.4707638621330261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48406821489334106,\n            \"Y\": 0.4707638621330261\n          },\n          {\n            \"X\": 0.5801582932472229,\n            \"Y\": 0.47082436084747314\n          },\n          {\n            \"X\": 0.5801602005958557,\n            \"Y\": 0.49240511655807495\n          },\n          {\n            \"X\": 0.4840690493583679,\n            \"Y\": 0.49234429001808167\n          }\n        ]\n      },\n      \"Id\": \"2cb896d6-91f2-40fd-81ee-988a0b7a137d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81ee46ee-9183-4e28-88a2-d06f44cf26fb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.8203125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348811745643616,\n          \"Height\": 0.02164626307785511,\n          \"Left\": 0.5801582932472229,\n          \"Top\": 0.47082436084747314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801582932472229,\n            \"Y\": 0.47082436084747314\n          },\n          {\n            \"X\": 0.6836432814598083,\n            \"Y\": 0.47088947892189026\n          },\n          {\n            \"X\": 0.6836464405059814,\n            \"Y\": 0.4924706220626831\n          },\n          {\n            \"X\": 0.5801602005958557,\n            \"Y\": 0.49240511655807495\n          }\n        ]\n      },\n      \"Id\": \"c3a4140e-a889-4892-b5c8-26c8d763f82f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f8e46cf-7e4b-435c-b262-0920aef47045\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.74609375,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870837092399597,\n          \"Height\": 0.02163727581501007,\n          \"Left\": 0.6836432814598083,\n          \"Top\": 0.47088947892189026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836432814598083,\n            \"Y\": 0.47088947892189026\n          },\n          {\n            \"X\": 0.7723475694656372,\n            \"Y\": 0.4709453284740448\n          },\n          {\n            \"X\": 0.7723516821861267,\n            \"Y\": 0.4925267696380615\n          },\n          {\n            \"X\": 0.6836464405059814,\n            \"Y\": 0.4924706220626831\n          }\n        ]\n      },\n      \"Id\": \"2c2e4a18-aac6-45e6-b5f5-8f44bfd25a48\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4401e828-a79e-4b41-ad24-e1aff1a08a19\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.720703125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08131955564022064,\n          \"Height\": 0.021632913500070572,\n          \"Left\": 0.7723475694656372,\n          \"Top\": 0.4709453284740448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723475694656372,\n            \"Y\": 0.4709453284740448\n          },\n          {\n            \"X\": 0.8536620736122131,\n            \"Y\": 0.4709964990615845\n          },\n          {\n            \"X\": 0.853667140007019,\n            \"Y\": 0.4925782382488251\n          },\n          {\n            \"X\": 0.7723516821861267,\n            \"Y\": 0.4925267696380615\n          }\n        ]\n      },\n      \"Id\": \"8396d11c-0756-407b-83be-817de4a610e6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5377695-2f2d-46a0-bbc6-aee60a4acd2d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.330078125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09564238786697388,\n          \"Height\": 0.02164226956665516,\n          \"Left\": 0.8536620736122131,\n          \"Top\": 0.4709964990615845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536620736122131,\n            \"Y\": 0.4709964990615845\n          },\n          {\n            \"X\": 0.9492982625961304,\n            \"Y\": 0.4710566997528076\n          },\n          {\n            \"X\": 0.949304461479187,\n            \"Y\": 0.4926387667655945\n          },\n          {\n            \"X\": 0.853667140007019,\n            \"Y\": 0.4925782382488251\n          }\n        ]\n      },\n      \"Id\": \"fcfe21e9-0b2a-4189-b154-5bd4b113d718\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ae797609-9e94-4d70-93ef-1ebadf940a51\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39357703924179077,\n          \"Height\": 0.021830039098858833,\n          \"Left\": 0.09049278497695923,\n          \"Top\": 0.4920951724052429\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09049651026725769,\n            \"Y\": 0.4920951724052429\n          },\n          {\n            \"X\": 0.4840690493583679,\n            \"Y\": 0.49234429001808167\n          },\n          {\n            \"X\": 0.4840698540210724,\n            \"Y\": 0.5139251947402954\n          },\n          {\n            \"X\": 0.09049278497695923,\n            \"Y\": 0.5136746764183044\n          }\n        ]\n      },\n      \"Id\": \"a529e39f-d69a-411c-907a-7cbbaff5d89d\",\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.096093088388443,\n          \"Height\": 0.021642079576849937,\n          \"Left\": 0.4840690493583679,\n          \"Top\": 0.49234429001808167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4840690493583679,\n            \"Y\": 0.49234429001808167\n          },\n          {\n            \"X\": 0.5801602005958557,\n            \"Y\": 0.49240511655807495\n          },\n          {\n            \"X\": 0.5801621079444885,\n            \"Y\": 0.513986349105835\n          },\n          {\n            \"X\": 0.4840698540210724,\n            \"Y\": 0.5139251947402954\n          }\n        ]\n      },\n      \"Id\": \"c4b3a306-05df-495e-8379-5cd5ea306c83\",\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10348930954933167,\n          \"Height\": 0.021647129207849503,\n          \"Left\": 0.5801602005958557,\n          \"Top\": 0.49240511655807495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801602005958557,\n            \"Y\": 0.49240511655807495\n          },\n          {\n            \"X\": 0.6836464405059814,\n            \"Y\": 0.4924706220626831\n          },\n          {\n            \"X\": 0.6836495399475098,\n            \"Y\": 0.5140522122383118\n          },\n          {\n            \"X\": 0.5801621079444885,\n            \"Y\": 0.513986349105835\n          }\n        ]\n      },\n      \"Id\": \"6f4b7951-1da2-44db-8089-ba73a40c418e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e4502487-282d-45e9-8037-9114e8c1380c\",\n            \"8927ee7d-c31f-4136-b41a-e615e9685b51\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08870939165353775,\n          \"Height\": 0.021638087928295135,\n          \"Left\": 0.6836464405059814,\n          \"Top\": 0.4924706220626831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836464405059814,\n            \"Y\": 0.4924706220626831\n          },\n          {\n            \"X\": 0.7723516821861267,\n            \"Y\": 0.4925267696380615\n          },\n          {\n            \"X\": 0.7723557949066162,\n            \"Y\": 0.5141087174415588\n          },\n          {\n            \"X\": 0.6836495399475098,\n            \"Y\": 0.5140522122383118\n          }\n        ]\n      },\n      \"Id\": \"98b5dea8-1ef3-4da7-bff9-d6b41d7e6064\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cc335cf4-4ef0-4683-8bf5-7f67e72c5c52\",\n            \"829091f2-0eac-4709-a228-aa65ddccce12\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08132049441337585,\n          \"Height\": 0.021633699536323547,\n          \"Left\": 0.7723516821861267,\n          \"Top\": 0.4925267696380615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723516821861267,\n            \"Y\": 0.4925267696380615\n          },\n          {\n            \"X\": 0.853667140007019,\n            \"Y\": 0.4925782382488251\n          },\n          {\n            \"X\": 0.8536721467971802,\n            \"Y\": 0.5141604542732239\n          },\n          {\n            \"X\": 0.7723557949066162,\n            \"Y\": 0.5141087174415588\n          }\n        ]\n      },\n      \"Id\": \"7c041a1f-a46f-4f1d-aa19-b52cdf401661\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"308e2d31-237d-4354-85a0-c178110d39d6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09518494457006454,\n          \"Height\": 0.021642813459038734,\n          \"Left\": 0.853667140007019,\n          \"Top\": 0.4925782382488251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.853667140007019,\n            \"Y\": 0.4925782382488251\n          },\n          {\n            \"X\": 0.9488458633422852,\n            \"Y\": 0.4926384687423706\n          },\n          {\n            \"X\": 0.9488520622253418,\n            \"Y\": 0.5142210721969604\n          },\n          {\n            \"X\": 0.8536721467971802,\n            \"Y\": 0.5141604542732239\n          }\n        ]\n      },\n      \"Id\": \"b2279d61-5595-44e5-a410-247decffb1fc\",\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.380859375,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937585651874542,\n          \"Height\": 0.021832048892974854,\n          \"Left\": 0.09031208604574203,\n          \"Top\": 0.5136745572090149\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0903158113360405,\n            \"Y\": 0.5136745572090149\n          },\n          {\n            \"X\": 0.4840698540210724,\n            \"Y\": 0.5139251947402954\n          },\n          {\n            \"X\": 0.48407065868377686,\n            \"Y\": 0.5355066061019897\n          },\n          {\n            \"X\": 0.09031208604574203,\n            \"Y\": 0.5352545976638794\n          }\n        ]\n      },\n      \"Id\": \"dd67597a-338f-4446-bbcb-4b9bdde57153\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bf82c026-b5b7-447b-86c2-0827f4cdba69\",\n            \"f3e94be1-504b-40a2-bca8-4a1ac22c048c\",\n            \"2c8c967c-3824-4e6b-8d01-5716e8c2d4cd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.5,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09609419107437134,\n          \"Height\": 0.02164291962981224,\n          \"Left\": 0.4840698540210724,\n          \"Top\": 0.5139251947402954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4840698540210724,\n            \"Y\": 0.5139251947402954\n          },\n          {\n            \"X\": 0.5801621079444885,\n            \"Y\": 0.513986349105835\n          },\n          {\n            \"X\": 0.5801640152931213,\n            \"Y\": 0.535568118095398\n          },\n          {\n            \"X\": 0.48407065868377686,\n            \"Y\": 0.5355066061019897\n          }\n        ]\n      },\n      \"Id\": \"d4878b69-b665-4a21-a77a-ea33cccdb827\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f1edae2-d7cb-4ad7-94c4-555c3212b298\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.818359375,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10349050164222717,\n          \"Height\": 0.021647993475198746,\n          \"Left\": 0.5801621079444885,\n          \"Top\": 0.513986349105835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801621079444885,\n            \"Y\": 0.513986349105835\n          },\n          {\n            \"X\": 0.6836495399475098,\n            \"Y\": 0.5140522122383118\n          },\n          {\n            \"X\": 0.6836526393890381,\n            \"Y\": 0.5356343388557434\n          },\n          {\n            \"X\": 0.5801640152931213,\n            \"Y\": 0.535568118095398\n          }\n        ]\n      },\n      \"Id\": \"d6aee447-293e-47bf-8a30-0d7873e847dc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67da8660-d7e9-463a-bd04-7bd9b8a120a8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.744140625,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08871041238307953,\n          \"Height\": 0.02163890190422535,\n          \"Left\": 0.6836495399475098,\n          \"Top\": 0.5140522122383118\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836495399475098,\n            \"Y\": 0.5140522122383118\n          },\n          {\n            \"X\": 0.7723557949066162,\n            \"Y\": 0.5141087174415588\n          },\n          {\n            \"X\": 0.7723599076271057,\n            \"Y\": 0.5356911420822144\n          },\n          {\n            \"X\": 0.6836526393890381,\n            \"Y\": 0.5356343388557434\n          }\n        ]\n      },\n      \"Id\": \"2433193d-3075-46df-9f02-28d03965d6d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81133539-4882-40f8-a086-e602e536b681\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.71875,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08132143318653107,\n          \"Height\": 0.021634487435221672,\n          \"Left\": 0.7723557949066162,\n          \"Top\": 0.5141087174415588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723557949066162,\n            \"Y\": 0.5141087174415588\n          },\n          {\n            \"X\": 0.8536721467971802,\n            \"Y\": 0.5141604542732239\n          },\n          {\n            \"X\": 0.8536772131919861,\n            \"Y\": 0.5357431769371033\n          },\n          {\n            \"X\": 0.7723599076271057,\n            \"Y\": 0.5356911420822144\n          }\n        ]\n      },\n      \"Id\": \"fcfce793-833e-4576-b3f7-f70f9cb11060\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a39c45dc-2d42-4292-a541-3eb44101f145\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.376953125,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09564459323883057,\n          \"Height\": 0.021643944084644318,\n          \"Left\": 0.8536721467971802,\n          \"Top\": 0.5141604542732239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536721467971802,\n            \"Y\": 0.5141604542732239\n          },\n          {\n            \"X\": 0.9493106007575989,\n            \"Y\": 0.5142213702201843\n          },\n          {\n            \"X\": 0.9493167400360107,\n            \"Y\": 0.5358043909072876\n          },\n          {\n            \"X\": 0.8536772131919861,\n            \"Y\": 0.5357431769371033\n          }\n        ]\n      },\n      \"Id\": \"fbcc05ec-d2e5-4cef-964e-4097a03dc917\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96e5c5ab-382c-46f4-90de-c5c7b3b60274\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.625,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39376309514045715,\n          \"Height\": 0.02183394692838192,\n          \"Left\": 0.09030836075544357,\n          \"Top\": 0.5352545976638794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09031208604574203,\n            \"Y\": 0.5352545976638794\n          },\n          {\n            \"X\": 0.48407065868377686,\n            \"Y\": 0.5355066061019897\n          },\n          {\n            \"X\": 0.4840714633464813,\n            \"Y\": 0.5570884943008423\n          },\n          {\n            \"X\": 0.09030836075544357,\n            \"Y\": 0.5568350553512573\n          }\n        ]\n      },\n      \"Id\": \"24cb6ded-3f6a-4ac0-8390-55f87a0a2b2d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4f4ed387-8345-409f-8eab-762c4fb64ae7\",\n            \"c8d87cc0-8397-4269-85c5-faa1b1cae3b0\",\n            \"b8971a0d-8f37-487e-b106-4e84c499cc89\",\n            \"c746a9c2-a55e-4d70-87a1-de19db55a761\",\n            \"fc1b0c0e-5af3-4740-9060-30eb5fd5b24a\",\n            \"8dca1876-48e0-4e2b-91ee-e75640f9b85e\",\n            \"b05e8a1f-8950-4208-8a1c-89468efda9cc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.744140625,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09609530121088028,\n          \"Height\": 0.021643757820129395,\n          \"Left\": 0.48407065868377686,\n          \"Top\": 0.5355066061019897\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48407065868377686,\n            \"Y\": 0.5355066061019897\n          },\n          {\n            \"X\": 0.5801640152931213,\n            \"Y\": 0.535568118095398\n          },\n          {\n            \"X\": 0.5801659226417542,\n            \"Y\": 0.5571503639221191\n          },\n          {\n            \"X\": 0.4840714633464813,\n            \"Y\": 0.5570884943008423\n          }\n        ]\n      },\n      \"Id\": \"d5e55990-f373-4062-a933-44e671e72666\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"498aa71e-a79f-4e47-ba19-517802b4dd2c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.0625,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10349168628454208,\n          \"Height\": 0.021648859605193138,\n          \"Left\": 0.5801640152931213,\n          \"Top\": 0.535568118095398\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801640152931213,\n            \"Y\": 0.535568118095398\n          },\n          {\n            \"X\": 0.6836526393890381,\n            \"Y\": 0.5356343388557434\n          },\n          {\n            \"X\": 0.6836557388305664,\n            \"Y\": 0.557217001914978\n          },\n          {\n            \"X\": 0.5801659226417542,\n            \"Y\": 0.5571503639221191\n          }\n        ]\n      },\n      \"Id\": \"033170c7-2081-4b0a-a259-22b0214bec6d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"805aea4f-86a5-4c37-bc10-e01f0d2caa0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.98828125,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08871143311262131,\n          \"Height\": 0.021639714017510414,\n          \"Left\": 0.6836526393890381,\n          \"Top\": 0.5356343388557434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836526393890381,\n            \"Y\": 0.5356343388557434\n          },\n          {\n            \"X\": 0.7723599076271057,\n            \"Y\": 0.5356911420822144\n          },\n          {\n            \"X\": 0.77236407995224,\n            \"Y\": 0.5572741031646729\n          },\n          {\n            \"X\": 0.6836557388305664,\n            \"Y\": 0.557217001914978\n          }\n        ]\n      },\n      \"Id\": \"9d91ad04-4833-42fb-b4a2-c0f94531c6f7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b12cb94-a9f1-4856-a95f-e798ee8c0498\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.962890625,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08132237195968628,\n          \"Height\": 0.021635273471474648,\n          \"Left\": 0.7723599076271057,\n          \"Top\": 0.5356911420822144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723599076271057,\n            \"Y\": 0.5356911420822144\n          },\n          {\n            \"X\": 0.8536772131919861,\n            \"Y\": 0.5357431769371033\n          },\n          {\n            \"X\": 0.853682279586792,\n            \"Y\": 0.5573264360427856\n          },\n          {\n            \"X\": 0.77236407995224,\n            \"Y\": 0.5572741031646729\n          }\n        ]\n      },\n      \"Id\": \"6175fb83-3385-497d-ae8f-7ae807a011c0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b15644a-179f-42f1-804c-e89ad0a5914c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.62109375,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09564569592475891,\n          \"Height\": 0.021644780412316322,\n          \"Left\": 0.8536772131919861,\n          \"Top\": 0.5357431769371033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536772131919861,\n            \"Y\": 0.5357431769371033\n          },\n          {\n            \"X\": 0.9493167400360107,\n            \"Y\": 0.5358043909072876\n          },\n          {\n            \"X\": 0.9493229389190674,\n            \"Y\": 0.5573879480361938\n          },\n          {\n            \"X\": 0.853682279586792,\n            \"Y\": 0.5573264360427856\n          }\n        ]\n      },\n      \"Id\": \"7ab39d0d-bbfa-426b-83ad-80bb8f427567\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"64cfa011-2c83-44d6-ab18-4ae004f85850\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 95.263671875,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937697410583496,\n          \"Height\": 0.03190780431032181,\n          \"Left\": 0.09030289202928543,\n          \"Top\": 0.5568350553512573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09030836075544357,\n            \"Y\": 0.5568350553512573\n          },\n          {\n            \"X\": 0.4840714633464813,\n            \"Y\": 0.5570884943008423\n          },\n          {\n            \"X\": 0.48407262563705444,\n            \"Y\": 0.5887429118156433\n          },\n          {\n            \"X\": 0.09030289202928543,\n            \"Y\": 0.5884873867034912\n          }\n        ]\n      },\n      \"Id\": \"650968be-4fa1-407f-86fb-8a220349e80b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d57f1857-ee99-44cf-820b-d0ad783f529a\",\n            \"b1c5d5bd-788a-47fb-9684-23b5099fbfa4\",\n            \"d3028b3c-3814-40a0-bf75-004d8e5330d1\",\n            \"1eb3c498-e480-4633-bf15-066aa9988a33\",\n            \"0930d282-26a4-4fd5-8b8c-00c36f3b3c9d\",\n            \"fc7e0079-6706-43b0-a85a-0fabfd79c7b9\",\n            \"17f6c74b-7d39-4e73-8f5b-ed8312a5cb5a\",\n            \"81824642-2185-43a4-8a0c-ada74f176015\",\n            \"1ea07f75-8bce-4b3e-a143-d5084bf25c82\",\n            \"3901c22b-a297-4c68-93bf-643c4119de82\",\n            \"3bd9035d-009a-4d42-9826-98c7b0f50f95\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.236328125,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09609729796648026,\n          \"Height\": 0.031716715544462204,\n          \"Left\": 0.4840714633464813,\n          \"Top\": 0.5570884943008423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4840714633464813,\n            \"Y\": 0.5570884943008423\n          },\n          {\n            \"X\": 0.5801659226417542,\n            \"Y\": 0.5571503639221191\n          },\n          {\n            \"X\": 0.5801687836647034,\n            \"Y\": 0.5888052582740784\n          },\n          {\n            \"X\": 0.48407262563705444,\n            \"Y\": 0.5887429118156433\n          }\n        ]\n      },\n      \"Id\": \"a14873b0-c43f-4c4f-9d95-4487c4757590\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"104d5ae2-37d4-4aad-855d-0b26c8ef7eee\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.603515625,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10349433124065399,\n          \"Height\": 0.031722016632556915,\n          \"Left\": 0.5801659226417542,\n          \"Top\": 0.5571503639221191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801659226417542,\n            \"Y\": 0.5571503639221191\n          },\n          {\n            \"X\": 0.6836557388305664,\n            \"Y\": 0.557217001914978\n          },\n          {\n            \"X\": 0.6836602687835693,\n            \"Y\": 0.5888723731040955\n          },\n          {\n            \"X\": 0.5801687836647034,\n            \"Y\": 0.5888052582740784\n          }\n        ]\n      },\n      \"Id\": \"9231c752-5282-4b13-a663-1f99a9c4f2fe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c7058c6-6fa5-4ab5-a412-75ed10cec6a7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.48046875,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08871438354253769,\n          \"Height\": 0.03171296417713165,\n          \"Left\": 0.6836557388305664,\n          \"Top\": 0.557217001914978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836557388305664,\n            \"Y\": 0.557217001914978\n          },\n          {\n            \"X\": 0.77236407995224,\n            \"Y\": 0.5572741031646729\n          },\n          {\n            \"X\": 0.7723701000213623,\n            \"Y\": 0.5889299511909485\n          },\n          {\n            \"X\": 0.6836602687835693,\n            \"Y\": 0.5888723731040955\n          }\n        ]\n      },\n      \"Id\": \"9137c284-468d-41b4-b24b-1a2be085854e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cc62967d-0730-494d-848f-4c13f458c287\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.40625,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08132566511631012,\n          \"Height\": 0.03170863166451454,\n          \"Left\": 0.77236407995224,\n          \"Top\": 0.5572741031646729\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.77236407995224,\n            \"Y\": 0.5572741031646729\n          },\n          {\n            \"X\": 0.853682279586792,\n            \"Y\": 0.5573264360427856\n          },\n          {\n            \"X\": 0.8536897301673889,\n            \"Y\": 0.5889827013015747\n          },\n          {\n            \"X\": 0.7723701000213623,\n            \"Y\": 0.5889299511909485\n          }\n        ]\n      },\n      \"Id\": \"5f9b1c32-3165-44d8-91a2-b17d6054b2d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4cdf3035-1f04-4f09-84d6-3152600a87d8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.064453125,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09564966708421707,\n          \"Height\": 0.03171835094690323,\n          \"Left\": 0.853682279586792,\n          \"Top\": 0.5573264360427856\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.853682279586792,\n            \"Y\": 0.5573264360427856\n          },\n          {\n            \"X\": 0.9493229389190674,\n            \"Y\": 0.5573879480361938\n          },\n          {\n            \"X\": 0.9493319392204285,\n            \"Y\": 0.5890447497367859\n          },\n          {\n            \"X\": 0.8536897301673889,\n            \"Y\": 0.5889827013015747\n          }\n        ]\n      },\n      \"Id\": \"df97bff2-0186-4641-88cb-9fb0f1ffee72\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aa713b33-6d68-4647-807f-791e2816ba03\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.775390625,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937743902206421,\n          \"Height\": 0.022334126755595207,\n          \"Left\": 0.0902990773320198,\n          \"Top\": 0.5884873867034912\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09030289202928543,\n            \"Y\": 0.5884873867034912\n          },\n          {\n            \"X\": 0.48407262563705444,\n            \"Y\": 0.5887429118156433\n          },\n          {\n            \"X\": 0.4840734601020813,\n            \"Y\": 0.610821545124054\n          },\n          {\n            \"X\": 0.0902990773320198,\n            \"Y\": 0.6105645895004272\n          }\n        ]\n      },\n      \"Id\": \"064fd8e1-8531-40d9-ba28-321a5938db43\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fdd20a32-a5aa-430f-a6f8-bba90d3dd1f4\",\n            \"fdb7bb0b-7b91-44cf-9b9e-79b34d955002\",\n            \"7f741e4d-3fb9-40fa-ad15-43bfca941a45\",\n            \"0d260337-37c7-4717-83e6-5dba2a5c9888\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.748046875,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09609807282686234,\n          \"Height\": 0.022141333669424057,\n          \"Left\": 0.48407262563705444,\n          \"Top\": 0.5887429118156433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48407262563705444,\n            \"Y\": 0.5887429118156433\n          },\n          {\n            \"X\": 0.5801687836647034,\n            \"Y\": 0.5888052582740784\n          },\n          {\n            \"X\": 0.5801706910133362,\n            \"Y\": 0.6108841896057129\n          },\n          {\n            \"X\": 0.4840734601020813,\n            \"Y\": 0.610821545124054\n          }\n        ]\n      },\n      \"Id\": \"e6021213-cfdd-4ec2-9ca8-639859b5a846\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bb9a2b5c-61a3-41a9-bc6d-feead71e8f8b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.115234375,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10349470376968384,\n          \"Height\": 0.02214650809764862,\n          \"Left\": 0.5801687836647034,\n          \"Top\": 0.5888052582740784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5801687836647034,\n            \"Y\": 0.5888052582740784\n          },\n          {\n            \"X\": 0.6836602687835693,\n            \"Y\": 0.5888723731040955\n          },\n          {\n            \"X\": 0.6836634278297424,\n            \"Y\": 0.6109517216682434\n          },\n          {\n            \"X\": 0.5801706910133362,\n            \"Y\": 0.6108841896057129\n          }\n        ]\n      },\n      \"Id\": \"fd78fa82-8083-4ece-b23d-aa72983b00b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a9647ff-b5b6-4fa5-a9f9-43ce55e1d8e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.9921875,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08871404826641083,\n          \"Height\": 0.022137239575386047,\n          \"Left\": 0.6836602687835693,\n          \"Top\": 0.5888723731040955\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6836602687835693,\n            \"Y\": 0.5888723731040955\n          },\n          {\n            \"X\": 0.7723701000213623,\n            \"Y\": 0.5889299511909485\n          },\n          {\n            \"X\": 0.7723743319511414,\n            \"Y\": 0.6110095977783203\n          },\n          {\n            \"X\": 0.6836634278297424,\n            \"Y\": 0.6109517216682434\n          }\n        ]\n      },\n      \"Id\": \"f97183e8-3423-4656-9d70-8c575ec8c3e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d1c193a9-4f3e-4c17-b1e5-c80331bfe900\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.966796875,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08132479339838028,\n          \"Height\": 0.022132741287350655,\n          \"Left\": 0.7723701000213623,\n          \"Top\": 0.5889299511909485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7723701000213623,\n            \"Y\": 0.5889299511909485\n          },\n          {\n            \"X\": 0.8536897301673889,\n            \"Y\": 0.5889827013015747\n          },\n          {\n            \"X\": 0.8536949157714844,\n            \"Y\": 0.6110627055168152\n          },\n          {\n            \"X\": 0.7723743319511414,\n            \"Y\": 0.6110095977783203\n          }\n        ]\n      },\n      \"Id\": \"47644a03-26bd-4fe5-a644-650f9241e61b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"85003356-0676-434c-ac1a-d3470330e100\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.576171875,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 6,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09564854949712753,\n          \"Height\": 0.022142382338643074,\n          \"Left\": 0.8536897301673889,\n          \"Top\": 0.5889827013015747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8536897301673889,\n            \"Y\": 0.5889827013015747\n          },\n          {\n            \"X\": 0.9493319392204285,\n            \"Y\": 0.5890447497367859\n          },\n          {\n            \"X\": 0.9493382573127747,\n            \"Y\": 0.611125111579895\n          },\n          {\n            \"X\": 0.8536949157714844,\n            \"Y\": 0.6110627055168152\n          }\n        ]\n      },\n      \"Id\": \"c9333da3-465f-43cc-b653-69d69f8fcf72\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7ce5a45-aec4-4429-9d4d-49b19e57b47a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 51.3671875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937266767024994,\n          \"Height\": 0.0551312118768692,\n          \"Left\": 0.09033829718828201,\n          \"Top\": 0.32859668135643005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0903477817773819,\n            \"Y\": 0.32859668135643005\n          },\n          {\n            \"X\": 0.48406293988227844,\n            \"Y\": 0.32883530855178833\n          },\n          {\n            \"X\": 0.4840649664402008,\n            \"Y\": 0.38372790813446045\n          },\n          {\n            \"X\": 0.09033829718828201,\n            \"Y\": 0.38348570466041565\n          }\n        ]\n      },\n      \"Id\": \"7f8ff37d-c79a-4843-b9f2-f662c0362d9d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b61e2ab-cdc4-4ada-9687-5ea6e4359afb\",\n            \"51c86c64-740a-42c0-bb30-44be4a466644\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 63.76953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4652092456817627,\n          \"Height\": 0.021864069625735283,\n          \"Left\": 0.48406416177749634,\n          \"Top\": 0.3621499836444855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48406416177749634,\n            \"Y\": 0.3621499836444855\n          },\n          {\n            \"X\": 0.9492672681808472,\n            \"Y\": 0.3624344766139984\n          },\n          {\n            \"X\": 0.949273407459259,\n            \"Y\": 0.3840140402317047\n          },\n          {\n            \"X\": 0.4840649664402008,\n            \"Y\": 0.38372790813446045\n          }\n        ]\n      },\n      \"Id\": \"20d96602-5f79-447a-8d0f-3268ba9c38a7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"318cea10-6425-4d41-809f-046be7b8f6b2\",\n            \"e6b9a095-9f01-4b23-80ec-e165e8b3430e\",\n            \"bf4a09ef-6ad7-4517-8824-38563f00f534\",\n            \"7a5df5ca-d61d-4b48-a67a-02de5577bc43\",\n            \"06464d01-3c48-4b71-a743-aa1e81eb6b12\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 51.66015625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 6,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8589947819709778,\n          \"Height\": 0.022126290947198868,\n          \"Left\": 0.0903158113360405,\n          \"Top\": 0.49209505319595337\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09031954407691956,\n            \"Y\": 0.49209505319595337\n          },\n          {\n            \"X\": 0.949304461479187,\n            \"Y\": 0.4926387667655945\n          },\n          {\n            \"X\": 0.9493106007575989,\n            \"Y\": 0.5142213702201843\n          },\n          {\n            \"X\": 0.0903158113360405,\n            \"Y\": 0.5136745572090149\n          }\n        ]\n      },\n      \"Id\": \"4c03a802-4c00-435f-b4ea-e1f85c6d1d0e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a529e39f-d69a-411c-907a-7cbbaff5d89d\",\n            \"c4b3a306-05df-495e-8379-5cd5ea306c83\",\n            \"6f4b7951-1da2-44db-8089-ba73a40c418e\",\n            \"98b5dea8-1ef3-4da7-bff9-d6b41d7e6064\",\n            \"7c041a1f-a46f-4f1d-aa19-b52cdf401661\",\n            \"b2279d61-5595-44e5-a410-247decffb1fc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_TITLE\",\n      \"Confidence\": 99.365234375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4513091742992401,\n          \"Height\": 0.01293218694627285,\n          \"Left\": 0.09394521266222,\n          \"Top\": 0.30303600430488586\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09394737333059311,\n            \"Y\": 0.30303600430488586\n          },\n          {\n            \"X\": 0.5452535152435303,\n            \"Y\": 0.3033076524734497\n          },\n          {\n            \"X\": 0.5452544093132019,\n            \"Y\": 0.31596821546554565\n          },\n          {\n            \"X\": 0.09394521266222,\n            \"Y\": 0.3156956434249878\n          }\n        ]\n      },\n      \"Id\": \"058a519f-4aa4-44a0-aa65-625754764565\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"282cb843-c0f3-403c-9cae-3578ff3ba03f\",\n            \"2b94ba16-efa0-49b6-975b-63ae13cc7209\",\n            \"b6e77682-bd4d-4427-a223-2aac6f21fb9a\",\n            \"f37a47b8-3423-4533-96db-69d34549aa66\",\n            \"0dedfa05-0537-4b25-8a56-5bf60d3749e8\",\n            \"5612412c-7ef9-4d08-af54-599109c34387\",\n            \"12dcb674-a206-4a98-9150-3cc0face2c56\",\n            \"9caf4b7d-4b0a-415a-ac68-d64c9e18513b\",\n            \"53b7d129-429f-47af-a7f2-1ec728133f03\",\n            \"fa06e9fd-60f2-46b6-93c2-8b1aba74beb5\",\n            \"6c611d71-5b93-468c-9fd4-527c46f7c3fb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 99.4140625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13758237659931183,\n          \"Height\": 0.010805688798427582,\n          \"Left\": 0.09264139086008072,\n          \"Top\": 0.6159238219261169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09264322370290756,\n            \"Y\": 0.6159238219261169\n          },\n          {\n            \"X\": 0.23022377490997314,\n            \"Y\": 0.6160137057304382\n          },\n          {\n            \"X\": 0.23022271692752838,\n            \"Y\": 0.6267294883728027\n          },\n          {\n            \"X\": 0.09264139086008072,\n            \"Y\": 0.6266393661499023\n          }\n        ]\n      },\n      \"Id\": \"4acc9d59-2e22-4214-82ac-90c2294ba7a2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5cf874f4-4bd1-4e41-a23d-f0c54e98f4d1\",\n            \"64c28d0a-28c7-46ab-802d-8f75caf7081c\",\n            \"c10d1ef8-56e3-4ea8-ba1e-fc556c4b4af6\",\n            \"3c89766c-3875-4aed-8b02-535faea876a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 99.755859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8415487408638,\n          \"Height\": 0.03562641143798828,\n          \"Left\": 0.09154064953327179,\n          \"Top\": 0.6285869479179382\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0915466770529747,\n            \"Y\": 0.6285869479179382\n          },\n          {\n            \"X\": 0.9330796599388123,\n            \"Y\": 0.6291385293006897\n          },\n          {\n            \"X\": 0.9330893754959106,\n            \"Y\": 0.6642133593559265\n          },\n          {\n            \"X\": 0.09154064953327179,\n            \"Y\": 0.6636568903923035\n          }\n        ]\n      },\n      \"Id\": \"536c8b9b-3f66-48ab-a147-df36e284b5ec\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"214d8b19-ec89-4c50-9270-efc42a447752\",\n            \"58ceeb96-68f1-457c-aaa6-fff6430b89ab\",\n            \"27ff7dd4-28b2-4061-aa32-89f63499da79\",\n            \"a4763f0c-9aea-44f6-bec1-b451380d41dc\",\n            \"fb876f59-d3a1-4b03-896d-1b0eb4d3331c\",\n            \"e9ec1576-e872-4bab-aa3d-b4ad0c937963\",\n            \"75458c01-000f-4b7d-9a33-e9764ebe4045\",\n            \"e97de01c-e616-4e6f-a5da-38cea772967c\",\n            \"fb90bfd5-719d-4270-935c-ff0ee6ba29f8\",\n            \"637a7af5-2dcd-49bd-8cc4-c8c2f69c0dd9\",\n            \"ae6ed45c-60f4-4ac8-9fbd-7a410da08cbb\",\n            \"c4cb5e8e-931e-414a-b744-a6097917f006\",\n            \"365ff193-5314-4c77-a476-cdf903f1f849\",\n            \"cbf16b21-29e1-4286-9fd8-3074b06a9e97\",\n            \"18892917-90f2-44c3-bf81-b9a98aa52249\",\n            \"2f5c8b70-8639-40db-8e4f-45bace05d849\",\n            \"51603f99-3c68-48d9-9845-6a24ac49b6dc\",\n            \"b0c571cf-0b88-469f-a9a3-6707ec35b32d\",\n            \"3a4dd2b6-54d1-4db7-bf90-765d4ad6e73c\",\n            \"904e1837-2438-4858-ac7a-0baee832f962\",\n            \"fe4acaff-0e87-4d75-b597-fa18144d1768\",\n            \"0fa5ae11-2714-4060-b3f6-f7f9678673ea\",\n            \"0d91a86d-3385-4bce-bd94-9fe2bc815579\",\n            \"1d43482b-eff7-411f-b757-579a73afbfda\",\n            \"b90832b1-116d-4bcf-8f4b-c11fe019bbd3\",\n            \"9a0ea415-749a-449d-a8cf-77f0754f3e1d\",\n            \"e42fe3c3-9afa-4576-bfa9-77fe2bd13337\",\n            \"870a4894-5b50-4aa4-804d-6bccc12f1665\",\n            \"a00d65c4-f007-47f7-b24e-6b69da43804d\",\n            \"0f804313-c8fb-4a60-b3d2-9e4c883086c0\",\n            \"cd1a5081-21d8-4726-a172-b03f7187e402\",\n            \"4f6ac833-2172-43c2-a860-5f3fdc652cdc\",\n            \"6b2b82a6-d457-4dd3-aaf5-b14b6477989e\",\n            \"5a956a50-2a4d-43ad-a5c0-53d5f6a204d1\",\n            \"36ac4f67-daea-4341-b55c-d84d258bd68e\",\n            \"9b051279-5d04-4495-8d3d-e5b2b7e85081\",\n            \"f9eddd6a-4d1a-4289-8e88-ba58dd6354cd\",\n            \"a0dda8be-3616-4cdc-aedd-c5cbe752f04b\",\n            \"233e77c9-889c-4295-af09-88bbfd2a1b6f\",\n            \"cfe08676-d4ab-4d75-b4c9-0b2f756da043\",\n            \"1c4d9c08-b7c6-45ac-ac21-4fdcfaa32344\",\n            \"930bfada-f227-47d7-83c3-8ba44a57c923\",\n            \"ddf682c1-ed50-4d21-886a-219266ab94aa\",\n            \"27ae48fc-59fa-4821-b3ba-52e025169a11\",\n            \"8bb5e199-d88a-4fc6-9ca6-ec0ced71d0fb\",\n            \"a0a7e179-4a47-4eb7-82d3-20fb7a16fef8\",\n            \"28f3a93b-4d7d-4e6f-be8c-e909d2b80014\",\n            \"a0c729af-8236-4484-bbd7-c685629e9f3d\",\n            \"3d024cd4-06a8-404e-a967-337d70c7c46f\",\n            \"309b31aa-2ad4-425c-9a2d-7f2a89525de7\",\n            \"ee0acfb7-79bf-4b26-ae53-9dbf2c24afee\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 99.853515625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.837816596031189,\n          \"Height\": 0.046348340809345245,\n          \"Left\": 0.09153252094984055,\n          \"Top\": 0.6651181578636169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0915403962135315,\n            \"Y\": 0.6651181578636169\n          },\n          {\n            \"X\": 0.9293364882469177,\n            \"Y\": 0.6656723618507385\n          },\n          {\n            \"X\": 0.9293491244316101,\n            \"Y\": 0.7114664912223816\n          },\n          {\n            \"X\": 0.09153252094984055,\n            \"Y\": 0.7109060287475586\n          }\n        ]\n      },\n      \"Id\": \"252dc979-6d60-4536-811f-24955ed8bb03\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"73ffaeec-5756-4273-bc7b-86963c7e6aef\",\n            \"b695bad1-ba0f-4fc0-81fc-61ed2f99ecb2\",\n            \"e9a38848-0945-4c35-bb52-3538e2757442\",\n            \"93202fe2-fb8f-413b-b978-c3ad959b78a6\",\n            \"b281f228-61b3-41e6-ae8d-c873632e2a13\",\n            \"b5de7365-300c-4a3b-9148-4e3ba41aa448\",\n            \"6d14c8f3-e2b9-4366-a221-acc829a2605e\",\n            \"c81e8218-651e-4c4c-8dd3-e3328515c30a\",\n            \"d638d8a5-b5cd-4d68-ac58-e9f0f07cf6bc\",\n            \"97fe417c-2c73-4594-a64f-4c375c780506\",\n            \"3dfc396d-925e-424a-8071-88535dd834b8\",\n            \"1673716c-d700-4147-a5e6-d6dfd27d688f\",\n            \"0d7e28c2-0899-4a23-a9c7-40b63cb18993\",\n            \"cf86b63b-02fe-4bc4-a83f-e9e6fd0ab425\",\n            \"9c36f350-6f84-4c4c-b572-eed8d3e17ccc\",\n            \"c07dabf5-98ac-45f0-a0f3-691922957f1c\",\n            \"588b8bb1-763f-4de5-bd51-2b5a969037e1\",\n            \"2c68c642-49f3-42be-b0ae-f0419e978525\",\n            \"dbe90c8d-6499-42eb-bd64-3020b943bf2e\",\n            \"1d0ae8d4-edf6-4eaa-ad5c-2ddcdb6f5c33\",\n            \"628f17a4-b04e-43a7-8de1-7caadef57b9b\",\n            \"8fa29edb-e0d9-46f9-9db6-83c6b1c303a7\",\n            \"bfe26a7e-f851-46d1-8136-db2413b00d1b\",\n            \"dc776582-fe4a-4f80-8007-0a7201b1912d\",\n            \"d17b406c-a4ea-4dea-a60c-764927e82092\",\n            \"9303e061-2c29-4812-9081-efbbebe29406\",\n            \"7d5fc7a7-7b1e-4725-8f1e-aa941bc7e443\",\n            \"745e20a9-541e-4790-8d07-234f1fa57b2a\",\n            \"9a7e64b7-085a-491c-93f8-248dd73c506a\",\n            \"2a41187a-59a8-4b97-a19b-202c28d9dccb\",\n            \"4df05427-6ce2-40f0-887e-c59bb3fe0383\",\n            \"961780e4-1008-4ad8-b5ba-86cacf38da3f\",\n            \"149528f9-5a6a-4811-b9e9-fe1ff1361348\",\n            \"73c78f2a-5a75-4426-9954-33d5e4ad04cc\",\n            \"dd099be1-ffe1-484a-aa40-7d51f2603dd5\",\n            \"cd1aea12-aafb-4cba-84ea-123fa337fce3\",\n            \"0492a647-e57c-423d-8ad2-4914f1fadf50\",\n            \"c8c072a7-ff2f-4e33-9908-d6668f1d88a9\",\n            \"8167d8eb-b12f-4894-bb29-16911e981297\",\n            \"afde11ba-dc69-4e49-99a5-6a334903dea6\",\n            \"3747d502-842a-40e1-bed0-5b176491f4ba\",\n            \"f46905ef-85d4-4836-92a8-b3584e7d1b23\",\n            \"46a174da-209e-4283-a1dc-c6dc47a74b23\",\n            \"ec944a61-87e1-4174-bea0-fd380d80dfb6\",\n            \"52150f9c-33b0-4492-a18a-301392b60cf9\",\n            \"64fd5185-80f0-4d1a-95a9-ca506a4b5e9e\",\n            \"52f0921b-f882-43b4-a30f-6e2f5cd95ac0\",\n            \"311dc1a6-8494-4d7d-bde6-504fc9122e92\",\n            \"2502b778-48f4-4ebe-88c3-3a747615b605\",\n            \"cafc5e36-5210-4f90-9ddf-9da88f5b546d\",\n            \"493859db-ef4d-4387-b422-b117c6ef6406\",\n            \"e4c47147-3dad-44e6-9831-148b4c1e0891\",\n            \"363bbfba-3a5a-4301-8933-8bdd3cbf1bb9\",\n            \"c8da32d4-efdb-4c13-a453-dfd573fcc74a\",\n            \"d9484113-4a0e-4801-97b0-ad71a7b23294\",\n            \"9714b133-9273-4173-9f38-e7a085b67e04\",\n            \"76754d7b-1f25-4baa-8bb3-edaae21dbd45\",\n            \"fb95e17a-fba6-4dd1-8943-23ef6dce3cfb\",\n            \"b54e09d6-48a6-4b50-9204-3f510fb0e47e\",\n            \"e5bc5763-8294-4542-93f2-963d3193a374\",\n            \"8f49f242-d445-423d-9016-b736232ff04f\",\n            \"f7927854-19c7-42e8-9642-744a916a7f87\",\n            \"ac11e3a6-6977-46dd-84ce-e89c4d0e3b46\",\n            \"e2751441-bf83-46c1-a79d-4f8e5312271d\",\n            \"37fdde07-96b1-4e9a-a248-4359d7d6491d\",\n            \"b76095e7-fbd4-4b5c-a6bf-27e73b16f91a\",\n            \"a8734a24-cd18-495a-bc4b-7bbf2b49e560\",\n            \"b098023c-6139-4c86-9611-50568c798494\",\n            \"9068cac5-6495-4d93-be9d-229026bc1ee9\",\n            \"1cbde2b7-408b-426d-b33f-feef4309d6c9\",\n            \"04502daf-17d6-4d53-85ba-e03646327c9c\",\n            \"4981d1a5-cbcd-4bf6-9950-a83f2cbc490b\",\n            \"645ba121-45fe-4fd9-ab63-e7308c7c787e\",\n            \"211402ac-274b-4276-b930-815199cd0aa7\",\n            \"08e78dcb-3327-4344-b83a-954ce5e5a458\",\n            \"9a767162-bcab-40f9-a4e2-62669740f76d\",\n            \"4a6d9851-4b18-4d74-8543-842b1c82cca8\",\n            \"84c6ea46-5c92-4100-8ef6-11fed3aaaf0e\",\n            \"50a65e8d-6672-4247-84d7-75a6856aaa18\",\n            \"b613e6b7-78e9-4bab-b35b-23449d662ea1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 99.755859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4959731698036194,\n          \"Height\": 0.012023763731122017,\n          \"Left\": 0.09246833622455597,\n          \"Top\": 0.7123680114746094\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09247034043073654,\n            \"Y\": 0.7123680114746094\n          },\n          {\n            \"X\": 0.5884404182434082,\n            \"Y\": 0.7126999497413635\n          },\n          {\n            \"X\": 0.5884414911270142,\n            \"Y\": 0.724391758441925\n          },\n          {\n            \"X\": 0.09246833622455597,\n            \"Y\": 0.7240589261054993\n          }\n        ]\n      },\n      \"Id\": \"e89f0860-71b5-4aea-9f38-a8443e64444f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef922cb1-c999-4403-b18b-60d431c4dc21\",\n            \"97000b24-7957-41b4-abdd-cf8062d8aea2\",\n            \"3407fe2b-5e14-4262-a208-29551b6b7497\",\n            \"8f84512f-46d2-4c88-a6c9-57730305fa17\",\n            \"de23c710-2970-4588-a0dd-2e11d469b961\",\n            \"a6d7f1f8-48bb-4aee-b5ef-913725462272\",\n            \"b977a0e3-8339-41c9-a40e-c20f28521647\",\n            \"878fc512-0fa4-4dbe-9bc2-1fb50ddab427\",\n            \"b530ed0b-4158-447c-9333-b69698edfa39\",\n            \"52a06b0c-1151-437e-8e66-99f0259ca1af\",\n            \"fcda573c-0f9a-4fa2-8aa9-a9e84049c16f\",\n            \"71810344-635a-4207-9bf4-37a8fc4f4334\",\n            \"abcf844f-7e95-49dc-8c76-5699971aa1ed\",\n            \"b1dd0020-64e4-4966-9b5e-3209d89bfc3a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 99.658203125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.584954023361206,\n          \"Height\": 0.01208475511521101,\n          \"Left\": 0.09230998158454895,\n          \"Top\": 0.7240588068962097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09231198579072952,\n            \"Y\": 0.7240588068962097\n          },\n          {\n            \"X\": 0.6772623658180237,\n            \"Y\": 0.7244513630867004\n          },\n          {\n            \"X\": 0.6772640347480774,\n            \"Y\": 0.7361435294151306\n          },\n          {\n            \"X\": 0.09230998158454895,\n            \"Y\": 0.7357498407363892\n          }\n        ]\n      },\n      \"Id\": \"924e61b6-997a-4aff-a6ef-e071afea3b1a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a70faaf-b7f2-46e5-867a-6db40fa90e2d\",\n            \"beb66b02-db3c-41f0-865d-346031b761e2\",\n            \"3279f99b-d88c-4ff1-a6c8-cb66e3363639\",\n            \"b8219a65-e047-467e-aaaa-17aaa98a9fa1\",\n            \"6ebc396e-14a5-4b0f-b8c9-e7b53eed8a2a\",\n            \"fed4d6e0-b32b-4cbd-9679-fe8ac78f7da9\",\n            \"24e67836-7c99-4345-8979-ef8c0e1f7404\",\n            \"a6c7521d-8b45-427d-bd60-51d815bb8664\",\n            \"c5e1d3d2-5066-431c-8eee-c3ee7ec976a9\",\n            \"65ee55a9-284d-4d7f-91fb-0af3d3accb40\",\n            \"6a2d061c-3003-45f9-a966-8bed019681f3\",\n            \"6964f2fe-6d19-492f-9903-2033299ca27b\",\n            \"20717807-77e9-4fb5-ac8a-0310bcec284c\",\n            \"3403cdad-34f4-4daa-a17a-3ae756918128\",\n            \"9b2bf285-48a4-4d41-98d2-5f5294f725b7\",\n            \"5d7adfa2-4cd9-4e72-b3af-ad6d6180e4a7\",\n            \"c8ff7c38-205b-4940-a176-47ae26f60c62\",\n            \"0dee8c94-572d-4e3f-965b-2b9b3abcb073\",\n            \"2914bcb2-e2ee-4dee-aa50-6bd206fdf839\",\n            \"4b5288f4-7100-4fc3-948d-2c5676f2a74d\",\n            \"b992e35a-13ce-4f62-9aae-1f9d3cf1fef5\",\n            \"11e2f61c-6158-403b-bdec-b27d54822e38\",\n            \"72557e48-9daf-4dc1-b650-bad505f5867c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"948da51a-159f-4324-9e89-a692e56e8231\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"161535cf-4808-464b-a205-18f0c2727fa4\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the asset value for Framework Interim Account in April 2021?\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 99,\n      \"Text\": \"186.7\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032338716089725494,\n          \"Height\": 0.007933300919830799,\n          \"Left\": 0.5173302292823792,\n          \"Top\": 0.47797825932502747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5173302292823792,\n            \"Y\": 0.47797825932502747\n          },\n          {\n            \"X\": 0.5496683716773987,\n            \"Y\": 0.47799864411354065\n          },\n          {\n            \"X\": 0.5496689677238464,\n            \"Y\": 0.4859115779399872\n          },\n          {\n            \"X\": 0.5173306465148926,\n            \"Y\": 0.4858911335468292\n          }\n        ]\n      },\n      \"Id\": \"161535cf-4808-464b-a205-18f0c2727fa4\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"180da397-d96f-414c-a3fa-61ef37b66973\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"925c4758-c2dd-40b8-999e-04b44bdc308d\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"How much is the contribution for Switzerland Administered Account?\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 99,\n      \"Text\": \"1.6\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01755782961845398,\n          \"Height\": 0.008644912391901016,\n          \"Left\": 0.6346870064735413,\n          \"Top\": 0.5960351228713989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6346870064735413,\n            \"Y\": 0.5960351228713989\n          },\n          {\n            \"X\": 0.6522437334060669,\n            \"Y\": 0.596046507358551\n          },\n          {\n            \"X\": 0.6522448658943176,\n            \"Y\": 0.6046800017356873\n          },\n          {\n            \"X\": 0.6346880197525024,\n            \"Y\": 0.6046685576438904\n          }\n        ]\n      },\n      \"Id\": \"925c4758-c2dd-40b8-999e-04b44bdc308d\"\n    },\n    {\n      \"BlockType\": \"LAYOUT_HEADER\",\n      \"Confidence\": 86.23046875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16622620820999146,\n          \"Height\": 0.009065395221114159,\n          \"Left\": 0.06935500353574753,\n          \"Top\": 0.04881434142589569\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06935665011405945,\n            \"Y\": 0.04881434142589569\n          },\n          {\n            \"X\": 0.2355812042951584,\n            \"Y\": 0.048907432705163956\n          },\n          {\n            \"X\": 0.23558035492897034,\n            \"Y\": 0.057879738509655\n          },\n          {\n            \"X\": 0.06935500353574753,\n            \"Y\": 0.05778639763593674\n          }\n        ]\n      },\n      \"Id\": \"f7c53f0d-7786-42c4-bbc7-358027c8317a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bd0b8aed-b700-49af-9b93-6dbce6e0777c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_HEADER\",\n      \"Confidence\": 78.515625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34066304564476013,\n          \"Height\": 0.009830567985773087,\n          \"Left\": 0.3993512690067291,\n          \"Top\": 0.04902533069252968\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3993513584136963,\n            \"Y\": 0.04902533069252968\n          },\n          {\n            \"X\": 0.7400126457214355,\n            \"Y\": 0.04921611398458481\n          },\n          {\n            \"X\": 0.7400143146514893,\n            \"Y\": 0.058855898678302765\n          },\n          {\n            \"X\": 0.3993512690067291,\n            \"Y\": 0.05866457149386406\n          }\n        ]\n      },\n      \"Id\": \"059ae5be-47d5-4e32-ba93-3d104a382cdf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2b711119-9b54-4cc6-9b3c-1355493c6981\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TITLE\",\n      \"Confidence\": 52.9296875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32981640100479126,\n          \"Height\": 0.01522541232407093,\n          \"Left\": 0.09297806769609451,\n          \"Top\": 0.10282439738512039\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09298064559698105,\n            \"Y\": 0.10282439738512039\n          },\n          {\n            \"X\": 0.4227944016456604,\n            \"Y\": 0.10301203280687332\n          },\n          {\n            \"X\": 0.4227944612503052,\n            \"Y\": 0.11804980784654617\n          },\n          {\n            \"X\": 0.09297806769609451,\n            \"Y\": 0.11786135286092758\n          }\n        ]\n      },\n      \"Id\": \"28753ac7-ae25-4109-94c3-a8b55a792d66\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52ad7a7a-496a-49d9-ad89-5d9107f333cd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 96.97265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8250795006752014,\n          \"Height\": 0.029128670692443848,\n          \"Left\": 0.09352078288793564,\n          \"Top\": 0.1424936056137085\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09352567791938782,\n            \"Y\": 0.1424936056137085\n          },\n          {\n            \"X\": 0.9185925722122192,\n            \"Y\": 0.14296838641166687\n          },\n          {\n            \"X\": 0.9186002612113953,\n            \"Y\": 0.17162227630615234\n          },\n          {\n            \"X\": 0.09352078288793564,\n            \"Y\": 0.17114359140396118\n          }\n        ]\n      },\n      \"Id\": \"6b065e4c-7fcc-4977-9341-5eef0cd84ead\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7ede095-24e5-48da-ab73-314738ef5891\",\n            \"454bf866-80da-47dc-9b7c-072785bf5efb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 96.435546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8231858015060425,\n          \"Height\": 0.07802622020244598,\n          \"Left\": 0.09370112419128418,\n          \"Top\": 0.1905985325574875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09371437877416611,\n            \"Y\": 0.1905985325574875\n          },\n          {\n            \"X\": 0.9168661236763,\n            \"Y\": 0.19107873737812042\n          },\n          {\n            \"X\": 0.9168869256973267,\n            \"Y\": 0.26862475275993347\n          },\n          {\n            \"X\": 0.09370112419128418,\n            \"Y\": 0.2681340277194977\n          }\n        ]\n      },\n      \"Id\": \"f74d13f3-be80-46a9-86a8-6c846654e456\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a0f1da78-b0a6-477d-86c7-7ff2df32019a\",\n            \"c82a358a-e9f1-4b3c-94ac-b3352a7c6da5\",\n            \"d0ae0063-fa83-4b05-854b-744594b92020\",\n            \"83b539da-a9ef-4e43-a5dd-5f9b50ad60be\",\n            \"832a4c1f-9d2f-4f18-99ef-37eb49a2ca76\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 88.232421875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4514772295951843,\n          \"Height\": 0.01316615380346775,\n          \"Left\": 0.09392870962619781,\n          \"Top\": 0.3035045862197876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0939309149980545,\n            \"Y\": 0.3035045862197876\n          },\n          {\n            \"X\": 0.5454050302505493,\n            \"Y\": 0.303776353597641\n          },\n          {\n            \"X\": 0.545405924320221,\n            \"Y\": 0.3166707456111908\n          },\n          {\n            \"X\": 0.09392870962619781,\n            \"Y\": 0.3163979947566986\n          }\n        ]\n      },\n      \"Id\": \"19fe2b40-cad7-44d8-a347-818c9c91aea5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9d7d283a-3a98-4866-9665-0dbe21a15e02\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TABLE\",\n      \"Confidence\": 95.166015625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8556329011917114,\n          \"Height\": 0.2776670753955841,\n          \"Left\": 0.09324735403060913,\n          \"Top\": 0.3354804217815399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09329477697610855,\n            \"Y\": 0.3354804217815399\n          },\n          {\n            \"X\": 0.9488012194633484,\n            \"Y\": 0.33599990606307983\n          },\n          {\n            \"X\": 0.9488802552223206,\n            \"Y\": 0.613147497177124\n          },\n          {\n            \"X\": 0.09324735403060913,\n            \"Y\": 0.6125889420509338\n          }\n        ]\n      },\n      \"Id\": \"2e86f427-7e33-4d19-ac8d-dec9d3dbf719\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f5a348a-86de-4f2b-a6e3-54c374726f79\",\n            \"2bc8e6c7-6267-42f5-bb82-44ad2dcd85ed\",\n            \"2d9a4205-0d9f-4c05-8941-0b069f19c429\",\n            \"cbffa156-cfab-480a-8888-70f9106f3d0b\",\n            \"66e5d0c3-ea18-4da3-9876-89e73315527f\",\n            \"4a54d4b3-8006-489e-ac5f-7a45f845c58d\",\n            \"e4447442-1aff-4392-82ed-c44997f66899\",\n            \"d5ff7481-bed9-4745-9f29-4eb9090b06c6\",\n            \"79c6da7b-d8ad-4bc5-98a3-be1c6b982636\",\n            \"80021045-9e19-4a2d-b854-c2086604c95a\",\n            \"25809043-9166-4b6b-a978-df8127a3c3ad\",\n            \"d5fe6d81-1845-427a-a831-f26f3152accb\",\n            \"2766a3dc-e091-4aad-9016-cfd6c70ce2d6\",\n            \"eba993a5-3745-441f-96eb-1a6ec4765969\",\n            \"c5df1173-8f2a-48e2-819e-8634e7cf5b05\",\n            \"d0cee485-fe24-4f6b-9e73-15b03e41a3cb\",\n            \"58ce2b3d-87ff-47ee-b4dc-32292f68fa1e\",\n            \"032bf61e-edfb-4694-8898-ba95f27df5ce\",\n            \"d96e7607-3559-4eb4-a6b6-140f340c985f\",\n            \"92a5af6f-ad33-4102-bd2c-b654df045f20\",\n            \"759eba37-f21d-4179-89d1-e46473d0704b\",\n            \"19fc7de8-c98e-4020-925d-a3d6eca294e8\",\n            \"da12f83f-5b6a-4fbc-931f-28955c412be5\",\n            \"309b6df4-e01d-4365-8fd3-42230a9b44ba\",\n            \"e28c2ae0-e4e2-4b55-843c-cdba7fe6023f\",\n            \"8a7ccc80-9c9a-48e7-be5d-d2b8cb252194\",\n            \"ec4f7b92-6fdf-4e1c-a464-60233bb389a2\",\n            \"70bc60d9-479e-4d33-9aaf-02bea779499f\",\n            \"0cb981f6-0f72-4a9c-a3ab-faf97aba0c71\",\n            \"27c79dfb-ba6d-4986-b339-bc8671abaaf5\",\n            \"9b87584c-8c30-4e8c-a714-f34275009f5b\",\n            \"a47fd7b7-171a-4182-8ba0-35c55337fc6f\",\n            \"0b8b1380-b8b3-4f01-bf19-d0fbffe37f09\",\n            \"c8e0d2bd-98a7-446d-b484-0e0428993343\",\n            \"8f922c06-0a26-4b88-a99e-07a4193d0fc7\",\n            \"d321e8fd-3f62-4230-9809-67bb551f7bf0\",\n            \"cadeaa33-82b5-4398-bb6d-de1427b45267\",\n            \"189d8d77-784b-4bc6-8129-35b6b085d12f\",\n            \"d7358027-16af-481d-a1f3-6338d609bcab\",\n            \"8c73fd1e-edc0-4dc6-8fe6-bce511fe7070\",\n            \"2a6ae35d-98b3-4bad-ae8a-85dfa3ccb5be\",\n            \"2879ab1d-0062-45d1-bcae-4fe6a12ef5ba\",\n            \"9f60471c-ebfa-47d1-9b37-bd01d07f08f0\",\n            \"399d579b-d1c7-4a67-9161-185398fddde7\",\n            \"c4306ce9-365c-4aff-8a56-51e76396c097\",\n            \"c38cec55-1ec0-4b05-a989-075e779e4432\",\n            \"b27a894d-ab01-4afa-a012-471c880a9ba0\",\n            \"f9cce1db-1701-43b9-8c0c-8aebe79ed38a\",\n            \"e12a28f1-1e11-4b22-88e9-965cc2d2313d\",\n            \"39d0bd15-18c2-4e7b-a5f5-dc4ea8d1150f\",\n            \"56e51128-c30c-4bac-84ba-9eb8c884098f\",\n            \"e3544281-562a-4f50-8ccf-db72aef134ad\",\n            \"7069122a-3db8-41f8-b616-09a08bf53e44\",\n            \"9db0f682-746a-4943-b805-3e5abd70bd71\",\n            \"9c2de95b-073a-4075-b037-bc46788c49e7\",\n            \"3c73578e-5e75-4f65-a2c5-b65d58e302f1\",\n            \"ad6ce9a3-1c7a-476b-bfc5-0aabbe4b2096\",\n            \"01f1cb7d-5147-45b6-9b51-270072ec6d40\",\n            \"dfd1e6d0-a218-43e5-91fb-61d8f9a180b0\",\n            \"890cc366-b3d1-40fa-9254-c106077553f5\",\n            \"d996cf4d-afda-419c-a51e-de72c2e8dfc6\",\n            \"eb126a63-0b7c-4d0e-924e-6855f8ce4522\",\n            \"afb68475-73dd-4fba-86fa-3b5ed82179b9\",\n            \"26187b32-4498-4e68-a9d5-90745824d857\",\n            \"87669421-1d87-47c5-8737-28df08b3fb20\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_LIST\",\n      \"Confidence\": 37.841796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8397161960601807,\n          \"Height\": 0.11935307830572128,\n          \"Left\": 0.09345722198486328,\n          \"Top\": 0.6171807050704956\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09347753971815109,\n            \"Y\": 0.6171807050704956\n          },\n          {\n            \"X\": 0.9331405162811279,\n            \"Y\": 0.6177294850349426\n          },\n          {\n            \"X\": 0.933173418045044,\n            \"Y\": 0.7365337610244751\n          },\n          {\n            \"X\": 0.09345722198486328,\n            \"Y\": 0.7359685301780701\n          }\n        ]\n      },\n      \"Id\": \"334cf30c-8270-4c61-a525-f3a12e2c296a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9bd52181-2597-49b7-8e25-cdacab5fbc59\",\n            \"fa0d8429-c34a-4c0e-83f1-96c12e495b46\",\n            \"3f79fbd1-d2c2-4456-99e0-61c9ec40262b\",\n            \"46ff936c-44c5-4ca7-bd1a-289d036cee9c\",\n            \"3abba07d-577e-4594-aa00-b74013d6f123\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 66.11328125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13534455001354218,\n          \"Height\": 0.009617411531507969,\n          \"Left\": 0.09434205293655396,\n          \"Top\": 0.6171812415122986\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09434367716312408,\n            \"Y\": 0.6171812415122986\n          },\n          {\n            \"X\": 0.22968660295009613,\n            \"Y\": 0.6172696948051453\n          },\n          {\n            \"X\": 0.22968566417694092,\n            \"Y\": 0.626798689365387\n          },\n          {\n            \"X\": 0.09434205293655396,\n            \"Y\": 0.6267099976539612\n          }\n        ]\n      },\n      \"Id\": \"9bd52181-2597-49b7-8e25-cdacab5fbc59\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"acb80e54-d122-431b-9919-d82ec143b20d\",\n            \"ee26943f-3c43-483c-a46a-993df4c5eb02\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 70.166015625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8394523859024048,\n          \"Height\": 0.03355635702610016,\n          \"Left\": 0.09370074421167374,\n          \"Top\": 0.6295807361602783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09370638430118561,\n            \"Y\": 0.6295807361602783\n          },\n          {\n            \"X\": 0.9331439733505249,\n            \"Y\": 0.6301310658454895\n          },\n          {\n            \"X\": 0.9331530928611755,\n            \"Y\": 0.6631370782852173\n          },\n          {\n            \"X\": 0.09370074421167374,\n            \"Y\": 0.6625822186470032\n          }\n        ]\n      },\n      \"Id\": \"fa0d8429-c34a-4c0e-83f1-96c12e495b46\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e79d7d6d-a79e-482c-806f-50570c7c647e\",\n            \"3c16cb82-f70f-4781-9e60-38ac1451d9eb\",\n            \"53729296-e9cd-46b0-b47c-ac373579c5fd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 65.771484375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8333415389060974,\n          \"Height\": 0.047224704176187515,\n          \"Left\": 0.09369227290153503,\n          \"Top\": 0.665502667427063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09370024502277374,\n            \"Y\": 0.665502667427063\n          },\n          {\n            \"X\": 0.9270210266113281,\n            \"Y\": 0.6660539507865906\n          },\n          {\n            \"X\": 0.9270337820053101,\n            \"Y\": 0.7127273678779602\n          },\n          {\n            \"X\": 0.09369227290153503,\n            \"Y\": 0.7121697068214417\n          }\n        ]\n      },\n      \"Id\": \"3f79fbd1-d2c2-4456-99e0-61c9ec40262b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"83fd62b2-d356-46c4-8f99-5c6c98065c1f\",\n            \"ef17717e-30dd-491b-8dbe-6560874cdd6c\",\n            \"47b14a64-a1d0-4883-9dc2-2e51bb5c6964\",\n            \"c0688fe5-b681-4fc0-bd36-cdc3c3725f23\",\n            \"f8ca168c-b830-4652-b2b5-0b843a404a5b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 59.27734375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4930112659931183,\n          \"Height\": 0.011041933670639992,\n          \"Left\": 0.09432537108659744,\n          \"Top\": 0.7137752175331116\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09432720392942429,\n            \"Y\": 0.7137752175331116\n          },\n          {\n            \"X\": 0.5873356461524963,\n            \"Y\": 0.7141053080558777\n          },\n          {\n            \"X\": 0.5873366594314575,\n            \"Y\": 0.724817156791687\n          },\n          {\n            \"X\": 0.09432537108659744,\n            \"Y\": 0.724486231803894\n          }\n        ]\n      },\n      \"Id\": \"46ff936c-44c5-4ca7-bd1a-289d036cee9c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"080711e9-3886-432d-b627-f5c6571d6d71\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 63.720703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5833300948143005,\n          \"Height\": 0.011073093861341476,\n          \"Left\": 0.09345722198486328,\n          \"Top\": 0.7252880930900574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09345904737710953,\n            \"Y\": 0.7252880930900574\n          },\n          {\n            \"X\": 0.6767858266830444,\n            \"Y\": 0.7256796956062317\n          },\n          {\n            \"X\": 0.6767873167991638,\n            \"Y\": 0.7363612055778503\n          },\n          {\n            \"X\": 0.09345722198486328,\n            \"Y\": 0.7359685301780701\n          }\n        ]\n      },\n      \"Id\": \"3abba07d-577e-4594-aa00-b74013d6f123\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"05ed4d51-06f5-4d5d-a655-1c69c3275646\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_PAGE_NUMBER\",\n      \"Confidence\": 82.32421875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015799038112163544,\n          \"Height\": 0.009009525179862976,\n          \"Left\": 0.9087359309196472,\n          \"Top\": 0.9708130359649658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9087359309196472,\n            \"Y\": 0.9708130359649658\n          },\n          {\n            \"X\": 0.9245325326919556,\n            \"Y\": 0.9708243012428284\n          },\n          {\n            \"X\": 0.9245349764823914,\n            \"Y\": 0.97982257604599\n          },\n          {\n            \"X\": 0.9087383151054382,\n            \"Y\": 0.9798113107681274\n          }\n        ]\n      },\n      \"Id\": \"9107a9fa-b463-40f5-862c-a497a905a4e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ab5eeff-d942-42f2-86fa-a8a29c954fd4\"\n          ]\n        }\n      ]\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/form1005-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 3.49144045230787e-7\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"84c0fe4f-692e-4cd6-8d2b-dc4081303328\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"608b135d-508e-466f-aeb8-bc49df2fdc50\",\n            \"734dfbf7-9dac-4186-a73a-469ac9904c78\",\n            \"5cda3306-f152-45ed-a599-047291fc934c\",\n            \"a2cb6c1a-e8a0-468c-b4c4-8385f124b487\",\n            \"0f67019d-0a84-4226-8fc4-0b4922968816\",\n            \"efca28c7-4ba8-44b3-bd82-6270b1119f0c\",\n            \"5f6414e2-c94d-46f4-8c99-cb3ffb26e527\",\n            \"1f6df5e6-209a-4d3a-8d27-f820abd41ace\",\n            \"3dd001a3-e302-4670-94ff-15f8f6c823eb\",\n            \"6be59362-b48a-45e4-a9ca-60614b8b1a01\",\n            \"807777db-0054-4460-b4e6-a3c6bc054ed7\",\n            \"c5c46960-814c-4400-92dc-a84a401b8788\",\n            \"e3a7155c-a7d3-4c65-9f46-57cfb3a4157e\",\n            \"c05f719d-ce2d-4964-bb77-a1d267a46d64\",\n            \"16120d4e-f11a-4bf9-b8cb-f50ea92ce98d\",\n            \"132e20fe-6a9f-4d1d-8d67-8efb3b53de58\",\n            \"457ad9d9-2182-4a72-9a81-d6c2519c71f1\",\n            \"49c03a1f-1647-4c59-9185-f07f68c5f95b\",\n            \"31cb7fb9-04ef-41ce-9836-b098463f577d\",\n            \"c8637bac-acda-442a-a68e-497ed85e25e8\",\n            \"6b52e0cd-eb0a-466f-83fa-1756b4286996\",\n            \"44153b58-96d1-4b7a-b862-54be03a17cdd\",\n            \"50d7e295-1c0a-4830-991f-90e394797f27\",\n            \"0798d755-3022-46cd-838b-9c6a7f775585\",\n            \"8b78b4b0-70f4-4d76-84ad-f8a060186f28\",\n            \"c1884dc4-7c03-43e6-a747-e4bbd3349bdf\",\n            \"004d1f2c-d6b8-41a6-8a4b-48e98071009e\",\n            \"a6ed7ab3-bba0-4113-9c8a-83ec7d7b405a\",\n            \"b2936001-ed2c-4c01-996c-2bdbc0dc27a9\",\n            \"faaf878d-e7d7-4a22-8679-3c7fd1b6838a\",\n            \"05ee1b5b-2738-4625-89e6-d6ecdcb3b952\",\n            \"f69a344b-f017-4a77-820e-5150a742d565\",\n            \"a14c1176-56e7-4c94-9da4-20172a268dfd\",\n            \"27f33b62-e80c-408a-9db2-f360c5e8dc9b\",\n            \"dfd5ff9f-33e2-4878-ac31-2c4f5a98817c\",\n            \"87c22dcd-9745-4222-9392-7fae2662fc46\",\n            \"ccf6d04e-62a6-47a7-a339-a6b60c11636c\",\n            \"2072d41c-65c2-4926-afa1-f1b02d8bba87\",\n            \"cf4bfd34-b19d-451b-8407-3870c1e14854\",\n            \"1e80204f-0c52-48c5-9ac7-f982e3b9fc04\",\n            \"976f4378-ac8b-438c-9407-3695f29d13a2\",\n            \"1a465e29-f814-4ba4-a252-2dbb81ebeaab\",\n            \"97a2e24f-253d-42f4-ba7d-7399b66d12f6\",\n            \"64e877d1-9053-4752-87ce-25a26b6dd0d8\",\n            \"3d1eedc4-807c-4821-bbe1-61930558f664\",\n            \"a64f517d-b6af-4c0f-bb58-d2052386248e\",\n            \"2d886c2a-03cd-4f4e-963f-2e56792ab2aa\",\n            \"6c648f83-b00e-4998-a56f-9fddc1af0600\",\n            \"09a5c826-2ea3-4278-9eea-6c88533afaff\",\n            \"c1cd1988-371b-4660-b536-4370c52ed44f\",\n            \"300383db-c133-4610-ae96-1fef6a9de0ed\",\n            \"81759555-44bf-4a22-a4a7-5ed88388a045\",\n            \"687291d0-c171-4e06-a48f-10784df04844\",\n            \"5184eb46-3e0a-49bc-b355-6bdcb3372320\",\n            \"cd7467c5-df30-4fee-a04c-9c98b3ecaed3\",\n            \"6fe6c390-f217-4920-88c2-f5fe68a53b89\",\n            \"81af2ebf-b3e0-47c8-9be3-d8d15689389c\",\n            \"93a508af-cd6c-42b8-aa4a-dd9ba6412b40\",\n            \"52010ffd-9987-4161-b34a-0e366b0ef63f\",\n            \"9bebc6bf-3f2d-45a0-a96e-a4a659a509e8\",\n            \"b7d0a21e-00b1-4aca-8d3b-1fb8d8278ba5\",\n            \"1deec730-ae7e-4a73-9e57-c1c33ed567c1\",\n            \"48d0558d-7f6d-41b4-a4b9-25b752e5029b\",\n            \"3de06a90-e6a8-47c9-8c65-7c85258ccd5f\",\n            \"2650115e-e724-47c6-95a3-2dec40803269\",\n            \"dd3cc627-946a-4f64-9a5f-aff04ba8bbc8\",\n            \"6e1358f5-7a64-444e-982b-b976968918c8\",\n            \"047524a5-6ad2-45ae-b467-f236f15a7be2\",\n            \"0ae5b31e-c14d-44f1-8f2f-baf39b193358\",\n            \"108f2832-0acc-4a22-8638-2edf4091e47d\",\n            \"606dcb98-a7b4-41a7-8530-74aa399b925d\",\n            \"9f396b6a-d0e5-4419-a2f5-f151a06f1482\",\n            \"57c5d59b-207f-4a02-a093-2774fcaf0cd6\",\n            \"cdbce171-dbb1-4f8d-b21f-ea2fac312444\",\n            \"a7a0ffee-5e5a-4a8b-8eb7-18024581806c\",\n            \"e449777b-95b8-4068-acba-15e1bd3ee21c\",\n            \"abdef1b3-1038-481a-84a8-4b767668ac3e\",\n            \"1aa01eea-494b-4687-a10f-bbc571c7ced0\",\n            \"d7f5fdb4-dae6-4c61-8332-ec0c5e5ad4a4\",\n            \"99d8fb77-23a8-4d71-88ae-5c8da3314a14\",\n            \"2d352df5-fed1-47a7-b3af-3e8198db2120\",\n            \"3babda4d-7ae7-458d-a8dc-403d3db53bd6\",\n            \"de13f2a9-0bcc-4c84-ac2f-36ee6ffc4b85\",\n            \"a973d2d6-a31a-481e-9fd7-3145b12c6464\",\n            \"f134b978-35e8-4136-b045-49b198a80b1e\",\n            \"aff7d032-5ceb-4223-90c3-384bcfbddb5f\",\n            \"d0956989-2c2c-45e5-8c5f-a15c366ab26a\",\n            \"9fa5315d-3235-46a2-8e89-7b47877db5dc\",\n            \"85907639-bf28-4219-ae04-ae60e85fa54b\",\n            \"5d013753-41d1-4764-b423-7c37ffe16abb\",\n            \"d4890e7c-09f0-4da2-bae6-b5ee3369d256\",\n            \"1ad52017-999e-4855-bfaf-c9b9415ceda2\",\n            \"576955d9-baff-4118-bcf5-9b031ad523db\",\n            \"9ea34cb3-5a0f-4684-8827-e62ca20ff893\",\n            \"c81f11fc-6215-4b3e-ad02-2dcadb0aba2a\",\n            \"30dd3f5a-4bb9-4766-927a-e9c29f81b6e7\",\n            \"9f545432-2896-406e-8ac1-b358ba215bb9\",\n            \"176369b9-3d01-4e64-b3fd-b39a8ea3a152\",\n            \"8258e6e2-0921-4b07-957e-a00e54130328\",\n            \"7b9e5654-e5f2-4084-86a9-9132cbf27c58\",\n            \"03921830-8fc6-4ea9-af86-990054febb3c\",\n            \"15b2b0c6-a074-4961-9ad1-0163582dd819\",\n            \"ef34fae6-02b7-4cf3-963a-ab7fc8e8a12f\",\n            \"da65ec75-8bec-4eba-8125-fbbbc6145f1f\",\n            \"29c1f640-f35c-4ef9-a93d-5747047e2eb5\",\n            \"6017337c-fb94-43c0-925e-b2a74475fc1f\",\n            \"9e918c09-d312-4c0a-937f-0e805db712b5\",\n            \"78139c24-0070-4ea7-b2aa-c97328825401\",\n            \"b3489236-a7bf-4059-983d-e2f1eb0c53e4\",\n            \"adbe397c-b717-43b9-90ff-1d9e7e83722a\",\n            \"5dc0efe8-5550-40a0-bf6f-7916a681296d\",\n            \"0e2447ba-5a09-4910-9b9b-2b35d044b06c\",\n            \"2a0348ed-7ef0-41e5-a411-6438d7e16f83\",\n            \"6c2cdeb0-0775-4750-8165-4e137a7b6bfa\",\n            \"fec73954-ef4c-4893-84ea-07019a03bc8a\",\n            \"1d3a9650-6d13-4620-bc47-7437181d7e51\",\n            \"55619255-f1db-40ef-b8f0-513ed1a136b6\",\n            \"c46a25ac-6ad1-42b5-a5d8-58db217a9cdb\",\n            \"e9a0a5d8-20cf-456a-8bfb-e0e91f65ce62\",\n            \"a2dd26e8-8d06-484a-910e-018a248da396\",\n            \"cd6a043c-cc54-4ba8-8dc3-f3b526ab83c4\",\n            \"3383dfa3-9ba4-4164-9010-0c184432295d\",\n            \"6635b054-cf6c-4fec-912e-7d659abff31c\",\n            \"ddcab34a-e842-4692-a71d-b7958ac7883b\",\n            \"7a7dfcfb-d9ac-44da-988b-03ddac93045e\",\n            \"00fdd6b5-ede9-4f23-850e-e79a0055610d\",\n            \"63346150-a31c-463e-a19e-664aa312fc3e\",\n            \"703899a9-b2a8-48f0-9dab-32e56f5878dd\",\n            \"2acfb461-e00b-4803-9d97-d69a81aa1c7f\",\n            \"3b7444c7-9d41-4c24-92fc-613beb57a397\",\n            \"b32353b0-9469-4a4f-9a8c-e15375a2ad53\",\n            \"9942f72c-ae1c-485e-beae-6eb3a41d49ce\",\n            \"f2bc459b-34c2-4736-907c-892801a85a07\",\n            \"d3def23d-c5b6-4d52-a572-c6f1d8cc290e\",\n            \"719f31e1-25f0-4e83-b6af-e610d4c1509b\",\n            \"3cc09ab3-da1a-429e-ba2c-d1b24aba7b08\",\n            \"0d892861-359c-4181-b9b6-29bd49ca9716\",\n            \"a4b12b21-e369-4d4c-af79-124eedd02167\",\n            \"7d31b03e-3265-4993-8e6f-612c73b31d67\",\n            \"00f71c8c-9194-4dd3-a87f-57bc2bde175e\",\n            \"b3548097-eaeb-45e1-a2cc-da6fcddc3500\",\n            \"280c6788-badf-43e9-b70d-bfb3ed7a4e47\",\n            \"2cd050a9-4a1e-4749-99a7-b6e0f2768b95\",\n            \"6441f4f1-f570-4f0c-928b-f06b5bf30d07\",\n            \"22c27a7d-8e9a-4ecf-8f21-d77b25c49e8d\",\n            \"db6520a3-d6c7-42af-bd8a-0539b04704b8\",\n            \"e5456bb4-26b3-46c9-b15a-229cbc1c855f\",\n            \"b8894b35-66bc-4ad9-a6de-9f8ba9ed1577\",\n            \"f209c3fa-b710-402f-b82c-46fabd1ca7b8\",\n            \"15393298-e952-47d8-b43a-16e13b62b24d\",\n            \"a9a73d7a-c597-4799-bf71-b63843a7a604\",\n            \"f12cc3b2-3460-481b-a03d-08cbb2b1d7e5\",\n            \"a91c92d9-147e-484a-8516-98a29317110a\",\n            \"a46b4df4-851f-43b1-87c3-35da0afc47c3\",\n            \"b4867c56-a95c-4e2f-a0d5-25242229d9b9\",\n            \"19de25a1-18a3-4466-9da3-393d1c761d32\",\n            \"312eb7b5-64d0-4d45-9180-7c383b5363e2\",\n            \"16a750f5-e936-4e3b-b21b-1428135b4806\",\n            \"d5f54c3c-0fe3-4385-a45a-0dee90c1c2fb\",\n            \"d546f653-0782-4395-93db-9a4b0accc515\",\n            \"c24bde99-b498-4e21-b75d-51c4c9613d29\",\n            \"9c08e340-2804-4c7c-855a-e22ca517853d\",\n            \"41f2903d-dfbb-4e5a-bf57-87205401508f\",\n            \"bb917b0f-3ff9-4139-9256-0560c4752982\",\n            \"720e15c6-50e2-485b-902e-0b0cd0476eac\",\n            \"f050889a-6e06-4887-8c69-4349fddc59b0\",\n            \"e93909a1-423a-4536-ba32-e98dbfe3ed68\",\n            \"60752022-f7c2-4801-bc21-f61b182eb8bd\",\n            \"9b21564e-113b-4d55-8cf0-507766ad02d9\",\n            \"bbacaf73-ae88-4ff1-8f07-6b74f2094ffd\",\n            \"bc3625da-9319-4236-9bd2-aac9c52177df\",\n            \"b1bbeaf4-f9f7-466b-8ef6-f2cccfd07455\",\n            \"5492f29d-6fb5-449b-adf8-674a9f442c6a\",\n            \"dcd6f82b-c3d2-40ab-adc2-4a90bdd199b9\",\n            \"ce9ed0c8-2a49-423d-8d23-dd41698cce4d\",\n            \"729f4f67-d171-4f81-8fd0-a555aae52cdb\",\n            \"a76e7800-fdfa-4cbc-9aec-da7aa59816f2\",\n            \"141f4bb1-8b3f-40f4-a659-c170d9e618b4\",\n            \"e1dffadf-a7e8-45cd-95d6-78991a972987\",\n            \"4508bfda-d0ed-47a5-860b-b8b172057e24\",\n            \"7cc162ce-9977-4d03-bb88-853c1d0a8047\",\n            \"ceb2bb84-e981-4ec6-9cc0-0d7e63f5d09e\",\n            \"f6655a86-7515-4139-9670-0f83b1e9ea7b\",\n            \"ab78e089-f05d-4aa0-b22e-72d34786de74\",\n            \"b8b72d5e-6b04-491e-8bc6-5f56c5d099ce\",\n            \"70a37294-6bb9-4f81-be24-b737e51c99c8\",\n            \"f7cd683c-3b19-4dcd-bbec-b80307b02ca8\",\n            \"7ed77f30-a577-446a-b271-e29c51201b43\",\n            \"1ab9c226-5eaa-404d-a540-458ed9357c61\",\n            \"e370cbe1-5b5b-4e1b-9402-89d9255c4ff2\",\n            \"58d05b68-e529-4cd7-bd80-5ebfdaec738c\",\n            \"cb9900fc-35b4-4d42-b191-8f5bbfebc86a\",\n            \"cd235c9a-ee5d-40aa-b93f-e60ef6480827\",\n            \"79553e7f-7d1f-4f78-8498-948d235f7aee\",\n            \"a0d74b28-4b57-4575-b10d-0567a570c888\",\n            \"1e762de0-b01b-481d-bdc4-cf20f31480a8\",\n            \"88ab0ba4-b934-4491-b328-bb8d56812d9c\",\n            \"8335a4bc-e8f1-4731-bf88-d03782758008\",\n            \"a707945f-47ee-4a54-b122-6ec8fd0c26a3\",\n            \"96d10071-8e11-4918-bfff-30abd3efe40c\",\n            \"b87a1d7a-b6b0-4af4-b4d7-7cb32e79eaba\",\n            \"6dcf86bf-54a4-4ba5-8f1d-1d36af09530a\",\n            \"b61a1dfb-79a3-433a-8e6f-659efd4dceb5\",\n            \"906a41a2-8982-44bb-b2ad-c2ae5b4992c8\",\n            \"ad1dd60f-08df-4314-b27d-d9fb4c6953e6\",\n            \"87726f54-0213-48c3-9131-5724a27c8b92\",\n            \"08e40e38-0405-4b8a-a7b6-c59807f20ad9\",\n            \"74d1f08b-4c53-4f93-bed8-893c2cde4aaf\",\n            \"75753db3-08ff-41f0-890a-eabd41d811a3\",\n            \"dd45f0a5-7544-4824-a51f-e0e7e3cd892d\",\n            \"c39164a7-81ea-4778-a81b-70e325d947eb\",\n            \"2f483a3a-8f90-4a01-a655-08a43c56cfda\",\n            \"3f411d29-ee54-416d-b529-9e1180be01b5\",\n            \"df13bcf1-9725-4859-9a61-38eb04309ac8\",\n            \"b968e033-151c-457e-8acd-f838e24e582c\",\n            \"0d24c5d5-6d27-4650-b773-9b9b546e90fa\",\n            \"1a3fdad0-eafb-4dca-8340-b2af6c9ad3f2\",\n            \"bcb946f9-31c6-4deb-8503-d6a2a1be2c8d\",\n            \"3a84e175-9416-4539-a06b-a1e6f11c1f9f\",\n            \"2032687b-1797-4301-8a8e-174b850f5a7b\",\n            \"95275063-a8a3-4b97-9147-2930f7386430\",\n            \"1d8afa7e-1625-42bc-b935-b7b969f6402f\",\n            \"52b22802-d4f8-4462-8a1a-c96198cfd2eb\",\n            \"844453f1-c150-4560-bbea-0c039e4385d2\",\n            \"ea69f915-f138-417a-aef2-0f0b380aa370\",\n            \"48823ac5-7231-4c04-9e08-b791f2b8b354\",\n            \"ad270851-98a8-4200-9057-ea47afc2645c\",\n            \"bbc36748-a9db-4ed2-bfba-dde72aac562a\",\n            \"32701e0d-d234-4656-85c0-feb34ecc061e\",\n            \"e68cc74c-4b21-467d-bd25-c1789bccc643\",\n            \"d0feb478-3a6d-4d40-9bb2-f6285410cd2f\",\n            \"a1da3051-b33f-41bb-bd75-6cd75992065e\",\n            \"93922918-728a-4efa-be44-a5e390625e11\",\n            \"0cb43869-a3c8-4c76-b070-bc6a9290388d\",\n            \"1829d580-acb1-43df-a899-b13aa49e185d\",\n            \"e99dfcee-6fd4-40dc-9e3b-3c35cfafc49b\",\n            \"567be4cb-3f74-47ed-b0ee-f1a6d174880e\",\n            \"0ca45ebd-2a8f-414c-b31a-8cf5fb32d8e9\",\n            \"54a3c1fb-69d0-48af-9506-b9d52ae3812a\",\n            \"fd838c3b-af51-4339-a00d-be0e0cc5277d\",\n            \"0ef58d34-6f10-4d78-ba82-3485cdb99ffd\",\n            \"178c9d03-a70a-48a5-a28b-b014080e6155\",\n            \"af3d23e3-b29e-4990-9d90-577cd4e952cd\",\n            \"3d74f432-d904-409d-8d8a-01a5b15db705\",\n            \"e9431800-3651-456e-af4b-1284b00e3cf3\",\n            \"a93bc072-6fb5-4fee-ab41-40da876cd071\",\n            \"bd590301-9245-421e-b6d7-30c0fe9da920\",\n            \"d602df54-5e2f-48ab-ac43-7b1a0ed1abd5\",\n            \"0e11c3f3-2b0f-4236-bf82-678a5eee52e2\",\n            \"86c40611-cb3a-45d5-b59b-8c07cb7f548b\",\n            \"02a5de54-83ae-480d-aea1-d517ef0aa14b\",\n            \"7999aaf9-bbf5-4db3-8a1b-7c200ac31f62\",\n            \"bdbc8666-f8ad-4699-b6a1-eb311240b979\",\n            \"b1810068-c377-49d7-9815-bf57e6e03cd6\",\n            \"7c5139a9-4f0e-4724-8a26-45ace41ee103\",\n            \"162cb955-1369-47ce-87bb-423169da3f62\",\n            \"b048eaa6-6d89-4ae1-af4b-abc8e8a5fae8\",\n            \"f079e51e-def9-41d6-9359-c4f10e272ebc\",\n            \"76371878-ddb4-427d-99ed-95cd44f77da6\",\n            \"0aecaae3-f4e1-42d5-809e-8a8add9a2a0e\",\n            \"0339ef23-1c0d-441e-b9bc-7accc28ab09e\",\n            \"dbc426be-a5dd-44e7-946b-06dd897763f6\",\n            \"7d169920-fdc1-4649-977e-f5df0a775bfc\",\n            \"6ff75451-08e5-4387-ab40-4b7cbd7e94e5\",\n            \"c63c1f7c-c930-4d13-8f43-440a77f7256b\",\n            \"d5ade994-acfc-451f-9293-329ccab15fae\",\n            \"59e488b1-4aac-43a4-a322-9d7b614f2082\",\n            \"519964e0-da08-45bb-b5a9-22543668741b\",\n            \"7338c587-0ad2-449e-b2c9-3625354992f6\",\n            \"b7524ddf-e6bb-4a07-9595-2457ab0d8680\",\n            \"518895d9-bc8e-400a-862c-22491e9efe3c\",\n            \"86eda78f-edd4-460c-b6bd-8c8e642e5b7c\",\n            \"06bd6c3e-02ca-47af-a3e8-6006c6a8ffd5\",\n            \"449199c7-bb9b-4d75-84ff-a59d3755ba3e\",\n            \"36f31688-8c37-42f0-929b-41b98c60af43\",\n            \"b43c2ccd-8486-47d3-86b7-3b39713b9767\",\n            \"5e9adff1-ea1c-4bfc-a6a8-0e80b8c6f3ee\",\n            \"fc5cf749-9e0e-4dcf-90fc-e547c116f29c\",\n            \"7eb418f9-e141-4526-9052-2f4fa22ad517\",\n            \"8bf9b043-ec06-4e7a-993c-00d163269fc7\",\n            \"19baf15e-ab45-436c-af37-b930ef61e540\",\n            \"35a23e84-69c5-4657-a34d-31d59853015b\",\n            \"d51ffd99-b3be-4170-ae6d-c766c965708f\",\n            \"358e876e-65e4-4f02-93a2-2c9528104775\",\n            \"a1f5ef77-7b13-471e-91dc-90390d494179\",\n            \"5629899a-492b-41ec-bd1e-fece4f43926f\",\n            \"140253e0-7373-4b00-b9c3-2507ec1aec73\",\n            \"515b3c42-d48f-4c0c-aa20-d941c2fc3257\",\n            \"88e34516-1fce-430c-9d03-fcac79c25d84\",\n            \"e436b230-ba30-4fe5-88f1-13733789fec6\",\n            \"ff6b662a-78c9-4336-b5f2-259341126b2c\",\n            \"2cf5ee08-c3eb-4c4b-8017-198aca22b9a5\",\n            \"c46c034e-e35a-41b2-849f-ad24eec597bf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94033813476562,\n      \"Text\": \"Request for Verification of Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.570996880531311,\n          \"Height\": 0.023837145417928696,\n          \"Left\": 0.04864295944571495,\n          \"Top\": 0.07842227071523666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04864295944571495,\n            \"Y\": 0.07842227071523666\n          },\n          {\n            \"X\": 0.6196301579475403,\n            \"Y\": 0.07874131202697754\n          },\n          {\n            \"X\": 0.6196398735046387,\n            \"Y\": 0.10225941985845566\n          },\n          {\n            \"X\": 0.048645686358213425,\n            \"Y\": 0.10193386673927307\n          }\n        ]\n      },\n      \"Id\": \"608b135d-508e-466f-aeb8-bc49df2fdc50\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a97570b1-6be5-45e2-8da3-e05fb1cb7f75\",\n            \"ed53fb9f-cdef-48ff-ad93-51a270fb7b0f\",\n            \"d453942c-3bb0-4ad7-9ba6-c8a20ef9f1e6\",\n            \"7ff4f60f-67e3-4603-b214-13bf49aef85a\",\n            \"fc4d6ea4-0b28-4efd-b61f-818626a47908\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73712921142578,\n      \"Text\": \"Privacy Act Notice: This information is to be used by the agency collecting it or its assignees in determining whether you qualify as a prospective mortgagor under its program. It will\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8713932633399963,\n          \"Height\": 0.010067380033433437,\n          \"Left\": 0.046929486095905304,\n          \"Top\": 0.10950957983732224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046929486095905304,\n            \"Y\": 0.10950957983732224\n          },\n          {\n            \"X\": 0.9183173179626465,\n            \"Y\": 0.11000961065292358\n          },\n          {\n            \"X\": 0.918322741985321,\n            \"Y\": 0.11957696080207825\n          },\n          {\n            \"X\": 0.04693058878183365,\n            \"Y\": 0.11907289177179337\n          }\n        ]\n      },\n      \"Id\": \"734dfbf7-9dac-4186-a73a-469ac9904c78\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c2e93a92-6729-4076-8233-1cd7c7116f45\",\n            \"8b8febd6-1883-4c0c-be3e-0bd682dde1a2\",\n            \"28b7640f-3676-4284-948d-0eec7ec5daa9\",\n            \"fca3b081-44b2-405d-8a15-b41c4b1ec9e5\",\n            \"2758ac6a-29be-4ab6-add3-faedf59db46f\",\n            \"77001e26-9bb5-49d5-9d04-962b4b2128b4\",\n            \"fe7974d4-8bf6-4e9b-961d-fa529ad96a25\",\n            \"e4b46b2b-461f-4a4c-b902-b14856f5ebcb\",\n            \"6e16484c-6141-4e46-a993-188f118a02aa\",\n            \"a6892c2d-5202-4377-883f-36e7130e1904\",\n            \"f9f80e22-98ac-44a9-b876-fd8f77ed2d75\",\n            \"37b29dc4-411b-4aef-8878-881ebe192070\",\n            \"969f322d-7d53-48c5-bc5b-d6482ffc673d\",\n            \"6881d15a-a74a-4a05-8441-5174cf6f1d25\",\n            \"c0191b45-f785-4885-a6de-a6a6824afa21\",\n            \"fce96d07-5554-48c5-9ed8-8a1ec3a99d13\",\n            \"50c3fb65-b8b4-4292-b36b-8db99f767dc9\",\n            \"f0ce4b13-9304-45de-bb32-ff52836f5a4e\",\n            \"911bfb30-8b1e-4144-9500-f134b884fd94\",\n            \"c3e213d6-d20b-4043-905e-97b46aa35ba6\",\n            \"1043d579-0dde-4a8d-9074-02d054690ebd\",\n            \"9ded47a0-c8fa-438d-bac8-7b7d15629e45\",\n            \"362e1c53-5ea0-40f8-a5a1-91a4ac884c7c\",\n            \"a626b01b-e714-407e-9319-4c228c491ae0\",\n            \"850f359c-8481-4c42-97ba-87bd80292777\",\n            \"89aa21ad-112c-4484-8219-af7d8b4cac38\",\n            \"a798a2b7-74d1-4090-9165-ed02a6129cd8\",\n            \"afe8c592-4a8b-4e16-82b8-826049ddc2c1\",\n            \"6847eb80-ad7f-4f40-bd73-69648b09d964\",\n            \"9ef1487e-f619-485b-bb8c-951351bb23ce\",\n            \"bb2d0cf2-6e1c-4070-90f0-a9a1fa33a3aa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8131332397461,\n      \"Text\": \"not be disclosed outside the agency except as required and permitted by law. You do not have to provide this information, but if you do not your application for approval as a prospec-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8727914690971375,\n          \"Height\": 0.010040652938187122,\n          \"Left\": 0.046795256435871124,\n          \"Top\": 0.1186382919549942\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046795256435871124,\n            \"Y\": 0.1186382919549942\n          },\n          {\n            \"X\": 0.9195813536643982,\n            \"Y\": 0.11914299428462982\n          },\n          {\n            \"X\": 0.919586718082428,\n            \"Y\": 0.12867894768714905\n          },\n          {\n            \"X\": 0.04679635167121887,\n            \"Y\": 0.1281702071428299\n          }\n        ]\n      },\n      \"Id\": \"5cda3306-f152-45ed-a599-047291fc934c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d929c8b-1357-4813-8545-df9acd7be357\",\n            \"a7621680-1c8a-4e56-9ad2-dbfca75d4ce9\",\n            \"e094f59e-1b96-4f87-b8c6-7d9f97b650c7\",\n            \"23f39185-b9fd-41cc-ba2b-3b76546ae9f0\",\n            \"25985623-2198-471b-8e2c-bebf3ff15b12\",\n            \"070b4ed4-ca17-4a3f-a7e4-36146520f325\",\n            \"7fc68109-4559-4780-8cb2-b1bc5e302261\",\n            \"52b211c9-3cf3-41db-9738-42764a326e45\",\n            \"6a002292-7c3e-4188-b9fc-eea65169e5fa\",\n            \"60842db2-0e5c-4b60-938c-e51d22e0be00\",\n            \"bd5c64f7-8f9b-4e24-aebb-308086f55da4\",\n            \"d2296ae8-9768-46fa-85e5-2f5b05647ec1\",\n            \"f612ce73-0bad-47b4-9434-a9a598b7d2d5\",\n            \"158f6d64-91dc-4130-8c64-9bb16a20ab6d\",\n            \"7cafe2c0-0986-4fa5-9961-22f47aea3151\",\n            \"291b0863-c5bc-436d-90ae-501be53c5a7a\",\n            \"397b91f4-7d25-4469-9613-c57546a571b3\",\n            \"2ca6ac33-4cd6-4698-b536-0bea8901e67b\",\n            \"e9b10f4b-d224-4dca-b951-245a42d95ba9\",\n            \"d5835594-f751-418e-9ffb-2b2697965e36\",\n            \"3d574c07-701b-44de-9ed4-fe3b815041f2\",\n            \"cc090e6d-e00d-4c89-88e7-782e4f736888\",\n            \"a5a148e0-99d0-44ce-a26c-ff96e22abaca\",\n            \"d29783b4-687f-4008-850d-58623e813f6f\",\n            \"8eed8f5e-9dd1-40eb-b29e-4596e860e408\",\n            \"5f1b2901-b736-4e15-8a70-48da8db719f9\",\n            \"719bdc06-a6cf-4bba-badd-3d77d9143c6a\",\n            \"7c0a903d-7c77-4344-8411-b3c55164e66a\",\n            \"69fea9e8-2667-4a01-85d1-563d1e555d53\",\n            \"cab80902-0caf-4791-ae21-1d09e33ae011\",\n            \"d9a508c4-0758-49f2-a4d7-b2446f9e16ad\",\n            \"2f51e71d-82c2-4bf2-ac78-6fbaf85c9814\",\n            \"48172631-c057-4c9f-bc83-7f3c5e3a64ad\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.13301086425781,\n      \"Text\": \"tive mortgagor or borrower may be delayed or rejected. The information requested in this form is authorized by Title 38, USC, Chapter 37 (if VA); by 12 USC, Section 1701 et. seq. (if\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8683385252952576,\n          \"Height\": 0.010707731358706951,\n          \"Left\": 0.046783898025751114,\n          \"Top\": 0.12805791199207306\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046783898025751114,\n            \"Y\": 0.12805791199207306\n          },\n          {\n            \"X\": 0.9151166677474976,\n            \"Y\": 0.1285640001296997\n          },\n          {\n            \"X\": 0.9151224493980408,\n            \"Y\": 0.13876564800739288\n          },\n          {\n            \"X\": 0.04678507149219513,\n            \"Y\": 0.1382552534341812\n          }\n        ]\n      },\n      \"Id\": \"a2cb6c1a-e8a0-468c-b4c4-8385f124b487\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"17456737-9f46-48df-ac27-8c5b3efa5d1c\",\n            \"bb27e4af-4688-4eb7-8a62-527d9c2e46b3\",\n            \"4c8cbcb5-56a9-44fc-91b6-e6159ad08464\",\n            \"0dca21ce-e7ef-4404-8860-fddb970cc472\",\n            \"b57bef99-f4b8-4da4-adad-570fd3ad527f\",\n            \"9ed204e8-f7b7-44f1-bf58-4c7a8dc1eb5b\",\n            \"b91b5506-4f2b-424c-8826-8107919d488a\",\n            \"e7e16177-1aa1-4011-8c0d-ff40ea98bf00\",\n            \"f9358612-2f9a-4ad9-a7a3-57e3c5c176d4\",\n            \"f94717fa-d9ae-4726-8b56-40ff1e9b8203\",\n            \"f090c19a-d718-46dd-9c8f-5250bc85bf82\",\n            \"0ea9f007-34e5-4d63-8e2d-2d3f35e866a5\",\n            \"4c0a7d5e-a5fe-4146-a707-b256b93c2b8d\",\n            \"6cf9aa2b-dc99-402d-8cba-a5297664f56c\",\n            \"a4f8dd60-d73c-4001-80ed-f864a157a3d9\",\n            \"ce9b365b-bc81-4d50-9fe3-c03619911402\",\n            \"c4420b16-8f21-40c8-ae2a-00b653075e6f\",\n            \"009f7638-314b-4b12-ad6b-c92a2466d8cb\",\n            \"9e864a21-4cd9-4ba8-b5d2-315b7f8f7895\",\n            \"560e27ea-afc6-4546-ba3d-ebdcf94093be\",\n            \"c8df0d8e-cbf6-4a08-9538-ef888036fa3f\",\n            \"6a1d4fc3-bb8b-4c1f-a641-f69d06f52526\",\n            \"6b37ca6f-05d4-4287-8ac6-d7e8b24abacb\",\n            \"6a6d2f79-1753-4cca-a5b6-ae1d3caa80f6\",\n            \"7d3d6f2b-0f44-4e77-96f4-16b853710481\",\n            \"95f28888-aa38-4723-b98d-b20c6d4f4feb\",\n            \"9eb91b62-7b67-47d9-b9f0-4e554c1d0051\",\n            \"055fc5f8-4b4b-42cc-9f79-9d5d99cde557\",\n            \"f05d7ffe-995d-44ac-b5e0-2f608393322f\",\n            \"54088600-8abe-4a1d-a846-a0af886a5064\",\n            \"17b5b0e8-5872-4779-9bf1-8dd9dd92517d\",\n            \"75846e54-9335-4e67-a02e-a8b9d295210c\",\n            \"8969e2e4-7e00-4415-80d6-029e27e47267\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.56285095214844,\n      \"Text\": \"HUD/FHA); by 42 USC, Section 1452b (if HUD/CPD); and Title 42 USC, 1471 et. seq., or 7 USC, 1921 et. seq. (if USDA/FmHA).\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6216815710067749,\n          \"Height\": 0.009711137041449547,\n          \"Left\": 0.04725754261016846,\n          \"Top\": 0.1379256397485733\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04725754261016846,\n            \"Y\": 0.1379256397485733\n          },\n          {\n            \"X\": 0.6689350008964539,\n            \"Y\": 0.13829094171524048\n          },\n          {\n            \"X\": 0.6689391136169434,\n            \"Y\": 0.1476367712020874\n          },\n          {\n            \"X\": 0.04725862294435501,\n            \"Y\": 0.1472686380147934\n          }\n        ]\n      },\n      \"Id\": \"0f67019d-0a84-4226-8fc4-0b4922968816\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55ac7681-d223-4015-8ee6-def4133941e7\",\n            \"dfb8df6b-8af8-4bb4-9000-34014f2e919d\",\n            \"a606b563-9929-4317-bf28-50964692b134\",\n            \"9d55dfd0-7614-426f-aa89-458d34939d4b\",\n            \"5b709945-0396-42d1-8e79-857906423027\",\n            \"f18a8a10-1c79-4be2-99e2-e54e29cf0c6c\",\n            \"3ebb865a-5af6-4eb5-af4f-3317495474d6\",\n            \"c24f76a8-6634-4bac-a599-01234d41e5dc\",\n            \"63807af5-6e44-48e5-beb0-e249b9811d69\",\n            \"1d444392-0757-4d55-ba98-13f73a26aeec\",\n            \"7d05fc13-07dc-452c-aff5-69cd9c481abe\",\n            \"fc0b15ee-887c-43d3-afdd-67c33a3a8f3c\",\n            \"be1767d5-fa0a-4e48-ad48-72cdb2809fa3\",\n            \"8609bb3e-00c3-49d2-82aa-57bb0c4c7253\",\n            \"2d659f9c-7b46-4238-a16d-895ea9e929b5\",\n            \"5d029225-355c-44b2-ba1e-b7d3fafcb2a9\",\n            \"bcfa69be-1ba4-4fd1-8bee-214fe814140d\",\n            \"b0b8caad-6043-40aa-bef3-c3e2648160bd\",\n            \"1ff9e15a-d707-4519-970d-9a0b83b44ee3\",\n            \"feac4993-045d-4b42-8715-88ab54b83676\",\n            \"2fe6b27f-1982-4bf7-9430-48711a3f3458\",\n            \"ab0fa9fb-5aa9-491b-b760-efcdf5a6bc08\",\n            \"95fb0f89-7a37-4df4-b3d7-f370fb86e8f3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.30314636230469,\n      \"Text\": \"Instructions: Lender - Complete items 1 through 7. Have applicant complete item 8. Forward directly to employer named in item 1.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6428601145744324,\n          \"Height\": 0.00969622004777193,\n          \"Left\": 0.04585767537355423,\n          \"Top\": 0.1569707691669464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04585767537355423,\n            \"Y\": 0.1569707691669464\n          },\n          {\n            \"X\": 0.6887136101722717,\n            \"Y\": 0.157354474067688\n          },\n          {\n            \"X\": 0.688717782497406,\n            \"Y\": 0.16666698455810547\n          },\n          {\n            \"X\": 0.04585874080657959,\n            \"Y\": 0.16628038883209229\n          }\n        ]\n      },\n      \"Id\": \"efca28c7-4ba8-44b3-bd82-6270b1119f0c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1f611e7-e5a3-447f-a8a9-9c8072aab152\",\n            \"0874f477-3d85-4f00-9608-880068e04c3d\",\n            \"2164fb47-3583-4d24-9004-7e22b1d60919\",\n            \"90ca0924-4c2a-47f2-b4e0-b58fdc51da66\",\n            \"5677387e-c7cf-4eb7-a8bc-c34839ca3be7\",\n            \"68acdd56-7568-48c1-b01c-536868dc486c\",\n            \"dd3c158d-af1a-45f5-9aba-559253ab5643\",\n            \"15ea00cc-eeb8-4c9a-b30b-269e8b54d73c\",\n            \"2359e86a-e8d1-495b-985d-58eb344c2e15\",\n            \"6840f025-ba2e-4fd4-9ee3-2f369a31caaf\",\n            \"01ff3ea5-5515-4427-938f-98b81b47ae64\",\n            \"d12b3902-1f35-437a-a1fc-05c8c3dd98e7\",\n            \"bd5f84b2-1ca9-4957-b052-a83e0a62b34f\",\n            \"f06d4802-5284-4268-a84b-e40f2be7a7af\",\n            \"fce4f571-4681-499e-bdbf-f3ffc1e06842\",\n            \"21c8607f-3897-4919-a08b-50b734b8144b\",\n            \"8c5698c7-ced7-4325-9796-fde39adf02d5\",\n            \"c4bd56de-2637-4dad-90ee-ea977a47b743\",\n            \"ae0f8556-7504-4aa8-9881-a584e75e69f1\",\n            \"b73b50db-79af-4fac-8c15-127098d8ba32\",\n            \"6fbf4222-a5fd-49e1-8f16-2be5b6bb2dbf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.83505249023438,\n      \"Text\": \"Employer - Please complete either Part II or Part III as applicable. Complete Part IV and return directly to lender named in item 2.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.62360680103302,\n          \"Height\": 0.010235044173896313,\n          \"Left\": 0.12322824448347092,\n          \"Top\": 0.16614201664924622\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12322824448347092,\n            \"Y\": 0.16614201664924622\n          },\n          {\n            \"X\": 0.7468303442001343,\n            \"Y\": 0.166516974568367\n          },\n          {\n            \"X\": 0.7468350529670715,\n            \"Y\": 0.1763770580291748\n          },\n          {\n            \"X\": 0.12322977185249329,\n            \"Y\": 0.17599910497665405\n          }\n        ]\n      },\n      \"Id\": \"5f6414e2-c94d-46f4-8c99-cb3ffb26e527\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3f07fb4b-b490-44b0-8238-78e2bad2805e\",\n            \"62cc9d2d-9155-4905-89b2-f79e061e169f\",\n            \"8d8ce7a5-d5f9-4ce2-a48f-0abd9f26e79e\",\n            \"5e9a1e0f-1106-4867-9ba2-0b7fa9c8e9a6\",\n            \"12ccd6db-2a46-4613-a9c8-190e12c75c60\",\n            \"09f46c6e-5fd7-48ec-a831-a4569e37cf39\",\n            \"d7c6ba05-032e-4727-922c-24fa0fad1bc2\",\n            \"509108d7-4858-4af1-b2b7-4b12eefb8d82\",\n            \"52563da3-b8e6-419c-8d89-dbae6fad07e8\",\n            \"3b0deb3d-29d1-406c-a95c-84297accab0e\",\n            \"107305b8-e833-453d-a49e-a41e7cde3e10\",\n            \"4ed883ee-9028-44e9-8105-251f2c6e4f30\",\n            \"335cd0ab-4fb9-4428-a383-3d42133b17a7\",\n            \"af748b82-9205-4633-b2ac-1b4b5a69e024\",\n            \"e2f2f16e-ee0c-4255-968d-012774e13ed6\",\n            \"650e4098-bf94-41ec-bec9-a10dcd1b0a19\",\n            \"4bce1863-ccac-4c53-b44c-11cbe1d5f3e0\",\n            \"b54eeaba-9a92-4967-ab17-c7a99dc85e6e\",\n            \"de00a2a6-aba3-4970-9d8f-158b382666a1\",\n            \"7a8320b8-635a-4b47-bc3f-6bc2b1010306\",\n            \"b63e9ba0-9bfc-4c1e-8e5b-73474365a287\",\n            \"9743e3bc-0010-4ecd-9e4c-20f1bd8b69f7\",\n            \"bd0e0703-bbb4-426d-ace7-32b969d62ee8\",\n            \"7c287875-81de-47ff-8e87-5afaaff985c9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81407928466797,\n      \"Text\": \"The form is to be transmitted directly to the lender and is not to be transmitted through the applicant or any other party.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6354097723960876,\n          \"Height\": 0.009808042086660862,\n          \"Left\": 0.12259374558925629,\n          \"Top\": 0.17599399387836456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12259374558925629,\n            \"Y\": 0.17599399387836456\n          },\n          {\n            \"X\": 0.7579990029335022,\n            \"Y\": 0.17637909948825836\n          },\n          {\n            \"X\": 0.7580035328865051,\n            \"Y\": 0.18580204248428345\n          },\n          {\n            \"X\": 0.12259520590305328,\n            \"Y\": 0.18541403114795685\n          }\n        ]\n      },\n      \"Id\": \"1f6df5e6-209a-4d3a-8d27-f820abd41ace\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d65dd9eb-fd3b-4b1c-9f6f-1debbb8e2a82\",\n            \"c751e630-80b1-42ee-be24-f077ba492a5e\",\n            \"6d6cc677-d777-4438-887f-aefe0707ed47\",\n            \"6e869750-187b-4714-b32a-911343cf8f1c\",\n            \"c8430334-864a-44b8-b86b-0619b0666375\",\n            \"29445384-92d3-431d-b32a-7196ff656eb3\",\n            \"6fe972ca-9462-4486-bcb3-ae28e18605bb\",\n            \"4631e2d2-2aa1-4fb4-884c-a1849867482f\",\n            \"4aae3ccf-3d59-45e2-af7d-33b224ad96ee\",\n            \"8098feea-b2ad-4519-a809-4e40fe215921\",\n            \"264391c6-18e9-4c55-8d62-bf8f9fe1568e\",\n            \"c40ddae2-a2aa-45dd-9eed-b4461db25f19\",\n            \"d001d5e5-a9f7-4544-bf3b-143ff672634a\",\n            \"9e603100-7d4e-47de-8827-439d91ce0410\",\n            \"bcde5002-a912-4304-bc01-d81df2905aa5\",\n            \"8fa57ffb-06b7-410d-b5a8-48929ea39d03\",\n            \"424972b9-a4a2-4ffd-982c-e1fb043821c8\",\n            \"1b385025-b22f-4ef4-931f-ae747f9ad9c8\",\n            \"aa465dd8-1489-401f-8b82-bf13c8220a06\",\n            \"f3e9b42d-db65-4057-b1d2-62acdfd70074\",\n            \"505444c0-acd3-4e6b-9a59-0ecd6520811f\",\n            \"be598f3b-30f2-4c79-b550-6cee9feed1c4\",\n            \"bedfd665-0c35-42ce-9021-5c0c8de64d14\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.2300033569336,\n      \"Text\": \"Part I - Request\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12101937085390091,\n          \"Height\": 0.011124297976493835,\n          \"Left\": 0.043541520833969116,\n          \"Top\": 0.1990501433610916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.043541520833969116,\n            \"Y\": 0.1990501433610916\n          },\n          {\n            \"X\": 0.16455894708633423,\n            \"Y\": 0.19912484288215637\n          },\n          {\n            \"X\": 0.16456089913845062,\n            \"Y\": 0.21017444133758545\n          },\n          {\n            \"X\": 0.0435427762567997,\n            \"Y\": 0.21009908616542816\n          }\n        ]\n      },\n      \"Id\": \"3dd001a3-e302-4670-94ff-15f8f6c823eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b0584be-6f9c-4263-b558-d0c4f5a7d729\",\n            \"b4f5fc43-8af2-40a3-acc1-a996ddb10ac9\",\n            \"e9d9bc00-7a6d-447e-8f63-63332e691edb\",\n            \"7cfc95f3-cec5-426b-8302-1e0dc5ff7499\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.44064331054688,\n      \"Text\": \"1. To (Name and address of employer)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21005061268806458,\n          \"Height\": 0.009341612458229065,\n          \"Left\": 0.043607741594314575,\n          \"Top\": 0.21251384913921356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.043607741594314575,\n            \"Y\": 0.21251384913921356\n          },\n          {\n            \"X\": 0.2536562979221344,\n            \"Y\": 0.21264487504959106\n          },\n          {\n            \"X\": 0.25365835428237915,\n            \"Y\": 0.22185546159744263\n          },\n          {\n            \"X\": 0.04360878840088844,\n            \"Y\": 0.2217234969139099\n          }\n        ]\n      },\n      \"Id\": \"6be59362-b48a-45e4-a9ca-60614b8b1a01\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96ea7b43-dea4-4dca-86ac-fefbb00f53a0\",\n            \"3bd451f6-ab21-402e-99ae-aede74b2d2bb\",\n            \"679f521f-0335-4de2-924f-1618805935ac\",\n            \"38403767-8e1f-46ca-b4e3-8968e386e213\",\n            \"c3be0223-0dba-4cb7-a37b-3adec2751ec3\",\n            \"33792895-49cd-4240-b1fb-96b5616b55b3\",\n            \"c5d6af22-5d10-4078-9728-2641b3a66c22\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73892211914062,\n      \"Text\": \"2. From (Name and address of lender)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2090323120355606,\n          \"Height\": 0.009042251855134964,\n          \"Left\": 0.4910276532173157,\n          \"Top\": 0.21212181448936462\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4910276532173157,\n            \"Y\": 0.21212181448936462\n          },\n          {\n            \"X\": 0.7000559568405151,\n            \"Y\": 0.21225214004516602\n          },\n          {\n            \"X\": 0.7000599503517151,\n            \"Y\": 0.2211640626192093\n          },\n          {\n            \"X\": 0.491030752658844,\n            \"Y\": 0.22103282809257507\n          }\n        ]\n      },\n      \"Id\": \"807777db-0054-4460-b4e6-a3c6bc054ed7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7a34a578-9ce6-46f4-9481-8a37c4745d86\",\n            \"958600f7-e4ff-4889-aeee-adb1ddee355c\",\n            \"9518f7c5-795e-4ef5-b8b1-b5cd4b335660\",\n            \"760ace5f-3d58-4302-9cd2-d1ed00b4b72e\",\n            \"5b3e07f9-de8b-49bc-97ee-1382603a49a0\",\n            \"2d948a47-276d-480b-a08c-b89ec7d7ad00\",\n            \"b046cc57-735b-41dc-843f-d362054f9708\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52310943603516,\n      \"Text\": \"Alejandro Rosalez\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15981434285640717,\n          \"Height\": 0.014625863172113895,\n          \"Left\": 0.0764067992568016,\n          \"Top\": 0.23062999546527863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0764067992568016,\n            \"Y\": 0.23062999546527863\n          },\n          {\n            \"X\": 0.23621805012226105,\n            \"Y\": 0.23073109984397888\n          },\n          {\n            \"X\": 0.23622114956378937,\n            \"Y\": 0.24525587260723114\n          },\n          {\n            \"X\": 0.07640869170427322,\n            \"Y\": 0.24515363574028015\n          }\n        ]\n      },\n      \"Id\": \"c5c46960-814c-4400-92dc-a84a401b8788\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6220486d-2adb-4c84-b9cf-3e488804d07e\",\n            \"77ab2d6a-59c6-48f4-a387-30ae91ab75df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86805725097656,\n      \"Text\": \"Carlos Salazar\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12897682189941406,\n          \"Height\": 0.012266202829778194,\n          \"Left\": 0.5077345967292786,\n          \"Top\": 0.23181135952472687\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5077345967292786,\n            \"Y\": 0.23181135952472687\n          },\n          {\n            \"X\": 0.6367062926292419,\n            \"Y\": 0.23189300298690796\n          },\n          {\n            \"X\": 0.6367114186286926,\n            \"Y\": 0.24407756328582764\n          },\n          {\n            \"X\": 0.5077389478683472,\n            \"Y\": 0.24399515986442566\n          }\n        ]\n      },\n      \"Id\": \"e3a7155c-a7d3-4c65-9f46-57cfb3a4157e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d6fde40c-5de5-447d-99a3-87d928e5992c\",\n            \"75717fad-c5bc-47ff-9616-f924c7cbaa2f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9526596069336,\n      \"Text\": \"123 Any Street, Any Town, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2773165702819824,\n          \"Height\": 0.015277905389666557,\n          \"Left\": 0.07850755006074905,\n          \"Top\": 0.24561822414398193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07850755006074905,\n            \"Y\": 0.24561822414398193\n          },\n          {\n            \"X\": 0.3558199405670166,\n            \"Y\": 0.24579566717147827\n          },\n          {\n            \"X\": 0.3558241128921509,\n            \"Y\": 0.26089614629745483\n          },\n          {\n            \"X\": 0.07850953936576843,\n            \"Y\": 0.26071664690971375\n          }\n        ]\n      },\n      \"Id\": \"c05f719d-ce2d-4964-bb77-a1d267a46d64\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"65498050-0219-421b-9879-f86d1b2a4827\",\n            \"8d53a13f-a28a-441f-b627-73bb3322b4c4\",\n            \"c682e8f3-f0f2-4e37-83be-9d1b558326d6\",\n            \"50b8272c-23d5-4bf9-9149-9d6d8390ad59\",\n            \"3bf6e069-edee-4c55-90e8-788f6694aa56\",\n            \"71f3cbc7-d35a-4a11-b2ea-35bad40a89a8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94624328613281,\n      \"Text\": \"100 Main Street, Anytown, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2744203209877014,\n          \"Height\": 0.014844323508441448,\n          \"Left\": 0.5089336037635803,\n          \"Top\": 0.24682453274726868\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5089336037635803,\n            \"Y\": 0.24682453274726868\n          },\n          {\n            \"X\": 0.7833466529846191,\n            \"Y\": 0.24700024724006653\n          },\n          {\n            \"X\": 0.7833539247512817,\n            \"Y\": 0.261668860912323\n          },\n          {\n            \"X\": 0.5089387893676758,\n            \"Y\": 0.26149120926856995\n          }\n        ]\n      },\n      \"Id\": \"16120d4e-f11a-4bf9-b8cb-f50ea92ce98d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"31799381-ac00-48b1-95de-d01dee739837\",\n            \"253cacec-63d7-4d58-969b-63641ba340ff\",\n            \"e2924f0a-79d4-4121-8551-64c39b0074a1\",\n            \"d206f461-a7f7-4bb9-b71d-0e2a6053a5c3\",\n            \"d10d4420-236c-40c9-a462-8dfab8335d7a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.15023803710938,\n      \"Text\": \"I certify that this verification has been sent directly to the employer and has not passed through the hands of the applicant or any other interested party.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8356325030326843,\n          \"Height\": 0.011113718152046204,\n          \"Left\": 0.04273373261094093,\n          \"Top\": 0.27200552821159363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04273373261094093,\n            \"Y\": 0.27200552821159363\n          },\n          {\n            \"X\": 0.8783604502677917,\n            \"Y\": 0.27255094051361084\n          },\n          {\n            \"X\": 0.878366231918335,\n            \"Y\": 0.28311923146247864\n          },\n          {\n            \"X\": 0.04273492470383644,\n            \"Y\": 0.28256955742836\n          }\n        ]\n      },\n      \"Id\": \"132e20fe-6a9f-4d1d-8d67-8efb3b53de58\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f9558348-565f-4706-a4bf-00c0ce0000fa\",\n            \"25f515ee-48b7-4020-bfaa-d4d925ddb682\",\n            \"673690e4-09b7-4106-a876-166f1ff6bbe0\",\n            \"9f15bf92-c281-4e60-9f62-ec5d28302cb2\",\n            \"20a7400f-aad9-40ea-80a8-9a473d66ac6a\",\n            \"30e75930-d658-4250-90f7-21343235f6e3\",\n            \"32624f5b-cfa3-4d3f-a578-e7e5f8d07429\",\n            \"9cdeff6d-723e-4b06-8303-11c2243edb02\",\n            \"73935f0c-9c00-4270-8158-4eb2815770f4\",\n            \"f4ea1e8e-185f-49b9-b77b-8468d69a55c7\",\n            \"03f86f33-53d2-4b7f-a7a5-2c356b328d02\",\n            \"dd4c29d8-e80d-437c-8490-d8a1b6a058ed\",\n            \"9db43723-5f90-4ddb-bb35-f03349a667b6\",\n            \"e56bed13-0c3e-40fa-939a-72476c512317\",\n            \"73da74b0-8d1d-465d-8d43-b889a11bf5a2\",\n            \"08b1f735-7415-460a-9f6b-a05115a591da\",\n            \"cf15de84-b873-4231-9b03-fd81a3f14d4b\",\n            \"4a4b9ab6-0e99-484a-b13e-f3191db2f880\",\n            \"ae896621-c08d-4262-b5b6-17997096f26d\",\n            \"5a12c7b7-c605-47fa-8757-f28bc7d73b33\",\n            \"5e71c3cf-0176-4502-898c-6e5cfcd7638e\",\n            \"1491384f-1362-4be7-b417-b429e544b49f\",\n            \"7efbbdce-c054-4ba4-adc9-dfd1f96c754f\",\n            \"0c0e4833-5ad1-465f-a66d-f44789c7a37d\",\n            \"0911c989-3420-4d05-8986-a9625dc97433\",\n            \"10f7c8d9-e32f-4d0d-9633-b1846942f8c2\",\n            \"3b9cd39a-c7d5-4754-8d1d-68e4606acbf3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79884338378906,\n      \"Text\": \"3. Signature of Lender\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1233266070485115,\n          \"Height\": 0.009649907238781452,\n          \"Left\": 0.04254579171538353,\n          \"Top\": 0.2881377935409546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04254579171538353,\n            \"Y\": 0.2881377935409546\n          },\n          {\n            \"X\": 0.16587071120738983,\n            \"Y\": 0.28821924328804016\n          },\n          {\n            \"X\": 0.16587239503860474,\n            \"Y\": 0.29778769612312317\n          },\n          {\n            \"X\": 0.042546872049570084,\n            \"Y\": 0.29770568013191223\n          }\n        ]\n      },\n      \"Id\": \"457ad9d9-2182-4a72-9a81-d6c2519c71f1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e4b8495-6c17-49ed-85e9-ea817b5e65a7\",\n            \"e1129dbe-b9f8-4836-a61e-444dd6e5ebec\",\n            \"b7168b73-f2c2-4638-ae03-71cc394132d3\",\n            \"256277a0-609d-4263-8cda-3532048ee054\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84952545166016,\n      \"Text\": \"4. Title\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03863426670432091,\n          \"Height\": 0.008012545295059681,\n          \"Left\": 0.3738477826118469,\n          \"Top\": 0.28782081604003906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3738477826118469,\n            \"Y\": 0.28782081604003906\n          },\n          {\n            \"X\": 0.4124796390533447,\n            \"Y\": 0.28784632682800293\n          },\n          {\n            \"X\": 0.41248205304145813,\n            \"Y\": 0.2958333492279053\n          },\n          {\n            \"X\": 0.3738500773906708,\n            \"Y\": 0.29580768942832947\n          }\n        ]\n      },\n      \"Id\": \"49c03a1f-1647-4c59-9185-f07f68c5f95b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"059e0927-e168-45e1-85ca-360a2a7e5882\",\n            \"6852c8b6-d814-4f93-a4c8-126c9ed2c221\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88715362548828,\n      \"Text\": \"5. Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04080639034509659,\n          \"Height\": 0.007965863682329655,\n          \"Left\": 0.6278469562530518,\n          \"Top\": 0.2876485288143158\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6278469562530518,\n            \"Y\": 0.2876485288143158\n          },\n          {\n            \"X\": 0.6686498522758484,\n            \"Y\": 0.2876754403114319\n          },\n          {\n            \"X\": 0.6686533689498901,\n            \"Y\": 0.2956143915653229\n          },\n          {\n            \"X\": 0.6278502345085144,\n            \"Y\": 0.29558730125427246\n          }\n        ]\n      },\n      \"Id\": \"31cb7fb9-04ef-41ce-9836-b098463f577d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"977fdeb1-150d-4ce7-8f90-ba24f22b4874\",\n            \"4a79b9c4-02a0-4bcb-8448-1dcfc6bcd961\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83114624023438,\n      \"Text\": \"6. Lender's Number\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10875759273767471,\n          \"Height\": 0.008139035664498806,\n          \"Left\": 0.7452970147132874,\n          \"Top\": 0.2875245213508606\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7452970147132874,\n            \"Y\": 0.2875245213508606\n          },\n          {\n            \"X\": 0.8540502786636353,\n            \"Y\": 0.28759628534317017\n          },\n          {\n            \"X\": 0.8540546298027039,\n            \"Y\": 0.2956635355949402\n          },\n          {\n            \"X\": 0.745300829410553,\n            \"Y\": 0.2955913543701172\n          }\n        ]\n      },\n      \"Id\": \"c8637bac-acda-442a-a68e-497ed85e25e8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ebafb3f4-a9ec-481e-a267-da2aaaf659fd\",\n            \"975f44f4-5640-4cfa-9e5c-b4094399628e\",\n            \"378dcc4c-8ed0-4b82-99a7-e77de814248b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68692016601562,\n      \"Text\": \"(Optional)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05216611549258232,\n          \"Height\": 0.009373906068503857,\n          \"Left\": 0.7604327201843262,\n          \"Top\": 0.297652930021286\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7604327201843262,\n            \"Y\": 0.297652930021286\n          },\n          {\n            \"X\": 0.8125939965248108,\n            \"Y\": 0.2976876199245453\n          },\n          {\n            \"X\": 0.8125988245010376,\n            \"Y\": 0.30702683329582214\n          },\n          {\n            \"X\": 0.7604372501373291,\n            \"Y\": 0.30699193477630615\n          }\n        ]\n      },\n      \"Id\": \"6b52e0cd-eb0a-466f-83fa-1756b4286996\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ee983cfe-4d76-4f05-a2a4-7d5f68668f67\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.85424041748047,\n      \"Text\": \"Carlos Salazar\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14824067056179047,\n          \"Height\": 0.028080806136131287,\n          \"Left\": 0.12941403687000275,\n          \"Top\": 0.3004801273345947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12941403687000275,\n            \"Y\": 0.3004801273345947\n          },\n          {\n            \"X\": 0.2776481509208679,\n            \"Y\": 0.30057892203330994\n          },\n          {\n            \"X\": 0.2776547074317932,\n            \"Y\": 0.3285609483718872\n          },\n          {\n            \"X\": 0.12941846251487732,\n            \"Y\": 0.32846012711524963\n          }\n        ]\n      },\n      \"Id\": \"44153b58-96d1-4b7a-b862-54be03a17cdd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7124d907-3c3e-4538-aa61-500154c18cde\",\n            \"cd6e2f36-d729-46ce-aba9-c09c955f0186\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97549438476562,\n      \"Text\": \"Project Manager\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12008776515722275,\n          \"Height\": 0.012804948724806309,\n          \"Left\": 0.4084278643131256,\n          \"Top\": 0.30551546812057495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4084278643131256,\n            \"Y\": 0.30551546812057495\n          },\n          {\n            \"X\": 0.5285109877586365,\n            \"Y\": 0.3055957853794098\n          },\n          {\n            \"X\": 0.528515636920929,\n            \"Y\": 0.3183204233646393\n          },\n          {\n            \"X\": 0.408431738615036,\n            \"Y\": 0.31823936104774475\n          }\n        ]\n      },\n      \"Id\": \"50d7e295-1c0a-4830-991f-90e394797f27\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"853b1c3e-50de-40e5-af48-ff7d30d0adb3\",\n            \"82bc3f1d-8021-47b8-88a8-ac7cb9b039ab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.889404296875,\n      \"Text\": \"12/12/2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08054124563932419,\n          \"Height\": 0.010394430719316006,\n          \"Left\": 0.6367756724357605,\n          \"Top\": 0.3079544007778168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6367756724357605,\n            \"Y\": 0.3079544007778168\n          },\n          {\n            \"X\": 0.7173121571540833,\n            \"Y\": 0.3080083429813385\n          },\n          {\n            \"X\": 0.7173169255256653,\n            \"Y\": 0.31834882497787476\n          },\n          {\n            \"X\": 0.6367800235748291,\n            \"Y\": 0.3182944655418396\n          }\n        ]\n      },\n      \"Id\": \"0798d755-3022-46cd-838b-9c6a7f775585\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4889183d-96eb-4ed0-9d1e-9ebb65f256b3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8731460571289,\n      \"Text\": \"5555-5555-5555\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1201208159327507,\n          \"Height\": 0.010211009532213211,\n          \"Left\": 0.7611150741577148,\n          \"Top\": 0.31397759914398193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7611150741577148,\n            \"Y\": 0.31397759914398193\n          },\n          {\n            \"X\": 0.8812302947044373,\n            \"Y\": 0.31405842304229736\n          },\n          {\n            \"X\": 0.8812358975410461,\n            \"Y\": 0.32418861985206604\n          },\n          {\n            \"X\": 0.7611199617385864,\n            \"Y\": 0.32410722970962524\n          }\n        ]\n      },\n      \"Id\": \"8b78b4b0-70f4-4d76-84ad-f8a060186f28\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cce72047-c070-47fe-9518-2eae230d552c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.10708618164062,\n      \"Text\": \"I have applied for a mortgage loan and stated that I am now or was formerly employed by you. My signature below authorizes verification of this information.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8644140362739563,\n          \"Height\": 0.011294941417872906,\n          \"Left\": 0.042990781366825104,\n          \"Top\": 0.33242329955101013\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042990781366825104,\n            \"Y\": 0.33242329955101013\n          },\n          {\n            \"X\": 0.9073988199234009,\n            \"Y\": 0.33301281929016113\n          },\n          {\n            \"X\": 0.9074048399925232,\n            \"Y\": 0.3437182307243347\n          },\n          {\n            \"X\": 0.042991992086172104,\n            \"Y\": 0.3431242108345032\n          }\n        ]\n      },\n      \"Id\": \"c1884dc4-7c03-43e6-a747-e4bbd3349bdf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d0bee3b0-7c53-45f9-a3e1-a5da010d472e\",\n            \"e77d89c0-22ad-4a33-af21-6139ff643072\",\n            \"45237841-2476-4b7a-9296-3cfdedb5d562\",\n            \"7fd7ed7f-74d1-4bf7-91f0-37d5b169338b\",\n            \"c0f4bdcc-2515-46d7-9cf8-535aebd1d64b\",\n            \"560931b3-e85b-430c-8951-efb4e86f986a\",\n            \"26268dbb-cc01-406e-a31b-3e6768ca31a3\",\n            \"2a1b3a8a-6800-4f0e-ae00-0600a0e45b4e\",\n            \"ca2e66d8-d496-49ec-beef-2b4763d4a3c5\",\n            \"532ecff9-2162-4878-836a-21c39196e240\",\n            \"ede3547d-d211-405c-88e7-6187be24c27a\",\n            \"10f6745e-cc9b-4cea-9563-37847d37473e\",\n            \"16f07aea-66d2-4f44-9468-247c543cb0d0\",\n            \"4367c23d-9cd9-463b-bb1a-ee42cac19977\",\n            \"7963f009-20bc-4510-b235-d4879d66a75a\",\n            \"187397da-0cfb-4d4b-9cb9-093b1f914a1e\",\n            \"3f7fbe9c-9a15-4711-8116-b74e3c1a01b8\",\n            \"6bc858b3-f48f-4494-8197-f0a10b210091\",\n            \"71428ebd-0d32-480c-b2cb-ee7200b1ed36\",\n            \"87036a42-16ff-424e-8bdf-5f598c249b5d\",\n            \"3ab7457a-0cd5-45fc-acbb-2e9dd1f5c44b\",\n            \"660a3f9b-d4a3-40b8-a996-07888f8fa480\",\n            \"3af5f9c3-df4a-4318-b765-0aa85361774c\",\n            \"6e1296aa-8418-46a0-bfa6-92ace03bb378\",\n            \"0de38cc9-ff3f-4b0b-a547-707d23c4d7ae\",\n            \"8638260e-1c1b-4a69-a5fb-3051f020c3bd\",\n            \"1c205522-6f45-4abe-8c38-67ffcaf642ab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75343322753906,\n      \"Text\": \"7. Name and Address of Applicant (include employee or badge number)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39302295446395874,\n          \"Height\": 0.00984878372400999,\n          \"Left\": 0.042409591376781464,\n          \"Top\": 0.34831491112709045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042409591376781464,\n            \"Y\": 0.34831491112709045\n          },\n          {\n            \"X\": 0.43542951345443726,\n            \"Y\": 0.34858596324920654\n          },\n          {\n            \"X\": 0.4354325532913208,\n            \"Y\": 0.3581636846065521\n          },\n          {\n            \"X\": 0.04241067171096802,\n            \"Y\": 0.357890784740448\n          }\n        ]\n      },\n      \"Id\": \"004d1f2c-d6b8-41a6-8a4b-48e98071009e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c93ab0db-b745-4c27-a08c-1634673f299f\",\n            \"4c3a7e80-d8cf-431b-9d5f-62cc51747248\",\n            \"f2a7ec77-1a18-4f80-a642-fd5f31379879\",\n            \"955949aa-276f-4ce5-ab68-3a67410800d2\",\n            \"30936ea0-3e84-4c04-a93a-3eb423f4a6dd\",\n            \"b7126e46-bcbd-41f4-925c-6b43863cf0b5\",\n            \"23f89d8d-acc0-478a-9f7c-c2c8b53388c8\",\n            \"5b97f988-4a70-4758-860a-31d43d77112c\",\n            \"cb180300-402a-4945-8805-c0f92c711221\",\n            \"eb6693bd-9c08-4233-a0a0-79b4007f74be\",\n            \"da3cc7ee-4dd4-4f42-a825-aad5a84bce36\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86229705810547,\n      \"Text\": \"8. Signature of Applicant\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1384347826242447,\n          \"Height\": 0.0098767364397645,\n          \"Left\": 0.5887062549591064,\n          \"Top\": 0.3480551540851593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5887062549591064,\n            \"Y\": 0.3480551540851593\n          },\n          {\n            \"X\": 0.7271364331245422,\n            \"Y\": 0.3481506109237671\n          },\n          {\n            \"X\": 0.7271410226821899,\n            \"Y\": 0.357931911945343\n          },\n          {\n            \"X\": 0.5887101292610168,\n            \"Y\": 0.3578357994556427\n          }\n        ]\n      },\n      \"Id\": \"a6ed7ab3-bba0-4113-9c8a-83ec7d7b405a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d92b7f4d-8539-4dcb-bc0f-b50ac4a32ec1\",\n            \"f1e4bca9-cfc8-4c02-9e98-0d4bd00c6c6b\",\n            \"1a90263a-7f4a-476f-8c7c-225610224586\",\n            \"fcc0a0fa-c270-48f1-990d-352b7ebb396b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.728515625,\n      \"Text\": \"Paulo Santos\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11545380204916,\n          \"Height\": 0.01219183299690485,\n          \"Left\": 0.0708005353808403,\n          \"Top\": 0.358690083026886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0708005353808403,\n            \"Y\": 0.358690083026886\n          },\n          {\n            \"X\": 0.18625207245349884,\n            \"Y\": 0.3587702810764313\n          },\n          {\n            \"X\": 0.1862543374300003,\n            \"Y\": 0.37088191509246826\n          },\n          {\n            \"X\": 0.07080207765102386,\n            \"Y\": 0.37080103158950806\n          }\n        ]\n      },\n      \"Id\": \"b2936001-ed2c-4c01-996c-2bdbc0dc27a9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37f24d08-cd7c-4cb8-939d-c338ec61ccc8\",\n            \"79e5bd30-42cb-4098-818f-47426f86e14a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95675659179688,\n      \"Text\": \"123 Any Street, Any Town, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2775675356388092,\n          \"Height\": 0.015512365847826004,\n          \"Left\": 0.07186982035636902,\n          \"Top\": 0.3734930157661438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07186982035636902,\n            \"Y\": 0.3734930157661438\n          },\n          {\n            \"X\": 0.34943318367004395,\n            \"Y\": 0.37368786334991455\n          },\n          {\n            \"X\": 0.3494373559951782,\n            \"Y\": 0.3890053927898407\n          },\n          {\n            \"X\": 0.0718717873096466,\n            \"Y\": 0.3888084888458252\n          }\n        ]\n      },\n      \"Id\": \"faaf878d-e7d7-4a22-8679-3c7fd1b6838a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"57abc660-b08b-4d02-b988-cb5b40b5be75\",\n            \"7ff7da55-d95d-4730-8f40-cbad031e084a\",\n            \"bd2bfcd9-304b-4d22-a150-64a11cafc31b\",\n            \"a4048dd7-3492-410f-9d8a-124f29e84fbe\",\n            \"f163f234-89d0-48c4-bc6f-d47e1a929975\",\n            \"9de115b5-350f-4769-aacb-5187d60184f9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.41061401367188,\n      \"Text\": \"Paulo Santos\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16449545323848724,\n          \"Height\": 0.0185956209897995,\n          \"Left\": 0.6292650699615479,\n          \"Top\": 0.36406210064888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6292650699615479,\n            \"Y\": 0.36406210064888\n          },\n          {\n            \"X\": 0.7937512397766113,\n            \"Y\": 0.36417677998542786\n          },\n          {\n            \"X\": 0.7937605381011963,\n            \"Y\": 0.3826577067375183\n          },\n          {\n            \"X\": 0.6292727589607239,\n            \"Y\": 0.38254156708717346\n          }\n        ]\n      },\n      \"Id\": \"05ee1b5b-2738-4625-89e6-d6ecdcb3b952\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a3eb87a-0c67-4485-9ceb-ba1927ff7c02\",\n            \"e88207da-971f-4052-8649-6ae854db3670\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.4013671875,\n      \"Text\": \"Part II - Verification of Present Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32443028688430786,\n          \"Height\": 0.01177036203444004,\n          \"Left\": 0.043234746903181076,\n          \"Top\": 0.394779771566391\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.043234746903181076,\n            \"Y\": 0.394779771566391\n          },\n          {\n            \"X\": 0.3676617741584778,\n            \"Y\": 0.3950108587741852\n          },\n          {\n            \"X\": 0.36766502261161804,\n            \"Y\": 0.4065501391887665\n          },\n          {\n            \"X\": 0.043236054480075836,\n            \"Y\": 0.40631723403930664\n          }\n        ]\n      },\n      \"Id\": \"f69a344b-f017-4a77-820e-5150a742d565\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46e3cdfe-76e9-454d-96fe-9292c6d80ec8\",\n            \"094d848e-a979-4a26-bda7-109a36cffdfe\",\n            \"34bd3737-3d52-4fb4-a8f5-70b97e0a66fd\",\n            \"6ff7b953-a678-4794-b7c6-abdade9b202e\",\n            \"6dbe580b-5f38-4853-8da9-091000aa3c41\",\n            \"7f2cc6ab-469b-4240-a299-603df5bca9b5\",\n            \"fb10e59f-b26b-4761-9211-3ae6674614d1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85250854492188,\n      \"Text\": \"9. Applicant's Date of Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1911705732345581,\n          \"Height\": 0.009632570669054985,\n          \"Left\": 0.04225533828139305,\n          \"Top\": 0.4092158079147339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04225533828139305,\n            \"Y\": 0.4092158079147339\n          },\n          {\n            \"X\": 0.23342390358448029,\n            \"Y\": 0.4093533158302307\n          },\n          {\n            \"X\": 0.23342591524124146,\n            \"Y\": 0.4188483655452728\n          },\n          {\n            \"X\": 0.04225640743970871,\n            \"Y\": 0.41870999336242676\n          }\n        ]\n      },\n      \"Id\": \"a14c1176-56e7-4c94-9da4-20172a268dfd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3223c48-cd7a-4441-8326-74ee827f9b97\",\n            \"834a1aa5-64f0-4c85-b595-6b58e421b6df\",\n            \"885c1c11-4447-48e0-87d5-24980a79a3da\",\n            \"d22c8d8c-8d40-4a82-87a5-eaee2cc6b4e5\",\n            \"75d63fdc-5bab-42fb-856c-9bdff865e95b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88156127929688,\n      \"Text\": \"10. Present Position\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10809216648340225,\n          \"Height\": 0.007907072082161903,\n          \"Left\": 0.27676165103912354,\n          \"Top\": 0.40916210412979126\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27676165103912354,\n            \"Y\": 0.40916210412979126\n          },\n          {\n            \"X\": 0.3848515450954437,\n            \"Y\": 0.40923982858657837\n          },\n          {\n            \"X\": 0.3848538100719452,\n            \"Y\": 0.4170691668987274\n          },\n          {\n            \"X\": 0.2767634689807892,\n            \"Y\": 0.4169910252094269\n          }\n        ]\n      },\n      \"Id\": \"27f33b62-e80c-408a-9db2-f360c5e8dc9b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99338f6e-65d3-44e6-9918-fb51ee647f23\",\n            \"69dbc662-a26a-4de6-b30c-a83a8873946a\",\n            \"29968e98-c21f-4671-a6fd-412f6eff7a12\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85460662841797,\n      \"Text\": \"11. Probability of Continued Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2240503579378128,\n          \"Height\": 0.009930622763931751,\n          \"Left\": 0.6482678055763245,\n          \"Top\": 0.40842103958129883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6482678055763245,\n            \"Y\": 0.40842103958129883\n          },\n          {\n            \"X\": 0.8723128437995911,\n            \"Y\": 0.40858206152915955\n          },\n          {\n            \"X\": 0.8723181486129761,\n            \"Y\": 0.4183516502380371\n          },\n          {\n            \"X\": 0.6482719779014587,\n            \"Y\": 0.4181895852088928\n          }\n        ]\n      },\n      \"Id\": \"dfd5ff9f-33e2-4878-ac31-2c4f5a98817c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"861f2955-5e65-4bba-8937-24bccbb54023\",\n            \"2dbce7b9-43ca-4ad7-83e4-f40a95652e2f\",\n            \"00f59a44-26d7-405d-a0b8-be0b4ba2a16d\",\n            \"e6aed907-79f1-4122-88e0-c7b296d25b39\",\n            \"55b63aad-1792-448c-bcd2-79c0c40a1fdf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8808822631836,\n      \"Text\": \"06/06/2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08179942518472672,\n          \"Height\": 0.010336610488593578,\n          \"Left\": 0.10546091198921204,\n          \"Top\": 0.4298610985279083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10546091198921204,\n            \"Y\": 0.4298610985279083\n          },\n          {\n            \"X\": 0.18725840747356415,\n            \"Y\": 0.4299207627773285\n          },\n          {\n            \"X\": 0.18726034462451935,\n            \"Y\": 0.4401977062225342\n          },\n          {\n            \"X\": 0.10546240955591202,\n            \"Y\": 0.440137654542923\n          }\n        ]\n      },\n      \"Id\": \"87c22dcd-9745-4222-9392-7fae2662fc46\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"577af623-1952-436e-835e-f4039b012c26\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90769958496094,\n      \"Text\": \"General Manager\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12683893740177155,\n          \"Height\": 0.012553660199046135,\n          \"Left\": 0.336567223072052,\n          \"Top\": 0.42980408668518066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.336567223072052,\n            \"Y\": 0.42980408668518066\n          },\n          {\n            \"X\": 0.46340203285217285,\n            \"Y\": 0.4298965632915497\n          },\n          {\n            \"X\": 0.46340614557266235,\n            \"Y\": 0.44235774874687195\n          },\n          {\n            \"X\": 0.33657053112983704,\n            \"Y\": 0.44226449728012085\n          }\n        ]\n      },\n      \"Id\": \"ccf6d04e-62a6-47a7-a339-a6b60c11636c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f31e3b5e-42b5-4681-adbd-5e1d60752e8e\",\n            \"b152fcc6-1ccb-45f0-bacd-d2e95dcfe502\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.909912109375,\n      \"Text\": \"3 years\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05338522791862488,\n          \"Height\": 0.012748654000461102,\n          \"Left\": 0.7277763485908508,\n          \"Top\": 0.42813098430633545\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7277763485908508,\n            \"Y\": 0.42813098430633545\n          },\n          {\n            \"X\": 0.7811552882194519,\n            \"Y\": 0.4281698763370514\n          },\n          {\n            \"X\": 0.7811615467071533,\n            \"Y\": 0.4408796429634094\n          },\n          {\n            \"X\": 0.7277823090553284,\n            \"Y\": 0.4408404529094696\n          }\n        ]\n      },\n      \"Id\": \"2072d41c-65c2-4926-afa1-f1b02d8bba87\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"53be3dbc-888c-47f5-be40-dda3a32a6cc3\",\n            \"df4bbfc3-c830-4fd3-a0f2-1c635afa53e4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.23200225830078,\n      \"Text\": \"12A. Current Gross Base Pay (Enter Amount and Check Period)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3511202037334442,\n          \"Height\": 0.009643224999308586,\n          \"Left\": 0.05293892323970795,\n          \"Top\": 0.45436227321624756\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05293892323970795,\n            \"Y\": 0.45436227321624756\n          },\n          {\n            \"X\": 0.4040563106536865,\n            \"Y\": 0.4546225070953369\n          },\n          {\n            \"X\": 0.40405911207199097,\n            \"Y\": 0.4640055000782013\n          },\n          {\n            \"X\": 0.05294003337621689,\n            \"Y\": 0.463743656873703\n          }\n        ]\n      },\n      \"Id\": \"cf4bfd34-b19d-451b-8407-3870c1e14854\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e605d196-a0e3-4db2-a084-a0bf9998d197\",\n            \"dd8cf520-af01-494f-b68c-d850a377a81b\",\n            \"7209b715-8119-4381-9962-f3c2f448e47d\",\n            \"f7b977a1-9974-47eb-b38e-d31d167335fd\",\n            \"f0356862-f79a-4abd-b62b-d0ab5e45bfc0\",\n            \"54e155ff-0f8c-484d-b50c-e61aa2cb4881\",\n            \"2a329573-93fc-442a-9bc6-489e5e0abae6\",\n            \"a2c4fd3a-4612-4342-9cc5-33332e7430b8\",\n            \"1efb6e7d-41b1-46ea-8759-497cbdb45de8\",\n            \"18aa70fe-1b08-4d7d-8e7e-429b795d7a50\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79573822021484,\n      \"Text\": \"13. For Military Personnel Only\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16821667551994324,\n          \"Height\": 0.009822992607951164,\n          \"Left\": 0.462687611579895,\n          \"Top\": 0.454012930393219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.462687611579895,\n            \"Y\": 0.454012930393219\n          },\n          {\n            \"X\": 0.6309002637863159,\n            \"Y\": 0.45413753390312195\n          },\n          {\n            \"X\": 0.6309043169021606,\n            \"Y\": 0.4638358950614929\n          },\n          {\n            \"X\": 0.4626908302307129,\n            \"Y\": 0.4637104868888855\n          }\n        ]\n      },\n      \"Id\": \"1e80204f-0c52-48c5-9ac7-f982e3b9fc04\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"501b573b-5d9a-447a-9277-b8b321e6481d\",\n            \"2956da8d-d246-4b36-a3ee-c6af970c18a2\",\n            \"e9ab2fdf-c1f2-4d00-8830-0f7f377c6570\",\n            \"06ad8d2b-8f84-4d23-9c7a-6ee362d8dde5\",\n            \"b992eb4d-86a0-43cf-89e8-b0998cdca84d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65579223632812,\n      \"Text\": \"14. If Overtime or Bonus is Applicable,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21111270785331726,\n          \"Height\": 0.009662745520472527,\n          \"Left\": 0.6940023303031921,\n          \"Top\": 0.4603521227836609\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6940023303031921,\n            \"Y\": 0.4603521227836609\n          },\n          {\n            \"X\": 0.9051097631454468,\n            \"Y\": 0.46050915122032166\n          },\n          {\n            \"X\": 0.9051150679588318,\n            \"Y\": 0.47001487016677856\n          },\n          {\n            \"X\": 0.694006621837616,\n            \"Y\": 0.469856858253479\n          }\n        ]\n      },\n      \"Id\": \"976f4378-ac8b-438c-9407-3695f29d13a2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bea8726e-91ca-4df7-b734-e43922f4afb0\",\n            \"0d9f6940-e095-41d5-8979-916423bc487b\",\n            \"31fa31d0-5542-4fe1-b998-6e14f15e5d38\",\n            \"33c7193a-5481-4f67-88c2-383385744ac5\",\n            \"34004a52-01f4-46f9-bd85-7cc22dc2aef9\",\n            \"32792ab4-ffd2-49b8-b025-f21835e76083\",\n            \"b85952e1-5b51-4431-8683-35c7b3dc34cf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96941375732422,\n      \"Text\": \"Annual\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038516540080308914,\n          \"Height\": 0.007513827178627253,\n          \"Left\": 0.17548856139183044,\n          \"Top\": 0.47004562616348267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17548856139183044,\n            \"Y\": 0.47004562616348267\n          },\n          {\n            \"X\": 0.21400359272956848,\n            \"Y\": 0.47007447481155396\n          },\n          {\n            \"X\": 0.21400509774684906,\n            \"Y\": 0.4775594472885132\n          },\n          {\n            \"X\": 0.17548993229866028,\n            \"Y\": 0.47753047943115234\n          }\n        ]\n      },\n      \"Id\": \"1a465e29-f814-4ba4-a252-2dbb81ebeaab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cbfdbe95-2234-4fa5-a9d0-0e1e10db260d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91011810302734,\n      \"Text\": \"Hourly\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035166699439287186,\n          \"Height\": 0.009193075820803642,\n          \"Left\": 0.2735043168067932,\n          \"Top\": 0.46994781494140625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2735043168067932,\n            \"Y\": 0.46994781494140625\n          },\n          {\n            \"X\": 0.30866870284080505,\n            \"Y\": 0.469974160194397\n          },\n          {\n            \"X\": 0.3086709976196289,\n            \"Y\": 0.47914090752601624\n          },\n          {\n            \"X\": 0.27350643277168274,\n            \"Y\": 0.4791144132614136\n          }\n        ]\n      },\n      \"Id\": \"97a2e24f-253d-42f4-ba7d-7399b66d12f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"98b61ae6-7069-4c7b-9e38-32cca1f292c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89341735839844,\n      \"Text\": \"Pay Grade\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056184202432632446,\n          \"Height\": 0.00936719961464405,\n          \"Left\": 0.46248868107795715,\n          \"Top\": 0.46944043040275574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46248868107795715,\n            \"Y\": 0.46944043040275574\n          },\n          {\n            \"X\": 0.5186695456504822,\n            \"Y\": 0.4694824814796448\n          },\n          {\n            \"X\": 0.5186728835105896,\n            \"Y\": 0.47880762815475464\n          },\n          {\n            \"X\": 0.4624917805194855,\n            \"Y\": 0.4787653386592865\n          }\n        ]\n      },\n      \"Id\": \"64e877d1-9053-4752-87ce-25a26b6dd0d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3ebd9d23-82b7-4281-9e26-16ddf9367c67\",\n            \"edf15306-c1dd-4c3d-9bf6-79ee11f33786\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97754669189453,\n      \"Text\": \"10\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013682499527931213,\n          \"Height\": 0.008137601427733898,\n          \"Left\": 0.6053122282028198,\n          \"Top\": 0.47006332874298096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6053122282028198,\n            \"Y\": 0.47006332874298096\n          },\n          {\n            \"X\": 0.6189913749694824,\n            \"Y\": 0.47007355093955994\n          },\n          {\n            \"X\": 0.6189947128295898,\n            \"Y\": 0.47820091247558594\n          },\n          {\n            \"X\": 0.6053155064582825,\n            \"Y\": 0.4781906306743622\n          }\n        ]\n      },\n      \"Id\": \"3d1eedc4-807c-4821-bbe1-61930558f664\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d3465808-1142-48fc-bdf5-c56c3a9c1bc9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.8653335571289,\n      \"Text\": \"Is Its Continuance Likely?\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13847216963768005,\n          \"Height\": 0.009340441785752773,\n          \"Left\": 0.7142788767814636,\n          \"Top\": 0.4704838693141937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7142788767814636,\n            \"Y\": 0.4704838693141937\n          },\n          {\n            \"X\": 0.8527461290359497,\n            \"Y\": 0.4705875515937805\n          },\n          {\n            \"X\": 0.8527510166168213,\n            \"Y\": 0.4798243045806885\n          },\n          {\n            \"X\": 0.7142831087112427,\n            \"Y\": 0.47971999645233154\n          }\n        ]\n      },\n      \"Id\": \"a64f517d-b6af-4c0f-bb58-d2052386248e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cf2543e9-4251-464c-a8c8-726032ebd1b8\",\n            \"a0813f12-27cb-4dbc-a9c2-2847d772de69\",\n            \"07735d07-7149-44b3-83bf-2492064b130f\",\n            \"a99a4d4e-2945-4f80-bc21-237c6837547f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95346069335938,\n      \"Text\": \"Monthly\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044197168201208115,\n          \"Height\": 0.009048404172062874,\n          \"Left\": 0.1757652908563614,\n          \"Top\": 0.485186368227005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1757652908563614,\n            \"Y\": 0.485186368227005\n          },\n          {\n            \"X\": 0.21996060013771057,\n            \"Y\": 0.4852197766304016\n          },\n          {\n            \"X\": 0.2199624478816986,\n            \"Y\": 0.49423477053642273\n          },\n          {\n            \"X\": 0.1757669299840927,\n            \"Y\": 0.4942011535167694\n          }\n        ]\n      },\n      \"Id\": \"2d886c2a-03cd-4f4e-963f-2e56792ab2aa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"679529f8-0d6f-4a1c-93fb-18153d91876e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76750946044922,\n      \"Text\": \"Other (Specify)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08224381506443024,\n          \"Height\": 0.009435691870748997,\n          \"Left\": 0.27325913310050964,\n          \"Top\": 0.4848152995109558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27325913310050964,\n            \"Y\": 0.4848152995109558\n          },\n          {\n            \"X\": 0.35550037026405334,\n            \"Y\": 0.48487746715545654\n          },\n          {\n            \"X\": 0.3555029332637787,\n            \"Y\": 0.49425098299980164\n          },\n          {\n            \"X\": 0.27326130867004395,\n            \"Y\": 0.49418845772743225\n          }\n        ]\n      },\n      \"Id\": \"6c648f83-b00e-4998-a56f-9fddc1af0600\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0eb04549-25d2-4583-a64c-a3b6683a7589\",\n            \"7fb58062-961a-4603-89a0-d4c0e23074aa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92752838134766,\n      \"Text\": \"Type\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026862287893891335,\n          \"Height\": 0.009509916417300701,\n          \"Left\": 0.4622015058994293,\n          \"Top\": 0.4848152995109558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4622015058994293,\n            \"Y\": 0.4848152995109558\n          },\n          {\n            \"X\": 0.48906052112579346,\n            \"Y\": 0.4848356246948242\n          },\n          {\n            \"X\": 0.4890637993812561,\n            \"Y\": 0.4943252205848694\n          },\n          {\n            \"X\": 0.46220463514328003,\n            \"Y\": 0.4943048059940338\n          }\n        ]\n      },\n      \"Id\": \"09a5c826-2ea3-4278-9eea-6c88533afaff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a4137c26-64b0-44b4-a3f0-16cf8b4e2d96\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94239807128906,\n      \"Text\": \"Monthly Amount\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0924062579870224,\n          \"Height\": 0.009123951196670532,\n          \"Left\": 0.5697677135467529,\n          \"Top\": 0.48490071296691895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5697677135467529,\n            \"Y\": 0.48490071296691895\n          },\n          {\n            \"X\": 0.6621700525283813,\n            \"Y\": 0.4849705696105957\n          },\n          {\n            \"X\": 0.6621739864349365,\n            \"Y\": 0.4940246641635895\n          },\n          {\n            \"X\": 0.5697712302207947,\n            \"Y\": 0.4939544200897217\n          }\n        ]\n      },\n      \"Id\": \"c1cd1988-371b-4660-b536-4370c52ed44f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"964d6a85-3e94-43e7-8f73-03afcade4092\",\n            \"5596b141-98e4-4b46-b806-a8d61e8473a3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91141510009766,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04869239032268524,\n          \"Height\": 0.007908759638667107,\n          \"Left\": 0.7163776159286499,\n          \"Top\": 0.4858814477920532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7163776159286499,\n            \"Y\": 0.4858814477920532\n          },\n          {\n            \"X\": 0.7650661468505859,\n            \"Y\": 0.4859182834625244\n          },\n          {\n            \"X\": 0.7650699615478516,\n            \"Y\": 0.4937902092933655\n          },\n          {\n            \"X\": 0.7163812518119812,\n            \"Y\": 0.49375322461128235\n          }\n        ]\n      },\n      \"Id\": \"300383db-c133-4610-ae96-1fef6a9de0ed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"22a75d8a-f351-469d-90a9-4fa62382e122\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96331024169922,\n      \"Text\": \"Yes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019769199192523956,\n          \"Height\": 0.00759913632646203,\n          \"Left\": 0.8211093544960022,\n          \"Top\": 0.4859759509563446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8211093544960022,\n            \"Y\": 0.4859759509563446\n          },\n          {\n            \"X\": 0.8408745527267456,\n            \"Y\": 0.48599088191986084\n          },\n          {\n            \"X\": 0.8408785462379456,\n            \"Y\": 0.4935750663280487\n          },\n          {\n            \"X\": 0.8211132884025574,\n            \"Y\": 0.4935600459575653\n          }\n        ]\n      },\n      \"Id\": \"81759555-44bf-4a22-a4a7-5ed88388a045\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"df368f63-f572-47bd-9fec-868582b3e533\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86602020263672,\n      \"Text\": \"No\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015231152065098286,\n          \"Height\": 0.007691001053899527,\n          \"Left\": 0.8815532922744751,\n          \"Top\": 0.4859236180782318\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8815532922744751,\n            \"Y\": 0.4859236180782318\n          },\n          {\n            \"X\": 0.8967801928520203,\n            \"Y\": 0.48593515157699585\n          },\n          {\n            \"X\": 0.8967844247817993,\n            \"Y\": 0.4936146140098572\n          },\n          {\n            \"X\": 0.8815575242042542,\n            \"Y\": 0.49360305070877075\n          }\n        ]\n      },\n      \"Id\": \"687291d0-c171-4e06-a48f-10784df04844\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"02711ad4-b8db-4035-a1a9-6a0eca0c92a1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86178588867188,\n      \"Text\": \"$ 5600\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04923189803957939,\n          \"Height\": 0.009179753251373768,\n          \"Left\": 0.05237128213047981,\n          \"Top\": 0.49897301197052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05237128213047981,\n            \"Y\": 0.49897301197052\n          },\n          {\n            \"X\": 0.10160186886787415,\n            \"Y\": 0.4990105926990509\n          },\n          {\n            \"X\": 0.1016031801700592,\n            \"Y\": 0.5081527829170227\n          },\n          {\n            \"X\": 0.05237235873937607,\n            \"Y\": 0.5081149935722351\n          }\n        ]\n      },\n      \"Id\": \"5184eb46-3e0a-49bc-b355-6bdcb3372320\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52dd7b25-729e-4e37-a67b-7a05b6034732\",\n            \"7fa626c0-ce16-4c57-9a55-8b9ed6a7d46e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75518798828125,\n      \"Text\": \"Bonus\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033616382628679276,\n          \"Height\": 0.0076016588136553764,\n          \"Left\": 0.7166971564292908,\n          \"Top\": 0.4961114823818207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7166971564292908,\n            \"Y\": 0.4961114823818207\n          },\n          {\n            \"X\": 0.7503098845481873,\n            \"Y\": 0.4961370825767517\n          },\n          {\n            \"X\": 0.7503135204315186,\n            \"Y\": 0.5037131309509277\n          },\n          {\n            \"X\": 0.7167006731033325,\n            \"Y\": 0.5036874413490295\n          }\n        ]\n      },\n      \"Id\": \"cd7467c5-df30-4fee-a04c-9c98b3ecaed3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ba67eb95-2fdc-426f-a7ff-72c529a674f7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96395111083984,\n      \"Text\": \"Yes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019986320286989212,\n          \"Height\": 0.007596176117658615,\n          \"Left\": 0.8208472728729248,\n          \"Top\": 0.4959971308708191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8208472728729248,\n            \"Y\": 0.4959971308708191\n          },\n          {\n            \"X\": 0.8408295512199402,\n            \"Y\": 0.4960123300552368\n          },\n          {\n            \"X\": 0.8408335447311401,\n            \"Y\": 0.5035933256149292\n          },\n          {\n            \"X\": 0.8208511471748352,\n            \"Y\": 0.5035780072212219\n          }\n        ]\n      },\n      \"Id\": \"6fe6c390-f217-4920-88c2-f5fe68a53b89\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"21f912c3-ead9-45f9-ba17-9b42f17df6bc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81405639648438,\n      \"Text\": \"No\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015358570963144302,\n          \"Height\": 0.007808223832398653,\n          \"Left\": 0.8813149929046631,\n          \"Top\": 0.4959584176540375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8813149929046631,\n            \"Y\": 0.4959584176540375\n          },\n          {\n            \"X\": 0.8966692686080933,\n            \"Y\": 0.49597010016441345\n          },\n          {\n            \"X\": 0.8966735601425171,\n            \"Y\": 0.503766655921936\n          },\n          {\n            \"X\": 0.8813192844390869,\n            \"Y\": 0.5037549138069153\n          }\n        ]\n      },\n      \"Id\": \"81af2ebf-b3e0-47c8-9be3-d8d15689389c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"039d0e09-08a0-4457-8a28-333b8c3acef7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94515228271484,\n      \"Text\": \"Weekly\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040022775530815125,\n          \"Height\": 0.009166546165943146,\n          \"Left\": 0.17523615062236786,\n          \"Top\": 0.500241219997406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17523615062236786,\n            \"Y\": 0.500241219997406\n          },\n          {\n            \"X\": 0.21525707840919495,\n            \"Y\": 0.500271737575531\n          },\n          {\n            \"X\": 0.21525892615318298,\n            \"Y\": 0.5094077587127686\n          },\n          {\n            \"X\": 0.17523781955242157,\n            \"Y\": 0.5093770027160645\n          }\n        ]\n      },\n      \"Id\": \"93a508af-cd6c-42b8-aa4a-dd9ba6412b40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fca0add3-4391-415d-a1a2-d3aa10cb7352\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81309509277344,\n      \"Text\": \"Base Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050246208906173706,\n          \"Height\": 0.009508914314210415,\n          \"Left\": 0.4622069001197815,\n          \"Top\": 0.5085137486457825\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4622069001197815,\n            \"Y\": 0.5085137486457825\n          },\n          {\n            \"X\": 0.5124497413635254,\n            \"Y\": 0.5085523128509521\n          },\n          {\n            \"X\": 0.5124531388282776,\n            \"Y\": 0.5180227160453796\n          },\n          {\n            \"X\": 0.4622100293636322,\n            \"Y\": 0.5179839134216309\n          }\n        ]\n      },\n      \"Id\": \"52010ffd-9987-4161-b34a-0e366b0ef63f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"82db3168-877d-4e7d-8837-c29116d15454\",\n            \"6e04c6ca-304e-4304-9660-eba3eaaa9f97\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.64864349365234,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0065875668078660965,\n          \"Height\": 0.00795650202780962,\n          \"Left\": 0.5693185925483704,\n          \"Top\": 0.5084983706474304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693185925483704,\n            \"Y\": 0.5084983706474304\n          },\n          {\n            \"X\": 0.575903058052063,\n            \"Y\": 0.5085034370422363\n          },\n          {\n            \"X\": 0.5759061574935913,\n            \"Y\": 0.5164548754692078\n          },\n          {\n            \"X\": 0.5693216919898987,\n            \"Y\": 0.5164498090744019\n          }\n        ]\n      },\n      \"Id\": \"9bebc6bf-3f2d-45a0-a96e-a4a659a509e8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89365d6a-5b71-4ba4-b054-e144e8651a6c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95767211914062,\n      \"Text\": \"520\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021677587181329727,\n          \"Height\": 0.008442598395049572,\n          \"Left\": 0.6007818579673767,\n          \"Top\": 0.5078707933425903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6007818579673767,\n            \"Y\": 0.5078707933425903\n          },\n          {\n            \"X\": 0.6224559545516968,\n            \"Y\": 0.5078874230384827\n          },\n          {\n            \"X\": 0.6224594116210938,\n            \"Y\": 0.516313374042511\n          },\n          {\n            \"X\": 0.6007852554321289,\n            \"Y\": 0.5162966847419739\n          }\n        ]\n      },\n      \"Id\": \"b7d0a21e-00b1-4aca-8d3b-1fb8d8278ba5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e0903cf3-3f97-4fc1-89e2-5caf74017737\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.50347900390625,\n      \"Text\": \"12B. Gross Earnings\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11263255029916763,\n          \"Height\": 0.008776340633630753,\n          \"Left\": 0.1912311613559723,\n          \"Top\": 0.5152747631072998\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1912311613559723,\n            \"Y\": 0.5152747631072998\n          },\n          {\n            \"X\": 0.3038615584373474,\n            \"Y\": 0.5153615474700928\n          },\n          {\n            \"X\": 0.3038637042045593,\n            \"Y\": 0.5240511298179626\n          },\n          {\n            \"X\": 0.1912328153848648,\n            \"Y\": 0.5239638090133667\n          }\n        ]\n      },\n      \"Id\": \"1deec730-ae7e-4a73-9e57-c1c33ed567c1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0cc73077-7f4a-4fec-9e65-8ed679b504d8\",\n            \"99d29c7c-9c65-442d-9170-e2943adada0b\",\n            \"3f30c560-e227-4962-9507-e89fc0846897\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.8770751953125,\n      \"Text\": \"15. If paid hourly - average hours per\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2106601744890213,\n          \"Height\": 0.00971818994730711,\n          \"Left\": 0.6941283345222473,\n          \"Top\": 0.5145728588104248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6941283345222473,\n            \"Y\": 0.5145728588104248\n          },\n          {\n            \"X\": 0.9047831892967224,\n            \"Y\": 0.5147351026535034\n          },\n          {\n            \"X\": 0.9047884941101074,\n            \"Y\": 0.5242910385131836\n          },\n          {\n            \"X\": 0.6941326260566711,\n            \"Y\": 0.5241278409957886\n          }\n        ]\n      },\n      \"Id\": \"48d0558d-7f6d-41b4-a4b9-25b752e5029b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"95965eaa-0aaf-4cfe-a4e3-10044ac308cd\",\n            \"1f536c90-70ef-444e-9550-ff70b21ac56b\",\n            \"6c4c7e9f-d779-41fa-81cc-9749db2284ea\",\n            \"e07fc12a-179e-4f5a-b957-e18188f03c2a\",\n            \"b984e697-5c59-47d2-a1f5-1b28db23c63b\",\n            \"617413c8-54b0-451b-8069-c0071b1db832\",\n            \"2eb526d4-c9f4-432e-bc95-ae8cf577b13f\",\n            \"aaa6fb6f-9c34-4444-bd26-12497c4e676f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91734313964844,\n      \"Text\": \"week\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028228431940078735,\n          \"Height\": 0.007448879070580006,\n          \"Left\": 0.7135378122329712,\n          \"Top\": 0.5252330303192139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7135378122329712,\n            \"Y\": 0.5252330303192139\n          },\n          {\n            \"X\": 0.7417626976966858,\n            \"Y\": 0.5252549052238464\n          },\n          {\n            \"X\": 0.7417662739753723,\n            \"Y\": 0.5326818823814392\n          },\n          {\n            \"X\": 0.7135412096977234,\n            \"Y\": 0.5326599478721619\n          }\n        ]\n      },\n      \"Id\": \"3de06a90-e6a8-47c9-8c65-7c85258ccd5f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5e38be8-c4b4-4332-abee-46a23a401490\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57598114013672,\n      \"Text\": \"Type\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02633204124867916,\n          \"Height\": 0.009176858700811863,\n          \"Left\": 0.05254114046692848,\n          \"Top\": 0.5306742191314697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05254114046692848,\n            \"Y\": 0.5306742191314697\n          },\n          {\n            \"X\": 0.07887197285890579,\n            \"Y\": 0.5306947231292725\n          },\n          {\n            \"X\": 0.0788731798529625,\n            \"Y\": 0.5398510694503784\n          },\n          {\n            \"X\": 0.052542220801115036,\n            \"Y\": 0.5398305058479309\n          }\n        ]\n      },\n      \"Id\": \"2650115e-e724-47c6-95a3-2dec40803269\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f028f021-0221-4738-a906-05cb6e816e15\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8824691772461,\n      \"Text\": \"Year To Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07270632684230804,\n          \"Height\": 0.007902485318481922,\n          \"Left\": 0.13994848728179932,\n          \"Top\": 0.5303510427474976\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13994848728179932,\n            \"Y\": 0.5303510427474976\n          },\n          {\n            \"X\": 0.2126532346010208,\n            \"Y\": 0.5304076075553894\n          },\n          {\n            \"X\": 0.21265481412410736,\n            \"Y\": 0.5382534861564636\n          },\n          {\n            \"X\": 0.139949768781662,\n            \"Y\": 0.5381966829299927\n          }\n        ]\n      },\n      \"Id\": \"dd3cc627-946a-4f64-9a5f-aff04ba8bbc8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"87afe5b6-375f-449a-a32b-3f31ac1c0b20\",\n            \"e7618cd1-7eb3-476c-98b4-34a40e307115\",\n            \"b198602b-1bf9-4ce7-9035-dbc700302316\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71556854248047,\n      \"Text\": \"Past Year\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05171715095639229,\n          \"Height\": 0.007690563797950745,\n          \"Left\": 0.24778549373149872,\n          \"Top\": 0.5304641723632812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24778549373149872,\n            \"Y\": 0.5304641723632812\n          },\n          {\n            \"X\": 0.2995007634162903,\n            \"Y\": 0.5305044651031494\n          },\n          {\n            \"X\": 0.2995026409626007,\n            \"Y\": 0.5381547808647156\n          },\n          {\n            \"X\": 0.24778717756271362,\n            \"Y\": 0.5381143093109131\n          }\n        ]\n      },\n      \"Id\": \"6e1358f5-7a64-444e-982b-b976968918c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce33e3fc-4a3a-4d74-a8b1-8f9411ff8057\",\n            \"9d61693f-d822-407c-ab54-59fb3854f0ac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.13614654541016,\n      \"Text\": \"Past Year\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052022095769643784,\n          \"Height\": 0.007832663133740425,\n          \"Left\": 0.3547185957431793,\n          \"Top\": 0.5303520560264587\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3547185957431793,\n            \"Y\": 0.5303520560264587\n          },\n          {\n            \"X\": 0.4067383408546448,\n            \"Y\": 0.5303925275802612\n          },\n          {\n            \"X\": 0.406740665435791,\n            \"Y\": 0.5381847620010376\n          },\n          {\n            \"X\": 0.35472071170806885,\n            \"Y\": 0.538144052028656\n          }\n        ]\n      },\n      \"Id\": \"047524a5-6ad2-45ae-b467-f236f15a7be2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"17c374b1-dbfa-4d0b-b2df-c6681deea5a4\",\n            \"ec2f2e86-0ad9-424e-948b-6ace85d46483\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74243927001953,\n      \"Text\": \"Rations\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039623454213142395,\n          \"Height\": 0.007699131034314632,\n          \"Left\": 0.4626137912273407,\n          \"Top\": 0.5303477644920349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626137912273407,\n            \"Y\": 0.5303477644920349\n          },\n          {\n            \"X\": 0.5022345781326294,\n            \"Y\": 0.5303785800933838\n          },\n          {\n            \"X\": 0.5022372603416443,\n            \"Y\": 0.5380468964576721\n          },\n          {\n            \"X\": 0.46261632442474365,\n            \"Y\": 0.5380159020423889\n          }\n        ]\n      },\n      \"Id\": \"0ae5b31e-c14d-44f1-8f2f-baf39b193358\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c9950eb-61fa-480a-b336-8893250a4f8a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81990051269531,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00636565126478672,\n          \"Height\": 0.007810980547219515,\n          \"Left\": 0.569416880607605,\n          \"Top\": 0.5302191972732544\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.569416880607605,\n            \"Y\": 0.5302191972732544\n          },\n          {\n            \"X\": 0.5757794976234436,\n            \"Y\": 0.5302241444587708\n          },\n          {\n            \"X\": 0.5757825374603271,\n            \"Y\": 0.5380301475524902\n          },\n          {\n            \"X\": 0.5694199204444885,\n            \"Y\": 0.5380252003669739\n          }\n        ]\n      },\n      \"Id\": \"108f2832-0acc-4a22-8638-2edf4091e47d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ffc8f15-0ddb-4781-8cc2-1b3e52308fae\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84886169433594,\n      \"Text\": \"162\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020970160141587257,\n          \"Height\": 0.008265306241810322,\n          \"Left\": 0.6047706604003906,\n          \"Top\": 0.5317496061325073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6047706604003906,\n            \"Y\": 0.5317496061325073\n          },\n          {\n            \"X\": 0.6257374286651611,\n            \"Y\": 0.5317659378051758\n          },\n          {\n            \"X\": 0.6257408261299133,\n            \"Y\": 0.540014922618866\n          },\n          {\n            \"X\": 0.604773998260498,\n            \"Y\": 0.5399985313415527\n          }\n        ]\n      },\n      \"Id\": \"606dcb98-a7b4-41a7-8530-74aa399b925d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"be2f9285-9a1f-4e1e-a83a-520cc21e421a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94456481933594,\n      \"Text\": \"40 hours\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05130300298333168,\n          \"Height\": 0.008549957536160946,\n          \"Left\": 0.7712321281433105,\n          \"Top\": 0.5289791226387024\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7712321281433105,\n            \"Y\": 0.5289791226387024\n          },\n          {\n            \"X\": 0.8225307464599609,\n            \"Y\": 0.5290189981460571\n          },\n          {\n            \"X\": 0.8225351572036743,\n            \"Y\": 0.5375290513038635\n          },\n          {\n            \"X\": 0.7712363004684448,\n            \"Y\": 0.5374889969825745\n          }\n        ]\n      },\n      \"Id\": \"9f396b6a-d0e5-4419-a2f5-f151a06f1482\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d680c033-acdf-49d6-b180-0ee8f4fd6a2d\",\n            \"0d6f17a6-449e-4ff4-8389-c4d5b8621f20\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89129638671875,\n      \"Text\": \"Thru\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025051290169358253,\n          \"Height\": 0.0076190754771232605,\n          \"Left\": 0.13956819474697113,\n          \"Top\": 0.5455904006958008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13956819474697113,\n            \"Y\": 0.5455904006958008\n          },\n          {\n            \"X\": 0.16461814939975739,\n            \"Y\": 0.5456100702285767\n          },\n          {\n            \"X\": 0.16461949050426483,\n            \"Y\": 0.5532094240188599\n          },\n          {\n            \"X\": 0.13956943154335022,\n            \"Y\": 0.5531896948814392\n          }\n        ]\n      },\n      \"Id\": \"57c5d59b-207f-4a02-a093-2774fcaf0cd6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c943454c-9cf7-4c5a-a787-9fb944bc5c2b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98235321044922,\n      \"Text\": \"2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028981033712625504,\n          \"Height\": 0.008390314877033234,\n          \"Left\": 0.1786215603351593,\n          \"Top\": 0.5441566705703735\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786215603351593,\n            \"Y\": 0.5441566705703735\n          },\n          {\n            \"X\": 0.2076009213924408,\n            \"Y\": 0.544179379940033\n          },\n          {\n            \"X\": 0.2076025903224945,\n            \"Y\": 0.5525469779968262\n          },\n          {\n            \"X\": 0.17862309515476227,\n            \"Y\": 0.5525241494178772\n          }\n        ]\n      },\n      \"Id\": \"cdbce171-dbb1-4f8d-b21f-ea2fac312444\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e2d5c9a9-acab-44c4-9e65-a280ef6815dc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87841033935547,\n      \"Text\": \"16. Date of applicant's next pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2221560776233673,\n          \"Height\": 0.009538732469081879,\n          \"Left\": 0.6940240859985352,\n          \"Top\": 0.545051097869873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6940240859985352,\n            \"Y\": 0.545051097869873\n          },\n          {\n            \"X\": 0.9161748886108398,\n            \"Y\": 0.5452254414558411\n          },\n          {\n            \"X\": 0.9161801934242249,\n            \"Y\": 0.5545898079872131\n          },\n          {\n            \"X\": 0.6940283179283142,\n            \"Y\": 0.5544144511222839\n          }\n        ]\n      },\n      \"Id\": \"a7a0ffee-5e5a-4a8b-8eb7-18024581806c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"79076373-0b1d-4cdb-86f5-eb46095673bf\",\n            \"409ffaf0-14ce-42a1-a40d-fbdf784734f8\",\n            \"99b8cb69-4c76-459b-8539-bb32874dfa05\",\n            \"47322fc8-14ac-4f3c-84c1-0129e6cb57c3\",\n            \"2ccc745c-c793-4c82-abda-184ea23078d2\",\n            \"0f8133ac-a29f-4154-ae2b-325f293e7c3c\",\n            \"1a202e8d-019d-40af-9762-743fa90feb52\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87911987304688,\n      \"Text\": \"30.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03289303928613663,\n          \"Height\": 0.008630608208477497,\n          \"Left\": 0.3741123676300049,\n          \"Top\": 0.5552673935890198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3741123676300049,\n            \"Y\": 0.5552673935890198\n          },\n          {\n            \"X\": 0.4070028066635132,\n            \"Y\": 0.5552933216094971\n          },\n          {\n            \"X\": 0.4070053994655609,\n            \"Y\": 0.563897967338562\n          },\n          {\n            \"X\": 0.3741148114204407,\n            \"Y\": 0.5638718605041504\n          }\n        ]\n      },\n      \"Id\": \"e449777b-95b8-4068-acba-15e1bd3ee21c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c3a2a48a-38ab-40d0-b790-a3ce68a695f8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.65132904052734,\n      \"Text\": \"Flight or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04503258317708969,\n          \"Height\": 0.009351863525807858,\n          \"Left\": 0.46253666281700134,\n          \"Top\": 0.5504017472267151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46253666281700134,\n            \"Y\": 0.5504017472267151\n          },\n          {\n            \"X\": 0.507565975189209,\n            \"Y\": 0.5504372119903564\n          },\n          {\n            \"X\": 0.5075692534446716,\n            \"Y\": 0.5597535967826843\n          },\n          {\n            \"X\": 0.4625397324562073,\n            \"Y\": 0.5597179532051086\n          }\n        ]\n      },\n      \"Id\": \"abdef1b3-1038-481a-84a8-4b767668ac3e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a98f4a5-cc21-4044-9611-c36305b55aec\",\n            \"f014465d-0365-4fe2-b5ff-a9b60897b2b8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8321533203125,\n      \"Text\": \"Base Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04943837970495224,\n          \"Height\": 0.009282751940190792,\n          \"Left\": 0.05289473384618759,\n          \"Top\": 0.5608851909637451\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05289473384618759,\n            \"Y\": 0.5608851909637451\n          },\n          {\n            \"X\": 0.10233177989721298,\n            \"Y\": 0.5609244108200073\n          },\n          {\n            \"X\": 0.10233311355113983,\n            \"Y\": 0.5701679587364197\n          },\n          {\n            \"X\": 0.05289582535624504,\n            \"Y\": 0.5701285600662231\n          }\n        ]\n      },\n      \"Id\": \"1aa01eea-494b-4687-a10f-bbc571c7ced0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5090450e-3818-48ab-b8af-1430c796f7a9\",\n            \"4b1f339f-37e3-420e-9d11-2c212de3facc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4413070678711,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006267897319048643,\n          \"Height\": 0.007676920387893915,\n          \"Left\": 0.13965840637683868,\n          \"Top\": 0.5608159303665161\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13965840637683868,\n            \"Y\": 0.5608159303665161\n          },\n          {\n            \"X\": 0.14592501521110535,\n            \"Y\": 0.5608209371566772\n          },\n          {\n            \"X\": 0.14592629671096802,\n            \"Y\": 0.5684928894042969\n          },\n          {\n            \"X\": 0.13965965807437897,\n            \"Y\": 0.5684878826141357\n          }\n        ]\n      },\n      \"Id\": \"d7f5fdb4-dae6-4c61-8332-ec0c5e5ad4a4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"07ba3672-1638-48ea-9a7b-dff0a64b1d16\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.77165222167969,\n      \"Text\": \"$ 20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05088743567466736,\n          \"Height\": 0.009826247580349445,\n          \"Left\": 0.24695219099521637,\n          \"Top\": 0.5586053729057312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24695219099521637,\n            \"Y\": 0.5586053729057312\n          },\n          {\n            \"X\": 0.2978372275829315,\n            \"Y\": 0.5586456656455994\n          },\n          {\n            \"X\": 0.2978396415710449,\n            \"Y\": 0.5684316158294678\n          },\n          {\n            \"X\": 0.24695433676242828,\n            \"Y\": 0.5683910846710205\n          }\n        ]\n      },\n      \"Id\": \"99d8fb77-23a8-4d71-88ae-5c8da3314a14\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3d883a60-1ac4-49d9-be2e-6054b2ee022f\",\n            \"df7b7361-7cb7-4de2-b3ae-b04fc1a12d87\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87579345703125,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006274546962231398,\n          \"Height\": 0.0077102286741137505,\n          \"Left\": 0.35420501232147217,\n          \"Top\": 0.5607873201370239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35420501232147217,\n            \"Y\": 0.5607873201370239\n          },\n          {\n            \"X\": 0.3604774475097656,\n            \"Y\": 0.5607922673225403\n          },\n          {\n            \"X\": 0.36047956347465515,\n            \"Y\": 0.5684975385665894\n          },\n          {\n            \"X\": 0.3542071282863617,\n            \"Y\": 0.5684925317764282\n          }\n        ]\n      },\n      \"Id\": \"2d352df5-fed1-47a7-b3af-3e8198db2120\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"59dbf1ef-0316-49c0-8211-9339753332e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89368438720703,\n      \"Text\": \"Hazard\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037133511155843735,\n          \"Height\": 0.007404094561934471,\n          \"Left\": 0.4623924195766449,\n          \"Top\": 0.5608483552932739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4623924195766449,\n            \"Y\": 0.5608483552932739\n          },\n          {\n            \"X\": 0.4995233416557312,\n            \"Y\": 0.560877799987793\n          },\n          {\n            \"X\": 0.49952593445777893,\n            \"Y\": 0.5682525038719177\n          },\n          {\n            \"X\": 0.4623948633670807,\n            \"Y\": 0.5682229399681091\n          }\n        ]\n      },\n      \"Id\": \"3babda4d-7ae7-458d-a8dc-403d3db53bd6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"12ae7a4e-4a56-4756-b9cc-15d61f0d6c0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87049865722656,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006325024180114269,\n          \"Height\": 0.007538091856986284,\n          \"Left\": 0.5693755745887756,\n          \"Top\": 0.5606873631477356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693755745887756,\n            \"Y\": 0.5606873631477356\n          },\n          {\n            \"X\": 0.575697660446167,\n            \"Y\": 0.5606923699378967\n          },\n          {\n            \"X\": 0.575700581073761,\n            \"Y\": 0.5682254433631897\n          },\n          {\n            \"X\": 0.5693784952163696,\n            \"Y\": 0.5682204365730286\n          }\n        ]\n      },\n      \"Id\": \"de13f2a9-0bcc-4c84-ac2f-36ee6ffc4b85\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c4c60eb-10b3-489a-98d2-a0f439eb9c9e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96619415283203,\n      \"Text\": \"756\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021966449916362762,\n          \"Height\": 0.008188586682081223,\n          \"Left\": 0.6071673631668091,\n          \"Top\": 0.55607008934021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6071673631668091,\n            \"Y\": 0.55607008934021\n          },\n          {\n            \"X\": 0.6291303634643555,\n            \"Y\": 0.5560874342918396\n          },\n          {\n            \"X\": 0.6291337609291077,\n            \"Y\": 0.5642586350440979\n          },\n          {\n            \"X\": 0.6071706414222717,\n            \"Y\": 0.5642412304878235\n          }\n        ]\n      },\n      \"Id\": \"a973d2d6-a31a-481e-9fd7-3145b12c6464\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc72f7dd-436c-41f8-b5aa-e6bd27c769a8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9740219116211,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032010409981012344,\n          \"Height\": 0.008473891764879227,\n          \"Left\": 0.16989098489284515,\n          \"Top\": 0.5627861022949219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16989098489284515,\n            \"Y\": 0.5627861022949219\n          },\n          {\n            \"X\": 0.20189973711967468,\n            \"Y\": 0.5628114938735962\n          },\n          {\n            \"X\": 0.2019013911485672,\n            \"Y\": 0.5712599754333496\n          },\n          {\n            \"X\": 0.16989248991012573,\n            \"Y\": 0.5712344646453857\n          }\n        ]\n      },\n      \"Id\": \"f134b978-35e8-4136-b045-49b198a80b1e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42d65c48-43dd-4f1a-8c6c-ee99c986889d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90442657470703,\n      \"Text\": \"08/08/2007\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0653984397649765,\n          \"Height\": 0.008410884067416191,\n          \"Left\": 0.7732238173484802,\n          \"Top\": 0.5653791427612305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7732238173484802,\n            \"Y\": 0.5653791427612305\n          },\n          {\n            \"X\": 0.8386178612709045,\n            \"Y\": 0.5654311180114746\n          },\n          {\n            \"X\": 0.8386222720146179,\n            \"Y\": 0.5737900733947754\n          },\n          {\n            \"X\": 0.7732279300689697,\n            \"Y\": 0.5737378001213074\n          }\n        ]\n      },\n      \"Id\": \"aff7d032-5ceb-4223-90c3-384bcfbddb5f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"36badced-f6d5-46a1-9a70-44b8caddac4a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94432067871094,\n      \"Text\": \"Clothing\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04457792639732361,\n          \"Height\": 0.0093800388276577,\n          \"Left\": 0.46226736903190613,\n          \"Top\": 0.5757579207420349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46226736903190613,\n            \"Y\": 0.5757579207420349\n          },\n          {\n            \"X\": 0.5068420171737671,\n            \"Y\": 0.5757935643196106\n          },\n          {\n            \"X\": 0.5068452954292297,\n            \"Y\": 0.5851379632949829\n          },\n          {\n            \"X\": 0.46227046847343445,\n            \"Y\": 0.5851021409034729\n          }\n        ]\n      },\n      \"Id\": \"d0956989-2c2c-45e5-8c5f-a15c366ab26a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94fc0874-48f5-428d-9e98-54146853fd0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81985473632812,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0062046353705227375,\n          \"Height\": 0.007536775432527065,\n          \"Left\": 0.5694948434829712,\n          \"Top\": 0.5758337378501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5694948434829712,\n            \"Y\": 0.5758337378501892\n          },\n          {\n            \"X\": 0.5756965279579163,\n            \"Y\": 0.5758386850357056\n          },\n          {\n            \"X\": 0.575699508190155,\n            \"Y\": 0.5833705067634583\n          },\n          {\n            \"X\": 0.5694977641105652,\n            \"Y\": 0.5833654999732971\n          }\n        ]\n      },\n      \"Id\": \"9fa5315d-3235-46a2-8e89-7b47877db5dc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93e1ce59-b524-42a1-acfd-2636e46f52cc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97164916992188,\n      \"Text\": \"452\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022075027227401733,\n          \"Height\": 0.008150030858814716,\n          \"Left\": 0.6037154197692871,\n          \"Top\": 0.5748512744903564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6037154197692871,\n            \"Y\": 0.5748512744903564\n          },\n          {\n            \"X\": 0.625787079334259,\n            \"Y\": 0.57486891746521\n          },\n          {\n            \"X\": 0.6257904767990112,\n            \"Y\": 0.5830013155937195\n          },\n          {\n            \"X\": 0.6037186980247498,\n            \"Y\": 0.5829835534095764\n          }\n        ]\n      },\n      \"Id\": \"85907639-bf28-4219-ae04-ae60e85fa54b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afea191f-51c8-42fd-9be5-83ce9a49d9f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.77758026123047,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0479695200920105,\n          \"Height\": 0.00772616034373641,\n          \"Left\": 0.05242713540792465,\n          \"Top\": 0.591230571269989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05242713540792465,\n            \"Y\": 0.591230571269989\n          },\n          {\n            \"X\": 0.1003955602645874,\n            \"Y\": 0.591269314289093\n          },\n          {\n            \"X\": 0.10039665549993515,\n            \"Y\": 0.5989567637443542\n          },\n          {\n            \"X\": 0.05242804437875748,\n            \"Y\": 0.5989178419113159\n          }\n        ]\n      },\n      \"Id\": \"5d013753-41d1-4764-b423-7c37ffe16abb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d249cda2-191e-4907-bb25-c22565d28683\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.849853515625,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006146582774817944,\n          \"Height\": 0.0077073778957128525,\n          \"Left\": 0.13970544934272766,\n          \"Top\": 0.5910573601722717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13970544934272766,\n            \"Y\": 0.5910573601722717\n          },\n          {\n            \"X\": 0.1458507478237152,\n            \"Y\": 0.5910623073577881\n          },\n          {\n            \"X\": 0.14585202932357788,\n            \"Y\": 0.5987647771835327\n          },\n          {\n            \"X\": 0.13970670104026794,\n            \"Y\": 0.5987597703933716\n          }\n        ]\n      },\n      \"Id\": \"d4890e7c-09f0-4da2-bae6-b5ee3369d256\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"10bf5c86-585f-4155-9fa1-24f5a7a9e161\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95985412597656,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031845830380916595,\n          \"Height\": 0.00837639719247818,\n          \"Left\": 0.1699485182762146,\n          \"Top\": 0.5892524123191833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1699485182762146,\n            \"Y\": 0.5892524123191833\n          },\n          {\n            \"X\": 0.20179271697998047,\n            \"Y\": 0.5892781019210815\n          },\n          {\n            \"X\": 0.2017943561077118,\n            \"Y\": 0.5976288318634033\n          },\n          {\n            \"X\": 0.16995000839233398,\n            \"Y\": 0.5976030230522156\n          }\n        ]\n      },\n      \"Id\": \"1ad52017-999e-4855-bfaf-c9b9415ceda2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2bc04236-9c6b-4126-837f-bb41bafbce8a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90264892578125,\n      \"Text\": \"30.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032826848328113556,\n          \"Height\": 0.0082813436165452,\n          \"Left\": 0.3761522173881531,\n          \"Top\": 0.5854672789573669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3761522173881531,\n            \"Y\": 0.5854672789573669\n          },\n          {\n            \"X\": 0.40897655487060547,\n            \"Y\": 0.5854936838150024\n          },\n          {\n            \"X\": 0.40897905826568604,\n            \"Y\": 0.5937486290931702\n          },\n          {\n            \"X\": 0.3761545717716217,\n            \"Y\": 0.5937221050262451\n          }\n        ]\n      },\n      \"Id\": \"576955d9-baff-4118-bcf5-9b031ad523db\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b00c1798-a638-4698-8416-3faa640cae90\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88241577148438,\n      \"Text\": \"$ 20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05751192942261696,\n          \"Height\": 0.008763066492974758,\n          \"Left\": 0.24695008993148804,\n          \"Top\": 0.5902915596961975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24695008993148804,\n            \"Y\": 0.5902915596961975\n          },\n          {\n            \"X\": 0.3044598400592804,\n            \"Y\": 0.5903379917144775\n          },\n          {\n            \"X\": 0.3044620156288147,\n            \"Y\": 0.5990546345710754\n          },\n          {\n            \"X\": 0.24695199728012085,\n            \"Y\": 0.5990079641342163\n          }\n        ]\n      },\n      \"Id\": \"9ea34cb3-5a0f-4684-8827-e62ca20ff893\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8c565aee-eaaf-4953-a14d-1e356f7b0cce\",\n            \"d1090ef1-8691-490c-8b86-ae455eaa28e2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.895263671875,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00614886311814189,\n          \"Height\": 0.007560062687844038,\n          \"Left\": 0.3543779253959656,\n          \"Top\": 0.5909819602966309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3543779253959656,\n            \"Y\": 0.5909819602966309\n          },\n          {\n            \"X\": 0.3605246841907501,\n            \"Y\": 0.590986967086792\n          },\n          {\n            \"X\": 0.36052680015563965,\n            \"Y\": 0.5985420346260071\n          },\n          {\n            \"X\": 0.3543800115585327,\n            \"Y\": 0.5985370874404907\n          }\n        ]\n      },\n      \"Id\": \"c81f11fc-6215-4b3e-ad02-2dcadb0aba2a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce9b0837-44e4-4076-a374-2bda2847218c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89036560058594,\n      \"Text\": \"17. Projected amount of next pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2312137484550476,\n          \"Height\": 0.0095551498234272,\n          \"Left\": 0.6936545968055725,\n          \"Top\": 0.5906726717948914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6936545968055725,\n            \"Y\": 0.5906726717948914\n          },\n          {\n            \"X\": 0.9248629808425903,\n            \"Y\": 0.5908592939376831\n          },\n          {\n            \"X\": 0.9248683452606201,\n            \"Y\": 0.6002278327941895\n          },\n          {\n            \"X\": 0.6936588287353516,\n            \"Y\": 0.6000401973724365\n          }\n        ]\n      },\n      \"Id\": \"30dd3f5a-4bb9-4766-927a-e9c29f81b6e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99bc6d86-9a25-47ab-bdce-c570f9414ba3\",\n            \"019dfae3-89f5-4e1d-8f11-78908c5f7836\",\n            \"e802c0bc-4054-4ccc-9e70-b83d99f200b7\",\n            \"932d9c32-0c9d-49f1-aeee-6c9234e2e720\",\n            \"a93d697c-0ebe-475d-9c52-96c2f5a961b0\",\n            \"9f461482-1a39-48d6-9ca2-4ae001938048\",\n            \"b9fa0ea2-1015-4452-8547-b73ae1d3ad44\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74603271484375,\n      \"Text\": \"Quarters\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045822106301784515,\n          \"Height\": 0.007909315638244152,\n          \"Left\": 0.46209651231765747,\n          \"Top\": 0.5996854901313782\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46209651231765747,\n            \"Y\": 0.5996854901313782\n          },\n          {\n            \"X\": 0.5079158544540405,\n            \"Y\": 0.599722683429718\n          },\n          {\n            \"X\": 0.5079185962677002,\n            \"Y\": 0.6075947880744934\n          },\n          {\n            \"X\": 0.4620991051197052,\n            \"Y\": 0.6075574159622192\n          }\n        ]\n      },\n      \"Id\": \"9f545432-2896-406e-8ac1-b358ba215bb9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bd11d96c-d0ae-48f4-a585-97cb5db8d4b6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8369369506836,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00658081378787756,\n          \"Height\": 0.0075650024227797985,\n          \"Left\": 0.569252610206604,\n          \"Top\": 0.5997445583343506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.569252610206604,\n            \"Y\": 0.5997445583343506\n          },\n          {\n            \"X\": 0.5758304595947266,\n            \"Y\": 0.5997498631477356\n          },\n          {\n            \"X\": 0.5758333802223206,\n            \"Y\": 0.6073095202445984\n          },\n          {\n            \"X\": 0.569255530834198,\n            \"Y\": 0.6073041558265686\n          }\n        ]\n      },\n      \"Id\": \"176369b9-3d01-4e64-b3fd-b39a8ea3a152\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f3299490-b8f8-497c-aeba-0c3235754859\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95843505859375,\n      \"Text\": \"986\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021911457180976868,\n          \"Height\": 0.008493808098137379,\n          \"Left\": 0.6055337190628052,\n          \"Top\": 0.6026052236557007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6055337190628052,\n            \"Y\": 0.6026052236557007\n          },\n          {\n            \"X\": 0.6274416446685791,\n            \"Y\": 0.6026229858398438\n          },\n          {\n            \"X\": 0.6274451613426208,\n            \"Y\": 0.6110990047454834\n          },\n          {\n            \"X\": 0.6055371165275574,\n            \"Y\": 0.6110811233520508\n          }\n        ]\n      },\n      \"Id\": \"8258e6e2-0921-4b07-957e-a00e54130328\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"35c0209a-8880-48cd-9c4f-439b4b97ceed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.67476654052734,\n      \"Text\": \"$ 5600\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03971467167139053,\n          \"Height\": 0.009445449337363243,\n          \"Left\": 0.7757781147956848,\n          \"Top\": 0.6048165559768677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7757781147956848,\n            \"Y\": 0.6048165559768677\n          },\n          {\n            \"X\": 0.8154879212379456,\n            \"Y\": 0.6048488616943359\n          },\n          {\n            \"X\": 0.8154927492141724,\n            \"Y\": 0.6142619848251343\n          },\n          {\n            \"X\": 0.7757827639579773,\n            \"Y\": 0.6142295002937317\n          }\n        ]\n      },\n      \"Id\": \"7b9e5654-e5f2-4084-86a9-9132cbf27c58\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6d6e8170-9b0a-4e90-bf52-d50dcc1d40eb\",\n            \"041bbcc9-bfc7-4bb3-96a4-31d56d755474\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.28216552734375,\n      \"Text\": \"Commissions\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07167769223451614,\n          \"Height\": 0.00792488269507885,\n          \"Left\": 0.05261804535984993,\n          \"Top\": 0.6211963891983032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05261804535984993,\n            \"Y\": 0.6211963891983032\n          },\n          {\n            \"X\": 0.12429451942443848,\n            \"Y\": 0.6212553381919861\n          },\n          {\n            \"X\": 0.12429574131965637,\n            \"Y\": 0.6291213035583496\n          },\n          {\n            \"X\": 0.05261897295713425,\n            \"Y\": 0.6290621161460876\n          }\n        ]\n      },\n      \"Id\": \"03921830-8fc6-4ea9-af86-990054febb3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6addff48-2727-48cf-af5c-b8d81eee4d23\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91687774658203,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006306366063654423,\n          \"Height\": 0.007601243443787098,\n          \"Left\": 0.13962820172309875,\n          \"Top\": 0.6214268803596497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13962820172309875,\n            \"Y\": 0.6214268803596497\n          },\n          {\n            \"X\": 0.14593330025672913,\n            \"Y\": 0.6214320659637451\n          },\n          {\n            \"X\": 0.1459345668554306,\n            \"Y\": 0.6290281414985657\n          },\n          {\n            \"X\": 0.13962943851947784,\n            \"Y\": 0.6290228962898254\n          }\n        ]\n      },\n      \"Id\": \"15b2b0c6-a074-4961-9ad1-0163582dd819\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"062e0c26-3a46-404d-be95-f45440f25eb0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95455169677734,\n      \"Text\": \"20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03271694853901863,\n          \"Height\": 0.00824691355228424,\n          \"Left\": 0.17280462384223938,\n          \"Top\": 0.6202094554901123\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17280462384223938,\n            \"Y\": 0.6202094554901123\n          },\n          {\n            \"X\": 0.20551995933055878,\n            \"Y\": 0.620236337184906\n          },\n          {\n            \"X\": 0.2055215686559677,\n            \"Y\": 0.6284563541412354\n          },\n          {\n            \"X\": 0.17280611395835876,\n            \"Y\": 0.6284293532371521\n          }\n        ]\n      },\n      \"Id\": \"ef34fae6-02b7-4cf3-963a-ab7fc8e8a12f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"27052f76-ef55-48c5-a89d-a0479ab03e0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89044952392578,\n      \"Text\": \"$ 20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055627379566431046,\n          \"Height\": 0.009630963206291199,\n          \"Left\": 0.246964693069458,\n          \"Top\": 0.6194546818733215\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.246964693069458,\n            \"Y\": 0.6194546818733215\n          },\n          {\n            \"X\": 0.30258968472480774,\n            \"Y\": 0.6195003390312195\n          },\n          {\n            \"X\": 0.30259206891059875,\n            \"Y\": 0.6290856599807739\n          },\n          {\n            \"X\": 0.24696679413318634,\n            \"Y\": 0.6290397047996521\n          }\n        ]\n      },\n      \"Id\": \"da65ec75-8bec-4eba-8125-fbbbc6145f1f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"44b94b01-40be-4ee8-b983-482a311a1f2c\",\n            \"d4c6d809-6370-4f75-ae00-a4201334eba3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88445281982422,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006283125374466181,\n          \"Height\": 0.007595982868224382,\n          \"Left\": 0.3542935848236084,\n          \"Top\": 0.6212595105171204\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3542935848236084,\n            \"Y\": 0.6212595105171204\n          },\n          {\n            \"X\": 0.3605746030807495,\n            \"Y\": 0.6212646961212158\n          },\n          {\n            \"X\": 0.36057671904563904,\n            \"Y\": 0.6288555264472961\n          },\n          {\n            \"X\": 0.35429567098617554,\n            \"Y\": 0.6288503408432007\n          }\n        ]\n      },\n      \"Id\": \"29c1f640-f35c-4ef9-a93d-5747047e2eb5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e8c345d-f5d2-43b4-8e6b-03ee25b9106c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95330047607422,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032274745404720306,\n          \"Height\": 0.00877468567341566,\n          \"Left\": 0.37999457120895386,\n          \"Top\": 0.6184372901916504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37999457120895386,\n            \"Y\": 0.6184372901916504\n          },\n          {\n            \"X\": 0.41226664185523987,\n            \"Y\": 0.6184637546539307\n          },\n          {\n            \"X\": 0.4122692942619324,\n            \"Y\": 0.6272119879722595\n          },\n          {\n            \"X\": 0.3799970746040344,\n            \"Y\": 0.6271853446960449\n          }\n        ]\n      },\n      \"Id\": \"6017337c-fb94-43c0-925e-b2a74475fc1f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"216cd2af-7cb3-4cb1-8012-1a1bcf7030d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.60399627685547,\n      \"Text\": \"Pro Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04226882383227348,\n          \"Height\": 0.00930125080049038,\n          \"Left\": 0.46250060200691223,\n          \"Top\": 0.6212025284767151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46250060200691223,\n            \"Y\": 0.6212025284767151\n          },\n          {\n            \"X\": 0.5047661662101746,\n            \"Y\": 0.6212372779846191\n          },\n          {\n            \"X\": 0.5047694444656372,\n            \"Y\": 0.63050377368927\n          },\n          {\n            \"X\": 0.46250367164611816,\n            \"Y\": 0.6304688453674316\n          }\n        ]\n      },\n      \"Id\": \"9e918c09-d312-4c0a-937f-0e805db712b5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34fdb989-bc2b-4d7a-a071-f1902c3c2fb4\",\n            \"26e9097a-d5ad-4807-a375-3138652312f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.674072265625,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00625163409858942,\n          \"Height\": 0.007556697819381952,\n          \"Left\": 0.5692992210388184,\n          \"Top\": 0.6212700009346008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692992210388184,\n            \"Y\": 0.6212700009346008\n          },\n          {\n            \"X\": 0.5755479335784912,\n            \"Y\": 0.6212751269340515\n          },\n          {\n            \"X\": 0.5755508542060852,\n            \"Y\": 0.6288266777992249\n          },\n          {\n            \"X\": 0.5693021416664124,\n            \"Y\": 0.6288215517997742\n          }\n        ]\n      },\n      \"Id\": \"78139c24-0070-4ea7-b2aa-c97328825401\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7903684e-ae0e-46fd-b312-ed034ea20c0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96328735351562,\n      \"Text\": \"123\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02099762111902237,\n          \"Height\": 0.008291621692478657,\n          \"Left\": 0.6043278574943542,\n          \"Top\": 0.6217637658119202\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6043278574943542,\n            \"Y\": 0.6217637658119202\n          },\n          {\n            \"X\": 0.6253220438957214,\n            \"Y\": 0.621781051158905\n          },\n          {\n            \"X\": 0.6253255009651184,\n            \"Y\": 0.6300554275512695\n          },\n          {\n            \"X\": 0.6043312549591064,\n            \"Y\": 0.6300380825996399\n          }\n        ]\n      },\n      \"Id\": \"b3489236-a7bf-4059-983d-e2f1eb0c53e4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f362c93d-be13-4ae5-9064-463dfce54fc9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90058898925781,\n      \"Text\": \"18. Date of applicant's last pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2175961285829544,\n          \"Height\": 0.009464832954108715,\n          \"Left\": 0.6938033699989319,\n          \"Top\": 0.6209961771965027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6938033699989319,\n            \"Y\": 0.6209961771965027\n          },\n          {\n            \"X\": 0.9113942980766296,\n            \"Y\": 0.6211749911308289\n          },\n          {\n            \"X\": 0.9113995432853699,\n            \"Y\": 0.6304609775543213\n          },\n          {\n            \"X\": 0.6938075423240662,\n            \"Y\": 0.6302812099456787\n          }\n        ]\n      },\n      \"Id\": \"adbe397c-b717-43b9-90ff-1d9e7e83722a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"577a76a3-6cd8-4046-8083-7e5175ec6ced\",\n            \"4bcf6104-0394-44bb-a4a5-f26a6c67dca0\",\n            \"7e0141be-28e2-4939-ac2d-bdd8ec1c0929\",\n            \"bc76b221-e63f-4e77-83bc-7e66f8b1a2f6\",\n            \"2a3f646a-5079-4544-81cd-624b29248eed\",\n            \"96f33bb0-8d9d-4e50-aeba-02018fd3798a\",\n            \"ff8bf448-b50a-411c-9a9f-7c9f1ef75ae8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85693359375,\n      \"Text\": \"09/08/2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06566282361745834,\n          \"Height\": 0.008422307670116425,\n          \"Left\": 0.7771275043487549,\n          \"Top\": 0.6355620622634888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7771275043487549,\n            \"Y\": 0.6355620622634888\n          },\n          {\n            \"X\": 0.8427858948707581,\n            \"Y\": 0.6356164813041687\n          },\n          {\n            \"X\": 0.8427903652191162,\n            \"Y\": 0.643984317779541\n          },\n          {\n            \"X\": 0.7771316170692444,\n            \"Y\": 0.643929660320282\n          }\n        ]\n      },\n      \"Id\": \"5dc0efe8-5550-40a0-bf6f-7916a681296d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b2f61ffb-21c2-4425-92a5-0f30afee942d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76354217529297,\n      \"Text\": \"Overseas or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06411420553922653,\n          \"Height\": 0.008789438754320145,\n          \"Left\": 0.46198034286499023,\n          \"Top\": 0.6407167911529541\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46198034286499023,\n            \"Y\": 0.6407167911529541\n          },\n          {\n            \"X\": 0.5260913968086243,\n            \"Y\": 0.6407700777053833\n          },\n          {\n            \"X\": 0.5260945558547974,\n            \"Y\": 0.6495062112808228\n          },\n          {\n            \"X\": 0.46198323369026184,\n            \"Y\": 0.6494526267051697\n          }\n        ]\n      },\n      \"Id\": \"0e2447ba-5a09-4910-9b9b-2b35d044b06c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89920fbb-98fb-442e-acf1-bafe5e795beb\",\n            \"f4b72811-88ff-4536-b489-5391c68a56cd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91197967529297,\n      \"Text\": \"Bonus\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03368019312620163,\n          \"Height\": 0.007567448541522026,\n          \"Left\": 0.05259095877408981,\n          \"Top\": 0.6519471406936646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05259095877408981,\n            \"Y\": 0.6519471406936646\n          },\n          {\n            \"X\": 0.08627013117074966,\n            \"Y\": 0.6519753336906433\n          },\n          {\n            \"X\": 0.08627115190029144,\n            \"Y\": 0.6595146059989929\n          },\n          {\n            \"X\": 0.052591849118471146,\n            \"Y\": 0.6594862937927246\n          }\n        ]\n      },\n      \"Id\": \"2a0348ed-7ef0-41e5-a411-6438d7e16f83\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"83ced698-38f0-4b6d-90f1-34a16b249598\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90821838378906,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006307177245616913,\n          \"Height\": 0.007772169075906277,\n          \"Left\": 0.13950340449810028,\n          \"Top\": 0.6515275239944458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13950340449810028,\n            \"Y\": 0.6515275239944458\n          },\n          {\n            \"X\": 0.14580927789211273,\n            \"Y\": 0.6515328288078308\n          },\n          {\n            \"X\": 0.1458105742931366,\n            \"Y\": 0.6592996716499329\n          },\n          {\n            \"X\": 0.13950467109680176,\n            \"Y\": 0.6592943668365479\n          }\n        ]\n      },\n      \"Id\": \"6c2cdeb0-0775-4750-8165-4e137a7b6bfa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"443a4316-99e7-4f8e-a3b4-bdcc4b56f167\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9456558227539,\n      \"Text\": \"20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03269729018211365,\n          \"Height\": 0.008309591561555862,\n          \"Left\": 0.17288638651371002,\n          \"Top\": 0.6503464579582214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17288638651371002,\n            \"Y\": 0.6503464579582214\n          },\n          {\n            \"X\": 0.20558203756809235,\n            \"Y\": 0.6503738164901733\n          },\n          {\n            \"X\": 0.20558367669582367,\n            \"Y\": 0.6586560606956482\n          },\n          {\n            \"X\": 0.1728878766298294,\n            \"Y\": 0.6586285829544067\n          }\n        ]\n      },\n      \"Id\": \"fec73954-ef4c-4893-84ea-07019a03bc8a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6c83ec21-fb40-4eaf-add8-0e64036eac20\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89370727539062,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00617905193939805,\n          \"Height\": 0.007647648919373751,\n          \"Left\": 0.24693478643894196,\n          \"Top\": 0.6515936851501465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24693478643894196,\n            \"Y\": 0.6515936851501465\n          },\n          {\n            \"X\": 0.25311213731765747,\n            \"Y\": 0.6515988707542419\n          },\n          {\n            \"X\": 0.25311383605003357,\n            \"Y\": 0.6592413187026978\n          },\n          {\n            \"X\": 0.24693645536899567,\n            \"Y\": 0.6592361330986023\n          }\n        ]\n      },\n      \"Id\": \"1d3a9650-6d13-4620-bc47-7437181d7e51\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"01ff2317-a159-4221-a488-c93ab0e6e418\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92479705810547,\n      \"Text\": \"20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033112555742263794,\n          \"Height\": 0.008467750623822212,\n          \"Left\": 0.2735193073749542,\n          \"Top\": 0.6469712853431702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2735193073749542,\n            \"Y\": 0.6469712853431702\n          },\n          {\n            \"X\": 0.3066297769546509,\n            \"Y\": 0.646998941898346\n          },\n          {\n            \"X\": 0.306631863117218,\n            \"Y\": 0.6554390788078308\n          },\n          {\n            \"X\": 0.2735212743282318,\n            \"Y\": 0.6554113030433655\n          }\n        ]\n      },\n      \"Id\": \"55619255-f1db-40ef-b8f0-513ed1a136b6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37e61028-2ca8-46b0-bfff-c5dacc20d60f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88874053955078,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0062498305924236774,\n          \"Height\": 0.007478713523596525,\n          \"Left\": 0.3543567955493927,\n          \"Top\": 0.6515350937843323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3543567955493927,\n            \"Y\": 0.6515350937843323\n          },\n          {\n            \"X\": 0.36060455441474915,\n            \"Y\": 0.6515403389930725\n          },\n          {\n            \"X\": 0.3606066405773163,\n            \"Y\": 0.6590138077735901\n          },\n          {\n            \"X\": 0.35435885190963745,\n            \"Y\": 0.6590085625648499\n          }\n        ]\n      },\n      \"Id\": \"c46a25ac-6ad1-42b5-a5d8-58db217a9cdb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"59d22ee0-1dac-461d-b995-3b8ccb6ad296\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92337799072266,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03216782957315445,\n          \"Height\": 0.008499957621097565,\n          \"Left\": 0.3839261531829834,\n          \"Top\": 0.6469097137451172\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3839261531829834,\n            \"Y\": 0.6469097137451172\n          },\n          {\n            \"X\": 0.4160913825035095,\n            \"Y\": 0.6469365358352661\n          },\n          {\n            \"X\": 0.41609397530555725,\n            \"Y\": 0.6554096341133118\n          },\n          {\n            \"X\": 0.3839285969734192,\n            \"Y\": 0.6553826928138733\n          }\n        ]\n      },\n      \"Id\": \"e9a0a5d8-20cf-456a-8bfb-e0e91f65ce62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd836dea-8e0f-4959-9cc0-63ec5becaec2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5430908203125,\n      \"Text\": \"Combat\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04200686886906624,\n          \"Height\": 0.007942147552967072,\n          \"Left\": 0.4624370336532593,\n          \"Top\": 0.651336669921875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4624370336532593,\n            \"Y\": 0.651336669921875\n          },\n          {\n            \"X\": 0.5044411420822144,\n            \"Y\": 0.6513717770576477\n          },\n          {\n            \"X\": 0.504443883895874,\n            \"Y\": 0.6592788100242615\n          },\n          {\n            \"X\": 0.4624396562576294,\n            \"Y\": 0.6592435240745544\n          }\n        ]\n      },\n      \"Id\": \"a2dd26e8-8d06-484a-910e-018a248da396\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"16b6ceb9-a4e2-4ad4-b8ea-540f1fc203d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79627227783203,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006279990542680025,\n          \"Height\": 0.007640247233211994,\n          \"Left\": 0.5693935751914978,\n          \"Top\": 0.6514822840690613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693935751914978,\n            \"Y\": 0.6514822840690613\n          },\n          {\n            \"X\": 0.575670599937439,\n            \"Y\": 0.6514875292778015\n          },\n          {\n            \"X\": 0.5756735801696777,\n            \"Y\": 0.6591225266456604\n          },\n          {\n            \"X\": 0.5693964958190918,\n            \"Y\": 0.6591172814369202\n          }\n        ]\n      },\n      \"Id\": \"cd6a043c-cc54-4ba8-8dc3-f3b526ab83c4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e31869d-a142-47e9-9d84-7bbce7cb4e0c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98148345947266,\n      \"Text\": \"645\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022172486409544945,\n          \"Height\": 0.008485141210258007,\n          \"Left\": 0.6071452498435974,\n          \"Top\": 0.6482474207878113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6071452498435974,\n            \"Y\": 0.6482474207878113\n          },\n          {\n            \"X\": 0.6293142437934875,\n            \"Y\": 0.6482659578323364\n          },\n          {\n            \"X\": 0.6293177604675293,\n            \"Y\": 0.6567325592041016\n          },\n          {\n            \"X\": 0.6071487069129944,\n            \"Y\": 0.6567139625549316\n          }\n        ]\n      },\n      \"Id\": \"3383dfa3-9ba4-4164-9010-0c184432295d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"64dbaece-e4af-4b46-ac7b-8ddb626fcc89\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89099884033203,\n      \"Text\": \"19. Amount of last pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17369839549064636,\n          \"Height\": 0.009821232408285141,\n          \"Left\": 0.694107174873352,\n          \"Top\": 0.6511029005050659\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.694107174873352,\n            \"Y\": 0.6511029005050659\n          },\n          {\n            \"X\": 0.8678003549575806,\n            \"Y\": 0.6512481570243835\n          },\n          {\n            \"X\": 0.8678056001663208,\n            \"Y\": 0.6609241366386414\n          },\n          {\n            \"X\": 0.6941115260124207,\n            \"Y\": 0.6607780456542969\n          }\n        ]\n      },\n      \"Id\": \"6635b054-cf6c-4fec-912e-7d659abff31c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"986d6524-5785-44f8-87ed-28281c3fd7c6\",\n            \"24650bcb-6614-45de-8066-4628494786a0\",\n            \"62de7ebe-d46a-42f7-a5bd-677ec073caae\",\n            \"ec661b2b-72ea-41e6-8b63-d0ef0811fc64\",\n            \"cf3157d2-e610-45a9-82a2-91d4122586aa\",\n            \"2094b681-79f7-475e-9d3e-8e6eb4e43bee\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85054016113281,\n      \"Text\": \"Variable Housing\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09189299494028091,\n          \"Height\": 0.009284911677241325,\n          \"Left\": 0.46158814430236816,\n          \"Top\": 0.6704203486442566\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46158814430236816,\n            \"Y\": 0.6704203486442566\n          },\n          {\n            \"X\": 0.5534776449203491,\n            \"Y\": 0.6704980731010437\n          },\n          {\n            \"X\": 0.5534811615943909,\n            \"Y\": 0.6797052621841431\n          },\n          {\n            \"X\": 0.4615911841392517,\n            \"Y\": 0.6796271204948425\n          }\n        ]\n      },\n      \"Id\": \"ddcab34a-e842-4692-a71d-b7958ac7883b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84c56ce5-b0d1-435f-8284-af42862cd52f\",\n            \"f2c9810a-2038-4343-8eb4-da61cf2bc5ac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.15882110595703,\n      \"Text\": \"90.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03635166957974434,\n          \"Height\": 0.009347454644739628,\n          \"Left\": 0.3613189458847046,\n          \"Top\": 0.676880419254303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3613189458847046,\n            \"Y\": 0.676880419254303\n          },\n          {\n            \"X\": 0.39766785502433777,\n            \"Y\": 0.6769112348556519\n          },\n          {\n            \"X\": 0.3976706266403198,\n            \"Y\": 0.6862278580665588\n          },\n          {\n            \"X\": 0.3613215386867523,\n            \"Y\": 0.6861968040466309\n          }\n        ]\n      },\n      \"Id\": \"7a7dfcfb-d9ac-44da-988b-03ddac93045e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3a412335-cb03-44a2-93da-cbf3459e50e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.51956176757812,\n      \"Text\": \"$ 4800\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03921922668814659,\n          \"Height\": 0.009340794757008553,\n          \"Left\": 0.7769601941108704,\n          \"Top\": 0.6720986366271973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7769601941108704,\n            \"Y\": 0.6720986366271973\n          },\n          {\n            \"X\": 0.8161746263504028,\n            \"Y\": 0.6721318364143372\n          },\n          {\n            \"X\": 0.8161793947219849,\n            \"Y\": 0.6814394593238831\n          },\n          {\n            \"X\": 0.7769647836685181,\n            \"Y\": 0.6814060807228088\n          }\n        ]\n      },\n      \"Id\": \"00fdd6b5-ede9-4f23-850e-e79a0055610d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a56349ec-794f-47df-8320-5518739aa111\",\n            \"a9eb103c-a0b1-4eb1-9a77-5923c86c1d59\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89234161376953,\n      \"Text\": \"Total\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027224740013480186,\n          \"Height\": 0.007877652533352375,\n          \"Left\": 0.05197681859135628,\n          \"Top\": 0.682105541229248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05197681859135628,\n            \"Y\": 0.682105541229248\n          },\n          {\n            \"X\": 0.07920052111148834,\n            \"Y\": 0.6821287274360657\n          },\n          {\n            \"X\": 0.07920155674219131,\n            \"Y\": 0.6899831891059875\n          },\n          {\n            \"X\": 0.051977742463350296,\n            \"Y\": 0.6899598836898804\n          }\n        ]\n      },\n      \"Id\": \"63346150-a31c-463e-a19e-664aa312fc3e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e77c3944-4a2a-45fd-8cef-2d3323245d71\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.1936264038086,\n      \"Text\": \"$ 70.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04343428090214729,\n          \"Height\": 0.011197010055184364,\n          \"Left\": 0.13961069285869598,\n          \"Top\": 0.6782538294792175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13961069285869598,\n            \"Y\": 0.6782538294792175\n          },\n          {\n            \"X\": 0.18304291367530823,\n            \"Y\": 0.6782907843589783\n          },\n          {\n            \"X\": 0.18304498493671417,\n            \"Y\": 0.6894508600234985\n          },\n          {\n            \"X\": 0.13961252570152283,\n            \"Y\": 0.6894137263298035\n          }\n        ]\n      },\n      \"Id\": \"703899a9-b2a8-48f0-9dab-32e56f5878dd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4867611c-8c16-47a8-8125-986390f84f51\",\n            \"50d678af-7d77-4179-98cf-ada7b994d4f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.15721893310547,\n      \"Text\": \"$ 80.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0444910004734993,\n          \"Height\": 0.011421900242567062,\n          \"Left\": 0.24688252806663513,\n          \"Top\": 0.6781872510910034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24688252806663513,\n            \"Y\": 0.6781872510910034\n          },\n          {\n            \"X\": 0.29137077927589417,\n            \"Y\": 0.6782251000404358\n          },\n          {\n            \"X\": 0.29137352108955383,\n            \"Y\": 0.689609169960022\n          },\n          {\n            \"X\": 0.2468850165605545,\n            \"Y\": 0.6895711421966553\n          }\n        ]\n      },\n      \"Id\": \"2acfb461-e00b-4803-9d97-d69a81aa1c7f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b2c13dc8-c5aa-4c37-b4c4-d09ef3bb944d\",\n            \"28653a67-7a24-490a-bb09-a9c83de43d9c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.64026641845703,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005917412228882313,\n          \"Height\": 0.007379107177257538,\n          \"Left\": 0.3542932868003845,\n          \"Top\": 0.6819881796836853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3542932868003845,\n            \"Y\": 0.6819881796836853\n          },\n          {\n            \"X\": 0.360208660364151,\n            \"Y\": 0.6819932460784912\n          },\n          {\n            \"X\": 0.36021071672439575,\n            \"Y\": 0.6893672943115234\n          },\n          {\n            \"X\": 0.3542953133583069,\n            \"Y\": 0.6893622279167175\n          }\n        ]\n      },\n      \"Id\": \"3b7444c7-9d41-4c24-92fc-613beb57a397\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5838464-dc79-4d9a-8d6e-a4c17e020fb1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9446029663086,\n      \"Text\": \"Allowance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05583726242184639,\n          \"Height\": 0.007844468578696251,\n          \"Left\": 0.4619894027709961,\n          \"Top\": 0.6805686950683594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4619894027709961,\n            \"Y\": 0.6805686950683594\n          },\n          {\n            \"X\": 0.5178238749504089,\n            \"Y\": 0.6806161999702454\n          },\n          {\n            \"X\": 0.5178266763687134,\n            \"Y\": 0.6884132027626038\n          },\n          {\n            \"X\": 0.46199196577072144,\n            \"Y\": 0.6883654594421387\n          }\n        ]\n      },\n      \"Id\": \"b32353b0-9469-4a4f-9a8c-e15375a2ad53\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99995cee-f9a5-4f78-a650-8f82c03ea9c0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82715606689453,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006215273402631283,\n          \"Height\": 0.007432147394865751,\n          \"Left\": 0.5696779489517212,\n          \"Top\": 0.680724561214447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5696779489517212,\n            \"Y\": 0.680724561214447\n          },\n          {\n            \"X\": 0.575890302658081,\n            \"Y\": 0.680729866027832\n          },\n          {\n            \"X\": 0.575893223285675,\n            \"Y\": 0.6881567239761353\n          },\n          {\n            \"X\": 0.5696808099746704,\n            \"Y\": 0.6881514191627502\n          }\n        ]\n      },\n      \"Id\": \"9942f72c-ae1c-485e-beae-6eb3a41d49ce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"517c4e12-32ab-4b08-a393-bb0007d2e3e2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93668365478516,\n      \"Text\": \"587\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021690702065825462,\n          \"Height\": 0.008304129354655743,\n          \"Left\": 0.6077621579170227,\n          \"Top\": 0.678471565246582\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6077621579170227,\n            \"Y\": 0.678471565246582\n          },\n          {\n            \"X\": 0.6294493675231934,\n            \"Y\": 0.6784899830818176\n          },\n          {\n            \"X\": 0.6294528245925903,\n            \"Y\": 0.6867756843566895\n          },\n          {\n            \"X\": 0.6077654957771301,\n            \"Y\": 0.6867571473121643\n          }\n        ]\n      },\n      \"Id\": \"f2bc459b-34c2-4736-907c-892801a85a07\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"74a39235-b806-42f4-a257-a26aac6423e4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.88744354248047,\n      \"Text\": \"20. Remarks (If employee was off work for any length of time, please indicate time period and reason)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.555804431438446,\n          \"Height\": 0.010399655438959599,\n          \"Left\": 0.042073238641023636,\n          \"Top\": 0.69637531042099\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042073238641023636,\n            \"Y\": 0.69637531042099\n          },\n          {\n            \"X\": 0.5978736877441406,\n            \"Y\": 0.6968525052070618\n          },\n          {\n            \"X\": 0.5978776812553406,\n            \"Y\": 0.7067749500274658\n          },\n          {\n            \"X\": 0.042074356228113174,\n            \"Y\": 0.7062950730323792\n          }\n        ]\n      },\n      \"Id\": \"d3def23d-c5b6-4d52-a572-c6f1d8cc290e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d5663a7-8661-487a-9bfb-9c0dd74227c0\",\n            \"ddf6d487-8666-420d-b8e5-7e8d9dc95cba\",\n            \"e41f9b56-b7a9-43db-a56c-cb53d7435788\",\n            \"ceb102a7-a02b-4947-a8a5-1d929beb80ed\",\n            \"996a1c23-ea1a-477e-9a03-1a8d86777e6f\",\n            \"a2acc999-696a-4510-bb4b-67b6905b9f94\",\n            \"1867f5ef-3723-4f26-bc46-66da8e8fb606\",\n            \"5fdee53e-9e7e-4639-b29f-65180b8ffccd\",\n            \"299b0be4-2fb6-4d01-955e-9b5cb1911a6e\",\n            \"31af1c05-5e3b-41b4-885b-871415c8734b\",\n            \"600222da-b6b7-4753-a4e5-5a44c218c688\",\n            \"35e1a17b-05a8-448d-ae3f-8779f56d9c8c\",\n            \"03878afa-9c94-4719-8912-efee83533970\",\n            \"dbeae94e-e797-4019-9ca3-e13698789d37\",\n            \"b7852c11-2268-49bd-b21e-0e075f4b778a\",\n            \"a94f5b01-f62c-4bf7-bf4c-0e78e0a86692\",\n            \"897e9399-ed26-4eef-a535-2061fd96b749\",\n            \"827aceca-bbdf-4962-b95e-14755b230ea0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92648315429688,\n      \"Text\": \"Not Applicable\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10449326783418655,\n          \"Height\": 0.01262641977518797,\n          \"Left\": 0.05848870053887367,\n          \"Top\": 0.7155548930168152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05848870053887367,\n            \"Y\": 0.7155548930168152\n          },\n          {\n            \"X\": 0.16297976672649384,\n            \"Y\": 0.7156456112861633\n          },\n          {\n            \"X\": 0.16298195719718933,\n            \"Y\": 0.7281813621520996\n          },\n          {\n            \"X\": 0.058490216732025146,\n            \"Y\": 0.7280899882316589\n          }\n        ]\n      },\n      \"Id\": \"719f31e1-25f0-4e83-b6af-e610d4c1509b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e1649cc4-8d69-48e7-b256-d3bb58f23a2c\",\n            \"7fc6a7af-5d20-4f16-8086-1fa0af7cdb43\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.70633697509766,\n      \"Text\": \"Part III - Verification of Previous Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3374021053314209,\n          \"Height\": 0.011543539352715015,\n          \"Left\": 0.04259515926241875,\n          \"Top\": 0.7585078477859497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04259515926241875,\n            \"Y\": 0.7585078477859497\n          },\n          {\n            \"X\": 0.3799940347671509,\n            \"Y\": 0.7588077187538147\n          },\n          {\n            \"X\": 0.37999725341796875,\n            \"Y\": 0.7700513601303101\n          },\n          {\n            \"X\": 0.04259642958641052,\n            \"Y\": 0.7697497010231018\n          }\n        ]\n      },\n      \"Id\": \"3cc09ab3-da1a-429e-ba2c-d1b24aba7b08\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e4ba5285-ed1a-4dad-a672-b90f5f5508de\",\n            \"20c8cbfd-7caa-4fd9-a2ff-ebe1f550b20d\",\n            \"f105ae03-8a59-43dd-8ce6-6b698e201ffc\",\n            \"e5077531-2645-4c98-af8c-a34d411f1822\",\n            \"9989c4df-16df-4812-bae5-69518470df87\",\n            \"ccffd5d9-3684-429d-a538-5a5315286049\",\n            \"77d4239f-7f24-4577-be75-b2bb2a75fc73\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75532531738281,\n      \"Text\": \"21. Date Hired\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07409774512052536,\n          \"Height\": 0.007738245651125908,\n          \"Left\": 0.04167768731713295,\n          \"Top\": 0.7732635736465454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04167768731713295,\n            \"Y\": 0.7732635736465454\n          },\n          {\n            \"X\": 0.11577427387237549,\n            \"Y\": 0.7733299732208252\n          },\n          {\n            \"X\": 0.11577542871236801,\n            \"Y\": 0.7810018062591553\n          },\n          {\n            \"X\": 0.04167855158448219,\n            \"Y\": 0.7809351682662964\n          }\n        ]\n      },\n      \"Id\": \"0d892861-359c-4181-b9b6-29bd49ca9716\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67781941-b1ad-4a32-bd3c-a3e1138a24af\",\n            \"44917e32-e002-43a1-b68b-572267aa9dbf\",\n            \"1098ab82-3967-4cef-a0e0-ed93975e2644\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96337890625,\n      \"Text\": \"04/04/2004\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06568747013807297,\n          \"Height\": 0.008414910174906254,\n          \"Left\": 0.14091239869594574,\n          \"Top\": 0.7750162482261658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14091239869594574,\n            \"Y\": 0.7750162482261658\n          },\n          {\n            \"X\": 0.2065982222557068,\n            \"Y\": 0.7750751972198486\n          },\n          {\n            \"X\": 0.2065998762845993,\n            \"Y\": 0.7834311723709106\n          },\n          {\n            \"X\": 0.14091376960277557,\n            \"Y\": 0.7833719849586487\n          }\n        ]\n      },\n      \"Id\": \"a4b12b21-e369-4d4c-af79-124eedd02167\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c0cd76ee-83f2-4c55-b4e8-9c92cb0c793e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6767807006836,\n      \"Text\": \"23. Salary/Wage at Termination Per (Year) (Month) (Week)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3037533760070801,\n          \"Height\": 0.009662204422056675,\n          \"Left\": 0.2854406535625458,\n          \"Top\": 0.7726699709892273\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2854406535625458,\n            \"Y\": 0.7726699709892273\n          },\n          {\n            \"X\": 0.5891903042793274,\n            \"Y\": 0.7729420065879822\n          },\n          {\n            \"X\": 0.5891940593719482,\n            \"Y\": 0.782332181930542\n          },\n          {\n            \"X\": 0.28544288873672485,\n            \"Y\": 0.7820587754249573\n          }\n        ]\n      },\n      \"Id\": \"7d31b03e-3265-4993-8e6f-612c73b31d67\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f00a025b-4adb-4ec2-8e3a-ccea394fbf1e\",\n            \"439b3544-065a-42e5-9041-6bc5b668775b\",\n            \"daef77af-07d7-478a-8bc7-ff2bdf09ca2d\",\n            \"5244f919-c93c-4e87-9d04-e500fa643248\",\n            \"ca889821-6a64-433d-ad83-134f1b0e6b23\",\n            \"2a8447e3-d074-4e97-b2bf-95a16a2151e8\",\n            \"24497816-46db-4430-a9c9-8152a97d3753\",\n            \"0b79f340-0bb6-447f-8f57-b9360939d17f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8934097290039,\n      \"Text\": \"01/03/2005\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06554824858903885,\n          \"Height\": 0.008503793738782406,\n          \"Left\": 0.16955848038196564,\n          \"Top\": 0.7889941334724426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16955848038196564,\n            \"Y\": 0.7889941334724426\n          },\n          {\n            \"X\": 0.23510493338108063,\n            \"Y\": 0.7890533804893494\n          },\n          {\n            \"X\": 0.2351067215204239,\n            \"Y\": 0.7974979281425476\n          },\n          {\n            \"X\": 0.16955998539924622,\n            \"Y\": 0.7974384427070618\n          }\n        ]\n      },\n      \"Id\": \"00f71c8c-9194-4dd3-a87f-57bc2bde175e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b9d99afe-7abf-4074-82e5-5e393251eec0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9299545288086,\n      \"Text\": \"Base\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023849904537200928,\n          \"Height\": 0.007324519567191601,\n          \"Left\": 0.3053722083568573,\n          \"Top\": 0.7883179783821106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3053722083568573,\n            \"Y\": 0.7883179783821106\n          },\n          {\n            \"X\": 0.3292202055454254,\n            \"Y\": 0.7883394956588745\n          },\n          {\n            \"X\": 0.3292221128940582,\n            \"Y\": 0.7956424951553345\n          },\n          {\n            \"X\": 0.30537402629852295,\n            \"Y\": 0.795620858669281\n          }\n        ]\n      },\n      \"Id\": \"b3548097-eaeb-45e1-a2cc-da6fcddc3500\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"862bc077-c844-4e36-9ef0-daa9187f46ce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.43914794921875,\n      \"Text\": \"$ 9500\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03957563266158104,\n          \"Height\": 0.009327039122581482,\n          \"Left\": 0.35168933868408203,\n          \"Top\": 0.7848729491233826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35168933868408203,\n            \"Y\": 0.7848729491233826\n          },\n          {\n            \"X\": 0.3912622332572937,\n            \"Y\": 0.7849085927009583\n          },\n          {\n            \"X\": 0.39126497507095337,\n            \"Y\": 0.7941999435424805\n          },\n          {\n            \"X\": 0.351691871881485,\n            \"Y\": 0.7941641211509705\n          }\n        ]\n      },\n      \"Id\": \"280c6788-badf-43e9-b70d-bfb3ed7a4e47\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"baa3a6e4-99c9-4e3f-937d-d64563021eb2\",\n            \"ffc54dc6-6ca8-4fc6-80c3-1c5f574331cc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8417739868164,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04567082226276398,\n          \"Height\": 0.007657689042389393,\n          \"Left\": 0.43577802181243896,\n          \"Top\": 0.7880113124847412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43577802181243896,\n            \"Y\": 0.7880113124847412\n          },\n          {\n            \"X\": 0.481446236371994,\n            \"Y\": 0.7880525588989258\n          },\n          {\n            \"X\": 0.48144882917404175,\n            \"Y\": 0.7956690192222595\n          },\n          {\n            \"X\": 0.43578043580055237,\n            \"Y\": 0.7956275939941406\n          }\n        ]\n      },\n      \"Id\": \"2cd050a9-4a1e-4749-99a7-b6e0f2768b95\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5aab9ded-6b1b-4b28-b27f-2d96a02482d2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96968078613281,\n      \"Text\": \"1250\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02815900184214115,\n          \"Height\": 0.008177189156413078,\n          \"Left\": 0.500054121017456,\n          \"Top\": 0.7861490249633789\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.500054121017456,\n            \"Y\": 0.7861490249633789\n          },\n          {\n            \"X\": 0.5282101035118103,\n            \"Y\": 0.7861744165420532\n          },\n          {\n            \"X\": 0.5282130837440491,\n            \"Y\": 0.7943262457847595\n          },\n          {\n            \"X\": 0.5000569224357605,\n            \"Y\": 0.7943007349967957\n          }\n        ]\n      },\n      \"Id\": \"6441f4f1-f570-4f0c-928b-f06b5bf30d07\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0bbcffcd-5213-4227-9c5d-afa6a6e26d00\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.9228744506836,\n      \"Text\": \"Commissions\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06648001074790955,\n          \"Height\": 0.007471730466932058,\n          \"Left\": 0.5877031087875366,\n          \"Top\": 0.7880325317382812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5877031087875366,\n            \"Y\": 0.7880325317382812\n          },\n          {\n            \"X\": 0.6541799306869507,\n            \"Y\": 0.7880925536155701\n          },\n          {\n            \"X\": 0.6541830897331238,\n            \"Y\": 0.7955042719841003\n          },\n          {\n            \"X\": 0.5877060294151306,\n            \"Y\": 0.7954440116882324\n          }\n        ]\n      },\n      \"Id\": \"22c27a7d-8e9a-4ecf-8f21-d77b25c49e8d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61013532-08d0-4131-89d5-60846c29ee12\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9857177734375,\n      \"Text\": \"4500\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029485899955034256,\n          \"Height\": 0.008184386417269707,\n          \"Left\": 0.679559588432312,\n          \"Top\": 0.7857794165611267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.679559588432312,\n            \"Y\": 0.7857794165611267\n          },\n          {\n            \"X\": 0.7090417146682739,\n            \"Y\": 0.7858060002326965\n          },\n          {\n            \"X\": 0.7090454697608948,\n            \"Y\": 0.7939637899398804\n          },\n          {\n            \"X\": 0.6795631647109985,\n            \"Y\": 0.793937087059021\n          }\n        ]\n      },\n      \"Id\": \"db6520a3-d6c7-42af-bd8a-0539b04704b8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"20786605-e9d1-4165-bde9-76353dca07de\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75697326660156,\n      \"Text\": \"22. Date Terminated\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10369345545768738,\n          \"Height\": 0.007679356727749109,\n          \"Left\": 0.041745737195014954,\n          \"Top\": 0.7907231450080872\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041745737195014954,\n            \"Y\": 0.7907231450080872\n          },\n          {\n            \"X\": 0.14543794095516205,\n            \"Y\": 0.7908169031143188\n          },\n          {\n            \"X\": 0.14543919265270233,\n            \"Y\": 0.7984024882316589\n          },\n          {\n            \"X\": 0.0417465902864933,\n            \"Y\": 0.7983083128929138\n          }\n        ]\n      },\n      \"Id\": \"e5456bb4-26b3-46c9-b15a-229cbc1c855f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ecdb0708-9454-449c-b19d-7ac5b15627e2\",\n            \"25314353-5ec7-44bd-8a69-9dc0787cf467\",\n            \"73e25839-a331-4824-8ee4-62debc9d06d2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85252380371094,\n      \"Text\": \"Bonus\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03229645639657974,\n          \"Height\": 0.0075120278634130955,\n          \"Left\": 0.7609420418739319,\n          \"Top\": 0.7879647016525269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7609420418739319,\n            \"Y\": 0.7879647016525269\n          },\n          {\n            \"X\": 0.7932347655296326,\n            \"Y\": 0.7879939079284668\n          },\n          {\n            \"X\": 0.7932385206222534,\n            \"Y\": 0.7954767346382141\n          },\n          {\n            \"X\": 0.7609456777572632,\n            \"Y\": 0.7954474687576294\n          }\n        ]\n      },\n      \"Id\": \"b8894b35-66bc-4ad9-a6de-9f8ba9ed1577\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cc773d92-e7cc-4432-80fe-322364525b80\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97464752197266,\n      \"Text\": \"4000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02923075668513775,\n          \"Height\": 0.008164236322045326,\n          \"Left\": 0.8137102723121643,\n          \"Top\": 0.7862696647644043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8137102723121643,\n            \"Y\": 0.7862696647644043\n          },\n          {\n            \"X\": 0.8429367542266846,\n            \"Y\": 0.7862960696220398\n          },\n          {\n            \"X\": 0.8429410457611084,\n            \"Y\": 0.7944338917732239\n          },\n          {\n            \"X\": 0.8137144446372986,\n            \"Y\": 0.7944074273109436\n          }\n        ]\n      },\n      \"Id\": \"f209c3fa-b710-402f-b82c-46fabd1ca7b8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3656121e-85a5-44cf-adc8-2b5f8bce24d0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.77462005615234,\n      \"Text\": \"24. Reason for Leaving\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11714506149291992,\n          \"Height\": 0.008965964429080486,\n          \"Left\": 0.04182834550738335,\n          \"Top\": 0.8046802878379822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04182834550738335,\n            \"Y\": 0.8046802878379822\n          },\n          {\n            \"X\": 0.1589718759059906,\n            \"Y\": 0.8047870397567749\n          },\n          {\n            \"X\": 0.15897341072559357,\n            \"Y\": 0.8136462569236755\n          },\n          {\n            \"X\": 0.041829343885183334,\n            \"Y\": 0.8135390281677246\n          }\n        ]\n      },\n      \"Id\": \"15393298-e952-47d8-b43a-16e13b62b24d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d1b3634f-746f-4dd9-86a5-92d4fc6bcab3\",\n            \"7d705bf7-2117-4633-9109-650613f04654\",\n            \"af99e72e-62ea-4f4b-954a-a57658d9d4b9\",\n            \"25ef2ae3-8551-44b4-9987-31b3c6175a74\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.67130279541016,\n      \"Text\": \"25. Position Held\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08675948530435562,\n          \"Height\": 0.007819345220923424,\n          \"Left\": 0.4909544289112091,\n          \"Top\": 0.8043001294136047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4909544289112091,\n            \"Y\": 0.8043001294136047\n          },\n          {\n            \"X\": 0.5777109265327454,\n            \"Y\": 0.8043791651725769\n          },\n          {\n            \"X\": 0.5777139067649841,\n            \"Y\": 0.8121194839477539\n          },\n          {\n            \"X\": 0.490957111120224,\n            \"Y\": 0.8120401501655579\n          }\n        ]\n      },\n      \"Id\": \"a9a73d7a-c597-4799-bf71-b63843a7a604\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c6d31af-6e64-44f2-96d0-568a617fddf2\",\n            \"7f248cff-c1f5-4575-9329-a3b8bf0283a8\",\n            \"c3ade1d1-90d7-47eb-a304-25787aca6aa2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81069946289062,\n      \"Text\": \"Medical Issue\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07966919243335724,\n          \"Height\": 0.008381498046219349,\n          \"Left\": 0.16401107609272003,\n          \"Top\": 0.8150830268859863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16401107609272003,\n            \"Y\": 0.8150830268859863\n          },\n          {\n            \"X\": 0.24367846548557281,\n            \"Y\": 0.8151559829711914\n          },\n          {\n            \"X\": 0.24368026852607727,\n            \"Y\": 0.8234645128250122\n          },\n          {\n            \"X\": 0.16401253640651703,\n            \"Y\": 0.8233911991119385\n          }\n        ]\n      },\n      \"Id\": \"f12cc3b2-3460-481b-a03d-08cbb2b1d7e5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"54c431a3-27f3-4ead-959f-f0cef89b71c5\",\n            \"a3f297f6-0c01-4876-bf4d-2d422f9dd75c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93851470947266,\n      \"Text\": \"Device Operator\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09526999294757843,\n          \"Height\": 0.010169031098484993,\n          \"Left\": 0.5571666955947876,\n          \"Top\": 0.8148174285888672\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5571666955947876,\n            \"Y\": 0.8148174285888672\n          },\n          {\n            \"X\": 0.652432382106781,\n            \"Y\": 0.8149046897888184\n          },\n          {\n            \"X\": 0.6524366736412048,\n            \"Y\": 0.824986457824707\n          },\n          {\n            \"X\": 0.5571705102920532,\n            \"Y\": 0.8248987793922424\n          }\n        ]\n      },\n      \"Id\": \"a91c92d9-147e-484a-8516-98a29317110a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d48031a-22c4-400e-b35e-be215e69d852\",\n            \"8306ae8d-8ab7-4e17-9f40-1c3abeaee220\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.2265396118164,\n      \"Text\": \"Part IV - Authorized Signature - Federal statutes provide severe penalties for any fraud, intentional misrepresentation, or criminal connivance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8687130212783813,\n          \"Height\": 0.01184759009629488,\n          \"Left\": 0.0428316667675972,\n          \"Top\": 0.834231436252594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0428316667675972,\n            \"Y\": 0.834231436252594\n          },\n          {\n            \"X\": 0.9115384817123413,\n            \"Y\": 0.8350354433059692\n          },\n          {\n            \"X\": 0.911544680595398,\n            \"Y\": 0.8460790514945984\n          },\n          {\n            \"X\": 0.042832911014556885,\n            \"Y\": 0.8452703952789307\n          }\n        ]\n      },\n      \"Id\": \"a46b4df4-851f-43b1-87c3-35da0afc47c3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"87890fbe-9917-47bd-a648-3e08bd9f812f\",\n            \"b6b3c8ee-f516-4722-abdf-6bf8e08a29e0\",\n            \"11d6c654-50a9-4dcc-be76-9fbcc27c77a8\",\n            \"a0a430ba-875a-42bd-92a4-af3a6c412652\",\n            \"a99bc62e-254e-4131-af28-dc3f13f90744\",\n            \"9c4c494f-0b49-429e-bb84-7f01623c3867\",\n            \"5c8a833a-c3d9-4cf1-af7f-7d4a723cdbe6\",\n            \"b52a9873-c2ab-4939-b7ad-aec59a6c00d4\",\n            \"6810b348-c26a-4af1-a445-c4035214c92d\",\n            \"d443ed29-7cf1-46e3-9aab-8a09f1722548\",\n            \"582fa7d3-1031-4a91-9e3f-23aa4886d128\",\n            \"eb6b1ded-fd2a-4205-a183-217ee4affdcd\",\n            \"9c647bd0-0c45-45e4-9c28-e76163880a65\",\n            \"88c7ff92-04e8-4b19-9185-32d1c3b09733\",\n            \"b280ac23-1039-40e8-8b9a-56a3504d424c\",\n            \"0be5db1c-66ee-4df4-aa36-c57c9dc281e2\",\n            \"ba300d70-2e4d-4972-911c-30bab32a87ff\",\n            \"554b2553-b3e7-4258-b8de-294e06fc3096\",\n            \"0fb9b2ab-0f70-4362-aef7-11cc232c6b5e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.30963134765625,\n      \"Text\": \"or conspiracy purposed to influence the issuance of any guaranty or insurance by the VA Secretary, the U.S.D.A., FmHA/FHA Commissioner, or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8492594957351685,\n          \"Height\": 0.011596604250371456,\n          \"Left\": 0.04214956611394882,\n          \"Top\": 0.8446595072746277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04214956611394882,\n            \"Y\": 0.8446595072746277\n          },\n          {\n            \"X\": 0.891403079032898,\n            \"Y\": 0.8454498052597046\n          },\n          {\n            \"X\": 0.8914090394973755,\n            \"Y\": 0.8562561273574829\n          },\n          {\n            \"X\": 0.04215078055858612,\n            \"Y\": 0.8554613590240479\n          }\n        ]\n      },\n      \"Id\": \"b4867c56-a95c-4e2f-a0d5-25242229d9b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1fcd162b-ac6a-44b4-831c-b3e2f4fdc7ac\",\n            \"39428386-4f5f-412f-852b-688e7db662a4\",\n            \"a7e3cf0b-b69c-4fa0-9dfe-a3dc30139f50\",\n            \"a8d0a898-b805-42ef-b17f-0c4dc710c15d\",\n            \"68f59c9e-bcb8-4c50-b48c-d54ba3e3d4d4\",\n            \"4849b8b4-e60c-4f5f-bd96-c7c7180a7e77\",\n            \"34ef4104-235c-4be9-8b83-ed9f01e5d324\",\n            \"5af72ccb-74df-4632-93c0-d1d5b24ed3c4\",\n            \"964c5365-d043-4d04-8b71-71436d1fedaa\",\n            \"3b3b7c9c-3cae-4c97-97c5-a839b775050b\",\n            \"687fcbb5-248d-43f4-9cd5-571efdd62915\",\n            \"a98db3fc-f3ad-434a-bb7a-2c0ec2bdf2c1\",\n            \"b5f0d782-2c11-4ec3-9f26-d49ead8f9b7c\",\n            \"7788644a-009c-4a52-affb-a53a78e4568e\",\n            \"e3e41dc7-bde9-4da8-a19b-99e22bee2d35\",\n            \"36add95b-0082-4694-9282-d6e3ffc92bcd\",\n            \"d19f859f-73fb-4538-8873-1ab9ad6f7c58\",\n            \"c164174f-bbd3-45b0-a88d-c78e38abea63\",\n            \"5e6a16f4-ecee-475a-a15d-8a94bdf26fed\",\n            \"b3bc3dce-faaf-4508-ad41-5b48276513cb\",\n            \"bb8ce1b2-2642-407b-9789-284f0274a1dc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.95947265625,\n      \"Text\": \"the HUD/CPD Assistant Secretary.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20287439227104187,\n          \"Height\": 0.009880881756544113,\n          \"Left\": 0.042092591524124146,\n          \"Top\": 0.8555651307106018\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042092591524124146,\n            \"Y\": 0.8555651307106018\n          },\n          {\n            \"X\": 0.2449648678302765,\n            \"Y\": 0.8557549715042114\n          },\n          {\n            \"X\": 0.24496698379516602,\n            \"Y\": 0.8654460310935974\n          },\n          {\n            \"X\": 0.042093683034181595,\n            \"Y\": 0.8652551770210266\n          }\n        ]\n      },\n      \"Id\": \"19de25a1-18a3-4466-9da3-393d1c761d32\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"15bdc226-060d-4c2d-a671-9b9899fb079c\",\n            \"2a72670f-d16f-4d85-ade8-b9b0b2f3b134\",\n            \"958600e5-3ece-48ba-8dc1-f11074dd57ea\",\n            \"20cb44b1-402e-4b98-b957-5493a22b3867\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82982635498047,\n      \"Text\": \"26. Signature of Employer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13240274786949158,\n          \"Height\": 0.009194937534630299,\n          \"Left\": 0.04189683496952057,\n          \"Top\": 0.8739840984344482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04189683496952057,\n            \"Y\": 0.8739840984344482\n          },\n          {\n            \"X\": 0.17429792881011963,\n            \"Y\": 0.874109148979187\n          },\n          {\n            \"X\": 0.17429958283901215,\n            \"Y\": 0.8831790089607239\n          },\n          {\n            \"X\": 0.04189785569906235,\n            \"Y\": 0.8830533623695374\n          }\n        ]\n      },\n      \"Id\": \"312eb7b5-64d0-4d45-9180-7c383b5363e2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b5d96985-5076-4fec-948a-9f46a0508a35\",\n            \"e3d663b7-2f9d-4514-afa3-3775330b8bd8\",\n            \"7b8cc17a-0b87-4f99-ab54-3b7aa0aeef39\",\n            \"0853aacd-79ea-4119-bb16-ae5321868dc7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6332015991211,\n      \"Text\": \"27. Title (Please print or type)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15238262712955475,\n          \"Height\": 0.009161128662526608,\n          \"Left\": 0.4122235178947449,\n          \"Top\": 0.8738520741462708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4122235178947449,\n            \"Y\": 0.8738520741462708\n          },\n          {\n            \"X\": 0.5646026730537415,\n            \"Y\": 0.8739960193634033\n          },\n          {\n            \"X\": 0.5646061301231384,\n            \"Y\": 0.8830131888389587\n          },\n          {\n            \"X\": 0.41222625970840454,\n            \"Y\": 0.8828685879707336\n          }\n        ]\n      },\n      \"Id\": \"16a750f5-e936-4e3b-b21b-1428135b4806\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9bcf87f1-e1fc-4b2a-a25a-d085832375e2\",\n            \"5ce18b2e-139d-453f-88a1-a48ac20567b7\",\n            \"18bae4ad-4563-450d-a205-39d9222d10d3\",\n            \"5520c052-a001-4ca9-a718-b501cacd9099\",\n            \"0930badd-2a80-46b7-9a4e-88b942e79fa0\",\n            \"3015d778-4497-463d-a745-574c860557e4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.12215423583984,\n      \"Text\": \"28. Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043210554867982864,\n          \"Height\": 0.0076588839292526245,\n          \"Left\": 0.7844640016555786,\n          \"Top\": 0.8736807703971863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7844640016555786,\n            \"Y\": 0.8736807703971863\n          },\n          {\n            \"X\": 0.8276705741882324,\n            \"Y\": 0.8737215995788574\n          },\n          {\n            \"X\": 0.8276745676994324,\n            \"Y\": 0.8813396692276001\n          },\n          {\n            \"X\": 0.7844678163528442,\n            \"Y\": 0.8812987208366394\n          }\n        ]\n      },\n      \"Id\": \"d5f54c3c-0fe3-4385-a45a-0dee90c1c2fb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fab05d7b-ff74-41c9-ab39-ac739c329770\",\n            \"e9c51c39-ef1a-459c-ad1a-166e3b18742c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.19835662841797,\n      \"Text\": \"Richard Roe\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14699921011924744,\n          \"Height\": 0.017560482025146484,\n          \"Left\": 0.11440733820199966,\n          \"Top\": 0.8894680142402649\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11440733820199966,\n            \"Y\": 0.8894680142402649\n          },\n          {\n            \"X\": 0.26140260696411133,\n            \"Y\": 0.8896080255508423\n          },\n          {\n            \"X\": 0.2614065408706665,\n            \"Y\": 0.9070284962654114\n          },\n          {\n            \"X\": 0.11440995335578918,\n            \"Y\": 0.9068872928619385\n          }\n        ]\n      },\n      \"Id\": \"d546f653-0782-4395-93db-9a4b0accc515\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fee14e57-7908-444c-bf0b-954a93b77149\",\n            \"b5a90fab-dfac-4fa8-a011-1534078da896\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80928039550781,\n      \"Text\": \"VA Secretary\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09678145498037338,\n          \"Height\": 0.01261249091476202,\n          \"Left\": 0.4922941327095032,\n          \"Top\": 0.893255889415741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4922941327095032,\n            \"Y\": 0.893255889415741\n          },\n          {\n            \"X\": 0.5890706181526184,\n            \"Y\": 0.893348217010498\n          },\n          {\n            \"X\": 0.5890756249427795,\n            \"Y\": 0.9058683514595032\n          },\n          {\n            \"X\": 0.4922984838485718,\n            \"Y\": 0.9057754874229431\n          }\n        ]\n      },\n      \"Id\": \"c24bde99-b498-4e21-b75d-51c4c9613d29\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a44355c-20c7-44fb-a687-efc50967576c\",\n            \"f2194801-89ae-4e48-9680-37575ea9e372\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92369079589844,\n      \"Text\": \"01/05/2007\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08143826574087143,\n          \"Height\": 0.010242764838039875,\n          \"Left\": 0.8066563010215759,\n          \"Top\": 0.9043887257575989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8066563010215759,\n            \"Y\": 0.9043887257575989\n          },\n          {\n            \"X\": 0.8880889415740967,\n            \"Y\": 0.9044668674468994\n          },\n          {\n            \"X\": 0.8880945444107056,\n            \"Y\": 0.9146314859390259\n          },\n          {\n            \"X\": 0.8066614866256714,\n            \"Y\": 0.9145529866218567\n          }\n        ]\n      },\n      \"Id\": \"9c08e340-2804-4c7c-855a-e22ca517853d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"408235f1-1cb3-4e18-9a84-d38adb23deaf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.47161102294922,\n      \"Text\": \"29. Print or type name signed in Item 26\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2064734399318695,\n          \"Height\": 0.00808674469590187,\n          \"Left\": 0.04191076010465622,\n          \"Top\": 0.9194138646125793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04191076010465622,\n            \"Y\": 0.9194138646125793\n          },\n          {\n            \"X\": 0.24838246405124664,\n            \"Y\": 0.9196134805679321\n          },\n          {\n            \"X\": 0.24838419258594513,\n            \"Y\": 0.9275006055831909\n          },\n          {\n            \"X\": 0.04191164672374725,\n            \"Y\": 0.927300214767456\n          }\n        ]\n      },\n      \"Id\": \"41f2903d-dfbb-4e5a-bf57-87205401508f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1206875-43ca-4513-9c2f-11ae7daf6512\",\n            \"efecab62-ddae-4e93-b831-50491927ff30\",\n            \"721cc4bb-2f4e-418c-badf-5467d9129a47\",\n            \"886f466b-6602-4887-abc8-2f031e2b4d7d\",\n            \"0af5ac15-69a2-4c0a-9d37-aacda56e3bf1\",\n            \"b6cc034f-44be-4d2b-ae75-0fa85c34a1c1\",\n            \"ffc4a2b1-71b3-422f-a725-6ec008c2afeb\",\n            \"58c05415-7ae0-4545-8fdc-7aedf3eefee4\",\n            \"a4f6d5f8-3463-4ce0-800a-b626a1d80366\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79714965820312,\n      \"Text\": \"30. Phone No.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0736922100186348,\n          \"Height\": 0.007621994707733393,\n          \"Left\": 0.41246840357780457,\n          \"Top\": 0.91949462890625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41246840357780457,\n            \"Y\": 0.91949462890625\n          },\n          {\n            \"X\": 0.4861580431461334,\n            \"Y\": 0.9195658564567566\n          },\n          {\n            \"X\": 0.48616060614585876,\n            \"Y\": 0.9271166324615479\n          },\n          {\n            \"X\": 0.4124706983566284,\n            \"Y\": 0.9270451068878174\n          }\n        ]\n      },\n      \"Id\": \"bb917b0f-3ff9-4139-9256-0560c4752982\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f6f51204-8f71-46de-b561-06b57c690e0b\",\n            \"ecc64f31-8f74-4b68-91a8-2a79d0dda5f6\",\n            \"d135039d-6f4f-495c-9cd7-5ffec18f2796\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92066955566406,\n      \"Text\": \"Richard Roe\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10790945589542389,\n          \"Height\": 0.012073989026248455,\n          \"Left\": 0.09305371344089508,\n          \"Top\": 0.9326642155647278\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09305371344089508,\n            \"Y\": 0.9326642155647278\n          },\n          {\n            \"X\": 0.20096084475517273,\n            \"Y\": 0.932769238948822\n          },\n          {\n            \"X\": 0.20096316933631897,\n            \"Y\": 0.9447382092475891\n          },\n          {\n            \"X\": 0.0930553749203682,\n            \"Y\": 0.9446325302124023\n          }\n        ]\n      },\n      \"Id\": \"720e15c6-50e2-485b-902e-0b0cd0476eac\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"746e83ad-4068-42ad-be68-df1a96e2c72a\",\n            \"8955777a-c516-41d2-a970-d9414c31ecb9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94706726074219,\n      \"Text\": \"555-0100\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08218909054994583,\n          \"Height\": 0.012083507142961025,\n          \"Left\": 0.4991433620452881,\n          \"Top\": 0.9280499815940857\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4991433620452881,\n            \"Y\": 0.9280499815940857\n          },\n          {\n            \"X\": 0.5813277363777161,\n            \"Y\": 0.9281297922134399\n          },\n          {\n            \"X\": 0.5813324451446533,\n            \"Y\": 0.9401335120201111\n          },\n          {\n            \"X\": 0.49914756417274475,\n            \"Y\": 0.9400532245635986\n          }\n        ]\n      },\n      \"Id\": \"f050889a-6e06-4887-8c69-4349fddc59b0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c8ad6b6-4cb1-4b43-a872-765b2268f95f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87777709960938,\n      \"Text\": \"Form 1005\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06687486916780472,\n          \"Height\": 0.008876495994627476,\n          \"Left\": 0.782781183719635,\n          \"Top\": 0.9639674425125122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.782781183719635,\n            \"Y\": 0.9639674425125122\n          },\n          {\n            \"X\": 0.8496513962745667,\n            \"Y\": 0.9640335440635681\n          },\n          {\n            \"X\": 0.8496560454368591,\n            \"Y\": 0.9728439450263977\n          },\n          {\n            \"X\": 0.7827855348587036,\n            \"Y\": 0.9727775454521179\n          }\n        ]\n      },\n      \"Id\": \"e93909a1-423a-4536-ba32-e98dbfe3ed68\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"75f80019-1503-486a-89e6-a3caf7b4fe5b\",\n            \"38254b9c-eb3f-49fe-8f64-181b28f611d2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82426452636719,\n      \"Text\": \"July 96\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045197710394859314,\n          \"Height\": 0.009979138150811195,\n          \"Left\": 0.8746930956840515,\n          \"Top\": 0.9642939567565918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8746930956840515,\n            \"Y\": 0.9642939567565918\n          },\n          {\n            \"X\": 0.9198851585388184,\n            \"Y\": 0.9643386006355286\n          },\n          {\n            \"X\": 0.919890820980072,\n            \"Y\": 0.9742730855941772\n          },\n          {\n            \"X\": 0.8746985197067261,\n            \"Y\": 0.9742282032966614\n          }\n        ]\n      },\n      \"Id\": \"60752022-f7c2-4801-bc21-f61b182eb8bd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dee4c3a2-7587-45df-b8d1-a20ab450452b\",\n            \"77306330-76c9-4f12-bcc6-df90a1d775d7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97880554199219,\n      \"Text\": \"Request\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11428423225879669,\n          \"Height\": 0.021435759961605072,\n          \"Left\": 0.04864320904016495,\n          \"Top\": 0.0805632621049881\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04864320904016495,\n            \"Y\": 0.0805632621049881\n          },\n          {\n            \"X\": 0.1629236936569214,\n            \"Y\": 0.08062724024057388\n          },\n          {\n            \"X\": 0.16292744874954224,\n            \"Y\": 0.10199902206659317\n          },\n          {\n            \"X\": 0.048645686358213425,\n            \"Y\": 0.10193386673927307\n          }\n        ]\n      },\n      \"Id\": \"a97570b1-6be5-45e2-8da3-e05fb1cb7f75\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96778106689453,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04198956862092018,\n          \"Height\": 0.017560847103595734,\n          \"Left\": 0.1722465604543686,\n          \"Top\": 0.07950783520936966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1722465604543686,\n            \"Y\": 0.07950783520936966\n          },\n          {\n            \"X\": 0.21423257887363434,\n            \"Y\": 0.07953131198883057\n          },\n          {\n            \"X\": 0.21423612534999847,\n            \"Y\": 0.0970686748623848\n          },\n          {\n            \"X\": 0.1722497195005417,\n            \"Y\": 0.09704484045505524\n          }\n        ]\n      },\n      \"Id\": \"ed53fb9f-cdef-48ff-ad93-51a270fb7b0f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83765411376953,\n      \"Text\": \"Verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16334350407123566,\n          \"Height\": 0.01789012737572193,\n          \"Left\": 0.22470809519290924,\n          \"Top\": 0.07883848249912262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22470809519290924,\n            \"Y\": 0.07883848249912262\n          },\n          {\n            \"X\": 0.38804641366004944,\n            \"Y\": 0.07892977446317673\n          },\n          {\n            \"X\": 0.3880515992641449,\n            \"Y\": 0.0967286080121994\n          },\n          {\n            \"X\": 0.22471179068088531,\n            \"Y\": 0.09663590788841248\n          }\n        ]\n      },\n      \"Id\": \"d453942c-3bb0-4ad7-9ba6-c8a20ef9f1e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97164916992188,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03009924851357937,\n          \"Height\": 0.01840262860059738,\n          \"Left\": 0.3998793661594391,\n          \"Top\": 0.07861852645874023\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3998793661594391,\n            \"Y\": 0.07861852645874023\n          },\n          {\n            \"X\": 0.4299728274345398,\n            \"Y\": 0.07863534241914749\n          },\n          {\n            \"X\": 0.429978609085083,\n            \"Y\": 0.09702115505933762\n          },\n          {\n            \"X\": 0.3998848497867584,\n            \"Y\": 0.09700407087802887\n          }\n        ]\n      },\n      \"Id\": \"7ff4f60f-67e3-4603-b214-13bf49aef85a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94578552246094,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17785681784152985,\n          \"Height\": 0.02198372222483158,\n          \"Left\": 0.4417823851108551,\n          \"Top\": 0.07867677509784698\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4417823851108551,\n            \"Y\": 0.07867677509784698\n          },\n          {\n            \"X\": 0.6196301579475403,\n            \"Y\": 0.07877615094184875\n          },\n          {\n            \"X\": 0.6196392178535461,\n            \"Y\": 0.10066049546003342\n          },\n          {\n            \"X\": 0.4417893886566162,\n            \"Y\": 0.10055923461914062\n          }\n        ]\n      },\n      \"Id\": \"fc4d6ea4-0b28-4efd-b61f-818626a47908\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90711975097656,\n      \"Text\": \"Privacy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03754815086722374,\n          \"Height\": 0.008132974617183208,\n          \"Left\": 0.046929653733968735,\n          \"Top\": 0.11096163094043732\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046929653733968735,\n            \"Y\": 0.11096163094043732\n          },\n          {\n            \"X\": 0.08447671681642532,\n            \"Y\": 0.11098320782184601\n          },\n          {\n            \"X\": 0.08447780460119247,\n            \"Y\": 0.1190946102142334\n          },\n          {\n            \"X\": 0.04693058878183365,\n            \"Y\": 0.11907289177179337\n          }\n        ]\n      },\n      \"Id\": \"c2e93a92-6729-4076-8233-1cd7c7116f45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95159149169922,\n      \"Text\": \"Act\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01857733353972435,\n          \"Height\": 0.006790722254663706,\n          \"Left\": 0.08787321299314499,\n          \"Top\": 0.11093823611736298\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08787321299314499,\n            \"Y\": 0.11093823611736298\n          },\n          {\n            \"X\": 0.10644955933094025,\n            \"Y\": 0.11094891279935837\n          },\n          {\n            \"X\": 0.10645054280757904,\n            \"Y\": 0.11772896349430084\n          },\n          {\n            \"X\": 0.08787413686513901,\n            \"Y\": 0.11771822720766068\n          }\n        ]\n      },\n      \"Id\": \"8b8febd6-1883-4c0c-be3e-0bd682dde1a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.66812896728516,\n      \"Text\": \"Notice:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03675238788127899,\n          \"Height\": 0.0069304294884204865,\n          \"Left\": 0.11003207415342331,\n          \"Top\": 0.11077520251274109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11003207415342331,\n            \"Y\": 0.11077520251274109\n          },\n          {\n            \"X\": 0.14678330719470978,\n            \"Y\": 0.11079631000757217\n          },\n          {\n            \"X\": 0.1467844545841217,\n            \"Y\": 0.11770562827587128\n          },\n          {\n            \"X\": 0.11003309488296509,\n            \"Y\": 0.11768439412117004\n          }\n        ]\n      },\n      \"Id\": \"28b7640f-3676-4284-948d-0eec7ec5daa9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97369384765625,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020100440829992294,\n          \"Height\": 0.006737948395311832,\n          \"Left\": 0.15046986937522888,\n          \"Top\": 0.11051307618618011\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15046986937522888,\n            \"Y\": 0.11051307618618011\n          },\n          {\n            \"X\": 0.17056910693645477,\n            \"Y\": 0.11052461713552475\n          },\n          {\n            \"X\": 0.17057031393051147,\n            \"Y\": 0.11725102365016937\n          },\n          {\n            \"X\": 0.1504710167646408,\n            \"Y\": 0.11723941564559937\n          }\n        ]\n      },\n      \"Id\": \"fca3b081-44b2-405d-8a15-b41c4b1ec9e5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84463500976562,\n      \"Text\": \"information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05415158346295357,\n          \"Height\": 0.0067812479101121426,\n          \"Left\": 0.17335061728954315,\n          \"Top\": 0.11039263010025024\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17335061728954315,\n            \"Y\": 0.11039263010025024\n          },\n          {\n            \"X\": 0.2275007963180542,\n            \"Y\": 0.11042372137308121\n          },\n          {\n            \"X\": 0.22750219702720642,\n            \"Y\": 0.11717387288808823\n          },\n          {\n            \"X\": 0.17335183918476105,\n            \"Y\": 0.11714260280132294\n          }\n        ]\n      },\n      \"Id\": \"2758ac6a-29be-4ab6-add3-faedf59db46f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94145202636719,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007650221232324839,\n          \"Height\": 0.006716431584209204,\n          \"Left\": 0.23079468309879303,\n          \"Top\": 0.11030292510986328\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23079468309879303,\n            \"Y\": 0.11030292510986328\n          },\n          {\n            \"X\": 0.23844346404075623,\n            \"Y\": 0.11030731350183487\n          },\n          {\n            \"X\": 0.23844489455223083,\n            \"Y\": 0.11701935529708862\n          },\n          {\n            \"X\": 0.23079609870910645,\n            \"Y\": 0.11701493710279465\n          }\n        ]\n      },\n      \"Id\": \"77001e26-9bb5-49d5-9d04-962b4b2128b4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9229736328125,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009693574160337448,\n          \"Height\": 0.00607433682307601,\n          \"Left\": 0.24176602065563202,\n          \"Top\": 0.11084656417369843\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24176602065563202,\n            \"Y\": 0.11084656417369843\n          },\n          {\n            \"X\": 0.2514582574367523,\n            \"Y\": 0.11085213720798492\n          },\n          {\n            \"X\": 0.25145959854125977,\n            \"Y\": 0.11692090332508087\n          },\n          {\n            \"X\": 0.24176733195781708,\n            \"Y\": 0.11691530793905258\n          }\n        ]\n      },\n      \"Id\": \"fe7974d4-8bf6-4e9b-961d-fa529ad96a25\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83848571777344,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011743857525289059,\n          \"Height\": 0.006650757975876331,\n          \"Left\": 0.25471508502960205,\n          \"Top\": 0.1102524846792221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25471508502960205,\n            \"Y\": 0.1102524846792221\n          },\n          {\n            \"X\": 0.2664574384689331,\n            \"Y\": 0.11025922745466232\n          },\n          {\n            \"X\": 0.2664589583873749,\n            \"Y\": 0.11690324544906616\n          },\n          {\n            \"X\": 0.25471657514572144,\n            \"Y\": 0.11689646542072296\n          }\n        ]\n      },\n      \"Id\": \"e4b46b2b-461f-4a4c-b902-b14856f5ebcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85527038574219,\n      \"Text\": \"used\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022341042757034302,\n          \"Height\": 0.006736705545336008,\n          \"Left\": 0.26992639899253845,\n          \"Top\": 0.1102583259344101\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26992639899253845,\n            \"Y\": 0.1102583259344101\n          },\n          {\n            \"X\": 0.29226580262184143,\n            \"Y\": 0.110271155834198\n          },\n          {\n            \"X\": 0.29226744174957275,\n            \"Y\": 0.11699502915143967\n          },\n          {\n            \"X\": 0.2699279487133026,\n            \"Y\": 0.11698213219642639\n          }\n        ]\n      },\n      \"Id\": \"6e16484c-6141-4e46-a993-188f118a02aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95487976074219,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011833244003355503,\n          \"Height\": 0.008051863871514797,\n          \"Left\": 0.2959454357624054,\n          \"Top\": 0.11002815514802933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2959454357624054,\n            \"Y\": 0.11002815514802933\n          },\n          {\n            \"X\": 0.30777665972709656,\n            \"Y\": 0.11003495007753372\n          },\n          {\n            \"X\": 0.3077786862850189,\n            \"Y\": 0.1180800199508667\n          },\n          {\n            \"X\": 0.295947402715683,\n            \"Y\": 0.11807318031787872\n          }\n        ]\n      },\n      \"Id\": \"a6892c2d-5202-4377-883f-36e7130e1904\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97180938720703,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015296651981770992,\n          \"Height\": 0.006725371815264225,\n          \"Left\": 0.31082814931869507,\n          \"Top\": 0.11030083149671555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31082814931869507,\n            \"Y\": 0.11030083149671555\n          },\n          {\n            \"X\": 0.32612305879592896,\n            \"Y\": 0.11030961573123932\n          },\n          {\n            \"X\": 0.32612478733062744,\n            \"Y\": 0.1170262023806572\n          },\n          {\n            \"X\": 0.3108298182487488,\n            \"Y\": 0.11701737344264984\n          }\n        ]\n      },\n      \"Id\": \"f9f80e22-98ac-44a9-b876-fd8f77ed2d75\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94387817382812,\n      \"Text\": \"agency\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033831726759672165,\n          \"Height\": 0.006912038195878267,\n          \"Left\": 0.3290969431400299,\n          \"Top\": 0.1112661063671112\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3290969431400299,\n            \"Y\": 0.1112661063671112\n          },\n          {\n            \"X\": 0.36292675137519836,\n            \"Y\": 0.11128554493188858\n          },\n          {\n            \"X\": 0.36292868852615356,\n            \"Y\": 0.11817814409732819\n          },\n          {\n            \"X\": 0.32909876108169556,\n            \"Y\": 0.11815859377384186\n          }\n        ]\n      },\n      \"Id\": \"37b29dc4-411b-4aef-8878-881ebe192070\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91287231445312,\n      \"Text\": \"collecting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0449974462389946,\n          \"Height\": 0.008225456811487675,\n          \"Left\": 0.36633890867233276,\n          \"Top\": 0.10998810082674026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36633890867233276,\n            \"Y\": 0.10998810082674026\n          },\n          {\n            \"X\": 0.4113338589668274,\n            \"Y\": 0.1100139245390892\n          },\n          {\n            \"X\": 0.41133636236190796,\n            \"Y\": 0.11821355670690536\n          },\n          {\n            \"X\": 0.3663412034511566,\n            \"Y\": 0.1181875467300415\n          }\n        ]\n      },\n      \"Id\": \"969f322d-7d53-48c5-bc5b-d6482ffc673d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86646270751953,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006620416417717934,\n          \"Height\": 0.006682319566607475,\n          \"Left\": 0.41455939412117004,\n          \"Top\": 0.10988087207078934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41455939412117004,\n            \"Y\": 0.10988087207078934\n          },\n          {\n            \"X\": 0.4211777448654175,\n            \"Y\": 0.10988467186689377\n          },\n          {\n            \"X\": 0.42117980122566223,\n            \"Y\": 0.11656319350004196\n          },\n          {\n            \"X\": 0.4145614206790924,\n            \"Y\": 0.11655937135219574\n          }\n        ]\n      },\n      \"Id\": \"6881d15a-a74a-4a05-8441-5174cf6f1d25\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80101013183594,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010183033533394337,\n          \"Height\": 0.005325698293745518,\n          \"Left\": 0.4244425296783447,\n          \"Top\": 0.11125161498785019\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4244425296783447,\n            \"Y\": 0.11125161498785019\n          },\n          {\n            \"X\": 0.4346238672733307,\n            \"Y\": 0.11125746369361877\n          },\n          {\n            \"X\": 0.4346255660057068,\n            \"Y\": 0.11657731235027313\n          },\n          {\n            \"X\": 0.42444416880607605,\n            \"Y\": 0.11657143384218216\n          }\n        ]\n      },\n      \"Id\": \"c0191b45-f785-4885-a6de-a6a6824afa21\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92301177978516,\n      \"Text\": \"its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011217694729566574,\n          \"Height\": 0.006684629712253809,\n          \"Left\": 0.4375634789466858,\n          \"Top\": 0.1098744347691536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4375634789466858,\n            \"Y\": 0.1098744347691536\n          },\n          {\n            \"X\": 0.44877901673316956,\n            \"Y\": 0.10988087207078934\n          },\n          {\n            \"X\": 0.44878116250038147,\n            \"Y\": 0.11655906587839127\n          },\n          {\n            \"X\": 0.4375655949115753,\n            \"Y\": 0.11655259132385254\n          }\n        ]\n      },\n      \"Id\": \"fce96d07-5554-48c5-9ed8-8a1ec3a99d13\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71575164794922,\n      \"Text\": \"assignees\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04487244039773941,\n          \"Height\": 0.008116575889289379,\n          \"Left\": 0.45211052894592285,\n          \"Top\": 0.109935462474823\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45211052894592285,\n            \"Y\": 0.109935462474823\n          },\n          {\n            \"X\": 0.4969801604747772,\n            \"Y\": 0.10996121913194656\n          },\n          {\n            \"X\": 0.49698296189308167,\n            \"Y\": 0.11805204302072525\n          },\n          {\n            \"X\": 0.45211315155029297,\n            \"Y\": 0.11802611500024796\n          }\n        ]\n      },\n      \"Id\": \"50c3fb65-b8b4-4292-b36b-8db99f767dc9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8768310546875,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008674364537000656,\n          \"Height\": 0.006799239199608564,\n          \"Left\": 0.5003761053085327,\n          \"Top\": 0.10978426039218903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5003761053085327,\n            \"Y\": 0.10978426039218903\n          },\n          {\n            \"X\": 0.5090480446815491,\n            \"Y\": 0.10978923738002777\n          },\n          {\n            \"X\": 0.5090504884719849,\n            \"Y\": 0.11658349633216858\n          },\n          {\n            \"X\": 0.5003784894943237,\n            \"Y\": 0.11657849699258804\n          }\n        ]\n      },\n      \"Id\": \"f0ce4b13-9304-45de-bb32-ff52836f5a4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9308853149414,\n      \"Text\": \"determining\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05553019791841507,\n          \"Height\": 0.008279716596007347,\n          \"Left\": 0.5125483870506287,\n          \"Top\": 0.10977676510810852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5125483870506287,\n            \"Y\": 0.10977676510810852\n          },\n          {\n            \"X\": 0.56807541847229,\n            \"Y\": 0.10980863124132156\n          },\n          {\n            \"X\": 0.5680785775184631,\n            \"Y\": 0.11805648356676102\n          },\n          {\n            \"X\": 0.5125513672828674,\n            \"Y\": 0.11802440136671066\n          }\n        ]\n      },\n      \"Id\": \"911bfb30-8b1e-4144-9500-f134b884fd94\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95367431640625,\n      \"Text\": \"whether\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038580864667892456,\n          \"Height\": 0.006826263386756182,\n          \"Left\": 0.5711360573768616,\n          \"Top\": 0.10990774631500244\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5711360573768616,\n            \"Y\": 0.10990774631500244\n          },\n          {\n            \"X\": 0.609714150428772,\n            \"Y\": 0.1099298894405365\n          },\n          {\n            \"X\": 0.6097168922424316,\n            \"Y\": 0.11673401296138763\n          },\n          {\n            \"X\": 0.5711386799812317,\n            \"Y\": 0.11671174317598343\n          }\n        ]\n      },\n      \"Id\": \"c3e213d6-d20b-4043-905e-97b46aa35ba6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54988861083984,\n      \"Text\": \"you\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017619198188185692,\n          \"Height\": 0.0066623203456401825,\n          \"Left\": 0.6131651997566223,\n          \"Top\": 0.1111336201429367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6131651997566223,\n            \"Y\": 0.1111336201429367\n          },\n          {\n            \"X\": 0.6307815909385681,\n            \"Y\": 0.11114374548196793\n          },\n          {\n            \"X\": 0.6307843923568726,\n            \"Y\": 0.11779594421386719\n          },\n          {\n            \"X\": 0.6131678819656372,\n            \"Y\": 0.11778576672077179\n          }\n        ]\n      },\n      \"Id\": \"1043d579-0dde-4a8d-9074-02d054690ebd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.55780029296875,\n      \"Text\": \"qualify\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030944189056754112,\n          \"Height\": 0.008163920603692532,\n          \"Left\": 0.6343020796775818,\n          \"Top\": 0.10996334999799728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6343020796775818,\n            \"Y\": 0.10996334999799728\n          },\n          {\n            \"X\": 0.6652427315711975,\n            \"Y\": 0.10998110473155975\n          },\n          {\n            \"X\": 0.6652462482452393,\n            \"Y\": 0.11812727153301239\n          },\n          {\n            \"X\": 0.634305477142334,\n            \"Y\": 0.11810939013957977\n          }\n        ]\n      },\n      \"Id\": \"9ded47a0-c8fa-438d-bac8-7b7d15629e45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89137268066406,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010581614449620247,\n          \"Height\": 0.0054967449977993965,\n          \"Left\": 0.668566107749939,\n          \"Top\": 0.11128818243741989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.668566107749939,\n            \"Y\": 0.11128818243741989\n          },\n          {\n            \"X\": 0.6791452765464783,\n            \"Y\": 0.11129426211118698\n          },\n          {\n            \"X\": 0.6791477203369141,\n            \"Y\": 0.11678493022918701\n          },\n          {\n            \"X\": 0.66856849193573,\n            \"Y\": 0.11677882075309753\n          }\n        ]\n      },\n      \"Id\": \"362e1c53-5ea0-40f8-a5a1-91a4ac884c7c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77630615234375,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005845413077622652,\n          \"Height\": 0.0053990851156413555,\n          \"Left\": 0.6823620796203613,\n          \"Top\": 0.1114550456404686\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6823620796203613,\n            \"Y\": 0.1114550456404686\n          },\n          {\n            \"X\": 0.6882051229476929,\n            \"Y\": 0.11145840585231781\n          },\n          {\n            \"X\": 0.6882075071334839,\n            \"Y\": 0.11685413122177124\n          },\n          {\n            \"X\": 0.6823645234107971,\n            \"Y\": 0.11685075610876083\n          }\n        ]\n      },\n      \"Id\": \"a626b01b-e714-407e-9319-4c228c491ae0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73080444335938,\n      \"Text\": \"prospective\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05381329730153084,\n          \"Height\": 0.00781764555722475,\n          \"Left\": 0.6916524171829224,\n          \"Top\": 0.11040860414505005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6916524171829224,\n            \"Y\": 0.11040860414505005\n          },\n          {\n            \"X\": 0.7454620003700256,\n            \"Y\": 0.1104394942522049\n          },\n          {\n            \"X\": 0.7454657554626465,\n            \"Y\": 0.11822625249624252\n          },\n          {\n            \"X\": 0.6916559338569641,\n            \"Y\": 0.11819515377283096\n          }\n        ]\n      },\n      \"Id\": \"850f359c-8481-4c42-97ba-87bd80292777\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61732482910156,\n      \"Text\": \"mortgagor\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04908335581421852,\n          \"Height\": 0.00755753880366683,\n          \"Left\": 0.74909907579422,\n          \"Top\": 0.1108410581946373\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.74909907579422,\n            \"Y\": 0.1108410581946373\n          },\n          {\n            \"X\": 0.7981786727905273,\n            \"Y\": 0.11086924374103546\n          },\n          {\n            \"X\": 0.7981824278831482,\n            \"Y\": 0.11839859932661057\n          },\n          {\n            \"X\": 0.7491027116775513,\n            \"Y\": 0.11837023496627808\n          }\n        ]\n      },\n      \"Id\": \"89aa21ad-112c-4484-8219-af7d8b4cac38\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95306396484375,\n      \"Text\": \"under\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02667785808444023,\n          \"Height\": 0.006639108993113041,\n          \"Left\": 0.8012268543243408,\n          \"Top\": 0.1105182096362114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8012268543243408,\n            \"Y\": 0.1105182096362114\n          },\n          {\n            \"X\": 0.827901303768158,\n            \"Y\": 0.11053352057933807\n          },\n          {\n            \"X\": 0.8279047608375549,\n            \"Y\": 0.11715731769800186\n          },\n          {\n            \"X\": 0.801230251789093,\n            \"Y\": 0.11714191734790802\n          }\n        ]\n      },\n      \"Id\": \"a798a2b7-74d1-4090-9165-ed02a6129cd8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91188049316406,\n      \"Text\": \"its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010843463242053986,\n          \"Height\": 0.00660624960437417,\n          \"Left\": 0.8312514424324036,\n          \"Top\": 0.11051856726408005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8312514424324036,\n            \"Y\": 0.11051856726408005\n          },\n          {\n            \"X\": 0.84209144115448,\n            \"Y\": 0.11052478849887848\n          },\n          {\n            \"X\": 0.842094898223877,\n            \"Y\": 0.11712481826543808\n          },\n          {\n            \"X\": 0.8312548995018005,\n            \"Y\": 0.11711855977773666\n          }\n        ]\n      },\n      \"Id\": \"afe8c592-4a8b-4e16-82b8-826049ddc2c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.08651733398438,\n      \"Text\": \"program.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04237021133303642,\n          \"Height\": 0.00687903817743063,\n          \"Left\": 0.8454607725143433,\n          \"Top\": 0.11175833642482758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454607725143433,\n            \"Y\": 0.11175833642482758\n          },\n          {\n            \"X\": 0.8878272175788879,\n            \"Y\": 0.11178268492221832\n          },\n          {\n            \"X\": 0.8878309726715088,\n            \"Y\": 0.11863737553358078\n          },\n          {\n            \"X\": 0.8454644083976746,\n            \"Y\": 0.11861288547515869\n          }\n        ]\n      },\n      \"Id\": \"6847eb80-ad7f-4f40-bd73-69648b09d964\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26870727539062,\n      \"Text\": \"It\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006903307046741247,\n          \"Height\": 0.006440562661737204,\n          \"Left\": 0.8922868371009827,\n          \"Top\": 0.1106187105178833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8922868371009827,\n            \"Y\": 0.1106187105178833\n          },\n          {\n            \"X\": 0.8991865515708923,\n            \"Y\": 0.11062266677618027\n          },\n          {\n            \"X\": 0.8991901278495789,\n            \"Y\": 0.11705926805734634\n          },\n          {\n            \"X\": 0.8922904133796692,\n            \"Y\": 0.11705528944730759\n          }\n        ]\n      },\n      \"Id\": \"9ef1487e-f619-485b-bb8c-951351bb23ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75276184082031,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016333479434251785,\n          \"Height\": 0.006780189462006092,\n          \"Left\": 0.9019880294799805,\n          \"Top\": 0.11060276627540588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9019880294799805,\n            \"Y\": 0.11060276627540588\n          },\n          {\n            \"X\": 0.9183176755905151,\n            \"Y\": 0.11061213910579681\n          },\n          {\n            \"X\": 0.9183214902877808,\n            \"Y\": 0.1173829510807991\n          },\n          {\n            \"X\": 0.9019917845726013,\n            \"Y\": 0.117373526096344\n          }\n        ]\n      },\n      \"Id\": \"bb2d0cf2-6e1c-4070-90f0-a9a1fa33a3aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95881652832031,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015604190528392792,\n          \"Height\": 0.0060976361855864525,\n          \"Left\": 0.0467955619096756,\n          \"Top\": 0.12130504846572876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0467955619096756,\n            \"Y\": 0.12130504846572876\n          },\n          {\n            \"X\": 0.0623990036547184,\n            \"Y\": 0.12131409347057343\n          },\n          {\n            \"X\": 0.06239975243806839,\n            \"Y\": 0.1274026781320572\n          },\n          {\n            \"X\": 0.04679626226425171,\n            \"Y\": 0.12739358842372894\n          }\n        ]\n      },\n      \"Id\": \"8d929c8b-1357-4813-8545-df9acd7be357\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8348617553711,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01124389935284853,\n          \"Height\": 0.006682925391942263,\n          \"Left\": 0.06594377011060715,\n          \"Top\": 0.12063514441251755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06594377011060715,\n            \"Y\": 0.12063514441251755\n          },\n          {\n            \"X\": 0.07718680053949356,\n            \"Y\": 0.12064165621995926\n          },\n          {\n            \"X\": 0.0771876722574234,\n            \"Y\": 0.12731806933879852\n          },\n          {\n            \"X\": 0.065944604575634,\n            \"Y\": 0.12731152772903442\n          }\n        ]\n      },\n      \"Id\": \"a7621680-1c8a-4e56-9ad2-dbfca75d4ce9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9200439453125,\n      \"Text\": \"disclosed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042209867388010025,\n          \"Height\": 0.006594640202820301,\n          \"Left\": 0.08072204887866974,\n          \"Top\": 0.12063778936862946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08072204887866974,\n            \"Y\": 0.12063778936862946\n          },\n          {\n            \"X\": 0.12293089926242828,\n            \"Y\": 0.12066224217414856\n          },\n          {\n            \"X\": 0.12293191254138947,\n            \"Y\": 0.12723243236541748\n          },\n          {\n            \"X\": 0.08072292059659958,\n            \"Y\": 0.12720784544944763\n          }\n        ]\n      },\n      \"Id\": \"e094f59e-1b96-4f87-b8c6-7d9f97b650c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90617370605469,\n      \"Text\": \"outside\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03381914645433426,\n          \"Height\": 0.006726562511175871,\n          \"Left\": 0.12660519778728485,\n          \"Top\": 0.1203017309308052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12660519778728485,\n            \"Y\": 0.1203017309308052\n          },\n          {\n            \"X\": 0.1604231745004654,\n            \"Y\": 0.12032131105661392\n          },\n          {\n            \"X\": 0.1604243516921997,\n            \"Y\": 0.12702830135822296\n          },\n          {\n            \"X\": 0.12660625576972961,\n            \"Y\": 0.1270086020231247\n          }\n        ]\n      },\n      \"Id\": \"23f39185-b9fd-41cc-ba2b-3b76546ae9f0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97384643554688,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015248989686369896,\n          \"Height\": 0.006616223603487015,\n          \"Left\": 0.16366250813007355,\n          \"Top\": 0.12017163634300232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16366250813007355,\n            \"Y\": 0.12017163634300232\n          },\n          {\n            \"X\": 0.1789102852344513,\n            \"Y\": 0.12018046528100967\n          },\n          {\n            \"X\": 0.1789115071296692,\n            \"Y\": 0.12678785622119904\n          },\n          {\n            \"X\": 0.16366367042064667,\n            \"Y\": 0.1267789900302887\n          }\n        ]\n      },\n      \"Id\": \"25985623-2198-471b-8e2c-bebf3ff15b12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9659652709961,\n      \"Text\": \"agency\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033719033002853394,\n          \"Height\": 0.007179294712841511,\n          \"Left\": 0.18245580792427063,\n          \"Top\": 0.1210896447300911\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18245580792427063,\n            \"Y\": 0.1210896447300911\n          },\n          {\n            \"X\": 0.21617339551448822,\n            \"Y\": 0.12110918015241623\n          },\n          {\n            \"X\": 0.21617484092712402,\n            \"Y\": 0.12826894223690033\n          },\n          {\n            \"X\": 0.18245713412761688,\n            \"Y\": 0.12824928760528564\n          }\n        ]\n      },\n      \"Id\": \"070b4ed4-ca17-4a3f-a7e4-36146520f325\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95648956298828,\n      \"Text\": \"except\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031239381060004234,\n          \"Height\": 0.00730862794443965,\n          \"Left\": 0.21951986849308014,\n          \"Top\": 0.1205974593758583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21951986849308014,\n            \"Y\": 0.1205974593758583\n          },\n          {\n            \"X\": 0.25075763463974,\n            \"Y\": 0.12061555683612823\n          },\n          {\n            \"X\": 0.2507592439651489,\n            \"Y\": 0.12790608406066895\n          },\n          {\n            \"X\": 0.21952135860919952,\n            \"Y\": 0.12788788974285126\n          }\n        ]\n      },\n      \"Id\": \"7fc68109-4559-4780-8cb2-b1bc5e302261\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90838623046875,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010409136302769184,\n          \"Height\": 0.005463209934532642,\n          \"Left\": 0.2539636194705963,\n          \"Top\": 0.1210767850279808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2539636194705963,\n            \"Y\": 0.1210767850279808\n          },\n          {\n            \"X\": 0.26437151432037354,\n            \"Y\": 0.12108281254768372\n          },\n          {\n            \"X\": 0.26437273621559143,\n            \"Y\": 0.12653999030590057\n          },\n          {\n            \"X\": 0.2539648413658142,\n            \"Y\": 0.12653394043445587\n          }\n        ]\n      },\n      \"Id\": \"52b211c9-3cf3-41db-9738-42764a326e45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9052963256836,\n      \"Text\": \"required\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03839246928691864,\n          \"Height\": 0.007945384830236435,\n          \"Left\": 0.26786908507347107,\n          \"Top\": 0.11979129165410995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26786908507347107,\n            \"Y\": 0.11979129165410995\n          },\n          {\n            \"X\": 0.3062596023082733,\n            \"Y\": 0.11981350928544998\n          },\n          {\n            \"X\": 0.3062615692615509,\n            \"Y\": 0.1277366727590561\n          },\n          {\n            \"X\": 0.2678709328174591,\n            \"Y\": 0.12771430611610413\n          }\n        ]\n      },\n      \"Id\": \"6a002292-7c3e-4188-b9fc-eea65169e5fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96176147460938,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01737385056912899,\n          \"Height\": 0.006512101273983717,\n          \"Left\": 0.30965542793273926,\n          \"Top\": 0.11976978182792664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30965542793273926,\n            \"Y\": 0.11976978182792664\n          },\n          {\n            \"X\": 0.3270275890827179,\n            \"Y\": 0.11977984011173248\n          },\n          {\n            \"X\": 0.3270292580127716,\n            \"Y\": 0.12628188729286194\n          },\n          {\n            \"X\": 0.3096570670604706,\n            \"Y\": 0.1262717843055725\n          }\n        ]\n      },\n      \"Id\": \"60842db2-0e5c-4b60-938c-e51d22e0be00\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84649658203125,\n      \"Text\": \"permitted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044394027441740036,\n          \"Height\": 0.0077636889182031155,\n          \"Left\": 0.3305445611476898,\n          \"Top\": 0.11983905732631683\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3305445611476898,\n            \"Y\": 0.11983905732631683\n          },\n          {\n            \"X\": 0.37493640184402466,\n            \"Y\": 0.11986475437879562\n          },\n          {\n            \"X\": 0.37493860721588135,\n            \"Y\": 0.1276027411222458\n          },\n          {\n            \"X\": 0.3305465877056122,\n            \"Y\": 0.12757688760757446\n          }\n        ]\n      },\n      \"Id\": \"bd5c64f7-8f9b-4e24-aebb-308086f55da4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93981170654297,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011596397496759892,\n          \"Height\": 0.008021626621484756,\n          \"Left\": 0.37883928418159485,\n          \"Top\": 0.1196708157658577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37883928418159485,\n            \"Y\": 0.1196708157658577\n          },\n          {\n            \"X\": 0.39043334126472473,\n            \"Y\": 0.11967752873897552\n          },\n          {\n            \"X\": 0.39043569564819336,\n            \"Y\": 0.12769244611263275\n          },\n          {\n            \"X\": 0.3788415789604187,\n            \"Y\": 0.12768569588661194\n          }\n        ]\n      },\n      \"Id\": \"d2296ae8-9768-46fa-85e5-2f5b05647ec1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60384368896484,\n      \"Text\": \"law.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0191408209502697,\n          \"Height\": 0.0067107887007296085,\n          \"Left\": 0.3935874104499817,\n          \"Top\": 0.11963708698749542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3935874104499817,\n            \"Y\": 0.11963708698749542\n          },\n          {\n            \"X\": 0.41272619366645813,\n            \"Y\": 0.11964816600084305\n          },\n          {\n            \"X\": 0.4127282500267029,\n            \"Y\": 0.1263478845357895\n          },\n          {\n            \"X\": 0.39358940720558167,\n            \"Y\": 0.1263367384672165\n          }\n        ]\n      },\n      \"Id\": \"f612ce73-0bad-47b4-9434-a9a598b7d2d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84597778320312,\n      \"Text\": \"You\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018886994570493698,\n          \"Height\": 0.006873919628560543,\n          \"Left\": 0.4170684218406677,\n          \"Top\": 0.1193876713514328\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4170684218406677,\n            \"Y\": 0.1193876713514328\n          },\n          {\n            \"X\": 0.4359532296657562,\n            \"Y\": 0.11939860135316849\n          },\n          {\n            \"X\": 0.4359554052352905,\n            \"Y\": 0.12626159191131592\n          },\n          {\n            \"X\": 0.41707050800323486,\n            \"Y\": 0.12625060975551605\n          }\n        ]\n      },\n      \"Id\": \"158f6d64-91dc-4130-8c64-9bb16a20ab6d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87911224365234,\n      \"Text\": \"do\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012081068940460682,\n          \"Height\": 0.006838399451225996,\n          \"Left\": 0.43991637229919434,\n          \"Top\": 0.11951741576194763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43991637229919434,\n            \"Y\": 0.11951741576194763\n          },\n          {\n            \"X\": 0.45199519395828247,\n            \"Y\": 0.11952440440654755\n          },\n          {\n            \"X\": 0.45199742913246155,\n            \"Y\": 0.12635581195354462\n          },\n          {\n            \"X\": 0.43991854786872864,\n            \"Y\": 0.12634879350662231\n          }\n        ]\n      },\n      \"Id\": \"7cafe2c0-0986-4fa5-9961-22f47aea3151\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96623229980469,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015973256900906563,\n          \"Height\": 0.006101695820689201,\n          \"Left\": 0.45560121536254883,\n          \"Top\": 0.12010539323091507\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45560121536254883,\n            \"Y\": 0.12010539323091507\n          },\n          {\n            \"X\": 0.4715724289417267,\n            \"Y\": 0.12011463940143585\n          },\n          {\n            \"X\": 0.47157445549964905,\n            \"Y\": 0.12620709836483002\n          },\n          {\n            \"X\": 0.4556032121181488,\n            \"Y\": 0.12619780004024506\n          }\n        ]\n      },\n      \"Id\": \"291b0863-c5bc-436d-90ae-501be53c5a7a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97794342041016,\n      \"Text\": \"have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022101283073425293,\n          \"Height\": 0.006809426937252283,\n          \"Left\": 0.47489577531814575,\n          \"Top\": 0.11938942223787308\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47489577531814575,\n            \"Y\": 0.11938942223787308\n          },\n          {\n            \"X\": 0.49699467420578003,\n            \"Y\": 0.1194022074341774\n          },\n          {\n            \"X\": 0.49699705839157104,\n            \"Y\": 0.12619884312152863\n          },\n          {\n            \"X\": 0.4748980700969696,\n            \"Y\": 0.12618598341941833\n          }\n        ]\n      },\n      \"Id\": \"397b91f4-7d25-4469-9613-c57546a571b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86783599853516,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009968981146812439,\n          \"Height\": 0.00617675855755806,\n          \"Left\": 0.5002956390380859,\n          \"Top\": 0.12000963091850281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5002956390380859,\n            \"Y\": 0.12000963091850281\n          },\n          {\n            \"X\": 0.5102624297142029,\n            \"Y\": 0.12001539766788483\n          },\n          {\n            \"X\": 0.5102645754814148,\n            \"Y\": 0.12618638575077057\n          },\n          {\n            \"X\": 0.5002977848052979,\n            \"Y\": 0.12618058919906616\n          }\n        ]\n      },\n      \"Id\": \"2ca6ac33-4cd6-4698-b536-0bea8901e67b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96009826660156,\n      \"Text\": \"provide\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03517618402838707,\n          \"Height\": 0.007985597476363182,\n          \"Left\": 0.5137218236923218,\n          \"Top\": 0.1193132996559143\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5137218236923218,\n            \"Y\": 0.1193132996559143\n          },\n          {\n            \"X\": 0.548895001411438,\n            \"Y\": 0.1193336471915245\n          },\n          {\n            \"X\": 0.5488979816436768,\n            \"Y\": 0.12729889154434204\n          },\n          {\n            \"X\": 0.513724684715271,\n            \"Y\": 0.1272784173488617\n          }\n        ]\n      },\n      \"Id\": \"e9b10f4b-d224-4dca-b951-245a42d95ba9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95621490478516,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01710594817996025,\n          \"Height\": 0.006809196434915066,\n          \"Left\": 0.5518963932991028,\n          \"Top\": 0.11938314884901047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5518963932991028,\n            \"Y\": 0.11938314884901047\n          },\n          {\n            \"X\": 0.568999707698822,\n            \"Y\": 0.11939304322004318\n          },\n          {\n            \"X\": 0.5690023303031921,\n            \"Y\": 0.1261923462152481\n          },\n          {\n            \"X\": 0.5518989562988281,\n            \"Y\": 0.12618239223957062\n          }\n        ]\n      },\n      \"Id\": \"d5835594-f751-418e-9ffb-2b2697965e36\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.13422393798828,\n      \"Text\": \"information,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056212276220321655,\n          \"Height\": 0.008251509629189968,\n          \"Left\": 0.572248101234436,\n          \"Top\": 0.11894214153289795\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.572248101234436,\n            \"Y\": 0.11894214153289795\n          },\n          {\n            \"X\": 0.6284569501876831,\n            \"Y\": 0.11897464841604233\n          },\n          {\n            \"X\": 0.6284603476524353,\n            \"Y\": 0.1271936595439911\n          },\n          {\n            \"X\": 0.5722512602806091,\n            \"Y\": 0.1271609216928482\n          }\n        ]\n      },\n      \"Id\": \"3d574c07-701b-44de-9ed4-fe3b815041f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85597229003906,\n      \"Text\": \"but\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015993688255548477,\n          \"Height\": 0.006688474677503109,\n          \"Left\": 0.6328946948051453,\n          \"Top\": 0.11953835189342499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6328946948051453,\n            \"Y\": 0.11953835189342499\n          },\n          {\n            \"X\": 0.6488855481147766,\n            \"Y\": 0.11954760551452637\n          },\n          {\n            \"X\": 0.6488884091377258,\n            \"Y\": 0.12622682750225067\n          },\n          {\n            \"X\": 0.6328974962234497,\n            \"Y\": 0.1262175291776657\n          }\n        ]\n      },\n      \"Id\": \"cc090e6d-e00d-4c89-88e7-782e4f736888\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87632751464844,\n      \"Text\": \"if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0066028013825416565,\n          \"Height\": 0.007045322563499212,\n          \"Left\": 0.6519143581390381,\n          \"Top\": 0.11916264146566391\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6519143581390381,\n            \"Y\": 0.11916264146566391\n          },\n          {\n            \"X\": 0.658514142036438,\n            \"Y\": 0.11916645616292953\n          },\n          {\n            \"X\": 0.6585171818733215,\n            \"Y\": 0.12620796263217926\n          },\n          {\n            \"X\": 0.6519173979759216,\n            \"Y\": 0.12620411813259125\n          }\n        ]\n      },\n      \"Id\": \"a5a148e0-99d0-44ce-a26c-ff96e22abaca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42639923095703,\n      \"Text\": \"you\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01728685572743416,\n          \"Height\": 0.006520925555378199,\n          \"Left\": 0.6616078615188599,\n          \"Top\": 0.12107744067907333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6616078615188599,\n            \"Y\": 0.12107744067907333\n          },\n          {\n            \"X\": 0.6788918375968933,\n            \"Y\": 0.1210874542593956\n          },\n          {\n            \"X\": 0.6788946986198425,\n            \"Y\": 0.127598375082016\n          },\n          {\n            \"X\": 0.6616106629371643,\n            \"Y\": 0.12758830189704895\n          }\n        ]\n      },\n      \"Id\": \"d29783b4-687f-4008-850d-58623e813f6f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7808837890625,\n      \"Text\": \"do\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012241274118423462,\n          \"Height\": 0.006705311127007008,\n          \"Left\": 0.6827881932258606,\n          \"Top\": 0.11980335414409637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6827881932258606,\n            \"Y\": 0.11980335414409637\n          },\n          {\n            \"X\": 0.6950264573097229,\n            \"Y\": 0.11981043964624405\n          },\n          {\n            \"X\": 0.6950294971466064,\n            \"Y\": 0.1265086680650711\n          },\n          {\n            \"X\": 0.6827911734580994,\n            \"Y\": 0.12650154531002045\n          }\n        ]\n      },\n      \"Id\": \"8eed8f5e-9dd1-40eb-b29e-4596e860e408\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96034240722656,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015934064984321594,\n          \"Height\": 0.006225853692740202,\n          \"Left\": 0.6985896229743958,\n          \"Top\": 0.12024277448654175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6985896229743958,\n            \"Y\": 0.12024277448654175\n          },\n          {\n            \"X\": 0.7145208120346069,\n            \"Y\": 0.12025199830532074\n          },\n          {\n            \"X\": 0.7145236730575562,\n            \"Y\": 0.12646862864494324\n          },\n          {\n            \"X\": 0.6985924243927002,\n            \"Y\": 0.12645936012268066\n          }\n        ]\n      },\n      \"Id\": \"5f1b2901-b736-4e15-8a70-48da8db719f9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79499816894531,\n      \"Text\": \"your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021263711154460907,\n          \"Height\": 0.006681446917355061,\n          \"Left\": 0.7175806164741516,\n          \"Top\": 0.12111916393041611\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7175806164741516,\n            \"Y\": 0.12111916393041611\n          },\n          {\n            \"X\": 0.73884117603302,\n            \"Y\": 0.12113147974014282\n          },\n          {\n            \"X\": 0.7388443350791931,\n            \"Y\": 0.1278006136417389\n          },\n          {\n            \"X\": 0.7175837159156799,\n            \"Y\": 0.1277882307767868\n          }\n        ]\n      },\n      \"Id\": \"719bdc06-a6cf-4bba-badd-3d77d9143c6a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92195892333984,\n      \"Text\": \"application\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05045131966471672,\n          \"Height\": 0.008279173634946346,\n          \"Left\": 0.7420642971992493,\n          \"Top\": 0.11968497931957245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7420642971992493,\n            \"Y\": 0.11968497931957245\n          },\n          {\n            \"X\": 0.7925114631652832,\n            \"Y\": 0.1197141706943512\n          },\n          {\n            \"X\": 0.7925155758857727,\n            \"Y\": 0.12796415388584137\n          },\n          {\n            \"X\": 0.7420681715011597,\n            \"Y\": 0.1279347687959671\n          }\n        ]\n      },\n      \"Id\": \"7c0a903d-7c77-4344-8411-b3c55164e66a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95555114746094,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013659680262207985,\n          \"Height\": 0.00692712189629674,\n          \"Left\": 0.7959773540496826,\n          \"Top\": 0.11984463036060333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7959773540496826,\n            \"Y\": 0.11984463036060333\n          },\n          {\n            \"X\": 0.8096334934234619,\n            \"Y\": 0.11985253542661667\n          },\n          {\n            \"X\": 0.8096370100975037,\n            \"Y\": 0.1267717480659485\n          },\n          {\n            \"X\": 0.7959808111190796,\n            \"Y\": 0.12676380574703217\n          }\n        ]\n      },\n      \"Id\": \"69fea9e8-2667-4a01-85d1-563d1e555d53\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9100570678711,\n      \"Text\": \"approval\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03979762643575668,\n          \"Height\": 0.008039666339755058,\n          \"Left\": 0.8128429651260376,\n          \"Top\": 0.12008760124444962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8128429651260376,\n            \"Y\": 0.12008760124444962\n          },\n          {\n            \"X\": 0.8526363372802734,\n            \"Y\": 0.12011063098907471\n          },\n          {\n            \"X\": 0.8526405692100525,\n            \"Y\": 0.12812726199626923\n          },\n          {\n            \"X\": 0.8128470778465271,\n            \"Y\": 0.1281040757894516\n          }\n        ]\n      },\n      \"Id\": \"cab80902-0caf-4791-ae21-1d09e33ae011\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88472747802734,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010577836073935032,\n          \"Height\": 0.005469147581607103,\n          \"Left\": 0.8561897277832031,\n          \"Top\": 0.12135417759418488\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8561897277832031,\n            \"Y\": 0.12135417759418488\n          },\n          {\n            \"X\": 0.8667646050453186,\n            \"Y\": 0.12136030942201614\n          },\n          {\n            \"X\": 0.8667675256729126,\n            \"Y\": 0.1268233358860016\n          },\n          {\n            \"X\": 0.8561926484107971,\n            \"Y\": 0.12681716680526733\n          }\n        ]\n      },\n      \"Id\": \"d9a508c4-0758-49f2-a4d7-b2446f9e16ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78688049316406,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005921686999499798,\n          \"Height\": 0.005404897034168243,\n          \"Left\": 0.8700218796730042,\n          \"Top\": 0.1214713305234909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8700218796730042,\n            \"Y\": 0.1214713305234909\n          },\n          {\n            \"X\": 0.8759406208992004,\n            \"Y\": 0.12147475779056549\n          },\n          {\n            \"X\": 0.8759435415267944,\n            \"Y\": 0.12687622010707855\n          },\n          {\n            \"X\": 0.8700248003005981,\n            \"Y\": 0.12687277793884277\n          }\n        ]\n      },\n      \"Id\": \"2f51e71d-82c2-4bf2-ac78-6fbaf85c9814\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.40982818603516,\n      \"Text\": \"prospec-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039992038160562515,\n          \"Height\": 0.006953181698918343,\n          \"Left\": 0.8795945048332214,\n          \"Top\": 0.1213182583451271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8795945048332214,\n            \"Y\": 0.1213182583451271\n          },\n          {\n            \"X\": 0.9195826053619385,\n            \"Y\": 0.12134142220020294\n          },\n          {\n            \"X\": 0.9195865392684937,\n            \"Y\": 0.1282714456319809\n          },\n          {\n            \"X\": 0.8795982599258423,\n            \"Y\": 0.12824814021587372\n          }\n        ]\n      },\n      \"Id\": \"48172631-c057-4c9f-bc83-7f3c5e3a64ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.841064453125,\n      \"Text\": \"tive\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01663142256438732,\n          \"Height\": 0.006588135380297899,\n          \"Left\": 0.046784158796072006,\n          \"Top\": 0.13033117353916168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046784158796072006,\n            \"Y\": 0.13033117353916168\n          },\n          {\n            \"X\": 0.06341476738452911,\n            \"Y\": 0.13034087419509888\n          },\n          {\n            \"X\": 0.06341558694839478,\n            \"Y\": 0.136919304728508\n          },\n          {\n            \"X\": 0.04678491875529289,\n            \"Y\": 0.13690954446792603\n          }\n        ]\n      },\n      \"Id\": \"17456737-9f46-48df-ac27-8c5b3efa5d1c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.06147766113281,\n      \"Text\": \"mortgagor\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048382438719272614,\n          \"Height\": 0.007519777398556471,\n          \"Left\": 0.06698638945817947,\n          \"Top\": 0.1307757943868637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06698638945817947,\n            \"Y\": 0.1307757943868637\n          },\n          {\n            \"X\": 0.11536770313978195,\n            \"Y\": 0.13080404698848724\n          },\n          {\n            \"X\": 0.11536882817745209,\n            \"Y\": 0.13829557597637177\n          },\n          {\n            \"X\": 0.06698733568191528,\n            \"Y\": 0.1382671296596527\n          }\n        ]\n      },\n      \"Id\": \"bb27e4af-4688-4eb7-8a62-527d9c2e46b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82349395751953,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009668506681919098,\n          \"Height\": 0.005362557712942362,\n          \"Left\": 0.11869149655103683,\n          \"Top\": 0.1312076896429062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11869149655103683,\n            \"Y\": 0.1312076896429062\n          },\n          {\n            \"X\": 0.12835915386676788,\n            \"Y\": 0.13121335208415985\n          },\n          {\n            \"X\": 0.12836000323295593,\n            \"Y\": 0.1365702599287033\n          },\n          {\n            \"X\": 0.1186923086643219,\n            \"Y\": 0.13656458258628845\n          }\n        ]\n      },\n      \"Id\": \"4c8cbcb5-56a9-44fc-91b6-e6159ad08464\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87462615966797,\n      \"Text\": \"borrower\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041855163872241974,\n          \"Height\": 0.006832939572632313,\n          \"Left\": 0.13212062418460846,\n          \"Top\": 0.1296105980873108\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13212062418460846,\n            \"Y\": 0.1296105980873108\n          },\n          {\n            \"X\": 0.17397454380989075,\n            \"Y\": 0.1296350210905075\n          },\n          {\n            \"X\": 0.17397578060626984,\n            \"Y\": 0.13644354045391083\n          },\n          {\n            \"X\": 0.1321217119693756,\n            \"Y\": 0.13641898334026337\n          }\n        ]\n      },\n      \"Id\": \"0dca21ce-e7ef-4404-8860-fddb970cc472\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95472717285156,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020234407857060432,\n          \"Height\": 0.006654759868979454,\n          \"Left\": 0.17735053598880768,\n          \"Top\": 0.13094761967658997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17735053598880768,\n            \"Y\": 0.13094761967658997\n          },\n          {\n            \"X\": 0.1975836604833603,\n            \"Y\": 0.1309594362974167\n          },\n          {\n            \"X\": 0.19758494198322296,\n            \"Y\": 0.13760237395763397\n          },\n          {\n            \"X\": 0.17735174298286438,\n            \"Y\": 0.13759049773216248\n          }\n        ]\n      },\n      \"Id\": \"b57bef99-f4b8-4da4-adad-570fd3ad527f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89326477050781,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011819095350801945,\n          \"Height\": 0.006704603787511587,\n          \"Left\": 0.20074351131916046,\n          \"Top\": 0.1295965611934662\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20074351131916046,\n            \"Y\": 0.1295965611934662\n          },\n          {\n            \"X\": 0.21256126463413239,\n            \"Y\": 0.12960346043109894\n          },\n          {\n            \"X\": 0.21256260573863983,\n            \"Y\": 0.1363011747598648\n          },\n          {\n            \"X\": 0.20074482262134552,\n            \"Y\": 0.13629423081874847\n          }\n        ]\n      },\n      \"Id\": \"9ed204e8-f7b7-44f1-bf58-4c7a8dc1eb5b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.935546875,\n      \"Text\": \"delayed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03529536351561546,\n          \"Height\": 0.007903442718088627,\n          \"Left\": 0.21626123785972595,\n          \"Top\": 0.12946806848049164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21626123785972595,\n            \"Y\": 0.12946806848049164\n          },\n          {\n            \"X\": 0.25155484676361084,\n            \"Y\": 0.12948866188526154\n          },\n          {\n            \"X\": 0.2515566051006317,\n            \"Y\": 0.1373715102672577\n          },\n          {\n            \"X\": 0.2162628322839737,\n            \"Y\": 0.13735078275203705\n          }\n        ]\n      },\n      \"Id\": \"b91b5506-4f2b-424c-8826-8107919d488a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83406829833984,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010030997917056084,\n          \"Height\": 0.005243388004601002,\n          \"Left\": 0.2551841735839844,\n          \"Top\": 0.13078829646110535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2551841735839844,\n            \"Y\": 0.13078829646110535\n          },\n          {\n            \"X\": 0.2652139663696289,\n            \"Y\": 0.13079415261745453\n          },\n          {\n            \"X\": 0.2652151584625244,\n            \"Y\": 0.13603168725967407\n          },\n          {\n            \"X\": 0.2551853358745575,\n            \"Y\": 0.1360258013010025\n          }\n        ]\n      },\n      \"Id\": \"e7e16177-1aa1-4011-8c0d-ff40ea98bf00\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.77809143066406,\n      \"Text\": \"rejected.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03974594920873642,\n          \"Height\": 0.008050558157265186,\n          \"Left\": 0.26863184571266174,\n          \"Top\": 0.12933620810508728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26863184571266174,\n            \"Y\": 0.12933620810508728\n          },\n          {\n            \"X\": 0.3083757758140564,\n            \"Y\": 0.1293593943119049\n          },\n          {\n            \"X\": 0.30837780237197876,\n            \"Y\": 0.1373867690563202\n          },\n          {\n            \"X\": 0.2686336934566498,\n            \"Y\": 0.13736341893672943\n          }\n        ]\n      },\n      \"Id\": \"f9358612-2f9a-4ad9-a7a3-57e3c5c176d4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97392272949219,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01802602782845497,\n          \"Height\": 0.006824600510299206,\n          \"Left\": 0.31252357363700867,\n          \"Top\": 0.12911155819892883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31252357363700867,\n            \"Y\": 0.12911155819892883\n          },\n          {\n            \"X\": 0.3305478096008301,\n            \"Y\": 0.1291220635175705\n          },\n          {\n            \"X\": 0.33054959774017334,\n            \"Y\": 0.13593615591526031\n          },\n          {\n            \"X\": 0.31252530217170715,\n            \"Y\": 0.13592559099197388\n          }\n        ]\n      },\n      \"Id\": \"f94717fa-d9ae-4726-8b56-40ff1e9b8203\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65715789794922,\n      \"Text\": \"information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05335018038749695,\n          \"Height\": 0.007055495399981737,\n          \"Left\": 0.3339691758155823,\n          \"Top\": 0.12891294062137604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3339691758155823,\n            \"Y\": 0.12891294062137604\n          },\n          {\n            \"X\": 0.3873172998428345,\n            \"Y\": 0.1289440393447876\n          },\n          {\n            \"X\": 0.3873193562030792,\n            \"Y\": 0.1359684318304062\n          },\n          {\n            \"X\": 0.3339710235595703,\n            \"Y\": 0.1359371393918991\n          }\n        ]\n      },\n      \"Id\": \"f090c19a-d718-46dd-9c8f-5250bc85bf82\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94088745117188,\n      \"Text\": \"requested\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045471008867025375,\n          \"Height\": 0.0079013891518116,\n          \"Left\": 0.3910740911960602,\n          \"Top\": 0.12907157838344574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3910740911960602,\n            \"Y\": 0.12907157838344574\n          },\n          {\n            \"X\": 0.4365426301956177,\n            \"Y\": 0.1290980875492096\n          },\n          {\n            \"X\": 0.43654510378837585,\n            \"Y\": 0.13697296380996704\n          },\n          {\n            \"X\": 0.3910764157772064,\n            \"Y\": 0.13694627583026886\n          }\n        ]\n      },\n      \"Id\": \"0ea9f007-34e5-4d63-8e2d-2d3f35e866a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88836669921875,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00839251559227705,\n          \"Height\": 0.006792150437831879,\n          \"Left\": 0.4402458965778351,\n          \"Top\": 0.12904344499111176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4402458965778351,\n            \"Y\": 0.12904344499111176\n          },\n          {\n            \"X\": 0.4486362338066101,\n            \"Y\": 0.12904834747314453\n          },\n          {\n            \"X\": 0.4486384391784668,\n            \"Y\": 0.13583560287952423\n          },\n          {\n            \"X\": 0.4402480721473694,\n            \"Y\": 0.13583068549633026\n          }\n        ]\n      },\n      \"Id\": \"4c0a7d5e-a5fe-4146-a707-b256b93c2b8d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95214080810547,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016859928146004677,\n          \"Height\": 0.006847026292234659,\n          \"Left\": 0.45260995626449585,\n          \"Top\": 0.12896598875522614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45260995626449585,\n            \"Y\": 0.12896598875522614\n          },\n          {\n            \"X\": 0.4694676101207733,\n            \"Y\": 0.12897582352161407\n          },\n          {\n            \"X\": 0.46946990489959717,\n            \"Y\": 0.13581301271915436\n          },\n          {\n            \"X\": 0.4526121914386749,\n            \"Y\": 0.13580313324928284\n          }\n        ]\n      },\n      \"Id\": \"6cf9aa2b-dc99-402d-8cba-a5297664f56c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94608306884766,\n      \"Text\": \"form\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02205459214746952,\n          \"Height\": 0.007049405016005039,\n          \"Left\": 0.4729238450527191,\n          \"Top\": 0.1287040412425995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4729238450527191,\n            \"Y\": 0.1287040412425995\n          },\n          {\n            \"X\": 0.4949759840965271,\n            \"Y\": 0.12871690094470978\n          },\n          {\n            \"X\": 0.4949784278869629,\n            \"Y\": 0.13575345277786255\n          },\n          {\n            \"X\": 0.47292619943618774,\n            \"Y\": 0.1357405185699463\n          }\n        ]\n      },\n      \"Id\": \"a4f8dd60-d73c-4001-80ed-f864a157a3d9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93350219726562,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00789994839578867,\n          \"Height\": 0.0069378144107759,\n          \"Left\": 0.49829787015914917,\n          \"Top\": 0.12872475385665894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49829787015914917,\n            \"Y\": 0.12872475385665894\n          },\n          {\n            \"X\": 0.5061953663825989,\n            \"Y\": 0.12872935831546783\n          },\n          {\n            \"X\": 0.5061978101730347,\n            \"Y\": 0.13566257059574127\n          },\n          {\n            \"X\": 0.4983002841472626,\n            \"Y\": 0.13565793633460999\n          }\n        ]\n      },\n      \"Id\": \"ce9b365b-bc81-4d50-9fe3-c03619911402\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95413208007812,\n      \"Text\": \"authorized\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049062732607126236,\n          \"Height\": 0.006932233925908804,\n          \"Left\": 0.5092624425888062,\n          \"Top\": 0.12878775596618652\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5092624425888062,\n            \"Y\": 0.12878775596618652\n          },\n          {\n            \"X\": 0.558322548866272,\n            \"Y\": 0.1288163661956787\n          },\n          {\n            \"X\": 0.5583251714706421,\n            \"Y\": 0.13571999967098236\n          },\n          {\n            \"X\": 0.5092648863792419,\n            \"Y\": 0.13569122552871704\n          }\n        ]\n      },\n      \"Id\": \"c4420b16-8f21-40c8-ae2a-00b653075e6f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93304443359375,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011788928881287575,\n          \"Height\": 0.008286140859127045,\n          \"Left\": 0.5617724061012268,\n          \"Top\": 0.12870602309703827\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5617724061012268,\n            \"Y\": 0.12870602309703827\n          },\n          {\n            \"X\": 0.5735581517219543,\n            \"Y\": 0.12871289253234863\n          },\n          {\n            \"X\": 0.5735613703727722,\n            \"Y\": 0.13699215650558472\n          },\n          {\n            \"X\": 0.5617755651473999,\n            \"Y\": 0.13698524236679077\n          }\n        ]\n      },\n      \"Id\": \"009f7638-314b-4b12-ad6b-c92a2466d8cb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71942138671875,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02076234482228756,\n          \"Height\": 0.00708271749317646,\n          \"Left\": 0.576653242111206,\n          \"Top\": 0.12870408594608307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576653242111206,\n            \"Y\": 0.12870408594608307\n          },\n          {\n            \"X\": 0.5974127650260925,\n            \"Y\": 0.12871618568897247\n          },\n          {\n            \"X\": 0.5974156260490417,\n            \"Y\": 0.13578680157661438\n          },\n          {\n            \"X\": 0.5766560435295105,\n            \"Y\": 0.135774627327919\n          }\n        ]\n      },\n      \"Id\": \"9e864a21-4cd9-4ba8-b5d2-315b7f8f7895\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.22603607177734,\n      \"Text\": \"38,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014113200828433037,\n          \"Height\": 0.008441460318863392,\n          \"Left\": 0.6002875566482544,\n          \"Top\": 0.12838050723075867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6002875566482544,\n            \"Y\": 0.12838050723075867\n          },\n          {\n            \"X\": 0.6143973469734192,\n            \"Y\": 0.12838873267173767\n          },\n          {\n            \"X\": 0.6144008040428162,\n            \"Y\": 0.13682197034358978\n          },\n          {\n            \"X\": 0.6002909541130066,\n            \"Y\": 0.1368137001991272\n          }\n        ]\n      },\n      \"Id\": \"560e27ea-afc6-4546-ba3d-ebdcf94093be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.44511413574219,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024760916829109192,\n          \"Height\": 0.007956419140100479,\n          \"Left\": 0.6190478205680847,\n          \"Top\": 0.1287308633327484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6190478205680847,\n            \"Y\": 0.1287308633327484\n          },\n          {\n            \"X\": 0.6438053846359253,\n            \"Y\": 0.12874528765678406\n          },\n          {\n            \"X\": 0.6438087821006775,\n            \"Y\": 0.1366872787475586\n          },\n          {\n            \"X\": 0.6190510988235474,\n            \"Y\": 0.1366727501153946\n          }\n        ]\n      },\n      \"Id\": \"c8df0d8e-cbf6-4a08-9538-ef888036fa3f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.766845703125,\n      \"Text\": \"Chapter\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036713145673274994,\n          \"Height\": 0.0083303302526474,\n          \"Left\": 0.6483374238014221,\n          \"Top\": 0.12881480157375336\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6483374238014221,\n            \"Y\": 0.12881480157375336\n          },\n          {\n            \"X\": 0.6850468516349792,\n            \"Y\": 0.12883619964122772\n          },\n          {\n            \"X\": 0.6850505471229553,\n            \"Y\": 0.13714513182640076\n          },\n          {\n            \"X\": 0.6483409404754639,\n            \"Y\": 0.13712358474731445\n          }\n        ]\n      },\n      \"Id\": \"6a1d4fc3-bb8b-4c1f-a641-f69d06f52526\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85213470458984,\n      \"Text\": \"37\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011179839260876179,\n          \"Height\": 0.007040098775178194,\n          \"Left\": 0.6883756518363953,\n          \"Top\": 0.1288623809814453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6883756518363953,\n            \"Y\": 0.1288623809814453\n          },\n          {\n            \"X\": 0.6995522975921631,\n            \"Y\": 0.12886889278888702\n          },\n          {\n            \"X\": 0.699555516242981,\n            \"Y\": 0.13590247929096222\n          },\n          {\n            \"X\": 0.6883788108825684,\n            \"Y\": 0.13589592278003693\n          }\n        ]\n      },\n      \"Id\": \"6b37ca6f-05d4-4287-8ac6-d7e8b24abacb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26799011230469,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009855867363512516,\n          \"Height\": 0.008033078163862228,\n          \"Left\": 0.7035390138626099,\n          \"Top\": 0.12873083353042603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7035390138626099,\n            \"Y\": 0.12873083353042603\n          },\n          {\n            \"X\": 0.7133911848068237,\n            \"Y\": 0.12873657047748566\n          },\n          {\n            \"X\": 0.7133948802947998,\n            \"Y\": 0.13676391541957855\n          },\n          {\n            \"X\": 0.7035426497459412,\n            \"Y\": 0.13675813376903534\n          }\n        ]\n      },\n      \"Id\": \"6a6d2f79-1753-4cca-a5b6-ae1d3caa80f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.92498016357422,\n      \"Text\": \"VA);\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021390091627836227,\n          \"Height\": 0.007975254207849503,\n          \"Left\": 0.7165392637252808,\n          \"Top\": 0.129012793302536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7165392637252808,\n            \"Y\": 0.129012793302536\n          },\n          {\n            \"X\": 0.7379255890846252,\n            \"Y\": 0.12902525067329407\n          },\n          {\n            \"X\": 0.7379293441772461,\n            \"Y\": 0.13698804378509521\n          },\n          {\n            \"X\": 0.7165428996086121,\n            \"Y\": 0.1369754821062088\n          }\n        ]\n      },\n      \"Id\": \"7d3d6f2b-0f44-4e77-96f4-16b853710481\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93119049072266,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011721738614141941,\n          \"Height\": 0.008119778707623482,\n          \"Left\": 0.7421135902404785,\n          \"Top\": 0.12912753224372864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7421135902404785,\n            \"Y\": 0.12912753224372864\n          },\n          {\n            \"X\": 0.7538314461708069,\n            \"Y\": 0.1291343718767166\n          },\n          {\n            \"X\": 0.7538353204727173,\n            \"Y\": 0.13724730908870697\n          },\n          {\n            \"X\": 0.7421174645423889,\n            \"Y\": 0.1372404396533966\n          }\n        ]\n      },\n      \"Id\": \"95f28888-aa38-4723-b98d-b20c6d4f4feb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65692138671875,\n      \"Text\": \"12\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010432030074298382,\n          \"Height\": 0.00682472251355648,\n          \"Left\": 0.7580474019050598,\n          \"Top\": 0.12920665740966797\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7580474019050598,\n            \"Y\": 0.12920665740966797\n          },\n          {\n            \"X\": 0.7684760689735413,\n            \"Y\": 0.12921273708343506\n          },\n          {\n            \"X\": 0.7684794068336487,\n            \"Y\": 0.136031374335289\n          },\n          {\n            \"X\": 0.7580506801605225,\n            \"Y\": 0.13602526485919952\n          }\n        ]\n      },\n      \"Id\": \"9eb91b62-7b67-47d9-b9f0-4e554c1d0051\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.25298309326172,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024477660655975342,\n          \"Height\": 0.007934747263789177,\n          \"Left\": 0.7722302675247192,\n          \"Top\": 0.12922623753547668\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7722302675247192,\n            \"Y\": 0.12922623753547668\n          },\n          {\n            \"X\": 0.7967039346694946,\n            \"Y\": 0.1292405128479004\n          },\n          {\n            \"X\": 0.7967079281806946,\n            \"Y\": 0.137160986661911\n          },\n          {\n            \"X\": 0.7722341418266296,\n            \"Y\": 0.13714662194252014\n          }\n        ]\n      },\n      \"Id\": \"055fc5f8-4b4b-42cc-9f79-9d5d99cde557\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95604705810547,\n      \"Text\": \"Section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03529583290219307,\n          \"Height\": 0.007191840093582869,\n          \"Left\": 0.8012652397155762,\n          \"Top\": 0.12923014163970947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8012652397155762,\n            \"Y\": 0.12923014163970947\n          },\n          {\n            \"X\": 0.8365572690963745,\n            \"Y\": 0.12925072014331818\n          },\n          {\n            \"X\": 0.8365610241889954,\n            \"Y\": 0.13642197847366333\n          },\n          {\n            \"X\": 0.8012688159942627,\n            \"Y\": 0.13640128076076508\n          }\n        ]\n      },\n      \"Id\": \"f05d7ffe-995d-44ac-b5e0-2f608393322f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92084503173828,\n      \"Text\": \"1701\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020533427596092224,\n          \"Height\": 0.006948500405997038,\n          \"Left\": 0.8406449556350708,\n          \"Top\": 0.12943364679813385\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8406449556350708,\n            \"Y\": 0.12943364679813385\n          },\n          {\n            \"X\": 0.8611746430397034,\n            \"Y\": 0.1294456124305725\n          },\n          {\n            \"X\": 0.8611783981323242,\n            \"Y\": 0.13638214766979218\n          },\n          {\n            \"X\": 0.8406485915184021,\n            \"Y\": 0.13637010753154755\n          }\n        ]\n      },\n      \"Id\": \"54088600-8abe-4a1d-a846-a0af886a5064\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.64192962646484,\n      \"Text\": \"et.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012342896312475204,\n          \"Height\": 0.006208283361047506,\n          \"Left\": 0.8652830719947815,\n          \"Top\": 0.1303042620420456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8652830719947815,\n            \"Y\": 0.1303042620420456\n          },\n          {\n            \"X\": 0.8776225447654724,\n            \"Y\": 0.13031147420406342\n          },\n          {\n            \"X\": 0.8776259422302246,\n            \"Y\": 0.13651254773139954\n          },\n          {\n            \"X\": 0.8652864098548889,\n            \"Y\": 0.13650530576705933\n          }\n        ]\n      },\n      \"Id\": \"17b5b0e8-5872-4779-9bf1-8dd9dd92517d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.2010498046875,\n      \"Text\": \"seq.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018968360498547554,\n          \"Height\": 0.006483250297605991,\n          \"Left\": 0.8817206025123596,\n          \"Top\": 0.13097752630710602\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8817206025123596,\n            \"Y\": 0.13097752630710602\n          },\n          {\n            \"X\": 0.9006853699684143,\n            \"Y\": 0.13098861277103424\n          },\n          {\n            \"X\": 0.9006890058517456,\n            \"Y\": 0.13746078312397003\n          },\n          {\n            \"X\": 0.8817241787910461,\n            \"Y\": 0.13744965195655823\n          }\n        ]\n      },\n      \"Id\": \"75846e54-9335-4e67-a02e-a8b9d295210c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45011138916016,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009703339077532291,\n          \"Height\": 0.007516186218708754,\n          \"Left\": 0.9054180383682251,\n          \"Top\": 0.1294460892677307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054180383682251,\n            \"Y\": 0.1294460892677307\n          },\n          {\n            \"X\": 0.9151171445846558,\n            \"Y\": 0.12945175170898438\n          },\n          {\n            \"X\": 0.9151213765144348,\n            \"Y\": 0.13696227967739105\n          },\n          {\n            \"X\": 0.9054222702980042,\n            \"Y\": 0.136956587433815\n          }\n        ]\n      },\n      \"Id\": \"8969e2e4-7e00-4415-80d6-029e27e47267\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 80.97734832763672,\n      \"Text\": \"HUD/FHA);\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05519239977002144,\n          \"Height\": 0.00791591964662075,\n          \"Left\": 0.04725771024823189,\n          \"Top\": 0.13937491178512573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04725771024823189,\n            \"Y\": 0.13937491178512573\n          },\n          {\n            \"X\": 0.1024489775300026,\n            \"Y\": 0.13940738141536713\n          },\n          {\n            \"X\": 0.10245011001825333,\n            \"Y\": 0.14729082584381104\n          },\n          {\n            \"X\": 0.04725861921906471,\n            \"Y\": 0.14725814759731293\n          }\n        ]\n      },\n      \"Id\": \"55ac7681-d223-4015-8ee6-def4133941e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9441909790039,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011652913875877857,\n          \"Height\": 0.007902976125478745,\n          \"Left\": 0.10666966438293457,\n          \"Top\": 0.13940775394439697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10666966438293457,\n            \"Y\": 0.13940775394439697\n          },\n          {\n            \"X\": 0.11832138150930405,\n            \"Y\": 0.13941460847854614\n          },\n          {\n            \"X\": 0.11832258105278015,\n            \"Y\": 0.14731071889400482\n          },\n          {\n            \"X\": 0.1066708192229271,\n            \"Y\": 0.14730381965637207\n          }\n        ]\n      },\n      \"Id\": \"dfb8df6b-8af8-4bb4-9000-34014f2e919d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80274200439453,\n      \"Text\": \"42\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011649997904896736,\n          \"Height\": 0.006917834281921387,\n          \"Left\": 0.1214756965637207,\n          \"Top\": 0.13916777074337006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1214756965637207,\n            \"Y\": 0.13916777074337006\n          },\n          {\n            \"X\": 0.13312458992004395,\n            \"Y\": 0.13917462527751923\n          },\n          {\n            \"X\": 0.1331256926059723,\n            \"Y\": 0.14608560502529144\n          },\n          {\n            \"X\": 0.12147676199674606,\n            \"Y\": 0.1460787057876587\n          }\n        ]\n      },\n      \"Id\": \"a606b563-9929-4317-bf28-50964692b134\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.83610534667969,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02455586940050125,\n          \"Height\": 0.007765011861920357,\n          \"Left\": 0.1366877555847168,\n          \"Top\": 0.13904115557670593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1366877555847168,\n            \"Y\": 0.13904115557670593\n          },\n          {\n            \"X\": 0.16124227643013,\n            \"Y\": 0.13905559480190277\n          },\n          {\n            \"X\": 0.16124363243579865,\n            \"Y\": 0.14680616557598114\n          },\n          {\n            \"X\": 0.13668900728225708,\n            \"Y\": 0.14679163694381714\n          }\n        ]\n      },\n      \"Id\": \"9d55dfd0-7614-426f-aa89-458d34939d4b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93333435058594,\n      \"Text\": \"Section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035613320767879486,\n          \"Height\": 0.007101704832166433,\n          \"Left\": 0.1654650866985321,\n          \"Top\": 0.13896293938159943\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1654650866985321,\n            \"Y\": 0.13896293938159943\n          },\n          {\n            \"X\": 0.20107702910900116,\n            \"Y\": 0.13898389041423798\n          },\n          {\n            \"X\": 0.2010784149169922,\n            \"Y\": 0.1460646539926529\n          },\n          {\n            \"X\": 0.1654663383960724,\n            \"Y\": 0.1460435837507248\n          }\n        ]\n      },\n      \"Id\": \"5b709945-0396-42d1-8e79-857906423027\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89865112304688,\n      \"Text\": \"1452b\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027385558933019638,\n          \"Height\": 0.007004589308053255,\n          \"Left\": 0.2048186957836151,\n          \"Top\": 0.13884784281253815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2048186957836151,\n            \"Y\": 0.13884784281253815\n          },\n          {\n            \"X\": 0.23220278322696686,\n            \"Y\": 0.1388639509677887\n          },\n          {\n            \"X\": 0.23220425844192505,\n            \"Y\": 0.14585243165493011\n          },\n          {\n            \"X\": 0.20482008159160614,\n            \"Y\": 0.1458362340927124\n          }\n        ]\n      },\n      \"Id\": \"f18a8a10-1c79-4be2-99e2-e54e29cf0c6c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65513610839844,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009579742327332497,\n          \"Height\": 0.00783851370215416,\n          \"Left\": 0.2360030710697174,\n          \"Top\": 0.13855291903018951\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2360030710697174,\n            \"Y\": 0.13855291903018951\n          },\n          {\n            \"X\": 0.24558110535144806,\n            \"Y\": 0.1385585516691208\n          },\n          {\n            \"X\": 0.24558280408382416,\n            \"Y\": 0.14639143645763397\n          },\n          {\n            \"X\": 0.23600473999977112,\n            \"Y\": 0.1463857740163803\n          }\n        ]\n      },\n      \"Id\": \"3ebb865a-5af6-4eb5-af4f-3317495474d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.52862548828125,\n      \"Text\": \"HUD/CPD);\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05631027743220329,\n          \"Height\": 0.008048782125115395,\n          \"Left\": 0.2490871250629425,\n          \"Top\": 0.13853494822978973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2490871250629425,\n            \"Y\": 0.13853494822978973\n          },\n          {\n            \"X\": 0.3053953945636749,\n            \"Y\": 0.13856804370880127\n          },\n          {\n            \"X\": 0.3053973913192749,\n            \"Y\": 0.14658373594284058\n          },\n          {\n            \"X\": 0.24908888339996338,\n            \"Y\": 0.14655040204524994\n          }\n        ]\n      },\n      \"Id\": \"c24f76a8-6634-4bac-a599-01234d41e5dc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96819305419922,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01758717931807041,\n          \"Height\": 0.006827781908214092,\n          \"Left\": 0.30931758880615234,\n          \"Top\": 0.13879086077213287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30931758880615234,\n            \"Y\": 0.13879086077213287\n          },\n          {\n            \"X\": 0.32690298557281494,\n            \"Y\": 0.1388012021780014\n          },\n          {\n            \"X\": 0.3269047737121582,\n            \"Y\": 0.14561864733695984\n          },\n          {\n            \"X\": 0.30931931734085083,\n            \"Y\": 0.14560824632644653\n          }\n        ]\n      },\n      \"Id\": \"63807af5-6e44-48e5-beb0-e249b9811d69\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89958190917969,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020776335150003433,\n          \"Height\": 0.006999939680099487,\n          \"Left\": 0.3301086723804474,\n          \"Top\": 0.13863049447536469\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3301086723804474,\n            \"Y\": 0.13863049447536469\n          },\n          {\n            \"X\": 0.3508830964565277,\n            \"Y\": 0.13864271342754364\n          },\n          {\n            \"X\": 0.3508850038051605,\n            \"Y\": 0.14563043415546417\n          },\n          {\n            \"X\": 0.33011049032211304,\n            \"Y\": 0.14561815559864044\n          }\n        ]\n      },\n      \"Id\": \"1d444392-0757-4d55-ba98-13f73a26aeec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76416778564453,\n      \"Text\": \"42\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011826438829302788,\n          \"Height\": 0.007002005819231272,\n          \"Left\": 0.35394954681396484,\n          \"Top\": 0.13857321441173553\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35394954681396484,\n            \"Y\": 0.13857321441173553\n          },\n          {\n            \"X\": 0.3657740354537964,\n            \"Y\": 0.13858017325401306\n          },\n          {\n            \"X\": 0.365776002407074,\n            \"Y\": 0.14557522535324097\n          },\n          {\n            \"X\": 0.35395148396492004,\n            \"Y\": 0.14556823670864105\n          }\n        ]\n      },\n      \"Id\": \"7d05fc13-07dc-452c-aff5-69cd9c481abe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.49552917480469,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02435583807528019,\n          \"Height\": 0.0077112456783652306,\n          \"Left\": 0.3694569766521454,\n          \"Top\": 0.1385597139596939\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3694569766521454,\n            \"Y\": 0.1385597139596939\n          },\n          {\n            \"X\": 0.39381054043769836,\n            \"Y\": 0.1385740339756012\n          },\n          {\n            \"X\": 0.39381280541419983,\n            \"Y\": 0.1462709605693817\n          },\n          {\n            \"X\": 0.3694591522216797,\n            \"Y\": 0.14625655114650726\n          }\n        ]\n      },\n      \"Id\": \"fc0b15ee-887c-43d3-afdd-67c33a3a8f3c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85565185546875,\n      \"Text\": \"1471\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020061975345015526,\n          \"Height\": 0.0067946407943964005,\n          \"Left\": 0.3986569344997406,\n          \"Top\": 0.13858021795749664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3986569344997406,\n            \"Y\": 0.13858021795749664\n          },\n          {\n            \"X\": 0.41871681809425354,\n            \"Y\": 0.13859200477600098\n          },\n          {\n            \"X\": 0.4187189042568207,\n            \"Y\": 0.1453748494386673\n          },\n          {\n            \"X\": 0.3986589312553406,\n            \"Y\": 0.145362988114357\n          }\n        ]\n      },\n      \"Id\": \"be1767d5-fa0a-4e48-ad48-72cdb2809fa3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.13249969482422,\n      \"Text\": \"et.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01197651494294405,\n          \"Height\": 0.006483643315732479,\n          \"Left\": 0.42332711815834045,\n          \"Top\": 0.1390729695558548\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42332711815834045,\n            \"Y\": 0.1390729695558548\n          },\n          {\n            \"X\": 0.43530160188674927,\n            \"Y\": 0.1390800178050995\n          },\n          {\n            \"X\": 0.43530362844467163,\n            \"Y\": 0.14555661380290985\n          },\n          {\n            \"X\": 0.4233291447162628,\n            \"Y\": 0.14554953575134277\n          }\n        ]\n      },\n      \"Id\": \"8609bb3e-00c3-49d2-82aa-57bb0c4c7253\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.83463287353516,\n      \"Text\": \"seq.,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02250104583799839,\n          \"Height\": 0.006603100802749395,\n          \"Left\": 0.43925148248672485,\n          \"Top\": 0.14001938700675964\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43925148248672485,\n            \"Y\": 0.14001938700675964\n          },\n          {\n            \"X\": 0.461750328540802,\n            \"Y\": 0.14003263413906097\n          },\n          {\n            \"X\": 0.4617525041103363,\n            \"Y\": 0.14662249386310577\n          },\n          {\n            \"X\": 0.439253568649292,\n            \"Y\": 0.14660917222499847\n          }\n        ]\n      },\n      \"Id\": \"2d659f9c-7b46-4238-a16d-895ea9e929b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77763366699219,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010047308169305325,\n          \"Height\": 0.005471291486173868,\n          \"Left\": 0.46670064330101013,\n          \"Top\": 0.13981005549430847\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46670064330101013,\n            \"Y\": 0.13981005549430847\n          },\n          {\n            \"X\": 0.4767460823059082,\n            \"Y\": 0.13981597125530243\n          },\n          {\n            \"X\": 0.47674793004989624,\n            \"Y\": 0.1452813446521759\n          },\n          {\n            \"X\": 0.4667024612426758,\n            \"Y\": 0.14527541399002075\n          }\n        ]\n      },\n      \"Id\": \"5d029225-355c-44b2-ba1e-b7d3fafcb2a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62744903564453,\n      \"Text\": \"7\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005946666933596134,\n          \"Height\": 0.006927215028554201,\n          \"Left\": 0.4796842038631439,\n          \"Top\": 0.13826918601989746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4796842038631439,\n            \"Y\": 0.13826918601989746\n          },\n          {\n            \"X\": 0.48562851548194885,\n            \"Y\": 0.13827268779277802\n          },\n          {\n            \"X\": 0.4856308698654175,\n            \"Y\": 0.14519640803337097\n          },\n          {\n            \"X\": 0.47968655824661255,\n            \"Y\": 0.14519289135932922\n          }\n        ]\n      },\n      \"Id\": \"bcfa69be-1ba4-4fd1-8bee-214fe814140d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.99085235595703,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02460177056491375,\n          \"Height\": 0.008004536852240562,\n          \"Left\": 0.48924243450164795,\n          \"Top\": 0.13825541734695435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48924243450164795,\n            \"Y\": 0.13825541734695435\n          },\n          {\n            \"X\": 0.5138413310050964,\n            \"Y\": 0.13826987147331238\n          },\n          {\n            \"X\": 0.5138441920280457,\n            \"Y\": 0.14625994861125946\n          },\n          {\n            \"X\": 0.4892451763153076,\n            \"Y\": 0.14624540507793427\n          }\n        ]\n      },\n      \"Id\": \"b0b8caad-6043-40aa-bef3-c3e2648160bd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91223907470703,\n      \"Text\": \"1921\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020222749561071396,\n          \"Height\": 0.007093068212270737,\n          \"Left\": 0.5188348293304443,\n          \"Top\": 0.13837075233459473\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5188348293304443,\n            \"Y\": 0.13837075233459473\n          },\n          {\n            \"X\": 0.5390549302101135,\n            \"Y\": 0.13838264346122742\n          },\n          {\n            \"X\": 0.5390575528144836,\n            \"Y\": 0.14546382427215576\n          },\n          {\n            \"X\": 0.5188373923301697,\n            \"Y\": 0.1454518735408783\n          }\n        ]\n      },\n      \"Id\": \"1ff9e15a-d707-4519-970d-9a0b83b44ee3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.30665588378906,\n      \"Text\": \"et.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012176253832876682,\n          \"Height\": 0.006619117688387632,\n          \"Left\": 0.5436046123504639,\n          \"Top\": 0.13903996348381042\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5436046123504639,\n            \"Y\": 0.13903996348381042\n          },\n          {\n            \"X\": 0.5557783842086792,\n            \"Y\": 0.13904711604118347\n          },\n          {\n            \"X\": 0.5557808876037598,\n            \"Y\": 0.14565907418727875\n          },\n          {\n            \"X\": 0.5436070561408997,\n            \"Y\": 0.14565187692642212\n          }\n        ]\n      },\n      \"Id\": \"feac4993-045d-4b42-8715-88ab54b83676\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60748291015625,\n      \"Text\": \"seq.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019232619553804398,\n          \"Height\": 0.0066687618382275105,\n          \"Left\": 0.5598131418228149,\n          \"Top\": 0.14001712203025818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5598131418228149,\n            \"Y\": 0.14001712203025818\n          },\n          {\n            \"X\": 0.5790431499481201,\n            \"Y\": 0.1400284469127655\n          },\n          {\n            \"X\": 0.5790457725524902,\n            \"Y\": 0.1466858834028244\n          },\n          {\n            \"X\": 0.5598157048225403,\n            \"Y\": 0.1466745138168335\n          }\n        ]\n      },\n      \"Id\": \"2fe6b27f-1982-4bf7-9430-48711a3f3458\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61963653564453,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009825418703258038,\n          \"Height\": 0.007375308312475681,\n          \"Left\": 0.5833979845046997,\n          \"Top\": 0.13824068009853363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5833979845046997,\n            \"Y\": 0.13824068009853363\n          },\n          {\n            \"X\": 0.5932204723358154,\n            \"Y\": 0.13824646174907684\n          },\n          {\n            \"X\": 0.5932233929634094,\n            \"Y\": 0.14561599493026733\n          },\n          {\n            \"X\": 0.5834009051322937,\n            \"Y\": 0.14561018347740173\n          }\n        ]\n      },\n      \"Id\": \"ab0fa9fb-5aa9-491b-b760-efcdf5a6bc08\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 82.57726287841797,\n      \"Text\": \"USDA/FmHA).\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07213738560676575,\n          \"Height\": 0.007632986176759005,\n          \"Left\": 0.5968009829521179,\n          \"Top\": 0.13827136158943176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5968009829521179,\n            \"Y\": 0.13827136158943176\n          },\n          {\n            \"X\": 0.6689350605010986,\n            \"Y\": 0.13831375539302826\n          },\n          {\n            \"X\": 0.6689383387565613,\n            \"Y\": 0.14590434730052948\n          },\n          {\n            \"X\": 0.5968040227890015,\n            \"Y\": 0.1458617001771927\n          }\n        ]\n      },\n      \"Id\": \"95fb0f89-7a37-4df4-b3d7-f370fb86e8f3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.56031036376953,\n      \"Text\": \"Instructions:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0635717585682869,\n          \"Height\": 0.007090530823916197,\n          \"Left\": 0.045857883989810944,\n          \"Top\": 0.1588047444820404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.045857883989810944,\n            \"Y\": 0.1588047444820404\n          },\n          {\n            \"X\": 0.10942860692739487,\n            \"Y\": 0.15884274244308472\n          },\n          {\n            \"X\": 0.10942964255809784,\n            \"Y\": 0.1658952832221985\n          },\n          {\n            \"X\": 0.04585869237780571,\n            \"Y\": 0.16585706174373627\n          }\n        ]\n      },\n      \"Id\": \"f1f611e7-e5a3-447f-a8a9-9c8072aab152\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62490844726562,\n      \"Text\": \"Lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03488482907414436,\n          \"Height\": 0.0068097286857664585,\n          \"Left\": 0.12300285696983337,\n          \"Top\": 0.1586512178182602\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12300285696983337,\n            \"Y\": 0.1586512178182602\n          },\n          {\n            \"X\": 0.15788650512695312,\n            \"Y\": 0.15867206454277039\n          },\n          {\n            \"X\": 0.15788768231868744,\n            \"Y\": 0.16546094417572021\n          },\n          {\n            \"X\": 0.12300390005111694,\n            \"Y\": 0.16543997824192047\n          }\n        ]\n      },\n      \"Id\": \"0874f477-3d85-4f00-9608-880068e04c3d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.47906494140625,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008227209560573101,\n          \"Height\": 0.0023545927833765745,\n          \"Left\": 0.16222847998142242,\n          \"Top\": 0.16137178242206573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16222847998142242,\n            \"Y\": 0.16137178242206573\n          },\n          {\n            \"X\": 0.17045526206493378,\n            \"Y\": 0.1613767147064209\n          },\n          {\n            \"X\": 0.1704556792974472,\n            \"Y\": 0.16372637450695038\n          },\n          {\n            \"X\": 0.16222888231277466,\n            \"Y\": 0.16372144222259521\n          }\n        ]\n      },\n      \"Id\": \"2164fb47-3583-4d24-9004-7e22b1d60919\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80934143066406,\n      \"Text\": \"Complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044659845530986786,\n          \"Height\": 0.007929723709821701,\n          \"Left\": 0.1752859354019165,\n          \"Top\": 0.15845535695552826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1752859354019165,\n            \"Y\": 0.15845535695552826\n          },\n          {\n            \"X\": 0.21994416415691376,\n            \"Y\": 0.15848204493522644\n          },\n          {\n            \"X\": 0.2199457734823227,\n            \"Y\": 0.16638508439064026\n          },\n          {\n            \"X\": 0.1752873659133911,\n            \"Y\": 0.16635823249816895\n          }\n        ]\n      },\n      \"Id\": \"90ca0924-4c2a-47f2-b4e0-b58fdc51da66\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86398315429688,\n      \"Text\": \"items\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025483988225460052,\n          \"Height\": 0.006808592937886715,\n          \"Left\": 0.2229517102241516,\n          \"Top\": 0.1582329422235489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2229517102241516,\n            \"Y\": 0.1582329422235489\n          },\n          {\n            \"X\": 0.24843420088291168,\n            \"Y\": 0.158248171210289\n          },\n          {\n            \"X\": 0.24843569099903107,\n            \"Y\": 0.16504153609275818\n          },\n          {\n            \"X\": 0.22295311093330383,\n            \"Y\": 0.1650262326002121\n          }\n        ]\n      },\n      \"Id\": \"5677387e-c7cf-4eb7-a8bc-c34839ca3be7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.94950103759766,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004108189605176449,\n          \"Height\": 0.006425986997783184,\n          \"Left\": 0.2522149980068207,\n          \"Top\": 0.15828029811382294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2522149980068207,\n            \"Y\": 0.15828029811382294\n          },\n          {\n            \"X\": 0.2563217282295227,\n            \"Y\": 0.15828275680541992\n          },\n          {\n            \"X\": 0.2563231885433197,\n            \"Y\": 0.164706289768219\n          },\n          {\n            \"X\": 0.2522163987159729,\n            \"Y\": 0.164703831076622\n          }\n        ]\n      },\n      \"Id\": \"68acdd56-7568-48c1-b01c-536868dc486c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9690170288086,\n      \"Text\": \"through\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036857206374406815,\n          \"Height\": 0.008101975545287132,\n          \"Left\": 0.26070863008499146,\n          \"Top\": 0.15804672241210938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26070863008499146,\n            \"Y\": 0.15804672241210938\n          },\n          {\n            \"X\": 0.2975638508796692,\n            \"Y\": 0.1580687314271927\n          },\n          {\n            \"X\": 0.2975658178329468,\n            \"Y\": 0.16614869236946106\n          },\n          {\n            \"X\": 0.2607104480266571,\n            \"Y\": 0.1661265343427658\n          }\n        ]\n      },\n      \"Id\": \"dd3c158d-af1a-45f5-9aba-559253ab5643\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.40121459960938,\n      \"Text\": \"7.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009005218744277954,\n          \"Height\": 0.006928883492946625,\n          \"Left\": 0.3007647395133972,\n          \"Top\": 0.1578851193189621\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3007647395133972,\n            \"Y\": 0.1578851193189621\n          },\n          {\n            \"X\": 0.3097682297229767,\n            \"Y\": 0.15789049863815308\n          },\n          {\n            \"X\": 0.30976995825767517,\n            \"Y\": 0.16481399536132812\n          },\n          {\n            \"X\": 0.3007664382457733,\n            \"Y\": 0.16480858623981476\n          }\n        ]\n      },\n      \"Id\": \"15ea00cc-eeb8-4c9a-b30b-269e8b54d73c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9509506225586,\n      \"Text\": \"Have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02337060309946537,\n          \"Height\": 0.006643479689955711,\n          \"Left\": 0.31429916620254517,\n          \"Top\": 0.15811917185783386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31429916620254517,\n            \"Y\": 0.15811917185783386\n          },\n          {\n            \"X\": 0.3376680016517639,\n            \"Y\": 0.1581331193447113\n          },\n          {\n            \"X\": 0.3376697599887848,\n            \"Y\": 0.16476264595985413\n          },\n          {\n            \"X\": 0.3143008351325989,\n            \"Y\": 0.16474860906600952\n          }\n        ]\n      },\n      \"Id\": \"2359e86a-e8d1-495b-985d-58eb344c2e15\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8683090209961,\n      \"Text\": \"applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042438309639692307,\n          \"Height\": 0.008032814599573612,\n          \"Left\": 0.3412119448184967,\n          \"Top\": 0.1581783890724182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3412119448184967,\n            \"Y\": 0.1581783890724182\n          },\n          {\n            \"X\": 0.38364794850349426,\n            \"Y\": 0.15820373594760895\n          },\n          {\n            \"X\": 0.3836502730846405,\n            \"Y\": 0.16621120274066925\n          },\n          {\n            \"X\": 0.3412140905857086,\n            \"Y\": 0.16618569195270538\n          }\n        ]\n      },\n      \"Id\": \"6840f025-ba2e-4fd4-9ee3-2f369a31caaf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68926239013672,\n      \"Text\": \"complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04249129444360733,\n          \"Height\": 0.007858253084123135,\n          \"Left\": 0.3869677484035492,\n          \"Top\": 0.15807364881038666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3869677484035492,\n            \"Y\": 0.15807364881038666\n          },\n          {\n            \"X\": 0.42945659160614014,\n            \"Y\": 0.15809902548789978\n          },\n          {\n            \"X\": 0.4294590651988983,\n            \"Y\": 0.16593189537525177\n          },\n          {\n            \"X\": 0.38697004318237305,\n            \"Y\": 0.16590635478496552\n          }\n        ]\n      },\n      \"Id\": \"01ff3ea5-5515-4427-938f-98b81b47ae64\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84971618652344,\n      \"Text\": \"item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020143307745456696,\n          \"Height\": 0.006792739499360323,\n          \"Left\": 0.4331158995628357,\n          \"Top\": 0.1576182246208191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4331158995628357,\n            \"Y\": 0.1576182246208191\n          },\n          {\n            \"X\": 0.4532569944858551,\n            \"Y\": 0.15763026475906372\n          },\n          {\n            \"X\": 0.4532591998577118,\n            \"Y\": 0.16441097855567932\n          },\n          {\n            \"X\": 0.4331180155277252,\n            \"Y\": 0.16439887881278992\n          }\n        ]\n      },\n      \"Id\": \"d12b3902-1f35-437a-a1fc-05c8c3dd98e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69403076171875,\n      \"Text\": \"8.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008692126721143723,\n          \"Height\": 0.006726391147822142,\n          \"Left\": 0.4569920599460602,\n          \"Top\": 0.15769776701927185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4569920599460602,\n            \"Y\": 0.15769776701927185\n          },\n          {\n            \"X\": 0.46568194031715393,\n            \"Y\": 0.1577029526233673\n          },\n          {\n            \"X\": 0.465684175491333,\n            \"Y\": 0.16442416608333588\n          },\n          {\n            \"X\": 0.45699426531791687,\n            \"Y\": 0.16441895067691803\n          }\n        ]\n      },\n      \"Id\": \"bd5f84b2-1ca9-4957-b052-a83e0a62b34f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91588592529297,\n      \"Text\": \"Forward\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037901975214481354,\n          \"Height\": 0.0067613376304507256,\n          \"Left\": 0.47058916091918945,\n          \"Top\": 0.15764494240283966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47058916091918945,\n            \"Y\": 0.15764494240283966\n          },\n          {\n            \"X\": 0.5084887742996216,\n            \"Y\": 0.15766757726669312\n          },\n          {\n            \"X\": 0.5084911584854126,\n            \"Y\": 0.16440628468990326\n          },\n          {\n            \"X\": 0.4705914258956909,\n            \"Y\": 0.16438353061676025\n          }\n        ]\n      },\n      \"Id\": \"f06d4802-5284-4268-a84b-e40f2be7a7af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98003387451172,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03404655307531357,\n          \"Height\": 0.008082841522991657,\n          \"Left\": 0.5122939944267273,\n          \"Top\": 0.15762461721897125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5122939944267273,\n            \"Y\": 0.15762461721897125\n          },\n          {\n            \"X\": 0.5463375449180603,\n            \"Y\": 0.15764494240283966\n          },\n          {\n            \"X\": 0.5463405847549438,\n            \"Y\": 0.16570745408535004\n          },\n          {\n            \"X\": 0.5122969150543213,\n            \"Y\": 0.16568699479103088\n          }\n        ]\n      },\n      \"Id\": \"fce4f571-4681-499e-bdbf-f3ffc1e06842\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92815399169922,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00969480350613594,\n          \"Height\": 0.0061431159265339375,\n          \"Left\": 0.54986971616745,\n          \"Top\": 0.15809085965156555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.54986971616745,\n            \"Y\": 0.15809085965156555\n          },\n          {\n            \"X\": 0.5595622062683105,\n            \"Y\": 0.15809664130210876\n          },\n          {\n            \"X\": 0.5595645308494568,\n            \"Y\": 0.1642339676618576\n          },\n          {\n            \"X\": 0.5498720407485962,\n            \"Y\": 0.164228156208992\n          }\n        ]\n      },\n      \"Id\": \"21c8607f-3897-4919-a08b-50b734b8144b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93572235107422,\n      \"Text\": \"employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04299748316407204,\n          \"Height\": 0.007994572632014751,\n          \"Left\": 0.5629627704620361,\n          \"Top\": 0.15763550996780396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5629627704620361,\n            \"Y\": 0.15763550996780396\n          },\n          {\n            \"X\": 0.6059569716453552,\n            \"Y\": 0.15766118466854095\n          },\n          {\n            \"X\": 0.6059602499008179,\n            \"Y\": 0.16563008725643158\n          },\n          {\n            \"X\": 0.5629658102989197,\n            \"Y\": 0.16560424864292145\n          }\n        ]\n      },\n      \"Id\": \"8c5698c7-ced7-4325-9796-fde39adf02d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94805908203125,\n      \"Text\": \"named\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03194277361035347,\n          \"Height\": 0.006880943663418293,\n          \"Left\": 0.609032392501831,\n          \"Top\": 0.15730690956115723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.609032392501831,\n            \"Y\": 0.15730690956115723\n          },\n          {\n            \"X\": 0.6409722566604614,\n            \"Y\": 0.15732596814632416\n          },\n          {\n            \"X\": 0.6409751772880554,\n            \"Y\": 0.16418784856796265\n          },\n          {\n            \"X\": 0.6090351939201355,\n            \"Y\": 0.16416868567466736\n          }\n        ]\n      },\n      \"Id\": \"c4bd56de-2637-4dad-90ee-ea977a47b743\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9282455444336,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008594424463808537,\n          \"Height\": 0.006654583383351564,\n          \"Left\": 0.6444541215896606,\n          \"Top\": 0.1573711633682251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6444541215896606,\n            \"Y\": 0.1573711633682251\n          },\n          {\n            \"X\": 0.6530457139015198,\n            \"Y\": 0.15737628936767578\n          },\n          {\n            \"X\": 0.653048574924469,\n            \"Y\": 0.16402573883533478\n          },\n          {\n            \"X\": 0.6444569826126099,\n            \"Y\": 0.1640205830335617\n          }\n        ]\n      },\n      \"Id\": \"ae0f8556-7504-4aa8-9881-a584e75e69f1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87364196777344,\n      \"Text\": \"item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02033698372542858,\n          \"Height\": 0.006618737243115902,\n          \"Left\": 0.6565918922424316,\n          \"Top\": 0.15744535624980927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6565918922424316,\n            \"Y\": 0.15744535624980927\n          },\n          {\n            \"X\": 0.6769259572029114,\n            \"Y\": 0.15745748579502106\n          },\n          {\n            \"X\": 0.6769288778305054,\n            \"Y\": 0.16406409442424774\n          },\n          {\n            \"X\": 0.6565947532653809,\n            \"Y\": 0.16405189037322998\n          }\n        ]\n      },\n      \"Id\": \"b73b50db-79af-4fac-8c15-127098d8ba32\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.14678192138672,\n      \"Text\": \"1.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007829210720956326,\n          \"Height\": 0.006560453679412603,\n          \"Left\": 0.6808874011039734,\n          \"Top\": 0.15740078687667847\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6808874011039734,\n            \"Y\": 0.15740078687667847\n          },\n          {\n            \"X\": 0.6887136697769165,\n            \"Y\": 0.15740546584129333\n          },\n          {\n            \"X\": 0.6887165904045105,\n            \"Y\": 0.1639612466096878\n          },\n          {\n            \"X\": 0.6808902621269226,\n            \"Y\": 0.16395655274391174\n          }\n        ]\n      },\n      \"Id\": \"6fbf4222-a5fd-49e1-8f16-2be5b6bb2dbf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89800262451172,\n      \"Text\": \"Employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04822208732366562,\n          \"Height\": 0.008097308687865734,\n          \"Left\": 0.123228520154953,\n          \"Top\": 0.16793102025985718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.123228520154953,\n            \"Y\": 0.16793102025985718\n          },\n          {\n            \"X\": 0.17144915461540222,\n            \"Y\": 0.167960062623024\n          },\n          {\n            \"X\": 0.17145061492919922,\n            \"Y\": 0.1760283261537552\n          },\n          {\n            \"X\": 0.12322977185249329,\n            \"Y\": 0.17599910497665405\n          }\n        ]\n      },\n      \"Id\": \"3f07fb4b-b490-44b0-8238-78e2bad2805e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.91385650634766,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008848050609230995,\n          \"Height\": 0.0027264638338238,\n          \"Left\": 0.1755838543176651,\n          \"Top\": 0.1707831770181656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1755838543176651,\n            \"Y\": 0.1707831770181656\n          },\n          {\n            \"X\": 0.18443140387535095,\n            \"Y\": 0.17078851163387299\n          },\n          {\n            \"X\": 0.18443191051483154,\n            \"Y\": 0.1735096424818039\n          },\n          {\n            \"X\": 0.1755843460559845,\n            \"Y\": 0.1735042929649353\n          }\n        ]\n      },\n      \"Id\": \"62cc9d2d-9155-4905-89b2-f79e061e169f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75631713867188,\n      \"Text\": \"Please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029668480157852173,\n          \"Height\": 0.006946484558284283,\n          \"Left\": 0.18891197443008423,\n          \"Top\": 0.16767548024654388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18891197443008423,\n            \"Y\": 0.16767548024654388\n          },\n          {\n            \"X\": 0.21857903897762299,\n            \"Y\": 0.1676933318376541\n          },\n          {\n            \"X\": 0.2185804545879364,\n            \"Y\": 0.17462195456027985\n          },\n          {\n            \"X\": 0.1889132857322693,\n            \"Y\": 0.17460399866104126\n          }\n        ]\n      },\n      \"Id\": \"8d8ce7a5-d5f9-4ce2-a48f-0abd9f26e79e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91749572753906,\n      \"Text\": \"complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042275138199329376,\n          \"Height\": 0.007832820527255535,\n          \"Left\": 0.22225207090377808,\n          \"Top\": 0.16782858967781067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22225207090377808,\n            \"Y\": 0.16782858967781067\n          },\n          {\n            \"X\": 0.2645254135131836,\n            \"Y\": 0.16785404086112976\n          },\n          {\n            \"X\": 0.26452720165252686,\n            \"Y\": 0.17566141486167908\n          },\n          {\n            \"X\": 0.222253680229187,\n            \"Y\": 0.17563579976558685\n          }\n        ]\n      },\n      \"Id\": \"5e9a1e0f-1106-4867-9ba2-0b7fa9c8e9a6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95318603515625,\n      \"Text\": \"either\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02706570364534855,\n          \"Height\": 0.006825909949839115,\n          \"Left\": 0.2679023742675781,\n          \"Top\": 0.1674918532371521\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2679023742675781,\n            \"Y\": 0.1674918532371521\n          },\n          {\n            \"X\": 0.2949663996696472,\n            \"Y\": 0.16750815510749817\n          },\n          {\n            \"X\": 0.2949680685997009,\n            \"Y\": 0.17431777715682983\n          },\n          {\n            \"X\": 0.2679039239883423,\n            \"Y\": 0.1743013858795166\n          }\n        ]\n      },\n      \"Id\": \"12ccd6db-2a46-4613-a9c8-190e12c75c60\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88055419921875,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019118232652544975,\n          \"Height\": 0.00690601347014308,\n          \"Left\": 0.29830774664878845,\n          \"Top\": 0.16741801798343658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29830774664878845,\n            \"Y\": 0.16741801798343658\n          },\n          {\n            \"X\": 0.3174242079257965,\n            \"Y\": 0.16742952167987823\n          },\n          {\n            \"X\": 0.3174259662628174,\n            \"Y\": 0.17432403564453125\n          },\n          {\n            \"X\": 0.29830944538116455,\n            \"Y\": 0.17431245744228363\n          }\n        ]\n      },\n      \"Id\": \"09f46c6e-5fd7-48ec-a831-a4569e37cf39\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.87129211425781,\n      \"Text\": \"II\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00593593530356884,\n          \"Height\": 0.006808320060372353,\n          \"Left\": 0.3211367428302765,\n          \"Top\": 0.16749726235866547\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3211367428302765,\n            \"Y\": 0.16749726235866547\n          },\n          {\n            \"X\": 0.3270708918571472,\n            \"Y\": 0.167500838637352\n          },\n          {\n            \"X\": 0.3270726799964905,\n            \"Y\": 0.17430558800697327\n          },\n          {\n            \"X\": 0.32113850116729736,\n            \"Y\": 0.17430199682712555\n          }\n        ]\n      },\n      \"Id\": \"d7c6ba05-032e-4727-922c-24fa0fad1bc2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.90660095214844,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009903189726173878,\n          \"Height\": 0.005269924178719521,\n          \"Left\": 0.3307802975177765,\n          \"Top\": 0.16893897950649261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3307802975177765,\n            \"Y\": 0.16893897950649261\n          },\n          {\n            \"X\": 0.34068208932876587,\n            \"Y\": 0.16894495487213135\n          },\n          {\n            \"X\": 0.3406834900379181,\n            \"Y\": 0.17420890927314758\n          },\n          {\n            \"X\": 0.3307816982269287,\n            \"Y\": 0.17420291900634766\n          }\n        ]\n      },\n      \"Id\": \"509108d7-4858-4af1-b2b7-4b12eefb8d82\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85882568359375,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018878012895584106,\n          \"Height\": 0.006781189702451229,\n          \"Left\": 0.34420427680015564,\n          \"Top\": 0.1674576699733734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34420427680015564,\n            \"Y\": 0.1674576699733734\n          },\n          {\n            \"X\": 0.3630804121494293,\n            \"Y\": 0.16746902465820312\n          },\n          {\n            \"X\": 0.36308228969573975,\n            \"Y\": 0.17423886060714722\n          },\n          {\n            \"X\": 0.3442061245441437,\n            \"Y\": 0.17422743141651154\n          }\n        ]\n      },\n      \"Id\": \"52563da3-b8e6-419c-8d89-dbae6fad07e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.06450653076172,\n      \"Text\": \"III\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009242743253707886,\n          \"Height\": 0.006548814009875059,\n          \"Left\": 0.36690980195999146,\n          \"Top\": 0.16745054721832275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36690980195999146,\n            \"Y\": 0.16745054721832275\n          },\n          {\n            \"X\": 0.3761506676673889,\n            \"Y\": 0.16745610535144806\n          },\n          {\n            \"X\": 0.37615254521369934,\n            \"Y\": 0.1739993542432785\n          },\n          {\n            \"X\": 0.3669116497039795,\n            \"Y\": 0.1739937663078308\n          }\n        ]\n      },\n      \"Id\": \"3b0deb3d-29d1-406c-a95c-84297accab0e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89311218261719,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01042361930012703,\n          \"Height\": 0.00518894474953413,\n          \"Left\": 0.3796118199825287,\n          \"Top\": 0.1687890887260437\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3796118199825287,\n            \"Y\": 0.1687890887260437\n          },\n          {\n            \"X\": 0.39003390073776245,\n            \"Y\": 0.1687953621149063\n          },\n          {\n            \"X\": 0.3900354206562042,\n            \"Y\": 0.1739780306816101\n          },\n          {\n            \"X\": 0.37961331009864807,\n            \"Y\": 0.1739717274904251\n          }\n        ]\n      },\n      \"Id\": \"107305b8-e833-453d-a49e-a41e7cde3e10\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.66918182373047,\n      \"Text\": \"applicable.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0489315465092659,\n          \"Height\": 0.007715738378465176,\n          \"Left\": 0.39327502250671387,\n          \"Top\": 0.1676127314567566\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39327502250671387,\n            \"Y\": 0.1676127314567566\n          },\n          {\n            \"X\": 0.442204087972641,\n            \"Y\": 0.16764219105243683\n          },\n          {\n            \"X\": 0.44220656156539917,\n            \"Y\": 0.17532847821712494\n          },\n          {\n            \"X\": 0.39327728748321533,\n            \"Y\": 0.17529883980751038\n          }\n        ]\n      },\n      \"Id\": \"4ed883ee-9028-44e9-8105-251f2c6e4f30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85456848144531,\n      \"Text\": \"Complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04484764486551285,\n          \"Height\": 0.008175157941877842,\n          \"Left\": 0.44673651456832886,\n          \"Top\": 0.16731269657611847\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44673651456832886,\n            \"Y\": 0.16731269657611847\n          },\n          {\n            \"X\": 0.49158135056495667,\n            \"Y\": 0.16733968257904053\n          },\n          {\n            \"X\": 0.4915841817855835,\n            \"Y\": 0.17548784613609314\n          },\n          {\n            \"X\": 0.44673916697502136,\n            \"Y\": 0.17546068131923676\n          }\n        ]\n      },\n      \"Id\": \"335cd0ab-4fb9-4428-a383-3d42133b17a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9034423828125,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01879805140197277,\n          \"Height\": 0.006846203468739986,\n          \"Left\": 0.49524590373039246,\n          \"Top\": 0.16709303855895996\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49524590373039246,\n            \"Y\": 0.16709303855895996\n          },\n          {\n            \"X\": 0.514041543006897,\n            \"Y\": 0.1671043485403061\n          },\n          {\n            \"X\": 0.514043927192688,\n            \"Y\": 0.17393924295902252\n          },\n          {\n            \"X\": 0.49524828791618347,\n            \"Y\": 0.17392787337303162\n          }\n        ]\n      },\n      \"Id\": \"af748b82-9205-4633-b2ac-1b4b5a69e024\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84039306640625,\n      \"Text\": \"IV\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010342084802687168,\n          \"Height\": 0.006813053507357836,\n          \"Left\": 0.5176888108253479,\n          \"Top\": 0.16703063249588013\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5176888108253479,\n            \"Y\": 0.16703063249588013\n          },\n          {\n            \"X\": 0.5280284285545349,\n            \"Y\": 0.16703684628009796\n          },\n          {\n            \"X\": 0.5280308723449707,\n            \"Y\": 0.17384368181228638\n          },\n          {\n            \"X\": 0.5176912546157837,\n            \"Y\": 0.17383742332458496\n          }\n        ]\n      },\n      \"Id\": \"e2f2f16e-ee0c-4255-968d-012774e13ed6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97573852539062,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01745085045695305,\n          \"Height\": 0.006684474181383848,\n          \"Left\": 0.531650722026825,\n          \"Top\": 0.16710282862186432\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.531650722026825,\n            \"Y\": 0.16710282862186432\n          },\n          {\n            \"X\": 0.5490990877151489,\n            \"Y\": 0.1671133190393448\n          },\n          {\n            \"X\": 0.5491015911102295,\n            \"Y\": 0.17378729581832886\n          },\n          {\n            \"X\": 0.5316531658172607,\n            \"Y\": 0.1737767457962036\n          }\n        ]\n      },\n      \"Id\": \"650e4098-bf94-41ec-bec9-a10dcd1b0a19\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96846008300781,\n      \"Text\": \"return\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027860065922141075,\n          \"Height\": 0.006140829063951969,\n          \"Left\": 0.5526542663574219,\n          \"Top\": 0.16759760677814484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5526542663574219,\n            \"Y\": 0.16759760677814484\n          },\n          {\n            \"X\": 0.5805119276046753,\n            \"Y\": 0.16761437058448792\n          },\n          {\n            \"X\": 0.5805143713951111,\n            \"Y\": 0.17373843491077423\n          },\n          {\n            \"X\": 0.5526565909385681,\n            \"Y\": 0.17372159659862518\n          }\n        ]\n      },\n      \"Id\": \"4bce1863-ccac-4c53-b44c-11cbe1d5f3e0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97789001464844,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03438827395439148,\n          \"Height\": 0.008064757101237774,\n          \"Left\": 0.584172248840332,\n          \"Top\": 0.16697126626968384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.584172248840332,\n            \"Y\": 0.16697126626968384\n          },\n          {\n            \"X\": 0.6185572147369385,\n            \"Y\": 0.1669919639825821\n          },\n          {\n            \"X\": 0.6185605525970459,\n            \"Y\": 0.17503602802753448\n          },\n          {\n            \"X\": 0.5841754674911499,\n            \"Y\": 0.17501521110534668\n          }\n        ]\n      },\n      \"Id\": \"b54eeaba-9a92-4967-ab17-c7a99dc85e6e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9420394897461,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009525300934910774,\n          \"Height\": 0.006069457624107599,\n          \"Left\": 0.6218006014823914,\n          \"Top\": 0.16737130284309387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6218006014823914,\n            \"Y\": 0.16737130284309387\n          },\n          {\n            \"X\": 0.6313233971595764,\n            \"Y\": 0.1673770248889923\n          },\n          {\n            \"X\": 0.631325900554657,\n            \"Y\": 0.17344075441360474\n          },\n          {\n            \"X\": 0.6218031048774719,\n            \"Y\": 0.1734350025653839\n          }\n        ]\n      },\n      \"Id\": \"de00a2a6-aba3-4970-9d8f-158b382666a1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69837951660156,\n      \"Text\": \"lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029112156480550766,\n          \"Height\": 0.0066652726382017136,\n          \"Left\": 0.6349188685417175,\n          \"Top\": 0.16682174801826477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6349188685417175,\n            \"Y\": 0.16682174801826477\n          },\n          {\n            \"X\": 0.6640281081199646,\n            \"Y\": 0.16683925688266754\n          },\n          {\n            \"X\": 0.6640310287475586,\n            \"Y\": 0.17348702251911163\n          },\n          {\n            \"X\": 0.634921669960022,\n            \"Y\": 0.1734694242477417\n          }\n        ]\n      },\n      \"Id\": \"7a8320b8-635a-4b47-bc3f-6bc2b1010306\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94701385498047,\n      \"Text\": \"named\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03154827654361725,\n          \"Height\": 0.00666681956499815,\n          \"Left\": 0.6673778295516968,\n          \"Top\": 0.16683220863342285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6673778295516968,\n            \"Y\": 0.16683220863342285\n          },\n          {\n            \"X\": 0.6989231109619141,\n            \"Y\": 0.16685117781162262\n          },\n          {\n            \"X\": 0.6989260911941528,\n            \"Y\": 0.17349901795387268\n          },\n          {\n            \"X\": 0.6673807501792908,\n            \"Y\": 0.17347994446754456\n          }\n        ]\n      },\n      \"Id\": \"b63e9ba0-9bfc-4c1e-8e5b-73474365a287\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90557861328125,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008363774977624416,\n          \"Height\": 0.006510843988507986,\n          \"Left\": 0.7026255130767822,\n          \"Top\": 0.16685108840465546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7026255130767822,\n            \"Y\": 0.16685108840465546\n          },\n          {\n            \"X\": 0.710986316204071,\n            \"Y\": 0.16685611009597778\n          },\n          {\n            \"X\": 0.7109892964363098,\n            \"Y\": 0.17336192727088928\n          },\n          {\n            \"X\": 0.702628493309021,\n            \"Y\": 0.17335687577724457\n          }\n        ]\n      },\n      \"Id\": \"9743e3bc-0010-4ecd-9e4c-20f1bd8b69f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83952331542969,\n      \"Text\": \"item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02032090723514557,\n          \"Height\": 0.006725391838699579,\n          \"Left\": 0.7145202159881592,\n          \"Top\": 0.16671600937843323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7145202159881592,\n            \"Y\": 0.16671600937843323\n          },\n          {\n            \"X\": 0.7348379492759705,\n            \"Y\": 0.16672822833061218\n          },\n          {\n            \"X\": 0.7348411083221436,\n            \"Y\": 0.17344141006469727\n          },\n          {\n            \"X\": 0.7145232558250427,\n            \"Y\": 0.17342911660671234\n          }\n        ]\n      },\n      \"Id\": \"bd0e0703-bbb4-426d-ace7-32b969d62ee8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60529327392578,\n      \"Text\": \"2.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00873580388724804,\n          \"Height\": 0.0070267352275550365,\n          \"Left\": 0.7380978465080261,\n          \"Top\": 0.16651172935962677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7380978465080261,\n            \"Y\": 0.16651172935962677\n          },\n          {\n            \"X\": 0.7468303442001343,\n            \"Y\": 0.166516974568367\n          },\n          {\n            \"X\": 0.7468336820602417,\n            \"Y\": 0.1735384613275528\n          },\n          {\n            \"X\": 0.7381011843681335,\n            \"Y\": 0.17353317141532898\n          }\n        ]\n      },\n      \"Id\": \"7c287875-81de-47ff-8e87-5afaaff985c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88542938232422,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019496705383062363,\n          \"Height\": 0.007092656567692757,\n          \"Left\": 0.12259393185377121,\n          \"Top\": 0.17719437181949615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12259393185377121,\n            \"Y\": 0.17719437181949615\n          },\n          {\n            \"X\": 0.14208947122097015,\n            \"Y\": 0.17720620334148407\n          },\n          {\n            \"X\": 0.14209063351154327,\n            \"Y\": 0.18428702652454376\n          },\n          {\n            \"X\": 0.12259502708911896,\n            \"Y\": 0.18427513539791107\n          }\n        ]\n      },\n      \"Id\": \"d65dd9eb-fd3b-4b1c-9f6f-1debbb8e2a82\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89053344726562,\n      \"Text\": \"form\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0247194804251194,\n          \"Height\": 0.0069740633480250835,\n          \"Left\": 0.14548365771770477,\n          \"Top\": 0.17727793753147125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14548365771770477,\n            \"Y\": 0.17727793753147125\n          },\n          {\n            \"X\": 0.17020189762115479,\n            \"Y\": 0.17729294300079346\n          },\n          {\n            \"X\": 0.17020314931869507,\n            \"Y\": 0.18425200879573822\n          },\n          {\n            \"X\": 0.1454848200082779,\n            \"Y\": 0.18423692882061005\n          }\n        ]\n      },\n      \"Id\": \"c751e630-80b1-42ee-be24-f077ba492a5e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94639587402344,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008401526138186455,\n          \"Height\": 0.006923694163560867,\n          \"Left\": 0.1743331402540207,\n          \"Top\": 0.17729932069778442\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1743331402540207,\n            \"Y\": 0.17729932069778442\n          },\n          {\n            \"X\": 0.18273338675498962,\n            \"Y\": 0.17730441689491272\n          },\n          {\n            \"X\": 0.1827346682548523,\n            \"Y\": 0.184223011136055\n          },\n          {\n            \"X\": 0.17433439195156097,\n            \"Y\": 0.1842178851366043\n          }\n        ]\n      },\n      \"Id\": \"6d6cc677-d777-4438-887f-aefe0707ed47\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8438720703125,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010631493292748928,\n          \"Height\": 0.006181089207530022,\n          \"Left\": 0.1862671971321106,\n          \"Top\": 0.17793764173984528\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1862671971321106,\n            \"Y\": 0.17793764173984528\n          },\n          {\n            \"X\": 0.1968975067138672,\n            \"Y\": 0.1779440939426422\n          },\n          {\n            \"X\": 0.1968986988067627,\n            \"Y\": 0.18411873281002045\n          },\n          {\n            \"X\": 0.18626835942268372,\n            \"Y\": 0.18411223590373993\n          }\n        ]\n      },\n      \"Id\": \"6e869750-187b-4714-b32a-911343cf8f1c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90254974365234,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012716548517346382,\n          \"Height\": 0.00676491716876626,\n          \"Left\": 0.20083105564117432,\n          \"Top\": 0.17733921110630035\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20083105564117432,\n            \"Y\": 0.17733921110630035\n          },\n          {\n            \"X\": 0.2135462462902069,\n            \"Y\": 0.17734692990779877\n          },\n          {\n            \"X\": 0.21354761719703674,\n            \"Y\": 0.18410412967205048\n          },\n          {\n            \"X\": 0.20083238184452057,\n            \"Y\": 0.18409636616706848\n          }\n        ]\n      },\n      \"Id\": \"c8430334-864a-44b8-b86b-0619b0666375\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87261199951172,\n      \"Text\": \"transmitted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059640299528837204,\n          \"Height\": 0.006987378001213074,\n          \"Left\": 0.21722660958766937,\n          \"Top\": 0.17713291943073273\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21722660958766937,\n            \"Y\": 0.17713291943073273\n          },\n          {\n            \"X\": 0.27686527371406555,\n            \"Y\": 0.1771690994501114\n          },\n          {\n            \"X\": 0.2768669128417969,\n            \"Y\": 0.1841202974319458\n          },\n          {\n            \"X\": 0.2172280251979828,\n            \"Y\": 0.18408390879631042\n          }\n        ]\n      },\n      \"Id\": \"29445384-92d3-431d-b32a-7196ff656eb3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92118835449219,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03859243914484978,\n          \"Height\": 0.008481291122734547,\n          \"Left\": 0.28073039650917053,\n          \"Top\": 0.17705287039279938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28073039650917053,\n            \"Y\": 0.17705287039279938\n          },\n          {\n            \"X\": 0.3193206489086151,\n            \"Y\": 0.1770762801170349\n          },\n          {\n            \"X\": 0.3193228244781494,\n            \"Y\": 0.18553416430950165\n          },\n          {\n            \"X\": 0.2807323932647705,\n            \"Y\": 0.18551059067249298\n          }\n        ]\n      },\n      \"Id\": \"6fe972ca-9462-4486-bcb3-ae28e18605bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84297180175781,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010536221787333488,\n          \"Height\": 0.006328653544187546,\n          \"Left\": 0.3230260908603668,\n          \"Top\": 0.17772722244262695\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3230260908603668,\n            \"Y\": 0.17772722244262695\n          },\n          {\n            \"X\": 0.33356064558029175,\n            \"Y\": 0.1777336150407791\n          },\n          {\n            \"X\": 0.33356231451034546,\n            \"Y\": 0.1840558648109436\n          },\n          {\n            \"X\": 0.32302772998809814,\n            \"Y\": 0.18404944241046906\n          }\n        ]\n      },\n      \"Id\": \"4631e2d2-2aa1-4fb4-884c-a1849867482f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93110656738281,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016395600512623787,\n          \"Height\": 0.0067686652764678,\n          \"Left\": 0.337533175945282,\n          \"Top\": 0.17722371220588684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.337533175945282,\n            \"Y\": 0.17722371220588684\n          },\n          {\n            \"X\": 0.3539269268512726,\n            \"Y\": 0.17723365128040314\n          },\n          {\n            \"X\": 0.3539287745952606,\n            \"Y\": 0.18399237096309662\n          },\n          {\n            \"X\": 0.33753496408462524,\n            \"Y\": 0.18398237228393555\n          }\n        ]\n      },\n      \"Id\": \"4aae3ccf-3d59-45e2-af7d-33b224ad96ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.62721252441406,\n      \"Text\": \"lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0327039435505867,\n          \"Height\": 0.006872143596410751,\n          \"Left\": 0.35768449306488037,\n          \"Top\": 0.17702922224998474\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35768449306488037,\n            \"Y\": 0.17702922224998474\n          },\n          {\n            \"X\": 0.3903864324092865,\n            \"Y\": 0.17704905569553375\n          },\n          {\n            \"X\": 0.3903884291648865,\n            \"Y\": 0.1839013695716858\n          },\n          {\n            \"X\": 0.3576864004135132,\n            \"Y\": 0.18388143181800842\n          }\n        ]\n      },\n      \"Id\": \"8098feea-b2ad-4519-a809-4e40fe215921\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94886779785156,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018801823258399963,\n          \"Height\": 0.006698787212371826,\n          \"Left\": 0.3936641216278076,\n          \"Top\": 0.17692923545837402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3936641216278076,\n            \"Y\": 0.17692923545837402\n          },\n          {\n            \"X\": 0.412463903427124,\n            \"Y\": 0.17694063484668732\n          },\n          {\n            \"X\": 0.4124659299850464,\n            \"Y\": 0.18362802267074585\n          },\n          {\n            \"X\": 0.3936660885810852,\n            \"Y\": 0.18361656367778778\n          }\n        ]\n      },\n      \"Id\": \"264391c6-18e9-4c55-8d62-bf8f9fe1568e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94257354736328,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008149194531142712,\n          \"Height\": 0.006770160514861345,\n          \"Left\": 0.4165197014808655,\n          \"Top\": 0.17682532966136932\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4165197014808655,\n            \"Y\": 0.17682532966136932\n          },\n          {\n            \"X\": 0.42466679215431213,\n            \"Y\": 0.17683027684688568\n          },\n          {\n            \"X\": 0.4246688783168793,\n            \"Y\": 0.18359549343585968\n          },\n          {\n            \"X\": 0.41652175784111023,\n            \"Y\": 0.18359053134918213\n          }\n        ]\n      },\n      \"Id\": \"c40ddae2-a2aa-45dd-9eed-b4461db25f19\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95791625976562,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017134379595518112,\n          \"Height\": 0.0063768713735044,\n          \"Left\": 0.4287187159061432,\n          \"Top\": 0.17731377482414246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4287187159061432,\n            \"Y\": 0.17731377482414246\n          },\n          {\n            \"X\": 0.44585102796554565,\n            \"Y\": 0.17732416093349457\n          },\n          {\n            \"X\": 0.4458530843257904,\n            \"Y\": 0.1836906522512436\n          },\n          {\n            \"X\": 0.4287206828594208,\n            \"Y\": 0.1836802065372467\n          }\n        ]\n      },\n      \"Id\": \"d001d5e5-a9f7-4544-bf3b-143ff672634a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84435272216797,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010671716183423996,\n          \"Height\": 0.006308656185865402,\n          \"Left\": 0.44955527782440186,\n          \"Top\": 0.1772705465555191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44955527782440186,\n            \"Y\": 0.1772705465555191\n          },\n          {\n            \"X\": 0.4602248966693878,\n            \"Y\": 0.17727701365947723\n          },\n          {\n            \"X\": 0.46022698283195496,\n            \"Y\": 0.1835792064666748\n          },\n          {\n            \"X\": 0.4495573043823242,\n            \"Y\": 0.1835726946592331\n          }\n        ]\n      },\n      \"Id\": \"9e603100-7d4e-47de-8827-439d91ce0410\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83731842041016,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01227493118494749,\n          \"Height\": 0.006840571295469999,\n          \"Left\": 0.46443605422973633,\n          \"Top\": 0.1767427623271942\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46443605422973633,\n            \"Y\": 0.1767427623271942\n          },\n          {\n            \"X\": 0.47670868039131165,\n            \"Y\": 0.17675019800662994\n          },\n          {\n            \"X\": 0.4767110049724579,\n            \"Y\": 0.1835833340883255\n          },\n          {\n            \"X\": 0.4644383192062378,\n            \"Y\": 0.183575838804245\n          }\n        ]\n      },\n      \"Id\": \"bcde5002-a912-4304-bc01-d81df2905aa5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82984924316406,\n      \"Text\": \"transmitted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06029364839196205,\n          \"Height\": 0.006789932958781719,\n          \"Left\": 0.48005372285842896,\n          \"Top\": 0.17657220363616943\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48005372285842896,\n            \"Y\": 0.17657220363616943\n          },\n          {\n            \"X\": 0.5403448939323425,\n            \"Y\": 0.17660875618457794\n          },\n          {\n            \"X\": 0.5403473973274231,\n            \"Y\": 0.18336212635040283\n          },\n          {\n            \"X\": 0.4800560176372528,\n            \"Y\": 0.1833253800868988\n          }\n        ]\n      },\n      \"Id\": \"8fa57ffb-06b7-410d-b5a8-48929ea39d03\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9492416381836,\n      \"Text\": \"through\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04045119881629944,\n          \"Height\": 0.00831165537238121,\n          \"Left\": 0.5442537069320679,\n          \"Top\": 0.17648093402385712\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5442537069320679,\n            \"Y\": 0.17648093402385712\n          },\n          {\n            \"X\": 0.5847015976905823,\n            \"Y\": 0.176505446434021\n          },\n          {\n            \"X\": 0.5847048759460449,\n            \"Y\": 0.18479259312152863\n          },\n          {\n            \"X\": 0.5442568063735962,\n            \"Y\": 0.18476790189743042\n          }\n        ]\n      },\n      \"Id\": \"424972b9-a4a2-4ffd-982c-e1fb043821c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91533660888672,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016757003962993622,\n          \"Height\": 0.006772689986974001,\n          \"Left\": 0.5887159109115601,\n          \"Top\": 0.17655225098133087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5887159109115601,\n            \"Y\": 0.17655225098133087\n          },\n          {\n            \"X\": 0.6054701805114746,\n            \"Y\": 0.17656241357326508\n          },\n          {\n            \"X\": 0.6054729223251343,\n            \"Y\": 0.18332494795322418\n          },\n          {\n            \"X\": 0.588718593120575,\n            \"Y\": 0.1833147257566452\n          }\n        ]\n      },\n      \"Id\": \"1b385025-b22f-4ef4-931f-ae747f9ad9c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86526489257812,\n      \"Text\": \"applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048062585294246674,\n          \"Height\": 0.0075953989289700985,\n          \"Left\": 0.608862042427063,\n          \"Top\": 0.1768174022436142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.608862042427063,\n            \"Y\": 0.1768174022436142\n          },\n          {\n            \"X\": 0.65692138671875,\n            \"Y\": 0.17684653401374817\n          },\n          {\n            \"X\": 0.6569246649742126,\n            \"Y\": 0.18441279232501984\n          },\n          {\n            \"X\": 0.6088651418685913,\n            \"Y\": 0.18438348174095154\n          }\n        ]\n      },\n      \"Id\": \"aa465dd8-1489-401f-8b82-bf13c8220a06\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83454132080078,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010611367411911488,\n          \"Height\": 0.005506095476448536,\n          \"Left\": 0.6608535051345825,\n          \"Top\": 0.17771871387958527\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6608535051345825,\n            \"Y\": 0.17771871387958527\n          },\n          {\n            \"X\": 0.6714624762535095,\n            \"Y\": 0.177725151181221\n          },\n          {\n            \"X\": 0.6714649200439453,\n            \"Y\": 0.18322481215000153\n          },\n          {\n            \"X\": 0.6608558893203735,\n            \"Y\": 0.1832183450460434\n          }\n        ]\n      },\n      \"Id\": \"f3e9b42d-db65-4057-b1d2-62acdfd70074\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95928955078125,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019012203440070152,\n          \"Height\": 0.00680889654904604,\n          \"Left\": 0.6748329997062683,\n          \"Top\": 0.17750924825668335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6748329997062683,\n            \"Y\": 0.17750924825668335\n          },\n          {\n            \"X\": 0.6938421726226807,\n            \"Y\": 0.1775207817554474\n          },\n          {\n            \"X\": 0.6938452124595642,\n            \"Y\": 0.1843181550502777\n          },\n          {\n            \"X\": 0.6748360395431519,\n            \"Y\": 0.1843065619468689\n          }\n        ]\n      },\n      \"Id\": \"505444c0-acd3-4e6b-9a59-0ecd6520811f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90361022949219,\n      \"Text\": \"other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027541184797883034,\n          \"Height\": 0.006682930514216423,\n          \"Left\": 0.6973727345466614,\n          \"Top\": 0.17634235322475433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6973727345466614,\n            \"Y\": 0.17634235322475433\n          },\n          {\n            \"X\": 0.7249107956886292,\n            \"Y\": 0.17635904252529144\n          },\n          {\n            \"X\": 0.7249138951301575,\n            \"Y\": 0.1830252856016159\n          },\n          {\n            \"X\": 0.6973757147789001,\n            \"Y\": 0.18300850689411163\n          }\n        ]\n      },\n      \"Id\": \"be598f3b-30f2-4c79-b550-6cee9feed1c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27177429199219,\n      \"Text\": \"party.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02933506853878498,\n          \"Height\": 0.007692642509937286,\n          \"Left\": 0.7286677956581116,\n          \"Top\": 0.17673665285110474\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7286677956581116,\n            \"Y\": 0.17673665285110474\n          },\n          {\n            \"X\": 0.7579991817474365,\n            \"Y\": 0.176754429936409\n          },\n          {\n            \"X\": 0.7580028772354126,\n            \"Y\": 0.18442928791046143\n          },\n          {\n            \"X\": 0.7286714315414429,\n            \"Y\": 0.18441139161586761\n          }\n        ]\n      },\n      \"Id\": \"bedfd665-0c35-42ce-9021-5c0c8de64d14\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7559814453125,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029580581933259964,\n          \"Height\": 0.009252559393644333,\n          \"Left\": 0.04354153573513031,\n          \"Top\": 0.19918286800384521\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04354153573513031,\n            \"Y\": 0.19918286800384521\n          },\n          {\n            \"X\": 0.07312092930078506,\n            \"Y\": 0.19920112192630768\n          },\n          {\n            \"X\": 0.07312212139368057,\n            \"Y\": 0.20843543112277985\n          },\n          {\n            \"X\": 0.04354258254170418,\n            \"Y\": 0.20841702818870544\n          }\n        ]\n      },\n      \"Id\": \"5b0584be-6f9c-4263-b558-d0c4f5a7d729\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.12915802001953,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004398555029183626,\n          \"Height\": 0.009213357232511044,\n          \"Left\": 0.07792394608259201,\n          \"Top\": 0.19907136261463165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07792394608259201,\n            \"Y\": 0.19907136261463165\n          },\n          {\n            \"X\": 0.08232127130031586,\n            \"Y\": 0.19907407462596893\n          },\n          {\n            \"X\": 0.08232250064611435,\n            \"Y\": 0.20828472077846527\n          },\n          {\n            \"X\": 0.07792515307664871,\n            \"Y\": 0.2082819938659668\n          }\n        ]\n      },\n      \"Id\": \"b4f5fc43-8af2-40a3-acc1-a996ddb10ac9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.09891510009766,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012038914486765862,\n          \"Height\": 0.003105189884081483,\n          \"Left\": 0.08870124816894531,\n          \"Top\": 0.20324695110321045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08870124816894531,\n            \"Y\": 0.20324695110321045\n          },\n          {\n            \"X\": 0.10073971748352051,\n            \"Y\": 0.20325440168380737\n          },\n          {\n            \"X\": 0.10074016451835632,\n            \"Y\": 0.2063521444797516\n          },\n          {\n            \"X\": 0.08870167285203934,\n            \"Y\": 0.20634466409683228\n          }\n        ]\n      },\n      \"Id\": \"e9d9bc00-7a6d-447e-8f63-63332e691edb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93597412109375,\n      \"Text\": \"Request\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.057033292949199677,\n          \"Height\": 0.0109100341796875,\n          \"Left\": 0.10752759873867035,\n          \"Top\": 0.19926440715789795\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10752759873867035,\n            \"Y\": 0.19926440715789795\n          },\n          {\n            \"X\": 0.16455897688865662,\n            \"Y\": 0.199299618601799\n          },\n          {\n            \"X\": 0.16456089913845062,\n            \"Y\": 0.21017444133758545\n          },\n          {\n            \"X\": 0.10752919316291809,\n            \"Y\": 0.2101389318704605\n          }\n        ]\n      },\n      \"Id\": \"7cfc95f3-cec5-426b-8302-1e0dc5ff7499\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.2697982788086,\n      \"Text\": \"1.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0089208809658885,\n          \"Height\": 0.0077133700251579285,\n          \"Left\": 0.04360780492424965,\n          \"Top\": 0.21306341886520386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04360780492424965,\n            \"Y\": 0.21306341886520386\n          },\n          {\n            \"X\": 0.0525277778506279,\n            \"Y\": 0.21306899189949036\n          },\n          {\n            \"X\": 0.052528686821460724,\n            \"Y\": 0.22077679634094238\n          },\n          {\n            \"X\": 0.04360868036746979,\n            \"Y\": 0.2207711935043335\n          }\n        ]\n      },\n      \"Id\": \"96ea7b43-dea4-4dca-86ac-fefbb00f53a0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81813049316406,\n      \"Text\": \"To\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014510085806250572,\n          \"Height\": 0.008045759052038193,\n          \"Left\": 0.057717014104127884,\n          \"Top\": 0.21283282339572906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057717014104127884,\n            \"Y\": 0.21283282339572906\n          },\n          {\n            \"X\": 0.07222606986761093,\n            \"Y\": 0.21284188330173492\n          },\n          {\n            \"X\": 0.0722270980477333,\n            \"Y\": 0.22087858617305756\n          },\n          {\n            \"X\": 0.057717982679605484,\n            \"Y\": 0.22086948156356812\n          }\n        ]\n      },\n      \"Id\": \"3bd451f6-ab21-402e-99ae-aede74b2d2bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77178955078125,\n      \"Text\": \"(Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03490003943443298,\n          \"Height\": 0.008822311647236347,\n          \"Left\": 0.07697545737028122,\n          \"Top\": 0.21279291808605194\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07697545737028122,\n            \"Y\": 0.21279291808605194\n          },\n          {\n            \"X\": 0.11187419295310974,\n            \"Y\": 0.21281468868255615\n          },\n          {\n            \"X\": 0.1118754968047142,\n            \"Y\": 0.22161522507667542\n          },\n          {\n            \"X\": 0.07697661221027374,\n            \"Y\": 0.22159330546855927\n          }\n        ]\n      },\n      \"Id\": \"679f521f-0335-4de2-924f-1618805935ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96497344970703,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02000994049012661,\n          \"Height\": 0.007628197316080332,\n          \"Left\": 0.11601172387599945,\n          \"Top\": 0.21306754648685455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11601172387599945,\n            \"Y\": 0.21306754648685455\n          },\n          {\n            \"X\": 0.13602043688297272,\n            \"Y\": 0.213080033659935\n          },\n          {\n            \"X\": 0.1360216587781906,\n            \"Y\": 0.22069574892520905\n          },\n          {\n            \"X\": 0.11601287126541138,\n            \"Y\": 0.22068318724632263\n          }\n        ]\n      },\n      \"Id\": \"38403767-8e1f-46ca-b4e3-8968e386e213\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96319580078125,\n      \"Text\": \"address\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040939368307590485,\n          \"Height\": 0.007627764251083136,\n          \"Left\": 0.14025996625423431,\n          \"Top\": 0.21304112672805786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14025996625423431,\n            \"Y\": 0.21304112672805786\n          },\n          {\n            \"X\": 0.18119794130325317,\n            \"Y\": 0.21306666731834412\n          },\n          {\n            \"X\": 0.1811993420124054,\n            \"Y\": 0.22066889703273773\n          },\n          {\n            \"X\": 0.1402612179517746,\n            \"Y\": 0.22064319252967834\n          }\n        ]\n      },\n      \"Id\": \"c3be0223-0dba-4cb7-a37b-3adec2751ec3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91732025146484,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011346500366926193,\n          \"Height\": 0.007772176526486874,\n          \"Left\": 0.18530967831611633,\n          \"Top\": 0.21274833381175995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18530967831611633,\n            \"Y\": 0.21274833381175995\n          },\n          {\n            \"X\": 0.19665467739105225,\n            \"Y\": 0.21275541186332703\n          },\n          {\n            \"X\": 0.19665618240833282,\n            \"Y\": 0.2205205112695694\n          },\n          {\n            \"X\": 0.18531113862991333,\n            \"Y\": 0.22051338851451874\n          }\n        ]\n      },\n      \"Id\": \"33792895-49cd-4240-b1fb-96b5616b55b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.37933349609375,\n      \"Text\": \"employer)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05285513773560524,\n          \"Height\": 0.009243551641702652,\n          \"Left\": 0.2008032202720642,\n          \"Top\": 0.21261191368103027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2008032202720642,\n            \"Y\": 0.21261191368103027\n          },\n          {\n            \"X\": 0.2536562979221344,\n            \"Y\": 0.21264487504959106\n          },\n          {\n            \"X\": 0.25365835428237915,\n            \"Y\": 0.22185546159744263\n          },\n          {\n            \"X\": 0.20080500841140747,\n            \"Y\": 0.22182224690914154\n          }\n        ]\n      },\n      \"Id\": \"c5d6af22-5d10-4078-9728-2641b3a66c22\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76182556152344,\n      \"Text\": \"2.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010034245438873768,\n          \"Height\": 0.00763348862528801,\n          \"Left\": 0.49102771282196045,\n          \"Top\": 0.21228493750095367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49102771282196045,\n            \"Y\": 0.21228493750095367\n          },\n          {\n            \"X\": 0.5010592937469482,\n            \"Y\": 0.2122911959886551\n          },\n          {\n            \"X\": 0.5010619759559631,\n            \"Y\": 0.21991842985153198\n          },\n          {\n            \"X\": 0.49103036522865295,\n            \"Y\": 0.21991214156150818\n          }\n        ]\n      },\n      \"Id\": \"7a34a578-9ce6-46f4-9481-8a37c4745d86\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95478057861328,\n      \"Text\": \"From\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02766568772494793,\n          \"Height\": 0.007961924187839031,\n          \"Left\": 0.5066608786582947,\n          \"Top\": 0.2122908979654312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5066608786582947,\n            \"Y\": 0.2122908979654312\n          },\n          {\n            \"X\": 0.5343236327171326,\n            \"Y\": 0.2123081535100937\n          },\n          {\n            \"X\": 0.5343265533447266,\n            \"Y\": 0.22025282680988312\n          },\n          {\n            \"X\": 0.5066636800765991,\n            \"Y\": 0.22023546695709229\n          }\n        ]\n      },\n      \"Id\": \"958600f7-e4ff-4889-aeee-adb1ddee355c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77110290527344,\n      \"Text\": \"(Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03527944162487984,\n          \"Height\": 0.00883527286350727,\n          \"Left\": 0.5389941334724426,\n          \"Top\": 0.21224981546401978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5389941334724426,\n            \"Y\": 0.21224981546401978\n          },\n          {\n            \"X\": 0.5742701292037964,\n            \"Y\": 0.2122718095779419\n          },\n          {\n            \"X\": 0.5742735266685486,\n            \"Y\": 0.2210850864648819\n          },\n          {\n            \"X\": 0.5389973521232605,\n            \"Y\": 0.22106294333934784\n          }\n        ]\n      },\n      \"Id\": \"9518f7c5-795e-4ef5-b8b1-b5cd4b335660\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87460327148438,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020111503079533577,\n          \"Height\": 0.007475079968571663,\n          \"Left\": 0.5783070921897888,\n          \"Top\": 0.21260356903076172\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5783070921897888,\n            \"Y\": 0.21260356903076172\n          },\n          {\n            \"X\": 0.5984156131744385,\n            \"Y\": 0.21261610090732574\n          },\n          {\n            \"X\": 0.5984185934066772,\n            \"Y\": 0.22007864713668823\n          },\n          {\n            \"X\": 0.5783100128173828,\n            \"Y\": 0.22006602585315704\n          }\n        ]\n      },\n      \"Id\": \"760ace5f-3d58-4302-9cd2-d1ed00b4b72e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9606704711914,\n      \"Text\": \"address\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041787195950746536,\n          \"Height\": 0.007615132723003626,\n          \"Left\": 0.6025001406669617,\n          \"Top\": 0.21246568858623505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6025001406669617,\n            \"Y\": 0.21246568858623505\n          },\n          {\n            \"X\": 0.6442840695381165,\n            \"Y\": 0.21249175071716309\n          },\n          {\n            \"X\": 0.6442872881889343,\n            \"Y\": 0.22008082270622253\n          },\n          {\n            \"X\": 0.6025031805038452,\n            \"Y\": 0.22005461156368256\n          }\n        ]\n      },\n      \"Id\": \"5b3e07f9-de8b-49bc-97ee-1382603a49a0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92263793945312,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011428233236074448,\n          \"Height\": 0.007631542161107063,\n          \"Left\": 0.6482394933700562,\n          \"Top\": 0.21221983432769775\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6482394933700562,\n            \"Y\": 0.21221983432769775\n          },\n          {\n            \"X\": 0.6596644520759583,\n            \"Y\": 0.2122269570827484\n          },\n          {\n            \"X\": 0.6596677303314209,\n            \"Y\": 0.21985137462615967\n          },\n          {\n            \"X\": 0.6482427716255188,\n            \"Y\": 0.21984420716762543\n          }\n        ]\n      },\n      \"Id\": \"2d948a47-276d-480b-a08c-b89ec7d7ad00\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9268569946289,\n      \"Text\": \"lender)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03654925152659416,\n          \"Height\": 0.008504961617290974,\n          \"Left\": 0.6635105609893799,\n          \"Top\": 0.21227388083934784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6635105609893799,\n            \"Y\": 0.21227388083934784\n          },\n          {\n            \"X\": 0.7000559568405151,\n            \"Y\": 0.21229666471481323\n          },\n          {\n            \"X\": 0.7000598311424255,\n            \"Y\": 0.22077885270118713\n          },\n          {\n            \"X\": 0.663514256477356,\n            \"Y\": 0.2207559049129486\n          }\n        ]\n      },\n      \"Id\": \"b046cc57-735b-41dc-843f-d362054f9708\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43556213378906,\n      \"Text\": \"Alejandro\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08298909664154053,\n          \"Height\": 0.014476766809821129,\n          \"Left\": 0.0764068141579628,\n          \"Top\": 0.23072995245456696\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0764068141579628,\n            \"Y\": 0.23072995245456696\n          },\n          {\n            \"X\": 0.15939341485500336,\n            \"Y\": 0.23078246414661407\n          },\n          {\n            \"X\": 0.15939590334892273,\n            \"Y\": 0.24520672857761383\n          },\n          {\n            \"X\": 0.07640869170427322,\n            \"Y\": 0.24515363574028015\n          }\n        ]\n      },\n      \"Id\": \"6220486d-2adb-4c84-b9cf-3e488804d07e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61064910888672,\n      \"Text\": \"Rosalez\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07067462801933289,\n          \"Height\": 0.012370132841169834,\n          \"Left\": 0.16554604470729828,\n          \"Top\": 0.23068639636039734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16554604470729828,\n            \"Y\": 0.23068639636039734\n          },\n          {\n            \"X\": 0.23621805012226105,\n            \"Y\": 0.23073109984397888\n          },\n          {\n            \"X\": 0.23622067272663116,\n            \"Y\": 0.243056520819664\n          },\n          {\n            \"X\": 0.16554822027683258,\n            \"Y\": 0.24301140010356903\n          }\n        ]\n      },\n      \"Id\": \"77ab2d6a-59c6-48f4-a387-30ae91ab75df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83040618896484,\n      \"Text\": \"Carlos\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05614779517054558,\n          \"Height\": 0.012112341821193695,\n          \"Left\": 0.5077346563339233,\n          \"Top\": 0.23191869258880615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5077346563339233,\n            \"Y\": 0.23191869258880615\n          },\n          {\n            \"X\": 0.5638778209686279,\n            \"Y\": 0.23195423185825348\n          },\n          {\n            \"X\": 0.5638824701309204,\n            \"Y\": 0.24403102695941925\n          },\n          {\n            \"X\": 0.5077389478683472,\n            \"Y\": 0.24399515986442566\n          }\n        ]\n      },\n      \"Id\": \"d6fde40c-5de5-447d-99a3-87d928e5992c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90570831298828,\n      \"Text\": \"Salazar\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06657563894987106,\n          \"Height\": 0.012064526788890362,\n          \"Left\": 0.5701357126235962,\n          \"Top\": 0.23185086250305176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5701357126235962,\n            \"Y\": 0.23185086250305176\n          },\n          {\n            \"X\": 0.6367062926292419,\n            \"Y\": 0.23189300298690796\n          },\n          {\n            \"X\": 0.6367113590240479,\n            \"Y\": 0.243915393948555\n          },\n          {\n            \"X\": 0.5701403617858887,\n            \"Y\": 0.24387286603450775\n          }\n        ]\n      },\n      \"Id\": \"75717fad-c5bc-47ff-9616-f924c7cbaa2f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91082763671875,\n      \"Text\": \"123\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030563466250896454,\n          \"Height\": 0.011765854433178902,\n          \"Left\": 0.07850758731365204,\n          \"Top\": 0.24587026238441467\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07850758731365204,\n            \"Y\": 0.24587026238441467\n          },\n          {\n            \"X\": 0.10906931757926941,\n            \"Y\": 0.245889812707901\n          },\n          {\n            \"X\": 0.10907105356454849,\n            \"Y\": 0.25763610005378723\n          },\n          {\n            \"X\": 0.0785091295838356,\n            \"Y\": 0.2576163709163666\n          }\n        ]\n      },\n      \"Id\": \"65498050-0219-421b-9879-f86d1b2a4827\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95868682861328,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03484424576163292,\n          \"Height\": 0.014793106354773045,\n          \"Left\": 0.11426227539777756,\n          \"Top\": 0.2459692358970642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11426227539777756,\n            \"Y\": 0.2459692358970642\n          },\n          {\n            \"X\": 0.1491040289402008,\n            \"Y\": 0.2459915429353714\n          },\n          {\n            \"X\": 0.14910651743412018,\n            \"Y\": 0.2607623338699341\n          },\n          {\n            \"X\": 0.11426448822021484,\n            \"Y\": 0.260739803314209\n          }\n        ]\n      },\n      \"Id\": \"8d53a13f-a28a-441f-b627-73bb3322b4c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97200012207031,\n      \"Text\": \"Street,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05630047619342804,\n          \"Height\": 0.013785723596811295,\n          \"Left\": 0.15435755252838135,\n          \"Top\": 0.24595968425273895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15435755252838135,\n            \"Y\": 0.24595968425273895\n          },\n          {\n            \"X\": 0.21065527200698853,\n            \"Y\": 0.24599571526050568\n          },\n          {\n            \"X\": 0.2106580287218094,\n            \"Y\": 0.25974541902542114\n          },\n          {\n            \"X\": 0.15435990691184998,\n            \"Y\": 0.2597090005874634\n          }\n        ]\n      },\n      \"Id\": \"c682e8f3-f0f2-4e37-83be-9d1b558326d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.978759765625,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03456830605864525,\n          \"Height\": 0.014850973151624203,\n          \"Left\": 0.21690739691257477,\n          \"Top\": 0.24591386318206787\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21690739691257477,\n            \"Y\": 0.24591386318206787\n          },\n          {\n            \"X\": 0.2514724135398865,\n            \"Y\": 0.24593597650527954\n          },\n          {\n            \"X\": 0.2514756917953491,\n            \"Y\": 0.26076483726501465\n          },\n          {\n            \"X\": 0.21691040694713593,\n            \"Y\": 0.2607424557209015\n          }\n        ]\n      },\n      \"Id\": \"50b8272c-23d5-4bf9-9149-9d6d8390ad59\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93985748291016,\n      \"Text\": \"Town,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052385907620191574,\n          \"Height\": 0.013947012834250927,\n          \"Left\": 0.2565879821777344,\n          \"Top\": 0.2457912564277649\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2565879821777344,\n            \"Y\": 0.2457912564277649\n          },\n          {\n            \"X\": 0.3089703917503357,\n            \"Y\": 0.24582478404045105\n          },\n          {\n            \"X\": 0.30897387862205505,\n            \"Y\": 0.2597382664680481\n          },\n          {\n            \"X\": 0.2565911114215851,\n            \"Y\": 0.2597044110298157\n          }\n        ]\n      },\n      \"Id\": \"3bf6e069-edee-4c55-90e8-788f6694aa56\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9557876586914,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03953014314174652,\n          \"Height\": 0.01199256256222725,\n          \"Left\": 0.3162931203842163,\n          \"Top\": 0.2457703799009323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3162931203842163,\n            \"Y\": 0.2457703799009323\n          },\n          {\n            \"X\": 0.3558199405670166,\n            \"Y\": 0.24579566717147827\n          },\n          {\n            \"X\": 0.35582324862480164,\n            \"Y\": 0.25776293873786926\n          },\n          {\n            \"X\": 0.31629616022109985,\n            \"Y\": 0.2577374279499054\n          }\n        ]\n      },\n      \"Id\": \"71f3cbc7-d35a-4a11-b2ea-35bad40a89a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98587799072266,\n      \"Text\": \"100\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03100900910794735,\n          \"Height\": 0.011959884315729141,\n          \"Left\": 0.5089336633682251,\n          \"Top\": 0.24697887897491455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5089336633682251,\n            \"Y\": 0.24697887897491455\n          },\n          {\n            \"X\": 0.53993821144104,\n            \"Y\": 0.24699874222278595\n          },\n          {\n            \"X\": 0.5399426221847534,\n            \"Y\": 0.2589387595653534\n          },\n          {\n            \"X\": 0.5089378952980042,\n            \"Y\": 0.25891873240470886\n          }\n        ]\n      },\n      \"Id\": \"31799381-ac00-48b1-95de-d01dee739837\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98481750488281,\n      \"Text\": \"Main\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04132227227091789,\n          \"Height\": 0.01186423934996128,\n          \"Left\": 0.5462462306022644,\n          \"Top\": 0.247106671333313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5462462306022644,\n            \"Y\": 0.247106671333313\n          },\n          {\n            \"X\": 0.5875638127326965,\n            \"Y\": 0.24713313579559326\n          },\n          {\n            \"X\": 0.5875685214996338,\n            \"Y\": 0.2589709162712097\n          },\n          {\n            \"X\": 0.5462506413459778,\n            \"Y\": 0.25894421339035034\n          }\n        ]\n      },\n      \"Id\": \"253cacec-63d7-4d58-969b-63641ba340ff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94300842285156,\n      \"Text\": \"Street,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056482039391994476,\n          \"Height\": 0.013933836482465267,\n          \"Left\": 0.5939772725105286,\n          \"Top\": 0.24701355397701263\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5939772725105286,\n            \"Y\": 0.24701355397701263\n          },\n          {\n            \"X\": 0.6504533290863037,\n            \"Y\": 0.2470497190952301\n          },\n          {\n            \"X\": 0.6504592895507812,\n            \"Y\": 0.2609473764896393\n          },\n          {\n            \"X\": 0.5939828157424927,\n            \"Y\": 0.26091083884239197\n          }\n        ]\n      },\n      \"Id\": \"e2924f0a-79d4-4121-8551-64c39b0074a1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87234497070312,\n      \"Text\": \"Anytown,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08043113350868225,\n          \"Height\": 0.014689677394926548,\n          \"Left\": 0.656000554561615,\n          \"Top\": 0.24694880843162537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.656000554561615,\n            \"Y\": 0.24694880843162537\n          },\n          {\n            \"X\": 0.7364247441291809,\n            \"Y\": 0.2470003068447113\n          },\n          {\n            \"X\": 0.7364316582679749,\n            \"Y\": 0.26163849234580994\n          },\n          {\n            \"X\": 0.6560068726539612,\n            \"Y\": 0.26158642768859863\n          }\n        ]\n      },\n      \"Id\": \"d206f461-a7f7-4bb9-b71d-0e2a6053a5c3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94515991210938,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03989815711975098,\n          \"Height\": 0.011992010287940502,\n          \"Left\": 0.7434543967247009,\n          \"Top\": 0.24697470664978027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7434543967247009,\n            \"Y\": 0.24697470664978027\n          },\n          {\n            \"X\": 0.7833466529846191,\n            \"Y\": 0.24700024724006653\n          },\n          {\n            \"X\": 0.7833525538444519,\n            \"Y\": 0.25896671414375305\n          },\n          {\n            \"X\": 0.7434601187705994,\n            \"Y\": 0.2589409351348877\n          }\n        ]\n      },\n      \"Id\": \"d10d4420-236c-40c9-a462-8dfab8335d7a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 79.1417465209961,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0032214962411671877,\n          \"Height\": 0.007862542755901814,\n          \"Left\": 0.04273388534784317,\n          \"Top\": 0.27338340878486633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04273388534784317,\n            \"Y\": 0.27338340878486633\n          },\n          {\n            \"X\": 0.04595448076725006,\n            \"Y\": 0.27338549494743347\n          },\n          {\n            \"X\": 0.04595538228750229,\n            \"Y\": 0.2812459468841553\n          },\n          {\n            \"X\": 0.0427347756922245,\n            \"Y\": 0.28124383091926575\n          }\n        ]\n      },\n      \"Id\": \"f9558348-565f-4706-a4bf-00c0ce0000fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9461441040039,\n      \"Text\": \"certify\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03346182405948639,\n          \"Height\": 0.009334118105471134,\n          \"Left\": 0.05099346116185188,\n          \"Top\": 0.2732628881931305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05099346116185188,\n            \"Y\": 0.2732628881931305\n          },\n          {\n            \"X\": 0.08445402979850769,\n            \"Y\": 0.2732847332954407\n          },\n          {\n            \"X\": 0.08445528149604797,\n            \"Y\": 0.28259700536727905\n          },\n          {\n            \"X\": 0.05099455267190933,\n            \"Y\": 0.28257498145103455\n          }\n        ]\n      },\n      \"Id\": \"25f515ee-48b7-4020-bfaa-d4d925ddb682\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97503662109375,\n      \"Text\": \"that\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02140575647354126,\n          \"Height\": 0.007726313080638647,\n          \"Left\": 0.0884450376033783,\n          \"Top\": 0.27347230911254883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0884450376033783,\n            \"Y\": 0.27347230911254883\n          },\n          {\n            \"X\": 0.10984965413808823,\n            \"Y\": 0.27348631620407104\n          },\n          {\n            \"X\": 0.10985079407691956,\n            \"Y\": 0.281198650598526\n          },\n          {\n            \"X\": 0.08844608813524246,\n            \"Y\": 0.281184583902359\n          }\n        ]\n      },\n      \"Id\": \"673690e4-09b7-4106-a876-166f1ff6bbe0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9725341796875,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019442584365606308,\n          \"Height\": 0.007844967767596245,\n          \"Left\": 0.11398541182279587,\n          \"Top\": 0.27318188548088074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11398541182279587,\n            \"Y\": 0.27318188548088074\n          },\n          {\n            \"X\": 0.1334267407655716,\n            \"Y\": 0.2731945812702179\n          },\n          {\n            \"X\": 0.13342799246311188,\n            \"Y\": 0.28102684020996094\n          },\n          {\n            \"X\": 0.11398658156394958,\n            \"Y\": 0.281014084815979\n          }\n        ]\n      },\n      \"Id\": \"9f15bf92-c281-4e60-9f62-ec5d28302cb2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82276916503906,\n      \"Text\": \"verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0584091916680336,\n          \"Height\": 0.008038395084440708,\n          \"Left\": 0.13719682395458221,\n          \"Top\": 0.2730158269405365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13719682395458221,\n            \"Y\": 0.2730158269405365\n          },\n          {\n            \"X\": 0.19560448825359344,\n            \"Y\": 0.27305397391319275\n          },\n          {\n            \"X\": 0.1956060230731964,\n            \"Y\": 0.28105422854423523\n          },\n          {\n            \"X\": 0.13719812035560608,\n            \"Y\": 0.2810158431529999\n          }\n        ]\n      },\n      \"Id\": \"20a7400f-aad9-40ea-80a8-9a473d66ac6a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94309997558594,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01875702477991581,\n          \"Height\": 0.007813690230250359,\n          \"Left\": 0.20009778439998627,\n          \"Top\": 0.27302852272987366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20009778439998627,\n            \"Y\": 0.27302852272987366\n          },\n          {\n            \"X\": 0.21885322034358978,\n            \"Y\": 0.273040771484375\n          },\n          {\n            \"X\": 0.21885481476783752,\n            \"Y\": 0.28084221482276917\n          },\n          {\n            \"X\": 0.20009930431842804,\n            \"Y\": 0.28082990646362305\n          }\n        ]\n      },\n      \"Id\": \"30e75930-d658-4250-90f7-21343235f6e3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93456268310547,\n      \"Text\": \"been\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02594359777867794,\n          \"Height\": 0.007774988189339638,\n          \"Left\": 0.22306689620018005,\n          \"Top\": 0.2730637788772583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22306689620018005,\n            \"Y\": 0.2730637788772583\n          },\n          {\n            \"X\": 0.24900878965854645,\n            \"Y\": 0.2730807065963745\n          },\n          {\n            \"X\": 0.24901048839092255,\n            \"Y\": 0.2808387577533722\n          },\n          {\n            \"X\": 0.2230684906244278,\n            \"Y\": 0.28082171082496643\n          }\n        ]\n      },\n      \"Id\": \"32624f5b-cfa3-4d3f-a578-e7e5f8d07429\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9525146484375,\n      \"Text\": \"sent\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023043831810355186,\n          \"Height\": 0.007031089626252651,\n          \"Left\": 0.2532597482204437,\n          \"Top\": 0.2737933397293091\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2532597482204437,\n            \"Y\": 0.2737933397293091\n          },\n          {\n            \"X\": 0.27630192041397095,\n            \"Y\": 0.27380838990211487\n          },\n          {\n            \"X\": 0.27630358934402466,\n            \"Y\": 0.2808244228363037\n          },\n          {\n            \"X\": 0.2532612979412079,\n            \"Y\": 0.28080928325653076\n          }\n        ]\n      },\n      \"Id\": \"9cdeff6d-723e-4b06-8303-11c2243edb02\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97513580322266,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03966972976922989,\n          \"Height\": 0.009557104669511318,\n          \"Left\": 0.2800086736679077,\n          \"Top\": 0.27288806438446045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2800086736679077,\n            \"Y\": 0.27288806438446045\n          },\n          {\n            \"X\": 0.3196759521961212,\n            \"Y\": 0.27291396260261536\n          },\n          {\n            \"X\": 0.319678395986557,\n            \"Y\": 0.28244516253471375\n          },\n          {\n            \"X\": 0.2800109088420868,\n            \"Y\": 0.2824190557003021\n          }\n        ]\n      },\n      \"Id\": \"73935f0c-9c00-4270-8158-4eb2815770f4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93102264404297,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011168683879077435,\n          \"Height\": 0.007188186515122652,\n          \"Left\": 0.3237042725086212,\n          \"Top\": 0.2736363410949707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3237042725086212,\n            \"Y\": 0.2736363410949707\n          },\n          {\n            \"X\": 0.3348710536956787,\n            \"Y\": 0.2736436426639557\n          },\n          {\n            \"X\": 0.3348729610443115,\n            \"Y\": 0.28082454204559326\n          },\n          {\n            \"X\": 0.32370612025260925,\n            \"Y\": 0.2808171808719635\n          }\n        ]\n      },\n      \"Id\": \"f4ea1e8e-185f-49b9-b77b-8468d69a55c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98217010498047,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01741679012775421,\n          \"Height\": 0.00764126144349575,\n          \"Left\": 0.3387848734855652,\n          \"Top\": 0.27314409613609314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3387848734855652,\n            \"Y\": 0.27314409613609314\n          },\n          {\n            \"X\": 0.35619956254959106,\n            \"Y\": 0.27315548062324524\n          },\n          {\n            \"X\": 0.3562016487121582,\n            \"Y\": 0.28078535199165344\n          },\n          {\n            \"X\": 0.33878690004348755,\n            \"Y\": 0.28077390789985657\n          }\n        ]\n      },\n      \"Id\": \"03f86f33-53d2-4b7f-a7a5-2c356b328d02\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92926025390625,\n      \"Text\": \"employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04993535950779915,\n          \"Height\": 0.009299831464886665,\n          \"Left\": 0.36011168360710144,\n          \"Top\": 0.27306312322616577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36011168360710144,\n            \"Y\": 0.27306312322616577\n          },\n          {\n            \"X\": 0.41004422307014465,\n            \"Y\": 0.2730957269668579\n          },\n          {\n            \"X\": 0.4100470542907715,\n            \"Y\": 0.2823629379272461\n          },\n          {\n            \"X\": 0.36011427640914917,\n            \"Y\": 0.28233012557029724\n          }\n        ]\n      },\n      \"Id\": \"dd4c29d8-e80d-437c-8490-d8a1b6a058ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98352813720703,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019988413900136948,\n          \"Height\": 0.0076428791508078575,\n          \"Left\": 0.4138818681240082,\n          \"Top\": 0.27301645278930664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4138818681240082,\n            \"Y\": 0.27301645278930664\n          },\n          {\n            \"X\": 0.433867871761322,\n            \"Y\": 0.27302950620651245\n          },\n          {\n            \"X\": 0.4338702857494354,\n            \"Y\": 0.2806593179702759\n          },\n          {\n            \"X\": 0.4138841927051544,\n            \"Y\": 0.2806462049484253\n          }\n        ]\n      },\n      \"Id\": \"9db43723-5f90-4ddb-bb35-f03349a667b6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9468765258789,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018984578549861908,\n          \"Height\": 0.007753425743430853,\n          \"Left\": 0.43838873505592346,\n          \"Top\": 0.2729008197784424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43838873505592346,\n            \"Y\": 0.2729008197784424\n          },\n          {\n            \"X\": 0.457370787858963,\n            \"Y\": 0.2729131877422333\n          },\n          {\n            \"X\": 0.45737332105636597,\n            \"Y\": 0.2806542217731476\n          },\n          {\n            \"X\": 0.43839120864868164,\n            \"Y\": 0.2806417644023895\n          }\n        ]\n      },\n      \"Id\": \"e56bed13-0c3e-40fa-939a-72476c512317\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97977447509766,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017907554283738136,\n          \"Height\": 0.007020986173301935,\n          \"Left\": 0.4614786207675934,\n          \"Top\": 0.2735579013824463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4614786207675934,\n            \"Y\": 0.2735579013824463\n          },\n          {\n            \"X\": 0.47938379645347595,\n            \"Y\": 0.27356961369514465\n          },\n          {\n            \"X\": 0.47938618063926697,\n            \"Y\": 0.2805788815021515\n          },\n          {\n            \"X\": 0.4614809453487396,\n            \"Y\": 0.28056713938713074\n          }\n        ]\n      },\n      \"Id\": \"73da74b0-8d1d-465d-8d43-b889a11bf5a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9427719116211,\n      \"Text\": \"passed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03715805336833,\n          \"Height\": 0.009129172191023827,\n          \"Left\": 0.48296207189559937,\n          \"Top\": 0.2728484570980072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48296207189559937,\n            \"Y\": 0.2728484570980072\n          },\n          {\n            \"X\": 0.5201168060302734,\n            \"Y\": 0.2728727161884308\n          },\n          {\n            \"X\": 0.5201200842857361,\n            \"Y\": 0.2819776237010956\n          },\n          {\n            \"X\": 0.4829651713371277,\n            \"Y\": 0.28195321559906006\n          }\n        ]\n      },\n      \"Id\": \"08b1f735-7415-460a-9f6b-a05115a591da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98844146728516,\n      \"Text\": \"through\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04270302504301071,\n          \"Height\": 0.009678271599113941,\n          \"Left\": 0.5243955850601196,\n          \"Top\": 0.27286726236343384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5243955850601196,\n            \"Y\": 0.27286726236343384\n          },\n          {\n            \"X\": 0.5670949220657349,\n            \"Y\": 0.27289512753486633\n          },\n          {\n            \"X\": 0.5670986175537109,\n            \"Y\": 0.2825455069541931\n          },\n          {\n            \"X\": 0.5243991017341614,\n            \"Y\": 0.2825174331665039\n          }\n        ]\n      },\n      \"Id\": \"cf15de84-b873-4231-9b03-fd81a3f14d4b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98017883300781,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017326928675174713,\n          \"Height\": 0.00751399016007781,\n          \"Left\": 0.5711756348609924,\n          \"Top\": 0.27294278144836426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5711756348609924,\n            \"Y\": 0.27294278144836426\n          },\n          {\n            \"X\": 0.5884995460510254,\n            \"Y\": 0.2729540765285492\n          },\n          {\n            \"X\": 0.5885025262832642,\n            \"Y\": 0.2804567813873291\n          },\n          {\n            \"X\": 0.5711784958839417,\n            \"Y\": 0.280445396900177\n          }\n        ]\n      },\n      \"Id\": \"4a4b9ab6-0e99-484a-b13e-f3191db2f880\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88612365722656,\n      \"Text\": \"hands\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03254583850502968,\n          \"Height\": 0.007920501753687859,\n          \"Left\": 0.5928199887275696,\n          \"Top\": 0.27270546555519104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5928199887275696,\n            \"Y\": 0.27270546555519104\n          },\n          {\n            \"X\": 0.6253625750541687,\n            \"Y\": 0.27272671461105347\n          },\n          {\n            \"X\": 0.6253658533096313,\n            \"Y\": 0.28062596917152405\n          },\n          {\n            \"X\": 0.5928231477737427,\n            \"Y\": 0.28060460090637207\n          }\n        ]\n      },\n      \"Id\": \"ae896621-c08d-4262-b5b6-17997096f26d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95568084716797,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01153395976871252,\n          \"Height\": 0.007871977984905243,\n          \"Left\": 0.6292722225189209,\n          \"Top\": 0.272627592086792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6292722225189209,\n            \"Y\": 0.272627592086792\n          },\n          {\n            \"X\": 0.6408028602600098,\n            \"Y\": 0.2726351320743561\n          },\n          {\n            \"X\": 0.6408061385154724,\n            \"Y\": 0.28049957752227783\n          },\n          {\n            \"X\": 0.6292755007743835,\n            \"Y\": 0.28049200773239136\n          }\n        ]\n      },\n      \"Id\": \"5a12c7b7-c605-47fa-8757-f28bc7d73b33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9668197631836,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017299644649028778,\n          \"Height\": 0.007637156639248133,\n          \"Left\": 0.6445386409759521,\n          \"Top\": 0.27288585901260376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6445386409759521,\n            \"Y\": 0.27288585901260376\n          },\n          {\n            \"X\": 0.6618349552154541,\n            \"Y\": 0.2728971540927887\n          },\n          {\n            \"X\": 0.6618382930755615,\n            \"Y\": 0.28052303194999695\n          },\n          {\n            \"X\": 0.64454185962677,\n            \"Y\": 0.28051167726516724\n          }\n        ]\n      },\n      \"Id\": \"5e71c3cf-0176-4502-898c-6e5cfcd7638e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8738021850586,\n      \"Text\": \"applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04960072040557861,\n          \"Height\": 0.00945343542844057,\n          \"Left\": 0.6657611131668091,\n          \"Top\": 0.2725888192653656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6657611131668091,\n            \"Y\": 0.2725888192653656\n          },\n          {\n            \"X\": 0.7153574824333191,\n            \"Y\": 0.272621214389801\n          },\n          {\n            \"X\": 0.7153618335723877,\n            \"Y\": 0.2820422649383545\n          },\n          {\n            \"X\": 0.6657652258872986,\n            \"Y\": 0.28200966119766235\n          }\n        ]\n      },\n      \"Id\": \"1491384f-1362-4be7-b417-b429e544b49f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86050415039062,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011393030174076557,\n          \"Height\": 0.0059990170411765575,\n          \"Left\": 0.719265878200531,\n          \"Top\": 0.2744341194629669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.719265878200531,\n            \"Y\": 0.2744341194629669\n          },\n          {\n            \"X\": 0.730656087398529,\n            \"Y\": 0.27444157004356384\n          },\n          {\n            \"X\": 0.7306589484214783,\n            \"Y\": 0.28043311834335327\n          },\n          {\n            \"X\": 0.7192686796188354,\n            \"Y\": 0.28042566776275635\n          }\n        ]\n      },\n      \"Id\": \"7efbbdce-c054-4ba4-adc9-dfd1f96c754f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98580169677734,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019740132614970207,\n          \"Height\": 0.007822097279131413,\n          \"Left\": 0.7344934344291687,\n          \"Top\": 0.27426236867904663\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7344934344291687,\n            \"Y\": 0.27426236867904663\n          },\n          {\n            \"X\": 0.7542297840118408,\n            \"Y\": 0.2742752730846405\n          },\n          {\n            \"X\": 0.7542335391044617,\n            \"Y\": 0.28208446502685547\n          },\n          {\n            \"X\": 0.7344971299171448,\n            \"Y\": 0.2820715010166168\n          }\n        ]\n      },\n      \"Id\": \"0c0e4833-5ad1-465f-a66d-f44789c7a37d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9449462890625,\n      \"Text\": \"other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02848830260336399,\n          \"Height\": 0.0076846531592309475,\n          \"Left\": 0.7582868933677673,\n          \"Top\": 0.2727680802345276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7582868933677673,\n            \"Y\": 0.2727680802345276\n          },\n          {\n            \"X\": 0.7867713570594788,\n            \"Y\": 0.2727866768836975\n          },\n          {\n            \"X\": 0.7867751717567444,\n            \"Y\": 0.2804527282714844\n          },\n          {\n            \"X\": 0.7582905888557434,\n            \"Y\": 0.2804340124130249\n          }\n        ]\n      },\n      \"Id\": \"0911c989-3420-4d05-8986-a9625dc97433\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86921691894531,\n      \"Text\": \"interested\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052703212946653366,\n          \"Height\": 0.007810739800333977,\n          \"Left\": 0.7904561161994934,\n          \"Top\": 0.27249354124069214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7904561161994934,\n            \"Y\": 0.27249354124069214\n          },\n          {\n            \"X\": 0.8431552648544312,\n            \"Y\": 0.27252793312072754\n          },\n          {\n            \"X\": 0.8431593179702759,\n            \"Y\": 0.28030428290367126\n          },\n          {\n            \"X\": 0.7904599905014038,\n            \"Y\": 0.28026968240737915\n          }\n        ]\n      },\n      \"Id\": \"10f7c8d9-e32f-4d0d-9633-b1846942f8c2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.385986328125,\n      \"Text\": \"party.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03121744468808174,\n          \"Height\": 0.00887357722967863,\n          \"Left\": 0.8471481800079346,\n          \"Top\": 0.27309322357177734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8471481800079346,\n            \"Y\": 0.27309322357177734\n          },\n          {\n            \"X\": 0.8783607482910156,\n            \"Y\": 0.2731136083602905\n          },\n          {\n            \"X\": 0.8783655762672424,\n            \"Y\": 0.28196680545806885\n          },\n          {\n            \"X\": 0.847152829170227,\n            \"Y\": 0.2819463014602661\n          }\n        ]\n      },\n      \"Id\": \"3b9cd39a-c7d5-4754-8d1d-68e4606acbf3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49162292480469,\n      \"Text\": \"3.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009723510593175888,\n          \"Height\": 0.007732580881565809,\n          \"Left\": 0.042545825242996216,\n          \"Top\": 0.28845611214637756\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042545825242996216,\n            \"Y\": 0.28845611214637756\n          },\n          {\n            \"X\": 0.05226842686533928,\n            \"Y\": 0.2884625494480133\n          },\n          {\n            \"X\": 0.052269335836172104,\n            \"Y\": 0.29618871212005615\n          },\n          {\n            \"X\": 0.042546696960926056,\n            \"Y\": 0.296182245016098\n          }\n        ]\n      },\n      \"Id\": \"1e4b8495-6c17-49ed-85e9-ea817b5e65a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93638610839844,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05096273124217987,\n          \"Height\": 0.009529286995530128,\n          \"Left\": 0.057852137833833694,\n          \"Top\": 0.28822046518325806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057852137833833694,\n            \"Y\": 0.28822046518325806\n          },\n          {\n            \"X\": 0.10881347209215164,\n            \"Y\": 0.28825414180755615\n          },\n          {\n            \"X\": 0.10881487280130386,\n            \"Y\": 0.29774975776672363\n          },\n          {\n            \"X\": 0.05785328522324562,\n            \"Y\": 0.29771584272384644\n          }\n        ]\n      },\n      \"Id\": \"e1129dbe-b9f8-4836-a61e-444dd6e5ebec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95372009277344,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011262294836342335,\n          \"Height\": 0.007941286079585552,\n          \"Left\": 0.11332427710294724,\n          \"Top\": 0.28821927309036255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11332427710294724,\n            \"Y\": 0.28821927309036255\n          },\n          {\n            \"X\": 0.1245853379368782,\n            \"Y\": 0.2882266938686371\n          },\n          {\n            \"X\": 0.1245865747332573,\n            \"Y\": 0.2961605489253998\n          },\n          {\n            \"X\": 0.11332546174526215,\n            \"Y\": 0.29615306854248047\n          }\n        ]\n      },\n      \"Id\": \"b7168b73-f2c2-4638-ae03-71cc394132d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81363677978516,\n      \"Text\": \"Lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036653921008110046,\n          \"Height\": 0.007786440663039684,\n          \"Left\": 0.12921816110610962,\n          \"Top\": 0.28819504380226135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12921816110610962,\n            \"Y\": 0.28819504380226135\n          },\n          {\n            \"X\": 0.16587071120738983,\n            \"Y\": 0.28821924328804016\n          },\n          {\n            \"X\": 0.16587208211421967,\n            \"Y\": 0.2959814965724945\n          },\n          {\n            \"X\": 0.12921938300132751,\n            \"Y\": 0.29595714807510376\n          }\n        ]\n      },\n      \"Id\": \"256277a0-609d-4263-8cda-3532048ee054\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7665786743164,\n      \"Text\": \"4.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009670700877904892,\n          \"Height\": 0.007799915038049221,\n          \"Left\": 0.3738478422164917,\n          \"Top\": 0.2880142033100128\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3738478422164917,\n            \"Y\": 0.2880142033100128\n          },\n          {\n            \"X\": 0.3835162818431854,\n            \"Y\": 0.2880205810070038\n          },\n          {\n            \"X\": 0.3835185468196869,\n            \"Y\": 0.2958141267299652\n          },\n          {\n            \"X\": 0.3738500773906708,\n            \"Y\": 0.29580768942832947\n          }\n        ]\n      },\n      \"Id\": \"059e0927-e168-45e1-85ca-360a2a7e5882\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93246459960938,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023802300915122032,\n          \"Height\": 0.007944190874695778,\n          \"Left\": 0.38867974281311035,\n          \"Top\": 0.2878305912017822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38867974281311035,\n            \"Y\": 0.2878305912017822\n          },\n          {\n            \"X\": 0.4124796390533447,\n            \"Y\": 0.28784632682800293\n          },\n          {\n            \"X\": 0.41248205304145813,\n            \"Y\": 0.29577478766441345\n          },\n          {\n            \"X\": 0.3886820673942566,\n            \"Y\": 0.295758992433548\n          }\n        ]\n      },\n      \"Id\": \"6852c8b6-d814-4f93-a4c8-126c9ed2c221\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82227325439453,\n      \"Text\": \"5.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009927395731210709,\n          \"Height\": 0.007818634621798992,\n          \"Left\": 0.6278469562530518,\n          \"Top\": 0.2877137064933777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6278469562530518,\n            \"Y\": 0.2877137064933777\n          },\n          {\n            \"X\": 0.6377710700035095,\n            \"Y\": 0.287720263004303\n          },\n          {\n            \"X\": 0.6377743482589722,\n            \"Y\": 0.29553234577178955\n          },\n          {\n            \"X\": 0.6278502345085144,\n            \"Y\": 0.29552575945854187\n          }\n        ]\n      },\n      \"Id\": \"977fdeb1-150d-4ce7-8f90-ba24f22b4874\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95204162597656,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025235239416360855,\n          \"Height\": 0.007955584675073624,\n          \"Left\": 0.6434181332588196,\n          \"Top\": 0.28765878081321716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6434181332588196,\n            \"Y\": 0.28765878081321716\n          },\n          {\n            \"X\": 0.6686498522758484,\n            \"Y\": 0.2876754403114319\n          },\n          {\n            \"X\": 0.6686533689498901,\n            \"Y\": 0.2956143915653229\n          },\n          {\n            \"X\": 0.643421471118927,\n            \"Y\": 0.2955976128578186\n          }\n        ]\n      },\n      \"Id\": \"4a79b9c4-02a0-4bcb-8448-1dcfc6bcd961\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.782470703125,\n      \"Text\": \"6.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010081733576953411,\n          \"Height\": 0.007716598454862833,\n          \"Left\": 0.7452970743179321,\n          \"Top\": 0.28762227296829224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7452970743179321,\n            \"Y\": 0.28762227296829224\n          },\n          {\n            \"X\": 0.7553750872612,\n            \"Y\": 0.2876289188861847\n          },\n          {\n            \"X\": 0.755378782749176,\n            \"Y\": 0.29533886909484863\n          },\n          {\n            \"X\": 0.7453007102012634,\n            \"Y\": 0.2953321635723114\n          }\n        ]\n      },\n      \"Id\": \"ebafb3f4-a9ec-481e-a267-da2aaaf659fd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7647933959961,\n      \"Text\": \"Lender's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046339213848114014,\n          \"Height\": 0.00803519506007433,\n          \"Left\": 0.7605830430984497,\n          \"Top\": 0.28759706020355225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7605830430984497,\n            \"Y\": 0.28759706020355225\n          },\n          {\n            \"X\": 0.8069181442260742,\n            \"Y\": 0.287627637386322\n          },\n          {\n            \"X\": 0.8069222569465637,\n            \"Y\": 0.2956322431564331\n          },\n          {\n            \"X\": 0.7605869174003601,\n            \"Y\": 0.295601487159729\n          }\n        ]\n      },\n      \"Id\": \"975f44f4-5640-4cfa-9e5c-b4094399628e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94615936279297,\n      \"Text\": \"Number\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04310153052210808,\n          \"Height\": 0.0078700827434659,\n          \"Left\": 0.8109529614448547,\n          \"Top\": 0.2875678241252899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8109529614448547,\n            \"Y\": 0.2875678241252899\n          },\n          {\n            \"X\": 0.8540502786636353,\n            \"Y\": 0.28759628534317017\n          },\n          {\n            \"X\": 0.8540545105934143,\n            \"Y\": 0.29543793201446533\n          },\n          {\n            \"X\": 0.8109569549560547,\n            \"Y\": 0.29540932178497314\n          }\n        ]\n      },\n      \"Id\": \"378dcc4c-8ed0-4b82-99a7-e77de814248b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68692016601562,\n      \"Text\": \"(Optional)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05216611549258232,\n          \"Height\": 0.009373906068503857,\n          \"Left\": 0.7604327201843262,\n          \"Top\": 0.297652930021286\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7604327201843262,\n            \"Y\": 0.297652930021286\n          },\n          {\n            \"X\": 0.8125939965248108,\n            \"Y\": 0.2976876199245453\n          },\n          {\n            \"X\": 0.8125988245010376,\n            \"Y\": 0.30702683329582214\n          },\n          {\n            \"X\": 0.7604372501373291,\n            \"Y\": 0.30699193477630615\n          }\n        ]\n      },\n      \"Id\": \"ee983cfe-4d76-4f05-a2a4-7d5f68668f67\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.54838562011719,\n      \"Text\": \"Carlos\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06513915956020355,\n          \"Height\": 0.017320817336440086,\n          \"Left\": 0.12941403687000275,\n          \"Top\": 0.3004801273345947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12941403687000275,\n            \"Y\": 0.3004801273345947\n          },\n          {\n            \"X\": 0.19454988837242126,\n            \"Y\": 0.3005235493183136\n          },\n          {\n            \"X\": 0.1945531964302063,\n            \"Y\": 0.31780096888542175\n          },\n          {\n            \"X\": 0.12941676378250122,\n            \"Y\": 0.3177570104598999\n          }\n        ]\n      },\n      \"Id\": \"7124d907-3c3e-4538-aa61-500154c18cde\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16009521484375,\n      \"Text\": \"Salazar\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07786650955677032,\n          \"Height\": 0.02740841917693615,\n          \"Left\": 0.1997881978750229,\n          \"Top\": 0.3011525273323059\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1997881978750229,\n            \"Y\": 0.3011525273323059\n          },\n          {\n            \"X\": 0.27764829993247986,\n            \"Y\": 0.3012044429779053\n          },\n          {\n            \"X\": 0.2776547074317932,\n            \"Y\": 0.3285609483718872\n          },\n          {\n            \"X\": 0.1997935175895691,\n            \"Y\": 0.3285079896450043\n          }\n        ]\n      },\n      \"Id\": \"cd6e2f36-d729-46ce-aba9-c09c955f0186\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9729232788086,\n      \"Text\": \"Project\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050822991877794266,\n          \"Height\": 0.012626425363123417,\n          \"Left\": 0.4084278643131256,\n          \"Top\": 0.30551546812057495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4084278643131256,\n            \"Y\": 0.30551546812057495\n          },\n          {\n            \"X\": 0.4592467248439789,\n            \"Y\": 0.3055494427680969\n          },\n          {\n            \"X\": 0.45925086736679077,\n            \"Y\": 0.3181418776512146\n          },\n          {\n            \"X\": 0.40843167901039124,\n            \"Y\": 0.31810757517814636\n          }\n        ]\n      },\n      \"Id\": \"853b1c3e-50de-40e5-af48-ff7d30d0adb3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97807312011719,\n      \"Text\": \"Manager\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06498683243989944,\n          \"Height\": 0.012734721414744854,\n          \"Left\": 0.4635288119316101,\n          \"Top\": 0.30558568239212036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4635288119316101,\n            \"Y\": 0.30558568239212036\n          },\n          {\n            \"X\": 0.5285109877586365,\n            \"Y\": 0.305629163980484\n          },\n          {\n            \"X\": 0.528515636920929,\n            \"Y\": 0.3183204233646393\n          },\n          {\n            \"X\": 0.4635330140590668,\n            \"Y\": 0.3182765543460846\n          }\n        ]\n      },\n      \"Id\": \"82bc3f1d-8021-47b8-88a8-ac7cb9b039ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.889404296875,\n      \"Text\": \"12/12/2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08054124563932419,\n          \"Height\": 0.010394430719316006,\n          \"Left\": 0.6367756724357605,\n          \"Top\": 0.3079544007778168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6367756724357605,\n            \"Y\": 0.3079544007778168\n          },\n          {\n            \"X\": 0.7173121571540833,\n            \"Y\": 0.3080083429813385\n          },\n          {\n            \"X\": 0.7173169255256653,\n            \"Y\": 0.31834882497787476\n          },\n          {\n            \"X\": 0.6367800235748291,\n            \"Y\": 0.3182944655418396\n          }\n        ]\n      },\n      \"Id\": \"4889183d-96eb-4ed0-9d1e-9ebb65f256b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8731460571289,\n      \"Text\": \"5555-5555-5555\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1201208159327507,\n          \"Height\": 0.010211009532213211,\n          \"Left\": 0.7611150741577148,\n          \"Top\": 0.31397759914398193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7611150741577148,\n            \"Y\": 0.31397759914398193\n          },\n          {\n            \"X\": 0.8812302947044373,\n            \"Y\": 0.31405842304229736\n          },\n          {\n            \"X\": 0.8812358975410461,\n            \"Y\": 0.32418861985206604\n          },\n          {\n            \"X\": 0.7611199617385864,\n            \"Y\": 0.32410722970962524\n          }\n        ]\n      },\n      \"Id\": \"cce72047-c070-47fe-9518-2eae230d552c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.59857177734375,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.002928756643086672,\n          \"Height\": 0.007371778599917889,\n          \"Left\": 0.04299096390604973,\n          \"Top\": 0.3340599536895752\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04299096390604973,\n            \"Y\": 0.3340599536895752\n          },\n          {\n            \"X\": 0.04591887816786766,\n            \"Y\": 0.33406195044517517\n          },\n          {\n            \"X\": 0.04591972008347511,\n            \"Y\": 0.34143173694610596\n          },\n          {\n            \"X\": 0.042991798371076584,\n            \"Y\": 0.341429740190506\n          }\n        ]\n      },\n      \"Id\": \"d0bee3b0-7c53-45f9-a3e1-a5da010d472e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98533630371094,\n      \"Text\": \"have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02517537586390972,\n          \"Height\": 0.0076130288653075695,\n          \"Left\": 0.05093271657824516,\n          \"Top\": 0.3340200185775757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05093271657824516,\n            \"Y\": 0.3340200185775757\n          },\n          {\n            \"X\": 0.07610709965229034,\n            \"Y\": 0.3340372145175934\n          },\n          {\n            \"X\": 0.07610809057950974,\n            \"Y\": 0.34163305163383484\n          },\n          {\n            \"X\": 0.050933606922626495,\n            \"Y\": 0.34161576628685\n          }\n        ]\n      },\n      \"Id\": \"e77d89c0-22ad-4a33-af21-6139ff643072\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91847229003906,\n      \"Text\": \"applied\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0377449207007885,\n          \"Height\": 0.009111442603170872,\n          \"Left\": 0.08032161742448807,\n          \"Top\": 0.33393752574920654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08032161742448807,\n            \"Y\": 0.33393752574920654\n          },\n          {\n            \"X\": 0.11806515604257584,\n            \"Y\": 0.3339632749557495\n          },\n          {\n            \"X\": 0.11806653439998627,\n            \"Y\": 0.34304895997047424\n          },\n          {\n            \"X\": 0.08032281696796417,\n            \"Y\": 0.34302303194999695\n          }\n        ]\n      },\n      \"Id\": \"45237841-2476-4b7a-9296-3cfdedb5d562\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97058868408203,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015369336120784283,\n          \"Height\": 0.007734276354312897,\n          \"Left\": 0.12261540442705154,\n          \"Top\": 0.3336685597896576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12261540442705154,\n            \"Y\": 0.3336685597896576\n          },\n          {\n            \"X\": 0.13798348605632782,\n            \"Y\": 0.33367905020713806\n          },\n          {\n            \"X\": 0.1379847377538681,\n            \"Y\": 0.3414028286933899\n          },\n          {\n            \"X\": 0.12261659651994705,\n            \"Y\": 0.34139227867126465\n          }\n        ]\n      },\n      \"Id\": \"7fd7ed7f-74d1-4bf7-91f0-37d5b169338b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73571014404297,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006387027911841869,\n          \"Height\": 0.005909048020839691,\n          \"Left\": 0.1418432742357254,\n          \"Top\": 0.3354369103908539\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1418432742357254,\n            \"Y\": 0.3354369103908539\n          },\n          {\n            \"X\": 0.14822930097579956,\n            \"Y\": 0.3354412913322449\n          },\n          {\n            \"X\": 0.14823029935359955,\n            \"Y\": 0.34134596586227417\n          },\n          {\n            \"X\": 0.141844242811203,\n            \"Y\": 0.3413415849208832\n          }\n        ]\n      },\n      \"Id\": \"c0f4bdcc-2515-46d7-9cf8-535aebd1d64b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89134979248047,\n      \"Text\": \"mortgage\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0511343777179718,\n          \"Height\": 0.009019020013511181,\n          \"Left\": 0.15238222479820251,\n          \"Top\": 0.33421552181243896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15238222479820251,\n            \"Y\": 0.33421552181243896\n          },\n          {\n            \"X\": 0.20351484417915344,\n            \"Y\": 0.33425042033195496\n          },\n          {\n            \"X\": 0.20351660251617432,\n            \"Y\": 0.3432345390319824\n          },\n          {\n            \"X\": 0.1523837447166443,\n            \"Y\": 0.34319940209388733\n          }\n        ]\n      },\n      \"Id\": \"560931b3-e85b-430c-8951-efb4e86f986a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93627166748047,\n      \"Text\": \"loan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022351738065481186,\n          \"Height\": 0.007607121020555496,\n          \"Left\": 0.20818978548049927,\n          \"Top\": 0.3336763381958008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20818978548049927,\n            \"Y\": 0.3336763381958008\n          },\n          {\n            \"X\": 0.230539932847023,\n            \"Y\": 0.3336915969848633\n          },\n          {\n            \"X\": 0.23054152727127075,\n            \"Y\": 0.3412834703922272\n          },\n          {\n            \"X\": 0.20819129049777985,\n            \"Y\": 0.3412681221961975\n          }\n        ]\n      },\n      \"Id\": \"26268dbb-cc01-406e-a31b-3e6768ca31a3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98065948486328,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01992367021739483,\n          \"Height\": 0.0076539102010428905,\n          \"Left\": 0.23491396009922028,\n          \"Top\": 0.33356794714927673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23491396009922028,\n            \"Y\": 0.33356794714927673\n          },\n          {\n            \"X\": 0.25483593344688416,\n            \"Y\": 0.3335815370082855\n          },\n          {\n            \"X\": 0.25483763217926025,\n            \"Y\": 0.3412218689918518\n          },\n          {\n            \"X\": 0.2349155843257904,\n            \"Y\": 0.34120818972587585\n          }\n        ]\n      },\n      \"Id\": \"2a1b3a8a-6800-4f0e-ae00-0600a0e45b4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96736907958984,\n      \"Text\": \"stated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03284921497106552,\n          \"Height\": 0.007922543212771416,\n          \"Left\": 0.25940150022506714,\n          \"Top\": 0.3334442675113678\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25940150022506714,\n            \"Y\": 0.3334442675113678\n          },\n          {\n            \"X\": 0.29224881529808044,\n            \"Y\": 0.33346667885780334\n          },\n          {\n            \"X\": 0.29225072264671326,\n            \"Y\": 0.34136682748794556\n          },\n          {\n            \"X\": 0.2594032883644104,\n            \"Y\": 0.34134426712989807\n          }\n        ]\n      },\n      \"Id\": \"ca2e66d8-d496-49ec-beef-2b4763d4a3c5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9243392944336,\n      \"Text\": \"that\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021876133978366852,\n          \"Height\": 0.007756085600703955,\n          \"Left\": 0.296284556388855,\n          \"Top\": 0.3335375487804413\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.296284556388855,\n            \"Y\": 0.3335375487804413\n          },\n          {\n            \"X\": 0.31815871596336365,\n            \"Y\": 0.33355244994163513\n          },\n          {\n            \"X\": 0.31816068291664124,\n            \"Y\": 0.3412936329841614\n          },\n          {\n            \"X\": 0.2962864637374878,\n            \"Y\": 0.341278612613678\n          }\n        ]\n      },\n      \"Id\": \"532ecff9-2162-4878-836a-21c39196e240\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.99056243896484,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0033625788055360317,\n          \"Height\": 0.007540447171777487,\n          \"Left\": 0.32223033905029297,\n          \"Top\": 0.3336416482925415\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32223033905029297,\n            \"Y\": 0.3336416482925415\n          },\n          {\n            \"X\": 0.32559096813201904,\n            \"Y\": 0.33364394307136536\n          },\n          {\n            \"X\": 0.32559290528297424,\n            \"Y\": 0.34118208289146423\n          },\n          {\n            \"X\": 0.32223227620124817,\n            \"Y\": 0.3411797881126404\n          }\n        ]\n      },\n      \"Id\": \"ede3547d-d211-405c-88e7-6187be24c27a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9131851196289,\n      \"Text\": \"am\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016732966527342796,\n          \"Height\": 0.00601110327988863,\n          \"Left\": 0.3297540545463562,\n          \"Top\": 0.33526524901390076\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3297540545463562,\n            \"Y\": 0.33526524901390076\n          },\n          {\n            \"X\": 0.3464853763580322,\n            \"Y\": 0.33527669310569763\n          },\n          {\n            \"X\": 0.34648701548576355,\n            \"Y\": 0.3412763774394989\n          },\n          {\n            \"X\": 0.32975560426712036,\n            \"Y\": 0.34126487374305725\n          }\n        ]\n      },\n      \"Id\": \"10f6745e-cc9b-4cea-9563-37847d37473e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92745971679688,\n      \"Text\": \"now\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02364948019385338,\n          \"Height\": 0.005945679731667042,\n          \"Left\": 0.35083845257759094,\n          \"Top\": 0.33528706431388855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35083845257759094,\n            \"Y\": 0.33528706431388855\n          },\n          {\n            \"X\": 0.3744862675666809,\n            \"Y\": 0.3353032171726227\n          },\n          {\n            \"X\": 0.3744879364967346,\n            \"Y\": 0.3412327468395233\n          },\n          {\n            \"X\": 0.35084009170532227,\n            \"Y\": 0.341216504573822\n          }\n        ]\n      },\n      \"Id\": \"16f07aea-66d2-4f44-9468-247c543cb0d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8982162475586,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011363783851265907,\n          \"Height\": 0.006100577302277088,\n          \"Left\": 0.3786398470401764,\n          \"Top\": 0.33515575528144836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3786398470401764,\n            \"Y\": 0.33515575528144836\n          },\n          {\n            \"X\": 0.3900018334388733,\n            \"Y\": 0.33516353368759155\n          },\n          {\n            \"X\": 0.39000362157821655,\n            \"Y\": 0.34125635027885437\n          },\n          {\n            \"X\": 0.3786415755748749,\n            \"Y\": 0.3412485420703888\n          }\n        ]\n      },\n      \"Id\": \"4367c23d-9cd9-463b-bb1a-ee42cac19977\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94449615478516,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021926172077655792,\n          \"Height\": 0.006023361813277006,\n          \"Left\": 0.3934287428855896,\n          \"Top\": 0.33517470955848694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3934287428855896,\n            \"Y\": 0.33517470955848694\n          },\n          {\n            \"X\": 0.41535305976867676,\n            \"Y\": 0.33518967032432556\n          },\n          {\n            \"X\": 0.4153549075126648,\n            \"Y\": 0.34119805693626404\n          },\n          {\n            \"X\": 0.3934305012226105,\n            \"Y\": 0.34118300676345825\n          }\n        ]\n      },\n      \"Id\": \"7963f009-20bc-4510-b235-d4879d66a75a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86920166015625,\n      \"Text\": \"formerly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0452231802046299,\n          \"Height\": 0.009234711527824402,\n          \"Left\": 0.41896697878837585,\n          \"Top\": 0.3333199620246887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41896697878837585,\n            \"Y\": 0.3333199620246887\n          },\n          {\n            \"X\": 0.4641871154308319,\n            \"Y\": 0.3333508372306824\n          },\n          {\n            \"X\": 0.46419015526771545,\n            \"Y\": 0.3425546884536743\n          },\n          {\n            \"X\": 0.4189698100090027,\n            \"Y\": 0.34252363443374634\n          }\n        ]\n      },\n      \"Id\": \"187397da-0cfb-4d4b-9cb9-093b1f914a1e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96024322509766,\n      \"Text\": \"employed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05198356509208679,\n          \"Height\": 0.009241344407200813,\n          \"Left\": 0.4679971933364868,\n          \"Top\": 0.3333452641963959\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4679971933364868,\n            \"Y\": 0.3333452641963959\n          },\n          {\n            \"X\": 0.5199774503707886,\n            \"Y\": 0.33338072896003723\n          },\n          {\n            \"X\": 0.519980788230896,\n            \"Y\": 0.34258660674095154\n          },\n          {\n            \"X\": 0.46800026297569275,\n            \"Y\": 0.3425509035587311\n          }\n        ]\n      },\n      \"Id\": \"3f7fbe9c-9a15-4711-8116-b74e3c1a01b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.962646484375,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013710792176425457,\n          \"Height\": 0.009076690301299095,\n          \"Left\": 0.5243284702301025,\n          \"Top\": 0.3333680331707001\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5243284702301025,\n            \"Y\": 0.3333680331707001\n          },\n          {\n            \"X\": 0.5380358695983887,\n            \"Y\": 0.3333773910999298\n          },\n          {\n            \"X\": 0.5380392670631409,\n            \"Y\": 0.3424447178840637\n          },\n          {\n            \"X\": 0.5243317484855652,\n            \"Y\": 0.3424353003501892\n          }\n        ]\n      },\n      \"Id\": \"6bc858b3-f48f-4494-8197-f0a10b210091\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4449234008789,\n      \"Text\": \"you.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023330390453338623,\n          \"Height\": 0.007533529307693243,\n          \"Left\": 0.5417584776878357,\n          \"Top\": 0.3349556028842926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5417584776878357,\n            \"Y\": 0.3349556028842926\n          },\n          {\n            \"X\": 0.5650859475135803,\n            \"Y\": 0.33497151732444763\n          },\n          {\n            \"X\": 0.5650888681411743,\n            \"Y\": 0.3424891233444214\n          },\n          {\n            \"X\": 0.5417612195014954,\n            \"Y\": 0.3424730896949768\n          }\n        ]\n      },\n      \"Id\": \"71428ebd-0d32-480c-b2cb-ee7200b1ed36\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84366607666016,\n      \"Text\": \"My\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01691695675253868,\n          \"Height\": 0.00894935242831707,\n          \"Left\": 0.5706220865249634,\n          \"Top\": 0.33350446820259094\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5706220865249634,\n            \"Y\": 0.33350446820259094\n          },\n          {\n            \"X\": 0.5875355005264282,\n            \"Y\": 0.33351603150367737\n          },\n          {\n            \"X\": 0.5875390768051147,\n            \"Y\": 0.34245383739471436\n          },\n          {\n            \"X\": 0.5706255435943604,\n            \"Y\": 0.34244221448898315\n          }\n        ]\n      },\n      \"Id\": \"87036a42-16ff-424e-8bdf-5f598c249b5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93952941894531,\n      \"Text\": \"signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04986141622066498,\n          \"Height\": 0.009381869807839394,\n          \"Left\": 0.5910724401473999,\n          \"Top\": 0.3332981765270233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5910724401473999,\n            \"Y\": 0.3332981765270233\n          },\n          {\n            \"X\": 0.6409298777580261,\n            \"Y\": 0.33333221077919006\n          },\n          {\n            \"X\": 0.6409338712692261,\n            \"Y\": 0.34268006682395935\n          },\n          {\n            \"X\": 0.591076135635376,\n            \"Y\": 0.3426458239555359\n          }\n        ]\n      },\n      \"Id\": \"3ab7457a-0cd5-45fc-acbb-2e9dd1f5c44b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9180679321289,\n      \"Text\": \"below\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03254317492246628,\n          \"Height\": 0.007893945090472698,\n          \"Left\": 0.6451531052589417,\n          \"Top\": 0.3332608640193939\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6451531052589417,\n            \"Y\": 0.3332608640193939\n          },\n          {\n            \"X\": 0.6776927709579468,\n            \"Y\": 0.33328303694725037\n          },\n          {\n            \"X\": 0.6776962876319885,\n            \"Y\": 0.3411547839641571\n          },\n          {\n            \"X\": 0.6451564431190491,\n            \"Y\": 0.3411324620246887\n          }\n        ]\n      },\n      \"Id\": \"660a3f9b-d4a3-40b8-a996-07888f8fa480\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9132080078125,\n      \"Text\": \"authorizes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055254437029361725,\n          \"Height\": 0.00791594386100769,\n          \"Left\": 0.6814790964126587,\n          \"Top\": 0.3334778845310211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6814790964126587,\n            \"Y\": 0.3334778845310211\n          },\n          {\n            \"X\": 0.7367298007011414,\n            \"Y\": 0.33351558446884155\n          },\n          {\n            \"X\": 0.7367334961891174,\n            \"Y\": 0.3413938283920288\n          },\n          {\n            \"X\": 0.6814825534820557,\n            \"Y\": 0.34135591983795166\n          }\n        ]\n      },\n      \"Id\": \"3af5f9c3-df4a-4318-b765-0aa85361774c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81359100341797,\n      \"Text\": \"verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05915815010666847,\n          \"Height\": 0.00807905662804842,\n          \"Left\": 0.7404079437255859,\n          \"Top\": 0.33305028080940247\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7404079437255859,\n            \"Y\": 0.33305028080940247\n          },\n          {\n            \"X\": 0.7995620369911194,\n            \"Y\": 0.3330906331539154\n          },\n          {\n            \"X\": 0.7995660901069641,\n            \"Y\": 0.341129332780838\n          },\n          {\n            \"X\": 0.7404117584228516,\n            \"Y\": 0.34108877182006836\n          }\n        ]\n      },\n      \"Id\": \"6e1296aa-8418-46a0-bfa6-92ace03bb378\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85783386230469,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01143109891563654,\n          \"Height\": 0.007981632836163044,\n          \"Left\": 0.8039435148239136,\n          \"Top\": 0.3329748213291168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8039435148239136,\n            \"Y\": 0.3329748213291168\n          },\n          {\n            \"X\": 0.815370500087738,\n            \"Y\": 0.33298259973526\n          },\n          {\n            \"X\": 0.8153746128082275,\n            \"Y\": 0.340956449508667\n          },\n          {\n            \"X\": 0.8039475679397583,\n            \"Y\": 0.34094861149787903\n          }\n        ]\n      },\n      \"Id\": \"0de38cc9-ff3f-4b0b-a547-707d23c4d7ae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92247009277344,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019515760242938995,\n          \"Height\": 0.007797070778906345,\n          \"Left\": 0.8192922472953796,\n          \"Top\": 0.33316999673843384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8192922472953796,\n            \"Y\": 0.33316999673843384\n          },\n          {\n            \"X\": 0.8388039469718933,\n            \"Y\": 0.33318328857421875\n          },\n          {\n            \"X\": 0.8388080596923828,\n            \"Y\": 0.340967059135437\n          },\n          {\n            \"X\": 0.8192963004112244,\n            \"Y\": 0.34095367789268494\n          }\n        ]\n      },\n      \"Id\": \"8638260e-1c1b-4a69-a5fb-3051f020c3bd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.86333465576172,\n      \"Text\": \"information.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06471066176891327,\n          \"Height\": 0.008155056275427341,\n          \"Left\": 0.8426927328109741,\n          \"Top\": 0.33296871185302734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8426927328109741,\n            \"Y\": 0.33296871185302734\n          },\n          {\n            \"X\": 0.9073988199234009,\n            \"Y\": 0.33301281929016113\n          },\n          {\n            \"X\": 0.9074033498764038,\n            \"Y\": 0.3411237597465515\n          },\n          {\n            \"X\": 0.842697024345398,\n            \"Y\": 0.34107935428619385\n          }\n        ]\n      },\n      \"Id\": \"1c205522-6f45-4abe-8c38-67ffcaf642ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.28981018066406,\n      \"Text\": \"7.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009608278051018715,\n          \"Height\": 0.007486306130886078,\n          \"Left\": 0.04240967705845833,\n          \"Top\": 0.34908556938171387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04240967705845833,\n            \"Y\": 0.34908556938171387\n          },\n          {\n            \"X\": 0.05201707407832146,\n            \"Y\": 0.34909218549728394\n          },\n          {\n            \"X\": 0.05201795697212219,\n            \"Y\": 0.35657185316085815\n          },\n          {\n            \"X\": 0.04241052269935608,\n            \"Y\": 0.3565652072429657\n          }\n        ]\n      },\n      \"Id\": \"c93ab0db-b745-4c27-a08c-1634673f299f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95940399169922,\n      \"Text\": \"Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030833730474114418,\n          \"Height\": 0.007654603570699692,\n          \"Left\": 0.05795452743768692,\n          \"Top\": 0.34910348057746887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05795452743768692,\n            \"Y\": 0.34910348057746887\n          },\n          {\n            \"X\": 0.08878721296787262,\n            \"Y\": 0.3491247594356537\n          },\n          {\n            \"X\": 0.08878825604915619,\n            \"Y\": 0.35675808787345886\n          },\n          {\n            \"X\": 0.05795544758439064,\n            \"Y\": 0.3567366898059845\n          }\n        ]\n      },\n      \"Id\": \"4c3a7e80-d8cf-431b-9d5f-62cc51747248\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97098541259766,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01978272944688797,\n          \"Height\": 0.007337506394833326,\n          \"Left\": 0.09294676780700684,\n          \"Top\": 0.34922415018081665\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09294676780700684,\n            \"Y\": 0.34922415018081665\n          },\n          {\n            \"X\": 0.11272840201854706,\n            \"Y\": 0.3492377996444702\n          },\n          {\n            \"X\": 0.1127294972538948,\n            \"Y\": 0.35656166076660156\n          },\n          {\n            \"X\": 0.09294778108596802,\n            \"Y\": 0.35654792189598083\n          }\n        ]\n      },\n      \"Id\": \"f2a7ec77-1a18-4f80-a642-fd5f31379879\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94062805175781,\n      \"Text\": \"Address\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04381555691361427,\n          \"Height\": 0.007785536348819733,\n          \"Left\": 0.11700095236301422,\n          \"Top\": 0.3487725853919983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11700095236301422,\n            \"Y\": 0.3487725853919983\n          },\n          {\n            \"X\": 0.16081514954566956,\n            \"Y\": 0.3488028049468994\n          },\n          {\n            \"X\": 0.1608165055513382,\n            \"Y\": 0.3565581142902374\n          },\n          {\n            \"X\": 0.11700212210416794,\n            \"Y\": 0.356527715921402\n          }\n        ]\n      },\n      \"Id\": \"955949aa-276f-4ce5-ab68-3a67410800d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94972229003906,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011312022805213928,\n          \"Height\": 0.007759707979857922,\n          \"Left\": 0.16519221663475037,\n          \"Top\": 0.34868407249450684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16519221663475037,\n            \"Y\": 0.34868407249450684\n          },\n          {\n            \"X\": 0.17650282382965088,\n            \"Y\": 0.3486918807029724\n          },\n          {\n            \"X\": 0.1765042394399643,\n            \"Y\": 0.35644376277923584\n          },\n          {\n            \"X\": 0.165193572640419,\n            \"Y\": 0.3564359247684479\n          }\n        ]\n      },\n      \"Id\": \"30936ea0-3e84-4c04-a93a-3eb423f4a6dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95381164550781,\n      \"Text\": \"Applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051600344479084015,\n          \"Height\": 0.009361259639263153,\n          \"Left\": 0.18011532723903656,\n          \"Top\": 0.34866097569465637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18011532723903656,\n            \"Y\": 0.34866097569465637\n          },\n          {\n            \"X\": 0.23171371221542358,\n            \"Y\": 0.3486965596675873\n          },\n          {\n            \"X\": 0.23171567916870117,\n            \"Y\": 0.3580222427845001\n          },\n          {\n            \"X\": 0.18011704087257385,\n            \"Y\": 0.3579863905906677\n          }\n        ]\n      },\n      \"Id\": \"b7126e46-bcbd-41f4-925c-6b43863cf0b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6492691040039,\n      \"Text\": \"(include\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042031217366456985,\n          \"Height\": 0.008739436976611614,\n          \"Left\": 0.23612752556800842,\n          \"Top\": 0.3484950661659241\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23612752556800842,\n            \"Y\": 0.3484950661659241\n          },\n          {\n            \"X\": 0.27815669775009155,\n            \"Y\": 0.3485240340232849\n          },\n          {\n            \"X\": 0.2781587541103363,\n            \"Y\": 0.35723450779914856\n          },\n          {\n            \"X\": 0.23612938821315765,\n            \"Y\": 0.357205331325531\n          }\n        ]\n      },\n      \"Id\": \"23f89d8d-acc0-478a-9f7c-c2c8b53388c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92701721191406,\n      \"Text\": \"employee\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05204220861196518,\n          \"Height\": 0.009268561378121376,\n          \"Left\": 0.2821691334247589,\n          \"Top\": 0.34866535663604736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2821691334247589,\n            \"Y\": 0.34866535663604736\n          },\n          {\n            \"X\": 0.3342089056968689,\n            \"Y\": 0.34870126843452454\n          },\n          {\n            \"X\": 0.3342113196849823,\n            \"Y\": 0.357933908700943\n          },\n          {\n            \"X\": 0.2821713089942932,\n            \"Y\": 0.3578977882862091\n          }\n        ]\n      },\n      \"Id\": \"5b97f988-4a70-4758-860a-31d43d77112c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81407928466797,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011197815649211407,\n          \"Height\": 0.005922306794673204,\n          \"Left\": 0.3382651209831238,\n          \"Top\": 0.3503111004829407\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3382651209831238,\n            \"Y\": 0.3503111004829407\n          },\n          {\n            \"X\": 0.34946131706237793,\n            \"Y\": 0.3503188490867615\n          },\n          {\n            \"X\": 0.34946292638778687,\n            \"Y\": 0.3562334179878235\n          },\n          {\n            \"X\": 0.3382667005062103,\n            \"Y\": 0.3562256395816803\n          }\n        ]\n      },\n      \"Id\": \"cb180300-402a-4945-8805-c0f92c711221\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89827728271484,\n      \"Text\": \"badge\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03310354799032211,\n          \"Height\": 0.00939236395061016,\n          \"Left\": 0.35329437255859375,\n          \"Top\": 0.34852930903434753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35329437255859375,\n            \"Y\": 0.34852930903434753\n          },\n          {\n            \"X\": 0.3863951861858368,\n            \"Y\": 0.3485521674156189\n          },\n          {\n            \"X\": 0.38639792799949646,\n            \"Y\": 0.35792168974876404\n          },\n          {\n            \"X\": 0.3532969355583191,\n            \"Y\": 0.3578987121582031\n          }\n        ]\n      },\n      \"Id\": \"eb6693bd-9c08-4233-a0a0-79b4007f74be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.93476104736328,\n      \"Text\": \"number)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04472491517663002,\n          \"Height\": 0.008399237878620625,\n          \"Left\": 0.39070725440979004,\n          \"Top\": 0.348591685295105\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39070725440979004,\n            \"Y\": 0.348591685295105\n          },\n          {\n            \"X\": 0.43542951345443726,\n            \"Y\": 0.34862256050109863\n          },\n          {\n            \"X\": 0.43543216586112976,\n            \"Y\": 0.3569909334182739\n          },\n          {\n            \"X\": 0.39070969820022583,\n            \"Y\": 0.35695990920066833\n          }\n        ]\n      },\n      \"Id\": \"da3cc7ee-4dd4-4f42-a825-aad5a84bce36\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73390197753906,\n      \"Text\": \"8.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009886208921670914,\n          \"Height\": 0.0080120163038373,\n          \"Left\": 0.5887062549591064,\n          \"Top\": 0.348159521818161\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5887062549591064,\n            \"Y\": 0.348159521818161\n          },\n          {\n            \"X\": 0.5985892415046692,\n            \"Y\": 0.3481663167476654\n          },\n          {\n            \"X\": 0.5985924601554871,\n            \"Y\": 0.35617151856422424\n          },\n          {\n            \"X\": 0.5887094140052795,\n            \"Y\": 0.3561646640300751\n          }\n        ]\n      },\n      \"Id\": \"d92b7f4d-8539-4dcb-bc0f-b50ac4a32ec1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95027923583984,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0520755797624588,\n          \"Height\": 0.009779879823327065,\n          \"Left\": 0.6039989590644836,\n          \"Top\": 0.3481026887893677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6039989590644836,\n            \"Y\": 0.3481026887893677\n          },\n          {\n            \"X\": 0.656070351600647,\n            \"Y\": 0.34813860058784485\n          },\n          {\n            \"X\": 0.656074583530426,\n            \"Y\": 0.357882559299469\n          },\n          {\n            \"X\": 0.6040028929710388,\n            \"Y\": 0.3578464090824127\n          }\n        ]\n      },\n      \"Id\": \"f1e4bca9-cfc8-4c02-9e98-0d4bd00c6c6b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93231964111328,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011705425567924976,\n          \"Height\": 0.008095018565654755,\n          \"Left\": 0.6600978374481201,\n          \"Top\": 0.348178505897522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6600978374481201,\n            \"Y\": 0.348178505897522\n          },\n          {\n            \"X\": 0.6717997193336487,\n            \"Y\": 0.34818658232688904\n          },\n          {\n            \"X\": 0.6718032360076904,\n            \"Y\": 0.3562735319137573\n          },\n          {\n            \"X\": 0.6601013541221619,\n            \"Y\": 0.35626542568206787\n          }\n        ]\n      },\n      \"Id\": \"1a90263a-7f4a-476f-8c7c-225610224586\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83267974853516,\n      \"Text\": \"Applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05231501907110214,\n          \"Height\": 0.009664126671850681,\n          \"Left\": 0.67482590675354,\n          \"Top\": 0.3481145203113556\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.67482590675354,\n            \"Y\": 0.3481145203113556\n          },\n          {\n            \"X\": 0.7271364331245422,\n            \"Y\": 0.3481506109237671\n          },\n          {\n            \"X\": 0.7271409630775452,\n            \"Y\": 0.3577786684036255\n          },\n          {\n            \"X\": 0.6748301386833191,\n            \"Y\": 0.3577423393726349\n          }\n        ]\n      },\n      \"Id\": \"fcc0a0fa-c270-48f1-990d-352b7ebb396b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.66726684570312,\n      \"Text\": \"Paulo\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04928869381546974,\n          \"Height\": 0.012145476415753365,\n          \"Left\": 0.0708005353808403,\n          \"Top\": 0.358690083026886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0708005353808403,\n            \"Y\": 0.358690083026886\n          },\n          {\n            \"X\": 0.12008737027645111,\n            \"Y\": 0.35872432589530945\n          },\n          {\n            \"X\": 0.12008922547101974,\n            \"Y\": 0.3708355724811554\n          },\n          {\n            \"X\": 0.07080207765102386,\n            \"Y\": 0.37080103158950806\n          }\n        ]\n      },\n      \"Id\": \"37f24d08-cd7c-4cb8-939d-c338ec61ccc8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7897720336914,\n      \"Text\": \"Santos\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06000644713640213,\n          \"Height\": 0.01206123735755682,\n          \"Left\": 0.12624788284301758,\n          \"Top\": 0.3587629497051239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12624788284301758,\n            \"Y\": 0.3587629497051239\n          },\n          {\n            \"X\": 0.18625207245349884,\n            \"Y\": 0.3588046133518219\n          },\n          {\n            \"X\": 0.1862543225288391,\n            \"Y\": 0.3708241879940033\n          },\n          {\n            \"X\": 0.126249760389328,\n            \"Y\": 0.37078213691711426\n          }\n        ]\n      },\n      \"Id\": \"79e5bd30-42cb-4098-818f-47426f86e14a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96489715576172,\n      \"Text\": \"123\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030617939308285713,\n          \"Height\": 0.012148008681833744,\n          \"Left\": 0.0718698799610138,\n          \"Top\": 0.3739270269870758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0718698799610138,\n            \"Y\": 0.3739270269870758\n          },\n          {\n            \"X\": 0.10248607397079468,\n            \"Y\": 0.37394851446151733\n          },\n          {\n            \"X\": 0.10248781740665436,\n            \"Y\": 0.38607504963874817\n          },\n          {\n            \"X\": 0.07187142968177795,\n            \"Y\": 0.3860533535480499\n          }\n        ]\n      },\n      \"Id\": \"57abc660-b08b-4d02-b988-cb5b40b5be75\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96702575683594,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03442583978176117,\n          \"Height\": 0.014739391393959522,\n          \"Left\": 0.10775701701641083,\n          \"Top\": 0.37411898374557495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10775701701641083,\n            \"Y\": 0.37411898374557495\n          },\n          {\n            \"X\": 0.1421804428100586,\n            \"Y\": 0.37414315342903137\n          },\n          {\n            \"X\": 0.142182856798172,\n            \"Y\": 0.3888583779335022\n          },\n          {\n            \"X\": 0.10775917768478394,\n            \"Y\": 0.3888339400291443\n          }\n        ]\n      },\n      \"Id\": \"7ff7da55-d95d-4730-8f40-cbad031e084a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97053527832031,\n      \"Text\": \"Street,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05613155663013458,\n          \"Height\": 0.013951621018350124,\n          \"Left\": 0.14802312850952148,\n          \"Top\": 0.37395790219306946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14802312850952148,\n            \"Y\": 0.37395790219306946\n          },\n          {\n            \"X\": 0.2041519433259964,\n            \"Y\": 0.373997300863266\n          },\n          {\n            \"X\": 0.20415468513965607,\n            \"Y\": 0.38790953159332275\n          },\n          {\n            \"X\": 0.14802545309066772,\n            \"Y\": 0.3878697156906128\n          }\n        ]\n      },\n      \"Id\": \"bd2bfcd9-304b-4d22-a150-64a11cafc31b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97258758544922,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0344788059592247,\n          \"Height\": 0.014821927063167095,\n          \"Left\": 0.21004663407802582,\n          \"Top\": 0.373912513256073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21004663407802582,\n            \"Y\": 0.373912513256073\n          },\n          {\n            \"X\": 0.24452222883701324,\n            \"Y\": 0.3739367127418518\n          },\n          {\n            \"X\": 0.24452544748783112,\n            \"Y\": 0.3887344300746918\n          },\n          {\n            \"X\": 0.2100495994091034,\n            \"Y\": 0.38870999217033386\n          }\n        ]\n      },\n      \"Id\": \"a4048dd7-3492-410f-9d8a-124f29e84fbe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91539001464844,\n      \"Text\": \"Town,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05275451019406319,\n          \"Height\": 0.014206561259925365,\n          \"Left\": 0.24982838332653046,\n          \"Top\": 0.3737996816635132\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24982838332653046,\n            \"Y\": 0.3737996816635132\n          },\n          {\n            \"X\": 0.3025793731212616,\n            \"Y\": 0.3738367259502411\n          },\n          {\n            \"X\": 0.30258288979530334,\n            \"Y\": 0.3880062401294708\n          },\n          {\n            \"X\": 0.24983149766921997,\n            \"Y\": 0.38796886801719666\n          }\n        ]\n      },\n      \"Id\": \"f163f234-89d0-48c4-bc6f-d47e1a929975\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9500961303711,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040220241993665695,\n          \"Height\": 0.012438671663403511,\n          \"Left\": 0.30921632051467896,\n          \"Top\": 0.373659610748291\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30921632051467896,\n            \"Y\": 0.373659610748291\n          },\n          {\n            \"X\": 0.34943318367004395,\n            \"Y\": 0.37368786334991455\n          },\n          {\n            \"X\": 0.34943658113479614,\n            \"Y\": 0.38609829545021057\n          },\n          {\n            \"X\": 0.30921944975852966,\n            \"Y\": 0.3860698342323303\n          }\n        ]\n      },\n      \"Id\": \"9de115b5-350f-4769-aacb-5187d60184f9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57108306884766,\n      \"Text\": \"Paulo\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06786926090717316,\n          \"Height\": 0.01852739043533802,\n          \"Left\": 0.6292650699615479,\n          \"Top\": 0.36406210064888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6292650699615479,\n            \"Y\": 0.36406210064888\n          },\n          {\n            \"X\": 0.6971259713172913,\n            \"Y\": 0.3641093969345093\n          },\n          {\n            \"X\": 0.6971343159675598,\n            \"Y\": 0.3825894892215729\n          },\n          {\n            \"X\": 0.6292727589607239,\n            \"Y\": 0.38254156708717346\n          }\n        ]\n      },\n      \"Id\": \"4a3eb87a-0c67-4485-9ceb-ba1927ff7c02\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25013732910156,\n      \"Text\": \"Santos\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08575436472892761,\n          \"Height\": 0.0163712240755558,\n          \"Left\": 0.7080056667327881,\n          \"Top\": 0.36535343527793884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7080056667327881,\n            \"Y\": 0.36535343527793884\n          },\n          {\n            \"X\": 0.7937518358230591,\n            \"Y\": 0.36541327834129333\n          },\n          {\n            \"X\": 0.7937600612640381,\n            \"Y\": 0.38172465562820435\n          },\n          {\n            \"X\": 0.7080131769180298,\n            \"Y\": 0.3816641569137573\n          }\n        ]\n      },\n      \"Id\": \"e88207da-971f-4052-8649-6ae854db3670\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46356201171875,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028785215690732002,\n          \"Height\": 0.009076006710529327,\n          \"Left\": 0.04323485866189003,\n          \"Top\": 0.39576244354248047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04323485866189003,\n            \"Y\": 0.39576244354248047\n          },\n          {\n            \"X\": 0.07201891392469406,\n            \"Y\": 0.3957829773426056\n          },\n          {\n            \"X\": 0.07202007621526718,\n            \"Y\": 0.4048384726047516\n          },\n          {\n            \"X\": 0.04323588311672211,\n            \"Y\": 0.4048178195953369\n          }\n        ]\n      },\n      \"Id\": \"46e3cdfe-76e9-454d-96fe-9292c6d80ec8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.47806549072266,\n      \"Text\": \"II\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00868514645844698,\n          \"Height\": 0.008936522528529167,\n          \"Left\": 0.07791721075773239,\n          \"Top\": 0.39574697613716125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07791721075773239,\n            \"Y\": 0.39574697613716125\n          },\n          {\n            \"X\": 0.0866011455655098,\n            \"Y\": 0.3957531750202179\n          },\n          {\n            \"X\": 0.0866023525595665,\n            \"Y\": 0.40468350052833557\n          },\n          {\n            \"X\": 0.07791838049888611,\n            \"Y\": 0.40467727184295654\n          }\n        ]\n      },\n      \"Id\": \"094d848e-a979-4a26-bda7-109a36cffdfe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.3699722290039,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011540502309799194,\n          \"Height\": 0.00261479034088552,\n          \"Left\": 0.09330373257398605,\n          \"Top\": 0.3999142348766327\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09330373257398605,\n            \"Y\": 0.3999142348766327\n          },\n          {\n            \"X\": 0.1048438549041748,\n            \"Y\": 0.3999224901199341\n          },\n          {\n            \"X\": 0.10484423488378525,\n            \"Y\": 0.4025290310382843\n          },\n          {\n            \"X\": 0.0933040976524353,\n            \"Y\": 0.4025207757949829\n          }\n        ]\n      },\n      \"Id\": \"34bd3737-3d52-4fb4-a8f5-70b97e0a66fd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74688720703125,\n      \"Text\": \"Verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0814175084233284,\n          \"Height\": 0.009264175780117512,\n          \"Left\": 0.11088718473911285,\n          \"Top\": 0.3953043222427368\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11088718473911285,\n            \"Y\": 0.3953043222427368\n          },\n          {\n            \"X\": 0.19230294227600098,\n            \"Y\": 0.39536234736442566\n          },\n          {\n            \"X\": 0.19230468571186066,\n            \"Y\": 0.40456849336624146\n          },\n          {\n            \"X\": 0.11088854819536209,\n            \"Y\": 0.40451014041900635\n          }\n        ]\n      },\n      \"Id\": \"6ff7b953-a678-4794-b7c6-abdade9b202e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92253112792969,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015214608982205391,\n          \"Height\": 0.009217995218932629,\n          \"Left\": 0.19862937927246094,\n          \"Top\": 0.3951866924762726\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19862937927246094,\n            \"Y\": 0.3951866924762726\n          },\n          {\n            \"X\": 0.21384213864803314,\n            \"Y\": 0.3951975107192993\n          },\n          {\n            \"X\": 0.21384398639202118,\n            \"Y\": 0.4044046700000763\n          },\n          {\n            \"X\": 0.1986311674118042,\n            \"Y\": 0.4043937623500824\n          }\n        ]\n      },\n      \"Id\": \"6dbe580b-5f38-4853-8da9-091000aa3c41\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90779113769531,\n      \"Text\": \"Present\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053249381482601166,\n          \"Height\": 0.008741828612983227,\n          \"Left\": 0.21909835934638977,\n          \"Top\": 0.3956005573272705\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21909835934638977,\n            \"Y\": 0.3956005573272705\n          },\n          {\n            \"X\": 0.27234572172164917,\n            \"Y\": 0.39563852548599243\n          },\n          {\n            \"X\": 0.27234774827957153,\n            \"Y\": 0.404342383146286\n          },\n          {\n            \"X\": 0.21910013258457184,\n            \"Y\": 0.40430423617362976\n          }\n        ]\n      },\n      \"Id\": \"7f2cc6ab-469b-4240-a299-603df5bca9b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92076110839844,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09043391048908234,\n          \"Height\": 0.011603694409132004,\n          \"Left\": 0.2772311270236969,\n          \"Top\": 0.394946426153183\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2772311270236969,\n            \"Y\": 0.394946426153183\n          },\n          {\n            \"X\": 0.3676617741584778,\n            \"Y\": 0.3950108587741852\n          },\n          {\n            \"X\": 0.36766502261161804,\n            \"Y\": 0.4065501391887665\n          },\n          {\n            \"X\": 0.2772338390350342,\n            \"Y\": 0.4064851999282837\n          }\n        ]\n      },\n      \"Id\": \"fb10e59f-b26b-4761-9211-3ae6674614d1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5787582397461,\n      \"Text\": \"9.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009713588282465935,\n          \"Height\": 0.00770467147231102,\n          \"Left\": 0.04225537180900574,\n          \"Top\": 0.4095303416252136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04225537180900574,\n            \"Y\": 0.4095303416252136\n          },\n          {\n            \"X\": 0.051968052983284,\n            \"Y\": 0.40953731536865234\n          },\n          {\n            \"X\": 0.05196896195411682,\n            \"Y\": 0.41723501682281494\n          },\n          {\n            \"X\": 0.04225623980164528,\n            \"Y\": 0.41722798347473145\n          }\n        ]\n      },\n      \"Id\": \"b3223c48-cd7a-4441-8326-74ee827f9b97\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89807891845703,\n      \"Text\": \"Applicant's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06004251912236214,\n          \"Height\": 0.009383585304021835,\n          \"Left\": 0.057085953652858734,\n          \"Top\": 0.40938061475753784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057085953652858734,\n            \"Y\": 0.40938061475753784\n          },\n          {\n            \"X\": 0.11712706089019775,\n            \"Y\": 0.4094237983226776\n          },\n          {\n            \"X\": 0.11712847650051117,\n            \"Y\": 0.4187641739845276\n          },\n          {\n            \"X\": 0.05708707869052887,\n            \"Y\": 0.41872072219848633\n          }\n        ]\n      },\n      \"Id\": \"834a1aa5-64f0-4c85-b595-6b58e421b6df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90763854980469,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024578718468546867,\n          \"Height\": 0.007804574444890022,\n          \"Left\": 0.12192516773939133,\n          \"Top\": 0.40936437249183655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12192516773939133,\n            \"Y\": 0.40936437249183655\n          },\n          {\n            \"X\": 0.14650258421897888,\n            \"Y\": 0.40938204526901245\n          },\n          {\n            \"X\": 0.14650388062000275,\n            \"Y\": 0.4171689450740814\n          },\n          {\n            \"X\": 0.12192636728286743,\n            \"Y\": 0.41715118288993835\n          }\n        ]\n      },\n      \"Id\": \"885c1c11-4447-48e0-87d5-24980a79a3da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94339752197266,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011194678954780102,\n          \"Height\": 0.007725204341113567,\n          \"Left\": 0.1509706825017929,\n          \"Top\": 0.4093676209449768\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1509706825017929,\n            \"Y\": 0.4093676209449768\n          },\n          {\n            \"X\": 0.16216401755809784,\n            \"Y\": 0.4093756675720215\n          },\n          {\n            \"X\": 0.16216537356376648,\n            \"Y\": 0.41709282994270325\n          },\n          {\n            \"X\": 0.15097199380397797,\n            \"Y\": 0.4170847237110138\n          }\n        ]\n      },\n      \"Id\": \"d22c8d8c-8d40-4a82-87a5-eaee2cc6b4e5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93466186523438,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06709230691194534,\n          \"Height\": 0.009302633814513683,\n          \"Left\": 0.16633355617523193,\n          \"Top\": 0.40930503606796265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16633355617523193,\n            \"Y\": 0.40930503606796265\n          },\n          {\n            \"X\": 0.23342390358448029,\n            \"Y\": 0.4093533158302307\n          },\n          {\n            \"X\": 0.23342587053775787,\n            \"Y\": 0.4186076819896698\n          },\n          {\n            \"X\": 0.16633519530296326,\n            \"Y\": 0.41855913400650024\n          }\n        ]\n      },\n      \"Id\": \"75d63fdc-5bab-42fb-856c-9bdff865e95b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90061950683594,\n      \"Text\": \"10.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01544938888400793,\n          \"Height\": 0.007745975628495216,\n          \"Left\": 0.27676165103912354,\n          \"Top\": 0.40922561287879944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27676165103912354,\n            \"Y\": 0.40922561287879944\n          },\n          {\n            \"X\": 0.2922091782093048,\n            \"Y\": 0.40923669934272766\n          },\n          {\n            \"X\": 0.29221105575561523,\n            \"Y\": 0.4169715642929077\n          },\n          {\n            \"X\": 0.2767634689807892,\n            \"Y\": 0.4169604182243347\n          }\n        ]\n      },\n      \"Id\": \"99338f6e-65d3-44e6-9918-fb51ee647f23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89669036865234,\n      \"Text\": \"Present\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03984207287430763,\n          \"Height\": 0.007660406641662121,\n          \"Left\": 0.2980291545391083,\n          \"Top\": 0.4093356728553772\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2980291545391083,\n            \"Y\": 0.4093356728553772\n          },\n          {\n            \"X\": 0.33786919713020325,\n            \"Y\": 0.4093643128871918\n          },\n          {\n            \"X\": 0.3378712236881256,\n            \"Y\": 0.4169960618019104\n          },\n          {\n            \"X\": 0.2980310320854187,\n            \"Y\": 0.4169672727584839\n          }\n        ]\n      },\n      \"Id\": \"69dbc662-a26a-4de6-b30c-a83a8873946a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84735870361328,\n      \"Text\": \"Position\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04260449856519699,\n          \"Height\": 0.007859976030886173,\n          \"Left\": 0.3422493040561676,\n          \"Top\": 0.4092091917991638\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3422493040561676,\n            \"Y\": 0.4092091917991638\n          },\n          {\n            \"X\": 0.3848515450954437,\n            \"Y\": 0.40923982858657837\n          },\n          {\n            \"X\": 0.3848538100719452,\n            \"Y\": 0.4170691668987274\n          },\n          {\n            \"X\": 0.34225142002105713,\n            \"Y\": 0.4170383810997009\n          }\n        ]\n      },\n      \"Id\": \"29968e98-c21f-4671-a6fd-412f6eff7a12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80809783935547,\n      \"Text\": \"11.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015158828347921371,\n          \"Height\": 0.008361133746802807,\n          \"Left\": 0.6482678055763245,\n          \"Top\": 0.40842103958129883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6482678055763245,\n            \"Y\": 0.40842103958129883\n          },\n          {\n            \"X\": 0.6634230017662048,\n            \"Y\": 0.40843191742897034\n          },\n          {\n            \"X\": 0.6634266376495361,\n            \"Y\": 0.4167821705341339\n          },\n          {\n            \"X\": 0.648271381855011,\n            \"Y\": 0.4167712330818176\n          }\n        ]\n      },\n      \"Id\": \"861f2955-5e65-4bba-8937-24bccbb54023\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87132263183594,\n      \"Text\": \"Probability\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05692177638411522,\n          \"Height\": 0.009702849201858044,\n          \"Left\": 0.6687771081924438,\n          \"Top\": 0.4085427522659302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6687771081924438,\n            \"Y\": 0.4085427522659302\n          },\n          {\n            \"X\": 0.7256944179534912,\n            \"Y\": 0.4085836410522461\n          },\n          {\n            \"X\": 0.7256988883018494,\n            \"Y\": 0.4182455837726593\n          },\n          {\n            \"X\": 0.6687813401222229,\n            \"Y\": 0.4182044267654419\n          }\n        ]\n      },\n      \"Id\": \"2dbce7b9-43ca-4ad7-83e4-f40a95652e2f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86031341552734,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011607754975557327,\n          \"Height\": 0.00801040232181549,\n          \"Left\": 0.7298591136932373,\n          \"Top\": 0.4085874557495117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7298591136932373,\n            \"Y\": 0.4085874557495117\n          },\n          {\n            \"X\": 0.7414630651473999,\n            \"Y\": 0.4085958003997803\n          },\n          {\n            \"X\": 0.7414668798446655,\n            \"Y\": 0.4165978729724884\n          },\n          {\n            \"X\": 0.7298628687858582,\n            \"Y\": 0.4165894687175751\n          }\n        ]\n      },\n      \"Id\": \"00f59a44-26d7-405d-a0b8-be0b4ba2a16d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80228424072266,\n      \"Text\": \"Continued\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055054616183042526,\n          \"Height\": 0.00822945311665535,\n          \"Left\": 0.745537281036377,\n          \"Top\": 0.40859273076057434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.745537281036377,\n            \"Y\": 0.40859273076057434\n          },\n          {\n            \"X\": 0.8005877733230591,\n            \"Y\": 0.4086323082447052\n          },\n          {\n            \"X\": 0.8005918860435486,\n            \"Y\": 0.4168221950531006\n          },\n          {\n            \"X\": 0.7455411553382874,\n            \"Y\": 0.416782408952713\n          }\n        ]\n      },\n      \"Id\": \"e6aed907-79f1-4122-88e0-c7b296d25b39\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9310302734375,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06729017943143845,\n          \"Height\": 0.009450752288103104,\n          \"Left\": 0.8050279021263123,\n          \"Top\": 0.40869975090026855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8050279021263123,\n            \"Y\": 0.40869975090026855\n          },\n          {\n            \"X\": 0.8723129630088806,\n            \"Y\": 0.4087480902671814\n          },\n          {\n            \"X\": 0.8723180890083313,\n            \"Y\": 0.41815048456192017\n          },\n          {\n            \"X\": 0.8050326704978943,\n            \"Y\": 0.41810181736946106\n          }\n        ]\n      },\n      \"Id\": \"55b63aad-1792-448c-bcd2-79c0c40a1fdf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8808822631836,\n      \"Text\": \"06/06/2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08179942518472672,\n          \"Height\": 0.010336610488593578,\n          \"Left\": 0.10546091198921204,\n          \"Top\": 0.4298610985279083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10546091198921204,\n            \"Y\": 0.4298610985279083\n          },\n          {\n            \"X\": 0.18725840747356415,\n            \"Y\": 0.4299207627773285\n          },\n          {\n            \"X\": 0.18726034462451935,\n            \"Y\": 0.4401977062225342\n          },\n          {\n            \"X\": 0.10546240955591202,\n            \"Y\": 0.440137654542923\n          }\n        ]\n      },\n      \"Id\": \"577af623-1952-436e-835e-f4039b012c26\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88994598388672,\n      \"Text\": \"General\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05746281519532204,\n          \"Height\": 0.00981129240244627,\n          \"Left\": 0.3365672528743744,\n          \"Top\": 0.42991623282432556\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3365672528743744,\n            \"Y\": 0.42991623282432556\n          },\n          {\n            \"X\": 0.3940271735191345,\n            \"Y\": 0.4299581050872803\n          },\n          {\n            \"X\": 0.39403006434440613,\n            \"Y\": 0.4397275149822235\n          },\n          {\n            \"X\": 0.3365698456764221,\n            \"Y\": 0.4396853446960449\n          }\n        ]\n      },\n      \"Id\": \"f31e3b5e-42b5-4681-adbd-5e1d60752e8e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92546081542969,\n      \"Text\": \"Manager\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0643332302570343,\n          \"Height\": 0.012508083134889603,\n          \"Left\": 0.39907291531562805,\n          \"Top\": 0.42984965443611145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39907291531562805,\n            \"Y\": 0.42984965443611145\n          },\n          {\n            \"X\": 0.46340203285217285,\n            \"Y\": 0.4298965632915497\n          },\n          {\n            \"X\": 0.46340614557266235,\n            \"Y\": 0.44235774874687195\n          },\n          {\n            \"X\": 0.3990766406059265,\n            \"Y\": 0.4423104524612427\n          }\n        ]\n      },\n      \"Id\": \"b152fcc6-1ccb-45f0-bacd-d2e95dcfe502\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87323760986328,\n      \"Text\": \"3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008789618499577045,\n          \"Height\": 0.01003704871982336,\n          \"Left\": 0.7277763485908508,\n          \"Top\": 0.42813098430633545\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7277763485908508,\n            \"Y\": 0.42813098430633545\n          },\n          {\n            \"X\": 0.7365612387657166,\n            \"Y\": 0.4281373918056488\n          },\n          {\n            \"X\": 0.7365659475326538,\n            \"Y\": 0.4381680488586426\n          },\n          {\n            \"X\": 0.7277810573577881,\n            \"Y\": 0.43816161155700684\n          }\n        ]\n      },\n      \"Id\": \"53be3dbc-888c-47f5-be40-dda3a32a6cc3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94658660888672,\n      \"Text\": \"years\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04045405611395836,\n          \"Height\": 0.010795577429234982,\n          \"Left\": 0.740707516670227,\n          \"Top\": 0.43008407950401306\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.740707516670227,\n            \"Y\": 0.43008407950401306\n          },\n          {\n            \"X\": 0.7811562418937683,\n            \"Y\": 0.4301135540008545\n          },\n          {\n            \"X\": 0.7811615467071533,\n            \"Y\": 0.4408796429634094\n          },\n          {\n            \"X\": 0.7407126426696777,\n            \"Y\": 0.4408499300479889\n          }\n        ]\n      },\n      \"Id\": \"df4bbfc3-c830-4fd3-a0f2-1c635afa53e4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.26109313964844,\n      \"Text\": \"12A.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023226527497172356,\n          \"Height\": 0.007752255070954561,\n          \"Left\": 0.052938997745513916,\n          \"Top\": 0.4549916684627533\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052938997745513916,\n            \"Y\": 0.4549916684627533\n          },\n          {\n            \"X\": 0.07616451382637024,\n            \"Y\": 0.4550088942050934\n          },\n          {\n            \"X\": 0.07616552710533142,\n            \"Y\": 0.4627439081668854\n          },\n          {\n            \"X\": 0.05293991416692734,\n            \"Y\": 0.4627266228199005\n          }\n        ]\n      },\n      \"Id\": \"e605d196-a0e3-4db2-a084-a0bf9998d197\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92726135253906,\n      \"Text\": \"Current\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03967054933309555,\n          \"Height\": 0.007792270742356777,\n          \"Left\": 0.08206677436828613,\n          \"Top\": 0.454978883266449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08206677436828613,\n            \"Y\": 0.454978883266449\n          },\n          {\n            \"X\": 0.12173612415790558,\n            \"Y\": 0.45500829815864563\n          },\n          {\n            \"X\": 0.12173732370138168,\n            \"Y\": 0.4627711772918701\n          },\n          {\n            \"X\": 0.0820678099989891,\n            \"Y\": 0.4627416133880615\n          }\n        ]\n      },\n      \"Id\": \"dd8cf520-af01-494f-b68c-d850a377a81b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93427276611328,\n      \"Text\": \"Gross\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0335998572409153,\n          \"Height\": 0.007598009426146746,\n          \"Left\": 0.12645506858825684,\n          \"Top\": 0.4551362991333008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12645506858825684,\n            \"Y\": 0.4551362991333008\n          },\n          {\n            \"X\": 0.16005361080169678,\n            \"Y\": 0.4551612138748169\n          },\n          {\n            \"X\": 0.16005492210388184,\n            \"Y\": 0.46273431181907654\n          },\n          {\n            \"X\": 0.12645624577999115,\n            \"Y\": 0.4627092778682709\n          }\n        ]\n      },\n      \"Id\": \"7209b715-8119-4381-9962-f3c2f448e47d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94193267822266,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025392990559339523,\n          \"Height\": 0.007545603904873133,\n          \"Left\": 0.16527694463729858,\n          \"Top\": 0.45499417185783386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16527694463729858,\n            \"Y\": 0.45499417185783386\n          },\n          {\n            \"X\": 0.1906685084104538,\n            \"Y\": 0.4550129771232605\n          },\n          {\n            \"X\": 0.1906699389219284,\n            \"Y\": 0.46253976225852966\n          },\n          {\n            \"X\": 0.16527827084064484,\n            \"Y\": 0.4625208377838135\n          }\n        ]\n      },\n      \"Id\": \"f7b977a1-9974-47eb-b38e-d31d167335fd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93971252441406,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019330035895109177,\n          \"Height\": 0.008960101753473282,\n          \"Left\": 0.1955386996269226,\n          \"Top\": 0.45490431785583496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1955386996269226,\n            \"Y\": 0.45490431785583496\n          },\n          {\n            \"X\": 0.21486692130565643,\n            \"Y\": 0.45491865277290344\n          },\n          {\n            \"X\": 0.2148687243461609,\n            \"Y\": 0.46386441588401794\n          },\n          {\n            \"X\": 0.1955404132604599,\n            \"Y\": 0.4638499915599823\n          }\n        ]\n      },\n      \"Id\": \"f0356862-f79a-4abd-b62b-d0ab5e45bfc0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64292907714844,\n      \"Text\": \"(Enter\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03147733584046364,\n          \"Height\": 0.008271142840385437,\n          \"Left\": 0.22007811069488525,\n          \"Top\": 0.4549030065536499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22007811069488525,\n            \"Y\": 0.4549030065536499\n          },\n          {\n            \"X\": 0.25155362486839294,\n            \"Y\": 0.45492634177207947\n          },\n          {\n            \"X\": 0.2515554428100586,\n            \"Y\": 0.46317413449287415\n          },\n          {\n            \"X\": 0.22007979452610016,\n            \"Y\": 0.46315068006515503\n          }\n        ]\n      },\n      \"Id\": \"54e155ff-0f8c-484d-b50c-e61aa2cb4881\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94955444335938,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04376785084605217,\n          \"Height\": 0.007584995590150356,\n          \"Left\": 0.2557255029678345,\n          \"Top\": 0.4549172818660736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2557255029678345,\n            \"Y\": 0.4549172818660736\n          },\n          {\n            \"X\": 0.2994914948940277,\n            \"Y\": 0.4549497365951538\n          },\n          {\n            \"X\": 0.29949337244033813,\n            \"Y\": 0.46250230073928833\n          },\n          {\n            \"X\": 0.25572720170021057,\n            \"Y\": 0.4624696671962738\n          }\n        ]\n      },\n      \"Id\": \"2a329573-93fc-442a-9bc6-489e5e0abae6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89302062988281,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02010219916701317,\n          \"Height\": 0.00756269134581089,\n          \"Left\": 0.3036540448665619,\n          \"Top\": 0.4548806846141815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3036540448665619,\n            \"Y\": 0.4548806846141815\n          },\n          {\n            \"X\": 0.32375428080558777,\n            \"Y\": 0.45489558577537537\n          },\n          {\n            \"X\": 0.32375624775886536,\n            \"Y\": 0.46244338154792786\n          },\n          {\n            \"X\": 0.3036559224128723,\n            \"Y\": 0.46242842078208923\n          }\n        ]\n      },\n      \"Id\": \"a2c4fd3a-4612-4342-9cc5-33332e7430b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87794494628906,\n      \"Text\": \"Check\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033215489238500595,\n          \"Height\": 0.007695063482969999,\n          \"Left\": 0.32821160554885864,\n          \"Top\": 0.45473501086235046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32821160554885864,\n            \"Y\": 0.45473501086235046\n          },\n          {\n            \"X\": 0.3614249527454376,\n            \"Y\": 0.4547596275806427\n          },\n          {\n            \"X\": 0.36142709851264954,\n            \"Y\": 0.46243005990982056\n          },\n          {\n            \"X\": 0.3282136023044586,\n            \"Y\": 0.46240532398223877\n          }\n        ]\n      },\n      \"Id\": \"1efb6e7d-41b1-46ea-8759-497cbdb45de8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.95225524902344,\n      \"Text\": \"Period)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038082707673311234,\n          \"Height\": 0.008608803153038025,\n          \"Left\": 0.36597615480422974,\n          \"Top\": 0.45459428429603577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36597615480422974,\n            \"Y\": 0.45459428429603577\n          },\n          {\n            \"X\": 0.4040563106536865,\n            \"Y\": 0.4546225070953369\n          },\n          {\n            \"X\": 0.40405887365341187,\n            \"Y\": 0.463203102350235\n          },\n          {\n            \"X\": 0.36597856879234314,\n            \"Y\": 0.4631747007369995\n          }\n        ]\n      },\n      \"Id\": \"18aa70fe-1b08-4d7d-8e7e-429b795d7a50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81976318359375,\n      \"Text\": \"13.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014728475362062454,\n          \"Height\": 0.00792333111166954,\n          \"Left\": 0.46268776059150696,\n          \"Top\": 0.4544815719127655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46268776059150696,\n            \"Y\": 0.4544815719127655\n          },\n          {\n            \"X\": 0.4774135649204254,\n            \"Y\": 0.4544924795627594\n          },\n          {\n            \"X\": 0.4774162471294403,\n            \"Y\": 0.46240490674972534\n          },\n          {\n            \"X\": 0.4626903831958771,\n            \"Y\": 0.46239393949508667\n          }\n        ]\n      },\n      \"Id\": \"501b573b-5d9a-447a-9277-b8b321e6481d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91560363769531,\n      \"Text\": \"For\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017418518662452698,\n          \"Height\": 0.007798979990184307,\n          \"Left\": 0.4835207760334015,\n          \"Top\": 0.45453566312789917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4835207760334015,\n            \"Y\": 0.45453566312789917\n          },\n          {\n            \"X\": 0.5009365677833557,\n            \"Y\": 0.45454856753349304\n          },\n          {\n            \"X\": 0.5009393095970154,\n            \"Y\": 0.46233466267585754\n          },\n          {\n            \"X\": 0.483523428440094,\n            \"Y\": 0.4623216688632965\n          }\n        ]\n      },\n      \"Id\": \"2956da8d-d246-4b36-a3ee-c6af970c18a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76445770263672,\n      \"Text\": \"Military\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03930303454399109,\n          \"Height\": 0.009490585885941982,\n          \"Left\": 0.5055821537971497,\n          \"Top\": 0.45428118109703064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5055821537971497,\n            \"Y\": 0.45428118109703064\n          },\n          {\n            \"X\": 0.5448816418647766,\n            \"Y\": 0.4543102979660034\n          },\n          {\n            \"X\": 0.5448851585388184,\n            \"Y\": 0.463771790266037\n          },\n          {\n            \"X\": 0.5055854916572571,\n            \"Y\": 0.4637424647808075\n          }\n        ]\n      },\n      \"Id\": \"e9ab2fdf-c1f2-4d00-8830-0f7f377c6570\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60633850097656,\n      \"Text\": \"Personnel\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052749134600162506,\n          \"Height\": 0.008305998519062996,\n          \"Left\": 0.549112856388092,\n          \"Top\": 0.45407694578170776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.549112856388092,\n            \"Y\": 0.45407694578170776\n          },\n          {\n            \"X\": 0.6018586754798889,\n            \"Y\": 0.45411601662635803\n          },\n          {\n            \"X\": 0.6018620133399963,\n            \"Y\": 0.4623829424381256\n          },\n          {\n            \"X\": 0.5491160154342651,\n            \"Y\": 0.46234366297721863\n          }\n        ]\n      },\n      \"Id\": \"06ad8d2b-8f84-4d23-9c7a-6ee362d8dde5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87255096435547,\n      \"Text\": \"Only\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024761907756328583,\n          \"Height\": 0.009540287777781487,\n          \"Left\": 0.6061423420906067,\n          \"Top\": 0.4541981816291809\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6061423420906067,\n            \"Y\": 0.4541981816291809\n          },\n          {\n            \"X\": 0.6309002637863159,\n            \"Y\": 0.45421651005744934\n          },\n          {\n            \"X\": 0.6309042572975159,\n            \"Y\": 0.46373847126960754\n          },\n          {\n            \"X\": 0.6061462163925171,\n            \"Y\": 0.46372002363204956\n          }\n        ]\n      },\n      \"Id\": \"b992eb4d-86a0-43cf-89e8-b0998cdca84d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.846435546875,\n      \"Text\": \"14.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015480970963835716,\n          \"Height\": 0.00786975584924221,\n          \"Left\": 0.6940025091171265,\n          \"Top\": 0.46063899993896484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6940025091171265,\n            \"Y\": 0.46063899993896484\n          },\n          {\n            \"X\": 0.7094798684120178,\n            \"Y\": 0.4606505036354065\n          },\n          {\n            \"X\": 0.7094834446907043,\n            \"Y\": 0.4685087502002716\n          },\n          {\n            \"X\": 0.6940060257911682,\n            \"Y\": 0.4684971570968628\n          }\n        ]\n      },\n      \"Id\": \"bea8726e-91ca-4df7-b734-e43922f4afb0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.55677032470703,\n      \"Text\": \"If\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007702623028308153,\n          \"Height\": 0.007725265342742205,\n          \"Left\": 0.7148650884628296,\n          \"Top\": 0.4606056213378906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7148650884628296,\n            \"Y\": 0.4606056213378906\n          },\n          {\n            \"X\": 0.7225641012191772,\n            \"Y\": 0.46061134338378906\n          },\n          {\n            \"X\": 0.7225677371025085,\n            \"Y\": 0.46833088994026184\n          },\n          {\n            \"X\": 0.7148686647415161,\n            \"Y\": 0.468325138092041\n          }\n        ]\n      },\n      \"Id\": \"0d9f6940-e095-41d5-8979-916423bc487b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7518539428711,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048269860446453094,\n          \"Height\": 0.008520670235157013,\n          \"Left\": 0.7268985509872437,\n          \"Top\": 0.4603765904903412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7268985509872437,\n            \"Y\": 0.4603765904903412\n          },\n          {\n            \"X\": 0.7751642465591431,\n            \"Y\": 0.46041250228881836\n          },\n          {\n            \"X\": 0.7751684188842773,\n            \"Y\": 0.4688972532749176\n          },\n          {\n            \"X\": 0.7269024848937988,\n            \"Y\": 0.4688611626625061\n          }\n        ]\n      },\n      \"Id\": \"31fa31d0-5542-4fe1-b998-6e14f15e5d38\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82041931152344,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011497200466692448,\n          \"Height\": 0.0062303063459694386,\n          \"Left\": 0.779416024684906,\n          \"Top\": 0.4623278081417084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.779416024684906,\n            \"Y\": 0.4623278081417084\n          },\n          {\n            \"X\": 0.7909101247787476,\n            \"Y\": 0.46233636140823364\n          },\n          {\n            \"X\": 0.7909132242202759,\n            \"Y\": 0.46855810284614563\n          },\n          {\n            \"X\": 0.7794191241264343,\n            \"Y\": 0.468549519777298\n          }\n        ]\n      },\n      \"Id\": \"33c7193a-5481-4f67-88c2-383385744ac5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8534164428711,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03354666382074356,\n          \"Height\": 0.007688633631914854,\n          \"Left\": 0.7954208850860596,\n          \"Top\": 0.46084925532341003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7954208850860596,\n            \"Y\": 0.46084925532341003\n          },\n          {\n            \"X\": 0.828963577747345,\n            \"Y\": 0.46087419986724854\n          },\n          {\n            \"X\": 0.8289675116539001,\n            \"Y\": 0.4685378670692444\n          },\n          {\n            \"X\": 0.79542475938797,\n            \"Y\": 0.46851280331611633\n          }\n        ]\n      },\n      \"Id\": \"34004a52-01f4-46f9-bd85-7cc22dc2aef9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93704986572266,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008608918637037277,\n          \"Height\": 0.007650936488062143,\n          \"Left\": 0.8332593441009521,\n          \"Top\": 0.46076980233192444\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8332593441009521,\n            \"Y\": 0.46076980233192444\n          },\n          {\n            \"X\": 0.841864287853241,\n            \"Y\": 0.4607762098312378\n          },\n          {\n            \"X\": 0.8418682813644409,\n            \"Y\": 0.46842074394226074\n          },\n          {\n            \"X\": 0.8332633376121521,\n            \"Y\": 0.468414306640625\n          }\n        ]\n      },\n      \"Id\": \"32792ab4-ffd2-49b8-b025-f21835e76083\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.82460021972656,\n      \"Text\": \"Applicable,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05958272144198418,\n          \"Height\": 0.009322253055870533,\n          \"Left\": 0.8455323576927185,\n          \"Top\": 0.4606926143169403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8455323576927185,\n            \"Y\": 0.4606926143169403\n          },\n          {\n            \"X\": 0.9051098823547363,\n            \"Y\": 0.4607369303703308\n          },\n          {\n            \"X\": 0.9051150679588318,\n            \"Y\": 0.47001487016677856\n          },\n          {\n            \"X\": 0.8455372452735901,\n            \"Y\": 0.4699702560901642\n          }\n        ]\n      },\n      \"Id\": \"b85952e1-5b51-4431-8683-35c7b3dc34cf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96941375732422,\n      \"Text\": \"Annual\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038516540080308914,\n          \"Height\": 0.007513827178627253,\n          \"Left\": 0.17548856139183044,\n          \"Top\": 0.47004562616348267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17548856139183044,\n            \"Y\": 0.47004562616348267\n          },\n          {\n            \"X\": 0.21400359272956848,\n            \"Y\": 0.47007447481155396\n          },\n          {\n            \"X\": 0.21400509774684906,\n            \"Y\": 0.4775594472885132\n          },\n          {\n            \"X\": 0.17548993229866028,\n            \"Y\": 0.47753047943115234\n          }\n        ]\n      },\n      \"Id\": \"cbfdbe95-2234-4fa5-a9d0-0e1e10db260d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91011810302734,\n      \"Text\": \"Hourly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035166699439287186,\n          \"Height\": 0.009193075820803642,\n          \"Left\": 0.2735043168067932,\n          \"Top\": 0.46994781494140625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2735043168067932,\n            \"Y\": 0.46994781494140625\n          },\n          {\n            \"X\": 0.30866870284080505,\n            \"Y\": 0.469974160194397\n          },\n          {\n            \"X\": 0.3086709976196289,\n            \"Y\": 0.47914090752601624\n          },\n          {\n            \"X\": 0.27350643277168274,\n            \"Y\": 0.4791144132614136\n          }\n        ]\n      },\n      \"Id\": \"98b61ae6-7069-4c7b-9e38-32cca1f292c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91816711425781,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019851122051477432,\n          \"Height\": 0.009040378965437412,\n          \"Left\": 0.4624888002872467,\n          \"Top\": 0.4697399139404297\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4624888002872467,\n            \"Y\": 0.4697399139404297\n          },\n          {\n            \"X\": 0.4823368489742279,\n            \"Y\": 0.46975475549697876\n          },\n          {\n            \"X\": 0.48233991861343384,\n            \"Y\": 0.4787802994251251\n          },\n          {\n            \"X\": 0.4624917805194855,\n            \"Y\": 0.4787653386592865\n          }\n        ]\n      },\n      \"Id\": \"3ebd9d23-82b7-4281-9e26-16ddf9367c67\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8686752319336,\n      \"Text\": \"Grade\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031787097454071045,\n          \"Height\": 0.008172824047505856,\n          \"Left\": 0.4868853688240051,\n          \"Top\": 0.4694586992263794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4868853688240051,\n            \"Y\": 0.4694586992263794\n          },\n          {\n            \"X\": 0.5186695456504822,\n            \"Y\": 0.4694824814796448\n          },\n          {\n            \"X\": 0.5186724662780762,\n            \"Y\": 0.47763150930404663\n          },\n          {\n            \"X\": 0.48688817024230957,\n            \"Y\": 0.4776076078414917\n          }\n        ]\n      },\n      \"Id\": \"edf15306-c1dd-4c3d-9bf6-79ee11f33786\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97754669189453,\n      \"Text\": \"10\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013682499527931213,\n          \"Height\": 0.008137601427733898,\n          \"Left\": 0.6053122282028198,\n          \"Top\": 0.47006332874298096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6053122282028198,\n            \"Y\": 0.47006332874298096\n          },\n          {\n            \"X\": 0.6189913749694824,\n            \"Y\": 0.47007355093955994\n          },\n          {\n            \"X\": 0.6189947128295898,\n            \"Y\": 0.47820091247558594\n          },\n          {\n            \"X\": 0.6053155064582825,\n            \"Y\": 0.4781906306743622\n          }\n        ]\n      },\n      \"Id\": \"d3465808-1142-48fc-bdf5-c56c3a9c1bc9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.05997467041016,\n      \"Text\": \"Is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009148864075541496,\n          \"Height\": 0.0075362673960626125,\n          \"Left\": 0.7142791152000427,\n          \"Top\": 0.471051424741745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7142791152000427,\n            \"Y\": 0.471051424741745\n          },\n          {\n            \"X\": 0.72342449426651,\n            \"Y\": 0.47105827927589417\n          },\n          {\n            \"X\": 0.7234280109405518,\n            \"Y\": 0.47858768701553345\n          },\n          {\n            \"X\": 0.7142825722694397,\n            \"Y\": 0.4785808026790619\n          }\n        ]\n      },\n      \"Id\": \"cf2543e9-4251-464c-a8c8-726032ebd1b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.27886199951172,\n      \"Text\": \"Its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012954764999449253,\n          \"Height\": 0.00781367626041174,\n          \"Left\": 0.7278783321380615,\n          \"Top\": 0.47088509798049927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7278783321380615,\n            \"Y\": 0.47088509798049927\n          },\n          {\n            \"X\": 0.7408294081687927,\n            \"Y\": 0.47089478373527527\n          },\n          {\n            \"X\": 0.7408331036567688,\n            \"Y\": 0.4786987602710724\n          },\n          {\n            \"X\": 0.7278819680213928,\n            \"Y\": 0.4786890149116516\n          }\n        ]\n      },\n      \"Id\": \"a0813f12-27cb-4dbc-a9c2-2847d772de69\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74995422363281,\n      \"Text\": \"Continuance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06754908710718155,\n          \"Height\": 0.007971706800162792,\n          \"Left\": 0.7450745105743408,\n          \"Top\": 0.47060269117355347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7450745105743408,\n            \"Y\": 0.47060269117355347\n          },\n          {\n            \"X\": 0.8126195669174194,\n            \"Y\": 0.4706532955169678\n          },\n          {\n            \"X\": 0.8126236200332642,\n            \"Y\": 0.47857439517974854\n          },\n          {\n            \"X\": 0.7450782656669617,\n            \"Y\": 0.4785235822200775\n          }\n        ]\n      },\n      \"Id\": \"07735d07-7149-44b3-83bf-2492064b130f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.37252807617188,\n      \"Text\": \"Likely?\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035803306847810745,\n          \"Height\": 0.009263567626476288,\n          \"Left\": 0.8169476985931396,\n          \"Top\": 0.4705607295036316\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8169476985931396,\n            \"Y\": 0.4705607295036316\n          },\n          {\n            \"X\": 0.8527461290359497,\n            \"Y\": 0.4705875515937805\n          },\n          {\n            \"X\": 0.8527510166168213,\n            \"Y\": 0.4798243045806885\n          },\n          {\n            \"X\": 0.8169524669647217,\n            \"Y\": 0.4797973334789276\n          }\n        ]\n      },\n      \"Id\": \"a99a4d4e-2945-4f80-bc21-237c6837547f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95346069335938,\n      \"Text\": \"Monthly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044197168201208115,\n          \"Height\": 0.009048404172062874,\n          \"Left\": 0.1757652908563614,\n          \"Top\": 0.485186368227005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1757652908563614,\n            \"Y\": 0.485186368227005\n          },\n          {\n            \"X\": 0.21996060013771057,\n            \"Y\": 0.4852197766304016\n          },\n          {\n            \"X\": 0.2199624478816986,\n            \"Y\": 0.49423477053642273\n          },\n          {\n            \"X\": 0.1757669299840927,\n            \"Y\": 0.4942011535167694\n          }\n        ]\n      },\n      \"Id\": \"679529f8-0d6f-4a1c-93fb-18153d91876e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9195327758789,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030395302921533585,\n          \"Height\": 0.007871807552874088,\n          \"Left\": 0.2732591927051544,\n          \"Top\": 0.4850866496562958\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2732591927051544,\n            \"Y\": 0.4850866496562958\n          },\n          {\n            \"X\": 0.3036525547504425,\n            \"Y\": 0.4851096272468567\n          },\n          {\n            \"X\": 0.3036544919013977,\n            \"Y\": 0.4929584562778473\n          },\n          {\n            \"X\": 0.27326101064682007,\n            \"Y\": 0.4929353594779968\n          }\n        ]\n      },\n      \"Id\": \"0eb04549-25d2-4583-a64c-a3b6683a7589\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61548614501953,\n      \"Text\": \"(Specify)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04762786626815796,\n          \"Height\": 0.009409526363015175,\n          \"Left\": 0.3078750669956207,\n          \"Top\": 0.4848414659500122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3078750669956207,\n            \"Y\": 0.4848414659500122\n          },\n          {\n            \"X\": 0.35550037026405334,\n            \"Y\": 0.48487746715545654\n          },\n          {\n            \"X\": 0.3555029332637787,\n            \"Y\": 0.49425098299980164\n          },\n          {\n            \"X\": 0.30787742137908936,\n            \"Y\": 0.4942147731781006\n          }\n        ]\n      },\n      \"Id\": \"7fb58062-961a-4603-89a0-d4c0e23074aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92752838134766,\n      \"Text\": \"Type\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026862287893891335,\n          \"Height\": 0.009509916417300701,\n          \"Left\": 0.4622015058994293,\n          \"Top\": 0.4848152995109558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4622015058994293,\n            \"Y\": 0.4848152995109558\n          },\n          {\n            \"X\": 0.48906052112579346,\n            \"Y\": 0.4848356246948242\n          },\n          {\n            \"X\": 0.4890637993812561,\n            \"Y\": 0.4943252205848694\n          },\n          {\n            \"X\": 0.46220463514328003,\n            \"Y\": 0.4943048059940338\n          }\n        ]\n      },\n      \"Id\": \"a4137c26-64b0-44b4-a3f0-16cf8b4e2d96\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93134307861328,\n      \"Text\": \"Monthly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0444982647895813,\n          \"Height\": 0.009087531827390194,\n          \"Left\": 0.5697677135467529,\n          \"Top\": 0.48490071296691895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5697677135467529,\n            \"Y\": 0.48490071296691895\n          },\n          {\n            \"X\": 0.6142622828483582,\n            \"Y\": 0.48493435978889465\n          },\n          {\n            \"X\": 0.6142659783363342,\n            \"Y\": 0.4939882457256317\n          },\n          {\n            \"X\": 0.5697712302207947,\n            \"Y\": 0.4939544200897217\n          }\n        ]\n      },\n      \"Id\": \"964d6a85-3e94-43e7-8f73-03afcade4092\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95345306396484,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04404682666063309,\n          \"Height\": 0.007764976471662521,\n          \"Left\": 0.6181265711784363,\n          \"Top\": 0.48498305678367615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6181265711784363,\n            \"Y\": 0.48498305678367615\n          },\n          {\n            \"X\": 0.6621700525283813,\n            \"Y\": 0.4850163459777832\n          },\n          {\n            \"X\": 0.6621733903884888,\n            \"Y\": 0.49274805188179016\n          },\n          {\n            \"X\": 0.6181297898292542,\n            \"Y\": 0.4927145838737488\n          }\n        ]\n      },\n      \"Id\": \"5596b141-98e4-4b46-b806-a8d61e8473a3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91141510009766,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04869239032268524,\n          \"Height\": 0.007908759638667107,\n          \"Left\": 0.7163776159286499,\n          \"Top\": 0.4858814477920532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7163776159286499,\n            \"Y\": 0.4858814477920532\n          },\n          {\n            \"X\": 0.7650661468505859,\n            \"Y\": 0.4859182834625244\n          },\n          {\n            \"X\": 0.7650699615478516,\n            \"Y\": 0.4937902092933655\n          },\n          {\n            \"X\": 0.7163812518119812,\n            \"Y\": 0.49375322461128235\n          }\n        ]\n      },\n      \"Id\": \"22a75d8a-f351-469d-90a9-4fa62382e122\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96331024169922,\n      \"Text\": \"Yes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019769199192523956,\n          \"Height\": 0.00759913632646203,\n          \"Left\": 0.8211093544960022,\n          \"Top\": 0.4859759509563446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8211093544960022,\n            \"Y\": 0.4859759509563446\n          },\n          {\n            \"X\": 0.8408745527267456,\n            \"Y\": 0.48599088191986084\n          },\n          {\n            \"X\": 0.8408785462379456,\n            \"Y\": 0.4935750663280487\n          },\n          {\n            \"X\": 0.8211132884025574,\n            \"Y\": 0.4935600459575653\n          }\n        ]\n      },\n      \"Id\": \"df368f63-f572-47bd-9fec-868582b3e533\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86602020263672,\n      \"Text\": \"No\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015231152065098286,\n          \"Height\": 0.007691001053899527,\n          \"Left\": 0.8815532922744751,\n          \"Top\": 0.4859236180782318\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8815532922744751,\n            \"Y\": 0.4859236180782318\n          },\n          {\n            \"X\": 0.8967801928520203,\n            \"Y\": 0.48593515157699585\n          },\n          {\n            \"X\": 0.8967844247817993,\n            \"Y\": 0.4936146140098572\n          },\n          {\n            \"X\": 0.8815575242042542,\n            \"Y\": 0.49360305070877075\n          }\n        ]\n      },\n      \"Id\": \"02711ad4-b8db-4035-a1a9-6a0eca0c92a1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78877258300781,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006025492213666439,\n          \"Height\": 0.0073960814625024796,\n          \"Left\": 0.05237148702144623,\n          \"Top\": 0.5007235407829285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05237148702144623,\n            \"Y\": 0.5007235407829285\n          },\n          {\n            \"X\": 0.05839608609676361,\n            \"Y\": 0.5007281303405762\n          },\n          {\n            \"X\": 0.05839698016643524,\n            \"Y\": 0.5081196427345276\n          },\n          {\n            \"X\": 0.05237235873937607,\n            \"Y\": 0.5081149935722351\n          }\n        ]\n      },\n      \"Id\": \"52dd7b25-729e-4e37-a67b-7a05b6034732\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9347915649414,\n      \"Text\": \"5600\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028935154899954796,\n          \"Height\": 0.008477243594825268,\n          \"Left\": 0.0726679265499115,\n          \"Top\": 0.4989885091781616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0726679265499115,\n            \"Y\": 0.4989885091781616\n          },\n          {\n            \"X\": 0.10160186886787415,\n            \"Y\": 0.4990105926990509\n          },\n          {\n            \"X\": 0.10160308331251144,\n            \"Y\": 0.5074657797813416\n          },\n          {\n            \"X\": 0.07266901433467865,\n            \"Y\": 0.5074435472488403\n          }\n        ]\n      },\n      \"Id\": \"7fa626c0-ce16-4c57-9a55-8b9ed6a7d46e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75518798828125,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033616382628679276,\n          \"Height\": 0.0076016588136553764,\n          \"Left\": 0.7166971564292908,\n          \"Top\": 0.4961114823818207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7166971564292908,\n            \"Y\": 0.4961114823818207\n          },\n          {\n            \"X\": 0.7503098845481873,\n            \"Y\": 0.4961370825767517\n          },\n          {\n            \"X\": 0.7503135204315186,\n            \"Y\": 0.5037131309509277\n          },\n          {\n            \"X\": 0.7167006731033325,\n            \"Y\": 0.5036874413490295\n          }\n        ]\n      },\n      \"Id\": \"ba67eb95-2fdc-426f-a7ff-72c529a674f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96395111083984,\n      \"Text\": \"Yes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019986320286989212,\n          \"Height\": 0.007596176117658615,\n          \"Left\": 0.8208472728729248,\n          \"Top\": 0.4959971308708191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8208472728729248,\n            \"Y\": 0.4959971308708191\n          },\n          {\n            \"X\": 0.8408295512199402,\n            \"Y\": 0.4960123300552368\n          },\n          {\n            \"X\": 0.8408335447311401,\n            \"Y\": 0.5035933256149292\n          },\n          {\n            \"X\": 0.8208511471748352,\n            \"Y\": 0.5035780072212219\n          }\n        ]\n      },\n      \"Id\": \"21f912c3-ead9-45f9-ba17-9b42f17df6bc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81405639648438,\n      \"Text\": \"No\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015358570963144302,\n          \"Height\": 0.007808223832398653,\n          \"Left\": 0.8813149929046631,\n          \"Top\": 0.4959584176540375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8813149929046631,\n            \"Y\": 0.4959584176540375\n          },\n          {\n            \"X\": 0.8966692686080933,\n            \"Y\": 0.49597010016441345\n          },\n          {\n            \"X\": 0.8966735601425171,\n            \"Y\": 0.503766655921936\n          },\n          {\n            \"X\": 0.8813192844390869,\n            \"Y\": 0.5037549138069153\n          }\n        ]\n      },\n      \"Id\": \"039d0e09-08a0-4457-8a28-333b8c3acef7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94515228271484,\n      \"Text\": \"Weekly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040022775530815125,\n          \"Height\": 0.009166546165943146,\n          \"Left\": 0.17523615062236786,\n          \"Top\": 0.500241219997406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17523615062236786,\n            \"Y\": 0.500241219997406\n          },\n          {\n            \"X\": 0.21525707840919495,\n            \"Y\": 0.500271737575531\n          },\n          {\n            \"X\": 0.21525892615318298,\n            \"Y\": 0.5094077587127686\n          },\n          {\n            \"X\": 0.17523781955242157,\n            \"Y\": 0.5093770027160645\n          }\n        ]\n      },\n      \"Id\": \"fca0add3-4391-415d-a1a2-d3aa10cb7352\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85921478271484,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026280434802174568,\n          \"Height\": 0.007982846349477768,\n          \"Left\": 0.4622069299221039,\n          \"Top\": 0.508558988571167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4622069299221039,\n            \"Y\": 0.508558988571167\n          },\n          {\n            \"X\": 0.48848462104797363,\n            \"Y\": 0.5085791349411011\n          },\n          {\n            \"X\": 0.4884873628616333,\n            \"Y\": 0.5165418386459351\n          },\n          {\n            \"X\": 0.462209552526474,\n            \"Y\": 0.5165215730667114\n          }\n        ]\n      },\n      \"Id\": \"82db3168-877d-4e7d-8837-c29116d15454\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7669677734375,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019201958552002907,\n          \"Height\": 0.009485093876719475,\n          \"Left\": 0.49325117468833923,\n          \"Top\": 0.5085375905036926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49325117468833923,\n            \"Y\": 0.5085375905036926\n          },\n          {\n            \"X\": 0.5124497413635254,\n            \"Y\": 0.5085523128509521\n          },\n          {\n            \"X\": 0.5124531388282776,\n            \"Y\": 0.5180227160453796\n          },\n          {\n            \"X\": 0.4932544529438019,\n            \"Y\": 0.5180078744888306\n          }\n        ]\n      },\n      \"Id\": \"6e04c6ca-304e-4304-9660-eba3eaaa9f97\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64864349365234,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0065875668078660965,\n          \"Height\": 0.00795650202780962,\n          \"Left\": 0.5693185925483704,\n          \"Top\": 0.5084983706474304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693185925483704,\n            \"Y\": 0.5084983706474304\n          },\n          {\n            \"X\": 0.575903058052063,\n            \"Y\": 0.5085034370422363\n          },\n          {\n            \"X\": 0.5759061574935913,\n            \"Y\": 0.5164548754692078\n          },\n          {\n            \"X\": 0.5693216919898987,\n            \"Y\": 0.5164498090744019\n          }\n        ]\n      },\n      \"Id\": \"89365d6a-5b71-4ba4-b054-e144e8651a6c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95767211914062,\n      \"Text\": \"520\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021677587181329727,\n          \"Height\": 0.008442598395049572,\n          \"Left\": 0.6007818579673767,\n          \"Top\": 0.5078707933425903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6007818579673767,\n            \"Y\": 0.5078707933425903\n          },\n          {\n            \"X\": 0.6224559545516968,\n            \"Y\": 0.5078874230384827\n          },\n          {\n            \"X\": 0.6224594116210938,\n            \"Y\": 0.516313374042511\n          },\n          {\n            \"X\": 0.6007852554321289,\n            \"Y\": 0.5162966847419739\n          }\n        ]\n      },\n      \"Id\": \"e0903cf3-3f97-4fc1-89e2-5caf74017737\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.66983795166016,\n      \"Text\": \"12B.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022782517597079277,\n          \"Height\": 0.0077146547846496105,\n          \"Left\": 0.19123117625713348,\n          \"Top\": 0.5153705477714539\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19123117625713348,\n            \"Y\": 0.5153705477714539\n          },\n          {\n            \"X\": 0.21401214599609375,\n            \"Y\": 0.5153881311416626\n          },\n          {\n            \"X\": 0.2140136957168579,\n            \"Y\": 0.5230852365493774\n          },\n          {\n            \"X\": 0.19123263657093048,\n            \"Y\": 0.5230675935745239\n          }\n        ]\n      },\n      \"Id\": \"0cc73077-7f4a-4fec-9e65-8ed679b504d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90869903564453,\n      \"Text\": \"Gross\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03439851477742195,\n          \"Height\": 0.007894051261246204,\n          \"Left\": 0.21977096796035767,\n          \"Top\": 0.5152967572212219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21977096796035767,\n            \"Y\": 0.5152967572212219\n          },\n          {\n            \"X\": 0.25416773557662964,\n            \"Y\": 0.515323281288147\n          },\n          {\n            \"X\": 0.2541694641113281,\n            \"Y\": 0.5231907963752747\n          },\n          {\n            \"X\": 0.2197725772857666,\n            \"Y\": 0.5231641530990601\n          }\n        ]\n      },\n      \"Id\": \"99d29c7c-9c65-442d-9170-e2943adada0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9319076538086,\n      \"Text\": \"Earnings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04520084336400032,\n          \"Height\": 0.008573913015425205,\n          \"Left\": 0.2586628794670105,\n          \"Top\": 0.515477180480957\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2586628794670105,\n            \"Y\": 0.515477180480957\n          },\n          {\n            \"X\": 0.3038615882396698,\n            \"Y\": 0.5155120491981506\n          },\n          {\n            \"X\": 0.3038637042045593,\n            \"Y\": 0.5240511298179626\n          },\n          {\n            \"X\": 0.2586647868156433,\n            \"Y\": 0.5240160822868347\n          }\n        ]\n      },\n      \"Id\": \"3f30c560-e227-4962-9507-e89fc0846897\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26907348632812,\n      \"Text\": \"15.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014809710904955864,\n          \"Height\": 0.00808315072208643,\n          \"Left\": 0.6941283345222473,\n          \"Top\": 0.5145728588104248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6941283345222473,\n            \"Y\": 0.5145728588104248\n          },\n          {\n            \"X\": 0.7089343667030334,\n            \"Y\": 0.5145842432975769\n          },\n          {\n            \"X\": 0.7089380621910095,\n            \"Y\": 0.5226560235023499\n          },\n          {\n            \"X\": 0.6941319704055786,\n            \"Y\": 0.5226445198059082\n          }\n        ]\n      },\n      \"Id\": \"95965eaa-0aaf-4cfe-a4e3-10044ac308cd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5442886352539,\n      \"Text\": \"If\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0076829055324196815,\n          \"Height\": 0.0076331207528710365,\n          \"Left\": 0.7148846387863159,\n          \"Top\": 0.5147712230682373\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7148846387863159,\n            \"Y\": 0.5147712230682373\n          },\n          {\n            \"X\": 0.7225639820098877,\n            \"Y\": 0.5147771239280701\n          },\n          {\n            \"X\": 0.7225675582885742,\n            \"Y\": 0.5224043130874634\n          },\n          {\n            \"X\": 0.7148881554603577,\n            \"Y\": 0.5223983526229858\n          }\n        ]\n      },\n      \"Id\": \"1f536c90-70ef-444e-9550-ff70b21ac56b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91325378417969,\n      \"Text\": \"paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02249341644346714,\n          \"Height\": 0.009365348145365715,\n          \"Left\": 0.7266463041305542,\n          \"Top\": 0.5148050785064697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7266463041305542,\n            \"Y\": 0.5148050785064697\n          },\n          {\n            \"X\": 0.7491352558135986,\n            \"Y\": 0.5148224234580994\n          },\n          {\n            \"X\": 0.7491397261619568,\n            \"Y\": 0.524170458316803\n          },\n          {\n            \"X\": 0.7266506552696228,\n            \"Y\": 0.5241530537605286\n          }\n        ]\n      },\n      \"Id\": \"6c4c7e9f-d779-41fa-81cc-9749db2284ea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92595672607422,\n      \"Text\": \"hourly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03399341553449631,\n          \"Height\": 0.009315712377429008,\n          \"Left\": 0.7532541155815125,\n          \"Top\": 0.5148453712463379\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7532541155815125,\n            \"Y\": 0.5148453712463379\n          },\n          {\n            \"X\": 0.7872428894042969,\n            \"Y\": 0.5148715972900391\n          },\n          {\n            \"X\": 0.7872475385665894,\n            \"Y\": 0.5241611003875732\n          },\n          {\n            \"X\": 0.7532585859298706,\n            \"Y\": 0.5241347551345825\n          }\n        ]\n      },\n      \"Id\": \"e07fc12a-179e-4f5a-b957-e18188f03c2a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.62535858154297,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010026311501860619,\n          \"Height\": 0.002153758890926838,\n          \"Left\": 0.7921002507209778,\n          \"Top\": 0.5184417963027954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7921002507209778,\n            \"Y\": 0.5184417963027954\n          },\n          {\n            \"X\": 0.8021255135536194,\n            \"Y\": 0.5184495449066162\n          },\n          {\n            \"X\": 0.8021265864372253,\n            \"Y\": 0.5205955505371094\n          },\n          {\n            \"X\": 0.7921013832092285,\n            \"Y\": 0.5205878019332886\n          }\n        ]\n      },\n      \"Id\": \"b984e697-5c59-47d2-a1f5-1b28db23c63b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91667175292969,\n      \"Text\": \"average\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04168727248907089,\n          \"Height\": 0.00795088429003954,\n          \"Left\": 0.8070364594459534,\n          \"Top\": 0.5162481665611267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8070364594459534,\n            \"Y\": 0.5162481665611267\n          },\n          {\n            \"X\": 0.8487195372581482,\n            \"Y\": 0.5162802934646606\n          },\n          {\n            \"X\": 0.8487237095832825,\n            \"Y\": 0.5241990685462952\n          },\n          {\n            \"X\": 0.8070405125617981,\n            \"Y\": 0.5241667628288269\n          }\n        ]\n      },\n      \"Id\": \"617413c8-54b0-451b-8069-c0071b1db832\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93551635742188,\n      \"Text\": \"hours\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030306145548820496,\n          \"Height\": 0.007854900322854519,\n          \"Left\": 0.853043258190155,\n          \"Top\": 0.5149734020233154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.853043258190155,\n            \"Y\": 0.5149734020233154\n          },\n          {\n            \"X\": 0.8833450675010681,\n            \"Y\": 0.5149967670440674\n          },\n          {\n            \"X\": 0.8833494186401367,\n            \"Y\": 0.5228282809257507\n          },\n          {\n            \"X\": 0.8530474305152893,\n            \"Y\": 0.522804856300354\n          }\n        ]\n      },\n      \"Id\": \"2eb526d4-c9f4-432e-bc95-ae8cf577b13f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88648223876953,\n      \"Text\": \"per\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01732758618891239,\n          \"Height\": 0.007418344728648663,\n          \"Left\": 0.8874608278274536,\n          \"Top\": 0.5167399048805237\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8874608278274536,\n            \"Y\": 0.5167399048805237\n          },\n          {\n            \"X\": 0.9047843217849731,\n            \"Y\": 0.5167532563209534\n          },\n          {\n            \"X\": 0.9047884345054626,\n            \"Y\": 0.524158239364624\n          },\n          {\n            \"X\": 0.8874649405479431,\n            \"Y\": 0.5241448283195496\n          }\n        ]\n      },\n      \"Id\": \"aaa6fb6f-9c34-4444-bd26-12497c4e676f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91734313964844,\n      \"Text\": \"week\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028228431940078735,\n          \"Height\": 0.007448879070580006,\n          \"Left\": 0.7135378122329712,\n          \"Top\": 0.5252330303192139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7135378122329712,\n            \"Y\": 0.5252330303192139\n          },\n          {\n            \"X\": 0.7417626976966858,\n            \"Y\": 0.5252549052238464\n          },\n          {\n            \"X\": 0.7417662739753723,\n            \"Y\": 0.5326818823814392\n          },\n          {\n            \"X\": 0.7135412096977234,\n            \"Y\": 0.5326599478721619\n          }\n        ]\n      },\n      \"Id\": \"c5e38be8-c4b4-4332-abee-46a23a401490\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57598114013672,\n      \"Text\": \"Type\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02633204124867916,\n          \"Height\": 0.009176858700811863,\n          \"Left\": 0.05254114046692848,\n          \"Top\": 0.5306742191314697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05254114046692848,\n            \"Y\": 0.5306742191314697\n          },\n          {\n            \"X\": 0.07887197285890579,\n            \"Y\": 0.5306947231292725\n          },\n          {\n            \"X\": 0.0788731798529625,\n            \"Y\": 0.5398510694503784\n          },\n          {\n            \"X\": 0.052542220801115036,\n            \"Y\": 0.5398305058479309\n          }\n        ]\n      },\n      \"Id\": \"f028f021-0221-4738-a906-05cb6e816e15\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96943664550781,\n      \"Text\": \"Year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02451268583536148,\n          \"Height\": 0.007734839804470539,\n          \"Left\": 0.1399485021829605,\n          \"Top\": 0.5304809808731079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1399485021829605,\n            \"Y\": 0.5304809808731079\n          },\n          {\n            \"X\": 0.16445983946323395,\n            \"Y\": 0.530500054359436\n          },\n          {\n            \"X\": 0.1644611954689026,\n            \"Y\": 0.5382158160209656\n          },\n          {\n            \"X\": 0.139949768781662,\n            \"Y\": 0.5381966829299927\n          }\n        ]\n      },\n      \"Id\": \"87afe5b6-375f-449a-a32b-3f31ac1c0b20\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79206085205078,\n      \"Text\": \"To\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01461474597454071,\n          \"Height\": 0.0078040240332484245,\n          \"Left\": 0.16870366036891937,\n          \"Top\": 0.5303733944892883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16870366036891937,\n            \"Y\": 0.5303733944892883\n          },\n          {\n            \"X\": 0.18331696093082428,\n            \"Y\": 0.5303847789764404\n          },\n          {\n            \"X\": 0.18331840634346008,\n            \"Y\": 0.5381774306297302\n          },\n          {\n            \"X\": 0.1687050461769104,\n            \"Y\": 0.5381659865379333\n          }\n        ]\n      },\n      \"Id\": \"e7618cd1-7eb3-476c-98b4-34a40e307115\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88589477539062,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024844584986567497,\n          \"Height\": 0.007735440041869879,\n          \"Left\": 0.18781021237373352,\n          \"Top\": 0.5304470062255859\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18781021237373352,\n            \"Y\": 0.5304470062255859\n          },\n          {\n            \"X\": 0.212653249502182,\n            \"Y\": 0.5304663777351379\n          },\n          {\n            \"X\": 0.21265479922294617,\n            \"Y\": 0.5381824374198914\n          },\n          {\n            \"X\": 0.18781165778636932,\n            \"Y\": 0.5381630659103394\n          }\n        ]\n      },\n      \"Id\": \"b198602b-1bf9-4ce7-9035-dbc700302316\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70086669921875,\n      \"Text\": \"Past\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023022202774882317,\n          \"Height\": 0.007594448979943991,\n          \"Left\": 0.2477855086326599,\n          \"Top\": 0.5305379033088684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2477855086326599,\n            \"Y\": 0.5305379033088684\n          },\n          {\n            \"X\": 0.2708059549331665,\n            \"Y\": 0.530555784702301\n          },\n          {\n            \"X\": 0.2708077132701874,\n            \"Y\": 0.5381323099136353\n          },\n          {\n            \"X\": 0.24778717756271362,\n            \"Y\": 0.5381143093109131\n          }\n        ]\n      },\n      \"Id\": \"ce33e3fc-4a3a-4d74-a8b1-8f9411ff8057\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73026275634766,\n      \"Text\": \"Year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024613909423351288,\n          \"Height\": 0.007618479430675507,\n          \"Left\": 0.2748887240886688,\n          \"Top\": 0.5304852724075317\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2748887240886688,\n            \"Y\": 0.5304852724075317\n          },\n          {\n            \"X\": 0.2995007634162903,\n            \"Y\": 0.5305044651031494\n          },\n          {\n            \"X\": 0.2995026409626007,\n            \"Y\": 0.5381037592887878\n          },\n          {\n            \"X\": 0.2748905122280121,\n            \"Y\": 0.5380845069885254\n          }\n        ]\n      },\n      \"Id\": \"9d61693f-d822-407c-ab54-59fb3854f0ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.22599792480469,\n      \"Text\": \"Past\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02380775846540928,\n          \"Height\": 0.007717125117778778,\n          \"Left\": 0.3547185957431793,\n          \"Top\": 0.5304455757141113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3547185957431793,\n            \"Y\": 0.5304455757141113\n          },\n          {\n            \"X\": 0.37852415442466736,\n            \"Y\": 0.5304641127586365\n          },\n          {\n            \"X\": 0.37852635979652405,\n            \"Y\": 0.5381627082824707\n          },\n          {\n            \"X\": 0.35472071170806885,\n            \"Y\": 0.538144052028656\n          }\n        ]\n      },\n      \"Id\": \"17c374b1-dbfa-4d0b-b2df-c6681deea5a4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.0462875366211,\n      \"Text\": \"Year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024552660062909126,\n          \"Height\": 0.007654792163521051,\n          \"Left\": 0.38218796253204346,\n          \"Top\": 0.5303734540939331\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38218796253204346,\n            \"Y\": 0.5303734540939331\n          },\n          {\n            \"X\": 0.4067383408546448,\n            \"Y\": 0.5303925275802612\n          },\n          {\n            \"X\": 0.40674063563346863,\n            \"Y\": 0.5380282402038574\n          },\n          {\n            \"X\": 0.38219016790390015,\n            \"Y\": 0.5380090475082397\n          }\n        ]\n      },\n      \"Id\": \"ec2f2e86-0ad9-424e-948b-6ace85d46483\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74243927001953,\n      \"Text\": \"Rations\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039623454213142395,\n          \"Height\": 0.007699131034314632,\n          \"Left\": 0.4626137912273407,\n          \"Top\": 0.5303477644920349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626137912273407,\n            \"Y\": 0.5303477644920349\n          },\n          {\n            \"X\": 0.5022345781326294,\n            \"Y\": 0.5303785800933838\n          },\n          {\n            \"X\": 0.5022372603416443,\n            \"Y\": 0.5380468964576721\n          },\n          {\n            \"X\": 0.46261632442474365,\n            \"Y\": 0.5380159020423889\n          }\n        ]\n      },\n      \"Id\": \"4c9950eb-61fa-480a-b336-8893250a4f8a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81990051269531,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00636565126478672,\n          \"Height\": 0.007810980547219515,\n          \"Left\": 0.569416880607605,\n          \"Top\": 0.5302191972732544\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.569416880607605,\n            \"Y\": 0.5302191972732544\n          },\n          {\n            \"X\": 0.5757794976234436,\n            \"Y\": 0.5302241444587708\n          },\n          {\n            \"X\": 0.5757825374603271,\n            \"Y\": 0.5380301475524902\n          },\n          {\n            \"X\": 0.5694199204444885,\n            \"Y\": 0.5380252003669739\n          }\n        ]\n      },\n      \"Id\": \"9ffc8f15-0ddb-4781-8cc2-1b3e52308fae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84886169433594,\n      \"Text\": \"162\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020970160141587257,\n          \"Height\": 0.008265306241810322,\n          \"Left\": 0.6047706604003906,\n          \"Top\": 0.5317496061325073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6047706604003906,\n            \"Y\": 0.5317496061325073\n          },\n          {\n            \"X\": 0.6257374286651611,\n            \"Y\": 0.5317659378051758\n          },\n          {\n            \"X\": 0.6257408261299133,\n            \"Y\": 0.540014922618866\n          },\n          {\n            \"X\": 0.604773998260498,\n            \"Y\": 0.5399985313415527\n          }\n        ]\n      },\n      \"Id\": \"be2f9285-9a1f-4e1e-a83a-520cc21e421a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94255828857422,\n      \"Text\": \"40\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015140868723392487,\n          \"Height\": 0.008183998987078667,\n          \"Left\": 0.7712322473526001,\n          \"Top\": 0.5291512608528137\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7712322473526001,\n            \"Y\": 0.5291512608528137\n          },\n          {\n            \"X\": 0.7863690257072449,\n            \"Y\": 0.5291630029678345\n          },\n          {\n            \"X\": 0.7863730788230896,\n            \"Y\": 0.537335216999054\n          },\n          {\n            \"X\": 0.7712362408638,\n            \"Y\": 0.5373234152793884\n          }\n        ]\n      },\n      \"Id\": \"d680c033-acdf-49d6-b180-0ee8f4fd6a2d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94657897949219,\n      \"Text\": \"hours\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032572757452726364,\n          \"Height\": 0.00853540189564228,\n          \"Left\": 0.7899624109268188,\n          \"Top\": 0.5289936661720276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7899624109268188,\n            \"Y\": 0.5289936661720276\n          },\n          {\n            \"X\": 0.8225307464599609,\n            \"Y\": 0.5290189981460571\n          },\n          {\n            \"X\": 0.8225351572036743,\n            \"Y\": 0.5375290513038635\n          },\n          {\n            \"X\": 0.7899666428565979,\n            \"Y\": 0.5375036001205444\n          }\n        ]\n      },\n      \"Id\": \"0d6f17a6-449e-4ff4-8389-c4d5b8621f20\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89129638671875,\n      \"Text\": \"Thru\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025051290169358253,\n          \"Height\": 0.0076190754771232605,\n          \"Left\": 0.13956819474697113,\n          \"Top\": 0.5455904006958008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13956819474697113,\n            \"Y\": 0.5455904006958008\n          },\n          {\n            \"X\": 0.16461814939975739,\n            \"Y\": 0.5456100702285767\n          },\n          {\n            \"X\": 0.16461949050426483,\n            \"Y\": 0.5532094240188599\n          },\n          {\n            \"X\": 0.13956943154335022,\n            \"Y\": 0.5531896948814392\n          }\n        ]\n      },\n      \"Id\": \"c943454c-9cf7-4c5a-a787-9fb944bc5c2b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98235321044922,\n      \"Text\": \"2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028981033712625504,\n          \"Height\": 0.008390314877033234,\n          \"Left\": 0.1786215603351593,\n          \"Top\": 0.5441566705703735\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786215603351593,\n            \"Y\": 0.5441566705703735\n          },\n          {\n            \"X\": 0.2076009213924408,\n            \"Y\": 0.544179379940033\n          },\n          {\n            \"X\": 0.2076025903224945,\n            \"Y\": 0.5525469779968262\n          },\n          {\n            \"X\": 0.17862309515476227,\n            \"Y\": 0.5525241494178772\n          }\n        ]\n      },\n      \"Id\": \"e2d5c9a9-acab-44c4-9e65-a280ef6815dc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58727264404297,\n      \"Text\": \"16.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01475602202117443,\n          \"Height\": 0.007854698225855827,\n          \"Left\": 0.6940240859985352,\n          \"Top\": 0.545051097869873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6940240859985352,\n            \"Y\": 0.545051097869873\n          },\n          {\n            \"X\": 0.7087765336036682,\n            \"Y\": 0.5450626611709595\n          },\n          {\n            \"X\": 0.7087801098823547,\n            \"Y\": 0.552905797958374\n          },\n          {\n            \"X\": 0.6940276622772217,\n            \"Y\": 0.5528941750526428\n          }\n        ]\n      },\n      \"Id\": \"79076373-0b1d-4cdb-86f5-eb46095673bf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93791198730469,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02512766420841217,\n          \"Height\": 0.007707816082984209,\n          \"Left\": 0.7145903706550598,\n          \"Top\": 0.5452372431755066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7145903706550598,\n            \"Y\": 0.5452372431755066\n          },\n          {\n            \"X\": 0.7397143840789795,\n            \"Y\": 0.5452569723129272\n          },\n          {\n            \"X\": 0.7397180199623108,\n            \"Y\": 0.552945077419281\n          },\n          {\n            \"X\": 0.7145939469337463,\n            \"Y\": 0.5529252290725708\n          }\n        ]\n      },\n      \"Id\": \"409ffaf0-14ce-42a1-a40d-fbdf784734f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94783782958984,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011305723339319229,\n          \"Height\": 0.007796635851264,\n          \"Left\": 0.7439610362052917,\n          \"Top\": 0.5451358556747437\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7439610362052917,\n            \"Y\": 0.5451358556747437\n          },\n          {\n            \"X\": 0.7552630305290222,\n            \"Y\": 0.5451447367668152\n          },\n          {\n            \"X\": 0.7552667856216431,\n            \"Y\": 0.5529325008392334\n          },\n          {\n            \"X\": 0.7439647912979126,\n            \"Y\": 0.5529236197471619\n          }\n        ]\n      },\n      \"Id\": \"99b8cb69-4c76-459b-8539-bb32874dfa05\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9019546508789,\n      \"Text\": \"applicant's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05823136866092682,\n          \"Height\": 0.009229573421180248,\n          \"Left\": 0.7589983940124512,\n          \"Top\": 0.5452821254730225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7589983940124512,\n            \"Y\": 0.5452821254730225\n          },\n          {\n            \"X\": 0.8172250390052795,\n            \"Y\": 0.5453278422355652\n          },\n          {\n            \"X\": 0.8172297477722168,\n            \"Y\": 0.5545117259025574\n          },\n          {\n            \"X\": 0.7590028643608093,\n            \"Y\": 0.5544657111167908\n          }\n        ]\n      },\n      \"Id\": \"47322fc8-14ac-4f3c-84c1-0129e6cb57c3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96710205078125,\n      \"Text\": \"next\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02352517656981945,\n          \"Height\": 0.006993336137384176,\n          \"Left\": 0.8211706876754761,\n          \"Top\": 0.5460475087165833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8211706876754761,\n            \"Y\": 0.5460475087165833\n          },\n          {\n            \"X\": 0.8446921706199646,\n            \"Y\": 0.5460659861564636\n          },\n          {\n            \"X\": 0.8446958661079407,\n            \"Y\": 0.5530408024787903\n          },\n          {\n            \"X\": 0.8211742639541626,\n            \"Y\": 0.5530222654342651\n          }\n        ]\n      },\n      \"Id\": \"2ccc745c-c793-4c82-abda-184ea23078d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86336517333984,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01948283240199089,\n          \"Height\": 0.007422839757055044,\n          \"Left\": 0.8488932847976685,\n          \"Top\": 0.547041118144989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8488932847976685,\n            \"Y\": 0.547041118144989\n          },\n          {\n            \"X\": 0.8683720827102661,\n            \"Y\": 0.5470564365386963\n          },\n          {\n            \"X\": 0.8683760762214661,\n            \"Y\": 0.5544639825820923\n          },\n          {\n            \"X\": 0.8488972187042236,\n            \"Y\": 0.5544486045837402\n          }\n        ]\n      },\n      \"Id\": \"0f8133ac-a29f-4154-ae2b-325f293e7c3c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94343566894531,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04392823204398155,\n          \"Height\": 0.0076254489831626415,\n          \"Left\": 0.8722511529922485,\n          \"Top\": 0.5455084443092346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8722511529922485,\n            \"Y\": 0.5455084443092346\n          },\n          {\n            \"X\": 0.9161750674247742,\n            \"Y\": 0.5455428957939148\n          },\n          {\n            \"X\": 0.916179358959198,\n            \"Y\": 0.5531338453292847\n          },\n          {\n            \"X\": 0.872255265712738,\n            \"Y\": 0.5530992150306702\n          }\n        ]\n      },\n      \"Id\": \"1a202e8d-019d-40af-9762-743fa90feb52\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87911987304688,\n      \"Text\": \"30.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03289303928613663,\n          \"Height\": 0.008630608208477497,\n          \"Left\": 0.3741123676300049,\n          \"Top\": 0.5552673935890198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3741123676300049,\n            \"Y\": 0.5552673935890198\n          },\n          {\n            \"X\": 0.4070028066635132,\n            \"Y\": 0.5552933216094971\n          },\n          {\n            \"X\": 0.4070053994655609,\n            \"Y\": 0.563897967338562\n          },\n          {\n            \"X\": 0.3741148114204407,\n            \"Y\": 0.5638718605041504\n          }\n        ]\n      },\n      \"Id\": \"c3a2a48a-38ab-40d0-b790-a3ce68a695f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26569366455078,\n      \"Text\": \"Flight\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029930656775832176,\n          \"Height\": 0.009339900687336922,\n          \"Left\": 0.46253666281700134,\n          \"Top\": 0.5504017472267151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46253666281700134,\n            \"Y\": 0.5504017472267151\n          },\n          {\n            \"X\": 0.4924640953540802,\n            \"Y\": 0.5504252910614014\n          },\n          {\n            \"X\": 0.49246731400489807,\n            \"Y\": 0.5597416162490845\n          },\n          {\n            \"X\": 0.4625397324562073,\n            \"Y\": 0.5597179532051086\n          }\n        ]\n      },\n      \"Id\": \"9a98f4a5-cc21-4044-9611-c36305b55aec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.03694915771484,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011221645399928093,\n          \"Height\": 0.006122482009232044,\n          \"Left\": 0.49634701013565063,\n          \"Top\": 0.5519375801086426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49634701013565063,\n            \"Y\": 0.5519375801086426\n          },\n          {\n            \"X\": 0.5075664520263672,\n            \"Y\": 0.5519464612007141\n          },\n          {\n            \"X\": 0.5075686573982239,\n            \"Y\": 0.5580600500106812\n          },\n          {\n            \"X\": 0.49634912610054016,\n            \"Y\": 0.5580511689186096\n          }\n        ]\n      },\n      \"Id\": \"f014465d-0365-4fe2-b5ff-a9b60897b2b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85320281982422,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02521066553890705,\n          \"Height\": 0.007606161292642355,\n          \"Left\": 0.05289475992321968,\n          \"Top\": 0.5610979199409485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05289475992321968,\n            \"Y\": 0.5610979199409485\n          },\n          {\n            \"X\": 0.0781044289469719,\n            \"Y\": 0.5611178874969482\n          },\n          {\n            \"X\": 0.07810542732477188,\n            \"Y\": 0.5687040686607361\n          },\n          {\n            \"X\": 0.05289565771818161,\n            \"Y\": 0.5686839818954468\n          }\n        ]\n      },\n      \"Id\": \"5090450e-3818-48ab-b8af-1430c796f7a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81110382080078,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019250186160206795,\n          \"Height\": 0.0092588160187006,\n          \"Left\": 0.08308292925357819,\n          \"Top\": 0.5609091520309448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08308292925357819,\n            \"Y\": 0.5609091520309448\n          },\n          {\n            \"X\": 0.10233177989721298,\n            \"Y\": 0.5609244108200073\n          },\n          {\n            \"X\": 0.10233311355113983,\n            \"Y\": 0.5701679587364197\n          },\n          {\n            \"X\": 0.08308416604995728,\n            \"Y\": 0.5701525807380676\n          }\n        ]\n      },\n      \"Id\": \"4b1f339f-37e3-420e-9d11-2c212de3facc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4413070678711,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006267897319048643,\n          \"Height\": 0.007676920387893915,\n          \"Left\": 0.13965840637683868,\n          \"Top\": 0.5608159303665161\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13965840637683868,\n            \"Y\": 0.5608159303665161\n          },\n          {\n            \"X\": 0.14592501521110535,\n            \"Y\": 0.5608209371566772\n          },\n          {\n            \"X\": 0.14592629671096802,\n            \"Y\": 0.5684928894042969\n          },\n          {\n            \"X\": 0.13965965807437897,\n            \"Y\": 0.5684878826141357\n          }\n        ]\n      },\n      \"Id\": \"07ba3672-1638-48ea-9a7b-dff0a64b1d16\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65443420410156,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006195709574967623,\n          \"Height\": 0.007736810948699713,\n          \"Left\": 0.24695263803005219,\n          \"Top\": 0.5606591701507568\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24695263803005219,\n            \"Y\": 0.5606591701507568\n          },\n          {\n            \"X\": 0.2531466484069824,\n            \"Y\": 0.5606641173362732\n          },\n          {\n            \"X\": 0.2531483471393585,\n            \"Y\": 0.5683960318565369\n          },\n          {\n            \"X\": 0.24695433676242828,\n            \"Y\": 0.5683910846710205\n          }\n        ]\n      },\n      \"Id\": \"3d883a60-1ac4-49d9-be2e-6054b2ee022f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88887023925781,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03266676142811775,\n          \"Height\": 0.008547695353627205,\n          \"Left\": 0.2651725709438324,\n          \"Top\": 0.5586197972297668\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2651725709438324,\n            \"Y\": 0.5586197972297668\n          },\n          {\n            \"X\": 0.2978372275829315,\n            \"Y\": 0.5586456656455994\n          },\n          {\n            \"X\": 0.29783931374549866,\n            \"Y\": 0.5671674609184265\n          },\n          {\n            \"X\": 0.2651745080947876,\n            \"Y\": 0.5671414732933044\n          }\n        ]\n      },\n      \"Id\": \"df7b7361-7cb7-4de2-b3ae-b04fc1a12d87\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87579345703125,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006274546962231398,\n          \"Height\": 0.0077102286741137505,\n          \"Left\": 0.35420501232147217,\n          \"Top\": 0.5607873201370239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35420501232147217,\n            \"Y\": 0.5607873201370239\n          },\n          {\n            \"X\": 0.3604774475097656,\n            \"Y\": 0.5607922673225403\n          },\n          {\n            \"X\": 0.36047956347465515,\n            \"Y\": 0.5684975385665894\n          },\n          {\n            \"X\": 0.3542071282863617,\n            \"Y\": 0.5684925317764282\n          }\n        ]\n      },\n      \"Id\": \"59dbf1ef-0316-49c0-8211-9339753332e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89368438720703,\n      \"Text\": \"Hazard\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037133511155843735,\n          \"Height\": 0.007404094561934471,\n          \"Left\": 0.4623924195766449,\n          \"Top\": 0.5608483552932739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4623924195766449,\n            \"Y\": 0.5608483552932739\n          },\n          {\n            \"X\": 0.4995233416557312,\n            \"Y\": 0.560877799987793\n          },\n          {\n            \"X\": 0.49952593445777893,\n            \"Y\": 0.5682525038719177\n          },\n          {\n            \"X\": 0.4623948633670807,\n            \"Y\": 0.5682229399681091\n          }\n        ]\n      },\n      \"Id\": \"12ae7a4e-4a56-4756-b9cc-15d61f0d6c0d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87049865722656,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006325024180114269,\n          \"Height\": 0.007538091856986284,\n          \"Left\": 0.5693755745887756,\n          \"Top\": 0.5606873631477356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693755745887756,\n            \"Y\": 0.5606873631477356\n          },\n          {\n            \"X\": 0.575697660446167,\n            \"Y\": 0.5606923699378967\n          },\n          {\n            \"X\": 0.575700581073761,\n            \"Y\": 0.5682254433631897\n          },\n          {\n            \"X\": 0.5693784952163696,\n            \"Y\": 0.5682204365730286\n          }\n        ]\n      },\n      \"Id\": \"4c4c60eb-10b3-489a-98d2-a0f439eb9c9e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96619415283203,\n      \"Text\": \"756\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021966449916362762,\n          \"Height\": 0.008188586682081223,\n          \"Left\": 0.6071673631668091,\n          \"Top\": 0.55607008934021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6071673631668091,\n            \"Y\": 0.55607008934021\n          },\n          {\n            \"X\": 0.6291303634643555,\n            \"Y\": 0.5560874342918396\n          },\n          {\n            \"X\": 0.6291337609291077,\n            \"Y\": 0.5642586350440979\n          },\n          {\n            \"X\": 0.6071706414222717,\n            \"Y\": 0.5642412304878235\n          }\n        ]\n      },\n      \"Id\": \"fc72f7dd-436c-41f8-b5aa-e6bd27c769a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9740219116211,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032010409981012344,\n          \"Height\": 0.008473891764879227,\n          \"Left\": 0.16989098489284515,\n          \"Top\": 0.5627861022949219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16989098489284515,\n            \"Y\": 0.5627861022949219\n          },\n          {\n            \"X\": 0.20189973711967468,\n            \"Y\": 0.5628114938735962\n          },\n          {\n            \"X\": 0.2019013911485672,\n            \"Y\": 0.5712599754333496\n          },\n          {\n            \"X\": 0.16989248991012573,\n            \"Y\": 0.5712344646453857\n          }\n        ]\n      },\n      \"Id\": \"42d65c48-43dd-4f1a-8c6c-ee99c986889d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90442657470703,\n      \"Text\": \"08/08/2007\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0653984397649765,\n          \"Height\": 0.008410884067416191,\n          \"Left\": 0.7732238173484802,\n          \"Top\": 0.5653791427612305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7732238173484802,\n            \"Y\": 0.5653791427612305\n          },\n          {\n            \"X\": 0.8386178612709045,\n            \"Y\": 0.5654311180114746\n          },\n          {\n            \"X\": 0.8386222720146179,\n            \"Y\": 0.5737900733947754\n          },\n          {\n            \"X\": 0.7732279300689697,\n            \"Y\": 0.5737378001213074\n          }\n        ]\n      },\n      \"Id\": \"36badced-f6d5-46a1-9a70-44b8caddac4a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94432067871094,\n      \"Text\": \"Clothing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04457792639732361,\n          \"Height\": 0.0093800388276577,\n          \"Left\": 0.46226736903190613,\n          \"Top\": 0.5757579207420349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46226736903190613,\n            \"Y\": 0.5757579207420349\n          },\n          {\n            \"X\": 0.5068420171737671,\n            \"Y\": 0.5757935643196106\n          },\n          {\n            \"X\": 0.5068452954292297,\n            \"Y\": 0.5851379632949829\n          },\n          {\n            \"X\": 0.46227046847343445,\n            \"Y\": 0.5851021409034729\n          }\n        ]\n      },\n      \"Id\": \"94fc0874-48f5-428d-9e98-54146853fd0d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81985473632812,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0062046353705227375,\n          \"Height\": 0.007536775432527065,\n          \"Left\": 0.5694948434829712,\n          \"Top\": 0.5758337378501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5694948434829712,\n            \"Y\": 0.5758337378501892\n          },\n          {\n            \"X\": 0.5756965279579163,\n            \"Y\": 0.5758386850357056\n          },\n          {\n            \"X\": 0.575699508190155,\n            \"Y\": 0.5833705067634583\n          },\n          {\n            \"X\": 0.5694977641105652,\n            \"Y\": 0.5833654999732971\n          }\n        ]\n      },\n      \"Id\": \"93e1ce59-b524-42a1-acfd-2636e46f52cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97164916992188,\n      \"Text\": \"452\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022075027227401733,\n          \"Height\": 0.008150030858814716,\n          \"Left\": 0.6037154197692871,\n          \"Top\": 0.5748512744903564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6037154197692871,\n            \"Y\": 0.5748512744903564\n          },\n          {\n            \"X\": 0.625787079334259,\n            \"Y\": 0.57486891746521\n          },\n          {\n            \"X\": 0.6257904767990112,\n            \"Y\": 0.5830013155937195\n          },\n          {\n            \"X\": 0.6037186980247498,\n            \"Y\": 0.5829835534095764\n          }\n        ]\n      },\n      \"Id\": \"afea191f-51c8-42fd-9be5-83ce9a49d9f0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77758026123047,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0479695200920105,\n          \"Height\": 0.00772616034373641,\n          \"Left\": 0.05242713540792465,\n          \"Top\": 0.591230571269989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05242713540792465,\n            \"Y\": 0.591230571269989\n          },\n          {\n            \"X\": 0.1003955602645874,\n            \"Y\": 0.591269314289093\n          },\n          {\n            \"X\": 0.10039665549993515,\n            \"Y\": 0.5989567637443542\n          },\n          {\n            \"X\": 0.05242804437875748,\n            \"Y\": 0.5989178419113159\n          }\n        ]\n      },\n      \"Id\": \"d249cda2-191e-4907-bb25-c22565d28683\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.849853515625,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006146582774817944,\n          \"Height\": 0.0077073778957128525,\n          \"Left\": 0.13970544934272766,\n          \"Top\": 0.5910573601722717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13970544934272766,\n            \"Y\": 0.5910573601722717\n          },\n          {\n            \"X\": 0.1458507478237152,\n            \"Y\": 0.5910623073577881\n          },\n          {\n            \"X\": 0.14585202932357788,\n            \"Y\": 0.5987647771835327\n          },\n          {\n            \"X\": 0.13970670104026794,\n            \"Y\": 0.5987597703933716\n          }\n        ]\n      },\n      \"Id\": \"10bf5c86-585f-4155-9fa1-24f5a7a9e161\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95985412597656,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031845830380916595,\n          \"Height\": 0.00837639719247818,\n          \"Left\": 0.1699485182762146,\n          \"Top\": 0.5892524123191833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1699485182762146,\n            \"Y\": 0.5892524123191833\n          },\n          {\n            \"X\": 0.20179271697998047,\n            \"Y\": 0.5892781019210815\n          },\n          {\n            \"X\": 0.2017943561077118,\n            \"Y\": 0.5976288318634033\n          },\n          {\n            \"X\": 0.16995000839233398,\n            \"Y\": 0.5976030230522156\n          }\n        ]\n      },\n      \"Id\": \"2bc04236-9c6b-4126-837f-bb41bafbce8a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90264892578125,\n      \"Text\": \"30.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032826848328113556,\n          \"Height\": 0.0082813436165452,\n          \"Left\": 0.3761522173881531,\n          \"Top\": 0.5854672789573669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3761522173881531,\n            \"Y\": 0.5854672789573669\n          },\n          {\n            \"X\": 0.40897655487060547,\n            \"Y\": 0.5854936838150024\n          },\n          {\n            \"X\": 0.40897905826568604,\n            \"Y\": 0.5937486290931702\n          },\n          {\n            \"X\": 0.3761545717716217,\n            \"Y\": 0.5937221050262451\n          }\n        ]\n      },\n      \"Id\": \"b00c1798-a638-4698-8416-3faa640cae90\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80799865722656,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006330979522317648,\n          \"Height\": 0.00763098057359457,\n          \"Left\": 0.24695025384426117,\n          \"Top\": 0.5910663604736328\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24695025384426117,\n            \"Y\": 0.5910663604736328\n          },\n          {\n            \"X\": 0.25327953696250916,\n            \"Y\": 0.5910714864730835\n          },\n          {\n            \"X\": 0.25328123569488525,\n            \"Y\": 0.5986973643302917\n          },\n          {\n            \"X\": 0.24695192277431488,\n            \"Y\": 0.5986922383308411\n          }\n        ]\n      },\n      \"Id\": \"8c565aee-eaaf-4953-a14d-1e356f7b0cce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95683288574219,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033412184566259384,\n          \"Height\": 0.008743616752326488,\n          \"Left\": 0.271049827337265,\n          \"Top\": 0.5903110504150391\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.271049827337265,\n            \"Y\": 0.5903110504150391\n          },\n          {\n            \"X\": 0.3044598400592804,\n            \"Y\": 0.5903379917144775\n          },\n          {\n            \"X\": 0.3044620156288147,\n            \"Y\": 0.5990546345710754\n          },\n          {\n            \"X\": 0.2710518538951874,\n            \"Y\": 0.5990275144577026\n          }\n        ]\n      },\n      \"Id\": \"d1090ef1-8691-490c-8b86-ae455eaa28e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.895263671875,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00614886311814189,\n          \"Height\": 0.007560062687844038,\n          \"Left\": 0.3543779253959656,\n          \"Top\": 0.5909819602966309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3543779253959656,\n            \"Y\": 0.5909819602966309\n          },\n          {\n            \"X\": 0.3605246841907501,\n            \"Y\": 0.590986967086792\n          },\n          {\n            \"X\": 0.36052680015563965,\n            \"Y\": 0.5985420346260071\n          },\n          {\n            \"X\": 0.3543800115585327,\n            \"Y\": 0.5985370874404907\n          }\n        ]\n      },\n      \"Id\": \"ce9b0837-44e4-4076-a374-2bda2847218c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74270629882812,\n      \"Text\": \"17.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015255387872457504,\n          \"Height\": 0.007623404264450073,\n          \"Left\": 0.6936547160148621,\n          \"Top\": 0.5908949375152588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6936547160148621,\n            \"Y\": 0.5908949375152588\n          },\n          {\n            \"X\": 0.7089065909385681,\n            \"Y\": 0.5909072756767273\n          },\n          {\n            \"X\": 0.7089101076126099,\n            \"Y\": 0.5985183715820312\n          },\n          {\n            \"X\": 0.6936581134796143,\n            \"Y\": 0.598505973815918\n          }\n        ]\n      },\n      \"Id\": \"99bc6d86-9a25-47ab-bdce-c570f9414ba3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95673370361328,\n      \"Text\": \"Projected\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050388045608997345,\n          \"Height\": 0.009406853467226028,\n          \"Left\": 0.7144862413406372,\n          \"Top\": 0.590691089630127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7144862413406372,\n            \"Y\": 0.590691089630127\n          },\n          {\n            \"X\": 0.7648696899414062,\n            \"Y\": 0.5907317996025085\n          },\n          {\n            \"X\": 0.764874279499054,\n            \"Y\": 0.6000979542732239\n          },\n          {\n            \"X\": 0.714490532875061,\n            \"Y\": 0.600057065486908\n          }\n        ]\n      },\n      \"Id\": \"019dfae3-89f5-4e1d-8f11-78908c5f7836\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94953155517578,\n      \"Text\": \"amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041415080428123474,\n          \"Height\": 0.00743457768112421,\n          \"Left\": 0.7690551280975342,\n          \"Top\": 0.5912676453590393\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7690551280975342,\n            \"Y\": 0.5912676453590393\n          },\n          {\n            \"X\": 0.8104664087295532,\n            \"Y\": 0.5913010835647583\n          },\n          {\n            \"X\": 0.8104702234268188,\n            \"Y\": 0.5987021923065186\n          },\n          {\n            \"X\": 0.7690587639808655,\n            \"Y\": 0.59866863489151\n          }\n        ]\n      },\n      \"Id\": \"e802c0bc-4054-4ccc-9e70-b83d99f200b7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88842010498047,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011421642266213894,\n          \"Height\": 0.007654720917344093,\n          \"Left\": 0.8146831393241882,\n          \"Top\": 0.5907703638076782\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8146831393241882,\n            \"Y\": 0.5907703638076782\n          },\n          {\n            \"X\": 0.8261008262634277,\n            \"Y\": 0.5907795429229736\n          },\n          {\n            \"X\": 0.8261047601699829,\n            \"Y\": 0.5984250903129578\n          },\n          {\n            \"X\": 0.8146870732307434,\n            \"Y\": 0.5984157919883728\n          }\n        ]\n      },\n      \"Id\": \"932d9c32-0c9d-49f1-aeee-6c9234e2e720\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96124267578125,\n      \"Text\": \"next\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02324867621064186,\n          \"Height\": 0.007213730365037918,\n          \"Left\": 0.830214262008667,\n          \"Top\": 0.5914036631584167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.830214262008667,\n            \"Y\": 0.5914036631584167\n          },\n          {\n            \"X\": 0.8534590601921082,\n            \"Y\": 0.5914223790168762\n          },\n          {\n            \"X\": 0.8534629344940186,\n            \"Y\": 0.5986173748970032\n          },\n          {\n            \"X\": 0.8302179574966431,\n            \"Y\": 0.5985985398292542\n          }\n        ]\n      },\n      \"Id\": \"a93d697c-0ebe-475d-9c52-96c2f5a961b0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81092071533203,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019490692764520645,\n          \"Height\": 0.007568427361547947,\n          \"Left\": 0.8576884269714355,\n          \"Top\": 0.5924495458602905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8576884269714355,\n            \"Y\": 0.5924495458602905\n          },\n          {\n            \"X\": 0.877174973487854,\n            \"Y\": 0.5924652814865112\n          },\n          {\n            \"X\": 0.8771790862083435,\n            \"Y\": 0.6000179648399353\n          },\n          {\n            \"X\": 0.8576924204826355,\n            \"Y\": 0.6000021696090698\n          }\n        ]\n      },\n      \"Id\": \"9f461482-1a39-48d6-9ca2-4ae001938048\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92298126220703,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043881855905056,\n          \"Height\": 0.007711967919021845,\n          \"Left\": 0.8809855580329895,\n          \"Top\": 0.5908359289169312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8809855580329895,\n            \"Y\": 0.5908359289169312\n          },\n          {\n            \"X\": 0.9248630404472351,\n            \"Y\": 0.5908713340759277\n          },\n          {\n            \"X\": 0.9248673915863037,\n            \"Y\": 0.5985478758811951\n          },\n          {\n            \"X\": 0.8809897303581238,\n            \"Y\": 0.5985122919082642\n          }\n        ]\n      },\n      \"Id\": \"b9fa0ea2-1015-4452-8547-b73ae1d3ad44\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74603271484375,\n      \"Text\": \"Quarters\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045822106301784515,\n          \"Height\": 0.007909315638244152,\n          \"Left\": 0.46209651231765747,\n          \"Top\": 0.5996854901313782\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46209651231765747,\n            \"Y\": 0.5996854901313782\n          },\n          {\n            \"X\": 0.5079158544540405,\n            \"Y\": 0.599722683429718\n          },\n          {\n            \"X\": 0.5079185962677002,\n            \"Y\": 0.6075947880744934\n          },\n          {\n            \"X\": 0.4620991051197052,\n            \"Y\": 0.6075574159622192\n          }\n        ]\n      },\n      \"Id\": \"bd11d96c-d0ae-48f4-a585-97cb5db8d4b6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8369369506836,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00658081378787756,\n          \"Height\": 0.0075650024227797985,\n          \"Left\": 0.569252610206604,\n          \"Top\": 0.5997445583343506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.569252610206604,\n            \"Y\": 0.5997445583343506\n          },\n          {\n            \"X\": 0.5758304595947266,\n            \"Y\": 0.5997498631477356\n          },\n          {\n            \"X\": 0.5758333802223206,\n            \"Y\": 0.6073095202445984\n          },\n          {\n            \"X\": 0.569255530834198,\n            \"Y\": 0.6073041558265686\n          }\n        ]\n      },\n      \"Id\": \"f3299490-b8f8-497c-aeba-0c3235754859\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95843505859375,\n      \"Text\": \"986\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021911457180976868,\n          \"Height\": 0.008493808098137379,\n          \"Left\": 0.6055337190628052,\n          \"Top\": 0.6026052236557007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6055337190628052,\n            \"Y\": 0.6026052236557007\n          },\n          {\n            \"X\": 0.6274416446685791,\n            \"Y\": 0.6026229858398438\n          },\n          {\n            \"X\": 0.6274451613426208,\n            \"Y\": 0.6110990047454834\n          },\n          {\n            \"X\": 0.6055371165275574,\n            \"Y\": 0.6110811233520508\n          }\n        ]\n      },\n      \"Id\": \"35c0209a-8880-48cd-9c4f-439b4b97ceed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.43620300292969,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0070559242740273476,\n          \"Height\": 0.009418719448149204,\n          \"Left\": 0.7757781147956848,\n          \"Top\": 0.6048165559768677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7757781147956848,\n            \"Y\": 0.6048165559768677\n          },\n          {\n            \"X\": 0.7828293442726135,\n            \"Y\": 0.6048222780227661\n          },\n          {\n            \"X\": 0.7828340530395508,\n            \"Y\": 0.6142352819442749\n          },\n          {\n            \"X\": 0.7757827639579773,\n            \"Y\": 0.6142295002937317\n          }\n        ]\n      },\n      \"Id\": \"6d6e8170-9b0a-4e90-bf52-d50dcc1d40eb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91333770751953,\n      \"Text\": \"5600\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02861296758055687,\n          \"Height\": 0.008137982338666916,\n          \"Left\": 0.7868794798851013,\n          \"Top\": 0.6054500937461853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7868794798851013,\n            \"Y\": 0.6054500937461853\n          },\n          {\n            \"X\": 0.8154882788658142,\n            \"Y\": 0.6054733991622925\n          },\n          {\n            \"X\": 0.8154924511909485,\n            \"Y\": 0.6135880947113037\n          },\n          {\n            \"X\": 0.786883533000946,\n            \"Y\": 0.613564670085907\n          }\n        ]\n      },\n      \"Id\": \"041bbcc9-bfc7-4bb3-96a4-31d56d755474\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.28216552734375,\n      \"Text\": \"Commissions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07167769223451614,\n          \"Height\": 0.00792488269507885,\n          \"Left\": 0.05261804535984993,\n          \"Top\": 0.6211963891983032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05261804535984993,\n            \"Y\": 0.6211963891983032\n          },\n          {\n            \"X\": 0.12429451942443848,\n            \"Y\": 0.6212553381919861\n          },\n          {\n            \"X\": 0.12429574131965637,\n            \"Y\": 0.6291213035583496\n          },\n          {\n            \"X\": 0.05261897295713425,\n            \"Y\": 0.6290621161460876\n          }\n        ]\n      },\n      \"Id\": \"6addff48-2727-48cf-af5c-b8d81eee4d23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91687774658203,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006306366063654423,\n          \"Height\": 0.007601243443787098,\n          \"Left\": 0.13962820172309875,\n          \"Top\": 0.6214268803596497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13962820172309875,\n            \"Y\": 0.6214268803596497\n          },\n          {\n            \"X\": 0.14593330025672913,\n            \"Y\": 0.6214320659637451\n          },\n          {\n            \"X\": 0.1459345668554306,\n            \"Y\": 0.6290281414985657\n          },\n          {\n            \"X\": 0.13962943851947784,\n            \"Y\": 0.6290228962898254\n          }\n        ]\n      },\n      \"Id\": \"062e0c26-3a46-404d-be95-f45440f25eb0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95455169677734,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03271694853901863,\n          \"Height\": 0.00824691355228424,\n          \"Left\": 0.17280462384223938,\n          \"Top\": 0.6202094554901123\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17280462384223938,\n            \"Y\": 0.6202094554901123\n          },\n          {\n            \"X\": 0.20551995933055878,\n            \"Y\": 0.620236337184906\n          },\n          {\n            \"X\": 0.2055215686559677,\n            \"Y\": 0.6284563541412354\n          },\n          {\n            \"X\": 0.17280611395835876,\n            \"Y\": 0.6284293532371521\n          }\n        ]\n      },\n      \"Id\": \"27052f76-ef55-48c5-a89d-a0479ab03e0d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86141967773438,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00624711811542511,\n          \"Height\": 0.007752064149826765,\n          \"Left\": 0.24696509540081024,\n          \"Top\": 0.6212928295135498\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24696509540081024,\n            \"Y\": 0.6212928295135498\n          },\n          {\n            \"X\": 0.25321048498153687,\n            \"Y\": 0.6212979555130005\n          },\n          {\n            \"X\": 0.25321221351623535,\n            \"Y\": 0.6290448904037476\n          },\n          {\n            \"X\": 0.24696679413318634,\n            \"Y\": 0.6290397047996521\n          }\n        ]\n      },\n      \"Id\": \"44b94b01-40be-4ee8-b983-482a311a1f2c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91947174072266,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032884370535612106,\n          \"Height\": 0.008397042751312256,\n          \"Left\": 0.26970741152763367,\n          \"Top\": 0.6194733381271362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26970741152763367,\n            \"Y\": 0.6194733381271362\n          },\n          {\n            \"X\": 0.30258968472480774,\n            \"Y\": 0.6195003390312195\n          },\n          {\n            \"X\": 0.3025917708873749,\n            \"Y\": 0.6278703808784485\n          },\n          {\n            \"X\": 0.2697093188762665,\n            \"Y\": 0.6278432607650757\n          }\n        ]\n      },\n      \"Id\": \"d4c6d809-6370-4f75-ae00-a4201334eba3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88445281982422,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006283125374466181,\n          \"Height\": 0.007595982868224382,\n          \"Left\": 0.3542935848236084,\n          \"Top\": 0.6212595105171204\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3542935848236084,\n            \"Y\": 0.6212595105171204\n          },\n          {\n            \"X\": 0.3605746030807495,\n            \"Y\": 0.6212646961212158\n          },\n          {\n            \"X\": 0.36057671904563904,\n            \"Y\": 0.6288555264472961\n          },\n          {\n            \"X\": 0.35429567098617554,\n            \"Y\": 0.6288503408432007\n          }\n        ]\n      },\n      \"Id\": \"7e8c345d-f5d2-43b4-8e6b-03ee25b9106c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95330047607422,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032274745404720306,\n          \"Height\": 0.00877468567341566,\n          \"Left\": 0.37999457120895386,\n          \"Top\": 0.6184372901916504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37999457120895386,\n            \"Y\": 0.6184372901916504\n          },\n          {\n            \"X\": 0.41226664185523987,\n            \"Y\": 0.6184637546539307\n          },\n          {\n            \"X\": 0.4122692942619324,\n            \"Y\": 0.6272119879722595\n          },\n          {\n            \"X\": 0.3799970746040344,\n            \"Y\": 0.6271853446960449\n          }\n        ]\n      },\n      \"Id\": \"216cd2af-7cb3-4cb1-8012-1a1bcf7030d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43402862548828,\n      \"Text\": \"Pro\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01821732334792614,\n          \"Height\": 0.007755911443382502,\n          \"Left\": 0.46250060200691223,\n          \"Top\": 0.6212033033370972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46250060200691223,\n            \"Y\": 0.6212033033370972\n          },\n          {\n            \"X\": 0.4807153046131134,\n            \"Y\": 0.6212182641029358\n          },\n          {\n            \"X\": 0.4807179272174835,\n            \"Y\": 0.6289592385292053\n          },\n          {\n            \"X\": 0.4625031650066376,\n            \"Y\": 0.6289442181587219\n          }\n        ]\n      },\n      \"Id\": \"34fdb989-bc2b-4d7a-a071-f1902c3c2fb4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77395629882812,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01941915787756443,\n          \"Height\": 0.009282469749450684,\n          \"Left\": 0.48535028100013733,\n          \"Top\": 0.6212213039398193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48535028100013733,\n            \"Y\": 0.6212213039398193\n          },\n          {\n            \"X\": 0.5047661662101746,\n            \"Y\": 0.6212372779846191\n          },\n          {\n            \"X\": 0.5047694444656372,\n            \"Y\": 0.63050377368927\n          },\n          {\n            \"X\": 0.4853534400463104,\n            \"Y\": 0.6304877400398254\n          }\n        ]\n      },\n      \"Id\": \"26e9097a-d5ad-4807-a375-3138652312f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.674072265625,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00625163409858942,\n          \"Height\": 0.007556697819381952,\n          \"Left\": 0.5692992210388184,\n          \"Top\": 0.6212700009346008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692992210388184,\n            \"Y\": 0.6212700009346008\n          },\n          {\n            \"X\": 0.5755479335784912,\n            \"Y\": 0.6212751269340515\n          },\n          {\n            \"X\": 0.5755508542060852,\n            \"Y\": 0.6288266777992249\n          },\n          {\n            \"X\": 0.5693021416664124,\n            \"Y\": 0.6288215517997742\n          }\n        ]\n      },\n      \"Id\": \"7903684e-ae0e-46fd-b312-ed034ea20c0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96328735351562,\n      \"Text\": \"123\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02099762111902237,\n          \"Height\": 0.008291621692478657,\n          \"Left\": 0.6043278574943542,\n          \"Top\": 0.6217637658119202\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6043278574943542,\n            \"Y\": 0.6217637658119202\n          },\n          {\n            \"X\": 0.6253220438957214,\n            \"Y\": 0.621781051158905\n          },\n          {\n            \"X\": 0.6253255009651184,\n            \"Y\": 0.6300554275512695\n          },\n          {\n            \"X\": 0.6043312549591064,\n            \"Y\": 0.6300380825996399\n          }\n        ]\n      },\n      \"Id\": \"f362c93d-be13-4ae5-9064-463dfce54fc9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86734771728516,\n      \"Text\": \"18.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015607076697051525,\n          \"Height\": 0.007726995274424553,\n          \"Left\": 0.6938034296035767,\n          \"Top\": 0.6210877299308777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6938034296035767,\n            \"Y\": 0.6210877299308777\n          },\n          {\n            \"X\": 0.7094069719314575,\n            \"Y\": 0.6211005449295044\n          },\n          {\n            \"X\": 0.7094104886054993,\n            \"Y\": 0.628814697265625\n          },\n          {\n            \"X\": 0.6938068866729736,\n            \"Y\": 0.6288018226623535\n          }\n        ]\n      },\n      \"Id\": \"577a76a3-6cd8-4046-8083-7e5175ec6ced\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91963195800781,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025061042979359627,\n          \"Height\": 0.007659297436475754,\n          \"Left\": 0.714739203453064,\n          \"Top\": 0.6211372017860413\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.714739203453064,\n            \"Y\": 0.6211372017860413\n          },\n          {\n            \"X\": 0.7397965788841248,\n            \"Y\": 0.6211578249931335\n          },\n          {\n            \"X\": 0.739800214767456,\n            \"Y\": 0.6287965178489685\n          },\n          {\n            \"X\": 0.7147427201271057,\n            \"Y\": 0.6287758350372314\n          }\n        ]\n      },\n      \"Id\": \"4bcf6104-0394-44bb-a4a5-f26a6c67dca0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90963745117188,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01132972538471222,\n          \"Height\": 0.007626474369317293,\n          \"Left\": 0.7439876198768616,\n          \"Top\": 0.6211351156234741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7439876198768616,\n            \"Y\": 0.6211351156234741\n          },\n          {\n            \"X\": 0.7553136348724365,\n            \"Y\": 0.6211444139480591\n          },\n          {\n            \"X\": 0.7553173303604126,\n            \"Y\": 0.6287615895271301\n          },\n          {\n            \"X\": 0.7439912557601929,\n            \"Y\": 0.6287522315979004\n          }\n        ]\n      },\n      \"Id\": \"7e0141be-28e2-4939-ac2d-bdd8ec1c0929\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9033432006836,\n      \"Text\": \"applicant's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05801744386553764,\n          \"Height\": 0.009069195948541164,\n          \"Left\": 0.7591757774353027,\n          \"Top\": 0.6211603283882141\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7591757774353027,\n            \"Y\": 0.6211603283882141\n          },\n          {\n            \"X\": 0.817188560962677,\n            \"Y\": 0.6212080121040344\n          },\n          {\n            \"X\": 0.8171932101249695,\n            \"Y\": 0.6302295327186584\n          },\n          {\n            \"X\": 0.7591801285743713,\n            \"Y\": 0.630181610584259\n          }\n        ]\n      },\n      \"Id\": \"bc76b221-e63f-4e77-83bc-7e66f8b1a2f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97411346435547,\n      \"Text\": \"last\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018865065649151802,\n          \"Height\": 0.007615255191922188,\n          \"Left\": 0.8210898637771606,\n          \"Top\": 0.6212106943130493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8210898637771606,\n            \"Y\": 0.6212106943130493\n          },\n          {\n            \"X\": 0.8399509191513062,\n            \"Y\": 0.6212261915206909\n          },\n          {\n            \"X\": 0.8399549722671509,\n            \"Y\": 0.6288259625434875\n          },\n          {\n            \"X\": 0.8210937976837158,\n            \"Y\": 0.6288103461265564\n          }\n        ]\n      },\n      \"Id\": \"2a3f646a-5079-4544-81cd-624b29248eed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87401580810547,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019969234243035316,\n          \"Height\": 0.007711544632911682,\n          \"Left\": 0.8439199924468994,\n          \"Top\": 0.6227101683616638\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8439199924468994,\n            \"Y\": 0.6227101683616638\n          },\n          {\n            \"X\": 0.8638851046562195,\n            \"Y\": 0.6227266192436218\n          },\n          {\n            \"X\": 0.863889217376709,\n            \"Y\": 0.6304217576980591\n          },\n          {\n            \"X\": 0.8439240455627441,\n            \"Y\": 0.6304052472114563\n          }\n        ]\n      },\n      \"Id\": \"96f33bb0-8d9d-4e50-aeba-02018fd3798a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85598754882812,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0439908541738987,\n          \"Height\": 0.007932893931865692,\n          \"Left\": 0.8674078583717346,\n          \"Top\": 0.6211388111114502\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8674078583717346,\n            \"Y\": 0.6211388111114502\n          },\n          {\n            \"X\": 0.9113942980766296,\n            \"Y\": 0.6211749911308289\n          },\n          {\n            \"X\": 0.911398708820343,\n            \"Y\": 0.6290717124938965\n          },\n          {\n            \"X\": 0.8674121499061584,\n            \"Y\": 0.6290354132652283\n          }\n        ]\n      },\n      \"Id\": \"ff8bf448-b50a-411c-9a9f-7c9f1ef75ae8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85693359375,\n      \"Text\": \"09/08/2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06566282361745834,\n          \"Height\": 0.008422307670116425,\n          \"Left\": 0.7771275043487549,\n          \"Top\": 0.6355620622634888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7771275043487549,\n            \"Y\": 0.6355620622634888\n          },\n          {\n            \"X\": 0.8427858948707581,\n            \"Y\": 0.6356164813041687\n          },\n          {\n            \"X\": 0.8427903652191162,\n            \"Y\": 0.643984317779541\n          },\n          {\n            \"X\": 0.7771316170692444,\n            \"Y\": 0.643929660320282\n          }\n        ]\n      },\n      \"Id\": \"b2f61ffb-21c2-4425-92a5-0f30afee942d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73542785644531,\n      \"Text\": \"Overseas\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048435453325510025,\n          \"Height\": 0.008776336908340454,\n          \"Left\": 0.46198034286499023,\n          \"Top\": 0.6407167911529541\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46198034286499023,\n            \"Y\": 0.6407167911529541\n          },\n          {\n            \"X\": 0.5104126930236816,\n            \"Y\": 0.6407570838928223\n          },\n          {\n            \"X\": 0.51041579246521,\n            \"Y\": 0.6494930982589722\n          },\n          {\n            \"X\": 0.46198323369026184,\n            \"Y\": 0.6494526267051697\n          }\n        ]\n      },\n      \"Id\": \"89920fbb-98fb-442e-acf1-bafe5e795beb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7916488647461,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011197489686310291,\n          \"Height\": 0.006142980419099331,\n          \"Left\": 0.5148968696594238,\n          \"Top\": 0.6428160667419434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5148968696594238,\n            \"Y\": 0.6428160667419434\n          },\n          {\n            \"X\": 0.5260921120643616,\n            \"Y\": 0.6428253650665283\n          },\n          {\n            \"X\": 0.526094377040863,\n            \"Y\": 0.6489590406417847\n          },\n          {\n            \"X\": 0.5148990750312805,\n            \"Y\": 0.6489496827125549\n          }\n        ]\n      },\n      \"Id\": \"f4b72811-88ff-4536-b489-5391c68a56cd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91197967529297,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03368019312620163,\n          \"Height\": 0.007567448541522026,\n          \"Left\": 0.05259095877408981,\n          \"Top\": 0.6519471406936646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05259095877408981,\n            \"Y\": 0.6519471406936646\n          },\n          {\n            \"X\": 0.08627013117074966,\n            \"Y\": 0.6519753336906433\n          },\n          {\n            \"X\": 0.08627115190029144,\n            \"Y\": 0.6595146059989929\n          },\n          {\n            \"X\": 0.052591849118471146,\n            \"Y\": 0.6594862937927246\n          }\n        ]\n      },\n      \"Id\": \"83ced698-38f0-4b6d-90f1-34a16b249598\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90821838378906,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006307177245616913,\n          \"Height\": 0.007772169075906277,\n          \"Left\": 0.13950340449810028,\n          \"Top\": 0.6515275239944458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13950340449810028,\n            \"Y\": 0.6515275239944458\n          },\n          {\n            \"X\": 0.14580927789211273,\n            \"Y\": 0.6515328288078308\n          },\n          {\n            \"X\": 0.1458105742931366,\n            \"Y\": 0.6592996716499329\n          },\n          {\n            \"X\": 0.13950467109680176,\n            \"Y\": 0.6592943668365479\n          }\n        ]\n      },\n      \"Id\": \"443a4316-99e7-4f8e-a3b4-bdcc4b56f167\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9456558227539,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03269729018211365,\n          \"Height\": 0.008309591561555862,\n          \"Left\": 0.17288638651371002,\n          \"Top\": 0.6503464579582214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17288638651371002,\n            \"Y\": 0.6503464579582214\n          },\n          {\n            \"X\": 0.20558203756809235,\n            \"Y\": 0.6503738164901733\n          },\n          {\n            \"X\": 0.20558367669582367,\n            \"Y\": 0.6586560606956482\n          },\n          {\n            \"X\": 0.1728878766298294,\n            \"Y\": 0.6586285829544067\n          }\n        ]\n      },\n      \"Id\": \"6c83ec21-fb40-4eaf-add8-0e64036eac20\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89370727539062,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00617905193939805,\n          \"Height\": 0.007647648919373751,\n          \"Left\": 0.24693478643894196,\n          \"Top\": 0.6515936851501465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24693478643894196,\n            \"Y\": 0.6515936851501465\n          },\n          {\n            \"X\": 0.25311213731765747,\n            \"Y\": 0.6515988707542419\n          },\n          {\n            \"X\": 0.25311383605003357,\n            \"Y\": 0.6592413187026978\n          },\n          {\n            \"X\": 0.24693645536899567,\n            \"Y\": 0.6592361330986023\n          }\n        ]\n      },\n      \"Id\": \"01ff2317-a159-4221-a488-c93ab0e6e418\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92479705810547,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033112555742263794,\n          \"Height\": 0.008467750623822212,\n          \"Left\": 0.2735193073749542,\n          \"Top\": 0.6469712853431702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2735193073749542,\n            \"Y\": 0.6469712853431702\n          },\n          {\n            \"X\": 0.3066297769546509,\n            \"Y\": 0.646998941898346\n          },\n          {\n            \"X\": 0.306631863117218,\n            \"Y\": 0.6554390788078308\n          },\n          {\n            \"X\": 0.2735212743282318,\n            \"Y\": 0.6554113030433655\n          }\n        ]\n      },\n      \"Id\": \"37e61028-2ca8-46b0-bfff-c5dacc20d60f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88874053955078,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0062498305924236774,\n          \"Height\": 0.007478713523596525,\n          \"Left\": 0.3543567955493927,\n          \"Top\": 0.6515350937843323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3543567955493927,\n            \"Y\": 0.6515350937843323\n          },\n          {\n            \"X\": 0.36060455441474915,\n            \"Y\": 0.6515403389930725\n          },\n          {\n            \"X\": 0.3606066405773163,\n            \"Y\": 0.6590138077735901\n          },\n          {\n            \"X\": 0.35435885190963745,\n            \"Y\": 0.6590085625648499\n          }\n        ]\n      },\n      \"Id\": \"59d22ee0-1dac-461d-b995-3b8ccb6ad296\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92337799072266,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03216782957315445,\n          \"Height\": 0.008499957621097565,\n          \"Left\": 0.3839261531829834,\n          \"Top\": 0.6469097137451172\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3839261531829834,\n            \"Y\": 0.6469097137451172\n          },\n          {\n            \"X\": 0.4160913825035095,\n            \"Y\": 0.6469365358352661\n          },\n          {\n            \"X\": 0.41609397530555725,\n            \"Y\": 0.6554096341133118\n          },\n          {\n            \"X\": 0.3839285969734192,\n            \"Y\": 0.6553826928138733\n          }\n        ]\n      },\n      \"Id\": \"dd836dea-8e0f-4959-9cc0-63ec5becaec2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5430908203125,\n      \"Text\": \"Combat\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04200686886906624,\n          \"Height\": 0.007942147552967072,\n          \"Left\": 0.4624370336532593,\n          \"Top\": 0.651336669921875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4624370336532593,\n            \"Y\": 0.651336669921875\n          },\n          {\n            \"X\": 0.5044411420822144,\n            \"Y\": 0.6513717770576477\n          },\n          {\n            \"X\": 0.504443883895874,\n            \"Y\": 0.6592788100242615\n          },\n          {\n            \"X\": 0.4624396562576294,\n            \"Y\": 0.6592435240745544\n          }\n        ]\n      },\n      \"Id\": \"16b6ceb9-a4e2-4ad4-b8ea-540f1fc203d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79627227783203,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006279990542680025,\n          \"Height\": 0.007640247233211994,\n          \"Left\": 0.5693935751914978,\n          \"Top\": 0.6514822840690613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693935751914978,\n            \"Y\": 0.6514822840690613\n          },\n          {\n            \"X\": 0.575670599937439,\n            \"Y\": 0.6514875292778015\n          },\n          {\n            \"X\": 0.5756735801696777,\n            \"Y\": 0.6591225266456604\n          },\n          {\n            \"X\": 0.5693964958190918,\n            \"Y\": 0.6591172814369202\n          }\n        ]\n      },\n      \"Id\": \"7e31869d-a142-47e9-9d84-7bbce7cb4e0c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98148345947266,\n      \"Text\": \"645\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022172486409544945,\n          \"Height\": 0.008485141210258007,\n          \"Left\": 0.6071452498435974,\n          \"Top\": 0.6482474207878113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6071452498435974,\n            \"Y\": 0.6482474207878113\n          },\n          {\n            \"X\": 0.6293142437934875,\n            \"Y\": 0.6482659578323364\n          },\n          {\n            \"X\": 0.6293177604675293,\n            \"Y\": 0.6567325592041016\n          },\n          {\n            \"X\": 0.6071487069129944,\n            \"Y\": 0.6567139625549316\n          }\n        ]\n      },\n      \"Id\": \"64dbaece-e4af-4b46-ac7b-8ddb626fcc89\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8166275024414,\n      \"Text\": \"19.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015156092122197151,\n          \"Height\": 0.00760994665324688,\n          \"Left\": 0.6941073536872864,\n          \"Top\": 0.651447594165802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6941073536872864,\n            \"Y\": 0.651447594165802\n          },\n          {\n            \"X\": 0.7092599868774414,\n            \"Y\": 0.6514602899551392\n          },\n          {\n            \"X\": 0.7092634439468384,\n            \"Y\": 0.6590575575828552\n          },\n          {\n            \"X\": 0.6941107511520386,\n            \"Y\": 0.6590448021888733\n          }\n        ]\n      },\n      \"Id\": \"986d6524-5785-44f8-87ed-28281c3fd7c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97325897216797,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04415658861398697,\n          \"Height\": 0.008124724961817265,\n          \"Left\": 0.7141212821006775,\n          \"Top\": 0.6512284278869629\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7141212821006775,\n            \"Y\": 0.6512284278869629\n          },\n          {\n            \"X\": 0.7582739591598511,\n            \"Y\": 0.6512653827667236\n          },\n          {\n            \"X\": 0.7582778930664062,\n            \"Y\": 0.6593531370162964\n          },\n          {\n            \"X\": 0.7141249775886536,\n            \"Y\": 0.6593160629272461\n          }\n        ]\n      },\n      \"Id\": \"24650bcb-6614-45de-8066-4628494786a0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90791320800781,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011646965518593788,\n          \"Height\": 0.007689473684877157,\n          \"Left\": 0.7622107267379761,\n          \"Top\": 0.6513216495513916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7622107267379761,\n            \"Y\": 0.6513216495513916\n          },\n          {\n            \"X\": 0.7738538980484009,\n            \"Y\": 0.6513314247131348\n          },\n          {\n            \"X\": 0.7738576531410217,\n            \"Y\": 0.6590111255645752\n          },\n          {\n            \"X\": 0.7622144222259521,\n            \"Y\": 0.659001350402832\n          }\n        ]\n      },\n      \"Id\": \"62de7ebe-d46a-42f7-a5bd-677ec073caae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9582748413086,\n      \"Text\": \"last\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018982762470841408,\n          \"Height\": 0.007738643791526556,\n          \"Left\": 0.7776569128036499,\n          \"Top\": 0.6514202356338501\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7776569128036499,\n            \"Y\": 0.6514202356338501\n          },\n          {\n            \"X\": 0.7966357469558716,\n            \"Y\": 0.6514360904693604\n          },\n          {\n            \"X\": 0.7966396808624268,\n            \"Y\": 0.6591588854789734\n          },\n          {\n            \"X\": 0.7776607275009155,\n            \"Y\": 0.6591429114341736\n          }\n        ]\n      },\n      \"Id\": \"ec661b2b-72ea-41e6-8b63-d0ef0811fc64\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81208801269531,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019371025264263153,\n          \"Height\": 0.008112492971122265,\n          \"Left\": 0.8007950782775879,\n          \"Top\": 0.6527715921401978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8007950782775879,\n            \"Y\": 0.6527715921401978\n          },\n          {\n            \"X\": 0.8201619386672974,\n            \"Y\": 0.6527878046035767\n          },\n          {\n            \"X\": 0.8201661109924316,\n            \"Y\": 0.6608840823173523\n          },\n          {\n            \"X\": 0.8007991909980774,\n            \"Y\": 0.6608677506446838\n          }\n        ]\n      },\n      \"Id\": \"cf3157d2-e610-45a9-82a2-91d4122586aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87783813476562,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043719787150621414,\n          \"Height\": 0.008009100332856178,\n          \"Left\": 0.8240848779678345,\n          \"Top\": 0.6512116193771362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8240848779678345,\n            \"Y\": 0.6512116193771362\n          },\n          {\n            \"X\": 0.8678003549575806,\n            \"Y\": 0.6512481570243835\n          },\n          {\n            \"X\": 0.8678046464920044,\n            \"Y\": 0.6592206954956055\n          },\n          {\n            \"X\": 0.824088990688324,\n            \"Y\": 0.6591839790344238\n          }\n        ]\n      },\n      \"Id\": \"2094b681-79f7-475e-9d3e-8e6eb4e43bee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73686218261719,\n      \"Text\": \"Variable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043636564165353775,\n          \"Height\": 0.007846292108297348,\n          \"Left\": 0.46158814430236816,\n          \"Top\": 0.6704203486442566\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46158814430236816,\n            \"Y\": 0.6704203486442566\n          },\n          {\n            \"X\": 0.505221962928772,\n            \"Y\": 0.6704572439193726\n          },\n          {\n            \"X\": 0.5052247047424316,\n            \"Y\": 0.6782666444778442\n          },\n          {\n            \"X\": 0.4615907073020935,\n            \"Y\": 0.678229570388794\n          }\n        ]\n      },\n      \"Id\": \"84c56ce5-b0d1-435f-8284-af42862cd52f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96421813964844,\n      \"Text\": \"Housing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04377690330147743,\n          \"Height\": 0.009211293421685696,\n          \"Left\": 0.5097042322158813,\n          \"Top\": 0.6704939603805542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5097042322158813,\n            \"Y\": 0.6704939603805542\n          },\n          {\n            \"X\": 0.5534776449203491,\n            \"Y\": 0.6705309748649597\n          },\n          {\n            \"X\": 0.5534811615943909,\n            \"Y\": 0.6797052621841431\n          },\n          {\n            \"X\": 0.509707510471344,\n            \"Y\": 0.6796680688858032\n          }\n        ]\n      },\n      \"Id\": \"f2c9810a-2038-4343-8eb4-da61cf2bc5ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.15882110595703,\n      \"Text\": \"90.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03635166957974434,\n          \"Height\": 0.009347454644739628,\n          \"Left\": 0.3613189458847046,\n          \"Top\": 0.676880419254303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3613189458847046,\n            \"Y\": 0.676880419254303\n          },\n          {\n            \"X\": 0.39766785502433777,\n            \"Y\": 0.6769112348556519\n          },\n          {\n            \"X\": 0.3976706266403198,\n            \"Y\": 0.6862278580665588\n          },\n          {\n            \"X\": 0.3613215386867523,\n            \"Y\": 0.6861968040466309\n          }\n        ]\n      },\n      \"Id\": \"3a412335-cb03-44a2-93da-cbf3459e50e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.14500427246094,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007004102226346731,\n          \"Height\": 0.009313377551734447,\n          \"Left\": 0.7769601941108704,\n          \"Top\": 0.6720986366271973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7769601941108704,\n            \"Y\": 0.6720986366271973\n          },\n          {\n            \"X\": 0.7839596271514893,\n            \"Y\": 0.67210453748703\n          },\n          {\n            \"X\": 0.7839642763137817,\n            \"Y\": 0.6814120411872864\n          },\n          {\n            \"X\": 0.7769647836685181,\n            \"Y\": 0.6814060807228088\n          }\n        ]\n      },\n      \"Id\": \"a56349ec-794f-47df-8320-5518739aa111\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89411926269531,\n      \"Text\": \"4800\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02860640361905098,\n          \"Height\": 0.008175821043550968,\n          \"Left\": 0.7875725626945496,\n          \"Top\": 0.6724718809127808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7875725626945496,\n            \"Y\": 0.6724718809127808\n          },\n          {\n            \"X\": 0.8161748051643372,\n            \"Y\": 0.6724961400032043\n          },\n          {\n            \"X\": 0.8161789774894714,\n            \"Y\": 0.6806477308273315\n          },\n          {\n            \"X\": 0.7875766754150391,\n            \"Y\": 0.6806234121322632\n          }\n        ]\n      },\n      \"Id\": \"a9eb103c-a0b1-4eb1-9a77-5923c86c1d59\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89234161376953,\n      \"Text\": \"Total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027224740013480186,\n          \"Height\": 0.007877652533352375,\n          \"Left\": 0.05197681859135628,\n          \"Top\": 0.682105541229248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05197681859135628,\n            \"Y\": 0.682105541229248\n          },\n          {\n            \"X\": 0.07920052111148834,\n            \"Y\": 0.6821287274360657\n          },\n          {\n            \"X\": 0.07920155674219131,\n            \"Y\": 0.6899831891059875\n          },\n          {\n            \"X\": 0.051977742463350296,\n            \"Y\": 0.6899598836898804\n          }\n        ]\n      },\n      \"Id\": \"e77c3944-4a2a-45fd-8cef-2d3323245d71\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.94049072265625,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0059141311794519424,\n          \"Height\": 0.007281226105988026,\n          \"Left\": 0.13961133360862732,\n          \"Top\": 0.6821375489234924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13961133360862732,\n            \"Y\": 0.6821375489234924\n          },\n          {\n            \"X\": 0.14552424848079681,\n            \"Y\": 0.6821426153182983\n          },\n          {\n            \"X\": 0.1455254703760147,\n            \"Y\": 0.6894187927246094\n          },\n          {\n            \"X\": 0.13961252570152283,\n            \"Y\": 0.6894137263298035\n          }\n        ]\n      },\n      \"Id\": \"4867611c-8c16-47a8-8125-986390f84f51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.44677734375,\n      \"Text\": \"70.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03628892824053764,\n          \"Height\": 0.009049342013895512,\n          \"Left\": 0.146755650639534,\n          \"Top\": 0.6782599091529846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.146755650639534,\n            \"Y\": 0.6782599091529846\n          },\n          {\n            \"X\": 0.18304291367530823,\n            \"Y\": 0.6782907843589783\n          },\n          {\n            \"X\": 0.18304458260536194,\n            \"Y\": 0.6873092651367188\n          },\n          {\n            \"X\": 0.14675715565681458,\n            \"Y\": 0.6872782707214355\n          }\n        ]\n      },\n      \"Id\": \"50d678af-7d77-4179-98cf-ada7b994d4f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.56542205810547,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0062652151100337505,\n          \"Height\": 0.0076161157339811325,\n          \"Left\": 0.246883362531662,\n          \"Top\": 0.6819603443145752\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.246883362531662,\n            \"Y\": 0.6819603443145752\n          },\n          {\n            \"X\": 0.2531468868255615,\n            \"Y\": 0.681965708732605\n          },\n          {\n            \"X\": 0.2531485855579376,\n            \"Y\": 0.6895765066146851\n          },\n          {\n            \"X\": 0.2468850165605545,\n            \"Y\": 0.6895711421966553\n          }\n        ]\n      },\n      \"Id\": \"b2c13dc8-c5aa-4c37-b4c4-d09ef3bb944d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74901580810547,\n      \"Text\": \"80.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03613065928220749,\n          \"Height\": 0.008984984830021858,\n          \"Left\": 0.2552422881126404,\n          \"Top\": 0.6781944036483765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2552422881126404,\n            \"Y\": 0.6781944036483765\n          },\n          {\n            \"X\": 0.29137077927589417,\n            \"Y\": 0.6782251000404358\n          },\n          {\n            \"X\": 0.29137295484542847,\n            \"Y\": 0.6871793866157532\n          },\n          {\n            \"X\": 0.25524428486824036,\n            \"Y\": 0.6871485114097595\n          }\n        ]\n      },\n      \"Id\": \"28653a67-7a24-490a-bb09-a9c83de43d9c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.64026641845703,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005917412228882313,\n          \"Height\": 0.007379107177257538,\n          \"Left\": 0.3542932868003845,\n          \"Top\": 0.6819881796836853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3542932868003845,\n            \"Y\": 0.6819881796836853\n          },\n          {\n            \"X\": 0.360208660364151,\n            \"Y\": 0.6819932460784912\n          },\n          {\n            \"X\": 0.36021071672439575,\n            \"Y\": 0.6893672943115234\n          },\n          {\n            \"X\": 0.3542953133583069,\n            \"Y\": 0.6893622279167175\n          }\n        ]\n      },\n      \"Id\": \"f5838464-dc79-4d9a-8d6e-a4c17e020fb1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9446029663086,\n      \"Text\": \"Allowance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05583726242184639,\n          \"Height\": 0.007844468578696251,\n          \"Left\": 0.4619894027709961,\n          \"Top\": 0.6805686950683594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4619894027709961,\n            \"Y\": 0.6805686950683594\n          },\n          {\n            \"X\": 0.5178238749504089,\n            \"Y\": 0.6806161999702454\n          },\n          {\n            \"X\": 0.5178266763687134,\n            \"Y\": 0.6884132027626038\n          },\n          {\n            \"X\": 0.46199196577072144,\n            \"Y\": 0.6883654594421387\n          }\n        ]\n      },\n      \"Id\": \"99995cee-f9a5-4f78-a650-8f82c03ea9c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82715606689453,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006215273402631283,\n          \"Height\": 0.007432147394865751,\n          \"Left\": 0.5696779489517212,\n          \"Top\": 0.680724561214447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5696779489517212,\n            \"Y\": 0.680724561214447\n          },\n          {\n            \"X\": 0.575890302658081,\n            \"Y\": 0.680729866027832\n          },\n          {\n            \"X\": 0.575893223285675,\n            \"Y\": 0.6881567239761353\n          },\n          {\n            \"X\": 0.5696808099746704,\n            \"Y\": 0.6881514191627502\n          }\n        ]\n      },\n      \"Id\": \"517c4e12-32ab-4b08-a393-bb0007d2e3e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93668365478516,\n      \"Text\": \"587\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021690702065825462,\n          \"Height\": 0.008304129354655743,\n          \"Left\": 0.6077621579170227,\n          \"Top\": 0.678471565246582\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6077621579170227,\n            \"Y\": 0.678471565246582\n          },\n          {\n            \"X\": 0.6294493675231934,\n            \"Y\": 0.6784899830818176\n          },\n          {\n            \"X\": 0.6294528245925903,\n            \"Y\": 0.6867756843566895\n          },\n          {\n            \"X\": 0.6077654957771301,\n            \"Y\": 0.6867571473121643\n          }\n        ]\n      },\n      \"Id\": \"74a39235-b806-42f4-a257-a26aac6423e4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.94652557373047,\n      \"Text\": \"20.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014782974496483803,\n          \"Height\": 0.007780681364238262,\n          \"Left\": 0.0420733243227005,\n          \"Top\": 0.6971551775932312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0420733243227005,\n            \"Y\": 0.6971551775932312\n          },\n          {\n            \"X\": 0.05685536563396454,\n            \"Y\": 0.6971678733825684\n          },\n          {\n            \"X\": 0.05685630068182945,\n            \"Y\": 0.7049359083175659\n          },\n          {\n            \"X\": 0.04207419976592064,\n            \"Y\": 0.704923152923584\n          }\n        ]\n      },\n      \"Id\": \"7d5663a7-8661-487a-9bfb-9c0dd74227c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63326263427734,\n      \"Text\": \"Remarks\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04651154950261116,\n          \"Height\": 0.007651695515960455,\n          \"Left\": 0.058231040835380554,\n          \"Top\": 0.6972803473472595\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.058231040835380554,\n            \"Y\": 0.6972803473472595\n          },\n          {\n            \"X\": 0.10474149137735367,\n            \"Y\": 0.6973203420639038\n          },\n          {\n            \"X\": 0.10474259406328201,\n            \"Y\": 0.7049320340156555\n          },\n          {\n            \"X\": 0.058231960982084274,\n            \"Y\": 0.7048919200897217\n          }\n        ]\n      },\n      \"Id\": \"ddf6d487-8666-420d-b8e5-7e8d9dc95cba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54267883300781,\n      \"Text\": \"(If\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011672480963170528,\n          \"Height\": 0.008512797765433788,\n          \"Left\": 0.10942107439041138,\n          \"Top\": 0.696954607963562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10942107439041138,\n            \"Y\": 0.696954607963562\n          },\n          {\n            \"X\": 0.12109225243330002,\n            \"Y\": 0.6969646215438843\n          },\n          {\n            \"X\": 0.12109355628490448,\n            \"Y\": 0.7054674029350281\n          },\n          {\n            \"X\": 0.10942232608795166,\n            \"Y\": 0.705457329750061\n          }\n        ]\n      },\n      \"Id\": \"e41f9b56-b7a9-43db-a56c-cb53d7435788\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9428482055664,\n      \"Text\": \"employee\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05111262574791908,\n          \"Height\": 0.008938889019191265,\n          \"Left\": 0.12524574995040894,\n          \"Top\": 0.697472095489502\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12524574995040894,\n            \"Y\": 0.697472095489502\n          },\n          {\n            \"X\": 0.1763567477464676,\n            \"Y\": 0.6975160241127014\n          },\n          {\n            \"X\": 0.17635837197303772,\n            \"Y\": 0.7064110040664673\n          },\n          {\n            \"X\": 0.12524712085723877,\n            \"Y\": 0.7063668966293335\n          }\n        ]\n      },\n      \"Id\": \"ceb102a7-a02b-4947-a8a5-1d929beb80ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94378662109375,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021614965051412582,\n          \"Height\": 0.006267853081226349,\n          \"Left\": 0.18032404780387878,\n          \"Top\": 0.6984167695045471\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18032404780387878,\n            \"Y\": 0.6984167695045471\n          },\n          {\n            \"X\": 0.20193779468536377,\n            \"Y\": 0.698435366153717\n          },\n          {\n            \"X\": 0.20193901658058167,\n            \"Y\": 0.7046846151351929\n          },\n          {\n            \"X\": 0.1803251951932907,\n            \"Y\": 0.704666018486023\n          }\n        ]\n      },\n      \"Id\": \"996a1c23-ea1a-477e-9a03-1a8d86777e6f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8623046875,\n      \"Text\": \"off\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015407092869281769,\n          \"Height\": 0.007680070586502552,\n          \"Left\": 0.20627865195274353,\n          \"Top\": 0.6969858407974243\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20627865195274353,\n            \"Y\": 0.6969858407974243\n          },\n          {\n            \"X\": 0.22168417274951935,\n            \"Y\": 0.6969990730285645\n          },\n          {\n            \"X\": 0.2216857522726059,\n            \"Y\": 0.7046658992767334\n          },\n          {\n            \"X\": 0.2062801718711853,\n            \"Y\": 0.7046526074409485\n          }\n        ]\n      },\n      \"Id\": \"a2acc999-696a-4510-bb4b-67b6905b9f94\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87924194335938,\n      \"Text\": \"work\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026824552565813065,\n          \"Height\": 0.007500641979277134,\n          \"Left\": 0.22539477050304413,\n          \"Top\": 0.697199821472168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22539477050304413,\n            \"Y\": 0.697199821472168\n          },\n          {\n            \"X\": 0.25221768021583557,\n            \"Y\": 0.697222888469696\n          },\n          {\n            \"X\": 0.2522193193435669,\n            \"Y\": 0.7047004699707031\n          },\n          {\n            \"X\": 0.22539633512496948,\n            \"Y\": 0.7046773433685303\n          }\n        ]\n      },\n      \"Id\": \"1867f5ef-3723-4f26-bc46-66da8e8fb606\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95570373535156,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01585094816982746,\n          \"Height\": 0.007587755098938942,\n          \"Left\": 0.2561497390270233,\n          \"Top\": 0.6970627903938293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2561497390270233,\n            \"Y\": 0.6970627903938293\n          },\n          {\n            \"X\": 0.27199894189834595,\n            \"Y\": 0.6970764398574829\n          },\n          {\n            \"X\": 0.2720007002353668,\n            \"Y\": 0.7046505808830261\n          },\n          {\n            \"X\": 0.2561514377593994,\n            \"Y\": 0.7046368718147278\n          }\n        ]\n      },\n      \"Id\": \"5fdee53e-9e7e-4639-b29f-65180b8ffccd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98188018798828,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01953005976974964,\n          \"Height\": 0.007585327140986919,\n          \"Left\": 0.27600523829460144,\n          \"Top\": 0.6987611651420593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27600523829460144,\n            \"Y\": 0.6987611651420593\n          },\n          {\n            \"X\": 0.2955334484577179,\n            \"Y\": 0.6987779140472412\n          },\n          {\n            \"X\": 0.29553529620170593,\n            \"Y\": 0.7063464522361755\n          },\n          {\n            \"X\": 0.2760069966316223,\n            \"Y\": 0.7063295841217041\n          }\n        ]\n      },\n      \"Id\": \"299b0be4-2fb6-4d01-955e-9b5cb1911a6e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95205688476562,\n      \"Text\": \"length\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03339667245745659,\n          \"Height\": 0.009476686827838421,\n          \"Left\": 0.29984816908836365,\n          \"Top\": 0.697058916091919\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29984816908836365,\n            \"Y\": 0.697058916091919\n          },\n          {\n            \"X\": 0.33324235677719116,\n            \"Y\": 0.6970876455307007\n          },\n          {\n            \"X\": 0.33324483036994934,\n            \"Y\": 0.7065356373786926\n          },\n          {\n            \"X\": 0.2998504936695099,\n            \"Y\": 0.7065067887306213\n          }\n        ]\n      },\n      \"Id\": \"31af1c05-5e3b-41b4-885b-871415c8734b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86461639404297,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011097798123955727,\n          \"Height\": 0.007734366226941347,\n          \"Left\": 0.337708979845047,\n          \"Top\": 0.69697105884552\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.337708979845047,\n            \"Y\": 0.69697105884552\n          },\n          {\n            \"X\": 0.34880468249320984,\n            \"Y\": 0.6969805359840393\n          },\n          {\n            \"X\": 0.348806768655777,\n            \"Y\": 0.7047054171562195\n          },\n          {\n            \"X\": 0.33771103620529175,\n            \"Y\": 0.7046958208084106\n          }\n        ]\n      },\n      \"Id\": \"600222da-b6b7-4753-a4e5-5a44c218c688\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.24144744873047,\n      \"Text\": \"time,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02616032399237156,\n          \"Height\": 0.008732046000659466,\n          \"Left\": 0.35307976603507996,\n          \"Top\": 0.6970579624176025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35307976603507996,\n            \"Y\": 0.6970579624176025\n          },\n          {\n            \"X\": 0.3792375922203064,\n            \"Y\": 0.6970804333686829\n          },\n          {\n            \"X\": 0.37924009561538696,\n            \"Y\": 0.7057900428771973\n          },\n          {\n            \"X\": 0.35308215022087097,\n            \"Y\": 0.7057674527168274\n          }\n        ]\n      },\n      \"Id\": \"35e1a17b-05a8-448d-ae3f-8779f56d9c8c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9124755859375,\n      \"Text\": \"please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03368481993675232,\n          \"Height\": 0.009294476360082626,\n          \"Left\": 0.38482609391212463,\n          \"Top\": 0.6971448063850403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38482609391212463,\n            \"Y\": 0.6971448063850403\n          },\n          {\n            \"X\": 0.41850805282592773,\n            \"Y\": 0.6971737146377563\n          },\n          {\n            \"X\": 0.41851091384887695,\n            \"Y\": 0.7064392566680908\n          },\n          {\n            \"X\": 0.3848287761211395,\n            \"Y\": 0.7064101696014404\n          }\n        ]\n      },\n      \"Id\": \"03878afa-9c94-4719-8912-efee83533970\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84321594238281,\n      \"Text\": \"indicate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04196447506546974,\n          \"Height\": 0.008025476709008217,\n          \"Left\": 0.42252933979034424,\n          \"Top\": 0.6968039870262146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42252933979034424,\n            \"Y\": 0.6968039870262146\n          },\n          {\n            \"X\": 0.4644911587238312,\n            \"Y\": 0.6968400478363037\n          },\n          {\n            \"X\": 0.4644938111305237,\n            \"Y\": 0.7048294544219971\n          },\n          {\n            \"X\": 0.4225318133831024,\n            \"Y\": 0.7047932744026184\n          }\n        ]\n      },\n      \"Id\": \"dbeae94e-e797-4019-9ca3-e13698789d37\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9314956665039,\n      \"Text\": \"time\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02354816161096096,\n          \"Height\": 0.007657752837985754,\n          \"Left\": 0.4687768220901489,\n          \"Top\": 0.6970103979110718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4687768220901489,\n            \"Y\": 0.6970103979110718\n          },\n          {\n            \"X\": 0.49232232570648193,\n            \"Y\": 0.6970306634902954\n          },\n          {\n            \"X\": 0.49232497811317444,\n            \"Y\": 0.7046681642532349\n          },\n          {\n            \"X\": 0.4687793552875519,\n            \"Y\": 0.7046478390693665\n          }\n        ]\n      },\n      \"Id\": \"b7852c11-2268-49bd-b21e-0e075f4b778a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94256591796875,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03315628319978714,\n          \"Height\": 0.009434022940695286,\n          \"Left\": 0.4968374967575073,\n          \"Top\": 0.6969447135925293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4968374967575073,\n            \"Y\": 0.6969447135925293\n          },\n          {\n            \"X\": 0.5299903154373169,\n            \"Y\": 0.6969732046127319\n          },\n          {\n            \"X\": 0.5299937725067139,\n            \"Y\": 0.7063787579536438\n          },\n          {\n            \"X\": 0.49684077501296997,\n            \"Y\": 0.7063501477241516\n          }\n        ]\n      },\n      \"Id\": \"a94f5b01-f62c-4bf7-bf4c-0e78e0a86692\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95123291015625,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019777977839112282,\n          \"Height\": 0.007746089715510607,\n          \"Left\": 0.534317135810852,\n          \"Top\": 0.6968722939491272\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.534317135810852,\n            \"Y\": 0.6968722939491272\n          },\n          {\n            \"X\": 0.5540922284126282,\n            \"Y\": 0.6968892812728882\n          },\n          {\n            \"X\": 0.5540951490402222,\n            \"Y\": 0.7046183347702026\n          },\n          {\n            \"X\": 0.5343199968338013,\n            \"Y\": 0.7046012878417969\n          }\n        ]\n      },\n      \"Id\": \"897e9399-ed26-4eef-a535-2061fd96b749\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64669799804688,\n      \"Text\": \"reason)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03935912624001503,\n          \"Height\": 0.008626947179436684,\n          \"Left\": 0.5585179924964905,\n          \"Top\": 0.6968187093734741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585179924964905,\n            \"Y\": 0.6968187093734741\n          },\n          {\n            \"X\": 0.5978736877441406,\n            \"Y\": 0.6968525052070618\n          },\n          {\n            \"X\": 0.5978771448135376,\n            \"Y\": 0.7054457068443298\n          },\n          {\n            \"X\": 0.5585212707519531,\n            \"Y\": 0.7054117321968079\n          }\n        ]\n      },\n      \"Id\": \"827aceca-bbdf-4962-b95e-14755b230ea0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88587188720703,\n      \"Text\": \"Not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02498018555343151,\n          \"Height\": 0.009946886450052261,\n          \"Left\": 0.05848872289061546,\n          \"Top\": 0.7157453894615173\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05848872289061546,\n            \"Y\": 0.7157453894615173\n          },\n          {\n            \"X\": 0.08346758037805557,\n            \"Y\": 0.7157670855522156\n          },\n          {\n            \"X\": 0.08346890658140182,\n            \"Y\": 0.7256922721862793\n          },\n          {\n            \"X\": 0.058489926159381866,\n            \"Y\": 0.7256704568862915\n          }\n        ]\n      },\n      \"Id\": \"e1649cc4-8d69-48e7-b256-d3bb58f23a2c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96710205078125,\n      \"Text\": \"Applicable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07563547044992447,\n          \"Height\": 0.012601373717188835,\n          \"Left\": 0.08734649419784546,\n          \"Top\": 0.7155799865722656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08734649419784546,\n            \"Y\": 0.7155799865722656\n          },\n          {\n            \"X\": 0.16297976672649384,\n            \"Y\": 0.7156456112861633\n          },\n          {\n            \"X\": 0.16298195719718933,\n            \"Y\": 0.7281813621520996\n          },\n          {\n            \"X\": 0.08734820038080215,\n            \"Y\": 0.7281152606010437\n          }\n        ]\n      },\n      \"Id\": \"7fc6a7af-5d20-4f16-8086-1fa0af7cdb43\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71390533447266,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029071535915136337,\n          \"Height\": 0.009250588715076447,\n          \"Left\": 0.04259522259235382,\n          \"Top\": 0.7590771317481995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04259522259235382,\n            \"Y\": 0.7590771317481995\n          },\n          {\n            \"X\": 0.07166557759046555,\n            \"Y\": 0.7591029405593872\n          },\n          {\n            \"X\": 0.07166676223278046,\n            \"Y\": 0.7683277130126953\n          },\n          {\n            \"X\": 0.04259626567363739,\n            \"Y\": 0.7683017253875732\n          }\n        ]\n      },\n      \"Id\": \"e4ba5285-ed1a-4dad-a672-b90f5f5508de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.68661499023438,\n      \"Text\": \"III\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013457494787871838,\n          \"Height\": 0.009046138264238834,\n          \"Left\": 0.07722169905900955,\n          \"Top\": 0.7591044902801514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07722169905900955,\n            \"Y\": 0.7591044902801514\n          },\n          {\n            \"X\": 0.09067794680595398,\n            \"Y\": 0.7591164112091064\n          },\n          {\n            \"X\": 0.09067919105291367,\n            \"Y\": 0.7681506276130676\n          },\n          {\n            \"X\": 0.07722288370132446,\n            \"Y\": 0.768138587474823\n          }\n        ]\n      },\n      \"Id\": \"20c8cbfd-7caa-4fd9-a2ff-ebe1f550b20d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.91494750976562,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012033073231577873,\n          \"Height\": 0.0027440921403467655,\n          \"Left\": 0.09708946198225021,\n          \"Top\": 0.7632967233657837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09708946198225021,\n            \"Y\": 0.7632967233657837\n          },\n          {\n            \"X\": 0.109122134745121,\n            \"Y\": 0.7633073925971985\n          },\n          {\n            \"X\": 0.10912253707647324,\n            \"Y\": 0.7660408020019531\n          },\n          {\n            \"X\": 0.09708984941244125,\n            \"Y\": 0.7660300731658936\n          }\n        ]\n      },\n      \"Id\": \"f105ae03-8a59-43dd-8ce6-6b698e201ffc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79804992675781,\n      \"Text\": \"Verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08177811652421951,\n          \"Height\": 0.009409457445144653,\n          \"Left\": 0.1154409646987915,\n          \"Top\": 0.7588038444519043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1154409646987915,\n            \"Y\": 0.7588038444519043\n          },\n          {\n            \"X\": 0.19721728563308716,\n            \"Y\": 0.7588765025138855\n          },\n          {\n            \"X\": 0.1972190886735916,\n            \"Y\": 0.7682132720947266\n          },\n          {\n            \"X\": 0.11544237285852432,\n            \"Y\": 0.7681401968002319\n          }\n        ]\n      },\n      \"Id\": \"e5077531-2645-4c98-af8c-a34d411f1822\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93036651611328,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01495467871427536,\n          \"Height\": 0.009435134939849377,\n          \"Left\": 0.20328763127326965,\n          \"Top\": 0.7586506605148315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20328763127326965,\n            \"Y\": 0.7586506605148315\n          },\n          {\n            \"X\": 0.2182403802871704,\n            \"Y\": 0.7586639523506165\n          },\n          {\n            \"X\": 0.21824230253696442,\n            \"Y\": 0.768085777759552\n          },\n          {\n            \"X\": 0.2032894790172577,\n            \"Y\": 0.7680724263191223\n          }\n        ]\n      },\n      \"Id\": \"9989c4df-16df-4812-bae5-69518470df87\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95088195800781,\n      \"Text\": \"Previous\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060300666838884354,\n          \"Height\": 0.009413406252861023,\n          \"Left\": 0.22387321293354034,\n          \"Top\": 0.7587380409240723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22387321293354034,\n            \"Y\": 0.7587380409240723\n          },\n          {\n            \"X\": 0.2841716706752777,\n            \"Y\": 0.7587916254997253\n          },\n          {\n            \"X\": 0.2841738760471344,\n            \"Y\": 0.7681514620780945\n          },\n          {\n            \"X\": 0.22387515008449554,\n            \"Y\": 0.7680975794792175\n          }\n        ]\n      },\n      \"Id\": \"ccffd5d9-3684-429d-a538-5a5315286049\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9495849609375,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09004420042037964,\n          \"Height\": 0.011294360272586346,\n          \"Left\": 0.2899530529975891,\n          \"Top\": 0.7587570548057556\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2899530529975891,\n            \"Y\": 0.7587570548057556\n          },\n          {\n            \"X\": 0.3799940347671509,\n            \"Y\": 0.7588370442390442\n          },\n          {\n            \"X\": 0.37999725341796875,\n            \"Y\": 0.7700513601303101\n          },\n          {\n            \"X\": 0.2899557650089264,\n            \"Y\": 0.7699708938598633\n          }\n        ]\n      },\n      \"Id\": \"77d4239f-7f24-4577-be75-b2bb2a75fc73\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58979034423828,\n      \"Text\": \"21.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014966463670134544,\n          \"Height\": 0.007619949523359537,\n          \"Left\": 0.04167769476771355,\n          \"Top\": 0.7733286619186401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04167769476771355,\n            \"Y\": 0.7733286619186401\n          },\n          {\n            \"X\": 0.05664324387907982,\n            \"Y\": 0.7733420729637146\n          },\n          {\n            \"X\": 0.05664416030049324,\n            \"Y\": 0.7809486389160156\n          },\n          {\n            \"X\": 0.04167855158448219,\n            \"Y\": 0.7809351682662964\n          }\n        ]\n      },\n      \"Id\": \"67781941-b1ad-4a32-bd3c-a3e1138a24af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79454803466797,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023300793021917343,\n          \"Height\": 0.0075981891714036465,\n          \"Left\": 0.061807598918676376,\n          \"Top\": 0.7732816338539124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.061807598918676376,\n            \"Y\": 0.7732816338539124\n          },\n          {\n            \"X\": 0.08510737121105194,\n            \"Y\": 0.7733024954795837\n          },\n          {\n            \"X\": 0.08510839194059372,\n            \"Y\": 0.7808797955513\n          },\n          {\n            \"X\": 0.06180853024125099,\n            \"Y\": 0.7808588147163391\n          }\n        ]\n      },\n      \"Id\": \"44917e32-e002-43a1-b68b-572267aa9dbf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88165283203125,\n      \"Text\": \"Hired\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026726502925157547,\n          \"Height\": 0.007493087090551853,\n          \"Left\": 0.08904889971017838,\n          \"Top\": 0.7733290195465088\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08904889971017838,\n            \"Y\": 0.7733290195465088\n          },\n          {\n            \"X\": 0.11577428132295609,\n            \"Y\": 0.7733529210090637\n          },\n          {\n            \"X\": 0.11577540636062622,\n            \"Y\": 0.7808220982551575\n          },\n          {\n            \"X\": 0.08904992789030075,\n            \"Y\": 0.7807980179786682\n          }\n        ]\n      },\n      \"Id\": \"1098ab82-3967-4cef-a0e0-ed93975e2644\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96337890625,\n      \"Text\": \"04/04/2004\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06568747013807297,\n          \"Height\": 0.008414910174906254,\n          \"Left\": 0.14091239869594574,\n          \"Top\": 0.7750162482261658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14091239869594574,\n            \"Y\": 0.7750162482261658\n          },\n          {\n            \"X\": 0.2065982222557068,\n            \"Y\": 0.7750751972198486\n          },\n          {\n            \"X\": 0.2065998762845993,\n            \"Y\": 0.7834311723709106\n          },\n          {\n            \"X\": 0.14091376960277557,\n            \"Y\": 0.7833719849586487\n          }\n        ]\n      },\n      \"Id\": \"c0cd76ee-83f2-4c55-b4e8-9c92cb0c793e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56079864501953,\n      \"Text\": \"23.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015231376513838768,\n          \"Height\": 0.007507574278861284,\n          \"Left\": 0.2854408025741577,\n          \"Top\": 0.7732643485069275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2854408025741577,\n            \"Y\": 0.7732643485069275\n          },\n          {\n            \"X\": 0.300670325756073,\n            \"Y\": 0.773277997970581\n          },\n          {\n            \"X\": 0.30067217350006104,\n            \"Y\": 0.7807719111442566\n          },\n          {\n            \"X\": 0.285442590713501,\n            \"Y\": 0.7807582020759583\n          }\n        ]\n      },\n      \"Id\": \"f00a025b-4adb-4ec2-8e3a-ccea394fbf1e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.84068298339844,\n      \"Text\": \"Salary/Wage\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06586634367704391,\n          \"Height\": 0.009034640155732632,\n          \"Left\": 0.305723637342453,\n          \"Top\": 0.7731016874313354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.305723637342453,\n            \"Y\": 0.7731016874313354\n          },\n          {\n            \"X\": 0.37158745527267456,\n            \"Y\": 0.7731606960296631\n          },\n          {\n            \"X\": 0.3715899884700775,\n            \"Y\": 0.7821363210678101\n          },\n          {\n            \"X\": 0.3057258725166321,\n            \"Y\": 0.7820770144462585\n          }\n        ]\n      },\n      \"Id\": \"439b3544-065a-42e5-9041-6bc5b668775b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93962097167969,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010121067985892296,\n          \"Height\": 0.006551282946020365,\n          \"Left\": 0.3755253255367279,\n          \"Top\": 0.7741116881370544\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3755253255367279,\n            \"Y\": 0.7741116881370544\n          },\n          {\n            \"X\": 0.38564449548721313,\n            \"Y\": 0.7741207480430603\n          },\n          {\n            \"X\": 0.38564637303352356,\n            \"Y\": 0.7806629538536072\n          },\n          {\n            \"X\": 0.37552717328071594,\n            \"Y\": 0.7806538343429565\n          }\n        ]\n      },\n      \"Id\": \"daef77af-07d7-478a-8bc7-ff2bdf09ca2d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81121063232422,\n      \"Text\": \"Termination\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05970432981848717,\n          \"Height\": 0.0075128222815692425,\n          \"Left\": 0.3891753554344177,\n          \"Top\": 0.7731308937072754\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3891753554344177,\n            \"Y\": 0.7731308937072754\n          },\n          {\n            \"X\": 0.4488772749900818,\n            \"Y\": 0.7731843590736389\n          },\n          {\n            \"X\": 0.4488796889781952,\n            \"Y\": 0.7806437015533447\n          },\n          {\n            \"X\": 0.389177531003952,\n            \"Y\": 0.7805899977684021\n          }\n        ]\n      },\n      \"Id\": \"5244f919-c93c-4e87-9d04-e500fa643248\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6886215209961,\n      \"Text\": \"Per\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016954056918621063,\n          \"Height\": 0.007380729075521231,\n          \"Left\": 0.453263521194458,\n          \"Top\": 0.7732146978378296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.453263521194458,\n            \"Y\": 0.7732146978378296\n          },\n          {\n            \"X\": 0.4702151119709015,\n            \"Y\": 0.7732298970222473\n          },\n          {\n            \"X\": 0.47021758556365967,\n            \"Y\": 0.7805954217910767\n          },\n          {\n            \"X\": 0.4532659351825714,\n            \"Y\": 0.7805801630020142\n          }\n        ]\n      },\n      \"Id\": \"ca889821-6a64-433d-ad83-134f1b0e6b23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91445922851562,\n      \"Text\": \"(Year)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02988041751086712,\n          \"Height\": 0.008727933280169964,\n          \"Left\": 0.474094420671463,\n          \"Top\": 0.7728796601295471\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.474094420671463,\n            \"Y\": 0.7728796601295471\n          },\n          {\n            \"X\": 0.5039717555046082,\n            \"Y\": 0.7729064226150513\n          },\n          {\n            \"X\": 0.5039748549461365,\n            \"Y\": 0.7816076278686523\n          },\n          {\n            \"X\": 0.474097341299057,\n            \"Y\": 0.7815807461738586\n          }\n        ]\n      },\n      \"Id\": \"2a8447e3-d074-4e97-b2bf-95a16a2151e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9081802368164,\n      \"Text\": \"(Month)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04027749225497246,\n          \"Height\": 0.008581534959375858,\n          \"Left\": 0.5088082551956177,\n          \"Top\": 0.7729272842407227\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5088082551956177,\n            \"Y\": 0.7729272842407227\n          },\n          {\n            \"X\": 0.5490825176239014,\n            \"Y\": 0.7729633450508118\n          },\n          {\n            \"X\": 0.5490857362747192,\n            \"Y\": 0.7815088629722595\n          },\n          {\n            \"X\": 0.5088112354278564,\n            \"Y\": 0.7814726233482361\n          }\n        ]\n      },\n      \"Id\": \"24497816-46db-4430-a9c9-8152a97d3753\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75067138671875,\n      \"Text\": \"(Week)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03562173247337341,\n          \"Height\": 0.00852651335299015,\n          \"Left\": 0.5535719394683838,\n          \"Top\": 0.7729101181030273\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5535719394683838,\n            \"Y\": 0.7729101181030273\n          },\n          {\n            \"X\": 0.5891903042793274,\n            \"Y\": 0.7729420065879822\n          },\n          {\n            \"X\": 0.5891937017440796,\n            \"Y\": 0.7814366221427917\n          },\n          {\n            \"X\": 0.5535751581192017,\n            \"Y\": 0.7814045548439026\n          }\n        ]\n      },\n      \"Id\": \"0b79f340-0bb6-447f-8f57-b9360939d17f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8934097290039,\n      \"Text\": \"01/03/2005\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06554824858903885,\n          \"Height\": 0.008503793738782406,\n          \"Left\": 0.16955848038196564,\n          \"Top\": 0.7889941334724426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16955848038196564,\n            \"Y\": 0.7889941334724426\n          },\n          {\n            \"X\": 0.23510493338108063,\n            \"Y\": 0.7890533804893494\n          },\n          {\n            \"X\": 0.2351067215204239,\n            \"Y\": 0.7974979281425476\n          },\n          {\n            \"X\": 0.16955998539924622,\n            \"Y\": 0.7974384427070618\n          }\n        ]\n      },\n      \"Id\": \"b9d99afe-7abf-4074-82e5-5e393251eec0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9299545288086,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023849904537200928,\n          \"Height\": 0.007324519567191601,\n          \"Left\": 0.3053722083568573,\n          \"Top\": 0.7883179783821106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3053722083568573,\n            \"Y\": 0.7883179783821106\n          },\n          {\n            \"X\": 0.3292202055454254,\n            \"Y\": 0.7883394956588745\n          },\n          {\n            \"X\": 0.3292221128940582,\n            \"Y\": 0.7956424951553345\n          },\n          {\n            \"X\": 0.30537402629852295,\n            \"Y\": 0.795620858669281\n          }\n        ]\n      },\n      \"Id\": \"862bc077-c844-4e36-9ef0-daa9187f46ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.93370819091797,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0072823320515453815,\n          \"Height\": 0.009297783486545086,\n          \"Left\": 0.35168933868408203,\n          \"Top\": 0.7848729491233826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35168933868408203,\n            \"Y\": 0.7848729491233826\n          },\n          {\n            \"X\": 0.3589690923690796,\n            \"Y\": 0.7848795056343079\n          },\n          {\n            \"X\": 0.3589716851711273,\n            \"Y\": 0.7941707372665405\n          },\n          {\n            \"X\": 0.351691871881485,\n            \"Y\": 0.7941641211509705\n          }\n        ]\n      },\n      \"Id\": \"baa3a6e4-99c9-4e3f-937d-d64563021eb2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.944580078125,\n      \"Text\": \"9500\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028671205043792725,\n          \"Height\": 0.008124046958982944,\n          \"Left\": 0.3625935912132263,\n          \"Top\": 0.7854594588279724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3625935912132263,\n            \"Y\": 0.7854594588279724\n          },\n          {\n            \"X\": 0.391262412071228,\n            \"Y\": 0.7854853272438049\n          },\n          {\n            \"X\": 0.39126479625701904,\n            \"Y\": 0.7935835123062134\n          },\n          {\n            \"X\": 0.3625958561897278,\n            \"Y\": 0.7935575246810913\n          }\n        ]\n      },\n      \"Id\": \"ffc54dc6-6ca8-4fc6-80c3-1c5f574331cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8417739868164,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04567082226276398,\n          \"Height\": 0.007657689042389393,\n          \"Left\": 0.43577802181243896,\n          \"Top\": 0.7880113124847412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43577802181243896,\n            \"Y\": 0.7880113124847412\n          },\n          {\n            \"X\": 0.481446236371994,\n            \"Y\": 0.7880525588989258\n          },\n          {\n            \"X\": 0.48144882917404175,\n            \"Y\": 0.7956690192222595\n          },\n          {\n            \"X\": 0.43578043580055237,\n            \"Y\": 0.7956275939941406\n          }\n        ]\n      },\n      \"Id\": \"5aab9ded-6b1b-4b28-b27f-2d96a02482d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96968078613281,\n      \"Text\": \"1250\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02815900184214115,\n          \"Height\": 0.008177189156413078,\n          \"Left\": 0.500054121017456,\n          \"Top\": 0.7861490249633789\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.500054121017456,\n            \"Y\": 0.7861490249633789\n          },\n          {\n            \"X\": 0.5282101035118103,\n            \"Y\": 0.7861744165420532\n          },\n          {\n            \"X\": 0.5282130837440491,\n            \"Y\": 0.7943262457847595\n          },\n          {\n            \"X\": 0.5000569224357605,\n            \"Y\": 0.7943007349967957\n          }\n        ]\n      },\n      \"Id\": \"0bbcffcd-5213-4227-9c5d-afa6a6e26d00\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9228744506836,\n      \"Text\": \"Commissions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06648001074790955,\n          \"Height\": 0.007471730466932058,\n          \"Left\": 0.5877031087875366,\n          \"Top\": 0.7880325317382812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5877031087875366,\n            \"Y\": 0.7880325317382812\n          },\n          {\n            \"X\": 0.6541799306869507,\n            \"Y\": 0.7880925536155701\n          },\n          {\n            \"X\": 0.6541830897331238,\n            \"Y\": 0.7955042719841003\n          },\n          {\n            \"X\": 0.5877060294151306,\n            \"Y\": 0.7954440116882324\n          }\n        ]\n      },\n      \"Id\": \"61013532-08d0-4131-89d5-60846c29ee12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9857177734375,\n      \"Text\": \"4500\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029485899955034256,\n          \"Height\": 0.008184386417269707,\n          \"Left\": 0.679559588432312,\n          \"Top\": 0.7857794165611267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.679559588432312,\n            \"Y\": 0.7857794165611267\n          },\n          {\n            \"X\": 0.7090417146682739,\n            \"Y\": 0.7858060002326965\n          },\n          {\n            \"X\": 0.7090454697608948,\n            \"Y\": 0.7939637899398804\n          },\n          {\n            \"X\": 0.6795631647109985,\n            \"Y\": 0.793937087059021\n          }\n        ]\n      },\n      \"Id\": \"20786605-e9d1-4165-bde9-76353dca07de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5585708618164,\n      \"Text\": \"22.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015040638856589794,\n          \"Height\": 0.007453009486198425,\n          \"Left\": 0.04174574837088585,\n          \"Top\": 0.7908160090446472\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04174574837088585,\n            \"Y\": 0.7908160090446472\n          },\n          {\n            \"X\": 0.05678549408912659,\n            \"Y\": 0.790829598903656\n          },\n          {\n            \"X\": 0.05678638815879822,\n            \"Y\": 0.7982690334320068\n          },\n          {\n            \"X\": 0.041746586561203,\n            \"Y\": 0.7982553243637085\n          }\n        ]\n      },\n      \"Id\": \"ecdb0708-9454-449c-b19d-7ac5b15627e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88126373291016,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02333877421915531,\n          \"Height\": 0.007327403407543898,\n          \"Left\": 0.06175018846988678,\n          \"Top\": 0.7910202741622925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06175018846988678,\n            \"Y\": 0.7910202741622925\n          },\n          {\n            \"X\": 0.08508797734975815,\n            \"Y\": 0.791041374206543\n          },\n          {\n            \"X\": 0.08508896082639694,\n            \"Y\": 0.7983476519584656\n          },\n          {\n            \"X\": 0.06175108626484871,\n            \"Y\": 0.7983264923095703\n          }\n        ]\n      },\n      \"Id\": \"25314353-5ec7-44bd-8a69-9dc0787cf467\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83109283447266,\n      \"Text\": \"Terminated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05715726315975189,\n          \"Height\": 0.007541692350059748,\n          \"Left\": 0.08828192204236984,\n          \"Top\": 0.7907652258872986\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08828192204236984,\n            \"Y\": 0.7907652258872986\n          },\n          {\n            \"X\": 0.14543794095516205,\n            \"Y\": 0.7908169031143188\n          },\n          {\n            \"X\": 0.14543917775154114,\n            \"Y\": 0.7983068823814392\n          },\n          {\n            \"X\": 0.08828294277191162,\n            \"Y\": 0.7982549667358398\n          }\n        ]\n      },\n      \"Id\": \"73e25839-a331-4824-8ee4-62debc9d06d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85252380371094,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03229645639657974,\n          \"Height\": 0.0075120278634130955,\n          \"Left\": 0.7609420418739319,\n          \"Top\": 0.7879647016525269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7609420418739319,\n            \"Y\": 0.7879647016525269\n          },\n          {\n            \"X\": 0.7932347655296326,\n            \"Y\": 0.7879939079284668\n          },\n          {\n            \"X\": 0.7932385206222534,\n            \"Y\": 0.7954767346382141\n          },\n          {\n            \"X\": 0.7609456777572632,\n            \"Y\": 0.7954474687576294\n          }\n        ]\n      },\n      \"Id\": \"cc773d92-e7cc-4432-80fe-322364525b80\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97464752197266,\n      \"Text\": \"4000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02923075668513775,\n          \"Height\": 0.008164236322045326,\n          \"Left\": 0.8137102723121643,\n          \"Top\": 0.7862696647644043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8137102723121643,\n            \"Y\": 0.7862696647644043\n          },\n          {\n            \"X\": 0.8429367542266846,\n            \"Y\": 0.7862960696220398\n          },\n          {\n            \"X\": 0.8429410457611084,\n            \"Y\": 0.7944338917732239\n          },\n          {\n            \"X\": 0.8137144446372986,\n            \"Y\": 0.7944074273109436\n          }\n        ]\n      },\n      \"Id\": \"3656121e-85a5-44cf-adc8-2b5f8bce24d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.33573913574219,\n      \"Text\": \"24.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014462594874203205,\n          \"Height\": 0.007508095353841782,\n          \"Left\": 0.04182835668325424,\n          \"Top\": 0.8047659397125244\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04182835668325424,\n            \"Y\": 0.8047659397125244\n          },\n          {\n            \"X\": 0.05629005283117294,\n            \"Y\": 0.8047791123390198\n          },\n          {\n            \"X\": 0.05629095062613487,\n            \"Y\": 0.8122739791870117\n          },\n          {\n            \"X\": 0.041829198598861694,\n            \"Y\": 0.8122608065605164\n          }\n        ]\n      },\n      \"Id\": \"d1b3634f-746f-4dd9-86a5-92d4fc6bcab3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88409423828125,\n      \"Text\": \"Reason\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03640320897102356,\n          \"Height\": 0.007425333838909864,\n          \"Left\": 0.061364755034446716,\n          \"Top\": 0.8049450516700745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.061364755034446716,\n            \"Y\": 0.8049450516700745\n          },\n          {\n            \"X\": 0.0977669209241867,\n            \"Y\": 0.8049781918525696\n          },\n          {\n            \"X\": 0.09776796400547028,\n            \"Y\": 0.8123703598976135\n          },\n          {\n            \"X\": 0.06136566027998924,\n            \"Y\": 0.8123371005058289\n          }\n        ]\n      },\n      \"Id\": \"7d705bf7-2117-4633-9109-650613f04654\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94573974609375,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014730030670762062,\n          \"Height\": 0.007365558296442032,\n          \"Left\": 0.1017414778470993,\n          \"Top\": 0.8047348856925964\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1017414778470993,\n            \"Y\": 0.8047348856925964\n          },\n          {\n            \"X\": 0.11647039651870728,\n            \"Y\": 0.8047482967376709\n          },\n          {\n            \"X\": 0.11647151410579681,\n            \"Y\": 0.8121004104614258\n          },\n          {\n            \"X\": 0.10174253582954407,\n            \"Y\": 0.8120869398117065\n          }\n        ]\n      },\n      \"Id\": \"af99e72e-62ea-4f4b-954a-a57658d9d4b9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93289947509766,\n      \"Text\": \"Leaving\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03864471986889839,\n          \"Height\": 0.008866325952112675,\n          \"Left\": 0.12032868713140488,\n          \"Top\": 0.8047799468040466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12032868713140488,\n            \"Y\": 0.8047799468040466\n          },\n          {\n            \"X\": 0.1589718759059906,\n            \"Y\": 0.8048151135444641\n          },\n          {\n            \"X\": 0.15897341072559357,\n            \"Y\": 0.8136462569236755\n          },\n          {\n            \"X\": 0.12033004313707352,\n            \"Y\": 0.813610851764679\n          }\n        ]\n      },\n      \"Id\": \"25ef2ae3-8551-44b4-9987-31b3c6175a74\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70864868164062,\n      \"Text\": \"25.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015177905559539795,\n          \"Height\": 0.007378268521279097,\n          \"Left\": 0.49095451831817627,\n          \"Top\": 0.8045169115066528\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49095451831817627,\n            \"Y\": 0.8045169115066528\n          },\n          {\n            \"X\": 0.506129801273346,\n            \"Y\": 0.8045307397842407\n          },\n          {\n            \"X\": 0.5061324238777161,\n            \"Y\": 0.8118951916694641\n          },\n          {\n            \"X\": 0.4909570515155792,\n            \"Y\": 0.8118813037872314\n          }\n        ]\n      },\n      \"Id\": \"1c6d31af-6e64-44f2-96d0-568a617fddf2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68154907226562,\n      \"Text\": \"Position\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03979828581213951,\n          \"Height\": 0.007725374773144722,\n          \"Left\": 0.5110665559768677,\n          \"Top\": 0.8043695688247681\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5110665559768677,\n            \"Y\": 0.8043695688247681\n          },\n          {\n            \"X\": 0.5508618950843811,\n            \"Y\": 0.8044058084487915\n          },\n          {\n            \"X\": 0.5508648157119751,\n            \"Y\": 0.8120949268341064\n          },\n          {\n            \"X\": 0.5110692381858826,\n            \"Y\": 0.8120585680007935\n          }\n        ]\n      },\n      \"Id\": \"7f248cff-c1f5-4575-9329-a3b8bf0283a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62371063232422,\n      \"Text\": \"Held\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02271786332130432,\n          \"Height\": 0.007585060317069292,\n          \"Left\": 0.5549960136413574,\n          \"Top\": 0.8043584823608398\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5549960136413574,\n            \"Y\": 0.8043584823608398\n          },\n          {\n            \"X\": 0.5777109265327454,\n            \"Y\": 0.8043791651725769\n          },\n          {\n            \"X\": 0.5777138471603394,\n            \"Y\": 0.811943531036377\n          },\n          {\n            \"X\": 0.5549988746643066,\n            \"Y\": 0.8119227886199951\n          }\n        ]\n      },\n      \"Id\": \"c3ade1d1-90d7-47eb-a304-25787aca6aa2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92772674560547,\n      \"Text\": \"Medical\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04479874670505524,\n          \"Height\": 0.008349409326910973,\n          \"Left\": 0.16401107609272003,\n          \"Top\": 0.8150830268859863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16401107609272003,\n            \"Y\": 0.8150830268859863\n          },\n          {\n            \"X\": 0.20880816876888275,\n            \"Y\": 0.8151240348815918\n          },\n          {\n            \"X\": 0.20880982279777527,\n            \"Y\": 0.8234323859214783\n          },\n          {\n            \"X\": 0.16401253640651703,\n            \"Y\": 0.8233911991119385\n          }\n        ]\n      },\n      \"Id\": \"54c431a3-27f3-4ead-959f-f0cef89b71c5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69367980957031,\n      \"Text\": \"Issue\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030679069459438324,\n          \"Height\": 0.008185052312910557,\n          \"Left\": 0.21300119161605835,\n          \"Top\": 0.8152622580528259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21300119161605835,\n            \"Y\": 0.8152622580528259\n          },\n          {\n            \"X\": 0.2436784952878952,\n            \"Y\": 0.8152903318405151\n          },\n          {\n            \"X\": 0.24368025362491608,\n            \"Y\": 0.8234472870826721\n          },\n          {\n            \"X\": 0.21300283074378967,\n            \"Y\": 0.8234190940856934\n          }\n        ]\n      },\n      \"Id\": \"a3f297f6-0c01-4876-bf4d-2d422f9dd75c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92786407470703,\n      \"Text\": \"Device\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03927234187722206,\n          \"Height\": 0.008319409564137459,\n          \"Left\": 0.5571667551994324,\n          \"Top\": 0.8150122165679932\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5571667551994324,\n            \"Y\": 0.8150122165679932\n          },\n          {\n            \"X\": 0.5964357852935791,\n            \"Y\": 0.8150482177734375\n          },\n          {\n            \"X\": 0.5964391231536865,\n            \"Y\": 0.8233316540718079\n          },\n          {\n            \"X\": 0.5571699142456055,\n            \"Y\": 0.823295533657074\n          }\n        ]\n      },\n      \"Id\": \"7d48031a-22c4-400e-b35e-be215e69d852\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94915771484375,\n      \"Text\": \"Operator\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05210980027914047,\n          \"Height\": 0.010129502043128014,\n          \"Left\": 0.6003268957138062,\n          \"Top\": 0.814857006072998\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6003268957138062,\n            \"Y\": 0.814857006072998\n          },\n          {\n            \"X\": 0.652432382106781,\n            \"Y\": 0.8149046897888184\n          },\n          {\n            \"X\": 0.6524366736412048,\n            \"Y\": 0.824986457824707\n          },\n          {\n            \"X\": 0.6003309488296509,\n            \"Y\": 0.8249385356903076\n          }\n        ]\n      },\n      \"Id\": \"8306ae8d-8ab7-4e17-9f40-1c3abeaee220\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82903289794922,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02883252687752247,\n          \"Height\": 0.009130668826401234,\n          \"Left\": 0.04283171892166138,\n          \"Top\": 0.8347189426422119\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04283171892166138,\n            \"Y\": 0.8347189426422119\n          },\n          {\n            \"X\": 0.07166308164596558,\n            \"Y\": 0.8347456455230713\n          },\n          {\n            \"X\": 0.0716642439365387,\n            \"Y\": 0.8438495993614197\n          },\n          {\n            \"X\": 0.04283275082707405,\n            \"Y\": 0.8438227772712708\n          }\n        ]\n      },\n      \"Id\": \"87890fbe-9917-47bd-a648-3e08bd9f812f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.51799774169922,\n      \"Text\": \"IV\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014856196939945221,\n          \"Height\": 0.009269539266824722,\n          \"Left\": 0.0771060660481453,\n          \"Top\": 0.8346946835517883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0771060660481453,\n            \"Y\": 0.8346946835517883\n          },\n          {\n            \"X\": 0.09196098148822784,\n            \"Y\": 0.8347084522247314\n          },\n          {\n            \"X\": 0.09196226298809052,\n            \"Y\": 0.8439642190933228\n          },\n          {\n            \"X\": 0.077107273042202,\n            \"Y\": 0.8439503908157349\n          }\n        ]\n      },\n      \"Id\": \"b6b3c8ee-f516-4722-abdf-6bf8e08a29e0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.84272766113281,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011537131853401661,\n          \"Height\": 0.0029657590202987194,\n          \"Left\": 0.09893442690372467,\n          \"Top\": 0.8387791514396667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09893442690372467,\n            \"Y\": 0.8387791514396667\n          },\n          {\n            \"X\": 0.11047112196683884,\n            \"Y\": 0.8387898802757263\n          },\n          {\n            \"X\": 0.11047156155109406,\n            \"Y\": 0.8417448997497559\n          },\n          {\n            \"X\": 0.0989348441362381,\n            \"Y\": 0.8417341709136963\n          }\n        ]\n      },\n      \"Id\": \"11d6c654-50a9-4dcc-be76-9fbcc27c77a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8636703491211,\n      \"Text\": \"Authorized\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07804618775844574,\n          \"Height\": 0.009125180542469025,\n          \"Left\": 0.1171797439455986,\n          \"Top\": 0.8345156311988831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1171797439455986,\n            \"Y\": 0.8345156311988831\n          },\n          {\n            \"X\": 0.19522419571876526,\n            \"Y\": 0.8345878720283508\n          },\n          {\n            \"X\": 0.19522593915462494,\n            \"Y\": 0.8436408042907715\n          },\n          {\n            \"X\": 0.11718111485242844,\n            \"Y\": 0.8435682058334351\n          }\n        ]\n      },\n      \"Id\": \"a0a430ba-875a-42bd-92a4-af3a6c412652\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89834594726562,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06862552464008331,\n          \"Height\": 0.011103653348982334,\n          \"Left\": 0.2008158266544342,\n          \"Top\": 0.834377646446228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2008158266544342,\n            \"Y\": 0.834377646446228\n          },\n          {\n            \"X\": 0.26943880319595337,\n            \"Y\": 0.8344411849975586\n          },\n          {\n            \"X\": 0.2694413661956787,\n            \"Y\": 0.8454813361167908\n          },\n          {\n            \"X\": 0.20081797242164612,\n            \"Y\": 0.8454174399375916\n          }\n        ]\n      },\n      \"Id\": \"a99bc62e-254e-4131-af28-dc3f13f90744\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.05931091308594,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005354213993996382,\n          \"Height\": 0.002677902579307556,\n          \"Left\": 0.27447065711021423,\n          \"Top\": 0.8386321663856506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27447065711021423,\n            \"Y\": 0.8386321663856506\n          },\n          {\n            \"X\": 0.27982422709465027,\n            \"Y\": 0.838637113571167\n          },\n          {\n            \"X\": 0.2798248827457428,\n            \"Y\": 0.8413100838661194\n          },\n          {\n            \"X\": 0.2744712829589844,\n            \"Y\": 0.8413050770759583\n          }\n        ]\n      },\n      \"Id\": \"9c4c494f-0b49-429e-bb84-7f01623c3867\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85355377197266,\n      \"Text\": \"Federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04102170094847679,\n          \"Height\": 0.008241061121225357,\n          \"Left\": 0.2855449914932251,\n          \"Top\": 0.83541339635849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2855449914932251,\n            \"Y\": 0.83541339635849\n          },\n          {\n            \"X\": 0.3265645503997803,\n            \"Y\": 0.8354514241218567\n          },\n          {\n            \"X\": 0.3265666961669922,\n            \"Y\": 0.8436545133590698\n          },\n          {\n            \"X\": 0.2855469584465027,\n            \"Y\": 0.8436163663864136\n          }\n        ]\n      },\n      \"Id\": \"5c8a833a-c3d9-4cf1-af7f-7d4a723cdbe6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47219848632812,\n      \"Text\": \"statutes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044823188334703445,\n          \"Height\": 0.007195413578301668,\n          \"Left\": 0.3312723636627197,\n          \"Top\": 0.8363879323005676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3312723636627197,\n            \"Y\": 0.8363879323005676\n          },\n          {\n            \"X\": 0.3760935068130493,\n            \"Y\": 0.8364294767379761\n          },\n          {\n            \"X\": 0.37609556317329407,\n            \"Y\": 0.843583345413208\n          },\n          {\n            \"X\": 0.33127424120903015,\n            \"Y\": 0.84354168176651\n          }\n        ]\n      },\n      \"Id\": \"b52a9873-c2ab-4939-b7ad-aec59a6c00d4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96305847167969,\n      \"Text\": \"provide\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04207050800323486,\n          \"Height\": 0.009487751871347427,\n          \"Left\": 0.3809124827384949,\n          \"Top\": 0.8356021046638489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3809124827384949,\n            \"Y\": 0.8356021046638489\n          },\n          {\n            \"X\": 0.42298004031181335,\n            \"Y\": 0.835641086101532\n          },\n          {\n            \"X\": 0.42298299074172974,\n            \"Y\": 0.8450899124145508\n          },\n          {\n            \"X\": 0.38091519474983215,\n            \"Y\": 0.8450507521629333\n          }\n        ]\n      },\n      \"Id\": \"6810b348-c26a-4af1-a445-c4035214c92d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97218322753906,\n      \"Text\": \"severe\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036552105098962784,\n          \"Height\": 0.006455249153077602,\n          \"Left\": 0.427457332611084,\n          \"Top\": 0.8370776772499084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.427457332611084,\n            \"Y\": 0.8370776772499084\n          },\n          {\n            \"X\": 0.46400731801986694,\n            \"Y\": 0.8371115326881409\n          },\n          {\n            \"X\": 0.46400943398475647,\n            \"Y\": 0.843532919883728\n          },\n          {\n            \"X\": 0.42745932936668396,\n            \"Y\": 0.843498945236206\n          }\n        ]\n      },\n      \"Id\": \"d443ed29-7cf1-46e3-9aab-8a09f1722548\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.35517120361328,\n      \"Text\": \"penalties\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04985130578279495,\n          \"Height\": 0.00950060784816742,\n          \"Left\": 0.46881455183029175,\n          \"Top\": 0.8355550169944763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46881455183029175,\n            \"Y\": 0.8355550169944763\n          },\n          {\n            \"X\": 0.5186624526977539,\n            \"Y\": 0.8356011509895325\n          },\n          {\n            \"X\": 0.5186658501625061,\n            \"Y\": 0.8450556397438049\n          },\n          {\n            \"X\": 0.46881771087646484,\n            \"Y\": 0.8450092077255249\n          }\n        ]\n      },\n      \"Id\": \"582fa7d3-1031-4a91-9e3f-23aa4886d128\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97118377685547,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016542356461286545,\n          \"Height\": 0.008016548119485378,\n          \"Left\": 0.5233792066574097,\n          \"Top\": 0.8353626728057861\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5233792066574097,\n            \"Y\": 0.8353626728057861\n          },\n          {\n            \"X\": 0.5399186015129089,\n            \"Y\": 0.8353779911994934\n          },\n          {\n            \"X\": 0.5399215817451477,\n            \"Y\": 0.8433791995048523\n          },\n          {\n            \"X\": 0.5233821272850037,\n            \"Y\": 0.8433638215065002\n          }\n        ]\n      },\n      \"Id\": \"eb6b1ded-fd2a-4205-a183-217ee4affdcd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.973388671875,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02084123156964779,\n          \"Height\": 0.007697341963648796,\n          \"Left\": 0.54405677318573,\n          \"Top\": 0.8371245861053467\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.54405677318573,\n            \"Y\": 0.8371245861053467\n          },\n          {\n            \"X\": 0.5648950338363647,\n            \"Y\": 0.8371438980102539\n          },\n          {\n            \"X\": 0.5648980140686035,\n            \"Y\": 0.8448219299316406\n          },\n          {\n            \"X\": 0.5440596342086792,\n            \"Y\": 0.8448025584220886\n          }\n        ]\n      },\n      \"Id\": \"9c647bd0-0c45-45e4-9c28-e76163880a65\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46808624267578,\n      \"Text\": \"fraud,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03305637463927269,\n          \"Height\": 0.009151270613074303,\n          \"Left\": 0.5689159631729126,\n          \"Top\": 0.835375964641571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5689159631729126,\n            \"Y\": 0.835375964641571\n          },\n          {\n            \"X\": 0.6019687056541443,\n            \"Y\": 0.8354066014289856\n          },\n          {\n            \"X\": 0.6019723415374756,\n            \"Y\": 0.8445272445678711\n          },\n          {\n            \"X\": 0.5689194798469543,\n            \"Y\": 0.844496488571167\n          }\n        ]\n      },\n      \"Id\": \"88c7ff92-04e8-4b19-9185-32d1c3b09733\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7459487915039,\n      \"Text\": \"intentional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05989949032664299,\n          \"Height\": 0.008118313737213612,\n          \"Left\": 0.6079085469245911,\n          \"Top\": 0.83538818359375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6079085469245911,\n            \"Y\": 0.83538818359375\n          },\n          {\n            \"X\": 0.6678045392036438,\n            \"Y\": 0.8354436755180359\n          },\n          {\n            \"X\": 0.6678080558776855,\n            \"Y\": 0.8435065150260925\n          },\n          {\n            \"X\": 0.6079118251800537,\n            \"Y\": 0.8434508442878723\n          }\n        ]\n      },\n      \"Id\": \"b280ac23-1039-40e8-8b9a-56a3504d424c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 86.14557647705078,\n      \"Text\": \"misrepresentation,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10550852864980698,\n          \"Height\": 0.009384997189044952,\n          \"Left\": 0.6715996265411377,\n          \"Top\": 0.8354847431182861\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6715996265411377,\n            \"Y\": 0.8354847431182861\n          },\n          {\n            \"X\": 0.7771036028862,\n            \"Y\": 0.835582435131073\n          },\n          {\n            \"X\": 0.7771081924438477,\n            \"Y\": 0.8448697328567505\n          },\n          {\n            \"X\": 0.6716037392616272,\n            \"Y\": 0.8447715640068054\n          }\n        ]\n      },\n      \"Id\": \"0be5db1c-66ee-4df4-aa36-c57c9dc281e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79655456542969,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012444689869880676,\n          \"Height\": 0.0063444338738918304,\n          \"Left\": 0.782051682472229,\n          \"Top\": 0.8369333148002625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.782051682472229,\n            \"Y\": 0.8369333148002625\n          },\n          {\n            \"X\": 0.7944931983947754,\n            \"Y\": 0.8369448184967041\n          },\n          {\n            \"X\": 0.7944964170455933,\n            \"Y\": 0.8432776927947998\n          },\n          {\n            \"X\": 0.7820548415184021,\n            \"Y\": 0.8432661294937134\n          }\n        ]\n      },\n      \"Id\": \"ba300d70-2e4d-4972-911c-30bab32a87ff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.905029296875,\n      \"Text\": \"criminal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044245749711990356,\n          \"Height\": 0.008283166214823723,\n          \"Left\": 0.7985597252845764,\n          \"Top\": 0.8351048231124878\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7985597252845764,\n            \"Y\": 0.8351048231124878\n          },\n          {\n            \"X\": 0.8428010940551758,\n            \"Y\": 0.8351457715034485\n          },\n          {\n            \"X\": 0.8428054451942444,\n            \"Y\": 0.843388020992279\n          },\n          {\n            \"X\": 0.7985638976097107,\n            \"Y\": 0.843346893787384\n          }\n        ]\n      },\n      \"Id\": \"554b2553-b3e7-4258-b8de-294e06fc3096\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.67133331298828,\n      \"Text\": \"connivance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06460192054510117,\n          \"Height\": 0.008191344328224659,\n          \"Left\": 0.8469412922859192,\n          \"Top\": 0.8352245092391968\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8469412922859192,\n            \"Y\": 0.8352245092391968\n          },\n          {\n            \"X\": 0.9115386009216309,\n            \"Y\": 0.8352842926979065\n          },\n          {\n            \"X\": 0.9115431904792786,\n            \"Y\": 0.8434158563613892\n          },\n          {\n            \"X\": 0.846945583820343,\n            \"Y\": 0.8433558344841003\n          }\n        ]\n      },\n      \"Id\": \"0fb9b2ab-0f70-4362-aef7-11cc232c6b5e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87881469726562,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01202632486820221,\n          \"Height\": 0.00636187382042408,\n          \"Left\": 0.04214987903833389,\n          \"Top\": 0.8474376201629639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04214987903833389,\n            \"Y\": 0.8474376201629639\n          },\n          {\n            \"X\": 0.054175447672605515,\n            \"Y\": 0.8474488258361816\n          },\n          {\n            \"X\": 0.054176200181245804,\n            \"Y\": 0.8537994623184204\n          },\n          {\n            \"X\": 0.0421505942940712,\n            \"Y\": 0.8537882566452026\n          }\n        ]\n      },\n      \"Id\": \"1fcd162b-ac6a-44b4-831c-b3e2f4fdc7ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72386932373047,\n      \"Text\": \"conspiracy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06084732338786125,\n          \"Height\": 0.00944557972252369,\n          \"Left\": 0.05856997147202492,\n          \"Top\": 0.845941424369812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05856997147202492,\n            \"Y\": 0.845941424369812\n          },\n          {\n            \"X\": 0.11941585689783096,\n            \"Y\": 0.8459981083869934\n          },\n          {\n            \"X\": 0.11941729485988617,\n            \"Y\": 0.8553870320320129\n          },\n          {\n            \"X\": 0.05857110768556595,\n            \"Y\": 0.8553301095962524\n          }\n        ]\n      },\n      \"Id\": \"39428386-4f5f-412f-852b-688e7db662a4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9566879272461,\n      \"Text\": \"purposed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05279277637600899,\n          \"Height\": 0.009786850772798061,\n          \"Left\": 0.1238178089261055,\n          \"Top\": 0.8458003401756287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1238178089261055,\n            \"Y\": 0.8458003401756287\n          },\n          {\n            \"X\": 0.17660881578922272,\n            \"Y\": 0.8458495140075684\n          },\n          {\n            \"X\": 0.17661058902740479,\n            \"Y\": 0.8555872440338135\n          },\n          {\n            \"X\": 0.12381932139396667,\n            \"Y\": 0.8555378317832947\n          }\n        ]\n      },\n      \"Id\": \"a7e3cf0b-b69c-4fa0-9dfe-a3dc30139f50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95464324951172,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01149074174463749,\n          \"Height\": 0.007322277408093214,\n          \"Left\": 0.18114407360553741,\n          \"Top\": 0.8464968800544739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18114407360553741,\n            \"Y\": 0.8464968800544739\n          },\n          {\n            \"X\": 0.19263342022895813,\n            \"Y\": 0.8465076088905334\n          },\n          {\n            \"X\": 0.19263480603694916,\n            \"Y\": 0.8538191914558411\n          },\n          {\n            \"X\": 0.18114541471004486,\n            \"Y\": 0.8538084626197815\n          }\n        ]\n      },\n      \"Id\": \"a8d0a898-b805-42ef-b17f-0c4dc710c15d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79289245605469,\n      \"Text\": \"influence\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05204307287931442,\n          \"Height\": 0.00829628761857748,\n          \"Left\": 0.1968773752450943,\n          \"Top\": 0.8456310033798218\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1968773752450943,\n            \"Y\": 0.8456310033798218\n          },\n          {\n            \"X\": 0.24891863763332367,\n            \"Y\": 0.8456794619560242\n          },\n          {\n            \"X\": 0.24892045557498932,\n            \"Y\": 0.8539273142814636\n          },\n          {\n            \"X\": 0.19687896966934204,\n            \"Y\": 0.8538786768913269\n          }\n        ]\n      },\n      \"Id\": \"68f59c9e-bcb8-4c50-b48c-d54ba3e3d4d4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97885131835938,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018377644941210747,\n          \"Height\": 0.007898254320025444,\n          \"Left\": 0.2536567747592926,\n          \"Top\": 0.8458921909332275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2536567747592926,\n            \"Y\": 0.8458921909332275\n          },\n          {\n            \"X\": 0.27203258872032166,\n            \"Y\": 0.8459092974662781\n          },\n          {\n            \"X\": 0.2720344066619873,\n            \"Y\": 0.8537904024124146\n          },\n          {\n            \"X\": 0.2536585330963135,\n            \"Y\": 0.8537732362747192\n          }\n        ]\n      },\n      \"Id\": \"4849b8b4-e60c-4f5f-bd96-c7c7180a7e77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9167709350586,\n      \"Text\": \"issuance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048901401460170746,\n          \"Height\": 0.007904465310275555,\n          \"Left\": 0.2765559256076813,\n          \"Top\": 0.8458253145217896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2765559256076813,\n            \"Y\": 0.8458253145217896\n          },\n          {\n            \"X\": 0.32545527815818787,\n            \"Y\": 0.845870852470398\n          },\n          {\n            \"X\": 0.3254573345184326,\n            \"Y\": 0.853729784488678\n          },\n          {\n            \"X\": 0.2765577733516693,\n            \"Y\": 0.8536840677261353\n          }\n        ]\n      },\n      \"Id\": \"34ef4104-235c-4be9-8b83-ed9f01e5d324\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9466552734375,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011944201774895191,\n          \"Height\": 0.008022996596992016,\n          \"Left\": 0.33004656434059143,\n          \"Top\": 0.8455794453620911\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33004656434059143,\n            \"Y\": 0.8455794453620911\n          },\n          {\n            \"X\": 0.34198862314224243,\n            \"Y\": 0.8455905914306641\n          },\n          {\n            \"X\": 0.34199076890945435,\n            \"Y\": 0.8536024689674377\n          },\n          {\n            \"X\": 0.33004865050315857,\n            \"Y\": 0.8535913228988647\n          }\n        ]\n      },\n      \"Id\": \"5af72ccb-74df-4632-93c0-d1d5b24ed3c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9776840209961,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020713800564408302,\n          \"Height\": 0.008058425039052963,\n          \"Left\": 0.3462789058685303,\n          \"Top\": 0.8472307920455933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3462789058685303,\n            \"Y\": 0.8472307920455933\n          },\n          {\n            \"X\": 0.36699044704437256,\n            \"Y\": 0.8472501039505005\n          },\n          {\n            \"X\": 0.366992712020874,\n            \"Y\": 0.8552892208099365\n          },\n          {\n            \"X\": 0.3462810814380646,\n            \"Y\": 0.8552698493003845\n          }\n        ]\n      },\n      \"Id\": \"964c5365-d043-4d04-8b71-71436d1fedaa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93009185791016,\n      \"Text\": \"guaranty\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050732050091028214,\n          \"Height\": 0.00935318786650896,\n          \"Left\": 0.371086984872818,\n          \"Top\": 0.846208930015564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.371086984872818,\n            \"Y\": 0.846208930015564\n          },\n          {\n            \"X\": 0.4218161702156067,\n            \"Y\": 0.8462561368942261\n          },\n          {\n            \"X\": 0.4218190312385559,\n            \"Y\": 0.8555620908737183\n          },\n          {\n            \"X\": 0.3710896074771881,\n            \"Y\": 0.855514645576477\n          }\n        ]\n      },\n      \"Id\": \"3b3b7c9c-3cae-4c97-97c5-a839b775050b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91185760498047,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012142198160290718,\n          \"Height\": 0.006496730260550976,\n          \"Left\": 0.42603516578674316,\n          \"Top\": 0.847138524055481\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42603516578674316,\n            \"Y\": 0.847138524055481\n          },\n          {\n            \"X\": 0.4381752908229828,\n            \"Y\": 0.8471498489379883\n          },\n          {\n            \"X\": 0.43817734718322754,\n            \"Y\": 0.8536352515220642\n          },\n          {\n            \"X\": 0.4260371923446655,\n            \"Y\": 0.8536238670349121\n          }\n        ]\n      },\n      \"Id\": \"687fcbb5-248d-43f4-9cd5-571efdd62915\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89584350585938,\n      \"Text\": \"insurance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054653555154800415,\n          \"Height\": 0.007922203280031681,\n          \"Left\": 0.44245848059654236,\n          \"Top\": 0.845752477645874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44245848059654236,\n            \"Y\": 0.845752477645874\n          },\n          {\n            \"X\": 0.4971092939376831,\n            \"Y\": 0.8458033800125122\n          },\n          {\n            \"X\": 0.4971120357513428,\n            \"Y\": 0.8536747097969055\n          },\n          {\n            \"X\": 0.4424610137939453,\n            \"Y\": 0.853623628616333\n          }\n        ]\n      },\n      \"Id\": \"a98db3fc-f3ad-434a-bb7a-2c0ec2bdf2c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9501953125,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014318286441266537,\n          \"Height\": 0.009567942470312119,\n          \"Left\": 0.5015318989753723,\n          \"Top\": 0.8456228971481323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5015318989753723,\n            \"Y\": 0.8456228971481323\n          },\n          {\n            \"X\": 0.5158467292785645,\n            \"Y\": 0.8456361889839172\n          },\n          {\n            \"X\": 0.5158501863479614,\n            \"Y\": 0.8551908135414124\n          },\n          {\n            \"X\": 0.5015352368354797,\n            \"Y\": 0.8551774024963379\n          }\n        ]\n      },\n      \"Id\": \"b5f0d782-2c11-4ec3-9f26-d49ead8f9b7c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98652648925781,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018127620220184326,\n          \"Height\": 0.007876538671553135,\n          \"Left\": 0.5204613208770752,\n          \"Top\": 0.8457109332084656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5204613208770752,\n            \"Y\": 0.8457109332084656\n          },\n          {\n            \"X\": 0.5385860204696655,\n            \"Y\": 0.845727801322937\n          },\n          {\n            \"X\": 0.5385889410972595,\n            \"Y\": 0.8535874485969543\n          },\n          {\n            \"X\": 0.5204641819000244,\n            \"Y\": 0.8535705208778381\n          }\n        ]\n      },\n      \"Id\": \"7788644a-009c-4a52-affb-a53a78e4568e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61869812011719,\n      \"Text\": \"VA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018308745697140694,\n          \"Height\": 0.008101573213934898,\n          \"Left\": 0.5431508421897888,\n          \"Top\": 0.8455620408058167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5431508421897888,\n            \"Y\": 0.8455620408058167\n          },\n          {\n            \"X\": 0.5614565014839172,\n            \"Y\": 0.8455790877342224\n          },\n          {\n            \"X\": 0.5614596009254456,\n            \"Y\": 0.8536636233329773\n          },\n          {\n            \"X\": 0.5431538820266724,\n            \"Y\": 0.8536465167999268\n          }\n        ]\n      },\n      \"Id\": \"e3e41dc7-bde9-4da8-a19b-99e22bee2d35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.14559936523438,\n      \"Text\": \"Secretary,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.057750243693590164,\n          \"Height\": 0.009440970607101917,\n          \"Left\": 0.5663026571273804,\n          \"Top\": 0.8456252217292786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5663026571273804,\n            \"Y\": 0.8456252217292786\n          },\n          {\n            \"X\": 0.6240490078926086,\n            \"Y\": 0.845678985118866\n          },\n          {\n            \"X\": 0.624052882194519,\n            \"Y\": 0.855066180229187\n          },\n          {\n            \"X\": 0.5663062334060669,\n            \"Y\": 0.8550121784210205\n          }\n        ]\n      },\n      \"Id\": \"36add95b-0082-4694-9282-d6e3ffc92bcd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9820785522461,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01830606535077095,\n          \"Height\": 0.007761220447719097,\n          \"Left\": 0.6295235753059387,\n          \"Top\": 0.8457651734352112\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6295235753059387,\n            \"Y\": 0.8457651734352112\n          },\n          {\n            \"X\": 0.6478263139724731,\n            \"Y\": 0.8457822203636169\n          },\n          {\n            \"X\": 0.6478296518325806,\n            \"Y\": 0.8535264134407043\n          },\n          {\n            \"X\": 0.6295267939567566,\n            \"Y\": 0.8535093069076538\n          }\n        ]\n      },\n      \"Id\": \"d19f859f-73fb-4538-8873-1ab9ad6f7c58\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.4665298461914,\n      \"Text\": \"U.S.D.A.,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05812472105026245,\n          \"Height\": 0.009250318631529808,\n          \"Left\": 0.6524618864059448,\n          \"Top\": 0.8453136086463928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6524618864059448,\n            \"Y\": 0.8453136086463928\n          },\n          {\n            \"X\": 0.7105823755264282,\n            \"Y\": 0.8453677296638489\n          },\n          {\n            \"X\": 0.7105866074562073,\n            \"Y\": 0.8545639514923096\n          },\n          {\n            \"X\": 0.6524658203125,\n            \"Y\": 0.8545095920562744\n          }\n        ]\n      },\n      \"Id\": \"c164174f-bbd3-45b0-a88d-c78e38abea63\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.52874755859375,\n      \"Text\": \"FmHA/FHA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06916537135839462,\n          \"Height\": 0.008445085026323795,\n          \"Left\": 0.7165756225585938,\n          \"Top\": 0.8452984690666199\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7165756225585938,\n            \"Y\": 0.8452984690666199\n          },\n          {\n            \"X\": 0.7857368588447571,\n            \"Y\": 0.8453628420829773\n          },\n          {\n            \"X\": 0.7857410311698914,\n            \"Y\": 0.8537435531616211\n          },\n          {\n            \"X\": 0.7165794968605042,\n            \"Y\": 0.8536789417266846\n          }\n        ]\n      },\n      \"Id\": \"5e6a16f4-ecee-475a-a15d-8a94bdf26fed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.0621566772461,\n      \"Text\": \"Commissioner,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0831950455904007,\n          \"Height\": 0.009301355108618736,\n          \"Left\": 0.7906336188316345,\n          \"Top\": 0.8453560471534729\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7906336188316345,\n            \"Y\": 0.8453560471534729\n          },\n          {\n            \"X\": 0.8738236427307129,\n            \"Y\": 0.8454334735870361\n          },\n          {\n            \"X\": 0.873828649520874,\n            \"Y\": 0.8546574115753174\n          },\n          {\n            \"X\": 0.7906382083892822,\n            \"Y\": 0.8545796275138855\n          }\n        ]\n      },\n      \"Id\": \"b3bc3dce-faaf-4508-ad41-5b48276513cb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89701843261719,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012151132337749004,\n          \"Height\": 0.006383467465639114,\n          \"Left\": 0.8792563676834106,\n          \"Top\": 0.8470831513404846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8792563676834106,\n            \"Y\": 0.8470831513404846\n          },\n          {\n            \"X\": 0.8914039731025696,\n            \"Y\": 0.8470944762229919\n          },\n          {\n            \"X\": 0.8914074897766113,\n            \"Y\": 0.8534666299819946\n          },\n          {\n            \"X\": 0.8792598843574524,\n            \"Y\": 0.8534552454948425\n          }\n        ]\n      },\n      \"Id\": \"bb8ce1b2-2642-407b-9789-284f0274a1dc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97410583496094,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018219545483589172,\n          \"Height\": 0.007827725261449814,\n          \"Left\": 0.04209265485405922,\n          \"Top\": 0.8561400771141052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04209265485405922,\n            \"Y\": 0.8561400771141052\n          },\n          {\n            \"X\": 0.060311246663331985,\n            \"Y\": 0.856157124042511\n          },\n          {\n            \"X\": 0.06031220033764839,\n            \"Y\": 0.863967776298523\n          },\n          {\n            \"X\": 0.042093534022569656,\n            \"Y\": 0.8639506697654724\n          }\n        ]\n      },\n      \"Id\": \"15bdc226-060d-4c2d-a671-9b9899fb079c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.94606018066406,\n      \"Text\": \"HUD/CPD\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060580525547266006,\n          \"Height\": 0.008493170142173767,\n          \"Left\": 0.06488373875617981,\n          \"Top\": 0.8555864691734314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06488373875617981,\n            \"Y\": 0.8555864691734314\n          },\n          {\n            \"X\": 0.12546294927597046,\n            \"Y\": 0.8556431531906128\n          },\n          {\n            \"X\": 0.12546426057815552,\n            \"Y\": 0.8640796542167664\n          },\n          {\n            \"X\": 0.06488478928804398,\n            \"Y\": 0.8640226721763611\n          }\n        ]\n      },\n      \"Id\": \"2a72670f-d16f-4d85-ade8-b9b0b2f3b134\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68270874023438,\n      \"Text\": \"Assistant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05277938395738602,\n          \"Height\": 0.008031654171645641,\n          \"Left\": 0.12995553016662598,\n          \"Top\": 0.8558564782142639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12995553016662598,\n            \"Y\": 0.8558564782142639\n          },\n          {\n            \"X\": 0.1827334314584732,\n            \"Y\": 0.8559058308601379\n          },\n          {\n            \"X\": 0.1827349066734314,\n            \"Y\": 0.8638880848884583\n          },\n          {\n            \"X\": 0.12995679676532745,\n            \"Y\": 0.8638384938240051\n          }\n        ]\n      },\n      \"Id\": \"958600e5-3ece-48ba-8dc1-f11074dd57ea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.23503112792969,\n      \"Text\": \"Secretary.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05768102407455444,\n          \"Height\": 0.00969741027802229,\n          \"Left\": 0.18728595972061157,\n          \"Top\": 0.8557485938072205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18728595972061157,\n            \"Y\": 0.8557485938072205\n          },\n          {\n            \"X\": 0.24496488273143768,\n            \"Y\": 0.855802595615387\n          },\n          {\n            \"X\": 0.24496698379516602,\n            \"Y\": 0.8654460310935974\n          },\n          {\n            \"X\": 0.18728776276111603,\n            \"Y\": 0.8653917908668518\n          }\n        ]\n      },\n      \"Id\": \"20cb44b1-402e-4b98-b957-5493a22b3867\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67941284179688,\n      \"Text\": \"26.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01499834842979908,\n          \"Height\": 0.007548497058451176,\n          \"Left\": 0.041896846145391464,\n          \"Top\": 0.8740856647491455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041896846145391464,\n            \"Y\": 0.8740856647491455\n          },\n          {\n            \"X\": 0.05689428746700287,\n            \"Y\": 0.874099850654602\n          },\n          {\n            \"X\": 0.056895192712545395,\n            \"Y\": 0.8816341757774353\n          },\n          {\n            \"X\": 0.041897691786289215,\n            \"Y\": 0.8816199898719788\n          }\n        ]\n      },\n      \"Id\": \"b5d96985-5076-4fec-948a-9f46a0508a35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9085693359375,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04800896346569061,\n          \"Height\": 0.009114915505051613,\n          \"Left\": 0.061449479311704636,\n          \"Top\": 0.8740025758743286\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.061449479311704636,\n            \"Y\": 0.8740025758743286\n          },\n          {\n            \"X\": 0.1094571053981781,\n            \"Y\": 0.8740479350090027\n          },\n          {\n            \"X\": 0.10945843905210495,\n            \"Y\": 0.8831174969673157\n          },\n          {\n            \"X\": 0.06145058944821358,\n            \"Y\": 0.8830718994140625\n          }\n        ]\n      },\n      \"Id\": \"e3d663b7-2f9d-4514-afa3-3775330b8bd8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92794799804688,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01082675252109766,\n          \"Height\": 0.007372293621301651,\n          \"Left\": 0.1134294643998146,\n          \"Top\": 0.8741256594657898\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1134294643998146,\n            \"Y\": 0.8741256594657898\n          },\n          {\n            \"X\": 0.12425507605075836,\n            \"Y\": 0.8741359114646912\n          },\n          {\n            \"X\": 0.12425621598958969,\n            \"Y\": 0.8814979791641235\n          },\n          {\n            \"X\": 0.11343056708574295,\n            \"Y\": 0.8814876675605774\n          }\n        ]\n      },\n      \"Id\": \"7b8cc17a-0b87-4f99-ab54-3b7aa0aeef39\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80335235595703,\n      \"Text\": \"Employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046182189136743546,\n          \"Height\": 0.008919124491512775,\n          \"Left\": 0.12811735272407532,\n          \"Top\": 0.8740834593772888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12811735272407532,\n            \"Y\": 0.8740834593772888\n          },\n          {\n            \"X\": 0.17429794371128082,\n            \"Y\": 0.8741270899772644\n          },\n          {\n            \"X\": 0.17429953813552856,\n            \"Y\": 0.8830025792121887\n          },\n          {\n            \"X\": 0.12811875343322754,\n            \"Y\": 0.8829587697982788\n          }\n        ]\n      },\n      \"Id\": \"0853aacd-79ea-4119-bb16-ae5321868dc7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.82819366455078,\n      \"Text\": \"27.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015410684049129486,\n          \"Height\": 0.007590249180793762,\n          \"Left\": 0.4122235178947449,\n          \"Top\": 0.8738520741462708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4122235178947449,\n            \"Y\": 0.8738520741462708\n          },\n          {\n            \"X\": 0.42763182520866394,\n            \"Y\": 0.873866617679596\n          },\n          {\n            \"X\": 0.42763420939445496,\n            \"Y\": 0.8814423084259033\n          },\n          {\n            \"X\": 0.4122258126735687,\n            \"Y\": 0.8814277052879333\n          }\n        ]\n      },\n      \"Id\": \"9bcf87f1-e1fc-4b2a-a25a-d085832375e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91744995117188,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022335544228553772,\n          \"Height\": 0.007514982018619776,\n          \"Left\": 0.4322289526462555,\n          \"Top\": 0.8738975524902344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4322289526462555,\n            \"Y\": 0.8738975524902344\n          },\n          {\n            \"X\": 0.45456206798553467,\n            \"Y\": 0.8739186525344849\n          },\n          {\n            \"X\": 0.45456451177597046,\n            \"Y\": 0.8814125061035156\n          },\n          {\n            \"X\": 0.4322313368320465,\n            \"Y\": 0.8813913464546204\n          }\n        ]\n      },\n      \"Id\": \"5ce18b2e-139d-453f-88a1-a48ac20567b7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78816986083984,\n      \"Text\": \"(Please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035306937992572784,\n          \"Height\": 0.008441661484539509,\n          \"Left\": 0.4581834077835083,\n          \"Top\": 0.8740103244781494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4581834077835083,\n            \"Y\": 0.8740103244781494\n          },\n          {\n            \"X\": 0.4934874475002289,\n            \"Y\": 0.8740436434745789\n          },\n          {\n            \"X\": 0.4934903681278229,\n            \"Y\": 0.8824520111083984\n          },\n          {\n            \"X\": 0.45818617939949036,\n            \"Y\": 0.8824185132980347\n          }\n        ]\n      },\n      \"Id\": \"18bae4ad-4563-450d-a205-39d9222d10d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88229370117188,\n      \"Text\": \"print\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023394163697957993,\n          \"Height\": 0.008755394257605076,\n          \"Left\": 0.4977608919143677,\n          \"Top\": 0.8742165565490723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4977608919143677,\n            \"Y\": 0.8742165565490723\n          },\n          {\n            \"X\": 0.5211519002914429,\n            \"Y\": 0.8742386698722839\n          },\n          {\n            \"X\": 0.521155059337616,\n            \"Y\": 0.8829719424247742\n          },\n          {\n            \"X\": 0.4977639317512512,\n            \"Y\": 0.8829497694969177\n          }\n        ]\n      },\n      \"Id\": \"5520c052-a001-4ca9-a718-b501cacd9099\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77708435058594,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011087412014603615,\n          \"Height\": 0.005916422698646784,\n          \"Left\": 0.5249174237251282,\n          \"Top\": 0.8756063580513\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5249174237251282,\n            \"Y\": 0.8756063580513\n          },\n          {\n            \"X\": 0.5360026359558105,\n            \"Y\": 0.8756167888641357\n          },\n          {\n            \"X\": 0.5360048413276672,\n            \"Y\": 0.8815227746963501\n          },\n          {\n            \"X\": 0.5249195694923401,\n            \"Y\": 0.8815122246742249\n          }\n        ]\n      },\n      \"Id\": \"0930badd-2a80-46b7-9a4e-88b942e79fa0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60599517822266,\n      \"Text\": \"type)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02527916617691517,\n          \"Height\": 0.008736899122595787,\n          \"Left\": 0.5393269062042236,\n          \"Top\": 0.874123752117157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5393269062042236,\n            \"Y\": 0.874123752117157\n          },\n          {\n            \"X\": 0.5646027326583862,\n            \"Y\": 0.8741475939750671\n          },\n          {\n            \"X\": 0.5646060705184937,\n            \"Y\": 0.8828606009483337\n          },\n          {\n            \"X\": 0.5393301248550415,\n            \"Y\": 0.882836639881134\n          }\n        ]\n      },\n      \"Id\": \"3015d778-4497-463d-a745-574c860557e4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.8885269165039,\n      \"Text\": \"28.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014870538376271725,\n          \"Height\": 0.00763201666995883,\n          \"Left\": 0.7844640016555786,\n          \"Top\": 0.8736807703971863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7844640016555786,\n            \"Y\": 0.8736807703971863\n          },\n          {\n            \"X\": 0.7993307113647461,\n            \"Y\": 0.8736948370933533\n          },\n          {\n            \"X\": 0.7993345260620117,\n            \"Y\": 0.8813127875328064\n          },\n          {\n            \"X\": 0.7844678163528442,\n            \"Y\": 0.8812987208366394\n          }\n        ]\n      },\n      \"Id\": \"fab05d7b-ff74-41c9-ab39-ac739c329770\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.35577392578125,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023414991796016693,\n          \"Height\": 0.007301663979887962,\n          \"Left\": 0.8042594790458679,\n          \"Top\": 0.8738949298858643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8042594790458679,\n            \"Y\": 0.8738949298858643\n          },\n          {\n            \"X\": 0.827670693397522,\n            \"Y\": 0.8739170432090759\n          },\n          {\n            \"X\": 0.8276744484901428,\n            \"Y\": 0.8811966180801392\n          },\n          {\n            \"X\": 0.804263174533844,\n            \"Y\": 0.8811744451522827\n          }\n        ]\n      },\n      \"Id\": \"e9c51c39-ef1a-459c-ad1a-166e3b18742c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.7597885131836,\n      \"Text\": \"Richard\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10360649973154068,\n          \"Height\": 0.017518792301416397,\n          \"Left\": 0.11440733820199966,\n          \"Top\": 0.8894680142402649\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11440733820199966,\n            \"Y\": 0.8894680142402649\n          },\n          {\n            \"X\": 0.2180102914571762,\n            \"Y\": 0.8895667195320129\n          },\n          {\n            \"X\": 0.21801383793354034,\n            \"Y\": 0.9069868326187134\n          },\n          {\n            \"X\": 0.11440995335578918,\n            \"Y\": 0.9068872928619385\n          }\n        ]\n      },\n      \"Id\": \"fee14e57-7908-444c-bf0b-954a93b77149\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.63691711425781,\n      \"Text\": \"Roe\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0414816178381443,\n          \"Height\": 0.01633753441274166,\n          \"Left\": 0.2199249267578125,\n          \"Top\": 0.890628457069397\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2199249267578125,\n            \"Y\": 0.890628457069397\n          },\n          {\n            \"X\": 0.26140284538269043,\n            \"Y\": 0.8906679749488831\n          },\n          {\n            \"X\": 0.2614065408706665,\n            \"Y\": 0.9069660305976868\n          },\n          {\n            \"X\": 0.21992824971675873,\n            \"Y\": 0.906926155090332\n          }\n        ]\n      },\n      \"Id\": \"b5a90fab-dfac-4fa8-a011-1534078da896\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74188232421875,\n      \"Text\": \"VA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022521348670125008,\n          \"Height\": 0.010145463980734348,\n          \"Left\": 0.4922941327095032,\n          \"Top\": 0.893255889415741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4922941327095032,\n            \"Y\": 0.893255889415741\n          },\n          {\n            \"X\": 0.5148118734359741,\n            \"Y\": 0.8932773470878601\n          },\n          {\n            \"X\": 0.5148155093193054,\n            \"Y\": 0.9034013748168945\n          },\n          {\n            \"X\": 0.4922976493835449,\n            \"Y\": 0.9033797383308411\n          }\n        ]\n      },\n      \"Id\": \"0a44355c-20c7-44fb-a687-efc50967576c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87667846679688,\n      \"Text\": \"Secretary\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06985121220350266,\n          \"Height\": 0.012531459331512451,\n          \"Left\": 0.5192244052886963,\n          \"Top\": 0.8933368921279907\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5192244052886963,\n            \"Y\": 0.8933368921279907\n          },\n          {\n            \"X\": 0.5890706777572632,\n            \"Y\": 0.8934035301208496\n          },\n          {\n            \"X\": 0.5890756249427795,\n            \"Y\": 0.9058683514595032\n          },\n          {\n            \"X\": 0.5192288756370544,\n            \"Y\": 0.9058012962341309\n          }\n        ]\n      },\n      \"Id\": \"f2194801-89ae-4e48-9680-37575ea9e372\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92369079589844,\n      \"Text\": \"01/05/2007\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08143826574087143,\n          \"Height\": 0.010242764838039875,\n          \"Left\": 0.8066563010215759,\n          \"Top\": 0.9043887257575989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8066563010215759,\n            \"Y\": 0.9043887257575989\n          },\n          {\n            \"X\": 0.8880889415740967,\n            \"Y\": 0.9044668674468994\n          },\n          {\n            \"X\": 0.8880945444107056,\n            \"Y\": 0.9146314859390259\n          },\n          {\n            \"X\": 0.8066614866256714,\n            \"Y\": 0.9145529866218567\n          }\n        ]\n      },\n      \"Id\": \"408235f1-1cb3-4e18-9a84-d38adb23deaf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.53521728515625,\n      \"Text\": \"29.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014626199379563332,\n          \"Height\": 0.0075629218481481075,\n          \"Left\": 0.041910797357559204,\n          \"Top\": 0.9197514653205872\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041910797357559204,\n            \"Y\": 0.9197514653205872\n          },\n          {\n            \"X\": 0.05653608962893486,\n            \"Y\": 0.9197655916213989\n          },\n          {\n            \"X\": 0.056536998599767685,\n            \"Y\": 0.9273144006729126\n          },\n          {\n            \"X\": 0.04191164672374725,\n            \"Y\": 0.927300214767456\n          }\n        ]\n      },\n      \"Id\": \"f1206875-43ca-4513-9c2f-11ae7daf6512\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95504760742188,\n      \"Text\": \"Print\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023682156577706337,\n          \"Height\": 0.0075101787224411964,\n          \"Left\": 0.061732660979032516,\n          \"Top\": 0.9197387099266052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.061732660979032516,\n            \"Y\": 0.9197387099266052\n          },\n          {\n            \"X\": 0.08541380614042282,\n            \"Y\": 0.919761598110199\n          },\n          {\n            \"X\": 0.085414819419384,\n            \"Y\": 0.9272488951683044\n          },\n          {\n            \"X\": 0.06173357740044594,\n            \"Y\": 0.9272258877754211\n          }\n        ]\n      },\n      \"Id\": \"efecab62-ddae-4e93-b831-50491927ff30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71202087402344,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010851021856069565,\n          \"Height\": 0.005646965932101011,\n          \"Left\": 0.08876898139715195,\n          \"Top\": 0.9213683605194092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08876898139715195,\n            \"Y\": 0.9213683605194092\n          },\n          {\n            \"X\": 0.09961920231580734,\n            \"Y\": 0.9213788509368896\n          },\n          {\n            \"X\": 0.09961999952793121,\n            \"Y\": 0.9270153641700745\n          },\n          {\n            \"X\": 0.08876974880695343,\n            \"Y\": 0.9270048141479492\n          }\n        ]\n      },\n      \"Id\": \"721cc4bb-2f4e-418c-badf-5467d9129a47\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.75415802001953,\n      \"Text\": \"type\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021945388987660408,\n          \"Height\": 0.006814597174525261,\n          \"Left\": 0.10305128991603851,\n          \"Top\": 0.9203857183456421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10305128991603851,\n            \"Y\": 0.9203857183456421\n          },\n          {\n            \"X\": 0.12499561905860901,\n            \"Y\": 0.9204069972038269\n          },\n          {\n            \"X\": 0.12499667704105377,\n            \"Y\": 0.9272003173828125\n          },\n          {\n            \"X\": 0.10305226594209671,\n            \"Y\": 0.9271790385246277\n          }\n        ]\n      },\n      \"Id\": \"886f466b-6602-4887-abc8-2f031e2b4d7d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95524597167969,\n      \"Text\": \"name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02757054567337036,\n          \"Height\": 0.00578122166916728,\n          \"Left\": 0.12881161272525787,\n          \"Top\": 0.9214540719985962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12881161272525787,\n            \"Y\": 0.9214540719985962\n          },\n          {\n            \"X\": 0.15638116002082825,\n            \"Y\": 0.9214807748794556\n          },\n          {\n            \"X\": 0.15638215839862823,\n            \"Y\": 0.9272353053092957\n          },\n          {\n            \"X\": 0.1288125216960907,\n            \"Y\": 0.9272085428237915\n          }\n        ]\n      },\n      \"Id\": \"0af5ac15-69a2-4c0a-9d37-aacda56e3bf1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96148681640625,\n      \"Text\": \"signed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033136192709207535,\n          \"Height\": 0.0075499434024095535,\n          \"Left\": 0.15974904596805573,\n          \"Top\": 0.9197576642036438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15974904596805573,\n            \"Y\": 0.9197576642036438\n          },\n          {\n            \"X\": 0.19288380444049835,\n            \"Y\": 0.919789731502533\n          },\n          {\n            \"X\": 0.19288524985313416,\n            \"Y\": 0.9273076057434082\n          },\n          {\n            \"X\": 0.15975035727024078,\n            \"Y\": 0.9272754788398743\n          }\n        ]\n      },\n      \"Id\": \"b6cc034f-44be-4d2b-ae75-0fa85c34a1c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91434478759766,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008924717083573341,\n          \"Height\": 0.007238985970616341,\n          \"Left\": 0.19681715965270996,\n          \"Top\": 0.9197404980659485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19681715965270996,\n            \"Y\": 0.9197404980659485\n          },\n          {\n            \"X\": 0.20574045181274414,\n            \"Y\": 0.9197491407394409\n          },\n          {\n            \"X\": 0.20574186742305756,\n            \"Y\": 0.9269794821739197\n          },\n          {\n            \"X\": 0.196818545460701,\n            \"Y\": 0.9269708395004272\n          }\n        ]\n      },\n      \"Id\": \"ffc4a2b1-71b3-422f-a725-6ec008c2afeb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62126922607422,\n      \"Text\": \"Item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022366348654031754,\n          \"Height\": 0.0074052875861525536,\n          \"Left\": 0.2099822461605072,\n          \"Top\": 0.9197683930397034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2099822461605072,\n            \"Y\": 0.9197683930397034\n          },\n          {\n            \"X\": 0.2323470264673233,\n            \"Y\": 0.9197899699211121\n          },\n          {\n            \"X\": 0.23234859108924866,\n            \"Y\": 0.9271736741065979\n          },\n          {\n            \"X\": 0.2099837213754654,\n            \"Y\": 0.9271519780158997\n          }\n        ]\n      },\n      \"Id\": \"58c05415-7ae0-4545-8fdc-7aedf3eefee4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8357162475586,\n      \"Text\": \"26\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01241219136863947,\n          \"Height\": 0.007582668215036392,\n          \"Left\": 0.23597194254398346,\n          \"Top\": 0.9196015000343323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23597194254398346,\n            \"Y\": 0.9196015000343323\n          },\n          {\n            \"X\": 0.24838246405124664,\n            \"Y\": 0.9196134805679321\n          },\n          {\n            \"X\": 0.24838413298130035,\n            \"Y\": 0.9271841645240784\n          },\n          {\n            \"X\": 0.2359735518693924,\n            \"Y\": 0.9271721243858337\n          }\n        ]\n      },\n      \"Id\": \"a4f6d5f8-3463-4ce0-800a-b626a1d80366\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72691345214844,\n      \"Text\": \"30.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014970555901527405,\n          \"Height\": 0.007484243717044592,\n          \"Left\": 0.41246843338012695,\n          \"Top\": 0.9195534586906433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41246843338012695,\n            \"Y\": 0.9195534586906433\n          },\n          {\n            \"X\": 0.4274366497993469,\n            \"Y\": 0.9195679426193237\n          },\n          {\n            \"X\": 0.42743897438049316,\n            \"Y\": 0.9270377159118652\n          },\n          {\n            \"X\": 0.4124706983566284,\n            \"Y\": 0.92702317237854\n          }\n        ]\n      },\n      \"Id\": \"f6f51204-8f71-46de-b561-06b57c690e0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8712387084961,\n      \"Text\": \"Phone\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03224574029445648,\n          \"Height\": 0.007563428021967411,\n          \"Left\": 0.4322091042995453,\n          \"Top\": 0.9195137023925781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4322091042995453,\n            \"Y\": 0.9195137023925781\n          },\n          {\n            \"X\": 0.4644523561000824,\n            \"Y\": 0.9195448756217957\n          },\n          {\n            \"X\": 0.46445485949516296,\n            \"Y\": 0.9270771741867065\n          },\n          {\n            \"X\": 0.4322114884853363,\n            \"Y\": 0.9270458817481995\n          }\n        ]\n      },\n      \"Id\": \"ecc64f31-8f74-4b68-91a8-2a79d0dda5f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79328918457031,\n      \"Text\": \"No.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017392443493008614,\n          \"Height\": 0.0075074187479913235,\n          \"Left\": 0.4687681794166565,\n          \"Top\": 0.9196091890335083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4687681794166565,\n            \"Y\": 0.9196091890335083\n          },\n          {\n            \"X\": 0.4861580431461334,\n            \"Y\": 0.919625997543335\n          },\n          {\n            \"X\": 0.48616060614585876,\n            \"Y\": 0.9271166324615479\n          },\n          {\n            \"X\": 0.46877068281173706,\n            \"Y\": 0.9270997643470764\n          }\n        ]\n      },\n      \"Id\": \"d135039d-6f4f-495c-9cd7-5ffec18f2796\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91429138183594,\n      \"Text\": \"Richard\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06601285934448242,\n          \"Height\": 0.011954491026699543,\n          \"Left\": 0.09305371344089508,\n          \"Top\": 0.9326642155647278\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09305371344089508,\n            \"Y\": 0.9326642155647278\n          },\n          {\n            \"X\": 0.15906451642513275,\n            \"Y\": 0.9327284097671509\n          },\n          {\n            \"X\": 0.1590665727853775,\n            \"Y\": 0.9446187019348145\n          },\n          {\n            \"X\": 0.0930553674697876,\n            \"Y\": 0.9445540308952332\n          }\n        ]\n      },\n      \"Id\": \"746e83ad-4068-42ad-be68-df1a96e2c72a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92704772949219,\n      \"Text\": \"Roe\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034919872879981995,\n          \"Height\": 0.0118795707821846,\n          \"Left\": 0.16604329645633698,\n          \"Top\": 0.9328585863113403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16604329645633698,\n            \"Y\": 0.9328585863113403\n          },\n          {\n            \"X\": 0.20096085965633392,\n            \"Y\": 0.9328926205635071\n          },\n          {\n            \"X\": 0.20096316933631897,\n            \"Y\": 0.9447382092475891\n          },\n          {\n            \"X\": 0.1660453975200653,\n            \"Y\": 0.944703996181488\n          }\n        ]\n      },\n      \"Id\": \"8955777a-c516-41d2-a970-d9414c31ecb9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94706726074219,\n      \"Text\": \"555-0100\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08218909054994583,\n          \"Height\": 0.012083507142961025,\n          \"Left\": 0.4991433620452881,\n          \"Top\": 0.9280499815940857\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4991433620452881,\n            \"Y\": 0.9280499815940857\n          },\n          {\n            \"X\": 0.5813277363777161,\n            \"Y\": 0.9281297922134399\n          },\n          {\n            \"X\": 0.5813324451446533,\n            \"Y\": 0.9401335120201111\n          },\n          {\n            \"X\": 0.49914756417274475,\n            \"Y\": 0.9400532245635986\n          }\n        ]\n      },\n      \"Id\": \"4c8ad6b6-4cb1-4b43-a872-765b2268f95f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92826080322266,\n      \"Text\": \"Form\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03017173334956169,\n          \"Height\": 0.008596409112215042,\n          \"Left\": 0.7827813029289246,\n          \"Top\": 0.964211106300354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7827813029289246,\n            \"Y\": 0.964211106300354\n          },\n          {\n            \"X\": 0.8129486441612244,\n            \"Y\": 0.9642409086227417\n          },\n          {\n            \"X\": 0.8129530549049377,\n            \"Y\": 0.9728075265884399\n          },\n          {\n            \"X\": 0.7827855348587036,\n            \"Y\": 0.9727775454521179\n          }\n        ]\n      },\n      \"Id\": \"75f80019-1503-486a-89e6-a3caf7b4fe5b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82730102539062,\n      \"Text\": \"1005\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02974294312298298,\n          \"Height\": 0.008711242116987705,\n          \"Left\": 0.8199130296707153,\n          \"Top\": 0.9640041589736938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8199130296707153,\n            \"Y\": 0.9640041589736938\n          },\n          {\n            \"X\": 0.8496513962745667,\n            \"Y\": 0.9640335440635681\n          },\n          {\n            \"X\": 0.8496559858322144,\n            \"Y\": 0.9727153778076172\n          },\n          {\n            \"X\": 0.8199175000190735,\n            \"Y\": 0.9726858735084534\n          }\n        ]\n      },\n      \"Id\": \"38254b9c-eb3f-49fe-8f64-181b28f611d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8251953125,\n      \"Text\": \"July\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024964485317468643,\n          \"Height\": 0.009802275337278843,\n          \"Left\": 0.8746932148933411,\n          \"Top\": 0.9644507169723511\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8746932148933411,\n            \"Y\": 0.9644507169723511\n          },\n          {\n            \"X\": 0.8996522426605225,\n            \"Y\": 0.9644753932952881\n          },\n          {\n            \"X\": 0.899657666683197,\n            \"Y\": 0.9742529988288879\n          },\n          {\n            \"X\": 0.8746985197067261,\n            \"Y\": 0.9742282032966614\n          }\n        ]\n      },\n      \"Id\": \"dee4c3a2-7587-45df-b8d1-a20ab450452b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82334899902344,\n      \"Text\": \"96\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015765473246574402,\n          \"Height\": 0.008390541188418865,\n          \"Left\": 0.9041244387626648,\n          \"Top\": 0.9643230438232422\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9041244387626648,\n            \"Y\": 0.9643230438232422\n          },\n          {\n            \"X\": 0.9198851585388184,\n            \"Y\": 0.9643386006355286\n          },\n          {\n            \"X\": 0.9198899269104004,\n            \"Y\": 0.9727135896682739\n          },\n          {\n            \"X\": 0.904129147529602,\n            \"Y\": 0.972697913646698\n          }\n        ]\n      },\n      \"Id\": \"77306330-76c9-4f12-bcc6-df90a1d775d7\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.94603729248047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01014259085059166,\n          \"Height\": 0.007926258258521557,\n          \"Left\": 0.16034142673015594,\n          \"Top\": 0.48604175448417664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16034142673015594,\n            \"Y\": 0.48604175448417664\n          },\n          {\n            \"X\": 0.1704826056957245,\n            \"Y\": 0.4860494136810303\n          },\n          {\n            \"X\": 0.1704840213060379,\n            \"Y\": 0.49396800994873047\n          },\n          {\n            \"X\": 0.16034281253814697,\n            \"Y\": 0.49396029114723206\n          }\n        ]\n      },\n      \"Id\": \"9840b3f8-09dc-49ee-a889-44026f51706e\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.92330169677734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01052013784646988,\n          \"Height\": 0.007961149327456951,\n          \"Left\": 0.16010682284832,\n          \"Top\": 0.5002750158309937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16010682284832,\n            \"Y\": 0.5002750158309937\n          },\n          {\n            \"X\": 0.17062553763389587,\n            \"Y\": 0.5002830624580383\n          },\n          {\n            \"X\": 0.17062696814537048,\n            \"Y\": 0.5082361698150635\n          },\n          {\n            \"X\": 0.16010820865631104,\n            \"Y\": 0.508228063583374\n          }\n        ]\n      },\n      \"Id\": \"708a381e-4549-4ed2-96ab-e5aebcdea0ac\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.92205810546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010036391206085682,\n          \"Height\": 0.00836455449461937,\n          \"Left\": 0.2581954896450043,\n          \"Top\": 0.48546552658081055\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2581954896450043,\n            \"Y\": 0.48546552658081055\n          },\n          {\n            \"X\": 0.26822996139526367,\n            \"Y\": 0.4854731261730194\n          },\n          {\n            \"X\": 0.26823189854621887,\n            \"Y\": 0.4938300848007202\n          },\n          {\n            \"X\": 0.2581973671913147,\n            \"Y\": 0.49382245540618896\n          }\n        ]\n      },\n      \"Id\": \"944ede5d-f9c1-4c71-a04e-be65710a3e4f\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.85347747802734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010272989049553871,\n          \"Height\": 0.008126591332256794,\n          \"Left\": 0.25796324014663696,\n          \"Top\": 0.4707092344760895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25796324014663696,\n            \"Y\": 0.4707092344760895\n          },\n          {\n            \"X\": 0.26823434233665466,\n            \"Y\": 0.4707169234752655\n          },\n          {\n            \"X\": 0.2682362198829651,\n            \"Y\": 0.4788358211517334\n          },\n          {\n            \"X\": 0.2579650580883026,\n            \"Y\": 0.4788280725479126\n          }\n        ]\n      },\n      \"Id\": \"5efb015f-7081-41ee-b9a3-18758dafdd04\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.72980499267578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010702580213546753,\n          \"Height\": 0.007841410115361214,\n          \"Left\": 0.8663580417633057,\n          \"Top\": 0.49695855379104614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8663580417633057,\n            \"Y\": 0.49695855379104614\n          },\n          {\n            \"X\": 0.877056360244751,\n            \"Y\": 0.49696671962738037\n          },\n          {\n            \"X\": 0.87706059217453,\n            \"Y\": 0.5047999620437622\n          },\n          {\n            \"X\": 0.8663622736930847,\n            \"Y\": 0.504791796207428\n          }\n        ]\n      },\n      \"Id\": \"639c02d7-f2e8-499b-a80f-086302286cc5\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.66522216796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010536562651395798,\n          \"Height\": 0.007844231091439724,\n          \"Left\": 0.8065852522850037,\n          \"Top\": 0.49668893218040466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8065852522850037,\n            \"Y\": 0.49668893218040466\n          },\n          {\n            \"X\": 0.8171177506446838,\n            \"Y\": 0.49669694900512695\n          },\n          {\n            \"X\": 0.8171218037605286,\n            \"Y\": 0.5045331716537476\n          },\n          {\n            \"X\": 0.8065892457962036,\n            \"Y\": 0.5045251250267029\n          }\n        ]\n      },\n      \"Id\": \"7aeb520d-2ee2-49ff-b30f-40703ce43f0b\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.60086059570312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010103595443069935,\n          \"Height\": 0.007818397134542465,\n          \"Left\": 0.8666585087776184,\n          \"Top\": 0.48560765385627747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8666585087776184,\n            \"Y\": 0.48560765385627747\n          },\n          {\n            \"X\": 0.8767578601837158,\n            \"Y\": 0.4856152832508087\n          },\n          {\n            \"X\": 0.8767621517181396,\n            \"Y\": 0.49342605471611023\n          },\n          {\n            \"X\": 0.8666627407073975,\n            \"Y\": 0.4934183657169342\n          }\n        ]\n      },\n      \"Id\": \"d29a6f0f-e2e0-4b41-baa7-e91c25ec75b2\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.20040893554688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01004130207002163,\n          \"Height\": 0.007505164016038179,\n          \"Left\": 0.8071656823158264,\n          \"Top\": 0.48634248971939087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8071656823158264,\n            \"Y\": 0.48634248971939087\n          },\n          {\n            \"X\": 0.817203164100647,\n            \"Y\": 0.48635008931159973\n          },\n          {\n            \"X\": 0.8172069787979126,\n            \"Y\": 0.49384763836860657\n          },\n          {\n            \"X\": 0.807169497013092,\n            \"Y\": 0.4938400089740753\n          }\n        ]\n      },\n      \"Id\": \"2ce53ad4-4d98-425f-8646-e5a5a219fb05\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 98.34265899658203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009635348804295063,\n          \"Height\": 0.008021056652069092,\n          \"Left\": 0.1606234759092331,\n          \"Top\": 0.4704858362674713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1606234759092331,\n            \"Y\": 0.4704858362674713\n          },\n          {\n            \"X\": 0.17025738954544067,\n            \"Y\": 0.47049304842948914\n          },\n          {\n            \"X\": 0.17025883495807648,\n            \"Y\": 0.4785068929195404\n          },\n          {\n            \"X\": 0.16062487661838531,\n            \"Y\": 0.4784996211528778\n          }\n        ]\n      },\n      \"Id\": \"0faee65d-6f40-41f6-aa60-42c39decffdc\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 72.509765625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1482517570257187,\n          \"Height\": 0.2426939308643341,\n          \"Left\": 0.5390980243682861,\n          \"Top\": 0.45235636830329895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5390980243682861,\n            \"Y\": 0.45235636830329895\n          },\n          {\n            \"X\": 0.6872413158416748,\n            \"Y\": 0.4524659812450409\n          },\n          {\n            \"X\": 0.6873497366905212,\n            \"Y\": 0.6950502991676331\n          },\n          {\n            \"X\": 0.5391877889633179,\n            \"Y\": 0.6949232220649719\n          }\n        ]\n      },\n      \"Id\": \"9b21564e-113b-4d55-8cf0-507766ad02d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ed591ad7-1d4b-4742-89e9-7a114d2c9214\",\n            \"96ad5613-dc16-42e2-a9a9-7a60a5a4c5bf\",\n            \"14546ee6-7a38-4b22-8d59-39c089e1b34c\",\n            \"72f3a39e-c269-4d0c-83a2-19a9af6ae0a4\",\n            \"0863961b-c74a-4b9c-ac45-316ce4474024\",\n            \"d1225bb4-9130-4253-9be8-e370972797d8\",\n            \"8dcd8a3a-d30f-453d-8f22-415c1c80e6fb\",\n            \"b283c4fd-9799-4ae7-b50a-41671be53a81\",\n            \"b4781e9e-9785-44d7-b532-baf902ef34b3\",\n            \"c97bddb5-3b84-4280-8edf-fd053ef12285\",\n            \"cdd2fd45-ec5c-4850-893a-bf7d28990d42\",\n            \"b8b5b347-e7dc-4867-a82e-c8b1c720ce6b\",\n            \"089675c3-058f-485f-8885-77701646231f\",\n            \"6c8049de-651a-49b3-af1a-843c8ed0b81a\",\n            \"d7fcada8-6c6e-4942-b59b-7fd1b8764e66\",\n            \"35760f1d-e6d5-428c-abc6-35d81bbbb6ee\",\n            \"3c7e5382-5aab-4750-bbd5-9f9d30f4914b\",\n            \"34f98dce-cd64-4398-9e3b-dd25e3502944\",\n            \"92764aaf-5dd5-48a3-93cb-0e0a3b9d4302\",\n            \"8386f1a1-f69d-4bde-9ce1-3c83433ed1a0\",\n            \"27990b93-dd52-4f3d-8c49-63e38bcad4d6\",\n            \"f328daab-6631-4fd4-b850-c39361d98bce\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"b154546a-7d80-4257-ade0-ffe6443f3230\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.8828125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019451281055808067,\n          \"Height\": 0.014696952886879444,\n          \"Left\": 0.5390980243682861,\n          \"Top\": 0.45246970653533936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5390980243682861,\n            \"Y\": 0.45246970653533936\n          },\n          {\n            \"X\": 0.5585437417030334,\n            \"Y\": 0.4524841010570526\n          },\n          {\n            \"X\": 0.5585493445396423,\n            \"Y\": 0.4671666622161865\n          },\n          {\n            \"X\": 0.5391034483909607,\n            \"Y\": 0.4671521484851837\n          }\n        ]\n      },\n      \"Id\": \"ed591ad7-1d4b-4742-89e9-7a114d2c9214\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.8828125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12878955900669098,\n          \"Height\": 0.01477878913283348,\n          \"Left\": 0.5585437417030334,\n          \"Top\": 0.4524841010570526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585437417030334,\n            \"Y\": 0.4524841010570526\n          },\n          {\n            \"X\": 0.6873267292976379,\n            \"Y\": 0.45257940888404846\n          },\n          {\n            \"X\": 0.6873332858085632,\n            \"Y\": 0.4672628939151764\n          },\n          {\n            \"X\": 0.5585493445396423,\n            \"Y\": 0.4671666622161865\n          }\n        ]\n      },\n      \"Id\": \"96ad5613-dc16-42e2-a9a9-7a60a5a4c5bf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"06ad8d2b-8f84-4d23-9c7a-6ee362d8dde5\",\n            \"b992eb4d-86a0-43cf-89e8-b0998cdca84d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.814453125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019451556727290154,\n          \"Height\": 0.015031017363071442,\n          \"Left\": 0.5391034483909607,\n          \"Top\": 0.4671521484851837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391034483909607,\n            \"Y\": 0.4671521484851837\n          },\n          {\n            \"X\": 0.5585493445396423,\n            \"Y\": 0.4671666622161865\n          },\n          {\n            \"X\": 0.558555006980896,\n            \"Y\": 0.48218315839767456\n          },\n          {\n            \"X\": 0.5391090512275696,\n            \"Y\": 0.4821684956550598\n          }\n        ]\n      },\n      \"Id\": \"14546ee6-7a38-4b22-8d59-39c089e1b34c\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.521484375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12870532274246216,\n          \"Height\": 0.015113589353859425,\n          \"Left\": 0.5585493445396423,\n          \"Top\": 0.4671666622161865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585493445396423,\n            \"Y\": 0.4671666622161865\n          },\n          {\n            \"X\": 0.6872479319572449,\n            \"Y\": 0.4672628343105316\n          },\n          {\n            \"X\": 0.6872546672821045,\n            \"Y\": 0.48228025436401367\n          },\n          {\n            \"X\": 0.558555006980896,\n            \"Y\": 0.48218315839767456\n          }\n        ]\n      },\n      \"Id\": \"72f3a39e-c269-4d0c-83a2-19a9af6ae0a4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d3465808-1142-48fc-bdf5-c56c3a9c1bc9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.578125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01945170760154724,\n          \"Height\": 0.015031392686069012,\n          \"Left\": 0.5391090512275696,\n          \"Top\": 0.4821684956550598\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391090512275696,\n            \"Y\": 0.4821684956550598\n          },\n          {\n            \"X\": 0.558555006980896,\n            \"Y\": 0.48218315839767456\n          },\n          {\n            \"X\": 0.5585607290267944,\n            \"Y\": 0.4971998631954193\n          },\n          {\n            \"X\": 0.5391145944595337,\n            \"Y\": 0.4971850514411926\n          }\n        ]\n      },\n      \"Id\": \"0863961b-c74a-4b9c-ac45-316ce4474024\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.236328125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12870632112026215,\n          \"Height\": 0.015114761888980865,\n          \"Left\": 0.558555006980896,\n          \"Top\": 0.48218315839767456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.558555006980896,\n            \"Y\": 0.48218315839767456\n          },\n          {\n            \"X\": 0.6872546672821045,\n            \"Y\": 0.48228025436401367\n          },\n          {\n            \"X\": 0.6872613430023193,\n            \"Y\": 0.49729791283607483\n          },\n          {\n            \"X\": 0.5585607290267944,\n            \"Y\": 0.4971998631954193\n          }\n        ]\n      },\n      \"Id\": \"d1225bb4-9130-4253-9be8-e370972797d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"964d6a85-3e94-43e7-8f73-03afcade4092\",\n            \"5596b141-98e4-4b46-b806-a8d61e8473a3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 97.0703125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019457697868347168,\n          \"Height\": 0.0303826741874218,\n          \"Left\": 0.5391145944595337,\n          \"Top\": 0.4971850514411926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391145944595337,\n            \"Y\": 0.4971850514411926\n          },\n          {\n            \"X\": 0.5585607290267944,\n            \"Y\": 0.4971998631954193\n          },\n          {\n            \"X\": 0.5585722923278809,\n            \"Y\": 0.5275677442550659\n          },\n          {\n            \"X\": 0.5391258597373962,\n            \"Y\": 0.5275526642799377\n          }\n        ]\n      },\n      \"Id\": \"8dcd8a3a-d30f-453d-8f22-415c1c80e6fb\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 97.412109375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1287141889333725,\n          \"Height\": 0.030467798933386803,\n          \"Left\": 0.5585607290267944,\n          \"Top\": 0.4971998631954193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585607290267944,\n            \"Y\": 0.4971998631954193\n          },\n          {\n            \"X\": 0.6872613430023193,\n            \"Y\": 0.49729791283607483\n          },\n          {\n            \"X\": 0.6872749328613281,\n            \"Y\": 0.5276677012443542\n          },\n          {\n            \"X\": 0.5585722923278809,\n            \"Y\": 0.5275677442550659\n          }\n        ]\n      },\n      \"Id\": \"b283c4fd-9799-4ae7-b50a-41671be53a81\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89365d6a-5b71-4ba4-b054-e144e8651a6c\",\n            \"e0903cf3-3f97-4fc1-89e2-5caf74017737\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.404296875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0194522924721241,\n          \"Height\": 0.015366250649094582,\n          \"Left\": 0.5391258597373962,\n          \"Top\": 0.5275526642799377\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391258597373962,\n            \"Y\": 0.5275526642799377\n          },\n          {\n            \"X\": 0.5585722923278809,\n            \"Y\": 0.5275677442550659\n          },\n          {\n            \"X\": 0.5585781335830688,\n            \"Y\": 0.542918860912323\n          },\n          {\n            \"X\": 0.5391315221786499,\n            \"Y\": 0.5429036617279053\n          }\n        ]\n      },\n      \"Id\": \"b4781e9e-9785-44d7-b532-baf902ef34b3\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.111328125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12870949506759644,\n          \"Height\": 0.015452048741281033,\n          \"Left\": 0.5585722923278809,\n          \"Top\": 0.5275677442550659\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585722923278809,\n            \"Y\": 0.5275677442550659\n          },\n          {\n            \"X\": 0.6872749328613281,\n            \"Y\": 0.5276677012443542\n          },\n          {\n            \"X\": 0.6872817873954773,\n            \"Y\": 0.5430197715759277\n          },\n          {\n            \"X\": 0.5585781335830688,\n            \"Y\": 0.542918860912323\n          }\n        ]\n      },\n      \"Id\": \"c97bddb5-3b84-4280-8edf-fd053ef12285\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ffc8f15-0ddb-4781-8cc2-1b3e52308fae\",\n            \"be2f9285-9a1f-4e1e-a83a-520cc21e421a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.091796875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019458159804344177,\n          \"Height\": 0.030384546145796776,\n          \"Left\": 0.5391315221786499,\n          \"Top\": 0.5429036617279053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391315221786499,\n            \"Y\": 0.5429036617279053\n          },\n          {\n            \"X\": 0.5585781335830688,\n            \"Y\": 0.542918860912323\n          },\n          {\n            \"X\": 0.5585896968841553,\n            \"Y\": 0.5732882022857666\n          },\n          {\n            \"X\": 0.5391427874565125,\n            \"Y\": 0.5732726454734802\n          }\n        ]\n      },\n      \"Id\": \"cdd2fd45-ec5c-4850-893a-bf7d28990d42\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.75,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12871724367141724,\n          \"Height\": 0.03047209605574608,\n          \"Left\": 0.5585781335830688,\n          \"Top\": 0.542918860912323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585781335830688,\n            \"Y\": 0.542918860912323\n          },\n          {\n            \"X\": 0.6872817873954773,\n            \"Y\": 0.5430197715759277\n          },\n          {\n            \"X\": 0.6872953772544861,\n            \"Y\": 0.5733909606933594\n          },\n          {\n            \"X\": 0.5585896968841553,\n            \"Y\": 0.5732882022857666\n          }\n        ]\n      },\n      \"Id\": \"b8b5b347-e7dc-4867-a82e-c8b1c720ce6b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c4c60eb-10b3-489a-98d2-a0f439eb9c9e\",\n            \"fc72f7dd-436c-41f8-b5aa-e6bd27c769a8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.427734375,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01945262774825096,\n          \"Height\": 0.015033670701086521,\n          \"Left\": 0.5391427874565125,\n          \"Top\": 0.5732726454734802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391427874565125,\n            \"Y\": 0.5732726454734802\n          },\n          {\n            \"X\": 0.5585896968841553,\n            \"Y\": 0.5732882022857666\n          },\n          {\n            \"X\": 0.5585954189300537,\n            \"Y\": 0.5883063077926636\n          },\n          {\n            \"X\": 0.5391483306884766,\n            \"Y\": 0.5882906317710876\n          }\n        ]\n      },\n      \"Id\": \"089675c3-058f-485f-8885-77701646231f\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.0859375,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12871240079402924,\n          \"Height\": 0.01512187346816063,\n          \"Left\": 0.5585896968841553,\n          \"Top\": 0.5732882022857666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585896968841553,\n            \"Y\": 0.5732882022857666\n          },\n          {\n            \"X\": 0.6872953772544861,\n            \"Y\": 0.5733909606933594\n          },\n          {\n            \"X\": 0.6873021125793457,\n            \"Y\": 0.5884100794792175\n          },\n          {\n            \"X\": 0.5585954189300537,\n            \"Y\": 0.5883063077926636\n          }\n        ]\n      },\n      \"Id\": \"6c8049de-651a-49b3-af1a-843c8ed0b81a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93e1ce59-b524-42a1-acfd-2636e46f52cc\",\n            \"afea191f-51c8-42fd-9be5-83ce9a49d9f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.484375,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019458744674921036,\n          \"Height\": 0.030720151960849762,\n          \"Left\": 0.5391483306884766,\n          \"Top\": 0.5882906317710876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391483306884766,\n            \"Y\": 0.5882906317710876\n          },\n          {\n            \"X\": 0.5585954189300537,\n            \"Y\": 0.5883063077926636\n          },\n          {\n            \"X\": 0.5586071014404297,\n            \"Y\": 0.6190108060836792\n          },\n          {\n            \"X\": 0.5391597151756287,\n            \"Y\": 0.6189948320388794\n          }\n        ]\n      },\n      \"Id\": \"d7fcada8-6c6e-4942-b59b-7fd1b8764e66\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 97.607421875,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12872041761875153,\n          \"Height\": 0.03081013262271881,\n          \"Left\": 0.5585954189300537,\n          \"Top\": 0.5883063077926636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5585954189300537,\n            \"Y\": 0.5883063077926636\n          },\n          {\n            \"X\": 0.6873021125793457,\n            \"Y\": 0.5884100794792175\n          },\n          {\n            \"X\": 0.687315821647644,\n            \"Y\": 0.619116485118866\n          },\n          {\n            \"X\": 0.5586071014404297,\n            \"Y\": 0.6190108060836792\n          }\n        ]\n      },\n      \"Id\": \"35760f1d-e6d5-428c-abc6-35d81bbbb6ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f3299490-b8f8-497c-aeba-0c3235754859\",\n            \"35c0209a-8880-48cd-9c4f-439b4b97ceed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.818359375,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01945308782160282,\n          \"Height\": 0.015034814365208149,\n          \"Left\": 0.5391597151756287,\n          \"Top\": 0.6189948320388794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391597151756287,\n            \"Y\": 0.6189948320388794\n          },\n          {\n            \"X\": 0.5586071014404297,\n            \"Y\": 0.6190108060836792\n          },\n          {\n            \"X\": 0.5586127638816833,\n            \"Y\": 0.6340296268463135\n          },\n          {\n            \"X\": 0.5391652584075928,\n            \"Y\": 0.6340135335922241\n          }\n        ]\n      },\n      \"Id\": \"3c7e5382-5aab-4750-bbd5-9f9d30f4914b\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.4765625,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12871545553207397,\n          \"Height\": 0.01512544322758913,\n          \"Left\": 0.5586071014404297,\n          \"Top\": 0.6190108060836792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5586071014404297,\n            \"Y\": 0.6190108060836792\n          },\n          {\n            \"X\": 0.687315821647644,\n            \"Y\": 0.619116485118866\n          },\n          {\n            \"X\": 0.6873225569725037,\n            \"Y\": 0.6341362595558167\n          },\n          {\n            \"X\": 0.5586127638816833,\n            \"Y\": 0.6340296268463135\n          }\n        ]\n      },\n      \"Id\": \"34f98dce-cd64-4398-9e3b-dd25e3502944\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7903684e-ae0e-46fd-b312-ed034ea20c0b\",\n            \"f362c93d-be13-4ae5-9064-463dfce54fc9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.33984375,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01945895329117775,\n          \"Height\": 0.03005450963973999,\n          \"Left\": 0.5391652584075928,\n          \"Top\": 0.6340135335922241\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391652584075928,\n            \"Y\": 0.6340135335922241\n          },\n          {\n            \"X\": 0.5586127638816833,\n            \"Y\": 0.6340296268463135\n          },\n          {\n            \"X\": 0.5586242079734802,\n            \"Y\": 0.6640680432319641\n          },\n          {\n            \"X\": 0.5391764044761658,\n            \"Y\": 0.6640516519546509\n          }\n        ]\n      },\n      \"Id\": \"92764aaf-5dd5-48a3-93cb-0e0a3b9d4302\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.1689453125,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1287231743335724,\n          \"Height\": 0.030146872624754906,\n          \"Left\": 0.5586127638816833,\n          \"Top\": 0.6340296268463135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5586127638816833,\n            \"Y\": 0.6340296268463135\n          },\n          {\n            \"X\": 0.6873225569725037,\n            \"Y\": 0.6341362595558167\n          },\n          {\n            \"X\": 0.6873359680175781,\n            \"Y\": 0.6641765236854553\n          },\n          {\n            \"X\": 0.5586242079734802,\n            \"Y\": 0.6640680432319641\n          }\n        ]\n      },\n      \"Id\": \"8386f1a1-f69d-4bde-9ce1-3c83433ed1a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e31869d-a142-47e9-9d84-7bbce7cb4e0c\",\n            \"64dbaece-e4af-4b46-ac7b-8ddb626fcc89\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.287109375,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019459571689367294,\n          \"Height\": 0.030888210982084274,\n          \"Left\": 0.5391764044761658,\n          \"Top\": 0.6640516519546509\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5391764044761658,\n            \"Y\": 0.6640516519546509\n          },\n          {\n            \"X\": 0.5586242079734802,\n            \"Y\": 0.6640680432319641\n          },\n          {\n            \"X\": 0.558635950088501,\n            \"Y\": 0.6949398517608643\n          },\n          {\n            \"X\": 0.5391877889633179,\n            \"Y\": 0.6949232220649719\n          }\n        ]\n      },\n      \"Id\": \"27990b93-dd52-4f3d-8c49-63e38bcad4d6\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.9453125,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1287255436182022,\n          \"Height\": 0.03098222054541111,\n          \"Left\": 0.5586242079734802,\n          \"Top\": 0.6640680432319641\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5586242079734802,\n            \"Y\": 0.6640680432319641\n          },\n          {\n            \"X\": 0.6873359680175781,\n            \"Y\": 0.6641765236854553\n          },\n          {\n            \"X\": 0.6873497366905212,\n            \"Y\": 0.6950502991676331\n          },\n          {\n            \"X\": 0.558635950088501,\n            \"Y\": 0.6949398517608643\n          }\n        ]\n      },\n      \"Id\": \"f328daab-6631-4fd4-b850-c39361d98bce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"517c4e12-32ab-4b08-a393-bb0007d2e3e2\",\n            \"74a39235-b806-42f4-a257-a26aac6423e4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 79.8828125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 2,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14814992249011993,\n          \"Height\": 0.014906478114426136,\n          \"Left\": 0.5390980243682861,\n          \"Top\": 0.45235636830329895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5390980243682861,\n            \"Y\": 0.45235636830329895\n          },\n          {\n            \"X\": 0.6872413158416748,\n            \"Y\": 0.4524659812450409\n          },\n          {\n            \"X\": 0.6872479319572449,\n            \"Y\": 0.4672628343105316\n          },\n          {\n            \"X\": 0.5391034483909607,\n            \"Y\": 0.4671521484851837\n          }\n        ]\n      },\n      \"Id\": \"b154546a-7d80-4257-ade0-ffe6443f3230\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ed591ad7-1d4b-4742-89e9-7a114d2c9214\",\n            \"96ad5613-dc16-42e2-a9a9-7a60a5a4c5bf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 89.697265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.48910510540008545,\n          \"Height\": 0.17820101976394653,\n          \"Left\": 0.05028511956334114,\n          \"Top\": 0.5162391066551208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05028511956334114,\n            \"Y\": 0.5162391066551208\n          },\n          {\n            \"X\": 0.5393243432044983,\n            \"Y\": 0.5166162848472595\n          },\n          {\n            \"X\": 0.5393902063369751,\n            \"Y\": 0.6944401264190674\n          },\n          {\n            \"X\": 0.05030589923262596,\n            \"Y\": 0.6940207481384277\n          }\n        ]\n      },\n      \"Id\": \"bbacaf73-ae88-4ff1-8f07-6b74f2094ffd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6c32ad8e-1d2d-4040-a9cd-8d33c420f4cd\",\n            \"1a1475c6-7eac-4783-8df0-9df013b070a4\",\n            \"c67680c5-54d9-46db-a8b5-d642a4d42890\",\n            \"51f336c6-8c59-41d2-8f40-8401f5839ba2\",\n            \"4e05ce51-29ee-4a34-bad1-0bcacf3db6a1\",\n            \"f15d3fa3-6112-4cce-8b13-2fddd478baf5\",\n            \"65a90535-a062-4493-8e9b-50424fb1ba7d\",\n            \"80efe4fa-3c6a-4a51-843c-f6788dc5d835\",\n            \"4dd6ad00-9671-425f-b8be-5b216c79600e\",\n            \"0669e804-2f98-4c82-bb84-4a6d2b7e5507\",\n            \"469ea221-5591-42e8-b779-e8d69b6008ca\",\n            \"66b85d72-a367-4703-96e2-c6a8e75d22b8\",\n            \"2ef7a4ed-88a7-4429-94fa-0efb654bb880\",\n            \"372b8ffb-a907-4dae-899a-a0c67ba03790\",\n            \"5570d8df-fdac-484c-9dfb-fc2ac4fbd782\",\n            \"430bc5b3-9e95-4331-854b-20054e25a7b1\",\n            \"5ef673ad-a236-4226-b8f8-1941cbdcd40d\",\n            \"c7446fea-9a04-4436-8c83-cd65531c6596\",\n            \"ee337765-ddc6-40f6-bcf3-62c122e0769a\",\n            \"e4b9ff6e-7e15-4860-a883-5f0f96e1fbe8\",\n            \"33c70135-d6cf-4142-9c44-904129564352\",\n            \"bb1a05fe-9fb9-41ba-ba67-91d5a4b7e284\",\n            \"6b90a840-5ae6-48d8-9e92-8f3d60dade79\",\n            \"efaf904b-58c5-4b2f-85a5-4dd02c05ea6e\",\n            \"920c3c17-e035-4d8d-8752-a95e0e8e3118\",\n            \"54e8c5a8-0538-4f1f-9448-d4675cae0884\",\n            \"52fde0e8-eb88-4a77-89e0-fda80e67bc00\",\n            \"6b4b0f5a-62ff-4c1e-abe3-4b128364e734\",\n            \"5970178e-d5fe-49cd-a68f-fb9f15b4b9ec\",\n            \"173eae4b-f858-4c9d-baaa-19399ab48773\",\n            \"d439f13c-1f13-4b4c-9b85-7d709e904dfa\",\n            \"9830e4de-8e4d-4569-9ee9-e978ab063408\",\n            \"98c7b7b7-7eea-42ea-ad5e-5d9d001a3bbe\",\n            \"9e9f2eb4-78d1-4599-873e-df7d2163a0c1\",\n            \"37c56b0a-3bb0-4c9b-9306-d7b1410864dc\",\n            \"475ba4e1-d0c0-4c84-84f2-14227ab71075\",\n            \"b8524f33-3132-46f3-bc36-e0340edb6eb6\",\n            \"9de28961-d465-4bb5-b649-bc294051ede0\",\n            \"9c594b7c-74aa-4327-8855-4e1532a59895\",\n            \"0148d27e-23b4-4060-9445-04abab31a17d\",\n            \"565b58a1-a816-40f3-9a1c-3e08665ef9c8\",\n            \"81d127f5-8967-4627-bd4b-0e2f02bfb63d\",\n            \"20b8de14-fb1c-4f13-9dad-54de8b3967e8\",\n            \"25b6bf0f-b1a3-4338-a600-4c8e34fdb12b\",\n            \"7573ae69-1f4e-42de-945a-74093e81e4b3\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"8257642e-277c-43c5-bccb-565ce9523082\",\n            \"ae44abe6-3b07-4d25-a81e-d66671031b04\",\n            \"88250256-9414-43f5-9823-c0101968e050\",\n            \"b8e52974-00ca-4083-9820-46a537bae27a\",\n            \"9eb3a743-2040-4f04-97bf-397862b8a1ab\",\n            \"c39392b0-2333-456a-b528-698542c776b9\",\n            \"625f3d75-1d2f-4de0-8365-f5fe9ef49f0b\",\n            \"be42dcc5-69a1-47c8-928e-26e2ed7c2d26\",\n            \"2e22bbb4-2b97-4f48-ba6e-3d09e1595824\",\n            \"515271d8-6cc8-47c1-a06d-76e1d0f3cea5\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_TITLE\",\n          \"Ids\": [\n            \"87d7a81e-dbec-4a87-9b33-e3e3c4eccec7\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_FOOTER\",\n          \"Ids\": [\n            \"aca9b229-d6b4-4d5e-8630-0d735ba379e9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.310546875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07991231977939606,\n          \"Height\": 0.011405615136027336,\n          \"Left\": 0.05049081891775131,\n          \"Top\": 0.5161632895469666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05049081891775131,\n            \"Y\": 0.5161632895469666\n          },\n          {\n            \"X\": 0.1304013431072235,\n            \"Y\": 0.5162249207496643\n          },\n          {\n            \"X\": 0.13040313124656677,\n            \"Y\": 0.5275689363479614\n          },\n          {\n            \"X\": 0.050492145121097565,\n            \"Y\": 0.5275068283081055\n          }\n        ]\n      },\n      \"Id\": \"6c32ad8e-1d2d-4040-a9cd-8d33c420f4cd\",\n      \"EntityTypes\": [\n        \"TABLE_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.310546875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10756745934486389,\n          \"Height\": 0.011427533812820911,\n          \"Left\": 0.1304013431072235,\n          \"Top\": 0.5162249207496643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1304013431072235,\n            \"Y\": 0.5162249207496643\n          },\n          {\n            \"X\": 0.2379663735628128,\n            \"Y\": 0.5163078904151917\n          },\n          {\n            \"X\": 0.2379688024520874,\n            \"Y\": 0.5276524424552917\n          },\n          {\n            \"X\": 0.13040313124656677,\n            \"Y\": 0.5275689363479614\n          }\n        ]\n      },\n      \"Id\": \"1a1475c6-7eac-4783-8df0-9df013b070a4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0cc73077-7f4a-4fec-9e65-8ed679b504d8\",\n            \"99d29c7c-9c65-442d-9170-e2943adada0b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.310546875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075793206691742,\n          \"Height\": 0.011428135447204113,\n          \"Left\": 0.2379663735628128,\n          \"Top\": 0.5163078904151917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2379663735628128,\n            \"Y\": 0.5163078904151917\n          },\n          {\n            \"X\": 0.3455426096916199,\n            \"Y\": 0.5163908004760742\n          },\n          {\n            \"X\": 0.3455456793308258,\n            \"Y\": 0.5277360081672668\n          },\n          {\n            \"X\": 0.2379688024520874,\n            \"Y\": 0.5276524424552917\n          }\n        ]\n      },\n      \"Id\": \"c67680c5-54d9-46db-a8b5-d642a4d42890\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3f30c560-e227-4962-9507-e89fc0846897\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.310546875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075911819934845,\n          \"Height\": 0.01142873615026474,\n          \"Left\": 0.3455426096916199,\n          \"Top\": 0.5163908004760742\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3455426096916199,\n            \"Y\": 0.5163908004760742\n          },\n          {\n            \"X\": 0.4531301259994507,\n            \"Y\": 0.5164737701416016\n          },\n          {\n            \"X\": 0.45313382148742676,\n            \"Y\": 0.5278195738792419\n          },\n          {\n            \"X\": 0.3455456793308258,\n            \"Y\": 0.5277360081672668\n          }\n        ]\n      },\n      \"Id\": \"51f336c6-8c59-41d2-8f40-8401f5839ba2\",\n      \"EntityTypes\": [\n        \"TABLE_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.75,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08619838953018188,\n          \"Height\": 0.011336702853441238,\n          \"Left\": 0.4531301259994507,\n          \"Top\": 0.516549825668335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4531301259994507,\n            \"Y\": 0.516549825668335\n          },\n          {\n            \"X\": 0.5393243432044983,\n            \"Y\": 0.5166162848472595\n          },\n          {\n            \"X\": 0.5393285155296326,\n            \"Y\": 0.5278865098953247\n          },\n          {\n            \"X\": 0.45313382148742676,\n            \"Y\": 0.5278195738792419\n          }\n        ]\n      },\n      \"Id\": \"4e05ce51-29ee-4a34-bad1-0bcacf3db6a1\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.71875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08011908084154129,\n          \"Height\": 0.015076534822583199,\n          \"Left\": 0.050286438316106796,\n          \"Top\": 0.5275067090988159\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.050286438316106796,\n            \"Y\": 0.5275067090988159\n          },\n          {\n            \"X\": 0.13040313124656677,\n            \"Y\": 0.5275689363479614\n          },\n          {\n            \"X\": 0.1304055154323578,\n            \"Y\": 0.5425832271575928\n          },\n          {\n            \"X\": 0.05028819292783737,\n            \"Y\": 0.5425204038619995\n          }\n        ]\n      },\n      \"Id\": \"f15d3fa3-6112-4cce-8b13-2fddd478baf5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f028f021-0221-4738-a906-05cb6e816e15\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.40234375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10756887495517731,\n          \"Height\": 0.015098637901246548,\n          \"Left\": 0.13040313124656677,\n          \"Top\": 0.5275689363479614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13040313124656677,\n            \"Y\": 0.5275689363479614\n          },\n          {\n            \"X\": 0.2379688024520874,\n            \"Y\": 0.5276524424552917\n          },\n          {\n            \"X\": 0.23797200620174408,\n            \"Y\": 0.54266756772995\n          },\n          {\n            \"X\": 0.1304055154323578,\n            \"Y\": 0.5425832271575928\n          }\n        ]\n      },\n      \"Id\": \"65a90535-a062-4493-8e9b-50424fb1ba7d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"87afe5b6-375f-449a-a32b-3f31ac1c0b20\",\n            \"e7618cd1-7eb3-476c-98b4-34a40e307115\",\n            \"b198602b-1bf9-4ce7-9035-dbc700302316\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.916015625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10758094489574432,\n          \"Height\": 0.01509943138808012,\n          \"Left\": 0.2379688024520874,\n          \"Top\": 0.5276524424552917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2379688024520874,\n            \"Y\": 0.5276524424552917\n          },\n          {\n            \"X\": 0.3455456793308258,\n            \"Y\": 0.5277360081672668\n          },\n          {\n            \"X\": 0.34554973244667053,\n            \"Y\": 0.5427519083023071\n          },\n          {\n            \"X\": 0.23797200620174408,\n            \"Y\": 0.54266756772995\n          }\n        ]\n      },\n      \"Id\": \"80efe4fa-3c6a-4a51-843c-f6788dc5d835\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce33e3fc-4a3a-4d74-a8b1-8f9411ff8057\",\n            \"9d61693f-d822-407c-ab54-59fb3854f0ac\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.57421875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10759301483631134,\n          \"Height\": 0.015100223943591118,\n          \"Left\": 0.3455456793308258,\n          \"Top\": 0.5277360081672668\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3455456793308258,\n            \"Y\": 0.5277360081672668\n          },\n          {\n            \"X\": 0.45313382148742676,\n            \"Y\": 0.5278195738792419\n          },\n          {\n            \"X\": 0.45313870906829834,\n            \"Y\": 0.5428362488746643\n          },\n          {\n            \"X\": 0.34554973244667053,\n            \"Y\": 0.5427519083023071\n          }\n        ]\n      },\n      \"Id\": \"4dd6ad00-9671-425f-b8be-5b216c79600e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"17c374b1-dbfa-4d0b-b2df-c6681deea5a4\",\n            \"ec2f2e86-0ad9-424e-948b-6ace85d46483\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.0625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0862002819776535,\n          \"Height\": 0.015084236860275269,\n          \"Left\": 0.45313382148742676,\n          \"Top\": 0.5278195738792419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45313382148742676,\n            \"Y\": 0.5278195738792419\n          },\n          {\n            \"X\": 0.5393285155296326,\n            \"Y\": 0.5278865098953247\n          },\n          {\n            \"X\": 0.5393341183662415,\n            \"Y\": 0.5429037809371948\n          },\n          {\n            \"X\": 0.45313870906829834,\n            \"Y\": 0.5428362488746643\n          }\n        ]\n      },\n      \"Id\": \"0669e804-2f98-4c82-bb84-4a6d2b7e5507\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c9950eb-61fa-480a-b336-8893250a4f8a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.380859375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08012213557958603,\n          \"Height\": 0.030425794422626495,\n          \"Left\": 0.05028819292783737,\n          \"Top\": 0.5425204038619995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05028819292783737,\n            \"Y\": 0.5425204038619995\n          },\n          {\n            \"X\": 0.1304055154323578,\n            \"Y\": 0.5425832271575928\n          },\n          {\n            \"X\": 0.1304103285074234,\n            \"Y\": 0.5729461908340454\n          },\n          {\n            \"X\": 0.050291743129491806,\n            \"Y\": 0.5728822350502014\n          }\n        ]\n      },\n      \"Id\": \"469ea221-5591-42e8-b779-e8d69b6008ca\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5090450e-3818-48ab-b8af-1430c796f7a9\",\n            \"4b1f339f-37e3-420e-9d11-2c212de3facc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.064453125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.107573002576828,\n          \"Height\": 0.030448900535702705,\n          \"Left\": 0.1304055154323578,\n          \"Top\": 0.5425832271575928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1304055154323578,\n            \"Y\": 0.5425832271575928\n          },\n          {\n            \"X\": 0.23797200620174408,\n            \"Y\": 0.54266756772995\n          },\n          {\n            \"X\": 0.2379785180091858,\n            \"Y\": 0.5730321407318115\n          },\n          {\n            \"X\": 0.1304103285074234,\n            \"Y\": 0.5729461908340454\n          }\n        ]\n      },\n      \"Id\": \"66b85d72-a367-4703-96e2-c6a8e75d22b8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c943454c-9cf7-4c5a-a787-9fb944bc5c2b\",\n            \"e2d5c9a9-acab-44c4-9e65-a280ef6815dc\",\n            \"07ba3672-1638-48ea-9a7b-dff0a64b1d16\",\n            \"42d65c48-43dd-4f1a-8c6c-ee99c986889d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.626953125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10758592188358307,\n          \"Height\": 0.030450494959950447,\n          \"Left\": 0.23797200620174408,\n          \"Top\": 0.54266756772995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23797200620174408,\n            \"Y\": 0.54266756772995\n          },\n          {\n            \"X\": 0.34554973244667053,\n            \"Y\": 0.5427519083023071\n          },\n          {\n            \"X\": 0.34555792808532715,\n            \"Y\": 0.5731180310249329\n          },\n          {\n            \"X\": 0.2379785180091858,\n            \"Y\": 0.5730321407318115\n          }\n        ]\n      },\n      \"Id\": \"2ef7a4ed-88a7-4429-94fa-0efb654bb880\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3d883a60-1ac4-49d9-be2e-6054b2ee022f\",\n            \"df7b7361-7cb7-4de2-b3ae-b04fc1a12d87\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.28515625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10759884864091873,\n          \"Height\": 0.03045208938419819,\n          \"Left\": 0.34554973244667053,\n          \"Top\": 0.5427519083023071\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34554973244667053,\n            \"Y\": 0.5427519083023071\n          },\n          {\n            \"X\": 0.45313870906829834,\n            \"Y\": 0.5428362488746643\n          },\n          {\n            \"X\": 0.45314860343933105,\n            \"Y\": 0.573203980922699\n          },\n          {\n            \"X\": 0.34555792808532715,\n            \"Y\": 0.5731180310249329\n          }\n        ]\n      },\n      \"Id\": \"372b8ffb-a907-4dae-899a-a0c67ba03790\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c3a2a48a-38ab-40d0-b790-a3ce68a695f8\",\n            \"59dbf1ef-0316-49c0-8211-9339753332e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.822265625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08620663732290268,\n          \"Height\": 0.030436590313911438,\n          \"Left\": 0.45313870906829834,\n          \"Top\": 0.5428362488746643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45313870906829834,\n            \"Y\": 0.5428362488746643\n          },\n          {\n            \"X\": 0.5393341183662415,\n            \"Y\": 0.5429037809371948\n          },\n          {\n            \"X\": 0.5393453240394592,\n            \"Y\": 0.5732728242874146\n          },\n          {\n            \"X\": 0.45314860343933105,\n            \"Y\": 0.573203980922699\n          }\n        ]\n      },\n      \"Id\": \"5570d8df-fdac-484c-9dfb-fc2ac4fbd782\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a98f4a5-cc21-4044-9611-c36305b55aec\",\n            \"f014465d-0365-4fe2-b5ff-a9b60897b2b8\",\n            \"12ae7a4e-4a56-4756-b9cc-15d61f0d6c0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 95.361328125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07991530001163483,\n          \"Height\": 0.015412512235343456,\n          \"Left\": 0.05049745365977287,\n          \"Top\": 0.572882354259491\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05049745365977287,\n            \"Y\": 0.572882354259491\n          },\n          {\n            \"X\": 0.1304103285074234,\n            \"Y\": 0.5729461908340454\n          },\n          {\n            \"X\": 0.130412757396698,\n            \"Y\": 0.5882948637008667\n          },\n          {\n            \"X\": 0.05049924924969673,\n            \"Y\": 0.5882304906845093\n          }\n        ]\n      },\n      \"Id\": \"430bc5b3-9e95-4331-854b-20054e25a7b1\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.533203125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757147520780563,\n          \"Height\": 0.015435402281582355,\n          \"Left\": 0.1304103285074234,\n          \"Top\": 0.5729461908340454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1304103285074234,\n            \"Y\": 0.5729461908340454\n          },\n          {\n            \"X\": 0.2379785180091858,\n            \"Y\": 0.5730321407318115\n          },\n          {\n            \"X\": 0.23798179626464844,\n            \"Y\": 0.5883815884590149\n          },\n          {\n            \"X\": 0.130412757396698,\n            \"Y\": 0.5882948637008667\n          }\n        ]\n      },\n      \"Id\": \"5ef673ad-a236-4226-b8f8-1941cbdcd40d\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.435546875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10758356750011444,\n          \"Height\": 0.015436212532222271,\n          \"Left\": 0.2379785180091858,\n          \"Top\": 0.5730321407318115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2379785180091858,\n            \"Y\": 0.5730321407318115\n          },\n          {\n            \"X\": 0.34555792808532715,\n            \"Y\": 0.5731180310249329\n          },\n          {\n            \"X\": 0.34556207060813904,\n            \"Y\": 0.5884683132171631\n          },\n          {\n            \"X\": 0.23798179626464844,\n            \"Y\": 0.5883815884590149\n          }\n        ]\n      },\n      \"Id\": \"c7446fea-9a04-4436-8c83-cd65531c6596\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.53125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10759565234184265,\n          \"Height\": 0.015437023714184761,\n          \"Left\": 0.34555792808532715,\n          \"Top\": 0.5731180310249329\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34555792808532715,\n            \"Y\": 0.5731180310249329\n          },\n          {\n            \"X\": 0.45314860343933105,\n            \"Y\": 0.573203980922699\n          },\n          {\n            \"X\": 0.4531535804271698,\n            \"Y\": 0.5885550379753113\n          },\n          {\n            \"X\": 0.34556207060813904,\n            \"Y\": 0.5884683132171631\n          }\n        ]\n      },\n      \"Id\": \"ee337765-ddc6-40f6-bcf3-62c122e0769a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.3046875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08620243519544601,\n          \"Height\": 0.015420579351484776,\n          \"Left\": 0.45314860343933105,\n          \"Top\": 0.573203980922699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45314860343933105,\n            \"Y\": 0.573203980922699\n          },\n          {\n            \"X\": 0.5393453240394592,\n            \"Y\": 0.5732728242874146\n          },\n          {\n            \"X\": 0.5393510460853577,\n            \"Y\": 0.5886245369911194\n          },\n          {\n            \"X\": 0.4531535804271698,\n            \"Y\": 0.5885550379753113\n          }\n        ]\n      },\n      \"Id\": \"e4b9ff6e-7e15-4860-a883-5f0f96e1fbe8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94fc0874-48f5-428d-9e98-54146853fd0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 95.361328125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07991594076156616,\n          \"Height\": 0.01541335228830576,\n          \"Left\": 0.05049924924969673,\n          \"Top\": 0.5882304906845093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05049924924969673,\n            \"Y\": 0.5882304906845093\n          },\n          {\n            \"X\": 0.130412757396698,\n            \"Y\": 0.5882948637008667\n          },\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          },\n          {\n            \"X\": 0.05050104483962059,\n            \"Y\": 0.6035788059234619\n          }\n        ]\n      },\n      \"Id\": \"33c70135-d6cf-4142-9c44-904129564352\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d249cda2-191e-4907-bb25-c22565d28683\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.533203125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757233202457428,\n          \"Height\": 0.015436448156833649,\n          \"Left\": 0.130412757396698,\n          \"Top\": 0.5882948637008667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.130412757396698,\n            \"Y\": 0.5882948637008667\n          },\n          {\n            \"X\": 0.23798179626464844,\n            \"Y\": 0.5883815884590149\n          },\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          },\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          }\n        ]\n      },\n      \"Id\": \"bb1a05fe-9fb9-41ba-ba67-91d5a4b7e284\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"10bf5c86-585f-4155-9fa1-24f5a7a9e161\",\n            \"2bc04236-9c6b-4126-837f-bb41bafbce8a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.435546875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10758441686630249,\n          \"Height\": 0.015437259338796139,\n          \"Left\": 0.23798179626464844,\n          \"Top\": 0.5883815884590149\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23798179626464844,\n            \"Y\": 0.5883815884590149\n          },\n          {\n            \"X\": 0.34556207060813904,\n            \"Y\": 0.5884683132171631\n          },\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          },\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          }\n        ]\n      },\n      \"Id\": \"6b90a840-5ae6-48d8-9e92-8f3d60dade79\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8c565aee-eaaf-4953-a14d-1e356f7b0cce\",\n            \"d1090ef1-8691-490c-8b86-ae455eaa28e2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.53125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075965091586113,\n          \"Height\": 0.015438070520758629,\n          \"Left\": 0.34556207060813904,\n          \"Top\": 0.5884683132171631\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34556207060813904,\n            \"Y\": 0.5884683132171631\n          },\n          {\n            \"X\": 0.4531535804271698,\n            \"Y\": 0.5885550379753113\n          },\n          {\n            \"X\": 0.45315858721733093,\n            \"Y\": 0.6039063930511475\n          },\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          }\n        ]\n      },\n      \"Id\": \"efaf904b-58c5-4b2f-85a5-4dd02c05ea6e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b00c1798-a638-4698-8416-3faa640cae90\",\n            \"ce9b0837-44e4-4076-a374-2bda2847218c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.724609375,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08600054681301117,\n          \"Height\": 0.015421301126480103,\n          \"Left\": 0.4531535804271698,\n          \"Top\": 0.5885550379753113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4531535804271698,\n            \"Y\": 0.5885550379753113\n          },\n          {\n            \"X\": 0.5391484498977661,\n            \"Y\": 0.5886243581771851\n          },\n          {\n            \"X\": 0.5391541123390198,\n            \"Y\": 0.6039763689041138\n          },\n          {\n            \"X\": 0.45315858721733093,\n            \"Y\": 0.6039063930511475\n          }\n        ]\n      },\n      \"Id\": \"920c3c17-e035-4d8d-8752-a95e0e8e3118\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bd11d96c-d0ae-48f4-a585-97cb5db8d4b6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 95.3125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07991646975278854,\n          \"Height\": 0.014746831730008125,\n          \"Left\": 0.05050104483962059,\n          \"Top\": 0.6035788059234619\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05050104483962059,\n            \"Y\": 0.6035788059234619\n          },\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          },\n          {\n            \"X\": 0.13041751086711884,\n            \"Y\": 0.6183256506919861\n          },\n          {\n            \"X\": 0.05050276219844818,\n            \"Y\": 0.6182600259780884\n          }\n        ]\n      },\n      \"Id\": \"54e8c5a8-0538-4f1f-9448-d4675cae0884\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.142578125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757304728031158,\n          \"Height\": 0.014770098961889744,\n          \"Left\": 0.1304151862859726,\n          \"Top\": 0.6036438345909119\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          },\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          },\n          {\n            \"X\": 0.23798823356628418,\n            \"Y\": 0.6184139251708984\n          },\n          {\n            \"X\": 0.13041751086711884,\n            \"Y\": 0.6183256506919861\n          }\n        ]\n      },\n      \"Id\": \"52fde0e8-eb88-4a77-89e0-fda80e67bc00\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.38671875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10758509486913681,\n          \"Height\": 0.014770874753594398,\n          \"Left\": 0.23798508942127228,\n          \"Top\": 0.6037313342094421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          },\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          },\n          {\n            \"X\": 0.3455701768398285,\n            \"Y\": 0.6185021996498108\n          },\n          {\n            \"X\": 0.23798823356628418,\n            \"Y\": 0.6184139251708984\n          }\n        ]\n      },\n      \"Id\": \"6b4b0f5a-62ff-4c1e-abe3-4b128364e734\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.482421875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10759714990854263,\n          \"Height\": 0.014771651476621628,\n          \"Left\": 0.3455662131309509,\n          \"Top\": 0.6038188934326172\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          },\n          {\n            \"X\": 0.45315858721733093,\n            \"Y\": 0.6039063930511475\n          },\n          {\n            \"X\": 0.45316338539123535,\n            \"Y\": 0.6185905337333679\n          },\n          {\n            \"X\": 0.3455701768398285,\n            \"Y\": 0.6185021996498108\n          }\n        ]\n      },\n      \"Id\": \"5970178e-d5fe-49cd-a68f-fb9f15b4b9ec\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.724609375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08600098639726639,\n          \"Height\": 0.01475469395518303,\n          \"Left\": 0.45315858721733093,\n          \"Top\": 0.6039063930511475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45315858721733093,\n            \"Y\": 0.6039063930511475\n          },\n          {\n            \"X\": 0.5391541123390198,\n            \"Y\": 0.6039763689041138\n          },\n          {\n            \"X\": 0.5391595959663391,\n            \"Y\": 0.618661105632782\n          },\n          {\n            \"X\": 0.45316338539123535,\n            \"Y\": 0.6185905337333679\n          }\n        ]\n      },\n      \"Id\": \"173eae4b-f858-4c9d-baaa-19399ab48773\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 95.3125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07991718500852585,\n          \"Height\": 0.015414995141327381,\n          \"Left\": 0.05050276219844818,\n          \"Top\": 0.6182600259780884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05050276219844818,\n            \"Y\": 0.6182600259780884\n          },\n          {\n            \"X\": 0.13041751086711884,\n            \"Y\": 0.6183256506919861\n          },\n          {\n            \"X\": 0.13041993975639343,\n            \"Y\": 0.6336750388145447\n          },\n          {\n            \"X\": 0.05050455778837204,\n            \"Y\": 0.633608877658844\n          }\n        ]\n      },\n      \"Id\": \"d439f13c-1f13-4b4c-9b85-7d709e904dfa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6addff48-2727-48cf-af5c-b8d81eee4d23\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.142578125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757400840520859,\n          \"Height\": 0.015438495203852654,\n          \"Left\": 0.13041751086711884,\n          \"Top\": 0.6183256506919861\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13041751086711884,\n            \"Y\": 0.6183256506919861\n          },\n          {\n            \"X\": 0.23798823356628418,\n            \"Y\": 0.6184139251708984\n          },\n          {\n            \"X\": 0.23799152672290802,\n            \"Y\": 0.6337641477584839\n          },\n          {\n            \"X\": 0.13041993975639343,\n            \"Y\": 0.6336750388145447\n          }\n        ]\n      },\n      \"Id\": \"9830e4de-8e4d-4569-9ee9-e978ab063408\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"062e0c26-3a46-404d-be95-f45440f25eb0\",\n            \"27052f76-ef55-48c5-a89d-a0479ab03e0d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 96.38671875,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075860932469368,\n          \"Height\": 0.015439306385815144,\n          \"Left\": 0.23798823356628418,\n          \"Top\": 0.6184139251708984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23798823356628418,\n            \"Y\": 0.6184139251708984\n          },\n          {\n            \"X\": 0.3455701768398285,\n            \"Y\": 0.6185021996498108\n          },\n          {\n            \"X\": 0.3455743193626404,\n            \"Y\": 0.6338531970977783\n          },\n          {\n            \"X\": 0.23799152672290802,\n            \"Y\": 0.6337641477584839\n          }\n        ]\n      },\n      \"Id\": \"98c7b7b7-7eea-42ea-ad5e-5d9d001a3bbe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"44b94b01-40be-4ee8-b983-482a311a1f2c\",\n            \"d4c6d809-6370-4f75-ae00-a4201334eba3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 94.482421875,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075981855392456,\n          \"Height\": 0.015440117567777634,\n          \"Left\": 0.3455701768398285,\n          \"Top\": 0.6185021996498108\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3455701768398285,\n            \"Y\": 0.6185021996498108\n          },\n          {\n            \"X\": 0.45316338539123535,\n            \"Y\": 0.6185905337333679\n          },\n          {\n            \"X\": 0.4531683623790741,\n            \"Y\": 0.6339423060417175\n          },\n          {\n            \"X\": 0.3455743193626404,\n            \"Y\": 0.6338531970977783\n          }\n        ]\n      },\n      \"Id\": \"9e9f2eb4-78d1-4599-873e-df7d2163a0c1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e8c345d-f5d2-43b4-8e6b-03ee25b9106c\",\n            \"216cd2af-7cb3-4cb1-8012-1a1bcf7030d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.306640625,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08620446175336838,\n          \"Height\": 0.015423201024532318,\n          \"Left\": 0.45316338539123535,\n          \"Top\": 0.6185905337333679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45316338539123535,\n            \"Y\": 0.6185905337333679\n          },\n          {\n            \"X\": 0.5393621325492859,\n            \"Y\": 0.6186612844467163\n          },\n          {\n            \"X\": 0.5393678545951843,\n            \"Y\": 0.6340137124061584\n          },\n          {\n            \"X\": 0.4531683623790741,\n            \"Y\": 0.6339423060417175\n          }\n        ]\n      },\n      \"Id\": \"37c56b0a-3bb0-4c9b-9306-d7b1410864dc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34fdb989-bc2b-4d7a-a071-f1902c3c2fb4\",\n            \"26e9097a-d5ad-4807-a375-3138652312f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.892578125,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08012592047452927,\n          \"Height\": 0.03043220564723015,\n          \"Left\": 0.050298839807510376,\n          \"Top\": 0.6336086988449097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.050298839807510376,\n            \"Y\": 0.6336086988449097\n          },\n          {\n            \"X\": 0.13041993975639343,\n            \"Y\": 0.6336750388145447\n          },\n          {\n            \"X\": 0.13042475283145905,\n            \"Y\": 0.6640409231185913\n          },\n          {\n            \"X\": 0.05030239000916481,\n            \"Y\": 0.663973331451416\n          }\n        ]\n      },\n      \"Id\": \"475ba4e1-d0c0-4c84-84f2-14227ab71075\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"83ced698-38f0-4b6d-90f1-34a16b249598\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.625,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075780838727951,\n          \"Height\": 0.030456526204943657,\n          \"Left\": 0.13041993975639343,\n          \"Top\": 0.6336750388145447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13041993975639343,\n            \"Y\": 0.6336750388145447\n          },\n          {\n            \"X\": 0.23799152672290802,\n            \"Y\": 0.6337641477584839\n          },\n          {\n            \"X\": 0.23799802362918854,\n            \"Y\": 0.6641315817832947\n          },\n          {\n            \"X\": 0.13042475283145905,\n            \"Y\": 0.6640409231185913\n          }\n        ]\n      },\n      \"Id\": \"b8524f33-3132-46f3-bc36-e0340edb6eb6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"443a4316-99e7-4f8e-a3b4-bdcc4b56f167\",\n            \"6c83ec21-fb40-4eaf-add8-0e64036eac20\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.138671875,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10759100317955017,\n          \"Height\": 0.030458122491836548,\n          \"Left\": 0.23799152672290802,\n          \"Top\": 0.6337641477584839\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23799152672290802,\n            \"Y\": 0.6337641477584839\n          },\n          {\n            \"X\": 0.3455743193626404,\n            \"Y\": 0.6338531970977783\n          },\n          {\n            \"X\": 0.345582515001297,\n            \"Y\": 0.664222240447998\n          },\n          {\n            \"X\": 0.23799802362918854,\n            \"Y\": 0.6641315817832947\n          }\n        ]\n      },\n      \"Id\": \"9de28961-d465-4bb5-b649-bc294051ede0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"01ff2317-a159-4221-a488-c93ab0e6e418\",\n            \"37e61028-2ca8-46b0-bfff-c5dacc20d60f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.845703125,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10760392993688583,\n          \"Height\": 0.03045971877872944,\n          \"Left\": 0.3455743193626404,\n          \"Top\": 0.6338531970977783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3455743193626404,\n            \"Y\": 0.6338531970977783\n          },\n          {\n            \"X\": 0.4531683623790741,\n            \"Y\": 0.6339423060417175\n          },\n          {\n            \"X\": 0.4531782567501068,\n            \"Y\": 0.6643129587173462\n          },\n          {\n            \"X\": 0.345582515001297,\n            \"Y\": 0.664222240447998\n          }\n        ]\n      },\n      \"Id\": \"9c594b7c-74aa-4327-8855-4e1532a59895\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"59d22ee0-1dac-461d-b995-3b8ccb6ad296\",\n            \"dd836dea-8e0f-4959-9cc0-63ec5becaec2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.333984375,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0862107127904892,\n          \"Height\": 0.03044327162206173,\n          \"Left\": 0.4531683623790741,\n          \"Top\": 0.6339423060417175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4531683623790741,\n            \"Y\": 0.6339423060417175\n          },\n          {\n            \"X\": 0.5393678545951843,\n            \"Y\": 0.6340137124061584\n          },\n          {\n            \"X\": 0.5393790602684021,\n            \"Y\": 0.6643856167793274\n          },\n          {\n            \"X\": 0.4531782567501068,\n            \"Y\": 0.6643129587173462\n          }\n        ]\n      },\n      \"Id\": \"0148d27e-23b4-4060-9445-04abab31a17d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89920fbb-98fb-442e-acf1-bafe5e795beb\",\n            \"f4b72811-88ff-4536-b489-5391c68a56cd\",\n            \"16b6ceb9-a4e2-4ad4-b8ea-540f1fc203d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.40625,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08012712746858597,\n          \"Height\": 0.030116116628050804,\n          \"Left\": 0.05030239000916481,\n          \"Top\": 0.663973331451416\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05030239000916481,\n            \"Y\": 0.663973331451416\n          },\n          {\n            \"X\": 0.13042475283145905,\n            \"Y\": 0.6640409231185913\n          },\n          {\n            \"X\": 0.13042952120304108,\n            \"Y\": 0.6940894722938538\n          },\n          {\n            \"X\": 0.05030589923262596,\n            \"Y\": 0.6940207481384277\n          }\n        ]\n      },\n      \"Id\": \"565b58a1-a816-40f3-9a1c-3e08665ef9c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e77c3944-4a2a-45fd-8cef-2d3323245d71\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.138671875,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757970809936523,\n          \"Height\": 0.030140824615955353,\n          \"Left\": 0.13042475283145905,\n          \"Top\": 0.6640409231185913\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13042475283145905,\n            \"Y\": 0.6640409231185913\n          },\n          {\n            \"X\": 0.23799802362918854,\n            \"Y\": 0.6641315817832947\n          },\n          {\n            \"X\": 0.23800446093082428,\n            \"Y\": 0.6941817402839661\n          },\n          {\n            \"X\": 0.13042952120304108,\n            \"Y\": 0.6940894722938538\n          }\n        ]\n      },\n      \"Id\": \"81d127f5-8967-4627-bd4b-0e2f02bfb63d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4867611c-8c16-47a8-8125-986390f84f51\",\n            \"50d678af-7d77-4179-98cf-ada7b994d4f2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.701171875,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075926125049591,\n          \"Height\": 0.0301424041390419,\n          \"Left\": 0.23799802362918854,\n          \"Top\": 0.6641315817832947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23799802362918854,\n            \"Y\": 0.6641315817832947\n          },\n          {\n            \"X\": 0.345582515001297,\n            \"Y\": 0.664222240447998\n          },\n          {\n            \"X\": 0.34559065103530884,\n            \"Y\": 0.6942739486694336\n          },\n          {\n            \"X\": 0.23800446093082428,\n            \"Y\": 0.6941817402839661\n          }\n        ]\n      },\n      \"Id\": \"20b8de14-fb1c-4f13-9dad-54de8b3967e8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b2c13dc8-c5aa-4c37-b4c4-d09ef3bb944d\",\n            \"28653a67-7a24-490a-bb09-a9c83de43d9c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.359375,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10760552436113358,\n          \"Height\": 0.030143985524773598,\n          \"Left\": 0.345582515001297,\n          \"Top\": 0.664222240447998\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.345582515001297,\n            \"Y\": 0.664222240447998\n          },\n          {\n            \"X\": 0.4531782567501068,\n            \"Y\": 0.6643129587173462\n          },\n          {\n            \"X\": 0.45318806171417236,\n            \"Y\": 0.6943662166595459\n          },\n          {\n            \"X\": 0.34559065103530884,\n            \"Y\": 0.6942739486694336\n          }\n        ]\n      },\n      \"Id\": \"25b6bf0f-b1a3-4338-a600-4c8e34fdb12b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5838464-dc79-4d9a-8d6e-a4c17e020fb1\",\n            \"3a412335-cb03-44a2-93da-cbf3459e50e7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.896484375,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08621195703744888,\n          \"Height\": 0.030127208679914474,\n          \"Left\": 0.4531782567501068,\n          \"Top\": 0.6643129587173462\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4531782567501068,\n            \"Y\": 0.6643129587173462\n          },\n          {\n            \"X\": 0.5393790602684021,\n            \"Y\": 0.6643856167793274\n          },\n          {\n            \"X\": 0.5393902063369751,\n            \"Y\": 0.6944401264190674\n          },\n          {\n            \"X\": 0.45318806171417236,\n            \"Y\": 0.6943662166595459\n          }\n        ]\n      },\n      \"Id\": \"7573ae69-1f4e-42de-945a-74093e81e4b3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84c56ce5-b0d1-435f-8284-af42862cd52f\",\n            \"f2c9810a-2038-4343-8eb4-da61cf2bc5ac\",\n            \"99995cee-f9a5-4f78-a650-8f82c03ea9c0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 93.310546875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 4,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4028486907482147,\n          \"Height\": 0.011580433696508408,\n          \"Left\": 0.05028511956334114,\n          \"Top\": 0.5162391066551208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05028511956334114,\n            \"Y\": 0.5162391066551208\n          },\n          {\n            \"X\": 0.4531301259994507,\n            \"Y\": 0.516549825668335\n          },\n          {\n            \"X\": 0.45313382148742676,\n            \"Y\": 0.5278195738792419\n          },\n          {\n            \"X\": 0.050286438316106796,\n            \"Y\": 0.5275067090988159\n          }\n        ]\n      },\n      \"Id\": \"8257642e-277c-43c5-bccb-565ce9523082\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6c32ad8e-1d2d-4040-a9cd-8d33c420f4cd\",\n            \"1a1475c6-7eac-4783-8df0-9df013b070a4\",\n            \"c67680c5-54d9-46db-a8b5-d642a4d42890\",\n            \"51f336c6-8c59-41d2-8f40-8401f5839ba2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 95.361328125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08012344688177109,\n          \"Height\": 0.030761606991291046,\n          \"Left\": 0.050291743129491806,\n          \"Top\": 0.5728822350502014\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.050291743129491806,\n            \"Y\": 0.5728822350502014\n          },\n          {\n            \"X\": 0.1304103285074234,\n            \"Y\": 0.5729461908340454\n          },\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          },\n          {\n            \"X\": 0.050295330584049225,\n            \"Y\": 0.6035786271095276\n          }\n        ]\n      },\n      \"Id\": \"ae44abe6-3b07-4d25-a81e-d66671031b04\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"430bc5b3-9e95-4331-854b-20054e25a7b1\",\n            \"33c70135-d6cf-4142-9c44-904129564352\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 96.533203125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757476836442947,\n          \"Height\": 0.030785134062170982,\n          \"Left\": 0.1304103285074234,\n          \"Top\": 0.5729461908340454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1304103285074234,\n            \"Y\": 0.5729461908340454\n          },\n          {\n            \"X\": 0.2379785180091858,\n            \"Y\": 0.5730321407318115\n          },\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          },\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          }\n        ]\n      },\n      \"Id\": \"88250256-9414-43f5-9823-c0101968e050\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5ef673ad-a236-4226-b8f8-1941cbdcd40d\",\n            \"bb1a05fe-9fb9-41ba-ba67-91d5a4b7e284\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 96.435546875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10758771002292633,\n          \"Height\": 0.030786747112870216,\n          \"Left\": 0.2379785180091858,\n          \"Top\": 0.5730321407318115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2379785180091858,\n            \"Y\": 0.5730321407318115\n          },\n          {\n            \"X\": 0.34555792808532715,\n            \"Y\": 0.5731180310249329\n          },\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          },\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          }\n        ]\n      },\n      \"Id\": \"b8e52974-00ca-4083-9820-46a537bae27a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c7446fea-9a04-4436-8c83-cd65531c6596\",\n            \"6b90a840-5ae6-48d8-9e92-8f3d60dade79\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 94.53125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10760065168142319,\n          \"Height\": 0.03078836016356945,\n          \"Left\": 0.34555792808532715,\n          \"Top\": 0.5731180310249329\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34555792808532715,\n            \"Y\": 0.5731180310249329\n          },\n          {\n            \"X\": 0.45314860343933105,\n            \"Y\": 0.573203980922699\n          },\n          {\n            \"X\": 0.45315858721733093,\n            \"Y\": 0.6039063930511475\n          },\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          }\n        ]\n      },\n      \"Id\": \"9eb3a743-2040-4f04-97bf-397862b8a1ab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ee337765-ddc6-40f6-bcf3-62c122e0769a\",\n            \"efaf904b-58c5-4b2f-85a5-4dd02c05ea6e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 92.724609375,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08620855957269669,\n          \"Height\": 0.030106196179986,\n          \"Left\": 0.4531535804271698,\n          \"Top\": 0.5885550379753113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4531535804271698,\n            \"Y\": 0.5885550379753113\n          },\n          {\n            \"X\": 0.5393510460853577,\n            \"Y\": 0.5886245369911194\n          },\n          {\n            \"X\": 0.5393621325492859,\n            \"Y\": 0.6186612844467163\n          },\n          {\n            \"X\": 0.45316338539123535,\n            \"Y\": 0.6185905337333679\n          }\n        ]\n      },\n      \"Id\": \"c39392b0-2333-456a-b528-698542c776b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"920c3c17-e035-4d8d-8752-a95e0e8e3118\",\n            \"173eae4b-f858-4c9d-baaa-19399ab48773\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 95.3125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0801246166229248,\n          \"Height\": 0.030096406117081642,\n          \"Left\": 0.050295330584049225,\n          \"Top\": 0.6035786271095276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.050295330584049225,\n            \"Y\": 0.6035786271095276\n          },\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          },\n          {\n            \"X\": 0.13041993975639343,\n            \"Y\": 0.6336750388145447\n          },\n          {\n            \"X\": 0.050298839807510376,\n            \"Y\": 0.6336086988449097\n          }\n        ]\n      },\n      \"Id\": \"625f3d75-1d2f-4de0-8365-f5fe9ef49f0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"54e8c5a8-0538-4f1f-9448-d4675cae0884\",\n            \"d439f13c-1f13-4b4c-9b85-7d709e904dfa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 96.142578125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10757633298635483,\n          \"Height\": 0.030120309442281723,\n          \"Left\": 0.1304151862859726,\n          \"Top\": 0.6036438345909119\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1304151862859726,\n            \"Y\": 0.6036438345909119\n          },\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          },\n          {\n            \"X\": 0.23799152672290802,\n            \"Y\": 0.6337641477584839\n          },\n          {\n            \"X\": 0.13041993975639343,\n            \"Y\": 0.6336750388145447\n          }\n        ]\n      },\n      \"Id\": \"be42dcc5-69a1-47c8-928e-26e2ed7c2d26\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52fde0e8-eb88-4a77-89e0-fda80e67bc00\",\n            \"9830e4de-8e4d-4569-9ee9-e978ab063408\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 96.38671875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1075892373919487,\n          \"Height\": 0.03012188710272312,\n          \"Left\": 0.23798508942127228,\n          \"Top\": 0.6037313342094421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23798508942127228,\n            \"Y\": 0.6037313342094421\n          },\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          },\n          {\n            \"X\": 0.3455743193626404,\n            \"Y\": 0.6338531970977783\n          },\n          {\n            \"X\": 0.23799152672290802,\n            \"Y\": 0.6337641477584839\n          }\n        ]\n      },\n      \"Id\": \"2e22bbb4-2b97-4f48-ba6e-3d09e1595824\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6b4b0f5a-62ff-4c1e-abe3-4b128364e734\",\n            \"98c7b7b7-7eea-42ea-ad5e-5d9d001a3bbe\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 94.482421875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10760214924812317,\n          \"Height\": 0.03012346476316452,\n          \"Left\": 0.3455662131309509,\n          \"Top\": 0.6038188934326172\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3455662131309509,\n            \"Y\": 0.6038188934326172\n          },\n          {\n            \"X\": 0.45315858721733093,\n            \"Y\": 0.6039063930511475\n          },\n          {\n            \"X\": 0.4531683623790741,\n            \"Y\": 0.6339423060417175\n          },\n          {\n            \"X\": 0.3455743193626404,\n            \"Y\": 0.6338531970977783\n          }\n        ]\n      },\n      \"Id\": \"515271d8-6cc8-47c1-a06d-76e1d0f3cea5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5970178e-d5fe-49cd-a68f-fb9f15b4b9ec\",\n            \"9e9f2eb4-78d1-4599-873e-df7d2163a0c1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_TITLE\",\n      \"Confidence\": 74.4140625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.41100960969924927,\n          \"Height\": 0.014810915105044842,\n          \"Left\": 0.04231319576501846,\n          \"Top\": 0.5128515958786011\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04231319576501846,\n            \"Y\": 0.5128515958786011\n          },\n          {\n            \"X\": 0.4533180892467499,\n            \"Y\": 0.5131679177284241\n          },\n          {\n            \"X\": 0.45332279801368713,\n            \"Y\": 0.5276625156402588\n          },\n          {\n            \"X\": 0.04231482744216919,\n            \"Y\": 0.5273433327674866\n          }\n        ]\n      },\n      \"Id\": \"87d7a81e-dbec-4a87-9b33-e3e3c4eccec7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0cc73077-7f4a-4fec-9e65-8ed679b504d8\",\n            \"99d29c7c-9c65-442d-9170-e2943adada0b\",\n            \"3f30c560-e227-4962-9507-e89fc0846897\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 98.876953125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5585248470306396,\n          \"Height\": 0.011111442930996418,\n          \"Left\": 0.040301643311977386,\n          \"Top\": 0.6954615712165833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.040301643311977386,\n            \"Y\": 0.6954615712165833\n          },\n          {\n            \"X\": 0.5988221764564514,\n            \"Y\": 0.6959409117698669\n          },\n          {\n            \"X\": 0.5988264679908752,\n            \"Y\": 0.7065730094909668\n          },\n          {\n            \"X\": 0.040302831679582596,\n            \"Y\": 0.7060908079147339\n          }\n        ]\n      },\n      \"Id\": \"aca9b229-d6b4-4d5e-8630-0d735ba379e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d5663a7-8661-487a-9bfb-9c0dd74227c0\",\n            \"ddf6d487-8666-420d-b8e5-7e8d9dc95cba\",\n            \"e41f9b56-b7a9-43db-a56c-cb53d7435788\",\n            \"ceb102a7-a02b-4947-a8a5-1d929beb80ed\",\n            \"996a1c23-ea1a-477e-9a03-1a8d86777e6f\",\n            \"a2acc999-696a-4510-bb4b-67b6905b9f94\",\n            \"1867f5ef-3723-4f26-bc46-66da8e8fb606\",\n            \"5fdee53e-9e7e-4639-b29f-65180b8ffccd\",\n            \"299b0be4-2fb6-4d01-955e-9b5cb1911a6e\",\n            \"31af1c05-5e3b-41b4-885b-871415c8734b\",\n            \"600222da-b6b7-4753-a4e5-5a44c218c688\",\n            \"35e1a17b-05a8-448d-ae3f-8779f56d9c8c\",\n            \"03878afa-9c94-4719-8912-efee83533970\",\n            \"dbeae94e-e797-4019-9ca3-e13698789d37\",\n            \"b7852c11-2268-49bd-b21e-0e075f4b778a\",\n            \"a94f5b01-f62c-4bf7-bf4c-0e78e0a86692\",\n            \"897e9399-ed26-4eef-a535-2061fd96b749\",\n            \"827aceca-bbdf-4962-b95e-14755b230ea0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.72560119628906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20990806818008423,\n          \"Height\": 0.009470672346651554,\n          \"Left\": 0.043977364897727966,\n          \"Top\": 0.21260201930999756\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.043977364897727966,\n            \"Y\": 0.21260201930999756\n          },\n          {\n            \"X\": 0.25388336181640625,\n            \"Y\": 0.2127329707145691\n          },\n          {\n            \"X\": 0.253885418176651,\n            \"Y\": 0.22207269072532654\n          },\n          {\n            \"X\": 0.04397842660546303,\n            \"Y\": 0.2219407856464386\n          }\n        ]\n      },\n      \"Id\": \"bc3625da-9319-4236-9bd2-aac9c52177df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b1bbeaf4-f9f7-466b-8ef6-f2cccfd07455\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96ea7b43-dea4-4dca-86ac-fefbb00f53a0\",\n            \"3bd451f6-ab21-402e-99ae-aede74b2d2bb\",\n            \"679f521f-0335-4de2-924f-1618805935ac\",\n            \"38403767-8e1f-46ca-b4e3-8968e386e213\",\n            \"c3be0223-0dba-4cb7-a37b-3adec2751ec3\",\n            \"33792895-49cd-4240-b1fb-96b5616b55b3\",\n            \"c5d6af22-5d10-4078-9728-2641b3a66c22\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.91876220703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27904003858566284,\n          \"Height\": 0.03053300641477108,\n          \"Left\": 0.07680170238018036,\n          \"Top\": 0.23063334822654724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07680170238018036,\n            \"Y\": 0.23063334822654724\n          },\n          {\n            \"X\": 0.35583338141441345,\n            \"Y\": 0.23080986738204956\n          },\n          {\n            \"X\": 0.3558417558670044,\n            \"Y\": 0.26116636395454407\n          },\n          {\n            \"X\": 0.07680566608905792,\n            \"Y\": 0.26098573207855225\n          }\n        ]\n      },\n      \"Id\": \"b1bbeaf4-f9f7-466b-8ef6-f2cccfd07455\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6220486d-2adb-4c84-b9cf-3e488804d07e\",\n            \"77ab2d6a-59c6-48f4-a387-30ae91ab75df\",\n            \"65498050-0219-421b-9879-f86d1b2a4827\",\n            \"8d53a13f-a28a-441f-b627-73bb3322b4c4\",\n            \"c682e8f3-f0f2-4e37-83be-9d1b558326d6\",\n            \"50b8272c-23d5-4bf9-9149-9d6d8390ad59\",\n            \"3bf6e069-edee-4c55-90e8-788f6694aa56\",\n            \"71f3cbc7-d35a-4a11-b2ea-35bad40a89a8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.76187133789062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20913682878017426,\n          \"Height\": 0.009138504974544048,\n          \"Left\": 0.4910505712032318,\n          \"Top\": 0.21221373975276947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4910505712032318,\n            \"Y\": 0.21221373975276947\n          },\n          {\n            \"X\": 0.7001833319664001,\n            \"Y\": 0.21234413981437683\n          },\n          {\n            \"X\": 0.7001873850822449,\n            \"Y\": 0.2213522344827652\n          },\n          {\n            \"X\": 0.4910537004470825,\n            \"Y\": 0.221220925450325\n          }\n        ]\n      },\n      \"Id\": \"5492f29d-6fb5-449b-adf8-674a9f442c6a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"dcd6f82b-c3d2-40ab-adc2-4a90bdd199b9\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7a34a578-9ce6-46f4-9481-8a37c4745d86\",\n            \"958600f7-e4ff-4889-aeee-adb1ddee355c\",\n            \"9518f7c5-795e-4ef5-b8b1-b5cd4b335660\",\n            \"760ace5f-3d58-4302-9cd2-d1ed00b4b72e\",\n            \"5b3e07f9-de8b-49bc-97ee-1382603a49a0\",\n            \"2d948a47-276d-480b-a08c-b89ec7d7ad00\",\n            \"b046cc57-735b-41dc-843f-d362054f9708\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.970458984375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2757059633731842,\n          \"Height\": 0.029870038852095604,\n          \"Left\": 0.5079075694084167,\n          \"Top\": 0.23190689086914062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5079075694084167,\n            \"Y\": 0.23190689086914062\n          },\n          {\n            \"X\": 0.783598780632019,\n            \"Y\": 0.23208142817020416\n          },\n          {\n            \"X\": 0.7836135625839233,\n            \"Y\": 0.2617769241333008\n          },\n          {\n            \"X\": 0.507918119430542,\n            \"Y\": 0.2615984082221985\n          }\n        ]\n      },\n      \"Id\": \"dcd6f82b-c3d2-40ab-adc2-4a90bdd199b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d6fde40c-5de5-447d-99a3-87d928e5992c\",\n            \"75717fad-c5bc-47ff-9616-f924c7cbaa2f\",\n            \"31799381-ac00-48b1-95de-d01dee739837\",\n            \"253cacec-63d7-4d58-969b-63641ba340ff\",\n            \"e2924f0a-79d4-4121-8551-64c39b0074a1\",\n            \"d206f461-a7f7-4bb9-b71d-0e2a6053a5c3\",\n            \"d10d4420-236c-40c9-a462-8dfab8335d7a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.6942138671875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12352614849805832,\n          \"Height\": 0.009755231440067291,\n          \"Left\": 0.04269033297896385,\n          \"Top\": 0.28831449151039124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04269033297896385,\n            \"Y\": 0.28831449151039124\n          },\n          {\n            \"X\": 0.16621476411819458,\n            \"Y\": 0.28839609026908875\n          },\n          {\n            \"X\": 0.16621647775173187,\n            \"Y\": 0.2980697453022003\n          },\n          {\n            \"X\": 0.0426914282143116,\n            \"Y\": 0.29798755049705505\n          }\n        ]\n      },\n      \"Id\": \"ce9ed0c8-2a49-423d-8d23-dd41698cce4d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"729f4f67-d171-4f81-8fd0-a555aae52cdb\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e4b8495-6c17-49ed-85e9-ea817b5e65a7\",\n            \"e1129dbe-b9f8-4836-a61e-444dd6e5ebec\",\n            \"b7168b73-f2c2-4638-ae03-71cc394132d3\",\n            \"256277a0-609d-4263-8cda-3532048ee054\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96.17017364501953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14816471934318542,\n          \"Height\": 0.02812107466161251,\n          \"Left\": 0.12950336933135986,\n          \"Top\": 0.3007138669490814\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12950336933135986,\n            \"Y\": 0.3007138669490814\n          },\n          {\n            \"X\": 0.2776615023612976,\n            \"Y\": 0.30081263184547424\n          },\n          {\n            \"X\": 0.2776680886745453,\n            \"Y\": 0.3288349509239197\n          },\n          {\n            \"X\": 0.12950779497623444,\n            \"Y\": 0.3287341594696045\n          }\n        ]\n      },\n      \"Id\": \"729f4f67-d171-4f81-8fd0-a555aae52cdb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"19baf15e-ab45-436c-af37-b930ef61e540\",\n            \"7124d907-3c3e-4538-aa61-500154c18cde\",\n            \"cd6e2f36-d729-46ce-aba9-c09c955f0186\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.70014953613281,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03888465836644173,\n          \"Height\": 0.008032383397221565,\n          \"Left\": 0.3739936351776123,\n          \"Top\": 0.28786614537239075\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3739936351776123,\n            \"Y\": 0.28786614537239075\n          },\n          {\n            \"X\": 0.41287583112716675,\n            \"Y\": 0.28789183497428894\n          },\n          {\n            \"X\": 0.41287827491760254,\n            \"Y\": 0.29589852690696716\n          },\n          {\n            \"X\": 0.37399590015411377,\n            \"Y\": 0.2958727180957794\n          }\n        ]\n      },\n      \"Id\": \"a76e7800-fdfa-4cbc-9aec-da7aa59816f2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"141f4bb1-8b3f-40f4-a659-c170d9e618b4\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"059e0927-e168-45e1-85ca-360a2a7e5882\",\n            \"6852c8b6-d814-4f93-a4c8-126c9ed2c221\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96837615966797,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12011733651161194,\n          \"Height\": 0.012758605182170868,\n          \"Left\": 0.4085608720779419,\n          \"Top\": 0.305570513010025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4085608720779419,\n            \"Y\": 0.305570513010025\n          },\n          {\n            \"X\": 0.5286735892295837,\n            \"Y\": 0.30565083026885986\n          },\n          {\n            \"X\": 0.5286781787872314,\n            \"Y\": 0.3183291256427765\n          },\n          {\n            \"X\": 0.4085647165775299,\n            \"Y\": 0.31824803352355957\n          }\n        ]\n      },\n      \"Id\": \"141f4bb1-8b3f-40f4-a659-c170d9e618b4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"853b1c3e-50de-40e5-af48-ff7d30d0adb3\",\n            \"82bc3f1d-8021-47b8-88a8-ac7cb9b039ab\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.79537963867188,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04062385857105255,\n          \"Height\": 0.008034516125917435,\n          \"Left\": 0.6280505061149597,\n          \"Top\": 0.28770026564598083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6280505061149597,\n            \"Y\": 0.28770026564598083\n          },\n          {\n            \"X\": 0.6686708331108093,\n            \"Y\": 0.2877270579338074\n          },\n          {\n            \"X\": 0.6686743497848511,\n            \"Y\": 0.2957347631454468\n          },\n          {\n            \"X\": 0.6280538439750671,\n            \"Y\": 0.2957077920436859\n          }\n        ]\n      },\n      \"Id\": \"e1dffadf-a7e8-45cd-95d6-78991a972987\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"4508bfda-d0ed-47a5-860b-b8b172057e24\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"977fdeb1-150d-4ce7-8f90-ba24f22b4874\",\n            \"4a79b9c4-02a0-4bcb-8448-1dcfc6bcd961\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.81873321533203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08038433641195297,\n          \"Height\": 0.010397611185908318,\n          \"Left\": 0.6371336579322815,\n          \"Top\": 0.3080589771270752\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6371336579322815,\n            \"Y\": 0.3080589771270752\n          },\n          {\n            \"X\": 0.7175132036209106,\n            \"Y\": 0.30811282992362976\n          },\n          {\n            \"X\": 0.7175180315971375,\n            \"Y\": 0.31845659017562866\n          },\n          {\n            \"X\": 0.6371380090713501,\n            \"Y\": 0.31840232014656067\n          }\n        ]\n      },\n      \"Id\": \"4508bfda-d0ed-47a5-860b-b8b172057e24\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4889183d-96eb-4ed0-9d1e-9ebb65f256b3\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.78351593017578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10849125683307648,\n          \"Height\": 0.019425412639975548,\n          \"Left\": 0.7455946207046509,\n          \"Top\": 0.287777841091156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7455946207046509,\n            \"Y\": 0.287777841091156\n          },\n          {\n            \"X\": 0.85407555103302,\n            \"Y\": 0.28784945607185364\n          },\n          {\n            \"X\": 0.8540858626365662,\n            \"Y\": 0.3072032630443573\n          },\n          {\n            \"X\": 0.7456038594245911,\n            \"Y\": 0.3071306347846985\n          }\n        ]\n      },\n      \"Id\": \"7cc162ce-9977-4d03-bb88-853c1d0a8047\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"ceb2bb84-e981-4ec6-9cc0-0d7e63f5d09e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ebafb3f4-a9ec-481e-a267-da2aaaf659fd\",\n            \"975f44f4-5640-4cfa-9e5c-b4094399628e\",\n            \"378dcc4c-8ed0-4b82-99a7-e77de814248b\",\n            \"ee983cfe-4d76-4f05-a2a4-7d5f68668f67\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.78189086914062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.120159812271595,\n          \"Height\": 0.010091796517372131,\n          \"Left\": 0.7611657381057739,\n          \"Top\": 0.3141482472419739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7611657381057739,\n            \"Y\": 0.3141482472419739\n          },\n          {\n            \"X\": 0.881320059299469,\n            \"Y\": 0.3142290711402893\n          },\n          {\n            \"X\": 0.8813255429267883,\n            \"Y\": 0.3242400288581848\n          },\n          {\n            \"X\": 0.7611705660820007,\n            \"Y\": 0.32415860891342163\n          }\n        ]\n      },\n      \"Id\": \"ceb2bb84-e981-4ec6-9cc0-0d7e63f5d09e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cce72047-c070-47fe-9518-2eae230d552c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.80554962158203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39309900999069214,\n          \"Height\": 0.009946632198989391,\n          \"Left\": 0.04269711673259735,\n          \"Top\": 0.3483557105064392\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04269711673259735,\n            \"Y\": 0.3483557105064392\n          },\n          {\n            \"X\": 0.43579307198524475,\n            \"Y\": 0.3486268222332001\n          },\n          {\n            \"X\": 0.4357961416244507,\n            \"Y\": 0.3583023250102997\n          },\n          {\n            \"X\": 0.0426982082426548,\n            \"Y\": 0.3580293357372284\n          }\n        ]\n      },\n      \"Id\": \"f6655a86-7515-4139-9670-0f83b1e9ea7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"ab78e089-f05d-4aa0-b22e-72d34786de74\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c93ab0db-b745-4c27-a08c-1634673f299f\",\n            \"4c3a7e80-d8cf-431b-9d5f-62cc51747248\",\n            \"f2a7ec77-1a18-4f80-a642-fd5f31379879\",\n            \"955949aa-276f-4ce5-ab68-3a67410800d2\",\n            \"30936ea0-3e84-4c04-a93a-3eb423f4a6dd\",\n            \"b7126e46-bcbd-41f4-925c-6b43863cf0b5\",\n            \"23f89d8d-acc0-478a-9f7c-c2c8b53388c8\",\n            \"5b97f988-4a70-4758-860a-31d43d77112c\",\n            \"cb180300-402a-4945-8805-c0f92c711221\",\n            \"eb6693bd-9c08-4233-a0a0-79b4007f74be\",\n            \"da3cc7ee-4dd4-4f42-a825-aad5a84bce36\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94241333007812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.278624951839447,\n          \"Height\": 0.03055400587618351,\n          \"Left\": 0.07120364904403687,\n          \"Top\": 0.35871630907058716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07120364904403687,\n            \"Y\": 0.35871630907058716\n          },\n          {\n            \"X\": 0.3498203158378601,\n            \"Y\": 0.35890987515449524\n          },\n          {\n            \"X\": 0.3498286008834839,\n            \"Y\": 0.3892703056335449\n          },\n          {\n            \"X\": 0.07120753079652786,\n            \"Y\": 0.38907262682914734\n          }\n        ]\n      },\n      \"Id\": \"ab78e089-f05d-4aa0-b22e-72d34786de74\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37f24d08-cd7c-4cb8-939d-c338ec61ccc8\",\n            \"79e5bd30-42cb-4098-818f-47426f86e14a\",\n            \"57abc660-b08b-4d02-b988-cb5b40b5be75\",\n            \"7ff7da55-d95d-4730-8f40-cbad031e084a\",\n            \"bd2bfcd9-304b-4d22-a150-64a11cafc31b\",\n            \"a4048dd7-3492-410f-9d8a-124f29e84fbe\",\n            \"f163f234-89d0-48c4-bc6f-d47e1a929975\",\n            \"9de115b5-350f-4769-aacb-5187d60184f9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.84884643554688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13872452080249786,\n          \"Height\": 0.01010618545114994,\n          \"Left\": 0.5887519717216492,\n          \"Top\": 0.34806501865386963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5887519717216492,\n            \"Y\": 0.34806501865386963\n          },\n          {\n            \"X\": 0.7274718284606934,\n            \"Y\": 0.34816065430641174\n          },\n          {\n            \"X\": 0.7274764776229858,\n            \"Y\": 0.3581711947917938\n          },\n          {\n            \"X\": 0.5887559056282043,\n            \"Y\": 0.3580748736858368\n          }\n        ]\n      },\n      \"Id\": \"b8b72d5e-6b04-491e-8bc6-5f56c5d099ce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"70a37294-6bb9-4f81-be24-b737e51c99c8\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d92b7f4d-8539-4dcb-bc0f-b50ac4a32ec1\",\n            \"f1e4bca9-cfc8-4c02-9e98-0d4bd00c6c6b\",\n            \"1a90263a-7f4a-476f-8c7c-225610224586\",\n            \"fcc0a0fa-c270-48f1-990d-352b7ebb396b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.2671890258789,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16466809809207916,\n          \"Height\": 0.018802156671881676,\n          \"Left\": 0.6293787360191345,\n          \"Top\": 0.36410918831825256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6293787360191345,\n            \"Y\": 0.36410918831825256\n          },\n          {\n            \"X\": 0.7940374612808228,\n            \"Y\": 0.36422398686408997\n          },\n          {\n            \"X\": 0.7940468192100525,\n            \"Y\": 0.3829113245010376\n          },\n          {\n            \"X\": 0.6293865442276001,\n            \"Y\": 0.3827950358390808\n          }\n        ]\n      },\n      \"Id\": \"70a37294-6bb9-4f81-be24-b737e51c99c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"35a23e84-69c5-4657-a34d-31d59853015b\",\n            \"4a3eb87a-0c67-4485-9ceb-ba1927ff7c02\",\n            \"e88207da-971f-4052-8649-6ae854db3670\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.69001770019531,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19135351479053497,\n          \"Height\": 0.009479185566306114,\n          \"Left\": 0.04227210953831673,\n          \"Top\": 0.4094010889530182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04227210953831673,\n            \"Y\": 0.4094010889530182\n          },\n          {\n            \"X\": 0.23362363874912262,\n            \"Y\": 0.40953874588012695\n          },\n          {\n            \"X\": 0.2336256206035614,\n            \"Y\": 0.41888028383255005\n          },\n          {\n            \"X\": 0.04227316007018089,\n            \"Y\": 0.41874176263809204\n          }\n        ]\n      },\n      \"Id\": \"f7cd683c-3b19-4dcd-bbec-b80307b02ca8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"7ed77f30-a577-446a-b271-e29c51201b43\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3223c48-cd7a-4441-8326-74ee827f9b97\",\n            \"834a1aa5-64f0-4c85-b595-6b58e421b6df\",\n            \"885c1c11-4447-48e0-87d5-24980a79a3da\",\n            \"d22c8d8c-8d40-4a82-87a5-eaee2cc6b4e5\",\n            \"75d63fdc-5bab-42fb-856c-9bdff865e95b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97813415527344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08164100348949432,\n          \"Height\": 0.010068328119814396,\n          \"Left\": 0.10576706379652023,\n          \"Top\": 0.4301304221153259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10576706379652023,\n            \"Y\": 0.4301304221153259\n          },\n          {\n            \"X\": 0.18740618228912354,\n            \"Y\": 0.43018999695777893\n          },\n          {\n            \"X\": 0.18740805983543396,\n            \"Y\": 0.44019874930381775\n          },\n          {\n            \"X\": 0.10576852411031723,\n            \"Y\": 0.4401388168334961\n          }\n        ]\n      },\n      \"Id\": \"7ed77f30-a577-446a-b271-e29c51201b43\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"577af623-1952-436e-835e-f4039b012c26\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.88859558105469,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10844076424837112,\n          \"Height\": 0.008085600100457668,\n          \"Left\": 0.276822954416275,\n          \"Top\": 0.40923619270324707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.276822954416275,\n            \"Y\": 0.40923619270324707\n          },\n          {\n            \"X\": 0.3852613866329193,\n            \"Y\": 0.40931418538093567\n          },\n          {\n            \"X\": 0.38526371121406555,\n            \"Y\": 0.4173218011856079\n          },\n          {\n            \"X\": 0.27682483196258545,\n            \"Y\": 0.4172433912754059\n          }\n        ]\n      },\n      \"Id\": \"1ab9c226-5eaa-404d-a540-458ed9357c61\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e370cbe1-5b5b-4e1b-9402-89d9255c4ff2\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99338f6e-65d3-44e6-9918-fb51ee647f23\",\n            \"69dbc662-a26a-4de6-b30c-a83a8873946a\",\n            \"29968e98-c21f-4671-a6fd-412f6eff7a12\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.90617370605469,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12659744918346405,\n          \"Height\": 0.012438144534826279,\n          \"Left\": 0.33687859773635864,\n          \"Top\": 0.4299653470516205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33687859773635864,\n            \"Y\": 0.4299653470516205\n          },\n          {\n            \"X\": 0.4634719789028168,\n            \"Y\": 0.43005767464637756\n          },\n          {\n            \"X\": 0.4634760618209839,\n            \"Y\": 0.44240349531173706\n          },\n          {\n            \"X\": 0.3368818759918213,\n            \"Y\": 0.4423104226589203\n          }\n        ]\n      },\n      \"Id\": \"e370cbe1-5b5b-4e1b-9402-89d9255c4ff2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f31e3b5e-42b5-4681-adbd-5e1d60752e8e\",\n            \"b152fcc6-1ccb-45f0-bacd-d2e95dcfe502\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.91304016113281,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22432009875774384,\n          \"Height\": 0.010173100978136063,\n          \"Left\": 0.6484120488166809,\n          \"Top\": 0.40850237011909485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6484120488166809,\n            \"Y\": 0.40850237011909485\n          },\n          {\n            \"X\": 0.8727266788482666,\n            \"Y\": 0.4086635708808899\n          },\n          {\n            \"X\": 0.8727321624755859,\n            \"Y\": 0.4186754524707794\n          },\n          {\n            \"X\": 0.64841628074646,\n            \"Y\": 0.41851314902305603\n          }\n        ]\n      },\n      \"Id\": \"58d05b68-e529-4cd7-bd80-5ebfdaec738c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"cb9900fc-35b4-4d42-b191-8f5bbfebc86a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"861f2955-5e65-4bba-8937-24bccbb54023\",\n            \"2dbce7b9-43ca-4ad7-83e4-f40a95652e2f\",\n            \"00f59a44-26d7-405d-a0b8-be0b4ba2a16d\",\n            \"e6aed907-79f1-4122-88e0-c7b296d25b39\",\n            \"55b63aad-1792-448c-bcd2-79c0c40a1fdf\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.6707763671875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053600016981363297,\n          \"Height\": 0.012720463797450066,\n          \"Left\": 0.7279414534568787,\n          \"Top\": 0.42824825644493103\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7279414534568787,\n            \"Y\": 0.42824825644493103\n          },\n          {\n            \"X\": 0.7815352082252502,\n            \"Y\": 0.4282872974872589\n          },\n          {\n            \"X\": 0.7815414667129517,\n            \"Y\": 0.44096872210502625\n          },\n          {\n            \"X\": 0.7279474139213562,\n            \"Y\": 0.4409293830394745\n          }\n        ]\n      },\n      \"Id\": \"cb9900fc-35b4-4d42-b191-8f5bbfebc86a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"53be3dbc-888c-47f5-be40-dda3a32a6cc3\",\n            \"df4bbfc3-c830-4fd3-a0f2-1c635afa53e4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.70464324951172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3512130379676819,\n          \"Height\": 0.009603067301213741,\n          \"Left\": 0.05307511240243912,\n          \"Top\": 0.4544453024864197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05307511240243912,\n            \"Y\": 0.4544453024864197\n          },\n          {\n            \"X\": 0.40428534150123596,\n            \"Y\": 0.4547056257724762\n          },\n          {\n            \"X\": 0.4042881429195404,\n            \"Y\": 0.4640483558177948\n          },\n          {\n            \"X\": 0.05307621508836746,\n            \"Y\": 0.46378645300865173\n          }\n        ]\n      },\n      \"Id\": \"cd235c9a-ee5d-40aa-b93f-e60ef6480827\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"79553e7f-7d1f-4f78-8498-948d235f7aee\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e605d196-a0e3-4db2-a084-a0bf9998d197\",\n            \"dd8cf520-af01-494f-b68c-d850a377a81b\",\n            \"7209b715-8119-4381-9962-f3c2f448e47d\",\n            \"f7b977a1-9974-47eb-b38e-d31d167335fd\",\n            \"f0356862-f79a-4abd-b62b-d0ab5e45bfc0\",\n            \"54e155ff-0f8c-484d-b50c-e61aa2cb4881\",\n            \"2a329573-93fc-442a-9bc6-489e5e0abae6\",\n            \"a2c4fd3a-4612-4342-9cc5-33332e7430b8\",\n            \"1efb6e7d-41b1-46ea-8759-497cbdb45de8\",\n            \"18aa70fe-1b08-4d7d-8e7e-429b795d7a50\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.41598510742188,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04924238845705986,\n          \"Height\": 0.009045735001564026,\n          \"Left\": 0.05264847353100777,\n          \"Top\": 0.4991498589515686\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05264847353100777,\n            \"Y\": 0.4991498589515686\n          },\n          {\n            \"X\": 0.10188956558704376,\n            \"Y\": 0.4991874396800995\n          },\n          {\n            \"X\": 0.10189086198806763,\n            \"Y\": 0.5081955790519714\n          },\n          {\n            \"X\": 0.05264953523874283,\n            \"Y\": 0.5081577897071838\n          }\n        ]\n      },\n      \"Id\": \"79553e7f-7d1f-4f78-8498-948d235f7aee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52dd7b25-729e-4e37-a67b-7a05b6034732\",\n            \"7fa626c0-ce16-4c57-9a55-8b9ed6a7d46e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97637939453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03844790533185005,\n          \"Height\": 0.007368952035903931,\n          \"Left\": 0.17575034499168396,\n          \"Top\": 0.4702169895172119\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17575034499168396,\n            \"Y\": 0.4702169895172119\n          },\n          {\n            \"X\": 0.21419675648212433,\n            \"Y\": 0.4702457785606384\n          },\n          {\n            \"X\": 0.2141982465982437,\n            \"Y\": 0.47758594155311584\n          },\n          {\n            \"X\": 0.1757516711950302,\n            \"Y\": 0.4775570333003998\n          }\n        ]\n      },\n      \"Id\": \"a0d74b28-4b57-4575-b10d-0567a570c888\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1e762de0-b01b-481d-bdc4-cf20f31480a8\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cbfdbe95-2234-4fa5-a9d0-0e1e10db260d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.34265899658203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009936746209859848,\n          \"Height\": 0.008014727383852005,\n          \"Left\": 0.16063141822814941,\n          \"Top\": 0.47053930163383484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16063141822814941,\n            \"Y\": 0.47053930163383484\n          },\n          {\n            \"X\": 0.17056672275066376,\n            \"Y\": 0.47054675221443176\n          },\n          {\n            \"X\": 0.17056815326213837,\n            \"Y\": 0.47855404019355774\n          },\n          {\n            \"X\": 0.16063280403614044,\n            \"Y\": 0.4785465598106384\n          }\n        ]\n      },\n      \"Id\": \"1e762de0-b01b-481d-bdc4-cf20f31480a8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0faee65d-6f40-41f6-aa60-42c39decffdc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.85360717773438,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03499617427587509,\n          \"Height\": 0.009368658997118473,\n          \"Left\": 0.27381306886672974,\n          \"Top\": 0.46995678544044495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27381306886672974,\n            \"Y\": 0.46995678544044495\n          },\n          {\n            \"X\": 0.3088068962097168,\n            \"Y\": 0.46998298168182373\n          },\n          {\n            \"X\": 0.3088092505931854,\n            \"Y\": 0.47932544350624084\n          },\n          {\n            \"X\": 0.27381524443626404,\n            \"Y\": 0.47929906845092773\n          }\n        ]\n      },\n      \"Id\": \"88ab0ba4-b934-4491-b328-bb8d56812d9c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"8335a4bc-e8f1-4731-bf88-d03782758008\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"98b61ae6-7069-4c7b-9e38-32cca1f292c7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.85347747802734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010370109230279922,\n          \"Height\": 0.008015437051653862,\n          \"Left\": 0.2582608759403229,\n          \"Top\": 0.4709460735321045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2582608759403229,\n            \"Y\": 0.4709460735321045\n          },\n          {\n            \"X\": 0.26862913370132446,\n            \"Y\": 0.4709538519382477\n          },\n          {\n            \"X\": 0.2686309814453125,\n            \"Y\": 0.4789615273475647\n          },\n          {\n            \"X\": 0.25826266407966614,\n            \"Y\": 0.4789537191390991\n          }\n        ]\n      },\n      \"Id\": \"8335a4bc-e8f1-4731-bf88-d03782758008\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5efb015f-7081-41ee-b9a3-18758dafdd04\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9531478881836,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04406452178955078,\n          \"Height\": 0.009041871875524521,\n          \"Left\": 0.17618505656719208,\n          \"Top\": 0.48523107171058655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17618505656719208,\n            \"Y\": 0.48523107171058655\n          },\n          {\n            \"X\": 0.22024773061275482,\n            \"Y\": 0.485264390707016\n          },\n          {\n            \"X\": 0.22024956345558167,\n            \"Y\": 0.49427294731140137\n          },\n          {\n            \"X\": 0.1761866956949234,\n            \"Y\": 0.4942394196987152\n          }\n        ]\n      },\n      \"Id\": \"a707945f-47ee-4a54-b122-6ec8fd0c26a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"96d10071-8e11-4918-bfff-30abd3efe40c\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"679529f8-0d6f-4a1c-93fb-18153d91876e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94603729248047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00993682723492384,\n          \"Height\": 0.008014933206140995,\n          \"Left\": 0.1606341451406479,\n          \"Top\": 0.48622024059295654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1606341451406479,\n            \"Y\": 0.48622024059295654\n          },\n          {\n            \"X\": 0.1705695390701294,\n            \"Y\": 0.48622775077819824\n          },\n          {\n            \"X\": 0.170570969581604,\n            \"Y\": 0.49423515796661377\n          },\n          {\n            \"X\": 0.16063553094863892,\n            \"Y\": 0.4942276179790497\n          }\n        ]\n      },\n      \"Id\": \"96d10071-8e11-4918-bfff-30abd3efe40c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9840b3f8-09dc-49ee-a889-44026f51706e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8193588256836,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08252139389514923,\n          \"Height\": 0.009405199438333511,\n          \"Left\": 0.27338454127311707,\n          \"Top\": 0.48497089743614197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27338454127311707,\n            \"Y\": 0.48497089743614197\n          },\n          {\n            \"X\": 0.35590338706970215,\n            \"Y\": 0.4850332736968994\n          },\n          {\n            \"X\": 0.3559059500694275,\n            \"Y\": 0.4943760931491852\n          },\n          {\n            \"X\": 0.27338671684265137,\n            \"Y\": 0.4943133592605591\n          }\n        ]\n      },\n      \"Id\": \"b87a1d7a-b6b0-4af4-b4d7-7cb32e79eaba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6dcf86bf-54a4-4ba5-8f1d-1d36af09530a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0eb04549-25d2-4583-a64c-a3b6683a7589\",\n            \"7fb58062-961a-4603-89a0-d4c0e23074aa\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92205810546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010370264761149883,\n          \"Height\": 0.008349291980266571,\n          \"Left\": 0.2582641541957855,\n          \"Top\": 0.48562678694725037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2582641541957855,\n            \"Y\": 0.48562678694725037\n          },\n          {\n            \"X\": 0.2686325013637543,\n            \"Y\": 0.48563462495803833\n          },\n          {\n            \"X\": 0.2686344385147095,\n            \"Y\": 0.49397608637809753\n          },\n          {\n            \"X\": 0.25826603174209595,\n            \"Y\": 0.4939681887626648\n          }\n        ]\n      },\n      \"Id\": \"6dcf86bf-54a4-4ba5-8f1d-1d36af09530a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"944ede5d-f9c1-4c71-a04e-be65710a3e4f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9579849243164,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019887659698724747,\n          \"Height\": 0.007691303733736277,\n          \"Left\": 0.8213298916816711,\n          \"Top\": 0.48605260252952576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8213298916816711,\n            \"Y\": 0.48605260252952576\n          },\n          {\n            \"X\": 0.8412135243415833,\n            \"Y\": 0.48606765270233154\n          },\n          {\n            \"X\": 0.841217577457428,\n            \"Y\": 0.4937439262866974\n          },\n          {\n            \"X\": 0.8213338851928711,\n            \"Y\": 0.4937288165092468\n          }\n        ]\n      },\n      \"Id\": \"b61a1dfb-79a3-433a-8e6f-659efd4dceb5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"906a41a2-8982-44bb-b2ad-c2ae5b4992c8\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"df368f63-f572-47bd-9fec-868582b3e533\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.20040893554688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009945577941834927,\n          \"Height\": 0.007683700416237116,\n          \"Left\": 0.8074982166290283,\n          \"Top\": 0.4863758981227875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8074982166290283,\n            \"Y\": 0.4863758981227875\n          },\n          {\n            \"X\": 0.81743985414505,\n            \"Y\": 0.4863834083080292\n          },\n          {\n            \"X\": 0.8174437880516052,\n            \"Y\": 0.49405959248542786\n          },\n          {\n            \"X\": 0.8075021505355835,\n            \"Y\": 0.49405205249786377\n          }\n        ]\n      },\n      \"Id\": \"906a41a2-8982-44bb-b2ad-c2ae5b4992c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2ce53ad4-4d98-425f-8646-e5a5a219fb05\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.91595458984375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015133957378566265,\n          \"Height\": 0.007687916047871113,\n          \"Left\": 0.8818464875221252,\n          \"Top\": 0.48609837889671326\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8818464875221252,\n            \"Y\": 0.48609837889671326\n          },\n          {\n            \"X\": 0.8969761729240417,\n            \"Y\": 0.48610982298851013\n          },\n          {\n            \"X\": 0.8969804048538208,\n            \"Y\": 0.4937863051891327\n          },\n          {\n            \"X\": 0.8818506598472595,\n            \"Y\": 0.49377480149269104\n          }\n        ]\n      },\n      \"Id\": \"ad1dd60f-08df-4314-b27d-d9fb4c6953e6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"87726f54-0213-48c3-9131-5724a27c8b92\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"02711ad4-b8db-4035-a1a9-6a0eca0c92a1\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.60086059570312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01037865411490202,\n          \"Height\": 0.0076842415146529675,\n          \"Left\": 0.8667168021202087,\n          \"Top\": 0.4857531785964966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8667168021202087,\n            \"Y\": 0.4857531785964966\n          },\n          {\n            \"X\": 0.8770912885665894,\n            \"Y\": 0.48576101660728455\n          },\n          {\n            \"X\": 0.8770954608917236,\n            \"Y\": 0.49343743920326233\n          },\n          {\n            \"X\": 0.866720974445343,\n            \"Y\": 0.4934295415878296\n          }\n        ]\n      },\n      \"Id\": \"87726f54-0213-48c3-9131-5724a27c8b92\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d29a6f0f-e2e0-4b41-baa7-e91c25ec75b2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93289947509766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020320013165473938,\n          \"Height\": 0.0076918089762330055,\n          \"Left\": 0.8209028244018555,\n          \"Top\": 0.4960647225379944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8209028244018555,\n            \"Y\": 0.4960647225379944\n          },\n          {\n            \"X\": 0.8412188291549683,\n            \"Y\": 0.4960801899433136\n          },\n          {\n            \"X\": 0.841222882270813,\n            \"Y\": 0.5037565231323242\n          },\n          {\n            \"X\": 0.8209068179130554,\n            \"Y\": 0.5037409663200378\n          }\n        ]\n      },\n      \"Id\": \"08e40e38-0405-4b8a-a7b6-c59807f20ad9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"74d1f08b-4c53-4f93-bed8-893c2cde4aaf\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"21f912c3-ead9-45f9-ba17-9b42f17df6bc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.66522216796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010810292325913906,\n          \"Height\": 0.008018243126571178,\n          \"Left\": 0.8066390156745911,\n          \"Top\": 0.4967213571071625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8066390156745911,\n            \"Y\": 0.4967213571071625\n          },\n          {\n            \"X\": 0.8174451589584351,\n            \"Y\": 0.4967295825481415\n          },\n          {\n            \"X\": 0.8174493312835693,\n            \"Y\": 0.5047395825386047\n          },\n          {\n            \"X\": 0.8066430687904358,\n            \"Y\": 0.5047313570976257\n          }\n        ]\n      },\n      \"Id\": \"74d1f08b-4c53-4f93-bed8-893c2cde4aaf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7aeb520d-2ee2-49ff-b30f-40703ce43f0b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.87433624267578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015566311776638031,\n          \"Height\": 0.007688398472964764,\n          \"Left\": 0.8814196586608887,\n          \"Top\": 0.49611079692840576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8814196586608887,\n            \"Y\": 0.49611079692840576\n          },\n          {\n            \"X\": 0.8969817161560059,\n            \"Y\": 0.4961226284503937\n          },\n          {\n            \"X\": 0.8969860076904297,\n            \"Y\": 0.5037992000579834\n          },\n          {\n            \"X\": 0.8814238905906677,\n            \"Y\": 0.5037872791290283\n          }\n        ]\n      },\n      \"Id\": \"75753db3-08ff-41f0-890a-eabd41d811a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"dd45f0a5-7544-4824-a51f-e0e7e3cd892d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"039d0e09-08a0-4457-8a28-333b8c3acef7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.72980499267578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010378898121416569,\n          \"Height\": 0.008018150925636292,\n          \"Left\": 0.8667229413986206,\n          \"Top\": 0.4971008598804474\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8667229413986206,\n            \"Y\": 0.4971008598804474\n          },\n          {\n            \"X\": 0.877097487449646,\n            \"Y\": 0.4971087574958801\n          },\n          {\n            \"X\": 0.8771018385887146,\n            \"Y\": 0.5051190257072449\n          },\n          {\n            \"X\": 0.8667272925376892,\n            \"Y\": 0.5051110982894897\n          }\n        ]\n      },\n      \"Id\": \"dd45f0a5-7544-4824-a51f-e0e7e3cd892d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"639c02d7-f2e8-499b-a80f-086302286cc5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96412658691406,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040176887065172195,\n          \"Height\": 0.00937300082296133,\n          \"Left\": 0.17532382905483246,\n          \"Top\": 0.5002443790435791\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17532382905483246,\n            \"Y\": 0.5002443790435791\n          },\n          {\n            \"X\": 0.21549881994724274,\n            \"Y\": 0.5002750754356384\n          },\n          {\n            \"X\": 0.21550071239471436,\n            \"Y\": 0.5096173882484436\n          },\n          {\n            \"X\": 0.17532552778720856,\n            \"Y\": 0.5095865726470947\n          }\n        ]\n      },\n      \"Id\": \"c39164a7-81ea-4778-a81b-70e325d947eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2f483a3a-8f90-4a01-a655-08a43c56cfda\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fca0add3-4391-415d-a1a2-d3aa10cb7352\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92330169677734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010800796560943127,\n          \"Height\": 0.007682133931666613,\n          \"Left\": 0.1602046638727188,\n          \"Top\": 0.5005664825439453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1602046638727188,\n            \"Y\": 0.5005664825439453\n          },\n          {\n            \"X\": 0.17100408673286438,\n            \"Y\": 0.5005747675895691\n          },\n          {\n            \"X\": 0.1710054576396942,\n            \"Y\": 0.5082486271858215\n          },\n          {\n            \"X\": 0.16020600497722626,\n            \"Y\": 0.5082403421401978\n          }\n        ]\n      },\n      \"Id\": \"2f483a3a-8f90-4a01-a655-08a43c56cfda\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"708a381e-4549-4ed2-96ab-e5aebcdea0ac\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.85131072998047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0501285083591938,\n          \"Height\": 0.00938222836703062,\n          \"Left\": 0.4626338481903076,\n          \"Top\": 0.5088061094284058\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626338481903076,\n            \"Y\": 0.5088061094284058\n          },\n          {\n            \"X\": 0.5127590298652649,\n            \"Y\": 0.5088445544242859\n          },\n          {\n            \"X\": 0.5127623677253723,\n            \"Y\": 0.5181882977485657\n          },\n          {\n            \"X\": 0.46263691782951355,\n            \"Y\": 0.5181496143341064\n          }\n        ]\n      },\n      \"Id\": \"3f411d29-ee54-416d-b529-9e1180be01b5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"df13bcf1-9725-4859-9a61-38eb04309ac8\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"82db3168-877d-4e7d-8837-c29116d15454\",\n            \"6e04c6ca-304e-4304-9660-eba3eaaa9f97\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.0662841796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053159113973379135,\n          \"Height\": 0.008717567659914494,\n          \"Left\": 0.5693684220314026,\n          \"Top\": 0.5078868865966797\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693684220314026,\n            \"Y\": 0.5078868865966797\n          },\n          {\n            \"X\": 0.6225239634513855,\n            \"Y\": 0.507927656173706\n          },\n          {\n            \"X\": 0.622527539730072,\n            \"Y\": 0.5166044235229492\n          },\n          {\n            \"X\": 0.56937175989151,\n            \"Y\": 0.5165634155273438\n          }\n        ]\n      },\n      \"Id\": \"df13bcf1-9725-4859-9a61-38eb04309ac8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89365d6a-5b71-4ba4-b054-e144e8651a6c\",\n            \"e0903cf3-3f97-4fc1-89e2-5caf74017737\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 97.42169189453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21094880998134613,\n          \"Height\": 0.023192843422293663,\n          \"Left\": 0.6942696571350098,\n          \"Top\": 0.5146573185920715\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6942696571350098,\n            \"Y\": 0.5146573185920715\n          },\n          {\n            \"X\": 0.9052056074142456,\n            \"Y\": 0.5148198008537292\n          },\n          {\n            \"X\": 0.9052184820175171,\n            \"Y\": 0.5378502011299133\n          },\n          {\n            \"X\": 0.6942800283432007,\n            \"Y\": 0.5376853346824646\n          }\n        ]\n      },\n      \"Id\": \"b968e033-151c-457e-8acd-f838e24e582c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0d24c5d5-6d27-4650-b773-9b9b546e90fa\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"95965eaa-0aaf-4cfe-a4e3-10044ac308cd\",\n            \"1f536c90-70ef-444e-9550-ff70b21ac56b\",\n            \"6c4c7e9f-d779-41fa-81cc-9749db2284ea\",\n            \"e07fc12a-179e-4f5a-b957-e18188f03c2a\",\n            \"b984e697-5c59-47d2-a1f5-1b28db23c63b\",\n            \"617413c8-54b0-451b-8069-c0071b1db832\",\n            \"2eb526d4-c9f4-432e-bc95-ae8cf577b13f\",\n            \"aaa6fb6f-9c34-4444-bd26-12497c4e676f\",\n            \"c5e38be8-c4b4-4332-abee-46a23a401490\",\n            \"d680c033-acdf-49d6-b180-0ee8f4fd6a2d\",\n            \"0d6f17a6-449e-4ff4-8389-c4d5b8621f20\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 100,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2287830263376236,\n          \"Height\": 0.0031338983681052923,\n          \"Left\": 0.692017138004303,\n          \"Top\": 0.5376836061477661\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.692017138004303,\n            \"Y\": 0.5376836061477661\n          },\n          {\n            \"X\": 0.9207984805107117,\n            \"Y\": 0.5378623604774475\n          },\n          {\n            \"X\": 0.9208001494407654,\n            \"Y\": 0.5408174991607666\n          },\n          {\n            \"X\": 0.692018449306488,\n            \"Y\": 0.5406383872032166\n          }\n        ]\n      },\n      \"Id\": \"0d24c5d5-6d27-4650-b773-9b9b546e90fa\",\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96878814697266,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039757393300533295,\n          \"Height\": 0.0077062868513166904,\n          \"Left\": 0.46264100074768066,\n          \"Top\": 0.5304965972900391\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46264100074768066,\n            \"Y\": 0.5304965972900391\n          },\n          {\n            \"X\": 0.5023956894874573,\n            \"Y\": 0.5305274724960327\n          },\n          {\n            \"X\": 0.5023983716964722,\n            \"Y\": 0.5382028818130493\n          },\n          {\n            \"X\": 0.4626435339450836,\n            \"Y\": 0.5381717681884766\n          }\n        ]\n      },\n      \"Id\": \"1a3fdad0-eafb-4dca-8340-b2af6c9ad3f2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"bcb946f9-31c6-4deb-8503-d6a2a1be2c8d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c9950eb-61fa-480a-b336-8893250a4f8a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.48503112792969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05618555471301079,\n          \"Height\": 0.010055645368993282,\n          \"Left\": 0.5698091983795166,\n          \"Top\": 0.5302461981773376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698091983795166,\n            \"Y\": 0.5302461981773376\n          },\n          {\n            \"X\": 0.625990629196167,\n            \"Y\": 0.5302899479866028\n          },\n          {\n            \"X\": 0.6259948015213013,\n            \"Y\": 0.5403018593788147\n          },\n          {\n            \"X\": 0.569813072681427,\n            \"Y\": 0.5402578711509705\n          }\n        ]\n      },\n      \"Id\": \"bcb946f9-31c6-4deb-8503-d6a2a1be2c8d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ffc8f15-0ddb-4781-8cc2-1b3e52308fae\",\n            \"be2f9285-9a1f-4e1e-a83a-520cc21e421a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8524398803711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025056270882487297,\n          \"Height\": 0.007693902123719454,\n          \"Left\": 0.13990941643714905,\n          \"Top\": 0.5455935597419739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13990941643714905,\n            \"Y\": 0.5455935597419739\n          },\n          {\n            \"X\": 0.16496433317661285,\n            \"Y\": 0.5456132292747498\n          },\n          {\n            \"X\": 0.1649656891822815,\n            \"Y\": 0.5532874464988708\n          },\n          {\n            \"X\": 0.13991066813468933,\n            \"Y\": 0.5532677173614502\n          }\n        ]\n      },\n      \"Id\": \"3a84e175-9416-4539-a06b-a1e6f11c1f9f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2032687b-1797-4301-8a8e-174b850f5a7b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c943454c-9cf7-4c5a-a787-9fb944bc5c2b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96023559570312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02894553169608116,\n          \"Height\": 0.008364425972104073,\n          \"Left\": 0.17878775298595428,\n          \"Top\": 0.5442894697189331\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17878775298595428,\n            \"Y\": 0.5442894697189331\n          },\n          {\n            \"X\": 0.20773163437843323,\n            \"Y\": 0.5443121790885925\n          },\n          {\n            \"X\": 0.20773328840732574,\n            \"Y\": 0.5526539087295532\n          },\n          {\n            \"X\": 0.17878928780555725,\n            \"Y\": 0.5526310801506042\n          }\n        ]\n      },\n      \"Id\": \"2032687b-1797-4301-8a8e-174b850f5a7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e2d5c9a9-acab-44c4-9e65-a280ef6815dc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93865966796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22218433022499084,\n          \"Height\": 0.009520375169813633,\n          \"Left\": 0.6942834854125977,\n          \"Top\": 0.5453615188598633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6942834854125977,\n            \"Y\": 0.5453615188598633\n          },\n          {\n            \"X\": 0.9164625406265259,\n            \"Y\": 0.5455359220504761\n          },\n          {\n            \"X\": 0.9164678454399109,\n            \"Y\": 0.5548818707466125\n          },\n          {\n            \"X\": 0.6942877173423767,\n            \"Y\": 0.5547064542770386\n          }\n        ]\n      },\n      \"Id\": \"95275063-a8a3-4b97-9147-2930f7386430\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1d8afa7e-1625-42bc-b935-b7b969f6402f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"79076373-0b1d-4cdb-86f5-eb46095673bf\",\n            \"409ffaf0-14ce-42a1-a40d-fbdf784734f8\",\n            \"99b8cb69-4c76-459b-8539-bb32874dfa05\",\n            \"47322fc8-14ac-4f3c-84c1-0129e6cb57c3\",\n            \"2ccc745c-c793-4c82-abda-184ea23078d2\",\n            \"0f8133ac-a29f-4154-ae2b-325f293e7c3c\",\n            \"1a202e8d-019d-40af-9762-743fa90feb52\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.966552734375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06527560204267502,\n          \"Height\": 0.008396324701607227,\n          \"Left\": 0.773390531539917,\n          \"Top\": 0.5654493570327759\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.773390531539917,\n            \"Y\": 0.5654493570327759\n          },\n          {\n            \"X\": 0.8386617302894592,\n            \"Y\": 0.5655012130737305\n          },\n          {\n            \"X\": 0.8386661410331726,\n            \"Y\": 0.5738456845283508\n          },\n          {\n            \"X\": 0.7733946442604065,\n            \"Y\": 0.5737935304641724\n          }\n        ]\n      },\n      \"Id\": \"1d8afa7e-1625-42bc-b935-b7b969f6402f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"36badced-f6d5-46a1-9a70-44b8caddac4a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.44910430908203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044947050511837006,\n          \"Height\": 0.018056323751807213,\n          \"Left\": 0.46264761686325073,\n          \"Top\": 0.5505189895629883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46264761686325073,\n            \"Y\": 0.5505189895629883\n          },\n          {\n            \"X\": 0.5075883269309998,\n            \"Y\": 0.5505543947219849\n          },\n          {\n            \"X\": 0.5075947046279907,\n            \"Y\": 0.5685753226280212\n          },\n          {\n            \"X\": 0.46265357732772827,\n            \"Y\": 0.5685395002365112\n          }\n        ]\n      },\n      \"Id\": \"52b22802-d4f8-4462-8a1a-c96198cfd2eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"844453f1-c150-4560-bbea-0c039e4385d2\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a98f4a5-cc21-4044-9611-c36305b55aec\",\n            \"f014465d-0365-4fe2-b5ff-a9b60897b2b8\",\n            \"12ae7a4e-4a56-4756-b9cc-15d61f0d6c0d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.65837860107422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06007678806781769,\n          \"Height\": 0.012062177062034607,\n          \"Left\": 0.5693871378898621,\n          \"Top\": 0.5562764406204224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693871378898621,\n            \"Y\": 0.5562764406204224\n          },\n          {\n            \"X\": 0.6294589042663574,\n            \"Y\": 0.5563239455223083\n          },\n          {\n            \"X\": 0.6294639110565186,\n            \"Y\": 0.5683386325836182\n          },\n          {\n            \"X\": 0.5693917274475098,\n            \"Y\": 0.5682907700538635\n          }\n        ]\n      },\n      \"Id\": \"844453f1-c150-4560-bbea-0c039e4385d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c4c60eb-10b3-489a-98d2-a0f439eb9c9e\",\n            \"fc72f7dd-436c-41f8-b5aa-e6bd27c769a8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9276351928711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04451243206858635,\n          \"Height\": 0.009379991330206394,\n          \"Left\": 0.46265602111816406,\n          \"Top\": 0.57588130235672\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46265602111816406,\n            \"Y\": 0.57588130235672\n          },\n          {\n            \"X\": 0.5071651339530945,\n            \"Y\": 0.5759169459342957\n          },\n          {\n            \"X\": 0.5071684718132019,\n            \"Y\": 0.5852612853050232\n          },\n          {\n            \"X\": 0.46265909075737,\n            \"Y\": 0.585225522518158\n          }\n        ]\n      },\n      \"Id\": \"ea69f915-f138-417a-aef2-0f0b380aa370\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"48823ac5-7231-4c04-9e08-b791f2b8b354\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94fc0874-48f5-428d-9e98-54146853fd0d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.53331756591797,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05618630349636078,\n          \"Height\": 0.008722336031496525,\n          \"Left\": 0.5698264837265015,\n          \"Top\": 0.5749658346176147\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698264837265015,\n            \"Y\": 0.5749658346176147\n          },\n          {\n            \"X\": 0.6260091662406921,\n            \"Y\": 0.5750107765197754\n          },\n          {\n            \"X\": 0.6260128021240234,\n            \"Y\": 0.5836881995201111\n          },\n          {\n            \"X\": 0.5698298215866089,\n            \"Y\": 0.5836430191993713\n          }\n        ]\n      },\n      \"Id\": \"48823ac5-7231-4c04-9e08-b791f2b8b354\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93e1ce59-b524-42a1-acfd-2636e46f52cc\",\n            \"afea191f-51c8-42fd-9be5-83ce9a49d9f0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.89279174804688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23126809298992157,\n          \"Height\": 0.009533078409731388,\n          \"Left\": 0.6938717365264893,\n          \"Top\": 0.5907517075538635\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6938717365264893,\n            \"Y\": 0.5907517075538635\n          },\n          {\n            \"X\": 0.925134539604187,\n            \"Y\": 0.5909383296966553\n          },\n          {\n            \"X\": 0.925139844417572,\n            \"Y\": 0.60028475522995\n          },\n          {\n            \"X\": 0.6938759684562683,\n            \"Y\": 0.6000970602035522\n          }\n        ]\n      },\n      \"Id\": \"ad270851-98a8-4200-9057-ea47afc2645c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"bbc36748-a9db-4ed2-bfba-dde72aac562a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99bc6d86-9a25-47ab-bdce-c570f9414ba3\",\n            \"019dfae3-89f5-4e1d-8f11-78908c5f7836\",\n            \"e802c0bc-4054-4ccc-9e70-b83d99f200b7\",\n            \"932d9c32-0c9d-49f1-aeee-6c9234e2e720\",\n            \"a93d697c-0ebe-475d-9c52-96c2f5a961b0\",\n            \"9f461482-1a39-48d6-9ca2-4ae001938048\",\n            \"b9fa0ea2-1015-4452-8547-b73ae1d3ad44\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 93.43445587158203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03977328538894653,\n          \"Height\": 0.0097122211009264,\n          \"Left\": 0.7760034203529358,\n          \"Top\": 0.604836642742157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7760034203529358,\n            \"Y\": 0.604836642742157\n          },\n          {\n            \"X\": 0.815771758556366,\n            \"Y\": 0.60486900806427\n          },\n          {\n            \"X\": 0.8157767057418823,\n            \"Y\": 0.6145488619804382\n          },\n          {\n            \"X\": 0.7760081887245178,\n            \"Y\": 0.6145162582397461\n          }\n        ]\n      },\n      \"Id\": \"bbc36748-a9db-4ed2-bfba-dde72aac562a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6d6e8170-9b0a-4e90-bf52-d50dcc1d40eb\",\n            \"041bbcc9-bfc7-4bb3-96a4-31d56d755474\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96652221679688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045808807015419006,\n          \"Height\": 0.007713110651820898,\n          \"Left\": 0.46223184466362,\n          \"Top\": 0.5999090671539307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46223184466362,\n            \"Y\": 0.5999090671539307\n          },\n          {\n            \"X\": 0.5080379247665405,\n            \"Y\": 0.5999462008476257\n          },\n          {\n            \"X\": 0.5080406665802002,\n            \"Y\": 0.6076221466064453\n          },\n          {\n            \"X\": 0.46223437786102295,\n            \"Y\": 0.6075848340988159\n          }\n        ]\n      },\n      \"Id\": \"32701e0d-d234-4656-85c0-feb34ecc061e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e68cc74c-4b21-467d-bd25-c1789bccc643\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bd11d96c-d0ae-48f4-a585-97cb5db8d4b6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.59146881103516,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058349087834358215,\n          \"Height\": 0.011395066976547241,\n          \"Left\": 0.5694040060043335,\n          \"Top\": 0.599996030330658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5694040060043335,\n            \"Y\": 0.599996030330658\n          },\n          {\n            \"X\": 0.6277483701705933,\n            \"Y\": 0.6000433564186096\n          },\n          {\n            \"X\": 0.6277530789375305,\n            \"Y\": 0.6113911271095276\n          },\n          {\n            \"X\": 0.5694083571434021,\n            \"Y\": 0.6113434433937073\n          }\n        ]\n      },\n      \"Id\": \"e68cc74c-4b21-467d-bd25-c1789bccc643\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f3299490-b8f8-497c-aeba-0c3235754859\",\n            \"35c0209a-8880-48cd-9c4f-439b4b97ceed\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.75128173828125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04235273599624634,\n          \"Height\": 0.009379626251757145,\n          \"Left\": 0.4626710116863251,\n          \"Top\": 0.6212682127952576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626710116863251,\n            \"Y\": 0.6212682127952576\n          },\n          {\n            \"X\": 0.5050204396247864,\n            \"Y\": 0.6213030219078064\n          },\n          {\n            \"X\": 0.5050237774848938,\n            \"Y\": 0.6306478381156921\n          },\n          {\n            \"X\": 0.4626741111278534,\n            \"Y\": 0.6306127905845642\n          }\n        ]\n      },\n      \"Id\": \"d0feb478-3a6d-4d40-9bb2-f6285410cd2f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"a1da3051-b33f-41bb-bd75-6cd75992065e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34fdb989-bc2b-4d7a-a071-f1902c3c2fb4\",\n            \"26e9097a-d5ad-4807-a375-3138652312f2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.1378402709961,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05618762969970703,\n          \"Height\": 0.008724017068743706,\n          \"Left\": 0.5694122314453125,\n          \"Top\": 0.6213559508323669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5694122314453125,\n            \"Y\": 0.6213559508323669\n          },\n          {\n            \"X\": 0.625596284866333,\n            \"Y\": 0.6214021444320679\n          },\n          {\n            \"X\": 0.6255998611450195,\n            \"Y\": 0.6300799250602722\n          },\n          {\n            \"X\": 0.5694155693054199,\n            \"Y\": 0.630033552646637\n          }\n        ]\n      },\n      \"Id\": \"a1da3051-b33f-41bb-bd75-6cd75992065e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7903684e-ae0e-46fd-b312-ed034ea20c0b\",\n            \"f362c93d-be13-4ae5-9064-463dfce54fc9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.91387939453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21786977350711823,\n          \"Height\": 0.009525707922875881,\n          \"Left\": 0.6938854455947876,\n          \"Top\": 0.6211245059967041\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6938854455947876,\n            \"Y\": 0.6211245059967041\n          },\n          {\n            \"X\": 0.9117499589920044,\n            \"Y\": 0.6213035583496094\n          },\n          {\n            \"X\": 0.9117552042007446,\n            \"Y\": 0.6306501626968384\n          },\n          {\n            \"X\": 0.6938896179199219,\n            \"Y\": 0.6304701566696167\n          }\n        ]\n      },\n      \"Id\": \"93922918-728a-4efa-be44-a5e390625e11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0cb43869-a3c8-4c76-b070-bc6a9290388d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"577a76a3-6cd8-4046-8083-7e5175ec6ced\",\n            \"4bcf6104-0394-44bb-a4a5-f26a6c67dca0\",\n            \"7e0141be-28e2-4939-ac2d-bdd8ec1c0929\",\n            \"bc76b221-e63f-4e77-83bc-7e66f8b1a2f6\",\n            \"2a3f646a-5079-4544-81cd-624b29248eed\",\n            \"96f33bb0-8d9d-4e50-aeba-02018fd3798a\",\n            \"ff8bf448-b50a-411c-9a9f-7c9f1ef75ae8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.90690612792969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06571054458618164,\n          \"Height\": 0.008399542421102524,\n          \"Left\": 0.7773154973983765,\n          \"Top\": 0.6358797550201416\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7773154973983765,\n            \"Y\": 0.6358797550201416\n          },\n          {\n            \"X\": 0.8430216312408447,\n            \"Y\": 0.6359341740608215\n          },\n          {\n            \"X\": 0.8430260419845581,\n            \"Y\": 0.6442792415618896\n          },\n          {\n            \"X\": 0.777319610118866,\n            \"Y\": 0.6442245244979858\n          }\n        ]\n      },\n      \"Id\": \"0cb43869-a3c8-4c76-b070-bc6a9290388d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b2f61ffb-21c2-4425-92a5-0f30afee942d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93714904785156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06396427005529404,\n          \"Height\": 0.018409719690680504,\n          \"Left\": 0.4622454047203064,\n          \"Top\": 0.6409583687782288\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4622454047203064,\n            \"Y\": 0.6409583687782288\n          },\n          {\n            \"X\": 0.5262029767036438,\n            \"Y\": 0.6410115957260132\n          },\n          {\n            \"X\": 0.5262096524238586,\n            \"Y\": 0.659368097782135\n          },\n          {\n            \"X\": 0.4622514545917511,\n            \"Y\": 0.6593143343925476\n          }\n        ]\n      },\n      \"Id\": \"1829d580-acb1-43df-a899-b13aa49e185d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e99dfcee-6fd4-40dc-9e3b-3c35cfafc49b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89920fbb-98fb-442e-acf1-bafe5e795beb\",\n            \"f4b72811-88ff-4536-b489-5391c68a56cd\",\n            \"16b6ceb9-a4e2-4ad4-b8ea-540f1fc203d6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.48478698730469,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060079239308834076,\n          \"Height\": 0.011064684949815273,\n          \"Left\": 0.5694226622581482,\n          \"Top\": 0.6483902335166931\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5694226622581482,\n            \"Y\": 0.6483902335166931\n          },\n          {\n            \"X\": 0.6294972896575928,\n            \"Y\": 0.648440420627594\n          },\n          {\n            \"X\": 0.6295018792152405,\n            \"Y\": 0.6594549417495728\n          },\n          {\n            \"X\": 0.5694268941879272,\n            \"Y\": 0.659404456615448\n          }\n        ]\n      },\n      \"Id\": \"e99dfcee-6fd4-40dc-9e3b-3c35cfafc49b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e31869d-a142-47e9-9d84-7bbce7cb4e0c\",\n            \"64dbaece-e4af-4b46-ac7b-8ddb626fcc89\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.89877319335938,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17377717792987823,\n          \"Height\": 0.009825910441577435,\n          \"Left\": 0.694331169128418,\n          \"Top\": 0.6511648297309875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.694331169128418,\n            \"Y\": 0.6511648297309875\n          },\n          {\n            \"X\": 0.8681031465530396,\n            \"Y\": 0.65131014585495\n          },\n          {\n            \"X\": 0.8681083917617798,\n            \"Y\": 0.6609907150268555\n          },\n          {\n            \"X\": 0.6943355798721313,\n            \"Y\": 0.6608445644378662\n          }\n        ]\n      },\n      \"Id\": \"567be4cb-3f74-47ed-b0ee-f1a6d174880e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0ca45ebd-2a8f-414c-b31a-8cf5fb32d8e9\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"986d6524-5785-44f8-87ed-28281c3fd7c6\",\n            \"24650bcb-6614-45de-8066-4628494786a0\",\n            \"62de7ebe-d46a-42f7-a5bd-677ec073caae\",\n            \"ec661b2b-72ea-41e6-8b63-d0ef0811fc64\",\n            \"cf3157d2-e610-45a9-82a2-91d4122586aa\",\n            \"2094b681-79f7-475e-9d3e-8e6eb4e43bee\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 87.71498107910156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03890998288989067,\n          \"Height\": 0.009379656054079533,\n          \"Left\": 0.7773334980010986,\n          \"Top\": 0.6722636222839355\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7773334980010986,\n            \"Y\": 0.6722636222839355\n          },\n          {\n            \"X\": 0.8162386417388916,\n            \"Y\": 0.6722965836524963\n          },\n          {\n            \"X\": 0.8162434697151184,\n            \"Y\": 0.6816432476043701\n          },\n          {\n            \"X\": 0.7773380875587463,\n            \"Y\": 0.6816101670265198\n          }\n        ]\n      },\n      \"Id\": \"0ca45ebd-2a8f-414c-b31a-8cf5fb32d8e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a56349ec-794f-47df-8320-5518739aa111\",\n            \"a9eb103c-a0b1-4eb1-9a77-5923c86c1d59\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.91857147216797,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0920565277338028,\n          \"Height\": 0.018101446330547333,\n          \"Left\": 0.46182307600975037,\n          \"Top\": 0.6706615090370178\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46182307600975037,\n            \"Y\": 0.6706615090370178\n          },\n          {\n            \"X\": 0.5538727641105652,\n            \"Y\": 0.6707393527030945\n          },\n          {\n            \"X\": 0.5538796186447144,\n            \"Y\": 0.6887629628181458\n          },\n          {\n            \"X\": 0.4618290364742279,\n            \"Y\": 0.6886842846870422\n          }\n        ]\n      },\n      \"Id\": \"54a3c1fb-69d0-48af-9506-b9d52ae3812a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"fd838c3b-af51-4339-a00d-be0e0cc5277d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84c56ce5-b0d1-435f-8284-af42862cd52f\",\n            \"f2c9810a-2038-4343-8eb4-da61cf2bc5ac\",\n            \"99995cee-f9a5-4f78-a650-8f82c03ea9c0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.5449447631836,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059647444635629654,\n          \"Height\": 0.009730408899486065,\n          \"Left\": 0.5698665976524353,\n          \"Top\": 0.6787633895874023\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698665976524353,\n            \"Y\": 0.6787633895874023\n          },\n          {\n            \"X\": 0.6295099854469299,\n            \"Y\": 0.6788140535354614\n          },\n          {\n            \"X\": 0.6295140385627747,\n            \"Y\": 0.6884937882423401\n          },\n          {\n            \"X\": 0.5698702931404114,\n            \"Y\": 0.6884428262710571\n          }\n        ]\n      },\n      \"Id\": \"fd838c3b-af51-4339-a00d-be0e0cc5277d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"517c4e12-32ab-4b08-a393-bb0007d2e3e2\",\n            \"74a39235-b806-42f4-a257-a26aac6423e4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96.50120544433594,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5556657910346985,\n          \"Height\": 0.01015693973749876,\n          \"Left\": 0.042304493486881256,\n          \"Top\": 0.6966679692268372\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042304493486881256,\n            \"Y\": 0.6966679692268372\n          },\n          {\n            \"X\": 0.5979664325714111,\n            \"Y\": 0.6971451640129089\n          },\n          {\n            \"X\": 0.5979703068733215,\n            \"Y\": 0.7068248987197876\n          },\n          {\n            \"X\": 0.042305584996938705,\n            \"Y\": 0.7063451409339905\n          }\n        ]\n      },\n      \"Id\": \"0ef58d34-6f10-4d78-ba82-3485cdb99ffd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"178c9d03-a70a-48a5-a28b-b014080e6155\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d5663a7-8661-487a-9bfb-9c0dd74227c0\",\n            \"ddf6d487-8666-420d-b8e5-7e8d9dc95cba\",\n            \"e41f9b56-b7a9-43db-a56c-cb53d7435788\",\n            \"ceb102a7-a02b-4947-a8a5-1d929beb80ed\",\n            \"996a1c23-ea1a-477e-9a03-1a8d86777e6f\",\n            \"a2acc999-696a-4510-bb4b-67b6905b9f94\",\n            \"1867f5ef-3723-4f26-bc46-66da8e8fb606\",\n            \"5fdee53e-9e7e-4639-b29f-65180b8ffccd\",\n            \"299b0be4-2fb6-4d01-955e-9b5cb1911a6e\",\n            \"31af1c05-5e3b-41b4-885b-871415c8734b\",\n            \"600222da-b6b7-4753-a4e5-5a44c218c688\",\n            \"35e1a17b-05a8-448d-ae3f-8779f56d9c8c\",\n            \"03878afa-9c94-4719-8912-efee83533970\",\n            \"dbeae94e-e797-4019-9ca3-e13698789d37\",\n            \"b7852c11-2268-49bd-b21e-0e075f4b778a\",\n            \"a94f5b01-f62c-4bf7-bf4c-0e78e0a86692\",\n            \"897e9399-ed26-4eef-a535-2061fd96b749\",\n            \"827aceca-bbdf-4962-b95e-14755b230ea0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.7536392211914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10454671829938889,\n          \"Height\": 0.012772155925631523,\n          \"Left\": 0.05872175469994545,\n          \"Top\": 0.7157028913497925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05872175469994545,\n            \"Y\": 0.7157028913497925\n          },\n          {\n            \"X\": 0.16326624155044556,\n            \"Y\": 0.7157936692237854\n          },\n          {\n            \"X\": 0.16326847672462463,\n            \"Y\": 0.7284750938415527\n          },\n          {\n            \"X\": 0.058723289519548416,\n            \"Y\": 0.7283836603164673\n          }\n        ]\n      },\n      \"Id\": \"178c9d03-a70a-48a5-a28b-b014080e6155\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e1649cc4-8d69-48e7-b256-d3bb58f23a2c\",\n            \"7fc6a7af-5d20-4f16-8086-1fa0af7cdb43\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.5874252319336,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07430543005466461,\n          \"Height\": 0.007742432411760092,\n          \"Left\": 0.04188116267323494,\n          \"Top\": 0.7734200358390808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04188116267323494,\n            \"Y\": 0.7734200358390808\n          },\n          {\n            \"X\": 0.11618543416261673,\n            \"Y\": 0.7734866142272949\n          },\n          {\n            \"X\": 0.11618658900260925,\n            \"Y\": 0.781162440776825\n          },\n          {\n            \"X\": 0.04188202694058418,\n            \"Y\": 0.7810956239700317\n          }\n        ]\n      },\n      \"Id\": \"af3d23e3-b29e-4990-9d90-577cd4e952cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"3d74f432-d904-409d-8d8a-01a5b15db705\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67781941-b1ad-4a32-bd3c-a3e1138a24af\",\n            \"44917e32-e002-43a1-b68b-572267aa9dbf\",\n            \"1098ab82-3967-4cef-a0e0-ed93975e2644\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95024108886719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06567200273275375,\n          \"Height\": 0.008402599953114986,\n          \"Left\": 0.14124301075935364,\n          \"Top\": 0.7751777172088623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14124301075935364,\n            \"Y\": 0.7751777172088623\n          },\n          {\n            \"X\": 0.20691335201263428,\n            \"Y\": 0.7752366065979004\n          },\n          {\n            \"X\": 0.2069150060415268,\n            \"Y\": 0.7835803031921387\n          },\n          {\n            \"X\": 0.14124436676502228,\n            \"Y\": 0.7835211753845215\n          }\n        ]\n      },\n      \"Id\": \"3d74f432-d904-409d-8d8a-01a5b15db705\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c0cd76ee-83f2-4c55-b4e8-9c92cb0c793e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.776123046875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10368406027555466,\n          \"Height\": 0.007769876625388861,\n          \"Left\": 0.041883114725351334,\n          \"Top\": 0.7907735705375671\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041883114725351334,\n            \"Y\": 0.7907735705375671\n          },\n          {\n            \"X\": 0.14556589722633362,\n            \"Y\": 0.7908673882484436\n          },\n          {\n            \"X\": 0.1455671787261963,\n            \"Y\": 0.7985434532165527\n          },\n          {\n            \"X\": 0.04188397899270058,\n            \"Y\": 0.7984493374824524\n          }\n        ]\n      },\n      \"Id\": \"e9431800-3651-456e-af4b-1284b00e3cf3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"a93bc072-6fb5-4fee-ab41-40da876cd071\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ecdb0708-9454-449c-b19d-7ac5b15627e2\",\n            \"25314353-5ec7-44bd-8a69-9dc0787cf467\",\n            \"73e25839-a331-4824-8ee4-62debc9d06d2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94783782958984,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06567442417144775,\n          \"Height\": 0.008403285406529903,\n          \"Left\": 0.16975975036621094,\n          \"Top\": 0.7892205119132996\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16975975036621094,\n            \"Y\": 0.7892205119132996\n          },\n          {\n            \"X\": 0.23543240129947662,\n            \"Y\": 0.7892798781394958\n          },\n          {\n            \"X\": 0.2354341745376587,\n            \"Y\": 0.7976238131523132\n          },\n          {\n            \"X\": 0.16976124048233032,\n            \"Y\": 0.7975642085075378\n          }\n        ]\n      },\n      \"Id\": \"a93bc072-6fb5-4fee-ab41-40da876cd071\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b9d99afe-7abf-4074-82e5-5e393251eec0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93258666992188,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024199793115258217,\n          \"Height\": 0.0073648476973176,\n          \"Left\": 0.30542996525764465,\n          \"Top\": 0.7883418202400208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30542996525764465,\n            \"Y\": 0.7883418202400208\n          },\n          {\n            \"X\": 0.3296278417110443,\n            \"Y\": 0.7883636355400085\n          },\n          {\n            \"X\": 0.3296297788619995,\n            \"Y\": 0.7957066297531128\n          },\n          {\n            \"X\": 0.3054318130016327,\n            \"Y\": 0.7956846952438354\n          }\n        ]\n      },\n      \"Id\": \"bd590301-9245-421e-b6d7-30c0fe9da920\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"d602df54-5e2f-48ab-ac43-7b1a0ed1abd5\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"862bc077-c844-4e36-9ef0-daa9187f46ce\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.23007202148438,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03932628780603409,\n          \"Height\": 0.009381337091326714,\n          \"Left\": 0.35209688544273376,\n          \"Top\": 0.7850462198257446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35209688544273376,\n            \"Y\": 0.7850462198257446\n          },\n          {\n            \"X\": 0.39142045378685,\n            \"Y\": 0.785081684589386\n          },\n          {\n            \"X\": 0.39142319560050964,\n            \"Y\": 0.7944275736808777\n          },\n          {\n            \"X\": 0.3520994484424591,\n            \"Y\": 0.794391930103302\n          }\n        ]\n      },\n      \"Id\": \"d602df54-5e2f-48ab-ac43-7b1a0ed1abd5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"baa3a6e4-99c9-4e3f-937d-d64563021eb2\",\n            \"ffc54dc6-6ca8-4fc6-80c3-1c5f574331cc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96038055419922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04581200331449509,\n          \"Height\": 0.007718696724623442,\n          \"Left\": 0.4359322786331177,\n          \"Top\": 0.7881258726119995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4359322786331177,\n            \"Y\": 0.7881258726119995\n          },\n          {\n            \"X\": 0.48174166679382324,\n            \"Y\": 0.7881672382354736\n          },\n          {\n            \"X\": 0.48174425959587097,\n            \"Y\": 0.795844554901123\n          },\n          {\n            \"X\": 0.4359346926212311,\n            \"Y\": 0.7958030700683594\n          }\n        ]\n      },\n      \"Id\": \"0e11c3f3-2b0f-4236-bf82-678a5eee52e2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"86c40611-cb3a-45d5-b59b-8c07cb7f548b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5aab9ded-6b1b-4b28-b27f-2d96a02482d2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92516326904297,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028095191344618797,\n          \"Height\": 0.00837044045329094,\n          \"Left\": 0.5003246068954468,\n          \"Top\": 0.7861812114715576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5003246068954468,\n            \"Y\": 0.7861812114715576\n          },\n          {\n            \"X\": 0.5284167528152466,\n            \"Y\": 0.7862066030502319\n          },\n          {\n            \"X\": 0.5284197926521301,\n            \"Y\": 0.7945516705513\n          },\n          {\n            \"X\": 0.5003275275230408,\n            \"Y\": 0.794526219367981\n          }\n        ]\n      },\n      \"Id\": \"86c40611-cb3a-45d5-b59b-8c07cb7f548b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0bbcffcd-5213-4227-9c5d-afa6a6e26d00\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.80628967285156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06613466888666153,\n          \"Height\": 0.007403864059597254,\n          \"Left\": 0.5880618691444397,\n          \"Top\": 0.7882632613182068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5880618691444397,\n            \"Y\": 0.7882632613182068\n          },\n          {\n            \"X\": 0.6541933417320251,\n            \"Y\": 0.7883229851722717\n          },\n          {\n            \"X\": 0.6541965007781982,\n            \"Y\": 0.7956671118736267\n          },\n          {\n            \"X\": 0.5880647897720337,\n            \"Y\": 0.7956071496009827\n          }\n        ]\n      },\n      \"Id\": \"02a5de54-83ae-480d-aea1-d517ef0aa14b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"7999aaf9-bbf5-4db3-8a1b-7c200ac31f62\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61013532-08d0-4131-89d5-60846c29ee12\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96495056152344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0293975081294775,\n          \"Height\": 0.008038504049181938,\n          \"Left\": 0.679695188999176,\n          \"Top\": 0.7860091924667358\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.679695188999176,\n            \"Y\": 0.7860091924667358\n          },\n          {\n            \"X\": 0.7090889811515808,\n            \"Y\": 0.7860357165336609\n          },\n          {\n            \"X\": 0.7090926766395569,\n            \"Y\": 0.7940477132797241\n          },\n          {\n            \"X\": 0.6796987056732178,\n            \"Y\": 0.7940210700035095\n          }\n        ]\n      },\n      \"Id\": \"7999aaf9-bbf5-4db3-8a1b-7c200ac31f62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"20786605-e9d1-4165-bde9-76353dca07de\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92927551269531,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03242616355419159,\n          \"Height\": 0.007707762531936169,\n          \"Left\": 0.760963499546051,\n          \"Top\": 0.7880855202674866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.760963499546051,\n            \"Y\": 0.7880855202674866\n          },\n          {\n            \"X\": 0.7933858036994934,\n            \"Y\": 0.7881147861480713\n          },\n          {\n            \"X\": 0.7933896780014038,\n            \"Y\": 0.7957932949066162\n          },\n          {\n            \"X\": 0.7609671950340271,\n            \"Y\": 0.7957639098167419\n          }\n        ]\n      },\n      \"Id\": \"bdbc8666-f8ad-4699-b6a1-eb311240b979\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b1810068-c377-49d7-9815-bf57e6e03cd6\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cc773d92-e7cc-4432-80fe-322364525b80\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97423553466797,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028969580307602882,\n          \"Height\": 0.008038646541535854,\n          \"Left\": 0.8141357898712158,\n          \"Top\": 0.786464273929596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8141357898712158,\n            \"Y\": 0.786464273929596\n          },\n          {\n            \"X\": 0.8431010842323303,\n            \"Y\": 0.7864904403686523\n          },\n          {\n            \"X\": 0.8431053161621094,\n            \"Y\": 0.7945029735565186\n          },\n          {\n            \"X\": 0.8141398429870605,\n            \"Y\": 0.7944766879081726\n          }\n        ]\n      },\n      \"Id\": \"b1810068-c377-49d7-9815-bf57e6e03cd6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3656121e-85a5-44cf-adc8-2b5f8bce24d0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.7872314453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1175103634595871,\n          \"Height\": 0.009118353016674519,\n          \"Left\": 0.04188469052314758,\n          \"Top\": 0.8047901391983032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04188469052314758,\n            \"Y\": 0.8047901391983032\n          },\n          {\n            \"X\": 0.15939348936080933,\n            \"Y\": 0.8048972487449646\n          },\n          {\n            \"X\": 0.15939505398273468,\n            \"Y\": 0.8139085173606873\n          },\n          {\n            \"X\": 0.041885703802108765,\n            \"Y\": 0.8138009309768677\n          }\n        ]\n      },\n      \"Id\": \"7c5139a9-4f0e-4724-8a26-45ace41ee103\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"162cb955-1369-47ce-87bb-423169da3f62\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d1b3634f-746f-4dd9-86a5-92d4fc6bcab3\",\n            \"7d705bf7-2117-4633-9109-650613f04654\",\n            \"af99e72e-62ea-4f4b-954a-a57658d9d4b9\",\n            \"25ef2ae3-8551-44b4-9987-31b3c6175a74\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.7040023803711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0799335315823555,\n          \"Height\": 0.008417440578341484,\n          \"Left\": 0.16414779424667358,\n          \"Top\": 0.8152478933334351\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16414779424667358,\n            \"Y\": 0.8152478933334351\n          },\n          {\n            \"X\": 0.24407951533794403,\n            \"Y\": 0.815321147441864\n          },\n          {\n            \"X\": 0.2440813183784485,\n            \"Y\": 0.8236653208732605\n          },\n          {\n            \"X\": 0.16414925456047058,\n            \"Y\": 0.8235917687416077\n          }\n        ]\n      },\n      \"Id\": \"162cb955-1369-47ce-87bb-423169da3f62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"54c431a3-27f3-4ead-959f-f0cef89b71c5\",\n            \"a3f297f6-0c01-4876-bf4d-2d422f9dd75c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.70600891113281,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08687510341405869,\n          \"Height\": 0.007756954059004784,\n          \"Left\": 0.49125516414642334,\n          \"Top\": 0.8045320510864258\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49125516414642334,\n            \"Y\": 0.8045320510864258\n          },\n          {\n            \"X\": 0.5781272649765015,\n            \"Y\": 0.8046111464500427\n          },\n          {\n            \"X\": 0.5781302452087402,\n            \"Y\": 0.8122889995574951\n          },\n          {\n            \"X\": 0.49125781655311584,\n            \"Y\": 0.8122095465660095\n          }\n        ]\n      },\n      \"Id\": \"b048eaa6-6d89-4ae1-af4b-abc8e8a5fae8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f079e51e-def9-41d6-9359-c4f10e272ebc\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c6d31af-6e64-44f2-96d0-568a617fddf2\",\n            \"7f248cff-c1f5-4575-9329-a3b8bf0283a8\",\n            \"c3ade1d1-90d7-47eb-a304-25787aca6aa2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9410400390625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0950951799750328,\n          \"Height\": 0.01010212767869234,\n          \"Left\": 0.5573849678039551,\n          \"Top\": 0.8149405717849731\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5573849678039551,\n            \"Y\": 0.8149405717849731\n          },\n          {\n            \"X\": 0.6524758338928223,\n            \"Y\": 0.81502765417099\n          },\n          {\n            \"X\": 0.6524801254272461,\n            \"Y\": 0.8250426650047302\n          },\n          {\n            \"X\": 0.5573887825012207,\n            \"Y\": 0.8249551057815552\n          }\n        ]\n      },\n      \"Id\": \"f079e51e-def9-41d6-9359-c4f10e272ebc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d48031a-22c4-400e-b35e-be215e69d852\",\n            \"8306ae8d-8ab7-4e17-9f40-1c3abeaee220\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.86527252197266,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1322047859430313,\n          \"Height\": 0.009136910550296307,\n          \"Left\": 0.04232450947165489,\n          \"Top\": 0.8742089867591858\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04232450947165489,\n            \"Y\": 0.8742089867591858\n          },\n          {\n            \"X\": 0.17452766001224518,\n            \"Y\": 0.874333918094635\n          },\n          {\n            \"X\": 0.1745292991399765,\n            \"Y\": 0.883345901966095\n          },\n          {\n            \"X\": 0.04232552647590637,\n            \"Y\": 0.883220374584198\n          }\n        ]\n      },\n      \"Id\": \"76371878-ddb4-427d-99ed-95cd44f77da6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0aecaae3-f4e1-42d5-809e-8a8add9a2a0e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b5d96985-5076-4fec-948a-9f46a0508a35\",\n            \"e3d663b7-2f9d-4514-afa3-3775330b8bd8\",\n            \"7b8cc17a-0b87-4f99-ab54-3b7aa0aeef39\",\n            \"0853aacd-79ea-4119-bb16-ae5321868dc7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 66.71907043457031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14734093844890594,\n          \"Height\": 0.017497830092906952,\n          \"Left\": 0.11447480320930481,\n          \"Top\": 0.8896304965019226\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11447480320930481,\n            \"Y\": 0.8896304965019226\n          },\n          {\n            \"X\": 0.2618117928504944,\n            \"Y\": 0.8897708058357239\n          },\n          {\n            \"X\": 0.26181572675704956,\n            \"Y\": 0.9071283340454102\n          },\n          {\n            \"X\": 0.11447741091251373,\n            \"Y\": 0.9069867730140686\n          }\n        ]\n      },\n      \"Id\": \"0aecaae3-f4e1-42d5-809e-8a8add9a2a0e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d51ffd99-b3be-4170-ae6d-c766c965708f\",\n            \"fee14e57-7908-444c-bf0b-954a93b77149\",\n            \"b5a90fab-dfac-4fa8-a011-1534078da896\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.57878875732422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15213637053966522,\n          \"Height\": 0.009157395921647549,\n          \"Left\": 0.412622332572937,\n          \"Top\": 0.8738912343978882\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.412622332572937,\n            \"Y\": 0.8738912343978882\n          },\n          {\n            \"X\": 0.5647552609443665,\n            \"Y\": 0.8740349411964417\n          },\n          {\n            \"X\": 0.5647587180137634,\n            \"Y\": 0.8830486536026001\n          },\n          {\n            \"X\": 0.4126250743865967,\n            \"Y\": 0.8829042911529541\n          }\n        ]\n      },\n      \"Id\": \"0339ef23-1c0d-441e-b9bc-7accc28ab09e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"dbc426be-a5dd-44e7-946b-06dd897763f6\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9bcf87f1-e1fc-4b2a-a25a-d085832375e2\",\n            \"5ce18b2e-139d-453f-88a1-a48ac20567b7\",\n            \"18bae4ad-4563-450d-a205-39d9222d10d3\",\n            \"5520c052-a001-4ca9-a718-b501cacd9099\",\n            \"0930badd-2a80-46b7-9a4e-88b942e79fa0\",\n            \"3015d778-4497-463d-a745-574c860557e4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93528747558594,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09682276099920273,\n          \"Height\": 0.01277872920036316,\n          \"Left\": 0.49258244037628174,\n          \"Top\": 0.8933289647102356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49258244037628174,\n            \"Y\": 0.8933289647102356\n          },\n          {\n            \"X\": 0.5894001722335815,\n            \"Y\": 0.8934212923049927\n          },\n          {\n            \"X\": 0.5894052386283875,\n            \"Y\": 0.9061076641082764\n          },\n          {\n            \"X\": 0.4925868511199951,\n            \"Y\": 0.9060146808624268\n          }\n        ]\n      },\n      \"Id\": \"dbc426be-a5dd-44e7-946b-06dd897763f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a44355c-20c7-44fb-a687-efc50967576c\",\n            \"f2194801-89ae-4e48-9680-37575ea9e372\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96.49964904785156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04323688521981239,\n          \"Height\": 0.007720133755356073,\n          \"Left\": 0.7847824692726135,\n          \"Top\": 0.8739089369773865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7847824692726135,\n            \"Y\": 0.8739089369773865\n          },\n          {\n            \"X\": 0.8280153274536133,\n            \"Y\": 0.8739497661590576\n          },\n          {\n            \"X\": 0.8280193209648132,\n            \"Y\": 0.8816290497779846\n          },\n          {\n            \"X\": 0.7847862839698792,\n            \"Y\": 0.8815880417823792\n          }\n        ]\n      },\n      \"Id\": \"7d169920-fdc1-4649-977e-f5df0a775bfc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6ff75451-08e5-4387-ab40-4b7cbd7e94e5\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fab05d7b-ff74-41c9-ab39-ac739c329770\",\n            \"e9c51c39-ef1a-459c-ad1a-166e3b18742c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9416732788086,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08128789812326431,\n          \"Height\": 0.01009508315473795,\n          \"Left\": 0.8068466186523438,\n          \"Top\": 0.9046469926834106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8068466186523438,\n            \"Y\": 0.9046469926834106\n          },\n          {\n            \"X\": 0.8881289958953857,\n            \"Y\": 0.9047249555587769\n          },\n          {\n            \"X\": 0.8881345391273499,\n            \"Y\": 0.914742112159729\n          },\n          {\n            \"X\": 0.8068517446517944,\n            \"Y\": 0.9146637320518494\n          }\n        ]\n      },\n      \"Id\": \"6ff75451-08e5-4387-ab40-4b7cbd7e94e5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"408235f1-1cb3-4e18-9a84-d38adb23deaf\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8182144165039,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2060953825712204,\n          \"Height\": 0.008210599422454834,\n          \"Left\": 0.04232962802052498,\n          \"Top\": 0.9196006655693054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04232962802052498,\n            \"Y\": 0.9196006655693054\n          },\n          {\n            \"X\": 0.2484232634305954,\n            \"Y\": 0.9197999238967896\n          },\n          {\n            \"X\": 0.24842502176761627,\n            \"Y\": 0.9278112649917603\n          },\n          {\n            \"X\": 0.042330529540777206,\n            \"Y\": 0.9276111721992493\n          }\n        ]\n      },\n      \"Id\": \"c63c1f7c-c930-4d13-8f43-440a77f7256b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"d5ade994-acfc-451f-9293-329ccab15fae\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1206875-43ca-4513-9c2f-11ae7daf6512\",\n            \"efecab62-ddae-4e93-b831-50491927ff30\",\n            \"721cc4bb-2f4e-418c-badf-5467d9129a47\",\n            \"886f466b-6602-4887-abc8-2f031e2b4d7d\",\n            \"0af5ac15-69a2-4c0a-9d37-aacda56e3bf1\",\n            \"b6cc034f-44be-4d2b-ae75-0fa85c34a1c1\",\n            \"ffc4a2b1-71b3-422f-a725-6ec008c2afeb\",\n            \"58c05415-7ae0-4545-8fdc-7aedf3eefee4\",\n            \"a4f6d5f8-3463-4ce0-800a-b626a1d80366\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96497344970703,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10801880806684494,\n          \"Height\": 0.012122017331421375,\n          \"Left\": 0.09331092983484268,\n          \"Top\": 0.9326673746109009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09331092983484268,\n            \"Y\": 0.9326673746109009\n          },\n          {\n            \"X\": 0.2013273984193802,\n            \"Y\": 0.9327725172042847\n          },\n          {\n            \"X\": 0.20132973790168762,\n            \"Y\": 0.9447894096374512\n          },\n          {\n            \"X\": 0.09331260621547699,\n            \"Y\": 0.9446836113929749\n          }\n        ]\n      },\n      \"Id\": \"d5ade994-acfc-451f-9293-329ccab15fae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"746e83ad-4068-42ad-be68-df1a96e2c72a\",\n            \"8955777a-c516-41d2-a970-d9414c31ecb9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8813705444336,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07390705496072769,\n          \"Height\": 0.007749846205115318,\n          \"Left\": 0.41263625025749207,\n          \"Top\": 0.9196248650550842\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41263625025749207,\n            \"Y\": 0.9196248650550842\n          },\n          {\n            \"X\": 0.48654067516326904,\n            \"Y\": 0.9196963310241699\n          },\n          {\n            \"X\": 0.48654332756996155,\n            \"Y\": 0.9273747205734253\n          },\n          {\n            \"X\": 0.4126386046409607,\n            \"Y\": 0.9273030161857605\n          }\n        ]\n      },\n      \"Id\": \"59e488b1-4aac-43a4-a322-9d7b614f2082\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"519964e0-da08-45bb-b5a9-22543668741b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f6f51204-8f71-46de-b561-06b57c690e0b\",\n            \"ecc64f31-8f74-4b68-91a8-2a79d0dda5f6\",\n            \"d135039d-6f4f-495c-9cd7-5ffec18f2796\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.86868286132812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08212834596633911,\n          \"Height\": 0.012098774313926697,\n          \"Left\": 0.4995098412036896,\n          \"Top\": 0.9280549883842468\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4995098412036896,\n            \"Y\": 0.9280549883842468\n          },\n          {\n            \"X\": 0.581633448600769,\n            \"Y\": 0.9281347393989563\n          },\n          {\n            \"X\": 0.5816381573677063,\n            \"Y\": 0.9401537775993347\n          },\n          {\n            \"X\": 0.49951404333114624,\n            \"Y\": 0.940073549747467\n          }\n        ]\n      },\n      \"Id\": \"519964e0-da08-45bb-b5a9-22543668741b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c8ad6b6-4cb1-4b43-a872-765b2268f95f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.81503295898438,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030268652364611626,\n          \"Height\": 0.008711619302630424,\n          \"Left\": 0.7830981016159058,\n          \"Top\": 0.9643914103507996\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7830981016159058,\n            \"Y\": 0.9643914103507996\n          },\n          {\n            \"X\": 0.8133623003959656,\n            \"Y\": 0.9644213318824768\n          },\n          {\n            \"X\": 0.8133667707443237,\n            \"Y\": 0.9731030464172363\n          },\n          {\n            \"X\": 0.7831023931503296,\n            \"Y\": 0.9730730056762695\n          }\n        ]\n      },\n      \"Id\": \"7338c587-0ad2-449e-b2c9-3625354992f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b7524ddf-e6bb-4a07-9595-2457ab0d8680\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"75f80019-1503-486a-89e6-a3caf7b4fe5b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.64222717285156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09988471120595932,\n          \"Height\": 0.010450506582856178,\n          \"Left\": 0.8202797770500183,\n          \"Top\": 0.9640942215919495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8202797770500183,\n            \"Y\": 0.9640942215919495\n          },\n          {\n            \"X\": 0.9201586246490479,\n            \"Y\": 0.9641929268836975\n          },\n          {\n            \"X\": 0.9201645255088806,\n            \"Y\": 0.9745447635650635\n          },\n          {\n            \"X\": 0.8202851414680481,\n            \"Y\": 0.9744455814361572\n          }\n        ]\n      },\n      \"Id\": \"b7524ddf-e6bb-4a07-9595-2457ab0d8680\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"38254b9c-eb3f-49fe-8f64-181b28f611d2\",\n            \"dee4c3a2-7587-45df-b8d1-a20ab450452b\",\n            \"77306330-76c9-4f12-bcc6-df90a1d775d7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"518895d9-bc8e-400a-862c-22491e9efe3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"86eda78f-edd4-460c-b6bd-8c8e642e5b7c\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the form type?\",\n        \"Alias\": \"form_type\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 98,\n      \"Text\": \"Form 1005\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06658715754747391,\n          \"Height\": 0.009081556461751461,\n          \"Left\": 0.7826654314994812,\n          \"Top\": 0.9637231826782227\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7826654314994812,\n            \"Y\": 0.9637231826782227\n          },\n          {\n            \"X\": 0.8492478132247925,\n            \"Y\": 0.9637889862060547\n          },\n          {\n            \"X\": 0.8492525815963745,\n            \"Y\": 0.9728047251701355\n          },\n          {\n            \"X\": 0.7826699018478394,\n            \"Y\": 0.9727386832237244\n          }\n        ]\n      },\n      \"Id\": \"86eda78f-edd4-460c-b6bd-8c8e642e5b7c\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"06bd6c3e-02ca-47af-a3e8-6006c6a8ffd5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"449199c7-bb9b-4d75-84ff-a59d3755ba3e\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the name of the employer?\",\n        \"Alias\": \"employer_name\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 99,\n      \"Text\": \"Alejandro Rosalez\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15981070697307587,\n          \"Height\": 0.0147779555991292,\n          \"Left\": 0.07636977732181549,\n          \"Top\": 0.23029953241348267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07636977732181549,\n            \"Y\": 0.23029953241348267\n          },\n          {\n            \"X\": 0.23617735505104065,\n            \"Y\": 0.23040060698986053\n          },\n          {\n            \"X\": 0.23618048429489136,\n            \"Y\": 0.2450774908065796\n          },\n          {\n            \"X\": 0.0763716921210289,\n            \"Y\": 0.244975283741951\n          }\n        ]\n      },\n      \"Id\": \"449199c7-bb9b-4d75-84ff-a59d3755ba3e\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"36f31688-8c37-42f0-929b-41b98c60af43\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"b43c2ccd-8486-47d3-86b7-3b39713b9767\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the address of the lender?\",\n        \"Alias\": \"lender_address\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 92,\n      \"Text\": \"100 Main Street, Anytown, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27440428733825684,\n          \"Height\": 0.014856699854135513,\n          \"Left\": 0.5087769031524658,\n          \"Top\": 0.24658627808094025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5087769031524658,\n            \"Y\": 0.24658627808094025\n          },\n          {\n            \"X\": 0.7831739187240601,\n            \"Y\": 0.24676194787025452\n          },\n          {\n            \"X\": 0.7831811904907227,\n            \"Y\": 0.26144298911094666\n          },\n          {\n            \"X\": 0.5087820887565613,\n            \"Y\": 0.261265367269516\n          }\n        ]\n      },\n      \"Id\": \"b43c2ccd-8486-47d3-86b7-3b39713b9767\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"5e9adff1-ea1c-4bfc-a6a8-0e80b8c6f3ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"fc5cf749-9e0e-4dcf-90fc-e547c116f29c\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the YTD base pay?\",\n        \"Alias\": \"YTD_base_pay\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 98,\n      \"Text\": \"$ 15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.062208909541368484,\n          \"Height\": 0.010393190197646618,\n          \"Left\": 0.1394798904657364,\n          \"Top\": 0.56060791015625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1394798904657364,\n            \"Y\": 0.56060791015625\n          },\n          {\n            \"X\": 0.2016867846250534,\n            \"Y\": 0.5606572031974792\n          },\n          {\n            \"X\": 0.20168881118297577,\n            \"Y\": 0.5710010528564453\n          },\n          {\n            \"X\": 0.1394815742969513,\n            \"Y\": 0.5709514617919922\n          }\n        ]\n      },\n      \"Id\": \"fc5cf749-9e0e-4dcf-90fc-e547c116f29c\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"7eb418f9-e141-4526-9052-2f4fa22ad517\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"8bf9b043-ec06-4e7a-993c-00d163269fc7\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"Is overtime applicable?\",\n        \"Alias\": \"overtime\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 99,\n      \"Text\": \"Yes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019887646660208702,\n          \"Height\": 0.00769129628315568,\n          \"Left\": 0.8208975195884705,\n          \"Top\": 0.4857185482978821\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8208975195884705,\n            \"Y\": 0.4857185482978821\n          },\n          {\n            \"X\": 0.8407810926437378,\n            \"Y\": 0.4857335686683655\n          },\n          {\n            \"X\": 0.8407851457595825,\n            \"Y\": 0.4934098422527313\n          },\n          {\n            \"X\": 0.8209014534950256,\n            \"Y\": 0.49339473247528076\n          }\n        ]\n      },\n      \"Id\": \"8bf9b043-ec06-4e7a-993c-00d163269fc7\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 40.252525329589844,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15471124649047852,\n          \"Height\": 0.03007613681256771,\n          \"Left\": 0.12582090497016907,\n          \"Top\": 0.29971253871917725\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12582090497016907,\n            \"Y\": 0.29971253871917725\n          },\n          {\n            \"X\": 0.2805250585079193,\n            \"Y\": 0.2998155951499939\n          },\n          {\n            \"X\": 0.2805321514606476,\n            \"Y\": 0.3297886848449707\n          },\n          {\n            \"X\": 0.12582558393478394,\n            \"Y\": 0.3296833634376526\n          }\n        ]\n      },\n      \"Id\": \"19baf15e-ab45-436c-af37-b930ef61e540\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 31.854270935058594,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16752737760543823,\n          \"Height\": 0.02122463658452034,\n          \"Left\": 0.6279588937759399,\n          \"Top\": 0.3629433512687683\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6279588937759399,\n            \"Y\": 0.3629433512687683\n          },\n          {\n            \"X\": 0.7954756617546082,\n            \"Y\": 0.3630600571632385\n          },\n          {\n            \"X\": 0.7954862713813782,\n            \"Y\": 0.38416799902915955\n          },\n          {\n            \"X\": 0.6279677152633667,\n            \"Y\": 0.38404956459999084\n          }\n        ]\n      },\n      \"Id\": \"35a23e84-69c5-4657-a34d-31d59853015b\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 41.796268463134766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15033936500549316,\n          \"Height\": 0.018896156921982765,\n          \"Left\": 0.11470387876033783,\n          \"Top\": 0.8888712525367737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11470387876033783,\n            \"Y\": 0.8888712525367737\n          },\n          {\n            \"X\": 0.26503896713256836,\n            \"Y\": 0.8890143632888794\n          },\n          {\n            \"X\": 0.2650432586669922,\n            \"Y\": 0.9077674150466919\n          },\n          {\n            \"X\": 0.11470669507980347,\n            \"Y\": 0.9076229333877563\n          }\n        ]\n      },\n      \"Id\": \"d51ffd99-b3be-4170-ae6d-c766c965708f\"\n    },\n    {\n      \"BlockType\": \"LAYOUT_TITLE\",\n      \"Confidence\": 90.283203125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.570996880531311,\n          \"Height\": 0.023837145417928696,\n          \"Left\": 0.04864295944571495,\n          \"Top\": 0.07842227071523666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04864295944571495,\n            \"Y\": 0.07842227071523666\n          },\n          {\n            \"X\": 0.6196301579475403,\n            \"Y\": 0.07874131202697754\n          },\n          {\n            \"X\": 0.6196398735046387,\n            \"Y\": 0.10225941985845566\n          },\n          {\n            \"X\": 0.048645686358213425,\n            \"Y\": 0.10193386673927307\n          }\n        ]\n      },\n      \"Id\": \"358e876e-65e4-4f02-93a2-2c9528104775\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"608b135d-508e-466f-aeb8-bc49df2fdc50\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 95.458984375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8728158473968506,\n          \"Height\": 0.03827570378780365,\n          \"Left\": 0.046781763434410095,\n          \"Top\": 0.10950949788093567\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046781763434410095,\n            \"Y\": 0.10950949788093567\n          },\n          {\n            \"X\": 0.9195761680603027,\n            \"Y\": 0.11001033335924149\n          },\n          {\n            \"X\": 0.9195975661277771,\n            \"Y\": 0.14778520166873932\n          },\n          {\n            \"X\": 0.0467861108481884,\n            \"Y\": 0.1472683697938919\n          }\n        ]\n      },\n      \"Id\": \"a1f5ef77-7b13-471e-91dc-90390d494179\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"734dfbf7-9dac-4186-a73a-469ac9904c78\",\n            \"5cda3306-f152-45ed-a599-047291fc934c\",\n            \"a2cb6c1a-e8a0-468c-b4c4-8385f124b487\",\n            \"0f67019d-0a84-4226-8fc4-0b4922968816\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 68.1640625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7121458649635315,\n          \"Height\": 0.02883126586675644,\n          \"Left\": 0.04585767537355423,\n          \"Top\": 0.1569707691669464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04585767537355423,\n            \"Y\": 0.1569707691669464\n          },\n          {\n            \"X\": 0.7579898238182068,\n            \"Y\": 0.15739580988883972\n          },\n          {\n            \"X\": 0.7580035328865051,\n            \"Y\": 0.18580204248428345\n          },\n          {\n            \"X\": 0.04586092755198479,\n            \"Y\": 0.1853671669960022\n          }\n        ]\n      },\n      \"Id\": \"5629899a-492b-41ec-bd1e-fece4f43926f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"efca28c7-4ba8-44b3-bd82-6270b1119f0c\",\n            \"5f6414e2-c94d-46f4-8c99-cb3ffb26e527\",\n            \"1f6df5e6-209a-4d3a-8d27-f820abd41ace\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_KEY_VALUE\",\n      \"Confidence\": 54.1015625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8826913833618164,\n          \"Height\": 0.497041255235672,\n          \"Left\": 0.04223164543509483,\n          \"Top\": 0.19904933869838715\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04223164543509483,\n            \"Y\": 0.19904933869838715\n          },\n          {\n            \"X\": 0.9246399402618408,\n            \"Y\": 0.19959402084350586\n          },\n          {\n            \"X\": 0.9249230027198792,\n            \"Y\": 0.696090579032898\n          },\n          {\n            \"X\": 0.042287591844797134,\n            \"Y\": 0.6953331828117371\n          }\n        ]\n      },\n      \"Id\": \"140253e0-7373-4b00-b9c3-2507ec1aec73\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3dd001a3-e302-4670-94ff-15f8f6c823eb\",\n            \"6be59362-b48a-45e4-a9ca-60614b8b1a01\",\n            \"807777db-0054-4460-b4e6-a3c6bc054ed7\",\n            \"c5c46960-814c-4400-92dc-a84a401b8788\",\n            \"e3a7155c-a7d3-4c65-9f46-57cfb3a4157e\",\n            \"c05f719d-ce2d-4964-bb77-a1d267a46d64\",\n            \"16120d4e-f11a-4bf9-b8cb-f50ea92ce98d\",\n            \"132e20fe-6a9f-4d1d-8d67-8efb3b53de58\",\n            \"457ad9d9-2182-4a72-9a81-d6c2519c71f1\",\n            \"49c03a1f-1647-4c59-9185-f07f68c5f95b\",\n            \"31cb7fb9-04ef-41ce-9836-b098463f577d\",\n            \"c8637bac-acda-442a-a68e-497ed85e25e8\",\n            \"6b52e0cd-eb0a-466f-83fa-1756b4286996\",\n            \"44153b58-96d1-4b7a-b862-54be03a17cdd\",\n            \"50d7e295-1c0a-4830-991f-90e394797f27\",\n            \"0798d755-3022-46cd-838b-9c6a7f775585\",\n            \"8b78b4b0-70f4-4d76-84ad-f8a060186f28\",\n            \"c1884dc4-7c03-43e6-a747-e4bbd3349bdf\",\n            \"004d1f2c-d6b8-41a6-8a4b-48e98071009e\",\n            \"a6ed7ab3-bba0-4113-9c8a-83ec7d7b405a\",\n            \"b2936001-ed2c-4c01-996c-2bdbc0dc27a9\",\n            \"faaf878d-e7d7-4a22-8679-3c7fd1b6838a\",\n            \"05ee1b5b-2738-4625-89e6-d6ecdcb3b952\",\n            \"f69a344b-f017-4a77-820e-5150a742d565\",\n            \"a14c1176-56e7-4c94-9da4-20172a268dfd\",\n            \"27f33b62-e80c-408a-9db2-f360c5e8dc9b\",\n            \"dfd5ff9f-33e2-4878-ac31-2c4f5a98817c\",\n            \"87c22dcd-9745-4222-9392-7fae2662fc46\",\n            \"ccf6d04e-62a6-47a7-a339-a6b60c11636c\",\n            \"2072d41c-65c2-4926-afa1-f1b02d8bba87\",\n            \"cf4bfd34-b19d-451b-8407-3870c1e14854\",\n            \"1e80204f-0c52-48c5-9ac7-f982e3b9fc04\",\n            \"976f4378-ac8b-438c-9407-3695f29d13a2\",\n            \"1a465e29-f814-4ba4-a252-2dbb81ebeaab\",\n            \"97a2e24f-253d-42f4-ba7d-7399b66d12f6\",\n            \"64e877d1-9053-4752-87ce-25a26b6dd0d8\",\n            \"3d1eedc4-807c-4821-bbe1-61930558f664\",\n            \"a64f517d-b6af-4c0f-bb58-d2052386248e\",\n            \"2d886c2a-03cd-4f4e-963f-2e56792ab2aa\",\n            \"6c648f83-b00e-4998-a56f-9fddc1af0600\",\n            \"09a5c826-2ea3-4278-9eea-6c88533afaff\",\n            \"c1cd1988-371b-4660-b536-4370c52ed44f\",\n            \"300383db-c133-4610-ae96-1fef6a9de0ed\",\n            \"81759555-44bf-4a22-a4a7-5ed88388a045\",\n            \"687291d0-c171-4e06-a48f-10784df04844\",\n            \"5184eb46-3e0a-49bc-b355-6bdcb3372320\",\n            \"cd7467c5-df30-4fee-a04c-9c98b3ecaed3\",\n            \"6fe6c390-f217-4920-88c2-f5fe68a53b89\",\n            \"81af2ebf-b3e0-47c8-9be3-d8d15689389c\",\n            \"93a508af-cd6c-42b8-aa4a-dd9ba6412b40\",\n            \"52010ffd-9987-4161-b34a-0e366b0ef63f\",\n            \"9bebc6bf-3f2d-45a0-a96e-a4a659a509e8\",\n            \"b7d0a21e-00b1-4aca-8d3b-1fb8d8278ba5\",\n            \"1deec730-ae7e-4a73-9e57-c1c33ed567c1\",\n            \"48d0558d-7f6d-41b4-a4b9-25b752e5029b\",\n            \"3de06a90-e6a8-47c9-8c65-7c85258ccd5f\",\n            \"2650115e-e724-47c6-95a3-2dec40803269\",\n            \"dd3cc627-946a-4f64-9a5f-aff04ba8bbc8\",\n            \"6e1358f5-7a64-444e-982b-b976968918c8\",\n            \"047524a5-6ad2-45ae-b467-f236f15a7be2\",\n            \"0ae5b31e-c14d-44f1-8f2f-baf39b193358\",\n            \"108f2832-0acc-4a22-8638-2edf4091e47d\",\n            \"606dcb98-a7b4-41a7-8530-74aa399b925d\",\n            \"9f396b6a-d0e5-4419-a2f5-f151a06f1482\",\n            \"57c5d59b-207f-4a02-a093-2774fcaf0cd6\",\n            \"cdbce171-dbb1-4f8d-b21f-ea2fac312444\",\n            \"a7a0ffee-5e5a-4a8b-8eb7-18024581806c\",\n            \"e449777b-95b8-4068-acba-15e1bd3ee21c\",\n            \"abdef1b3-1038-481a-84a8-4b767668ac3e\",\n            \"1aa01eea-494b-4687-a10f-bbc571c7ced0\",\n            \"d7f5fdb4-dae6-4c61-8332-ec0c5e5ad4a4\",\n            \"99d8fb77-23a8-4d71-88ae-5c8da3314a14\",\n            \"2d352df5-fed1-47a7-b3af-3e8198db2120\",\n            \"3babda4d-7ae7-458d-a8dc-403d3db53bd6\",\n            \"de13f2a9-0bcc-4c84-ac2f-36ee6ffc4b85\",\n            \"a973d2d6-a31a-481e-9fd7-3145b12c6464\",\n            \"f134b978-35e8-4136-b045-49b198a80b1e\",\n            \"aff7d032-5ceb-4223-90c3-384bcfbddb5f\",\n            \"d0956989-2c2c-45e5-8c5f-a15c366ab26a\",\n            \"9fa5315d-3235-46a2-8e89-7b47877db5dc\",\n            \"85907639-bf28-4219-ae04-ae60e85fa54b\",\n            \"5d013753-41d1-4764-b423-7c37ffe16abb\",\n            \"d4890e7c-09f0-4da2-bae6-b5ee3369d256\",\n            \"1ad52017-999e-4855-bfaf-c9b9415ceda2\",\n            \"576955d9-baff-4118-bcf5-9b031ad523db\",\n            \"9ea34cb3-5a0f-4684-8827-e62ca20ff893\",\n            \"c81f11fc-6215-4b3e-ad02-2dcadb0aba2a\",\n            \"30dd3f5a-4bb9-4766-927a-e9c29f81b6e7\",\n            \"9f545432-2896-406e-8ac1-b358ba215bb9\",\n            \"176369b9-3d01-4e64-b3fd-b39a8ea3a152\",\n            \"8258e6e2-0921-4b07-957e-a00e54130328\",\n            \"7b9e5654-e5f2-4084-86a9-9132cbf27c58\",\n            \"03921830-8fc6-4ea9-af86-990054febb3c\",\n            \"15b2b0c6-a074-4961-9ad1-0163582dd819\",\n            \"ef34fae6-02b7-4cf3-963a-ab7fc8e8a12f\",\n            \"da65ec75-8bec-4eba-8125-fbbbc6145f1f\",\n            \"29c1f640-f35c-4ef9-a93d-5747047e2eb5\",\n            \"6017337c-fb94-43c0-925e-b2a74475fc1f\",\n            \"9e918c09-d312-4c0a-937f-0e805db712b5\",\n            \"78139c24-0070-4ea7-b2aa-c97328825401\",\n            \"b3489236-a7bf-4059-983d-e2f1eb0c53e4\",\n            \"adbe397c-b717-43b9-90ff-1d9e7e83722a\",\n            \"5dc0efe8-5550-40a0-bf6f-7916a681296d\",\n            \"0e2447ba-5a09-4910-9b9b-2b35d044b06c\",\n            \"2a0348ed-7ef0-41e5-a411-6438d7e16f83\",\n            \"6c2cdeb0-0775-4750-8165-4e137a7b6bfa\",\n            \"fec73954-ef4c-4893-84ea-07019a03bc8a\",\n            \"1d3a9650-6d13-4620-bc47-7437181d7e51\",\n            \"55619255-f1db-40ef-b8f0-513ed1a136b6\",\n            \"c46a25ac-6ad1-42b5-a5d8-58db217a9cdb\",\n            \"e9a0a5d8-20cf-456a-8bfb-e0e91f65ce62\",\n            \"a2dd26e8-8d06-484a-910e-018a248da396\",\n            \"cd6a043c-cc54-4ba8-8dc3-f3b526ab83c4\",\n            \"3383dfa3-9ba4-4164-9010-0c184432295d\",\n            \"6635b054-cf6c-4fec-912e-7d659abff31c\",\n            \"ddcab34a-e842-4692-a71d-b7958ac7883b\",\n            \"7a7dfcfb-d9ac-44da-988b-03ddac93045e\",\n            \"00fdd6b5-ede9-4f23-850e-e79a0055610d\",\n            \"63346150-a31c-463e-a19e-664aa312fc3e\",\n            \"703899a9-b2a8-48f0-9dab-32e56f5878dd\",\n            \"2acfb461-e00b-4803-9d97-d69a81aa1c7f\",\n            \"3b7444c7-9d41-4c24-92fc-613beb57a397\",\n            \"b32353b0-9469-4a4f-9a8c-e15375a2ad53\",\n            \"9942f72c-ae1c-485e-beae-6eb3a41d49ce\",\n            \"f2bc459b-34c2-4736-907c-892801a85a07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 47.94921875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.555804431438446,\n          \"Height\": 0.010399655438959599,\n          \"Left\": 0.042073238641023636,\n          \"Top\": 0.69637531042099\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042073238641023636,\n            \"Y\": 0.69637531042099\n          },\n          {\n            \"X\": 0.5978736877441406,\n            \"Y\": 0.6968525052070618\n          },\n          {\n            \"X\": 0.5978776812553406,\n            \"Y\": 0.7067749500274658\n          },\n          {\n            \"X\": 0.042074356228113174,\n            \"Y\": 0.7062950730323792\n          }\n        ]\n      },\n      \"Id\": \"515b3c42-d48f-4c0c-aa20-d941c2fc3257\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d3def23d-c5b6-4d52-a572-c6f1d8cc290e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 33.447265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10449326783418655,\n          \"Height\": 0.01262641977518797,\n          \"Left\": 0.05848870053887367,\n          \"Top\": 0.7155548930168152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05848870053887367,\n            \"Y\": 0.7155548930168152\n          },\n          {\n            \"X\": 0.16297976672649384,\n            \"Y\": 0.7156456112861633\n          },\n          {\n            \"X\": 0.16298195719718933,\n            \"Y\": 0.7281813621520996\n          },\n          {\n            \"X\": 0.058490216732025146,\n            \"Y\": 0.7280899882316589\n          }\n        ]\n      },\n      \"Id\": \"88e34516-1fce-430c-9d03-fcac79c25d84\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"719f31e1-25f0-4e83-b6af-e610d4c1509b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_SECTION_HEADER\",\n      \"Confidence\": 36.9384765625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3374021053314209,\n          \"Height\": 0.011543539352715015,\n          \"Left\": 0.04259515926241875,\n          \"Top\": 0.7585078477859497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04259515926241875,\n            \"Y\": 0.7585078477859497\n          },\n          {\n            \"X\": 0.3799940347671509,\n            \"Y\": 0.7588077187538147\n          },\n          {\n            \"X\": 0.37999725341796875,\n            \"Y\": 0.7700513601303101\n          },\n          {\n            \"X\": 0.04259642958641052,\n            \"Y\": 0.7697497010231018\n          }\n        ]\n      },\n      \"Id\": \"e436b230-ba30-4fe5-88f1-13733789fec6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3cc09ab3-da1a-429e-ba2c-d1b24aba7b08\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_KEY_VALUE\",\n      \"Confidence\": 71.142578125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8699235916137695,\n          \"Height\": 0.17640352249145508,\n          \"Left\": 0.04167725518345833,\n          \"Top\": 0.7694151997566223\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04167725518345833,\n            \"Y\": 0.7694151997566223\n          },\n          {\n            \"X\": 0.911501944065094,\n            \"Y\": 0.7701929211616516\n          },\n          {\n            \"X\": 0.9116008877754211,\n            \"Y\": 0.9458187222480774\n          },\n          {\n            \"X\": 0.04169698804616928,\n            \"Y\": 0.9449668526649475\n          }\n        ]\n      },\n      \"Id\": \"ff6b662a-78c9-4336-b5f2-259341126b2c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0d892861-359c-4181-b9b6-29bd49ca9716\",\n            \"a4b12b21-e369-4d4c-af79-124eedd02167\",\n            \"7d31b03e-3265-4993-8e6f-612c73b31d67\",\n            \"00f71c8c-9194-4dd3-a87f-57bc2bde175e\",\n            \"b3548097-eaeb-45e1-a2cc-da6fcddc3500\",\n            \"280c6788-badf-43e9-b70d-bfb3ed7a4e47\",\n            \"2cd050a9-4a1e-4749-99a7-b6e0f2768b95\",\n            \"6441f4f1-f570-4f0c-928b-f06b5bf30d07\",\n            \"22c27a7d-8e9a-4ecf-8f21-d77b25c49e8d\",\n            \"db6520a3-d6c7-42af-bd8a-0539b04704b8\",\n            \"e5456bb4-26b3-46c9-b15a-229cbc1c855f\",\n            \"b8894b35-66bc-4ad9-a6de-9f8ba9ed1577\",\n            \"f209c3fa-b710-402f-b82c-46fabd1ca7b8\",\n            \"15393298-e952-47d8-b43a-16e13b62b24d\",\n            \"a9a73d7a-c597-4799-bf71-b63843a7a604\",\n            \"f12cc3b2-3460-481b-a03d-08cbb2b1d7e5\",\n            \"a91c92d9-147e-484a-8516-98a29317110a\",\n            \"a46b4df4-851f-43b1-87c3-35da0afc47c3\",\n            \"b4867c56-a95c-4e2f-a0d5-25242229d9b9\",\n            \"19de25a1-18a3-4466-9da3-393d1c761d32\",\n            \"312eb7b5-64d0-4d45-9180-7c383b5363e2\",\n            \"16a750f5-e936-4e3b-b21b-1428135b4806\",\n            \"d5f54c3c-0fe3-4385-a45a-0dee90c1c2fb\",\n            \"d546f653-0782-4395-93db-9a4b0accc515\",\n            \"c24bde99-b498-4e21-b75d-51c4c9613d29\",\n            \"9c08e340-2804-4c7c-855a-e22ca517853d\",\n            \"41f2903d-dfbb-4e5a-bf57-87205401508f\",\n            \"bb917b0f-3ff9-4139-9256-0560c4752982\",\n            \"720e15c6-50e2-485b-902e-0b0cd0476eac\",\n            \"f050889a-6e06-4887-8c69-4349fddc59b0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_FOOTER\",\n      \"Confidence\": 58.056640625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06687486916780472,\n          \"Height\": 0.008876495994627476,\n          \"Left\": 0.782781183719635,\n          \"Top\": 0.9639674425125122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.782781183719635,\n            \"Y\": 0.9639674425125122\n          },\n          {\n            \"X\": 0.8496513962745667,\n            \"Y\": 0.9640335440635681\n          },\n          {\n            \"X\": 0.8496560454368591,\n            \"Y\": 0.9728439450263977\n          },\n          {\n            \"X\": 0.7827855348587036,\n            \"Y\": 0.9727775454521179\n          }\n        ]\n      },\n      \"Id\": \"2cf5ee08-c3eb-4c4b-8017-198aca22b9a5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e93909a1-423a-4536-ba32-e98dbfe3ed68\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_PAGE_NUMBER\",\n      \"Confidence\": 38.57421875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045197710394859314,\n          \"Height\": 0.009979138150811195,\n          \"Left\": 0.8746930956840515,\n          \"Top\": 0.9642939567565918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8746930956840515,\n            \"Y\": 0.9642939567565918\n          },\n          {\n            \"X\": 0.9198851585388184,\n            \"Y\": 0.9643386006355286\n          },\n          {\n            \"X\": 0.919890820980072,\n            \"Y\": 0.9742730855941772\n          },\n          {\n            \"X\": 0.8746985197067261,\n            \"Y\": 0.9742282032966614\n          }\n        ]\n      },\n      \"Id\": \"c46c034e-e35a-41b2-849f-ad24eec597bf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60752022-f7c2-4801-bc21-f61b182eb8bd\"\n          ]\n        }\n      ]\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/invoice-expense-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"ExpenseDocuments\": [\n    {\n      \"ExpenseIndex\": 1,\n      \"LineItemGroups\": [\n        {\n          \"LineItemGroupIndex\": 1,\n          \"LineItems\": [\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9984130859375,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.013920702040195465,\n                        \"Left\": 0.0599331259727478,\n                        \"Top\": 0.37997692823410034,\n                        \"Width\": 0.09605710953474045\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.0599331259727478,\n                          \"Y\": 0.38007691502571106\n                        },\n                        {\n                          \"X\": 0.1559828817844391,\n                          \"Y\": 0.37997692823410034\n                        },\n                        {\n                          \"X\": 0.15599022805690765,\n                          \"Y\": 0.39379769563674927\n                        },\n                        {\n                          \"X\": 0.0599399171769619,\n                          \"Y\": 0.3938976228237152\n                        }\n                      ]\n                    },\n                    \"Text\": \"Description\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"ITEM\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 97.65033721923828,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.012431539595127106,\n                        \"Left\": 0.05906036123633385,\n                        \"Top\": 0.4013606905937195,\n                        \"Width\": 0.0805496871471405\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.05906036123633385,\n                          \"Y\": 0.4014444351196289\n                        },\n                        {\n                          \"X\": 0.13960357010364532,\n                          \"Y\": 0.4013606905937195\n                        },\n                        {\n                          \"X\": 0.13961005210876465,\n                          \"Y\": 0.41370856761932373\n                        },\n                        {\n                          \"X\": 0.059066422283649445,\n                          \"Y\": 0.4137922525405884\n                        }\n                      ]\n                    },\n                    \"Text\": \"Product 1\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99943542480469,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014117175713181496,\n                        \"Left\": 0.5948777794837952,\n                        \"Top\": 0.37735867500305176,\n                        \"Width\": 0.07342320680618286\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.5948777794837952,\n                          \"Y\": 0.3774351179599762\n                        },\n                        {\n                          \"X\": 0.6682904362678528,\n                          \"Y\": 0.37735867500305176\n                        },\n                        {\n                          \"X\": 0.668300986289978,\n                          \"Y\": 0.39139947295188904\n                        },\n                        {\n                          \"X\": 0.5948878526687622,\n                          \"Y\": 0.3914758563041687\n                        }\n                      ]\n                    },\n                    \"Text\": \"Quantity\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"QUANTITY\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.65965270996094,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01139987912029028,\n                        \"Left\": 0.6571590900421143,\n                        \"Top\": 0.39859429001808167,\n                        \"Width\": 0.011622621677815914\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.6571590900421143,\n                          \"Y\": 0.3986063599586487\n                        },\n                        {\n                          \"X\": 0.6687731146812439,\n                          \"Y\": 0.39859429001808167\n                        },\n                        {\n                          \"X\": 0.6687816977500916,\n                          \"Y\": 0.4099820852279663\n                        },\n                        {\n                          \"X\": 0.6571675539016724,\n                          \"Y\": 0.4099941551685333\n                        }\n                      ]\n                    },\n                    \"Text\": \"1\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99846649169922,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011131499893963337,\n                        \"Left\": 0.7181282639503479,\n                        \"Top\": 0.37749525904655457,\n                        \"Width\": 0.07860542088747025\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7181282639503479,\n                          \"Y\": 0.3775770962238312\n                        },\n                        {\n                          \"X\": 0.7967247366905212,\n                          \"Y\": 0.37749525904655457\n                        },\n                        {\n                          \"X\": 0.7967336773872375,\n                          \"Y\": 0.3885449767112732\n                        },\n                        {\n                          \"X\": 0.7181367874145508,\n                          \"Y\": 0.38862675428390503\n                        }\n                      ]\n                    },\n                    \"Text\": \"Unit Price\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"UNIT_PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99959564208984,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014489375054836273,\n                        \"Left\": 0.7475032806396484,\n                        \"Top\": 0.39789697527885437,\n                        \"Width\": 0.04946531355381012\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7475032806396484,\n                          \"Y\": 0.39794841408729553\n                        },\n                        {\n                          \"X\": 0.7969569563865662,\n                          \"Y\": 0.39789697527885437\n                        },\n                        {\n                          \"X\": 0.7969685792922974,\n                          \"Y\": 0.41233497858047485\n                        },\n                        {\n                          \"X\": 0.7475146055221558,\n                          \"Y\": 0.41238635778427124\n                        }\n                      ]\n                    },\n                    \"Text\": \"$1000\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9969482421875,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01135801337659359,\n                        \"Left\": 0.872251033782959,\n                        \"Top\": 0.37865495681762695,\n                        \"Width\": 0.06933055073022842\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.872251033782959,\n                          \"Y\": 0.37872713804244995\n                        },\n                        {\n                          \"X\": 0.9415717720985413,\n                          \"Y\": 0.37865495681762695\n                        },\n                        {\n                          \"X\": 0.9415815472602844,\n                          \"Y\": 0.38994085788726807\n                        },\n                        {\n                          \"X\": 0.8722604513168335,\n                          \"Y\": 0.3900129795074463\n                        }\n                      ]\n                    },\n                    \"Text\": \"Amount\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99972534179688,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014550632797181606,\n                        \"Left\": 0.8916629552841187,\n                        \"Top\": 0.39774730801582336,\n                        \"Width\": 0.049237433820962906\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8916629552841187,\n                          \"Y\": 0.3977985084056854\n                        },\n                        {\n                          \"X\": 0.9408878684043884,\n                          \"Y\": 0.39774730801582336\n                        },\n                        {\n                          \"X\": 0.940900444984436,\n                          \"Y\": 0.41224679350852966\n                        },\n                        {\n                          \"X\": 0.8916752338409424,\n                          \"Y\": 0.41229793429374695\n                        }\n                      ]\n                    },\n                    \"Text\": \"$1000\"\n                  }\n                },\n                {\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"EXPENSE_ROW\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 98.98448944091797,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.016044925898313522,\n                        \"Left\": 0.05905899778008461,\n                        \"Top\": 0.39774730801582336,\n                        \"Width\": 0.8818419575691223\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.05905899778008461,\n                          \"Y\": 0.39866432547569275\n                        },\n                        {\n                          \"X\": 0.9408878684043884,\n                          \"Y\": 0.39774730801582336\n                        },\n                        {\n                          \"X\": 0.940900981426239,\n                          \"Y\": 0.41287609934806824\n                        },\n                        {\n                          \"X\": 0.059066422283649445,\n                          \"Y\": 0.4137922525405884\n                        }\n                      ]\n                    },\n                    \"Text\": \"Product 1 1 $1000 $1000\"\n                  }\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9984130859375,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.013920702040195465,\n                        \"Left\": 0.0599331259727478,\n                        \"Top\": 0.37997692823410034,\n                        \"Width\": 0.09605710953474045\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.0599331259727478,\n                          \"Y\": 0.38007691502571106\n                        },\n                        {\n                          \"X\": 0.1559828817844391,\n                          \"Y\": 0.37997692823410034\n                        },\n                        {\n                          \"X\": 0.15599022805690765,\n                          \"Y\": 0.39379769563674927\n                        },\n                        {\n                          \"X\": 0.0599399171769619,\n                          \"Y\": 0.3938976228237152\n                        }\n                      ]\n                    },\n                    \"Text\": \"Description\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"ITEM\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.97852325439453,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.012187568470835686,\n                        \"Left\": 0.058342184871435165,\n                        \"Top\": 0.42359697818756104,\n                        \"Width\": 0.07792998850345612\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.058342184871435165,\n                          \"Y\": 0.42367786169052124\n                        },\n                        {\n                          \"X\": 0.136265829205513,\n                          \"Y\": 0.42359697818756104\n                        },\n                        {\n                          \"X\": 0.13627217710018158,\n                          \"Y\": 0.43570369482040405\n                        },\n                        {\n                          \"X\": 0.058348122984170914,\n                          \"Y\": 0.43578454852104187\n                        }\n                      ]\n                    },\n                    \"Text\": \"Service 3\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99943542480469,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014117175713181496,\n                        \"Left\": 0.5948777794837952,\n                        \"Top\": 0.37735867500305176,\n                        \"Width\": 0.07342320680618286\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.5948777794837952,\n                          \"Y\": 0.3774351179599762\n                        },\n                        {\n                          \"X\": 0.6682904362678528,\n                          \"Y\": 0.37735867500305176\n                        },\n                        {\n                          \"X\": 0.668300986289978,\n                          \"Y\": 0.39139947295188904\n                        },\n                        {\n                          \"X\": 0.5948878526687622,\n                          \"Y\": 0.3914758563041687\n                        }\n                      ]\n                    },\n                    \"Text\": \"Quantity\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"OTHER\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 0,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014141364023089409,\n                        \"Left\": 0.5705860257148743,\n                        \"Top\": 0.42101141810417175,\n                        \"Width\": 0.12859947979450226\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.5705860257148743,\n                          \"Y\": 0.42114493250846863\n                        },\n                        {\n                          \"X\": 0.6991748213768005,\n                          \"Y\": 0.42101141810417175\n                        },\n                        {\n                          \"X\": 0.6991855502128601,\n                          \"Y\": 0.4350193738937378\n                        },\n                        {\n                          \"X\": 0.5705959796905518,\n                          \"Y\": 0.4351527690887451\n                        }\n                      ]\n                    },\n                    \"Text\": \"\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99846649169922,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011131499893963337,\n                        \"Left\": 0.7181282639503479,\n                        \"Top\": 0.37749525904655457,\n                        \"Width\": 0.07860542088747025\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7181282639503479,\n                          \"Y\": 0.3775770962238312\n                        },\n                        {\n                          \"X\": 0.7967247366905212,\n                          \"Y\": 0.37749525904655457\n                        },\n                        {\n                          \"X\": 0.7967336773872375,\n                          \"Y\": 0.3885449767112732\n                        },\n                        {\n                          \"X\": 0.7181367874145508,\n                          \"Y\": 0.38862675428390503\n                        }\n                      ]\n                    },\n                    \"Text\": \"Unit Price\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"UNIT_PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99913024902344,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.013889079913496971,\n                        \"Left\": 0.7475213408470154,\n                        \"Top\": 0.4209102392196655,\n                        \"Width\": 0.04909885302186012\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7475213408470154,\n                          \"Y\": 0.4209612309932709\n                        },\n                        {\n                          \"X\": 0.7966090440750122,\n                          \"Y\": 0.4209102392196655\n                        },\n                        {\n                          \"X\": 0.7966201901435852,\n                          \"Y\": 0.43474841117858887\n                        },\n                        {\n                          \"X\": 0.7475321888923645,\n                          \"Y\": 0.43479931354522705\n                        }\n                      ]\n                    },\n                    \"Text\": \"$2789\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9969482421875,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01135801337659359,\n                        \"Left\": 0.872251033782959,\n                        \"Top\": 0.37865495681762695,\n                        \"Width\": 0.06933055073022842\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.872251033782959,\n                          \"Y\": 0.37872713804244995\n                        },\n                        {\n                          \"X\": 0.9415717720985413,\n                          \"Y\": 0.37865495681762695\n                        },\n                        {\n                          \"X\": 0.9415815472602844,\n                          \"Y\": 0.38994085788726807\n                        },\n                        {\n                          \"X\": 0.8722604513168335,\n                          \"Y\": 0.3900129795074463\n                        }\n                      ]\n                    },\n                    \"Text\": \"Amount\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99966430664062,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01402046624571085,\n                        \"Left\": 0.8916824460029602,\n                        \"Top\": 0.4207608997821808,\n                        \"Width\": 0.04877569526433945\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8916824460029602,\n                          \"Y\": 0.4208115339279175\n                        },\n                        {\n                          \"X\": 0.9404460191726685,\n                          \"Y\": 0.4207608997821808\n                        },\n                        {\n                          \"X\": 0.9404581189155579,\n                          \"Y\": 0.43473076820373535\n                        },\n                        {\n                          \"X\": 0.8916942477226257,\n                          \"Y\": 0.43478137254714966\n                        }\n                      ]\n                    },\n                    \"Text\": \"$2789\"\n                  }\n                },\n                {\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"EXPENSE_ROW\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.98872375488281,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.015023648738861084,\n                        \"Left\": 0.05834120512008667,\n                        \"Top\": 0.4207608997821808,\n                        \"Width\": 0.8821170330047607\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.05834120512008667,\n                          \"Y\": 0.4216768443584442\n                        },\n                        {\n                          \"X\": 0.9404460191726685,\n                          \"Y\": 0.4207608997821808\n                        },\n                        {\n                          \"X\": 0.9404582381248474,\n                          \"Y\": 0.4348694384098053\n                        },\n                        {\n                          \"X\": 0.058348122984170914,\n                          \"Y\": 0.43578454852104187\n                        }\n                      ]\n                    },\n                    \"Text\": \"Service 3 $2789 $2789\"\n                  }\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9984130859375,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.013920702040195465,\n                        \"Left\": 0.0599331259727478,\n                        \"Top\": 0.37997692823410034,\n                        \"Width\": 0.09605710953474045\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.0599331259727478,\n                          \"Y\": 0.38007691502571106\n                        },\n                        {\n                          \"X\": 0.1559828817844391,\n                          \"Y\": 0.37997692823410034\n                        },\n                        {\n                          \"X\": 0.15599022805690765,\n                          \"Y\": 0.39379769563674927\n                        },\n                        {\n                          \"X\": 0.0599399171769619,\n                          \"Y\": 0.3938976228237152\n                        }\n                      ]\n                    },\n                    \"Text\": \"Description\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"ITEM\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.95793914794922,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01192942913621664,\n                        \"Left\": 0.058802660554647446,\n                        \"Top\": 0.44660285115242004,\n                        \"Width\": 0.08372925966978073\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.058802660554647446,\n                          \"Y\": 0.446689635515213\n                        },\n                        {\n                          \"X\": 0.14252568781375885,\n                          \"Y\": 0.44660285115242004\n                        },\n                        {\n                          \"X\": 0.14253193140029907,\n                          \"Y\": 0.45844554901123047\n                        },\n                        {\n                          \"X\": 0.058808475732803345,\n                          \"Y\": 0.45853227376937866\n                        }\n                      ]\n                    },\n                    \"Text\": \"Product 2\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99943542480469,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014117175713181496,\n                        \"Left\": 0.5948777794837952,\n                        \"Top\": 0.37735867500305176,\n                        \"Width\": 0.07342320680618286\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.5948777794837952,\n                          \"Y\": 0.3774351179599762\n                        },\n                        {\n                          \"X\": 0.6682904362678528,\n                          \"Y\": 0.37735867500305176\n                        },\n                        {\n                          \"X\": 0.668300986289978,\n                          \"Y\": 0.39139947295188904\n                        },\n                        {\n                          \"X\": 0.5948878526687622,\n                          \"Y\": 0.3914758563041687\n                        }\n                      ]\n                    },\n                    \"Text\": \"Quantity\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"QUANTITY\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.9884033203125,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011684644967317581,\n                        \"Left\": 0.6552985310554504,\n                        \"Top\": 0.4440527856349945,\n                        \"Width\": 0.016704866662621498\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.6552985310554504,\n                          \"Y\": 0.44407010078430176\n                        },\n                        {\n                          \"X\": 0.6719946265220642,\n                          \"Y\": 0.4440527856349945\n                        },\n                        {\n                          \"X\": 0.6720033884048462,\n                          \"Y\": 0.45572012662887573\n                        },\n                        {\n                          \"X\": 0.6553072333335876,\n                          \"Y\": 0.455737441778183\n                        }\n                      ]\n                    },\n                    \"Text\": \"2\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99846649169922,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011131499893963337,\n                        \"Left\": 0.7181282639503479,\n                        \"Top\": 0.37749525904655457,\n                        \"Width\": 0.07860542088747025\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7181282639503479,\n                          \"Y\": 0.3775770962238312\n                        },\n                        {\n                          \"X\": 0.7967247366905212,\n                          \"Y\": 0.37749525904655457\n                        },\n                        {\n                          \"X\": 0.7967336773872375,\n                          \"Y\": 0.3885449767112732\n                        },\n                        {\n                          \"X\": 0.7181367874145508,\n                          \"Y\": 0.38862675428390503\n                        }\n                      ]\n                    },\n                    \"Text\": \"Unit Price\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"UNIT_PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99687957763672,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014856268651783466,\n                        \"Left\": 0.7325218319892883,\n                        \"Top\": 0.44292163848876953,\n                        \"Width\": 0.06539000570774078\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7325218319892883,\n                          \"Y\": 0.44298943877220154\n                        },\n                        {\n                          \"X\": 0.7978999018669128,\n                          \"Y\": 0.44292163848876953\n                        },\n                        {\n                          \"X\": 0.7979118227958679,\n                          \"Y\": 0.4577102065086365\n                        },\n                        {\n                          \"X\": 0.73253333568573,\n                          \"Y\": 0.4577779173851013\n                        }\n                      ]\n                    },\n                    \"Text\": \"$106.04\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9969482421875,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01135801337659359,\n                        \"Left\": 0.872251033782959,\n                        \"Top\": 0.37865495681762695,\n                        \"Width\": 0.06933055073022842\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.872251033782959,\n                          \"Y\": 0.37872713804244995\n                        },\n                        {\n                          \"X\": 0.9415717720985413,\n                          \"Y\": 0.37865495681762695\n                        },\n                        {\n                          \"X\": 0.9415815472602844,\n                          \"Y\": 0.38994085788726807\n                        },\n                        {\n                          \"X\": 0.8722604513168335,\n                          \"Y\": 0.3900129795074463\n                        }\n                      ]\n                    },\n                    \"Text\": \"Amount\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99947357177734,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01411307230591774,\n                        \"Left\": 0.8766846656799316,\n                        \"Top\": 0.4435313045978546,\n                        \"Width\": 0.06452188640832901\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8766846656799316,\n                          \"Y\": 0.4435981810092926\n                        },\n                        {\n                          \"X\": 0.9411943554878235,\n                          \"Y\": 0.4435313045978546\n                        },\n                        {\n                          \"X\": 0.9412065744400024,\n                          \"Y\": 0.45757755637168884\n                        },\n                        {\n                          \"X\": 0.8766964673995972,\n                          \"Y\": 0.45764437317848206\n                        }\n                      ]\n                    },\n                    \"Text\": \"$212.08\"\n                  }\n                },\n                {\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"EXPENSE_ROW\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.98001098632812,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.015759309753775597,\n                        \"Left\": 0.05880118906497955,\n                        \"Top\": 0.4427729547023773,\n                        \"Width\": 0.882515549659729\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.05880118906497955,\n                          \"Y\": 0.4436880052089691\n                        },\n                        {\n                          \"X\": 0.9413038492202759,\n                          \"Y\": 0.4427729547023773\n                        },\n                        {\n                          \"X\": 0.9413167238235474,\n                          \"Y\": 0.4576181173324585\n                        },\n                        {\n                          \"X\": 0.058808475732803345,\n                          \"Y\": 0.45853227376937866\n                        }\n                      ]\n                    },\n                    \"Text\": \"Product 2 2 $106.04 $212.08\"\n                  }\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9984130859375,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.013920702040195465,\n                        \"Left\": 0.0599331259727478,\n                        \"Top\": 0.37997692823410034,\n                        \"Width\": 0.09605710953474045\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.0599331259727478,\n                          \"Y\": 0.38007691502571106\n                        },\n                        {\n                          \"X\": 0.1559828817844391,\n                          \"Y\": 0.37997692823410034\n                        },\n                        {\n                          \"X\": 0.15599022805690765,\n                          \"Y\": 0.39379769563674927\n                        },\n                        {\n                          \"X\": 0.0599399171769619,\n                          \"Y\": 0.3938976228237152\n                        }\n                      ]\n                    },\n                    \"Text\": \"Description\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"ITEM\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.96955871582031,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011729719117283821,\n                        \"Left\": 0.058813903480768204,\n                        \"Top\": 0.4695115387439728,\n                        \"Width\": 0.08319714665412903\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.058813903480768204,\n                          \"Y\": 0.46959763765335083\n                        },\n                        {\n                          \"X\": 0.14200492203235626,\n                          \"Y\": 0.4695115387439728\n                        },\n                        {\n                          \"X\": 0.14201106131076813,\n                          \"Y\": 0.4811552166938782\n                        },\n                        {\n                          \"X\": 0.058819618076086044,\n                          \"Y\": 0.48124125599861145\n                        }\n                      ]\n                    },\n                    \"Text\": \"Product 3\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99943542480469,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014117175713181496,\n                        \"Left\": 0.5948777794837952,\n                        \"Top\": 0.37735867500305176,\n                        \"Width\": 0.07342320680618286\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.5948777794837952,\n                          \"Y\": 0.3774351179599762\n                        },\n                        {\n                          \"X\": 0.6682904362678528,\n                          \"Y\": 0.37735867500305176\n                        },\n                        {\n                          \"X\": 0.668300986289978,\n                          \"Y\": 0.39139947295188904\n                        },\n                        {\n                          \"X\": 0.5948878526687622,\n                          \"Y\": 0.3914758563041687\n                        }\n                      ]\n                    },\n                    \"Text\": \"Quantity\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"QUANTITY\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.63542175292969,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011384718120098114,\n                        \"Left\": 0.6575020551681519,\n                        \"Top\": 0.46682101488113403,\n                        \"Width\": 0.011485586874186993\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.6575020551681519,\n                          \"Y\": 0.4668329060077667\n                        },\n                        {\n                          \"X\": 0.6689791083335876,\n                          \"Y\": 0.46682101488113403\n                        },\n                        {\n                          \"X\": 0.6689876317977905,\n                          \"Y\": 0.47819387912750244\n                        },\n                        {\n                          \"X\": 0.65751051902771,\n                          \"Y\": 0.47820574045181274\n                        }\n                      ]\n                    },\n                    \"Text\": \"1\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.99846649169922,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.011131499893963337,\n                        \"Left\": 0.7181282639503479,\n                        \"Top\": 0.37749525904655457,\n                        \"Width\": 0.07860542088747025\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7181282639503479,\n                          \"Y\": 0.3775770962238312\n                        },\n                        {\n                          \"X\": 0.7967247366905212,\n                          \"Y\": 0.37749525904655457\n                        },\n                        {\n                          \"X\": 0.7967336773872375,\n                          \"Y\": 0.3885449767112732\n                        },\n                        {\n                          \"X\": 0.7181367874145508,\n                          \"Y\": 0.38862675428390503\n                        }\n                      ]\n                    },\n                    \"Text\": \"Unit Price\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"UNIT_PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.9942626953125,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014620093628764153,\n                        \"Left\": 0.7225285172462463,\n                        \"Top\": 0.4659363329410553,\n                        \"Width\": 0.07451315224170685\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.7225285172462463,\n                          \"Y\": 0.46601346135139465\n                        },\n                        {\n                          \"X\": 0.7970299124717712,\n                          \"Y\": 0.4659363329410553\n                        },\n                        {\n                          \"X\": 0.797041654586792,\n                          \"Y\": 0.48047935962677\n                        },\n                        {\n                          \"X\": 0.7225397229194641,\n                          \"Y\": 0.4805564284324646\n                        }\n                      ]\n                    },\n                    \"Text\": \"$2168.32\"\n                  }\n                },\n                {\n                  \"LabelDetection\": {\n                    \"Confidence\": 79.9969482421875,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.01135801337659359,\n                        \"Left\": 0.872251033782959,\n                        \"Top\": 0.37865495681762695,\n                        \"Width\": 0.06933055073022842\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.872251033782959,\n                          \"Y\": 0.37872713804244995\n                        },\n                        {\n                          \"X\": 0.9415717720985413,\n                          \"Y\": 0.37865495681762695\n                        },\n                        {\n                          \"X\": 0.9415815472602844,\n                          \"Y\": 0.38994085788726807\n                        },\n                        {\n                          \"X\": 0.8722604513168335,\n                          \"Y\": 0.3900129795074463\n                        }\n                      ]\n                    },\n                    \"Text\": \"Amount\"\n                  },\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"PRICE\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.99696350097656,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.014603018760681152,\n                        \"Left\": 0.8666918873786926,\n                        \"Top\": 0.4657866954803467,\n                        \"Width\": 0.07487425953149796\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8666918873786926,\n                          \"Y\": 0.4658642113208771\n                        },\n                        {\n                          \"X\": 0.9415535926818848,\n                          \"Y\": 0.4657866954803467\n                        },\n                        {\n                          \"X\": 0.9415661692619324,\n                          \"Y\": 0.4803122878074646\n                        },\n                        {\n                          \"X\": 0.8667040467262268,\n                          \"Y\": 0.48038971424102783\n                        }\n                      ]\n                    },\n                    \"Text\": \"$2168.32\"\n                  }\n                },\n                {\n                  \"PageNumber\": 1,\n                  \"Type\": {\n                    \"Confidence\": 70,\n                    \"Text\": \"EXPENSE_ROW\"\n                  },\n                  \"ValueDetection\": {\n                    \"Confidence\": 99.9130630493164,\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Height\": 0.015456213615834713,\n                        \"Left\": 0.05881248414516449,\n                        \"Top\": 0.4657866954803467,\n                        \"Width\": 0.8827536702156067\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.05881248414516449,\n                          \"Y\": 0.46670061349868774\n                        },\n                        {\n                          \"X\": 0.9415535926818848,\n                          \"Y\": 0.4657866954803467\n                        },\n                        {\n                          \"X\": 0.9415661692619324,\n                          \"Y\": 0.48032987117767334\n                        },\n                        {\n                          \"X\": 0.05881962180137634,\n                          \"Y\": 0.48124292492866516\n                        }\n                      ]\n                    },\n                    \"Text\": \"Product 3 1 $2168.32 $2168.32\"\n                  }\n                }\n              ]\n            }\n          ]\n        }\n      ],\n      \"SummaryFields\": [\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.32014465332031,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011639083735644817,\n                \"Left\": 0.0584343783557415,\n                \"Top\": 0.24016976356506348,\n                \"Width\": 0.06418940424919128\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.0584343783557415,\n                  \"Y\": 0.24023719131946564\n                },\n                {\n                  \"X\": 0.12261778116226196,\n                  \"Y\": 0.24016976356506348\n                },\n                {\n                  \"X\": 0.12262377887964249,\n                  \"Y\": 0.2517414689064026\n                },\n                {\n                  \"X\": 0.05844005569815636,\n                  \"Y\": 0.25180885195732117\n                }\n              ]\n            },\n            \"Text\": \"SHIP TO\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.32830810546875,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.0662272498011589,\n                \"Left\": 0.057753391563892365,\n                \"Top\": 0.25638484954833984,\n                \"Width\": 0.19928814470767975\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.057753391563892365,\n                  \"Y\": 0.2565939724445343\n                },\n                {\n                  \"X\": 0.2570035457611084,\n                  \"Y\": 0.25638484954833984\n                },\n                {\n                  \"X\": 0.2570415437221527,\n                  \"Y\": 0.3224038779735565\n                },\n                {\n                  \"X\": 0.0577857680618763,\n                  \"Y\": 0.32261210680007935\n                }\n              ]\n            },\n            \"Text\": \"The Receiver\\nXZY Company\\n789 Another Avenue\\nDifferent City, XYZ, USA\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"STREET\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.9972915649414,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011962275952100754,\n                \"Left\": 0.05872655287384987,\n                \"Top\": 0.2914297878742218,\n                \"Width\": 0.17782944440841675\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05872655287384987,\n                  \"Y\": 0.2916159927845001\n                },\n                {\n                  \"X\": 0.23654933273792267,\n                  \"Y\": 0.2914297878742218\n                },\n                {\n                  \"X\": 0.2365560084581375,\n                  \"Y\": 0.3032059967517853\n                },\n                {\n                  \"X\": 0.05873233079910278,\n                  \"Y\": 0.30339205265045166\n                }\n              ]\n            },\n            \"Text\": \"789 Another Avenue\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"CITY\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.95603942871094,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.015109900385141373,\n                \"Left\": 0.05973537266254425,\n                \"Top\": 0.3075001537799835,\n                \"Width\": 0.11610517650842667\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05973537266254425,\n                  \"Y\": 0.3076215982437134\n                },\n                {\n                  \"X\": 0.17583243548870087,\n                  \"Y\": 0.3075001537799835\n                },\n                {\n                  \"X\": 0.17584054172039032,\n                  \"Y\": 0.3224887251853943\n                },\n                {\n                  \"X\": 0.05974273756146431,\n                  \"Y\": 0.3226100504398346\n                }\n              ]\n            },\n            \"Text\": \"Different City,\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"STATE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.98308563232422,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.012823796831071377,\n                \"Left\": 0.18185491859912872,\n                \"Top\": 0.30845826864242554,\n                \"Width\": 0.03442448377609253\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.18185491859912872,\n                  \"Y\": 0.3084942698478699\n                },\n                {\n                  \"X\": 0.2162722647190094,\n                  \"Y\": 0.30845826864242554\n                },\n                {\n                  \"X\": 0.21627940237522125,\n                  \"Y\": 0.32124608755111694\n                },\n                {\n                  \"X\": 0.18186186254024506,\n                  \"Y\": 0.3212820589542389\n                }\n              ]\n            },\n            \"Text\": \"XYZ,\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"COUNTRY\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.98950958251953,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011349736712872982,\n                \"Left\": 0.22189439833164215,\n                \"Top\": 0.3084167242050171,\n                \"Width\": 0.03412198647856712\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.22189439833164215,\n                  \"Y\": 0.30845239758491516\n                },\n                {\n                  \"X\": 0.25600987672805786,\n                  \"Y\": 0.3084167242050171\n                },\n                {\n                  \"X\": 0.2560163736343384,\n                  \"Y\": 0.3197307884693146\n                },\n                {\n                  \"X\": 0.22190073132514954,\n                  \"Y\": 0.31976643204689026\n                }\n              ]\n            },\n            \"Text\": \"USA\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 98.41696166992188,\n            \"Text\": \"NAME\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 98.41312408447266,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014458802528679371,\n                \"Left\": 0.05814419686794281,\n                \"Top\": 0.2744221091270447,\n                \"Width\": 0.12477917224168777\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05814419686794281,\n                  \"Y\": 0.2745529115200043\n                },\n                {\n                  \"X\": 0.1829155832529068,\n                  \"Y\": 0.2744221091270447\n                },\n                {\n                  \"X\": 0.18292336165905,\n                  \"Y\": 0.28875023126602173\n                },\n                {\n                  \"X\": 0.05815122649073601,\n                  \"Y\": 0.2888808846473694\n                }\n              ]\n            },\n            \"Text\": \"XZY Company\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 98.41696166992188,\n            \"Text\": \"ADDRESS_BLOCK\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.98165130615234,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.031201684847474098,\n                \"Left\": 0.05872655287384987,\n                \"Top\": 0.291409432888031,\n                \"Width\": 0.19729137420654297\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05872655287384987,\n                  \"Y\": 0.2916159927845001\n                },\n                {\n                  \"X\": 0.2560001015663147,\n                  \"Y\": 0.291409432888031\n                },\n                {\n                  \"X\": 0.25601792335510254,\n                  \"Y\": 0.3224049508571625\n                },\n                {\n                  \"X\": 0.05874176323413849,\n                  \"Y\": 0.32261109352111816\n                }\n              ]\n            },\n            \"Text\": \"789 Another Avenue\\nDifferent City, XYZ, USA\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.91824340820312,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.03193473443388939,\n                \"Left\": 0.05866161361336708,\n                \"Top\": 0.13738062977790833,\n                \"Width\": 0.17256121337413788\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05866161361336708,\n                  \"Y\": 0.13756312429904938\n                },\n                {\n                  \"X\": 0.23120491206645966,\n                  \"Y\": 0.13738062977790833\n                },\n                {\n                  \"X\": 0.23122282326221466,\n                  \"Y\": 0.1691332459449768\n                },\n                {\n                  \"X\": 0.058677200227975845,\n                  \"Y\": 0.169315367937088\n                }\n              ]\n            },\n            \"Text\": \"123 Some Street\\nSome City, XYZ, USA\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"STREET\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.99578857421875,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.012394621968269348,\n                \"Left\": 0.060652732849121094,\n                \"Top\": 0.13741573691368103,\n                \"Width\": 0.13736315071582794\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.060652732849121094,\n                  \"Y\": 0.13756100833415985\n                },\n                {\n                  \"X\": 0.19800914824008942,\n                  \"Y\": 0.13741573691368103\n                },\n                {\n                  \"X\": 0.19801588356494904,\n                  \"Y\": 0.1496652066707611\n                },\n                {\n                  \"X\": 0.06065875664353371,\n                  \"Y\": 0.14981035888195038\n                }\n              ]\n            },\n            \"Text\": \"123 Some Street\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"CITY\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.99242401123047,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014844912104308605,\n                \"Left\": 0.05865928903222084,\n                \"Top\": 0.15447045862674713,\n                \"Width\": 0.09230741113424301\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05865928903222084,\n                  \"Y\": 0.15456797182559967\n                },\n                {\n                  \"X\": 0.15095888078212738,\n                  \"Y\": 0.15447045862674713\n                },\n                {\n                  \"X\": 0.15096670389175415,\n                  \"Y\": 0.16921795904636383\n                },\n                {\n                  \"X\": 0.05866652727127075,\n                  \"Y\": 0.1693153828382492\n                }\n              ]\n            },\n            \"Text\": \"Some City,\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"STATE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.9729995727539,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.012467940337955952,\n                \"Left\": 0.15674884617328644,\n                \"Top\": 0.15542839467525482,\n                \"Width\": 0.0343269445002079\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.15674884617328644,\n                  \"Y\": 0.15546464920043945\n                },\n                {\n                  \"X\": 0.19106899201869965,\n                  \"Y\": 0.15542839467525482\n                },\n                {\n                  \"X\": 0.19107578694820404,\n                  \"Y\": 0.16786010563373566\n                },\n                {\n                  \"X\": 0.1567554622888565,\n                  \"Y\": 0.1678963303565979\n                }\n              ]\n            },\n            \"Text\": \"XYZ,\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"COUNTRY\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.9764633178711,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011264803819358349,\n                \"Left\": 0.19778648018836975,\n                \"Top\": 0.15538598597049713,\n                \"Width\": 0.0334349200129509\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.19778648018836975,\n                  \"Y\": 0.15542130172252655\n                },\n                {\n                  \"X\": 0.23121507465839386,\n                  \"Y\": 0.15538598597049713\n                },\n                {\n                  \"X\": 0.23122140765190125,\n                  \"Y\": 0.16661550104618073\n                },\n                {\n                  \"X\": 0.1977926641702652,\n                  \"Y\": 0.16665078699588776\n                }\n              ]\n            },\n            \"Text\": \"USA\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"ADDRESS_BLOCK\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.98487091064453,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.031934745609760284,\n                \"Left\": 0.058650944381952286,\n                \"Top\": 0.13738062977790833,\n                \"Width\": 0.17257188260555267\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.058650944381952286,\n                  \"Y\": 0.13756312429904938\n                },\n                {\n                  \"X\": 0.23120491206645966,\n                  \"Y\": 0.13738062977790833\n                },\n                {\n                  \"X\": 0.23122282326221466,\n                  \"Y\": 0.1691332459449768\n                },\n                {\n                  \"X\": 0.05866652727127075,\n                  \"Y\": 0.1693153828382492\n                }\n              ]\n            },\n            \"Text\": \"123 Some Street\\nSome City, XYZ, USA\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.9913330078125,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011507729068398476,\n                \"Left\": 0.05927439033985138,\n                \"Top\": 0.7062536478042603,\n                \"Width\": 0.08544745296239853\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05927439033985138,\n                  \"Y\": 0.7063407301902771\n                },\n                {\n                  \"X\": 0.144715815782547,\n                  \"Y\": 0.7062536478042603\n                },\n                {\n                  \"X\": 0.1447218358516693,\n                  \"Y\": 0.7176743745803833\n                },\n                {\n                  \"X\": 0.059279996901750565,\n                  \"Y\": 0.7177613973617554\n                }\n              ]\n            },\n            \"Text\": \"Due Date:\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.99592590332031,\n            \"Text\": \"DUE_DATE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.99468994140625,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.012962454929947853,\n                \"Left\": 0.1542547196149826,\n                \"Top\": 0.7055990099906921,\n                \"Width\": 0.09307993203401566\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.1542547196149826,\n                  \"Y\": 0.7056938409805298\n                },\n                {\n                  \"X\": 0.2473272979259491,\n                  \"Y\": 0.7055990099906921\n                },\n                {\n                  \"X\": 0.24733464419841766,\n                  \"Y\": 0.7184666991233826\n                },\n                {\n                  \"X\": 0.15426155924797058,\n                  \"Y\": 0.7185614705085754\n                }\n              ]\n            },\n            \"Text\": \"01/31/2021\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.97660064697266,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.01132664643228054,\n                \"Left\": 0.785049557685852,\n                \"Top\": 0.15536923706531525,\n                \"Width\": 0.0422053337097168\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.785049557685852,\n                  \"Y\": 0.15541380643844604\n                },\n                {\n                  \"X\": 0.8272456526756287,\n                  \"Y\": 0.15536923706531525\n                },\n                {\n                  \"X\": 0.8272548913955688,\n                  \"Y\": 0.16665133833885193\n                },\n                {\n                  \"X\": 0.7850586175918579,\n                  \"Y\": 0.16669587790966034\n                }\n              ]\n            },\n            \"Text\": \"DATE\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.97834014892578,\n            \"Text\": \"INVOICE_RECEIPT_DATE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.9704818725586,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011789531446993351,\n                \"Left\": 0.836837112903595,\n                \"Top\": 0.15489594638347626,\n                \"Width\": 0.10116910189390182\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.836837112903595,\n                  \"Y\": 0.15500281751155853\n                },\n                {\n                  \"X\": 0.9379960894584656,\n                  \"Y\": 0.15489594638347626\n                },\n                {\n                  \"X\": 0.9380062222480774,\n                  \"Y\": 0.16657869517803192\n                },\n                {\n                  \"X\": 0.8368467092514038,\n                  \"Y\": 0.16668547689914703\n                }\n              ]\n            },\n            \"Text\": \"01-Jan-2021\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.11064147949219,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011646795086562634,\n                \"Left\": 0.7387182712554932,\n                \"Top\": 0.13789881765842438,\n                \"Width\": 0.0906209647655487\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7387182712554932,\n                  \"Y\": 0.137994647026062\n                },\n                {\n                  \"X\": 0.8293297290802002,\n                  \"Y\": 0.13789881765842438\n                },\n                {\n                  \"X\": 0.8293392062187195,\n                  \"Y\": 0.14944985508918762\n                },\n                {\n                  \"X\": 0.7387272715568542,\n                  \"Y\": 0.1495456099510193\n                }\n              ]\n            },\n            \"Text\": \"INVOICE #\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.65480041503906,\n            \"Text\": \"INVOICE_RECEIPT_ID\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.64569854736328,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.012406181544065475,\n                \"Left\": 0.8455924987792969,\n                \"Top\": 0.13780678808689117,\n                \"Width\": 0.09517037123441696\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8455924987792969,\n                  \"Y\": 0.13790741562843323\n                },\n                {\n                  \"X\": 0.9407522082328796,\n                  \"Y\": 0.13780678808689117\n                },\n                {\n                  \"X\": 0.9407628178596497,\n                  \"Y\": 0.15011240541934967\n                },\n                {\n                  \"X\": 0.8456026315689087,\n                  \"Y\": 0.15021297335624695\n                }\n              ]\n            },\n            \"Text\": \"123PQR456\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 98.60484313964844,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.01129536610096693,\n                \"Left\": 0.05869531258940697,\n                \"Top\": 0.7278010845184326,\n                \"Width\": 0.05838647484779358\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05869531258940697,\n                  \"Y\": 0.7278605103492737\n                },\n                {\n                  \"X\": 0.11707599461078644,\n                  \"Y\": 0.7278010845184326\n                },\n                {\n                  \"X\": 0.11708179116249084,\n                  \"Y\": 0.7390370965003967\n                },\n                {\n                  \"X\": 0.05870082601904869,\n                  \"Y\": 0.739096462726593\n                }\n              ]\n            },\n            \"Text\": \"VAT ID:\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.77249908447266,\n            \"Text\": \"TAX_PAYER_ID\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.76983642578125,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011388653889298439,\n                \"Left\": 0.12776358425617218,\n                \"Top\": 0.7277841567993164,\n                \"Width\": 0.08936147391796112\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.12776358425617218,\n                  \"Y\": 0.7278751134872437\n                },\n                {\n                  \"X\": 0.2171187400817871,\n                  \"Y\": 0.7277841567993164\n                },\n                {\n                  \"X\": 0.2171250432729721,\n                  \"Y\": 0.7390819787979126\n                },\n                {\n                  \"X\": 0.12776945531368256,\n                  \"Y\": 0.7391728162765503\n                }\n              ]\n            },\n            \"Text\": \"12-3456789\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 98.60484313964844,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.01129536610096693,\n                \"Left\": 0.05869531258940697,\n                \"Top\": 0.7278010845184326,\n                \"Width\": 0.05838647484779358\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05869531258940697,\n                  \"Y\": 0.7278605103492737\n                },\n                {\n                  \"X\": 0.11707599461078644,\n                  \"Y\": 0.7278010845184326\n                },\n                {\n                  \"X\": 0.11708179116249084,\n                  \"Y\": 0.7390370965003967\n                },\n                {\n                  \"X\": 0.05870082601904869,\n                  \"Y\": 0.739096462726593\n                }\n              ]\n            },\n            \"Text\": \"VAT ID:\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.77249908447266,\n            \"Text\": \"VENDOR_VAT_NUMBER\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.76983642578125,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011388653889298439,\n                \"Left\": 0.12776358425617218,\n                \"Top\": 0.7277841567993164,\n                \"Width\": 0.08936147391796112\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.12776358425617218,\n                  \"Y\": 0.7278751134872437\n                },\n                {\n                  \"X\": 0.2171187400817871,\n                  \"Y\": 0.7277841567993164\n                },\n                {\n                  \"X\": 0.2171250432729721,\n                  \"Y\": 0.7390819787979126\n                },\n                {\n                  \"X\": 0.12776945531368256,\n                  \"Y\": 0.7391728162765503\n                }\n              ]\n            },\n            \"Text\": \"12-3456789\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.36764526367188,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011281507089734077,\n                \"Left\": 0.7803575396537781,\n                \"Top\": 0.24053655564785004,\n                \"Width\": 0.05145940184593201\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7803575396537781,\n                  \"Y\": 0.24059060215950012\n                },\n                {\n                  \"X\": 0.8318077325820923,\n                  \"Y\": 0.24053655564785004\n                },\n                {\n                  \"X\": 0.8318169713020325,\n                  \"Y\": 0.25176405906677246\n                },\n                {\n                  \"X\": 0.7803665399551392,\n                  \"Y\": 0.25181806087493896\n                }\n              ]\n            },\n            \"Text\": \"P.O. #\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.81192016601562,\n            \"Text\": \"PO_NUMBER\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.80748748779297,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011790408752858639,\n                \"Left\": 0.8401313424110413,\n                \"Top\": 0.24000734090805054,\n                \"Width\": 0.10107561200857162\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8401313424110413,\n                  \"Y\": 0.2401135116815567\n                },\n                {\n                  \"X\": 0.941196858882904,\n                  \"Y\": 0.24000734090805054\n                },\n                {\n                  \"X\": 0.9412069916725159,\n                  \"Y\": 0.25169163942337036\n                },\n                {\n                  \"X\": 0.8401409983634949,\n                  \"Y\": 0.25179773569107056\n                }\n              ]\n            },\n            \"Text\": \"098ZYX7654\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.717041015625,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014552686363458633,\n                \"Left\": 0.059337686747312546,\n                \"Top\": 0.6868408918380737,\n                \"Width\": 0.135646790266037\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.059337686747312546,\n                  \"Y\": 0.6869792938232422\n                },\n                {\n                  \"X\": 0.1949765682220459,\n                  \"Y\": 0.6868408918380737\n                },\n                {\n                  \"X\": 0.19498448073863983,\n                  \"Y\": 0.7012553215026855\n                },\n                {\n                  \"X\": 0.05934476479887962,\n                  \"Y\": 0.7013936042785645\n                }\n              ]\n            },\n            \"Text\": \"Payment Terms:\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.72017669677734,\n            \"Text\": \"PAYMENT_TERMS\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.7139663696289,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014432924799621105,\n                \"Left\": 0.20492398738861084,\n                \"Top\": 0.6866532564163208,\n                \"Width\": 0.06590695679187775\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.20492398738861084,\n                  \"Y\": 0.6867204904556274\n                },\n                {\n                  \"X\": 0.27082258462905884,\n                  \"Y\": 0.6866532564163208\n                },\n                {\n                  \"X\": 0.2708309590816498,\n                  \"Y\": 0.7010189890861511\n                },\n                {\n                  \"X\": 0.20493194460868835,\n                  \"Y\": 0.7010862231254578\n                }\n              ]\n            },\n            \"Text\": \"30 days\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.32014465332031,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011639083735644817,\n                \"Left\": 0.0584343783557415,\n                \"Top\": 0.24016976356506348,\n                \"Width\": 0.06418940424919128\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.0584343783557415,\n                  \"Y\": 0.24023719131946564\n                },\n                {\n                  \"X\": 0.12261778116226196,\n                  \"Y\": 0.24016976356506348\n                },\n                {\n                  \"X\": 0.12262377887964249,\n                  \"Y\": 0.2517414689064026\n                },\n                {\n                  \"X\": 0.05844005569815636,\n                  \"Y\": 0.25180885195732117\n                }\n              ]\n            },\n            \"Text\": \"SHIP TO\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.3079605102539,\n            \"Text\": \"RECEIVER_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.32830810546875,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.0662272498011589,\n                \"Left\": 0.057753391563892365,\n                \"Top\": 0.25638484954833984,\n                \"Width\": 0.19928814470767975\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.057753391563892365,\n                  \"Y\": 0.2565939724445343\n                },\n                {\n                  \"X\": 0.2570035457611084,\n                  \"Y\": 0.25638484954833984\n                },\n                {\n                  \"X\": 0.2570415437221527,\n                  \"Y\": 0.3224038779735565\n                },\n                {\n                  \"X\": 0.0577857680618763,\n                  \"Y\": 0.32261210680007935\n                }\n              ]\n            },\n            \"Text\": \"The Receiver\\nXZY Company\\n789 Another Avenue\\nDifferent City, XYZ, USA\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 98.41696166992188,\n            \"Text\": \"RECEIVER_NAME\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 98.41312408447266,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014458802528679371,\n                \"Left\": 0.05814419686794281,\n                \"Top\": 0.2744221091270447,\n                \"Width\": 0.12477917224168777\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05814419686794281,\n                  \"Y\": 0.2745529115200043\n                },\n                {\n                  \"X\": 0.1829155832529068,\n                  \"Y\": 0.2744221091270447\n                },\n                {\n                  \"X\": 0.18292336165905,\n                  \"Y\": 0.28875023126602173\n                },\n                {\n                  \"X\": 0.05815122649073601,\n                  \"Y\": 0.2888808846473694\n                }\n              ]\n            },\n            \"Text\": \"XZY Company\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.81758880615234,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011803793720901012,\n                \"Left\": 0.05911257863044739,\n                \"Top\": 0.34217125177383423,\n                \"Width\": 0.06730294972658157\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05911257863044739,\n                  \"Y\": 0.342241495847702\n                },\n                {\n                  \"X\": 0.12640942633152008,\n                  \"Y\": 0.34217125177383423\n                },\n                {\n                  \"X\": 0.12641552090644836,\n                  \"Y\": 0.3539048433303833\n                },\n                {\n                  \"X\": 0.05911833792924881,\n                  \"Y\": 0.3539750277996063\n                }\n              ]\n            },\n            \"Text\": \"Phone#\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.91230010986328,\n            \"Text\": \"RECEIVER_PHONE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.90943908691406,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011576507240533829,\n                \"Left\": 0.13832570612430573,\n                \"Top\": 0.3423013389110565,\n                \"Width\": 0.13171523809432983\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.13832570612430573,\n                  \"Y\": 0.34243881702423096\n                },\n                {\n                  \"X\": 0.2700343132019043,\n                  \"Y\": 0.3423013389110565\n                },\n                {\n                  \"X\": 0.27004095911979675,\n                  \"Y\": 0.35374048352241516\n                },\n                {\n                  \"X\": 0.13833171129226685,\n                  \"Y\": 0.35387784242630005\n                }\n              ]\n            },\n            \"Text\": \"+1222-222-2222\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.99076080322266,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011644287034869194,\n                \"Left\": 0.6269360184669495,\n                \"Top\": 0.5737921595573425,\n                \"Width\": 0.041087400168180466\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6269360184669495,\n                  \"Y\": 0.5738343596458435\n                },\n                {\n                  \"X\": 0.6680147051811218,\n                  \"Y\": 0.5737921595573425\n                },\n                {\n                  \"X\": 0.668023407459259,\n                  \"Y\": 0.5853942036628723\n                },\n                {\n                  \"X\": 0.6269444823265076,\n                  \"Y\": 0.5854364037513733\n                }\n              ]\n            },\n            \"Text\": \"Total\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.99308776855469,\n            \"Text\": \"SUBTOTAL\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.98942565917969,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014235161244869232,\n                \"Left\": 0.8668770790100098,\n                \"Top\": 0.5731998682022095,\n                \"Width\": 0.07404553145170212\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8668770790100098,\n                  \"Y\": 0.5732759833335876\n                },\n                {\n                  \"X\": 0.9409103393554688,\n                  \"Y\": 0.5731998682022095\n                },\n                {\n                  \"X\": 0.9409226179122925,\n                  \"Y\": 0.5873590111732483\n                },\n                {\n                  \"X\": 0.8668888807296753,\n                  \"Y\": 0.5874350666999817\n                }\n              ]\n            },\n            \"Text\": \"$6169.40\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.98567199707031,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.01171293668448925,\n                \"Left\": 0.6380888223648071,\n                \"Top\": 0.5938460230827332,\n                \"Width\": 0.030512547120451927\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6380888223648071,\n                  \"Y\": 0.593877375125885\n                },\n                {\n                  \"X\": 0.668592631816864,\n                  \"Y\": 0.5938460230827332\n                },\n                {\n                  \"X\": 0.668601393699646,\n                  \"Y\": 0.6055276989936829\n                },\n                {\n                  \"X\": 0.6380974650382996,\n                  \"Y\": 0.6055589914321899\n                }\n              ]\n            },\n            \"Text\": \"Tax\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.98980712890625,\n            \"Text\": \"TAX\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.98900604248047,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014318987727165222,\n                \"Left\": 0.886228621006012,\n                \"Top\": 0.5930607318878174,\n                \"Width\": 0.05415719002485275\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.886228621006012,\n                  \"Y\": 0.5931163430213928\n                },\n                {\n                  \"X\": 0.9403734803199768,\n                  \"Y\": 0.5930607318878174\n                },\n                {\n                  \"X\": 0.9403858184814453,\n                  \"Y\": 0.6073241829872131\n                },\n                {\n                  \"X\": 0.8862406611442566,\n                  \"Y\": 0.6073797345161438\n                }\n              ]\n            },\n            \"Text\": \"$61.69\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.99603271484375,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011689238250255585,\n                \"Left\": 0.5676131844520569,\n                \"Top\": 0.6143317818641663,\n                \"Width\": 0.10037305951118469\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.5676131844520569,\n                  \"Y\": 0.6144347190856934\n                },\n                {\n                  \"X\": 0.6679775714874268,\n                  \"Y\": 0.6143317818641663\n                },\n                {\n                  \"X\": 0.667986273765564,\n                  \"Y\": 0.6259182095527649\n                },\n                {\n                  \"X\": 0.5676214098930359,\n                  \"Y\": 0.6260210275650024\n                }\n              ]\n            },\n            \"Text\": \"Grand Total\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.99976348876953,\n            \"Text\": \"TOTAL\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.99756622314453,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.013758460059762001,\n                \"Left\": 0.8659499883651733,\n                \"Top\": 0.6137457489967346,\n                \"Width\": 0.07458518445491791\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8659499883651733,\n                  \"Y\": 0.6138221621513367\n                },\n                {\n                  \"X\": 0.9405233263969421,\n                  \"Y\": 0.6137457489967346\n                },\n                {\n                  \"X\": 0.9405351281166077,\n                  \"Y\": 0.6274278163909912\n                },\n                {\n                  \"X\": 0.8659613728523254,\n                  \"Y\": 0.6275041699409485\n                }\n              ]\n            },\n            \"Text\": \"$6231.09\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.9204330444336,\n            \"Text\": \"VENDOR_ADDRESS\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.91824340820312,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.03193473443388939,\n                \"Left\": 0.05866161361336708,\n                \"Top\": 0.13738062977790833,\n                \"Width\": 0.17256121337413788\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05866161361336708,\n                  \"Y\": 0.13756312429904938\n                },\n                {\n                  \"X\": 0.23120491206645966,\n                  \"Y\": 0.13738062977790833\n                },\n                {\n                  \"X\": 0.23122282326221466,\n                  \"Y\": 0.1691332459449768\n                },\n                {\n                  \"X\": 0.058677200227975845,\n                  \"Y\": 0.169315367937088\n                }\n              ]\n            },\n            \"Text\": \"123 Some Street\\nSome City, XYZ, USA\"\n          }\n        },\n        {\n          \"LabelDetection\": {\n            \"Confidence\": 99.795654296875,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011891895905137062,\n                \"Left\": 0.05911347270011902,\n                \"Top\": 0.17183935642242432,\n                \"Width\": 0.06783023476600647\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.05911347270011902,\n                  \"Y\": 0.17191092669963837\n                },\n                {\n                  \"X\": 0.12693755328655243,\n                  \"Y\": 0.17183935642242432\n                },\n                {\n                  \"X\": 0.1269437074661255,\n                  \"Y\": 0.18365973234176636\n                },\n                {\n                  \"X\": 0.05911927670240402,\n                  \"Y\": 0.18373124301433563\n                }\n              ]\n            },\n            \"Text\": \"Phone#\"\n          },\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.82991027832031,\n            \"Text\": \"VENDOR_PHONE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.82563781738281,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011330691166222095,\n                \"Left\": 0.1381358802318573,\n                \"Top\": 0.17210182547569275,\n                \"Width\": 0.13138853013515472\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.1381358802318573,\n                  \"Y\": 0.1722404658794403\n                },\n                {\n                  \"X\": 0.2695178985595703,\n                  \"Y\": 0.17210182547569275\n                },\n                {\n                  \"X\": 0.26952439546585083,\n                  \"Y\": 0.18329396843910217\n                },\n                {\n                  \"X\": 0.13814175128936768,\n                  \"Y\": 0.18343251943588257\n                }\n              ]\n            },\n            \"Text\": \"+1333-333-3333\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.5665283203125,\n            \"Text\": \"VENDOR_PHONE\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.492431640625,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011777656152844429,\n                \"Left\": 0.7516384720802307,\n                \"Top\": 0.7761996984481812,\n                \"Width\": 0.135905921459198\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7516384720802307,\n                  \"Y\": 0.7763375639915466\n                },\n                {\n                  \"X\": 0.8875346183776855,\n                  \"Y\": 0.7761996984481812\n                },\n                {\n                  \"X\": 0.8875443935394287,\n                  \"Y\": 0.7878396511077881\n                },\n                {\n                  \"X\": 0.7516476511955261,\n                  \"Y\": 0.787977397441864\n                }\n              ]\n            },\n            \"Text\": \"+1 333-333-3333\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 99.43437194824219,\n            \"Text\": \"VENDOR_URL\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 99.32952880859375,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.014875503256917,\n                \"Left\": 0.32711097598075867,\n                \"Top\": 0.170645073056221,\n                \"Width\": 0.22918398678302765\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.32711097598075867,\n                  \"Y\": 0.17088691890239716\n                },\n                {\n                  \"X\": 0.5562846660614014,\n                  \"Y\": 0.170645073056221\n                },\n                {\n                  \"X\": 0.5562949776649475,\n                  \"Y\": 0.18527893722057343\n                },\n                {\n                  \"X\": 0.3271198272705078,\n                  \"Y\": 0.18552057445049286\n                }\n              ]\n            },\n            \"Text\": \"https: //www.amazon.com\"\n          }\n        },\n        {\n          \"PageNumber\": 1,\n          \"Type\": {\n            \"Confidence\": 34.329776763916016,\n            \"Text\": \"VENDOR_URL\"\n          },\n          \"ValueDetection\": {\n            \"Confidence\": 34.31201171875,\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Height\": 0.011510617099702358,\n                \"Left\": 0.30613306164741516,\n                \"Top\": 0.6476686000823975,\n                \"Width\": 0.11758594214916229\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.30613306164741516,\n                  \"Y\": 0.6477888822555542\n                },\n                {\n                  \"X\": 0.4237116277217865,\n                  \"Y\": 0.6476686000823975\n                },\n                {\n                  \"X\": 0.42371898889541626,\n                  \"Y\": 0.6590589880943298\n                },\n                {\n                  \"X\": 0.30613982677459717,\n                  \"Y\": 0.6591792106628418\n                }\n              ]\n            },\n            \"Text\": \"Amazon.com\"\n          }\n        }\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "src-js/test/data/paystub-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 0.9965640306472778,\n          \"Left\": 0,\n          \"Top\": 0.003435956547036767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0.003435956547036767\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0.0039773182943463326\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"705a1bd8-2bef-46f9-a388-5ed714885d89\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3bb03b3a-80e6-4c72-816e-688de4d29502\",\n            \"943f3cac-bc23-4220-a782-54a5f46844d9\",\n            \"40b27f9e-9d8b-49ba-8265-526ca7fd9f62\",\n            \"04edae7f-9d22-4df4-a3df-985e617e41b6\",\n            \"4f652d6c-9058-4c15-b980-842ddfaf900e\",\n            \"977e13f4-c13c-4547-974c-a756b1eabdde\",\n            \"78e8e9b9-6606-4039-8f3f-6f0a67c4c507\",\n            \"63304d07-751c-4599-8aba-2e89b62c1cca\",\n            \"0bae8362-e70a-4507-9cb2-7778b892e6da\",\n            \"8528abca-6cd6-4813-829b-337442dbe393\",\n            \"300a643b-7a87-41f7-94de-d3e7a9ff024a\",\n            \"fab364b3-5864-4403-827f-f0cdbe19a646\",\n            \"9a3c007d-935b-4f60-9090-68d1ec3cc22c\",\n            \"0e973b1a-70ff-4799-af0e-b95080fd1d95\",\n            \"e4094b61-5534-4b22-a32f-a5473df5b850\",\n            \"f57c6506-55e4-4652-9a04-16d960db1d67\",\n            \"2737db78-b240-4eae-a802-29e2b64fa077\",\n            \"4944a4d6-f912-484e-9cc0-77d8f6ac69df\",\n            \"795a3329-9013-4733-8703-13e17f14693c\",\n            \"38035a1c-f357-4c30-ab0b-87989474fb82\",\n            \"f2a203ee-b12f-473c-865b-ef12d5559ffb\",\n            \"5a83b260-98eb-4015-aa2a-e2f4add156b5\",\n            \"12940161-41f8-4a77-a8d7-f0696db85afc\",\n            \"34aa8fd7-a643-4dbe-aa04-28f8f7ea8531\",\n            \"7b4489e3-78fe-4d7a-b9e0-64582746aab1\",\n            \"d9878906-918d-4bcc-b477-62b63d1722bb\",\n            \"1f66f667-2b97-4ad2-bab9-ef38f89f64be\",\n            \"1ebcb36a-7216-4856-b60d-0e79deec9bc2\",\n            \"946ce0c3-0c28-4bb2-93a9-ca4b8c26f9f6\",\n            \"5385b49e-8c4e-4907-a0ec-a4ba405187dc\",\n            \"400d8b2b-544a-4d55-bc3f-6ef75813801d\",\n            \"35d8f9fc-962f-406f-8af7-a8ae7e381e82\",\n            \"be7e09f6-9783-4138-8388-80676f461a5e\",\n            \"923e5653-ba50-47d5-9b4d-181cb1063c15\",\n            \"255a6bfe-d43a-4f4f-85e7-7e803fe0d73f\",\n            \"b50fca33-2787-4dc2-bdb2-0b3073fef258\",\n            \"743c75fd-2fa6-49de-990d-32a5d49c058f\",\n            \"798fd191-4af7-427a-a647-b3fa5eb31ec8\",\n            \"7d69c42c-0aa3-4c2f-857c-c1fd32bfa6d1\",\n            \"ef945490-95b5-40ce-b8e7-aeae85461834\",\n            \"5b7fb5a0-96d7-4c63-b475-64b8d9840455\",\n            \"b3b33108-a9a8-438e-af8b-8295f18a4c4e\",\n            \"bc99057d-e8a5-4ae6-afb6-1a30c452b448\",\n            \"b9f33a0d-4b19-4029-8ce2-6a59bd33bb40\",\n            \"837353b7-e41a-4b32-9a49-b5afe2727989\",\n            \"450b6ffb-77ed-4bee-a9e8-530b29c57716\",\n            \"6c47dcd5-e8f8-4fb1-8bc1-c39978599b3f\",\n            \"8519aac2-1e05-42ba-8dd3-3e785efdf0e3\",\n            \"4765b878-7ae2-41c2-8e98-84969fc58a53\",\n            \"9da58d2e-cf4d-463e-a13a-c31c0cdd0a23\",\n            \"3ae47c8f-a96a-48bd-8f1b-4607ba5b6dab\",\n            \"ab0f1c06-0e02-475b-b930-3baa034068df\",\n            \"8f575d26-ba66-430d-9c9e-e5d6f8d0e97b\",\n            \"a79d05c2-15f7-42b8-9943-802a11fc5f62\",\n            \"264ef681-e1c4-4dd4-89e6-bdd3773bd405\",\n            \"7d20bbe5-7f6b-4894-9753-0825f41c8e51\",\n            \"4d4a6fca-7f94-48e9-bf89-7b164b3ac642\",\n            \"e2d14d19-11b5-4f2d-9d64-38bab135d4ee\",\n            \"ed02ec09-8b0e-4f28-8165-be64a7881387\",\n            \"7b87691d-cac7-4ee8-bf88-235e5e36130c\",\n            \"0ccf328b-c06b-40a5-88eb-28bc851417fa\",\n            \"6a0d2c36-b0f7-4819-b967-e04d290d9435\",\n            \"e8059170-bd07-4d09-a7b3-a1c6e83427ae\",\n            \"9a7c4646-f2cd-4c06-a9b4-40b9458c4b3c\",\n            \"a18e26ea-08d7-4aeb-b393-142ef57c6fa0\",\n            \"69c61c07-216f-4af8-b372-774228c3debe\",\n            \"6dd7e101-6334-49aa-885f-c502aa41a048\",\n            \"fd5fb73b-17c8-49c7-8eb0-8adad1bac317\",\n            \"0bb4d254-9a3a-4dc5-ab48-292d0bc44241\",\n            \"71cb3653-43a1-4488-a55a-9f84f58cce29\",\n            \"091112e3-44b4-464c-9575-e6493218f5a1\",\n            \"d8606f44-5db8-45a5-9d6f-8630d37f7dfc\",\n            \"0268b5ea-f447-4a57-abc0-af26459bf7e7\",\n            \"1eae4a00-b223-4710-b439-f098247ed76b\",\n            \"c9d1e744-e6cc-4f0e-a24d-591491219e29\",\n            \"540afc62-5d18-41d7-ae67-daa4a1b47787\",\n            \"f85027f9-3ae1-441d-b6df-de6bf5386f1b\",\n            \"c748ed3f-b820-4b52-a38a-361aa312a4a7\",\n            \"4f7e8d31-27b2-4940-bf4e-9ab1c212bb96\",\n            \"2f0a2d8d-2be0-4a06-9ae1-b7310ba67231\",\n            \"82ab36aa-44b9-4c2d-ab58-866fbac778df\",\n            \"cc3ee7dd-b65d-4da0-99f1-7303faa26550\",\n            \"d9a85222-7984-4509-8b9a-f671dee39a59\",\n            \"609b33ad-7a9a-497a-992a-49f0686492c8\",\n            \"cf6d4610-b04a-423d-afe6-bb8660589b40\",\n            \"8d9f24cd-ca61-45db-a0f4-8b5245380d33\",\n            \"5685e5ee-0dbc-4d16-a057-6c67412ace12\",\n            \"f4b016f4-c4a5-492b-8345-e3c696219a97\",\n            \"6e68a7af-77cd-49e5-9c2d-101b2c490281\",\n            \"ecfe7f76-7206-4e8d-a1f9-fad3995060aa\",\n            \"29476913-c5c0-4042-8919-8753c9bb270d\",\n            \"eac273af-8047-459c-9aef-d6fb04e950fa\",\n            \"26e25dc7-6e39-4b0e-8667-dcea4ada27c9\",\n            \"1ddb1c76-3f4f-4d0f-b708-f8628f3d9f88\",\n            \"03ce38e7-bf71-4184-8173-cf67dc48cb09\",\n            \"bfadbcba-2c66-4731-b8cf-3ffceae99f0b\",\n            \"33d808bf-97a0-4d56-beb7-cb4536887b09\",\n            \"10631188-5620-435c-bc83-d4a81143271b\",\n            \"afa2e199-6d21-4262-8b8c-0b5106d555fb\",\n            \"ddd7bf59-5961-4a7c-8070-e4268e3c783c\",\n            \"a5451587-7bbd-43c7-b6a0-2bdc2433f973\",\n            \"1f0a459f-6c1d-4f67-96d8-0e6b25c38411\",\n            \"9e89b823-69f1-416e-9a58-112461388d80\",\n            \"240a74fe-0eca-4a3f-89f4-8eb8ea27990c\",\n            \"30a796c2-b01f-4a35-b5b3-cdf9966e3625\",\n            \"901d2d24-e77c-47d1-be1a-372e2db4eb7b\",\n            \"336c849a-af91-4726-8e4f-60bc193d0d30\",\n            \"e34e1a94-be22-49f1-b166-ffc258696599\",\n            \"42cf91d5-8b0c-42a6-bb78-7bdd085a2ae4\",\n            \"c95163a5-f31c-42db-a55c-c1ffc26ce085\",\n            \"2512b71b-12d4-4059-bc24-44aa813bc258\",\n            \"bd6fc1b9-f246-456d-8c19-2a135f768588\",\n            \"80d3f411-308d-4431-80cf-ee6c3327a14c\",\n            \"bcfc6979-fcd8-4667-9b40-165ccc108453\",\n            \"ecb33a00-11ef-4f63-8313-2e39e171fbe0\",\n            \"e5a43107-7850-43be-a319-17c9caa52f82\",\n            \"3a3398ba-0db4-4baa-be2f-7b9780f2cba8\",\n            \"97e1d70f-74ae-4e28-a9a7-a5e664d46fd2\",\n            \"f63299d2-3248-411f-ad3a-f34b38180089\",\n            \"16729e33-ffce-42af-a783-3dacf09254f3\",\n            \"629127ef-f1e8-428e-b9ea-3b0fb9307692\",\n            \"39c2a7b1-5509-4559-bad6-57ab923cd0df\",\n            \"3db6c475-e7aa-4d9c-b4c7-b766b9f9c36b\",\n            \"cec9d01f-6ad4-4c8e-b6ee-b9d533d2dabb\",\n            \"6dc9ad62-a35b-4951-bba1-489a955efdc3\",\n            \"4008e78e-dbc0-4dff-a925-3703547f1798\",\n            \"089651e5-a6c5-40da-b7fd-bf3ec4af213c\",\n            \"a954e332-9b8a-43d4-a53e-a06a7a5c4393\",\n            \"76ef3d37-2642-4870-8dab-9f65b66eae5d\",\n            \"879ae886-b2c5-4a5f-82ca-7faf239349f0\",\n            \"a3369146-3704-4a5e-9c84-4fd2eff17c18\",\n            \"4d163d55-43bf-41c3-9438-81f8e82a77ac\",\n            \"9fe13ec7-a2c7-4883-b93d-134b394f182c\",\n            \"f78e7f41-37f1-4e7b-9946-bdca1840bf62\",\n            \"52fb4d37-a881-489a-b16c-3151dd31a196\",\n            \"68dc8f75-4b75-4bcc-b400-41b074c3c960\",\n            \"2dd17992-eade-49fa-bf3b-a9d4014a2845\",\n            \"5b7715a5-6d7f-4264-b10c-e55eb5c39bbb\",\n            \"5a903401-e19f-4385-9c04-023e723397b6\",\n            \"fe99efcd-232b-45fc-9546-3a50f679d53e\",\n            \"10f867d9-bd8d-4813-a70e-73f0287267da\",\n            \"7fce2a01-247e-45a2-926d-9f7fbf20a301\",\n            \"7a34c8c8-25c6-4969-9827-0d4016cf8691\",\n            \"e933676f-aeb0-45d8-9e71-30b081d4c2d6\",\n            \"20c376be-84d6-4cf8-95bb-8c8609411fcc\",\n            \"674024c4-add9-4047-932a-3d11ae1bed75\",\n            \"ccacbe1d-d2a3-40af-9966-139424ed853c\",\n            \"32a95697-277c-4ece-88ae-bce082aca0b8\",\n            \"502d78db-3737-4997-bd33-46786519de35\",\n            \"26854dc0-ca8e-4ba5-8119-d9888cb34c3b\",\n            \"3cf5035c-4cd2-4cd9-ab09-f140b0e91170\",\n            \"c8d6a260-f183-46d3-b8c0-f1f1e49aaadc\",\n            \"9f0b98d5-ac28-4fe9-989d-4681c189725e\",\n            \"07af8d6a-7b7b-48e4-85ab-5e491eceafc3\",\n            \"02f6b730-c796-4fa7-a15f-6af1e68bd4ce\",\n            \"a4578e67-f7e7-4472-9577-80b0c2d4b094\",\n            \"9f197503-b711-48c0-9b3f-f85adb4bad50\",\n            \"25acbf59-2688-4a8a-8af7-a9aeaed59c8a\",\n            \"97479849-3b79-4d06-9aff-fd3f35f1f749\",\n            \"cb4c8778-3bb9-4c38-b4bc-bdc2218bd687\",\n            \"d84942c8-54f0-457c-a03d-c70cf3e5df84\",\n            \"7eccdd60-88b8-447d-982f-1fa3657837cc\",\n            \"a3161948-5d5a-49dd-8ffa-dd159a888ed9\",\n            \"4be896b5-c811-47eb-9f97-5eb5e904d4d8\",\n            \"0f117269-bea3-4821-b3aa-06420614d827\",\n            \"8e36a0fd-848c-4354-bb16-cb09708b7464\",\n            \"2025ad02-c47a-43ec-a25e-c5ada291efd0\",\n            \"5a6dd8e6-4bf5-4183-9a04-74a8adc86521\",\n            \"b5632b6c-8b81-4c1f-812c-227452feca27\",\n            \"f03ad9e6-3a9a-494a-ab8f-805bd0a692ed\",\n            \"d4921882-ee57-4ec1-b039-52dbb80028d3\",\n            \"423b3406-908d-4894-96a7-356033031c57\",\n            \"66900e33-6c9f-4c02-b3aa-7c9b66fc272e\",\n            \"e693996f-d650-4d46-ab56-228c037adc82\",\n            \"9a1b3f8b-3e1e-4f8f-b93f-52cf6c10f85f\",\n            \"8044d0f7-176e-455f-8dd3-6bbb57b06966\",\n            \"2d583c8e-79b8-4fd9-bc2f-c3cb3023a5a4\",\n            \"66236011-cbd3-4340-b754-ae4e5e95ce89\",\n            \"828584b0-3205-46d1-8e49-5b8ef8026266\",\n            \"56ac9192-bb43-4b2e-a15a-985bd41fbaf4\",\n            \"ee9a6bb1-cce5-471a-9ef7-9d7a85f500d0\",\n            \"c372af49-97f8-4d17-af77-0790c3805eab\",\n            \"d77585de-203c-49a5-ac8a-aff6992b877a\",\n            \"58876189-ce0a-4864-a498-f5098c135c3a\",\n            \"51c17e0e-8858-413e-8951-19f31be51e55\",\n            \"57295560-55f0-4050-825d-7297b4d592d5\",\n            \"ed5f449c-b793-4372-838e-7637804c9eb2\",\n            \"9a142748-1d53-49f1-b26f-5d55492a90fe\",\n            \"7b87fe5c-95e8-4267-887b-006954996a1b\",\n            \"2dfb619a-f3a9-41eb-966c-ed1f22e49f53\",\n            \"3ae15564-afac-4f54-bafd-cc2d4c87901e\",\n            \"5878ffa2-1bd2-478c-849c-1c5fc96e205d\",\n            \"bc8006b4-8dd6-4077-91ac-6cc82178000f\",\n            \"6c8b3f8f-bf35-42dd-a0bf-587a9a6923ed\",\n            \"f056d0c9-2a8d-4c17-abe7-ec6d1131ae33\",\n            \"0d2eb0d9-3cd0-4ecd-b9f4-0b4b934d4fbe\",\n            \"25bc6460-458a-43d6-b578-aa5017cc66e4\",\n            \"6d97e365-7b18-42f4-9d9e-126376a78cf8\",\n            \"57ede624-78fd-43eb-acc2-1a632a17ad7b\",\n            \"8fe6ef6c-82dd-4a86-bd31-8f16539cb0d0\",\n            \"e3bd076d-828d-4636-9522-843d68ffd142\",\n            \"aa3c7a40-ff92-4924-93e2-934048409e61\",\n            \"18191027-73a0-4cb3-a9a8-d3ee95b0b1a6\",\n            \"a99bcdce-e274-4df7-9ea1-52ad44960808\",\n            \"c72fc5f5-2ae4-42b6-8523-f1894717664d\",\n            \"5bc38f18-0cce-4e95-8bd5-bc4db4af717d\",\n            \"040793fb-29e8-49ee-b659-816408f3bb00\",\n            \"fe493ffa-fea9-491b-a78f-323483c7ae83\",\n            \"b4e39ed8-09b9-4636-bf02-cfe9281c9d43\",\n            \"44767633-1628-448a-9133-3af3ea5a6e0d\",\n            \"2e0db48b-911a-40fb-b776-43d82fd3acdf\",\n            \"b2a7081c-9059-4f6c-b72d-ecb71aa7d1e7\",\n            \"8286700b-67cf-4197-b84c-57d13a41fc3b\",\n            \"6ac60970-89ea-42ff-8468-6e83e7f49f86\",\n            \"517ccf7d-8743-4f9a-be3e-f51128e94a1b\",\n            \"8ccdcbdb-3ecb-4813-980e-bf6afa76b26d\",\n            \"858360ca-00cd-49cd-9500-22412a9ab475\",\n            \"f346ea3b-cda9-4760-8954-41335a78c1ea\",\n            \"8eeb39cc-2955-4c56-a168-d9cb4e714e5d\",\n            \"a886573c-b1f0-4aa4-9172-e4f2e5dbff80\",\n            \"0239bf7e-8c70-46a7-b301-5e4473939507\",\n            \"2ed6b7f8-d565-4109-846b-d1aa9452bdcd\",\n            \"36007cf4-0c76-424c-90f2-ea4f9359c1f2\",\n            \"fd9fcb9e-c046-4acf-9a44-a7a838a39edd\",\n            \"1f2fb108-fbc6-44ab-abff-661770bbd54e\",\n            \"47c79739-a555-4ea3-930b-2029c409d8db\",\n            \"90847e61-74f9-44b5-933d-a84127917584\",\n            \"fe64b72f-1b8a-435b-91d7-e1ba25a969cc\",\n            \"59d24df3-c22d-4664-87f7-e6d841f50d7a\",\n            \"a37631da-191c-4a59-92f9-2c35ca6b24b7\",\n            \"4d6d5c60-dada-44cc-bb97-1e34000098be\",\n            \"c852cb2e-3e8d-4d27-9979-4b0a3e9f142a\",\n            \"e45a5b00-b4fc-4a5b-8712-b1aca2c14c3d\",\n            \"a51982fe-724a-4f1c-9968-862b802b6b60\",\n            \"f21d9e79-965f-4d0a-9047-5a42e5e36ef7\",\n            \"03aa3bb7-206d-4630-bbb6-bd227da43d9d\",\n            \"8215da49-cd4e-44a3-b368-9152014e2544\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.144775390625,\n      \"Text\": \"CO. FILE DEPT. CLOCK NUMBER\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2536987364292145,\n          \"Height\": 0.009026790037751198,\n          \"Left\": 0.1648917943239212,\n          \"Top\": 0.0345170684158802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16489256918430328,\n            \"Y\": 0.0345170684158802\n          },\n          {\n            \"X\": 0.4185904264450073,\n            \"Y\": 0.0346534363925457\n          },\n          {\n            \"X\": 0.4185905456542969,\n            \"Y\": 0.04354385659098625\n          },\n          {\n            \"X\": 0.1648917943239212,\n            \"Y\": 0.04340771213173866\n          }\n        ]\n      },\n      \"Id\": \"3bb03b3a-80e6-4c72-816e-688de4d29502\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c6d2446-06e0-4f6a-854c-be3c88278f46\",\n            \"2381faf1-4e7c-4c88-94db-60f578ec345b\",\n            \"6bd322ae-3b33-4ccf-9745-ae5abe9bfe1e\",\n            \"717f129b-1243-425c-80c5-b9a22af6bdd1\",\n            \"1f40676b-ed02-4f9b-b906-ea6910132052\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.58735656738281,\n      \"Text\": \"ABC 126543 123456 12345 00000000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26200973987579346,\n          \"Height\": 0.010502425953745842,\n          \"Left\": 0.16495054960250854,\n          \"Top\": 0.04666973650455475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16495145857334137,\n            \"Y\": 0.04666973650455475\n          },\n          {\n            \"X\": 0.4269601106643677,\n            \"Y\": 0.04681025817990303\n          },\n          {\n            \"X\": 0.426960289478302,\n            \"Y\": 0.05717216059565544\n          },\n          {\n            \"X\": 0.16495054960250854,\n            \"Y\": 0.05703190714120865\n          }\n        ]\n      },\n      \"Id\": \"943f3cac-bc23-4220-a782-54a5f46844d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c6c107a-6365-46bd-87c1-566fd87929e6\",\n            \"2d8498bc-fc7a-49ca-9340-490fede107e2\",\n            \"9d59b864-4057-4c48-aff2-b04df7c83646\",\n            \"5f4b14c7-ae17-402e-8aba-bd90f48c001d\",\n            \"e13a5b27-62f1-4ba0-b597-50b21ca43129\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.65509033203125,\n      \"Text\": \"1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006587401498109102,\n          \"Height\": 0.008248131722211838,\n          \"Left\": 0.44835329055786133,\n          \"Top\": 0.047755733132362366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44835329055786133,\n            \"Y\": 0.047755733132362366\n          },\n          {\n            \"X\": 0.45494046807289124,\n            \"Y\": 0.04775926470756531\n          },\n          {\n            \"X\": 0.45494067668914795,\n            \"Y\": 0.056003864854574203\n          },\n          {\n            \"X\": 0.44835349917411804,\n            \"Y\": 0.05600033700466156\n          }\n        ]\n      },\n      \"Id\": \"40b27f9e-9d8b-49ba-8265-526ca7fd9f62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a8af8dc7-6072-4585-a3ff-2b5597a8a662\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89851379394531,\n      \"Text\": \"Earnings Statement\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23522374033927917,\n          \"Height\": 0.018239689990878105,\n          \"Left\": 0.5793696641921997,\n          \"Top\": 0.04107304662466049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5793696641921997,\n            \"Y\": 0.04107304662466049\n          },\n          {\n            \"X\": 0.814590334892273,\n            \"Y\": 0.04119933769106865\n          },\n          {\n            \"X\": 0.8145934343338013,\n            \"Y\": 0.059312738478183746\n          },\n          {\n            \"X\": 0.5793710350990295,\n            \"Y\": 0.059186868369579315\n          }\n        ]\n      },\n      \"Id\": \"04edae7f-9d22-4df4-a3df-985e617e41b6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"43f76c85-859b-495b-a50c-a0bb59f1deea\",\n            \"759a5d60-6a9f-4b38-865f-bae4d8e108ca\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.21881103515625,\n      \"Text\": \"ANY COMPANY CORP.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1600331962108612,\n          \"Height\": 0.01082935556769371,\n          \"Left\": 0.1663833111524582,\n          \"Top\": 0.07316377013921738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1663842350244522,\n            \"Y\": 0.07316377013921738\n          },\n          {\n            \"X\": 0.3264164924621582,\n            \"Y\": 0.07324917614459991\n          },\n          {\n            \"X\": 0.3264162540435791,\n            \"Y\": 0.08399312198162079\n          },\n          {\n            \"X\": 0.1663833111524582,\n            \"Y\": 0.08390787988901138\n          }\n        ]\n      },\n      \"Id\": \"4f652d6c-9058-4c15-b980-842ddfaf900e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"594ffd95-f9cf-4326-a461-8ed09be451bb\",\n            \"3d46a404-597e-49a8-8d25-ced083e81455\",\n            \"b2e4aee8-0d60-4cae-974e-6d1e120f705d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.02977752685547,\n      \"Text\": \"Period ending:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09982381761074066,\n          \"Height\": 0.01339530386030674,\n          \"Left\": 0.5789139866828918,\n          \"Top\": 0.07151687145233154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5789139866828918,\n            \"Y\": 0.07151687145233154\n          },\n          {\n            \"X\": 0.6787362694740295,\n            \"Y\": 0.07157016545534134\n          },\n          {\n            \"X\": 0.6787378191947937,\n            \"Y\": 0.08491217344999313\n          },\n          {\n            \"X\": 0.578914999961853,\n            \"Y\": 0.08485901355743408\n          }\n        ]\n      },\n      \"Id\": \"977e13f4-c13c-4547-974c-a756b1eabdde\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de3af39f-cd2c-4b14-8607-1c0458c041cf\",\n            \"847541aa-91d1-4814-809c-f8f143dcafa5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87276458740234,\n      \"Text\": \"7/18/2008\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07078549265861511,\n          \"Height\": 0.011136953718960285,\n          \"Left\": 0.745150625705719,\n          \"Top\": 0.07156092673540115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.745150625705719,\n            \"Y\": 0.07156092673540115\n          },\n          {\n            \"X\": 0.8159342408180237,\n            \"Y\": 0.07159871608018875\n          },\n          {\n            \"X\": 0.8159360885620117,\n            \"Y\": 0.08269788324832916\n          },\n          {\n            \"X\": 0.7451521754264832,\n            \"Y\": 0.08266016840934753\n          }\n        ]\n      },\n      \"Id\": \"78e8e9b9-6606-4039-8f3f-6f0a67c4c507\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b53889d3-3708-498c-ac5c-0a161095b8cb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90446472167969,\n      \"Text\": \"475 ANY AVENUE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12553614377975464,\n          \"Height\": 0.010348331183195114,\n          \"Left\": 0.16707342863082886,\n          \"Top\": 0.08869541436433792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1670743077993393,\n            \"Y\": 0.08869541436433792\n          },\n          {\n            \"X\": 0.2926095724105835,\n            \"Y\": 0.08876221626996994\n          },\n          {\n            \"X\": 0.29260918498039246,\n            \"Y\": 0.09904374182224274\n          },\n          {\n            \"X\": 0.16707342863082886,\n            \"Y\": 0.09897706657648087\n          }\n        ]\n      },\n      \"Id\": \"63304d07-751c-4599-8aba-2e89b62c1cca\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b0205c1-204d-4462-977f-e920db5e9cb9\",\n            \"d790e627-b9d6-4361-b2ee-0dbb5b3d5767\",\n            \"5d03b913-9040-42a7-b27d-5ea34dac85d8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.91317749023438,\n      \"Text\": \"Pay date:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06654775142669678,\n          \"Height\": 0.012733392417430878,\n          \"Left\": 0.5785626173019409,\n          \"Top\": 0.08726245909929276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785626173019409,\n            \"Y\": 0.08726245909929276\n          },\n          {\n            \"X\": 0.6451090574264526,\n            \"Y\": 0.08729788661003113\n          },\n          {\n            \"X\": 0.6451103687286377,\n            \"Y\": 0.09999585151672363\n          },\n          {\n            \"X\": 0.5785635709762573,\n            \"Y\": 0.09996051341295242\n          }\n        ]\n      },\n      \"Id\": \"0bae8362-e70a-4507-9cb2-7778b892e6da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"abd56aca-fb87-4787-990d-4294f4312000\",\n            \"af4da493-9da3-4ca9-9f9c-ffd64c1125aa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90161895751953,\n      \"Text\": \"7/25/2008\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07123647630214691,\n          \"Height\": 0.010762719437479973,\n          \"Left\": 0.7445810437202454,\n          \"Top\": 0.08705495297908783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7445810437202454,\n            \"Y\": 0.08705495297908783\n          },\n          {\n            \"X\": 0.8158157467842102,\n            \"Y\": 0.08709287643432617\n          },\n          {\n            \"X\": 0.8158175349235535,\n            \"Y\": 0.09781767427921295\n          },\n          {\n            \"X\": 0.7445825934410095,\n            \"Y\": 0.09777982532978058\n          }\n        ]\n      },\n      \"Id\": \"8528abca-6cd6-4813-829b-337442dbe393\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1974336-a2de-4b02-87d3-14933d4f0d9c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 89.7862548828125,\n      \"Text\": \"ANYTOWN USA 10101\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15934304893016815,\n          \"Height\": 0.011651662178337574,\n          \"Left\": 0.16673345863819122,\n          \"Top\": 0.10391460359096527\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1667344570159912,\n            \"Y\": 0.10391460359096527\n          },\n          {\n            \"X\": 0.3260765075683594,\n            \"Y\": 0.10399916023015976\n          },\n          {\n            \"X\": 0.3260762393474579,\n            \"Y\": 0.11556626856327057\n          },\n          {\n            \"X\": 0.16673345863819122,\n            \"Y\": 0.1154818907380104\n          }\n        ]\n      },\n      \"Id\": \"300a643b-7a87-41f7-94de-d3e7a9ff024a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68177516-a468-4528-bddf-5d6e2b60d1f5\",\n            \"71f8d330-44b6-48ea-a146-df80d29e3fcb\",\n            \"608de413-c780-4333-8aa2-3f3dd340db77\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.3310546875,\n      \"Text\": \"Social Security Number: 987-65-4321\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.211502805352211,\n          \"Height\": 0.010499222204089165,\n          \"Left\": 0.1657143086194992,\n          \"Top\": 0.14504849910736084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16571521759033203,\n            \"Y\": 0.14504849910736084\n          },\n          {\n            \"X\": 0.3772171139717102,\n            \"Y\": 0.14515987038612366\n          },\n          {\n            \"X\": 0.3772170841693878,\n            \"Y\": 0.15554772317409515\n          },\n          {\n            \"X\": 0.1657143086194992,\n            \"Y\": 0.15543656051158905\n          }\n        ]\n      },\n      \"Id\": \"fab364b3-5864-4403-827f-f0cdbe19a646\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fbab9016-1814-4297-86fe-62340e23004c\",\n            \"3938f3a7-1e00-4057-9611-9c943ecf4782\",\n            \"31df3193-4de2-454b-8078-c3f20f965840\",\n            \"6ac09e77-6f78-47f3-95fc-32e3f86bbed2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4296646118164,\n      \"Text\": \"Taxable Marital Status: Married\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18324382603168488,\n          \"Height\": 0.009466402232646942,\n          \"Left\": 0.1662297248840332,\n          \"Top\": 0.15498550236225128\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16623054444789886,\n            \"Y\": 0.15498550236225128\n          },\n          {\n            \"X\": 0.3494735360145569,\n            \"Y\": 0.1550818234682083\n          },\n          {\n            \"X\": 0.34947341680526733,\n            \"Y\": 0.16445191204547882\n          },\n          {\n            \"X\": 0.1662297248840332,\n            \"Y\": 0.16435576975345612\n          }\n        ]\n      },\n      \"Id\": \"9a3c007d-935b-4f60-9090-68d1ec3cc22c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"71727e12-50da-468c-a6b2-1312adebddd3\",\n            \"deb4bf69-39fd-4ec6-b112-d4f0d4374165\",\n            \"df13984c-0f67-4247-8dd9-cbb2ceb55f84\",\n            \"f27f1a5c-3200-4e31-a3d2-d60c24e9bcb8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91573333740234,\n      \"Text\": \"JOHN STILES\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10456061363220215,\n          \"Height\": 0.010888518765568733,\n          \"Left\": 0.5788884162902832,\n          \"Top\": 0.1502630114555359\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5788884162902832,\n            \"Y\": 0.1502630114555359\n          },\n          {\n            \"X\": 0.6834477782249451,\n            \"Y\": 0.15031802654266357\n          },\n          {\n            \"X\": 0.6834490299224854,\n            \"Y\": 0.16115152835845947\n          },\n          {\n            \"X\": 0.5788892507553101,\n            \"Y\": 0.16109663248062134\n          }\n        ]\n      },\n      \"Id\": \"0e973b1a-70ff-4799-af0e-b95080fd1d95\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"092f6da2-ad51-44c8-ab3c-2ae02d118c57\",\n            \"41ddbcc7-ac36-432d-8ebf-8ba170bb08e5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 72.89268493652344,\n      \"Text\": \"Exemptions/Allowances:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14550407230854034,\n          \"Height\": 0.010661812499165535,\n          \"Left\": 0.16551117599010468,\n          \"Top\": 0.1662767231464386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1655120998620987,\n            \"Y\": 0.1662767231464386\n          },\n          {\n            \"X\": 0.311015248298645,\n            \"Y\": 0.1663530319929123\n          },\n          {\n            \"X\": 0.31101492047309875,\n            \"Y\": 0.17693853378295898\n          },\n          {\n            \"X\": 0.16551117599010468,\n            \"Y\": 0.17686237394809723\n          }\n        ]\n      },\n      \"Id\": \"e4094b61-5534-4b22-a32f-a5473df5b850\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"044b4ca3-839e-4003-b475-d594c11f3d30\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93885040283203,\n      \"Text\": \"101 MAIN STREET\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15633812546730042,\n          \"Height\": 0.011289249174296856,\n          \"Left\": 0.5794377326965332,\n          \"Top\": 0.16194522380828857\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5794377326965332,\n            \"Y\": 0.16194522380828857\n          },\n          {\n            \"X\": 0.7357742786407471,\n            \"Y\": 0.1620272994041443\n          },\n          {\n            \"X\": 0.7357758283615112,\n            \"Y\": 0.1732344776391983\n          },\n          {\n            \"X\": 0.5794385671615601,\n            \"Y\": 0.17315258085727692\n          }\n        ]\n      },\n      \"Id\": \"f57c6506-55e4-4652-9a04-16d960db1d67\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93bbc054-08c4-4b1b-902f-1c1d51ef0a4c\",\n            \"51227648-10b8-4ba8-bb01-c2cc7b2b38d9\",\n            \"8eca38ad-061c-4a02-8e68-b6be1161c9a8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.584716796875,\n      \"Text\": \"Federal: 3. $25 Additional Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18709829449653625,\n          \"Height\": 0.010425246320664883,\n          \"Left\": 0.18438352644443512,\n          \"Top\": 0.17788280546665192\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18438434600830078,\n            \"Y\": 0.17788280546665192\n          },\n          {\n            \"X\": 0.37148183584213257,\n            \"Y\": 0.1779807209968567\n          },\n          {\n            \"X\": 0.3714817762374878,\n            \"Y\": 0.18830804526805878\n          },\n          {\n            \"X\": 0.18438352644443512,\n            \"Y\": 0.18821032345294952\n          }\n        ]\n      },\n      \"Id\": \"2737db78-b240-4eae-a802-29e2b64fa077\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"642bc9ea-5589-49b8-b909-e14d932f7f4c\",\n            \"67748885-632d-4bc0-8756-1bd7185cb324\",\n            \"c6087467-7f71-494f-ad82-e114e20f25ad\",\n            \"15b6315d-674d-485d-856c-57cbf8022ca8\",\n            \"d4c22423-6620-4005-8757-34d63a6f87f7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.68244171142578,\n      \"Text\": \"ANYTOWN, USA 12345\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19434048235416412,\n          \"Height\": 0.013348865322768688,\n          \"Left\": 0.5781306028366089,\n          \"Top\": 0.17580297589302063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781306028366089,\n            \"Y\": 0.17580297589302063\n          },\n          {\n            \"X\": 0.7724690437316895,\n            \"Y\": 0.17590472102165222\n          },\n          {\n            \"X\": 0.7724710702896118,\n            \"Y\": 0.1891518384218216\n          },\n          {\n            \"X\": 0.5781316161155701,\n            \"Y\": 0.1890503466129303\n          }\n        ]\n      },\n      \"Id\": \"4944a4d6-f912-484e-9cc0-77d8f6ac69df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fa60b03c-e5e1-4cf9-8713-a8b6cba8b4de\",\n            \"8daad891-aa03-47ae-b5f5-debedeb6e9cd\",\n            \"6c64ea41-77c5-49ec-b106-1a7914352f21\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.41807556152344,\n      \"Text\": \"State: 2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06329090148210526,\n          \"Height\": 0.008877173997461796,\n          \"Left\": 0.18516546487808228,\n          \"Top\": 0.18944638967514038\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18516618013381958,\n            \"Y\": 0.18944638967514038\n          },\n          {\n            \"X\": 0.24845637381076813,\n            \"Y\": 0.18947944045066833\n          },\n          {\n            \"X\": 0.24845589697360992,\n            \"Y\": 0.1983235627412796\n          },\n          {\n            \"X\": 0.18516546487808228,\n            \"Y\": 0.19829057157039642\n          }\n        ]\n      },\n      \"Id\": \"795a3329-9013-4733-8703-13e17f14693c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0c280735-8fcd-4128-abc5-b961d4742258\",\n            \"89617607-a82d-4ff8-91cb-fa3125226890\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.12574768066406,\n      \"Text\": \"Local: 2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06348910182714462,\n          \"Height\": 0.00930629950016737,\n          \"Left\": 0.18479199707508087,\n          \"Top\": 0.20012450218200684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18479274213314056,\n            \"Y\": 0.20012450218200684\n          },\n          {\n            \"X\": 0.2482811063528061,\n            \"Y\": 0.20015758275985718\n          },\n          {\n            \"X\": 0.2482805997133255,\n            \"Y\": 0.20943079888820648\n          },\n          {\n            \"X\": 0.18479199707508087,\n            \"Y\": 0.20939777791500092\n          }\n        ]\n      },\n      \"Id\": \"38035a1c-f357-4c30-ab0b-87989474fb82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"78a19a2e-f67f-439d-b22f-637b0729f1aa\",\n            \"0e34053f-85f7-4027-a5e8-35ea7036654f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9607925415039,\n      \"Text\": \"Earnings\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06931082904338837,\n          \"Height\": 0.013459205627441406,\n          \"Left\": 0.048463236540555954,\n          \"Top\": 0.23626023530960083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048465024679899216,\n            \"Y\": 0.23626023530960083\n          },\n          {\n            \"X\": 0.11777406185865402,\n            \"Y\": 0.23629610240459442\n          },\n          {\n            \"X\": 0.11777263879776001,\n            \"Y\": 0.24971944093704224\n          },\n          {\n            \"X\": 0.048463236540555954,\n            \"Y\": 0.2496836632490158\n          }\n        ]\n      },\n      \"Id\": \"f2a203ee-b12f-473c-865b-ef12d5559ffb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3e743b6d-5363-4d38-a996-d49dba07c6f5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96734619140625,\n      \"Text\": \"rate\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02945694699883461,\n          \"Height\": 0.010017167776823044,\n          \"Left\": 0.16499583423137665,\n          \"Top\": 0.23764441907405853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1649966984987259,\n            \"Y\": 0.23764441907405853\n          },\n          {\n            \"X\": 0.19445277750492096,\n            \"Y\": 0.23765966296195984\n          },\n          {\n            \"X\": 0.19445201754570007,\n            \"Y\": 0.24766159057617188\n          },\n          {\n            \"X\": 0.16499583423137665,\n            \"Y\": 0.24764637649059296\n          }\n        ]\n      },\n      \"Id\": \"5a83b260-98eb-4015-aa2a-e2f4add156b5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d0d21cf0-ad3d-4287-b301-e39519229e8b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9582748413086,\n      \"Text\": \"hours\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041159678250551224,\n          \"Height\": 0.010125490836799145,\n          \"Left\": 0.24279560148715973,\n          \"Top\": 0.23747625946998596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2427961826324463,\n            \"Y\": 0.23747625946998596\n          },\n          {\n            \"X\": 0.28395527601242065,\n            \"Y\": 0.23749755322933197\n          },\n          {\n            \"X\": 0.2839548885822296,\n            \"Y\": 0.24760174751281738\n          },\n          {\n            \"X\": 0.24279560148715973,\n            \"Y\": 0.24758048355579376\n          }\n        ]\n      },\n      \"Id\": \"12940161-41f8-4a77-a8d7-f0696db85afc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"799cb262-ed70-4c3d-aa19-82ade7a19752\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86711883544922,\n      \"Text\": \"this period\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07600773125886917,\n          \"Height\": 0.012722792103886604,\n          \"Left\": 0.34537237882614136,\n          \"Top\": 0.23713549971580505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34537258744239807,\n            \"Y\": 0.23713549971580505\n          },\n          {\n            \"X\": 0.421379953622818,\n            \"Y\": 0.2371748387813568\n          },\n          {\n            \"X\": 0.42138010263442993,\n            \"Y\": 0.2498582899570465\n          },\n          {\n            \"X\": 0.34537237882614136,\n            \"Y\": 0.2498190551996231\n          }\n        ]\n      },\n      \"Id\": \"34aa8fd7-a643-4dbe-aa04-28f8f7ea8531\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7716c163-f0f4-457d-8e93-525196c32585\",\n            \"147a1048-7567-4fe6-9c04-a26d5171dc35\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92044067382812,\n      \"Text\": \"year to date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08525195717811584,\n          \"Height\": 0.011907589621841908,\n          \"Left\": 0.44469812512397766,\n          \"Top\": 0.23751327395439148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44469812512397766,\n            \"Y\": 0.23751327395439148\n          },\n          {\n            \"X\": 0.529949426651001,\n            \"Y\": 0.23755739629268646\n          },\n          {\n            \"X\": 0.5299500823020935,\n            \"Y\": 0.2494208663702011\n          },\n          {\n            \"X\": 0.44469839334487915,\n            \"Y\": 0.24937684834003448\n          }\n        ]\n      },\n      \"Id\": \"7b4489e3-78fe-4d7a-b9e0-64582746aab1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"812008ae-e030-432d-831f-514428f2e4fa\",\n            \"d650beef-675e-4209-9be0-ef15c97fd172\",\n            \"cd0cecfd-f414-4d40-850b-642e1015995a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95258331298828,\n      \"Text\": \"Other Benefits and\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14670562744140625,\n          \"Height\": 0.01175178587436676,\n          \"Left\": 0.5766529440879822,\n          \"Top\": 0.23722980916500092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5766529440879822,\n            \"Y\": 0.23722980916500092\n          },\n          {\n            \"X\": 0.7233570218086243,\n            \"Y\": 0.23730573058128357\n          },\n          {\n            \"X\": 0.7233585715293884,\n            \"Y\": 0.24898159503936768\n          },\n          {\n            \"X\": 0.5766538381576538,\n            \"Y\": 0.24890585243701935\n          }\n        ]\n      },\n      \"Id\": \"d9878906-918d-4bcc-b477-62b63d1722bb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"14bc4165-8b1d-4d16-b992-d11e1bf42649\",\n            \"9dfc69b5-b521-43f5-9b8e-933160daa638\",\n            \"e83f5772-8a6d-49b8-b3b1-68fc731ffa69\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85408782958984,\n      \"Text\": \"Regular\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05216872692108154,\n          \"Height\": 0.012287428602576256,\n          \"Left\": 0.04820391908288002,\n          \"Top\": 0.2524224817752838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048205554485321045,\n            \"Y\": 0.2524224817752838\n          },\n          {\n            \"X\": 0.10037264972925186,\n            \"Y\": 0.2524493932723999\n          },\n          {\n            \"X\": 0.10037126392126083,\n            \"Y\": 0.2647099196910858\n          },\n          {\n            \"X\": 0.04820391908288002,\n            \"Y\": 0.2646830677986145\n          }\n        ]\n      },\n      \"Id\": \"1f66f667-2b97-4ad2-bab9-ef38f89f64be\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e713fe7-9f79-41ff-99fa-bbeb91a24faf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9853286743164,\n      \"Text\": \"10.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03768472000956535,\n          \"Height\": 0.009851118549704552,\n          \"Left\": 0.16607119143009186,\n          \"Top\": 0.2533145844936371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1660720407962799,\n            \"Y\": 0.2533145844936371\n          },\n          {\n            \"X\": 0.2037559151649475,\n            \"Y\": 0.25333404541015625\n          },\n          {\n            \"X\": 0.2037551999092102,\n            \"Y\": 0.2631657123565674\n          },\n          {\n            \"X\": 0.16607119143009186,\n            \"Y\": 0.263146311044693\n          }\n        ]\n      },\n      \"Id\": \"1ebcb36a-7216-4856-b60d-0e79deec9bc2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2188b790-5153-4697-b659-b7d3151fb5d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95726013183594,\n      \"Text\": \"32.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038650620728731155,\n          \"Height\": 0.010002532042562962,\n          \"Left\": 0.24577964842319489,\n          \"Top\": 0.25323572754859924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24578019976615906,\n            \"Y\": 0.25323572754859924\n          },\n          {\n            \"X\": 0.28443026542663574,\n            \"Y\": 0.2532556653022766\n          },\n          {\n            \"X\": 0.2844298779964447,\n            \"Y\": 0.26323825120925903\n          },\n          {\n            \"X\": 0.24577964842319489,\n            \"Y\": 0.26321834325790405\n          }\n        ]\n      },\n      \"Id\": \"946ce0c3-0c28-4bb2-93a9-ca4b8c26f9f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"861d4157-80b7-40d1-953e-92de280aef04\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93513488769531,\n      \"Text\": \"320.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04622955992817879,\n          \"Height\": 0.010005136020481586,\n          \"Left\": 0.37489357590675354,\n          \"Top\": 0.2532278597354889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3748936355113983,\n            \"Y\": 0.2532278597354889\n          },\n          {\n            \"X\": 0.4211229979991913,\n            \"Y\": 0.25325170159339905\n          },\n          {\n            \"X\": 0.4211231470108032,\n            \"Y\": 0.2632329761981964\n          },\n          {\n            \"X\": 0.37489357590675354,\n            \"Y\": 0.26320916414260864\n          }\n        ]\n      },\n      \"Id\": \"5385b49e-8c4e-4907-a0ec-a4ba405187dc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a7450109-248e-4cf6-85e4-799e172d50d2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87945556640625,\n      \"Text\": \"16,640.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06557746231555939,\n          \"Height\": 0.010449650697410107,\n          \"Left\": 0.4640209376811981,\n          \"Top\": 0.2532294690608978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4640209376811981,\n            \"Y\": 0.2532294690608978\n          },\n          {\n            \"X\": 0.529597818851471,\n            \"Y\": 0.25326329469680786\n          },\n          {\n            \"X\": 0.5295984148979187,\n            \"Y\": 0.2636791169643402\n          },\n          {\n            \"X\": 0.4640212655067444,\n            \"Y\": 0.26364535093307495\n          }\n        ]\n      },\n      \"Id\": \"400d8b2b-544a-4d55-bc3f-6ef75813801d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1d911cf8-c70a-4841-a107-ebae1e32e82b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5367202758789,\n      \"Text\": \"Information\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09015334397554398,\n          \"Height\": 0.011279510334134102,\n          \"Left\": 0.5768205523490906,\n          \"Top\": 0.2517431080341339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768205523490906,\n            \"Y\": 0.2517431080341339\n          },\n          {\n            \"X\": 0.6669726371765137,\n            \"Y\": 0.2517896294593811\n          },\n          {\n            \"X\": 0.666973888874054,\n            \"Y\": 0.26302260160446167\n          },\n          {\n            \"X\": 0.5768213868141174,\n            \"Y\": 0.26297619938850403\n          }\n        ]\n      },\n      \"Id\": \"35d8f9fc-962f-406f-8af7-a8ae7e381e82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2cc46da4-6d86-4345-bc7a-ce0f498249fe\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91167449951172,\n      \"Text\": \"this period\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07585716247558594,\n          \"Height\": 0.012192899361252785,\n          \"Left\": 0.7564947605133057,\n          \"Top\": 0.2525874376296997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7564947605133057,\n            \"Y\": 0.2525874376296997\n          },\n          {\n            \"X\": 0.8323497772216797,\n            \"Y\": 0.25262656807899475\n          },\n          {\n            \"X\": 0.8323519229888916,\n            \"Y\": 0.26478034257888794\n          },\n          {\n            \"X\": 0.7564964890480042,\n            \"Y\": 0.26474127173423767\n          }\n        ]\n      },\n      \"Id\": \"be7e09f6-9783-4138-8388-80676f461a5e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b62d8678-f2df-4da7-b01e-064a5f0925a0\",\n            \"e1d2165a-cb96-43a3-b4e1-a850c726f33d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91117095947266,\n      \"Text\": \"total to date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08627023547887802,\n          \"Height\": 0.010268193669617176,\n          \"Left\": 0.8563255071640015,\n          \"Top\": 0.25275588035583496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8563255071640015,\n            \"Y\": 0.25275588035583496\n          },\n          {\n            \"X\": 0.942593514919281,\n            \"Y\": 0.2528004050254822\n          },\n          {\n            \"X\": 0.9425957202911377,\n            \"Y\": 0.26302409172058105\n          },\n          {\n            \"X\": 0.8563273549079895,\n            \"Y\": 0.262979656457901\n          }\n        ]\n      },\n      \"Id\": \"923e5653-ba50-47d5-9b4d-181cb1063c15\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eee6dc86-7e38-4d36-822a-6ee69a3c58a4\",\n            \"ca711130-715f-4114-9ae8-363cb6fe441d\",\n            \"da112398-09e8-482b-af16-115dd19982c9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94938659667969,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06074037775397301,\n          \"Height\": 0.010400752536952496,\n          \"Left\": 0.04815497621893883,\n          \"Top\": 0.2667449414730072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048156362026929855,\n            \"Y\": 0.2667449414730072\n          },\n          {\n            \"X\": 0.10889535397291183,\n            \"Y\": 0.2667762041091919\n          },\n          {\n            \"X\": 0.1088942214846611,\n            \"Y\": 0.2771456837654114\n          },\n          {\n            \"X\": 0.04815497621893883,\n            \"Y\": 0.27711451053619385\n          }\n        ]\n      },\n      \"Id\": \"255a6bfe-d43a-4f4f-85e7-7e803fe0d73f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81986e90-ce80-442d-aea3-e3c3b2dcdacd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97119140625,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037271689623594284,\n          \"Height\": 0.009945896454155445,\n          \"Left\": 0.16658230125904083,\n          \"Top\": 0.26755163073539734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16658316552639008,\n            \"Y\": 0.26755163073539734\n          },\n          {\n            \"X\": 0.20385399460792542,\n            \"Y\": 0.2675707936286926\n          },\n          {\n            \"X\": 0.2038532793521881,\n            \"Y\": 0.2774975299835205\n          },\n          {\n            \"X\": 0.16658230125904083,\n            \"Y\": 0.2774783968925476\n          }\n        ]\n      },\n      \"Id\": \"b50fca33-2787-4dc2-bdb2-0b3073fef258\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef295caf-24fa-45fa-9c01-24fb1e1159eb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98035430908203,\n      \"Text\": \"1.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029214758425951004,\n          \"Height\": 0.01006261259317398,\n          \"Left\": 0.2552531957626343,\n          \"Top\": 0.2675531804561615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25525373220443726,\n            \"Y\": 0.2675531804561615\n          },\n          {\n            \"X\": 0.2844679653644562,\n            \"Y\": 0.2675682306289673\n          },\n          {\n            \"X\": 0.28446754813194275,\n            \"Y\": 0.27761581540107727\n          },\n          {\n            \"X\": 0.2552531957626343,\n            \"Y\": 0.27760079503059387\n          }\n        ]\n      },\n      \"Id\": \"743c75fd-2fa6-49de-990d-32a5d49c058f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c962f0f4-4d1f-46d7-85ce-ff056b045efb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97041320800781,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03686118870973587,\n          \"Height\": 0.009980025701224804,\n          \"Left\": 0.3845655918121338,\n          \"Top\": 0.2675122618675232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2675122618675232\n          },\n          {\n            \"X\": 0.4214266240596771,\n            \"Y\": 0.26753121614456177\n          },\n          {\n            \"X\": 0.42142677307128906,\n            \"Y\": 0.2774922847747803\n          },\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2774733603000641\n          }\n        ]\n      },\n      \"Id\": \"798fd191-4af7-427a-a647-b3fa5eb31ec8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c5ab781-5ab7-4592-bca8-511160cd8ca4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96766662597656,\n      \"Text\": \"780.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046530354768037796,\n          \"Height\": 0.010219424962997437,\n          \"Left\": 0.48337647318840027,\n          \"Top\": 0.26737067103385925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48337647318840027,\n            \"Y\": 0.26737067103385925\n          },\n          {\n            \"X\": 0.5299062728881836,\n            \"Y\": 0.26739463210105896\n          },\n          {\n            \"X\": 0.5299068093299866,\n            \"Y\": 0.2775900959968567\n          },\n          {\n            \"X\": 0.4833768606185913,\n            \"Y\": 0.27756622433662415\n          }\n        ]\n      },\n      \"Id\": \"7d69c42c-0aa3-4c2f-857c-c1fd32bfa6d1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0bcdea31-cd25-4288-a9da-4350fdab614c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68309020996094,\n      \"Text\": \"Group Term Life\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11140777170658112,\n          \"Height\": 0.01232247892767191,\n          \"Left\": 0.5767555832862854,\n          \"Top\": 0.26781925559043884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767555832862854,\n            \"Y\": 0.26781925559043884\n          },\n          {\n            \"X\": 0.6881619095802307,\n            \"Y\": 0.2678765654563904\n          },\n          {\n            \"X\": 0.6881633400917053,\n            \"Y\": 0.2801417112350464\n          },\n          {\n            \"X\": 0.5767565369606018,\n            \"Y\": 0.2800845503807068\n          }\n        ]\n      },\n      \"Id\": \"ef945490-95b5-40ce-b8e7-aeae85461834\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c920135-96b7-423d-b955-7074ef8a682c\",\n            \"7554e53b-1f70-4285-ba3d-ba1014cad4b6\",\n            \"ec255b17-2821-40a8-b702-94cef08ad866\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91934967041016,\n      \"Text\": \"0.51\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028741711750626564,\n          \"Height\": 0.009984729811549187,\n          \"Left\": 0.8023031949996948,\n          \"Top\": 0.2685137987136841\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8023031949996948,\n            \"Y\": 0.2685137987136841\n          },\n          {\n            \"X\": 0.8310431241989136,\n            \"Y\": 0.2685285806655884\n          },\n          {\n            \"X\": 0.8310449123382568,\n            \"Y\": 0.2784985303878784\n          },\n          {\n            \"X\": 0.8023048043251038,\n            \"Y\": 0.2784837782382965\n          }\n        ]\n      },\n      \"Id\": \"5b7fb5a0-96d7-4c63-b475-64b8d9840455\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"95c2930a-bfcc-4300-94fa-4334a433d32c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96684265136719,\n      \"Text\": \"27.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037982746958732605,\n          \"Height\": 0.010073179379105568,\n          \"Left\": 0.9043900370597839,\n          \"Top\": 0.268672376871109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9043900370597839,\n            \"Y\": 0.268672376871109\n          },\n          {\n            \"X\": 0.942370593547821,\n            \"Y\": 0.26869192719459534\n          },\n          {\n            \"X\": 0.942372739315033,\n            \"Y\": 0.27874556183815\n          },\n          {\n            \"X\": 0.9043920636177063,\n            \"Y\": 0.27872607111930847\n          }\n        ]\n      },\n      \"Id\": \"b3b33108-a9a8-438e-af8b-8295f18a4c4e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de0bac35-db04-4791-9f84-a8e72b6ecd9d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93984985351562,\n      \"Text\": \"Holiday\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050633981823921204,\n          \"Height\": 0.012951508164405823,\n          \"Left\": 0.04812180995941162,\n          \"Top\": 0.2820318341255188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04812353476881981,\n            \"Y\": 0.2820318341255188\n          },\n          {\n            \"X\": 0.09875579178333282,\n            \"Y\": 0.28205782175064087\n          },\n          {\n            \"X\": 0.09875432401895523,\n            \"Y\": 0.2949833571910858\n          },\n          {\n            \"X\": 0.04812180995941162,\n            \"Y\": 0.2949574291706085\n          }\n        ]\n      },\n      \"Id\": \"bc99057d-e8a5-4ae6-afb6-1a30c452b448\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46ededb1-0e69-439b-8c72-ab7939b7dbe9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9839096069336,\n      \"Text\": \"10.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03735325112938881,\n          \"Height\": 0.00993636716157198,\n          \"Left\": 0.1664377748966217,\n          \"Top\": 0.2827611565589905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16643863916397095,\n            \"Y\": 0.2827611565589905\n          },\n          {\n            \"X\": 0.20379102230072021,\n            \"Y\": 0.28278031945228577\n          },\n          {\n            \"X\": 0.2037903070449829,\n            \"Y\": 0.2926975190639496\n          },\n          {\n            \"X\": 0.1664377748966217,\n            \"Y\": 0.2926783859729767\n          }\n        ]\n      },\n      \"Id\": \"b9f33a0d-4b19-4029-8ce2-6a59bd33bb40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cce901bd-3c9f-49fe-bcca-704edd66fa42\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93985748291016,\n      \"Text\": \"8.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0303603895008564,\n          \"Height\": 0.009918317198753357,\n          \"Left\": 0.2541239559650421,\n          \"Top\": 0.282818078994751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2541244626045227,\n            \"Y\": 0.282818078994751\n          },\n          {\n            \"X\": 0.2844843566417694,\n            \"Y\": 0.28283363580703735\n          },\n          {\n            \"X\": 0.284483939409256,\n            \"Y\": 0.29273638129234314\n          },\n          {\n            \"X\": 0.2541239559650421,\n            \"Y\": 0.29272085428237915\n          }\n        ]\n      },\n      \"Id\": \"837353b7-e41a-4b32-9a49-b5afe2727989\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"090b5b9f-9f6e-42c8-84fc-2ca2c098faec\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92776489257812,\n      \"Text\": \"80.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03822328895330429,\n          \"Height\": 0.009878597222268581,\n          \"Left\": 0.3833726644515991,\n          \"Top\": 0.2828782796859741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.2828782796859741\n          },\n          {\n            \"X\": 0.42159581184387207,\n            \"Y\": 0.2828978896141052\n          },\n          {\n            \"X\": 0.421595960855484,\n            \"Y\": 0.2927568852901459\n          },\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.29273730516433716\n          }\n        ]\n      },\n      \"Id\": \"450b6ffb-77ed-4bee-a9e8-530b29c57716\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"adf96d5c-a0b9-4107-81bb-9d8d00122fe6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9427261352539,\n      \"Text\": \"4,160.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058800388127565384,\n          \"Height\": 0.010359588079154491,\n          \"Left\": 0.47135302424430847,\n          \"Top\": 0.2825688123703003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47135302424430847,\n            \"Y\": 0.2825688123703003\n          },\n          {\n            \"X\": 0.5301528573036194,\n            \"Y\": 0.28259897232055664\n          },\n          {\n            \"X\": 0.5301533937454224,\n            \"Y\": 0.29292839765548706\n          },\n          {\n            \"X\": 0.4713533818721771,\n            \"Y\": 0.2928982973098755\n          }\n        ]\n      },\n      \"Id\": \"6c47dcd5-e8f8-4fb1-8bc1-c39978599b3f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dba0c35d-ac41-4105-8164-ee54641f8738\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82693481445312,\n      \"Text\": \"Loan Amt Paid\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09797006845474243,\n          \"Height\": 0.010524420067667961,\n          \"Left\": 0.5767179727554321,\n          \"Top\": 0.28300994634628296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767179727554321,\n            \"Y\": 0.28300994634628296\n          },\n          {\n            \"X\": 0.674686849117279,\n            \"Y\": 0.283060222864151\n          },\n          {\n            \"X\": 0.6746880412101746,\n            \"Y\": 0.29353436827659607\n          },\n          {\n            \"X\": 0.5767187476158142,\n            \"Y\": 0.29348424077033997\n          }\n        ]\n      },\n      \"Id\": \"8519aac2-1e05-42ba-8dd3-3e785efdf0e3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32c7c392-b41d-4371-98c6-b3a2d9e4cf50\",\n            \"c0352b58-49ab-4f57-a14a-b405f5910935\",\n            \"05e975a6-ebd0-4673-8adf-c534442dda48\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92259216308594,\n      \"Text\": \"840.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046753834933042526,\n          \"Height\": 0.010666605085134506,\n          \"Left\": 0.8956746459007263,\n          \"Top\": 0.28368595242500305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8956746459007263,\n            \"Y\": 0.28368595242500305\n          },\n          {\n            \"X\": 0.9424261450767517,\n            \"Y\": 0.28370994329452515\n          },\n          {\n            \"X\": 0.942428469657898,\n            \"Y\": 0.29435256123542786\n          },\n          {\n            \"X\": 0.8956767916679382,\n            \"Y\": 0.29432862997055054\n          }\n        ]\n      },\n      \"Id\": \"4765b878-7ae2-41c2-8e98-84969fc58a53\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3d60009-3c96-4d3e-b693-8bd8fd98c33e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.42350769042969,\n      \"Text\": \"Tuition\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04613829031586647,\n          \"Height\": 0.01095814909785986,\n          \"Left\": 0.04747363179922104,\n          \"Top\": 0.2969394624233246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.047475092113018036,\n            \"Y\": 0.2969394624233246\n          },\n          {\n            \"X\": 0.09361192584037781,\n            \"Y\": 0.29696306586265564\n          },\n          {\n            \"X\": 0.09361065924167633,\n            \"Y\": 0.3078975975513458\n          },\n          {\n            \"X\": 0.04747363179922104,\n            \"Y\": 0.30787405371665955\n          }\n        ]\n      },\n      \"Id\": \"9da58d2e-cf4d-463e-a13a-c31c0cdd0a23\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"66460174-ed8f-40c8-99ff-274c84640092\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 65.8167953491211,\n      \"Text\": \"37.43*\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04241195693612099,\n          \"Height\": 0.009879774414002895,\n          \"Left\": 0.3839637041091919,\n          \"Top\": 0.2979101836681366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.2979101836681366\n          },\n          {\n            \"X\": 0.42637550830841064,\n            \"Y\": 0.29793187975883484\n          },\n          {\n            \"X\": 0.4263756573200226,\n            \"Y\": 0.30778995156288147\n          },\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.307768315076828\n          }\n        ]\n      },\n      \"Id\": \"3ae47c8f-a96a-48bd-8f1b-4607ba5b6dab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"141d88fa-fd6f-4f49-a182-085cf64852bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84208679199219,\n      \"Text\": \"1,946.80\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058109480887651443,\n          \"Height\": 0.010069272480905056,\n          \"Left\": 0.4719546139240265,\n          \"Top\": 0.29820770025253296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4719546139240265,\n            \"Y\": 0.29820770025253296\n          },\n          {\n            \"X\": 0.5300635099411011,\n            \"Y\": 0.2982374131679535\n          },\n          {\n            \"X\": 0.5300641059875488,\n            \"Y\": 0.3082769811153412\n          },\n          {\n            \"X\": 0.47195497155189514,\n            \"Y\": 0.30824732780456543\n          }\n        ]\n      },\n      \"Id\": \"ab0f1c06-0e02-475b-b930-3baa034068df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"da39dca6-0ee0-4d1e-8dd2-13a5359fc0d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8459701538086,\n      \"Text\": \"Gross Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07325101643800735,\n          \"Height\": 0.012313134036958218,\n          \"Left\": 0.16702543199062347,\n          \"Top\": 0.31260812282562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16702648997306824,\n            \"Y\": 0.31260812282562256\n          },\n          {\n            \"X\": 0.24027644097805023,\n            \"Y\": 0.31264546513557434\n          },\n          {\n            \"X\": 0.24027572572231293,\n            \"Y\": 0.32492125034332275\n          },\n          {\n            \"X\": 0.16702543199062347,\n            \"Y\": 0.32488399744033813\n          }\n        ]\n      },\n      \"Id\": \"8f575d26-ba66-430d-9c9e-e5d6f8d0e97b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9046d057-e39b-4ec8-8f3b-f46c0d113a43\",\n            \"15793dda-51d2-4995-8ee6-8ed6420efdca\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 83.06597137451172,\n      \"Text\": \"$ 452.43\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087379530072212,\n          \"Height\": 0.010658894665539265,\n          \"Left\": 0.3595705032348633,\n          \"Top\": 0.3125160336494446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35957059264183044,\n            \"Y\": 0.3125160336494446\n          },\n          {\n            \"X\": 0.42044416069984436,\n            \"Y\": 0.31254708766937256\n          },\n          {\n            \"X\": 0.4204442799091339,\n            \"Y\": 0.32317495346069336\n          },\n          {\n            \"X\": 0.3595705032348633,\n            \"Y\": 0.32314395904541016\n          }\n        ]\n      },\n      \"Id\": \"a79d05c2-15f7-42b8-9943-802a11fc5f62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eae93dbe-109d-412a-b39e-c107671f581d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82225799560547,\n      \"Text\": \"23,526.80\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0667140781879425,\n          \"Height\": 0.0105618080124259,\n          \"Left\": 0.46298760175704956,\n          \"Top\": 0.31343764066696167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46298760175704956,\n            \"Y\": 0.31343764066696167\n          },\n          {\n            \"X\": 0.5297011137008667,\n            \"Y\": 0.3134716749191284\n          },\n          {\n            \"X\": 0.5297016501426697,\n            \"Y\": 0.32399946451187134\n          },\n          {\n            \"X\": 0.4629879295825958,\n            \"Y\": 0.32396548986434937\n          }\n        ]\n      },\n      \"Id\": \"264ef681-e1c4-4dd4-89e6-bdd3773bd405\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"878cb027-04bf-47e9-a888-14e3ca865857\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54537200927734,\n      \"Text\": \"Vac Hrs\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.057751111686229706,\n          \"Height\": 0.01052361261099577,\n          \"Left\": 0.5758248567581177,\n          \"Top\": 0.31365978717803955\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758248567581177,\n            \"Y\": 0.31365978717803955\n          },\n          {\n            \"X\": 0.633574903011322,\n            \"Y\": 0.3136892318725586\n          },\n          {\n            \"X\": 0.6335759162902832,\n            \"Y\": 0.3241834044456482\n          },\n          {\n            \"X\": 0.5758256316184998,\n            \"Y\": 0.3241540193557739\n          }\n        ]\n      },\n      \"Id\": \"7d20bbe5-7f6b-4894-9753-0825f41c8e51\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"359f3d6d-a052-49c7-9b44-d41640a26b57\",\n            \"6c02d677-8d83-4833-8212-4e63957d4e25\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9650650024414,\n      \"Text\": \"40.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038161877542734146,\n          \"Height\": 0.010520696640014648,\n          \"Left\": 0.904356062412262,\n          \"Top\": 0.31415197253227234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.904356062412262,\n            \"Y\": 0.31415197253227234\n          },\n          {\n            \"X\": 0.9425156712532043,\n            \"Y\": 0.3141714334487915\n          },\n          {\n            \"X\": 0.9425179958343506,\n            \"Y\": 0.324672669172287\n          },\n          {\n            \"X\": 0.9043582081794739,\n            \"Y\": 0.3246532678604126\n          }\n        ]\n      },\n      \"Id\": \"4d4a6fca-7f94-48e9-bf89-7b164b3ac642\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f8e72572-c426-4eb2-badc-ab4f7d0d710a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6441879272461,\n      \"Text\": \"Sick Hrs\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05672655999660492,\n          \"Height\": 0.010479644872248173,\n          \"Left\": 0.5764848589897156,\n          \"Top\": 0.329056054353714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764848589897156,\n            \"Y\": 0.329056054353714\n          },\n          {\n            \"X\": 0.6332103610038757,\n            \"Y\": 0.3290849030017853\n          },\n          {\n            \"X\": 0.6332113742828369,\n            \"Y\": 0.3395357131958008\n          },\n          {\n            \"X\": 0.5764856338500977,\n            \"Y\": 0.33950692415237427\n          }\n        ]\n      },\n      \"Id\": \"e2d14d19-11b5-4f2d-9d64-38bab135d4ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42ac2887-8d88-4bd6-8950-1a50021577f4\",\n            \"416435d6-3e3e-4358-94fa-0e7ad3bb98f8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.833984375,\n      \"Text\": \"16.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03717483952641487,\n          \"Height\": 0.010468751192092896,\n          \"Left\": 0.9054335355758667,\n          \"Top\": 0.3296695649623871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054335355758667,\n            \"Y\": 0.3296695649623871\n          },\n          {\n            \"X\": 0.9426060914993286,\n            \"Y\": 0.3296884596347809\n          },\n          {\n            \"X\": 0.9426083564758301,\n            \"Y\": 0.34013831615448\n          },\n          {\n            \"X\": 0.9054356813430786,\n            \"Y\": 0.34011945128440857\n          }\n        ]\n      },\n      \"Id\": \"ed02ec09-8b0e-4f28-8165-be64a7881387\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2a6a9b39-7d30-4838-b23d-eba8969dc66c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74022674560547,\n      \"Text\": \"Deductions\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09023692458868027,\n          \"Height\": 0.011784988455474377,\n          \"Left\": 0.047912683337926865,\n          \"Top\": 0.34313178062438965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04791424795985222,\n            \"Y\": 0.34313178062438965\n          },\n          {\n            \"X\": 0.13814960420131683,\n            \"Y\": 0.34317752718925476\n          },\n          {\n            \"X\": 0.1381484568119049,\n            \"Y\": 0.3549167513847351\n          },\n          {\n            \"X\": 0.047912683337926865,\n            \"Y\": 0.35487112402915955\n          }\n        ]\n      },\n      \"Id\": \"7b87691d-cac7-4ee8-bf88-235e5e36130c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f0dbe9e9-075f-4c54-b56e-941faf477a22\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80423736572266,\n      \"Text\": \"Statutory\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06641349196434021,\n          \"Height\": 0.01263391226530075,\n          \"Left\": 0.16528518497943878,\n          \"Top\": 0.3442513644695282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16528627276420593,\n            \"Y\": 0.3442513644695282\n          },\n          {\n            \"X\": 0.2316986620426178,\n            \"Y\": 0.3442850112915039\n          },\n          {\n            \"X\": 0.2316979020833969,\n            \"Y\": 0.35688528418540955\n          },\n          {\n            \"X\": 0.16528518497943878,\n            \"Y\": 0.3568516969680786\n          }\n        ]\n      },\n      \"Id\": \"0ccf328b-c06b-40a5-88eb-28bc851417fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47848180-0256-493f-b93a-d60812321f63\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89875793457031,\n      \"Text\": \"Title\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029553616419434547,\n          \"Height\": 0.010047758929431438,\n          \"Left\": 0.5760388970375061,\n          \"Top\": 0.3433203101158142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5760388970375061,\n            \"Y\": 0.3433203101158142\n          },\n          {\n            \"X\": 0.6055916547775269,\n            \"Y\": 0.3433353006839752\n          },\n          {\n            \"X\": 0.6055925488471985,\n            \"Y\": 0.3533680737018585\n          },\n          {\n            \"X\": 0.5760396718978882,\n            \"Y\": 0.3533531129360199\n          }\n        ]\n      },\n      \"Id\": \"6a0d2c36-b0f7-4819-b967-e04d290d9435\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"645e9ba0-5da6-4c63-8389-6c416316d347\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52043151855469,\n      \"Text\": \"Operator\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05878404900431633,\n          \"Height\": 0.012305991724133492,\n          \"Left\": 0.7732459902763367,\n          \"Top\": 0.34344255924224854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7732459902763367,\n            \"Y\": 0.34344255924224854\n          },\n          {\n            \"X\": 0.8320278525352478,\n            \"Y\": 0.34347236156463623\n          },\n          {\n            \"X\": 0.8320299983024597,\n            \"Y\": 0.35574856400489807\n          },\n          {\n            \"X\": 0.7732478380203247,\n            \"Y\": 0.35571882128715515\n          }\n        ]\n      },\n      \"Id\": \"e8059170-bd07-4d09-a7b3-a1c6e83427ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e975c53-1124-47a6-978f-94304d7e9d64\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54546356201172,\n      \"Text\": \"Federal Income Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13092420995235443,\n          \"Height\": 0.010644624009728432,\n          \"Left\": 0.16601119935512543,\n          \"Top\": 0.3594367802143097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16601210832595825,\n            \"Y\": 0.3594367802143097\n          },\n          {\n            \"X\": 0.29693540930747986,\n            \"Y\": 0.3595029413700104\n          },\n          {\n            \"X\": 0.2969350218772888,\n            \"Y\": 0.3700813949108124\n          },\n          {\n            \"X\": 0.16601119935512543,\n            \"Y\": 0.37001538276672363\n          }\n        ]\n      },\n      \"Id\": \"9a7c4646-f2cd-4c06-a9b4-40b9458c4b3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eb8b196a-7bf8-4548-af02-ceb00f3edf1d\",\n            \"3f71e83a-f017-4088-bc54-2041102c49d8\",\n            \"a19eb517-2166-4c1e-a481-bfd73d8f9d4e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.72803497314453,\n      \"Text\": \"-40.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04919637739658356,\n          \"Height\": 0.009934278205037117,\n          \"Left\": 0.37207096815109253,\n          \"Top\": 0.36035916209220886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720710277557373,\n            \"Y\": 0.36035916209220886\n          },\n          {\n            \"X\": 0.42126721143722534,\n            \"Y\": 0.3603840172290802\n          },\n          {\n            \"X\": 0.4212673306465149,\n            \"Y\": 0.37029343843460083\n          },\n          {\n            \"X\": 0.37207096815109253,\n            \"Y\": 0.3702686131000519\n          }\n        ]\n      },\n      \"Id\": \"a18e26ea-08d7-4aeb-b393-142ef57c6fa0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0aee13ab-e8de-4966-b87b-9783c6c083cb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84791564941406,\n      \"Text\": \"2,111.20\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05892305448651314,\n          \"Height\": 0.01003853976726532,\n          \"Left\": 0.47084134817123413,\n          \"Top\": 0.3605228662490845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47084134817123413,\n            \"Y\": 0.3605228662490845\n          },\n          {\n            \"X\": 0.5297638177871704,\n            \"Y\": 0.3605526387691498\n          },\n          {\n            \"X\": 0.5297644138336182,\n            \"Y\": 0.3705613911151886\n          },\n          {\n            \"X\": 0.4708416759967804,\n            \"Y\": 0.37053167819976807\n          }\n        ]\n      },\n      \"Id\": \"69c61c07-216f-4af8-b372-774228c3debe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47b62ed4-1aa0-4183-a329-380fe8ff9ba9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94284057617188,\n      \"Text\": \"Social Security Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12738551199436188,\n          \"Height\": 0.012634352780878544,\n          \"Left\": 0.16579467058181763,\n          \"Top\": 0.3736853003501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16579577326774597,\n            \"Y\": 0.3736853003501892\n          },\n          {\n            \"X\": 0.2931801974773407,\n            \"Y\": 0.3737494945526123\n          },\n          {\n            \"X\": 0.2931797206401825,\n            \"Y\": 0.386319637298584\n          },\n          {\n            \"X\": 0.16579467058181763,\n            \"Y\": 0.3862556219100952\n          }\n        ]\n      },\n      \"Id\": \"6dd7e101-6334-49aa-885f-c502aa41a048\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1cc1e5d4-d150-41ac-a70a-50440d1773a2\",\n            \"474c9066-ec4a-493d-bcfb-fd0759a0020a\",\n            \"385ed2c8-ee76-45b7-9ae1-701654813868\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.64322662353516,\n      \"Text\": \"-28.05\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048776742070913315,\n          \"Height\": 0.009982314892113209,\n          \"Left\": 0.3720327615737915,\n          \"Top\": 0.3746964931488037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720328211784363,\n            \"Y\": 0.3746964931488037\n          },\n          {\n            \"X\": 0.42080938816070557,\n            \"Y\": 0.37472108006477356\n          },\n          {\n            \"X\": 0.4208095073699951,\n            \"Y\": 0.38467881083488464\n          },\n          {\n            \"X\": 0.3720327615737915,\n            \"Y\": 0.38465428352355957\n          }\n        ]\n      },\n      \"Id\": \"fd5fb73b-17c8-49c7-8eb0-8adad1bac317\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f9e2a3a4-f02d-4c19-9966-6a99527065f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.878662109375,\n      \"Text\": \"1,458.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0583278127014637,\n          \"Height\": 0.010592943988740444,\n          \"Left\": 0.4716467261314392,\n          \"Top\": 0.374478280544281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716467261314392,\n            \"Y\": 0.374478280544281\n          },\n          {\n            \"X\": 0.5299739241600037,\n            \"Y\": 0.3745076656341553\n          },\n          {\n            \"X\": 0.5299745202064514,\n            \"Y\": 0.3850712180137634\n          },\n          {\n            \"X\": 0.47164708375930786,\n            \"Y\": 0.38504189252853394\n          }\n        ]\n      },\n      \"Id\": \"0bb4d254-9a3a-4dc5-ab48-292d0bc44241\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e939551-1432-4d30-8fae-aad832a9e7ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9271240234375,\n      \"Text\": \"Medicare Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09063677489757538,\n          \"Height\": 0.010500307194888592,\n          \"Left\": 0.16576078534126282,\n          \"Top\": 0.3891349136829376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16576170921325684,\n            \"Y\": 0.3891349136829376\n          },\n          {\n            \"X\": 0.2563975751399994,\n            \"Y\": 0.389180451631546\n          },\n          {\n            \"X\": 0.2563970386981964,\n            \"Y\": 0.3996352255344391\n          },\n          {\n            \"X\": 0.16576078534126282,\n            \"Y\": 0.39958977699279785\n          }\n        ]\n      },\n      \"Id\": \"71cb3653-43a1-4488-a55a-9f84f58cce29\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62e7c77e-67f8-4eba-9148-f0cf6423d30a\",\n            \"e121b18c-96d2-4864-8f89-ec79eb1710f3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 78.7468490600586,\n      \"Text\": \"-6.56\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04244004189968109,\n          \"Height\": 0.009964492172002792,\n          \"Left\": 0.37839993834495544,\n          \"Top\": 0.3901442885398865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37839996814727783,\n            \"Y\": 0.3901442885398865\n          },\n          {\n            \"X\": 0.4208398461341858,\n            \"Y\": 0.39016562700271606\n          },\n          {\n            \"X\": 0.42083999514579773,\n            \"Y\": 0.40010878443717957\n          },\n          {\n            \"X\": 0.37839993834495544,\n            \"Y\": 0.40008750557899475\n          }\n        ]\n      },\n      \"Id\": \"091112e3-44b4-464c-9575-e6493218f5a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f65ad30e-a8fe-4f61-aacd-32e58b15de80\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8979721069336,\n      \"Text\": \"341.12\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046127788722515106,\n          \"Height\": 0.010035618208348751,\n          \"Left\": 0.48332643508911133,\n          \"Top\": 0.3897542953491211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48332643508911133,\n            \"Y\": 0.3897542953491211\n          },\n          {\n            \"X\": 0.529453694820404,\n            \"Y\": 0.38977745175361633\n          },\n          {\n            \"X\": 0.529454231262207,\n            \"Y\": 0.3997898995876312\n          },\n          {\n            \"X\": 0.48332682251930237,\n            \"Y\": 0.3997667729854584\n          }\n        ]\n      },\n      \"Id\": \"d8606f44-5db8-45a5-9d6f-8630d37f7dfc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"36962072-6514-4d39-96ca-3308a22f7ebf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65757751464844,\n      \"Text\": \"Important Notes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13237833976745605,\n          \"Height\": 0.013642820529639721,\n          \"Left\": 0.5768430829048157,\n          \"Top\": 0.3883585035800934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768430829048157,\n            \"Y\": 0.3883585035800934\n          },\n          {\n            \"X\": 0.7092196941375732,\n            \"Y\": 0.3884250223636627\n          },\n          {\n            \"X\": 0.7092214226722717,\n            \"Y\": 0.4020013213157654\n          },\n          {\n            \"X\": 0.5768440961837769,\n            \"Y\": 0.40193498134613037\n          }\n        ]\n      },\n      \"Id\": \"0268b5ea-f447-4a57-abc0-af26459bf7e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5484fcad-212c-49a8-80d6-887c05979b85\",\n            \"d89f4dc5-0e4c-4f9c-baef-42f65e1eadc5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.1019515991211,\n      \"Text\": \"NY State Income Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14121556282043457,\n          \"Height\": 0.010689537972211838,\n          \"Left\": 0.16564060747623444,\n          \"Top\": 0.4043307602405548\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16564153134822845,\n            \"Y\": 0.4043307602405548\n          },\n          {\n            \"X\": 0.3068561553955078,\n            \"Y\": 0.4044014811515808\n          },\n          {\n            \"X\": 0.30685582756996155,\n            \"Y\": 0.41502028703689575\n          },\n          {\n            \"X\": 0.16564060747623444,\n            \"Y\": 0.4149497151374817\n          }\n        ]\n      },\n      \"Id\": \"1eae4a00-b223-4710-b439-f098247ed76b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9098f2b9-2561-4bf0-a147-d15e844ff296\",\n            \"32101875-06b2-4d70-aae1-27384906ae03\",\n            \"28426bdf-8ff8-429a-bef5-f21ae8ea2a98\",\n            \"ae9c18df-cf34-4b29-ab5a-d2579c64b89f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.22126007080078,\n      \"Text\": \"-8.43\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039588768035173416,\n          \"Height\": 0.01017859298735857,\n          \"Left\": 0.3816371262073517,\n          \"Top\": 0.40510061383247375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816371560096741,\n            \"Y\": 0.40510061383247375\n          },\n          {\n            \"X\": 0.42122575640678406,\n            \"Y\": 0.40512046217918396\n          },\n          {\n            \"X\": 0.421225905418396,\n            \"Y\": 0.41527920961380005\n          },\n          {\n            \"X\": 0.3816371262073517,\n            \"Y\": 0.4152594208717346\n          }\n        ]\n      },\n      \"Id\": \"c9d1e744-e6cc-4f0e-a24d-591491219e29\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"660508ff-42df-4774-b69d-9b471aa0e664\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59510803222656,\n      \"Text\": \"438.36\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04687277972698212,\n          \"Height\": 0.010192235000431538,\n          \"Left\": 0.48327845335006714,\n          \"Top\": 0.40503618121147156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48327845335006714,\n            \"Y\": 0.40503618121147156\n          },\n          {\n            \"X\": 0.5301506519317627,\n            \"Y\": 0.40505966544151306\n          },\n          {\n            \"X\": 0.5301512479782104,\n            \"Y\": 0.4152284264564514\n          },\n          {\n            \"X\": 0.4832788407802582,\n            \"Y\": 0.4152050018310547\n          }\n        ]\n      },\n      \"Id\": \"540afc62-5d18-41d7-ae67-daa4a1b47787\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8fc0ac52-6bec-4672-b405-b9a96107953f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86100769042969,\n      \"Text\": \"EFFECTIVE THIS PAY PERIOD YOUR REGULAR\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2863543927669525,\n          \"Height\": 0.009734034538269043,\n          \"Left\": 0.576397716999054,\n          \"Top\": 0.4064553380012512\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576397716999054,\n            \"Y\": 0.4064553380012512\n          },\n          {\n            \"X\": 0.8627502918243408,\n            \"Y\": 0.4065987169742584\n          },\n          {\n            \"X\": 0.8627520799636841,\n            \"Y\": 0.41618937253952026\n          },\n          {\n            \"X\": 0.5763984322547913,\n            \"Y\": 0.41604626178741455\n          }\n        ]\n      },\n      \"Id\": \"f85027f9-3ae1-441d-b6df-de6bf5386f1b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c30035f-b5f0-44be-bd94-65572e40aa6f\",\n            \"d56c64b0-c41e-452d-b9da-8b21a598ae3e\",\n            \"9e5d00ff-f78e-43fa-8c30-66dbfee81015\",\n            \"a0a94599-3050-4dd9-affd-2d6b082c0e40\",\n            \"1aa5b639-d021-426d-a3b1-22c1acaa56ee\",\n            \"bbf81c1c-a293-4835-8f74-1cc22b066b86\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.23914337158203,\n      \"Text\": \"NYC Income Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11266598105430603,\n          \"Height\": 0.010376174002885818,\n          \"Left\": 0.16557785868644714,\n          \"Top\": 0.419806569814682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16557876765727997,\n            \"Y\": 0.419806569814682\n          },\n          {\n            \"X\": 0.2782438397407532,\n            \"Y\": 0.41986283659935\n          },\n          {\n            \"X\": 0.27824339270591736,\n            \"Y\": 0.4301827549934387\n          },\n          {\n            \"X\": 0.16557785868644714,\n            \"Y\": 0.4301266074180603\n          }\n        ]\n      },\n      \"Id\": \"c748ed3f-b820-4b52-a38a-361aa312a4a7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"12f1f441-d989-4ad3-bf2d-5fd25ad8d9ce\",\n            \"b43caf9c-f6e5-4914-9882-e583d368027a\",\n            \"b4a6048b-fb7f-4677-a712-113e65362f33\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.88884735107422,\n      \"Text\": \"-5.94\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03948596119880676,\n          \"Height\": 0.009952288120985031,\n          \"Left\": 0.3815154433250427,\n          \"Top\": 0.42050880193710327\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3815154731273651,\n            \"Y\": 0.42050880193710327\n          },\n          {\n            \"X\": 0.42100128531455994,\n            \"Y\": 0.4205285310745239\n          },\n          {\n            \"X\": 0.4210014045238495,\n            \"Y\": 0.4304611086845398\n          },\n          {\n            \"X\": 0.3815154433250427,\n            \"Y\": 0.4304414391517639\n          }\n        ]\n      },\n      \"Id\": \"4f7e8d31-27b2-4940-bf4e-9ab1c212bb96\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51f29fbe-0163-4f18-bdcf-68176071b780\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54515075683594,\n      \"Text\": \"308.88\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04655349999666214,\n          \"Height\": 0.009958788752555847,\n          \"Left\": 0.48320090770721436,\n          \"Top\": 0.4206897020339966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48320090770721436,\n            \"Y\": 0.4206897020339966\n          },\n          {\n            \"X\": 0.5297538638114929,\n            \"Y\": 0.420712947845459\n          },\n          {\n            \"X\": 0.5297544002532959,\n            \"Y\": 0.43064847588539124\n          },\n          {\n            \"X\": 0.483201265335083,\n            \"Y\": 0.4306252896785736\n          }\n        ]\n      },\n      \"Id\": \"2f0a2d8d-2be0-4a06-9ae1-b7310ba67231\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"18da768e-9b60-4678-a5e1-601ebc6c380d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84711456298828,\n      \"Text\": \"HOURLY RATE HAS BEEN CHANGED FROM $8.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30472785234451294,\n          \"Height\": 0.010281101800501347,\n          \"Left\": 0.5761998891830444,\n          \"Top\": 0.4227530360221863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5761998891830444,\n            \"Y\": 0.4227530360221863\n          },\n          {\n            \"X\": 0.8809257745742798,\n            \"Y\": 0.4229051172733307\n          },\n          {\n            \"X\": 0.8809277415275574,\n            \"Y\": 0.43303412199020386\n          },\n          {\n            \"X\": 0.5762006640434265,\n            \"Y\": 0.4328823387622833\n          }\n        ]\n      },\n      \"Id\": \"82ab36aa-44b9-4c2d-ab58-866fbac778df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"29d6da6b-e518-4969-8266-b61ef0b319ab\",\n            \"6b7f0b4d-4355-4ac0-a82e-797660123f9a\",\n            \"fed14dcd-b7fa-4cab-98e3-a14e80371e4f\",\n            \"4a5ae622-0e5f-4da3-8cbf-0e0e9f2c43f9\",\n            \"0a29366b-6b28-4c74-ac79-263e03a4df9c\",\n            \"ef00625e-6d08-4ee1-8b35-4640ec89620e\",\n            \"bd8f39f1-f26f-4edf-8fcb-ea52c8c59bc2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.5591049194336,\n      \"Text\": \"NY SUI/SDI Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10613624006509781,\n          \"Height\": 0.01058150827884674,\n          \"Left\": 0.16559144854545593,\n          \"Top\": 0.4350857436656952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16559235751628876,\n            \"Y\": 0.4350857436656952\n          },\n          {\n            \"X\": 0.27172768115997314,\n            \"Y\": 0.4351385831832886\n          },\n          {\n            \"X\": 0.27172720432281494,\n            \"Y\": 0.44566723704338074\n          },\n          {\n            \"X\": 0.16559144854545593,\n            \"Y\": 0.4456145167350769\n          }\n        ]\n      },\n      \"Id\": \"cc3ee7dd-b65d-4da0-99f1-7303faa26550\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"310ff29a-f886-4fbd-ac70-0460cdac4d7d\",\n            \"d06b7ce0-e1ea-4a59-9fcd-c94bc20a5dde\",\n            \"ae5d55af-157b-4197-8cb6-907c497d0519\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.85523223876953,\n      \"Text\": \"-0.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03971990942955017,\n          \"Height\": 0.009622905403375626,\n          \"Left\": 0.3816964030265808,\n          \"Top\": 0.43616586923599243\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.43616586923599243\n          },\n          {\n            \"X\": 0.42141616344451904,\n            \"Y\": 0.43618565797805786\n          },\n          {\n            \"X\": 0.421416312456131,\n            \"Y\": 0.44578877091407776\n          },\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.4457690417766571\n          }\n        ]\n      },\n      \"Id\": \"d9a85222-7984-4509-8b9a-f671dee39a59\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a3b06a2d-e4ab-441b-90cf-91c4d58d3076\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.60066986083984,\n      \"Text\": \"31.20\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03847702220082283,\n          \"Height\": 0.009795776568353176,\n          \"Left\": 0.4915713369846344,\n          \"Top\": 0.4360893666744232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4915713369846344,\n            \"Y\": 0.4360893666744232\n          },\n          {\n            \"X\": 0.5300478339195251,\n            \"Y\": 0.4361085295677185\n          },\n          {\n            \"X\": 0.5300483703613281,\n            \"Y\": 0.44588515162467957\n          },\n          {\n            \"X\": 0.4915717542171478,\n            \"Y\": 0.44586601853370667\n          }\n        ]\n      },\n      \"Id\": \"609b33ad-7a9a-497a-992a-49f0686492c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8f248779-f45a-4511-81cd-ce39c44f1a01\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.13438415527344,\n      \"Text\": \"TO $10.00 PER HOUR\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13700613379478455,\n          \"Height\": 0.009491557255387306,\n          \"Left\": 0.5758348107337952,\n          \"Top\": 0.4396425783634186\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758348107337952,\n            \"Y\": 0.4396425783634186\n          },\n          {\n            \"X\": 0.7128397226333618,\n            \"Y\": 0.43971073627471924\n          },\n          {\n            \"X\": 0.7128409743309021,\n            \"Y\": 0.44913414120674133\n          },\n          {\n            \"X\": 0.5758355259895325,\n            \"Y\": 0.4490661025047302\n          }\n        ]\n      },\n      \"Id\": \"cf6d4610-b04a-423d-afe6-bb8660589b40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef384df2-3d15-446e-a914-a748c3d463f7\",\n            \"5ea211de-c006-499c-b0c6-343b2decc6fb\",\n            \"393df23d-9ebe-437f-a4ca-3a567ee793ee\",\n            \"9a88a51a-2aa9-4b09-8817-89651f2018cc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 32.72475051879883,\n      \"Text\": \"&\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009392748586833477,\n          \"Height\": 0.012527450919151306,\n          \"Left\": 0.9785712957382202,\n          \"Top\": 0.44773444533348083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9785712957382202,\n            \"Y\": 0.44773444533348083\n          },\n          {\n            \"X\": 0.9879610538482666,\n            \"Y\": 0.4477391242980957\n          },\n          {\n            \"X\": 0.9879640340805054,\n            \"Y\": 0.46026191115379333\n          },\n          {\n            \"X\": 0.9785742163658142,\n            \"Y\": 0.46025723218917847\n          }\n        ]\n      },\n      \"Id\": \"8d9f24cd-ca61-45db-a0f4-8b5245380d33\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5c9b3e41-ef10-404c-9009-15756cbb1db7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92845153808594,\n      \"Text\": \"Other\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04166742041707039,\n          \"Height\": 0.010379514656960964,\n          \"Left\": 0.16534243524074554,\n          \"Top\": 0.4571443796157837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534334421157837,\n            \"Y\": 0.4571443796157837\n          },\n          {\n            \"X\": 0.20700985193252563,\n            \"Y\": 0.45716503262519836\n          },\n          {\n            \"X\": 0.20700912177562714,\n            \"Y\": 0.4675239026546478\n          },\n          {\n            \"X\": 0.16534243524074554,\n            \"Y\": 0.46750327944755554\n          }\n        ]\n      },\n      \"Id\": \"5685e5ee-0dbc-4d16-a057-6c67412ace12\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6957a98a-8103-43f9-9ad5-257886f65191\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93050384521484,\n      \"Text\": \"Bond\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03663105517625809,\n          \"Height\": 0.010264110751450062,\n          \"Left\": 0.16576214134693146,\n          \"Top\": 0.47256383299827576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657630354166031,\n            \"Y\": 0.47256383299827576\n          },\n          {\n            \"X\": 0.20239320397377014,\n            \"Y\": 0.4725819230079651\n          },\n          {\n            \"X\": 0.20239245891571045,\n            \"Y\": 0.48282793164253235\n          },\n          {\n            \"X\": 0.16576214134693146,\n            \"Y\": 0.4828098714351654\n          }\n        ]\n      },\n      \"Id\": \"f4b016f4-c4a5-492b-8345-e3c696219a97\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32abfca3-cc4b-4229-a00a-6b3922ed3ae7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 85.17346954345703,\n      \"Text\": \"-5.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04021134972572327,\n          \"Height\": 0.009741549380123615,\n          \"Left\": 0.3806985914707184,\n          \"Top\": 0.47330498695373535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38069862127304077,\n            \"Y\": 0.47330498695373535\n          },\n          {\n            \"X\": 0.4209098219871521,\n            \"Y\": 0.47332486510276794\n          },\n          {\n            \"X\": 0.42090994119644165,\n            \"Y\": 0.4830465316772461\n          },\n          {\n            \"X\": 0.3806985914707184,\n            \"Y\": 0.4830267131328583\n          }\n        ]\n      },\n      \"Id\": \"6e68a7af-77cd-49e5-9c2d-101b2c490281\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c3875805-9a0d-42d0-86ad-57dc995fac7f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.50401306152344,\n      \"Text\": \"100.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04519687965512276,\n          \"Height\": 0.00982965249568224,\n          \"Left\": 0.48456546664237976,\n          \"Top\": 0.4732814431190491\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48456546664237976,\n            \"Y\": 0.4732814431190491\n          },\n          {\n            \"X\": 0.529761791229248,\n            \"Y\": 0.47330376505851746\n          },\n          {\n            \"X\": 0.529762327671051,\n            \"Y\": 0.48311108350753784\n          },\n          {\n            \"X\": 0.4845658242702484,\n            \"Y\": 0.48308882117271423\n          }\n        ]\n      },\n      \"Id\": \"ecfe7f76-7206-4e8d-a1f9-fad3995060aa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d9f37f5c-f41f-4f26-aa4c-f2f9adb20f0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82745361328125,\n      \"Text\": \"WE WILL BE STARTING OUR UNITED WAY FUND\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2979136109352112,\n          \"Height\": 0.010192508809268475,\n          \"Left\": 0.575558602809906,\n          \"Top\": 0.4721502363681793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.575558602809906,\n            \"Y\": 0.4721502363681793\n          },\n          {\n            \"X\": 0.8734702467918396,\n            \"Y\": 0.4722974896430969\n          },\n          {\n            \"X\": 0.8734722137451172,\n            \"Y\": 0.48234274983406067\n          },\n          {\n            \"X\": 0.5755593180656433,\n            \"Y\": 0.48219579458236694\n          }\n        ]\n      },\n      \"Id\": \"29476913-c5c0-4042-8919-8753c9bb270d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e260d491-ddc6-4a9d-8fae-1ee23741e634\",\n            \"1e9eeb6a-f2ba-451d-9a11-156bd3646959\",\n            \"dd0ae71d-1551-4c01-a5c8-53b23de21011\",\n            \"788a2f60-2cb7-4536-9194-ebbbeb5890f8\",\n            \"3c7b86dc-da8b-43f6-9493-7d6a437e1332\",\n            \"8c22b54f-0be0-45ab-bbe3-07e9fca60d55\",\n            \"202b9f25-1839-4cdb-83fc-847059568bcb\",\n            \"03741d98-dc29-44f3-9697-f3026032690b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 20.746511459350586,\n      \"Text\": \"PDP\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011251576244831085,\n          \"Height\": 0.015544673427939415,\n          \"Left\": 0.9762770533561707,\n          \"Top\": 0.4635232090950012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9762770533561707,\n            \"Y\": 0.4635232090950012\n          },\n          {\n            \"X\": 0.9875249266624451,\n            \"Y\": 0.4635287821292877\n          },\n          {\n            \"X\": 0.9875286221504211,\n            \"Y\": 0.479067862033844\n          },\n          {\n            \"X\": 0.976280689239502,\n            \"Y\": 0.4790623188018799\n          }\n        ]\n      },\n      \"Id\": \"eac273af-8047-459c-9aef-d6fb04e950fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"efa0189d-fecf-49e7-b6fc-a4c5dc50b7c6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.72502136230469,\n      \"Text\": \"401(k)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04080589860677719,\n          \"Height\": 0.011710687540471554,\n          \"Left\": 0.1653653085231781,\n          \"Top\": 0.4880644679069519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16536633670330048,\n            \"Y\": 0.4880644679069519\n          },\n          {\n            \"X\": 0.2061712145805359,\n            \"Y\": 0.4880845844745636\n          },\n          {\n            \"X\": 0.20617038011550903,\n            \"Y\": 0.4997751712799072\n          },\n          {\n            \"X\": 0.1653653085231781,\n            \"Y\": 0.4997551143169403\n          }\n        ]\n      },\n      \"Id\": \"26e25dc7-6e39-4b0e-8667-dcea4ada27c9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84b18b36-a59a-4d5e-8a91-5407a4ec9b75\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 55.95808029174805,\n      \"Text\": \"-28.85*\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05343848466873169,\n          \"Height\": 0.009626035578548908,\n          \"Left\": 0.3734176754951477,\n          \"Top\": 0.48896968364715576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3734177052974701,\n            \"Y\": 0.48896968364715576\n          },\n          {\n            \"X\": 0.42685598134994507,\n            \"Y\": 0.4889959990978241\n          },\n          {\n            \"X\": 0.4268561601638794,\n            \"Y\": 0.4985957145690918\n          },\n          {\n            \"X\": 0.3734176754951477,\n            \"Y\": 0.49856942892074585\n          }\n        ]\n      },\n      \"Id\": \"1ddb1c76-3f4f-4d0f-b708-f8628f3d9f88\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"28b62964-430b-4cfa-ab6d-c7fff628c158\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.917724609375,\n      \"Text\": \"1,500.20\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05830708518624306,\n          \"Height\": 0.010335884988307953,\n          \"Left\": 0.4716174304485321,\n          \"Top\": 0.48859354853630066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716174304485321,\n            \"Y\": 0.48859354853630066\n          },\n          {\n            \"X\": 0.5299239158630371,\n            \"Y\": 0.4886222779750824\n          },\n          {\n            \"X\": 0.5299245119094849,\n            \"Y\": 0.4989294409751892\n          },\n          {\n            \"X\": 0.47161775827407837,\n            \"Y\": 0.49890077114105225\n          }\n        ]\n      },\n      \"Id\": \"03ce38e7-bf71-4184-8173-cf67dc48cb09\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"88d81e47-261a-4ed7-9805-b7431d7c87d0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90685272216797,\n      \"Text\": \"DRIVE SOON AND LOOK FORWARD TO YOUR\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28093212842941284,\n          \"Height\": 0.009782819077372551,\n          \"Left\": 0.576322078704834,\n          \"Top\": 0.48865917325019836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576322078704834,\n            \"Y\": 0.48865917325019836\n          },\n          {\n            \"X\": 0.8572524189949036,\n            \"Y\": 0.4887975752353668\n          },\n          {\n            \"X\": 0.8572542071342468,\n            \"Y\": 0.49844199419021606\n          },\n          {\n            \"X\": 0.5763227939605713,\n            \"Y\": 0.4983038902282715\n          }\n        ]\n      },\n      \"Id\": \"bfadbcba-2c66-4731-b8cf-3ffceae99f0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d4333bf3-98f9-48d6-b12c-a80e6be967b4\",\n            \"b6c6fdd3-b73a-47d5-8255-a0c039ac48b4\",\n            \"f873564e-0a00-456d-9687-2f208aecc7fa\",\n            \"b633cd5c-3101-4eb1-91f9-658b528abc63\",\n            \"52bb55c1-0759-43a6-9d64-d893a8149e0e\",\n            \"a44988d0-cea0-4e2c-893c-ec509b132ac8\",\n            \"56db26eb-b94d-47d8-9048-ef366548f22b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 20.658769607543945,\n      \"Text\": \"8000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01206609234213829,\n          \"Height\": 0.01607183739542961,\n          \"Left\": 0.9756705164909363,\n          \"Top\": 0.4813154935836792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9756705164909363,\n            \"Y\": 0.4813154935836792\n          },\n          {\n            \"X\": 0.9877328276634216,\n            \"Y\": 0.48132142424583435\n          },\n          {\n            \"X\": 0.9877365827560425,\n            \"Y\": 0.4973873198032379\n          },\n          {\n            \"X\": 0.9756742715835571,\n            \"Y\": 0.49738138914108276\n          }\n        ]\n      },\n      \"Id\": \"33d808bf-97a0-4d56-beb7-cb4536887b09\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5f2e19cf-b8c0-42db-becf-8319e3a21680\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82644653320312,\n      \"Text\": \"Stock Plan\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0718761757016182,\n          \"Height\": 0.01048008818179369,\n          \"Left\": 0.16561101377010345,\n          \"Top\": 0.5030400156974792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16561192274093628,\n            \"Y\": 0.5030400156974792\n          },\n          {\n            \"X\": 0.23748718202114105,\n            \"Y\": 0.5030753016471863\n          },\n          {\n            \"X\": 0.2374865710735321,\n            \"Y\": 0.5135201215744019\n          },\n          {\n            \"X\": 0.16561101377010345,\n            \"Y\": 0.5134848952293396\n          }\n        ]\n      },\n      \"Id\": \"10631188-5620-435c-bc83-d4a81143271b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a147593b-9806-43c3-a6d3-c2cba5271340\",\n            \"2235bea1-8c99-4ad1-aee4-6d3551fe70de\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.43785858154297,\n      \"Text\": \"-15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04389195889234543,\n          \"Height\": 0.009818912483751774,\n          \"Left\": 0.3776674270629883,\n          \"Top\": 0.5039076805114746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37766745686531067,\n            \"Y\": 0.5039076805114746\n          },\n          {\n            \"X\": 0.42155924439430237,\n            \"Y\": 0.5039291977882385\n          },\n          {\n            \"X\": 0.4215593636035919,\n            \"Y\": 0.5137265920639038\n          },\n          {\n            \"X\": 0.3776674270629883,\n            \"Y\": 0.5137050747871399\n          }\n        ]\n      },\n      \"Id\": \"afa2e199-6d21-4262-8b8c-0b5106d555fb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"92cec4cc-d709-4acd-bf86-6780587f8810\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70083618164062,\n      \"Text\": \"150.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045238297432661057,\n          \"Height\": 0.009857072494924068,\n          \"Left\": 0.4847920835018158,\n          \"Top\": 0.5039575099945068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4847920835018158,\n            \"Y\": 0.5039575099945068\n          },\n          {\n            \"X\": 0.530029833316803,\n            \"Y\": 0.5039797425270081\n          },\n          {\n            \"X\": 0.530030369758606,\n            \"Y\": 0.5138146281242371\n          },\n          {\n            \"X\": 0.48479247093200684,\n            \"Y\": 0.5137924551963806\n          }\n        ]\n      },\n      \"Id\": \"ddd7bf59-5961-4a7c-8070-e4268e3c783c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"22a7df8a-52b6-45ba-9906-0bb9f7999653\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 81.60974884033203,\n      \"Text\": \"PARTICIPATION\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10165880620479584,\n          \"Height\": 0.009729065001010895,\n          \"Left\": 0.5767770409584045,\n          \"Top\": 0.5050473213195801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767770409584045,\n            \"Y\": 0.5050473213195801\n          },\n          {\n            \"X\": 0.6784347295761108,\n            \"Y\": 0.5050972104072571\n          },\n          {\n            \"X\": 0.6784358620643616,\n            \"Y\": 0.5147764086723328\n          },\n          {\n            \"X\": 0.5767777562141418,\n            \"Y\": 0.5147265791893005\n          }\n        ]\n      },\n      \"Id\": \"a5451587-7bbd-43c7-b6a0-2bdc2433f973\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7a347baf-8dce-4640-8be8-f9ff9a8a40c1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 72.43475341796875,\n      \"Text\": \"2000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009551375173032284,\n          \"Height\": 0.020518435165286064,\n          \"Left\": 0.9777013063430786,\n          \"Top\": 0.5007089972496033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777013063430786,\n            \"Y\": 0.5007089972496033\n          },\n          {\n            \"X\": 0.987247884273529,\n            \"Y\": 0.5007137060165405\n          },\n          {\n            \"X\": 0.9872527122497559,\n            \"Y\": 0.5212274789810181\n          },\n          {\n            \"X\": 0.9777061343193054,\n            \"Y\": 0.5212227702140808\n          }\n        ]\n      },\n      \"Id\": \"1f0a459f-6c1d-4f67-96d8-0e6b25c38411\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c4ee6ceb-001a-40e8-8fa1-e7316f03343c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.66083526611328,\n      \"Text\": \"Life Insurance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09358707070350647,\n          \"Height\": 0.010449059307575226,\n          \"Left\": 0.16534756124019623,\n          \"Top\": 0.5186297297477722\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534847021102905,\n            \"Y\": 0.5186297297477722\n          },\n          {\n            \"X\": 0.2589346170425415,\n            \"Y\": 0.5186755657196045\n          },\n          {\n            \"X\": 0.2589341104030609,\n            \"Y\": 0.5290787816047668\n          },\n          {\n            \"X\": 0.16534756124019623,\n            \"Y\": 0.5290330648422241\n          }\n        ]\n      },\n      \"Id\": \"9e89b823-69f1-416e-9a58-112461388d80\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d2f367e1-33e1-4c0e-9864-ce9e0ed64b92\",\n            \"94fe9fff-14dc-4316-ab4d-bd24f97d39fc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 85.11956024169922,\n      \"Text\": \"-5.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040407564491033554,\n          \"Height\": 0.009700830094516277,\n          \"Left\": 0.3808732032775879,\n          \"Top\": 0.519393801689148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.519393801689148\n          },\n          {\n            \"X\": 0.4212806224822998,\n            \"Y\": 0.5194135904312134\n          },\n          {\n            \"X\": 0.42128074169158936,\n            \"Y\": 0.5290946364402771\n          },\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.5290749073028564\n          }\n        ]\n      },\n      \"Id\": \"240a74fe-0eca-4a3f-89f4-8eb8ea27990c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67340234-c0ff-401f-9b26-e12ffb06d6fe\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5484619140625,\n      \"Text\": \"50.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03804484009742737,\n          \"Height\": 0.009686019271612167,\n          \"Left\": 0.49207040667533875,\n          \"Top\": 0.5194575786590576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49207040667533875,\n            \"Y\": 0.5194575786590576\n          },\n          {\n            \"X\": 0.5301147103309631,\n            \"Y\": 0.5194761753082275\n          },\n          {\n            \"X\": 0.5301152467727661,\n            \"Y\": 0.5291435718536377\n          },\n          {\n            \"X\": 0.4920707941055298,\n            \"Y\": 0.5291249752044678\n          }\n        ]\n      },\n      \"Id\": \"30a796c2-b01f-4a35-b5b3-cdf9966e3625\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"58c031e5-5f8f-4c18-9ba5-4788fe7ae4aa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98017883300781,\n      \"Text\": \"Loan\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033557310700416565,\n          \"Height\": 0.010077397339046001,\n          \"Left\": 0.16546224057674408,\n          \"Top\": 0.5340374112129211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16546311974525452,\n            \"Y\": 0.5340374112129211\n          },\n          {\n            \"X\": 0.19901955127716064,\n            \"Y\": 0.5340538024902344\n          },\n          {\n            \"X\": 0.19901880621910095,\n            \"Y\": 0.5441148281097412\n          },\n          {\n            \"X\": 0.16546224057674408,\n            \"Y\": 0.5440984964370728\n          }\n        ]\n      },\n      \"Id\": \"901d2d24-e77c-47d1-be1a-372e2db4eb7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a0fd8ce3-a5eb-481c-b250-d0f0fb807cd3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 49.552772521972656,\n      \"Text\": \"2001\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009131364524364471,\n          \"Height\": 0.01764838956296444,\n          \"Left\": 0.9777453541755676,\n          \"Top\": 0.5230948328971863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777453541755676,\n            \"Y\": 0.5230948328971863\n          },\n          {\n            \"X\": 0.9868725538253784,\n            \"Y\": 0.5230993032455444\n          },\n          {\n            \"X\": 0.9868767261505127,\n            \"Y\": 0.5407432317733765\n          },\n          {\n            \"X\": 0.9777494668960571,\n            \"Y\": 0.5407388210296631\n          }\n        ]\n      },\n      \"Id\": \"336c849a-af91-4726-8e4f-60bc193d0d30\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a993484-f268-4adc-88ff-ac51cb1a1f2a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 70.24380493164062,\n      \"Text\": \"-30.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04858388379216194,\n          \"Height\": 0.009743551723659039,\n          \"Left\": 0.3726392686367035,\n          \"Top\": 0.534624457359314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37263932824134827,\n            \"Y\": 0.534624457359314\n          },\n          {\n            \"X\": 0.4212230145931244,\n            \"Y\": 0.5346481800079346\n          },\n          {\n            \"X\": 0.42122316360473633,\n            \"Y\": 0.5443680286407471\n          },\n          {\n            \"X\": 0.3726392686367035,\n            \"Y\": 0.5443443655967712\n          }\n        ]\n      },\n      \"Id\": \"e34e1a94-be22-49f1-b166-ffc258696599\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0053565b-9761-4cdb-959c-6a7c6eeda831\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.50465393066406,\n      \"Text\": \"150.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045781053602695465,\n          \"Height\": 0.009885708801448345,\n          \"Left\": 0.4842190742492676,\n          \"Top\": 0.5347295999526978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4842190742492676,\n            \"Y\": 0.5347295999526978\n          },\n          {\n            \"X\": 0.5299995541572571,\n            \"Y\": 0.5347519516944885\n          },\n          {\n            \"X\": 0.5300001502037048,\n            \"Y\": 0.5446153283119202\n          },\n          {\n            \"X\": 0.4842194616794586,\n            \"Y\": 0.5445930361747742\n          }\n        ]\n      },\n      \"Id\": \"42cf91d5-8b0c-42a6-bb78-7bdd085a2ae4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e3f98d5b-6d90-4d4e-b902-4477c01b0926\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92391967773438,\n      \"Text\": \"Adjustment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08251450955867767,\n          \"Height\": 0.012692177668213844,\n          \"Left\": 0.1650719940662384,\n          \"Top\": 0.5555633902549744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16507309675216675,\n            \"Y\": 0.5555633902549744\n          },\n          {\n            \"X\": 0.24758650362491608,\n            \"Y\": 0.5556034445762634\n          },\n          {\n            \"X\": 0.24758580327033997,\n            \"Y\": 0.5682555437088013\n          },\n          {\n            \"X\": 0.1650719940662384,\n            \"Y\": 0.568215548992157\n          }\n        ]\n      },\n      \"Id\": \"c95163a5-f31c-42db-a55c-c1ffc26ce085\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"745981c1-84ae-4e67-a859-140bbda4549c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 19.263839721679688,\n      \"Text\": \"00000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009525571949779987,\n          \"Height\": 0.023477010428905487,\n          \"Left\": 0.9778505563735962,\n          \"Top\": 0.5443591475486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9778505563735962,\n            \"Y\": 0.5443591475486755\n          },\n          {\n            \"X\": 0.9873705506324768,\n            \"Y\": 0.5443637371063232\n          },\n          {\n            \"X\": 0.9873760938644409,\n            \"Y\": 0.5678361654281616\n          },\n          {\n            \"X\": 0.9778560400009155,\n            \"Y\": 0.5678315162658691\n          }\n        ]\n      },\n      \"Id\": \"2512b71b-12d4-4059-bc24-44aa813bc258\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0ee1a745-9ad3-43ba-b1f8-b7407d1e8ce5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.41851043701172,\n      \"Text\": \"Life Insurance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09293319284915924,\n          \"Height\": 0.010524203069508076,\n          \"Left\": 0.16571971774101257,\n          \"Top\": 0.5709601044654846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657206416130066,\n            \"Y\": 0.5709601044654846\n          },\n          {\n            \"X\": 0.258652925491333,\n            \"Y\": 0.5710051655769348\n          },\n          {\n            \"X\": 0.25865238904953003,\n            \"Y\": 0.581484317779541\n          },\n          {\n            \"X\": 0.16571971774101257,\n            \"Y\": 0.5814394354820251\n          }\n        ]\n      },\n      \"Id\": \"bd6fc1b9-f246-456d-8c19-2a135f768588\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f3154a2b-b52c-4496-bf90-0aa6e42c1ea6\",\n            \"f1671341-bf20-47d5-809a-35fe55cd5929\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 50.21247100830078,\n      \"Text\": \"+ 13.50\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049284689128398895,\n          \"Height\": 0.01033841073513031,\n          \"Left\": 0.3715052306652069,\n          \"Top\": 0.5710830688476562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3715052902698517,\n            \"Y\": 0.5710830688476562\n          },\n          {\n            \"X\": 0.42078977823257446,\n            \"Y\": 0.5711069107055664\n          },\n          {\n            \"X\": 0.420789897441864,\n            \"Y\": 0.581421434879303\n          },\n          {\n            \"X\": 0.3715052306652069,\n            \"Y\": 0.5813976526260376\n          }\n        ]\n      },\n      \"Id\": \"80d3f411-308d-4431-80cf-ee6c3327a14c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3868275e-9e19-4b33-8067-26216338de31\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6935043334961,\n      \"Text\": \"Net Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056822843849658966,\n          \"Height\": 0.012562345713376999,\n          \"Left\": 0.16664579510688782,\n          \"Top\": 0.5937259793281555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16664688289165497,\n            \"Y\": 0.5937259793281555\n          },\n          {\n            \"X\": 0.22346864640712738,\n            \"Y\": 0.5937533378601074\n          },\n          {\n            \"X\": 0.2234678417444229,\n            \"Y\": 0.6062883138656616\n          },\n          {\n            \"X\": 0.16664579510688782,\n            \"Y\": 0.6062609553337097\n          }\n        ]\n      },\n      \"Id\": \"bcfc6979-fcd8-4667-9b40-165ccc108453\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ec0612e9-fb61-4ba2-8241-9c70d457d3bb\",\n            \"311d5ffb-bb9a-4fee-855b-227840e23af8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.27107238769531,\n      \"Text\": \"$291.90\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059976059943437576,\n          \"Height\": 0.010888412594795227,\n          \"Left\": 0.36117327213287354,\n          \"Top\": 0.5935595631599426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3611733913421631,\n            \"Y\": 0.5935595631599426\n          },\n          {\n            \"X\": 0.42114919424057007,\n            \"Y\": 0.5935884714126587\n          },\n          {\n            \"X\": 0.421149343252182,\n            \"Y\": 0.6044479608535767\n          },\n          {\n            \"X\": 0.36117327213287354,\n            \"Y\": 0.6044191122055054\n          }\n        ]\n      },\n      \"Id\": \"ecb33a00-11ef-4f63-8313-2e39e171fbe0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1784c1fe-9099-4a69-8e4a-d186fee83049\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.43260192871094,\n      \"Text\": \"Excluded from federal taxable wages\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28239428997039795,\n          \"Height\": 0.013086359016597271,\n          \"Left\": 0.17361393570899963,\n          \"Top\": 0.6250417828559875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17361502349376678,\n            \"Y\": 0.6250417828559875\n          },\n          {\n            \"X\": 0.45600786805152893,\n            \"Y\": 0.6251770853996277\n          },\n          {\n            \"X\": 0.4560082256793976,\n            \"Y\": 0.6381281614303589\n          },\n          {\n            \"X\": 0.17361393570899963,\n            \"Y\": 0.6379932165145874\n          }\n        ]\n      },\n      \"Id\": \"e5a43107-7850-43be-a319-17c9caa52f82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1eda4157-0cd0-4276-ab0b-eb014465534e\",\n            \"92bacfec-50f9-4fe2-9ded-418ce015fbaf\",\n            \"346117d5-99b2-45fb-b084-6e3c931c303e\",\n            \"88f4b172-ae5a-4fce-99e1-a91930bafadd\",\n            \"00f6f2e5-3e28-47cd-8154-29655fd1058b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81452941894531,\n      \"Text\": \"Your federal wages this period are $386.15\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30866745114326477,\n          \"Height\": 0.01362847350537777,\n          \"Left\": 0.17867182195186615,\n          \"Top\": 0.656588077545166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786729246377945,\n            \"Y\": 0.656588077545166\n          },\n          {\n            \"X\": 0.48733875155448914,\n            \"Y\": 0.6567350029945374\n          },\n          {\n            \"X\": 0.4873392879962921,\n            \"Y\": 0.6702165603637695\n          },\n          {\n            \"X\": 0.17867182195186615,\n            \"Y\": 0.6700700521469116\n          }\n        ]\n      },\n      \"Id\": \"3a3398ba-0db4-4baa-be2f-7b9780f2cba8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"562e01fb-b19c-411a-ae82-9f126855c3e6\",\n            \"ef576862-a59d-4664-8d0c-c2831ece716b\",\n            \"992b9de3-4418-4e13-91db-cfec3bcdd927\",\n            \"98953928-59b2-4fe6-b9da-77110427aa6a\",\n            \"f45401ba-712c-4148-9809-a40200de41a6\",\n            \"fab1b8b6-d311-4090-83b0-124d2b092359\",\n            \"070f85a9-f5b6-42f9-bd14-4c6735260157\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 39.01307678222656,\n      \"Text\": \"ESTS8E103\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15482279658317566,\n          \"Height\": 0.01946660876274109,\n          \"Left\": 0.7813716530799866,\n          \"Top\": 0.7087773084640503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7813716530799866,\n            \"Y\": 0.7087773084640503\n          },\n          {\n            \"X\": 0.9361902475357056,\n            \"Y\": 0.7088501453399658\n          },\n          {\n            \"X\": 0.9361944198608398,\n            \"Y\": 0.728243887424469\n          },\n          {\n            \"X\": 0.7813746333122253,\n            \"Y\": 0.7281712889671326\n          }\n        ]\n      },\n      \"Id\": \"97e1d70f-74ae-4e28-a9a7-a5e664d46fd2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f5e9138-1788-4884-a683-7e7e98ace662\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.56800842285156,\n      \"Text\": \"ANY COMPANY CORP.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1464475691318512,\n          \"Height\": 0.01069613266736269,\n          \"Left\": 0.1556549072265625,\n          \"Top\": 0.7286847233772278\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1556558758020401,\n            \"Y\": 0.7286847233772278\n          },\n          {\n            \"X\": 0.3021024763584137,\n            \"Y\": 0.728753387928009\n          },\n          {\n            \"X\": 0.30210211873054504,\n            \"Y\": 0.7393808960914612\n          },\n          {\n            \"X\": 0.1556549072265625,\n            \"Y\": 0.7393123507499695\n          }\n        ]\n      },\n      \"Id\": \"f63299d2-3248-411f-ad3a-f34b38180089\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f62371f2-30c8-4d14-b994-4fc1165c3b30\",\n            \"db4fe486-5b4b-4d3e-b943-811221b3ddd1\",\n            \"794adfe5-d172-4904-9d1c-1cabf6dbce1a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.37149810791016,\n      \"Text\": \"Payroll check number: 0000000000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26348546147346497,\n          \"Height\": 0.01319978293031454,\n          \"Left\": 0.576890230178833,\n          \"Top\": 0.7281169295310974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576890230178833,\n            \"Y\": 0.7281169295310974\n          },\n          {\n            \"X\": 0.8403733968734741,\n            \"Y\": 0.728240430355072\n          },\n          {\n            \"X\": 0.8403757214546204,\n            \"Y\": 0.7413166761398315\n          },\n          {\n            \"X\": 0.5768912434577942,\n            \"Y\": 0.7411934733390808\n          }\n        ]\n      },\n      \"Id\": \"16729e33-ffce-42af-a783-3dacf09254f3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"078a88c4-eede-437d-acfc-e96a1d87d7a8\",\n            \"9dc4ea8f-ffe2-49fe-b530-8d1e23c54305\",\n            \"a4896b54-5703-4471-b23c-bc00dd930555\",\n            \"d61649b6-fc85-4cb1-803d-332681328e5c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9583969116211,\n      \"Text\": \"475 ANY AVENUE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13187545537948608,\n          \"Height\": 0.01040145568549633,\n          \"Left\": 0.15589039027690887,\n          \"Top\": 0.7452518343925476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1558913290500641,\n            \"Y\": 0.7452518343925476\n          },\n          {\n            \"X\": 0.28776586055755615,\n            \"Y\": 0.7453134655952454\n          },\n          {\n            \"X\": 0.2877654433250427,\n            \"Y\": 0.7556533217430115\n          },\n          {\n            \"X\": 0.15589039027690887,\n            \"Y\": 0.755591869354248\n          }\n        ]\n      },\n      \"Id\": \"629127ef-f1e8-428e-b9ea-3b0fb9307692\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"06b6ac0a-de18-4b8d-b9c7-50466694e91c\",\n            \"18a82167-a8d2-4c48-ac52-855ae463ef30\",\n            \"965363b2-1b28-4e3c-8b29-4a4f7289e2cb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.94738006591797,\n      \"Text\": \"Pay date:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06635254621505737,\n          \"Height\": 0.012356774881482124,\n          \"Left\": 0.577531635761261,\n          \"Top\": 0.7436504364013672\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.577531635761261,\n            \"Y\": 0.7436504364013672\n          },\n          {\n            \"X\": 0.6438829302787781,\n            \"Y\": 0.7436814308166504\n          },\n          {\n            \"X\": 0.6438841819763184,\n            \"Y\": 0.756007194519043\n          },\n          {\n            \"X\": 0.5775325894355774,\n            \"Y\": 0.7559762597084045\n          }\n        ]\n      },\n      \"Id\": \"39c2a7b1-5509-4559-bad6-57ab923cd0df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62cf8911-d6fc-4501-aa6e-7a96b550dc41\",\n            \"6828635e-9b46-494a-9b36-a6437164d1a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83737182617188,\n      \"Text\": \"7/25/2008\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06732150167226791,\n          \"Height\": 0.010527209378778934,\n          \"Left\": 0.7587701082229614,\n          \"Top\": 0.7437589168548584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7587701082229614,\n            \"Y\": 0.7437589168548584\n          },\n          {\n            \"X\": 0.8260897994041443,\n            \"Y\": 0.7437903881072998\n          },\n          {\n            \"X\": 0.8260916471481323,\n            \"Y\": 0.7542861700057983\n          },\n          {\n            \"X\": 0.7587716579437256,\n            \"Y\": 0.7542547583580017\n          }\n        ]\n      },\n      \"Id\": \"3db6c475-e7aa-4d9c-b4c7-b766b9f9c36b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a5f775c-2d0a-4e3f-8eef-fc75a847254f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.1014404296875,\n      \"Text\": \"ANYTOWN USA 10101\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15301087498664856,\n          \"Height\": 0.010760429315268993,\n          \"Left\": 0.15558114647865295,\n          \"Top\": 0.7599571347236633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15558211505413055,\n            \"Y\": 0.7599571347236633\n          },\n          {\n            \"X\": 0.3085920214653015,\n            \"Y\": 0.7600284218788147\n          },\n          {\n            \"X\": 0.30859169363975525,\n            \"Y\": 0.7707175612449646\n          },\n          {\n            \"X\": 0.15558114647865295,\n            \"Y\": 0.7706465125083923\n          }\n        ]\n      },\n      \"Id\": \"cec9d01f-6ad4-4c8e-b6ee-b9d533d2dabb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"36c18e03-9180-4382-9b4b-fdf2cb21fe8e\",\n            \"2c0075c5-d1cb-4296-bf93-9c768ba0c7ee\",\n            \"e5738194-53fd-457d-9443-8f369e0f9c5d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90554809570312,\n      \"Text\": \"Social Security No.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1332491785287857,\n          \"Height\": 0.012657275423407555,\n          \"Left\": 0.5769157409667969,\n          \"Top\": 0.7588292360305786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5769157409667969,\n            \"Y\": 0.7588292360305786\n          },\n          {\n            \"X\": 0.7101633548736572,\n            \"Y\": 0.7588912844657898\n          },\n          {\n            \"X\": 0.7101649045944214,\n            \"Y\": 0.7714865207672119\n          },\n          {\n            \"X\": 0.5769166946411133,\n            \"Y\": 0.7714245915412903\n          }\n        ]\n      },\n      \"Id\": \"6dc9ad62-a35b-4951-bba1-489a955efdc3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f4e49719-9845-4e40-9959-865febeddbc6\",\n            \"bd2ca88b-dbf0-45ae-b52f-9570d65d3f92\",\n            \"2aeb2274-8048-4615-9c17-c41a2cccc860\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.62288665771484,\n      \"Text\": \"987-65-4321\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07716964185237885,\n          \"Height\": 0.009116117842495441,\n          \"Left\": 0.7581342458724976,\n          \"Top\": 0.7597204446792603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7581342458724976,\n            \"Y\": 0.7597204446792603\n          },\n          {\n            \"X\": 0.8353022933006287,\n            \"Y\": 0.7597563862800598\n          },\n          {\n            \"X\": 0.8353039026260376,\n            \"Y\": 0.7688365578651428\n          },\n          {\n            \"X\": 0.7581356167793274,\n            \"Y\": 0.7688007354736328\n          }\n        ]\n      },\n      \"Id\": \"4008e78e-dbc0-4dff-a925-3703547f1798\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c96a3928-a002-4467-8e11-1dce5c8dc85c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85274505615234,\n      \"Text\": \"Pay to the\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06952238827943802,\n          \"Height\": 0.011078543029725552,\n          \"Left\": 0.053030237555503845,\n          \"Top\": 0.8006242513656616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.053031690418720245,\n            \"Y\": 0.8006242513656616\n          },\n          {\n            \"X\": 0.12255262583494186,\n            \"Y\": 0.8006563186645508\n          },\n          {\n            \"X\": 0.12255147844552994,\n            \"Y\": 0.8117027878761292\n          },\n          {\n            \"X\": 0.053030237555503845,\n            \"Y\": 0.8116707801818848\n          }\n        ]\n      },\n      \"Id\": \"089651e5-a6c5-40da-b7fd-bf3ec4af213c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac81c5af-91d9-4bbd-9a3a-ea7cb2106bd1\",\n            \"45024ad6-9f03-4957-9963-bc25f61174e2\",\n            \"6913e743-078e-406f-b3b4-6a0f40f9cabf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.11622619628906,\n      \"Text\": \"order of:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05254054814577103,\n          \"Height\": 0.009199238382279873,\n          \"Left\": 0.052512288093566895,\n          \"Top\": 0.8107377290725708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052513495087623596,\n            \"Y\": 0.8107377290725708\n          },\n          {\n            \"X\": 0.10505283623933792,\n            \"Y\": 0.8107619285583496\n          },\n          {\n            \"X\": 0.10505181550979614,\n            \"Y\": 0.8199369311332703\n          },\n          {\n            \"X\": 0.052512288093566895,\n            \"Y\": 0.8199127912521362\n          }\n        ]\n      },\n      \"Id\": \"a954e332-9b8a-43d4-a53e-a06a7a5c4393\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3f40b1e3-48f5-4090-bcca-1ca12d7f85da\",\n            \"af065b87-190e-4e30-9702-52350b064d66\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93109130859375,\n      \"Text\": \"JOHN STILES\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11000292748212814,\n          \"Height\": 0.012110373005270958,\n          \"Left\": 0.1554965376853943,\n          \"Top\": 0.8107413053512573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15549764037132263,\n            \"Y\": 0.8107413053512573\n          },\n          {\n            \"X\": 0.265499472618103,\n            \"Y\": 0.8107920289039612\n          },\n          {\n            \"X\": 0.26549890637397766,\n            \"Y\": 0.8228517174720764\n          },\n          {\n            \"X\": 0.1554965376853943,\n            \"Y\": 0.8228011727333069\n          }\n        ]\n      },\n      \"Id\": \"76ef3d37-2642-4870-8dab-9f65b66eae5d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c6da4f6c-01cc-487a-bc46-fc3c2fd742e4\",\n            \"096f83b6-7a5d-41d7-bd53-18bfce6b9a8c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.34493255615234,\n      \"Text\": \"This amount:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08307094871997833,\n          \"Height\": 0.00962622556835413,\n          \"Left\": 0.052255064249038696,\n          \"Top\": 0.8289413452148438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052256327122449875,\n            \"Y\": 0.8289413452148438\n          },\n          {\n            \"X\": 0.13532601296901703,\n            \"Y\": 0.8289794325828552\n          },\n          {\n            \"X\": 0.13532507419586182,\n            \"Y\": 0.8385675549507141\n          },\n          {\n            \"X\": 0.052255064249038696,\n            \"Y\": 0.8385295271873474\n          }\n        ]\n      },\n      \"Id\": \"879ae886-b2c5-4a5f-82ca-7faf239349f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"50e7d7b4-c82b-40f5-8c6f-74bc6bdbcc3b\",\n            \"6e51c2c5-47c0-4c45-bf1f-f2ce2d8538ba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8796615600586,\n      \"Text\": \"TWO HUNDRED NINETY-ONE AND 90/100 DOLLARS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3838396668434143,\n          \"Height\": 0.010917792096734047,\n          \"Left\": 0.15508317947387695,\n          \"Top\": 0.8310438394546509\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15508416295051575,\n            \"Y\": 0.8310438394546509\n          },\n          {\n            \"X\": 0.5389221906661987,\n            \"Y\": 0.8312199115753174\n          },\n          {\n            \"X\": 0.5389228463172913,\n            \"Y\": 0.8419616222381592\n          },\n          {\n            \"X\": 0.15508317947387695,\n            \"Y\": 0.8417859673500061\n          }\n        ]\n      },\n      \"Id\": \"a3369146-3704-4a5e-9c84-4fd2eff17c18\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd1789c5-a100-41b1-938e-d3b878bea0ae\",\n            \"aa0b1ff4-8da5-42c8-bbf2-65f6a9900140\",\n            \"7cd8a78e-78bf-4b97-b038-4cd7bea1aa7d\",\n            \"a9ad79dd-4ae8-4b00-97f9-2d78d5e13cd0\",\n            \"c389aea7-28cb-4f7b-851c-f51f54ded6e9\",\n            \"64de448f-a65a-438a-813c-d59d40995cf1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8681640625,\n      \"Text\": \"$291.90\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054515570402145386,\n          \"Height\": 0.011175752617418766,\n          \"Left\": 0.8945171236991882,\n          \"Top\": 0.8310860991477966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8945171236991882,\n            \"Y\": 0.8310860991477966\n          },\n          {\n            \"X\": 0.9490302205085754,\n            \"Y\": 0.8311111330986023\n          },\n          {\n            \"X\": 0.949032723903656,\n            \"Y\": 0.8422618508338928\n          },\n          {\n            \"X\": 0.8945193886756897,\n            \"Y\": 0.8422369360923767\n          }\n        ]\n      },\n      \"Id\": \"4d163d55-43bf-41c3-9438-81f8e82a77ac\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e8387606-da6d-44cd-b5a0-f635b282818e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91527557373047,\n      \"Text\": \"SAMPLE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087924912571907,\n          \"Height\": 0.010260836221277714,\n          \"Left\": 0.18704988062381744,\n          \"Top\": 0.8727636933326721\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1870506852865219,\n            \"Y\": 0.8727636933326721\n          },\n          {\n            \"X\": 0.2479291409254074,\n            \"Y\": 0.8727913498878479\n          },\n          {\n            \"X\": 0.24792857468128204,\n            \"Y\": 0.8830245137214661\n          },\n          {\n            \"X\": 0.18704988062381744,\n            \"Y\": 0.8829969167709351\n          }\n        ]\n      },\n      \"Id\": \"9fe13ec7-a2c7-4883-b93d-134b394f182c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc260cd2-e4aa-438d-8ea6-1fdd17f6a891\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68993377685547,\n      \"Text\": \"NON-NEGOTIABLE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1339421421289444,\n          \"Height\": 0.010696114972233772,\n          \"Left\": 0.18531093001365662,\n          \"Top\": 0.8848074674606323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18531177937984467,\n            \"Y\": 0.8848074674606323\n          },\n          {\n            \"X\": 0.3192530870437622,\n            \"Y\": 0.8848682045936584\n          },\n          {\n            \"X\": 0.31925278902053833,\n            \"Y\": 0.895503580570221\n          },\n          {\n            \"X\": 0.18531093001365662,\n            \"Y\": 0.8954430222511292\n          }\n        ]\n      },\n      \"Id\": \"f78e7f41-37f1-4e7b-9946-bdca1840bf62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a26b82d9-75a7-402c-b83e-ee6866fa46c8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8550796508789,\n      \"Text\": \"BANK NAME\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06045692041516304,\n          \"Height\": 0.007286563981324434,\n          \"Left\": 0.052389614284038544,\n          \"Top\": 0.8988009691238403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05239057168364525,\n            \"Y\": 0.8988009691238403\n          },\n          {\n            \"X\": 0.11284653097391129,\n            \"Y\": 0.8988283276557922\n          },\n          {\n            \"X\": 0.11284574866294861,\n            \"Y\": 0.9060875773429871\n          },\n          {\n            \"X\": 0.052389614284038544,\n            \"Y\": 0.9060602784156799\n          }\n        ]\n      },\n      \"Id\": \"52fb4d37-a881-489a-b16c-3151dd31a196\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"db478c62-51e0-4284-a72b-08cb99db0ac2\",\n            \"c476d0a4-af0d-4810-932d-6dca8dd49bd7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90771484375,\n      \"Text\": \"VOID VOID VOID\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11401166766881943,\n          \"Height\": 0.01057253684848547,\n          \"Left\": 0.18641573190689087,\n          \"Top\": 0.8980157375335693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18641655147075653,\n            \"Y\": 0.8980157375335693\n          },\n          {\n            \"X\": 0.3004274070262909,\n            \"Y\": 0.8980672359466553\n          },\n          {\n            \"X\": 0.30042704939842224,\n            \"Y\": 0.9085882306098938\n          },\n          {\n            \"X\": 0.18641573190689087,\n            \"Y\": 0.9085368514060974\n          }\n        ]\n      },\n      \"Id\": \"68dc8f75-4b75-4bcc-b400-41b074c3c960\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e99bbd73-bd03-4c20-becb-8f26d229b70f\",\n            \"bd876d4d-569a-48a2-9769-7a4d031eb326\",\n            \"b66cc3d2-bc14-46cf-8853-68b335b180bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.93590545654297,\n      \"Text\": \"AUTHORIZED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0620577409863472,\n          \"Height\": 0.00737388152629137,\n          \"Left\": 0.5392360091209412,\n          \"Top\": 0.9010159969329834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5392360091209412,\n            \"Y\": 0.9010159969329834\n          },\n          {\n            \"X\": 0.6012930870056152,\n            \"Y\": 0.9010440707206726\n          },\n          {\n            \"X\": 0.6012937426567078,\n            \"Y\": 0.9083898663520813\n          },\n          {\n            \"X\": 0.5392364263534546,\n            \"Y\": 0.9083619117736816\n          }\n        ]\n      },\n      \"Id\": \"2dd17992-eade-49fa-bf3b-a9d4014a2845\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"076ca7b8-2c4a-4ace-b20c-9c5d13327917\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 69.12090301513672,\n      \"Text\": \"Authorized\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1761792004108429,\n          \"Height\": 0.05295070633292198,\n          \"Left\": 0.5416198968887329,\n          \"Top\": 0.8642136454582214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5416198968887329,\n            \"Y\": 0.8642136454582214\n          },\n          {\n            \"X\": 0.7177922129631042,\n            \"Y\": 0.8642938733100891\n          },\n          {\n            \"X\": 0.7177991271018982,\n            \"Y\": 0.9171643853187561\n          },\n          {\n            \"X\": 0.5416231155395508,\n            \"Y\": 0.9170850515365601\n          }\n        ]\n      },\n      \"Id\": \"5b7715a5-6d7f-4264-b10c-e55eb5c39bbb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"adbb18b9-640f-4f06-a15f-dc7e98f8012b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.97434997558594,\n      \"Text\": \"SIGNATURE Signature\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2826750576496124,\n          \"Height\": 0.05800812318921089,\n          \"Left\": 0.6047844290733337,\n          \"Top\": 0.862274169921875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6047844290733337,\n            \"Y\": 0.862274169921875\n          },\n          {\n            \"X\": 0.8874480128288269,\n            \"Y\": 0.8624029159545898\n          },\n          {\n            \"X\": 0.8874594569206238,\n            \"Y\": 0.9202823042869568\n          },\n          {\n            \"X\": 0.6047893762588501,\n            \"Y\": 0.9201551079750061\n          }\n        ]\n      },\n      \"Id\": \"5a903401-e19f-4385-9c04-023e723397b6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fe0d9a9b-40fe-4c40-8a8c-4f1b7e56eb7c\",\n            \"04842b7b-8058-42a8-996f-816addaeefdd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82587432861328,\n      \"Text\": \"STREET ADDRESS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08909900486469269,\n          \"Height\": 0.007301071658730507,\n          \"Left\": 0.05239022895693779,\n          \"Top\": 0.9065069556236267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052391186356544495,\n            \"Y\": 0.9065069556236267\n          },\n          {\n            \"X\": 0.14148923754692078,\n            \"Y\": 0.9065471291542053\n          },\n          {\n            \"X\": 0.14148853719234467,\n            \"Y\": 0.9138079881668091\n          },\n          {\n            \"X\": 0.05239022895693779,\n            \"Y\": 0.9137678742408752\n          }\n        ]\n      },\n      \"Id\": \"fe99efcd-232b-45fc-9546-3a50f679d53e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a74220a8-5bd3-499d-a4f4-0c809f65c0cf\",\n            \"0c3a9bb9-f9e6-44b7-9a38-0de40a10cd91\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81066131591797,\n      \"Text\": \"CITY STATE ZIP\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07789036631584167,\n          \"Height\": 0.007259258534759283,\n          \"Left\": 0.05252686142921448,\n          \"Top\": 0.9143714904785156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052527811378240585,\n            \"Y\": 0.9143714904785156\n          },\n          {\n            \"X\": 0.13041722774505615,\n            \"Y\": 0.9144065976142883\n          },\n          {\n            \"X\": 0.13041649758815765,\n            \"Y\": 0.9216307401657104\n          },\n          {\n            \"X\": 0.05252686142921448,\n            \"Y\": 0.9215956926345825\n          }\n        ]\n      },\n      \"Id\": \"10f867d9-bd8d-4813-a70e-73f0287267da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"54ae61de-c4db-4fed-87f5-816e89022d22\",\n            \"f20b2381-24d1-4fd2-84f9-697851768c1e\",\n            \"40e2c007-7564-4652-9e04-9fae344f4cac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.26286315917969,\n      \"Text\": \"VOID AFTER 90 DAYS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10553260147571564,\n          \"Height\": 0.007237828802317381,\n          \"Left\": 0.5372782349586487,\n          \"Top\": 0.9109068512916565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5372782349586487,\n            \"Y\": 0.9109068512916565\n          },\n          {\n            \"X\": 0.6428101062774658,\n            \"Y\": 0.9109544157981873\n          },\n          {\n            \"X\": 0.6428108215332031,\n            \"Y\": 0.918144702911377\n          },\n          {\n            \"X\": 0.5372786521911621,\n            \"Y\": 0.918097198009491\n          }\n        ]\n      },\n      \"Id\": \"7fce2a01-247e-45a2-926d-9f7fbf20a301\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d05575c6-9b5d-48fb-96f5-b43e6c4a758f\",\n            \"d93639cd-5afd-49da-92ad-f04e4bd8b380\",\n            \"0b520aa7-3fe9-406b-9173-f8ec4dc8d3f8\",\n            \"6fe3e737-a943-4133-9c55-c50e976a6362\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 71.64351654052734,\n      \"Text\": \"001379⑈ ⑆122000496⑆4040110157⑈\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4466712176799774,\n          \"Height\": 0.013302411884069443,\n          \"Left\": 0.23862919211387634,\n          \"Top\": 0.9569131135940552\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23862995207309723,\n            \"Y\": 0.9569131135940552\n          },\n          {\n            \"X\": 0.6852988600730896,\n            \"Y\": 0.9571124315261841\n          },\n          {\n            \"X\": 0.6853004097938538,\n            \"Y\": 0.9702155590057373\n          },\n          {\n            \"X\": 0.23862919211387634,\n            \"Y\": 0.9700167775154114\n          }\n        ]\n      },\n      \"Id\": \"7a34c8c8-25c6-4969-9827-0d4016cf8691\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"538acaa3-39a3-4133-a03b-506ef5d55b80\",\n            \"f87e3b30-ee0c-498d-a385-34ec058eddc2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 12.64504623413086,\n      \"Text\": \"THEORIGINALDOCUMENTHASAREFLECTIVEWATERMARKONTHEBAOK.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4536792039871216,\n          \"Height\": 0.009257529862225056,\n          \"Left\": 0.04399150609970093,\n          \"Top\": 0.9754505157470703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04399272799491882,\n            \"Y\": 0.9754505157470703\n          },\n          {\n            \"X\": 0.49767032265663147,\n            \"Y\": 0.9756521582603455\n          },\n          {\n            \"X\": 0.4976707100868225,\n            \"Y\": 0.9847080707550049\n          },\n          {\n            \"X\": 0.04399150609970093,\n            \"Y\": 0.9845068454742432\n          }\n        ]\n      },\n      \"Id\": \"e933676f-aeb0-45d8-9e71-30b081d4c2d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ded3cbc6-d9da-46ff-968e-8fd9d50985e3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 80.2921142578125,\n      \"Text\": \"CO.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01907811500132084,\n          \"Height\": 0.008388671092689037,\n          \"Left\": 0.1648918092250824,\n          \"Top\": 0.03480307012796402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1648925393819809,\n            \"Y\": 0.03480307012796402\n          },\n          {\n            \"X\": 0.18396992981433868,\n            \"Y\": 0.034813325852155685\n          },\n          {\n            \"X\": 0.18396925926208496,\n            \"Y\": 0.04319174215197563\n          },\n          {\n            \"X\": 0.1648918092250824,\n            \"Y\": 0.04318150505423546\n          }\n        ]\n      },\n      \"Id\": \"1c6d2446-06e0-4f6a-854c-be3c88278f46\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72889709472656,\n      \"Text\": \"FILE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024935271590948105,\n          \"Height\": 0.00844508782029152,\n          \"Left\": 0.2099919617176056,\n          \"Top\": 0.03477632254362106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20999254286289215,\n            \"Y\": 0.03477632254362106\n          },\n          {\n            \"X\": 0.234927237033844,\n            \"Y\": 0.03478972241282463\n          },\n          {\n            \"X\": 0.2349267303943634,\n            \"Y\": 0.04322141036391258\n          },\n          {\n            \"X\": 0.2099919617176056,\n            \"Y\": 0.04320802912116051\n          }\n        ]\n      },\n      \"Id\": \"2381faf1-4e7c-4c88-94db-60f578ec345b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.5239486694336,\n      \"Text\": \"DEPT.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032793283462524414,\n          \"Height\": 0.008406493812799454,\n          \"Left\": 0.26291805505752563,\n          \"Top\": 0.03478841483592987\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2629184424877167,\n            \"Y\": 0.03478841483592987\n          },\n          {\n            \"X\": 0.29571133852005005,\n            \"Y\": 0.03480604290962219\n          },\n          {\n            \"X\": 0.29571104049682617,\n            \"Y\": 0.043194908648729324\n          },\n          {\n            \"X\": 0.26291805505752563,\n            \"Y\": 0.04317731037735939\n          }\n        ]\n      },\n      \"Id\": \"6bd322ae-3b33-4ccf-9745-ae5abe9bfe1e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50889587402344,\n      \"Text\": \"CLOCK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041945114731788635,\n          \"Height\": 0.008913020603358746,\n          \"Left\": 0.31527549028396606,\n          \"Top\": 0.03459790349006653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31527575850486755,\n            \"Y\": 0.03459790349006653\n          },\n          {\n            \"X\": 0.3572206199169159,\n            \"Y\": 0.03462044894695282\n          },\n          {\n            \"X\": 0.35722050070762634,\n            \"Y\": 0.04351092502474785\n          },\n          {\n            \"X\": 0.31527549028396606,\n            \"Y\": 0.04348841309547424\n          }\n        ]\n      },\n      \"Id\": \"717f129b-1243-425c-80c5-b9a22af6bdd1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67003631591797,\n      \"Text\": \"NUMBER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0509302020072937,\n          \"Height\": 0.008238906972110271,\n          \"Left\": 0.3676603436470032,\n          \"Top\": 0.03480812907218933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36766040325164795,\n            \"Y\": 0.03480812907218933\n          },\n          {\n            \"X\": 0.4185904264450073,\n            \"Y\": 0.03483550250530243\n          },\n          {\n            \"X\": 0.4185905456542969,\n            \"Y\": 0.04304703697562218\n          },\n          {\n            \"X\": 0.3676603436470032,\n            \"Y\": 0.043019700795412064\n          }\n        ]\n      },\n      \"Id\": \"1f40676b-ed02-4f9b-b906-ea6910132052\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93267059326172,\n      \"Text\": \"ABC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028706319630146027,\n          \"Height\": 0.009623170830309391,\n          \"Left\": 0.16495062410831451,\n          \"Top\": 0.04666973650455475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16495145857334137,\n            \"Y\": 0.04666973650455475\n          },\n          {\n            \"X\": 0.19365693628787994,\n            \"Y\": 0.04668512940406799\n          },\n          {\n            \"X\": 0.19365620613098145,\n            \"Y\": 0.056292906403541565\n          },\n          {\n            \"X\": 0.16495062410831451,\n            \"Y\": 0.05627753585577011\n          }\n        ]\n      },\n      \"Id\": \"3c6c107a-6365-46bd-87c1-566fd87929e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25843048095703,\n      \"Text\": \"126543\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044344212859869,\n          \"Height\": 0.009338905103504658,\n          \"Left\": 0.21090802550315857,\n          \"Top\": 0.047060899436473846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2109086662530899,\n            \"Y\": 0.047060899436473846\n          },\n          {\n            \"X\": 0.25525224208831787,\n            \"Y\": 0.04708467796444893\n          },\n          {\n            \"X\": 0.25525176525115967,\n            \"Y\": 0.05639980360865593\n          },\n          {\n            \"X\": 0.21090802550315857,\n            \"Y\": 0.05637606233358383\n          }\n        ]\n      },\n      \"Id\": \"2d8498bc-fc7a-49ca-9340-490fede107e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9498519897461,\n      \"Text\": \"123456\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044026751071214676,\n          \"Height\": 0.009698059409856796,\n          \"Left\": 0.263863742351532,\n          \"Top\": 0.04680684208869934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2638642191886902,\n            \"Y\": 0.04680684208869934\n          },\n          {\n            \"X\": 0.30789050459861755,\n            \"Y\": 0.04683045297861099\n          },\n          {\n            \"X\": 0.3078902065753937,\n            \"Y\": 0.05650490149855614\n          },\n          {\n            \"X\": 0.263863742351532,\n            \"Y\": 0.05648133158683777\n          }\n        ]\n      },\n      \"Id\": \"9d59b864-4057-4c48-aff2-b04df7c83646\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94639587402344,\n      \"Text\": \"12345\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03744831308722496,\n          \"Height\": 0.009444006718695164,\n          \"Left\": 0.3160986006259918,\n          \"Top\": 0.04698577895760536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3160988688468933,\n            \"Y\": 0.04698577895760536\n          },\n          {\n            \"X\": 0.3535469174385071,\n            \"Y\": 0.04700586199760437\n          },\n          {\n            \"X\": 0.35354679822921753,\n            \"Y\": 0.05642978474497795\n          },\n          {\n            \"X\": 0.3160986006259918,\n            \"Y\": 0.05640973523259163\n          }\n        ]\n      },\n      \"Id\": \"5f4b14c7-ae17-402e-8aba-bd90f48c001d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84942626953125,\n      \"Text\": \"00000000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06008065864443779,\n          \"Height\": 0.010111921466886997,\n          \"Left\": 0.3668796420097351,\n          \"Top\": 0.04706024006009102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3668797016143799,\n            \"Y\": 0.04706024006009102\n          },\n          {\n            \"X\": 0.42696014046669006,\n            \"Y\": 0.047092460095882416\n          },\n          {\n            \"X\": 0.426960289478302,\n            \"Y\": 0.05717216059565544\n          },\n          {\n            \"X\": 0.3668796420097351,\n            \"Y\": 0.05714000016450882\n          }\n        ]\n      },\n      \"Id\": \"e13a5b27-62f1-4ba0-b597-50b21ca43129\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.65509033203125,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006587401498109102,\n          \"Height\": 0.008248131722211838,\n          \"Left\": 0.44835329055786133,\n          \"Top\": 0.047755733132362366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44835329055786133,\n            \"Y\": 0.047755733132362366\n          },\n          {\n            \"X\": 0.45494046807289124,\n            \"Y\": 0.04775926470756531\n          },\n          {\n            \"X\": 0.45494067668914795,\n            \"Y\": 0.056003864854574203\n          },\n          {\n            \"X\": 0.44835349917411804,\n            \"Y\": 0.05600033700466156\n          }\n        ]\n      },\n      \"Id\": \"a8af8dc7-6072-4585-a3ff-2b5597a8a662\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97154235839844,\n      \"Text\": \"Earnings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10458025336265564,\n          \"Height\": 0.018169783055782318,\n          \"Left\": 0.5793696641921997,\n          \"Top\": 0.04107304662466049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5793696641921997,\n            \"Y\": 0.04107304662466049\n          },\n          {\n            \"X\": 0.6839478015899658,\n            \"Y\": 0.04112919420003891\n          },\n          {\n            \"X\": 0.6839499473571777,\n            \"Y\": 0.05924282968044281\n          },\n          {\n            \"X\": 0.5793710350990295,\n            \"Y\": 0.059186868369579315\n          }\n        ]\n      },\n      \"Id\": \"43f76c85-859b-495b-a50c-a0bb59f1deea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82549285888672,\n      \"Text\": \"Statement\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12353111803531647,\n          \"Height\": 0.014936991967260838,\n          \"Left\": 0.691061794757843,\n          \"Top\": 0.04124016314744949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.691061794757843,\n            \"Y\": 0.04124016314744949\n          },\n          {\n            \"X\": 0.8145903944969177,\n            \"Y\": 0.04130648449063301\n          },\n          {\n            \"X\": 0.8145928978919983,\n            \"Y\": 0.056177154183387756\n          },\n          {\n            \"X\": 0.6910635232925415,\n            \"Y\": 0.056111015379428864\n          }\n        ]\n      },\n      \"Id\": \"759a5d60-6a9f-4b38-865f-bae4d8e108ca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9559097290039,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0327485129237175,\n          \"Height\": 0.01012183353304863,\n          \"Left\": 0.16638332605361938,\n          \"Top\": 0.07356321066617966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16638420522212982,\n            \"Y\": 0.07356321066617966\n          },\n          {\n            \"X\": 0.19913184642791748,\n            \"Y\": 0.07358068972826004\n          },\n          {\n            \"X\": 0.1991311013698578,\n            \"Y\": 0.08368504792451859\n          },\n          {\n            \"X\": 0.16638332605361938,\n            \"Y\": 0.08366759866476059\n          }\n        ]\n      },\n      \"Id\": \"594ffd95-f9cf-4326-a461-8ed09be451bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82170104980469,\n      \"Text\": \"COMPANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07468311488628387,\n          \"Height\": 0.010783856734633446,\n          \"Left\": 0.20220284163951874,\n          \"Top\": 0.07318288087844849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20220361649990082,\n            \"Y\": 0.07318288087844849\n          },\n          {\n            \"X\": 0.2768859565258026,\n            \"Y\": 0.07322274148464203\n          },\n          {\n            \"X\": 0.2768854796886444,\n            \"Y\": 0.08396673947572708\n          },\n          {\n            \"X\": 0.20220284163951874,\n            \"Y\": 0.0839269608259201\n          }\n        ]\n      },\n      \"Id\": \"3d46a404-597e-49a8-8d25-ced083e81455\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.8788070678711,\n      \"Text\": \"CORP.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04598347097635269,\n          \"Height\": 0.010545332916080952,\n          \"Left\": 0.2804330289363861,\n          \"Top\": 0.0733809694647789\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2804334759712219,\n            \"Y\": 0.0733809694647789\n          },\n          {\n            \"X\": 0.3264164924621582,\n            \"Y\": 0.07340550422668457\n          },\n          {\n            \"X\": 0.3264162540435791,\n            \"Y\": 0.08392629772424698\n          },\n          {\n            \"X\": 0.2804330289363861,\n            \"Y\": 0.08390180766582489\n          }\n        ]\n      },\n      \"Id\": \"b2e4aee8-0d60-4cae-974e-6d1e120f705d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82001495361328,\n      \"Text\": \"Period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043342892080545425,\n          \"Height\": 0.011130236089229584,\n          \"Left\": 0.5789139866828918,\n          \"Top\": 0.07151687145233154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5789139866828918,\n            \"Y\": 0.07151687145233154\n          },\n          {\n            \"X\": 0.6222558617591858,\n            \"Y\": 0.07154000550508499\n          },\n          {\n            \"X\": 0.622256875038147,\n            \"Y\": 0.08264710754156113\n          },\n          {\n            \"X\": 0.5789148211479187,\n            \"Y\": 0.08262401074171066\n          }\n        ]\n      },\n      \"Id\": \"de3af39f-cd2c-4b14-8607-1c0458c041cf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 86.23955535888672,\n      \"Text\": \"ending:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04995226114988327,\n          \"Height\": 0.013010664843022823,\n          \"Left\": 0.6287855505943298,\n          \"Top\": 0.07190150767564774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6287855505943298,\n            \"Y\": 0.07190150767564774\n          },\n          {\n            \"X\": 0.6787363290786743,\n            \"Y\": 0.07192817330360413\n          },\n          {\n            \"X\": 0.6787378191947937,\n            \"Y\": 0.08491217344999313\n          },\n          {\n            \"X\": 0.6287868022918701,\n            \"Y\": 0.08488556742668152\n          }\n        ]\n      },\n      \"Id\": \"847541aa-91d1-4814-809c-f8f143dcafa5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87276458740234,\n      \"Text\": \"7/18/2008\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07078549265861511,\n          \"Height\": 0.011136953718960285,\n          \"Left\": 0.745150625705719,\n          \"Top\": 0.07156092673540115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.745150625705719,\n            \"Y\": 0.07156092673540115\n          },\n          {\n            \"X\": 0.8159342408180237,\n            \"Y\": 0.07159871608018875\n          },\n          {\n            \"X\": 0.8159360885620117,\n            \"Y\": 0.08269788324832916\n          },\n          {\n            \"X\": 0.7451521754264832,\n            \"Y\": 0.08266016840934753\n          }\n        ]\n      },\n      \"Id\": \"b53889d3-3708-498c-ac5c-0a161095b8cb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94763946533203,\n      \"Text\": \"475\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0262457225471735,\n          \"Height\": 0.010022114031016827,\n          \"Left\": 0.16707342863082886,\n          \"Top\": 0.08896888792514801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1670742928981781,\n            \"Y\": 0.08896888792514801\n          },\n          {\n            \"X\": 0.1933191418647766,\n            \"Y\": 0.08898285776376724\n          },\n          {\n            \"X\": 0.19331838190555573,\n            \"Y\": 0.09899100661277771\n          },\n          {\n            \"X\": 0.16707342863082886,\n            \"Y\": 0.09897706657648087\n          }\n        ]\n      },\n      \"Id\": \"5b0205c1-204d-4462-977f-e920db5e9cb9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93801879882812,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03221428394317627,\n          \"Height\": 0.010264543816447258,\n          \"Left\": 0.1959039866924286,\n          \"Top\": 0.08871075510978699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19590474665164948,\n            \"Y\": 0.08871075510978699\n          },\n          {\n            \"X\": 0.22811827063560486,\n            \"Y\": 0.08872789889574051\n          },\n          {\n            \"X\": 0.22811762988567352,\n            \"Y\": 0.0989753007888794\n          },\n          {\n            \"X\": 0.1959039866924286,\n            \"Y\": 0.09895818680524826\n          }\n        ]\n      },\n      \"Id\": \"d790e627-b9d6-4361-b2ee-0dbb5b3d5767\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82774353027344,\n      \"Text\": \"AVENUE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06206626817584038,\n          \"Height\": 0.009835277684032917,\n          \"Left\": 0.23054328560829163,\n          \"Top\": 0.08909773826599121\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23054389655590057,\n            \"Y\": 0.08909773826599121\n          },\n          {\n            \"X\": 0.2926095426082611,\n            \"Y\": 0.08913075923919678\n          },\n          {\n            \"X\": 0.29260918498039246,\n            \"Y\": 0.09893301129341125\n          },\n          {\n            \"X\": 0.23054328560829163,\n            \"Y\": 0.09890004247426987\n          }\n        ]\n      },\n      \"Id\": \"5d03b913-9040-42a7-b27d-5ea34dac85d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85336303710938,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026507575064897537,\n          \"Height\": 0.012667246162891388,\n          \"Left\": 0.5785626173019409,\n          \"Top\": 0.08730734139680862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785626173019409,\n            \"Y\": 0.08730734139680862\n          },\n          {\n            \"X\": 0.605069100856781,\n            \"Y\": 0.0873214527964592\n          },\n          {\n            \"X\": 0.605070173740387,\n            \"Y\": 0.09997458755970001\n          },\n          {\n            \"X\": 0.5785635709762573,\n            \"Y\": 0.09996051341295242\n          }\n        ]\n      },\n      \"Id\": \"abd56aca-fb87-4787-990d-4294f4312000\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.97298431396484,\n      \"Text\": \"date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03382411599159241,\n          \"Height\": 0.010524893179535866,\n          \"Left\": 0.6112859845161438,\n          \"Top\": 0.08727987855672836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6112859845161438,\n            \"Y\": 0.08727987855672836\n          },\n          {\n            \"X\": 0.6451090574264526,\n            \"Y\": 0.08729788661003113\n          },\n          {\n            \"X\": 0.6451101303100586,\n            \"Y\": 0.09780476987361908\n          },\n          {\n            \"X\": 0.6112869381904602,\n            \"Y\": 0.0977867990732193\n          }\n        ]\n      },\n      \"Id\": \"af4da493-9da3-4ca9-9f9c-ffd64c1125aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90161895751953,\n      \"Text\": \"7/25/2008\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07123647630214691,\n          \"Height\": 0.010762719437479973,\n          \"Left\": 0.7445810437202454,\n          \"Top\": 0.08705495297908783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7445810437202454,\n            \"Y\": 0.08705495297908783\n          },\n          {\n            \"X\": 0.8158157467842102,\n            \"Y\": 0.08709287643432617\n          },\n          {\n            \"X\": 0.8158175349235535,\n            \"Y\": 0.09781767427921295\n          },\n          {\n            \"X\": 0.7445825934410095,\n            \"Y\": 0.09777982532978058\n          }\n        ]\n      },\n      \"Id\": \"f1974336-a2de-4b02-87d3-14933d4f0d9c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.60357666015625,\n      \"Text\": \"ANYTOWN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08049211651086807,\n          \"Height\": 0.011519135907292366,\n          \"Left\": 0.16673345863819122,\n          \"Top\": 0.1040053740143776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1667344570159912,\n            \"Y\": 0.1040053740143776\n          },\n          {\n            \"X\": 0.2472255825996399,\n            \"Y\": 0.10404808819293976\n          },\n          {\n            \"X\": 0.24722495675086975,\n            \"Y\": 0.11552451550960541\n          },\n          {\n            \"X\": 0.16673345863819122,\n            \"Y\": 0.1154818907380104\n          }\n        ]\n      },\n      \"Id\": \"68177516-a468-4528-bddf-5d6e2b60d1f5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86196899414062,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03112851083278656,\n          \"Height\": 0.01063804142177105,\n          \"Left\": 0.2509182095527649,\n          \"Top\": 0.10395927727222443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25091877579689026,\n            \"Y\": 0.10395927727222443\n          },\n          {\n            \"X\": 0.28204670548439026,\n            \"Y\": 0.1039757952094078\n          },\n          {\n            \"X\": 0.28204625844955444,\n            \"Y\": 0.11459732055664062\n          },\n          {\n            \"X\": 0.2509182095527649,\n            \"Y\": 0.11458083242177963\n          }\n        ]\n      },\n      \"Id\": \"71f8d330-44b6-48ea-a146-df80d29e3fcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89322662353516,\n      \"Text\": \"10101\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039865050464868546,\n          \"Height\": 0.010068289935588837,\n          \"Left\": 0.28621143102645874,\n          \"Top\": 0.1045248955488205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28621184825897217,\n            \"Y\": 0.1045248955488205\n          },\n          {\n            \"X\": 0.3260765075683594,\n            \"Y\": 0.10454604774713516\n          },\n          {\n            \"X\": 0.3260762393474579,\n            \"Y\": 0.11459318548440933\n          },\n          {\n            \"X\": 0.28621143102645874,\n            \"Y\": 0.11457207053899765\n          }\n        ]\n      },\n      \"Id\": \"608de413-c780-4333-8aa2-3f3dd340db77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20953369140625,\n      \"Text\": \"Social\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03558187931776047,\n          \"Height\": 0.00872616097331047,\n          \"Left\": 0.16571445763111115,\n          \"Top\": 0.14504849910736084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16571521759033203,\n            \"Y\": 0.14504849910736084\n          },\n          {\n            \"X\": 0.20129632949829102,\n            \"Y\": 0.1450672298669815\n          },\n          {\n            \"X\": 0.20129568874835968,\n            \"Y\": 0.1537746638059616\n          },\n          {\n            \"X\": 0.16571445763111115,\n            \"Y\": 0.15375594794750214\n          }\n        ]\n      },\n      \"Id\": \"fbab9016-1814-4297-86fe-62340e23004c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86858367919922,\n      \"Text\": \"Security\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049227263778448105,\n          \"Height\": 0.01033596508204937,\n          \"Left\": 0.20333445072174072,\n          \"Top\": 0.1451462358236313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20333519577980042,\n            \"Y\": 0.1451462358236313\n          },\n          {\n            \"X\": 0.2525617182254791,\n            \"Y\": 0.14517216384410858\n          },\n          {\n            \"X\": 0.25256118178367615,\n            \"Y\": 0.1554822027683258\n          },\n          {\n            \"X\": 0.20333445072174072,\n            \"Y\": 0.1554563343524933\n          }\n        ]\n      },\n      \"Id\": \"3938f3a7-1e00-4057-9611-9c943ecf4782\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 67.63676452636719,\n      \"Text\": \"Number:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0518396832048893,\n          \"Height\": 0.008623520843684673,\n          \"Left\": 0.2537716329097748,\n          \"Top\": 0.145291268825531\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2537720799446106,\n            \"Y\": 0.145291268825531\n          },\n          {\n            \"X\": 0.3056113123893738,\n            \"Y\": 0.14531856775283813\n          },\n          {\n            \"X\": 0.3056110143661499,\n            \"Y\": 0.15391479432582855\n          },\n          {\n            \"X\": 0.2537716329097748,\n            \"Y\": 0.153887540102005\n          }\n        ]\n      },\n      \"Id\": \"31df3193-4de2-454b-8078-c3f20f965840\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.60932922363281,\n      \"Text\": \"987-65-4321\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07045836746692657,\n          \"Height\": 0.008958150632679462,\n          \"Left\": 0.3067587614059448,\n          \"Top\": 0.1451849490404129\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3067590296268463,\n            \"Y\": 0.1451849490404129\n          },\n          {\n            \"X\": 0.3772171139717102,\n            \"Y\": 0.14522205293178558\n          },\n          {\n            \"X\": 0.3772170841693878,\n            \"Y\": 0.1541430950164795\n          },\n          {\n            \"X\": 0.3067587614059448,\n            \"Y\": 0.15410606563091278\n          }\n        ]\n      },\n      \"Id\": \"6ac09e77-6f78-47f3-95fc-32e3f86bbed2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79582977294922,\n      \"Text\": \"Taxable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04587414488196373,\n          \"Height\": 0.008901442401111126,\n          \"Left\": 0.1662297397851944,\n          \"Top\": 0.1553070992231369\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16623051464557648,\n            \"Y\": 0.1553070992231369\n          },\n          {\n            \"X\": 0.21210388839244843,\n            \"Y\": 0.15533120930194855\n          },\n          {\n            \"X\": 0.21210327744483948,\n            \"Y\": 0.1642085462808609\n          },\n          {\n            \"X\": 0.1662297397851944,\n            \"Y\": 0.16418448090553284\n          }\n        ]\n      },\n      \"Id\": \"71727e12-50da-468c-a6b2-1312adebddd3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.93267822265625,\n      \"Text\": \"Marital\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041334375739097595,\n          \"Height\": 0.008672661148011684,\n          \"Left\": 0.214925155043602,\n          \"Top\": 0.1554088443517685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21492575109004974,\n            \"Y\": 0.1554088443517685\n          },\n          {\n            \"X\": 0.2562595307826996,\n            \"Y\": 0.15543057024478912\n          },\n          {\n            \"X\": 0.25625908374786377,\n            \"Y\": 0.16408149898052216\n          },\n          {\n            \"X\": 0.214925155043602,\n            \"Y\": 0.1640598177909851\n          }\n        ]\n      },\n      \"Id\": \"deb4bf69-39fd-4ec6-b112-d4f0d4374165\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.05659484863281,\n      \"Text\": \"Status:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04164393991231918,\n          \"Height\": 0.008941303007304668,\n          \"Left\": 0.25858399271965027,\n          \"Top\": 0.15540465712547302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2585844397544861,\n            \"Y\": 0.15540465712547302\n          },\n          {\n            \"X\": 0.30022791028022766,\n            \"Y\": 0.15542654693126678\n          },\n          {\n            \"X\": 0.3002276122570038,\n            \"Y\": 0.16434596478939056\n          },\n          {\n            \"X\": 0.25858399271965027,\n            \"Y\": 0.16432411968708038\n          }\n        ]\n      },\n      \"Id\": \"df13984c-0f67-4247-8dd9-cbb2ceb55f84\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93355560302734,\n      \"Text\": \"Married\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04578782245516777,\n          \"Height\": 0.009394154883921146,\n          \"Left\": 0.30368572473526,\n          \"Top\": 0.15505775809288025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3036860227584839,\n            \"Y\": 0.15505775809288025\n          },\n          {\n            \"X\": 0.3494735360145569,\n            \"Y\": 0.1550818234682083\n          },\n          {\n            \"X\": 0.34947341680526733,\n            \"Y\": 0.16445191204547882\n          },\n          {\n            \"X\": 0.30368572473526,\n            \"Y\": 0.16442789137363434\n          }\n        ]\n      },\n      \"Id\": \"f27f1a5c-3200-4e31-a3d2-d60c24e9bcb8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9361801147461,\n      \"Text\": \"JOHN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04456353187561035,\n          \"Height\": 0.010857019573450089,\n          \"Left\": 0.5788884162902832,\n          \"Top\": 0.1502630114555359\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5788884162902832,\n            \"Y\": 0.1502630114555359\n          },\n          {\n            \"X\": 0.6234509944915771,\n            \"Y\": 0.150286465883255\n          },\n          {\n            \"X\": 0.6234519481658936,\n            \"Y\": 0.16112002730369568\n          },\n          {\n            \"X\": 0.5788892507553101,\n            \"Y\": 0.16109663248062134\n          }\n        ]\n      },\n      \"Id\": \"092f6da2-ad51-44c8-ab3c-2ae02d118c57\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89529418945312,\n      \"Text\": \"STILES\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05616707727313042,\n          \"Height\": 0.01010938547551632,\n          \"Left\": 0.627281904220581,\n          \"Top\": 0.15047107636928558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.627281904220581,\n            \"Y\": 0.15047107636928558\n          },\n          {\n            \"X\": 0.6834478378295898,\n            \"Y\": 0.15050062537193298\n          },\n          {\n            \"X\": 0.6834489703178406,\n            \"Y\": 0.16058045625686646\n          },\n          {\n            \"X\": 0.6272828578948975,\n            \"Y\": 0.16055096685886383\n          }\n        ]\n      },\n      \"Id\": \"41ddbcc7-ac36-432d-8ebf-8ba170bb08e5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 72.89268493652344,\n      \"Text\": \"Exemptions/Allowances:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14550407230854034,\n          \"Height\": 0.010661812499165535,\n          \"Left\": 0.16551117599010468,\n          \"Top\": 0.1662767231464386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1655120998620987,\n            \"Y\": 0.1662767231464386\n          },\n          {\n            \"X\": 0.311015248298645,\n            \"Y\": 0.1663530319929123\n          },\n          {\n            \"X\": 0.31101492047309875,\n            \"Y\": 0.17693853378295898\n          },\n          {\n            \"X\": 0.16551117599010468,\n            \"Y\": 0.17686237394809723\n          }\n        ]\n      },\n      \"Id\": \"044b4ca3-839e-4003-b475-d594c11f3d30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95838928222656,\n      \"Text\": \"101\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027510302141308784,\n          \"Height\": 0.01081211306154728,\n          \"Left\": 0.5794377326965332,\n          \"Top\": 0.1622643917798996\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5794377326965332,\n            \"Y\": 0.1622643917798996\n          },\n          {\n            \"X\": 0.606947124004364,\n            \"Y\": 0.16227883100509644\n          },\n          {\n            \"X\": 0.6069480180740356,\n            \"Y\": 0.17307651042938232\n          },\n          {\n            \"X\": 0.5794385671615601,\n            \"Y\": 0.17306208610534668\n          }\n        ]\n      },\n      \"Id\": \"93bbc054-08c4-4b1b-902f-1c1d51ef0a4c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96450805664062,\n      \"Text\": \"MAIN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04661845043301582,\n          \"Height\": 0.011174209415912628,\n          \"Left\": 0.6140115857124329,\n          \"Top\": 0.16202090680599213\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6140115857124329,\n            \"Y\": 0.16202090680599213\n          },\n          {\n            \"X\": 0.6606287956237793,\n            \"Y\": 0.16204537451267242\n          },\n          {\n            \"X\": 0.6606300473213196,\n            \"Y\": 0.17319510877132416\n          },\n          {\n            \"X\": 0.614012598991394,\n            \"Y\": 0.17317070066928864\n          }\n        ]\n      },\n      \"Id\": \"51227648-10b8-4ba8-bb01-c2cc7b2b38d9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89366149902344,\n      \"Text\": \"STREET\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06991599500179291,\n          \"Height\": 0.011101502925157547,\n          \"Left\": 0.6658598184585571,\n          \"Top\": 0.16199059784412384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6658598184585571,\n            \"Y\": 0.16199059784412384\n          },\n          {\n            \"X\": 0.7357742786407471,\n            \"Y\": 0.1620272994041443\n          },\n          {\n            \"X\": 0.7357758283615112,\n            \"Y\": 0.1730920970439911\n          },\n          {\n            \"X\": 0.6658610105514526,\n            \"Y\": 0.1730554699897766\n          }\n        ]\n      },\n      \"Id\": \"8eca38ad-061c-4a02-8e68-b6be1161c9a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.95182037353516,\n      \"Text\": \"Federal:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04946086183190346,\n          \"Height\": 0.009524892084300518,\n          \"Left\": 0.1843835860490799,\n          \"Top\": 0.17804661393165588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18438434600830078,\n            \"Y\": 0.17804661393165588\n          },\n          {\n            \"X\": 0.23384444415569305,\n            \"Y\": 0.1780724972486496\n          },\n          {\n            \"X\": 0.2338438779115677,\n            \"Y\": 0.18757151067256927\n          },\n          {\n            \"X\": 0.1843835860490799,\n            \"Y\": 0.18754567205905914\n          }\n        ]\n      },\n      \"Id\": \"642bc9ea-5589-49b8-b909-e14d932f7f4c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.79071044921875,\n      \"Text\": \"3.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011696861125528812,\n          \"Height\": 0.00988834723830223,\n          \"Left\": 0.23991364240646362,\n          \"Top\": 0.1783570945262909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.239914208650589,\n            \"Y\": 0.1783570945262909\n          },\n          {\n            \"X\": 0.25161048769950867,\n            \"Y\": 0.17836321890354156\n          },\n          {\n            \"X\": 0.2516099810600281,\n            \"Y\": 0.18824544548988342\n          },\n          {\n            \"X\": 0.23991364240646362,\n            \"Y\": 0.18823933601379395\n          }\n        ]\n      },\n      \"Id\": \"67748885-632d-4bc0-8756-1bd7185cb324\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.6720199584961,\n      \"Text\": \"$25\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023550108075141907,\n          \"Height\": 0.00955806765705347,\n          \"Left\": 0.2543315291404724,\n          \"Top\": 0.17796240746974945\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.254332035779953,\n            \"Y\": 0.17796240746974945\n          },\n          {\n            \"X\": 0.2778816521167755,\n            \"Y\": 0.17797473073005676\n          },\n          {\n            \"X\": 0.2778812348842621,\n            \"Y\": 0.18752047419548035\n          },\n          {\n            \"X\": 0.2543315291404724,\n            \"Y\": 0.18750816583633423\n          }\n        ]\n      },\n      \"Id\": \"c6087467-7f71-494f-ad82-e114e20f25ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88633728027344,\n      \"Text\": \"Additional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06134025752544403,\n          \"Height\": 0.009208199568092823,\n          \"Left\": 0.28275516629219055,\n          \"Top\": 0.17829152941703796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2827555537223816,\n            \"Y\": 0.17829152941703796\n          },\n          {\n            \"X\": 0.3440954089164734,\n            \"Y\": 0.1783236265182495\n          },\n          {\n            \"X\": 0.34409525990486145,\n            \"Y\": 0.1874997317790985\n          },\n          {\n            \"X\": 0.28275516629219055,\n            \"Y\": 0.18746767938137054\n          }\n        ]\n      },\n      \"Id\": \"15b6315d-674d-485d-856c-57cbf8022ca8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6226806640625,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02225675620138645,\n          \"Height\": 0.009669603779911995,\n          \"Left\": 0.34922507405281067,\n          \"Top\": 0.1779690682888031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3492252230644226,\n            \"Y\": 0.1779690682888031\n          },\n          {\n            \"X\": 0.37148183584213257,\n            \"Y\": 0.1779807209968567\n          },\n          {\n            \"X\": 0.3714817762374878,\n            \"Y\": 0.18763867020606995\n          },\n          {\n            \"X\": 0.34922507405281067,\n            \"Y\": 0.18762704730033875\n          }\n        ]\n      },\n      \"Id\": \"d4c22423-6620-4005-8757-34d63a6f87f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.17655181884766,\n      \"Text\": \"ANYTOWN,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09616769850254059,\n          \"Height\": 0.013297594152390957,\n          \"Left\": 0.5781306028366089,\n          \"Top\": 0.17580297589302063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781306028366089,\n            \"Y\": 0.17580297589302063\n          },\n          {\n            \"X\": 0.6742967963218689,\n            \"Y\": 0.17585332691669464\n          },\n          {\n            \"X\": 0.6742982864379883,\n            \"Y\": 0.18910056352615356\n          },\n          {\n            \"X\": 0.5781316161155701,\n            \"Y\": 0.1890503466129303\n          }\n        ]\n      },\n      \"Id\": \"fa60b03c-e5e1-4cf9-8713-a8b6cba8b4de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.913330078125,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03730420395731926,\n          \"Height\": 0.011619972065091133,\n          \"Left\": 0.67974853515625,\n          \"Top\": 0.1760115921497345\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.67974853515625,\n            \"Y\": 0.1760115921497345\n          },\n          {\n            \"X\": 0.7170512676239014,\n            \"Y\": 0.17603111267089844\n          },\n          {\n            \"X\": 0.7170527577400208,\n            \"Y\": 0.18763156235218048\n          },\n          {\n            \"X\": 0.6797499060630798,\n            \"Y\": 0.18761207163333893\n          }\n        ]\n      },\n      \"Id\": \"8daad891-aa03-47ae-b5f5-debedeb6e9cd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95745086669922,\n      \"Text\": \"12345\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04985219985246658,\n          \"Height\": 0.011417772620916367,\n          \"Left\": 0.7226186394691467,\n          \"Top\": 0.17628200352191925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7226186394691467,\n            \"Y\": 0.17628200352191925\n          },\n          {\n            \"X\": 0.772469162940979,\n            \"Y\": 0.17630809545516968\n          },\n          {\n            \"X\": 0.7724708914756775,\n            \"Y\": 0.18769977986812592\n          },\n          {\n            \"X\": 0.7226201891899109,\n            \"Y\": 0.18767373263835907\n          }\n        ]\n      },\n      \"Id\": \"6c64ea41-77c5-49ec-b106-1a7914352f21\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.1081314086914,\n      \"Text\": \"State:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03432091698050499,\n          \"Height\": 0.008773516863584518,\n          \"Left\": 0.18516546487808228,\n          \"Top\": 0.18953494727611542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1851661652326584,\n            \"Y\": 0.18953494727611542\n          },\n          {\n            \"X\": 0.21948638558387756,\n            \"Y\": 0.18955285847187042\n          },\n          {\n            \"X\": 0.219485804438591,\n            \"Y\": 0.19830845296382904\n          },\n          {\n            \"X\": 0.18516546487808228,\n            \"Y\": 0.19829057157039642\n          }\n        ]\n      },\n      \"Id\": \"0c280735-8fcd-4128-abc5-b961d4742258\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72801208496094,\n      \"Text\": \"2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008675971068441868,\n          \"Height\": 0.008449831046164036,\n          \"Left\": 0.23978041112422943,\n          \"Top\": 0.1894749104976654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23978088796138763,\n            \"Y\": 0.1894749104976654\n          },\n          {\n            \"X\": 0.24845637381076813,\n            \"Y\": 0.18947944045066833\n          },\n          {\n            \"X\": 0.24845591187477112,\n            \"Y\": 0.19792473316192627\n          },\n          {\n            \"X\": 0.23978041112422943,\n            \"Y\": 0.19792021811008453\n          }\n        ]\n      },\n      \"Id\": \"89617607-a82d-4ff8-91cb-fa3125226890\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.39920043945312,\n      \"Text\": \"Local:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03624672070145607,\n          \"Height\": 0.009292127564549446,\n          \"Left\": 0.18479199707508087,\n          \"Top\": 0.20012450218200684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18479274213314056,\n            \"Y\": 0.20012450218200684\n          },\n          {\n            \"X\": 0.22103872895240784,\n            \"Y\": 0.20014339685440063\n          },\n          {\n            \"X\": 0.2210381180047989,\n            \"Y\": 0.20941662788391113\n          },\n          {\n            \"X\": 0.18479199707508087,\n            \"Y\": 0.20939777791500092\n          }\n        ]\n      },\n      \"Id\": \"78a19a2e-f67f-439d-b22f-637b0729f1aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.852294921875,\n      \"Text\": \"2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008743328973650932,\n          \"Height\": 0.008801726624369621,\n          \"Left\": 0.23953777551651,\n          \"Top\": 0.20028091967105865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2395382821559906,\n            \"Y\": 0.20028091967105865\n          },\n          {\n            \"X\": 0.2482811063528061,\n            \"Y\": 0.20028547942638397\n          },\n          {\n            \"X\": 0.2482806146144867,\n            \"Y\": 0.20908264815807343\n          },\n          {\n            \"X\": 0.23953777551651,\n            \"Y\": 0.2090781033039093\n          }\n        ]\n      },\n      \"Id\": \"0e34053f-85f7-4027-a5e8-35ea7036654f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9607925415039,\n      \"Text\": \"Earnings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06931082904338837,\n          \"Height\": 0.013459205627441406,\n          \"Left\": 0.048463236540555954,\n          \"Top\": 0.23626023530960083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048465024679899216,\n            \"Y\": 0.23626023530960083\n          },\n          {\n            \"X\": 0.11777406185865402,\n            \"Y\": 0.23629610240459442\n          },\n          {\n            \"X\": 0.11777263879776001,\n            \"Y\": 0.24971944093704224\n          },\n          {\n            \"X\": 0.048463236540555954,\n            \"Y\": 0.2496836632490158\n          }\n        ]\n      },\n      \"Id\": \"3e743b6d-5363-4d38-a996-d49dba07c6f5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96734619140625,\n      \"Text\": \"rate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02945694699883461,\n          \"Height\": 0.010017167776823044,\n          \"Left\": 0.16499583423137665,\n          \"Top\": 0.23764441907405853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1649966984987259,\n            \"Y\": 0.23764441907405853\n          },\n          {\n            \"X\": 0.19445277750492096,\n            \"Y\": 0.23765966296195984\n          },\n          {\n            \"X\": 0.19445201754570007,\n            \"Y\": 0.24766159057617188\n          },\n          {\n            \"X\": 0.16499583423137665,\n            \"Y\": 0.24764637649059296\n          }\n        ]\n      },\n      \"Id\": \"d0d21cf0-ad3d-4287-b301-e39519229e8b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9582748413086,\n      \"Text\": \"hours\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041159678250551224,\n          \"Height\": 0.010125490836799145,\n          \"Left\": 0.24279560148715973,\n          \"Top\": 0.23747625946998596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2427961826324463,\n            \"Y\": 0.23747625946998596\n          },\n          {\n            \"X\": 0.28395527601242065,\n            \"Y\": 0.23749755322933197\n          },\n          {\n            \"X\": 0.2839548885822296,\n            \"Y\": 0.24760174751281738\n          },\n          {\n            \"X\": 0.24279560148715973,\n            \"Y\": 0.24758048355579376\n          }\n        ]\n      },\n      \"Id\": \"799cb262-ed70-4c3d-aa19-82ade7a19752\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82648468017578,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026677051559090614,\n          \"Height\": 0.010334692895412445,\n          \"Left\": 0.34537240862846375,\n          \"Top\": 0.23726646602153778\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34537258744239807,\n            \"Y\": 0.23726646602153778\n          },\n          {\n            \"X\": 0.372049480676651,\n            \"Y\": 0.23728027939796448\n          },\n          {\n            \"X\": 0.3720494210720062,\n            \"Y\": 0.24760116636753082\n          },\n          {\n            \"X\": 0.34537240862846375,\n            \"Y\": 0.2475873827934265\n          }\n        ]\n      },\n      \"Id\": \"7716c163-f0f4-457d-8e93-525196c32585\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90774536132812,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046613968908786774,\n          \"Height\": 0.01270758081227541,\n          \"Left\": 0.37476614117622375,\n          \"Top\": 0.23715071380138397\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37476620078086853,\n            \"Y\": 0.23715071380138397\n          },\n          {\n            \"X\": 0.421379953622818,\n            \"Y\": 0.2371748387813568\n          },\n          {\n            \"X\": 0.42138010263442993,\n            \"Y\": 0.2498582899570465\n          },\n          {\n            \"X\": 0.37476614117622375,\n            \"Y\": 0.24983422458171844\n          }\n        ]\n      },\n      \"Id\": \"147a1048-7567-4fe6-9c04-a26d5171dc35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89580535888672,\n      \"Text\": \"year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03149498626589775,\n          \"Height\": 0.010030963458120823,\n          \"Left\": 0.44469818472862244,\n          \"Top\": 0.23936215043067932\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44469818472862244,\n            \"Y\": 0.23936215043067932\n          },\n          {\n            \"X\": 0.47619280219078064,\n            \"Y\": 0.2393784373998642\n          },\n          {\n            \"X\": 0.4761931598186493,\n            \"Y\": 0.24939312040805817\n          },\n          {\n            \"X\": 0.44469839334487915,\n            \"Y\": 0.24937684834003448\n          }\n        ]\n      },\n      \"Id\": \"812008ae-e030-432d-831f-514428f2e4fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92435455322266,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015135987661778927,\n          \"Height\": 0.00959678553044796,\n          \"Left\": 0.47899478673934937,\n          \"Top\": 0.2378387302160263\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47899478673934937,\n            \"Y\": 0.2378387302160263\n          },\n          {\n            \"X\": 0.49413037300109863,\n            \"Y\": 0.23784656822681427\n          },\n          {\n            \"X\": 0.49413079023361206,\n            \"Y\": 0.2474355250597\n          },\n          {\n            \"X\": 0.478995144367218,\n            \"Y\": 0.24742770195007324\n          }\n        ]\n      },\n      \"Id\": \"d650beef-675e-4209-9be0-ef15c97fd172\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94115447998047,\n      \"Text\": \"date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03262513503432274,\n          \"Height\": 0.009978185407817364,\n          \"Left\": 0.4973248541355133,\n          \"Top\": 0.23754051327705383\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4973248541355133,\n            \"Y\": 0.23754051327705383\n          },\n          {\n            \"X\": 0.529949426651001,\n            \"Y\": 0.23755739629268646\n          },\n          {\n            \"X\": 0.529949963092804,\n            \"Y\": 0.24751868844032288\n          },\n          {\n            \"X\": 0.49732527136802673,\n            \"Y\": 0.24750185012817383\n          }\n        ]\n      },\n      \"Id\": \"cd0cecfd-f414-4d40-850b-642e1015995a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92572784423828,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04539421573281288,\n          \"Height\": 0.011327377520501614,\n          \"Left\": 0.5766529440879822,\n          \"Top\": 0.23737099766731262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5766529440879822,\n            \"Y\": 0.23737099766731262\n          },\n          {\n            \"X\": 0.6220461130142212,\n            \"Y\": 0.23739448189735413\n          },\n          {\n            \"X\": 0.6220471858978271,\n            \"Y\": 0.2486983835697174\n          },\n          {\n            \"X\": 0.5766538381576538,\n            \"Y\": 0.24867494404315948\n          }\n        ]\n      },\n      \"Id\": \"14bc4165-8b1d-4d16-b992-d11e1bf42649\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9710464477539,\n      \"Text\": \"Benefits\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06486208736896515,\n          \"Height\": 0.01170947216451168,\n          \"Left\": 0.6252940893173218,\n          \"Top\": 0.23725497722625732\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6252940893173218,\n            \"Y\": 0.23725497722625732\n          },\n          {\n            \"X\": 0.6901547908782959,\n            \"Y\": 0.23728854954242706\n          },\n          {\n            \"X\": 0.6901562213897705,\n            \"Y\": 0.24896445870399475\n          },\n          {\n            \"X\": 0.6252952218055725,\n            \"Y\": 0.24893096089363098\n          }\n        ]\n      },\n      \"Id\": \"9dfc69b5-b521-43f5-9b8e-933160daa638\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96096801757812,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029920078814029694,\n          \"Height\": 0.011004794389009476,\n          \"Left\": 0.6934384703636169,\n          \"Top\": 0.23766571283340454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6934384703636169,\n            \"Y\": 0.23766571283340454\n          },\n          {\n            \"X\": 0.723357081413269,\n            \"Y\": 0.23768119513988495\n          },\n          {\n            \"X\": 0.7233585119247437,\n            \"Y\": 0.2486705183982849\n          },\n          {\n            \"X\": 0.693439781665802,\n            \"Y\": 0.2486550658941269\n          }\n        ]\n      },\n      \"Id\": \"e83f5772-8a6d-49b8-b3b1-68fc731ffa69\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85408782958984,\n      \"Text\": \"Regular\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05216872692108154,\n          \"Height\": 0.012287428602576256,\n          \"Left\": 0.04820391908288002,\n          \"Top\": 0.2524224817752838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048205554485321045,\n            \"Y\": 0.2524224817752838\n          },\n          {\n            \"X\": 0.10037264972925186,\n            \"Y\": 0.2524493932723999\n          },\n          {\n            \"X\": 0.10037126392126083,\n            \"Y\": 0.2647099196910858\n          },\n          {\n            \"X\": 0.04820391908288002,\n            \"Y\": 0.2646830677986145\n          }\n        ]\n      },\n      \"Id\": \"6e713fe7-9f79-41ff-99fa-bbeb91a24faf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9853286743164,\n      \"Text\": \"10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03768472000956535,\n          \"Height\": 0.009851118549704552,\n          \"Left\": 0.16607119143009186,\n          \"Top\": 0.2533145844936371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1660720407962799,\n            \"Y\": 0.2533145844936371\n          },\n          {\n            \"X\": 0.2037559151649475,\n            \"Y\": 0.25333404541015625\n          },\n          {\n            \"X\": 0.2037551999092102,\n            \"Y\": 0.2631657123565674\n          },\n          {\n            \"X\": 0.16607119143009186,\n            \"Y\": 0.263146311044693\n          }\n        ]\n      },\n      \"Id\": \"2188b790-5153-4697-b659-b7d3151fb5d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95726013183594,\n      \"Text\": \"32.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038650620728731155,\n          \"Height\": 0.010002532042562962,\n          \"Left\": 0.24577964842319489,\n          \"Top\": 0.25323572754859924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24578019976615906,\n            \"Y\": 0.25323572754859924\n          },\n          {\n            \"X\": 0.28443026542663574,\n            \"Y\": 0.2532556653022766\n          },\n          {\n            \"X\": 0.2844298779964447,\n            \"Y\": 0.26323825120925903\n          },\n          {\n            \"X\": 0.24577964842319489,\n            \"Y\": 0.26321834325790405\n          }\n        ]\n      },\n      \"Id\": \"861d4157-80b7-40d1-953e-92de280aef04\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93513488769531,\n      \"Text\": \"320.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04622955992817879,\n          \"Height\": 0.010005136020481586,\n          \"Left\": 0.37489357590675354,\n          \"Top\": 0.2532278597354889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3748936355113983,\n            \"Y\": 0.2532278597354889\n          },\n          {\n            \"X\": 0.4211229979991913,\n            \"Y\": 0.25325170159339905\n          },\n          {\n            \"X\": 0.4211231470108032,\n            \"Y\": 0.2632329761981964\n          },\n          {\n            \"X\": 0.37489357590675354,\n            \"Y\": 0.26320916414260864\n          }\n        ]\n      },\n      \"Id\": \"a7450109-248e-4cf6-85e4-799e172d50d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87945556640625,\n      \"Text\": \"16,640.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06557746231555939,\n          \"Height\": 0.010449650697410107,\n          \"Left\": 0.4640209376811981,\n          \"Top\": 0.2532294690608978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4640209376811981,\n            \"Y\": 0.2532294690608978\n          },\n          {\n            \"X\": 0.529597818851471,\n            \"Y\": 0.25326329469680786\n          },\n          {\n            \"X\": 0.5295984148979187,\n            \"Y\": 0.2636791169643402\n          },\n          {\n            \"X\": 0.4640212655067444,\n            \"Y\": 0.26364535093307495\n          }\n        ]\n      },\n      \"Id\": \"1d911cf8-c70a-4841-a107-ebae1e32e82b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5367202758789,\n      \"Text\": \"Information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09015334397554398,\n          \"Height\": 0.011279510334134102,\n          \"Left\": 0.5768205523490906,\n          \"Top\": 0.2517431080341339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768205523490906,\n            \"Y\": 0.2517431080341339\n          },\n          {\n            \"X\": 0.6669726371765137,\n            \"Y\": 0.2517896294593811\n          },\n          {\n            \"X\": 0.666973888874054,\n            \"Y\": 0.26302260160446167\n          },\n          {\n            \"X\": 0.5768213868141174,\n            \"Y\": 0.26297619938850403\n          }\n        ]\n      },\n      \"Id\": \"2cc46da4-6d86-4345-bc7a-ce0f498249fe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89653015136719,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02671503648161888,\n          \"Height\": 0.010363224893808365,\n          \"Left\": 0.7564947605133057,\n          \"Top\": 0.2525874376296997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7564947605133057,\n            \"Y\": 0.2525874376296997\n          },\n          {\n            \"X\": 0.7832081317901611,\n            \"Y\": 0.2526012063026428\n          },\n          {\n            \"X\": 0.7832097411155701,\n            \"Y\": 0.2629506587982178\n          },\n          {\n            \"X\": 0.756496250629425,\n            \"Y\": 0.26293689012527466\n          }\n        ]\n      },\n      \"Id\": \"b62d8678-f2df-4da7-b01e-064a5f0925a0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92682647705078,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04546458274126053,\n          \"Height\": 0.012134036049246788,\n          \"Left\": 0.7868872880935669,\n          \"Top\": 0.2526462972164154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7868872880935669,\n            \"Y\": 0.2526462972164154\n          },\n          {\n            \"X\": 0.8323497772216797,\n            \"Y\": 0.2526697516441345\n          },\n          {\n            \"X\": 0.8323519229888916,\n            \"Y\": 0.26478034257888794\n          },\n          {\n            \"X\": 0.7868891954421997,\n            \"Y\": 0.2647569179534912\n          }\n        ]\n      },\n      \"Id\": \"e1d2165a-cb96-43a3-b4e1-a850c726f33d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91203308105469,\n      \"Text\": \"total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032755762338638306,\n          \"Height\": 0.01001412607729435,\n          \"Left\": 0.8563255071640015,\n          \"Top\": 0.25277841091156006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8563255071640015,\n            \"Y\": 0.25277841091156006\n          },\n          {\n            \"X\": 0.8890792727470398,\n            \"Y\": 0.2527953088283539\n          },\n          {\n            \"X\": 0.8890812397003174,\n            \"Y\": 0.26279252767562866\n          },\n          {\n            \"X\": 0.8563273549079895,\n            \"Y\": 0.2627756595611572\n          }\n        ]\n      },\n      \"Id\": \"eee6dc86-7e38-4d36-822a-6ee69a3c58a4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8738021850586,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014885489828884602,\n          \"Height\": 0.009542438201606274,\n          \"Left\": 0.8919167518615723,\n          \"Top\": 0.25319939851760864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8919167518615723,\n            \"Y\": 0.25319939851760864\n          },\n          {\n            \"X\": 0.9068002700805664,\n            \"Y\": 0.25320708751678467\n          },\n          {\n            \"X\": 0.906802237033844,\n            \"Y\": 0.2627418637275696\n          },\n          {\n            \"X\": 0.8919186592102051,\n            \"Y\": 0.26273417472839355\n          }\n        ]\n      },\n      \"Id\": \"ca711130-715f-4114-9ae8-363cb6fe441d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94766998291016,\n      \"Text\": \"date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03256719931960106,\n          \"Height\": 0.010240484960377216,\n          \"Left\": 0.9100285172462463,\n          \"Top\": 0.2527835965156555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9100285172462463,\n            \"Y\": 0.2527835965156555\n          },\n          {\n            \"X\": 0.942593514919281,\n            \"Y\": 0.2528004050254822\n          },\n          {\n            \"X\": 0.9425957202911377,\n            \"Y\": 0.26302409172058105\n          },\n          {\n            \"X\": 0.9100306630134583,\n            \"Y\": 0.2630073130130768\n          }\n        ]\n      },\n      \"Id\": \"da112398-09e8-482b-af16-115dd19982c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94938659667969,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06074037775397301,\n          \"Height\": 0.010400752536952496,\n          \"Left\": 0.04815497621893883,\n          \"Top\": 0.2667449414730072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048156362026929855,\n            \"Y\": 0.2667449414730072\n          },\n          {\n            \"X\": 0.10889535397291183,\n            \"Y\": 0.2667762041091919\n          },\n          {\n            \"X\": 0.1088942214846611,\n            \"Y\": 0.2771456837654114\n          },\n          {\n            \"X\": 0.04815497621893883,\n            \"Y\": 0.27711451053619385\n          }\n        ]\n      },\n      \"Id\": \"81986e90-ce80-442d-aea3-e3c3b2dcdacd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97119140625,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037271689623594284,\n          \"Height\": 0.009945896454155445,\n          \"Left\": 0.16658230125904083,\n          \"Top\": 0.26755163073539734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16658316552639008,\n            \"Y\": 0.26755163073539734\n          },\n          {\n            \"X\": 0.20385399460792542,\n            \"Y\": 0.2675707936286926\n          },\n          {\n            \"X\": 0.2038532793521881,\n            \"Y\": 0.2774975299835205\n          },\n          {\n            \"X\": 0.16658230125904083,\n            \"Y\": 0.2774783968925476\n          }\n        ]\n      },\n      \"Id\": \"ef295caf-24fa-45fa-9c01-24fb1e1159eb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98035430908203,\n      \"Text\": \"1.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029214758425951004,\n          \"Height\": 0.01006261259317398,\n          \"Left\": 0.2552531957626343,\n          \"Top\": 0.2675531804561615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25525373220443726,\n            \"Y\": 0.2675531804561615\n          },\n          {\n            \"X\": 0.2844679653644562,\n            \"Y\": 0.2675682306289673\n          },\n          {\n            \"X\": 0.28446754813194275,\n            \"Y\": 0.27761581540107727\n          },\n          {\n            \"X\": 0.2552531957626343,\n            \"Y\": 0.27760079503059387\n          }\n        ]\n      },\n      \"Id\": \"c962f0f4-4d1f-46d7-85ce-ff056b045efb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97041320800781,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03686118870973587,\n          \"Height\": 0.009980025701224804,\n          \"Left\": 0.3845655918121338,\n          \"Top\": 0.2675122618675232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2675122618675232\n          },\n          {\n            \"X\": 0.4214266240596771,\n            \"Y\": 0.26753121614456177\n          },\n          {\n            \"X\": 0.42142677307128906,\n            \"Y\": 0.2774922847747803\n          },\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2774733603000641\n          }\n        ]\n      },\n      \"Id\": \"4c5ab781-5ab7-4592-bca8-511160cd8ca4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96766662597656,\n      \"Text\": \"780.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046530354768037796,\n          \"Height\": 0.010219424962997437,\n          \"Left\": 0.48337647318840027,\n          \"Top\": 0.26737067103385925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48337647318840027,\n            \"Y\": 0.26737067103385925\n          },\n          {\n            \"X\": 0.5299062728881836,\n            \"Y\": 0.26739463210105896\n          },\n          {\n            \"X\": 0.5299068093299866,\n            \"Y\": 0.2775900959968567\n          },\n          {\n            \"X\": 0.4833768606185913,\n            \"Y\": 0.27756622433662415\n          }\n        ]\n      },\n      \"Id\": \"0bcdea31-cd25-4288-a9da-4350fdab614c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9143295288086,\n      \"Text\": \"Group\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042627379298210144,\n          \"Height\": 0.01228717714548111,\n          \"Left\": 0.5767555832862854,\n          \"Top\": 0.26781925559043884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767555832862854,\n            \"Y\": 0.26781925559043884\n          },\n          {\n            \"X\": 0.619381844997406,\n            \"Y\": 0.2678411602973938\n          },\n          {\n            \"X\": 0.6193829774856567,\n            \"Y\": 0.28010642528533936\n          },\n          {\n            \"X\": 0.5767565369606018,\n            \"Y\": 0.2800845503807068\n          }\n        ]\n      },\n      \"Id\": \"1c920135-96b7-423d-b955-7074ef8a682c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45491790771484,\n      \"Text\": \"Term\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03536194935441017,\n          \"Height\": 0.010313731618225574,\n          \"Left\": 0.623176097869873,\n          \"Top\": 0.26787617802619934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.623176097869873,\n            \"Y\": 0.26787617802619934\n          },\n          {\n            \"X\": 0.6585369110107422,\n            \"Y\": 0.26789435744285583\n          },\n          {\n            \"X\": 0.6585380434989929,\n            \"Y\": 0.27818989753723145\n          },\n          {\n            \"X\": 0.6231770515441895,\n            \"Y\": 0.27817174792289734\n          }\n        ]\n      },\n      \"Id\": \"7554e53b-1f70-4285-ba3d-ba1014cad4b6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68003845214844,\n      \"Text\": \"Life\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025305896997451782,\n          \"Height\": 0.010303042829036713,\n          \"Left\": 0.6628572344779968,\n          \"Top\": 0.2679847180843353\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6628572344779968,\n            \"Y\": 0.2679847180843353\n          },\n          {\n            \"X\": 0.6881619095802307,\n            \"Y\": 0.26799771189689636\n          },\n          {\n            \"X\": 0.688163161277771,\n            \"Y\": 0.27828773856163025\n          },\n          {\n            \"X\": 0.6628583669662476,\n            \"Y\": 0.2782747447490692\n          }\n        ]\n      },\n      \"Id\": \"ec255b17-2821-40a8-b702-94cef08ad866\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91934967041016,\n      \"Text\": \"0.51\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028741711750626564,\n          \"Height\": 0.009984729811549187,\n          \"Left\": 0.8023031949996948,\n          \"Top\": 0.2685137987136841\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8023031949996948,\n            \"Y\": 0.2685137987136841\n          },\n          {\n            \"X\": 0.8310431241989136,\n            \"Y\": 0.2685285806655884\n          },\n          {\n            \"X\": 0.8310449123382568,\n            \"Y\": 0.2784985303878784\n          },\n          {\n            \"X\": 0.8023048043251038,\n            \"Y\": 0.2784837782382965\n          }\n        ]\n      },\n      \"Id\": \"95c2930a-bfcc-4300-94fa-4334a433d32c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96684265136719,\n      \"Text\": \"27.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037982746958732605,\n          \"Height\": 0.010073179379105568,\n          \"Left\": 0.9043900370597839,\n          \"Top\": 0.268672376871109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9043900370597839,\n            \"Y\": 0.268672376871109\n          },\n          {\n            \"X\": 0.942370593547821,\n            \"Y\": 0.26869192719459534\n          },\n          {\n            \"X\": 0.942372739315033,\n            \"Y\": 0.27874556183815\n          },\n          {\n            \"X\": 0.9043920636177063,\n            \"Y\": 0.27872607111930847\n          }\n        ]\n      },\n      \"Id\": \"de0bac35-db04-4791-9f84-a8e72b6ecd9d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93984985351562,\n      \"Text\": \"Holiday\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050633981823921204,\n          \"Height\": 0.012951508164405823,\n          \"Left\": 0.04812180995941162,\n          \"Top\": 0.2820318341255188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04812353476881981,\n            \"Y\": 0.2820318341255188\n          },\n          {\n            \"X\": 0.09875579178333282,\n            \"Y\": 0.28205782175064087\n          },\n          {\n            \"X\": 0.09875432401895523,\n            \"Y\": 0.2949833571910858\n          },\n          {\n            \"X\": 0.04812180995941162,\n            \"Y\": 0.2949574291706085\n          }\n        ]\n      },\n      \"Id\": \"46ededb1-0e69-439b-8c72-ab7939b7dbe9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9839096069336,\n      \"Text\": \"10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03735325112938881,\n          \"Height\": 0.00993636716157198,\n          \"Left\": 0.1664377748966217,\n          \"Top\": 0.2827611565589905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16643863916397095,\n            \"Y\": 0.2827611565589905\n          },\n          {\n            \"X\": 0.20379102230072021,\n            \"Y\": 0.28278031945228577\n          },\n          {\n            \"X\": 0.2037903070449829,\n            \"Y\": 0.2926975190639496\n          },\n          {\n            \"X\": 0.1664377748966217,\n            \"Y\": 0.2926783859729767\n          }\n        ]\n      },\n      \"Id\": \"cce901bd-3c9f-49fe-bcca-704edd66fa42\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93985748291016,\n      \"Text\": \"8.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0303603895008564,\n          \"Height\": 0.009918317198753357,\n          \"Left\": 0.2541239559650421,\n          \"Top\": 0.282818078994751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2541244626045227,\n            \"Y\": 0.282818078994751\n          },\n          {\n            \"X\": 0.2844843566417694,\n            \"Y\": 0.28283363580703735\n          },\n          {\n            \"X\": 0.284483939409256,\n            \"Y\": 0.29273638129234314\n          },\n          {\n            \"X\": 0.2541239559650421,\n            \"Y\": 0.29272085428237915\n          }\n        ]\n      },\n      \"Id\": \"090b5b9f-9f6e-42c8-84fc-2ca2c098faec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92776489257812,\n      \"Text\": \"80.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03822328895330429,\n          \"Height\": 0.009878597222268581,\n          \"Left\": 0.3833726644515991,\n          \"Top\": 0.2828782796859741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.2828782796859741\n          },\n          {\n            \"X\": 0.42159581184387207,\n            \"Y\": 0.2828978896141052\n          },\n          {\n            \"X\": 0.421595960855484,\n            \"Y\": 0.2927568852901459\n          },\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.29273730516433716\n          }\n        ]\n      },\n      \"Id\": \"adf96d5c-a0b9-4107-81bb-9d8d00122fe6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9427261352539,\n      \"Text\": \"4,160.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058800388127565384,\n          \"Height\": 0.010359588079154491,\n          \"Left\": 0.47135302424430847,\n          \"Top\": 0.2825688123703003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47135302424430847,\n            \"Y\": 0.2825688123703003\n          },\n          {\n            \"X\": 0.5301528573036194,\n            \"Y\": 0.28259897232055664\n          },\n          {\n            \"X\": 0.5301533937454224,\n            \"Y\": 0.29292839765548706\n          },\n          {\n            \"X\": 0.4713533818721771,\n            \"Y\": 0.2928982973098755\n          }\n        ]\n      },\n      \"Id\": \"dba0c35d-ac41-4105-8164-ee54641f8738\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9623031616211,\n      \"Text\": \"Loan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033292870968580246,\n          \"Height\": 0.010152917355298996,\n          \"Left\": 0.5767180323600769,\n          \"Top\": 0.28334835171699524\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767180323600769,\n            \"Y\": 0.28334835171699524\n          },\n          {\n            \"X\": 0.6100099682807922,\n            \"Y\": 0.2833654284477234\n          },\n          {\n            \"X\": 0.6100108623504639,\n            \"Y\": 0.29350125789642334\n          },\n          {\n            \"X\": 0.5767187476158142,\n            \"Y\": 0.29348424077033997\n          }\n        ]\n      },\n      \"Id\": \"32c7c392-b41d-4371-98c6-b3a2d9e4cf50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79383850097656,\n      \"Text\": \"Amt\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028360793367028236,\n          \"Height\": 0.010158434510231018,\n          \"Left\": 0.6128195524215698,\n          \"Top\": 0.283267080783844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6128195524215698,\n            \"Y\": 0.283267080783844\n          },\n          {\n            \"X\": 0.6411793231964111,\n            \"Y\": 0.2832816243171692\n          },\n          {\n            \"X\": 0.6411803364753723,\n            \"Y\": 0.2934255003929138\n          },\n          {\n            \"X\": 0.6128204464912415,\n            \"Y\": 0.293410986661911\n          }\n        ]\n      },\n      \"Id\": \"c0352b58-49ab-4f57-a14a-b405f5910935\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72465515136719,\n      \"Text\": \"Paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030518002808094025,\n          \"Height\": 0.010469081811606884,\n          \"Left\": 0.6441700458526611,\n          \"Top\": 0.2830445468425751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6441700458526611,\n            \"Y\": 0.2830445468425751\n          },\n          {\n            \"X\": 0.674686849117279,\n            \"Y\": 0.283060222864151\n          },\n          {\n            \"X\": 0.6746880412101746,\n            \"Y\": 0.2935136556625366\n          },\n          {\n            \"X\": 0.6441711187362671,\n            \"Y\": 0.2934980094432831\n          }\n        ]\n      },\n      \"Id\": \"05e975a6-ebd0-4673-8adf-c534442dda48\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92259216308594,\n      \"Text\": \"840.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046753834933042526,\n          \"Height\": 0.010666605085134506,\n          \"Left\": 0.8956746459007263,\n          \"Top\": 0.28368595242500305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8956746459007263,\n            \"Y\": 0.28368595242500305\n          },\n          {\n            \"X\": 0.9424261450767517,\n            \"Y\": 0.28370994329452515\n          },\n          {\n            \"X\": 0.942428469657898,\n            \"Y\": 0.29435256123542786\n          },\n          {\n            \"X\": 0.8956767916679382,\n            \"Y\": 0.29432862997055054\n          }\n        ]\n      },\n      \"Id\": \"b3d60009-3c96-4d3e-b693-8bd8fd98c33e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42350769042969,\n      \"Text\": \"Tuition\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04613829031586647,\n          \"Height\": 0.01095814909785986,\n          \"Left\": 0.04747363179922104,\n          \"Top\": 0.2969394624233246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.047475092113018036,\n            \"Y\": 0.2969394624233246\n          },\n          {\n            \"X\": 0.09361192584037781,\n            \"Y\": 0.29696306586265564\n          },\n          {\n            \"X\": 0.09361065924167633,\n            \"Y\": 0.3078975975513458\n          },\n          {\n            \"X\": 0.04747363179922104,\n            \"Y\": 0.30787405371665955\n          }\n        ]\n      },\n      \"Id\": \"66460174-ed8f-40c8-99ff-274c84640092\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.8167953491211,\n      \"Text\": \"37.43*\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04241195693612099,\n          \"Height\": 0.009879774414002895,\n          \"Left\": 0.3839637041091919,\n          \"Top\": 0.2979101836681366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.2979101836681366\n          },\n          {\n            \"X\": 0.42637550830841064,\n            \"Y\": 0.29793187975883484\n          },\n          {\n            \"X\": 0.4263756573200226,\n            \"Y\": 0.30778995156288147\n          },\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.307768315076828\n          }\n        ]\n      },\n      \"Id\": \"141d88fa-fd6f-4f49-a182-085cf64852bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84208679199219,\n      \"Text\": \"1,946.80\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058109480887651443,\n          \"Height\": 0.010069272480905056,\n          \"Left\": 0.4719546139240265,\n          \"Top\": 0.29820770025253296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4719546139240265,\n            \"Y\": 0.29820770025253296\n          },\n          {\n            \"X\": 0.5300635099411011,\n            \"Y\": 0.2982374131679535\n          },\n          {\n            \"X\": 0.5300641059875488,\n            \"Y\": 0.3082769811153412\n          },\n          {\n            \"X\": 0.47195497155189514,\n            \"Y\": 0.30824732780456543\n          }\n        ]\n      },\n      \"Id\": \"da39dca6-0ee0-4d1e-8dd2-13a5359fc0d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.951171875,\n      \"Text\": \"Gross\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042702220380306244,\n          \"Height\": 0.010434250347316265,\n          \"Left\": 0.1670255810022354,\n          \"Top\": 0.31260812282562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16702648997306824,\n            \"Y\": 0.31260812282562256\n          },\n          {\n            \"X\": 0.20972780883312225,\n            \"Y\": 0.31262990832328796\n          },\n          {\n            \"X\": 0.20972707867622375,\n            \"Y\": 0.3230423629283905\n          },\n          {\n            \"X\": 0.1670255810022354,\n            \"Y\": 0.3230206370353699\n          }\n        ]\n      },\n      \"Id\": \"9046d057-e39b-4ec8-8f3b-f46c0d113a43\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74077606201172,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026880936697125435,\n          \"Height\": 0.01218110229820013,\n          \"Left\": 0.21339549124240875,\n          \"Top\": 0.31274014711380005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2133963257074356,\n            \"Y\": 0.31274014711380005\n          },\n          {\n            \"X\": 0.24027644097805023,\n            \"Y\": 0.3127538561820984\n          },\n          {\n            \"X\": 0.24027572572231293,\n            \"Y\": 0.32492125034332275\n          },\n          {\n            \"X\": 0.21339549124240875,\n            \"Y\": 0.3249075710773468\n          }\n        ]\n      },\n      \"Id\": \"15793dda-51d2-4995-8ee6-8ed6420efdca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.06597137451172,\n      \"Text\": \"$ 452.43\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087379530072212,\n          \"Height\": 0.010658894665539265,\n          \"Left\": 0.3595705032348633,\n          \"Top\": 0.3125160336494446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35957059264183044,\n            \"Y\": 0.3125160336494446\n          },\n          {\n            \"X\": 0.42044416069984436,\n            \"Y\": 0.31254708766937256\n          },\n          {\n            \"X\": 0.4204442799091339,\n            \"Y\": 0.32317495346069336\n          },\n          {\n            \"X\": 0.3595705032348633,\n            \"Y\": 0.32314395904541016\n          }\n        ]\n      },\n      \"Id\": \"eae93dbe-109d-412a-b39e-c107671f581d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82225799560547,\n      \"Text\": \"23,526.80\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0667140781879425,\n          \"Height\": 0.0105618080124259,\n          \"Left\": 0.46298760175704956,\n          \"Top\": 0.31343764066696167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46298760175704956,\n            \"Y\": 0.31343764066696167\n          },\n          {\n            \"X\": 0.5297011137008667,\n            \"Y\": 0.3134716749191284\n          },\n          {\n            \"X\": 0.5297016501426697,\n            \"Y\": 0.32399946451187134\n          },\n          {\n            \"X\": 0.4629879295825958,\n            \"Y\": 0.32396548986434937\n          }\n        ]\n      },\n      \"Id\": \"878cb027-04bf-47e9-a888-14e3ca865857\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46178436279297,\n      \"Text\": \"Vac\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026975693181157112,\n          \"Height\": 0.01033420953899622,\n          \"Left\": 0.5758248567581177,\n          \"Top\": 0.3138124644756317\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758248567581177,\n            \"Y\": 0.3138124644756317\n          },\n          {\n            \"X\": 0.602799654006958,\n            \"Y\": 0.31382620334625244\n          },\n          {\n            \"X\": 0.6028005480766296,\n            \"Y\": 0.32414665818214417\n          },\n          {\n            \"X\": 0.5758256316184998,\n            \"Y\": 0.3241329491138458\n          }\n        ]\n      },\n      \"Id\": \"359f3d6d-a052-49c7-9b44-d41640a26b57\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62895202636719,\n      \"Text\": \"Hrs\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02345903590321541,\n          \"Height\": 0.01050612609833479,\n          \"Left\": 0.6101168990135193,\n          \"Top\": 0.31367728114128113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6101168990135193,\n            \"Y\": 0.31367728114128113\n          },\n          {\n            \"X\": 0.633574903011322,\n            \"Y\": 0.3136892318725586\n          },\n          {\n            \"X\": 0.6335759162902832,\n            \"Y\": 0.3241834044456482\n          },\n          {\n            \"X\": 0.6101178526878357,\n            \"Y\": 0.3241714835166931\n          }\n        ]\n      },\n      \"Id\": \"6c02d677-8d83-4833-8212-4e63957d4e25\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9650650024414,\n      \"Text\": \"40.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038161877542734146,\n          \"Height\": 0.010520696640014648,\n          \"Left\": 0.904356062412262,\n          \"Top\": 0.31415197253227234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.904356062412262,\n            \"Y\": 0.31415197253227234\n          },\n          {\n            \"X\": 0.9425156712532043,\n            \"Y\": 0.3141714334487915\n          },\n          {\n            \"X\": 0.9425179958343506,\n            \"Y\": 0.324672669172287\n          },\n          {\n            \"X\": 0.9043582081794739,\n            \"Y\": 0.3246532678604126\n          }\n        ]\n      },\n      \"Id\": \"f8e72572-c426-4eb2-badc-ab4f7d0d710a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73625183105469,\n      \"Text\": \"Sick\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02987760677933693,\n          \"Height\": 0.010379652492702007,\n          \"Left\": 0.5764848589897156,\n          \"Top\": 0.329090416431427\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764848589897156,\n            \"Y\": 0.329090416431427\n          },\n          {\n            \"X\": 0.6063615679740906,\n            \"Y\": 0.3291056156158447\n          },\n          {\n            \"X\": 0.6063624620437622,\n            \"Y\": 0.3394700884819031\n          },\n          {\n            \"X\": 0.5764856338500977,\n            \"Y\": 0.33945491909980774\n          }\n        ]\n      },\n      \"Id\": \"42ac2887-8d88-4bd6-8950-1a50021577f4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5521240234375,\n      \"Text\": \"Hrs\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02402915619313717,\n          \"Height\": 0.010463021695613861,\n          \"Left\": 0.6091822385787964,\n          \"Top\": 0.3290726840496063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6091822385787964,\n            \"Y\": 0.3290726840496063\n          },\n          {\n            \"X\": 0.6332103610038757,\n            \"Y\": 0.3290849030017853\n          },\n          {\n            \"X\": 0.6332113742828369,\n            \"Y\": 0.3395357131958008\n          },\n          {\n            \"X\": 0.609183132648468,\n            \"Y\": 0.3395235240459442\n          }\n        ]\n      },\n      \"Id\": \"416435d6-3e3e-4358-94fa-0e7ad3bb98f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.833984375,\n      \"Text\": \"16.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03717483952641487,\n          \"Height\": 0.010468751192092896,\n          \"Left\": 0.9054335355758667,\n          \"Top\": 0.3296695649623871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054335355758667,\n            \"Y\": 0.3296695649623871\n          },\n          {\n            \"X\": 0.9426060914993286,\n            \"Y\": 0.3296884596347809\n          },\n          {\n            \"X\": 0.9426083564758301,\n            \"Y\": 0.34013831615448\n          },\n          {\n            \"X\": 0.9054356813430786,\n            \"Y\": 0.34011945128440857\n          }\n        ]\n      },\n      \"Id\": \"2a6a9b39-7d30-4838-b23d-eba8969dc66c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74022674560547,\n      \"Text\": \"Deductions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09023692458868027,\n          \"Height\": 0.011784988455474377,\n          \"Left\": 0.047912683337926865,\n          \"Top\": 0.34313178062438965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04791424795985222,\n            \"Y\": 0.34313178062438965\n          },\n          {\n            \"X\": 0.13814960420131683,\n            \"Y\": 0.34317752718925476\n          },\n          {\n            \"X\": 0.1381484568119049,\n            \"Y\": 0.3549167513847351\n          },\n          {\n            \"X\": 0.047912683337926865,\n            \"Y\": 0.35487112402915955\n          }\n        ]\n      },\n      \"Id\": \"f0dbe9e9-075f-4c54-b56e-941faf477a22\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80423736572266,\n      \"Text\": \"Statutory\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06641349196434021,\n          \"Height\": 0.01263391226530075,\n          \"Left\": 0.16528518497943878,\n          \"Top\": 0.3442513644695282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16528627276420593,\n            \"Y\": 0.3442513644695282\n          },\n          {\n            \"X\": 0.2316986620426178,\n            \"Y\": 0.3442850112915039\n          },\n          {\n            \"X\": 0.2316979020833969,\n            \"Y\": 0.35688528418540955\n          },\n          {\n            \"X\": 0.16528518497943878,\n            \"Y\": 0.3568516969680786\n          }\n        ]\n      },\n      \"Id\": \"47848180-0256-493f-b93a-d60812321f63\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89875793457031,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029553616419434547,\n          \"Height\": 0.010047758929431438,\n          \"Left\": 0.5760388970375061,\n          \"Top\": 0.3433203101158142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5760388970375061,\n            \"Y\": 0.3433203101158142\n          },\n          {\n            \"X\": 0.6055916547775269,\n            \"Y\": 0.3433353006839752\n          },\n          {\n            \"X\": 0.6055925488471985,\n            \"Y\": 0.3533680737018585\n          },\n          {\n            \"X\": 0.5760396718978882,\n            \"Y\": 0.3533531129360199\n          }\n        ]\n      },\n      \"Id\": \"645e9ba0-5da6-4c63-8389-6c416316d347\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52043151855469,\n      \"Text\": \"Operator\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05878404900431633,\n          \"Height\": 0.012305991724133492,\n          \"Left\": 0.7732459902763367,\n          \"Top\": 0.34344255924224854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7732459902763367,\n            \"Y\": 0.34344255924224854\n          },\n          {\n            \"X\": 0.8320278525352478,\n            \"Y\": 0.34347236156463623\n          },\n          {\n            \"X\": 0.8320299983024597,\n            \"Y\": 0.35574856400489807\n          },\n          {\n            \"X\": 0.7732478380203247,\n            \"Y\": 0.35571882128715515\n          }\n        ]\n      },\n      \"Id\": \"6e975c53-1124-47a6-978f-94304d7e9d64\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94131469726562,\n      \"Text\": \"Federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04935089126229286,\n          \"Height\": 0.010272800922393799,\n          \"Left\": 0.16601119935512543,\n          \"Top\": 0.35976746678352356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16601209342479706,\n            \"Y\": 0.35976746678352356\n          },\n          {\n            \"X\": 0.215362086892128,\n            \"Y\": 0.3597923815250397\n          },\n          {\n            \"X\": 0.21536140143871307,\n            \"Y\": 0.37004026770591736\n          },\n          {\n            \"X\": 0.16601119935512543,\n            \"Y\": 0.37001538276672363\n          }\n        ]\n      },\n      \"Id\": \"eb8b196a-7bf8-4548-af02-ceb00f3edf1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.75132751464844,\n      \"Text\": \"Income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04984023794531822,\n          \"Height\": 0.010114293545484543,\n          \"Left\": 0.21853552758693695,\n          \"Top\": 0.35983243584632874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21853619813919067,\n            \"Y\": 0.35983243584632874\n          },\n          {\n            \"X\": 0.2683757543563843,\n            \"Y\": 0.35985761880874634\n          },\n          {\n            \"X\": 0.26837530732154846,\n            \"Y\": 0.3699467182159424\n          },\n          {\n            \"X\": 0.21853552758693695,\n            \"Y\": 0.36992159485816956\n          }\n        ]\n      },\n      \"Id\": \"3f71e83a-f017-4088-bc54-2041102c49d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9437484741211,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026268139481544495,\n          \"Height\": 0.010290557518601418,\n          \"Left\": 0.27066725492477417,\n          \"Top\": 0.35948964953422546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2706677317619324,\n            \"Y\": 0.35948964953422546\n          },\n          {\n            \"X\": 0.29693540930747986,\n            \"Y\": 0.3595029413700104\n          },\n          {\n            \"X\": 0.2969350516796112,\n            \"Y\": 0.36978021264076233\n          },\n          {\n            \"X\": 0.27066725492477417,\n            \"Y\": 0.3697669804096222\n          }\n        ]\n      },\n      \"Id\": \"a19eb517-2166-4c1e-a481-bfd73d8f9d4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.72803497314453,\n      \"Text\": \"-40.60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04919637739658356,\n          \"Height\": 0.009934278205037117,\n          \"Left\": 0.37207096815109253,\n          \"Top\": 0.36035916209220886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720710277557373,\n            \"Y\": 0.36035916209220886\n          },\n          {\n            \"X\": 0.42126721143722534,\n            \"Y\": 0.3603840172290802\n          },\n          {\n            \"X\": 0.4212673306465149,\n            \"Y\": 0.37029343843460083\n          },\n          {\n            \"X\": 0.37207096815109253,\n            \"Y\": 0.3702686131000519\n          }\n        ]\n      },\n      \"Id\": \"0aee13ab-e8de-4966-b87b-9783c6c083cb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84791564941406,\n      \"Text\": \"2,111.20\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05892305448651314,\n          \"Height\": 0.01003853976726532,\n          \"Left\": 0.47084134817123413,\n          \"Top\": 0.3605228662490845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47084134817123413,\n            \"Y\": 0.3605228662490845\n          },\n          {\n            \"X\": 0.5297638177871704,\n            \"Y\": 0.3605526387691498\n          },\n          {\n            \"X\": 0.5297644138336182,\n            \"Y\": 0.3705613911151886\n          },\n          {\n            \"X\": 0.4708416759967804,\n            \"Y\": 0.37053167819976807\n          }\n        ]\n      },\n      \"Id\": \"47b62ed4-1aa0-4183-a329-380fe8ff9ba9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93062591552734,\n      \"Text\": \"Social\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040845002979040146,\n          \"Height\": 0.010468686930835247,\n          \"Left\": 0.16579486429691315,\n          \"Top\": 0.3736853003501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16579577326774597,\n            \"Y\": 0.3736853003501892\n          },\n          {\n            \"X\": 0.2066398561000824,\n            \"Y\": 0.3737058639526367\n          },\n          {\n            \"X\": 0.2066391259431839,\n            \"Y\": 0.38415399193763733\n          },\n          {\n            \"X\": 0.16579486429691315,\n            \"Y\": 0.3841334283351898\n          }\n        ]\n      },\n      \"Id\": \"1cc1e5d4-d150-41ac-a70a-50440d1773a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97443389892578,\n      \"Text\": \"Security\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05427538976073265,\n          \"Height\": 0.012033622711896896,\n          \"Left\": 0.2098391205072403,\n          \"Top\": 0.374271422624588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20983995497226715,\n            \"Y\": 0.374271422624588\n          },\n          {\n            \"X\": 0.26411449909210205,\n            \"Y\": 0.37429875135421753\n          },\n          {\n            \"X\": 0.2641139328479767,\n            \"Y\": 0.386305034160614\n          },\n          {\n            \"X\": 0.2098391205072403,\n            \"Y\": 0.3862777650356293\n          }\n        ]\n      },\n      \"Id\": \"474c9066-ec4a-493d-bcfb-fd0759a0020a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92344665527344,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026159992441534996,\n          \"Height\": 0.010212439112365246,\n          \"Left\": 0.26702019572257996,\n          \"Top\": 0.37388116121292114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26702067255973816,\n            \"Y\": 0.37388116121292114\n          },\n          {\n            \"X\": 0.2931801676750183,\n            \"Y\": 0.3738943338394165\n          },\n          {\n            \"X\": 0.29317981004714966,\n            \"Y\": 0.38409361243247986\n          },\n          {\n            \"X\": 0.26702019572257996,\n            \"Y\": 0.3840804398059845\n          }\n        ]\n      },\n      \"Id\": \"385ed2c8-ee76-45b7-9ae1-701654813868\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.64322662353516,\n      \"Text\": \"-28.05\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048776742070913315,\n          \"Height\": 0.009982314892113209,\n          \"Left\": 0.3720327615737915,\n          \"Top\": 0.3746964931488037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720328211784363,\n            \"Y\": 0.3746964931488037\n          },\n          {\n            \"X\": 0.42080938816070557,\n            \"Y\": 0.37472108006477356\n          },\n          {\n            \"X\": 0.4208095073699951,\n            \"Y\": 0.38467881083488464\n          },\n          {\n            \"X\": 0.3720327615737915,\n            \"Y\": 0.38465428352355957\n          }\n        ]\n      },\n      \"Id\": \"f9e2a3a4-f02d-4c19-9966-6a99527065f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.878662109375,\n      \"Text\": \"1,458.60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0583278127014637,\n          \"Height\": 0.010592943988740444,\n          \"Left\": 0.4716467261314392,\n          \"Top\": 0.374478280544281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716467261314392,\n            \"Y\": 0.374478280544281\n          },\n          {\n            \"X\": 0.5299739241600037,\n            \"Y\": 0.3745076656341553\n          },\n          {\n            \"X\": 0.5299745202064514,\n            \"Y\": 0.3850712180137634\n          },\n          {\n            \"X\": 0.47164708375930786,\n            \"Y\": 0.38504189252853394\n          }\n        ]\n      },\n      \"Id\": \"1e939551-1432-4d30-8fae-aad832a9e7ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92350006103516,\n      \"Text\": \"Medicare\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06183071434497833,\n          \"Height\": 0.010176248848438263,\n          \"Left\": 0.16576078534126282,\n          \"Top\": 0.3894445300102234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16576167941093445,\n            \"Y\": 0.3894445300102234\n          },\n          {\n            \"X\": 0.22759149968624115,\n            \"Y\": 0.38947561383247375\n          },\n          {\n            \"X\": 0.227590873837471,\n            \"Y\": 0.39962080121040344\n          },\n          {\n            \"X\": 0.16576078534126282,\n            \"Y\": 0.39958977699279785\n          }\n        ]\n      },\n      \"Id\": \"62e7c77e-67f8-4eba-9148-f0cf6423d30a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93074798583984,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026099078357219696,\n          \"Height\": 0.010319681838154793,\n          \"Left\": 0.2302984893321991,\n          \"Top\": 0.38916733860969543\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23029913008213043,\n            \"Y\": 0.38916733860969543\n          },\n          {\n            \"X\": 0.2563975751399994,\n            \"Y\": 0.389180451631546\n          },\n          {\n            \"X\": 0.2563970386981964,\n            \"Y\": 0.3994870185852051\n          },\n          {\n            \"X\": 0.2302984893321991,\n            \"Y\": 0.3994739353656769\n          }\n        ]\n      },\n      \"Id\": \"e121b18c-96d2-4864-8f89-ec79eb1710f3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 78.7468490600586,\n      \"Text\": \"-6.56\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04244004189968109,\n          \"Height\": 0.009964492172002792,\n          \"Left\": 0.37839993834495544,\n          \"Top\": 0.3901442885398865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37839996814727783,\n            \"Y\": 0.3901442885398865\n          },\n          {\n            \"X\": 0.4208398461341858,\n            \"Y\": 0.39016562700271606\n          },\n          {\n            \"X\": 0.42083999514579773,\n            \"Y\": 0.40010878443717957\n          },\n          {\n            \"X\": 0.37839993834495544,\n            \"Y\": 0.40008750557899475\n          }\n        ]\n      },\n      \"Id\": \"f65ad30e-a8fe-4f61-aacd-32e58b15de80\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8979721069336,\n      \"Text\": \"341.12\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046127788722515106,\n          \"Height\": 0.010035618208348751,\n          \"Left\": 0.48332643508911133,\n          \"Top\": 0.3897542953491211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48332643508911133,\n            \"Y\": 0.3897542953491211\n          },\n          {\n            \"X\": 0.529453694820404,\n            \"Y\": 0.38977745175361633\n          },\n          {\n            \"X\": 0.529454231262207,\n            \"Y\": 0.3997898995876312\n          },\n          {\n            \"X\": 0.48332682251930237,\n            \"Y\": 0.3997667729854584\n          }\n        ]\n      },\n      \"Id\": \"36962072-6514-4d39-96ca-3308a22f7ebf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.35563659667969,\n      \"Text\": \"Important\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07837128639221191,\n          \"Height\": 0.01350462343543768,\n          \"Left\": 0.5768430829048157,\n          \"Top\": 0.3884696364402771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768430829048157,\n            \"Y\": 0.3884696364402771\n          },\n          {\n            \"X\": 0.655212938785553,\n            \"Y\": 0.38850900530815125\n          },\n          {\n            \"X\": 0.6552143692970276,\n            \"Y\": 0.40197426080703735\n          },\n          {\n            \"X\": 0.5768440961837769,\n            \"Y\": 0.40193498134613037\n          }\n        ]\n      },\n      \"Id\": \"5484fcad-212c-49a8-80d6-887c05979b85\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95951843261719,\n      \"Text\": \"Notes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04711438715457916,\n          \"Height\": 0.011478225700557232,\n          \"Left\": 0.6621067523956299,\n          \"Top\": 0.3884013593196869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6621067523956299,\n            \"Y\": 0.3884013593196869\n          },\n          {\n            \"X\": 0.7092196941375732,\n            \"Y\": 0.3884250223636627\n          },\n          {\n            \"X\": 0.7092211246490479,\n            \"Y\": 0.3998795747756958\n          },\n          {\n            \"X\": 0.6621080040931702,\n            \"Y\": 0.39985594153404236\n          }\n        ]\n      },\n      \"Id\": \"d89f4dc5-0e4c-4f9c-baef-42f65e1eadc5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97681427001953,\n      \"Text\": \"NY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021086469292640686,\n          \"Height\": 0.009894262999296188,\n          \"Left\": 0.16564063727855682,\n          \"Top\": 0.40465840697288513\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16564150154590607,\n            \"Y\": 0.40465840697288513\n          },\n          {\n            \"X\": 0.1867271065711975,\n            \"Y\": 0.4046689569950104\n          },\n          {\n            \"X\": 0.18672633171081543,\n            \"Y\": 0.4145526587963104\n          },\n          {\n            \"X\": 0.16564063727855682,\n            \"Y\": 0.41454213857650757\n          }\n        ]\n      },\n      \"Id\": \"9098f2b9-2561-4bf0-a147-d15e844ff296\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9471206665039,\n      \"Text\": \"State\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035696860402822495,\n          \"Height\": 0.010373448953032494,\n          \"Left\": 0.18974536657333374,\n          \"Top\": 0.4046025276184082\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1897461712360382,\n            \"Y\": 0.4046025276184082\n          },\n          {\n            \"X\": 0.22544221580028534,\n            \"Y\": 0.4046204090118408\n          },\n          {\n            \"X\": 0.2254415601491928,\n            \"Y\": 0.41497597098350525\n          },\n          {\n            \"X\": 0.18974536657333374,\n            \"Y\": 0.4149581491947174\n          }\n        ]\n      },\n      \"Id\": \"32101875-06b2-4d70-aae1-27384906ae03\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.53309631347656,\n      \"Text\": \"Income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05012987554073334,\n          \"Height\": 0.010466568171977997,\n          \"Left\": 0.2283274084329605,\n          \"Top\": 0.4045395255088806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22832804918289185,\n            \"Y\": 0.4045395255088806\n          },\n          {\n            \"X\": 0.27845728397369385,\n            \"Y\": 0.40456464886665344\n          },\n          {\n            \"X\": 0.27845683693885803,\n            \"Y\": 0.4150061011314392\n          },\n          {\n            \"X\": 0.2283274084329605,\n            \"Y\": 0.41498103737831116\n          }\n        ]\n      },\n      \"Id\": \"28426bdf-8ff8-429a-bef5-f21ae8ea2a98\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95079040527344,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026311594992876053,\n          \"Height\": 0.010378565639257431,\n          \"Left\": 0.28054457902908325,\n          \"Top\": 0.40438830852508545\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2805449962615967,\n            \"Y\": 0.40438830852508545\n          },\n          {\n            \"X\": 0.3068561553955078,\n            \"Y\": 0.4044014811515808\n          },\n          {\n            \"X\": 0.30685582756996155,\n            \"Y\": 0.4147668778896332\n          },\n          {\n            \"X\": 0.28054457902908325,\n            \"Y\": 0.4147537350654602\n          }\n        ]\n      },\n      \"Id\": \"ae9c18df-cf34-4b29-ab5a-d2579c64b89f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.22126007080078,\n      \"Text\": \"-8.43\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039588768035173416,\n          \"Height\": 0.01017859298735857,\n          \"Left\": 0.3816371262073517,\n          \"Top\": 0.40510061383247375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816371560096741,\n            \"Y\": 0.40510061383247375\n          },\n          {\n            \"X\": 0.42122575640678406,\n            \"Y\": 0.40512046217918396\n          },\n          {\n            \"X\": 0.421225905418396,\n            \"Y\": 0.41527920961380005\n          },\n          {\n            \"X\": 0.3816371262073517,\n            \"Y\": 0.4152594208717346\n          }\n        ]\n      },\n      \"Id\": \"660508ff-42df-4774-b69d-9b471aa0e664\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.59510803222656,\n      \"Text\": \"438.36\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04687277972698212,\n          \"Height\": 0.010192235000431538,\n          \"Left\": 0.48327845335006714,\n          \"Top\": 0.40503618121147156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48327845335006714,\n            \"Y\": 0.40503618121147156\n          },\n          {\n            \"X\": 0.5301506519317627,\n            \"Y\": 0.40505966544151306\n          },\n          {\n            \"X\": 0.5301512479782104,\n            \"Y\": 0.4152284264564514\n          },\n          {\n            \"X\": 0.4832788407802582,\n            \"Y\": 0.4152050018310547\n          }\n        ]\n      },\n      \"Id\": \"8fc0ac52-6bec-4672-b405-b9a96107953f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81791687011719,\n      \"Text\": \"EFFECTIVE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06862348318099976,\n          \"Height\": 0.00934558268636465,\n          \"Left\": 0.576397716999054,\n          \"Top\": 0.40673497319221497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576397716999054,\n            \"Y\": 0.40673497319221497\n          },\n          {\n            \"X\": 0.6450202465057373,\n            \"Y\": 0.406769335269928\n          },\n          {\n            \"X\": 0.6450212001800537,\n            \"Y\": 0.4160805642604828\n          },\n          {\n            \"X\": 0.5763984322547913,\n            \"Y\": 0.41604626178741455\n          }\n        ]\n      },\n      \"Id\": \"1c30035f-b5f0-44be-bd94-65572e40aa6f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90097045898438,\n      \"Text\": \"THIS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02976958081126213,\n          \"Height\": 0.00910420622676611,\n          \"Left\": 0.6471924781799316,\n          \"Top\": 0.4067222774028778\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6471924781799316,\n            \"Y\": 0.4067222774028778\n          },\n          {\n            \"X\": 0.6769610643386841,\n            \"Y\": 0.40673717856407166\n          },\n          {\n            \"X\": 0.6769620776176453,\n            \"Y\": 0.4158264696598053\n          },\n          {\n            \"X\": 0.647193431854248,\n            \"Y\": 0.41581159830093384\n          }\n        ]\n      },\n      \"Id\": \"d56c64b0-c41e-452d-b9da-8b21a598ae3e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95889282226562,\n      \"Text\": \"PAY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026685526594519615,\n          \"Height\": 0.009249559603631496,\n          \"Left\": 0.6797308325767517,\n          \"Top\": 0.4066205620765686\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6797308325767517,\n            \"Y\": 0.4066205620765686\n          },\n          {\n            \"X\": 0.7064151763916016,\n            \"Y\": 0.4066339135169983\n          },\n          {\n            \"X\": 0.7064163088798523,\n            \"Y\": 0.4158701002597809\n          },\n          {\n            \"X\": 0.6797318458557129,\n            \"Y\": 0.4158567786216736\n          }\n        ]\n      },\n      \"Id\": \"9e5d00ff-f78e-43fa-8c30-66dbfee81015\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75724029541016,\n      \"Text\": \"PERIOD\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049611736088991165,\n          \"Height\": 0.009456287138164043,\n          \"Left\": 0.7085244059562683,\n          \"Top\": 0.406613290309906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7085244059562683,\n            \"Y\": 0.406613290309906\n          },\n          {\n            \"X\": 0.7581347227096558,\n            \"Y\": 0.40663811564445496\n          },\n          {\n            \"X\": 0.7581360936164856,\n            \"Y\": 0.41606956720352173\n          },\n          {\n            \"X\": 0.7085255980491638,\n            \"Y\": 0.41604477167129517\n          }\n        ]\n      },\n      \"Id\": \"a0a94599-3050-4dd9-affd-2d6b082c0e40\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90437316894531,\n      \"Text\": \"YOUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037846628576517105,\n          \"Height\": 0.00906900130212307,\n          \"Left\": 0.7606750726699829,\n          \"Top\": 0.40676015615463257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7606750726699829,\n            \"Y\": 0.40676015615463257\n          },\n          {\n            \"X\": 0.7985202074050903,\n            \"Y\": 0.40677911043167114\n          },\n          {\n            \"X\": 0.7985216975212097,\n            \"Y\": 0.4158291518688202\n          },\n          {\n            \"X\": 0.760676383972168,\n            \"Y\": 0.4158102571964264\n          }\n        ]\n      },\n      \"Id\": \"1aa5b639-d021-426d-a3b1-22c1acaa56ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82666015625,\n      \"Text\": \"REGULAR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06199900433421135,\n          \"Height\": 0.0094817616045475,\n          \"Left\": 0.8007530570030212,\n          \"Top\": 0.40656766295433044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8007530570030212,\n            \"Y\": 0.40656766295433044\n          },\n          {\n            \"X\": 0.8627502918243408,\n            \"Y\": 0.4065987169742584\n          },\n          {\n            \"X\": 0.8627520799636841,\n            \"Y\": 0.41604945063591003\n          },\n          {\n            \"X\": 0.8007546067237854,\n            \"Y\": 0.41601845622062683\n          }\n        ]\n      },\n      \"Id\": \"bbf81c1c-a293-4835-8f74-1cc22b066b86\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96880340576172,\n      \"Text\": \"NYC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03186038136482239,\n          \"Height\": 0.010181508958339691,\n          \"Left\": 0.16557787358760834,\n          \"Top\": 0.4198364317417145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16557876765727997,\n            \"Y\": 0.4198364317417145\n          },\n          {\n            \"X\": 0.19743825495243073,\n            \"Y\": 0.4198523461818695\n          },\n          {\n            \"X\": 0.19743749499320984,\n            \"Y\": 0.43001794815063477\n          },\n          {\n            \"X\": 0.16557787358760834,\n            \"Y\": 0.4300020635128021\n          }\n        ]\n      },\n      \"Id\": \"12f1f441-d989-4ad3-bf2d-5fd25ad8d9ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.81990051269531,\n      \"Text\": \"Income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048998188227415085,\n          \"Height\": 0.010191085748374462,\n          \"Left\": 0.20072896778583527,\n          \"Top\": 0.41997745633125305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20072971284389496,\n            \"Y\": 0.41997745633125305\n          },\n          {\n            \"X\": 0.24972715973854065,\n            \"Y\": 0.42000192403793335\n          },\n          {\n            \"X\": 0.24972660839557648,\n            \"Y\": 0.4301685392856598\n          },\n          {\n            \"X\": 0.20072896778583527,\n            \"Y\": 0.4301441013813019\n          }\n        ]\n      },\n      \"Id\": \"b43caf9c-f6e5-4914-9882-e583d368027a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92872619628906,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02551284059882164,\n          \"Height\": 0.010208935476839542,\n          \"Left\": 0.25273099541664124,\n          \"Top\": 0.41985008120536804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2527315318584442,\n            \"Y\": 0.41985008120536804\n          },\n          {\n            \"X\": 0.2782438397407532,\n            \"Y\": 0.41986283659935\n          },\n          {\n            \"X\": 0.27824342250823975,\n            \"Y\": 0.430059015750885\n          },\n          {\n            \"X\": 0.25273099541664124,\n            \"Y\": 0.43004631996154785\n          }\n        ]\n      },\n      \"Id\": \"b4a6048b-fb7f-4677-a712-113e65362f33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.88884735107422,\n      \"Text\": \"-5.94\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03948596119880676,\n          \"Height\": 0.009952288120985031,\n          \"Left\": 0.3815154433250427,\n          \"Top\": 0.42050880193710327\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3815154731273651,\n            \"Y\": 0.42050880193710327\n          },\n          {\n            \"X\": 0.42100128531455994,\n            \"Y\": 0.4205285310745239\n          },\n          {\n            \"X\": 0.4210014045238495,\n            \"Y\": 0.4304611086845398\n          },\n          {\n            \"X\": 0.3815154433250427,\n            \"Y\": 0.4304414391517639\n          }\n        ]\n      },\n      \"Id\": \"51f29fbe-0163-4f18-bdcf-68176071b780\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54515075683594,\n      \"Text\": \"308.88\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04655349999666214,\n          \"Height\": 0.009958788752555847,\n          \"Left\": 0.48320090770721436,\n          \"Top\": 0.4206897020339966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48320090770721436,\n            \"Y\": 0.4206897020339966\n          },\n          {\n            \"X\": 0.5297538638114929,\n            \"Y\": 0.420712947845459\n          },\n          {\n            \"X\": 0.5297544002532959,\n            \"Y\": 0.43064847588539124\n          },\n          {\n            \"X\": 0.483201265335083,\n            \"Y\": 0.4306252896785736\n          }\n        ]\n      },\n      \"Id\": \"18da768e-9b60-4678-a5e1-601ebc6c380d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90168762207031,\n      \"Text\": \"HOURLY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0560748428106308,\n          \"Height\": 0.009099747985601425,\n          \"Left\": 0.5761999487876892,\n          \"Top\": 0.4233008921146393\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5761999487876892,\n            \"Y\": 0.4233008921146393\n          },\n          {\n            \"X\": 0.6322739124298096,\n            \"Y\": 0.42332887649536133\n          },\n          {\n            \"X\": 0.6322748064994812,\n            \"Y\": 0.432400643825531\n          },\n          {\n            \"X\": 0.5762006044387817,\n            \"Y\": 0.43237271904945374\n          }\n        ]\n      },\n      \"Id\": \"29d6da6b-e518-4969-8266-b61ef0b319ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92486572265625,\n      \"Text\": \"RATE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034308455884456635,\n          \"Height\": 0.009076039306819439,\n          \"Left\": 0.6335840821266174,\n          \"Top\": 0.42323964834213257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6335840821266174,\n            \"Y\": 0.42323964834213257\n          },\n          {\n            \"X\": 0.6678915619850159,\n            \"Y\": 0.4232567548751831\n          },\n          {\n            \"X\": 0.667892575263977,\n            \"Y\": 0.4323156774044037\n          },\n          {\n            \"X\": 0.6335849761962891,\n            \"Y\": 0.43229860067367554\n          }\n        ]\n      },\n      \"Id\": \"6b7f0b4d-4355-4ac0-a82e-797660123f9a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83885955810547,\n      \"Text\": \"HAS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027083702385425568,\n          \"Height\": 0.009181766770780087,\n          \"Left\": 0.6702347993850708,\n          \"Top\": 0.4233166575431824\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6702347993850708,\n            \"Y\": 0.4233166575431824\n          },\n          {\n            \"X\": 0.697317361831665,\n            \"Y\": 0.423330157995224\n          },\n          {\n            \"X\": 0.6973184943199158,\n            \"Y\": 0.43249842524528503\n          },\n          {\n            \"X\": 0.670235812664032,\n            \"Y\": 0.4324849247932434\n          }\n        ]\n      },\n      \"Id\": \"fed14dcd-b7fa-4cab-98e3-a14e80371e4f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96790313720703,\n      \"Text\": \"BEEN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03591987490653992,\n          \"Height\": 0.009218355640769005,\n          \"Left\": 0.7000350952148438,\n          \"Top\": 0.4232025146484375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7000350952148438,\n            \"Y\": 0.4232025146484375\n          },\n          {\n            \"X\": 0.735953688621521,\n            \"Y\": 0.4232204556465149\n          },\n          {\n            \"X\": 0.7359549403190613,\n            \"Y\": 0.43242087960243225\n          },\n          {\n            \"X\": 0.7000362277030945,\n            \"Y\": 0.43240299820899963\n          }\n        ]\n      },\n      \"Id\": \"4a5ae622-0e5f-4da3-8cbf-0e0e9f2c43f9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90547943115234,\n      \"Text\": \"CHANGED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06508832424879074,\n          \"Height\": 0.0095116151496768,\n          \"Left\": 0.7379435300827026,\n          \"Top\": 0.42300182580947876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7379435300827026,\n            \"Y\": 0.42300182580947876\n          },\n          {\n            \"X\": 0.8030303120613098,\n            \"Y\": 0.42303431034088135\n          },\n          {\n            \"X\": 0.803031861782074,\n            \"Y\": 0.43251344561576843\n          },\n          {\n            \"X\": 0.7379448413848877,\n            \"Y\": 0.4324810206890106\n          }\n        ]\n      },\n      \"Id\": \"0a29366b-6b28-4c74-ac79-263e03a4df9c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84761810302734,\n      \"Text\": \"FROM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03915011137723923,\n          \"Height\": 0.009476016275584698,\n          \"Left\": 0.8052725195884705,\n          \"Top\": 0.4230719804763794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8052725195884705,\n            \"Y\": 0.4230719804763794\n          },\n          {\n            \"X\": 0.8444209098815918,\n            \"Y\": 0.4230915307998657\n          },\n          {\n            \"X\": 0.8444226384162903,\n            \"Y\": 0.43254801630973816\n          },\n          {\n            \"X\": 0.8052740693092346,\n            \"Y\": 0.4325284957885742\n          }\n        ]\n      },\n      \"Id\": \"ef00625e-6d08-4ee1-8b35-4640ec89620e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54336547851562,\n      \"Text\": \"$8.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03384557366371155,\n          \"Height\": 0.010145897977054119,\n          \"Left\": 0.8470821976661682,\n          \"Top\": 0.42288821935653687\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8470821976661682,\n            \"Y\": 0.42288821935653687\n          },\n          {\n            \"X\": 0.8809257745742798,\n            \"Y\": 0.4229051172733307\n          },\n          {\n            \"X\": 0.8809277415275574,\n            \"Y\": 0.43303412199020386\n          },\n          {\n            \"X\": 0.8470840454101562,\n            \"Y\": 0.4330172836780548\n          }\n        ]\n      },\n      \"Id\": \"bd8f39f1-f26f-4edf-8fcb-ea52c8c59bc2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9725341796875,\n      \"Text\": \"NY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02106025069952011,\n          \"Height\": 0.010049689561128616,\n          \"Left\": 0.16559147834777832,\n          \"Top\": 0.4352140426635742\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16559234261512756,\n            \"Y\": 0.4352140426635742\n          },\n          {\n            \"X\": 0.18665172159671783,\n            \"Y\": 0.4352245032787323\n          },\n          {\n            \"X\": 0.18665093183517456,\n            \"Y\": 0.44526371359825134\n          },\n          {\n            \"X\": 0.16559147834777832,\n            \"Y\": 0.44525325298309326\n          }\n        ]\n      },\n      \"Id\": \"310ff29a-f886-4fbd-ac70-0460cdac4d7d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.81659698486328,\n      \"Text\": \"SUI/SDI\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05304966866970062,\n          \"Height\": 0.01050408836454153,\n          \"Left\": 0.18997623026371002,\n          \"Top\": 0.4351488947868347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1899770349264145,\n            \"Y\": 0.4351488947868347\n          },\n          {\n            \"X\": 0.24302589893341064,\n            \"Y\": 0.4351752996444702\n          },\n          {\n            \"X\": 0.2430253028869629,\n            \"Y\": 0.4456529915332794\n          },\n          {\n            \"X\": 0.18997623026371002,\n            \"Y\": 0.4456266164779663\n          }\n        ]\n      },\n      \"Id\": \"d06b7ce0-e1ea-4a59-9fcd-c94bc20a5dde\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88817596435547,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02550383098423481,\n          \"Height\": 0.010226752609014511,\n          \"Left\": 0.24622385203838348,\n          \"Top\": 0.4351258873939514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24622441828250885,\n            \"Y\": 0.4351258873939514\n          },\n          {\n            \"X\": 0.27172768115997314,\n            \"Y\": 0.4351385831832886\n          },\n          {\n            \"X\": 0.27172723412513733,\n            \"Y\": 0.4453526437282562\n          },\n          {\n            \"X\": 0.24622385203838348,\n            \"Y\": 0.44533994793891907\n          }\n        ]\n      },\n      \"Id\": \"ae5d55af-157b-4197-8cb6-907c497d0519\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.85523223876953,\n      \"Text\": \"-0.60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03971990942955017,\n          \"Height\": 0.009622905403375626,\n          \"Left\": 0.3816964030265808,\n          \"Top\": 0.43616586923599243\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.43616586923599243\n          },\n          {\n            \"X\": 0.42141616344451904,\n            \"Y\": 0.43618565797805786\n          },\n          {\n            \"X\": 0.421416312456131,\n            \"Y\": 0.44578877091407776\n          },\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.4457690417766571\n          }\n        ]\n      },\n      \"Id\": \"a3b06a2d-e4ab-441b-90cf-91c4d58d3076\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60066986083984,\n      \"Text\": \"31.20\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03847702220082283,\n          \"Height\": 0.009795776568353176,\n          \"Left\": 0.4915713369846344,\n          \"Top\": 0.4360893666744232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4915713369846344,\n            \"Y\": 0.4360893666744232\n          },\n          {\n            \"X\": 0.5300478339195251,\n            \"Y\": 0.4361085295677185\n          },\n          {\n            \"X\": 0.5300483703613281,\n            \"Y\": 0.44588515162467957\n          },\n          {\n            \"X\": 0.4915717542171478,\n            \"Y\": 0.44586601853370667\n          }\n        ]\n      },\n      \"Id\": \"8f248779-f45a-4511-81cd-ce39c44f1a01\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74107360839844,\n      \"Text\": \"TO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01881721056997776,\n          \"Height\": 0.009343252517282963,\n          \"Left\": 0.5758348107337952,\n          \"Top\": 0.4397321939468384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758348107337952,\n            \"Y\": 0.4397321939468384\n          },\n          {\n            \"X\": 0.5946512818336487,\n            \"Y\": 0.4397415518760681\n          },\n          {\n            \"X\": 0.5946520566940308,\n            \"Y\": 0.44907546043395996\n          },\n          {\n            \"X\": 0.5758355259895325,\n            \"Y\": 0.4490661025047302\n          }\n        ]\n      },\n      \"Id\": \"ef384df2-3d15-446e-a914-a748c3d463f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6883316040039,\n      \"Text\": \"$10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04103569686412811,\n          \"Height\": 0.009443250484764576,\n          \"Left\": 0.597653329372406,\n          \"Top\": 0.4396534264087677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.597653329372406,\n            \"Y\": 0.4396534264087677\n          },\n          {\n            \"X\": 0.6386880874633789,\n            \"Y\": 0.43967384099960327\n          },\n          {\n            \"X\": 0.6386889815330505,\n            \"Y\": 0.4490966796875\n          },\n          {\n            \"X\": 0.5976541042327881,\n            \"Y\": 0.4490763247013092\n          }\n        ]\n      },\n      \"Id\": \"5ea211de-c006-499c-b0c6-343b2decc6fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87431335449219,\n      \"Text\": \"PER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02662653848528862,\n          \"Height\": 0.009241021238267422,\n          \"Left\": 0.6413688659667969,\n          \"Top\": 0.43979254364967346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6413688659667969,\n            \"Y\": 0.43979254364967346\n          },\n          {\n            \"X\": 0.6679943799972534,\n            \"Y\": 0.4398057758808136\n          },\n          {\n            \"X\": 0.6679953932762146,\n            \"Y\": 0.44903355836868286\n          },\n          {\n            \"X\": 0.6413698196411133,\n            \"Y\": 0.4490203261375427\n          }\n        ]\n      },\n      \"Id\": \"393df23d-9ebe-437f-a4ca-3a567ee793ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.23381805419922,\n      \"Text\": \"HOUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042784761637449265,\n          \"Height\": 0.009397015906870365,\n          \"Left\": 0.670056164264679,\n          \"Top\": 0.43972957134246826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.670056164264679,\n            \"Y\": 0.43972957134246826\n          },\n          {\n            \"X\": 0.7128397226333618,\n            \"Y\": 0.4397508502006531\n          },\n          {\n            \"X\": 0.7128409743309021,\n            \"Y\": 0.44912657141685486\n          },\n          {\n            \"X\": 0.6700572371482849,\n            \"Y\": 0.44910532236099243\n          }\n        ]\n      },\n      \"Id\": \"9a88a51a-2aa9-4b09-8817-89651f2018cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 32.72475051879883,\n      \"Text\": \"&\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009392748586833477,\n          \"Height\": 0.012527450919151306,\n          \"Left\": 0.9785712957382202,\n          \"Top\": 0.44773444533348083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9785712957382202,\n            \"Y\": 0.44773444533348083\n          },\n          {\n            \"X\": 0.9879610538482666,\n            \"Y\": 0.4477391242980957\n          },\n          {\n            \"X\": 0.9879640340805054,\n            \"Y\": 0.46026191115379333\n          },\n          {\n            \"X\": 0.9785742163658142,\n            \"Y\": 0.46025723218917847\n          }\n        ]\n      },\n      \"Id\": \"5c9b3e41-ef10-404c-9009-15756cbb1db7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92845153808594,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04166742041707039,\n          \"Height\": 0.010379514656960964,\n          \"Left\": 0.16534243524074554,\n          \"Top\": 0.4571443796157837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534334421157837,\n            \"Y\": 0.4571443796157837\n          },\n          {\n            \"X\": 0.20700985193252563,\n            \"Y\": 0.45716503262519836\n          },\n          {\n            \"X\": 0.20700912177562714,\n            \"Y\": 0.4675239026546478\n          },\n          {\n            \"X\": 0.16534243524074554,\n            \"Y\": 0.46750327944755554\n          }\n        ]\n      },\n      \"Id\": \"6957a98a-8103-43f9-9ad5-257886f65191\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93050384521484,\n      \"Text\": \"Bond\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03663105517625809,\n          \"Height\": 0.010264110751450062,\n          \"Left\": 0.16576214134693146,\n          \"Top\": 0.47256383299827576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657630354166031,\n            \"Y\": 0.47256383299827576\n          },\n          {\n            \"X\": 0.20239320397377014,\n            \"Y\": 0.4725819230079651\n          },\n          {\n            \"X\": 0.20239245891571045,\n            \"Y\": 0.48282793164253235\n          },\n          {\n            \"X\": 0.16576214134693146,\n            \"Y\": 0.4828098714351654\n          }\n        ]\n      },\n      \"Id\": \"32abfca3-cc4b-4229-a00a-6b3922ed3ae7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.17346954345703,\n      \"Text\": \"-5.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04021134972572327,\n          \"Height\": 0.009741549380123615,\n          \"Left\": 0.3806985914707184,\n          \"Top\": 0.47330498695373535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38069862127304077,\n            \"Y\": 0.47330498695373535\n          },\n          {\n            \"X\": 0.4209098219871521,\n            \"Y\": 0.47332486510276794\n          },\n          {\n            \"X\": 0.42090994119644165,\n            \"Y\": 0.4830465316772461\n          },\n          {\n            \"X\": 0.3806985914707184,\n            \"Y\": 0.4830267131328583\n          }\n        ]\n      },\n      \"Id\": \"c3875805-9a0d-42d0-86ad-57dc995fac7f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50401306152344,\n      \"Text\": \"100.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04519687965512276,\n          \"Height\": 0.00982965249568224,\n          \"Left\": 0.48456546664237976,\n          \"Top\": 0.4732814431190491\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48456546664237976,\n            \"Y\": 0.4732814431190491\n          },\n          {\n            \"X\": 0.529761791229248,\n            \"Y\": 0.47330376505851746\n          },\n          {\n            \"X\": 0.529762327671051,\n            \"Y\": 0.48311108350753784\n          },\n          {\n            \"X\": 0.4845658242702484,\n            \"Y\": 0.48308882117271423\n          }\n        ]\n      },\n      \"Id\": \"d9f37f5c-f41f-4f26-aa4c-f2f9adb20f0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64082336425781,\n      \"Text\": \"WE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022146351635456085,\n          \"Height\": 0.008958603255450726,\n          \"Left\": 0.575558602809906,\n          \"Top\": 0.4723031520843506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.575558602809906,\n            \"Y\": 0.4723031520843506\n          },\n          {\n            \"X\": 0.5977042317390442,\n            \"Y\": 0.47231411933898926\n          },\n          {\n            \"X\": 0.5977049469947815,\n            \"Y\": 0.4812617599964142\n          },\n          {\n            \"X\": 0.5755592584609985,\n            \"Y\": 0.4812508523464203\n          }\n        ]\n      },\n      \"Id\": \"e260d491-ddc6-4a9d-8fae-1ee23741e634\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79141998291016,\n      \"Text\": \"WILL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032322049140930176,\n          \"Height\": 0.009389984421432018,\n          \"Left\": 0.5991902947425842,\n          \"Top\": 0.4726877212524414\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5991902947425842,\n            \"Y\": 0.4726877212524414\n          },\n          {\n            \"X\": 0.6315114498138428,\n            \"Y\": 0.4727036952972412\n          },\n          {\n            \"X\": 0.6315123438835144,\n            \"Y\": 0.4820777177810669\n          },\n          {\n            \"X\": 0.5991910696029663,\n            \"Y\": 0.4820617735385895\n          }\n        ]\n      },\n      \"Id\": \"1e9eeb6a-f2ba-451d-9a11-156bd3646959\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87254333496094,\n      \"Text\": \"BE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01763339154422283,\n          \"Height\": 0.009307599626481533,\n          \"Left\": 0.6339937448501587,\n          \"Top\": 0.47241654992103577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6339937448501587,\n            \"Y\": 0.47241654992103577\n          },\n          {\n            \"X\": 0.6516261696815491,\n            \"Y\": 0.472425252199173\n          },\n          {\n            \"X\": 0.6516271829605103,\n            \"Y\": 0.4817241430282593\n          },\n          {\n            \"X\": 0.6339946985244751,\n            \"Y\": 0.48171544075012207\n          }\n        ]\n      },\n      \"Id\": \"dd0ae71d-1551-4c01-a5c8-53b23de21011\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95793914794922,\n      \"Text\": \"STARTING\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06485544890165329,\n          \"Height\": 0.009564821608364582,\n          \"Left\": 0.6544713377952576,\n          \"Top\": 0.47244980931282043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6544713377952576,\n            \"Y\": 0.47244980931282043\n          },\n          {\n            \"X\": 0.7193255424499512,\n            \"Y\": 0.4724818766117096\n          },\n          {\n            \"X\": 0.7193267941474915,\n            \"Y\": 0.48201462626457214\n          },\n          {\n            \"X\": 0.6544723510742188,\n            \"Y\": 0.48198264837265015\n          }\n        ]\n      },\n      \"Id\": \"788a2f60-2cb7-4536-9194-ebbbeb5890f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.738525390625,\n      \"Text\": \"OUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02970312535762787,\n          \"Height\": 0.00947886984795332,\n          \"Left\": 0.7216252088546753,\n          \"Top\": 0.4723363518714905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7216252088546753,\n            \"Y\": 0.4723363518714905\n          },\n          {\n            \"X\": 0.7513269782066345,\n            \"Y\": 0.4723510146141052\n          },\n          {\n            \"X\": 0.7513283491134644,\n            \"Y\": 0.4818152189254761\n          },\n          {\n            \"X\": 0.7216264605522156,\n            \"Y\": 0.48180055618286133\n          }\n        ]\n      },\n      \"Id\": \"3c7b86dc-da8b-43f6-9493-7d6a437e1332\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93145751953125,\n      \"Text\": \"UNITED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04779624566435814,\n          \"Height\": 0.009390078485012054,\n          \"Left\": 0.753862202167511,\n          \"Top\": 0.47226518392562866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.753862202167511,\n            \"Y\": 0.47226518392562866\n          },\n          {\n            \"X\": 0.8016569018363953,\n            \"Y\": 0.4722888171672821\n          },\n          {\n            \"X\": 0.8016584515571594,\n            \"Y\": 0.4816552698612213\n          },\n          {\n            \"X\": 0.7538635730743408,\n            \"Y\": 0.48163169622421265\n          }\n        ]\n      },\n      \"Id\": \"8c22b54f-0be0-45ab-bbe3-07e9fca60d55\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7958984375,\n      \"Text\": \"WAY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03239158168435097,\n          \"Height\": 0.009366209618747234,\n          \"Left\": 0.8020788431167603,\n          \"Top\": 0.4722622036933899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8020788431167603,\n            \"Y\": 0.4722622036933899\n          },\n          {\n            \"X\": 0.8344687819480896,\n            \"Y\": 0.4722782075405121\n          },\n          {\n            \"X\": 0.8344704508781433,\n            \"Y\": 0.4816283881664276\n          },\n          {\n            \"X\": 0.8020803928375244,\n            \"Y\": 0.4816124141216278\n          }\n        ]\n      },\n      \"Id\": \"202b9f25-1839-4cdb-83fc-847059568bcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89104461669922,\n      \"Text\": \"FUND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03728378191590309,\n          \"Height\": 0.009766828268766403,\n          \"Left\": 0.8361884355545044,\n          \"Top\": 0.47257593274116516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8361884355545044,\n            \"Y\": 0.47257593274116516\n          },\n          {\n            \"X\": 0.8734703063964844,\n            \"Y\": 0.47259435057640076\n          },\n          {\n            \"X\": 0.8734722137451172,\n            \"Y\": 0.48234274983406067\n          },\n          {\n            \"X\": 0.8361901640892029,\n            \"Y\": 0.48232436180114746\n          }\n        ]\n      },\n      \"Id\": \"03741d98-dc29-44f3-9697-f3026032690b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 20.746511459350586,\n      \"Text\": \"PDP\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011251576244831085,\n          \"Height\": 0.015544673427939415,\n          \"Left\": 0.9762770533561707,\n          \"Top\": 0.4635232090950012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9762770533561707,\n            \"Y\": 0.4635232090950012\n          },\n          {\n            \"X\": 0.9875249266624451,\n            \"Y\": 0.4635287821292877\n          },\n          {\n            \"X\": 0.9875286221504211,\n            \"Y\": 0.479067862033844\n          },\n          {\n            \"X\": 0.976280689239502,\n            \"Y\": 0.4790623188018799\n          }\n        ]\n      },\n      \"Id\": \"efa0189d-fecf-49e7-b6fc-a4c5dc50b7c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.72502136230469,\n      \"Text\": \"401(k)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04080589860677719,\n          \"Height\": 0.011710687540471554,\n          \"Left\": 0.1653653085231781,\n          \"Top\": 0.4880644679069519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16536633670330048,\n            \"Y\": 0.4880644679069519\n          },\n          {\n            \"X\": 0.2061712145805359,\n            \"Y\": 0.4880845844745636\n          },\n          {\n            \"X\": 0.20617038011550903,\n            \"Y\": 0.4997751712799072\n          },\n          {\n            \"X\": 0.1653653085231781,\n            \"Y\": 0.4997551143169403\n          }\n        ]\n      },\n      \"Id\": \"84b18b36-a59a-4d5e-8a91-5407a4ec9b75\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 55.95808029174805,\n      \"Text\": \"-28.85*\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05343848466873169,\n          \"Height\": 0.009626035578548908,\n          \"Left\": 0.3734176754951477,\n          \"Top\": 0.48896968364715576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3734177052974701,\n            \"Y\": 0.48896968364715576\n          },\n          {\n            \"X\": 0.42685598134994507,\n            \"Y\": 0.4889959990978241\n          },\n          {\n            \"X\": 0.4268561601638794,\n            \"Y\": 0.4985957145690918\n          },\n          {\n            \"X\": 0.3734176754951477,\n            \"Y\": 0.49856942892074585\n          }\n        ]\n      },\n      \"Id\": \"28b62964-430b-4cfa-ab6d-c7fff628c158\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.917724609375,\n      \"Text\": \"1,500.20\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05830708518624306,\n          \"Height\": 0.010335884988307953,\n          \"Left\": 0.4716174304485321,\n          \"Top\": 0.48859354853630066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716174304485321,\n            \"Y\": 0.48859354853630066\n          },\n          {\n            \"X\": 0.5299239158630371,\n            \"Y\": 0.4886222779750824\n          },\n          {\n            \"X\": 0.5299245119094849,\n            \"Y\": 0.4989294409751892\n          },\n          {\n            \"X\": 0.47161775827407837,\n            \"Y\": 0.49890077114105225\n          }\n        ]\n      },\n      \"Id\": \"88d81e47-261a-4ed7-9805-b7431d7c87d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92007446289062,\n      \"Text\": \"DRIVE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038724638521671295,\n          \"Height\": 0.009412858635187149,\n          \"Left\": 0.576322078704834,\n          \"Top\": 0.48879408836364746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576322078704834,\n            \"Y\": 0.48879408836364746\n          },\n          {\n            \"X\": 0.6150459051132202,\n            \"Y\": 0.4888131618499756\n          },\n          {\n            \"X\": 0.6150467395782471,\n            \"Y\": 0.4982069432735443\n          },\n          {\n            \"X\": 0.5763227939605713,\n            \"Y\": 0.4981878995895386\n          }\n        ]\n      },\n      \"Id\": \"d4333bf3-98f9-48d6-b12c-a80e6be967b4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90444946289062,\n      \"Text\": \"SOON\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03929765149950981,\n          \"Height\": 0.009431937709450722,\n          \"Left\": 0.6173473596572876,\n          \"Top\": 0.48879027366638184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6173473596572876,\n            \"Y\": 0.48879027366638184\n          },\n          {\n            \"X\": 0.6566440463066101,\n            \"Y\": 0.48880961537361145\n          },\n          {\n            \"X\": 0.6566449999809265,\n            \"Y\": 0.4982222020626068\n          },\n          {\n            \"X\": 0.6173482537269592,\n            \"Y\": 0.4982028901576996\n          }\n        ]\n      },\n      \"Id\": \"b6c6fdd3-b73a-47d5-8255-a0c039ac48b4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94512176513672,\n      \"Text\": \"AND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02901875413954258,\n          \"Height\": 0.0094564538449049,\n          \"Left\": 0.6582708358764648,\n          \"Top\": 0.4888558089733124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6582708358764648,\n            \"Y\": 0.4888558089733124\n          },\n          {\n            \"X\": 0.6872884631156921,\n            \"Y\": 0.48887011408805847\n          },\n          {\n            \"X\": 0.6872895956039429,\n            \"Y\": 0.4983122646808624\n          },\n          {\n            \"X\": 0.658271849155426,\n            \"Y\": 0.4982980191707611\n          }\n        ]\n      },\n      \"Id\": \"f873564e-0a00-456d-9687-2f208aecc7fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88664245605469,\n      \"Text\": \"LOOK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037521444261074066,\n          \"Height\": 0.009446186013519764,\n          \"Left\": 0.6892567873001099,\n          \"Top\": 0.48880481719970703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6892567873001099,\n            \"Y\": 0.48880481719970703\n          },\n          {\n            \"X\": 0.7267770171165466,\n            \"Y\": 0.4888232946395874\n          },\n          {\n            \"X\": 0.7267782688140869,\n            \"Y\": 0.4982509911060333\n          },\n          {\n            \"X\": 0.6892579197883606,\n            \"Y\": 0.49823254346847534\n          }\n        ]\n      },\n      \"Id\": \"b633cd5c-3101-4eb1-91f9-658b528abc63\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9275894165039,\n      \"Text\": \"FORWARD\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06710369139909744,\n          \"Height\": 0.009677546098828316,\n          \"Left\": 0.7286721467971802,\n          \"Top\": 0.48873424530029297\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7286721467971802,\n            \"Y\": 0.48873424530029297\n          },\n          {\n            \"X\": 0.7957742810249329,\n            \"Y\": 0.4887672960758209\n          },\n          {\n            \"X\": 0.795775830745697,\n            \"Y\": 0.49841177463531494\n          },\n          {\n            \"X\": 0.7286733984947205,\n            \"Y\": 0.49837878346443176\n          }\n        ]\n      },\n      \"Id\": \"52bb55c1-0759-43a6-9d64-d893a8149e0e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93864440917969,\n      \"Text\": \"TO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01848890259861946,\n          \"Height\": 0.009209102019667625,\n          \"Left\": 0.7979978322982788,\n          \"Top\": 0.48884493112564087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7979978322982788,\n            \"Y\": 0.48884493112564087\n          },\n          {\n            \"X\": 0.8164851665496826,\n            \"Y\": 0.4888540208339691\n          },\n          {\n            \"X\": 0.8164867162704468,\n            \"Y\": 0.49805402755737305\n          },\n          {\n            \"X\": 0.7979993224143982,\n            \"Y\": 0.4980449378490448\n          }\n        ]\n      },\n      \"Id\": \"a44988d0-cea0-4e2c-893c-ec509b132ac8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82540893554688,\n      \"Text\": \"YOUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03829444944858551,\n          \"Height\": 0.009317644871771336,\n          \"Left\": 0.8189597129821777,\n          \"Top\": 0.48881426453590393\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8189597129821777,\n            \"Y\": 0.48881426453590393\n          },\n          {\n            \"X\": 0.8572524189949036,\n            \"Y\": 0.48883312940597534\n          },\n          {\n            \"X\": 0.857254147529602,\n            \"Y\": 0.4981319010257721\n          },\n          {\n            \"X\": 0.8189612627029419,\n            \"Y\": 0.49811309576034546\n          }\n        ]\n      },\n      \"Id\": \"56db26eb-b94d-47d8-9048-ef366548f22b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 20.658769607543945,\n      \"Text\": \"8000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01206609234213829,\n          \"Height\": 0.01607183739542961,\n          \"Left\": 0.9756705164909363,\n          \"Top\": 0.4813154935836792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9756705164909363,\n            \"Y\": 0.4813154935836792\n          },\n          {\n            \"X\": 0.9877328276634216,\n            \"Y\": 0.48132142424583435\n          },\n          {\n            \"X\": 0.9877365827560425,\n            \"Y\": 0.4973873198032379\n          },\n          {\n            \"X\": 0.9756742715835571,\n            \"Y\": 0.49738138914108276\n          }\n        ]\n      },\n      \"Id\": \"5f2e19cf-b8c0-42db-becf-8319e3a21680\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86009216308594,\n      \"Text\": \"Stock\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03948558121919632,\n          \"Height\": 0.010403621941804886,\n          \"Left\": 0.16561101377010345,\n          \"Top\": 0.5030400156974792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16561192274093628,\n            \"Y\": 0.5030400156974792\n          },\n          {\n            \"X\": 0.20509660243988037,\n            \"Y\": 0.5030593872070312\n          },\n          {\n            \"X\": 0.20509585738182068,\n            \"Y\": 0.513443648815155\n          },\n          {\n            \"X\": 0.16561101377010345,\n            \"Y\": 0.513424277305603\n          }\n        ]\n      },\n      \"Id\": \"a147593b-9806-43c3-a6d3-c2cba5271340\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79281616210938,\n      \"Text\": \"Plan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029751131311058998,\n          \"Height\": 0.010428785346448421,\n          \"Left\": 0.2077360600233078,\n          \"Top\": 0.5030913352966309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2077367901802063,\n            \"Y\": 0.5030913352966309\n          },\n          {\n            \"X\": 0.23748718202114105,\n            \"Y\": 0.5031059384346008\n          },\n          {\n            \"X\": 0.2374865710735321,\n            \"Y\": 0.5135201215744019\n          },\n          {\n            \"X\": 0.2077360600233078,\n            \"Y\": 0.5135055184364319\n          }\n        ]\n      },\n      \"Id\": \"2235bea1-8c99-4ad1-aee4-6d3551fe70de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.43785858154297,\n      \"Text\": \"-15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04389195889234543,\n          \"Height\": 0.009818912483751774,\n          \"Left\": 0.3776674270629883,\n          \"Top\": 0.5039076805114746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37766745686531067,\n            \"Y\": 0.5039076805114746\n          },\n          {\n            \"X\": 0.42155924439430237,\n            \"Y\": 0.5039291977882385\n          },\n          {\n            \"X\": 0.4215593636035919,\n            \"Y\": 0.5137265920639038\n          },\n          {\n            \"X\": 0.3776674270629883,\n            \"Y\": 0.5137050747871399\n          }\n        ]\n      },\n      \"Id\": \"92cec4cc-d709-4acd-bf86-6780587f8810\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70083618164062,\n      \"Text\": \"150.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045238297432661057,\n          \"Height\": 0.009857072494924068,\n          \"Left\": 0.4847920835018158,\n          \"Top\": 0.5039575099945068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4847920835018158,\n            \"Y\": 0.5039575099945068\n          },\n          {\n            \"X\": 0.530029833316803,\n            \"Y\": 0.5039797425270081\n          },\n          {\n            \"X\": 0.530030369758606,\n            \"Y\": 0.5138146281242371\n          },\n          {\n            \"X\": 0.48479247093200684,\n            \"Y\": 0.5137924551963806\n          }\n        ]\n      },\n      \"Id\": \"22a7df8a-52b6-45ba-9906-0bb9f7999653\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 81.60974884033203,\n      \"Text\": \"PARTICIPATION\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10165880620479584,\n          \"Height\": 0.009729065001010895,\n          \"Left\": 0.5767770409584045,\n          \"Top\": 0.5050473213195801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767770409584045,\n            \"Y\": 0.5050473213195801\n          },\n          {\n            \"X\": 0.6784347295761108,\n            \"Y\": 0.5050972104072571\n          },\n          {\n            \"X\": 0.6784358620643616,\n            \"Y\": 0.5147764086723328\n          },\n          {\n            \"X\": 0.5767777562141418,\n            \"Y\": 0.5147265791893005\n          }\n        ]\n      },\n      \"Id\": \"7a347baf-8dce-4640-8be8-f9ff9a8a40c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 72.43475341796875,\n      \"Text\": \"2000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009551375173032284,\n          \"Height\": 0.020518435165286064,\n          \"Left\": 0.9777013063430786,\n          \"Top\": 0.5007089972496033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777013063430786,\n            \"Y\": 0.5007089972496033\n          },\n          {\n            \"X\": 0.987247884273529,\n            \"Y\": 0.5007137060165405\n          },\n          {\n            \"X\": 0.9872527122497559,\n            \"Y\": 0.5212274789810181\n          },\n          {\n            \"X\": 0.9777061343193054,\n            \"Y\": 0.5212227702140808\n          }\n        ]\n      },\n      \"Id\": \"c4ee6ceb-001a-40e8-8fa1-e7316f03343c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79086303710938,\n      \"Text\": \"Life\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02501334808766842,\n          \"Height\": 0.010393071919679642,\n          \"Left\": 0.16534756124019623,\n          \"Top\": 0.5186522006988525\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534847021102905,\n            \"Y\": 0.5186522006988525\n          },\n          {\n            \"X\": 0.1903609037399292,\n            \"Y\": 0.5186644196510315\n          },\n          {\n            \"X\": 0.19036011397838593,\n            \"Y\": 0.5290452837944031\n          },\n          {\n            \"X\": 0.16534756124019623,\n            \"Y\": 0.5290330648422241\n          }\n        ]\n      },\n      \"Id\": \"d2f367e1-33e1-4c0e-9864-ce9e0ed64b92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.53080749511719,\n      \"Text\": \"Insurance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06482359766960144,\n          \"Height\": 0.010144668631255627,\n          \"Left\": 0.19411103427410126,\n          \"Top\": 0.5186437964439392\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19411180913448334,\n            \"Y\": 0.5186437964439392\n          },\n          {\n            \"X\": 0.2589346170425415,\n            \"Y\": 0.5186755657196045\n          },\n          {\n            \"X\": 0.2589341104030609,\n            \"Y\": 0.5287884473800659\n          },\n          {\n            \"X\": 0.19411103427410126,\n            \"Y\": 0.5287567973136902\n          }\n        ]\n      },\n      \"Id\": \"94fe9fff-14dc-4316-ab4d-bd24f97d39fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.11956024169922,\n      \"Text\": \"-5.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040407564491033554,\n          \"Height\": 0.009700830094516277,\n          \"Left\": 0.3808732032775879,\n          \"Top\": 0.519393801689148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.519393801689148\n          },\n          {\n            \"X\": 0.4212806224822998,\n            \"Y\": 0.5194135904312134\n          },\n          {\n            \"X\": 0.42128074169158936,\n            \"Y\": 0.5290946364402771\n          },\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.5290749073028564\n          }\n        ]\n      },\n      \"Id\": \"67340234-c0ff-401f-9b26-e12ffb06d6fe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5484619140625,\n      \"Text\": \"50.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03804484009742737,\n          \"Height\": 0.009686019271612167,\n          \"Left\": 0.49207040667533875,\n          \"Top\": 0.5194575786590576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49207040667533875,\n            \"Y\": 0.5194575786590576\n          },\n          {\n            \"X\": 0.5301147103309631,\n            \"Y\": 0.5194761753082275\n          },\n          {\n            \"X\": 0.5301152467727661,\n            \"Y\": 0.5291435718536377\n          },\n          {\n            \"X\": 0.4920707941055298,\n            \"Y\": 0.5291249752044678\n          }\n        ]\n      },\n      \"Id\": \"58c031e5-5f8f-4c18-9ba5-4788fe7ae4aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98017883300781,\n      \"Text\": \"Loan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033557310700416565,\n          \"Height\": 0.010077397339046001,\n          \"Left\": 0.16546224057674408,\n          \"Top\": 0.5340374112129211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16546311974525452,\n            \"Y\": 0.5340374112129211\n          },\n          {\n            \"X\": 0.19901955127716064,\n            \"Y\": 0.5340538024902344\n          },\n          {\n            \"X\": 0.19901880621910095,\n            \"Y\": 0.5441148281097412\n          },\n          {\n            \"X\": 0.16546224057674408,\n            \"Y\": 0.5440984964370728\n          }\n        ]\n      },\n      \"Id\": \"a0fd8ce3-a5eb-481c-b250-d0f0fb807cd3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 49.552772521972656,\n      \"Text\": \"2001\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009131364524364471,\n          \"Height\": 0.01764838956296444,\n          \"Left\": 0.9777453541755676,\n          \"Top\": 0.5230948328971863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777453541755676,\n            \"Y\": 0.5230948328971863\n          },\n          {\n            \"X\": 0.9868725538253784,\n            \"Y\": 0.5230993032455444\n          },\n          {\n            \"X\": 0.9868767261505127,\n            \"Y\": 0.5407432317733765\n          },\n          {\n            \"X\": 0.9777494668960571,\n            \"Y\": 0.5407388210296631\n          }\n        ]\n      },\n      \"Id\": \"6a993484-f268-4adc-88ff-ac51cb1a1f2a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 70.24380493164062,\n      \"Text\": \"-30.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04858388379216194,\n          \"Height\": 0.009743551723659039,\n          \"Left\": 0.3726392686367035,\n          \"Top\": 0.534624457359314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37263932824134827,\n            \"Y\": 0.534624457359314\n          },\n          {\n            \"X\": 0.4212230145931244,\n            \"Y\": 0.5346481800079346\n          },\n          {\n            \"X\": 0.42122316360473633,\n            \"Y\": 0.5443680286407471\n          },\n          {\n            \"X\": 0.3726392686367035,\n            \"Y\": 0.5443443655967712\n          }\n        ]\n      },\n      \"Id\": \"0053565b-9761-4cdb-959c-6a7c6eeda831\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50465393066406,\n      \"Text\": \"150.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045781053602695465,\n          \"Height\": 0.009885708801448345,\n          \"Left\": 0.4842190742492676,\n          \"Top\": 0.5347295999526978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4842190742492676,\n            \"Y\": 0.5347295999526978\n          },\n          {\n            \"X\": 0.5299995541572571,\n            \"Y\": 0.5347519516944885\n          },\n          {\n            \"X\": 0.5300001502037048,\n            \"Y\": 0.5446153283119202\n          },\n          {\n            \"X\": 0.4842194616794586,\n            \"Y\": 0.5445930361747742\n          }\n        ]\n      },\n      \"Id\": \"e3f98d5b-6d90-4d4e-b902-4477c01b0926\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92391967773438,\n      \"Text\": \"Adjustment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08251450955867767,\n          \"Height\": 0.012692177668213844,\n          \"Left\": 0.1650719940662384,\n          \"Top\": 0.5555633902549744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16507309675216675,\n            \"Y\": 0.5555633902549744\n          },\n          {\n            \"X\": 0.24758650362491608,\n            \"Y\": 0.5556034445762634\n          },\n          {\n            \"X\": 0.24758580327033997,\n            \"Y\": 0.5682555437088013\n          },\n          {\n            \"X\": 0.1650719940662384,\n            \"Y\": 0.568215548992157\n          }\n        ]\n      },\n      \"Id\": \"745981c1-84ae-4e67-a859-140bbda4549c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 19.263839721679688,\n      \"Text\": \"00000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009525571949779987,\n          \"Height\": 0.023477010428905487,\n          \"Left\": 0.9778505563735962,\n          \"Top\": 0.5443591475486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9778505563735962,\n            \"Y\": 0.5443591475486755\n          },\n          {\n            \"X\": 0.9873705506324768,\n            \"Y\": 0.5443637371063232\n          },\n          {\n            \"X\": 0.9873760938644409,\n            \"Y\": 0.5678361654281616\n          },\n          {\n            \"X\": 0.9778560400009155,\n            \"Y\": 0.5678315162658691\n          }\n        ]\n      },\n      \"Id\": \"0ee1a745-9ad3-43ba-b1f8-b7407d1e8ce5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72137451171875,\n      \"Text\": \"Life\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02444257214665413,\n          \"Height\": 0.010491094551980495,\n          \"Left\": 0.16571971774101257,\n          \"Top\": 0.5709601044654846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657206416130066,\n            \"Y\": 0.5709601044654846\n          },\n          {\n            \"X\": 0.1901623010635376,\n            \"Y\": 0.5709719657897949\n          },\n          {\n            \"X\": 0.19016148149967194,\n            \"Y\": 0.5814512372016907\n          },\n          {\n            \"X\": 0.16571971774101257,\n            \"Y\": 0.5814394354820251\n          }\n        ]\n      },\n      \"Id\": \"f3154a2b-b52c-4496-bf90-0aa6e42c1ea6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.11564636230469,\n      \"Text\": \"Insurance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06437728554010391,\n          \"Height\": 0.010127737186849117,\n          \"Left\": 0.1942756325006485,\n          \"Top\": 0.5710605382919312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19427639245986938,\n            \"Y\": 0.5710605382919312\n          },\n          {\n            \"X\": 0.2586528956890106,\n            \"Y\": 0.5710917115211487\n          },\n          {\n            \"X\": 0.25865238904953003,\n            \"Y\": 0.5811883211135864\n          },\n          {\n            \"X\": 0.1942756325006485,\n            \"Y\": 0.5811571478843689\n          }\n        ]\n      },\n      \"Id\": \"f1671341-bf20-47d5-809a-35fe55cd5929\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 50.21247100830078,\n      \"Text\": \"+ 13.50\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049284689128398895,\n          \"Height\": 0.01033841073513031,\n          \"Left\": 0.3715052306652069,\n          \"Top\": 0.5710830688476562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3715052902698517,\n            \"Y\": 0.5710830688476562\n          },\n          {\n            \"X\": 0.42078977823257446,\n            \"Y\": 0.5711069107055664\n          },\n          {\n            \"X\": 0.420789897441864,\n            \"Y\": 0.581421434879303\n          },\n          {\n            \"X\": 0.3715052306652069,\n            \"Y\": 0.5813976526260376\n          }\n        ]\n      },\n      \"Id\": \"3868275e-9e19-4b33-8067-26216338de31\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67620086669922,\n      \"Text\": \"Net\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02631325274705887,\n          \"Height\": 0.01062931027263403,\n          \"Left\": 0.16664595901966095,\n          \"Top\": 0.5937259793281555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16664688289165497,\n            \"Y\": 0.5937259793281555\n          },\n          {\n            \"X\": 0.19295921921730042,\n            \"Y\": 0.5937386155128479\n          },\n          {\n            \"X\": 0.19295839965343475,\n            \"Y\": 0.6043552756309509\n          },\n          {\n            \"X\": 0.16664595901966095,\n            \"Y\": 0.6043425798416138\n          }\n        ]\n      },\n      \"Id\": \"ec0612e9-fb61-4ba2-8241-9c70d457d3bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7108154296875,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027636241167783737,\n          \"Height\": 0.012285953387618065,\n          \"Left\": 0.19583238661289215,\n          \"Top\": 0.594002366065979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19583331048488617,\n            \"Y\": 0.594002366065979\n          },\n          {\n            \"X\": 0.2234686315059662,\n            \"Y\": 0.5940156579017639\n          },\n          {\n            \"X\": 0.2234678417444229,\n            \"Y\": 0.6062883138656616\n          },\n          {\n            \"X\": 0.19583238661289215,\n            \"Y\": 0.6062750220298767\n          }\n        ]\n      },\n      \"Id\": \"311d5ffb-bb9a-4fee-855b-227840e23af8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.27107238769531,\n      \"Text\": \"$291.90\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059976059943437576,\n          \"Height\": 0.010888412594795227,\n          \"Left\": 0.36117327213287354,\n          \"Top\": 0.5935595631599426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3611733913421631,\n            \"Y\": 0.5935595631599426\n          },\n          {\n            \"X\": 0.42114919424057007,\n            \"Y\": 0.5935884714126587\n          },\n          {\n            \"X\": 0.421149343252182,\n            \"Y\": 0.6044479608535767\n          },\n          {\n            \"X\": 0.36117327213287354,\n            \"Y\": 0.6044191122055054\n          }\n        ]\n      },\n      \"Id\": \"1784c1fe-9099-4a69-8e4a-d186fee83049\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.66609954833984,\n      \"Text\": \"Excluded\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07191898673772812,\n          \"Height\": 0.011313659138977528,\n          \"Left\": 0.17361406981945038,\n          \"Top\": 0.6250417828559875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17361502349376678,\n            \"Y\": 0.6250417828559875\n          },\n          {\n            \"X\": 0.2455330640077591,\n            \"Y\": 0.6250762343406677\n          },\n          {\n            \"X\": 0.24553243815898895,\n            \"Y\": 0.636355459690094\n          },\n          {\n            \"X\": 0.17361406981945038,\n            \"Y\": 0.6363210678100586\n          }\n        ]\n      },\n      \"Id\": \"1eda4157-0cd0-4276-ab0b-eb014465534e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97282409667969,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034399960190057755,\n          \"Height\": 0.0106013473123312,\n          \"Left\": 0.25225964188575745,\n          \"Top\": 0.6254462003707886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2522602081298828,\n            \"Y\": 0.6254462003707886\n          },\n          {\n            \"X\": 0.2866595983505249,\n            \"Y\": 0.6254627108573914\n          },\n          {\n            \"X\": 0.2866591811180115,\n            \"Y\": 0.6360475420951843\n          },\n          {\n            \"X\": 0.25225964188575745,\n            \"Y\": 0.6360310912132263\n          }\n        ]\n      },\n      \"Id\": \"92bacfec-50f9-4fe2-9ded-418ce015fbaf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8582992553711,\n      \"Text\": \"federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050328463315963745,\n          \"Height\": 0.010853709653019905,\n          \"Left\": 0.29324519634246826,\n          \"Top\": 0.625353991985321\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2932455837726593,\n            \"Y\": 0.625353991985321\n          },\n          {\n            \"X\": 0.343573659658432,\n            \"Y\": 0.6253781318664551\n          },\n          {\n            \"X\": 0.3435734808444977,\n            \"Y\": 0.6362076997756958\n          },\n          {\n            \"X\": 0.29324519634246826,\n            \"Y\": 0.6361836791038513\n          }\n        ]\n      },\n      \"Id\": \"346117d5-99b2-45fb-b084-6e3c931c303e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81031799316406,\n      \"Text\": \"taxable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05278989300131798,\n          \"Height\": 0.010744208469986916,\n          \"Left\": 0.349907249212265,\n          \"Top\": 0.6254357099533081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34990739822387695,\n            \"Y\": 0.6254357099533081\n          },\n          {\n            \"X\": 0.40269705653190613,\n            \"Y\": 0.6254609823226929\n          },\n          {\n            \"X\": 0.4026971459388733,\n            \"Y\": 0.6361799240112305\n          },\n          {\n            \"X\": 0.349907249212265,\n            \"Y\": 0.6361546516418457\n          }\n        ]\n      },\n      \"Id\": \"88f4b172-ae5a-4fce-99e1-a91930bafadd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8554458618164,\n      \"Text\": \"wages\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04726226255297661,\n          \"Height\": 0.010768145322799683,\n          \"Left\": 0.40874597430229187,\n          \"Top\": 0.6273600459098816\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40874597430229187,\n            \"Y\": 0.6273600459098816\n          },\n          {\n            \"X\": 0.4560079276561737,\n            \"Y\": 0.6273826360702515\n          },\n          {\n            \"X\": 0.4560082256793976,\n            \"Y\": 0.6381281614303589\n          },\n          {\n            \"X\": 0.40874606370925903,\n            \"Y\": 0.638105571269989\n          }\n        ]\n      },\n      \"Id\": \"00f6f2e5-3e28-47cd-8154-29655fd1058b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76924896240234,\n      \"Text\": \"Your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03369719907641411,\n          \"Height\": 0.010599708184599876,\n          \"Left\": 0.17867200076580048,\n          \"Top\": 0.6571917533874512\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786728799343109,\n            \"Y\": 0.6571917533874512\n          },\n          {\n            \"X\": 0.21236920356750488,\n            \"Y\": 0.6572077870368958\n          },\n          {\n            \"X\": 0.21236847341060638,\n            \"Y\": 0.6677914261817932\n          },\n          {\n            \"X\": 0.17867200076580048,\n            \"Y\": 0.6677754521369934\n          }\n        ]\n      },\n      \"Id\": \"562e01fb-b19c-411a-ae82-9f126855c3e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88612365722656,\n      \"Text\": \"federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04723221808671951,\n          \"Height\": 0.010994775220751762,\n          \"Left\": 0.21782034635543823,\n          \"Top\": 0.6570504903793335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21782107651233673,\n            \"Y\": 0.6570504903793335\n          },\n          {\n            \"X\": 0.26505255699157715,\n            \"Y\": 0.6570729613304138\n          },\n          {\n            \"X\": 0.26505202054977417,\n            \"Y\": 0.6680452823638916\n          },\n          {\n            \"X\": 0.21782034635543823,\n            \"Y\": 0.6680228114128113\n          }\n        ]\n      },\n      \"Id\": \"ef576862-a59d-4664-8d0c-c2831ece716b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93282318115234,\n      \"Text\": \"wages\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0451899953186512,\n          \"Height\": 0.010853021405637264,\n          \"Left\": 0.27042484283447266,\n          \"Top\": 0.6592820286750793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27042534947395325,\n            \"Y\": 0.6592820286750793\n          },\n          {\n            \"X\": 0.31561484932899475,\n            \"Y\": 0.6593035459518433\n          },\n          {\n            \"X\": 0.3156145215034485,\n            \"Y\": 0.6701350808143616\n          },\n          {\n            \"X\": 0.27042484283447266,\n            \"Y\": 0.6701136231422424\n          }\n        ]\n      },\n      \"Id\": \"992b9de3-4418-4e13-91db-cfec3bcdd927\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8707504272461,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025236966088414192,\n          \"Height\": 0.010532569140195847,\n          \"Left\": 0.32224714756011963,\n          \"Top\": 0.6574049592018127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3222474157810211,\n            \"Y\": 0.6574049592018127\n          },\n          {\n            \"X\": 0.34748411178588867,\n            \"Y\": 0.6574169397354126\n          },\n          {\n            \"X\": 0.34748393297195435,\n            \"Y\": 0.6679375171661377\n          },\n          {\n            \"X\": 0.32224714756011963,\n            \"Y\": 0.6679255366325378\n          }\n        ]\n      },\n      \"Id\": \"98953928-59b2-4fe6-b9da-77110427aa6a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5494613647461,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04361151158809662,\n          \"Height\": 0.01264331117272377,\n          \"Left\": 0.35372984409332275,\n          \"Top\": 0.6572222113609314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3537299931049347,\n            \"Y\": 0.6572222113609314\n          },\n          {\n            \"X\": 0.3973413109779358,\n            \"Y\": 0.657243013381958\n          },\n          {\n            \"X\": 0.3973413407802582,\n            \"Y\": 0.6698655486106873\n          },\n          {\n            \"X\": 0.35372984409332275,\n            \"Y\": 0.6698448657989502\n          }\n        ]\n      },\n      \"Id\": \"f45401ba-712c-4148-9809-a40200de41a6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96856689453125,\n      \"Text\": \"are\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023013204336166382,\n          \"Height\": 0.008587394841015339,\n          \"Left\": 0.4034115970134735,\n          \"Top\": 0.6592597961425781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4034115970134735,\n            \"Y\": 0.6592597961425781\n          },\n          {\n            \"X\": 0.42642465233802795,\n            \"Y\": 0.659270703792572\n          },\n          {\n            \"X\": 0.4264248013496399,\n            \"Y\": 0.6678471565246582\n          },\n          {\n            \"X\": 0.4034116566181183,\n            \"Y\": 0.6678362488746643\n          }\n        ]\n      },\n      \"Id\": \"fab1b8b6-d311-4090-83b0-124d2b092359\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72470092773438,\n      \"Text\": \"$386.15\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05440014973282814,\n          \"Height\": 0.011684946715831757,\n          \"Left\": 0.4329390525817871,\n          \"Top\": 0.6567091345787048\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4329390525817871,\n            \"Y\": 0.6567091345787048\n          },\n          {\n            \"X\": 0.48733875155448914,\n            \"Y\": 0.6567350029945374\n          },\n          {\n            \"X\": 0.48733919858932495,\n            \"Y\": 0.6683940887451172\n          },\n          {\n            \"X\": 0.4329392611980438,\n            \"Y\": 0.6683682203292847\n          }\n        ]\n      },\n      \"Id\": \"070f85a9-f5b6-42f9-bd14-4c6735260157\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 39.01307678222656,\n      \"Text\": \"ESTS8E103\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15482279658317566,\n          \"Height\": 0.01946660876274109,\n          \"Left\": 0.7813716530799866,\n          \"Top\": 0.7087773084640503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7813716530799866,\n            \"Y\": 0.7087773084640503\n          },\n          {\n            \"X\": 0.9361902475357056,\n            \"Y\": 0.7088501453399658\n          },\n          {\n            \"X\": 0.9361944198608398,\n            \"Y\": 0.728243887424469\n          },\n          {\n            \"X\": 0.7813746333122253,\n            \"Y\": 0.7281712889671326\n          }\n        ]\n      },\n      \"Id\": \"6f5e9138-1788-4884-a683-7e7e98ace662\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93576049804688,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028792085126042366,\n          \"Height\": 0.009275209158658981,\n          \"Left\": 0.15565495193004608,\n          \"Top\": 0.7296340465545654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15565578639507294,\n            \"Y\": 0.7296340465545654\n          },\n          {\n            \"X\": 0.1844470351934433,\n            \"Y\": 0.7296475172042847\n          },\n          {\n            \"X\": 0.1844463050365448,\n            \"Y\": 0.7389092445373535\n          },\n          {\n            \"X\": 0.15565495193004608,\n            \"Y\": 0.7388957738876343\n          }\n        ]\n      },\n      \"Id\": \"f62371f2-30c8-4d14-b994-4fc1165c3b30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91629791259766,\n      \"Text\": \"COMPANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06996900588274002,\n          \"Height\": 0.010660325177013874,\n          \"Left\": 0.1869933009147644,\n          \"Top\": 0.7286994457244873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18699413537979126,\n            \"Y\": 0.7286994457244873\n          },\n          {\n            \"X\": 0.2569623291492462,\n            \"Y\": 0.7287322282791138\n          },\n          {\n            \"X\": 0.25696176290512085,\n            \"Y\": 0.7393597364425659\n          },\n          {\n            \"X\": 0.1869933009147644,\n            \"Y\": 0.7393270134925842\n          }\n        ]\n      },\n      \"Id\": \"db4fe486-5b4b-4d3e-b943-811221b3ddd1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.85197448730469,\n      \"Text\": \"CORP.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04296444356441498,\n          \"Height\": 0.009685636498034,\n          \"Left\": 0.2591380178928375,\n          \"Top\": 0.7291597723960876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2591385245323181,\n            \"Y\": 0.7291597723960876\n          },\n          {\n            \"X\": 0.3021024763584137,\n            \"Y\": 0.7291799187660217\n          },\n          {\n            \"X\": 0.30210214853286743,\n            \"Y\": 0.7388454079627991\n          },\n          {\n            \"X\": 0.2591380178928375,\n            \"Y\": 0.7388253211975098\n          }\n        ]\n      },\n      \"Id\": \"794adfe5-d172-4904-9d1c-1cabf6dbce1a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8669204711914,\n      \"Text\": \"Payroll\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04977186769247055,\n          \"Height\": 0.01286307629197836,\n          \"Left\": 0.5768902897834778,\n          \"Top\": 0.7283536791801453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768902897834778,\n            \"Y\": 0.7283536791801453\n          },\n          {\n            \"X\": 0.626660943031311,\n            \"Y\": 0.7283769845962524\n          },\n          {\n            \"X\": 0.6266621351242065,\n            \"Y\": 0.741216778755188\n          },\n          {\n            \"X\": 0.5768912434577942,\n            \"Y\": 0.7411934733390808\n          }\n        ]\n      },\n      \"Id\": \"078a88c4-eede-437d-acfc-e96a1d87d7a8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89656829833984,\n      \"Text\": \"check\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044556424021720886,\n          \"Height\": 0.010516264475882053,\n          \"Left\": 0.6327598094940186,\n          \"Top\": 0.7285091876983643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6327598094940186,\n            \"Y\": 0.7285091876983643\n          },\n          {\n            \"X\": 0.6773150563240051,\n            \"Y\": 0.7285300493240356\n          },\n          {\n            \"X\": 0.6773162484169006,\n            \"Y\": 0.7390254139900208\n          },\n          {\n            \"X\": 0.6327608227729797,\n            \"Y\": 0.7390046119689941\n          }\n        ]\n      },\n      \"Id\": \"9dc4ea8f-ffe2-49fe-b530-8d1e23c54305\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.63739776611328,\n      \"Text\": \"number:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05958341807126999,\n          \"Height\": 0.010097214952111244,\n          \"Left\": 0.6831035614013672,\n          \"Top\": 0.7287666201591492\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6831035614013672,\n            \"Y\": 0.7287666201591492\n          },\n          {\n            \"X\": 0.7426855564117432,\n            \"Y\": 0.728794515132904\n          },\n          {\n            \"X\": 0.7426869869232178,\n            \"Y\": 0.7388638257980347\n          },\n          {\n            \"X\": 0.6831047534942627,\n            \"Y\": 0.7388359308242798\n          }\n        ]\n      },\n      \"Id\": \"a4896b54-5703-4471-b23c-bc00dd930555\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.08511352539062,\n      \"Text\": \"0000000000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08322829753160477,\n          \"Height\": 0.010623566806316376,\n          \"Left\": 0.757146954536438,\n          \"Top\": 0.7282014489173889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.757146954536438,\n            \"Y\": 0.7282014489173889\n          },\n          {\n            \"X\": 0.8403733968734741,\n            \"Y\": 0.728240430355072\n          },\n          {\n            \"X\": 0.8403752446174622,\n            \"Y\": 0.7388249635696411\n          },\n          {\n            \"X\": 0.7571485042572021,\n            \"Y\": 0.7387860417366028\n          }\n        ]\n      },\n      \"Id\": \"d61649b6-fc85-4cb1-803d-332681328e5c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96957397460938,\n      \"Text\": \"475\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025667477399110794,\n          \"Height\": 0.009577604942023754,\n          \"Left\": 0.15589042007923126,\n          \"Top\": 0.745729923248291\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1558912843465805,\n            \"Y\": 0.745729923248291\n          },\n          {\n            \"X\": 0.18155789375305176,\n            \"Y\": 0.7457419037818909\n          },\n          {\n            \"X\": 0.18155711889266968,\n            \"Y\": 0.7553074955940247\n          },\n          {\n            \"X\": 0.15589042007923126,\n            \"Y\": 0.7552955746650696\n          }\n        ]\n      },\n      \"Id\": \"06b6ac0a-de18-4b8d-b9c7-50466694e91c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9460678100586,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03120543248951435,\n          \"Height\": 0.009304285049438477,\n          \"Left\": 0.18798625469207764,\n          \"Top\": 0.7458422780036926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18798698484897614,\n            \"Y\": 0.7458422780036926\n          },\n          {\n            \"X\": 0.21919168531894684,\n            \"Y\": 0.7458568811416626\n          },\n          {\n            \"X\": 0.2191910743713379,\n            \"Y\": 0.7551465630531311\n          },\n          {\n            \"X\": 0.18798625469207764,\n            \"Y\": 0.7551320195198059\n          }\n        ]\n      },\n      \"Id\": \"18a82167-a8d2-4c48-ac52-855ae463ef30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95954895019531,\n      \"Text\": \"AVENUE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06070936098694801,\n          \"Height\": 0.010368208400905132,\n          \"Left\": 0.22705648839473724,\n          \"Top\": 0.7452850937843323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22705712914466858,\n            \"Y\": 0.7452850937843323\n          },\n          {\n            \"X\": 0.28776586055755615,\n            \"Y\": 0.7453134655952454\n          },\n          {\n            \"X\": 0.2877654433250427,\n            \"Y\": 0.7556533217430115\n          },\n          {\n            \"X\": 0.22705648839473724,\n            \"Y\": 0.7556250095367432\n          }\n        ]\n      },\n      \"Id\": \"965363b2-1b28-4e3c-8b29-4a4f7289e2cb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.14222717285156,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025951247662305832,\n          \"Height\": 0.01233794167637825,\n          \"Left\": 0.577531635761261,\n          \"Top\": 0.7436504364013672\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.577531635761261,\n            \"Y\": 0.7436504364013672\n          },\n          {\n            \"X\": 0.6034818291664124,\n            \"Y\": 0.7436625361442566\n          },\n          {\n            \"X\": 0.6034829020500183,\n            \"Y\": 0.755988359451294\n          },\n          {\n            \"X\": 0.5775325894355774,\n            \"Y\": 0.7559762597084045\n          }\n        ]\n      },\n      \"Id\": \"62cf8911-d6fc-4501-aa6e-7a96b550dc41\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.75252532958984,\n      \"Text\": \"date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03473709151148796,\n          \"Height\": 0.010174005292356014,\n          \"Left\": 0.6091468930244446,\n          \"Top\": 0.7438768148422241\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6091468930244446,\n            \"Y\": 0.7438768148422241\n          },\n          {\n            \"X\": 0.6438829302787781,\n            \"Y\": 0.743893027305603\n          },\n          {\n            \"X\": 0.643884003162384,\n            \"Y\": 0.7540507912635803\n          },\n          {\n            \"X\": 0.6091477870941162,\n            \"Y\": 0.7540345788002014\n          }\n        ]\n      },\n      \"Id\": \"6828635e-9b46-494a-9b36-a6437164d1a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83737182617188,\n      \"Text\": \"7/25/2008\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06732150167226791,\n          \"Height\": 0.010527209378778934,\n          \"Left\": 0.7587701082229614,\n          \"Top\": 0.7437589168548584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7587701082229614,\n            \"Y\": 0.7437589168548584\n          },\n          {\n            \"X\": 0.8260897994041443,\n            \"Y\": 0.7437903881072998\n          },\n          {\n            \"X\": 0.8260916471481323,\n            \"Y\": 0.7542861700057983\n          },\n          {\n            \"X\": 0.7587716579437256,\n            \"Y\": 0.7542547583580017\n          }\n        ]\n      },\n      \"Id\": \"4a5f775c-2d0a-4e3f-8eef-fc75a847254f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 64.60087585449219,\n      \"Text\": \"ANYTOWN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07362344115972519,\n          \"Height\": 0.010723540559411049,\n          \"Left\": 0.15558114647865295,\n          \"Top\": 0.7599571347236633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15558211505413055,\n            \"Y\": 0.7599571347236633\n          },\n          {\n            \"X\": 0.22920458018779755,\n            \"Y\": 0.759991466999054\n          },\n          {\n            \"X\": 0.22920392453670502,\n            \"Y\": 0.7706807255744934\n          },\n          {\n            \"X\": 0.15558114647865295,\n            \"Y\": 0.7706465125083923\n          }\n        ]\n      },\n      \"Id\": \"36c18e03-9180-4382-9b4b-fdf2cb21fe8e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81849670410156,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02981932833790779,\n          \"Height\": 0.009609045460820198,\n          \"Left\": 0.23591749370098114,\n          \"Top\": 0.7600727677345276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2359180599451065,\n            \"Y\": 0.7600727677345276\n          },\n          {\n            \"X\": 0.26573681831359863,\n            \"Y\": 0.7600866556167603\n          },\n          {\n            \"X\": 0.2657363712787628,\n            \"Y\": 0.7696818113327026\n          },\n          {\n            \"X\": 0.23591749370098114,\n            \"Y\": 0.76966792345047\n          }\n        ]\n      },\n      \"Id\": \"2c0075c5-d1cb-4296-bf93-9c768ba0c7ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88493347167969,\n      \"Text\": \"10101\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03604523465037346,\n          \"Height\": 0.009566728956997395,\n          \"Left\": 0.27254676818847656,\n          \"Top\": 0.7601276636123657\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2725472152233124,\n            \"Y\": 0.7601276636123657\n          },\n          {\n            \"X\": 0.3085920214653015,\n            \"Y\": 0.7601444721221924\n          },\n          {\n            \"X\": 0.30859172344207764,\n            \"Y\": 0.7696943879127502\n          },\n          {\n            \"X\": 0.27254676818847656,\n            \"Y\": 0.7696776390075684\n          }\n        ]\n      },\n      \"Id\": \"e5738194-53fd-457d-9443-8f369e0f9c5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95441436767578,\n      \"Text\": \"Social\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04106291010975838,\n          \"Height\": 0.010454986244440079,\n          \"Left\": 0.5769158005714417,\n          \"Top\": 0.759122371673584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5769158005714417,\n            \"Y\": 0.759122371673584\n          },\n          {\n            \"X\": 0.6179777383804321,\n            \"Y\": 0.7591414451599121\n          },\n          {\n            \"X\": 0.6179786920547485,\n            \"Y\": 0.7695773243904114\n          },\n          {\n            \"X\": 0.5769165754318237,\n            \"Y\": 0.7695582509040833\n          }\n        ]\n      },\n      \"Id\": \"f4e49719-9845-4e40-9959-865febeddbc6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98368835449219,\n      \"Text\": \"Security\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055688273161649704,\n          \"Height\": 0.012621180154383183,\n          \"Left\": 0.6249842643737793,\n          \"Top\": 0.7588515877723694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6249842643737793,\n            \"Y\": 0.7588515877723694\n          },\n          {\n            \"X\": 0.6806710958480835,\n            \"Y\": 0.7588775753974915\n          },\n          {\n            \"X\": 0.6806725263595581,\n            \"Y\": 0.7714728116989136\n          },\n          {\n            \"X\": 0.6249854564666748,\n            \"Y\": 0.771446943283081\n          }\n        ]\n      },\n      \"Id\": \"bd2ca88b-dbf0-45ae-b52f-9570d65d3f92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77853393554688,\n      \"Text\": \"No.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02325323596596718,\n          \"Height\": 0.010454089380800724,\n          \"Left\": 0.6869114637374878,\n          \"Top\": 0.7591426372528076\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6869114637374878,\n            \"Y\": 0.7591426372528076\n          },\n          {\n            \"X\": 0.7101633548736572,\n            \"Y\": 0.7591534852981567\n          },\n          {\n            \"X\": 0.7101646661758423,\n            \"Y\": 0.7695967555046082\n          },\n          {\n            \"X\": 0.6869127154350281,\n            \"Y\": 0.7695859670639038\n          }\n        ]\n      },\n      \"Id\": \"2aeb2274-8048-4615-9c17-c41a2cccc860\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.62288665771484,\n      \"Text\": \"987-65-4321\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07716964185237885,\n          \"Height\": 0.009116117842495441,\n          \"Left\": 0.7581342458724976,\n          \"Top\": 0.7597204446792603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7581342458724976,\n            \"Y\": 0.7597204446792603\n          },\n          {\n            \"X\": 0.8353022933006287,\n            \"Y\": 0.7597563862800598\n          },\n          {\n            \"X\": 0.8353039026260376,\n            \"Y\": 0.7688365578651428\n          },\n          {\n            \"X\": 0.7581356167793274,\n            \"Y\": 0.7688007354736328\n          }\n        ]\n      },\n      \"Id\": \"c96a3928-a002-4467-8e11-1dce5c8dc85c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84986114501953,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024854453280568123,\n          \"Height\": 0.011057969182729721,\n          \"Left\": 0.053030237555503845,\n          \"Top\": 0.8006242513656616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.053031690418720245,\n            \"Y\": 0.8006242513656616\n          },\n          {\n            \"X\": 0.07788468897342682,\n            \"Y\": 0.8006356954574585\n          },\n          {\n            \"X\": 0.07788334786891937,\n            \"Y\": 0.8116822242736816\n          },\n          {\n            \"X\": 0.053030237555503845,\n            \"Y\": 0.8116707801818848\n          }\n        ]\n      },\n      \"Id\": \"ac81c5af-91d9-4bbd-9a3a-ea7cb2106bd1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86454010009766,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013831173069775105,\n          \"Height\": 0.008887264877557755,\n          \"Left\": 0.08249719440937042,\n          \"Top\": 0.8010762929916382\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08249825984239578,\n            \"Y\": 0.8010762929916382\n          },\n          {\n            \"X\": 0.09632837027311325,\n            \"Y\": 0.8010826706886292\n          },\n          {\n            \"X\": 0.09632734954357147,\n            \"Y\": 0.809963583946228\n          },\n          {\n            \"X\": 0.08249719440937042,\n            \"Y\": 0.8099572062492371\n          }\n        ]\n      },\n      \"Id\": \"45024ad6-9f03-4957-9963-bc25f61174e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84383392333984,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020744087174534798,\n          \"Height\": 0.009186464361846447,\n          \"Left\": 0.10180851817131042,\n          \"Top\": 0.8008617758750916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1018095463514328,\n            \"Y\": 0.8008617758750916\n          },\n          {\n            \"X\": 0.12255260348320007,\n            \"Y\": 0.8008713126182556\n          },\n          {\n            \"X\": 0.12255164980888367,\n            \"Y\": 0.8100482225418091\n          },\n          {\n            \"X\": 0.10180851817131042,\n            \"Y\": 0.8100386261940002\n          }\n        ]\n      },\n      \"Id\": \"6913e743-078e-406f-b3b4-6a0f40f9cabf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7083511352539,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03397776186466217,\n          \"Height\": 0.008858593180775642,\n          \"Left\": 0.052512332797050476,\n          \"Top\": 0.8107377290725708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052513495087623596,\n            \"Y\": 0.8107377290725708\n          },\n          {\n            \"X\": 0.08649009466171265,\n            \"Y\": 0.810753345489502\n          },\n          {\n            \"X\": 0.08648905158042908,\n            \"Y\": 0.8195962905883789\n          },\n          {\n            \"X\": 0.052512332797050476,\n            \"Y\": 0.8195806741714478\n          }\n        ]\n      },\n      \"Id\": \"3f40b1e3-48f5-4090-bcca-1ca12d7f85da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.52409362792969,\n      \"Text\": \"of:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01609433814883232,\n          \"Height\": 0.009173479862511158,\n          \"Left\": 0.0889584943652153,\n          \"Top\": 0.8107634782791138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08895957469940186,\n            \"Y\": 0.8107634782791138\n          },\n          {\n            \"X\": 0.10505283623933792,\n            \"Y\": 0.8107708692550659\n          },\n          {\n            \"X\": 0.10505181550979614,\n            \"Y\": 0.8199369311332703\n          },\n          {\n            \"X\": 0.0889584943652153,\n            \"Y\": 0.8199295401573181\n          }\n        ]\n      },\n      \"Id\": \"af065b87-190e-4e30-9702-52350b064d66\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.947998046875,\n      \"Text\": \"JOHN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046056874096393585,\n          \"Height\": 0.012022157199680805,\n          \"Left\": 0.1554965376853943,\n          \"Top\": 0.8108001351356506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15549764037132263,\n            \"Y\": 0.8108001351356506\n          },\n          {\n            \"X\": 0.20155341923236847,\n            \"Y\": 0.8108213543891907\n          },\n          {\n            \"X\": 0.20155254006385803,\n            \"Y\": 0.8228223323822021\n          },\n          {\n            \"X\": 0.1554965376853943,\n            \"Y\": 0.8228011727333069\n          }\n        ]\n      },\n      \"Id\": \"c6da4f6c-01cc-487a-bc46-fc3c2fd742e4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9141845703125,\n      \"Text\": \"STILES\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05745862051844597,\n          \"Height\": 0.0118257412686944,\n          \"Left\": 0.20804084837436676,\n          \"Top\": 0.8107655048370361\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20804168283939362,\n            \"Y\": 0.8107655048370361\n          },\n          {\n            \"X\": 0.265499472618103,\n            \"Y\": 0.8107920289039612\n          },\n          {\n            \"X\": 0.26549890637397766,\n            \"Y\": 0.822591245174408\n          },\n          {\n            \"X\": 0.20804084837436676,\n            \"Y\": 0.8225648999214172\n          }\n        ]\n      },\n      \"Id\": \"096f83b6-7a5d-41d7-bd53-18bfce6b9a8c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82328796386719,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02663291245698929,\n          \"Height\": 0.009550248272716999,\n          \"Left\": 0.05225507169961929,\n          \"Top\": 0.8289413452148438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052256327122449875,\n            \"Y\": 0.8289413452148438\n          },\n          {\n            \"X\": 0.07888798415660858,\n            \"Y\": 0.8289535641670227\n          },\n          {\n            \"X\": 0.07888682931661606,\n            \"Y\": 0.8384915590286255\n          },\n          {\n            \"X\": 0.05225507169961929,\n            \"Y\": 0.8384793996810913\n          }\n        ]\n      },\n      \"Id\": \"50e7d7b4-c82b-40f5-8c6f-74bc6bdbcc3b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 86.86658477783203,\n      \"Text\": \"amount:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05015043169260025,\n          \"Height\": 0.008631310425698757,\n          \"Left\": 0.08517549186944962,\n          \"Top\": 0.8299362063407898\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0851765125989914,\n            \"Y\": 0.8299362063407898\n          },\n          {\n            \"X\": 0.13532592356204987,\n            \"Y\": 0.8299592733383179\n          },\n          {\n            \"X\": 0.13532507419586182,\n            \"Y\": 0.8385675549507141\n          },\n          {\n            \"X\": 0.08517549186944962,\n            \"Y\": 0.8385446071624756\n          }\n        ]\n      },\n      \"Id\": \"6e51c2c5-47c0-4c45-bf1f-f2ce2d8538ba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86312866210938,\n      \"Text\": \"TWO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03542651608586311,\n          \"Height\": 0.010627028532326221,\n          \"Left\": 0.15508319437503815,\n          \"Top\": 0.8310512900352478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15508416295051575,\n            \"Y\": 0.8310512900352478\n          },\n          {\n            \"X\": 0.19050970673561096,\n            \"Y\": 0.8310675621032715\n          },\n          {\n            \"X\": 0.1905088871717453,\n            \"Y\": 0.8416783213615417\n          },\n          {\n            \"X\": 0.15508319437503815,\n            \"Y\": 0.8416621088981628\n          }\n        ]\n      },\n      \"Id\": \"dd1789c5-a100-41b1-938e-d3b878bea0ae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96095275878906,\n      \"Text\": \"HUNDRED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07321619242429733,\n          \"Height\": 0.010450581088662148,\n          \"Left\": 0.1976194679737091,\n          \"Top\": 0.8313883543014526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1976202428340912,\n            \"Y\": 0.8313883543014526\n          },\n          {\n            \"X\": 0.27083566784858704,\n            \"Y\": 0.8314219117164612\n          },\n          {\n            \"X\": 0.27083519101142883,\n            \"Y\": 0.8418389558792114\n          },\n          {\n            \"X\": 0.1976194679737091,\n            \"Y\": 0.8418053984642029\n          }\n        ]\n      },\n      \"Id\": \"aa0b1ff4-8da5-42c8-bbf2-65f6a9900140\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67034149169922,\n      \"Text\": \"NINETY-ONE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09124232083559036,\n          \"Height\": 0.010377226397395134,\n          \"Left\": 0.27817460894584656,\n          \"Top\": 0.8312934637069702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2781750559806824,\n            \"Y\": 0.8312934637069702\n          },\n          {\n            \"X\": 0.3694169223308563,\n            \"Y\": 0.8313353061676025\n          },\n          {\n            \"X\": 0.36941686272621155,\n            \"Y\": 0.8416706919670105\n          },\n          {\n            \"X\": 0.27817460894584656,\n            \"Y\": 0.841628909111023\n          }\n        ]\n      },\n      \"Id\": \"7cd8a78e-78bf-4b97-b038-4cd7bea1aa7d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98081970214844,\n      \"Text\": \"AND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032898563891649246,\n          \"Height\": 0.010133239440619946,\n          \"Left\": 0.3754265606403351,\n          \"Top\": 0.8314455151557922\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37542659044265747,\n            \"Y\": 0.8314455151557922\n          },\n          {\n            \"X\": 0.4083250164985657,\n            \"Y\": 0.8314606547355652\n          },\n          {\n            \"X\": 0.40832510590553284,\n            \"Y\": 0.8415787816047668\n          },\n          {\n            \"X\": 0.3754265606403351,\n            \"Y\": 0.8415637016296387\n          }\n        ]\n      },\n      \"Id\": \"a9ad79dd-4ae8-4b00-97f9-2d78d5e13cd0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8636474609375,\n      \"Text\": \"90/100\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04790346696972847,\n          \"Height\": 0.01048013474792242,\n          \"Left\": 0.41457927227020264,\n          \"Top\": 0.8311628699302673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41457927227020264,\n            \"Y\": 0.8311628699302673\n          },\n          {\n            \"X\": 0.46248242259025574,\n            \"Y\": 0.8311848044395447\n          },\n          {\n            \"X\": 0.4624827206134796,\n            \"Y\": 0.8416429758071899\n          },\n          {\n            \"X\": 0.4145793616771698,\n            \"Y\": 0.8416210412979126\n          }\n        ]\n      },\n      \"Id\": \"c389aea7-28cb-4f7b-851c-f51f54ded6e9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93905639648438,\n      \"Text\": \"DOLLARS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06950504332780838,\n          \"Height\": 0.010265217162668705,\n          \"Left\": 0.4694177508354187,\n          \"Top\": 0.8312948942184448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4694177508354187,\n            \"Y\": 0.8312948942184448\n          },\n          {\n            \"X\": 0.5389221906661987,\n            \"Y\": 0.8313267827033997\n          },\n          {\n            \"X\": 0.5389227867126465,\n            \"Y\": 0.8415601253509521\n          },\n          {\n            \"X\": 0.46941810846328735,\n            \"Y\": 0.8415282964706421\n          }\n        ]\n      },\n      \"Id\": \"64de448f-a65a-438a-813c-d59d40995cf1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8681640625,\n      \"Text\": \"$291.90\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054515570402145386,\n          \"Height\": 0.011175752617418766,\n          \"Left\": 0.8945171236991882,\n          \"Top\": 0.8310860991477966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8945171236991882,\n            \"Y\": 0.8310860991477966\n          },\n          {\n            \"X\": 0.9490302205085754,\n            \"Y\": 0.8311111330986023\n          },\n          {\n            \"X\": 0.949032723903656,\n            \"Y\": 0.8422618508338928\n          },\n          {\n            \"X\": 0.8945193886756897,\n            \"Y\": 0.8422369360923767\n          }\n        ]\n      },\n      \"Id\": \"e8387606-da6d-44cd-b5a0-f635b282818e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91527557373047,\n      \"Text\": \"SAMPLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087924912571907,\n          \"Height\": 0.010260836221277714,\n          \"Left\": 0.18704988062381744,\n          \"Top\": 0.8727636933326721\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1870506852865219,\n            \"Y\": 0.8727636933326721\n          },\n          {\n            \"X\": 0.2479291409254074,\n            \"Y\": 0.8727913498878479\n          },\n          {\n            \"X\": 0.24792857468128204,\n            \"Y\": 0.8830245137214661\n          },\n          {\n            \"X\": 0.18704988062381744,\n            \"Y\": 0.8829969167709351\n          }\n        ]\n      },\n      \"Id\": \"fc260cd2-e4aa-438d-8ea6-1fdd17f6a891\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68993377685547,\n      \"Text\": \"NON-NEGOTIABLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1339421421289444,\n          \"Height\": 0.010696114972233772,\n          \"Left\": 0.18531093001365662,\n          \"Top\": 0.8848074674606323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18531177937984467,\n            \"Y\": 0.8848074674606323\n          },\n          {\n            \"X\": 0.3192530870437622,\n            \"Y\": 0.8848682045936584\n          },\n          {\n            \"X\": 0.31925278902053833,\n            \"Y\": 0.895503580570221\n          },\n          {\n            \"X\": 0.18531093001365662,\n            \"Y\": 0.8954430222511292\n          }\n        ]\n      },\n      \"Id\": \"a26b82d9-75a7-402c-b83e-ee6866fa46c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85540771484375,\n      \"Text\": \"BANK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029565729200839996,\n          \"Height\": 0.00727262394502759,\n          \"Left\": 0.052389614284038544,\n          \"Top\": 0.8988009691238403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05239057168364525,\n            \"Y\": 0.8988009691238403\n          },\n          {\n            \"X\": 0.08195534348487854,\n            \"Y\": 0.8988143801689148\n          },\n          {\n            \"X\": 0.0819544717669487,\n            \"Y\": 0.9060736298561096\n          },\n          {\n            \"X\": 0.052389614284038544,\n            \"Y\": 0.9060602784156799\n          }\n        ]\n      },\n      \"Id\": \"db478c62-51e0-4284-a72b-08cb99db0ac2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85475158691406,\n      \"Text\": \"NAME\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028877640143036842,\n          \"Height\": 0.006518868263810873,\n          \"Left\": 0.083968885242939,\n          \"Top\": 0.8989003896713257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08396966010332108,\n            \"Y\": 0.8989003896713257\n          },\n          {\n            \"X\": 0.11284652352333069,\n            \"Y\": 0.8989134430885315\n          },\n          {\n            \"X\": 0.11284582316875458,\n            \"Y\": 0.9054192900657654\n          },\n          {\n            \"X\": 0.083968885242939,\n            \"Y\": 0.9054062366485596\n          }\n        ]\n      },\n      \"Id\": \"c476d0a4-af0d-4810-932d-6dca8dd49bd7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90333557128906,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03615986928343773,\n          \"Height\": 0.010232134722173214,\n          \"Left\": 0.18641574680805206,\n          \"Top\": 0.8981636166572571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18641655147075653,\n            \"Y\": 0.8981636166572571\n          },\n          {\n            \"X\": 0.2225756049156189,\n            \"Y\": 0.8981800079345703\n          },\n          {\n            \"X\": 0.22257494926452637,\n            \"Y\": 0.9083957672119141\n          },\n          {\n            \"X\": 0.18641574680805206,\n            \"Y\": 0.9083794951438904\n          }\n        ]\n      },\n      \"Id\": \"e99bbd73-bd03-4c20-becb-8f26d229b70f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9173355102539,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03659425303339958,\n          \"Height\": 0.010188784450292587,\n          \"Left\": 0.225104421377182,\n          \"Top\": 0.8980332016944885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22510506212711334,\n            \"Y\": 0.8980332016944885\n          },\n          {\n            \"X\": 0.2616986632347107,\n            \"Y\": 0.8980497717857361\n          },\n          {\n            \"X\": 0.2616981863975525,\n            \"Y\": 0.9082220196723938\n          },\n          {\n            \"X\": 0.225104421377182,\n            \"Y\": 0.908205509185791\n          }\n        ]\n      },\n      \"Id\": \"bd876d4d-569a-48a2-9769-7a4d031eb326\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90247344970703,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03632781282067299,\n          \"Height\": 0.010527177713811398,\n          \"Left\": 0.2640995681285858,\n          \"Top\": 0.8980610966682434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2641001045703888,\n            \"Y\": 0.8980610966682434\n          },\n          {\n            \"X\": 0.3004274070262909,\n            \"Y\": 0.8980774879455566\n          },\n          {\n            \"X\": 0.30042704939842224,\n            \"Y\": 0.9085882306098938\n          },\n          {\n            \"X\": 0.2640995681285858,\n            \"Y\": 0.9085718989372253\n          }\n        ]\n      },\n      \"Id\": \"b66cc3d2-bc14-46cf-8853-68b335b180bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.93590545654297,\n      \"Text\": \"AUTHORIZED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0620577409863472,\n          \"Height\": 0.00737388152629137,\n          \"Left\": 0.5392360091209412,\n          \"Top\": 0.9010159969329834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5392360091209412,\n            \"Y\": 0.9010159969329834\n          },\n          {\n            \"X\": 0.6012930870056152,\n            \"Y\": 0.9010440707206726\n          },\n          {\n            \"X\": 0.6012937426567078,\n            \"Y\": 0.9083898663520813\n          },\n          {\n            \"X\": 0.5392364263534546,\n            \"Y\": 0.9083619117736816\n          }\n        ]\n      },\n      \"Id\": \"076ca7b8-2c4a-4ace-b20c-9c5d13327917\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.12090301513672,\n      \"Text\": \"Authorized\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1761792004108429,\n          \"Height\": 0.05295070633292198,\n          \"Left\": 0.5416198968887329,\n          \"Top\": 0.8642136454582214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5416198968887329,\n            \"Y\": 0.8642136454582214\n          },\n          {\n            \"X\": 0.7177922129631042,\n            \"Y\": 0.8642938733100891\n          },\n          {\n            \"X\": 0.7177991271018982,\n            \"Y\": 0.9171643853187561\n          },\n          {\n            \"X\": 0.5416231155395508,\n            \"Y\": 0.9170850515365601\n          }\n        ]\n      },\n      \"Id\": \"adbb18b9-640f-4f06-a15f-dc7e98f8012b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.05839538574219,\n      \"Text\": \"SIGNATURE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05717724934220314,\n          \"Height\": 0.00832012202590704,\n          \"Left\": 0.6047877669334412,\n          \"Top\": 0.9011437892913818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6047877669334412,\n            \"Y\": 0.9011437892913818\n          },\n          {\n            \"X\": 0.6619641184806824,\n            \"Y\": 0.9011696577072144\n          },\n          {\n            \"X\": 0.661965012550354,\n            \"Y\": 0.9094639420509338\n          },\n          {\n            \"X\": 0.6047884821891785,\n            \"Y\": 0.9094381332397461\n          }\n        ]\n      },\n      \"Id\": \"fe0d9a9b-40fe-4c40-8a8c-4f1b7e56eb7c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.89030456542969,\n      \"Text\": \"Signature\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16762907803058624,\n          \"Height\": 0.057955704629421234,\n          \"Left\": 0.7198303937911987,\n          \"Top\": 0.8623265624046326\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7198303937911987,\n            \"Y\": 0.8623265624046326\n          },\n          {\n            \"X\": 0.8874480128288269,\n            \"Y\": 0.8624029159545898\n          },\n          {\n            \"X\": 0.8874594569206238,\n            \"Y\": 0.9202823042869568\n          },\n          {\n            \"X\": 0.7198379635810852,\n            \"Y\": 0.9202068448066711\n          }\n        ]\n      },\n      \"Id\": \"04842b7b-8058-42a8-996f-816addaeefdd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90996551513672,\n      \"Text\": \"STREET\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03626565635204315,\n          \"Height\": 0.007271513808518648,\n          \"Left\": 0.05239022895693779,\n          \"Top\": 0.9065126776695251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052391182631254196,\n            \"Y\": 0.9065126776695251\n          },\n          {\n            \"X\": 0.08865588158369064,\n            \"Y\": 0.9065290689468384\n          },\n          {\n            \"X\": 0.0886550322175026,\n            \"Y\": 0.9137842059135437\n          },\n          {\n            \"X\": 0.05239022895693779,\n            \"Y\": 0.9137678742408752\n          }\n        ]\n      },\n      \"Id\": \"a74220a8-5bd3-499d-a4f4-0c809f65c0cf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74178314208984,\n      \"Text\": \"ADDRESS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04796506091952324,\n          \"Height\": 0.006638592574745417,\n          \"Left\": 0.09352417290210724,\n          \"Top\": 0.9065254926681519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09352494031190872,\n            \"Y\": 0.9065254926681519\n          },\n          {\n            \"X\": 0.14148923754692078,\n            \"Y\": 0.9065471291542053\n          },\n          {\n            \"X\": 0.14148859679698944,\n            \"Y\": 0.9131640791893005\n          },\n          {\n            \"X\": 0.09352417290210724,\n            \"Y\": 0.9131425023078918\n          }\n        ]\n      },\n      \"Id\": \"0c3a9bb9-f9e6-44b7-9a38-0de40a10cd91\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81913757324219,\n      \"Text\": \"CITY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02231975831091404,\n          \"Height\": 0.006916387472301722,\n          \"Left\": 0.052526868879795074,\n          \"Top\": 0.9146180748939514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0525277778506279,\n            \"Y\": 0.9146180748939514\n          },\n          {\n            \"X\": 0.07484662532806396,\n            \"Y\": 0.9146281480789185\n          },\n          {\n            \"X\": 0.07484578341245651,\n            \"Y\": 0.9215344786643982\n          },\n          {\n            \"X\": 0.052526868879795074,\n            \"Y\": 0.9215244054794312\n          }\n        ]\n      },\n      \"Id\": \"54ae61de-c4db-4fed-87f5-816e89022d22\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94165802001953,\n      \"Text\": \"STATE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030795404687523842,\n          \"Height\": 0.006630615331232548,\n          \"Left\": 0.07955888658761978,\n          \"Top\": 0.9145399928092957\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07955969125032425,\n            \"Y\": 0.9145399928092957\n          },\n          {\n            \"X\": 0.11035429686307907,\n            \"Y\": 0.9145538210868835\n          },\n          {\n            \"X\": 0.11035357415676117,\n            \"Y\": 0.9211705923080444\n          },\n          {\n            \"X\": 0.07955888658761978,\n            \"Y\": 0.9211567044258118\n          }\n        ]\n      },\n      \"Id\": \"f20b2381-24d1-4fd2-84f9-697851768c1e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67118835449219,\n      \"Text\": \"ZIP\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01545895729213953,\n          \"Height\": 0.007231137249618769,\n          \"Left\": 0.1149582713842392,\n          \"Top\": 0.9143996238708496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11495904624462128,\n            \"Y\": 0.9143996238708496\n          },\n          {\n            \"X\": 0.13041722774505615,\n            \"Y\": 0.9144065976142883\n          },\n          {\n            \"X\": 0.13041649758815765,\n            \"Y\": 0.9216307401657104\n          },\n          {\n            \"X\": 0.1149582713842392,\n            \"Y\": 0.9216238260269165\n          }\n        ]\n      },\n      \"Id\": \"40e2c007-7564-4652-9e04-9fae344f4cac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3439712524414,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02533930353820324,\n          \"Height\": 0.006987281143665314,\n          \"Left\": 0.5372782349586487,\n          \"Top\": 0.9109068512916565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5372782349586487,\n            \"Y\": 0.9109068512916565\n          },\n          {\n            \"X\": 0.5626170635223389,\n            \"Y\": 0.9109182953834534\n          },\n          {\n            \"X\": 0.5626175403594971,\n            \"Y\": 0.9178941249847412\n          },\n          {\n            \"X\": 0.5372786521911621,\n            \"Y\": 0.9178827404975891\n          }\n        ]\n      },\n      \"Id\": \"d05575c6-9b5d-48fb-96f5-b43e6c4a758f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88875579833984,\n      \"Text\": \"AFTER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03255317732691765,\n          \"Height\": 0.0071054319851100445,\n          \"Left\": 0.5661666989326477,\n          \"Top\": 0.9110194444656372\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5661666989326477,\n            \"Y\": 0.9110194444656372\n          },\n          {\n            \"X\": 0.5987192988395691,\n            \"Y\": 0.911034107208252\n          },\n          {\n            \"X\": 0.5987198948860168,\n            \"Y\": 0.9181248545646667\n          },\n          {\n            \"X\": 0.5661672353744507,\n            \"Y\": 0.918110191822052\n          }\n        ]\n      },\n      \"Id\": \"d93639cd-5afd-49da-92ad-f04e4bd8b380\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 54.29126739501953,\n      \"Text\": \"90\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012345596216619015,\n          \"Height\": 0.006658708211034536,\n          \"Left\": 0.6015636920928955,\n          \"Top\": 0.9113535284996033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6015636920928955,\n            \"Y\": 0.9113535284996033\n          },\n          {\n            \"X\": 0.6139087080955505,\n            \"Y\": 0.9113590717315674\n          },\n          {\n            \"X\": 0.6139093041419983,\n            \"Y\": 0.9180122017860413\n          },\n          {\n            \"X\": 0.6015642881393433,\n            \"Y\": 0.9180066585540771\n          }\n        ]\n      },\n      \"Id\": \"0b520aa7-3fe9-406b-9173-f8ec4dc8d3f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52745056152344,\n      \"Text\": \"DAYS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02634461782872677,\n          \"Height\": 0.006803481839597225,\n          \"Left\": 0.6164661645889282,\n          \"Top\": 0.9110757112503052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6164661645889282,\n            \"Y\": 0.9110757112503052\n          },\n          {\n            \"X\": 0.6428101062774658,\n            \"Y\": 0.9110875725746155\n          },\n          {\n            \"X\": 0.6428108215332031,\n            \"Y\": 0.9178791642189026\n          },\n          {\n            \"X\": 0.6164668202400208,\n            \"Y\": 0.9178673028945923\n          }\n        ]\n      },\n      \"Id\": \"6fe3e737-a943-4133-9c55-c50e976a6362\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 43.8668327331543,\n      \"Text\": \"001379⑈\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10830622911453247,\n          \"Height\": 0.012486505322158337,\n          \"Left\": 0.23862920701503754,\n          \"Top\": 0.9572156667709351\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23862993717193604,\n            \"Y\": 0.9572156667709351\n          },\n          {\n            \"X\": 0.3469354510307312,\n            \"Y\": 0.9572640061378479\n          },\n          {\n            \"X\": 0.3469352424144745,\n            \"Y\": 0.9697021842002869\n          },\n          {\n            \"X\": 0.23862920701503754,\n            \"Y\": 0.9696540236473083\n          }\n        ]\n      },\n      \"Id\": \"538acaa3-39a3-4133-a03b-506ef5d55b80\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42019653320312,\n      \"Text\": \"⑆122000496⑆4040110157⑈\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32243287563323975,\n          \"Height\": 0.013246973045170307,\n          \"Left\": 0.362867534160614,\n          \"Top\": 0.9569685459136963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36286765336990356,\n            \"Y\": 0.9569685459136963\n          },\n          {\n            \"X\": 0.6852988600730896,\n            \"Y\": 0.9571124315261841\n          },\n          {\n            \"X\": 0.6853004097938538,\n            \"Y\": 0.9702155590057373\n          },\n          {\n            \"X\": 0.362867534160614,\n            \"Y\": 0.9700720906257629\n          }\n        ]\n      },\n      \"Id\": \"f87e3b30-ee0c-498d-a385-34ec058eddc2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 12.64504623413086,\n      \"Text\": \"THEORIGINALDOCUMENTHASAREFLECTIVEWATERMARKONTHEBAOK.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4536792039871216,\n          \"Height\": 0.009257529862225056,\n          \"Left\": 0.04399150609970093,\n          \"Top\": 0.9754505157470703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04399272799491882,\n            \"Y\": 0.9754505157470703\n          },\n          {\n            \"X\": 0.49767032265663147,\n            \"Y\": 0.9756521582603455\n          },\n          {\n            \"X\": 0.4976707100868225,\n            \"Y\": 0.9847080707550049\n          },\n          {\n            \"X\": 0.04399150609970093,\n            \"Y\": 0.9845068454742432\n          }\n        ]\n      },\n      \"Id\": \"ded3cbc6-d9da-46ff-968e-8fd9d50985e3\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 80.2734375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2771286368370056,\n          \"Height\": 0.02614447847008705,\n          \"Left\": 0.16226939857006073,\n          \"Top\": 0.03248158097267151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16227170825004578,\n            \"Y\": 0.03248158097267151\n          },\n          {\n            \"X\": 0.43939751386642456,\n            \"Y\": 0.032630596309900284\n          },\n          {\n            \"X\": 0.43939805030822754,\n            \"Y\": 0.05862605571746826\n          },\n          {\n            \"X\": 0.16226939857006073,\n            \"Y\": 0.05847775191068649\n          }\n        ]\n      },\n      \"Id\": \"20c376be-84d6-4cf8-95bb-8c8609411fcc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"301115a1-e7cf-406a-8920-a047428bf849\",\n            \"7738c577-5683-4ae8-9528-d9df3019e3de\",\n            \"e3eaa1d1-3d0b-463c-8159-09a239e6c308\",\n            \"6df3c5fc-1cc4-46ea-afcf-8d6acd0dfcc2\",\n            \"22b35000-4d47-4a67-bda0-d980bbcd3094\",\n            \"fbd8798a-33db-4e3b-8a9e-b3ad726c9f6d\",\n            \"3a48c1c0-6cde-48fb-9134-cad3dd1a3e25\",\n            \"0eb8f83b-d4d5-4aed-a773-363e36de4da2\",\n            \"d827d04b-3817-49cc-b8c4-0da5a742da6d\",\n            \"58bcf010-ec60-4cd1-a8d0-3bfbc6b0fec7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"SEMI_STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.8525390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04058000072836876,\n          \"Height\": 0.012708074413239956,\n          \"Left\": 0.16227057576179504,\n          \"Top\": 0.03248158097267151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16227170825004578,\n            \"Y\": 0.03248158097267151\n          },\n          {\n            \"X\": 0.2028505802154541,\n            \"Y\": 0.0325033999979496\n          },\n          {\n            \"X\": 0.20284967124462128,\n            \"Y\": 0.04518965259194374\n          },\n          {\n            \"X\": 0.16227057576179504,\n            \"Y\": 0.04516788572072983\n          }\n        ]\n      },\n      \"Id\": \"301115a1-e7cf-406a-8920-a047428bf849\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c6d2446-06e0-4f6a-854c-be3c88278f46\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 32.568359375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056742262095212936,\n          \"Height\": 0.012716694734990597,\n          \"Left\": 0.20284967124462128,\n          \"Top\": 0.0325033999979496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2028505802154541,\n            \"Y\": 0.0325033999979496\n          },\n          {\n            \"X\": 0.2595919370651245,\n            \"Y\": 0.032533910125494\n          },\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          },\n          {\n            \"X\": 0.20284967124462128,\n            \"Y\": 0.04518965259194374\n          }\n        ]\n      },\n      \"Id\": \"7738c577-5683-4ae8-9528-d9df3019e3de\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2381faf1-4e7c-4c88-94db-60f578ec345b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 26.0009765625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052485812455415726,\n          \"Height\": 0.012714340351521969,\n          \"Left\": 0.259591281414032,\n          \"Top\": 0.032533910125494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2595919370651245,\n            \"Y\": 0.032533910125494\n          },\n          {\n            \"X\": 0.3120771050453186,\n            \"Y\": 0.03256213292479515\n          },\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          },\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          }\n        ]\n      },\n      \"Id\": \"e3eaa1d1-3d0b-463c-8159-09a239e6c308\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6bd322ae-3b33-4ccf-9745-ae5abe9bfe1e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 25.2197265625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051066506654024124,\n          \"Height\": 0.01271351333707571,\n          \"Left\": 0.31207671761512756,\n          \"Top\": 0.03256213292479515\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3120771050453186,\n            \"Y\": 0.03256213292479515\n          },\n          {\n            \"X\": 0.3631432354450226,\n            \"Y\": 0.032589592039585114\n          },\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          },\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          }\n        ]\n      },\n      \"Id\": \"6df3c5fc-1cc4-46ea-afcf-8d6acd0dfcc2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"717f129b-1243-425c-80c5-b9a22af6bdd1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 31.1767578125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07625464349985123,\n          \"Height\": 0.012726962566375732,\n          \"Left\": 0.36314311623573303,\n          \"Top\": 0.032589592039585114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3631432354450226,\n            \"Y\": 0.032589592039585114\n          },\n          {\n            \"X\": 0.43939751386642456,\n            \"Y\": 0.032630596309900284\n          },\n          {\n            \"X\": 0.43939775228500366,\n            \"Y\": 0.045316554605960846\n          },\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          }\n        ]\n      },\n      \"Id\": \"22b35000-4d47-4a67-bda0-d980bbcd3094\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1f40676b-ed02-4f9b-b906-ea6910132052\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 43.4814453125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04058026149868965,\n          \"Height\": 0.013331581838428974,\n          \"Left\": 0.16226939857006073,\n          \"Top\": 0.04516788572072983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16227057576179504,\n            \"Y\": 0.04516788572072983\n          },\n          {\n            \"X\": 0.20284967124462128,\n            \"Y\": 0.04518965259194374\n          },\n          {\n            \"X\": 0.20284870266914368,\n            \"Y\": 0.05849946662783623\n          },\n          {\n            \"X\": 0.16226939857006073,\n            \"Y\": 0.05847775191068649\n          }\n        ]\n      },\n      \"Id\": \"fbd8798a-33db-4e3b-8a9e-b3ad726c9f6d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c6c107a-6365-46bd-87c1-566fd87929e6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 28.9794921875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0567425899207592,\n          \"Height\": 0.013340177945792675,\n          \"Left\": 0.20284870266914368,\n          \"Top\": 0.04518965259194374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20284967124462128,\n            \"Y\": 0.04518965259194374\n          },\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          },\n          {\n            \"X\": 0.25959062576293945,\n            \"Y\": 0.05852983146905899\n          },\n          {\n            \"X\": 0.20284870266914368,\n            \"Y\": 0.05849946662783623\n          }\n        ]\n      },\n      \"Id\": \"3a48c1c0-6cde-48fb-9134-cad3dd1a3e25\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d8498bc-fc7a-49ca-9340-490fede107e2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 23.14453125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052486103028059006,\n          \"Height\": 0.013337825424969196,\n          \"Left\": 0.25959062576293945,\n          \"Top\": 0.04522009566426277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          },\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          },\n          {\n            \"X\": 0.3120763301849365,\n            \"Y\": 0.05855792015790939\n          },\n          {\n            \"X\": 0.25959062576293945,\n            \"Y\": 0.05852983146905899\n          }\n        ]\n      },\n      \"Id\": \"0eb8f83b-d4d5-4aed-a773-363e36de4da2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9d59b864-4057-4c48-aff2-b04df7c83646\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 22.4365234375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05106678232550621,\n          \"Height\": 0.013336997479200363,\n          \"Left\": 0.3120763301849365,\n          \"Top\": 0.04524825140833855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          },\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          },\n          {\n            \"X\": 0.3631429970264435,\n            \"Y\": 0.05858524888753891\n          },\n          {\n            \"X\": 0.3120763301849365,\n            \"Y\": 0.05855792015790939\n          }\n        ]\n      },\n      \"Id\": \"d827d04b-3817-49cc-b8c4-0da5a742da6d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5f4b14c7-ae17-402e-8aba-bd90f48c001d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 27.734375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07625504583120346,\n          \"Height\": 0.0133504094555974,\n          \"Left\": 0.3631429970264435,\n          \"Top\": 0.045275647193193436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          },\n          {\n            \"X\": 0.43939775228500366,\n            \"Y\": 0.045316554605960846\n          },\n          {\n            \"X\": 0.43939805030822754,\n            \"Y\": 0.05862605571746826\n          },\n          {\n            \"X\": 0.3631429970264435,\n            \"Y\": 0.05858524888753891\n          }\n        ]\n      },\n      \"Id\": \"58bcf010-ec60-4cd1-a8d0-3bfbc6b0fec7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e13a5b27-62f1-4ba0-b597-50b21ca43129\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 82.6171875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.24159498512744904,\n          \"Height\": 0.03398339822888374,\n          \"Left\": 0.5764707922935486,\n          \"Top\": 0.06758623570203781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764707922935486,\n            \"Y\": 0.06758623570203781\n          },\n          {\n            \"X\": 0.818060040473938,\n            \"Y\": 0.06771530956029892\n          },\n          {\n            \"X\": 0.8180657625198364,\n            \"Y\": 0.10156963765621185\n          },\n          {\n            \"X\": 0.5764732956886292,\n            \"Y\": 0.10144136846065521\n          }\n        ]\n      },\n      \"Id\": \"674024c4-add9-4047-932a-3d11ae1bed75\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"169bdb1d-d703-4494-85d2-f824db1ae68d\",\n            \"f8a2416e-64d7-47d5-b12d-268cb4736fef\",\n            \"1dd127fb-bf50-4cc1-8024-2b4c59f53aee\",\n            \"9425f953-0782-4b71-bd6e-18768362a38b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"SEMI_STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.478515625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1313619464635849,\n          \"Height\": 0.017325861379504204,\n          \"Left\": 0.5764707922935486,\n          \"Top\": 0.06758623570203781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764707922935486,\n            \"Y\": 0.06758623570203781\n          },\n          {\n            \"X\": 0.707830548286438,\n            \"Y\": 0.06765642017126083\n          },\n          {\n            \"X\": 0.7078327536582947,\n            \"Y\": 0.08491209894418716\n          },\n          {\n            \"X\": 0.5764721035957336,\n            \"Y\": 0.08484213799238205\n          }\n        ]\n      },\n      \"Id\": \"169bdb1d-d703-4494-85d2-f824db1ae68d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de3af39f-cd2c-4b14-8607-1c0458c041cf\",\n            \"847541aa-91d1-4814-809c-f8f143dcafa5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.84375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1102324053645134,\n          \"Height\": 0.017314383760094643,\n          \"Left\": 0.707830548286438,\n          \"Top\": 0.06765642017126083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.707830548286438,\n            \"Y\": 0.06765642017126083\n          },\n          {\n            \"X\": 0.818060040473938,\n            \"Y\": 0.06771530956029892\n          },\n          {\n            \"X\": 0.818062961101532,\n            \"Y\": 0.08497080206871033\n          },\n          {\n            \"X\": 0.7078327536582947,\n            \"Y\": 0.08491209894418716\n          }\n        ]\n      },\n      \"Id\": \"f8a2416e-64d7-47d5-b12d-268cb4736fef\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b53889d3-3708-498c-ac5c-0a161095b8cb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.84375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13136275112628937,\n          \"Height\": 0.01666896976530552,\n          \"Left\": 0.5764721035957336,\n          \"Top\": 0.08484213799238205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764721035957336,\n            \"Y\": 0.08484213799238205\n          },\n          {\n            \"X\": 0.7078327536582947,\n            \"Y\": 0.08491209894418716\n          },\n          {\n            \"X\": 0.7078348398208618,\n            \"Y\": 0.10151111334562302\n          },\n          {\n            \"X\": 0.5764732956886292,\n            \"Y\": 0.10144136846065521\n          }\n        ]\n      },\n      \"Id\": \"1dd127fb-bf50-4cc1-8024-2b4c59f53aee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"abd56aca-fb87-4787-990d-4294f4312000\",\n            \"af4da493-9da3-4ca9-9f9c-ffd64c1125aa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.16015625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11023303866386414,\n          \"Height\": 0.01665753498673439,\n          \"Left\": 0.7078327536582947,\n          \"Top\": 0.08491209894418716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7078327536582947,\n            \"Y\": 0.08491209894418716\n          },\n          {\n            \"X\": 0.818062961101532,\n            \"Y\": 0.08497080206871033\n          },\n          {\n            \"X\": 0.8180657625198364,\n            \"Y\": 0.10156963765621185\n          },\n          {\n            \"X\": 0.7078348398208618,\n            \"Y\": 0.10151111334562302\n          }\n        ]\n      },\n      \"Id\": \"9425f953-0782-4b71-bd6e-18768362a38b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1974336-a2de-4b02-87d3-14933d4f0d9c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 97.216796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4967252314090729,\n          \"Height\": 0.09784796833992004,\n          \"Left\": 0.04565014690160751,\n          \"Top\": 0.22921936213970184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0456632561981678,\n            \"Y\": 0.22921936213970184\n          },\n          {\n            \"X\": 0.5423693656921387,\n            \"Y\": 0.22947677969932556\n          },\n          {\n            \"X\": 0.542375385761261,\n            \"Y\": 0.3270673155784607\n          },\n          {\n            \"X\": 0.04565014690160751,\n            \"Y\": 0.3268147110939026\n          }\n        ]\n      },\n      \"Id\": \"ccacbe1d-d2a3-40af-9966-139424ed853c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"28d2e55e-011f-4aa8-a732-ea2345bd8511\",\n            \"60eedac4-5ab9-4a6b-8768-45c0293ae284\",\n            \"859056d0-71b4-4f2c-abef-cbf78d4ff291\",\n            \"c2820a8c-fb82-4e92-8b74-a9e4057f6b8e\",\n            \"9996f89d-6ac2-4051-88a2-c1819efc74cb\",\n            \"771b364c-035c-4e25-8a22-575e4755aa11\",\n            \"6dd96935-09f4-4a99-9af6-31110e3d8a0a\",\n            \"3cc6427c-480a-4b4b-a31e-0b1e35c7aa6c\",\n            \"2f46b85f-5f50-4615-9d79-84058268b085\",\n            \"b7b14d8f-7a67-4c67-936b-be04c56f3e49\",\n            \"c96898b3-f526-433f-a022-9da035c23a5a\",\n            \"7972adec-be86-44b8-97fa-b51c6e1d5099\",\n            \"8ea289bc-8302-47d2-b753-fa4c557dfa8f\",\n            \"35e5031c-731b-4df9-bb59-567d360b45cd\",\n            \"197c0b00-c8b0-4dd4-b44b-17c34590ce20\",\n            \"5dc86ee3-382b-4b54-944e-5da83d8b19f5\",\n            \"f9cd7f5f-ba4d-4495-857a-47954d68e324\",\n            \"97b50384-a36e-4122-9da3-992b077d1519\",\n            \"7554be9a-335c-4cf3-86b3-5b339281028d\",\n            \"b0ff89bb-5996-4d3a-8e8f-57aea53d8f06\",\n            \"106add2f-7301-4ea9-bc88-8a0defc833a7\",\n            \"0cbee5d2-71cd-44f3-aab3-9ed0b855d33f\",\n            \"cfeb4a58-c92a-4bd6-889c-09d71fa37a0c\",\n            \"0e4fe5fe-7998-44f5-a59f-02a79124bee4\",\n            \"b9f82e14-1fb5-485d-8789-0f957d24bac0\",\n            \"b4bfa459-5d42-4466-ab57-1024dc3905d6\",\n            \"d20ff122-9d2d-4910-bd43-29274fb4bcbd\",\n            \"d239cf1f-5c75-493f-9dcf-1b0fe3095cf7\",\n            \"9ee7006d-3311-420f-b03f-dba821084257\",\n            \"f5bd0061-463f-4576-8505-475f599098cd\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"082dd7c2-b904-4a72-a0df-f115dc4a1205\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.724609375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09901082515716553,\n          \"Height\": 0.02089267037808895,\n          \"Left\": 0.04566045477986336,\n          \"Top\": 0.22921936213970184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0456632561981678,\n            \"Y\": 0.22921936213970184\n          },\n          {\n            \"X\": 0.1446712762117386,\n            \"Y\": 0.22927066683769226\n          },\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          },\n          {\n            \"X\": 0.04566045477986336,\n            \"Y\": 0.25006091594696045\n          }\n        ]\n      },\n      \"Id\": \"28d2e55e-011f-4aa8-a732-ea2345bd8511\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3e743b6d-5363-4d38-a996-d49dba07c6f5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 37.5244140625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08086540549993515,\n          \"Height\": 0.020883100107312202,\n          \"Left\": 0.1446692943572998,\n          \"Top\": 0.22927066683769226\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446712762117386,\n            \"Y\": 0.22927066683769226\n          },\n          {\n            \"X\": 0.22553470730781555,\n            \"Y\": 0.22931258380413055\n          },\n          {\n            \"X\": 0.2255333811044693,\n            \"Y\": 0.2501537799835205\n          },\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          }\n        ]\n      },\n      \"Id\": \"60eedac4-5ab9-4a6b-8768-45c0293ae284\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d0d21cf0-ad3d-4287-b301-e39519229e8b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 39.84375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0950496569275856,\n          \"Height\": 0.020890256389975548,\n          \"Left\": 0.2255333811044693,\n          \"Top\": 0.22931258380413055\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22553470730781555,\n            \"Y\": 0.22931258380413055\n          },\n          {\n            \"X\": 0.3205830454826355,\n            \"Y\": 0.22936183214187622\n          },\n          {\n            \"X\": 0.3205825090408325,\n            \"Y\": 0.25020283460617065\n          },\n          {\n            \"X\": 0.2255333811044693,\n            \"Y\": 0.2501537799835205\n          }\n        ]\n      },\n      \"Id\": \"859056d0-71b4-4f2c-abef-cbf78d4ff291\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"799cb262-ed70-4c3d-aa19-82ade7a19752\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 40.2587890625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11632633209228516,\n          \"Height\": 0.020901042968034744,\n          \"Left\": 0.3205825090408325,\n          \"Top\": 0.22936183214187622\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3205830454826355,\n            \"Y\": 0.22936183214187622\n          },\n          {\n            \"X\": 0.43690842390060425,\n            \"Y\": 0.22942212224006653\n          },\n          {\n            \"X\": 0.4369088113307953,\n            \"Y\": 0.25026288628578186\n          },\n          {\n            \"X\": 0.3205825090408325,\n            \"Y\": 0.25020283460617065\n          }\n        ]\n      },\n      \"Id\": \"c2820a8c-fb82-4e92-8b74-a9e4057f6b8e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7716c163-f0f4-457d-8e93-525196c32585\",\n            \"147a1048-7567-4fe6-9c04-a26d5171dc35\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.3583984375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10546226054430008,\n          \"Height\": 0.02089519612491131,\n          \"Left\": 0.43690842390060425,\n          \"Top\": 0.22942212224006653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43690842390060425,\n            \"Y\": 0.22942212224006653\n          },\n          {\n            \"X\": 0.5423693656921387,\n            \"Y\": 0.22947677969932556\n          },\n          {\n            \"X\": 0.5423706769943237,\n            \"Y\": 0.2503173351287842\n          },\n          {\n            \"X\": 0.4369088113307953,\n            \"Y\": 0.25026288628578186\n          }\n        ]\n      },\n      \"Id\": \"9996f89d-6ac2-4051-88a2-c1819efc74cb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"812008ae-e030-432d-831f-514428f2e4fa\",\n            \"d650beef-675e-4209-9be0-ef15c97fd172\",\n            \"cd0cecfd-f414-4d40-850b-642e1015995a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 83.251953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0990108996629715,\n          \"Height\": 0.015396556816995144,\n          \"Left\": 0.04565839469432831,\n          \"Top\": 0.25006091594696045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04566045477986336,\n            \"Y\": 0.25006091594696045\n          },\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          },\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          },\n          {\n            \"X\": 0.04565839469432831,\n            \"Y\": 0.2654065191745758\n          }\n        ]\n      },\n      \"Id\": \"771b364c-035c-4e25-8a22-575e4755aa11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e713fe7-9f79-41ff-99fa-bbeb91a24faf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 73.095703125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08086554706096649,\n          \"Height\": 0.015387068502604961,\n          \"Left\": 0.1446678340435028,\n          \"Top\": 0.25011202692985535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          },\n          {\n            \"X\": 0.2255333811044693,\n            \"Y\": 0.2501537799835205\n          },\n          {\n            \"X\": 0.2255324125289917,\n            \"Y\": 0.2654991149902344\n          },\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          }\n        ]\n      },\n      \"Id\": \"6dd96935-09f4-4a99-9af6-31110e3d8a0a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2188b790-5153-4697-b659-b7d3151fb5d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 77.63671875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09505008906126022,\n          \"Height\": 0.015394246205687523,\n          \"Left\": 0.2255324125289917,\n          \"Top\": 0.2501537799835205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2255333811044693,\n            \"Y\": 0.2501537799835205\n          },\n          {\n            \"X\": 0.3205825090408325,\n            \"Y\": 0.25020283460617065\n          },\n          {\n            \"X\": 0.3205820918083191,\n            \"Y\": 0.2655480206012726\n          },\n          {\n            \"X\": 0.2255324125289917,\n            \"Y\": 0.2654991149902344\n          }\n        ]\n      },\n      \"Id\": \"3cc6427c-480a-4b4b-a31e-0b1e35c7aa6c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"861d4157-80b7-40d1-953e-92de280aef04\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.466796875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11632703244686127,\n          \"Height\": 0.015405053272843361,\n          \"Left\": 0.3205820918083191,\n          \"Top\": 0.25020283460617065\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3205825090408325,\n            \"Y\": 0.25020283460617065\n          },\n          {\n            \"X\": 0.4369088113307953,\n            \"Y\": 0.25026288628578186\n          },\n          {\n            \"X\": 0.43690913915634155,\n            \"Y\": 0.26560789346694946\n          },\n          {\n            \"X\": 0.3205820918083191,\n            \"Y\": 0.2655480206012726\n          }\n        ]\n      },\n      \"Id\": \"2f46b85f-5f50-4615-9d79-84058268b085\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a7450109-248e-4cf6-85e4-799e172d50d2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.51953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10546278208494186,\n          \"Height\": 0.015399284660816193,\n          \"Left\": 0.4369088113307953,\n          \"Top\": 0.25026288628578186\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369088113307953,\n            \"Y\": 0.25026288628578186\n          },\n          {\n            \"X\": 0.5423706769943237,\n            \"Y\": 0.2503173351287842\n          },\n          {\n            \"X\": 0.5423716306686401,\n            \"Y\": 0.26566216349601746\n          },\n          {\n            \"X\": 0.43690913915634155,\n            \"Y\": 0.26560789346694946\n          }\n        ]\n      },\n      \"Id\": \"b7b14d8f-7a67-4c67-936b-be04c56f3e49\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1d911cf8-c70a-4841-a107-ebae1e32e82b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.083984375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09901135414838791,\n          \"Height\": 0.014300469309091568,\n          \"Left\": 0.0456564798951149,\n          \"Top\": 0.2654065191745758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04565839469432831,\n            \"Y\": 0.2654065191745758\n          },\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          },\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          },\n          {\n            \"X\": 0.0456564798951149,\n            \"Y\": 0.27965617179870605\n          }\n        ]\n      },\n      \"Id\": \"c96898b3-f526-433f-a022-9da035c23a5a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81986e90-ce80-442d-aea3-e3c3b2dcdacd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 75.5859375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08086593449115753,\n          \"Height\": 0.014291017316281796,\n          \"Left\": 0.14466647803783417,\n          \"Top\": 0.26545748114585876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          },\n          {\n            \"X\": 0.2255324125289917,\n            \"Y\": 0.2654991149902344\n          },\n          {\n            \"X\": 0.22553150355815887,\n            \"Y\": 0.27974849939346313\n          },\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          }\n        ]\n      },\n      \"Id\": \"7972adec-be86-44b8-97fa-b51c6e1d5099\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef295caf-24fa-45fa-9c01-24fb1e1159eb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.2734375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09505058825016022,\n          \"Height\": 0.014298183843493462,\n          \"Left\": 0.22553150355815887,\n          \"Top\": 0.2654991149902344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2255324125289917,\n            \"Y\": 0.2654991149902344\n          },\n          {\n            \"X\": 0.3205820918083191,\n            \"Y\": 0.2655480206012726\n          },\n          {\n            \"X\": 0.32058173418045044,\n            \"Y\": 0.2797972857952118\n          },\n          {\n            \"X\": 0.22553150355815887,\n            \"Y\": 0.27974849939346313\n          }\n        ]\n      },\n      \"Id\": \"8ea289bc-8302-47d2-b753-fa4c557dfa8f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c962f0f4-4d1f-46d7-85ce-ff056b045efb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.103515625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1163276880979538,\n          \"Height\": 0.014308971352875233,\n          \"Left\": 0.32058173418045044,\n          \"Top\": 0.2655480206012726\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3205820918083191,\n            \"Y\": 0.2655480206012726\n          },\n          {\n            \"X\": 0.43690913915634155,\n            \"Y\": 0.26560789346694946\n          },\n          {\n            \"X\": 0.43690940737724304,\n            \"Y\": 0.27985697984695435\n          },\n          {\n            \"X\": 0.32058173418045044,\n            \"Y\": 0.2797972857952118\n          }\n        ]\n      },\n      \"Id\": \"35e5031c-731b-4df9-bb59-567d360b45cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c5ab781-5ab7-4592-bca8-511160cd8ca4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.3515625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10546335577964783,\n          \"Height\": 0.014303230680525303,\n          \"Left\": 0.43690913915634155,\n          \"Top\": 0.26560789346694946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43690913915634155,\n            \"Y\": 0.26560789346694946\n          },\n          {\n            \"X\": 0.5423716306686401,\n            \"Y\": 0.26566216349601746\n          },\n          {\n            \"X\": 0.542372465133667,\n            \"Y\": 0.2799111306667328\n          },\n          {\n            \"X\": 0.43690940737724304,\n            \"Y\": 0.27985697984695435\n          }\n        ]\n      },\n      \"Id\": \"197c0b00-c8b0-4dd4-b44b-17c34590ce20\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0bcdea31-cd25-4288-a9da-4350fdab614c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.15234375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09901205450296402,\n          \"Height\": 0.015396625734865665,\n          \"Left\": 0.04565441980957985,\n          \"Top\": 0.27965617179870605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0456564798951149,\n            \"Y\": 0.27965617179870605\n          },\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          },\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          },\n          {\n            \"X\": 0.04565441980957985,\n            \"Y\": 0.29500213265419006\n          }\n        ]\n      },\n      \"Id\": \"5dc86ee3-382b-4b54-944e-5da83d8b19f5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46ededb1-0e69-439b-8c72-ab7939b7dbe9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 71.240234375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0808664932847023,\n          \"Height\": 0.015387189574539661,\n          \"Left\": 0.14466501772403717,\n          \"Top\": 0.2797069847583771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          },\n          {\n            \"X\": 0.22553150355815887,\n            \"Y\": 0.27974849939346313\n          },\n          {\n            \"X\": 0.22553053498268127,\n            \"Y\": 0.29509419202804565\n          },\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          }\n        ]\n      },\n      \"Id\": \"f9cd7f5f-ba4d-4495-857a-47954d68e324\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cce901bd-3c9f-49fe-bcca-704edd66fa42\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 75.68359375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09505119174718857,\n          \"Height\": 0.01539432629942894,\n          \"Left\": 0.22553053498268127,\n          \"Top\": 0.27974849939346313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22553150355815887,\n            \"Y\": 0.27974849939346313\n          },\n          {\n            \"X\": 0.32058173418045044,\n            \"Y\": 0.2797972857952118\n          },\n          {\n            \"X\": 0.320581316947937,\n            \"Y\": 0.2951428294181824\n          },\n          {\n            \"X\": 0.22553053498268127,\n            \"Y\": 0.29509419202804565\n          }\n        ]\n      },\n      \"Id\": \"97b50384-a36e-4122-9da3-992b077d1519\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"090b5b9f-9f6e-42c8-84fc-2ca2c098faec\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 76.46484375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11632838845252991,\n          \"Height\": 0.015405070967972279,\n          \"Left\": 0.320581316947937,\n          \"Top\": 0.2797972857952118\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32058173418045044,\n            \"Y\": 0.2797972857952118\n          },\n          {\n            \"X\": 0.43690940737724304,\n            \"Y\": 0.27985697984695435\n          },\n          {\n            \"X\": 0.4369097054004669,\n            \"Y\": 0.2952023446559906\n          },\n          {\n            \"X\": 0.320581316947937,\n            \"Y\": 0.2951428294181824\n          }\n        ]\n      },\n      \"Id\": \"7554be9a-335c-4cf3-86b3-5b339281028d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"adf96d5c-a0b9-4107-81bb-9d8d00122fe6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.46875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10546401143074036,\n          \"Height\": 0.015399334952235222,\n          \"Left\": 0.43690940737724304,\n          \"Top\": 0.27985697984695435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43690940737724304,\n            \"Y\": 0.27985697984695435\n          },\n          {\n            \"X\": 0.542372465133667,\n            \"Y\": 0.2799111306667328\n          },\n          {\n            \"X\": 0.5423734188079834,\n            \"Y\": 0.2952563166618347\n          },\n          {\n            \"X\": 0.4369097054004669,\n            \"Y\": 0.2952023446559906\n          }\n        ]\n      },\n      \"Id\": \"b0ff89bb-5996-4d3a-8e8f-57aea53d8f06\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dba0c35d-ac41-4105-8164-ee54641f8738\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 77.294921875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09901265799999237,\n          \"Height\": 0.0153966611251235,\n          \"Left\": 0.0456523597240448,\n          \"Top\": 0.29500213265419006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04565441980957985,\n            \"Y\": 0.29500213265419006\n          },\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          },\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.0456523597240448,\n            \"Y\": 0.3103482723236084\n          }\n        ]\n      },\n      \"Id\": \"106add2f-7301-4ea9-bc88-8a0defc833a7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"66460174-ed8f-40c8-99ff-274c84640092\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.87109375,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0808669775724411,\n          \"Height\": 0.015387252904474735,\n          \"Left\": 0.14466354250907898,\n          \"Top\": 0.29505279660224915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          },\n          {\n            \"X\": 0.22553053498268127,\n            \"Y\": 0.29509419202804565\n          },\n          {\n            \"X\": 0.22552955150604248,\n            \"Y\": 0.3104400634765625\n          },\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          }\n        ]\n      },\n      \"Id\": \"0cbee5d2-71cd-44f3-aab3-9ed0b855d33f\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 72.0703125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09505176544189453,\n          \"Height\": 0.015394367277622223,\n          \"Left\": 0.22552955150604248,\n          \"Top\": 0.29509419202804565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22553053498268127,\n            \"Y\": 0.29509419202804565\n          },\n          {\n            \"X\": 0.320581316947937,\n            \"Y\": 0.2951428294181824\n          },\n          {\n            \"X\": 0.32058092951774597,\n            \"Y\": 0.3104885518550873\n          },\n          {\n            \"X\": 0.22552955150604248,\n            \"Y\": 0.3104400634765625\n          }\n        ]\n      },\n      \"Id\": \"cfeb4a58-c92a-4bd6-889c-09d71fa37a0c\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 72.8515625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11632909625768661,\n          \"Height\": 0.015405080281198025,\n          \"Left\": 0.32058092951774597,\n          \"Top\": 0.2951428294181824\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.320581316947937,\n            \"Y\": 0.2951428294181824\n          },\n          {\n            \"X\": 0.4369097054004669,\n            \"Y\": 0.2952023446559906\n          },\n          {\n            \"X\": 0.4369100034236908,\n            \"Y\": 0.31054791808128357\n          },\n          {\n            \"X\": 0.32058092951774597,\n            \"Y\": 0.3104885518550873\n          }\n        ]\n      },\n      \"Id\": \"0e4fe5fe-7998-44f5-a59f-02a79124bee4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"141d88fa-fd6f-4f49-a182-085cf64852bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 76.66015625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10546465218067169,\n          \"Height\": 0.015399360097944736,\n          \"Left\": 0.4369097054004669,\n          \"Top\": 0.2952023446559906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369097054004669,\n            \"Y\": 0.2952023446559906\n          },\n          {\n            \"X\": 0.5423734188079834,\n            \"Y\": 0.2952563166618347\n          },\n          {\n            \"X\": 0.5423743724822998,\n            \"Y\": 0.31060171127319336\n          },\n          {\n            \"X\": 0.4369100034236908,\n            \"Y\": 0.31054791808128357\n          }\n        ]\n      },\n      \"Id\": \"b9f82e14-1fb5-485d-8789-0f957d24bac0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"da39dca6-0ee0-4d1e-8dd2-13a5359fc0d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 53.61328125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09901340305805206,\n          \"Height\": 0.016516776755452156,\n          \"Left\": 0.04565014690160751,\n          \"Top\": 0.3103482723236084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0456523597240448,\n            \"Y\": 0.3103482723236084\n          },\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.14466197788715363,\n            \"Y\": 0.3268650472164154\n          },\n          {\n            \"X\": 0.04565014690160751,\n            \"Y\": 0.3268147110939026\n          }\n        ]\n      },\n      \"Id\": \"b4bfa459-5d42-4466-ab57-1024dc3905d6\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 55.46875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08086757361888885,\n          \"Height\": 0.016483468934893608,\n          \"Left\": 0.14466197788715363,\n          \"Top\": 0.31039878726005554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.22552955150604248,\n            \"Y\": 0.3104400634765625\n          },\n          {\n            \"X\": 0.2255285084247589,\n            \"Y\": 0.3268822729587555\n          },\n          {\n            \"X\": 0.14466197788715363,\n            \"Y\": 0.3268411457538605\n          }\n        ]\n      },\n      \"Id\": \"d20ff122-9d2d-4910-bd43-29274fb4bcbd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9046d057-e39b-4ec8-8f3b-f46c0d113a43\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 55.46875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09505241364240646,\n          \"Height\": 0.016490552574396133,\n          \"Left\": 0.2255285084247589,\n          \"Top\": 0.3104400634765625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22552955150604248,\n            \"Y\": 0.3104400634765625\n          },\n          {\n            \"X\": 0.32058092951774597,\n            \"Y\": 0.3104885518550873\n          },\n          {\n            \"X\": 0.32058048248291016,\n            \"Y\": 0.32693061232566833\n          },\n          {\n            \"X\": 0.2255285084247589,\n            \"Y\": 0.3268822729587555\n          }\n        ]\n      },\n      \"Id\": \"d239cf1f-5c75-493f-9dcf-1b0fe3095cf7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"15793dda-51d2-4995-8ee6-8ed6420efdca\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 50.537109375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1163298487663269,\n          \"Height\": 0.016525138169527054,\n          \"Left\": 0.32058048248291016,\n          \"Top\": 0.3104885518550873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32058092951774597,\n            \"Y\": 0.3104885518550873\n          },\n          {\n            \"X\": 0.4369100034236908,\n            \"Y\": 0.31054791808128357\n          },\n          {\n            \"X\": 0.43691033124923706,\n            \"Y\": 0.32701370120048523\n          },\n          {\n            \"X\": 0.32058048248291016,\n            \"Y\": 0.32695451378822327\n          }\n        ]\n      },\n      \"Id\": \"9ee7006d-3311-420f-b03f-dba821084257\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eae93dbe-109d-412a-b39e-c107671f581d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 53.173828125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1054653599858284,\n          \"Height\": 0.016519423574209213,\n          \"Left\": 0.4369100034236908,\n          \"Top\": 0.31054791808128357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369100034236908,\n            \"Y\": 0.31054791808128357\n          },\n          {\n            \"X\": 0.5423743724822998,\n            \"Y\": 0.31060171127319336\n          },\n          {\n            \"X\": 0.542375385761261,\n            \"Y\": 0.3270673155784607\n          },\n          {\n            \"X\": 0.43691033124923706,\n            \"Y\": 0.32701370120048523\n          }\n        ]\n      },\n      \"Id\": \"f5bd0061-463f-4576-8505-475f599098cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"878cb027-04bf-47e9-a888-14e3ca865857\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 55.46875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 2,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17591895163059235,\n          \"Height\": 0.016555730253458023,\n          \"Left\": 0.14466197788715363,\n          \"Top\": 0.31039878726005554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.32058092951774597,\n            \"Y\": 0.3104885518550873\n          },\n          {\n            \"X\": 0.32058048248291016,\n            \"Y\": 0.32695451378822327\n          },\n          {\n            \"X\": 0.14466197788715363,\n            \"Y\": 0.3268650472164154\n          }\n        ]\n      },\n      \"Id\": \"082dd7c2-b904-4a72-a0df-f115dc4a1205\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d20ff122-9d2d-4910-bd43-29274fb4bcbd\",\n            \"d239cf1f-5c75-493f-9dcf-1b0fe3095cf7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 95.849609375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4006136357784271,\n          \"Height\": 0.12258601188659668,\n          \"Left\": 0.555202305316925,\n          \"Top\": 0.24725958704948425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.555202305316925,\n            \"Y\": 0.24725958704948425\n          },\n          {\n            \"X\": 0.9557884931564331,\n            \"Y\": 0.24746647477149963\n          },\n          {\n            \"X\": 0.9558159112930298,\n            \"Y\": 0.36984559893608093\n          },\n          {\n            \"X\": 0.5552104115486145,\n            \"Y\": 0.36964353919029236\n          }\n        ]\n      },\n      \"Id\": \"32a95697-277c-4ece-88ae-bce082aca0b8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0584b49e-d0bc-4059-9201-5f2fb2f7a46a\",\n            \"6f856642-4c4f-42f6-8147-bac194f96dfa\",\n            \"3ea30d4f-5570-45b9-a4fd-2ac64dddf97a\",\n            \"c69bcab7-da57-4322-8bfb-4b699058d115\",\n            \"acf6cf79-31b5-467f-850e-660234421ee4\",\n            \"35894aab-56c0-4107-aebb-08d936dd0f48\",\n            \"237a5006-9aa5-41b2-a882-2d1b6e740ab3\",\n            \"401648a7-6559-4608-96ef-a9b5938ead6e\",\n            \"3aa00291-db6e-4636-b8f6-a332864b8ea1\",\n            \"74c2e9fe-c62a-4147-8d87-0e69e01a8f5f\",\n            \"906ccdfd-0eda-4825-9b90-074047d76083\",\n            \"8a9905cd-0886-4ce5-a358-d8828602d949\",\n            \"e90fd8a6-8cb1-46f0-a6f6-2d5ea48bb2c5\",\n            \"7ec40b2c-080a-4ab6-b38e-665181eaa6d1\",\n            \"d56aacb2-9135-4071-8a66-ed0440aad95a\",\n            \"6e10ee87-8ba4-4d47-98f5-8e3c3d8cb3c7\",\n            \"9bafb85c-6302-4300-b683-67e39e6b154e\",\n            \"830b934f-b80c-4a50-ab28-7d8e05bcbb55\",\n            \"4dbda2f9-af70-489b-85d3-4591d61e0d6c\",\n            \"86c816a1-b84c-4b0d-a985-dba369b1aca4\",\n            \"1465710d-95e3-4b29-afdd-be99b8a2967a\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"8c00bf45-2a4a-4c2c-8a0b-870e8a1d9d87\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_TITLE\",\n          \"Ids\": [\n            \"96757ad2-776d-4198-b4bb-289c486de166\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.671875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1844106763601303,\n          \"Height\": 0.006671445444226265,\n          \"Left\": 0.5546508431434631,\n          \"Top\": 0.24703550338745117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5546508431434631,\n            \"Y\": 0.24703550338745117\n          },\n          {\n            \"X\": 0.7390605807304382,\n            \"Y\": 0.24713075160980225\n          },\n          {\n            \"X\": 0.7390614748001099,\n            \"Y\": 0.2537069618701935\n          },\n          {\n            \"X\": 0.5546512603759766,\n            \"Y\": 0.25361183285713196\n          }\n        ]\n      },\n      \"Id\": \"0584b49e-d0bc-4059-9201-5f2fb2f7a46a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.671875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10638837516307831,\n          \"Height\": 0.00663107680156827,\n          \"Left\": 0.7390605807304382,\n          \"Top\": 0.24713075160980225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7390605807304382,\n            \"Y\": 0.24713075160980225\n          },\n          {\n            \"X\": 0.8454477787017822,\n            \"Y\": 0.24718570709228516\n          },\n          {\n            \"X\": 0.8454489707946777,\n            \"Y\": 0.25376182794570923\n          },\n          {\n            \"X\": 0.7390614748001099,\n            \"Y\": 0.2537069618701935\n          }\n        ]\n      },\n      \"Id\": \"6f856642-4c4f-42f6-8147-bac194f96dfa\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.671875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064177006483078,\n          \"Height\": 0.006633201614022255,\n          \"Left\": 0.8454477787017822,\n          \"Top\": 0.24718570709228516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454477787017822,\n            \"Y\": 0.24718570709228516\n          },\n          {\n            \"X\": 0.9560880661010742,\n            \"Y\": 0.24724285304546356\n          },\n          {\n            \"X\": 0.9560895562171936,\n            \"Y\": 0.25381889939308167\n          },\n          {\n            \"X\": 0.8454489707946777,\n            \"Y\": 0.25376182794570923\n          }\n        ]\n      },\n      \"Id\": \"3ea30d4f-5570-45b9-a4fd-2ac64dddf97a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.392578125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18386048078536987,\n          \"Height\": 0.012151292525231838,\n          \"Left\": 0.5552027225494385,\n          \"Top\": 0.25361210107803345\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5552027225494385,\n            \"Y\": 0.25361210107803345\n          },\n          {\n            \"X\": 0.7390614748001099,\n            \"Y\": 0.2537069618701935\n          },\n          {\n            \"X\": 0.7390632033348083,\n            \"Y\": 0.26576340198516846\n          },\n          {\n            \"X\": 0.5552034974098206,\n            \"Y\": 0.2656687796115875\n          }\n        ]\n      },\n      \"Id\": \"c69bcab7-da57-4322-8bfb-4b699058d115\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2cc46da4-6d86-4345-bc7a-ce0f498249fe\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 45.8251953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10638964176177979,\n          \"Height\": 0.012111201882362366,\n          \"Left\": 0.7390614748001099,\n          \"Top\": 0.2537069618701935\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7390614748001099,\n            \"Y\": 0.2537069618701935\n          },\n          {\n            \"X\": 0.8454489707946777,\n            \"Y\": 0.25376182794570923\n          },\n          {\n            \"X\": 0.8454511165618896,\n            \"Y\": 0.26581814885139465\n          },\n          {\n            \"X\": 0.7390632033348083,\n            \"Y\": 0.26576340198516846\n          }\n        ]\n      },\n      \"Id\": \"acf6cf79-31b5-467f-850e-660234421ee4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b62d8678-f2df-4da7-b01e-064a5f0925a0\",\n            \"e1d2165a-cb96-43a3-b4e1-a850c726f33d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 51.806640625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11034364998340607,\n          \"Height\": 0.012113109230995178,\n          \"Left\": 0.8454489707946777,\n          \"Top\": 0.25376182794570923\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454489707946777,\n            \"Y\": 0.25376182794570923\n          },\n          {\n            \"X\": 0.9557899236679077,\n            \"Y\": 0.2538187503814697\n          },\n          {\n            \"X\": 0.9557926058769226,\n            \"Y\": 0.2658749520778656\n          },\n          {\n            \"X\": 0.8454511165618896,\n            \"Y\": 0.26581814885139465\n          }\n        ]\n      },\n      \"Id\": \"35894aab-56c0-4107-aebb-08d936dd0f48\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eee6dc86-7e38-4d36-822a-6ee69a3c58a4\",\n            \"ca711130-715f-4114-9ae8-363cb6fe441d\",\n            \"da112398-09e8-482b-af16-115dd19982c9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.814453125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1838616579771042,\n          \"Height\": 0.014343302696943283,\n          \"Left\": 0.5552034974098206,\n          \"Top\": 0.2656687796115875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5552034974098206,\n            \"Y\": 0.2656687796115875\n          },\n          {\n            \"X\": 0.7390632033348083,\n            \"Y\": 0.26576340198516846\n          },\n          {\n            \"X\": 0.7390651702880859,\n            \"Y\": 0.2800120711326599\n          },\n          {\n            \"X\": 0.555204451084137,\n            \"Y\": 0.27991771697998047\n          }\n        ]\n      },\n      \"Id\": \"237a5006-9aa5-41b2-a882-2d1b6e740ab3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c920135-96b7-423d-b955-7074ef8a682c\",\n            \"7554e53b-1f70-4285-ba3d-ba1014cad4b6\",\n            \"ec255b17-2821-40a8-b702-94cef08ad866\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 74.169921875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10639054328203201,\n          \"Height\": 0.014303280971944332,\n          \"Left\": 0.7390632033348083,\n          \"Top\": 0.26576340198516846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7390632033348083,\n            \"Y\": 0.26576340198516846\n          },\n          {\n            \"X\": 0.8454511165618896,\n            \"Y\": 0.26581814885139465\n          },\n          {\n            \"X\": 0.8454537391662598,\n            \"Y\": 0.28006666898727417\n          },\n          {\n            \"X\": 0.7390651702880859,\n            \"Y\": 0.2800120711326599\n          }\n        ]\n      },\n      \"Id\": \"401648a7-6559-4608-96ef-a9b5938ead6e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"95c2930a-bfcc-4300-94fa-4334a433d32c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 83.837890625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11034466326236725,\n          \"Height\": 0.014305160380899906,\n          \"Left\": 0.8454511165618896,\n          \"Top\": 0.26581814885139465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454511165618896,\n            \"Y\": 0.26581814885139465\n          },\n          {\n            \"X\": 0.9557926058769226,\n            \"Y\": 0.2658749520778656\n          },\n          {\n            \"X\": 0.9557958245277405,\n            \"Y\": 0.2801233232021332\n          },\n          {\n            \"X\": 0.8454537391662598,\n            \"Y\": 0.28006666898727417\n          }\n        ]\n      },\n      \"Id\": \"3aa00291-db6e-4636-b8f6-a332864b8ea1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de0bac35-db04-4791-9f84-a8e72b6ecd9d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.623046875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18386389315128326,\n          \"Height\": 0.023111797869205475,\n          \"Left\": 0.555204451084137,\n          \"Top\": 0.27991771697998047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.555204451084137,\n            \"Y\": 0.27991771697998047\n          },\n          {\n            \"X\": 0.7390651702880859,\n            \"Y\": 0.2800120711326599\n          },\n          {\n            \"X\": 0.739068329334259,\n            \"Y\": 0.30302950739860535\n          },\n          {\n            \"X\": 0.5552060008049011,\n            \"Y\": 0.30293554067611694\n          }\n        ]\n      },\n      \"Id\": \"74c2e9fe-c62a-4147-8d87-0e69e01a8f5f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32c7c392-b41d-4371-98c6-b3a2d9e4cf50\",\n            \"c0352b58-49ab-4f57-a14a-b405f5910935\",\n            \"05e975a6-ebd0-4673-8adf-c534442dda48\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 77.490234375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10639272630214691,\n          \"Height\": 0.023071791976690292,\n          \"Left\": 0.7390651702880859,\n          \"Top\": 0.2800120711326599\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7390651702880859,\n            \"Y\": 0.2800120711326599\n          },\n          {\n            \"X\": 0.8454537391662598,\n            \"Y\": 0.28006666898727417\n          },\n          {\n            \"X\": 0.8454578518867493,\n            \"Y\": 0.3030838668346405\n          },\n          {\n            \"X\": 0.739068329334259,\n            \"Y\": 0.30302950739860535\n          }\n        ]\n      },\n      \"Id\": \"906ccdfd-0eda-4825-9b90-074047d76083\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.548828125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11034724861383438,\n          \"Height\": 0.023073570802807808,\n          \"Left\": 0.8454537391662598,\n          \"Top\": 0.28006666898727417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454537391662598,\n            \"Y\": 0.28006666898727417\n          },\n          {\n            \"X\": 0.9557958245277405,\n            \"Y\": 0.2801233232021332\n          },\n          {\n            \"X\": 0.9558009505271912,\n            \"Y\": 0.303140252828598\n          },\n          {\n            \"X\": 0.8454578518867493,\n            \"Y\": 0.3030838668346405\n          }\n        ]\n      },\n      \"Id\": \"8a9905cd-0886-4ce5-a358-d8828602d949\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3d60009-3c96-4d3e-b693-8bd8fd98c33e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.7978515625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1838657259941101,\n          \"Height\": 0.02420789562165737,\n          \"Left\": 0.5552060008049011,\n          \"Top\": 0.30293554067611694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5552060008049011,\n            \"Y\": 0.30293554067611694\n          },\n          {\n            \"X\": 0.739068329334259,\n            \"Y\": 0.30302950739860535\n          },\n          {\n            \"X\": 0.7390716671943665,\n            \"Y\": 0.32714346051216125\n          },\n          {\n            \"X\": 0.5552075505256653,\n            \"Y\": 0.32704994082450867\n          }\n        ]\n      },\n      \"Id\": \"e90fd8a6-8cb1-46f0-a6f6-2d5ea48bb2c5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"359f3d6d-a052-49c7-9b44-d41640a26b57\",\n            \"6c02d677-8d83-4833-8212-4e63957d4e25\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 37.4267578125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10639388859272003,\n          \"Height\": 0.02416805550456047,\n          \"Left\": 0.739068329334259,\n          \"Top\": 0.30302950739860535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.739068329334259,\n            \"Y\": 0.30302950739860535\n          },\n          {\n            \"X\": 0.8454578518867493,\n            \"Y\": 0.3030838668346405\n          },\n          {\n            \"X\": 0.8454622626304626,\n            \"Y\": 0.3271975517272949\n          },\n          {\n            \"X\": 0.7390716671943665,\n            \"Y\": 0.32714346051216125\n          }\n        ]\n      },\n      \"Id\": \"7ec40b2c-080a-4ab6-b38e-665181eaa6d1\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.3095703125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11034849286079407,\n          \"Height\": 0.024169811978936195,\n          \"Left\": 0.8454578518867493,\n          \"Top\": 0.3030838668346405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454578518867493,\n            \"Y\": 0.3030838668346405\n          },\n          {\n            \"X\": 0.9558009505271912,\n            \"Y\": 0.303140252828598\n          },\n          {\n            \"X\": 0.9558063745498657,\n            \"Y\": 0.32725366950035095\n          },\n          {\n            \"X\": 0.8454622626304626,\n            \"Y\": 0.3271975517272949\n          }\n        ]\n      },\n      \"Id\": \"d56aacb2-9135-4071-8a66-ed0440aad95a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f8e72572-c426-4eb2-badc-ab4f7d0d710a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.19921875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18386654555797577,\n          \"Height\": 0.01763121411204338,\n          \"Left\": 0.5552075505256653,\n          \"Top\": 0.32704994082450867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5552075505256653,\n            \"Y\": 0.32704994082450867\n          },\n          {\n            \"X\": 0.7390716671943665,\n            \"Y\": 0.32714346051216125\n          },\n          {\n            \"X\": 0.7390741109848022,\n            \"Y\": 0.34468114376068115\n          },\n          {\n            \"X\": 0.5552087426185608,\n            \"Y\": 0.34458795189857483\n          }\n        ]\n      },\n      \"Id\": \"6e10ee87-8ba4-4d47-98f5-8e3c3d8cb3c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42ac2887-8d88-4bd6-8950-1a50021577f4\",\n            \"416435d6-3e3e-4358-94fa-0e7ad3bb98f8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 69.287109375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1063937097787857,\n          \"Height\": 0.017591627314686775,\n          \"Left\": 0.7390716671943665,\n          \"Top\": 0.32714346051216125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7390716671943665,\n            \"Y\": 0.32714346051216125\n          },\n          {\n            \"X\": 0.8454622626304626,\n            \"Y\": 0.3271975517272949\n          },\n          {\n            \"X\": 0.8454654216766357,\n            \"Y\": 0.3447350859642029\n          },\n          {\n            \"X\": 0.7390741109848022,\n            \"Y\": 0.34468114376068115\n          }\n        ]\n      },\n      \"Id\": \"9bafb85c-6302-4300-b683-67e39e6b154e\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.271484375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11034806817770004,\n          \"Height\": 0.017593447118997574,\n          \"Left\": 0.8454622626304626,\n          \"Top\": 0.3271975517272949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454622626304626,\n            \"Y\": 0.3271975517272949\n          },\n          {\n            \"X\": 0.9558063745498657,\n            \"Y\": 0.32725366950035095\n          },\n          {\n            \"X\": 0.9558103084564209,\n            \"Y\": 0.3447909951210022\n          },\n          {\n            \"X\": 0.8454654216766357,\n            \"Y\": 0.3447350859642029\n          }\n        ]\n      },\n      \"Id\": \"830b934f-b80c-4a50-ab28-7d8e05bcbb55\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2a6a9b39-7d30-4838-b23d-eba8969dc66c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.72265625,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.183868870139122,\n          \"Height\": 0.025148315355181694,\n          \"Left\": 0.5552087426185608,\n          \"Top\": 0.34458795189857483\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5552087426185608,\n            \"Y\": 0.34458795189857483\n          },\n          {\n            \"X\": 0.7390741109848022,\n            \"Y\": 0.34468114376068115\n          },\n          {\n            \"X\": 0.739077627658844,\n            \"Y\": 0.36973628401756287\n          },\n          {\n            \"X\": 0.5552104115486145,\n            \"Y\": 0.36964353919029236\n          }\n        ]\n      },\n      \"Id\": \"4dbda2f9-af70-489b-85d3-4591d61e0d6c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"645e9ba0-5da6-4c63-8389-6c416316d347\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.296875,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10639580339193344,\n          \"Height\": 0.025108784437179565,\n          \"Left\": 0.7390741109848022,\n          \"Top\": 0.34468114376068115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7390741109848022,\n            \"Y\": 0.34468114376068115\n          },\n          {\n            \"X\": 0.8454654216766357,\n            \"Y\": 0.3447350859642029\n          },\n          {\n            \"X\": 0.8454699516296387,\n            \"Y\": 0.3697899281978607\n          },\n          {\n            \"X\": 0.739077627658844,\n            \"Y\": 0.36973628401756287\n          }\n        ]\n      },\n      \"Id\": \"86c816a1-b84c-4b0d-a985-dba369b1aca4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e975c53-1124-47a6-978f-94304d7e9d64\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.6484375,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11035051941871643,\n          \"Height\": 0.0251105148345232,\n          \"Left\": 0.8454654216766357,\n          \"Top\": 0.3447350859642029\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8454654216766357,\n            \"Y\": 0.3447350859642029\n          },\n          {\n            \"X\": 0.9558103084564209,\n            \"Y\": 0.3447909951210022\n          },\n          {\n            \"X\": 0.9558159112930298,\n            \"Y\": 0.36984559893608093\n          },\n          {\n            \"X\": 0.8454699516296387,\n            \"Y\": 0.3697899281978607\n          }\n        ]\n      },\n      \"Id\": \"1465710d-95e3-4b29-afdd-be99b8a2967a\"\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 38.671875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 3,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.40058761835098267,\n          \"Height\": 0.006559173576533794,\n          \"Left\": 0.555202305316925,\n          \"Top\": 0.24725958704948425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.555202305316925,\n            \"Y\": 0.24725958704948425\n          },\n          {\n            \"X\": 0.9557884931564331,\n            \"Y\": 0.24746647477149963\n          },\n          {\n            \"X\": 0.9557899236679077,\n            \"Y\": 0.2538187503814697\n          },\n          {\n            \"X\": 0.5552027225494385,\n            \"Y\": 0.25361210107803345\n          }\n        ]\n      },\n      \"Id\": \"8c00bf45-2a4a-4c2c-8a0b-870e8a1d9d87\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0584b49e-d0bc-4059-9201-5f2fb2f7a46a\",\n            \"6f856642-4c4f-42f6-8147-bac194f96dfa\",\n            \"3ea30d4f-5570-45b9-a4fd-2ac64dddf97a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 98.583984375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.49787649512290955,\n          \"Height\": 0.26706597208976746,\n          \"Left\": 0.0448293462395668,\n          \"Top\": 0.34422987699508667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04486526921391487,\n            \"Y\": 0.34422987699508667\n          },\n          {\n            \"X\": 0.5426894426345825,\n            \"Y\": 0.3444821834564209\n          },\n          {\n            \"X\": 0.5427058339118958,\n            \"Y\": 0.6112958192825317\n          },\n          {\n            \"X\": 0.0448293462395668,\n            \"Y\": 0.6110566258430481\n          }\n        ]\n      },\n      \"Id\": \"502d78db-3737-4997-bd33-46786519de35\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b79c3cf-efa3-475a-bee5-a1000a940b3e\",\n            \"596010ec-c40a-46e4-9471-6024a85c0668\",\n            \"a4f0e2b4-5a10-4010-af1d-a676f7b19b27\",\n            \"c2445484-31b2-4874-b440-d2dae8f6a85a\",\n            \"09dbedf6-12ba-4e3e-ab3d-10861d0fea2b\",\n            \"fc4a316a-82dc-4cd2-8597-c1ef753fb750\",\n            \"8b8771b8-fdc4-4f4f-b6d7-a06f45731763\",\n            \"33b0cd9e-e055-48fd-9816-36ba1dabbaa3\",\n            \"fa562eea-7972-4f25-a417-8944f4dd6a41\",\n            \"c4004c1f-0a4f-4bf4-ab48-f597caf604ea\",\n            \"41eb4c8a-96d9-45e8-b027-50644227de2a\",\n            \"f3557d3f-bde9-4ff7-8658-bbd7a441af4a\",\n            \"d1f84e86-9e72-4449-bdae-e1143594d5b0\",\n            \"5c6ea993-1397-4f9c-b466-6598adff0a2d\",\n            \"b9f5dd7b-0021-4d6d-9704-32c0a3918bc0\",\n            \"d22deeb0-11a5-4614-a8ec-f7d1a34ef891\",\n            \"40cebf66-4e00-4706-b43d-f41d60b0b8a4\",\n            \"01e13cd4-3a9d-4d47-a7ec-e17d6c0ad28f\",\n            \"95f9fb8c-50c6-4c23-8b06-32374df047e0\",\n            \"24bd9958-9073-499c-843b-5c0fd4210d4f\",\n            \"926eca2a-16d0-4110-9fcd-38e5e33b9d4f\",\n            \"941402fa-33e1-4a70-8779-5cffa89938a3\",\n            \"76ac298f-0ada-48e0-a149-3006fec32115\",\n            \"5013520a-2dbf-4496-b28e-bb9f792186df\",\n            \"4efc5cd6-2262-4d5b-b443-b3f0a8135a83\",\n            \"4d9d1079-9e2f-4d76-a45e-3773cb2b3e80\",\n            \"8ab0ae7a-35b5-472e-a63e-fc65109f90a0\",\n            \"96ab5f0f-8e05-40ca-8f4c-1cb6a92269c3\",\n            \"8f6419d8-3ba6-47d9-9c9f-47908fd764ec\",\n            \"9d916862-4899-45be-9251-c2b85d02e6d2\",\n            \"486238f8-d4e3-4e69-bf64-3454f1145e57\",\n            \"9d8474b3-dff8-442b-a144-1d24d34d8297\",\n            \"ee147d0a-9345-406f-9f8f-2e0d593b0d82\",\n            \"a7463f12-ddbf-4ba2-8e7e-61776f4c1e4b\",\n            \"5cfa911b-73c6-4e44-94fc-b2a638887c62\",\n            \"6097243d-cc11-403d-9abc-39c399535897\",\n            \"4274a648-94c7-4353-8cb0-59f439551c7c\",\n            \"03e7bbd1-c4cf-4309-b6e5-4b0ad8d7a3d9\",\n            \"42a42de2-f980-4fc6-821e-754043df7d38\",\n            \"b04977e6-c2fb-46d7-8812-f86060857205\",\n            \"fb6115bd-65ed-4aa5-b228-ea2d389aad21\",\n            \"47c72230-7ac8-4362-873f-c3f7dc02bbb1\",\n            \"4df5abdd-e939-4c76-85dd-34e25fc19c78\",\n            \"b81bd7ac-f8f9-4ed9-9888-ffbe611f7935\",\n            \"d868bdbf-940f-4749-99b9-20386f418f53\",\n            \"a1ce7c0f-6323-4c14-8c6a-79d513475056\",\n            \"7816923d-d021-4cea-8bb5-1df745899abc\",\n            \"649a04be-37c0-4858-86b3-17d65d6e0da2\",\n            \"cbe79c46-3452-4452-bbba-14c42a894af4\",\n            \"e3e75964-caed-432a-a89f-ace609a8192b\",\n            \"ad9104d0-05fb-4e15-8193-c46933bcd044\",\n            \"c4b3f8ee-63a4-47f2-8caf-2e7a12ce84d2\",\n            \"ec4316b1-bacf-4693-b60f-52d0dc0b2cdf\",\n            \"084cb739-c56a-42c1-b29e-e149c1d8a303\",\n            \"c358c4dd-8e7b-40e3-a3d8-68d4bcf896c6\",\n            \"b517aa44-1e5b-4441-899a-1e729d364cca\",\n            \"c162545a-315c-4786-9b3e-37662651f224\",\n            \"2e4175a5-4ada-4a35-a5f4-84fdd170de07\",\n            \"afc386f1-d898-4ec5-8a7c-ce373307223f\",\n            \"081186a9-e8cf-47f8-b0be-d8effa679cfe\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"3adbe227-58e6-4e6d-94d1-2ae5fda090d0\",\n            \"f22728fe-5aaa-4f20-814a-9d67cb68c48d\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_FOOTER\",\n          \"Ids\": [\n            \"98561955-9c62-408c-ad29-a78e1be9dc47\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.193359375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09979668259620667,\n          \"Height\": 0.012208023108541965,\n          \"Left\": 0.044863633811473846,\n          \"Top\": 0.34422987699508667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04486526921391487,\n            \"Y\": 0.34422987699508667\n          },\n          {\n            \"X\": 0.1446603238582611,\n            \"Y\": 0.3442804515361786\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.044863633811473846,\n            \"Y\": 0.3563874363899231\n          }\n        ]\n      },\n      \"Id\": \"0b79c3cf-efa3-475a-bee5-a1000a940b3e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f0dbe9e9-075f-4c54-b56e-941faf477a22\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.1591796875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20145709812641144,\n          \"Height\": 0.012159888632595539,\n          \"Left\": 0.144659161567688,\n          \"Top\": 0.34437987208366394\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466030895709991,\n            \"Y\": 0.34437987208366394\n          },\n          {\n            \"X\": 0.3461162745952606,\n            \"Y\": 0.3444819748401642\n          },\n          {\n            \"X\": 0.3461160659790039,\n            \"Y\": 0.3565397560596466\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          }\n        ]\n      },\n      \"Id\": \"596010ec-c40a-46e4-9471-6024a85c0668\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47848180-0256-493f-b93a-d60812321f63\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.1591796875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09930679202079773,\n          \"Height\": 0.01210799440741539,\n          \"Left\": 0.3461160659790039,\n          \"Top\": 0.3444819748401642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461162745952606,\n            \"Y\": 0.3444819748401642\n          },\n          {\n            \"X\": 0.44542258977890015,\n            \"Y\": 0.344532310962677\n          },\n          {\n            \"X\": 0.44542285799980164,\n            \"Y\": 0.3565899729728699\n          },\n          {\n            \"X\": 0.3461160659790039,\n            \"Y\": 0.3565397560596466\n          }\n        ]\n      },\n      \"Id\": \"a4f0e2b4-5a10-4010-af1d-a676f7b19b27\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.1591796875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09788648784160614,\n          \"Height\": 0.012107158079743385,\n          \"Left\": 0.44542258977890015,\n          \"Top\": 0.344532310962677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542258977890015,\n            \"Y\": 0.344532310962677\n          },\n          {\n            \"X\": 0.5433083176612854,\n            \"Y\": 0.3445819318294525\n          },\n          {\n            \"X\": 0.5433090925216675,\n            \"Y\": 0.35663947463035583\n          },\n          {\n            \"X\": 0.44542285799980164,\n            \"Y\": 0.3565899729728699\n          }\n        ]\n      },\n      \"Id\": \"c2445484-31b2-4874-b440-d2dae8f6a85a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0993146151304245,\n          \"Height\": 0.014300752431154251,\n          \"Left\": 0.04534454271197319,\n          \"Top\": 0.3563876748085022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0453464575111866,\n            \"Y\": 0.3563876748085022\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.14465780556201935,\n            \"Y\": 0.37068840861320496\n          },\n          {\n            \"X\": 0.04534454271197319,\n            \"Y\": 0.37063834071159363\n          }\n        ]\n      },\n      \"Id\": \"09dbedf6-12ba-4e3e-ab3d-10861d0fea2b\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.126953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20145827531814575,\n          \"Height\": 0.014352119527757168,\n          \"Left\": 0.14465780556201935,\n          \"Top\": 0.35643789172172546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.3461160659790039,\n            \"Y\": 0.3565397560596466\n          },\n          {\n            \"X\": 0.3461158573627472,\n            \"Y\": 0.3707900047302246\n          },\n          {\n            \"X\": 0.14465780556201935,\n            \"Y\": 0.37068840861320496\n          }\n        ]\n      },\n      \"Id\": \"fc4a316a-82dc-4cd2-8597-c1ef753fb750\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eb8b196a-7bf8-4548-af02-ceb00f3edf1d\",\n            \"3f71e83a-f017-4088-bc54-2041102c49d8\",\n            \"a19eb517-2166-4c1e-a481-bfd73d8f9d4e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 69.7265625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0993073433637619,\n          \"Height\": 0.014300325885415077,\n          \"Left\": 0.3461158573627472,\n          \"Top\": 0.3565397560596466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461160659790039,\n            \"Y\": 0.3565397560596466\n          },\n          {\n            \"X\": 0.44542285799980164,\n            \"Y\": 0.3565899729728699\n          },\n          {\n            \"X\": 0.4454231858253479,\n            \"Y\": 0.37084007263183594\n          },\n          {\n            \"X\": 0.3461158573627472,\n            \"Y\": 0.3707900047302246\n          }\n        ]\n      },\n      \"Id\": \"8b8771b8-fdc4-4f4f-b6d7-a06f45731763\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0aee13ab-e8de-4966-b87b-9783c6c083cb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.56640625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09726820886135101,\n          \"Height\": 0.01429915800690651,\n          \"Left\": 0.44542285799980164,\n          \"Top\": 0.3565899729728699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542285799980164,\n            \"Y\": 0.3565899729728699\n          },\n          {\n            \"X\": 0.5426902174949646,\n            \"Y\": 0.35663914680480957\n          },\n          {\n            \"X\": 0.5426910519599915,\n            \"Y\": 0.3708891272544861\n          },\n          {\n            \"X\": 0.4454231858253479,\n            \"Y\": 0.37084007263183594\n          }\n        ]\n      },\n      \"Id\": \"33b0cd9e-e055-48fd-9816-36ba1dabbaa3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47b62ed4-1aa0-4183-a329-380fe8ff9ba9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931547194719315,\n          \"Height\": 0.01649320125579834,\n          \"Left\": 0.0453423336148262,\n          \"Top\": 0.37063834071159363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04534454271197319,\n            \"Y\": 0.37063834071159363\n          },\n          {\n            \"X\": 0.14465780556201935,\n            \"Y\": 0.37068840861320496\n          },\n          {\n            \"X\": 0.144656240940094,\n            \"Y\": 0.38713154196739197\n          },\n          {\n            \"X\": 0.0453423336148262,\n            \"Y\": 0.3870816230773926\n          }\n        ]\n      },\n      \"Id\": \"fa562eea-7972-4f25-a417-8944f4dd6a41\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 69.921875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2014596164226532,\n          \"Height\": 0.01654438115656376,\n          \"Left\": 0.144656240940094,\n          \"Top\": 0.37068840861320496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465780556201935,\n            \"Y\": 0.37068840861320496\n          },\n          {\n            \"X\": 0.3461158573627472,\n            \"Y\": 0.3707900047302246\n          },\n          {\n            \"X\": 0.3461155891418457,\n            \"Y\": 0.38723281025886536\n          },\n          {\n            \"X\": 0.144656240940094,\n            \"Y\": 0.38713154196739197\n          }\n        ]\n      },\n      \"Id\": \"c4004c1f-0a4f-4bf4-ab48-f597caf604ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1cc1e5d4-d150-41ac-a70a-50440d1773a2\",\n            \"474c9066-ec4a-493d-bcfb-fd0759a0020a\",\n            \"385ed2c8-ee76-45b7-9ae1-701654813868\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 60.791015625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09930799156427383,\n          \"Height\": 0.016492709517478943,\n          \"Left\": 0.3461155891418457,\n          \"Top\": 0.3707900047302246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461158573627472,\n            \"Y\": 0.3707900047302246\n          },\n          {\n            \"X\": 0.4454231858253479,\n            \"Y\": 0.37084007263183594\n          },\n          {\n            \"X\": 0.44542357325553894,\n            \"Y\": 0.38728272914886475\n          },\n          {\n            \"X\": 0.3461155891418457,\n            \"Y\": 0.38723281025886536\n          }\n        ]\n      },\n      \"Id\": \"41eb4c8a-96d9-45e8-b027-50644227de2a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f9e2a3a4-f02d-4c19-9966-6a99527065f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 70.3125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09726889431476593,\n          \"Height\": 0.016491523012518883,\n          \"Left\": 0.4454231858253479,\n          \"Top\": 0.37084007263183594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454231858253479,\n            \"Y\": 0.37084007263183594\n          },\n          {\n            \"X\": 0.5426910519599915,\n            \"Y\": 0.3708891272544861\n          },\n          {\n            \"X\": 0.5426920652389526,\n            \"Y\": 0.38733160495758057\n          },\n          {\n            \"X\": 0.44542357325553894,\n            \"Y\": 0.38728272914886475\n          }\n        ]\n      },\n      \"Id\": \"f3557d3f-bde9-4ff7-8658-bbd7a441af4a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e939551-1432-4d30-8fae-aad832a9e7ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931552410125732,\n          \"Height\": 0.012108342722058296,\n          \"Left\": 0.04534070938825607,\n          \"Top\": 0.3870816230773926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0453423336148262,\n            \"Y\": 0.3870816230773926\n          },\n          {\n            \"X\": 0.144656240940094,\n            \"Y\": 0.38713154196739197\n          },\n          {\n            \"X\": 0.14465507864952087,\n            \"Y\": 0.3991899788379669\n          },\n          {\n            \"X\": 0.04534070938825607,\n            \"Y\": 0.3991401791572571\n          }\n        ]\n      },\n      \"Id\": \"d1f84e86-9e72-4449-bdae-e1143594d5b0\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.18359375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20146049559116364,\n          \"Height\": 0.012159443460404873,\n          \"Left\": 0.14465507864952087,\n          \"Top\": 0.38713154196739197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.144656240940094,\n            \"Y\": 0.38713154196739197\n          },\n          {\n            \"X\": 0.3461155891418457,\n            \"Y\": 0.38723281025886536\n          },\n          {\n            \"X\": 0.346115380525589,\n            \"Y\": 0.3992909789085388\n          },\n          {\n            \"X\": 0.14465507864952087,\n            \"Y\": 0.3991899788379669\n          }\n        ]\n      },\n      \"Id\": \"5c6ea993-1397-4f9c-b466-6598adff0a2d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62e7c77e-67f8-4eba-9148-f0cf6423d30a\",\n            \"e121b18c-96d2-4864-8f89-ec79eb1710f3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 54.931640625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09930846095085144,\n          \"Height\": 0.012107981368899345,\n          \"Left\": 0.346115380525589,\n          \"Top\": 0.38723281025886536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461155891418457,\n            \"Y\": 0.38723281025886536\n          },\n          {\n            \"X\": 0.44542357325553894,\n            \"Y\": 0.38728272914886475\n          },\n          {\n            \"X\": 0.44542384147644043,\n            \"Y\": 0.39934077858924866\n          },\n          {\n            \"X\": 0.346115380525589,\n            \"Y\": 0.3992909789085388\n          }\n        ]\n      },\n      \"Id\": \"b9f5dd7b-0021-4d6d-9704-32c0a3918bc0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f65ad30e-a8fe-4f61-aacd-32e58b15de80\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.525390625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09726925194263458,\n          \"Height\": 0.012106840498745441,\n          \"Left\": 0.44542357325553894,\n          \"Top\": 0.38728272914886475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542357325553894,\n            \"Y\": 0.38728272914886475\n          },\n          {\n            \"X\": 0.5426920652389526,\n            \"Y\": 0.38733160495758057\n          },\n          {\n            \"X\": 0.5426928400993347,\n            \"Y\": 0.3993895649909973\n          },\n          {\n            \"X\": 0.44542384147644043,\n            \"Y\": 0.39934077858924866\n          }\n        ]\n      },\n      \"Id\": \"d22deeb0-11a5-4614-a8ec-f7d1a34ef891\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"36962072-6514-4d39-96ca-3308a22f7ebf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931688010692596,\n          \"Height\": 0.018685773015022278,\n          \"Left\": 0.04533820599317551,\n          \"Top\": 0.3991401791572571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04534070938825607,\n            \"Y\": 0.3991401791572571\n          },\n          {\n            \"X\": 0.14465507864952087,\n            \"Y\": 0.3991899788379669\n          },\n          {\n            \"X\": 0.1446533054113388,\n            \"Y\": 0.41782593727111816\n          },\n          {\n            \"X\": 0.04533820599317551,\n            \"Y\": 0.41777631640434265\n          }\n        ]\n      },\n      \"Id\": \"40cebf66-4e00-4706-b43d-f41d60b0b8a4\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.00390625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20146207511425018,\n          \"Height\": 0.018736621364951134,\n          \"Left\": 0.1446533054113388,\n          \"Top\": 0.3991899788379669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465507864952087,\n            \"Y\": 0.3991899788379669\n          },\n          {\n            \"X\": 0.346115380525589,\n            \"Y\": 0.3992909789085388\n          },\n          {\n            \"X\": 0.3461150825023651,\n            \"Y\": 0.4179265797138214\n          },\n          {\n            \"X\": 0.1446533054113388,\n            \"Y\": 0.41782593727111816\n          }\n        ]\n      },\n      \"Id\": \"01e13cd4-3a9d-4d47-a7ec-e17d6c0ad28f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9098f2b9-2561-4bf0-a147-d15e844ff296\",\n            \"32101875-06b2-4d70-aae1-27384906ae03\",\n            \"28426bdf-8ff8-429a-bef5-f21ae8ea2a98\",\n            \"ae9c18df-cf34-4b29-ab5a-d2579c64b89f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 68.701171875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09930919110774994,\n          \"Height\": 0.018685216084122658,\n          \"Left\": 0.3461150825023651,\n          \"Top\": 0.3992909789085388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.346115380525589,\n            \"Y\": 0.3992909789085388\n          },\n          {\n            \"X\": 0.44542384147644043,\n            \"Y\": 0.39934077858924866\n          },\n          {\n            \"X\": 0.44542428851127625,\n            \"Y\": 0.4179762005805969\n          },\n          {\n            \"X\": 0.3461150825023651,\n            \"Y\": 0.4179265797138214\n          }\n        ]\n      },\n      \"Id\": \"95f9fb8c-50c6-4c23-8b06-32374df047e0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"660508ff-42df-4774-b69d-9b471aa0e664\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.443359375,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727011620998383,\n          \"Height\": 0.018684014678001404,\n          \"Left\": 0.44542384147644043,\n          \"Top\": 0.39934077858924866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542384147644043,\n            \"Y\": 0.39934077858924866\n          },\n          {\n            \"X\": 0.5426928400993347,\n            \"Y\": 0.3993895649909973\n          },\n          {\n            \"X\": 0.5426939725875854,\n            \"Y\": 0.41802480816841125\n          },\n          {\n            \"X\": 0.44542428851127625,\n            \"Y\": 0.4179762005805969\n          }\n        ]\n      },\n      \"Id\": \"24bd9958-9073-499c-843b-5c0fd4210d4f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8fc0ac52-6bec-4672-b405-b9a96107953f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931746125221252,\n          \"Height\": 0.01758960634469986,\n          \"Left\": 0.04533584788441658,\n          \"Top\": 0.41777631640434265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04533820599317551,\n            \"Y\": 0.41777631640434265\n          },\n          {\n            \"X\": 0.1446533054113388,\n            \"Y\": 0.41782593727111816\n          },\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          },\n          {\n            \"X\": 0.04533584788441658,\n            \"Y\": 0.4353164732456207\n          }\n        ]\n      },\n      \"Id\": \"926eca2a-16d0-4110-9fcd-38e5e33b9d4f\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 74.70703125,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2014634609222412,\n          \"Height\": 0.017640288919210434,\n          \"Left\": 0.1446516364812851,\n          \"Top\": 0.41782593727111816\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446533054113388,\n            \"Y\": 0.41782593727111816\n          },\n          {\n            \"X\": 0.3461150825023651,\n            \"Y\": 0.4179265797138214\n          },\n          {\n            \"X\": 0.3461148142814636,\n            \"Y\": 0.4354662299156189\n          },\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          }\n        ]\n      },\n      \"Id\": \"941402fa-33e1-4a70-8779-5cffa89938a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"12f1f441-d989-4ad3-bf2d-5fd25ad8d9ce\",\n            \"b43caf9c-f6e5-4914-9882-e583d368027a\",\n            \"b4a6048b-fb7f-4677-a712-113e65362f33\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 64.990234375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09930987656116486,\n          \"Height\": 0.017589081078767776,\n          \"Left\": 0.3461148142814636,\n          \"Top\": 0.4179265797138214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461150825023651,\n            \"Y\": 0.4179265797138214\n          },\n          {\n            \"X\": 0.44542428851127625,\n            \"Y\": 0.4179762005805969\n          },\n          {\n            \"X\": 0.4454246759414673,\n            \"Y\": 0.4355156719684601\n          },\n          {\n            \"X\": 0.3461148142814636,\n            \"Y\": 0.4354662299156189\n          }\n        ]\n      },\n      \"Id\": \"76ac298f-0ada-48e0-a149-3006fec32115\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51f29fbe-0163-4f18-bdcf-68176071b780\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 75.146484375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727076441049576,\n          \"Height\": 0.017587894573807716,\n          \"Left\": 0.44542428851127625,\n          \"Top\": 0.4179762005805969\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542428851127625,\n            \"Y\": 0.4179762005805969\n          },\n          {\n            \"X\": 0.5426939725875854,\n            \"Y\": 0.41802480816841125\n          },\n          {\n            \"X\": 0.5426950454711914,\n            \"Y\": 0.4355641007423401\n          },\n          {\n            \"X\": 0.4454246759414673,\n            \"Y\": 0.4355156719684601\n          }\n        ]\n      },\n      \"Id\": \"5013520a-2dbf-4496-b28e-bb9f792186df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"18da768e-9b60-4678-a5e1-601ebc6c380d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931932389736176,\n          \"Height\": 0.026359882205724716,\n          \"Left\": 0.04533230885863304,\n          \"Top\": 0.4353164732456207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04533584788441658,\n            \"Y\": 0.4353164732456207\n          },\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          },\n          {\n            \"X\": 0.14464913308620453,\n            \"Y\": 0.46167635917663574\n          },\n          {\n            \"X\": 0.04533230885863304,\n            \"Y\": 0.46162718534469604\n          }\n        ]\n      },\n      \"Id\": \"4efc5cd6-2262-4d5b-b443-b3f0a8135a83\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.95703125,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2014656811952591,\n          \"Height\": 0.026410212740302086,\n          \"Left\": 0.14464913308620453,\n          \"Top\": 0.4353659152984619\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          },\n          {\n            \"X\": 0.3461148142814636,\n            \"Y\": 0.4354662299156189\n          },\n          {\n            \"X\": 0.3461143970489502,\n            \"Y\": 0.46177613735198975\n          },\n          {\n            \"X\": 0.14464913308620453,\n            \"Y\": 0.46167635917663574\n          }\n        ]\n      },\n      \"Id\": \"4d9d1079-9e2f-4d76-a45e-3773cb2b3e80\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"310ff29a-f886-4fbd-ac70-0460cdac4d7d\",\n            \"d06b7ce0-e1ea-4a59-9fcd-c94bc20a5dde\",\n            \"ae5d55af-157b-4197-8cb6-907c497d0519\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 70.41015625,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931090474128723,\n          \"Height\": 0.02635909803211689,\n          \"Left\": 0.3461143970489502,\n          \"Top\": 0.4354662299156189\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461148142814636,\n            \"Y\": 0.4354662299156189\n          },\n          {\n            \"X\": 0.4454246759414673,\n            \"Y\": 0.4355156719684601\n          },\n          {\n            \"X\": 0.4454253017902374,\n            \"Y\": 0.46182534098625183\n          },\n          {\n            \"X\": 0.3461143970489502,\n            \"Y\": 0.46177613735198975\n          }\n        ]\n      },\n      \"Id\": \"8ab0ae7a-35b5-472e-a63e-fc65109f90a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a3b06a2d-e4ab-441b-90cf-91c4d58d3076\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.396484375,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727197885513306,\n          \"Height\": 0.026357829570770264,\n          \"Left\": 0.4454246759414673,\n          \"Top\": 0.4355156719684601\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454246759414673,\n            \"Y\": 0.4355156719684601\n          },\n          {\n            \"X\": 0.5426950454711914,\n            \"Y\": 0.4355641007423401\n          },\n          {\n            \"X\": 0.5426966547966003,\n            \"Y\": 0.46187350153923035\n          },\n          {\n            \"X\": 0.4454253017902374,\n            \"Y\": 0.46182534098625183\n          }\n        ]\n      },\n      \"Id\": \"96ab5f0f-8e05-40ca-8f4c-1cb6a92269c3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8f248779-f45a-4511-81cd-ce39c44f1a01\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09932021051645279,\n          \"Height\": 0.025263868272304535,\n          \"Left\": 0.04532891884446144,\n          \"Top\": 0.46162718534469604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04533230885863304,\n            \"Y\": 0.46162718534469604\n          },\n          {\n            \"X\": 0.14464913308620453,\n            \"Y\": 0.46167635917663574\n          },\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          },\n          {\n            \"X\": 0.04532891884446144,\n            \"Y\": 0.4868420958518982\n          }\n        ]\n      },\n      \"Id\": \"8f6419d8-3ba6-47d9-9c9f-47908fd764ec\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.861328125,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20146766304969788,\n          \"Height\": 0.025313954800367355,\n          \"Left\": 0.14464671909809113,\n          \"Top\": 0.46167635917663574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464913308620453,\n            \"Y\": 0.46167635917663574\n          },\n          {\n            \"X\": 0.3461143970489502,\n            \"Y\": 0.46177613735198975\n          },\n          {\n            \"X\": 0.34611397981643677,\n            \"Y\": 0.4869903326034546\n          },\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          }\n        ]\n      },\n      \"Id\": \"9d916862-4899-45be-9251-c2b85d02e6d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6957a98a-8103-43f9-9ad5-257886f65191\",\n            \"32abfca3-cc4b-4229-a00a-6b3922ed3ae7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 72.0703125,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931188821792603,\n          \"Height\": 0.025263115763664246,\n          \"Left\": 0.34611397981643677,\n          \"Top\": 0.46177613735198975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461143970489502,\n            \"Y\": 0.46177613735198975\n          },\n          {\n            \"X\": 0.4454253017902374,\n            \"Y\": 0.46182534098625183\n          },\n          {\n            \"X\": 0.4454258680343628,\n            \"Y\": 0.4870392680168152\n          },\n          {\n            \"X\": 0.34611397981643677,\n            \"Y\": 0.4869903326034546\n          }\n        ]\n      },\n      \"Id\": \"486238f8-d4e3-4e69-bf64-3454f1145e57\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c3875805-9a0d-42d0-86ad-57dc995fac7f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 83.349609375,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727291762828827,\n          \"Height\": 0.025261864066123962,\n          \"Left\": 0.4454253017902374,\n          \"Top\": 0.46182534098625183\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454253017902374,\n            \"Y\": 0.46182534098625183\n          },\n          {\n            \"X\": 0.5426966547966003,\n            \"Y\": 0.46187350153923035\n          },\n          {\n            \"X\": 0.5426982045173645,\n            \"Y\": 0.4870871901512146\n          },\n          {\n            \"X\": 0.4454258680343628,\n            \"Y\": 0.4870392680168152\n          }\n        ]\n      },\n      \"Id\": \"9d8474b3-dff8-442b-a144-1d24d34d8297\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d9f37f5c-f41f-4f26-aa4c-f2f9adb20f0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931971877813339,\n          \"Height\": 0.014300936833024025,\n          \"Left\": 0.04532700404524803,\n          \"Top\": 0.4868420958518982\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04532891884446144,\n            \"Y\": 0.4868420958518982\n          },\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          },\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          },\n          {\n            \"X\": 0.04532700404524803,\n            \"Y\": 0.5010942220687866\n          }\n        ]\n      },\n      \"Id\": \"ee147d0a-9345-406f-9f8f-2e0d593b0d82\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 65.283203125,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20146861672401428,\n          \"Height\": 0.01435098797082901,\n          \"Left\": 0.14464536309242249,\n          \"Top\": 0.4868910610675812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          },\n          {\n            \"X\": 0.34611397981643677,\n            \"Y\": 0.4869903326034546\n          },\n          {\n            \"X\": 0.34611377120018005,\n            \"Y\": 0.5012420415878296\n          },\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          }\n        ]\n      },\n      \"Id\": \"a7463f12-ddbf-4ba2-8e7e-61776f4c1e4b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84b18b36-a59a-4d5e-8a91-5407a4ec9b75\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 56.787109375,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0993124470114708,\n          \"Height\": 0.014300511218607426,\n          \"Left\": 0.34611377120018005,\n          \"Top\": 0.4869903326034546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34611397981643677,\n            \"Y\": 0.4869903326034546\n          },\n          {\n            \"X\": 0.4454258680343628,\n            \"Y\": 0.4870392680168152\n          },\n          {\n            \"X\": 0.44542619585990906,\n            \"Y\": 0.5012908577919006\n          },\n          {\n            \"X\": 0.34611377120018005,\n            \"Y\": 0.5012420415878296\n          }\n        ]\n      },\n      \"Id\": \"5cfa911b-73c6-4e44-94fc-b2a638887c62\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"28b62964-430b-4cfa-ab6d-c7fff628c158\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 65.625,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727320820093155,\n          \"Height\": 0.014299368485808372,\n          \"Left\": 0.4454258680343628,\n          \"Top\": 0.4870392680168152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454258680343628,\n            \"Y\": 0.4870392680168152\n          },\n          {\n            \"X\": 0.5426982045173645,\n            \"Y\": 0.4870871901512146\n          },\n          {\n            \"X\": 0.5426990985870361,\n            \"Y\": 0.5013386011123657\n          },\n          {\n            \"X\": 0.44542619585990906,\n            \"Y\": 0.5012908577919006\n          }\n        ]\n      },\n      \"Id\": \"6097243d-cc11-403d-9abc-39c399535897\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"88d81e47-261a-4ed7-9805-b7431d7c87d0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0993204265832901,\n          \"Height\": 0.015397284179925919,\n          \"Left\": 0.045324940234422684,\n          \"Top\": 0.5010942220687866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04532700404524803,\n            \"Y\": 0.5010942220687866\n          },\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          },\n          {\n            \"X\": 0.1446439027786255,\n            \"Y\": 0.5164915323257446\n          },\n          {\n            \"X\": 0.045324940234422684,\n            \"Y\": 0.5164428949356079\n          }\n        ]\n      },\n      \"Id\": \"4274a648-94c7-4353-8cb0-59f439551c7c\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 71.58203125,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20146985352039337,\n          \"Height\": 0.015447169542312622,\n          \"Left\": 0.1446439027786255,\n          \"Top\": 0.5011430382728577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          },\n          {\n            \"X\": 0.34611377120018005,\n            \"Y\": 0.5012420415878296\n          },\n          {\n            \"X\": 0.34611350297927856,\n            \"Y\": 0.5165902376174927\n          },\n          {\n            \"X\": 0.1446439027786255,\n            \"Y\": 0.5164915323257446\n          }\n        ]\n      },\n      \"Id\": \"03e7bbd1-c4cf-4309-b6e5-4b0ad8d7a3d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a147593b-9806-43c3-a6d3-c2cba5271340\",\n            \"2235bea1-8c99-4ad1-aee4-6d3551fe70de\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 62.255859375,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931305050849915,\n          \"Height\": 0.015396825037896633,\n          \"Left\": 0.34611350297927856,\n          \"Top\": 0.5012420415878296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34611377120018005,\n            \"Y\": 0.5012420415878296\n          },\n          {\n            \"X\": 0.44542619585990906,\n            \"Y\": 0.5012908577919006\n          },\n          {\n            \"X\": 0.4454265534877777,\n            \"Y\": 0.5166388750076294\n          },\n          {\n            \"X\": 0.34611350297927856,\n            \"Y\": 0.5165902376174927\n          }\n        ]\n      },\n      \"Id\": \"42a42de2-f980-4fc6-821e-754043df7d38\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"92cec4cc-d709-4acd-bf86-6780587f8810\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 71.97265625,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0972738191485405,\n          \"Height\": 0.015395675785839558,\n          \"Left\": 0.44542619585990906,\n          \"Top\": 0.5012908577919006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542619585990906,\n            \"Y\": 0.5012908577919006\n          },\n          {\n            \"X\": 0.5426990985870361,\n            \"Y\": 0.5013386011123657\n          },\n          {\n            \"X\": 0.5427000522613525,\n            \"Y\": 0.5166864991188049\n          },\n          {\n            \"X\": 0.4454265534877777,\n            \"Y\": 0.5166388750076294\n          }\n        ]\n      },\n      \"Id\": \"b04977e6-c2fb-46d7-8812-f86060857205\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"22a7df8a-52b6-45ba-9906-0bb9f7999653\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09932058304548264,\n          \"Height\": 0.012108302675187588,\n          \"Left\": 0.04532331973314285,\n          \"Top\": 0.5164428949356079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.045324940234422684,\n            \"Y\": 0.5164428949356079\n          },\n          {\n            \"X\": 0.1446439027786255,\n            \"Y\": 0.5164915323257446\n          },\n          {\n            \"X\": 0.14464275538921356,\n            \"Y\": 0.5285511612892151\n          },\n          {\n            \"X\": 0.04532331973314285,\n            \"Y\": 0.5285026431083679\n          }\n        ]\n      },\n      \"Id\": \"fb6115bd-65ed-4aa5-b228-ea2d389aad21\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 65.33203125,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2014707624912262,\n          \"Height\": 0.012158098630607128,\n          \"Left\": 0.14464275538921356,\n          \"Top\": 0.5164915323257446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446439027786255,\n            \"Y\": 0.5164915323257446\n          },\n          {\n            \"X\": 0.34611350297927856,\n            \"Y\": 0.5165902376174927\n          },\n          {\n            \"X\": 0.34611332416534424,\n            \"Y\": 0.528649628162384\n          },\n          {\n            \"X\": 0.14464275538921356,\n            \"Y\": 0.5285511612892151\n          }\n        ]\n      },\n      \"Id\": \"47c72230-7ac8-4362-873f-c3f7dc02bbb1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d2f367e1-33e1-4c0e-9864-ce9e0ed64b92\",\n            \"94fe9fff-14dc-4316-ab4d-bd24f97d39fc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 56.8359375,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931351989507675,\n          \"Height\": 0.012107941322028637,\n          \"Left\": 0.34611332416534424,\n          \"Top\": 0.5165902376174927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34611350297927856,\n            \"Y\": 0.5165902376174927\n          },\n          {\n            \"X\": 0.4454265534877777,\n            \"Y\": 0.5166388750076294\n          },\n          {\n            \"X\": 0.4454268515110016,\n            \"Y\": 0.5286981463432312\n          },\n          {\n            \"X\": 0.34611332416534424,\n            \"Y\": 0.528649628162384\n          }\n        ]\n      },\n      \"Id\": \"4df5abdd-e939-4c76-85dd-34e25fc19c78\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67340234-c0ff-401f-9b26-e12ffb06d6fe\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 65.72265625,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727420657873154,\n          \"Height\": 0.012106826528906822,\n          \"Left\": 0.4454265534877777,\n          \"Top\": 0.5166388750076294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454265534877777,\n            \"Y\": 0.5166388750076294\n          },\n          {\n            \"X\": 0.5427000522613525,\n            \"Y\": 0.5166864991188049\n          },\n          {\n            \"X\": 0.5427007675170898,\n            \"Y\": 0.528745710849762\n          },\n          {\n            \"X\": 0.4454268515110016,\n            \"Y\": 0.5286981463432312\n          }\n        ]\n      },\n      \"Id\": \"b81bd7ac-f8f9-4ed9-9888-ffbe611f7935\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"58c031e5-5f8f-4c18-9ba5-4788fe7ae4aa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09932267665863037,\n          \"Height\": 0.02416818216443062,\n          \"Left\": 0.04532007500529289,\n          \"Top\": 0.5285026431083679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04532331973314285,\n            \"Y\": 0.5285026431083679\n          },\n          {\n            \"X\": 0.14464275538921356,\n            \"Y\": 0.5285511612892151\n          },\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          },\n          {\n            \"X\": 0.04532007500529289,\n            \"Y\": 0.5526225566864014\n          }\n        ]\n      },\n      \"Id\": \"d868bdbf-940f-4749-99b9-20386f418f53\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.6875,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20147286355495453,\n          \"Height\": 0.02421761490404606,\n          \"Left\": 0.1446404606103897,\n          \"Top\": 0.5285511612892151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464275538921356,\n            \"Y\": 0.5285511612892151\n          },\n          {\n            \"X\": 0.34611332416534424,\n            \"Y\": 0.528649628162384\n          },\n          {\n            \"X\": 0.3461129367351532,\n            \"Y\": 0.5527688264846802\n          },\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          }\n        ]\n      },\n      \"Id\": \"a1ce7c0f-6323-4c14-8c6a-79d513475056\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a0fd8ce3-a5eb-481c-b250-d0f0fb807cd3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 69.3359375,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931446611881256,\n          \"Height\": 0.024167461320757866,\n          \"Left\": 0.3461129367351532,\n          \"Top\": 0.528649628162384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34611332416534424,\n            \"Y\": 0.528649628162384\n          },\n          {\n            \"X\": 0.4454268515110016,\n            \"Y\": 0.5286981463432312\n          },\n          {\n            \"X\": 0.44542738795280457,\n            \"Y\": 0.5528171062469482\n          },\n          {\n            \"X\": 0.3461129367351532,\n            \"Y\": 0.5527688264846802\n          }\n        ]\n      },\n      \"Id\": \"7816923d-d021-4cea-8bb5-1df745899abc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0053565b-9761-4cdb-959c-6a7c6eeda831\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.126953125,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727541357278824,\n          \"Height\": 0.024166233837604523,\n          \"Left\": 0.4454268515110016,\n          \"Top\": 0.5286981463432312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454268515110016,\n            \"Y\": 0.5286981463432312\n          },\n          {\n            \"X\": 0.5427007675170898,\n            \"Y\": 0.528745710849762\n          },\n          {\n            \"X\": 0.5427022576332092,\n            \"Y\": 0.5528643727302551\n          },\n          {\n            \"X\": 0.44542738795280457,\n            \"Y\": 0.5528171062469482\n          }\n        ]\n      },\n      \"Id\": \"649a04be-37c0-4858-86b3-17d65d6e0da2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e3f98d5b-6d90-4d4e-b902-4477c01b0926\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09932258725166321,\n          \"Height\": 0.016493773087859154,\n          \"Left\": 0.045317865908145905,\n          \"Top\": 0.5526225566864014\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04532007500529289,\n            \"Y\": 0.5526225566864014\n          },\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          },\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          },\n          {\n            \"X\": 0.045317865908145905,\n            \"Y\": 0.569068193435669\n          }\n        ]\n      },\n      \"Id\": \"cbe79c46-3452-4452-bbba-14c42a894af4\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.236328125,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20147405564785004,\n          \"Height\": 0.01654311642050743,\n          \"Left\": 0.14463888108730316,\n          \"Top\": 0.5526708364486694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          },\n          {\n            \"X\": 0.3461129367351532,\n            \"Y\": 0.5527688264846802\n          },\n          {\n            \"X\": 0.3461126685142517,\n            \"Y\": 0.5692139267921448\n          },\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          }\n        ]\n      },\n      \"Id\": \"e3e75964-caed-432a-a89f-ace609a8192b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"745981c1-84ae-4e67-a859-140bbda4549c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 36.7431640625,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0993151068687439,\n          \"Height\": 0.016493281349539757,\n          \"Left\": 0.3461126685142517,\n          \"Top\": 0.5527688264846802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461129367351532,\n            \"Y\": 0.5527688264846802\n          },\n          {\n            \"X\": 0.44542738795280457,\n            \"Y\": 0.5528171062469482\n          },\n          {\n            \"X\": 0.4454277753829956,\n            \"Y\": 0.5692620873451233\n          },\n          {\n            \"X\": 0.3461126685142517,\n            \"Y\": 0.5692139267921448\n          }\n        ]\n      },\n      \"Id\": \"ad9104d0-05fb-4e15-8193-c46933bcd044\",\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.48046875,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727586060762405,\n          \"Height\": 0.01649213209748268,\n          \"Left\": 0.44542738795280457,\n          \"Top\": 0.5528171062469482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44542738795280457,\n            \"Y\": 0.5528171062469482\n          },\n          {\n            \"X\": 0.5427022576332092,\n            \"Y\": 0.5528643727302551\n          },\n          {\n            \"X\": 0.5427032709121704,\n            \"Y\": 0.5693092346191406\n          },\n          {\n            \"X\": 0.4454277753829956,\n            \"Y\": 0.5692620873451233\n          }\n        ]\n      },\n      \"Id\": \"c4b3f8ee-63a4-47f2-8caf-2e7a12ce84d2\",\n      \"EntityTypes\": [\n        \"TABLE_SECTION_TITLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09932411462068558,\n          \"Height\": 0.02307216078042984,\n          \"Left\": 0.04531477019190788,\n          \"Top\": 0.569068193435669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.045317865908145905,\n            \"Y\": 0.569068193435669\n          },\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          },\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          },\n          {\n            \"X\": 0.04531477019190788,\n            \"Y\": 0.5920924544334412\n          }\n        ]\n      },\n      \"Id\": \"ec4316b1-bacf-4693-b60f-52d0dc0b2cdf\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.4091796875,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20147597789764404,\n          \"Height\": 0.02312120795249939,\n          \"Left\": 0.14463669061660767,\n          \"Top\": 0.5691162943840027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          },\n          {\n            \"X\": 0.3461126685142517,\n            \"Y\": 0.5692139267921448\n          },\n          {\n            \"X\": 0.34611231088638306,\n            \"Y\": 0.5922375321388245\n          },\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          }\n        ]\n      },\n      \"Id\": \"084cb739-c56a-42c1-b29e-e149c1d8a303\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f3154a2b-b52c-4496-bf90-0aa6e42c1ea6\",\n            \"f1671341-bf20-47d5-809a-35fe55cd5929\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.623046875,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931600838899612,\n          \"Height\": 0.023071475327014923,\n          \"Left\": 0.34611231088638306,\n          \"Top\": 0.5692139267921448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3461126685142517,\n            \"Y\": 0.5692139267921448\n          },\n          {\n            \"X\": 0.4454277753829956,\n            \"Y\": 0.5692620873451233\n          },\n          {\n            \"X\": 0.4454283118247986,\n            \"Y\": 0.5922854542732239\n          },\n          {\n            \"X\": 0.34611231088638306,\n            \"Y\": 0.5922375321388245\n          }\n        ]\n      },\n      \"Id\": \"c358c4dd-8e7b-40e3-a3d8-68d4bcf896c6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3868275e-9e19-4b33-8067-26216338de31\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.6533203125,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727689623832703,\n          \"Height\": 0.023070264607667923,\n          \"Left\": 0.4454277753829956,\n          \"Top\": 0.5692620873451233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454277753829956,\n            \"Y\": 0.5692620873451233\n          },\n          {\n            \"X\": 0.5427032709121704,\n            \"Y\": 0.5693092346191406\n          },\n          {\n            \"X\": 0.542704701423645,\n            \"Y\": 0.5923323631286621\n          },\n          {\n            \"X\": 0.4454283118247986,\n            \"Y\": 0.5922854542732239\n          }\n        ]\n      },\n      \"Id\": \"b517aa44-1e5b-4441-899a-1e729d364cca\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09932442754507065,\n          \"Height\": 0.01868671178817749,\n          \"Left\": 0.04531226307153702,\n          \"Top\": 0.5920924544334412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04531477019190788,\n            \"Y\": 0.5920924544334412\n          },\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          },\n          {\n            \"X\": 0.1446349173784256,\n            \"Y\": 0.6107791662216187\n          },\n          {\n            \"X\": 0.04531226307153702,\n            \"Y\": 0.6107314229011536\n          }\n        ]\n      },\n      \"Id\": \"c162545a-315c-4786-9b3e-37662651f224\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.5068359375,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20147742331027985,\n          \"Height\": 0.01906103640794754,\n          \"Left\": 0.1446348875761032,\n          \"Top\": 0.5921403169631958\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          },\n          {\n            \"X\": 0.34611231088638306,\n            \"Y\": 0.5922375321388245\n          },\n          {\n            \"X\": 0.3461120128631592,\n            \"Y\": 0.6112014055252075\n          },\n          {\n            \"X\": 0.1446348875761032,\n            \"Y\": 0.6111046075820923\n          }\n        ]\n      },\n      \"Id\": \"2e4175a5-4ada-4a35-a5f4-84fdd170de07\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ec0612e9-fb61-4ba2-8241-9c70d457d3bb\",\n            \"311d5ffb-bb9a-4fee-855b-227840e23af8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.6962890625,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09931675344705582,\n          \"Height\": 0.01901157572865486,\n          \"Left\": 0.3461120128631592,\n          \"Top\": 0.5922375321388245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34611231088638306,\n            \"Y\": 0.5922375321388245\n          },\n          {\n            \"X\": 0.4454283118247986,\n            \"Y\": 0.5922854542732239\n          },\n          {\n            \"X\": 0.4454287588596344,\n            \"Y\": 0.6112490892410278\n          },\n          {\n            \"X\": 0.3461120128631592,\n            \"Y\": 0.6112014055252075\n          }\n        ]\n      },\n      \"Id\": \"afc386f1-d898-4ec5-8a7c-ce373307223f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1784c1fe-9099-4a69-8e4a-d186fee83049\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"TABLE_SUMMARY\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.7509765625,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09727752953767776,\n          \"Height\": 0.019010409712791443,\n          \"Left\": 0.4454283118247986,\n          \"Top\": 0.5922854542732239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4454283118247986,\n            \"Y\": 0.5922854542732239\n          },\n          {\n            \"X\": 0.542704701423645,\n            \"Y\": 0.5923323631286621\n          },\n          {\n            \"X\": 0.5427058339118958,\n            \"Y\": 0.6112958192825317\n          },\n          {\n            \"X\": 0.4454287588596344,\n            \"Y\": 0.6112490892410278\n          }\n        ]\n      },\n      \"Id\": \"081186a9-e8cf-47f8-b0be-d8effa679cfe\"\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 38.1591796875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 3,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3980310261249542,\n          \"Height\": 0.012358710169792175,\n          \"Left\": 0.144659161567688,\n          \"Top\": 0.3442804515361786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446603238582611,\n            \"Y\": 0.3442804515361786\n          },\n          {\n            \"X\": 0.5426894426345825,\n            \"Y\": 0.3444821834564209\n          },\n          {\n            \"X\": 0.5426902174949646,\n            \"Y\": 0.35663914680480957\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          }\n        ]\n      },\n      \"Id\": \"3adbe227-58e6-4e6d-94d1-2ae5fda090d0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"596010ec-c40a-46e4-9471-6024a85c0668\",\n            \"a4f0e2b4-5a10-4010-af1d-a676f7b19b27\",\n            \"c2445484-31b2-4874-b440-d2dae8f6a85a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 61.1328125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 14,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09982981532812119,\n          \"Height\": 0.2547171711921692,\n          \"Left\": 0.0448293462395668,\n          \"Top\": 0.3563874363899231\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.044863633811473846,\n            \"Y\": 0.3563874363899231\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.1446348875761032,\n            \"Y\": 0.6111046075820923\n          },\n          {\n            \"X\": 0.0448293462395668,\n            \"Y\": 0.6110566258430481\n          }\n        ]\n      },\n      \"Id\": \"f22728fe-5aaa-4f20-814a-9d67cb68c48d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"09dbedf6-12ba-4e3e-ab3d-10861d0fea2b\",\n            \"fa562eea-7972-4f25-a417-8944f4dd6a41\",\n            \"d1f84e86-9e72-4449-bdae-e1143594d5b0\",\n            \"40cebf66-4e00-4706-b43d-f41d60b0b8a4\",\n            \"926eca2a-16d0-4110-9fcd-38e5e33b9d4f\",\n            \"4efc5cd6-2262-4d5b-b443-b3f0a8135a83\",\n            \"8f6419d8-3ba6-47d9-9c9f-47908fd764ec\",\n            \"ee147d0a-9345-406f-9f8f-2e0d593b0d82\",\n            \"4274a648-94c7-4353-8cb0-59f439551c7c\",\n            \"fb6115bd-65ed-4aa5-b228-ea2d389aad21\",\n            \"d868bdbf-940f-4749-99b9-20386f418f53\",\n            \"cbe79c46-3452-4452-bbba-14c42a894af4\",\n            \"ec4316b1-bacf-4693-b60f-52d0dc0b2cdf\",\n            \"c162545a-315c-4786-9b3e-37662651f224\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 94.091796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26544883847236633,\n          \"Height\": 0.043674200773239136,\n          \"Left\": 0.5771462321281433,\n          \"Top\": 0.7284083366394043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771462321281433,\n            \"Y\": 0.7284083366394043\n          },\n          {\n            \"X\": 0.8425872921943665,\n            \"Y\": 0.7285327911376953\n          },\n          {\n            \"X\": 0.842595100402832,\n            \"Y\": 0.772082507610321\n          },\n          {\n            \"X\": 0.577149510383606,\n            \"Y\": 0.7719592452049255\n          }\n        ]\n      },\n      \"Id\": \"26854dc0-ca8e-4ba5-8119-d9888cb34c3b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e52d0069-1851-4a56-8d84-55e7b15120e1\",\n            \"306cda15-9e3c-43b1-9f8c-2fe46e0f665e\",\n            \"97932023-8018-4d3b-a027-46f7384ccdeb\",\n            \"7952cb1b-ce9e-4e17-8e2e-c7baa20b77e5\",\n            \"231dc87c-1dee-4f42-bb53-b4223d702d11\",\n            \"48cb4f1c-a607-4aa0-99b1-3e1c69c42b2c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"SEMI_STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.96875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17333324253559113,\n          \"Height\": 0.013133399188518524,\n          \"Left\": 0.5771462321281433,\n          \"Top\": 0.7284083366394043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771462321281433,\n            \"Y\": 0.7284083366394043\n          },\n          {\n            \"X\": 0.7504776120185852,\n            \"Y\": 0.7284896373748779\n          },\n          {\n            \"X\": 0.750479519367218,\n            \"Y\": 0.7415417432785034\n          },\n          {\n            \"X\": 0.5771472454071045,\n            \"Y\": 0.7414606809616089\n          }\n        ]\n      },\n      \"Id\": \"e52d0069-1851-4a56-8d84-55e7b15120e1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"078a88c4-eede-437d-acfc-e96a1d87d7a8\",\n            \"9dc4ea8f-ffe2-49fe-b530-8d1e23c54305\",\n            \"a4896b54-5703-4471-b23c-bc00dd930555\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.869140625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09211200475692749,\n          \"Height\": 0.013095198199152946,\n          \"Left\": 0.7504776120185852,\n          \"Top\": 0.7284896373748779\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7504776120185852,\n            \"Y\": 0.7284896373748779\n          },\n          {\n            \"X\": 0.8425872921943665,\n            \"Y\": 0.7285327911376953\n          },\n          {\n            \"X\": 0.8425896167755127,\n            \"Y\": 0.7415847778320312\n          },\n          {\n            \"X\": 0.750479519367218,\n            \"Y\": 0.7415417432785034\n          }\n        ]\n      },\n      \"Id\": \"306cda15-9e3c-43b1-9f8c-2fe46e0f665e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d61649b6-fc85-4cb1-803d-332681328e5c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.716796875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17333446443080902,\n          \"Height\": 0.01543151494115591,\n          \"Left\": 0.5771472454071045,\n          \"Top\": 0.7414606809616089\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771472454071045,\n            \"Y\": 0.7414606809616089\n          },\n          {\n            \"X\": 0.750479519367218,\n            \"Y\": 0.7415417432785034\n          },\n          {\n            \"X\": 0.7504816651344299,\n            \"Y\": 0.756892204284668\n          },\n          {\n            \"X\": 0.5771483778953552,\n            \"Y\": 0.7568114399909973\n          }\n        ]\n      },\n      \"Id\": \"97932023-8018-4d3b-a027-46f7384ccdeb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62cf8911-d6fc-4501-aa6e-7a96b550dc41\",\n            \"6828635e-9b46-494a-9b36-a6437164d1a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.8125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09211288392543793,\n          \"Height\": 0.015393397770822048,\n          \"Left\": 0.750479519367218,\n          \"Top\": 0.7415417432785034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.750479519367218,\n            \"Y\": 0.7415417432785034\n          },\n          {\n            \"X\": 0.8425896167755127,\n            \"Y\": 0.7415847778320312\n          },\n          {\n            \"X\": 0.8425923585891724,\n            \"Y\": 0.7569351196289062\n          },\n          {\n            \"X\": 0.7504816651344299,\n            \"Y\": 0.756892204284668\n          }\n        ]\n      },\n      \"Id\": \"7952cb1b-ce9e-4e17-8e2e-c7baa20b77e5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a5f775c-2d0a-4e3f-8eef-fc75a847254f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.505859375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1733354777097702,\n          \"Height\": 0.015228323638439178,\n          \"Left\": 0.5771483778953552,\n          \"Top\": 0.7568114399909973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771483778953552,\n            \"Y\": 0.7568114399909973\n          },\n          {\n            \"X\": 0.7504816651344299,\n            \"Y\": 0.756892204284668\n          },\n          {\n            \"X\": 0.7504838705062866,\n            \"Y\": 0.7720397710800171\n          },\n          {\n            \"X\": 0.577149510383606,\n            \"Y\": 0.7719592452049255\n          }\n        ]\n      },\n      \"Id\": \"231dc87c-1dee-4f42-bb53-b4223d702d11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f4e49719-9845-4e40-9959-865febeddbc6\",\n            \"bd2ca88b-dbf0-45ae-b52f-9570d65d3f92\",\n            \"2aeb2274-8048-4615-9c17-c41a2cccc860\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.40625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09211340546607971,\n          \"Height\": 0.015190331265330315,\n          \"Left\": 0.7504816651344299,\n          \"Top\": 0.756892204284668\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7504816651344299,\n            \"Y\": 0.756892204284668\n          },\n          {\n            \"X\": 0.8425923585891724,\n            \"Y\": 0.7569351196289062\n          },\n          {\n            \"X\": 0.842595100402832,\n            \"Y\": 0.772082507610321\n          },\n          {\n            \"X\": 0.7504838705062866,\n            \"Y\": 0.7720397710800171\n          }\n        ]\n      },\n      \"Id\": \"48cb4f1c-a607-4aa0-99b1-3e1c69c42b2c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c96a3928-a002-4467-8e11-1dce5c8dc85c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 72.412109375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.9106562733650208,\n          \"Height\": 0.05074695125222206,\n          \"Left\": 0.04964977875351906,\n          \"Top\": 0.8002665042877197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0496564619243145,\n            \"Y\": 0.8002665042877197\n          },\n          {\n            \"X\": 0.9602946639060974,\n            \"Y\": 0.8006869554519653\n          },\n          {\n            \"X\": 0.9603060483932495,\n            \"Y\": 0.8510134220123291\n          },\n          {\n            \"X\": 0.04964977875351906,\n            \"Y\": 0.8505975008010864\n          }\n        ]\n      },\n      \"Id\": \"3cf5035c-4cd2-4cd9-ab09-f140b0e91170\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"925ea608-5ad2-415e-bc9d-61aeb4a455c8\",\n            \"64553703-ae3c-41fc-9612-588c9902dfcf\",\n            \"009b5e76-e015-4cba-b327-7e29017618c9\",\n            \"f85c7fd7-f1f4-46df-9d02-27f0f6e9cf5d\",\n            \"08b45f89-8699-457f-a436-8c62f7fa920a\",\n            \"57a84307-34a1-4714-9e2d-6b5fb47792ff\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"fded3d2c-1dce-4472-8510-b1b437d34cb4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"SEMI_STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 71.77734375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10347738116979599,\n          \"Height\": 0.023237617686390877,\n          \"Left\": 0.04965338110923767,\n          \"Top\": 0.8002665042877197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0496564619243145,\n            \"Y\": 0.8002665042877197\n          },\n          {\n            \"X\": 0.15313075482845306,\n            \"Y\": 0.8003142476081848\n          },\n          {\n            \"X\": 0.15312862396240234,\n            \"Y\": 0.8235040903091431\n          },\n          {\n            \"X\": 0.04965338110923767,\n            \"Y\": 0.8234565854072571\n          }\n        ]\n      },\n      \"Id\": \"925ea608-5ad2-415e-bc9d-61aeb4a455c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac81c5af-91d9-4bbd-9a3a-ea7cb2106bd1\",\n            \"45024ad6-9f03-4957-9963-bc25f61174e2\",\n            \"6913e743-078e-406f-b3b4-6a0f40f9cabf\",\n            \"3f40b1e3-48f5-4090-bcca-1ca12d7f85da\",\n            \"af065b87-190e-4e30-9702-52350b064d66\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.23046875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6753976941108704,\n          \"Height\": 0.02333850972354412,\n          \"Left\": 0.15312862396240234,\n          \"Top\": 0.8004758954048157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15313073992729187,\n            \"Y\": 0.8004758954048157\n          },\n          {\n            \"X\": 0.8285223245620728,\n            \"Y\": 0.8007877469062805\n          },\n          {\n            \"X\": 0.8285263180732727,\n            \"Y\": 0.8238143920898438\n          },\n          {\n            \"X\": 0.15312862396240234,\n            \"Y\": 0.8235040903091431\n          }\n        ]\n      },\n      \"Id\": \"64553703-ae3c-41fc-9612-588c9902dfcf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c6da4f6c-01cc-487a-bc46-fc3c2fd742e4\",\n            \"096f83b6-7a5d-41d7-bd53-18bfce6b9a8c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 61.23046875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13195140659809113,\n          \"Height\": 0.023087291046977043,\n          \"Left\": 0.8285223245620728,\n          \"Top\": 0.8007877469062805\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8285223245620728,\n            \"Y\": 0.8007877469062805\n          },\n          {\n            \"X\": 0.9604685306549072,\n            \"Y\": 0.800848662853241\n          },\n          {\n            \"X\": 0.9604737162590027,\n            \"Y\": 0.8238750100135803\n          },\n          {\n            \"X\": 0.8285263180732727,\n            \"Y\": 0.8238143920898438\n          }\n        ]\n      },\n      \"Id\": \"009b5e76-e015-4cba-b327-7e29017618c9\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.138671875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10347884893417358,\n          \"Height\": 0.027188194915652275,\n          \"Left\": 0.04964977875351906,\n          \"Top\": 0.8234565854072571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04965338110923767,\n            \"Y\": 0.8234565854072571\n          },\n          {\n            \"X\": 0.15312862396240234,\n            \"Y\": 0.8235040903091431\n          },\n          {\n            \"X\": 0.15312613546848297,\n            \"Y\": 0.8506447672843933\n          },\n          {\n            \"X\": 0.04964977875351906,\n            \"Y\": 0.8505975008010864\n          }\n        ]\n      },\n      \"Id\": \"f85c7fd7-f1f4-46df-9d02-27f0f6e9cf5d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"50e7d7b4-c82b-40f5-8c6f-74bc6bdbcc3b\",\n            \"6e51c2c5-47c0-4c45-bf1f-f2ce2d8538ba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 75.48828125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6754049062728882,\n          \"Height\": 0.027449145913124084,\n          \"Left\": 0.15312613546848297,\n          \"Top\": 0.8235040903091431\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15312862396240234,\n            \"Y\": 0.8235040903091431\n          },\n          {\n            \"X\": 0.8285263180732727,\n            \"Y\": 0.8238143920898438\n          },\n          {\n            \"X\": 0.82853102684021,\n            \"Y\": 0.8509532809257507\n          },\n          {\n            \"X\": 0.15312613546848297,\n            \"Y\": 0.8506447672843933\n          }\n        ]\n      },\n      \"Id\": \"08b45f89-8699-457f-a436-8c62f7fa920a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd1789c5-a100-41b1-938e-d3b878bea0ae\",\n            \"aa0b1ff4-8da5-42c8-bbf2-65f6a9900140\",\n            \"7cd8a78e-78bf-4b97-b038-4cd7bea1aa7d\",\n            \"a9ad79dd-4ae8-4b00-97f9-2d78d5e13cd0\",\n            \"c389aea7-28cb-4f7b-851c-f51f54ded6e9\",\n            \"64de448f-a65a-438a-813c-d59d40995cf1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 74.90234375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.131779745221138,\n          \"Height\": 0.0271990317851305,\n          \"Left\": 0.8285263180732727,\n          \"Top\": 0.8238143920898438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8285263180732727,\n            \"Y\": 0.8238143920898438\n          },\n          {\n            \"X\": 0.9602999091148376,\n            \"Y\": 0.8238749504089355\n          },\n          {\n            \"X\": 0.9603060483932495,\n            \"Y\": 0.8510134220123291\n          },\n          {\n            \"X\": 0.82853102684021,\n            \"Y\": 0.8509532809257507\n          }\n        ]\n      },\n      \"Id\": \"57a84307-34a1-4714-9e2d-6b5fb47792ff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e8387606-da6d-44cd-b5a0-f635b282818e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 61.23046875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 2,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8071712851524353,\n          \"Height\": 0.02356068603694439,\n          \"Left\": 0.15312862396240234,\n          \"Top\": 0.8003142476081848\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15313075482845306,\n            \"Y\": 0.8003142476081848\n          },\n          {\n            \"X\": 0.9602946639060974,\n            \"Y\": 0.8006869554519653\n          },\n          {\n            \"X\": 0.9602999091148376,\n            \"Y\": 0.8238749504089355\n          },\n          {\n            \"X\": 0.15312862396240234,\n            \"Y\": 0.8235040903091431\n          }\n        ]\n      },\n      \"Id\": \"fded3d2c-1dce-4472-8510-b1b437d34cb4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"64553703-ae3c-41fc-9612-588c9902dfcf\",\n            \"009b5e76-e015-4cba-b327-7e29017618c9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_TITLE\",\n      \"Confidence\": 87.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.146468386054039,\n          \"Height\": 0.011926395818591118,\n          \"Left\": 0.5771094560623169,\n          \"Top\": 0.23747585713863373\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771094560623169,\n            \"Y\": 0.23747585713863373\n          },\n          {\n            \"X\": 0.7235762476921082,\n            \"Y\": 0.23755165934562683\n          },\n          {\n            \"X\": 0.7235777974128723,\n            \"Y\": 0.24940225481987\n          },\n          {\n            \"X\": 0.5771103501319885,\n            \"Y\": 0.24932663142681122\n          }\n        ]\n      },\n      \"Id\": \"96757ad2-776d-4198-b4bb-289c486de166\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"14bc4165-8b1d-4d16-b992-d11e1bf42649\",\n            \"9dfc69b5-b521-43f5-9b8e-933160daa638\",\n            \"e83f5772-8a6d-49b8-b3b1-68fc731ffa69\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_FOOTER\",\n      \"Confidence\": 83.056640625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2906518280506134,\n          \"Height\": 0.01755826361477375,\n          \"Left\": 0.16816584765911102,\n          \"Top\": 0.6222448348999023\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1681673526763916,\n            \"Y\": 0.6222448348999023\n          },\n          {\n            \"X\": 0.45881718397140503,\n            \"Y\": 0.6223841309547424\n          },\n          {\n            \"X\": 0.45881766080856323,\n            \"Y\": 0.6398031115531921\n          },\n          {\n            \"X\": 0.16816584765911102,\n            \"Y\": 0.6396642327308655\n          }\n        ]\n      },\n      \"Id\": \"98561955-9c62-408c-ad29-a78e1be9dc47\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1eda4157-0cd0-4276-ab0b-eb014465534e\",\n            \"92bacfec-50f9-4fe2-9ded-418ce015fbaf\",\n            \"346117d5-99b2-45fb-b084-6e3c931c303e\",\n            \"88f4b172-ae5a-4fce-99e1-a91930bafadd\",\n            \"00f6f2e5-3e28-47cd-8154-29655fd1058b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.63748931884766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06585019081830978,\n          \"Height\": 0.013000470586121082,\n          \"Left\": 0.5791668891906738,\n          \"Top\": 0.08746511489152908\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5791668891906738,\n            \"Y\": 0.08746511489152908\n          },\n          {\n            \"X\": 0.6450157761573792,\n            \"Y\": 0.08750016242265701\n          },\n          {\n            \"X\": 0.6450170874595642,\n            \"Y\": 0.10046558082103729\n          },\n          {\n            \"X\": 0.5791678428649902,\n            \"Y\": 0.10043061524629593\n          }\n        ]\n      },\n      \"Id\": \"c8d6a260-f183-46d3-b8c0-f1f1e49aaadc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"9f0b98d5-ac28-4fe9-989d-4681c189725e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"abd56aca-fb87-4787-990d-4294f4312000\",\n            \"af4da493-9da3-4ca9-9f9c-ffd64c1125aa\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.63748931884766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06944041699171066,\n          \"Height\": 0.01066174078732729,\n          \"Left\": 0.7466721534729004,\n          \"Top\": 0.0876084566116333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7466721534729004,\n            \"Y\": 0.0876084566116333\n          },\n          {\n            \"X\": 0.8161107897758484,\n            \"Y\": 0.08764541894197464\n          },\n          {\n            \"X\": 0.8161125779151917,\n            \"Y\": 0.09827019274234772\n          },\n          {\n            \"X\": 0.7466736435890198,\n            \"Y\": 0.09823330491781235\n          }\n        ]\n      },\n      \"Id\": \"9f0b98d5-ac28-4fe9-989d-4681c189725e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1974336-a2de-4b02-87d3-14933d4f0d9c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 91.92042541503906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1002354547381401,\n          \"Height\": 0.012996448203921318,\n          \"Left\": 0.5784616470336914,\n          \"Top\": 0.07195087522268295\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5784616470336914,\n            \"Y\": 0.07195087522268295\n          },\n          {\n            \"X\": 0.6786956191062927,\n            \"Y\": 0.07200438529253006\n          },\n          {\n            \"X\": 0.6786971092224121,\n            \"Y\": 0.08494732528924942\n          },\n          {\n            \"X\": 0.5784626007080078,\n            \"Y\": 0.08489394187927246\n          }\n        ]\n      },\n      \"Id\": \"07af8d6a-7b7b-48e4-85ab-5e491eceafc3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"02f6b730-c796-4fa7-a15f-6af1e68bd4ce\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de3af39f-cd2c-4b14-8607-1c0458c041cf\",\n            \"847541aa-91d1-4814-809c-f8f143dcafa5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 91.92042541503906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07052472233772278,\n          \"Height\": 0.010469025932252407,\n          \"Left\": 0.745590329170227,\n          \"Top\": 0.07220491766929626\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.745590329170227,\n            \"Y\": 0.07220491766929626\n          },\n          {\n            \"X\": 0.816113293170929,\n            \"Y\": 0.07224256545305252\n          },\n          {\n            \"X\": 0.8161150217056274,\n            \"Y\": 0.08267394453287125\n          },\n          {\n            \"X\": 0.7455918192863464,\n            \"Y\": 0.08263637125492096\n          }\n        ]\n      },\n      \"Id\": \"02f6b730-c796-4fa7-a15f-6af1e68bd4ce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b53889d3-3708-498c-ac5c-0a161095b8cb\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 91.89688873291016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16570787131786346,\n          \"Height\": 0.012986552901566029,\n          \"Left\": 0.5768124461174011,\n          \"Top\": 0.7284335494041443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768124461174011,\n            \"Y\": 0.7284335494041443\n          },\n          {\n            \"X\": 0.7425184845924377,\n            \"Y\": 0.7285112142562866\n          },\n          {\n            \"X\": 0.742520272731781,\n            \"Y\": 0.7414200901985168\n          },\n          {\n            \"X\": 0.5768133997917175,\n            \"Y\": 0.7413426041603088\n          }\n        ]\n      },\n      \"Id\": \"a4578e67-f7e7-4472-9577-80b0c2d4b094\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"9f197503-b711-48c0-9b3f-f85adb4bad50\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"078a88c4-eede-437d-acfc-e96a1d87d7a8\",\n            \"9dc4ea8f-ffe2-49fe-b530-8d1e23c54305\",\n            \"a4896b54-5703-4471-b23c-bc00dd930555\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 91.89688873291016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08294640481472015,\n          \"Height\": 0.00993956159800291,\n          \"Left\": 0.7583147287368774,\n          \"Top\": 0.7289041876792908\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7583147287368774,\n            \"Y\": 0.7289041876792908\n          },\n          {\n            \"X\": 0.8412593603134155,\n            \"Y\": 0.7289430499076843\n          },\n          {\n            \"X\": 0.8412611484527588,\n            \"Y\": 0.7388437390327454\n          },\n          {\n            \"X\": 0.758316159248352,\n            \"Y\": 0.7388049364089966\n          }\n        ]\n      },\n      \"Id\": \"9f197503-b711-48c0-9b3f-f85adb4bad50\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d61649b6-fc85-4cb1-803d-332681328e5c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.37757873535156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06485044956207275,\n          \"Height\": 0.012271750718355179,\n          \"Left\": 0.5785697102546692,\n          \"Top\": 0.7440610527992249\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785697102546692,\n            \"Y\": 0.7440610527992249\n          },\n          {\n            \"X\": 0.6434189677238464,\n            \"Y\": 0.7440913915634155\n          },\n          {\n            \"X\": 0.6434201598167419,\n            \"Y\": 0.7563328146934509\n          },\n          {\n            \"X\": 0.5785706639289856,\n            \"Y\": 0.7563025951385498\n          }\n        ]\n      },\n      \"Id\": \"25acbf59-2688-4a8a-8af7-a9aeaed59c8a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"97479849-3b79-4d06-9aff-fd3f35f1f749\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62cf8911-d6fc-4501-aa6e-7a96b550dc41\",\n            \"6828635e-9b46-494a-9b36-a6437164d1a5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.37757873535156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06736612319946289,\n          \"Height\": 0.010171804577112198,\n          \"Left\": 0.7595593333244324,\n          \"Top\": 0.7441281080245972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7595593333244324,\n            \"Y\": 0.7441281080245972\n          },\n          {\n            \"X\": 0.8269237279891968,\n            \"Y\": 0.7441595792770386\n          },\n          {\n            \"X\": 0.8269254565238953,\n            \"Y\": 0.7542999386787415\n          },\n          {\n            \"X\": 0.7595608234405518,\n            \"Y\": 0.7542685270309448\n          }\n        ]\n      },\n      \"Id\": \"97479849-3b79-4d06-9aff-fd3f35f1f749\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a5f775c-2d0a-4e3f-8eef-fc75a847254f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.18646240234375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13344666361808777,\n          \"Height\": 0.012639831751585007,\n          \"Left\": 0.5771952867507935,\n          \"Top\": 0.759050190448761\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771952867507935,\n            \"Y\": 0.759050190448761\n          },\n          {\n            \"X\": 0.7106403708457947,\n            \"Y\": 0.7591123580932617\n          },\n          {\n            \"X\": 0.7106419801712036,\n            \"Y\": 0.7716900110244751\n          },\n          {\n            \"X\": 0.5771962404251099,\n            \"Y\": 0.7716280221939087\n          }\n        ]\n      },\n      \"Id\": \"cb4c8778-3bb9-4c38-b4bc-bdc2218bd687\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"d84942c8-54f0-457c-a03d-c70cf3e5df84\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f4e49719-9845-4e40-9959-865febeddbc6\",\n            \"bd2ca88b-dbf0-45ae-b52f-9570d65d3f92\",\n            \"2aeb2274-8048-4615-9c17-c41a2cccc860\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.18646240234375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07717272639274597,\n          \"Height\": 0.00892525352537632,\n          \"Left\": 0.7590305805206299,\n          \"Top\": 0.7600229978561401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7590305805206299,\n            \"Y\": 0.7600229978561401\n          },\n          {\n            \"X\": 0.8362017273902893,\n            \"Y\": 0.7600589394569397\n          },\n          {\n            \"X\": 0.8362032771110535,\n            \"Y\": 0.7689482569694519\n          },\n          {\n            \"X\": 0.7590318918228149,\n            \"Y\": 0.7689123749732971\n          }\n        ]\n      },\n      \"Id\": \"d84942c8-54f0-457c-a03d-c70cf3e5df84\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c96a3928-a002-4467-8e11-1dce5c8dc85c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.4520263671875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036123838275671005,\n          \"Height\": 0.009120387956500053,\n          \"Left\": 0.18532340228557587,\n          \"Top\": 0.2004486620426178\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18532411754131317,\n            \"Y\": 0.2004486620426178\n          },\n          {\n            \"X\": 0.22144724428653717,\n            \"Y\": 0.20046748220920563\n          },\n          {\n            \"X\": 0.22144664824008942,\n            \"Y\": 0.209569051861763\n          },\n          {\n            \"X\": 0.18532340228557587,\n            \"Y\": 0.20955026149749756\n          }\n        ]\n      },\n      \"Id\": \"7eccdd60-88b8-447d-982f-1fa3657837cc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"a3161948-5d5a-49dd-8ffa-dd159a888ed9\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"78a19a2e-f67f-439d-b22f-637b0729f1aa\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.4520263671875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008964558131992817,\n          \"Height\": 0.008891919627785683,\n          \"Left\": 0.24001187086105347,\n          \"Top\": 0.20032575726509094\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24001237750053406,\n            \"Y\": 0.20032575726509094\n          },\n          {\n            \"X\": 0.2489764243364334,\n            \"Y\": 0.20033042132854462\n          },\n          {\n            \"X\": 0.2489759474992752,\n            \"Y\": 0.20921768248081207\n          },\n          {\n            \"X\": 0.24001187086105347,\n            \"Y\": 0.2092130184173584\n          }\n        ]\n      },\n      \"Id\": \"a3161948-5d5a-49dd-8ffa-dd159a888ed9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0e34053f-85f7-4027-a5e8-35ea7036654f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.2987060546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035199787467718124,\n          \"Height\": 0.009416237473487854,\n          \"Left\": 0.18590961396694183,\n          \"Top\": 0.18958322703838348\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18591035902500153,\n            \"Y\": 0.18958322703838348\n          },\n          {\n            \"X\": 0.22110939025878906,\n            \"Y\": 0.1896016150712967\n          },\n          {\n            \"X\": 0.22110877931118011,\n            \"Y\": 0.19899946451187134\n          },\n          {\n            \"X\": 0.18590961396694183,\n            \"Y\": 0.1989811211824417\n          }\n        ]\n      },\n      \"Id\": \"4be896b5-c811-47eb-9f97-5eb5e904d4d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0f117269-bea3-4821-b3aa-06420614d827\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0c280735-8fcd-4128-abc5-b961d4742258\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.2987060546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008100352250039577,\n          \"Height\": 0.008509590290486813,\n          \"Left\": 0.24050265550613403,\n          \"Top\": 0.1900082379579544\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24050313234329224,\n            \"Y\": 0.1900082379579544\n          },\n          {\n            \"X\": 0.2486030012369156,\n            \"Y\": 0.19001245498657227\n          },\n          {\n            \"X\": 0.24860253930091858,\n            \"Y\": 0.1985178291797638\n          },\n          {\n            \"X\": 0.24050265550613403,\n            \"Y\": 0.19851359724998474\n          }\n        ]\n      },\n      \"Id\": \"0f117269-bea3-4821-b3aa-06420614d827\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89617607-a82d-4ff8-91cb-fa3125226890\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.19096374511719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04836449772119522,\n          \"Height\": 0.009278859943151474,\n          \"Left\": 0.18513643741607666,\n          \"Top\": 0.17851632833480835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18513716757297516,\n            \"Y\": 0.17851632833480835\n          },\n          {\n            \"X\": 0.23350092768669128,\n            \"Y\": 0.1785416305065155\n          },\n          {\n            \"X\": 0.2335003763437271,\n            \"Y\": 0.18779517710208893\n          },\n          {\n            \"X\": 0.18513643741607666,\n            \"Y\": 0.18776991963386536\n          }\n        ]\n      },\n      \"Id\": \"8e36a0fd-848c-4354-bb16-cb09708b7464\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2025ad02-c47a-43ec-a25e-c5ada291efd0\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"642bc9ea-5589-49b8-b909-e14d932f7f4c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.19096374511719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13036569952964783,\n          \"Height\": 0.010017091408371925,\n          \"Left\": 0.24101582169532776,\n          \"Top\": 0.1784251630306244\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24101638793945312,\n            \"Y\": 0.1784251630306244\n          },\n          {\n            \"X\": 0.3713815212249756,\n            \"Y\": 0.17849338054656982\n          },\n          {\n            \"X\": 0.3713814616203308,\n            \"Y\": 0.18844226002693176\n          },\n          {\n            \"X\": 0.24101582169532776,\n            \"Y\": 0.18837416172027588\n          }\n        ]\n      },\n      \"Id\": \"2025ad02-c47a-43ec-a25e-c5ada291efd0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67748885-632d-4bc0-8756-1bd7185cb324\",\n            \"c6087467-7f71-494f-ad82-e114e20f25ad\",\n            \"15b6315d-674d-485d-856c-57cbf8022ca8\",\n            \"d4c22423-6620-4005-8757-34d63a6f87f7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.17464447021484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024000108242034912,\n          \"Height\": 0.008156969211995602,\n          \"Left\": 0.21175280213356018,\n          \"Top\": 0.03508676216006279\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21175335347652435,\n            \"Y\": 0.03508676216006279\n          },\n          {\n            \"X\": 0.2357529103755951,\n            \"Y\": 0.035099662840366364\n          },\n          {\n            \"X\": 0.2357524186372757,\n            \"Y\": 0.043243732303380966\n          },\n          {\n            \"X\": 0.21175280213356018,\n            \"Y\": 0.04323085397481918\n          }\n        ]\n      },\n      \"Id\": \"5a6dd8e6-4bf5-4183-9a04-74a8adc86521\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b5632b6c-8b81-4c1f-812c-227452feca27\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2381faf1-4e7c-4c88-94db-60f578ec345b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.17464447021484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04303655028343201,\n          \"Height\": 0.00871875137090683,\n          \"Left\": 0.21206122636795044,\n          \"Top\": 0.04810976982116699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2120618224143982,\n            \"Y\": 0.04810976982116699\n          },\n          {\n            \"X\": 0.25509777665138245,\n            \"Y\": 0.048132844269275665\n          },\n          {\n            \"X\": 0.25509732961654663,\n            \"Y\": 0.05682852119207382\n          },\n          {\n            \"X\": 0.21206122636795044,\n            \"Y\": 0.056805480271577835\n          }\n        ]\n      },\n      \"Id\": \"b5632b6c-8b81-4c1f-812c-227452feca27\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d8498bc-fc7a-49ca-9340-490fede107e2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.7757568359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018309708684682846,\n          \"Height\": 0.008002536371350288,\n          \"Left\": 0.1664496809244156,\n          \"Top\": 0.03515394777059555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1664503663778305,\n            \"Y\": 0.03515394777059555\n          },\n          {\n            \"X\": 0.18475939333438873,\n            \"Y\": 0.03516378998756409\n          },\n          {\n            \"X\": 0.1847587525844574,\n            \"Y\": 0.04315648227930069\n          },\n          {\n            \"X\": 0.1664496809244156,\n            \"Y\": 0.043146658688783646\n          }\n        ]\n      },\n      \"Id\": \"f03ad9e6-3a9a-494a-ab8f-805bd0a692ed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"d4921882-ee57-4ec1-b039-52dbb80028d3\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c6d2446-06e0-4f6a-854c-be3c88278f46\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.7757568359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0271107479929924,\n          \"Height\": 0.008878465741872787,\n          \"Left\": 0.16623441874980927,\n          \"Top\": 0.047459665685892105\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16623519361019135,\n            \"Y\": 0.047459665685892105\n          },\n          {\n            \"X\": 0.19334515929222107,\n            \"Y\": 0.047474205493927\n          },\n          {\n            \"X\": 0.19334448873996735,\n            \"Y\": 0.05633813142776489\n          },\n          {\n            \"X\": 0.16623441874980927,\n            \"Y\": 0.056323617696762085\n          }\n        ]\n      },\n      \"Id\": \"d4921882-ee57-4ec1-b039-52dbb80028d3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c6c107a-6365-46bd-87c1-566fd87929e6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.2643051147461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03183561563491821,\n          \"Height\": 0.008283315226435661,\n          \"Left\": 0.2639007568359375,\n          \"Top\": 0.03507870063185692\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26390114426612854,\n            \"Y\": 0.03507870063185692\n          },\n          {\n            \"X\": 0.2957363724708557,\n            \"Y\": 0.035095810890197754\n          },\n          {\n            \"X\": 0.29573607444763184,\n            \"Y\": 0.04336201399564743\n          },\n          {\n            \"X\": 0.2639007568359375,\n            \"Y\": 0.043344929814338684\n          }\n        ]\n      },\n      \"Id\": \"423b3406-908d-4894-96a7-356033031c57\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"66900e33-6c9f-4c02-b3aa-7c9b66fc272e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6bd322ae-3b33-4ccf-9745-ae5abe9bfe1e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.2643051147461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04352696239948273,\n          \"Height\": 0.009028969332575798,\n          \"Left\": 0.26507776975631714,\n          \"Top\": 0.04791514575481415\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26507821679115295,\n            \"Y\": 0.04791514575481415\n          },\n          {\n            \"X\": 0.30860474705696106,\n            \"Y\": 0.04793848469853401\n          },\n          {\n            \"X\": 0.30860447883605957,\n            \"Y\": 0.056944116950035095\n          },\n          {\n            \"X\": 0.26507776975631714,\n            \"Y\": 0.056920815259218216\n          }\n        ]\n      },\n      \"Id\": \"66900e33-6c9f-4c02-b3aa-7c9b66fc272e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9d59b864-4057-4c48-aff2-b04df7c83646\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.01560974121094,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04211463779211044,\n          \"Height\": 0.008323367685079575,\n          \"Left\": 0.3158392310142517,\n          \"Top\": 0.03488931804895401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3158394694328308,\n            \"Y\": 0.03488931804895401\n          },\n          {\n            \"X\": 0.35795387625694275,\n            \"Y\": 0.03491195663809776\n          },\n          {\n            \"X\": 0.3579537570476532,\n            \"Y\": 0.043212685734033585\n          },\n          {\n            \"X\": 0.3158392310142517,\n            \"Y\": 0.043190084397792816\n          }\n        ]\n      },\n      \"Id\": \"e693996f-d650-4d46-ab56-228c037adc82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"9a1b3f8b-3e1e-4f8f-b93f-52cf6c10f85f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"717f129b-1243-425c-80c5-b9a22af6bdd1\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.01560974121094,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03726004809141159,\n          \"Height\": 0.009071316570043564,\n          \"Left\": 0.3164359927177429,\n          \"Top\": 0.04790379852056503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.316436231136322,\n            \"Y\": 0.04790379852056503\n          },\n          {\n            \"X\": 0.3536960184574127,\n            \"Y\": 0.047923777252435684\n          },\n          {\n            \"X\": 0.35369592905044556,\n            \"Y\": 0.0569751150906086\n          },\n          {\n            \"X\": 0.3164359927177429,\n            \"Y\": 0.05695516988635063\n          }\n        ]\n      },\n      \"Id\": \"9a1b3f8b-3e1e-4f8f-b93f-52cf6c10f85f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5f4b14c7-ae17-402e-8aba-bd90f48c001d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 82.19085693359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13452234864234924,\n          \"Height\": 0.009620532393455505,\n          \"Left\": 0.1673010289669037,\n          \"Top\": 0.15539100766181946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16730184853076935,\n            \"Y\": 0.15539100766181946\n          },\n          {\n            \"X\": 0.30182337760925293,\n            \"Y\": 0.15546169877052307\n          },\n          {\n            \"X\": 0.30182304978370667,\n            \"Y\": 0.16501154005527496\n          },\n          {\n            \"X\": 0.1673010289669037,\n            \"Y\": 0.1649409681558609\n          }\n        ]\n      },\n      \"Id\": \"8044d0f7-176e-455f-8dd3-6bbb57b06966\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2d583c8e-79b8-4fd9-bc2f-c3cb3023a5a4\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"71727e12-50da-468c-a6b2-1312adebddd3\",\n            \"deb4bf69-39fd-4ec6-b112-d4f0d4374165\",\n            \"df13984c-0f67-4247-8dd9-cbb2ceb55f84\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 82.19085693359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04506848379969597,\n          \"Height\": 0.008460983633995056,\n          \"Left\": 0.30528396368026733,\n          \"Top\": 0.15591807663440704\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3052842319011688,\n            \"Y\": 0.15591807663440704\n          },\n          {\n            \"X\": 0.3503524363040924,\n            \"Y\": 0.15594175457954407\n          },\n          {\n            \"X\": 0.35035231709480286,\n            \"Y\": 0.1643790602684021\n          },\n          {\n            \"X\": 0.30528396368026733,\n            \"Y\": 0.16435541212558746\n          }\n        ]\n      },\n      \"Id\": \"2d583c8e-79b8-4fd9-bc2f-c3cb3023a5a4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f27f1a5c-3200-4e31-a3d2-d60c24e9bcb8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 81.41319274902344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049920354038476944,\n          \"Height\": 0.008260161615908146,\n          \"Left\": 0.3687085807323456,\n          \"Top\": 0.03504357114434242\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36870864033699036,\n            \"Y\": 0.03504357114434242\n          },\n          {\n            \"X\": 0.41862884163856506,\n            \"Y\": 0.035070404410362244\n          },\n          {\n            \"X\": 0.4186289310455322,\n            \"Y\": 0.04330373555421829\n          },\n          {\n            \"X\": 0.3687085807323456,\n            \"Y\": 0.043276943266391754\n          }\n        ]\n      },\n      \"Id\": \"66236011-cbd3-4340-b754-ae4e5e95ce89\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"828584b0-3205-46d1-8e49-5b8ef8026266\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1f40676b-ed02-4f9b-b906-ea6910132052\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 81.41319274902344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05876173824071884,\n          \"Height\": 0.008940650150179863,\n          \"Left\": 0.36891797184944153,\n          \"Top\": 0.04759833961725235\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3689180314540863,\n            \"Y\": 0.04759833961725235\n          },\n          {\n            \"X\": 0.42767953872680664,\n            \"Y\": 0.04762985184788704\n          },\n          {\n            \"X\": 0.4276796877384186,\n            \"Y\": 0.05653899163007736\n          },\n          {\n            \"X\": 0.36891797184944153,\n            \"Y\": 0.05650753155350685\n          }\n        ]\n      },\n      \"Id\": \"828584b0-3205-46d1-8e49-5b8ef8026266\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e13a5b27-62f1-4ba0-b597-50b21ca43129\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 79.21250915527344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13900890946388245,\n          \"Height\": 0.009894808754324913,\n          \"Left\": 0.16581057012081146,\n          \"Top\": 0.14530055224895477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1658114343881607,\n            \"Y\": 0.14530055224895477\n          },\n          {\n            \"X\": 0.3048194646835327,\n            \"Y\": 0.14537374675273895\n          },\n          {\n            \"X\": 0.30481916666030884,\n            \"Y\": 0.15519537031650543\n          },\n          {\n            \"X\": 0.16581057012081146,\n            \"Y\": 0.155122309923172\n          }\n        ]\n      },\n      \"Id\": \"56ac9192-bb43-4b2e-a15a-985bd41fbaf4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"ee9a6bb1-cce5-471a-9ef7-9d7a85f500d0\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fbab9016-1814-4297-86fe-62340e23004c\",\n            \"3938f3a7-1e00-4057-9611-9c943ecf4782\",\n            \"31df3193-4de2-454b-8078-c3f20f965840\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 79.21250915527344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06881856173276901,\n          \"Height\": 0.008232994936406612,\n          \"Left\": 0.30761316418647766,\n          \"Top\": 0.14619195461273193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30761343240737915,\n            \"Y\": 0.14619195461273193\n          },\n          {\n            \"X\": 0.37643173336982727,\n            \"Y\": 0.14622817933559418\n          },\n          {\n            \"X\": 0.3764317035675049,\n            \"Y\": 0.15442495048046112\n          },\n          {\n            \"X\": 0.30761316418647766,\n            \"Y\": 0.15438877046108246\n          }\n        ]\n      },\n      \"Id\": \"ee9a6bb1-cce5-471a-9ef7-9d7a85f500d0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ac09e77-6f78-47f3-95fc-32e3f86bbed2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 77.18728637695312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056258559226989746,\n          \"Height\": 0.012432119809091091,\n          \"Left\": 0.1671336144208908,\n          \"Top\": 0.594097912311554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16713468730449677,\n            \"Y\": 0.594097912311554\n          },\n          {\n            \"X\": 0.22339217364788055,\n            \"Y\": 0.5941250324249268\n          },\n          {\n            \"X\": 0.2233913689851761,\n            \"Y\": 0.6065300107002258\n          },\n          {\n            \"X\": 0.1671336144208908,\n            \"Y\": 0.6065030097961426\n          }\n        ]\n      },\n      \"Id\": \"c372af49-97f8-4d17-af77-0790c3805eab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"d77585de-203c-49a5-ac8a-aff6992b877a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ec0612e9-fb61-4ba2-8241-9c70d457d3bb\",\n            \"311d5ffb-bb9a-4fee-855b-227840e23af8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 77.18728637695312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05792519450187683,\n          \"Height\": 0.010926972143352032,\n          \"Left\": 0.36355382204055786,\n          \"Top\": 0.5939290523529053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.363553911447525,\n            \"Y\": 0.5939290523529053\n          },\n          {\n            \"X\": 0.42147886753082275,\n            \"Y\": 0.5939569473266602\n          },\n          {\n            \"X\": 0.4214790165424347,\n            \"Y\": 0.604856014251709\n          },\n          {\n            \"X\": 0.36355382204055786,\n            \"Y\": 0.6048281192779541\n          }\n        ]\n      },\n      \"Id\": \"d77585de-203c-49a5-ac8a-aff6992b877a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1784c1fe-9099-4a69-8e4a-d186fee83049\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 49.20946502685547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08943863213062286,\n          \"Height\": 0.02345525287091732,\n          \"Left\": 0.052459217607975006,\n          \"Top\": 0.8988903164863586\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05246230214834213,\n            \"Y\": 0.8988903164863586\n          },\n          {\n            \"X\": 0.14189784228801727,\n            \"Y\": 0.8989307284355164\n          },\n          {\n            \"X\": 0.141895592212677,\n            \"Y\": 0.9223455786705017\n          },\n          {\n            \"X\": 0.052459217607975006,\n            \"Y\": 0.9223053455352783\n          }\n        ]\n      },\n      \"Id\": \"58876189-ce0a-4864-a498-f5098c135c3a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"51c17e0e-8858-413e-8951-19f31be51e55\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"db478c62-51e0-4284-a72b-08cb99db0ac2\",\n            \"c476d0a4-af0d-4810-932d-6dca8dd49bd7\",\n            \"a74220a8-5bd3-499d-a4f4-0c809f65c0cf\",\n            \"0c3a9bb9-f9e6-44b7-9a38-0de40a10cd91\",\n            \"54ae61de-c4db-4fed-87f5-816e89022d22\",\n            \"f20b2381-24d1-4fd2-84f9-697851768c1e\",\n            \"40e2c007-7564-4652-9e04-9fae344f4cac\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 49.20946502685547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13114042580127716,\n          \"Height\": 0.036322206258773804,\n          \"Left\": 0.18829090893268585,\n          \"Top\": 0.8727583289146423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18829374015331268,\n            \"Y\": 0.8727583289146423\n          },\n          {\n            \"X\": 0.319431334733963,\n            \"Y\": 0.8728179335594177\n          },\n          {\n            \"X\": 0.3194303810596466,\n            \"Y\": 0.9090805649757385\n          },\n          {\n            \"X\": 0.18829090893268585,\n            \"Y\": 0.9090214371681213\n          }\n        ]\n      },\n      \"Id\": \"51c17e0e-8858-413e-8951-19f31be51e55\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc260cd2-e4aa-438d-8ea6-1fdd17f6a891\",\n            \"a26b82d9-75a7-402c-b83e-ee6866fa46c8\",\n            \"e99bbd73-bd03-4c20-becb-8f26d229b70f\",\n            \"bd876d4d-569a-48a2-9769-7a4d031eb326\",\n            \"b66cc3d2-bc14-46cf-8853-68b335b180bb\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 47.7046012878418,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028765100985765457,\n          \"Height\": 0.010195081122219563,\n          \"Left\": 0.5775264501571655,\n          \"Top\": 0.34365856647491455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5775264501571655,\n            \"Y\": 0.34365856647491455\n          },\n          {\n            \"X\": 0.6062906384468079,\n            \"Y\": 0.34367313981056213\n          },\n          {\n            \"X\": 0.6062915325164795,\n            \"Y\": 0.35385364294052124\n          },\n          {\n            \"X\": 0.5775271654129028,\n            \"Y\": 0.35383906960487366\n          }\n        ]\n      },\n      \"Id\": \"57295560-55f0-4050-825d-7297b4d592d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"ed5f449c-b793-4372-838e-7637804c9eb2\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"645e9ba0-5da6-4c63-8389-6c416316d347\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 47.7046012878418,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05921837314963341,\n          \"Height\": 0.011456898413598537,\n          \"Left\": 0.7742837071418762,\n          \"Top\": 0.344184935092926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7742837071418762,\n            \"Y\": 0.344184935092926\n          },\n          {\n            \"X\": 0.8335000276565552,\n            \"Y\": 0.34421494603157043\n          },\n          {\n            \"X\": 0.8335020542144775,\n            \"Y\": 0.35564184188842773\n          },\n          {\n            \"X\": 0.7742854356765747,\n            \"Y\": 0.3556118905544281\n          }\n        ]\n      },\n      \"Id\": \"ed5f449c-b793-4372-838e-7637804c9eb2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e975c53-1124-47a6-978f-94304d7e9d64\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 46.13990020751953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07312437891960144,\n          \"Height\": 0.012477151118218899,\n          \"Left\": 0.16745029389858246,\n          \"Top\": 0.31272009015083313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16745136678218842,\n            \"Y\": 0.31272009015083313\n          },\n          {\n            \"X\": 0.2405746728181839,\n            \"Y\": 0.3127574026584625\n          },\n          {\n            \"X\": 0.2405739575624466,\n            \"Y\": 0.3251972496509552\n          },\n          {\n            \"X\": 0.16745029389858246,\n            \"Y\": 0.32516005635261536\n          }\n        ]\n      },\n      \"Id\": \"9a142748-1d53-49f1-b26f-5d55492a90fe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"7b87fe5c-95e8-4267-887b-006954996a1b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9046d057-e39b-4ec8-8f3b-f46c0d113a43\",\n            \"15793dda-51d2-4995-8ee6-8ed6420efdca\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 46.13990020751953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06261080503463745,\n          \"Height\": 0.011055441573262215,\n          \"Left\": 0.3585928976535797,\n          \"Top\": 0.3128688931465149\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35859301686286926,\n            \"Y\": 0.3128688931465149\n          },\n          {\n            \"X\": 0.4212035536766052,\n            \"Y\": 0.3129008114337921\n          },\n          {\n            \"X\": 0.42120370268821716,\n            \"Y\": 0.32392433285713196\n          },\n          {\n            \"X\": 0.3585928976535797,\n            \"Y\": 0.3238924741744995\n          }\n        ]\n      },\n      \"Id\": \"7b87fe5c-95e8-4267-887b-006954996a1b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eae93dbe-109d-412a-b39e-c107671f581d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 46.065914154052734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1213299036026001,\n          \"Height\": 0.01487443782389164,\n          \"Left\": 0.5373824834823608,\n          \"Top\": 0.9014502763748169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5373824834823608,\n            \"Y\": 0.9014502763748169\n          },\n          {\n            \"X\": 0.6587108373641968,\n            \"Y\": 0.9015051126480103\n          },\n          {\n            \"X\": 0.6587123870849609,\n            \"Y\": 0.9163247346878052\n          },\n          {\n            \"X\": 0.5373833775520325,\n            \"Y\": 0.9162701368331909\n          }\n        ]\n      },\n      \"Id\": \"2dfb619a-f3a9-41eb-966c-ed1f22e49f53\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"3ae15564-afac-4f54-bafd-cc2d4c87901e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"076ca7b8-2c4a-4ace-b20c-9c5d13327917\",\n            \"fe0d9a9b-40fe-4c40-8a8c-4f1b7e56eb7c\",\n            \"d05575c6-9b5d-48fb-96f5-b43e6c4a758f\",\n            \"d93639cd-5afd-49da-92ad-f04e4bd8b380\",\n            \"0b520aa7-3fe9-406b-9173-f8ec4dc8d3f8\",\n            \"6fe3e737-a943-4133-9c55-c50e976a6362\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 46.065914154052734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34467023611068726,\n          \"Height\": 0.038818661123514175,\n          \"Left\": 0.5423883199691772,\n          \"Top\": 0.8627896308898926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5423883199691772,\n            \"Y\": 0.8627896308898926\n          },\n          {\n            \"X\": 0.8870509266853333,\n            \"Y\": 0.862946629524231\n          },\n          {\n            \"X\": 0.8870585560798645,\n            \"Y\": 0.9016082882881165\n          },\n          {\n            \"X\": 0.5423907041549683,\n            \"Y\": 0.9014525413513184\n          }\n        ]\n      },\n      \"Id\": \"3ae15564-afac-4f54-bafd-cc2d4c87901e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b2a7081c-9059-4f6c-b72d-ecb71aa7d1e7\",\n            \"adbb18b9-640f-4f06-a15f-dc7e98f8012b\",\n            \"04842b7b-8058-42a8-996f-816addaeefdd\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 44.72422790527344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05617019906640053,\n          \"Height\": 0.010274777188897133,\n          \"Left\": 0.5771600008010864,\n          \"Top\": 0.3294220566749573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771600008010864,\n            \"Y\": 0.3294220566749573\n          },\n          {\n            \"X\": 0.6333292126655579,\n            \"Y\": 0.3294506072998047\n          },\n          {\n            \"X\": 0.633330225944519,\n            \"Y\": 0.33969682455062866\n          },\n          {\n            \"X\": 0.5771607756614685,\n            \"Y\": 0.339668333530426\n          }\n        ]\n      },\n      \"Id\": \"5878ffa2-1bd2-478c-849c-1c5fc96e205d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"bc8006b4-8dd6-4077-91ac-6cc82178000f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42ac2887-8d88-4bd6-8950-1a50021577f4\",\n            \"416435d6-3e3e-4358-94fa-0e7ad3bb98f8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 44.72422790527344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03537050634622574,\n          \"Height\": 0.009502205066382885,\n          \"Left\": 0.9071366786956787,\n          \"Top\": 0.3304699957370758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9071366786956787,\n            \"Y\": 0.3304699957370758\n          },\n          {\n            \"X\": 0.9425051212310791,\n            \"Y\": 0.330487996339798\n          },\n          {\n            \"X\": 0.9425072073936462,\n            \"Y\": 0.33997219800949097\n          },\n          {\n            \"X\": 0.9071386456489563,\n            \"Y\": 0.3399542570114136\n          }\n        ]\n      },\n      \"Id\": \"bc8006b4-8dd6-4077-91ac-6cc82178000f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2a6a9b39-7d30-4838-b23d-eba8969dc66c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 41.478912353515625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0572432205080986,\n          \"Height\": 0.01011187955737114,\n          \"Left\": 0.5765600800514221,\n          \"Top\": 0.3140708804130554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5765600800514221,\n            \"Y\": 0.3140708804130554\n          },\n          {\n            \"X\": 0.6338023543357849,\n            \"Y\": 0.314100056886673\n          },\n          {\n            \"X\": 0.6338033080101013,\n            \"Y\": 0.32418274879455566\n          },\n          {\n            \"X\": 0.5765608549118042,\n            \"Y\": 0.3241536319255829\n          }\n        ]\n      },\n      \"Id\": \"6c8b3f8f-bf35-42dd-a0bf-587a9a6923ed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f056d0c9-2a8d-4c17-abe7-ec6d1131ae33\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"359f3d6d-a052-49c7-9b44-d41640a26b57\",\n            \"6c02d677-8d83-4833-8212-4e63957d4e25\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 41.478912353515625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036371100693941116,\n          \"Height\": 0.00933042261749506,\n          \"Left\": 0.9058886170387268,\n          \"Top\": 0.3150366246700287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9058886170387268,\n            \"Y\": 0.3150366246700287\n          },\n          {\n            \"X\": 0.9422577023506165,\n            \"Y\": 0.31505516171455383\n          },\n          {\n            \"X\": 0.9422597289085388,\n            \"Y\": 0.32436704635620117\n          },\n          {\n            \"X\": 0.9058905243873596,\n            \"Y\": 0.3243485391139984\n          }\n        ]\n      },\n      \"Id\": \"f056d0c9-2a8d-4c17-abe7-ec6d1131ae33\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f8e72572-c426-4eb2-badc-ab4f7d0d710a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 38.45758056640625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08284548670053482,\n          \"Height\": 0.009990697726607323,\n          \"Left\": 0.05331192910671234,\n          \"Top\": 0.8289889693260193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0533132366836071,\n            \"Y\": 0.8289889693260193\n          },\n          {\n            \"X\": 0.13615742325782776,\n            \"Y\": 0.829026997089386\n          },\n          {\n            \"X\": 0.13615643978118896,\n            \"Y\": 0.8389796614646912\n          },\n          {\n            \"X\": 0.05331192910671234,\n            \"Y\": 0.838941752910614\n          }\n        ]\n      },\n      \"Id\": \"0d2eb0d9-3cd0-4ecd-b9f4-0b4b934d4fbe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"25bc6460-458a-43d6-b578-aa5017cc66e4\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"50e7d7b4-c82b-40f5-8c6f-74bc6bdbcc3b\",\n            \"6e51c2c5-47c0-4c45-bf1f-f2ce2d8538ba\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 38.45758056640625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.381965309381485,\n          \"Height\": 0.01062029879540205,\n          \"Left\": 0.15771035850048065,\n          \"Top\": 0.8311577439308167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15771129727363586,\n            \"Y\": 0.8311577439308167\n          },\n          {\n            \"X\": 0.5396750569343567,\n            \"Y\": 0.8313329219818115\n          },\n          {\n            \"X\": 0.5396756529808044,\n            \"Y\": 0.841778039932251\n          },\n          {\n            \"X\": 0.15771035850048065,\n            \"Y\": 0.8416032195091248\n          }\n        ]\n      },\n      \"Id\": \"25bc6460-458a-43d6-b578-aa5017cc66e4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd1789c5-a100-41b1-938e-d3b878bea0ae\",\n            \"aa0b1ff4-8da5-42c8-bbf2-65f6a9900140\",\n            \"7cd8a78e-78bf-4b97-b038-4cd7bea1aa7d\",\n            \"a9ad79dd-4ae8-4b00-97f9-2d78d5e13cd0\",\n            \"c389aea7-28cb-4f7b-851c-f51f54ded6e9\",\n            \"64de448f-a65a-438a-813c-d59d40995cf1\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 36.848018646240234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.24781563878059387,\n          \"Height\": 0.013197791762650013,\n          \"Left\": 0.1795094758272171,\n          \"Top\": 0.657111644744873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17951054871082306,\n            \"Y\": 0.657111644744873\n          },\n          {\n            \"X\": 0.42732489109039307,\n            \"Y\": 0.6572295427322388\n          },\n          {\n            \"X\": 0.4273250997066498,\n            \"Y\": 0.6703094244003296\n          },\n          {\n            \"X\": 0.1795094758272171,\n            \"Y\": 0.670191764831543\n          }\n        ]\n      },\n      \"Id\": \"6d97e365-7b18-42f4-9d9e-126376a78cf8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"57ede624-78fd-43eb-acc2-1a632a17ad7b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"562e01fb-b19c-411a-ae82-9f126855c3e6\",\n            \"ef576862-a59d-4664-8d0c-c2831ece716b\",\n            \"992b9de3-4418-4e13-91db-cfec3bcdd927\",\n            \"98953928-59b2-4fe6-b9da-77110427aa6a\",\n            \"f45401ba-712c-4148-9809-a40200de41a6\",\n            \"fab1b8b6-d311-4090-83b0-124d2b092359\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 36.848018646240234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05452391132712364,\n          \"Height\": 0.010345266200602055,\n          \"Left\": 0.43344587087631226,\n          \"Top\": 0.6579217910766602\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43344587087631226,\n            \"Y\": 0.6579217910766602\n          },\n          {\n            \"X\": 0.48796936869621277,\n            \"Y\": 0.6579477787017822\n          },\n          {\n            \"X\": 0.4879697561264038,\n            \"Y\": 0.6682670712471008\n          },\n          {\n            \"X\": 0.4334460496902466,\n            \"Y\": 0.6682412028312683\n          }\n        ]\n      },\n      \"Id\": \"57ede624-78fd-43eb-acc2-1a632a17ad7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"070f85a9-f5b6-42f9-bd14-4c6735260157\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 34.59865188598633,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09227815270423889,\n          \"Height\": 0.01043468527495861,\n          \"Left\": 0.16601265966892242,\n          \"Top\": 0.5713695883750916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16601355373859406,\n            \"Y\": 0.5713695883750916\n          },\n          {\n            \"X\": 0.2582907974720001,\n            \"Y\": 0.5714142918586731\n          },\n          {\n            \"X\": 0.25829029083251953,\n            \"Y\": 0.5818042755126953\n          },\n          {\n            \"X\": 0.16601265966892242,\n            \"Y\": 0.5817596912384033\n          }\n        ]\n      },\n      \"Id\": \"8fe6ef6c-82dd-4a86-bd31-8f16539cb0d0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e3bd076d-828d-4636-9522-843d68ffd142\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f3154a2b-b52c-4496-bf90-0aa6e42c1ea6\",\n            \"f1671341-bf20-47d5-809a-35fe55cd5929\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 34.59865188598633,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048173654824495316,\n          \"Height\": 0.01005655899643898,\n          \"Left\": 0.3728364109992981,\n          \"Top\": 0.5715843439102173\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37283647060394287,\n            \"Y\": 0.5715843439102173\n          },\n          {\n            \"X\": 0.42100992798805237,\n            \"Y\": 0.5716077089309692\n          },\n          {\n            \"X\": 0.4210100769996643,\n            \"Y\": 0.581640899181366\n          },\n          {\n            \"X\": 0.3728364109992981,\n            \"Y\": 0.5816175937652588\n          }\n        ]\n      },\n      \"Id\": \"e3bd076d-828d-4636-9522-843d68ffd142\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3868275e-9e19-4b33-8067-26216338de31\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 33.15874481201172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09778092801570892,\n          \"Height\": 0.01042260229587555,\n          \"Left\": 0.5772919654846191,\n          \"Top\": 0.2835097908973694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5772919654846191,\n            \"Y\": 0.2835097908973694\n          },\n          {\n            \"X\": 0.6750717163085938,\n            \"Y\": 0.2835599482059479\n          },\n          {\n            \"X\": 0.6750728487968445,\n            \"Y\": 0.29393237829208374\n          },\n          {\n            \"X\": 0.5772927403450012,\n            \"Y\": 0.2938823401927948\n          }\n        ]\n      },\n      \"Id\": \"aa3c7a40-ff92-4924-93e2-934048409e61\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"18191027-73a0-4cb3-a9a8-d3ee95b0b1a6\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32c7c392-b41d-4371-98c6-b3a2d9e4cf50\",\n            \"c0352b58-49ab-4f57-a14a-b405f5910935\",\n            \"05e975a6-ebd0-4673-8adf-c534442dda48\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 33.15874481201172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04489825293421745,\n          \"Height\": 0.00916399247944355,\n          \"Left\": 0.8978501558303833,\n          \"Top\": 0.2846255898475647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8978501558303833,\n            \"Y\": 0.2846255898475647\n          },\n          {\n            \"X\": 0.9427464008331299,\n            \"Y\": 0.284648597240448\n          },\n          {\n            \"X\": 0.9427484273910522,\n            \"Y\": 0.2937895655632019\n          },\n          {\n            \"X\": 0.8978520035743713,\n            \"Y\": 0.293766587972641\n          }\n        ]\n      },\n      \"Id\": \"18191027-73a0-4cb3-a9a8-d3ee95b0b1a6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3d60009-3c96-4d3e-b693-8bd8fd98c33e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 32.24306106567383,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06991735100746155,\n          \"Height\": 0.01990310288965702,\n          \"Left\": 0.05305207893252373,\n          \"Top\": 0.8010594248771667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05305468663573265,\n            \"Y\": 0.8010594248771667\n          },\n          {\n            \"X\": 0.12296942621469498,\n            \"Y\": 0.801091730594635\n          },\n          {\n            \"X\": 0.12296736240386963,\n            \"Y\": 0.8209625482559204\n          },\n          {\n            \"X\": 0.05305207893252373,\n            \"Y\": 0.8209304213523865\n          }\n        ]\n      },\n      \"Id\": \"a99bcdce-e274-4df7-9ea1-52ad44960808\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"c72fc5f5-2ae4-42b6-8523-f1894717664d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac81c5af-91d9-4bbd-9a3a-ea7cb2106bd1\",\n            \"45024ad6-9f03-4957-9963-bc25f61174e2\",\n            \"6913e743-078e-406f-b3b4-6a0f40f9cabf\",\n            \"3f40b1e3-48f5-4090-bcca-1ca12d7f85da\",\n            \"af065b87-190e-4e30-9702-52350b064d66\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 32.24306106567383,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10968883335590363,\n          \"Height\": 0.010940628126263618,\n          \"Left\": 0.15560534596443176,\n          \"Top\": 0.8114320039749146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15560632944107056,\n            \"Y\": 0.8114320039749146\n          },\n          {\n            \"X\": 0.2652941644191742,\n            \"Y\": 0.8114825487136841\n          },\n          {\n            \"X\": 0.2652936577796936,\n            \"Y\": 0.8223726749420166\n          },\n          {\n            \"X\": 0.15560534596443176,\n            \"Y\": 0.8223222494125366\n          }\n        ]\n      },\n      \"Id\": \"c72fc5f5-2ae4-42b6-8523-f1894717664d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c6da4f6c-01cc-487a-bc46-fc3c2fd742e4\",\n            \"096f83b6-7a5d-41d7-bd53-18bfce6b9a8c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"5bc38f18-0cce-4e95-8bd5-bc4db4af717d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"040793fb-29e8-49ee-b659-816408f3bb00\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the YTD Gross Pay?\",\n        \"Alias\": \"YTD gross pay\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 96,\n      \"Text\": \"23,526.80\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06667555868625641,\n          \"Height\": 0.01099514402449131,\n          \"Left\": 0.46244537830352783,\n          \"Top\": 0.31275317072868347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46244537830352783,\n            \"Y\": 0.31275317072868347\n          },\n          {\n            \"X\": 0.5291203260421753,\n            \"Y\": 0.31278717517852783\n          },\n          {\n            \"X\": 0.529120922088623,\n            \"Y\": 0.32374832034111023\n          },\n          {\n            \"X\": 0.4624457061290741,\n            \"Y\": 0.32371437549591064\n          }\n        ]\n      },\n      \"Id\": \"040793fb-29e8-49ee-b659-816408f3bb00\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"fe493ffa-fea9-491b-a78f-323483c7ae83\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"b4e39ed8-09b9-4636-bf02-cfe9281c9d43\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the Gross Pay for this period?\",\n        \"Alias\": \"gross pay\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 95,\n      \"Text\": \"$ 452.43\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06100200116634369,\n          \"Height\": 0.010992366820573807,\n          \"Left\": 0.3588845729827881,\n          \"Top\": 0.31160423159599304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35888469219207764,\n            \"Y\": 0.31160423159599304\n          },\n          {\n            \"X\": 0.41988644003868103,\n            \"Y\": 0.3116353452205658\n          },\n          {\n            \"X\": 0.4198865592479706,\n            \"Y\": 0.32259657979011536\n          },\n          {\n            \"X\": 0.3588845729827881,\n            \"Y\": 0.3225655257701874\n          }\n        ]\n      },\n      \"Id\": \"b4e39ed8-09b9-4636-bf02-cfe9281c9d43\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"44767633-1628-448a-9133-3af3ea5a6e0d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"2e0db48b-911a-40fb-b776-43d82fd3acdf\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the Federal income tax this period?\",\n        \"Alias\": \"income tax\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 95,\n      \"Text\": \"-40.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0482349768280983,\n          \"Height\": 0.009889869019389153,\n          \"Left\": 0.371652215719223,\n          \"Top\": 0.35984116792678833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3716522753238678,\n            \"Y\": 0.35984116792678833\n          },\n          {\n            \"X\": 0.41988706588745117,\n            \"Y\": 0.35986554622650146\n          },\n          {\n            \"X\": 0.4198871850967407,\n            \"Y\": 0.36973103880882263\n          },\n          {\n            \"X\": 0.371652215719223,\n            \"Y\": 0.3697067201137543\n          }\n        ]\n      },\n      \"Id\": \"2e0db48b-911a-40fb-b776-43d82fd3acdf\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 80.82295989990234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3476353883743286,\n          \"Height\": 0.06082655489444733,\n          \"Left\": 0.5426891446113586,\n          \"Top\": 0.8605324625968933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5426891446113586,\n            \"Y\": 0.8605324625968933\n          },\n          {\n            \"X\": 0.8903124928474426,\n            \"Y\": 0.8606908917427063\n          },\n          {\n            \"X\": 0.8903245329856873,\n            \"Y\": 0.9213590025901794\n          },\n          {\n            \"X\": 0.5426928997039795,\n            \"Y\": 0.9212026596069336\n          }\n        ]\n      },\n      \"Id\": \"b2a7081c-9059-4f6c-b72d-ecb71aa7d1e7\"\n    },\n    {\n      \"BlockType\": \"LAYOUT_FIGURE\",\n      \"Confidence\": 26.3916015625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0333380363881588,\n          \"Height\": 0.011957348324358463,\n          \"Left\": 0.040248967707157135,\n          \"Top\": 0.010730885900557041\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04025059938430786,\n            \"Y\": 0.010730885900557041\n          },\n          {\n            \"X\": 0.07358700037002563,\n            \"Y\": 0.010748883709311485\n          },\n          {\n            \"X\": 0.07358553260564804,\n            \"Y\": 0.022688234224915504\n          },\n          {\n            \"X\": 0.040248967707157135,\n            \"Y\": 0.02267027646303177\n          }\n        ]\n      },\n      \"Id\": \"8286700b-67cf-4197-b84c-57d13a41fc3b\"\n    },\n    {\n      \"BlockType\": \"LAYOUT_HEADER\",\n      \"Confidence\": 25.68359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.29005011916160583,\n          \"Height\": 0.022670071572065353,\n          \"Left\": 0.1648906022310257,\n          \"Top\": 0.0345170684158802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16489256918430328,\n            \"Y\": 0.0345170684158802\n          },\n          {\n            \"X\": 0.4549401104450226,\n            \"Y\": 0.03467297554016113\n          },\n          {\n            \"X\": 0.45494070649147034,\n            \"Y\": 0.05718713998794556\n          },\n          {\n            \"X\": 0.1648906022310257,\n            \"Y\": 0.05703187361359596\n          }\n        ]\n      },\n      \"Id\": \"6ac60970-89ea-42ff-8468-6e83e7f49f86\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3bb03b3a-80e6-4c72-816e-688de4d29502\",\n            \"943f3cac-bc23-4220-a782-54a5f46844d9\",\n            \"40b27f9e-9d8b-49ba-8265-526ca7fd9f62\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 65.380859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16003593802452087,\n          \"Height\": 0.04240267723798752,\n          \"Left\": 0.16638056933879852,\n          \"Top\": 0.07316377013921738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1663842350244522,\n            \"Y\": 0.07316377013921738\n          },\n          {\n            \"X\": 0.3264164924621582,\n            \"Y\": 0.07324917614459991\n          },\n          {\n            \"X\": 0.3264155089855194,\n            \"Y\": 0.1155664473772049\n          },\n          {\n            \"X\": 0.16638056933879852,\n            \"Y\": 0.11548170447349548\n          }\n        ]\n      },\n      \"Id\": \"517ccf7d-8743-4f9a-be3e-f51128e94a1b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4f652d6c-9058-4c15-b980-842ddfaf900e\",\n            \"63304d07-751c-4599-8aba-2e89b62c1cca\",\n            \"300a643b-7a87-41f7-94de-d3e7a9ff024a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_SECTION_HEADER\",\n      \"Confidence\": 44.4580078125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23522374033927917,\n          \"Height\": 0.018239689990878105,\n          \"Left\": 0.5793696641921997,\n          \"Top\": 0.04107304662466049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5793696641921997,\n            \"Y\": 0.04107304662466049\n          },\n          {\n            \"X\": 0.814590334892273,\n            \"Y\": 0.04119933769106865\n          },\n          {\n            \"X\": 0.8145934343338013,\n            \"Y\": 0.059312738478183746\n          },\n          {\n            \"X\": 0.5793710350990295,\n            \"Y\": 0.059186868369579315\n          }\n        ]\n      },\n      \"Id\": \"8ccdcbdb-3ecb-4813-980e-bf6afa76b26d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"04edae7f-9d22-4df4-a3df-985e617e41b6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 72.265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23737762868404388,\n          \"Height\": 0.0286145880818367,\n          \"Left\": 0.5785614252090454,\n          \"Top\": 0.07147198915481567\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785614252090454,\n            \"Y\": 0.07147198915481567\n          },\n          {\n            \"X\": 0.8159342408180237,\n            \"Y\": 0.07159871608018875\n          },\n          {\n            \"X\": 0.8159390687942505,\n            \"Y\": 0.10008657723665237\n          },\n          {\n            \"X\": 0.5785635709762573,\n            \"Y\": 0.09996051341295242\n          }\n        ]\n      },\n      \"Id\": \"858360ca-00cd-49cd-9500-22412a9ab475\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"977e13f4-c13c-4547-974c-a756b1eabdde\",\n            \"78e8e9b9-6606-4039-8f3f-6f0a67c4c507\",\n            \"0bae8362-e70a-4507-9cb2-7778b892e6da\",\n            \"8528abca-6cd6-4813-829b-337442dbe393\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 66.259765625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21170878410339355,\n          \"Height\": 0.0644494816660881,\n          \"Left\": 0.16550834476947784,\n          \"Top\": 0.14504839479923248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16551394760608673,\n            \"Y\": 0.14504839479923248\n          },\n          {\n            \"X\": 0.3772171139717102,\n            \"Y\": 0.14515987038612366\n          },\n          {\n            \"X\": 0.3772168755531311,\n            \"Y\": 0.20949788391590118\n          },\n          {\n            \"X\": 0.16550834476947784,\n            \"Y\": 0.20938773453235626\n          }\n        ]\n      },\n      \"Id\": \"f346ea3b-cda9-4760-8954-41335a78c1ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fab364b3-5864-4403-827f-f0cdbe19a646\",\n            \"9a3c007d-935b-4f60-9090-68d1ec3cc22c\",\n            \"e4094b61-5534-4b22-a32f-a5473df5b850\",\n            \"2737db78-b240-4eae-a802-29e2b64fa077\",\n            \"795a3329-9013-4733-8703-13e17f14693c\",\n            \"38035a1c-f357-4c30-ab0b-87989474fb82\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 77.783203125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19434240460395813,\n          \"Height\": 0.03888922557234764,\n          \"Left\": 0.5781286954879761,\n          \"Top\": 0.15026260912418365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781286954879761,\n            \"Y\": 0.15026260912418365\n          },\n          {\n            \"X\": 0.772465169429779,\n            \"Y\": 0.15036486089229584\n          },\n          {\n            \"X\": 0.7724710702896118,\n            \"Y\": 0.1891518384218216\n          },\n          {\n            \"X\": 0.5781316161155701,\n            \"Y\": 0.1890503466129303\n          }\n        ]\n      },\n      \"Id\": \"8eeb39cc-2955-4c56-a168-d9cb4e714e5d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0e973b1a-70ff-4799-af0e-b95080fd1d95\",\n            \"f57c6506-55e4-4652-9a04-16d960db1d67\",\n            \"4944a4d6-f912-484e-9cc0-77d8f6ac69df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TABLE\",\n      \"Confidence\": 53.61328125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.49859747290611267,\n          \"Height\": 0.42422112822532654,\n          \"Left\": 0.043311141431331635,\n          \"Top\": 0.22950787842273712\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04336847364902496,\n            \"Y\": 0.22950787842273712\n          },\n          {\n            \"X\": 0.5418826937675476,\n            \"Y\": 0.22976621985435486\n          },\n          {\n            \"X\": 0.5419086217880249,\n            \"Y\": 0.6537290215492249\n          },\n          {\n            \"X\": 0.043311141431331635,\n            \"Y\": 0.6534915566444397\n          }\n        ]\n      },\n      \"Id\": \"a886573c-b1f0-4aa4-9172-e4f2e5dbff80\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f2a203ee-b12f-473c-865b-ef12d5559ffb\",\n            \"5a83b260-98eb-4015-aa2a-e2f4add156b5\",\n            \"12940161-41f8-4a77-a8d7-f0696db85afc\",\n            \"34aa8fd7-a643-4dbe-aa04-28f8f7ea8531\",\n            \"7b4489e3-78fe-4d7a-b9e0-64582746aab1\",\n            \"1f66f667-2b97-4ad2-bab9-ef38f89f64be\",\n            \"1ebcb36a-7216-4856-b60d-0e79deec9bc2\",\n            \"946ce0c3-0c28-4bb2-93a9-ca4b8c26f9f6\",\n            \"5385b49e-8c4e-4907-a0ec-a4ba405187dc\",\n            \"400d8b2b-544a-4d55-bc3f-6ef75813801d\",\n            \"255a6bfe-d43a-4f4f-85e7-7e803fe0d73f\",\n            \"b50fca33-2787-4dc2-bdb2-0b3073fef258\",\n            \"743c75fd-2fa6-49de-990d-32a5d49c058f\",\n            \"798fd191-4af7-427a-a647-b3fa5eb31ec8\",\n            \"7d69c42c-0aa3-4c2f-857c-c1fd32bfa6d1\",\n            \"bc99057d-e8a5-4ae6-afb6-1a30c452b448\",\n            \"b9f33a0d-4b19-4029-8ce2-6a59bd33bb40\",\n            \"837353b7-e41a-4b32-9a49-b5afe2727989\",\n            \"450b6ffb-77ed-4bee-a9e8-530b29c57716\",\n            \"6c47dcd5-e8f8-4fb1-8bc1-c39978599b3f\",\n            \"9da58d2e-cf4d-463e-a13a-c31c0cdd0a23\",\n            \"3ae47c8f-a96a-48bd-8f1b-4607ba5b6dab\",\n            \"ab0f1c06-0e02-475b-b930-3baa034068df\",\n            \"8f575d26-ba66-430d-9c9e-e5d6f8d0e97b\",\n            \"a79d05c2-15f7-42b8-9943-802a11fc5f62\",\n            \"264ef681-e1c4-4dd4-89e6-bdd3773bd405\",\n            \"7b87691d-cac7-4ee8-bf88-235e5e36130c\",\n            \"0ccf328b-c06b-40a5-88eb-28bc851417fa\",\n            \"9a7c4646-f2cd-4c06-a9b4-40b9458c4b3c\",\n            \"a18e26ea-08d7-4aeb-b393-142ef57c6fa0\",\n            \"69c61c07-216f-4af8-b372-774228c3debe\",\n            \"6dd7e101-6334-49aa-885f-c502aa41a048\",\n            \"fd5fb73b-17c8-49c7-8eb0-8adad1bac317\",\n            \"0bb4d254-9a3a-4dc5-ab48-292d0bc44241\",\n            \"71cb3653-43a1-4488-a55a-9f84f58cce29\",\n            \"091112e3-44b4-464c-9575-e6493218f5a1\",\n            \"d8606f44-5db8-45a5-9d6f-8630d37f7dfc\",\n            \"1eae4a00-b223-4710-b439-f098247ed76b\",\n            \"c9d1e744-e6cc-4f0e-a24d-591491219e29\",\n            \"540afc62-5d18-41d7-ae67-daa4a1b47787\",\n            \"c748ed3f-b820-4b52-a38a-361aa312a4a7\",\n            \"4f7e8d31-27b2-4940-bf4e-9ab1c212bb96\",\n            \"2f0a2d8d-2be0-4a06-9ae1-b7310ba67231\",\n            \"cc3ee7dd-b65d-4da0-99f1-7303faa26550\",\n            \"d9a85222-7984-4509-8b9a-f671dee39a59\",\n            \"609b33ad-7a9a-497a-992a-49f0686492c8\",\n            \"5685e5ee-0dbc-4d16-a057-6c67412ace12\",\n            \"f4b016f4-c4a5-492b-8345-e3c696219a97\",\n            \"6e68a7af-77cd-49e5-9c2d-101b2c490281\",\n            \"ecfe7f76-7206-4e8d-a1f9-fad3995060aa\",\n            \"26e25dc7-6e39-4b0e-8667-dcea4ada27c9\",\n            \"1ddb1c76-3f4f-4d0f-b708-f8628f3d9f88\",\n            \"03ce38e7-bf71-4184-8173-cf67dc48cb09\",\n            \"10631188-5620-435c-bc83-d4a81143271b\",\n            \"afa2e199-6d21-4262-8b8c-0b5106d555fb\",\n            \"ddd7bf59-5961-4a7c-8070-e4268e3c783c\",\n            \"9e89b823-69f1-416e-9a58-112461388d80\",\n            \"240a74fe-0eca-4a3f-89f4-8eb8ea27990c\",\n            \"30a796c2-b01f-4a35-b5b3-cdf9966e3625\",\n            \"901d2d24-e77c-47d1-be1a-372e2db4eb7b\",\n            \"e34e1a94-be22-49f1-b166-ffc258696599\",\n            \"42cf91d5-8b0c-42a6-bb78-7bdd085a2ae4\",\n            \"c95163a5-f31c-42db-a55c-c1ffc26ce085\",\n            \"bd6fc1b9-f246-456d-8c19-2a135f768588\",\n            \"80d3f411-308d-4431-80cf-ee6c3327a14c\",\n            \"bcfc6979-fcd8-4667-9b40-165ccc108453\",\n            \"ecb33a00-11ef-4f63-8313-2e39e171fbe0\",\n            \"e5a43107-7850-43be-a319-17c9caa52f82\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 49.4140625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30866745114326477,\n          \"Height\": 0.01362847350537777,\n          \"Left\": 0.17867182195186615,\n          \"Top\": 0.656588077545166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786729246377945,\n            \"Y\": 0.656588077545166\n          },\n          {\n            \"X\": 0.48733875155448914,\n            \"Y\": 0.6567350029945374\n          },\n          {\n            \"X\": 0.4873392879962921,\n            \"Y\": 0.6702165603637695\n          },\n          {\n            \"X\": 0.17867182195186615,\n            \"Y\": 0.6700700521469116\n          }\n        ]\n      },\n      \"Id\": \"0239bf7e-8c70-46a7-b301-5e4473939507\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3a3398ba-0db4-4baa-be2f-7b9780f2cba8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TABLE\",\n      \"Confidence\": 86.572265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37663862109184265,\n          \"Height\": 0.12569263577461243,\n          \"Left\": 0.5716724395751953,\n          \"Top\": 0.2322477400302887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5716724395751953,\n            \"Y\": 0.2322477400302887\n          },\n          {\n            \"X\": 0.948283314704895,\n            \"Y\": 0.23244281113147736\n          },\n          {\n            \"X\": 0.9483110904693604,\n            \"Y\": 0.3579403758049011\n          },\n          {\n            \"X\": 0.5716816186904907,\n            \"Y\": 0.35774996876716614\n          }\n        ]\n      },\n      \"Id\": \"2ed6b7f8-d565-4109-846b-d1aa9452bdcd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d9878906-918d-4bcc-b477-62b63d1722bb\",\n            \"35d8f9fc-962f-406f-8af7-a8ae7e381e82\",\n            \"be7e09f6-9783-4138-8388-80676f461a5e\",\n            \"923e5653-ba50-47d5-9b4d-181cb1063c15\",\n            \"ef945490-95b5-40ce-b8e7-aeae85461834\",\n            \"5b7fb5a0-96d7-4c63-b475-64b8d9840455\",\n            \"b3b33108-a9a8-438e-af8b-8295f18a4c4e\",\n            \"8519aac2-1e05-42ba-8dd3-3e785efdf0e3\",\n            \"4765b878-7ae2-41c2-8e98-84969fc58a53\",\n            \"7d20bbe5-7f6b-4894-9753-0825f41c8e51\",\n            \"4d4a6fca-7f94-48e9-bf89-7b164b3ac642\",\n            \"e2d14d19-11b5-4f2d-9d64-38bab135d4ee\",\n            \"ed02ec09-8b0e-4f28-8165-be64a7881387\",\n            \"6a0d2c36-b0f7-4819-b967-e04d290d9435\",\n            \"e8059170-bd07-4d09-a7b3-a1c6e83427ae\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 33.642578125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13237833976745605,\n          \"Height\": 0.013642820529639721,\n          \"Left\": 0.5768430829048157,\n          \"Top\": 0.3883585035800934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768430829048157,\n            \"Y\": 0.3883585035800934\n          },\n          {\n            \"X\": 0.7092196941375732,\n            \"Y\": 0.3884250223636627\n          },\n          {\n            \"X\": 0.7092214226722717,\n            \"Y\": 0.4020013213157654\n          },\n          {\n            \"X\": 0.5768440961837769,\n            \"Y\": 0.40193498134613037\n          }\n        ]\n      },\n      \"Id\": \"36007cf4-0c76-424c-90f2-ea4f9359c1f2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0268b5ea-f447-4a57-abc0-af26459bf7e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 72.021484375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3050985634326935,\n          \"Height\": 0.042762547731399536,\n          \"Left\": 0.5758323669433594,\n          \"Top\": 0.40645503997802734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758323669433594,\n            \"Y\": 0.40645503997802734\n          },\n          {\n            \"X\": 0.8809226155281067,\n            \"Y\": 0.40660780668258667\n          },\n          {\n            \"X\": 0.8809309005737305,\n            \"Y\": 0.4492175877094269\n          },\n          {\n            \"X\": 0.5758355259895325,\n            \"Y\": 0.4490661025047302\n          }\n        ]\n      },\n      \"Id\": \"fd9fcb9e-c046-4acf-9a44-a7a838a39edd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f85027f9-3ae1-441d-b6df-de6bf5386f1b\",\n            \"82ab36aa-44b9-4c2d-ab58-866fbac778df\",\n            \"cf6d4610-b04a-423d-afe6-bb8660589b40\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 62.98828125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2979198396205902,\n          \"Height\": 0.042721714824438095,\n          \"Left\": 0.575558602809906,\n          \"Top\": 0.4721502363681793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.575558602809906,\n            \"Y\": 0.4721502363681793\n          },\n          {\n            \"X\": 0.8734702467918396,\n            \"Y\": 0.4722974896430969\n          },\n          {\n            \"X\": 0.8734784126281738,\n            \"Y\": 0.5148719549179077\n          },\n          {\n            \"X\": 0.5755617618560791,\n            \"Y\": 0.5147259831428528\n          }\n        ]\n      },\n      \"Id\": \"1f2fb108-fbc6-44ab-abff-661770bbd54e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"29476913-c5c0-4042-8919-8753c9bb270d\",\n            \"bfadbcba-2c66-4731-b8cf-3ffceae99f0b\",\n            \"a5451587-7bbd-43c7-b6a0-2bdc2433f973\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 42.724609375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15482279658317566,\n          \"Height\": 0.01946660876274109,\n          \"Left\": 0.7813716530799866,\n          \"Top\": 0.7087773084640503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7813716530799866,\n            \"Y\": 0.7087773084640503\n          },\n          {\n            \"X\": 0.9361902475357056,\n            \"Y\": 0.7088501453399658\n          },\n          {\n            \"X\": 0.9361944198608398,\n            \"Y\": 0.728243887424469\n          },\n          {\n            \"X\": 0.7813746333122253,\n            \"Y\": 0.7281712889671326\n          }\n        ]\n      },\n      \"Id\": \"47c79739-a555-4ea3-930b-2029c409d8db\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"97e1d70f-74ae-4e28-a9a7-a5e664d46fd2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 62.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15301184356212616,\n          \"Height\": 0.0420328713953495,\n          \"Left\": 0.15558114647865295,\n          \"Top\": 0.7286847233772278\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15558496117591858,\n            \"Y\": 0.7286847233772278\n          },\n          {\n            \"X\": 0.3085929751396179,\n            \"Y\": 0.7287564277648926\n          },\n          {\n            \"X\": 0.30859169363975525,\n            \"Y\": 0.7707175612449646\n          },\n          {\n            \"X\": 0.15558114647865295,\n            \"Y\": 0.7706465125083923\n          }\n        ]\n      },\n      \"Id\": \"90847e61-74f9-44b5-933d-a84127917584\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f63299d2-3248-411f-ad3a-f34b38180089\",\n            \"629127ef-f1e8-428e-b9ea-3b0fb9307692\",\n            \"cec9d01f-6ad4-4c8e-b6ee-b9d533d2dabb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 75.830078125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01232676487416029,\n          \"Height\": 0.12010343372821808,\n          \"Left\": 0.9756627082824707,\n          \"Top\": 0.4477330148220062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9756627082824707,\n            \"Y\": 0.4477330148220062\n          },\n          {\n            \"X\": 0.9879610538482666,\n            \"Y\": 0.4477391242980957\n          },\n          {\n            \"X\": 0.9879894852638245,\n            \"Y\": 0.5678364634513855\n          },\n          {\n            \"X\": 0.9756906032562256,\n            \"Y\": 0.5678304433822632\n          }\n        ]\n      },\n      \"Id\": \"fe64b72f-1b8a-435b-91d7-e1ba25a969cc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d9f24cd-ca61-45db-a0f4-8b5245380d33\",\n            \"eac273af-8047-459c-9aef-d6fb04e950fa\",\n            \"33d808bf-97a0-4d56-beb7-cb4536887b09\",\n            \"1f0a459f-6c1d-4f67-96d8-0e6b25c38411\",\n            \"336c849a-af91-4726-8e4f-60bc193d0d30\",\n            \"2512b71b-12d4-4059-bc24-44aa813bc258\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 66.650390625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26349085569381714,\n          \"Height\": 0.04343008995056152,\n          \"Left\": 0.576890230178833,\n          \"Top\": 0.7281169295310974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576890230178833,\n            \"Y\": 0.7281169295310974\n          },\n          {\n            \"X\": 0.8403733968734741,\n            \"Y\": 0.728240430355072\n          },\n          {\n            \"X\": 0.8403810858726501,\n            \"Y\": 0.7715470194816589\n          },\n          {\n            \"X\": 0.5768935084342957,\n            \"Y\": 0.7714245915412903\n          }\n        ]\n      },\n      \"Id\": \"59d24df3-c22d-4664-87f7-e6d841f50d7a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"16729e33-ffce-42af-a783-3dacf09254f3\",\n            \"39c2a7b1-5509-4559-bad6-57ab923cd0df\",\n            \"3db6c475-e7aa-4d9c-b4c7-b766b9f9c36b\",\n            \"6dc9ad62-a35b-4951-bba1-489a955efdc3\",\n            \"4008e78e-dbc0-4dff-a925-3703547f1798\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 66.9921875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07004033774137497,\n          \"Height\": 0.01932099461555481,\n          \"Left\": 0.052512288093566895,\n          \"Top\": 0.8006240129470825\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05251482501626015,\n            \"Y\": 0.8006240129470825\n          },\n          {\n            \"X\": 0.12255262583494186,\n            \"Y\": 0.8006563186645508\n          },\n          {\n            \"X\": 0.12255062162876129,\n            \"Y\": 0.8199449777603149\n          },\n          {\n            \"X\": 0.052512288093566895,\n            \"Y\": 0.8199127912521362\n          }\n        ]\n      },\n      \"Id\": \"a37631da-191c-4a59-92f9-2c35ca6b24b7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"089651e5-a6c5-40da-b7fd-bf3ec4af213c\",\n            \"a954e332-9b8a-43d4-a53e-a06a7a5c4393\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_SECTION_HEADER\",\n      \"Confidence\": 37.20703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11000292748212814,\n          \"Height\": 0.012110373005270958,\n          \"Left\": 0.1554965376853943,\n          \"Top\": 0.8107413053512573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15549764037132263,\n            \"Y\": 0.8107413053512573\n          },\n          {\n            \"X\": 0.265499472618103,\n            \"Y\": 0.8107920289039612\n          },\n          {\n            \"X\": 0.26549890637397766,\n            \"Y\": 0.8228517174720764\n          },\n          {\n            \"X\": 0.1554965376853943,\n            \"Y\": 0.8228011727333069\n          }\n        ]\n      },\n      \"Id\": \"4d6d5c60-dada-44cc-bb97-1e34000098be\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"76ef3d37-2642-4870-8dab-9f65b66eae5d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 57.080078125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08307094871997833,\n          \"Height\": 0.00962622556835413,\n          \"Left\": 0.052255064249038696,\n          \"Top\": 0.8289413452148438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052256327122449875,\n            \"Y\": 0.8289413452148438\n          },\n          {\n            \"X\": 0.13532601296901703,\n            \"Y\": 0.8289794325828552\n          },\n          {\n            \"X\": 0.13532507419586182,\n            \"Y\": 0.8385675549507141\n          },\n          {\n            \"X\": 0.052255064249038696,\n            \"Y\": 0.8385295271873474\n          }\n        ]\n      },\n      \"Id\": \"c852cb2e-3e8d-4d27-9979-4b0a3e9f142a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"879ae886-b2c5-4a5f-82ca-7faf239349f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 26.7822265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7939739227294922,\n          \"Height\": 0.08956307172775269,\n          \"Left\": 0.1550760567188263,\n          \"Top\": 0.8307468891143799\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15508419275283813,\n            \"Y\": 0.8307468891143799\n          },\n          {\n            \"X\": 0.9490302205085754,\n            \"Y\": 0.8311111330986023\n          },\n          {\n            \"X\": 0.9490500092506409,\n            \"Y\": 0.9203099608421326\n          },\n          {\n            \"X\": 0.1550760567188263,\n            \"Y\": 0.9199528098106384\n          }\n        ]\n      },\n      \"Id\": \"e45a5b00-b4fc-4a5b-8712-b1aca2c14c3d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a3369146-3704-4a5e-9c84-4fd2eff17c18\",\n            \"4d163d55-43bf-41c3-9438-81f8e82a77ac\",\n            \"9fe13ec7-a2c7-4883-b93d-134b394f182c\",\n            \"f78e7f41-37f1-4e7b-9946-bdca1840bf62\",\n            \"68dc8f75-4b75-4bcc-b400-41b074c3c960\",\n            \"2dd17992-eade-49fa-bf3b-a9d4014a2845\",\n            \"5b7715a5-6d7f-4264-b10c-e55eb5c39bbb\",\n            \"5a903401-e19f-4385-9c04-023e723397b6\",\n            \"7fce2a01-247e-45a2-926d-9f7fbf20a301\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 69.189453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08910240978002548,\n          \"Height\": 0.022834740579128265,\n          \"Left\": 0.05238756909966469,\n          \"Top\": 0.8988009691238403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05239057168364525,\n            \"Y\": 0.8988009691238403\n          },\n          {\n            \"X\": 0.14148998260498047,\n            \"Y\": 0.8988412618637085\n          },\n          {\n            \"X\": 0.14148777723312378,\n            \"Y\": 0.9216357469558716\n          },\n          {\n            \"X\": 0.05238756909966469,\n            \"Y\": 0.9215956330299377\n          }\n        ]\n      },\n      \"Id\": \"a51982fe-724a-4f1c-9968-862b802b6b60\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52fb4d37-a881-489a-b16c-3151dd31a196\",\n            \"fe99efcd-232b-45fc-9546-3a50f679d53e\",\n            \"10f867d9-bd8d-4813-a70e-73f0287267da\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_FIGURE\",\n      \"Confidence\": 25.390625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018447184935212135,\n          \"Height\": 0.0076850117184221745,\n          \"Left\": 0.4943925142288208,\n          \"Top\": 0.9771877527236938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4943925142288208,\n            \"Y\": 0.9771877527236938\n          },\n          {\n            \"X\": 0.5128393173217773,\n            \"Y\": 0.9771959781646729\n          },\n          {\n            \"X\": 0.5128397345542908,\n            \"Y\": 0.9848727583885193\n          },\n          {\n            \"X\": 0.49439284205436707,\n            \"Y\": 0.9848645925521851\n          }\n        ]\n      },\n      \"Id\": \"f21d9e79-965f-4d0a-9047-5a42e5e36ef7\"\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 41.30859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4466712176799774,\n          \"Height\": 0.013302411884069443,\n          \"Left\": 0.23862919211387634,\n          \"Top\": 0.9569131135940552\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23862995207309723,\n            \"Y\": 0.9569131135940552\n          },\n          {\n            \"X\": 0.6852988600730896,\n            \"Y\": 0.9571124315261841\n          },\n          {\n            \"X\": 0.6853004097938538,\n            \"Y\": 0.9702155590057373\n          },\n          {\n            \"X\": 0.23862919211387634,\n            \"Y\": 0.9700167775154114\n          }\n        ]\n      },\n      \"Id\": \"03aa3bb7-206d-4630-bbb6-bd227da43d9d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7a34c8c8-25c6-4969-9827-0d4016cf8691\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LAYOUT_TEXT\",\n      \"Confidence\": 27.8564453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4536792039871216,\n          \"Height\": 0.009257529862225056,\n          \"Left\": 0.04399150609970093,\n          \"Top\": 0.9754505157470703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04399272799491882,\n            \"Y\": 0.9754505157470703\n          },\n          {\n            \"X\": 0.49767032265663147,\n            \"Y\": 0.9756521582603455\n          },\n          {\n            \"X\": 0.4976707100868225,\n            \"Y\": 0.9847080707550049\n          },\n          {\n            \"X\": 0.04399150609970093,\n            \"Y\": 0.9845068454742432\n          }\n        ]\n      },\n      \"Id\": \"8215da49-cd4e-44a3-b368-9152014e2544\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e933676f-aeb0-45d8-9e71-30b081d4c2d6\"\n          ]\n        }\n      ]\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/table-example-response.json",
    "content": "{\n  \"Comment\": \"AnalyzeDocument response for sample table with merged cells shown on Textract Developer Guide: https://docs.aws.amazon.com/textract/latest/dg/images/tableexample.png as per https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html\",\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 0.9961240291595459,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 3.147000699524113e-17,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"54caece3-b193-4fbf-85aa-dcb493c896fc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"73d213b6-81bf-4d1b-90d8-98ea34d8cef4\",\n            \"a69bff93-4f37-49c7-8cb4-1e5c412e19e9\",\n            \"8d901882-327c-4d4d-b0dd-1d504ea3b630\",\n            \"044de8d7-b76d-4823-bd78-ec15e1ca2d79\",\n            \"86c6df58-aa5e-468c-8618-a1871fdfb0f6\",\n            \"b8f884ef-0afb-486d-884d-041d512af7ad\",\n            \"e57d403a-28ba-47f5-a209-9c8e73511518\",\n            \"1b1f6a1e-0d83-466e-82ac-c51a817d8af6\",\n            \"98aa107b-0857-47a1-ac27-dff4fbf2dd7a\",\n            \"ee3a2421-51e3-4bd2-8239-6cdb120380ed\",\n            \"301085d8-ef06-4280-8717-d5a399056fcf\",\n            \"1275ae6f-0894-4d9d-999a-d165eab2f8de\",\n            \"d05968fe-0dd8-44f1-bdf4-1a5f59b3c1df\",\n            \"7d539919-9a24-47d3-85e9-5a0f46a17783\",\n            \"89a19d7a-6caf-421c-a5c1-7bdc5f9b3cce\",\n            \"4f2a0828-3199-485e-969b-b82554b224bf\",\n            \"9b7027dc-b8f1-4383-a8ad-47ac345eac39\",\n            \"ed4e5e02-1cd3-4df1-8a79-d6553163b263\",\n            \"85b9f2f0-d700-4726-891e-dbe7255a9bb1\",\n            \"3802f5ac-6156-424a-98c5-26f29b527597\",\n            \"12325938-7e63-4524-97fc-aa792a9c05cd\",\n            \"d10ec11a-5ef2-4f04-a736-e4476fd8c0da\",\n            \"64d7850d-a183-4ed8-92eb-ebea9765f4ba\"\n          ]\n        }\n      ],\n      \"childText\": \"Date Description Credit Debit Balance Previous Balance 11,000 2022-01-01 Payment - Credit Card 1,000 10,000 Payment - Utility 40 9,960 2022-01-02 Deposit 1,000 10,960 Ending Balance 10,960 \",\n      \"SearchKey\": \"Date Description Credit Debit Balance Previous Balance 11,000 2022-01-01 Payment - Credit Card 1,000 10,000 Payment - Utility 40 9,960 2022-01-02 Deposit 1,000 10,960 Ending Balance 10,960 \",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.25501251220703,\n      \"Text\": \"Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0646199956536293,\n          \"Height\": 0.10958419740200043,\n          \"Left\": 0.007492950651794672,\n          \"Top\": 0.0423106923699379\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.007492950651794672,\n            \"Y\": 0.0423106923699379\n          },\n          {\n            \"X\": 0.07211294770240784,\n            \"Y\": 0.0423106923699379\n          },\n          {\n            \"X\": 0.07211294770240784,\n            \"Y\": 0.15189488232135773\n          },\n          {\n            \"X\": 0.007492950651794672,\n            \"Y\": 0.15189488232135773\n          }\n        ]\n      },\n      \"Id\": \"73d213b6-81bf-4d1b-90d8-98ea34d8cef4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99833c46-64be-4f9c-97ec-0088a380fdf5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Date \",\n      \"SearchKey\": \"Date\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.90462493896484,\n      \"Text\": \"Description\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14861120283603668,\n          \"Height\": 0.1318449079990387,\n          \"Left\": 0.18165075778961182,\n          \"Top\": 0.04017564654350281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18165075778961182,\n            \"Y\": 0.04017564654350281\n          },\n          {\n            \"X\": 0.3302619457244873,\n            \"Y\": 0.04017564654350281\n          },\n          {\n            \"X\": 0.3302619457244873,\n            \"Y\": 0.1720205545425415\n          },\n          {\n            \"X\": 0.18165075778961182,\n            \"Y\": 0.1720205545425415\n          }\n        ]\n      },\n      \"Id\": \"a69bff93-4f37-49c7-8cb4-1e5c412e19e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3cb5c586-819d-40b4-93fa-c24dc21eda68\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Description \",\n      \"SearchKey\": \"Description\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74797821044922,\n      \"Text\": \"Credit\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07971182465553284,\n          \"Height\": 0.11044970899820328,\n          \"Left\": 0.4884178936481476,\n          \"Top\": 0.04016965255141258\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4884178936481476,\n            \"Y\": 0.04016965255141258\n          },\n          {\n            \"X\": 0.5681297183036804,\n            \"Y\": 0.04016965255141258\n          },\n          {\n            \"X\": 0.5681297183036804,\n            \"Y\": 0.15061935782432556\n          },\n          {\n            \"X\": 0.4884178936481476,\n            \"Y\": 0.15061935782432556\n          }\n        ]\n      },\n      \"Id\": \"8d901882-327c-4d4d-b0dd-1d504ea3b630\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a409d358-62e9-4d4c-a5d9-308ffa971711\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Credit \",\n      \"SearchKey\": \"Credit\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95420837402344,\n      \"Text\": \"Debit\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07503701001405716,\n          \"Height\": 0.11373177170753479,\n          \"Left\": 0.659644603729248,\n          \"Top\": 0.0370556004345417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.659644603729248,\n            \"Y\": 0.0370556004345417\n          },\n          {\n            \"X\": 0.7346816062927246,\n            \"Y\": 0.0370556004345417\n          },\n          {\n            \"X\": 0.7346816062927246,\n            \"Y\": 0.1507873684167862\n          },\n          {\n            \"X\": 0.659644603729248,\n            \"Y\": 0.1507873684167862\n          }\n        ]\n      },\n      \"Id\": \"044de8d7-b76d-4823-bd78-ec15e1ca2d79\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08876029-7a17-461a-806b-4d37826c8a5e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Debit \",\n      \"SearchKey\": \"Debit\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.56170654296875,\n      \"Text\": \"Balance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10719013959169388,\n          \"Height\": 0.1118057519197464,\n          \"Left\": 0.8328489065170288,\n          \"Top\": 0.03950338438153267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8328489065170288,\n            \"Y\": 0.03950338438153267\n          },\n          {\n            \"X\": 0.9400390386581421,\n            \"Y\": 0.03950338438153267\n          },\n          {\n            \"X\": 0.9400390386581421,\n            \"Y\": 0.15130913257598877\n          },\n          {\n            \"X\": 0.8328489065170288,\n            \"Y\": 0.15130913257598877\n          }\n        ]\n      },\n      \"Id\": \"86c6df58-aa5e-468c-8618-a1871fdfb0f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ab0255ad-3321-4a2f-97b9-0c93045a8a6a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Balance \",\n      \"SearchKey\": \"Balance\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75946807861328,\n      \"Text\": \"Previous Balance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22526483237743378,\n          \"Height\": 0.11155137419700623,\n          \"Left\": 0.008322681300342083,\n          \"Top\": 0.2036375105381012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.008322681300342083,\n            \"Y\": 0.2036375105381012\n          },\n          {\n            \"X\": 0.23358751833438873,\n            \"Y\": 0.2036375105381012\n          },\n          {\n            \"X\": 0.23358751833438873,\n            \"Y\": 0.3151888847351074\n          },\n          {\n            \"X\": 0.008322681300342083,\n            \"Y\": 0.3151888847351074\n          }\n        ]\n      },\n      \"Id\": \"b8f884ef-0afb-486d-884d-041d512af7ad\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a9d22d1e-0de8-4abd-9449-1a142f732292\",\n            \"93c1a11f-98da-4b6c-bce9-5ec758b916f6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Previous Balance \",\n      \"SearchKey\": \"Previous Balance\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83648681640625,\n      \"Text\": \"11,000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09046358615159988,\n          \"Height\": 0.11936992406845093,\n          \"Left\": 0.9059730172157288,\n          \"Top\": 0.20589624345302582\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9059730172157288,\n            \"Y\": 0.20589624345302582\n          },\n          {\n            \"X\": 0.996436595916748,\n            \"Y\": 0.20589624345302582\n          },\n          {\n            \"X\": 0.996436595916748,\n            \"Y\": 0.32526615262031555\n          },\n          {\n            \"X\": 0.9059730172157288,\n            \"Y\": 0.32526615262031555\n          }\n        ]\n      },\n      \"Id\": \"e57d403a-28ba-47f5-a209-9c8e73511518\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ba1e864-5894-4ffa-b55b-434a2800bd4d\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"11,000 \",\n      \"SearchKey\": \"11,000\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.20552062988281,\n      \"Text\": \"2022-01-01\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15107661485671997,\n          \"Height\": 0.10968174040317535,\n          \"Left\": 0.008350417949259281,\n          \"Top\": 0.44644373655319214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.008350417949259281,\n            \"Y\": 0.44644373655319214\n          },\n          {\n            \"X\": 0.15942703187465668,\n            \"Y\": 0.44644373655319214\n          },\n          {\n            \"X\": 0.15942703187465668,\n            \"Y\": 0.5561255216598511\n          },\n          {\n            \"X\": 0.008350417949259281,\n            \"Y\": 0.5561255216598511\n          }\n        ]\n      },\n      \"Id\": \"1b1f6a1e-0d83-466e-82ac-c51a817d8af6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5e67080-ec61-495a-a3eb-af96eae059a5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2022-01-01 \",\n      \"SearchKey\": \"2022-01-01\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.93183898925781,\n      \"Text\": \"Payment - Credit Card\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28792068362236023,\n          \"Height\": 0.1338205486536026,\n          \"Left\": 0.1817513257265091,\n          \"Top\": 0.3732408285140991\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1817513257265091,\n            \"Y\": 0.3732408285140991\n          },\n          {\n            \"X\": 0.46967199444770813,\n            \"Y\": 0.3732408285140991\n          },\n          {\n            \"X\": 0.46967199444770813,\n            \"Y\": 0.5070613622665405\n          },\n          {\n            \"X\": 0.1817513257265091,\n            \"Y\": 0.5070613622665405\n          }\n        ]\n      },\n      \"Id\": \"98aa107b-0857-47a1-ac27-dff4fbf2dd7a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ddd786ab-780c-4b98-916c-68b6839f0d3e\",\n            \"30170938-5b91-4e4f-8e04-fad6c3e3835a\",\n            \"cb85a6a9-ea0d-4d9c-bb96-527be78bacc2\",\n            \"628906a1-5c6b-4e1b-bf33-dc6c9738e0f0\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Payment - Credit Card \",\n      \"SearchKey\": \"Payment - Credit Card\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87955474853516,\n      \"Text\": \"1,000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07765738666057587,\n          \"Height\": 0.12231578677892685,\n          \"Left\": 0.7477143406867981,\n          \"Top\": 0.3763122260570526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7477143406867981,\n            \"Y\": 0.3763122260570526\n          },\n          {\n            \"X\": 0.8253717422485352,\n            \"Y\": 0.3763122260570526\n          },\n          {\n            \"X\": 0.8253717422485352,\n            \"Y\": 0.49862802028656006\n          },\n          {\n            \"X\": 0.7477143406867981,\n            \"Y\": 0.49862802028656006\n          }\n        ]\n      },\n      \"Id\": \"ee3a2421-51e3-4bd2-8239-6cdb120380ed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5a15050c-92b4-434e-9ea7-44fb94bd6504\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1,000 \",\n      \"SearchKey\": \"1,000\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.26024627685547,\n      \"Text\": \"10,000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08882986009120941,\n          \"Height\": 0.11910171061754227,\n          \"Left\": 0.9064883589744568,\n          \"Top\": 0.3776545524597168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9064883589744568,\n            \"Y\": 0.3776545524597168\n          },\n          {\n            \"X\": 0.9953182339668274,\n            \"Y\": 0.3776545524597168\n          },\n          {\n            \"X\": 0.9953182339668274,\n            \"Y\": 0.49675625562667847\n          },\n          {\n            \"X\": 0.9064883589744568,\n            \"Y\": 0.49675625562667847\n          }\n        ]\n      },\n      \"Id\": \"301085d8-ef06-4280-8717-d5a399056fcf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"04fef24a-2a92-4e92-ac01-e3cc0a6d4322\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"10,000 \",\n      \"SearchKey\": \"10,000\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.31253051757812,\n      \"Text\": \"Payment - Utility\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22444377839565277,\n          \"Height\": 0.13253316283226013,\n          \"Left\": 0.18156006932258606,\n          \"Top\": 0.5372239947319031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18156006932258606,\n            \"Y\": 0.5372239947319031\n          },\n          {\n            \"X\": 0.4060038626194,\n            \"Y\": 0.5372239947319031\n          },\n          {\n            \"X\": 0.4060038626194,\n            \"Y\": 0.6697571873664856\n          },\n          {\n            \"X\": 0.18156006932258606,\n            \"Y\": 0.6697571873664856\n          }\n        ]\n      },\n      \"Id\": \"1275ae6f-0894-4d9d-999a-d165eab2f8de\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ab3ce593-5c2f-44ae-bbc2-6c71e76145a9\",\n            \"57800a94-05f8-4a4e-8c3d-7488f0b1c800\",\n            \"443bc6fc-1ca6-48a5-805b-2299f57cb16a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Payment - Utility \",\n      \"SearchKey\": \"Payment - Utility\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93203735351562,\n      \"Text\": \"40\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03687301650643349,\n          \"Height\": 0.10903587937355042,\n          \"Left\": 0.7884836196899414,\n          \"Top\": 0.5411801338195801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7884836196899414,\n            \"Y\": 0.5411801338195801\n          },\n          {\n            \"X\": 0.825356662273407,\n            \"Y\": 0.5411801338195801\n          },\n          {\n            \"X\": 0.825356662273407,\n            \"Y\": 0.6502160429954529\n          },\n          {\n            \"X\": 0.7884836196899414,\n            \"Y\": 0.6502160429954529\n          }\n        ]\n      },\n      \"Id\": \"d05968fe-0dd8-44f1-bdf4-1a5f59b3c1df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34f542dd-e761-41dd-ac15-e25856a4bfbe\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"40 \",\n      \"SearchKey\": \"40\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79080200195312,\n      \"Text\": \"9,960\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07558973133563995,\n          \"Height\": 0.11971915513277054,\n          \"Left\": 0.920768141746521,\n          \"Top\": 0.5412200093269348\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.920768141746521,\n            \"Y\": 0.5412200093269348\n          },\n          {\n            \"X\": 0.9963579177856445,\n            \"Y\": 0.5412200093269348\n          },\n          {\n            \"X\": 0.9963579177856445,\n            \"Y\": 0.6609391570091248\n          },\n          {\n            \"X\": 0.920768141746521,\n            \"Y\": 0.6609391570091248\n          }\n        ]\n      },\n      \"Id\": \"7d539919-9a24-47d3-85e9-5a0f46a17783\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a05c065a-be9c-46e5-81ed-2cb1ce94f5d5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"9,960 \",\n      \"SearchKey\": \"9,960\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.94593048095703,\n      \"Text\": \"2022-01-02\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15326209366321564,\n          \"Height\": 0.10848242044448853,\n          \"Left\": 0.007025319617241621,\n          \"Top\": 0.7034724950790405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.007025319617241621,\n            \"Y\": 0.7034724950790405\n          },\n          {\n            \"X\": 0.16028741002082825,\n            \"Y\": 0.7034724950790405\n          },\n          {\n            \"X\": 0.16028741002082825,\n            \"Y\": 0.811954915523529\n          },\n          {\n            \"X\": 0.007025319617241621,\n            \"Y\": 0.811954915523529\n          }\n        ]\n      },\n      \"Id\": \"89a19d7a-6caf-421c-a5c1-7bdc5f9b3cce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5d2e14e3-91a2-4b5a-b5b9-e4a094e42563\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2022-01-02 \",\n      \"SearchKey\": \"2022-01-02\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82633972167969,\n      \"Text\": \"Deposit\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10248532146215439,\n          \"Height\": 0.12786711752414703,\n          \"Left\": 0.1815950870513916,\n          \"Top\": 0.7042203545570374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1815950870513916,\n            \"Y\": 0.7042203545570374\n          },\n          {\n            \"X\": 0.2840804159641266,\n            \"Y\": 0.7042203545570374\n          },\n          {\n            \"X\": 0.2840804159641266,\n            \"Y\": 0.832087516784668\n          },\n          {\n            \"X\": 0.1815950870513916,\n            \"Y\": 0.832087516784668\n          }\n        ]\n      },\n      \"Id\": \"4f2a0828-3199-485e-969b-b82554b224bf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e6fcc0b-330c-4722-8c6c-b64d9f4467b6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Deposit \",\n      \"SearchKey\": \"Deposit\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92496490478516,\n      \"Text\": \"1,000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0752551332116127,\n          \"Height\": 0.11992958933115005,\n          \"Left\": 0.5768331289291382,\n          \"Top\": 0.7045946717262268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768331289291382,\n            \"Y\": 0.7045946717262268\n          },\n          {\n            \"X\": 0.6520882248878479,\n            \"Y\": 0.7045946717262268\n          },\n          {\n            \"X\": 0.6520882248878479,\n            \"Y\": 0.8245242834091187\n          },\n          {\n            \"X\": 0.5768331289291382,\n            \"Y\": 0.8245242834091187\n          }\n        ]\n      },\n      \"Id\": \"9b7027dc-b8f1-4383-a8ad-47ac345eac39\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1998f856-968b-4bb0-b4c1-772dfa93d5a2\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1,000 \",\n      \"SearchKey\": \"1,000\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8183822631836,\n      \"Text\": \"10,960\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09058419615030289,\n          \"Height\": 0.11973630636930466,\n          \"Left\": 0.9061859250068665,\n          \"Top\": 0.7053331732749939\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9061859250068665,\n            \"Y\": 0.7053331732749939\n          },\n          {\n            \"X\": 0.9967701435089111,\n            \"Y\": 0.7053331732749939\n          },\n          {\n            \"X\": 0.9967701435089111,\n            \"Y\": 0.8250694274902344\n          },\n          {\n            \"X\": 0.9061859250068665,\n            \"Y\": 0.8250694274902344\n          }\n        ]\n      },\n      \"Id\": \"ed4e5e02-1cd3-4df1-8a79-d6553163b263\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bfb41712-6116-4d0c-9b4e-ea24790974df\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"10,960 \",\n      \"SearchKey\": \"10,960\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97083282470703,\n      \"Text\": \"Ending Balance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20146530866622925,\n          \"Height\": 0.1239800825715065,\n          \"Left\": 0.00877639465034008,\n          \"Top\": 0.8721439242362976\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00877639465034008,\n            \"Y\": 0.8721439242362976\n          },\n          {\n            \"X\": 0.21024170517921448,\n            \"Y\": 0.8721439242362976\n          },\n          {\n            \"X\": 0.21024170517921448,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0.00877639465034008,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"85b9f2f0-d700-4726-891e-dbe7255a9bb1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60cc53b4-d4fd-4535-83d1-c8efe74ef981\",\n            \"7a91d3e9-5087-4437-9f9c-1190a586abde\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Ending Balance \",\n      \"SearchKey\": \"Ending Balance\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74910736083984,\n      \"Text\": \"10,960\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0895971804857254,\n          \"Height\": 0.12015976756811142,\n          \"Left\": 0.906459629535675,\n          \"Top\": 0.8752397894859314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.906459629535675,\n            \"Y\": 0.8752397894859314\n          },\n          {\n            \"X\": 0.9960567951202393,\n            \"Y\": 0.8752397894859314\n          },\n          {\n            \"X\": 0.9960567951202393,\n            \"Y\": 0.995399534702301\n          },\n          {\n            \"X\": 0.906459629535675,\n            \"Y\": 0.995399534702301\n          }\n        ]\n      },\n      \"Id\": \"3802f5ac-6156-424a-98c5-26f29b527597\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"041bedba-a32c-4511-af69-636fb2f6c12d\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"10,960 \",\n      \"SearchKey\": \"10,960\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25501251220703,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0646199956536293,\n          \"Height\": 0.10958419740200043,\n          \"Left\": 0.007492950651794672,\n          \"Top\": 0.0423106923699379\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.007492950651794672,\n            \"Y\": 0.0423106923699379\n          },\n          {\n            \"X\": 0.07211294770240784,\n            \"Y\": 0.0423106923699379\n          },\n          {\n            \"X\": 0.07211294770240784,\n            \"Y\": 0.15189488232135773\n          },\n          {\n            \"X\": 0.007492950651794672,\n            \"Y\": 0.15189488232135773\n          }\n        ]\n      },\n      \"Id\": \"99833c46-64be-4f9c-97ec-0088a380fdf5\",\n      \"Page\": 1,\n      \"SearchKey\": \"Date\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.90462493896484,\n      \"Text\": \"Description\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14861120283603668,\n          \"Height\": 0.1318449079990387,\n          \"Left\": 0.18165075778961182,\n          \"Top\": 0.04017564654350281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18165075778961182,\n            \"Y\": 0.04017564654350281\n          },\n          {\n            \"X\": 0.3302619457244873,\n            \"Y\": 0.04017564654350281\n          },\n          {\n            \"X\": 0.3302619457244873,\n            \"Y\": 0.1720205545425415\n          },\n          {\n            \"X\": 0.18165075778961182,\n            \"Y\": 0.1720205545425415\n          }\n        ]\n      },\n      \"Id\": \"3cb5c586-819d-40b4-93fa-c24dc21eda68\",\n      \"Page\": 1,\n      \"SearchKey\": \"Description\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74797821044922,\n      \"Text\": \"Credit\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07971182465553284,\n          \"Height\": 0.11044970899820328,\n          \"Left\": 0.4884178936481476,\n          \"Top\": 0.04016965255141258\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4884178936481476,\n            \"Y\": 0.04016965255141258\n          },\n          {\n            \"X\": 0.5681297183036804,\n            \"Y\": 0.04016965255141258\n          },\n          {\n            \"X\": 0.5681297183036804,\n            \"Y\": 0.15061935782432556\n          },\n          {\n            \"X\": 0.4884178936481476,\n            \"Y\": 0.15061935782432556\n          }\n        ]\n      },\n      \"Id\": \"a409d358-62e9-4d4c-a5d9-308ffa971711\",\n      \"Page\": 1,\n      \"SearchKey\": \"Credit\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95420837402344,\n      \"Text\": \"Debit\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07503701001405716,\n          \"Height\": 0.11373177170753479,\n          \"Left\": 0.659644603729248,\n          \"Top\": 0.0370556004345417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.659644603729248,\n            \"Y\": 0.0370556004345417\n          },\n          {\n            \"X\": 0.7346816062927246,\n            \"Y\": 0.0370556004345417\n          },\n          {\n            \"X\": 0.7346816062927246,\n            \"Y\": 0.1507873684167862\n          },\n          {\n            \"X\": 0.659644603729248,\n            \"Y\": 0.1507873684167862\n          }\n        ]\n      },\n      \"Id\": \"08876029-7a17-461a-806b-4d37826c8a5e\",\n      \"Page\": 1,\n      \"SearchKey\": \"Debit\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56170654296875,\n      \"Text\": \"Balance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10719013959169388,\n          \"Height\": 0.1118057519197464,\n          \"Left\": 0.8328489065170288,\n          \"Top\": 0.03950338438153267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8328489065170288,\n            \"Y\": 0.03950338438153267\n          },\n          {\n            \"X\": 0.9400390386581421,\n            \"Y\": 0.03950338438153267\n          },\n          {\n            \"X\": 0.9400390386581421,\n            \"Y\": 0.15130913257598877\n          },\n          {\n            \"X\": 0.8328489065170288,\n            \"Y\": 0.15130913257598877\n          }\n        ]\n      },\n      \"Id\": \"ab0255ad-3321-4a2f-97b9-0c93045a8a6a\",\n      \"Page\": 1,\n      \"SearchKey\": \"Balance\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84795379638672,\n      \"Text\": \"Previous\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11389730125665665,\n          \"Height\": 0.10976380109786987,\n          \"Left\": 0.008322681300342083,\n          \"Top\": 0.20451240241527557\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.008322681300342083,\n            \"Y\": 0.20451240241527557\n          },\n          {\n            \"X\": 0.122219979763031,\n            \"Y\": 0.20451240241527557\n          },\n          {\n            \"X\": 0.122219979763031,\n            \"Y\": 0.31427618861198425\n          },\n          {\n            \"X\": 0.008322681300342083,\n            \"Y\": 0.31427618861198425\n          }\n        ]\n      },\n      \"Id\": \"a9d22d1e-0de8-4abd-9449-1a142f732292\",\n      \"Page\": 1,\n      \"SearchKey\": \"Previous\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67097473144531,\n      \"Text\": \"Balance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10638974606990814,\n          \"Height\": 0.11155137419700623,\n          \"Left\": 0.1271977722644806,\n          \"Top\": 0.2036375105381012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1271977722644806,\n            \"Y\": 0.2036375105381012\n          },\n          {\n            \"X\": 0.23358751833438873,\n            \"Y\": 0.2036375105381012\n          },\n          {\n            \"X\": 0.23358751833438873,\n            \"Y\": 0.3151888847351074\n          },\n          {\n            \"X\": 0.1271977722644806,\n            \"Y\": 0.3151888847351074\n          }\n        ]\n      },\n      \"Id\": \"93c1a11f-98da-4b6c-bce9-5ec758b916f6\",\n      \"Page\": 1,\n      \"SearchKey\": \"Balance\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83648681640625,\n      \"Text\": \"11,000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09046358615159988,\n          \"Height\": 0.11936992406845093,\n          \"Left\": 0.9059730172157288,\n          \"Top\": 0.20589624345302582\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9059730172157288,\n            \"Y\": 0.20589624345302582\n          },\n          {\n            \"X\": 0.996436595916748,\n            \"Y\": 0.20589624345302582\n          },\n          {\n            \"X\": 0.996436595916748,\n            \"Y\": 0.32526615262031555\n          },\n          {\n            \"X\": 0.9059730172157288,\n            \"Y\": 0.32526615262031555\n          }\n        ]\n      },\n      \"Id\": \"9ba1e864-5894-4ffa-b55b-434a2800bd4d\",\n      \"Page\": 1,\n      \"SearchKey\": \"11,000\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20552062988281,\n      \"Text\": \"2022-01-01\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15107661485671997,\n          \"Height\": 0.10968174040317535,\n          \"Left\": 0.008350417949259281,\n          \"Top\": 0.44644373655319214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.008350417949259281,\n            \"Y\": 0.44644373655319214\n          },\n          {\n            \"X\": 0.15942703187465668,\n            \"Y\": 0.44644373655319214\n          },\n          {\n            \"X\": 0.15942703187465668,\n            \"Y\": 0.5561255216598511\n          },\n          {\n            \"X\": 0.008350417949259281,\n            \"Y\": 0.5561255216598511\n          }\n        ]\n      },\n      \"Id\": \"f5e67080-ec61-495a-a3eb-af96eae059a5\",\n      \"Page\": 1,\n      \"SearchKey\": \"2022-01-01\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.31878662109375,\n      \"Text\": \"Payment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11874155700206757,\n          \"Height\": 0.12888486683368683,\n          \"Left\": 0.1817513257265091,\n          \"Top\": 0.3781765103340149\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1817513257265091,\n            \"Y\": 0.3781765103340149\n          },\n          {\n            \"X\": 0.30049288272857666,\n            \"Y\": 0.3781765103340149\n          },\n          {\n            \"X\": 0.30049288272857666,\n            \"Y\": 0.5070613622665405\n          },\n          {\n            \"X\": 0.1817513257265091,\n            \"Y\": 0.5070613622665405\n          }\n        ]\n      },\n      \"Id\": \"ddd786ab-780c-4b98-916c-68b6839f0d3e\",\n      \"Page\": 1,\n      \"SearchKey\": \"Payment\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.10033416748047,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013524272479116917,\n          \"Height\": 0.03633265569806099,\n          \"Left\": 0.3024711310863495,\n          \"Top\": 0.4251404404640198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3024711310863495,\n            \"Y\": 0.4251404404640198\n          },\n          {\n            \"X\": 0.3159954249858856,\n            \"Y\": 0.4251404404640198\n          },\n          {\n            \"X\": 0.3159954249858856,\n            \"Y\": 0.46147310733795166\n          },\n          {\n            \"X\": 0.3024711310863495,\n            \"Y\": 0.46147310733795166\n          }\n        ]\n      },\n      \"Id\": \"30170938-5b91-4e4f-8e04-fad6c3e3835a\",\n      \"Page\": 1,\n      \"SearchKey\": \"-\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79851531982422,\n      \"Text\": \"Credit\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08024123311042786,\n          \"Height\": 0.11531900614500046,\n          \"Left\": 0.3226756155490875,\n          \"Top\": 0.37366706132888794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3226756155490875,\n            \"Y\": 0.37366706132888794\n          },\n          {\n            \"X\": 0.4029168486595154,\n            \"Y\": 0.37366706132888794\n          },\n          {\n            \"X\": 0.4029168486595154,\n            \"Y\": 0.488986074924469\n          },\n          {\n            \"X\": 0.3226756155490875,\n            \"Y\": 0.488986074924469\n          }\n        ]\n      },\n      \"Id\": \"cb85a6a9-ea0d-4d9c-bb96-527be78bacc2\",\n      \"Page\": 1,\n      \"SearchKey\": \"Credit\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50971221923828,\n      \"Text\": \"Card\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06346726417541504,\n          \"Height\": 0.11212027817964554,\n          \"Left\": 0.4062047302722931,\n          \"Top\": 0.3732408285140991\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4062047302722931,\n            \"Y\": 0.3732408285140991\n          },\n          {\n            \"X\": 0.46967199444770813,\n            \"Y\": 0.3732408285140991\n          },\n          {\n            \"X\": 0.46967199444770813,\n            \"Y\": 0.48536109924316406\n          },\n          {\n            \"X\": 0.4062047302722931,\n            \"Y\": 0.48536109924316406\n          }\n        ]\n      },\n      \"Id\": \"628906a1-5c6b-4e1b-bf33-dc6c9738e0f0\",\n      \"Page\": 1,\n      \"SearchKey\": \"Card\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87955474853516,\n      \"Text\": \"1,000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07765738666057587,\n          \"Height\": 0.12231578677892685,\n          \"Left\": 0.7477143406867981,\n          \"Top\": 0.3763122260570526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7477143406867981,\n            \"Y\": 0.3763122260570526\n          },\n          {\n            \"X\": 0.8253717422485352,\n            \"Y\": 0.3763122260570526\n          },\n          {\n            \"X\": 0.8253717422485352,\n            \"Y\": 0.49862802028656006\n          },\n          {\n            \"X\": 0.7477143406867981,\n            \"Y\": 0.49862802028656006\n          }\n        ]\n      },\n      \"Id\": \"5a15050c-92b4-434e-9ea7-44fb94bd6504\",\n      \"Page\": 1,\n      \"SearchKey\": \"1,000\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26024627685547,\n      \"Text\": \"10,000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08882986009120941,\n          \"Height\": 0.11910171061754227,\n          \"Left\": 0.9064883589744568,\n          \"Top\": 0.3776545524597168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9064883589744568,\n            \"Y\": 0.3776545524597168\n          },\n          {\n            \"X\": 0.9953182339668274,\n            \"Y\": 0.3776545524597168\n          },\n          {\n            \"X\": 0.9953182339668274,\n            \"Y\": 0.49675625562667847\n          },\n          {\n            \"X\": 0.9064883589744568,\n            \"Y\": 0.49675625562667847\n          }\n        ]\n      },\n      \"Id\": \"04fef24a-2a92-4e92-ac01-e3cc0a6d4322\",\n      \"Page\": 1,\n      \"SearchKey\": \"10,000\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.41656494140625,\n      \"Text\": \"Payment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11822935193777084,\n          \"Height\": 0.1299993246793747,\n          \"Left\": 0.18156006932258606,\n          \"Top\": 0.5397578477859497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18156006932258606,\n            \"Y\": 0.5397578477859497\n          },\n          {\n            \"X\": 0.2997894287109375,\n            \"Y\": 0.5397578477859497\n          },\n          {\n            \"X\": 0.2997894287109375,\n            \"Y\": 0.6697571873664856\n          },\n          {\n            \"X\": 0.18156006932258606,\n            \"Y\": 0.6697571873664856\n          }\n        ]\n      },\n      \"Id\": \"ab3ce593-5c2f-44ae-bbc2-6c71e76145a9\",\n      \"Page\": 1,\n      \"SearchKey\": \"Payment\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.54740142822266,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013257273472845554,\n          \"Height\": 0.03570899739861488,\n          \"Left\": 0.3026391267776489,\n          \"Top\": 0.5894522666931152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3026391267776489,\n            \"Y\": 0.5894522666931152\n          },\n          {\n            \"X\": 0.3158963918685913,\n            \"Y\": 0.5894522666931152\n          },\n          {\n            \"X\": 0.3158963918685913,\n            \"Y\": 0.6251612901687622\n          },\n          {\n            \"X\": 0.3026391267776489,\n            \"Y\": 0.6251612901687622\n          }\n        ]\n      },\n      \"Id\": \"57800a94-05f8-4a4e-8c3d-7488f0b1c800\",\n      \"Page\": 1,\n      \"SearchKey\": \"-\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9736099243164,\n      \"Text\": \"Utility\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08256396651268005,\n          \"Height\": 0.1323854923248291,\n          \"Left\": 0.32343989610671997,\n          \"Top\": 0.5372239947319031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32343989610671997,\n            \"Y\": 0.5372239947319031\n          },\n          {\n            \"X\": 0.4060038626194,\n            \"Y\": 0.5372239947319031\n          },\n          {\n            \"X\": 0.4060038626194,\n            \"Y\": 0.6696094870567322\n          },\n          {\n            \"X\": 0.32343989610671997,\n            \"Y\": 0.6696094870567322\n          }\n        ]\n      },\n      \"Id\": \"443bc6fc-1ca6-48a5-805b-2299f57cb16a\",\n      \"Page\": 1,\n      \"SearchKey\": \"Utility\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93203735351562,\n      \"Text\": \"40\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03687301650643349,\n          \"Height\": 0.10903587937355042,\n          \"Left\": 0.7884836196899414,\n          \"Top\": 0.5411801338195801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7884836196899414,\n            \"Y\": 0.5411801338195801\n          },\n          {\n            \"X\": 0.825356662273407,\n            \"Y\": 0.5411801338195801\n          },\n          {\n            \"X\": 0.825356662273407,\n            \"Y\": 0.6502160429954529\n          },\n          {\n            \"X\": 0.7884836196899414,\n            \"Y\": 0.6502160429954529\n          }\n        ]\n      },\n      \"Id\": \"34f542dd-e761-41dd-ac15-e25856a4bfbe\",\n      \"Page\": 1,\n      \"SearchKey\": \"40\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79080200195312,\n      \"Text\": \"9,960\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07558973133563995,\n          \"Height\": 0.11971915513277054,\n          \"Left\": 0.920768141746521,\n          \"Top\": 0.5412200093269348\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.920768141746521,\n            \"Y\": 0.5412200093269348\n          },\n          {\n            \"X\": 0.9963579177856445,\n            \"Y\": 0.5412200093269348\n          },\n          {\n            \"X\": 0.9963579177856445,\n            \"Y\": 0.6609391570091248\n          },\n          {\n            \"X\": 0.920768141746521,\n            \"Y\": 0.6609391570091248\n          }\n        ]\n      },\n      \"Id\": \"a05c065a-be9c-46e5-81ed-2cb1ce94f5d5\",\n      \"Page\": 1,\n      \"SearchKey\": \"9,960\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.94593048095703,\n      \"Text\": \"2022-01-02\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15326209366321564,\n          \"Height\": 0.10848242044448853,\n          \"Left\": 0.007025319617241621,\n          \"Top\": 0.7034724950790405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.007025319617241621,\n            \"Y\": 0.7034724950790405\n          },\n          {\n            \"X\": 0.16028741002082825,\n            \"Y\": 0.7034724950790405\n          },\n          {\n            \"X\": 0.16028741002082825,\n            \"Y\": 0.811954915523529\n          },\n          {\n            \"X\": 0.007025319617241621,\n            \"Y\": 0.811954915523529\n          }\n        ]\n      },\n      \"Id\": \"5d2e14e3-91a2-4b5a-b5b9-e4a094e42563\",\n      \"Page\": 1,\n      \"SearchKey\": \"2022-01-02\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82633972167969,\n      \"Text\": \"Deposit\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10248532146215439,\n          \"Height\": 0.12786711752414703,\n          \"Left\": 0.1815950870513916,\n          \"Top\": 0.7042203545570374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1815950870513916,\n            \"Y\": 0.7042203545570374\n          },\n          {\n            \"X\": 0.2840804159641266,\n            \"Y\": 0.7042203545570374\n          },\n          {\n            \"X\": 0.2840804159641266,\n            \"Y\": 0.832087516784668\n          },\n          {\n            \"X\": 0.1815950870513916,\n            \"Y\": 0.832087516784668\n          }\n        ]\n      },\n      \"Id\": \"7e6fcc0b-330c-4722-8c6c-b64d9f4467b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"Deposit\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92496490478516,\n      \"Text\": \"1,000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0752551332116127,\n          \"Height\": 0.11992958933115005,\n          \"Left\": 0.5768331289291382,\n          \"Top\": 0.7045946717262268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768331289291382,\n            \"Y\": 0.7045946717262268\n          },\n          {\n            \"X\": 0.6520882248878479,\n            \"Y\": 0.7045946717262268\n          },\n          {\n            \"X\": 0.6520882248878479,\n            \"Y\": 0.8245242834091187\n          },\n          {\n            \"X\": 0.5768331289291382,\n            \"Y\": 0.8245242834091187\n          }\n        ]\n      },\n      \"Id\": \"1998f856-968b-4bb0-b4c1-772dfa93d5a2\",\n      \"Page\": 1,\n      \"SearchKey\": \"1,000\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8183822631836,\n      \"Text\": \"10,960\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09058419615030289,\n          \"Height\": 0.11973630636930466,\n          \"Left\": 0.9061859250068665,\n          \"Top\": 0.7053331732749939\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9061859250068665,\n            \"Y\": 0.7053331732749939\n          },\n          {\n            \"X\": 0.9967701435089111,\n            \"Y\": 0.7053331732749939\n          },\n          {\n            \"X\": 0.9967701435089111,\n            \"Y\": 0.8250694274902344\n          },\n          {\n            \"X\": 0.9061859250068665,\n            \"Y\": 0.8250694274902344\n          }\n        ]\n      },\n      \"Id\": \"bfb41712-6116-4d0c-9b4e-ea24790974df\",\n      \"Page\": 1,\n      \"SearchKey\": \"10,960\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99259185791016,\n      \"Text\": \"Ending\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08951067924499512,\n          \"Height\": 0.1239800825715065,\n          \"Left\": 0.00877639465034008,\n          \"Top\": 0.8721439242362976\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00877639465034008,\n            \"Y\": 0.8721439242362976\n          },\n          {\n            \"X\": 0.09828707575798035,\n            \"Y\": 0.8721439242362976\n          },\n          {\n            \"X\": 0.09828707575798035,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0.00877639465034008,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"60cc53b4-d4fd-4535-83d1-c8efe74ef981\",\n      \"Page\": 1,\n      \"SearchKey\": \"Ending\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94905853271484,\n      \"Text\": \"Balance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10658787190914154,\n          \"Height\": 0.11116442084312439,\n          \"Left\": 0.10365383327007294,\n          \"Top\": 0.8722501397132874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10365383327007294,\n            \"Y\": 0.8722501397132874\n          },\n          {\n            \"X\": 0.21024170517921448,\n            \"Y\": 0.8722501397132874\n          },\n          {\n            \"X\": 0.21024170517921448,\n            \"Y\": 0.9834145903587341\n          },\n          {\n            \"X\": 0.10365383327007294,\n            \"Y\": 0.9834145903587341\n          }\n        ]\n      },\n      \"Id\": \"7a91d3e9-5087-4437-9f9c-1190a586abde\",\n      \"Page\": 1,\n      \"SearchKey\": \"Balance\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74910736083984,\n      \"Text\": \"10,960\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0895971804857254,\n          \"Height\": 0.12015976756811142,\n          \"Left\": 0.906459629535675,\n          \"Top\": 0.8752397894859314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.906459629535675,\n            \"Y\": 0.8752397894859314\n          },\n          {\n            \"X\": 0.9960567951202393,\n            \"Y\": 0.8752397894859314\n          },\n          {\n            \"X\": 0.9960567951202393,\n            \"Y\": 0.995399534702301\n          },\n          {\n            \"X\": 0.906459629535675,\n            \"Y\": 0.995399534702301\n          }\n        ]\n      },\n      \"Id\": \"041bedba-a32c-4511-af69-636fb2f6c12d\",\n      \"Page\": 1,\n      \"SearchKey\": \"10,960\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.5096664428711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.992318332195282,\n          \"Height\": 0.9827557802200317,\n          \"Left\": 0.00393647002056241,\n          \"Top\": 0.010093074291944504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.992848813533783\n          },\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.992848813533783\n          }\n        ]\n      },\n      \"Id\": \"12325938-7e63-4524-97fc-aa792a9c05cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef72014d-e0ac-4a6b-8477-67011bbd30fe\",\n            \"8c8450ae-70ec-46cd-ba90-261227662f75\",\n            \"35babb70-a229-4fc7-be46-6dac0e5ea12f\",\n            \"e0e22a34-06f1-4a56-86b3-dff924527abe\",\n            \"24a3dd65-737a-4cd6-8c10-8781ec94269c\",\n            \"6bcc4c6c-60a9-4755-8080-862b6010ed6b\",\n            \"f5372e65-aed9-4fda-a712-f0003059a7f7\",\n            \"5dd2b8a0-5c4c-477b-9071-30795f9b5134\",\n            \"46446e6d-9cf5-4f56-b259-1bf96ef7a64c\",\n            \"e79eb62c-91e5-4208-876d-9a7fbd70d815\",\n            \"c202cb95-bddd-42e6-8eed-12b620ea9bdd\",\n            \"6a83d272-3e8a-45a5-a55a-46fac43e68dd\",\n            \"5df6e0f3-b5fc-4d36-9eec-294b307b6954\",\n            \"c5edd055-4512-4432-9f22-fd078d862cf1\",\n            \"b764ff4d-7d52-49ba-91f4-72c74c7babac\",\n            \"865e9d07-bf81-4001-b1e2-21879d226d35\",\n            \"c03c92f8-7848-4da5-b816-872677f1a3c8\",\n            \"af694e35-720f-407a-84d8-0c9bb285060c\",\n            \"c668ee0a-761f-4675-9a22-842bfd777fcb\",\n            \"0704108a-d819-4742-94f7-27287ff7a40b\",\n            \"c88d685d-bf96-4b71-8779-0def3fe96a18\",\n            \"ca9df04a-0921-4923-b6d9-4800cc9de8be\",\n            \"13fbb820-5371-47fa-812a-bd48b3fcde68\",\n            \"0d2e841e-be25-4fd6-8b2b-5d7d50e9b548\",\n            \"d87b28f7-4fcc-43a5-962e-28330b5f8167\",\n            \"db9c4ad9-8163-4dbf-b681-2f60a5c57350\",\n            \"56b5449f-177a-4931-887e-1b57f537eeae\",\n            \"b3515167-0989-43d9-9c43-60e03a603502\",\n            \"01c542ad-d4ee-401a-94f7-abf008c4965f\",\n            \"3cc51d01-2a8b-4d7c-b106-760e707eafd3\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"4974c30e-10fd-426d-a8c9-ed9df46f4e3b\",\n            \"4ea44a81-6dc0-4e3e-8d96-2acbfe9d5aa8\",\n            \"1ba8bb65-ec17-4154-9345-bc489537e0fb\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.58906555175781,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16937030851840973,\n          \"Height\": 0.1488216519355774,\n          \"Left\": 0.00393647002056241,\n          \"Top\": 0.010093074291944504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.1589147299528122\n          }\n        ]\n      },\n      \"Id\": \"ef72014d-e0ac-4a6b-8477-67011bbd30fe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99833c46-64be-4f9c-97ec-0088a380fdf5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Date \",\n      \"SearchKey\": \"Date \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.74805450439453,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.306772917509079,\n          \"Height\": 0.1488216519355774,\n          \"Left\": 0.17330677807331085,\n          \"Top\": 0.010093074291944504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.1589147299528122\n          }\n        ]\n      },\n      \"Id\": \"8c8450ae-70ec-46cd-ba90-261227662f75\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3cb5c586-819d-40b4-93fa-c24dc21eda68\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Description \",\n      \"SearchKey\": \"Description \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.20181274414062,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1488216519355774,\n          \"Left\": 0.48007968068122864,\n          \"Top\": 0.010093074291944504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.1589147299528122\n          }\n        ]\n      },\n      \"Id\": \"35babb70-a229-4fc7-be46-6dac0e5ea12f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a409d358-62e9-4d4c-a5d9-308ffa971711\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Credit \",\n      \"SearchKey\": \"Credit \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.9977798461914,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1488216519355774,\n          \"Left\": 0.6533864736557007,\n          \"Top\": 0.010093074291944504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.1589147299528122\n          }\n        ]\n      },\n      \"Id\": \"e0e22a34-06f1-4a56-86b3-dff924527abe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08876029-7a17-461a-806b-4d37826c8a5e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Debit \",\n      \"SearchKey\": \"Debit \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.34054565429688,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16956156492233276,\n          \"Height\": 0.1488216519355774,\n          \"Left\": 0.8266932368278503,\n          \"Top\": 0.010093074291944504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.010093074291944504\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.1589147299528122\n          }\n        ]\n      },\n      \"Id\": \"24a3dd65-737a-4cd6-8c10-8781ec94269c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ab0255ad-3321-4a2f-97b9-0c93045a8a6a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Balance \",\n      \"SearchKey\": \"Balance \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.74736785888672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16932271420955658,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.0039840638637542725,\n          \"Top\": 0.1589147299528122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.3294573724269867\n          }\n        ]\n      },\n      \"Id\": \"6bcc4c6c-60a9-4755-8080-862b6010ed6b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a9d22d1e-0de8-4abd-9449-1a142f732292\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Previous \",\n      \"SearchKey\": \"Previous \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.74736785888672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.306772917509079,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.17330677807331085,\n          \"Top\": 0.1589147299528122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.3294573724269867\n          }\n        ]\n      },\n      \"Id\": \"f5372e65-aed9-4fda-a712-f0003059a7f7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93c1a11f-98da-4b6c-bce9-5ec758b916f6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Balance \",\n      \"SearchKey\": \"Balance \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.74736785888672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.48007968068122864,\n          \"Top\": 0.1589147299528122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.3294573724269867\n          }\n        ]\n      },\n      \"Id\": \"5dd2b8a0-5c4c-477b-9071-30795f9b5134\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.74736785888672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.6533864736557007,\n          \"Top\": 0.1589147299528122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.3294573724269867\n          }\n        ]\n      },\n      \"Id\": \"46446e6d-9cf5-4f56-b259-1bf96ef7a64c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.28108978271484,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16956156492233276,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.8266932368278503,\n          \"Top\": 0.1589147299528122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.3294573724269867\n          }\n        ]\n      },\n      \"Id\": \"e79eb62c-91e5-4208-876d-9a7fbd70d815\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ba1e864-5894-4ffa-b55b-434a2800bd4d\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"11,000 \",\n      \"SearchKey\": \"11,000 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.82976531982422,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16932271420955658,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.0039840638637542725,\n          \"Top\": 0.3294573724269867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.4922480583190918\n          }\n        ]\n      },\n      \"Id\": \"c202cb95-bddd-42e6-8eed-12b620ea9bdd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.7890625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.306772917509079,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.17330677807331085,\n          \"Top\": 0.3294573724269867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.4922480583190918\n          }\n        ]\n      },\n      \"Id\": \"6a83d272-3e8a-45a5-a55a-46fac43e68dd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ddd786ab-780c-4b98-916c-68b6839f0d3e\",\n            \"30170938-5b91-4e4f-8e04-fad6c3e3835a\",\n            \"cb85a6a9-ea0d-4d9c-bb96-527be78bacc2\",\n            \"628906a1-5c6b-4e1b-bf33-dc6c9738e0f0\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Payment - Credit Card \",\n      \"SearchKey\": \"Payment - Credit Card \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.27548217773438,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.48007968068122864,\n          \"Top\": 0.3294573724269867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.4922480583190918\n          }\n        ]\n      },\n      \"Id\": \"5df6e0f3-b5fc-4d36-9eec-294b307b6954\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.09687805175781,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.6533864736557007,\n          \"Top\": 0.3294573724269867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.4922480583190918\n          }\n        ]\n      },\n      \"Id\": \"c5edd055-4512-4432-9f22-fd078d862cf1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5a15050c-92b4-434e-9ea7-44fb94bd6504\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1,000 \",\n      \"SearchKey\": \"1,000 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.43240356445312,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16956156492233276,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.8266932368278503,\n          \"Top\": 0.3294573724269867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.4922480583190918\n          }\n        ]\n      },\n      \"Id\": \"b764ff4d-7d52-49ba-91f4-72c74c7babac\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"04fef24a-2a92-4e92-ac01-e3cc0a6d4322\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"10,000 \",\n      \"SearchKey\": \"10,000 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.82976531982422,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16932271420955658,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.0039840638637542725,\n          \"Top\": 0.4922480583190918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.6627907156944275\n          }\n        ]\n      },\n      \"Id\": \"865e9d07-bf81-4001-b1e2-21879d226d35\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5e67080-ec61-495a-a3eb-af96eae059a5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2022-01-01 \",\n      \"SearchKey\": \"2022-01-01 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.59294891357422,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.306772917509079,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.17330677807331085,\n          \"Top\": 0.4922480583190918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.6627907156944275\n          }\n        ]\n      },\n      \"Id\": \"c03c92f8-7848-4da5-b816-872677f1a3c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ab3ce593-5c2f-44ae-bbc2-6c71e76145a9\",\n            \"57800a94-05f8-4a4e-8c3d-7488f0b1c800\",\n            \"443bc6fc-1ca6-48a5-805b-2299f57cb16a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Payment - Utility \",\n      \"SearchKey\": \"Payment - Utility \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.06597137451172,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.48007968068122864,\n          \"Top\": 0.4922480583190918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.6627907156944275\n          }\n        ]\n      },\n      \"Id\": \"af694e35-720f-407a-84d8-0c9bb285060c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.8769302368164,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.6533864736557007,\n          \"Top\": 0.4922480583190918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.6627907156944275\n          }\n        ]\n      },\n      \"Id\": \"c668ee0a-761f-4675-9a22-842bfd777fcb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34f542dd-e761-41dd-ac15-e25856a4bfbe\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"40 \",\n      \"SearchKey\": \"40 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.2154312133789,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16956156492233276,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.8266932368278503,\n          \"Top\": 0.4922480583190918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.4922480583190918\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.6627907156944275\n          }\n        ]\n      },\n      \"Id\": \"0704108a-d819-4742-94f7-27287ff7a40b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a05c065a-be9c-46e5-81ed-2cb1ce94f5d5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"9,960 \",\n      \"SearchKey\": \"9,960 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.60011291503906,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16937030851840973,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.00393647002056241,\n          \"Top\": 0.6627907156944275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.8255813717842102\n          }\n        ]\n      },\n      \"Id\": \"c88d685d-bf96-4b71-8779-0def3fe96a18\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5d2e14e3-91a2-4b5a-b5b9-e4a094e42563\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2022-01-02 \",\n      \"SearchKey\": \"2022-01-02 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.74657440185547,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.306772917509079,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.17330677807331085,\n          \"Top\": 0.6627907156944275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.8255813717842102\n          }\n        ]\n      },\n      \"Id\": \"ca9df04a-0921-4923-b6d9-4800cc9de8be\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e6fcc0b-330c-4722-8c6c-b64d9f4467b6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Deposit \",\n      \"SearchKey\": \"Deposit \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.21703338623047,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.48007968068122864,\n          \"Top\": 0.6627907156944275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.8255813717842102\n          }\n        ]\n      },\n      \"Id\": \"13fbb820-5371-47fa-812a-bd48b3fcde68\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1998f856-968b-4bb0-b4c1-772dfa93d5a2\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1,000 \",\n      \"SearchKey\": \"1,000 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.0260009765625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.6533864736557007,\n          \"Top\": 0.6627907156944275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.8255813717842102\n          }\n        ]\n      },\n      \"Id\": \"0d2e841e-be25-4fd6-8b2b-5d7d50e9b548\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.36506652832031,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16956156492233276,\n          \"Height\": 0.1627907007932663,\n          \"Left\": 0.8266932368278503,\n          \"Top\": 0.6627907156944275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.8255813717842102\n          }\n        ]\n      },\n      \"Id\": \"d87b28f7-4fcc-43a5-962e-28330b5f8167\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bfb41712-6116-4d0c-9b4e-ea24790974df\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"10,960 \",\n      \"SearchKey\": \"10,960 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.2461166381836,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16932271420955658,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.0039840638637542725,\n          \"Top\": 0.8255813717842102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0.0039840638637542725,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"db9c4ad9-8163-4dbf-b681-2f60a5c57350\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60cc53b4-d4fd-4535-83d1-c8efe74ef981\",\n            \"7a91d3e9-5087-4437-9f9c-1190a586abde\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Ending Balance \",\n      \"SearchKey\": \"Ending Balance \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.2461166381836,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.306772917509079,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.17330677807331085,\n          \"Top\": 0.8255813717842102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"56b5449f-177a-4931-887e-1b57f537eeae\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.2461166381836,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.48007968068122864,\n          \"Top\": 0.8255813717842102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0.48007968068122864,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"b3515167-0989-43d9-9c43-60e03a603502\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.2461166381836,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17330677807331085,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.6533864736557007,\n          \"Top\": 0.8255813717842102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.9961240291595459\n          },\n          {\n            \"X\": 0.6533864736557007,\n            \"Y\": 0.9961240291595459\n          }\n        ]\n      },\n      \"Id\": \"01c542ad-d4ee-401a-94f7-abf008c4965f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.09988403320312,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16956156492233276,\n          \"Height\": 0.16726744174957275,\n          \"Left\": 0.8266932368278503,\n          \"Top\": 0.8255813717842102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.9962548017501831,\n            \"Y\": 0.992848813533783\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.992848813533783\n          }\n        ]\n      },\n      \"Id\": \"3cc51d01-2a8b-4d7c-b106-760e707eafd3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"041bedba-a32c-4511-af69-636fb2f6c12d\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"10,960 \",\n      \"SearchKey\": \"10,960 \"\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 67.74736785888672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 4,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8227567672729492,\n          \"Height\": 0.1705426424741745,\n          \"Left\": 0.00393647002056241,\n          \"Top\": 0.1589147299528122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.1589147299528122\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.3294573724269867\n          }\n        ]\n      },\n      \"Id\": \"4974c30e-10fd-426d-a8c9-ed9df46f4e3b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6bcc4c6c-60a9-4755-8080-862b6010ed6b\",\n            \"f5372e65-aed9-4fda-a712-f0003059a7f7\",\n            \"5dd2b8a0-5c4c-477b-9071-30795f9b5134\",\n            \"46446e6d-9cf5-4f56-b259-1bf96ef7a64c\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 92.82976531982422,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16937030851840973,\n          \"Height\": 0.3333333432674408,\n          \"Left\": 0.00393647002056241,\n          \"Top\": 0.3294573724269867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.3294573724269867\n          },\n          {\n            \"X\": 0.17330677807331085,\n            \"Y\": 0.6627907156944275\n          },\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.6627907156944275\n          }\n        ]\n      },\n      \"Id\": \"4ea44a81-6dc0-4e3e-8d96-2acbfe9d5aa8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c202cb95-bddd-42e6-8eed-12b620ea9bdd\",\n            \"865e9d07-bf81-4001-b1e2-21879d226d35\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 85.2461166381836,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 4,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8227567672729492,\n          \"Height\": 0.16726744174957275,\n          \"Left\": 0.00393647002056241,\n          \"Top\": 0.8255813717842102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.8255813717842102\n          },\n          {\n            \"X\": 0.8266932368278503,\n            \"Y\": 0.992848813533783\n          },\n          {\n            \"X\": 0.00393647002056241,\n            \"Y\": 0.992848813533783\n          }\n        ]\n      },\n      \"Id\": \"1ba8bb65-ec17-4154-9345-bc489537e0fb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"db9c4ad9-8163-4dbf-b681-2f60a5c57350\",\n            \"56b5449f-177a-4931-887e-1b57f537eeae\",\n            \"b3515167-0989-43d9-9c43-60e03a603502\",\n            \"01c542ad-d4ee-401a-94f7-abf008c4965f\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 12,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14536000788211823,\n          \"Height\": 0.11721012741327286,\n          \"Left\": 0.1828600913286209,\n          \"Top\": 0.045223601162433624\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1828600913286209,\n            \"Y\": 0.045223601162433624\n          },\n          {\n            \"X\": 0.32822009921073914,\n            \"Y\": 0.045223601162433624\n          },\n          {\n            \"X\": 0.32822009921073914,\n            \"Y\": 0.16243372857570648\n          },\n          {\n            \"X\": 0.1828600913286209,\n            \"Y\": 0.16243372857570648\n          }\n        ]\n      },\n      \"Id\": \"d10ec11a-5ef2-4f04-a736-e4476fd8c0da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"64d7850d-a183-4ed8-92eb-ebea9765f4ba\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3cb5c586-819d-40b4-93fa-c24dc21eda68\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Description \",\n      \"SearchKey\": \"Description \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 12,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17870084941387177,\n          \"Height\": 0.1345449686050415,\n          \"Left\": 0.3050096035003662,\n          \"Top\": 0.02860601618885994\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3050096035003662,\n            \"Y\": 0.02860601618885994\n          },\n          {\n            \"X\": 0.4837104380130768,\n            \"Y\": 0.02860601618885994\n          },\n          {\n            \"X\": 0.4837104380130768,\n            \"Y\": 0.16315098106861115\n          },\n          {\n            \"X\": 0.3050096035003662,\n            \"Y\": 0.16315098106861115\n          }\n        ]\n      },\n      \"Id\": \"64d7850d-a183-4ed8-92eb-ebea9765f4ba\",\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/test-failed-response.json",
    "content": "{\n  \"JobStatus\": \"FAILED\",\n  \"StatusMessage\": \"Dummy Status Message\",\n  \"ResponseMetadata\": {\n    \"RequestId\": \"24bf72b5-8670-409a-893e-f06f5c107e49\",\n    \"HTTPStatusCode\": 200,\n    \"HTTPHeaders\": {\n        \"date\": \"Fri, 29 Mar 2019 23:44:17 GMT\",\n        \"content-type\": \"application/x-amz-json-1.1\",\n        \"content-length\": \"59930\",\n        \"connection\": \"keep-alive\",\n        \"x-amzn-requestid\": \"24bf72b5-8670-409a-893e-f06f5c107e49\"\n    },\n    \"RetryAttempts\": 0\n  }\n}"
  },
  {
    "path": "src-js/test/data/test-inprogress-response.json",
    "content": "{\n  \"JobStatus\": \"IN_PROGRESS\",\n  \"StatusMessage\": \"Dummy still in progress message\",\n  \"ResponseMetadata\": {\n    \"RequestId\": \"24bf72b5-8670-409a-893e-f06f5c107e49\",\n    \"HTTPStatusCode\": 200,\n    \"HTTPHeaders\": {\n        \"date\": \"Fri, 29 Mar 2019 23:44:17 GMT\",\n        \"content-type\": \"application/x-amz-json-1.1\",\n        \"content-length\": \"59930\",\n        \"connection\": \"keep-alive\",\n        \"x-amzn-requestid\": \"24bf72b5-8670-409a-893e-f06f5c107e49\"\n    },\n    \"RetryAttempts\": 0\n  }\n}"
  },
  {
    "path": "src-js/test/data/test-multicol-response-2.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 0.9981549978256226,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 7.864438202693632e-17,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0.9981549978256226\n          },\n          {\n            \"X\": 0,\n            \"Y\": 0.9981549978256226\n          }\n        ]\n      },\n      \"Id\": \"206de06e-bf01-4c70-ad83-60411fe7a391\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9cbe0783-893e-47a5-8e1a-c924f26909c1\",\n            \"410b3902-af42-4fe9-99f2-d7f1816b8ae9\",\n            \"4337307a-db0e-47f2-a5e2-e63a6c662af1\",\n            \"0590a9d0-2b82-4aa5-a960-db7a8fa19491\",\n            \"df7b5e0e-e762-43f9-9af7-9d9e305ea24b\",\n            \"46406a6d-1b9b-4a02-a46e-592c55594877\",\n            \"9d6f66b0-1f48-44c0-ba7d-cfe2d372ac34\",\n            \"0907df86-305f-40fa-80f7-2ac8a491fef1\",\n            \"0055a37c-bc4d-4f72-831b-4969a082227c\",\n            \"eb2533f5-19d4-49fd-ab9d-48a68bb22f29\",\n            \"021fc359-fec2-4178-ba2f-b070ca7697ee\",\n            \"f239f4f3-e645-4936-9ae7-a4aa2c7044d5\",\n            \"a0ed083d-59c1-4267-af19-c97d091c931c\",\n            \"73622bdd-6aa2-4dc7-8410-ac7357ff8f52\",\n            \"9172a932-e7d6-4ec0-a110-dfb17543430b\",\n            \"a4780116-24cb-436e-9c5e-bc60eb166d57\",\n            \"1e639cae-615b-4431-8316-ffe631285227\",\n            \"99844aa0-2bec-4ae3-b168-43c2159272a0\",\n            \"e6065d61-7322-4052-b26f-98e28567d491\",\n            \"e65307c6-796a-4551-b5bc-0bee2f81e004\",\n            \"514779a9-1a8f-42e5-ac6a-1701770691f0\",\n            \"6900a245-2247-4f5e-9fb6-4309916ca462\",\n            \"5789ca54-ef66-4bd3-a51a-49ac6a4d1690\",\n            \"7a109c0e-ec61-43e5-8008-1b535054b829\",\n            \"677e8610-57aa-491c-a600-783ed3c8af8b\"\n          ]\n        }\n      ],\n      \"childText\": \"HEADING OF THE PAGE GOES HERE Section ID [ENTER] A glooming peace this example with it brings; The author, for Two columns, both alike in fear, will not show his head: dignity, in fair Verona, where we lay our sample document. Go hence with caution, to test more sample documents. From ancient grudge break to new technological advance, For never was a heuristic where textual reading order is infallible, for trying to sort text preserved. In reading order THE END Page 1 \",\n      \"SearchKey\": \"HEADING OF THE PAGE GOES HERE Section ID [ENTER] A glooming peace this example with it brings; The author, for Two columns, both alike in fear, will not show his head: dignity, in fair Verona, where we lay our sample document. Go hence with caution, to test more sample documents. From ancient grudge break to new technological advance, For never was a heuristic where textual reading order is infallible, for trying to sort text preserved. In reading order THE END Page 1 \",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89315032958984,\n      \"Text\": \"HEADING OF THE PAGE GOES HERE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.512528657913208,\n          \"Height\": 0.04627124220132828,\n          \"Left\": 0.2434995025396347,\n          \"Top\": 0.11355684697628021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2434995025396347,\n            \"Y\": 0.11355684697628021\n          },\n          {\n            \"X\": 0.7560281753540039,\n            \"Y\": 0.11355684697628021\n          },\n          {\n            \"X\": 0.7560281753540039,\n            \"Y\": 0.1598280817270279\n          },\n          {\n            \"X\": 0.2434995025396347,\n            \"Y\": 0.1598280817270279\n          }\n        ]\n      },\n      \"Id\": \"9cbe0783-893e-47a5-8e1a-c924f26909c1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f00db362-8b35-426d-a7f9-749dd73885a1\",\n            \"5f5453af-0e33-4b87-9e42-33d4c7f6883d\",\n            \"093e9946-9c7d-4d53-b3b3-0a081331d291\",\n            \"4a5770b3-bfa2-455a-9ae8-099964a5a332\",\n            \"d9b4d911-ad93-47c6-a9c5-0db2b6b6072c\",\n            \"fadef1c8-5578-4514-8144-c008500bcc70\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"HEADING OF THE PAGE GOES HERE \",\n      \"SearchKey\": \"HEADING OF THE PAGE GOES HERE\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89747619628906,\n      \"Text\": \"Section ID\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13546976447105408,\n          \"Height\": 0.047074828296899796,\n          \"Left\": 0.8050884008407593,\n          \"Top\": 0.11290397495031357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8050884008407593,\n            \"Y\": 0.11290397495031357\n          },\n          {\n            \"X\": 0.9405581951141357,\n            \"Y\": 0.11290397495031357\n          },\n          {\n            \"X\": 0.9405581951141357,\n            \"Y\": 0.15997880697250366\n          },\n          {\n            \"X\": 0.8050884008407593,\n            \"Y\": 0.15997880697250366\n          }\n        ]\n      },\n      \"Id\": \"410b3902-af42-4fe9-99f2-d7f1816b8ae9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e1142224-9589-4dd2-9d4d-3c8ac990b038\",\n            \"c9fdb3eb-d3fd-4566-8723-8267b74ebc52\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Section ID \",\n      \"SearchKey\": \"Section ID\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.444091796875,\n      \"Text\": \"[ENTER]\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11749319732189178,\n          \"Height\": 0.0566641166806221,\n          \"Left\": 0.08958268910646439,\n          \"Top\": 0.22319237887859344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08958268910646439,\n            \"Y\": 0.22319237887859344\n          },\n          {\n            \"X\": 0.20707589387893677,\n            \"Y\": 0.22319237887859344\n          },\n          {\n            \"X\": 0.20707589387893677,\n            \"Y\": 0.27985650300979614\n          },\n          {\n            \"X\": 0.08958268910646439,\n            \"Y\": 0.27985650300979614\n          }\n        ]\n      },\n      \"Id\": \"4337307a-db0e-47f2-a5e2-e63a6c662af1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e3b8afb-ffc9-4d38-8912-6df0a1456cbd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"[ENTER] \",\n      \"SearchKey\": \"[ENTER]\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93226623535156,\n      \"Text\": \"A glooming peace this example\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4007647633552551,\n          \"Height\": 0.05728000029921532,\n          \"Left\": 0.5316973328590393,\n          \"Top\": 0.22457891702651978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5316973328590393,\n            \"Y\": 0.22457891702651978\n          },\n          {\n            \"X\": 0.9324620962142944,\n            \"Y\": 0.22457891702651978\n          },\n          {\n            \"X\": 0.9324620962142944,\n            \"Y\": 0.2818589210510254\n          },\n          {\n            \"X\": 0.5316973328590393,\n            \"Y\": 0.2818589210510254\n          }\n        ]\n      },\n      \"Id\": \"0590a9d0-2b82-4aa5-a960-db7a8fa19491\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2ed8fe92-5125-4811-bec2-19f746c9d828\",\n            \"baa2753a-e2e6-4269-8104-09d7f2e49205\",\n            \"040c6bf1-316c-4386-82b3-5cfa333d6fc0\",\n            \"a9db518b-b7b8-47f5-9c8a-cad5838fc572\",\n            \"3d4a0b49-a4be-403b-805e-55f0b504bf59\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A glooming peace this example \",\n      \"SearchKey\": \"A glooming peace this example\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7298583984375,\n      \"Text\": \"with it brings; The author, for\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3665475845336914,\n          \"Height\": 0.05520770698785782,\n          \"Left\": 0.5315861105918884,\n          \"Top\": 0.27611497044563293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5315861105918884,\n            \"Y\": 0.27611497044563293\n          },\n          {\n            \"X\": 0.8981336951255798,\n            \"Y\": 0.27611497044563293\n          },\n          {\n            \"X\": 0.8981336951255798,\n            \"Y\": 0.33132266998291016\n          },\n          {\n            \"X\": 0.5315861105918884,\n            \"Y\": 0.33132266998291016\n          }\n        ]\n      },\n      \"Id\": \"df7b5e0e-e762-43f9-9af7-9d9e305ea24b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0e420c76-5fe6-4c5f-a58a-870b67dae922\",\n            \"d9bbd1cd-3393-482f-86d1-5c5e883ba4b9\",\n            \"7f19517a-59a4-4f5c-9356-473e2d0b8622\",\n            \"f494e7b7-6f3a-4cca-ba88-37edd2fe8e0e\",\n            \"56e3dc49-0171-4a0c-a453-0455bf3b9fc7\",\n            \"eb491efe-2e8b-47cc-92ce-1153ed36d2cd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"with it brings; The author, for \",\n      \"SearchKey\": \"with it brings; The author, for\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8664321899414,\n      \"Text\": \"Two columns, both alike in\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3386153280735016,\n          \"Height\": 0.05223897099494934,\n          \"Left\": 0.05777500197291374,\n          \"Top\": 0.32770976424217224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05777500197291374,\n            \"Y\": 0.32770976424217224\n          },\n          {\n            \"X\": 0.39639031887054443,\n            \"Y\": 0.32770976424217224\n          },\n          {\n            \"X\": 0.39639031887054443,\n            \"Y\": 0.3799487352371216\n          },\n          {\n            \"X\": 0.05777500197291374,\n            \"Y\": 0.3799487352371216\n          }\n        ]\n      },\n      \"Id\": \"46406a6d-1b9b-4a02-a46e-592c55594877\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2edbac7d-8df2-492a-8a3f-050ee4e43adb\",\n            \"39cd86c8-df3e-43a3-b0ff-d97d350c480f\",\n            \"ae87d747-c1ce-4e42-b154-60b26d69e0cc\",\n            \"abbc662b-3982-42e1-be3b-494748a01ffd\",\n            \"f9816e47-ff98-40a4-abf0-d61b419bd272\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Two columns, both alike in \",\n      \"SearchKey\": \"Two columns, both alike in\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94380950927734,\n      \"Text\": \"fear, will not show his head:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3533010482788086,\n          \"Height\": 0.05270608142018318,\n          \"Left\": 0.5318763852119446,\n          \"Top\": 0.3271107077598572\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5318763852119446,\n            \"Y\": 0.3271107077598572\n          },\n          {\n            \"X\": 0.885177493095398,\n            \"Y\": 0.3271107077598572\n          },\n          {\n            \"X\": 0.885177493095398,\n            \"Y\": 0.37981680035591125\n          },\n          {\n            \"X\": 0.5318763852119446,\n            \"Y\": 0.37981680035591125\n          }\n        ]\n      },\n      \"Id\": \"9d6f66b0-1f48-44c0-ba7d-cfe2d372ac34\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f18b0634-5f6c-49e3-948e-3bb3dd753c1e\",\n            \"1aed0979-62a2-4773-a678-3b492de7e5e7\",\n            \"151a63d6-3743-4e20-809d-39f752f62f25\",\n            \"8c67bcab-27a7-4e9f-8f73-0bbb3f1fc9b3\",\n            \"51d8c07f-94db-4b01-b061-681dfcf16030\",\n            \"25890c7b-a6ab-4f4e-b369-6b0dcaafa7cd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"fear, will not show his head: \",\n      \"SearchKey\": \"fear, will not show his head:\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.38941955566406,\n      \"Text\": \"dignity, in fair Verona, where we\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.40558090806007385,\n          \"Height\": 0.0552629716694355,\n          \"Left\": 0.05848732590675354,\n          \"Top\": 0.37915676832199097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05848732590675354,\n            \"Y\": 0.37915676832199097\n          },\n          {\n            \"X\": 0.4640682339668274,\n            \"Y\": 0.37915676832199097\n          },\n          {\n            \"X\": 0.4640682339668274,\n            \"Y\": 0.43441975116729736\n          },\n          {\n            \"X\": 0.05848732590675354,\n            \"Y\": 0.43441975116729736\n          }\n        ]\n      },\n      \"Id\": \"0907df86-305f-40fa-80f7-2ac8a491fef1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0832eb49-fc55-4bc3-a8c6-378c8263d524\",\n            \"59f350e0-1a69-49cf-9b69-6703db93e1aa\",\n            \"e3cc7488-1ecc-47cd-952e-fc033d6f0279\",\n            \"5969e587-a8f6-4602-bf1c-8307b9b06c56\",\n            \"9aff75f6-d6f8-4ff0-a1cb-8120d06d4013\",\n            \"58334bfa-0cec-4874-8e8b-9d3f955f8da8\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"dignity, in fair Verona, where we \",\n      \"SearchKey\": \"dignity, in fair Verona, where we\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.67529296875,\n      \"Text\": \"lay our sample document.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.33007875084877014,\n          \"Height\": 0.056003473699092865,\n          \"Left\": 0.0577789768576622,\n          \"Top\": 0.4318317174911499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0577789768576622,\n            \"Y\": 0.4318317174911499\n          },\n          {\n            \"X\": 0.38785773515701294,\n            \"Y\": 0.4318317174911499\n          },\n          {\n            \"X\": 0.38785773515701294,\n            \"Y\": 0.48783519864082336\n          },\n          {\n            \"X\": 0.0577789768576622,\n            \"Y\": 0.48783519864082336\n          }\n        ]\n      },\n      \"Id\": \"0055a37c-bc4d-4f72-831b-4969a082227c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e838fd5b-cd85-46f5-8104-f4fa3db390e6\",\n            \"8c3fb1f5-4a5d-460b-a39c-9ad9332f1c9e\",\n            \"5c2bd0b1-a1ef-45a7-8cd6-0779b996ccf0\",\n            \"6905a84f-d97a-4281-b800-b8741ea25640\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"lay our sample document. \",\n      \"SearchKey\": \"lay our sample document.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87876892089844,\n      \"Text\": \"Go hence with caution, to test\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37998253107070923,\n          \"Height\": 0.051777180284261703,\n          \"Left\": 0.5327364802360535,\n          \"Top\": 0.43076062202453613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5327364802360535,\n            \"Y\": 0.43076062202453613\n          },\n          {\n            \"X\": 0.9127190113067627,\n            \"Y\": 0.43076062202453613\n          },\n          {\n            \"X\": 0.9127190113067627,\n            \"Y\": 0.48253780603408813\n          },\n          {\n            \"X\": 0.5327364802360535,\n            \"Y\": 0.48253780603408813\n          }\n        ]\n      },\n      \"Id\": \"eb2533f5-19d4-49fd-ab9d-48a68bb22f29\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46b7f5c1-ecbe-4e7c-b41a-7740f6568cef\",\n            \"693700ee-22fd-4ca3-b124-a29b28660f25\",\n            \"2fdc8d22-09b4-4b83-a6fd-1025b8200bfb\",\n            \"0f7469d4-ce53-4e45-9b2c-fe5ddd37c920\",\n            \"e7b45494-2c44-46f5-985c-bb97b4ab129c\",\n            \"50461fe3-63e3-43c9-96e8-f7091bae625b\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Go hence with caution, to test \",\n      \"SearchKey\": \"Go hence with caution, to test\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97782897949219,\n      \"Text\": \"more sample documents.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3229389786720276,\n          \"Height\": 0.05385676771402359,\n          \"Left\": 0.53261798620224,\n          \"Top\": 0.4834635257720947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.53261798620224,\n            \"Y\": 0.4834635257720947\n          },\n          {\n            \"X\": 0.8555569648742676,\n            \"Y\": 0.4834635257720947\n          },\n          {\n            \"X\": 0.8555569648742676,\n            \"Y\": 0.5373203158378601\n          },\n          {\n            \"X\": 0.53261798620224,\n            \"Y\": 0.5373203158378601\n          }\n        ]\n      },\n      \"Id\": \"021fc359-fec2-4178-ba2f-b070ca7697ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f3c1518-8907-44bd-ba03-d0b85c56899c\",\n            \"e39411fd-949d-48ae-a7af-780ebe98dc8e\",\n            \"2ef41a57-10b3-41e9-99c3-1d7d12cc4eee\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"more sample documents. \",\n      \"SearchKey\": \"more sample documents.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97480773925781,\n      \"Text\": \"From ancient grudge break to\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3780710697174072,\n          \"Height\": 0.055941030383110046,\n          \"Left\": 0.05860750749707222,\n          \"Top\": 0.5346819162368774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05860750749707222,\n            \"Y\": 0.5346819162368774\n          },\n          {\n            \"X\": 0.43667858839035034,\n            \"Y\": 0.5346819162368774\n          },\n          {\n            \"X\": 0.43667858839035034,\n            \"Y\": 0.5906229615211487\n          },\n          {\n            \"X\": 0.05860750749707222,\n            \"Y\": 0.5906229615211487\n          }\n        ]\n      },\n      \"Id\": \"f239f4f3-e645-4936-9ae7-a4aa2c7044d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13d2d313-f182-4c1c-a9f4-d77378ccf569\",\n            \"59535473-5cdf-4bb8-8249-2e2604636180\",\n            \"c299efb8-5f60-40a2-9476-1cee4e449c3d\",\n            \"29115c22-4fab-4534-8cd3-588eadade346\",\n            \"ea61d6fd-1dc5-41ca-89d3-6846ea7c5e2f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"From ancient grudge break to \",\n      \"SearchKey\": \"From ancient grudge break to\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89659118652344,\n      \"Text\": \"new technological advance,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.35332587361335754,\n          \"Height\": 0.053802490234375,\n          \"Left\": 0.05791092664003372,\n          \"Top\": 0.5871453285217285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05791092664003372,\n            \"Y\": 0.5871453285217285\n          },\n          {\n            \"X\": 0.41123679280281067,\n            \"Y\": 0.5871453285217285\n          },\n          {\n            \"X\": 0.41123679280281067,\n            \"Y\": 0.6409478187561035\n          },\n          {\n            \"X\": 0.05791092664003372,\n            \"Y\": 0.6409478187561035\n          }\n        ]\n      },\n      \"Id\": \"a0ed083d-59c1-4267-af19-c97d091c931c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3d8bd756-2b48-40af-8263-c566af2d9e01\",\n            \"8d297b6b-6770-4f15-b724-9db1e1fdafe1\",\n            \"008ad91b-3a27-468c-bba9-a0f54c0a051f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"new technological advance, \",\n      \"SearchKey\": \"new technological advance,\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95905303955078,\n      \"Text\": \"For never was a heuristic\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32183313369750977,\n          \"Height\": 0.04676790535449982,\n          \"Left\": 0.5333259105682373,\n          \"Top\": 0.5863147974014282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5333259105682373,\n            \"Y\": 0.5863147974014282\n          },\n          {\n            \"X\": 0.8551590442657471,\n            \"Y\": 0.5863147974014282\n          },\n          {\n            \"X\": 0.8551590442657471,\n            \"Y\": 0.6330826878547668\n          },\n          {\n            \"X\": 0.5333259105682373,\n            \"Y\": 0.6330826878547668\n          }\n        ]\n      },\n      \"Id\": \"73622bdd-6aa2-4dc7-8410-ac7357ff8f52\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"623d9b06-6f88-4d98-b536-ae5ced04712f\",\n            \"457e81f9-51fc-47ab-b9ed-c7ff5c6667c6\",\n            \"99b960de-fa24-4636-8093-447e631cd590\",\n            \"b19a2283-c1c5-4c3c-8295-9c67575ade5d\",\n            \"1e34cdce-2960-4b2e-a488-3b0c3b2321a4\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"For never was a heuristic \",\n      \"SearchKey\": \"For never was a heuristic\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96611785888672,\n      \"Text\": \"where textual reading order is\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3799571990966797,\n          \"Height\": 0.05499019846320152,\n          \"Left\": 0.05775335058569908,\n          \"Top\": 0.6389520764350891\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05775335058569908,\n            \"Y\": 0.6389520764350891\n          },\n          {\n            \"X\": 0.43771055340766907,\n            \"Y\": 0.6389520764350891\n          },\n          {\n            \"X\": 0.43771055340766907,\n            \"Y\": 0.6939422488212585\n          },\n          {\n            \"X\": 0.05775335058569908,\n            \"Y\": 0.6939422488212585\n          }\n        ]\n      },\n      \"Id\": \"9172a932-e7d6-4ec0-a110-dfb17543430b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cfe847a3-9756-4627-9cbe-a8be01b10fa2\",\n            \"d2f370f1-f4ca-441f-bd59-66ad0e3e45a9\",\n            \"4c30551b-16e1-4398-a55c-5f9dbceaa654\",\n            \"d888f11e-9421-45d2-b526-7d1c610c0c33\",\n            \"f37594b0-ca6e-4a5d-be11-b31726ea7354\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"where textual reading order is \",\n      \"SearchKey\": \"where textual reading order is\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84953308105469,\n      \"Text\": \"infallible, for trying to sort text\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37619805335998535,\n          \"Height\": 0.057298723608255386,\n          \"Left\": 0.5320184826850891,\n          \"Top\": 0.6373533010482788\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5320184826850891,\n            \"Y\": 0.6373533010482788\n          },\n          {\n            \"X\": 0.9082165956497192,\n            \"Y\": 0.6373533010482788\n          },\n          {\n            \"X\": 0.9082165956497192,\n            \"Y\": 0.6946520209312439\n          },\n          {\n            \"X\": 0.5320184826850891,\n            \"Y\": 0.6946520209312439\n          }\n        ]\n      },\n      \"Id\": \"a4780116-24cb-436e-9c5e-bc60eb166d57\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"af4ec370-f512-41cc-bb00-a685a485d402\",\n            \"abf826a2-d6ab-43d1-bba8-aa55dcc7e1bb\",\n            \"b9385dbc-da20-4ce9-84ac-784548cb0199\",\n            \"acf54c2a-ea5a-47a8-a741-a4ca7df01c17\",\n            \"bad5bae2-3c51-4419-9fb6-418308f507de\",\n            \"8d126fb8-0433-4517-b4e2-86f30d230f4e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"infallible, for trying to sort text \",\n      \"SearchKey\": \"infallible, for trying to sort text\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.560302734375,\n      \"Text\": \"preserved.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13818325102329254,\n          \"Height\": 0.054607994854450226,\n          \"Left\": 0.057880744338035583,\n          \"Top\": 0.6908083558082581\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057880744338035583,\n            \"Y\": 0.6908083558082581\n          },\n          {\n            \"X\": 0.19606399536132812,\n            \"Y\": 0.6908083558082581\n          },\n          {\n            \"X\": 0.19606399536132812,\n            \"Y\": 0.7454163432121277\n          },\n          {\n            \"X\": 0.057880744338035583,\n            \"Y\": 0.7454163432121277\n          }\n        ]\n      },\n      \"Id\": \"1e639cae-615b-4431-8316-ffe631285227\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0d2deb2f-4cf7-4c39-90b3-9788dd9bbc06\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"preserved. \",\n      \"SearchKey\": \"preserved.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80274200439453,\n      \"Text\": \"In reading order\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20584258437156677,\n          \"Height\": 0.055797845125198364,\n          \"Left\": 0.7403310537338257,\n          \"Top\": 0.7424153089523315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7403310537338257,\n            \"Y\": 0.7424153089523315\n          },\n          {\n            \"X\": 0.9461736679077148,\n            \"Y\": 0.7424153089523315\n          },\n          {\n            \"X\": 0.9461736679077148,\n            \"Y\": 0.7982131838798523\n          },\n          {\n            \"X\": 0.7403310537338257,\n            \"Y\": 0.7982131838798523\n          }\n        ]\n      },\n      \"Id\": \"99844aa0-2bec-4ae3-b168-43c2159272a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d7fc32a5-b91d-47b9-93fd-5057745c12a3\",\n            \"b3a53577-6a1f-4d66-949e-945417f4c2b6\",\n            \"ca37df8c-07c4-420a-a0fd-03eaa965ec7c\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"In reading order \",\n      \"SearchKey\": \"In reading order\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9064712524414,\n      \"Text\": \"THE END\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13045914471149445,\n          \"Height\": 0.046956755220890045,\n          \"Left\": 0.4339502453804016,\n          \"Top\": 0.8525685667991638\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4339502453804016,\n            \"Y\": 0.8525685667991638\n          },\n          {\n            \"X\": 0.5644093751907349,\n            \"Y\": 0.8525685667991638\n          },\n          {\n            \"X\": 0.5644093751907349,\n            \"Y\": 0.8995253443717957\n          },\n          {\n            \"X\": 0.4339502453804016,\n            \"Y\": 0.8995253443717957\n          }\n        ]\n      },\n      \"Id\": \"e6065d61-7322-4052-b26f-98e28567d491\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5f257354-1277-47e1-92e4-dbfe3cdd90fe\",\n            \"668647cc-1533-4835-a82a-8f37c64145f4\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"THE END \",\n      \"SearchKey\": \"THE END\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92450714111328,\n      \"Text\": \"Page 1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09099864214658737,\n          \"Height\": 0.05635346844792366,\n          \"Left\": 0.8462904691696167,\n          \"Top\": 0.8527237176895142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8462904691696167,\n            \"Y\": 0.8527237176895142\n          },\n          {\n            \"X\": 0.9372891187667847,\n            \"Y\": 0.8527237176895142\n          },\n          {\n            \"X\": 0.9372891187667847,\n            \"Y\": 0.9090772271156311\n          },\n          {\n            \"X\": 0.8462904691696167,\n            \"Y\": 0.9090772271156311\n          }\n        ]\n      },\n      \"Id\": \"e65307c6-796a-4551-b5bc-0bee2f81e004\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5da82fd2-e124-4c1d-88ae-ec6a40896b29\",\n            \"e46a98d7-597e-4021-81c3-04558c8e48e1\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Page 1 \",\n      \"SearchKey\": \"Page 1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96088409423828,\n      \"Text\": \"HEADING\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13531017303466797,\n          \"Height\": 0.04526571184396744,\n          \"Left\": 0.2434995025396347,\n          \"Top\": 0.11404874175786972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2434995025396347,\n            \"Y\": 0.11404874175786972\n          },\n          {\n            \"X\": 0.3788096606731415,\n            \"Y\": 0.11404874175786972\n          },\n          {\n            \"X\": 0.3788096606731415,\n            \"Y\": 0.15931445360183716\n          },\n          {\n            \"X\": 0.2434995025396347,\n            \"Y\": 0.15931445360183716\n          }\n        ]\n      },\n      \"Id\": \"f00db362-8b35-426d-a7f9-749dd73885a1\",\n      \"Page\": 1,\n      \"SearchKey\": \"HEADING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97755432128906,\n      \"Text\": \"OF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04464692622423172,\n          \"Height\": 0.04559740051627159,\n          \"Left\": 0.3823169767856598,\n          \"Top\": 0.11356645077466965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3823169767856598,\n            \"Y\": 0.11356645077466965\n          },\n          {\n            \"X\": 0.4269639253616333,\n            \"Y\": 0.11356645077466965\n          },\n          {\n            \"X\": 0.4269639253616333,\n            \"Y\": 0.15916384756565094\n          },\n          {\n            \"X\": 0.3823169767856598,\n            \"Y\": 0.15916384756565094\n          }\n        ]\n      },\n      \"Id\": \"5f5453af-0e33-4b87-9e42-33d4c7f6883d\",\n      \"Page\": 1,\n      \"SearchKey\": \"OF\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9216537475586,\n      \"Text\": \"THE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06282108277082443,\n          \"Height\": 0.04562584310770035,\n          \"Left\": 0.4292055368423462,\n          \"Top\": 0.11379950493574142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4292055368423462,\n            \"Y\": 0.11379950493574142\n          },\n          {\n            \"X\": 0.4920266270637512,\n            \"Y\": 0.11379950493574142\n          },\n          {\n            \"X\": 0.4920266270637512,\n            \"Y\": 0.15942534804344177\n          },\n          {\n            \"X\": 0.4292055368423462,\n            \"Y\": 0.15942534804344177\n          }\n        ]\n      },\n      \"Id\": \"093e9946-9c7d-4d53-b3b3-0a081331d291\",\n      \"Page\": 1,\n      \"SearchKey\": \"THE\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82252502441406,\n      \"Text\": \"PAGE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08334661275148392,\n          \"Height\": 0.045736607164144516,\n          \"Left\": 0.4953884780406952,\n          \"Top\": 0.11380957067012787\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4953884780406952,\n            \"Y\": 0.11380957067012787\n          },\n          {\n            \"X\": 0.5787351131439209,\n            \"Y\": 0.11380957067012787\n          },\n          {\n            \"X\": 0.5787351131439209,\n            \"Y\": 0.15954618155956268\n          },\n          {\n            \"X\": 0.4953884780406952,\n            \"Y\": 0.15954618155956268\n          }\n        ]\n      },\n      \"Id\": \"4a5770b3-bfa2-455a-9ae8-099964a5a332\",\n      \"Page\": 1,\n      \"SearchKey\": \"PAGE\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80437469482422,\n      \"Text\": \"GOES\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08628939092159271,\n          \"Height\": 0.04566995054483414,\n          \"Left\": 0.5816256403923035,\n          \"Top\": 0.11381323635578156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5816256403923035,\n            \"Y\": 0.11381323635578156\n          },\n          {\n            \"X\": 0.6679150462150574,\n            \"Y\": 0.11381323635578156\n          },\n          {\n            \"X\": 0.6679150462150574,\n            \"Y\": 0.1594831943511963\n          },\n          {\n            \"X\": 0.5816256403923035,\n            \"Y\": 0.1594831943511963\n          }\n        ]\n      },\n      \"Id\": \"d9b4d911-ad93-47c6-a9c5-0db2b6b6072c\",\n      \"Page\": 1,\n      \"SearchKey\": \"GOES\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87191009521484,\n      \"Text\": \"HERE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08459111303091049,\n          \"Height\": 0.04627124220132828,\n          \"Left\": 0.6714370250701904,\n          \"Top\": 0.11355684697628021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6714370250701904,\n            \"Y\": 0.11355684697628021\n          },\n          {\n            \"X\": 0.7560281753540039,\n            \"Y\": 0.11355684697628021\n          },\n          {\n            \"X\": 0.7560281753540039,\n            \"Y\": 0.1598280817270279\n          },\n          {\n            \"X\": 0.6714370250701904,\n            \"Y\": 0.1598280817270279\n          }\n        ]\n      },\n      \"Id\": \"fadef1c8-5578-4514-8144-c008500bcc70\",\n      \"Page\": 1,\n      \"SearchKey\": \"HERE\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97268676757812,\n      \"Text\": \"Section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09918574243783951,\n          \"Height\": 0.04705405235290527,\n          \"Left\": 0.8050884008407593,\n          \"Top\": 0.11290397495031357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8050884008407593,\n            \"Y\": 0.11290397495031357\n          },\n          {\n            \"X\": 0.9042741656303406,\n            \"Y\": 0.11290397495031357\n          },\n          {\n            \"X\": 0.9042741656303406,\n            \"Y\": 0.15995801985263824\n          },\n          {\n            \"X\": 0.8050884008407593,\n            \"Y\": 0.15995801985263824\n          }\n        ]\n      },\n      \"Id\": \"e1142224-9589-4dd2-9d4d-3c8ac990b038\",\n      \"Page\": 1,\n      \"SearchKey\": \"Section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.822265625,\n      \"Text\": \"ID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03218129277229309,\n          \"Height\": 0.04630591347813606,\n          \"Left\": 0.9083768725395203,\n          \"Top\": 0.1136728897690773\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9083768725395203,\n            \"Y\": 0.1136728897690773\n          },\n          {\n            \"X\": 0.9405581951141357,\n            \"Y\": 0.1136728897690773\n          },\n          {\n            \"X\": 0.9405581951141357,\n            \"Y\": 0.15997880697250366\n          },\n          {\n            \"X\": 0.9083768725395203,\n            \"Y\": 0.15997880697250366\n          }\n        ]\n      },\n      \"Id\": \"c9fdb3eb-d3fd-4566-8723-8267b74ebc52\",\n      \"Page\": 1,\n      \"SearchKey\": \"ID\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.444091796875,\n      \"Text\": \"[ENTER]\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11749319732189178,\n          \"Height\": 0.0566641166806221,\n          \"Left\": 0.08958268910646439,\n          \"Top\": 0.22319237887859344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08958268910646439,\n            \"Y\": 0.22319237887859344\n          },\n          {\n            \"X\": 0.20707589387893677,\n            \"Y\": 0.22319237887859344\n          },\n          {\n            \"X\": 0.20707589387893677,\n            \"Y\": 0.27985650300979614\n          },\n          {\n            \"X\": 0.08958268910646439,\n            \"Y\": 0.27985650300979614\n          }\n        ]\n      },\n      \"Id\": \"9e3b8afb-ffc9-4d38-8912-6df0a1456cbd\",\n      \"Page\": 1,\n      \"SearchKey\": \"[ENTER]\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73204040527344,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02550705522298813,\n          \"Height\": 0.04556989669799805,\n          \"Left\": 0.5316973328590393,\n          \"Top\": 0.22457891702651978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5316973328590393,\n            \"Y\": 0.22457891702651978\n          },\n          {\n            \"X\": 0.5572043657302856,\n            \"Y\": 0.22457891702651978\n          },\n          {\n            \"X\": 0.5572043657302856,\n            \"Y\": 0.2701488137245178\n          },\n          {\n            \"X\": 0.5316973328590393,\n            \"Y\": 0.2701488137245178\n          }\n        ]\n      },\n      \"Id\": \"2ed8fe92-5125-4811-bec2-19f746c9d828\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9639663696289,\n      \"Text\": \"glooming\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11991759389638901,\n          \"Height\": 0.05621630698442459,\n          \"Left\": 0.5593010187149048,\n          \"Top\": 0.2256426066160202\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5593010187149048,\n            \"Y\": 0.2256426066160202\n          },\n          {\n            \"X\": 0.679218590259552,\n            \"Y\": 0.2256426066160202\n          },\n          {\n            \"X\": 0.679218590259552,\n            \"Y\": 0.2818589210510254\n          },\n          {\n            \"X\": 0.5593010187149048,\n            \"Y\": 0.2818589210510254\n          }\n        ]\n      },\n      \"Id\": \"baa2753a-e2e6-4269-8104-09d7f2e49205\",\n      \"Page\": 1,\n      \"SearchKey\": \"glooming\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98445129394531,\n      \"Text\": \"peace\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08274096250534058,\n          \"Height\": 0.04816490411758423,\n          \"Left\": 0.6830096244812012,\n          \"Top\": 0.23145103454589844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6830096244812012,\n            \"Y\": 0.23145103454589844\n          },\n          {\n            \"X\": 0.7657505869865417,\n            \"Y\": 0.23145103454589844\n          },\n          {\n            \"X\": 0.7657505869865417,\n            \"Y\": 0.27961593866348267\n          },\n          {\n            \"X\": 0.6830096244812012,\n            \"Y\": 0.27961593866348267\n          }\n        ]\n      },\n      \"Id\": \"040c6bf1-316c-4386-82b3-5cfa333d6fc0\",\n      \"Page\": 1,\n      \"SearchKey\": \"peace\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99234008789062,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04907125234603882,\n          \"Height\": 0.045777663588523865,\n          \"Left\": 0.7678607106208801,\n          \"Top\": 0.2248137891292572\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7678607106208801,\n            \"Y\": 0.2248137891292572\n          },\n          {\n            \"X\": 0.816931962966919,\n            \"Y\": 0.2248137891292572\n          },\n          {\n            \"X\": 0.816931962966919,\n            \"Y\": 0.27059146761894226\n          },\n          {\n            \"X\": 0.7678607106208801,\n            \"Y\": 0.27059146761894226\n          }\n        ]\n      },\n      \"Id\": \"a9db518b-b7b8-47f5-9c8a-cad5838fc572\",\n      \"Page\": 1,\n      \"SearchKey\": \"this\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98851776123047,\n      \"Text\": \"example\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11115297675132751,\n          \"Height\": 0.053760938346385956,\n          \"Left\": 0.8213090896606445,\n          \"Top\": 0.2254226803779602\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8213090896606445,\n            \"Y\": 0.2254226803779602\n          },\n          {\n            \"X\": 0.9324620962142944,\n            \"Y\": 0.2254226803779602\n          },\n          {\n            \"X\": 0.9324620962142944,\n            \"Y\": 0.27918362617492676\n          },\n          {\n            \"X\": 0.8213090896606445,\n            \"Y\": 0.27918362617492676\n          }\n        ]\n      },\n      \"Id\": \"3d4a0b49-a4be-403b-805e-55f0b504bf59\",\n      \"Page\": 1,\n      \"SearchKey\": \"example\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98087310791016,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056052908301353455,\n          \"Height\": 0.04573025181889534,\n          \"Left\": 0.5315861105918884,\n          \"Top\": 0.2767644226551056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5315861105918884,\n            \"Y\": 0.2767644226551056\n          },\n          {\n            \"X\": 0.5876390337944031,\n            \"Y\": 0.2767644226551056\n          },\n          {\n            \"X\": 0.5876390337944031,\n            \"Y\": 0.3224946856498718\n          },\n          {\n            \"X\": 0.5315861105918884,\n            \"Y\": 0.3224946856498718\n          }\n        ]\n      },\n      \"Id\": \"0e420c76-5fe6-4c5f-a58a-870b67dae922\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78164672851562,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019113115966320038,\n          \"Height\": 0.04604809731245041,\n          \"Left\": 0.5911926031112671,\n          \"Top\": 0.2762070894241333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5911926031112671,\n            \"Y\": 0.2762070894241333\n          },\n          {\n            \"X\": 0.6103057265281677,\n            \"Y\": 0.2762070894241333\n          },\n          {\n            \"X\": 0.6103057265281677,\n            \"Y\": 0.3222551941871643\n          },\n          {\n            \"X\": 0.5911926031112671,\n            \"Y\": 0.3222551941871643\n          }\n        ]\n      },\n      \"Id\": \"d9bbd1cd-3393-482f-86d1-5c5e883ba4b9\",\n      \"Page\": 1,\n      \"SearchKey\": \"it\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.72409057617188,\n      \"Text\": \"brings;\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08915688842535019,\n          \"Height\": 0.05520770698785782,\n          \"Left\": 0.6141451001167297,\n          \"Top\": 0.27611497044563293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6141451001167297,\n            \"Y\": 0.27611497044563293\n          },\n          {\n            \"X\": 0.7033019661903381,\n            \"Y\": 0.27611497044563293\n          },\n          {\n            \"X\": 0.7033019661903381,\n            \"Y\": 0.33132266998291016\n          },\n          {\n            \"X\": 0.6141451001167297,\n            \"Y\": 0.33132266998291016\n          }\n        ]\n      },\n      \"Id\": \"7f19517a-59a4-4f5c-9356-473e2d0b8622\",\n      \"Page\": 1,\n      \"SearchKey\": \"brings;\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99105072021484,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05445203557610512,\n          \"Height\": 0.04646937549114227,\n          \"Left\": 0.7055928707122803,\n          \"Top\": 0.276215136051178\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7055928707122803,\n            \"Y\": 0.276215136051178\n          },\n          {\n            \"X\": 0.7600449323654175,\n            \"Y\": 0.276215136051178\n          },\n          {\n            \"X\": 0.7600449323654175,\n            \"Y\": 0.32268449664115906\n          },\n          {\n            \"X\": 0.7055928707122803,\n            \"Y\": 0.32268449664115906\n          }\n        ]\n      },\n      \"Id\": \"f494e7b7-6f3a-4cca-ba88-37edd2fe8e0e\",\n      \"Page\": 1,\n      \"SearchKey\": \"The\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90510559082031,\n      \"Text\": \"author,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09038395434617996,\n          \"Height\": 0.05028289183974266,\n          \"Left\": 0.7638570070266724,\n          \"Top\": 0.27707672119140625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7638570070266724,\n            \"Y\": 0.27707672119140625\n          },\n          {\n            \"X\": 0.8542409539222717,\n            \"Y\": 0.27707672119140625\n          },\n          {\n            \"X\": 0.8542409539222717,\n            \"Y\": 0.3273596167564392\n          },\n          {\n            \"X\": 0.7638570070266724,\n            \"Y\": 0.3273596167564392\n          }\n        ]\n      },\n      \"Id\": \"56e3dc49-0171-4a0c-a453-0455bf3b9fc7\",\n      \"Page\": 1,\n      \"SearchKey\": \"author,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99639129638672,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039477162063121796,\n          \"Height\": 0.04573030769824982,\n          \"Left\": 0.8586565256118774,\n          \"Top\": 0.27611562609672546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8586565256118774,\n            \"Y\": 0.27611562609672546\n          },\n          {\n            \"X\": 0.8981336951255798,\n            \"Y\": 0.27611562609672546\n          },\n          {\n            \"X\": 0.8981336951255798,\n            \"Y\": 0.3218459188938141\n          },\n          {\n            \"X\": 0.8586565256118774,\n            \"Y\": 0.3218459188938141\n          }\n        ]\n      },\n      \"Id\": \"eb491efe-2e8b-47cc-92ce-1153ed36d2cd\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65190124511719,\n      \"Text\": \"Two\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05686346814036369,\n          \"Height\": 0.046480804681777954,\n          \"Left\": 0.05777500197291374,\n          \"Top\": 0.32770976424217224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05777500197291374,\n            \"Y\": 0.32770976424217224\n          },\n          {\n            \"X\": 0.11463847011327744,\n            \"Y\": 0.32770976424217224\n          },\n          {\n            \"X\": 0.11463847011327744,\n            \"Y\": 0.3741905689239502\n          },\n          {\n            \"X\": 0.05777500197291374,\n            \"Y\": 0.3741905689239502\n          }\n        ]\n      },\n      \"Id\": \"2edbac7d-8df2-492a-8a3f-050ee4e43adb\",\n      \"Page\": 1,\n      \"SearchKey\": \"Two\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91129302978516,\n      \"Text\": \"columns,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11769280582666397,\n          \"Height\": 0.05159610137343407,\n          \"Left\": 0.11794129759073257,\n          \"Top\": 0.3283526301383972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11794129759073257,\n            \"Y\": 0.3283526301383972\n          },\n          {\n            \"X\": 0.23563410341739655,\n            \"Y\": 0.3283526301383972\n          },\n          {\n            \"X\": 0.23563410341739655,\n            \"Y\": 0.3799487352371216\n          },\n          {\n            \"X\": 0.11794129759073257,\n            \"Y\": 0.3799487352371216\n          }\n        ]\n      },\n      \"Id\": \"39cd86c8-df3e-43a3-b0ff-d97d350c480f\",\n      \"Page\": 1,\n      \"SearchKey\": \"columns,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98824310302734,\n      \"Text\": \"both\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06107557937502861,\n          \"Height\": 0.04610029235482216,\n          \"Left\": 0.239863783121109,\n          \"Top\": 0.32820460200309753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.239863783121109,\n            \"Y\": 0.32820460200309753\n          },\n          {\n            \"X\": 0.3009393811225891,\n            \"Y\": 0.32820460200309753\n          },\n          {\n            \"X\": 0.3009393811225891,\n            \"Y\": 0.3743049204349518\n          },\n          {\n            \"X\": 0.239863783121109,\n            \"Y\": 0.3743049204349518\n          }\n        ]\n      },\n      \"Id\": \"ae87d747-c1ce-4e42-b154-60b26d69e0cc\",\n      \"Page\": 1,\n      \"SearchKey\": \"both\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95024871826172,\n      \"Text\": \"alike\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06287228316068649,\n          \"Height\": 0.045862626284360886,\n          \"Left\": 0.3033573031425476,\n          \"Top\": 0.32814109325408936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3033573031425476,\n            \"Y\": 0.32814109325408936\n          },\n          {\n            \"X\": 0.3662295937538147,\n            \"Y\": 0.32814109325408936\n          },\n          {\n            \"X\": 0.3662295937538147,\n            \"Y\": 0.37400373816490173\n          },\n          {\n            \"X\": 0.3033573031425476,\n            \"Y\": 0.37400373816490173\n          }\n        ]\n      },\n      \"Id\": \"abbc662b-3982-42e1-be3b-494748a01ffd\",\n      \"Page\": 1,\n      \"SearchKey\": \"alike\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8304672241211,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026727251708507538,\n          \"Height\": 0.045315902680158615,\n          \"Left\": 0.3696630895137787,\n          \"Top\": 0.3282814919948578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3696630895137787,\n            \"Y\": 0.3282814919948578\n          },\n          {\n            \"X\": 0.39639031887054443,\n            \"Y\": 0.3282814919948578\n          },\n          {\n            \"X\": 0.39639031887054443,\n            \"Y\": 0.3735974133014679\n          },\n          {\n            \"X\": 0.3696630895137787,\n            \"Y\": 0.3735974133014679\n          }\n        ]\n      },\n      \"Id\": \"f9816e47-ff98-40a4-abf0-d61b419bd272\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95362854003906,\n      \"Text\": \"fear,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05931742116808891,\n          \"Height\": 0.05182098597288132,\n          \"Left\": 0.5318763852119446,\n          \"Top\": 0.32799580693244934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5318763852119446,\n            \"Y\": 0.32799580693244934\n          },\n          {\n            \"X\": 0.5911938548088074,\n            \"Y\": 0.32799580693244934\n          },\n          {\n            \"X\": 0.5911938548088074,\n            \"Y\": 0.37981680035591125\n          },\n          {\n            \"X\": 0.5318763852119446,\n            \"Y\": 0.37981680035591125\n          }\n        ]\n      },\n      \"Id\": \"f18b0634-5f6c-49e3-948e-3bb3dd753c1e\",\n      \"Page\": 1,\n      \"SearchKey\": \"fear,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96867370605469,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04581296071410179,\n          \"Height\": 0.0455009788274765,\n          \"Left\": 0.5952815413475037,\n          \"Top\": 0.32844066619873047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5952815413475037,\n            \"Y\": 0.32844066619873047\n          },\n          {\n            \"X\": 0.6410945057868958,\n            \"Y\": 0.32844066619873047\n          },\n          {\n            \"X\": 0.6410945057868958,\n            \"Y\": 0.37394165992736816\n          },\n          {\n            \"X\": 0.5952815413475037,\n            \"Y\": 0.37394165992736816\n          }\n        ]\n      },\n      \"Id\": \"1aed0979-62a2-4773-a678-3b492de7e5e7\",\n      \"Page\": 1,\n      \"SearchKey\": \"will\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97824096679688,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04501935839653015,\n          \"Height\": 0.04479338601231575,\n          \"Left\": 0.6431893706321716,\n          \"Top\": 0.32940438389778137\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6431893706321716,\n            \"Y\": 0.32940438389778137\n          },\n          {\n            \"X\": 0.6882086992263794,\n            \"Y\": 0.32940438389778137\n          },\n          {\n            \"X\": 0.6882086992263794,\n            \"Y\": 0.37419775128364563\n          },\n          {\n            \"X\": 0.6431893706321716,\n            \"Y\": 0.37419775128364563\n          }\n        ]\n      },\n      \"Id\": \"151a63d6-3743-4e20-809d-39f752f62f25\",\n      \"Page\": 1,\n      \"SearchKey\": \"not\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88754272460938,\n      \"Text\": \"show\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07142400741577148,\n          \"Height\": 0.04592687264084816,\n          \"Left\": 0.6912443041801453,\n          \"Top\": 0.3285491466522217\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6912443041801453,\n            \"Y\": 0.3285491466522217\n          },\n          {\n            \"X\": 0.7626683115959167,\n            \"Y\": 0.3285491466522217\n          },\n          {\n            \"X\": 0.7626683115959167,\n            \"Y\": 0.37447601556777954\n          },\n          {\n            \"X\": 0.6912443041801453,\n            \"Y\": 0.37447601556777954\n          }\n        ]\n      },\n      \"Id\": \"8c67bcab-27a7-4e9f-8f73-0bbb3f1fc9b3\",\n      \"Page\": 1,\n      \"SearchKey\": \"show\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95191192626953,\n      \"Text\": \"his\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04140165075659752,\n          \"Height\": 0.04692680016160011,\n          \"Left\": 0.7651128768920898,\n          \"Top\": 0.3271107077598572\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7651128768920898,\n            \"Y\": 0.3271107077598572\n          },\n          {\n            \"X\": 0.8065145015716553,\n            \"Y\": 0.3271107077598572\n          },\n          {\n            \"X\": 0.8065145015716553,\n            \"Y\": 0.374037504196167\n          },\n          {\n            \"X\": 0.7651128768920898,\n            \"Y\": 0.374037504196167\n          }\n        ]\n      },\n      \"Id\": \"51d8c07f-94db-4b01-b061-681dfcf16030\",\n      \"Page\": 1,\n      \"SearchKey\": \"his\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92288208007812,\n      \"Text\": \"head:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07533170282840729,\n          \"Height\": 0.04591527208685875,\n          \"Left\": 0.8098457455635071,\n          \"Top\": 0.32845404744148254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8098457455635071,\n            \"Y\": 0.32845404744148254\n          },\n          {\n            \"X\": 0.885177493095398,\n            \"Y\": 0.32845404744148254\n          },\n          {\n            \"X\": 0.885177493095398,\n            \"Y\": 0.3743693232536316\n          },\n          {\n            \"X\": 0.8098457455635071,\n            \"Y\": 0.3743693232536316\n          }\n        ]\n      },\n      \"Id\": \"25890c7b-a6ab-4f4e-b369-6b0dcaafa7cd\",\n      \"Page\": 1,\n      \"SearchKey\": \"head:\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.39812469482422,\n      \"Text\": \"dignity,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09091547876596451,\n          \"Height\": 0.05493665114045143,\n          \"Left\": 0.05848732590675354,\n          \"Top\": 0.37948310375213623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05848732590675354,\n            \"Y\": 0.37948310375213623\n          },\n          {\n            \"X\": 0.14940281212329865,\n            \"Y\": 0.37948310375213623\n          },\n          {\n            \"X\": 0.14940281212329865,\n            \"Y\": 0.43441975116729736\n          },\n          {\n            \"X\": 0.05848732590675354,\n            \"Y\": 0.43441975116729736\n          }\n        ]\n      },\n      \"Id\": \"0832eb49-fc55-4bc3-a8c6-378c8263d524\",\n      \"Page\": 1,\n      \"SearchKey\": \"dignity,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91780853271484,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027012431994080544,\n          \"Height\": 0.04543566331267357,\n          \"Left\": 0.1538425087928772,\n          \"Top\": 0.38015758991241455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1538425087928772,\n            \"Y\": 0.38015758991241455\n          },\n          {\n            \"X\": 0.1808549463748932,\n            \"Y\": 0.38015758991241455\n          },\n          {\n            \"X\": 0.1808549463748932,\n            \"Y\": 0.4255932569503784\n          },\n          {\n            \"X\": 0.1538425087928772,\n            \"Y\": 0.4255932569503784\n          }\n        ]\n      },\n      \"Id\": \"59f350e0-1a69-49cf-9b69-6703db93e1aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7416763305664,\n      \"Text\": \"fair\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045206259936094284,\n          \"Height\": 0.04704819619655609,\n          \"Left\": 0.18368113040924072,\n          \"Top\": 0.37915676832199097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18368113040924072,\n            \"Y\": 0.37915676832199097\n          },\n          {\n            \"X\": 0.2288873791694641,\n            \"Y\": 0.37915676832199097\n          },\n          {\n            \"X\": 0.2288873791694641,\n            \"Y\": 0.42620497941970825\n          },\n          {\n            \"X\": 0.18368113040924072,\n            \"Y\": 0.42620497941970825\n          }\n        ]\n      },\n      \"Id\": \"e3cc7488-1ecc-47cd-952e-fc033d6f0279\",\n      \"Page\": 1,\n      \"SearchKey\": \"fair\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4858627319336,\n      \"Text\": \"Verona,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10240720957517624,\n          \"Height\": 0.05213489010930061,\n          \"Left\": 0.23139850795269012,\n          \"Top\": 0.37953388690948486\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23139850795269012,\n            \"Y\": 0.37953388690948486\n          },\n          {\n            \"X\": 0.33380571007728577,\n            \"Y\": 0.37953388690948486\n          },\n          {\n            \"X\": 0.33380571007728577,\n            \"Y\": 0.43166878819465637\n          },\n          {\n            \"X\": 0.23139850795269012,\n            \"Y\": 0.43166878819465637\n          }\n        ]\n      },\n      \"Id\": \"5969e587-a8f6-4602-bf1c-8307b9b06c56\",\n      \"Page\": 1,\n      \"SearchKey\": \"Verona,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99097442626953,\n      \"Text\": \"where\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08265317231416702,\n          \"Height\": 0.045302554965019226,\n          \"Left\": 0.3368971049785614,\n          \"Top\": 0.3807573616504669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3368971049785614,\n            \"Y\": 0.3807573616504669\n          },\n          {\n            \"X\": 0.4195502698421478,\n            \"Y\": 0.3807573616504669\n          },\n          {\n            \"X\": 0.4195502698421478,\n            \"Y\": 0.42605990171432495\n          },\n          {\n            \"X\": 0.3368971049785614,\n            \"Y\": 0.42605990171432495\n          }\n        ]\n      },\n      \"Id\": \"9aff75f6-d6f8-4ff0-a1cb-8120d06d4013\",\n      \"Page\": 1,\n      \"SearchKey\": \"where\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80207824707031,\n      \"Text\": \"we\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04208439216017723,\n          \"Height\": 0.0389067605137825,\n          \"Left\": 0.42198383808135986,\n          \"Top\": 0.38682639598846436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42198383808135986,\n            \"Y\": 0.38682639598846436\n          },\n          {\n            \"X\": 0.4640682339668274,\n            \"Y\": 0.38682639598846436\n          },\n          {\n            \"X\": 0.4640682339668274,\n            \"Y\": 0.42573317885398865\n          },\n          {\n            \"X\": 0.42198383808135986,\n            \"Y\": 0.42573317885398865\n          }\n        ]\n      },\n      \"Id\": \"58334bfa-0cec-4874-8e8b-9d3f955f8da8\",\n      \"Page\": 1,\n      \"SearchKey\": \"we\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60020446777344,\n      \"Text\": \"lay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041787657886743546,\n          \"Height\": 0.05509529262781143,\n          \"Left\": 0.0577789768576622,\n          \"Top\": 0.4321664869785309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0577789768576622,\n            \"Y\": 0.4321664869785309\n          },\n          {\n            \"X\": 0.09956663846969604,\n            \"Y\": 0.4321664869785309\n          },\n          {\n            \"X\": 0.09956663846969604,\n            \"Y\": 0.4872617721557617\n          },\n          {\n            \"X\": 0.0577789768576622,\n            \"Y\": 0.4872617721557617\n          }\n        ]\n      },\n      \"Id\": \"e838fd5b-cd85-46f5-8104-f4fa3db390e6\",\n      \"Page\": 1,\n      \"SearchKey\": \"lay\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93370056152344,\n      \"Text\": \"our\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046490419656038284,\n          \"Height\": 0.038866668939590454,\n          \"Left\": 0.1024867445230484,\n          \"Top\": 0.4392660856246948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1024867445230484,\n            \"Y\": 0.4392660856246948\n          },\n          {\n            \"X\": 0.1489771604537964,\n            \"Y\": 0.4392660856246948\n          },\n          {\n            \"X\": 0.1489771604537964,\n            \"Y\": 0.4781327545642853\n          },\n          {\n            \"X\": 0.1024867445230484,\n            \"Y\": 0.4781327545642853\n          }\n        ]\n      },\n      \"Id\": \"8c3fb1f5-4a5d-460b-a39c-9ad9332f1c9e\",\n      \"Page\": 1,\n      \"SearchKey\": \"our\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98023223876953,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09879906475543976,\n          \"Height\": 0.05507561191916466,\n          \"Left\": 0.1495835930109024,\n          \"Top\": 0.4327595829963684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1495835930109024,\n            \"Y\": 0.4327595829963684\n          },\n          {\n            \"X\": 0.24838265776634216,\n            \"Y\": 0.4327595829963684\n          },\n          {\n            \"X\": 0.24838265776634216,\n            \"Y\": 0.48783519864082336\n          },\n          {\n            \"X\": 0.1495835930109024,\n            \"Y\": 0.48783519864082336\n          }\n        ]\n      },\n      \"Id\": \"5c2bd0b1-a1ef-45a7-8cd6-0779b996ccf0\",\n      \"Page\": 1,\n      \"SearchKey\": \"sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.1870346069336,\n      \"Text\": \"document.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13744820654392242,\n          \"Height\": 0.04716255143284798,\n          \"Left\": 0.2504095137119293,\n          \"Top\": 0.4318317174911499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2504095137119293,\n            \"Y\": 0.4318317174911499\n          },\n          {\n            \"X\": 0.38785773515701294,\n            \"Y\": 0.4318317174911499\n          },\n          {\n            \"X\": 0.38785773515701294,\n            \"Y\": 0.4789942800998688\n          },\n          {\n            \"X\": 0.2504095137119293,\n            \"Y\": 0.4789942800998688\n          }\n        ]\n      },\n      \"Id\": \"6905a84f-d97a-4281-b800-b8741ea25640\",\n      \"Page\": 1,\n      \"SearchKey\": \"document.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85138702392578,\n      \"Text\": \"Go\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042655982077121735,\n          \"Height\": 0.04632427543401718,\n          \"Left\": 0.5327364802360535,\n          \"Top\": 0.43076062202453613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5327364802360535,\n            \"Y\": 0.43076062202453613\n          },\n          {\n            \"X\": 0.5753924250602722,\n            \"Y\": 0.43076062202453613\n          },\n          {\n            \"X\": 0.5753924250602722,\n            \"Y\": 0.4770849049091339\n          },\n          {\n            \"X\": 0.5327364802360535,\n            \"Y\": 0.4770849049091339\n          }\n        ]\n      },\n      \"Id\": \"46b7f5c1-ecbe-4e7c-b41a-7740f6568cef\",\n      \"Page\": 1,\n      \"SearchKey\": \"Go\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89437866210938,\n      \"Text\": \"hence\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08233454823493958,\n          \"Height\": 0.04634463042020798,\n          \"Left\": 0.5781607031822205,\n          \"Top\": 0.43129634857177734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781607031822205,\n            \"Y\": 0.43129634857177734\n          },\n          {\n            \"X\": 0.6604952812194824,\n            \"Y\": 0.43129634857177734\n          },\n          {\n            \"X\": 0.6604952812194824,\n            \"Y\": 0.4776409864425659\n          },\n          {\n            \"X\": 0.5781607031822205,\n            \"Y\": 0.4776409864425659\n          }\n        ]\n      },\n      \"Id\": \"693700ee-22fd-4ca3-b124-a29b28660f25\",\n      \"Page\": 1,\n      \"SearchKey\": \"hence\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97799682617188,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05676370859146118,\n          \"Height\": 0.04599500074982643,\n          \"Left\": 0.6627346277236938,\n          \"Top\": 0.43159618973731995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6627346277236938,\n            \"Y\": 0.43159618973731995\n          },\n          {\n            \"X\": 0.719498336315155,\n            \"Y\": 0.43159618973731995\n          },\n          {\n            \"X\": 0.719498336315155,\n            \"Y\": 0.4775911867618561\n          },\n          {\n            \"X\": 0.6627346277236938,\n            \"Y\": 0.4775911867618561\n          }\n        ]\n      },\n      \"Id\": \"2fdc8d22-09b4-4b83-a6fd-1025b8200bfb\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56505584716797,\n      \"Text\": \"caution,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10546571016311646,\n          \"Height\": 0.05015558376908302,\n          \"Left\": 0.7211328744888306,\n          \"Top\": 0.4323822259902954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7211328744888306,\n            \"Y\": 0.4323822259902954\n          },\n          {\n            \"X\": 0.8265986442565918,\n            \"Y\": 0.4323822259902954\n          },\n          {\n            \"X\": 0.8265986442565918,\n            \"Y\": 0.48253780603408813\n          },\n          {\n            \"X\": 0.7211328744888306,\n            \"Y\": 0.48253780603408813\n          }\n        ]\n      },\n      \"Id\": \"0f7469d4-ce53-4e45-9b2c-fe5ddd37c920\",\n      \"Page\": 1,\n      \"SearchKey\": \"caution,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98966217041016,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028995171189308167,\n          \"Height\": 0.04348653554916382,\n          \"Left\": 0.8297792673110962,\n          \"Top\": 0.43414244055747986\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8297792673110962,\n            \"Y\": 0.43414244055747986\n          },\n          {\n            \"X\": 0.8587744235992432,\n            \"Y\": 0.43414244055747986\n          },\n          {\n            \"X\": 0.8587744235992432,\n            \"Y\": 0.4776289761066437\n          },\n          {\n            \"X\": 0.8297792673110962,\n            \"Y\": 0.4776289761066437\n          }\n        ]\n      },\n      \"Id\": \"e7b45494-2c44-46f5-985c-bb97b4ab129c\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99414825439453,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0511980839073658,\n          \"Height\": 0.0448286347091198,\n          \"Left\": 0.8615209460258484,\n          \"Top\": 0.4330701231956482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8615209460258484,\n            \"Y\": 0.4330701231956482\n          },\n          {\n            \"X\": 0.9127190113067627,\n            \"Y\": 0.4330701231956482\n          },\n          {\n            \"X\": 0.9127190113067627,\n            \"Y\": 0.4778987467288971\n          },\n          {\n            \"X\": 0.8615209460258484,\n            \"Y\": 0.4778987467288971\n          }\n        ]\n      },\n      \"Id\": \"50461fe3-63e3-43c9-96e8-f7091bae625b\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99173736572266,\n      \"Text\": \"more\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06965427845716476,\n          \"Height\": 0.039017453789711,\n          \"Left\": 0.53261798620224,\n          \"Top\": 0.4906897246837616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.53261798620224,\n            \"Y\": 0.4906897246837616\n          },\n          {\n            \"X\": 0.6022722721099854,\n            \"Y\": 0.4906897246837616\n          },\n          {\n            \"X\": 0.6022722721099854,\n            \"Y\": 0.5297071933746338\n          },\n          {\n            \"X\": 0.53261798620224,\n            \"Y\": 0.5297071933746338\n          }\n        ]\n      },\n      \"Id\": \"2f3c1518-8907-44bd-ba03-d0b85c56899c\",\n      \"Page\": 1,\n      \"SearchKey\": \"more\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98758697509766,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09509942680597305,\n          \"Height\": 0.05385676771402359,\n          \"Left\": 0.6063442826271057,\n          \"Top\": 0.4834635257720947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6063442826271057,\n            \"Y\": 0.4834635257720947\n          },\n          {\n            \"X\": 0.7014437317848206,\n            \"Y\": 0.4834635257720947\n          },\n          {\n            \"X\": 0.7014437317848206,\n            \"Y\": 0.5373203158378601\n          },\n          {\n            \"X\": 0.6063442826271057,\n            \"Y\": 0.5373203158378601\n          }\n        ]\n      },\n      \"Id\": \"e39411fd-949d-48ae-a7af-780ebe98dc8e\",\n      \"Page\": 1,\n      \"SearchKey\": \"sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95415496826172,\n      \"Text\": \"documents.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15070794522762299,\n          \"Height\": 0.046826913952827454,\n          \"Left\": 0.7048490047454834,\n          \"Top\": 0.483575701713562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7048490047454834,\n            \"Y\": 0.483575701713562\n          },\n          {\n            \"X\": 0.8555569648742676,\n            \"Y\": 0.483575701713562\n          },\n          {\n            \"X\": 0.8555569648742676,\n            \"Y\": 0.5304026007652283\n          },\n          {\n            \"X\": 0.7048490047454834,\n            \"Y\": 0.5304026007652283\n          }\n        ]\n      },\n      \"Id\": \"2ef41a57-10b3-41e9-99c3-1d7d12cc4eee\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97244262695312,\n      \"Text\": \"From\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07060733437538147,\n          \"Height\": 0.04653570428490639,\n          \"Left\": 0.05860750749707222,\n          \"Top\": 0.5346819162368774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05860750749707222,\n            \"Y\": 0.5346819162368774\n          },\n          {\n            \"X\": 0.1292148381471634,\n            \"Y\": 0.5346819162368774\n          },\n          {\n            \"X\": 0.1292148381471634,\n            \"Y\": 0.5812176465988159\n          },\n          {\n            \"X\": 0.05860750749707222,\n            \"Y\": 0.5812176465988159\n          }\n        ]\n      },\n      \"Id\": \"13d2d313-f182-4c1c-a9f4-d77378ccf569\",\n      \"Page\": 1,\n      \"SearchKey\": \"From\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9590072631836,\n      \"Text\": \"ancient\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09770144522190094,\n          \"Height\": 0.04573943093419075,\n          \"Left\": 0.13207590579986572,\n          \"Top\": 0.5356197953224182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13207590579986572,\n            \"Y\": 0.5356197953224182\n          },\n          {\n            \"X\": 0.22977735102176666,\n            \"Y\": 0.5356197953224182\n          },\n          {\n            \"X\": 0.22977735102176666,\n            \"Y\": 0.5813592672348022\n          },\n          {\n            \"X\": 0.13207590579986572,\n            \"Y\": 0.5813592672348022\n          }\n        ]\n      },\n      \"Id\": \"59535473-5cdf-4bb8-8249-2e2604636180\",\n      \"Page\": 1,\n      \"SearchKey\": \"ancient\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9769058227539,\n      \"Text\": \"grudge\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09419948607683182,\n          \"Height\": 0.05430169403553009,\n          \"Left\": 0.23150178790092468,\n          \"Top\": 0.5363212823867798\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23150178790092468,\n            \"Y\": 0.5363212823867798\n          },\n          {\n            \"X\": 0.3257012665271759,\n            \"Y\": 0.5363212823867798\n          },\n          {\n            \"X\": 0.3257012665271759,\n            \"Y\": 0.5906229615211487\n          },\n          {\n            \"X\": 0.23150178790092468,\n            \"Y\": 0.5906229615211487\n          }\n        ]\n      },\n      \"Id\": \"c299efb8-5f60-40a2-9476-1cee4e449c3d\",\n      \"Page\": 1,\n      \"SearchKey\": \"grudge\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97991180419922,\n      \"Text\": \"break\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07694125175476074,\n          \"Height\": 0.045784249901771545,\n          \"Left\": 0.32829099893569946,\n          \"Top\": 0.5353999137878418\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32829099893569946,\n            \"Y\": 0.5353999137878418\n          },\n          {\n            \"X\": 0.4052322506904602,\n            \"Y\": 0.5353999137878418\n          },\n          {\n            \"X\": 0.4052322506904602,\n            \"Y\": 0.5811842083930969\n          },\n          {\n            \"X\": 0.32829099893569946,\n            \"Y\": 0.5811842083930969\n          }\n        ]\n      },\n      \"Id\": \"29115c22-4fab-4534-8cd3-588eadade346\",\n      \"Page\": 1,\n      \"SearchKey\": \"break\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98574829101562,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029061991721391678,\n          \"Height\": 0.043443966656923294,\n          \"Left\": 0.40761661529541016,\n          \"Top\": 0.5381091237068176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40761661529541016,\n            \"Y\": 0.5381091237068176\n          },\n          {\n            \"X\": 0.43667858839035034,\n            \"Y\": 0.5381091237068176\n          },\n          {\n            \"X\": 0.43667858839035034,\n            \"Y\": 0.5815531015396118\n          },\n          {\n            \"X\": 0.40761661529541016,\n            \"Y\": 0.5815531015396118\n          }\n        ]\n      },\n      \"Id\": \"ea61d6fd-1dc5-41ca-89d3-6846ea7c5e2f\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9847183227539,\n      \"Text\": \"new\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05735108256340027,\n          \"Height\": 0.03866926208138466,\n          \"Left\": 0.05791092664003372,\n          \"Top\": 0.5943717956542969\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05791092664003372,\n            \"Y\": 0.5943717956542969\n          },\n          {\n            \"X\": 0.11526200920343399,\n            \"Y\": 0.5943717956542969\n          },\n          {\n            \"X\": 0.11526200920343399,\n            \"Y\": 0.6330410242080688\n          },\n          {\n            \"X\": 0.05791092664003372,\n            \"Y\": 0.6330410242080688\n          }\n        ]\n      },\n      \"Id\": \"3d8bd756-2b48-40af-8263-c566af2d9e01\",\n      \"Page\": 1,\n      \"SearchKey\": \"new\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.852783203125,\n      \"Text\": \"technological\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17345742881298065,\n          \"Height\": 0.053802490234375,\n          \"Left\": 0.11714185029268265,\n          \"Top\": 0.5871453285217285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11714185029268265,\n            \"Y\": 0.5871453285217285\n          },\n          {\n            \"X\": 0.2905992865562439,\n            \"Y\": 0.5871453285217285\n          },\n          {\n            \"X\": 0.2905992865562439,\n            \"Y\": 0.6409478187561035\n          },\n          {\n            \"X\": 0.11714185029268265,\n            \"Y\": 0.6409478187561035\n          }\n        ]\n      },\n      \"Id\": \"8d297b6b-6770-4f15-b724-9db1e1fdafe1\",\n      \"Page\": 1,\n      \"SearchKey\": \"technological\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85227966308594,\n      \"Text\": \"advance,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11862538754940033,\n          \"Height\": 0.048066649585962296,\n          \"Left\": 0.29261142015457153,\n          \"Top\": 0.5894228219985962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29261142015457153,\n            \"Y\": 0.5894228219985962\n          },\n          {\n            \"X\": 0.41123679280281067,\n            \"Y\": 0.5894228219985962\n          },\n          {\n            \"X\": 0.41123679280281067,\n            \"Y\": 0.6374894380569458\n          },\n          {\n            \"X\": 0.29261142015457153,\n            \"Y\": 0.6374894380569458\n          }\n        ]\n      },\n      \"Id\": \"008ad91b-3a27-468c-bba9-a0f54c0a051f\",\n      \"Page\": 1,\n      \"SearchKey\": \"advance,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9873046875,\n      \"Text\": \"For\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047630492597818375,\n          \"Height\": 0.04646487161517143,\n          \"Left\": 0.5333259105682373,\n          \"Top\": 0.5863147974014282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5333259105682373,\n            \"Y\": 0.5863147974014282\n          },\n          {\n            \"X\": 0.5809563994407654,\n            \"Y\": 0.5863147974014282\n          },\n          {\n            \"X\": 0.5809563994407654,\n            \"Y\": 0.6327796578407288\n          },\n          {\n            \"X\": 0.5333259105682373,\n            \"Y\": 0.6327796578407288\n          }\n        ]\n      },\n      \"Id\": \"623d9b06-6f88-4d98-b536-ae5ced04712f\",\n      \"Page\": 1,\n      \"SearchKey\": \"For\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95410919189453,\n      \"Text\": \"never\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07668933272361755,\n          \"Height\": 0.03885664790868759,\n          \"Left\": 0.583328127861023,\n          \"Top\": 0.5938580632209778\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.583328127861023,\n            \"Y\": 0.5938580632209778\n          },\n          {\n            \"X\": 0.6600174903869629,\n            \"Y\": 0.5938580632209778\n          },\n          {\n            \"X\": 0.6600174903869629,\n            \"Y\": 0.6327146887779236\n          },\n          {\n            \"X\": 0.583328127861023,\n            \"Y\": 0.6327146887779236\n          }\n        ]\n      },\n      \"Id\": \"457e81f9-51fc-47ab-b9ed-c7ff5c6667c6\",\n      \"Page\": 1,\n      \"SearchKey\": \"never\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9861831665039,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055753011256456375,\n          \"Height\": 0.0392439179122448,\n          \"Left\": 0.6617962718009949,\n          \"Top\": 0.5936533212661743\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6617962718009949,\n            \"Y\": 0.5936533212661743\n          },\n          {\n            \"X\": 0.7175492644309998,\n            \"Y\": 0.5936533212661743\n          },\n          {\n            \"X\": 0.7175492644309998,\n            \"Y\": 0.6328972578048706\n          },\n          {\n            \"X\": 0.6617962718009949,\n            \"Y\": 0.6328972578048706\n          }\n        ]\n      },\n      \"Id\": \"99b960de-fa24-4636-8093-447e631cd590\",\n      \"Page\": 1,\n      \"SearchKey\": \"was\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89513397216797,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021206535398960114,\n          \"Height\": 0.03767434507608414,\n          \"Left\": 0.7205989956855774,\n          \"Top\": 0.5950679183006287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7205989956855774,\n            \"Y\": 0.5950679183006287\n          },\n          {\n            \"X\": 0.7418055534362793,\n            \"Y\": 0.5950679183006287\n          },\n          {\n            \"X\": 0.7418055534362793,\n            \"Y\": 0.6327422857284546\n          },\n          {\n            \"X\": 0.7205989956855774,\n            \"Y\": 0.6327422857284546\n          }\n        ]\n      },\n      \"Id\": \"b19a2283-c1c5-4c3c-8295-9c67575ade5d\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97254943847656,\n      \"Text\": \"heuristic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11060018837451935,\n          \"Height\": 0.04667635262012482,\n          \"Left\": 0.7445588111877441,\n          \"Top\": 0.5864063501358032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7445588111877441,\n            \"Y\": 0.5864063501358032\n          },\n          {\n            \"X\": 0.8551590442657471,\n            \"Y\": 0.5864063501358032\n          },\n          {\n            \"X\": 0.8551590442657471,\n            \"Y\": 0.6330826878547668\n          },\n          {\n            \"X\": 0.7445588111877441,\n            \"Y\": 0.6330826878547668\n          }\n        ]\n      },\n      \"Id\": \"1e34cdce-2960-4b2e-a488-3b0c3b2321a4\",\n      \"Page\": 1,\n      \"SearchKey\": \"heuristic\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98733520507812,\n      \"Text\": \"where\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08191827684640884,\n          \"Height\": 0.04502874240279198,\n          \"Left\": 0.05775335058569908,\n          \"Top\": 0.6395689845085144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05775335058569908,\n            \"Y\": 0.6395689845085144\n          },\n          {\n            \"X\": 0.13967162370681763,\n            \"Y\": 0.6395689845085144\n          },\n          {\n            \"X\": 0.13967162370681763,\n            \"Y\": 0.6845977306365967\n          },\n          {\n            \"X\": 0.05775335058569908,\n            \"Y\": 0.6845977306365967\n          }\n        ]\n      },\n      \"Id\": \"cfe847a3-9756-4627-9cbe-a8be01b10fa2\",\n      \"Page\": 1,\n      \"SearchKey\": \"where\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95663452148438,\n      \"Text\": \"textual\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937455713748932,\n          \"Height\": 0.04483009874820709,\n          \"Left\": 0.1428229659795761,\n          \"Top\": 0.6397828459739685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1428229659795761,\n            \"Y\": 0.6397828459739685\n          },\n          {\n            \"X\": 0.23219753801822662,\n            \"Y\": 0.6397828459739685\n          },\n          {\n            \"X\": 0.23219753801822662,\n            \"Y\": 0.6846129298210144\n          },\n          {\n            \"X\": 0.1428229659795761,\n            \"Y\": 0.6846129298210144\n          }\n        ]\n      },\n      \"Id\": \"d2f370f1-f4ca-441f-bd59-66ad0e3e45a9\",\n      \"Page\": 1,\n      \"SearchKey\": \"textual\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98856353759766,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888113290071487,\n          \"Height\": 0.05490326136350632,\n          \"Left\": 0.2354205697774887,\n          \"Top\": 0.6390389800071716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2354205697774887,\n            \"Y\": 0.6390389800071716\n          },\n          {\n            \"X\": 0.3343017101287842,\n            \"Y\": 0.6390389800071716\n          },\n          {\n            \"X\": 0.3343017101287842,\n            \"Y\": 0.6939422488212585\n          },\n          {\n            \"X\": 0.2354205697774887,\n            \"Y\": 0.6939422488212585\n          }\n        ]\n      },\n      \"Id\": \"4c30551b-16e1-4398-a55c-5f9dbceaa654\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94623565673828,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07234510034322739,\n          \"Height\": 0.04571105167269707,\n          \"Left\": 0.3376959562301636,\n          \"Top\": 0.6395983695983887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3376959562301636,\n            \"Y\": 0.6395983695983887\n          },\n          {\n            \"X\": 0.41004106402397156,\n            \"Y\": 0.6395983695983887\n          },\n          {\n            \"X\": 0.41004106402397156,\n            \"Y\": 0.6853094100952148\n          },\n          {\n            \"X\": 0.3376959562301636,\n            \"Y\": 0.6853094100952148\n          }\n        ]\n      },\n      \"Id\": \"d888f11e-9421-45d2-b526-7d1c610c0c33\",\n      \"Page\": 1,\n      \"SearchKey\": \"order\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95181274414062,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02513636089861393,\n          \"Height\": 0.04616532474756241,\n          \"Left\": 0.4125742018222809,\n          \"Top\": 0.6389520764350891\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4125742018222809,\n            \"Y\": 0.6389520764350891\n          },\n          {\n            \"X\": 0.43771055340766907,\n            \"Y\": 0.6389520764350891\n          },\n          {\n            \"X\": 0.43771055340766907,\n            \"Y\": 0.6851173639297485\n          },\n          {\n            \"X\": 0.4125742018222809,\n            \"Y\": 0.6851173639297485\n          }\n        ]\n      },\n      \"Id\": \"f37594b0-ca6e-4a5d-be11-b31726ea7354\",\n      \"Page\": 1,\n      \"SearchKey\": \"is\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16737365722656,\n      \"Text\": \"infallible,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11555314809083939,\n          \"Height\": 0.05204339325428009,\n          \"Left\": 0.5320184826850891,\n          \"Top\": 0.6393308639526367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5320184826850891,\n            \"Y\": 0.6393308639526367\n          },\n          {\n            \"X\": 0.6475716829299927,\n            \"Y\": 0.6393308639526367\n          },\n          {\n            \"X\": 0.6475716829299927,\n            \"Y\": 0.6913742423057556\n          },\n          {\n            \"X\": 0.5320184826850891,\n            \"Y\": 0.6913742423057556\n          }\n        ]\n      },\n      \"Id\": \"af4ec370-f512-41cc-bb00-a685a485d402\",\n      \"Page\": 1,\n      \"SearchKey\": \"infallible,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9970703125,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03889834135770798,\n          \"Height\": 0.047358665615320206,\n          \"Left\": 0.6506510376930237,\n          \"Top\": 0.6373533010482788\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6506510376930237,\n            \"Y\": 0.6373533010482788\n          },\n          {\n            \"X\": 0.6895493865013123,\n            \"Y\": 0.6373533010482788\n          },\n          {\n            \"X\": 0.6895493865013123,\n            \"Y\": 0.6847119927406311\n          },\n          {\n            \"X\": 0.6506510376930237,\n            \"Y\": 0.6847119927406311\n          }\n        ]\n      },\n      \"Id\": \"abf826a2-d6ab-43d1-bba8-aa55dcc7e1bb\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99412536621094,\n      \"Text\": \"trying\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07457324862480164,\n          \"Height\": 0.054832879453897476,\n          \"Left\": 0.6919483542442322,\n          \"Top\": 0.6398191452026367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919483542442322,\n            \"Y\": 0.6398191452026367\n          },\n          {\n            \"X\": 0.7665215730667114,\n            \"Y\": 0.6398191452026367\n          },\n          {\n            \"X\": 0.7665215730667114,\n            \"Y\": 0.6946520209312439\n          },\n          {\n            \"X\": 0.6919483542442322,\n            \"Y\": 0.6946520209312439\n          }\n        ]\n      },\n      \"Id\": \"b9385dbc-da20-4ce9-84ac-784548cb0199\",\n      \"Page\": 1,\n      \"SearchKey\": \"trying\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99063110351562,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02896711230278015,\n          \"Height\": 0.044270869344472885,\n          \"Left\": 0.7695976495742798,\n          \"Top\": 0.6409511566162109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7695976495742798,\n            \"Y\": 0.6409511566162109\n          },\n          {\n            \"X\": 0.7985647320747375,\n            \"Y\": 0.6409511566162109\n          },\n          {\n            \"X\": 0.7985647320747375,\n            \"Y\": 0.6852220296859741\n          },\n          {\n            \"X\": 0.7695976495742798,\n            \"Y\": 0.6852220296859741\n          }\n        ]\n      },\n      \"Id\": \"acf54c2a-ea5a-47a8-a741-a4ca7df01c17\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95843505859375,\n      \"Text\": \"sort\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052513085305690765,\n          \"Height\": 0.04435758292675018,\n          \"Left\": 0.8019120097160339,\n          \"Top\": 0.6408993601799011\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8019120097160339,\n            \"Y\": 0.6408993601799011\n          },\n          {\n            \"X\": 0.8544250726699829,\n            \"Y\": 0.6408993601799011\n          },\n          {\n            \"X\": 0.8544250726699829,\n            \"Y\": 0.6852569580078125\n          },\n          {\n            \"X\": 0.8019120097160339,\n            \"Y\": 0.6852569580078125\n          }\n        ]\n      },\n      \"Id\": \"bad5bae2-3c51-4419-9fb6-418308f507de\",\n      \"Page\": 1,\n      \"SearchKey\": \"sort\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98954772949219,\n      \"Text\": \"text\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05133259296417236,\n          \"Height\": 0.044620417058467865,\n          \"Left\": 0.8568840026855469,\n          \"Top\": 0.6402931213378906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8568840026855469,\n            \"Y\": 0.6402931213378906\n          },\n          {\n            \"X\": 0.9082165956497192,\n            \"Y\": 0.6402931213378906\n          },\n          {\n            \"X\": 0.9082165956497192,\n            \"Y\": 0.6849135756492615\n          },\n          {\n            \"X\": 0.8568840026855469,\n            \"Y\": 0.6849135756492615\n          }\n        ]\n      },\n      \"Id\": \"8d126fb8-0433-4517-b4e2-86f30d230f4e\",\n      \"Page\": 1,\n      \"SearchKey\": \"text\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.560302734375,\n      \"Text\": \"preserved.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13818325102329254,\n          \"Height\": 0.054607994854450226,\n          \"Left\": 0.057880744338035583,\n          \"Top\": 0.6908083558082581\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057880744338035583,\n            \"Y\": 0.6908083558082581\n          },\n          {\n            \"X\": 0.19606399536132812,\n            \"Y\": 0.6908083558082581\n          },\n          {\n            \"X\": 0.19606399536132812,\n            \"Y\": 0.7454163432121277\n          },\n          {\n            \"X\": 0.057880744338035583,\n            \"Y\": 0.7454163432121277\n          }\n        ]\n      },\n      \"Id\": \"0d2deb2f-4cf7-4c39-90b3-9788dd9bbc06\",\n      \"Page\": 1,\n      \"SearchKey\": \"preserved.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4672622680664,\n      \"Text\": \"In\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027554191648960114,\n          \"Height\": 0.04572794586420059,\n          \"Left\": 0.7403310537338257,\n          \"Top\": 0.742501974105835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7403310537338257,\n            \"Y\": 0.742501974105835\n          },\n          {\n            \"X\": 0.7678852677345276,\n            \"Y\": 0.742501974105835\n          },\n          {\n            \"X\": 0.7678852677345276,\n            \"Y\": 0.7882298827171326\n          },\n          {\n            \"X\": 0.7403310537338257,\n            \"Y\": 0.7882298827171326\n          }\n        ]\n      },\n      \"Id\": \"d7fc32a5-b91d-47b9-93fd-5057745c12a3\",\n      \"Page\": 1,\n      \"SearchKey\": \"In\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98799896240234,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10040470957756042,\n          \"Height\": 0.055797845125198364,\n          \"Left\": 0.7703495621681213,\n          \"Top\": 0.7424153089523315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7703495621681213,\n            \"Y\": 0.7424153089523315\n          },\n          {\n            \"X\": 0.8707543015480042,\n            \"Y\": 0.7424153089523315\n          },\n          {\n            \"X\": 0.8707543015480042,\n            \"Y\": 0.7982131838798523\n          },\n          {\n            \"X\": 0.7703495621681213,\n            \"Y\": 0.7982131838798523\n          }\n        ]\n      },\n      \"Id\": \"b3a53577-6a1f-4d66-949e-945417f4c2b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95296478271484,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07195885479450226,\n          \"Height\": 0.04595215246081352,\n          \"Left\": 0.874214768409729,\n          \"Top\": 0.7427783012390137\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.874214768409729,\n            \"Y\": 0.7427783012390137\n          },\n          {\n            \"X\": 0.9461736679077148,\n            \"Y\": 0.7427783012390137\n          },\n          {\n            \"X\": 0.9461736679077148,\n            \"Y\": 0.7887304425239563\n          },\n          {\n            \"X\": 0.874214768409729,\n            \"Y\": 0.7887304425239563\n          }\n        ]\n      },\n      \"Id\": \"ca37df8c-07c4-420a-a0fd-03eaa965ec7c\",\n      \"Page\": 1,\n      \"SearchKey\": \"order\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94834899902344,\n      \"Text\": \"THE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06255539506673813,\n          \"Height\": 0.04693693667650223,\n          \"Left\": 0.4339502453804016,\n          \"Top\": 0.8525685667991638\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4339502453804016,\n            \"Y\": 0.8525685667991638\n          },\n          {\n            \"X\": 0.49650561809539795,\n            \"Y\": 0.8525685667991638\n          },\n          {\n            \"X\": 0.49650561809539795,\n            \"Y\": 0.8995054960250854\n          },\n          {\n            \"X\": 0.4339502453804016,\n            \"Y\": 0.8995054960250854\n          }\n        ]\n      },\n      \"Id\": \"5f257354-1277-47e1-92e4-dbfe3cdd90fe\",\n      \"Page\": 1,\n      \"SearchKey\": \"THE\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86460876464844,\n      \"Text\": \"END\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06451669335365295,\n          \"Height\": 0.046732209622859955,\n          \"Left\": 0.4998926818370819,\n          \"Top\": 0.8527930974960327\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4998926818370819,\n            \"Y\": 0.8527930974960327\n          },\n          {\n            \"X\": 0.5644093751907349,\n            \"Y\": 0.8527930974960327\n          },\n          {\n            \"X\": 0.5644093751907349,\n            \"Y\": 0.8995253443717957\n          },\n          {\n            \"X\": 0.4998926818370819,\n            \"Y\": 0.8995253443717957\n          }\n        ]\n      },\n      \"Id\": \"668647cc-1533-4835-a82a-8f37c64145f4\",\n      \"Page\": 1,\n      \"SearchKey\": \"END\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98011016845703,\n      \"Text\": \"Page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07024090737104416,\n          \"Height\": 0.05635346844792366,\n          \"Left\": 0.8462904691696167,\n          \"Top\": 0.8527237176895142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8462904691696167,\n            \"Y\": 0.8527237176895142\n          },\n          {\n            \"X\": 0.9165313839912415,\n            \"Y\": 0.8527237176895142\n          },\n          {\n            \"X\": 0.9165313839912415,\n            \"Y\": 0.9090772271156311\n          },\n          {\n            \"X\": 0.8462904691696167,\n            \"Y\": 0.9090772271156311\n          }\n        ]\n      },\n      \"Id\": \"5da82fd2-e124-4c1d-88ae-ec6a40896b29\",\n      \"Page\": 1,\n      \"SearchKey\": \"Page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86890411376953,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015661591663956642,\n          \"Height\": 0.04445341229438782,\n          \"Left\": 0.9216275215148926,\n          \"Top\": 0.8542836904525757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9216275215148926,\n            \"Y\": 0.8542836904525757\n          },\n          {\n            \"X\": 0.9372891187667847,\n            \"Y\": 0.8542836904525757\n          },\n          {\n            \"X\": 0.9372891187667847,\n            \"Y\": 0.8987370729446411\n          },\n          {\n            \"X\": 0.9216275215148926,\n            \"Y\": 0.8987370729446411\n          }\n        ]\n      },\n      \"Id\": \"e46a98d7-597e-4021-81c3-04558c8e48e1\",\n      \"Page\": 1,\n      \"SearchKey\": \"1\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 90.75404357910156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8975784778594971,\n          \"Height\": 0.5049440860748291,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.18594293296337128\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.18594293296337128\n          },\n          {\n            \"X\": 0.9476476311683655,\n            \"Y\": 0.18594293296337128\n          },\n          {\n            \"X\": 0.9476476311683655,\n            \"Y\": 0.6908869743347168\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.6908869743347168\n          }\n        ]\n      },\n      \"Id\": \"514779a9-1a8f-42e5-ac6a-1701770691f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1ca91fad-17e9-4935-b740-721c7a3a82d8\",\n            \"9421ee87-8de5-4506-85f6-d280e12ea6ea\",\n            \"41e5342b-b70c-4612-9bf9-44ae7a7a7af4\",\n            \"9da6c643-12a3-4efb-86e0-2c68a5ed7d9b\",\n            \"2e86b35a-bb0b-46ad-8398-ba7ba20ddac7\",\n            \"1e9f892d-70ff-4536-b7c0-a584bb62e1e6\",\n            \"9d6b91b1-37d2-40a6-87cf-84ad7de3b98d\",\n            \"bbfd0219-2ef4-4661-8463-7d1345f87e68\",\n            \"b086d40d-acd8-4647-90ea-cf1ca8b9a632\",\n            \"e9922e03-9144-489d-a932-7151f51904bf\",\n            \"4a0cbd47-bf41-46c2-b637-94d8556865c4\",\n            \"ca285664-6b4f-4642-87a1-ff98ee85aa14\",\n            \"fb645098-a0d0-4bc0-b74a-ae2b07671c10\",\n            \"4b2514c6-c528-4f08-aabf-01fc4a363e33\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.71688079833984,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.09214306622743607,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.18594293296337128\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.18594293296337128\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.18594293296337128\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.27808600664138794\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.27808600664138794\n          }\n        ]\n      },\n      \"Id\": \"1ca91fad-17e9-4935-b740-721c7a3a82d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e3b8afb-ffc9-4d38-8912-6df0a1456cbd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"[ENTER] \",\n      \"SearchKey\": \"[ENTER] \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 24.02571678161621,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.09214306622743607,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.18594293296337128\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.18594293296337128\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.18594293296337128\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.27808600664138794\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.27808600664138794\n          }\n        ]\n      },\n      \"Id\": \"9421ee87-8de5-4506-85f6-d280e12ea6ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2ed8fe92-5125-4811-bec2-19f746c9d828\",\n            \"baa2753a-e2e6-4269-8104-09d7f2e49205\",\n            \"040c6bf1-316c-4386-82b3-5cfa333d6fc0\",\n            \"a9db518b-b7b8-47f5-9c8a-cad5838fc572\",\n            \"3d4a0b49-a4be-403b-805e-55f0b504bf59\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A glooming peace this example \",\n      \"SearchKey\": \"A glooming peace this example \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.98092651367188,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.047914400696754456,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.27808597683906555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.27808597683906555\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.27808597683906555\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.3260003924369812\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.3260003924369812\n          }\n        ]\n      },\n      \"Id\": \"41e5342b-b70c-4612-9bf9-44ae7a7a7af4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 47.42741394042969,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.047914400696754456,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.27808597683906555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.27808597683906555\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.27808597683906555\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.3260003924369812\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.3260003924369812\n          }\n        ]\n      },\n      \"Id\": \"9da6c643-12a3-4efb-86e0-2c68a5ed7d9b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0e420c76-5fe6-4c5f-a58a-870b67dae922\",\n            \"d9bbd1cd-3393-482f-86d1-5c5e883ba4b9\",\n            \"7f19517a-59a4-4f5c-9356-473e2d0b8622\",\n            \"f494e7b7-6f3a-4cca-ba88-37edd2fe8e0e\",\n            \"56e3dc49-0171-4a0c-a453-0455bf3b9fc7\",\n            \"eb491efe-2e8b-47cc-92ce-1153ed36d2cd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"with it brings; The author, for \",\n      \"SearchKey\": \"with it brings; The author, for \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 70.81333923339844,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.05528583005070686,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.3260003924369812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.3260003924369812\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.3260003924369812\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.38128623366355896\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.38128623366355896\n          }\n        ]\n      },\n      \"Id\": \"2e86b35a-bb0b-46ad-8398-ba7ba20ddac7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2edbac7d-8df2-492a-8a3f-050ee4e43adb\",\n            \"39cd86c8-df3e-43a3-b0ff-d97d350c480f\",\n            \"ae87d747-c1ce-4e42-b154-60b26d69e0cc\",\n            \"abbc662b-3982-42e1-be3b-494748a01ffd\",\n            \"f9816e47-ff98-40a4-abf0-d61b419bd272\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Two columns, both alike in \",\n      \"SearchKey\": \"Two columns, both alike in \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 74.3925552368164,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.05528583005070686,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.3260003924369812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.3260003924369812\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.3260003924369812\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.38128623366355896\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.38128623366355896\n          }\n        ]\n      },\n      \"Id\": \"1e9f892d-70ff-4536-b7c0-a584bb62e1e6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f18b0634-5f6c-49e3-948e-3bb3dd753c1e\",\n            \"1aed0979-62a2-4773-a678-3b492de7e5e7\",\n            \"151a63d6-3743-4e20-809d-39f752f62f25\",\n            \"8c67bcab-27a7-4e9f-8f73-0bbb3f1fc9b3\",\n            \"51d8c07f-94db-4b01-b061-681dfcf16030\",\n            \"25890c7b-a6ab-4f4e-b369-6b0dcaafa7cd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"fear, will not show his head: \",\n      \"SearchKey\": \"fear, will not show his head: \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 69.21353912353516,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.04054299741983414,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.3812862038612366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.3812862038612366\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.3812862038612366\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.4218292236328125\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.4218292236328125\n          }\n        ]\n      },\n      \"Id\": \"9d6b91b1-37d2-40a6-87cf-84ad7de3b98d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0832eb49-fc55-4bc3-a8c6-378c8263d524\",\n            \"59f350e0-1a69-49cf-9b69-6703db93e1aa\",\n            \"e3cc7488-1ecc-47cd-952e-fc033d6f0279\",\n            \"5969e587-a8f6-4602-bf1c-8307b9b06c56\",\n            \"9aff75f6-d6f8-4ff0-a1cb-8120d06d4013\",\n            \"58334bfa-0cec-4874-8e8b-9d3f955f8da8\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"dignity, in fair Verona, where we \",\n      \"SearchKey\": \"dignity, in fair Verona, where we \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 70.38885498046875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.04054299741983414,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.3812862038612366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.3812862038612366\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.3812862038612366\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.4218292236328125\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.4218292236328125\n          }\n        ]\n      },\n      \"Id\": \"bbfd0219-2ef4-4661-8463-7d1345f87e68\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 59.058815002441406,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.11425741761922836,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.4218292236328125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.4218292236328125\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.4218292236328125\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.5360866785049438\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.5360866785049438\n          }\n        ]\n      },\n      \"Id\": \"b086d40d-acd8-4647-90ea-cf1ca8b9a632\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e838fd5b-cd85-46f5-8104-f4fa3db390e6\",\n            \"8c3fb1f5-4a5d-460b-a39c-9ad9332f1c9e\",\n            \"5c2bd0b1-a1ef-45a7-8cd6-0779b996ccf0\",\n            \"6905a84f-d97a-4281-b800-b8741ea25640\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"lay our sample document. \",\n      \"SearchKey\": \"lay our sample document. \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.3387222290039,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.11425741761922836,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.4218292236328125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.4218292236328125\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.4218292236328125\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.5360866785049438\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.5360866785049438\n          }\n        ]\n      },\n      \"Id\": \"e9922e03-9144-489d-a932-7151f51904bf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46b7f5c1-ecbe-4e7c-b41a-7740f6568cef\",\n            \"693700ee-22fd-4ca3-b124-a29b28660f25\",\n            \"2fdc8d22-09b4-4b83-a6fd-1025b8200bfb\",\n            \"0f7469d4-ce53-4e45-9b2c-fe5ddd37c920\",\n            \"e7b45494-2c44-46f5-985c-bb97b4ab129c\",\n            \"50461fe3-63e3-43c9-96e8-f7091bae625b\",\n            \"2f3c1518-8907-44bd-ba03-d0b85c56899c\",\n            \"e39411fd-949d-48ae-a7af-780ebe98dc8e\",\n            \"2ef41a57-10b3-41e9-99c3-1d7d12cc4eee\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Go hence with caution, to test more sample documents. \",\n      \"SearchKey\": \"Go hence with caution, to test more sample documents. \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.00631713867188,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.10688596218824387,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.5360866785049438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.5360866785049438\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.5360866785049438\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.6429726481437683\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.6429726481437683\n          }\n        ]\n      },\n      \"Id\": \"4a0cbd47-bf41-46c2-b637-94d8556865c4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13d2d313-f182-4c1c-a9f4-d77378ccf569\",\n            \"59535473-5cdf-4bb8-8249-2e2604636180\",\n            \"c299efb8-5f60-40a2-9476-1cee4e449c3d\",\n            \"29115c22-4fab-4534-8cd3-588eadade346\",\n            \"ea61d6fd-1dc5-41ca-89d3-6846ea7c5e2f\",\n            \"3d8bd756-2b48-40af-8263-c566af2d9e01\",\n            \"8d297b6b-6770-4f15-b724-9db1e1fdafe1\",\n            \"008ad91b-3a27-468c-bba9-a0f54c0a051f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"From ancient grudge break to new technological advance, \",\n      \"SearchKey\": \"From ancient grudge break to new technological advance, \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 57.645233154296875,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.10688596218824387,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.5360866785049438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.5360866785049438\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.5360866785049438\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.6429726481437683\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.6429726481437683\n          }\n        ]\n      },\n      \"Id\": \"ca285664-6b4f-4642-87a1-ff98ee85aa14\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"623d9b06-6f88-4d98-b536-ae5ced04712f\",\n            \"457e81f9-51fc-47ab-b9ed-c7ff5c6667c6\",\n            \"99b960de-fa24-4636-8093-447e631cd590\",\n            \"b19a2283-c1c5-4c3c-8295-9c67575ade5d\",\n            \"1e34cdce-2960-4b2e-a488-3b0c3b2321a4\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"For never was a heuristic \",\n      \"SearchKey\": \"For never was a heuristic \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 60.892093658447266,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.44050025939941406,\n          \"Height\": 0.047914400696754456,\n          \"Left\": 0.05006920173764229,\n          \"Top\": 0.6429725885391235\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.6429725885391235\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.6429725885391235\n          },\n          {\n            \"X\": 0.49056947231292725,\n            \"Y\": 0.6908869743347168\n          },\n          {\n            \"X\": 0.05006920173764229,\n            \"Y\": 0.6908869743347168\n          }\n        ]\n      },\n      \"Id\": \"fb645098-a0d0-4bc0-b74a-ae2b07671c10\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cfe847a3-9756-4627-9cbe-a8be01b10fa2\",\n            \"d2f370f1-f4ca-441f-bd59-66ad0e3e45a9\",\n            \"4c30551b-16e1-4398-a55c-5f9dbceaa654\",\n            \"d888f11e-9421-45d2-b526-7d1c610c0c33\",\n            \"f37594b0-ca6e-4a5d-be11-b31726ea7354\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"where textual reading order is \",\n      \"SearchKey\": \"where textual reading order is \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 50.37116241455078,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4570781886577606,\n          \"Height\": 0.047914400696754456,\n          \"Left\": 0.49056950211524963,\n          \"Top\": 0.6429725885391235\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.6429725885391235\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.6429725885391235\n          },\n          {\n            \"X\": 0.9476476907730103,\n            \"Y\": 0.6908869743347168\n          },\n          {\n            \"X\": 0.49056950211524963,\n            \"Y\": 0.6908869743347168\n          }\n        ]\n      },\n      \"Id\": \"4b2514c6-c528-4f08-aabf-01fc4a363e33\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"af4ec370-f512-41cc-bb00-a685a485d402\",\n            \"abf826a2-d6ab-43d1-bba8-aa55dcc7e1bb\",\n            \"b9385dbc-da20-4ce9-84ac-784548cb0199\",\n            \"acf54c2a-ea5a-47a8-a741-a4ca7df01c17\",\n            \"bad5bae2-3c51-4419-9fb6-418308f507de\",\n            \"8d126fb8-0433-4517-b4e2-86f30d230f4e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"infallible, for trying to sort text \",\n      \"SearchKey\": \"infallible, for trying to sort text \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 36,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08942142128944397,\n          \"Height\": 0.053681038320064545,\n          \"Left\": 0.8461402654647827,\n          \"Top\": 0.8532310724258423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8461402654647827,\n            \"Y\": 0.8532310724258423\n          },\n          {\n            \"X\": 0.9355617165565491,\n            \"Y\": 0.8532310724258423\n          },\n          {\n            \"X\": 0.9355617165565491,\n            \"Y\": 0.906912088394165\n          },\n          {\n            \"X\": 0.8461402654647827,\n            \"Y\": 0.906912088394165\n          }\n        ]\n      },\n      \"Id\": \"6900a245-2247-4f5e-9fb6-4309916ca462\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"5789ca54-ef66-4bd3-a51a-49ac6a4d1690\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5da82fd2-e124-4c1d-88ae-ec6a40896b29\",\n            \"e46a98d7-597e-4021-81c3-04558c8e48e1\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Page 1 \",\n      \"SearchKey\": \"Page 1 \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 36,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09300629794597626,\n          \"Height\": 0.06638361513614655,\n          \"Left\": 0.7483727335929871,\n          \"Top\": 0.83412104845047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7483727335929871,\n            \"Y\": 0.83412104845047\n          },\n          {\n            \"X\": 0.8413790464401245,\n            \"Y\": 0.83412104845047\n          },\n          {\n            \"X\": 0.8413790464401245,\n            \"Y\": 0.9005046486854553\n          },\n          {\n            \"X\": 0.7483727335929871,\n            \"Y\": 0.9005046486854553\n          }\n        ]\n      },\n      \"Id\": \"5789ca54-ef66-4bd3-a51a-49ac6a4d1690\",\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 20,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3871219754219055,\n          \"Height\": 0.2008388787508011,\n          \"Left\": 0.06078241765499115,\n          \"Top\": 0.5310969352722168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06078241765499115,\n            \"Y\": 0.5310969352722168\n          },\n          {\n            \"X\": 0.44790440797805786,\n            \"Y\": 0.5310969352722168\n          },\n          {\n            \"X\": 0.44790440797805786,\n            \"Y\": 0.7319358587265015\n          },\n          {\n            \"X\": 0.06078241765499115,\n            \"Y\": 0.7319358587265015\n          }\n        ]\n      },\n      \"Id\": \"7a109c0e-ec61-43e5-8008-1b535054b829\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"677e8610-57aa-491c-a600-783ed3c8af8b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13d2d313-f182-4c1c-a9f4-d77378ccf569\",\n            \"59535473-5cdf-4bb8-8249-2e2604636180\",\n            \"c299efb8-5f60-40a2-9476-1cee4e449c3d\",\n            \"29115c22-4fab-4534-8cd3-588eadade346\",\n            \"ea61d6fd-1dc5-41ca-89d3-6846ea7c5e2f\",\n            \"3d8bd756-2b48-40af-8263-c566af2d9e01\",\n            \"8d297b6b-6770-4f15-b724-9db1e1fdafe1\",\n            \"008ad91b-3a27-468c-bba9-a0f54c0a051f\",\n            \"cfe847a3-9756-4627-9cbe-a8be01b10fa2\",\n            \"d2f370f1-f4ca-441f-bd59-66ad0e3e45a9\",\n            \"4c30551b-16e1-4398-a55c-5f9dbceaa654\",\n            \"d888f11e-9421-45d2-b526-7d1c610c0c33\",\n            \"f37594b0-ca6e-4a5d-be11-b31726ea7354\",\n            \"0d2deb2f-4cf7-4c39-90b3-9788dd9bbc06\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"From ancient grudge break to new technological advance, where textual reading order is preserved. \",\n      \"SearchKey\": \"From ancient grudge break to new technological advance, where textual reading order is preserved. \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 20,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3822784721851349,\n          \"Height\": 0.10637605935335159,\n          \"Left\": 0.5246033072471619,\n          \"Top\": 0.5859284996986389\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5246033072471619,\n            \"Y\": 0.5859284996986389\n          },\n          {\n            \"X\": 0.9068817496299744,\n            \"Y\": 0.5859284996986389\n          },\n          {\n            \"X\": 0.9068817496299744,\n            \"Y\": 0.6923045516014099\n          },\n          {\n            \"X\": 0.5246033072471619,\n            \"Y\": 0.6923045516014099\n          }\n        ]\n      },\n      \"Id\": \"677e8610-57aa-491c-a600-783ed3c8af8b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"623d9b06-6f88-4d98-b536-ae5ced04712f\",\n            \"457e81f9-51fc-47ab-b9ed-c7ff5c6667c6\",\n            \"99b960de-fa24-4636-8093-447e631cd590\",\n            \"b19a2283-c1c5-4c3c-8295-9c67575ade5d\",\n            \"1e34cdce-2960-4b2e-a488-3b0c3b2321a4\",\n            \"af4ec370-f512-41cc-bb00-a685a485d402\",\n            \"abf826a2-d6ab-43d1-bba8-aa55dcc7e1bb\",\n            \"b9385dbc-da20-4ce9-84ac-784548cb0199\",\n            \"acf54c2a-ea5a-47a8-a741-a4ca7df01c17\",\n            \"bad5bae2-3c51-4419-9fb6-418308f507de\",\n            \"8d126fb8-0433-4517-b4e2-86f30d230f4e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"For never was a heuristic infallible, for trying to sort text \",\n      \"SearchKey\": \"For never was a heuristic infallible, for trying to sort text \"\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/test-multicol-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.9988123774528503,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0\n          },\n          {\n            \"X\": 0.9988123774528503,\n            \"Y\": 1.4482480658392362e-16\n          },\n          {\n            \"X\": 0.9988123774528503,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"4c6af0d4-5cad-4e69-9a6c-0cede52f4d59\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34acbf55-bd07-43c8-b93a-efb125140548\",\n            \"856e38fc-d02c-47ba-b40a-46de3b2316dd\",\n            \"36dfc316-8e21-44ff-b1e6-8b47a140792a\",\n            \"30bae575-e545-4273-ba21-6ad29e86cac7\",\n            \"c5e13999-42cb-494a-9c0b-71cf47c45925\",\n            \"12b322e8-2562-45ad-9def-6a8859e39784\",\n            \"5b94e154-ef8d-4712-9e52-5c02a6bd4f9b\",\n            \"7a8b6fba-23b6-4a4f-b2a6-73321f133091\",\n            \"a092507e-d6bf-4801-9e87-56114872f980\",\n            \"6f42999e-2250-479b-bf50-2cbd5c5ef58b\",\n            \"30e7d419-d1ad-4c75-93b0-4b51b0c0cd48\",\n            \"f41eefcf-55ae-4bab-92c0-e9c316f1479b\",\n            \"c79436ad-f83a-435a-a7d0-d3d89b423f3f\",\n            \"853b3b03-063d-47fb-8e7d-11ff812b79a5\",\n            \"237d28c9-6971-4e1e-898f-6ecb7725aad8\",\n            \"68156f21-8328-4d7e-be62-e61bf25ecf80\",\n            \"ab5cd84d-d600-4ff4-86ba-02afc7880db3\",\n            \"bd20f2eb-4d9e-40ff-b95b-f84dbd73c3fc\",\n            \"3a593532-3f1b-4072-b201-7ba6979417e2\",\n            \"49a9c646-0f00-46c0-887d-d2de9d995452\",\n            \"2ec353d6-1269-47a0-9523-e2d4a03bc496\",\n            \"19494c2a-4a8d-4f6b-a21e-ad7d7e1cf47c\"\n          ]\n        }\n      ],\n      \"childText\": \"Multi-column test document A sample document with multiple columns, to test logic for sorting Textract lines into natural reading order. This section has two columns, A horizontally separate right with the intention to read the left column. column fully before starting the right. This column has approximately equivalent vertical position but The left column contains different paragraph breaks. multiple paragraphs, with greater separation than lines Correct processing should read within one paragraph. it after the left column's content. A final footer section restores single-column layout, and should be read last. In the general sense, text reading order on a page is non- trivial and sometimes subjective. However, heuristics can give us a good start. \",\n      \"SearchKey\": \"Multi-column test document A sample document with multiple columns, to test logic for sorting Textract lines into natural reading order. This section has two columns, A horizontally separate right with the intention to read the left column. column fully before starting the right. This column has approximately equivalent vertical position but The left column contains different paragraph breaks. multiple paragraphs, with greater separation than lines Correct processing should read within one paragraph. it after the left column's content. A final footer section restores single-column layout, and should be read last. In the general sense, text reading order on a page is non- trivial and sometimes subjective. However, heuristics can give us a good start. \",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.78657531738281,\n      \"Text\": \"Multi-column test document\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.767552375793457,\n          \"Height\": 0.05969926342368126,\n          \"Left\": 0.0590585432946682,\n          \"Top\": 0.1099499762058258\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0590585432946682,\n            \"Y\": 0.1099499762058258\n          },\n          {\n            \"X\": 0.8266109228134155,\n            \"Y\": 0.1099499762058258\n          },\n          {\n            \"X\": 0.8266109228134155,\n            \"Y\": 0.16964924335479736\n          },\n          {\n            \"X\": 0.0590585432946682,\n            \"Y\": 0.16964924335479736\n          }\n        ]\n      },\n      \"Id\": \"34acbf55-bd07-43c8-b93a-efb125140548\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bcd5237a-5812-4db7-b4b0-f360aa85bf6c\",\n            \"0e04cfe5-d62e-4a1e-b5f0-f65586e57311\",\n            \"776cfcee-47c7-4318-8638-8baea577cb08\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Multi-column test document \",\n      \"SearchKey\": \"Multi-column test document\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87019348144531,\n      \"Text\": \"A sample document with multiple columns, to test logic for sorting\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.832298219203949,\n          \"Height\": 0.042511437088251114,\n          \"Left\": 0.057233430445194244,\n          \"Top\": 0.22722792625427246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057233430445194244,\n            \"Y\": 0.22722792625427246\n          },\n          {\n            \"X\": 0.889531672000885,\n            \"Y\": 0.22722792625427246\n          },\n          {\n            \"X\": 0.889531672000885,\n            \"Y\": 0.2697393596172333\n          },\n          {\n            \"X\": 0.057233430445194244,\n            \"Y\": 0.2697393596172333\n          }\n        ]\n      },\n      \"Id\": \"856e38fc-d02c-47ba-b40a-46de3b2316dd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"211534b0-4dd1-473d-8d94-47fe4ce18190\",\n            \"83dbf925-46f8-4038-9068-daf3ed0aa155\",\n            \"dd9f3309-704d-42d0-adc9-530feb3f22c4\",\n            \"2ed3c220-201a-4c8d-9061-edde028b9002\",\n            \"b1ea0f54-c680-4449-8b96-eea2b51208ab\",\n            \"86c4eb59-ff38-4205-a51b-76c5bd00544b\",\n            \"dfed7872-c73a-43fe-95b0-1714513a03a3\",\n            \"2f52a78f-2f93-4a99-87ea-8918934dc8dd\",\n            \"2c0c10c1-60ab-4750-a009-b305714160d0\",\n            \"7c367c22-1a15-4830-be2e-a9ab9521ffdb\",\n            \"1ac99cbe-e096-4b4c-833a-4d09fc55153e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A sample document with multiple columns, to test logic for sorting \",\n      \"SearchKey\": \"A sample document with multiple columns, to test logic for sorting\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86371612548828,\n      \"Text\": \"Textract lines into natural reading order.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5052549242973328,\n          \"Height\": 0.04105135053396225,\n          \"Left\": 0.0569441057741642,\n          \"Top\": 0.266551673412323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0569441057741642,\n            \"Y\": 0.266551673412323\n          },\n          {\n            \"X\": 0.562199056148529,\n            \"Y\": 0.266551673412323\n          },\n          {\n            \"X\": 0.562199056148529,\n            \"Y\": 0.30760303139686584\n          },\n          {\n            \"X\": 0.0569441057741642,\n            \"Y\": 0.30760303139686584\n          }\n        ]\n      },\n      \"Id\": \"36dfc316-8e21-44ff-b1e6-8b47a140792a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"09d92cc0-5e60-4766-b700-565710936f72\",\n            \"330c6bc3-58e0-4ef3-ae83-d1ea6292bd27\",\n            \"0921fefe-19be-4be0-acf4-df58b8fce3df\",\n            \"ed1e1b4e-c6e8-4ac5-a641-af955c6dacc5\",\n            \"cceade6f-ecc2-437d-ad1a-9048ac34d254\",\n            \"3cf0c077-638d-40b9-9a83-8d6e27f798d2\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Textract lines into natural reading order. \",\n      \"SearchKey\": \"Textract lines into natural reading order.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8801498413086,\n      \"Text\": \"This section has two columns,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3855074942111969,\n          \"Height\": 0.03874245285987854,\n          \"Left\": 0.057204801589250565,\n          \"Top\": 0.36786365509033203\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057204801589250565,\n            \"Y\": 0.36786365509033203\n          },\n          {\n            \"X\": 0.44271230697631836,\n            \"Y\": 0.36786365509033203\n          },\n          {\n            \"X\": 0.44271230697631836,\n            \"Y\": 0.40660610795021057\n          },\n          {\n            \"X\": 0.057204801589250565,\n            \"Y\": 0.40660610795021057\n          }\n        ]\n      },\n      \"Id\": \"30bae575-e545-4273-ba21-6ad29e86cac7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1188ced1-d316-494e-b7a7-7eec4c29975d\",\n            \"e322ce7c-6cf8-4910-ad64-0096936600b8\",\n            \"e312e461-59aa-439e-8d55-d22b97f3db0f\",\n            \"7241abda-36ed-43bf-ab0f-547d47ec607d\",\n            \"55add539-7802-4876-a2b0-41cd8a9ffba8\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"This section has two columns, \",\n      \"SearchKey\": \"This section has two columns,\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9128189086914,\n      \"Text\": \"A horizontally separate right\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.36092227697372437,\n          \"Height\": 0.04081464558839798,\n          \"Left\": 0.5329684615135193,\n          \"Top\": 0.3680993318557739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5329684615135193,\n            \"Y\": 0.3680993318557739\n          },\n          {\n            \"X\": 0.8938907384872437,\n            \"Y\": 0.3680993318557739\n          },\n          {\n            \"X\": 0.8938907384872437,\n            \"Y\": 0.4089139997959137\n          },\n          {\n            \"X\": 0.5329684615135193,\n            \"Y\": 0.4089139997959137\n          }\n        ]\n      },\n      \"Id\": \"c5e13999-42cb-494a-9c0b-71cf47c45925\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4fd87edd-6fda-46b5-a6b3-1af8c3d2c062\",\n            \"49faf201-2138-4e61-9f6e-9b84a4445a2d\",\n            \"0d138247-e244-4abb-a1a7-a16821e56e08\",\n            \"5a26a594-dc71-4066-bd3a-b19f09e437d7\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A horizontally separate right \",\n      \"SearchKey\": \"A horizontally separate right\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94347381591797,\n      \"Text\": \"with the intention to read the left\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.41229313611984253,\n          \"Height\": 0.034234292805194855,\n          \"Left\": 0.05688522756099701,\n          \"Top\": 0.40758299827575684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05688522756099701,\n            \"Y\": 0.40758299827575684\n          },\n          {\n            \"X\": 0.46917837858200073,\n            \"Y\": 0.40758299827575684\n          },\n          {\n            \"X\": 0.46917837858200073,\n            \"Y\": 0.4418172836303711\n          },\n          {\n            \"X\": 0.05688522756099701,\n            \"Y\": 0.4418172836303711\n          }\n        ]\n      },\n      \"Id\": \"12b322e8-2562-45ad-9def-6a8859e39784\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a97cb20-ffd3-476d-8e40-870de86ba416\",\n            \"a4eccf03-9adb-4942-b0c9-c352abe2712c\",\n            \"f56a2e04-118c-4860-a570-8e9613eae688\",\n            \"710991f4-966b-48f9-b0ba-84ea5bd77bf5\",\n            \"e9799747-d04f-4122-9d26-db6c2ec8671d\",\n            \"e71e0006-697a-438d-a3b4-6c3f4431b7aa\",\n            \"017e96a3-6844-478b-9e21-eeefe7eb4ad1\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"with the intention to read the left \",\n      \"SearchKey\": \"with the intention to read the left\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6312026977539,\n      \"Text\": \"column.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1050318256020546,\n          \"Height\": 0.033067166805267334,\n          \"Left\": 0.5327880382537842,\n          \"Top\": 0.4087204337120056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5327880382537842,\n            \"Y\": 0.4087204337120056\n          },\n          {\n            \"X\": 0.6378198266029358,\n            \"Y\": 0.4087204337120056\n          },\n          {\n            \"X\": 0.6378198266029358,\n            \"Y\": 0.44178760051727295\n          },\n          {\n            \"X\": 0.5327880382537842,\n            \"Y\": 0.44178760051727295\n          }\n        ]\n      },\n      \"Id\": \"5b94e154-ef8d-4712-9e52-5c02a6bd4f9b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b9cd2399-7875-462f-8e01-65d363dbfa49\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"column. \",\n      \"SearchKey\": \"column.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94202423095703,\n      \"Text\": \"column fully before starting the\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3937201499938965,\n          \"Height\": 0.041447628289461136,\n          \"Left\": 0.05781738832592964,\n          \"Top\": 0.44674593210220337\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05781738832592964,\n            \"Y\": 0.44674593210220337\n          },\n          {\n            \"X\": 0.451537549495697,\n            \"Y\": 0.44674593210220337\n          },\n          {\n            \"X\": 0.451537549495697,\n            \"Y\": 0.488193541765213\n          },\n          {\n            \"X\": 0.05781738832592964,\n            \"Y\": 0.488193541765213\n          }\n        ]\n      },\n      \"Id\": \"7a8b6fba-23b6-4a4f-b2a6-73321f133091\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"57f315cb-4d0f-4a84-9edc-ee62b8d34379\",\n            \"b1a86d6f-feb3-4984-8697-6f67e88a67b6\",\n            \"12c1c981-8e2f-4b5a-b651-758db7fcf4f1\",\n            \"3d89d975-65d5-4688-9841-bca656b7db7b\",\n            \"5574058a-be39-4df2-90ea-6f00b7518614\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"column fully before starting the \",\n      \"SearchKey\": \"column fully before starting the\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.64647674560547,\n      \"Text\": \"right.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06806891411542892,\n          \"Height\": 0.04095287621021271,\n          \"Left\": 0.05746752768754959,\n          \"Top\": 0.48628127574920654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05746752768754959,\n            \"Y\": 0.48628127574920654\n          },\n          {\n            \"X\": 0.12553644180297852,\n            \"Y\": 0.48628127574920654\n          },\n          {\n            \"X\": 0.12553644180297852,\n            \"Y\": 0.5272341370582581\n          },\n          {\n            \"X\": 0.05746752768754959,\n            \"Y\": 0.5272341370582581\n          }\n        ]\n      },\n      \"Id\": \"a092507e-d6bf-4801-9e87-56114872f980\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"97783785-f5e8-4a4e-8dd9-de875f2aaa29\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"right. \",\n      \"SearchKey\": \"right.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83943176269531,\n      \"Text\": \"This column has approximately\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3997884690761566,\n          \"Height\": 0.04109474644064903,\n          \"Left\": 0.5327730774879456,\n          \"Top\": 0.48602479696273804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5327730774879456,\n            \"Y\": 0.48602479696273804\n          },\n          {\n            \"X\": 0.9325615167617798,\n            \"Y\": 0.48602479696273804\n          },\n          {\n            \"X\": 0.9325615167617798,\n            \"Y\": 0.527119517326355\n          },\n          {\n            \"X\": 0.5327730774879456,\n            \"Y\": 0.527119517326355\n          }\n        ]\n      },\n      \"Id\": \"6f42999e-2250-479b-bf50-2cbd5c5ef58b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"99d471ad-104b-4d71-8d67-280af692ebc0\",\n            \"35f64bae-ad39-4d69-b9af-5acd018d1d46\",\n            \"c5818dae-39a2-4aa0-bec3-2fed3a52bec0\",\n            \"87402d09-bf8d-433f-8609-4c37c77b879a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"This column has approximately \",\n      \"SearchKey\": \"This column has approximately\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90655517578125,\n      \"Text\": \"equivalent vertical position but\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3896561861038208,\n          \"Height\": 0.04069073125720024,\n          \"Left\": 0.532958447933197,\n          \"Top\": 0.5254881978034973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.532958447933197,\n            \"Y\": 0.5254881978034973\n          },\n          {\n            \"X\": 0.9226146936416626,\n            \"Y\": 0.5254881978034973\n          },\n          {\n            \"X\": 0.9226146936416626,\n            \"Y\": 0.5661789774894714\n          },\n          {\n            \"X\": 0.532958447933197,\n            \"Y\": 0.5661789774894714\n          }\n        ]\n      },\n      \"Id\": \"30e7d419-d1ad-4c75-93b0-4b51b0c0cd48\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"49b8ece8-85ff-413b-a88d-3f1cd88e6c70\",\n            \"6ae98ca6-edc9-431c-98d5-ab326413633c\",\n            \"d2050a73-f4f6-417a-9cde-9c106c13dc62\",\n            \"5bb2f64c-ae3e-46fc-84f7-4757c6b7da88\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"equivalent vertical position but \",\n      \"SearchKey\": \"equivalent vertical position but\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83168029785156,\n      \"Text\": \"The left column contains\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3152974545955658,\n          \"Height\": 0.03445468842983246,\n          \"Left\": 0.057286813855171204,\n          \"Top\": 0.565045177936554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057286813855171204,\n            \"Y\": 0.565045177936554\n          },\n          {\n            \"X\": 0.3725842535495758,\n            \"Y\": 0.565045177936554\n          },\n          {\n            \"X\": 0.3725842535495758,\n            \"Y\": 0.5994998812675476\n          },\n          {\n            \"X\": 0.057286813855171204,\n            \"Y\": 0.5994998812675476\n          }\n        ]\n      },\n      \"Id\": \"f41eefcf-55ae-4bab-92c0-e9c316f1479b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32e135a5-cd08-4939-bd2e-1b5da0c41274\",\n            \"d01047d9-60e9-45d4-af43-09aa3de0b956\",\n            \"a736078d-c4d8-449b-b4bc-55db0d01a400\",\n            \"cfcae48c-4123-4df4-a41c-7b1dce0fc22c\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"The left column contains \",\n      \"SearchKey\": \"The left column contains\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.61235046386719,\n      \"Text\": \"different paragraph breaks.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3458707630634308,\n          \"Height\": 0.04076381027698517,\n          \"Left\": 0.533329963684082,\n          \"Top\": 0.5651021599769592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.533329963684082,\n            \"Y\": 0.5651021599769592\n          },\n          {\n            \"X\": 0.8792006969451904,\n            \"Y\": 0.5651021599769592\n          },\n          {\n            \"X\": 0.8792006969451904,\n            \"Y\": 0.6058659553527832\n          },\n          {\n            \"X\": 0.533329963684082,\n            \"Y\": 0.6058659553527832\n          }\n        ]\n      },\n      \"Id\": \"c79436ad-f83a-435a-a7d0-d3d89b423f3f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6d7a398b-37a9-432c-b7b8-3b518dcaf27e\",\n            \"e88481f0-521d-4dc2-adbf-38efebf6f934\",\n            \"48ff9d24-7919-44f5-8e52-0d030be4e756\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"different paragraph breaks. \",\n      \"SearchKey\": \"different paragraph breaks.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.46304321289062,\n      \"Text\": \"multiple paragraphs, with\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3221353590488434,\n          \"Height\": 0.04048045352101326,\n          \"Left\": 0.05835356563329697,\n          \"Top\": 0.6047708988189697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05835356563329697,\n            \"Y\": 0.6047708988189697\n          },\n          {\n            \"X\": 0.38048893213272095,\n            \"Y\": 0.6047708988189697\n          },\n          {\n            \"X\": 0.38048893213272095,\n            \"Y\": 0.6452513933181763\n          },\n          {\n            \"X\": 0.05835356563329697,\n            \"Y\": 0.6452513933181763\n          }\n        ]\n      },\n      \"Id\": \"853b3b03-063d-47fb-8e7d-11ff812b79a5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c9f4a7ac-80fd-4b9f-81f4-6b939e396544\",\n            \"5992b9b6-f848-4ef1-a8fd-7116e622d169\",\n            \"1bea9603-e323-4dbf-a6e1-d11aedd4c9a6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"multiple paragraphs, with \",\n      \"SearchKey\": \"multiple paragraphs, with\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95150756835938,\n      \"Text\": \"greater separation than lines\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.36720308661460876,\n          \"Height\": 0.04203976318240166,\n          \"Left\": 0.057494450360536575,\n          \"Top\": 0.6438721418380737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057494450360536575,\n            \"Y\": 0.6438721418380737\n          },\n          {\n            \"X\": 0.42469754815101624,\n            \"Y\": 0.6438721418380737\n          },\n          {\n            \"X\": 0.42469754815101624,\n            \"Y\": 0.6859119534492493\n          },\n          {\n            \"X\": 0.057494450360536575,\n            \"Y\": 0.6859119534492493\n          }\n        ]\n      },\n      \"Id\": \"237d28c9-6971-4e1e-898f-6ecb7725aad8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a7e43d95-5b3c-4bba-817f-81788501f714\",\n            \"f6e6434f-1219-489f-9225-597817111e6d\",\n            \"a44c341b-24a1-4953-a4de-a8770e7604f8\",\n            \"15f80aa0-ce46-48fe-af59-debd27e6dd9f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"greater separation than lines \",\n      \"SearchKey\": \"greater separation than lines\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9581069946289,\n      \"Text\": \"Correct processing should read\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4015386998653412,\n          \"Height\": 0.04098283499479294,\n          \"Left\": 0.5333043932914734,\n          \"Top\": 0.6437022089958191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5333043932914734,\n            \"Y\": 0.6437022089958191\n          },\n          {\n            \"X\": 0.9348430633544922,\n            \"Y\": 0.6437022089958191\n          },\n          {\n            \"X\": 0.9348430633544922,\n            \"Y\": 0.6846850514411926\n          },\n          {\n            \"X\": 0.5333043932914734,\n            \"Y\": 0.6846850514411926\n          }\n        ]\n      },\n      \"Id\": \"68156f21-8328-4d7e-be62-e61bf25ecf80\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"841839a6-4a46-4aea-9255-56703828e8d4\",\n            \"da845406-fe4d-4eaa-b7d8-61dc31e20686\",\n            \"66b2adce-510c-4f19-8515-b40d74968e45\",\n            \"84286d55-6353-459d-8051-0abcef89df06\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Correct processing should read \",\n      \"SearchKey\": \"Correct processing should read\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.22291564941406,\n      \"Text\": \"within one paragraph.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27985069155693054,\n          \"Height\": 0.03993375226855278,\n          \"Left\": 0.05713146552443504,\n          \"Top\": 0.6836184859275818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05713146552443504,\n            \"Y\": 0.6836184859275818\n          },\n          {\n            \"X\": 0.3369821608066559,\n            \"Y\": 0.6836184859275818\n          },\n          {\n            \"X\": 0.3369821608066559,\n            \"Y\": 0.7235522270202637\n          },\n          {\n            \"X\": 0.05713146552443504,\n            \"Y\": 0.7235522270202637\n          }\n        ]\n      },\n      \"Id\": \"ab5cd84d-d600-4ff4-86ba-02afc7880db3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e70b5821-180a-41e5-a2c8-7544ce3403c3\",\n            \"6af86706-63ba-458a-9f8b-ca999f38bd7a\",\n            \"9b696961-8a6d-4dd3-93a1-b579e5908d39\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"within one paragraph. \",\n      \"SearchKey\": \"within one paragraph.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7774429321289,\n      \"Text\": \"it after the left column's content.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.40656858682632446,\n          \"Height\": 0.03470281511545181,\n          \"Left\": 0.533003568649292,\n          \"Top\": 0.6830947399139404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.533003568649292,\n            \"Y\": 0.6830947399139404\n          },\n          {\n            \"X\": 0.9395721554756165,\n            \"Y\": 0.6830947399139404\n          },\n          {\n            \"X\": 0.9395721554756165,\n            \"Y\": 0.7177975177764893\n          },\n          {\n            \"X\": 0.533003568649292,\n            \"Y\": 0.7177975177764893\n          }\n        ]\n      },\n      \"Id\": \"bd20f2eb-4d9e-40ff-b95b-f84dbd73c3fc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8da2b002-3e98-46e5-8d58-79b8f0f98ce0\",\n            \"e357dcd6-0f1c-437e-8b27-a39e62147084\",\n            \"ea9f439e-493a-4f98-b441-ef86cf075b62\",\n            \"94c60fd4-d468-4fa5-8fbe-0ef5ad419869\",\n            \"2624c50e-b7b0-47fe-888a-65eeee389851\",\n            \"478668eb-3535-4b86-ae2d-a5c5b9b8b6ca\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"it after the left column's content. \",\n      \"SearchKey\": \"it after the left column's content.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86083984375,\n      \"Text\": \"A final footer section restores single-column layout, and should be\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8387881517410278,\n          \"Height\": 0.04154814034700394,\n          \"Left\": 0.05729520320892334,\n          \"Top\": 0.7899483442306519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05729520320892334,\n            \"Y\": 0.7899483442306519\n          },\n          {\n            \"X\": 0.8960833549499512,\n            \"Y\": 0.7899483442306519\n          },\n          {\n            \"X\": 0.8960833549499512,\n            \"Y\": 0.8314964771270752\n          },\n          {\n            \"X\": 0.05729520320892334,\n            \"Y\": 0.8314964771270752\n          }\n        ]\n      },\n      \"Id\": \"3a593532-3f1b-4072-b201-7ba6979417e2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c9ece2bc-84ce-4eff-b0b0-9012e340e977\",\n            \"5f8ee700-cd45-4196-80e1-48f283b4ba84\",\n            \"40f8a1f9-e1d2-45ab-b965-07d2c145c70c\",\n            \"42a153ca-34e1-46f8-a0f6-baf179e1715a\",\n            \"9249ff25-7ddb-4e49-8867-16297a054082\",\n            \"4f247b69-8ff5-4877-8605-133700fdcd2b\",\n            \"1655c380-1854-4108-9c89-7e07d813e235\",\n            \"bc87d96d-b1fe-4d0e-9d85-ad62f7fe9ddf\",\n            \"2e15094a-5a54-4cbe-becd-506f9a5951bd\",\n            \"d029eca3-b5c7-4bd2-bfa3-52d437145f45\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A final footer section restores single-column layout, and should be \",\n      \"SearchKey\": \"A final footer section restores single-column layout, and should be\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89293670654297,\n      \"Text\": \"read last. In the general sense, text reading order on a page is non-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8574060201644897,\n          \"Height\": 0.04126233607530594,\n          \"Left\": 0.05809899792075157,\n          \"Top\": 0.8297072052955627\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05809899792075157,\n            \"Y\": 0.8297072052955627\n          },\n          {\n            \"X\": 0.9155049920082092,\n            \"Y\": 0.8297072052955627\n          },\n          {\n            \"X\": 0.9155049920082092,\n            \"Y\": 0.8709695339202881\n          },\n          {\n            \"X\": 0.05809899792075157,\n            \"Y\": 0.8709695339202881\n          }\n        ]\n      },\n      \"Id\": \"49a9c646-0f00-46c0-887d-d2de9d995452\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1d2d43cc-6d41-40dd-b864-6952cbdc2015\",\n            \"8266f83d-3cbc-42e8-bb50-704fb7ef9fb5\",\n            \"ba16ad51-8155-436d-a6d4-20982db758fa\",\n            \"842a8231-eed6-4f69-8e63-857fc8b27917\",\n            \"a4ba3c80-3a05-417c-b6f7-74875855a7bc\",\n            \"d6e6b3f4-7db0-44c9-8ff3-6bacfbd00bbb\",\n            \"53ce71b2-73c7-4a23-8f22-b090f1fc8e42\",\n            \"3f6bf6d9-fc29-4ad4-852c-f8ea48ff0440\",\n            \"b8c7e6a9-f6aa-4322-a516-8fda40438af6\",\n            \"efc6db4d-b7c5-4559-b7a2-303a63a0ea89\",\n            \"d0615b7d-9959-44e2-b41e-59320951fe6c\",\n            \"1d3f2698-6836-403e-afb7-10ce3f326844\",\n            \"d60a9b5c-e955-4d8b-b730-350a0c0487e2\",\n            \"5b32b444-2618-4782-87db-fa78ef81430e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"read last. In the general sense, text reading order on a page is non- \",\n      \"SearchKey\": \"read last. In the general sense, text reading order on a page is non-\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.10087585449219,\n      \"Text\": \"trivial and sometimes subjective. However, heuristics can give us a\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8490175008773804,\n          \"Height\": 0.04076831415295601,\n          \"Left\": 0.057198453694581985,\n          \"Top\": 0.8689180612564087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057198453694581985,\n            \"Y\": 0.8689180612564087\n          },\n          {\n            \"X\": 0.9062159061431885,\n            \"Y\": 0.8689180612564087\n          },\n          {\n            \"X\": 0.9062159061431885,\n            \"Y\": 0.9096863865852356\n          },\n          {\n            \"X\": 0.057198453694581985,\n            \"Y\": 0.9096863865852356\n          }\n        ]\n      },\n      \"Id\": \"2ec353d6-1269-47a0-9523-e2d4a03bc496\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3006bbc9-e301-4b2a-b95a-bb114bb9f7b6\",\n            \"eae21012-9ee0-462b-84e2-5cbcf2d95e68\",\n            \"e7037901-3d03-4d5c-933e-6b7f0a6089fe\",\n            \"89041884-e92a-43e4-b48d-7b0131a783aa\",\n            \"825b8f15-95c1-4097-b549-04a093cd02ad\",\n            \"f7260cb7-81c0-448a-a329-17cad70e528e\",\n            \"b85f2f76-aa26-493c-b047-8634449c427b\",\n            \"8370272a-da16-441f-b9e8-0e1fb9ff34cc\",\n            \"8b4f73fb-80ec-4ef1-ba06-c9b1699d20c5\",\n            \"8bbc8706-c73f-4151-ba8c-bf8c6cc5da12\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"trivial and sometimes subjective. However, heuristics can give us a \",\n      \"SearchKey\": \"trivial and sometimes subjective. However, heuristics can give us a\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88338470458984,\n      \"Text\": \"good start.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13957813382148743,\n          \"Height\": 0.04055357351899147,\n          \"Left\": 0.057011399418115616,\n          \"Top\": 0.9085709452629089\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057011399418115616,\n            \"Y\": 0.9085709452629089\n          },\n          {\n            \"X\": 0.19658952951431274,\n            \"Y\": 0.9085709452629089\n          },\n          {\n            \"X\": 0.19658952951431274,\n            \"Y\": 0.9491245150566101\n          },\n          {\n            \"X\": 0.057011399418115616,\n            \"Y\": 0.9491245150566101\n          }\n        ]\n      },\n      \"Id\": \"19494c2a-4a8d-4f6b-a21e-ad7d7e1cf47c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"860f5432-3d89-461f-86bf-67798b57e178\",\n            \"0f782807-10e5-4b28-9042-0a834927ded5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"good start. \",\n      \"SearchKey\": \"good start.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45974731445312,\n      \"Text\": \"Multi-column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.35613834857940674,\n          \"Height\": 0.05969926342368126,\n          \"Left\": 0.0590585432946682,\n          \"Top\": 0.1099499762058258\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0590585432946682,\n            \"Y\": 0.1099499762058258\n          },\n          {\n            \"X\": 0.41519689559936523,\n            \"Y\": 0.1099499762058258\n          },\n          {\n            \"X\": 0.41519689559936523,\n            \"Y\": 0.16964924335479736\n          },\n          {\n            \"X\": 0.0590585432946682,\n            \"Y\": 0.16964924335479736\n          }\n        ]\n      },\n      \"Id\": \"bcd5237a-5812-4db7-b4b0-f360aa85bf6c\",\n      \"Page\": 1,\n      \"SearchKey\": \"Multi-column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96943664550781,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10906366258859634,\n          \"Height\": 0.056034475564956665,\n          \"Left\": 0.4281828701496124,\n          \"Top\": 0.11310502141714096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4281828701496124,\n            \"Y\": 0.11310502141714096\n          },\n          {\n            \"X\": 0.5372465252876282,\n            \"Y\": 0.11310502141714096\n          },\n          {\n            \"X\": 0.5372465252876282,\n            \"Y\": 0.16913950443267822\n          },\n          {\n            \"X\": 0.4281828701496124,\n            \"Y\": 0.16913950443267822\n          }\n        ]\n      },\n      \"Id\": \"0e04cfe5-d62e-4a1e-b5f0-f65586e57311\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93053436279297,\n      \"Text\": \"document\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2811535894870758,\n          \"Height\": 0.05892856419086456,\n          \"Left\": 0.5454573631286621,\n          \"Top\": 0.11068258434534073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5454573631286621,\n            \"Y\": 0.11068258434534073\n          },\n          {\n            \"X\": 0.8266109228134155,\n            \"Y\": 0.11068258434534073\n          },\n          {\n            \"X\": 0.8266109228134155,\n            \"Y\": 0.1696111559867859\n          },\n          {\n            \"X\": 0.5454573631286621,\n            \"Y\": 0.1696111559867859\n          }\n        ]\n      },\n      \"Id\": \"776cfcee-47c7-4318-8638-8baea577cb08\",\n      \"Page\": 1,\n      \"SearchKey\": \"document\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84347534179688,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02635684423148632,\n          \"Height\": 0.03463560715317726,\n          \"Left\": 0.057233430445194244,\n          \"Top\": 0.22722792625427246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057233430445194244,\n            \"Y\": 0.22722792625427246\n          },\n          {\n            \"X\": 0.08359027653932571,\n            \"Y\": 0.22722792625427246\n          },\n          {\n            \"X\": 0.08359027653932571,\n            \"Y\": 0.2618635296821594\n          },\n          {\n            \"X\": 0.057233430445194244,\n            \"Y\": 0.2618635296821594\n          }\n        ]\n      },\n      \"Id\": \"211534b0-4dd1-473d-8d94-47fe4ce18190\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9115982055664,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09786766022443771,\n          \"Height\": 0.04010879993438721,\n          \"Left\": 0.08488892018795013,\n          \"Top\": 0.22809885442256927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08488892018795013,\n            \"Y\": 0.22809885442256927\n          },\n          {\n            \"X\": 0.18275658786296844,\n            \"Y\": 0.22809885442256927\n          },\n          {\n            \"X\": 0.18275658786296844,\n            \"Y\": 0.2682076692581177\n          },\n          {\n            \"X\": 0.08488892018795013,\n            \"Y\": 0.2682076692581177\n          }\n        ]\n      },\n      \"Id\": \"83dbf925-46f8-4038-9068-daf3ed0aa155\",\n      \"Page\": 1,\n      \"SearchKey\": \"sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96314239501953,\n      \"Text\": \"document\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13242027163505554,\n          \"Height\": 0.034843746572732925,\n          \"Left\": 0.18413382768630981,\n          \"Top\": 0.22740434110164642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18413382768630981,\n            \"Y\": 0.22740434110164642\n          },\n          {\n            \"X\": 0.31655409932136536,\n            \"Y\": 0.22740434110164642\n          },\n          {\n            \"X\": 0.31655409932136536,\n            \"Y\": 0.26224809885025024\n          },\n          {\n            \"X\": 0.18413382768630981,\n            \"Y\": 0.26224809885025024\n          }\n        ]\n      },\n      \"Id\": \"dd9f3309-704d-42d0-adc9-530feb3f22c4\",\n      \"Page\": 1,\n      \"SearchKey\": \"document\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97601318359375,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0564802810549736,\n          \"Height\": 0.03364010155200958,\n          \"Left\": 0.31770122051239014,\n          \"Top\": 0.22793658077716827\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31770122051239014,\n            \"Y\": 0.22793658077716827\n          },\n          {\n            \"X\": 0.37418150901794434,\n            \"Y\": 0.22793658077716827\n          },\n          {\n            \"X\": 0.37418150901794434,\n            \"Y\": 0.26157668232917786\n          },\n          {\n            \"X\": 0.31770122051239014,\n            \"Y\": 0.26157668232917786\n          }\n        ]\n      },\n      \"Id\": \"2ed3c220-201a-4c8d-9061-edde028b9002\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.28816223144531,\n      \"Text\": \"multiple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10405544191598892,\n          \"Height\": 0.0386643148958683,\n          \"Left\": 0.37660855054855347,\n          \"Top\": 0.22827637195587158\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37660855054855347,\n            \"Y\": 0.22827637195587158\n          },\n          {\n            \"X\": 0.4806639850139618,\n            \"Y\": 0.22827637195587158\n          },\n          {\n            \"X\": 0.4806639850139618,\n            \"Y\": 0.2669406831264496\n          },\n          {\n            \"X\": 0.37660855054855347,\n            \"Y\": 0.2669406831264496\n          }\n        ]\n      },\n      \"Id\": \"b1ea0f54-c680-4449-8b96-eea2b51208ab\",\n      \"Page\": 1,\n      \"SearchKey\": \"multiple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74202728271484,\n      \"Text\": \"columns,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11879217624664307,\n          \"Height\": 0.03747185692191124,\n          \"Left\": 0.4828145503997803,\n          \"Top\": 0.2286222279071808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4828145503997803,\n            \"Y\": 0.2286222279071808\n          },\n          {\n            \"X\": 0.6016067266464233,\n            \"Y\": 0.2286222279071808\n          },\n          {\n            \"X\": 0.6016067266464233,\n            \"Y\": 0.2660940885543823\n          },\n          {\n            \"X\": 0.4828145503997803,\n            \"Y\": 0.2660940885543823\n          }\n        ]\n      },\n      \"Id\": \"86c4eb59-ff38-4205-a51b-76c5bd00544b\",\n      \"Page\": 1,\n      \"SearchKey\": \"columns,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98900604248047,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03031359612941742,\n          \"Height\": 0.03188478201627731,\n          \"Left\": 0.6040452718734741,\n          \"Top\": 0.2296309471130371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6040452718734741,\n            \"Y\": 0.2296309471130371\n          },\n          {\n            \"X\": 0.6343588829040527,\n            \"Y\": 0.2296309471130371\n          },\n          {\n            \"X\": 0.6343588829040527,\n            \"Y\": 0.261515736579895\n          },\n          {\n            \"X\": 0.6040452718734741,\n            \"Y\": 0.261515736579895\n          }\n        ]\n      },\n      \"Id\": \"dfed7872-c73a-43fe-95b0-1714513a03a3\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98802185058594,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05379937216639519,\n          \"Height\": 0.03306258097290993,\n          \"Left\": 0.6359107494354248,\n          \"Top\": 0.22896136343479156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6359107494354248,\n            \"Y\": 0.22896136343479156\n          },\n          {\n            \"X\": 0.6897100806236267,\n            \"Y\": 0.22896136343479156\n          },\n          {\n            \"X\": 0.6897100806236267,\n            \"Y\": 0.2620239555835724\n          },\n          {\n            \"X\": 0.6359107494354248,\n            \"Y\": 0.2620239555835724\n          }\n        ]\n      },\n      \"Id\": \"2f52a78f-2f93-4a99-87ea-8918934dc8dd\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91874694824219,\n      \"Text\": \"logic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06479744613170624,\n          \"Height\": 0.04103482887148857,\n          \"Left\": 0.6902713775634766,\n          \"Top\": 0.22742657363414764\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6902713775634766,\n            \"Y\": 0.22742657363414764\n          },\n          {\n            \"X\": 0.755068838596344,\n            \"Y\": 0.22742657363414764\n          },\n          {\n            \"X\": 0.755068838596344,\n            \"Y\": 0.2684614062309265\n          },\n          {\n            \"X\": 0.6902713775634766,\n            \"Y\": 0.2684614062309265\n          }\n        ]\n      },\n      \"Id\": \"2c0c10c1-60ab-4750-a009-b305714160d0\",\n      \"Page\": 1,\n      \"SearchKey\": \"logic\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99406433105469,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03985914587974548,\n          \"Height\": 0.034171801060438156,\n          \"Left\": 0.757164716720581,\n          \"Top\": 0.22749978303909302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.757164716720581,\n            \"Y\": 0.22749978303909302\n          },\n          {\n            \"X\": 0.7970238924026489,\n            \"Y\": 0.22749978303909302\n          },\n          {\n            \"X\": 0.7970238924026489,\n            \"Y\": 0.2616715729236603\n          },\n          {\n            \"X\": 0.757164716720581,\n            \"Y\": 0.2616715729236603\n          }\n        ]\n      },\n      \"Id\": \"7c367c22-1a15-4830-be2e-a9ab9521ffdb\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95787048339844,\n      \"Text\": \"sorting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09140529483556747,\n          \"Height\": 0.0419076643884182,\n          \"Left\": 0.7981263399124146,\n          \"Top\": 0.22783170640468597\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7981263399124146,\n            \"Y\": 0.22783170640468597\n          },\n          {\n            \"X\": 0.889531672000885,\n            \"Y\": 0.22783170640468597\n          },\n          {\n            \"X\": 0.889531672000885,\n            \"Y\": 0.2697393596172333\n          },\n          {\n            \"X\": 0.7981263399124146,\n            \"Y\": 0.2697393596172333\n          }\n        ]\n      },\n      \"Id\": \"1ac99cbe-e096-4b4c-833a-4d09fc55153e\",\n      \"Page\": 1,\n      \"SearchKey\": \"sorting\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93773651123047,\n      \"Text\": \"Textract\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10771511495113373,\n          \"Height\": 0.03434059023857117,\n          \"Left\": 0.0569441057741642,\n          \"Top\": 0.26700854301452637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0569441057741642,\n            \"Y\": 0.26700854301452637\n          },\n          {\n            \"X\": 0.16465921700000763,\n            \"Y\": 0.26700854301452637\n          },\n          {\n            \"X\": 0.16465921700000763,\n            \"Y\": 0.30134913325309753\n          },\n          {\n            \"X\": 0.0569441057741642,\n            \"Y\": 0.30134913325309753\n          }\n        ]\n      },\n      \"Id\": \"09d92cc0-5e60-4766-b700-565710936f72\",\n      \"Page\": 1,\n      \"SearchKey\": \"Textract\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95148468017578,\n      \"Text\": \"lines\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06378467381000519,\n          \"Height\": 0.03421149030327797,\n          \"Left\": 0.16560371220111847,\n          \"Top\": 0.26682212948799133\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16560371220111847,\n            \"Y\": 0.26682212948799133\n          },\n          {\n            \"X\": 0.22938838601112366,\n            \"Y\": 0.26682212948799133\n          },\n          {\n            \"X\": 0.22938838601112366,\n            \"Y\": 0.301033616065979\n          },\n          {\n            \"X\": 0.16560371220111847,\n            \"Y\": 0.301033616065979\n          }\n        ]\n      },\n      \"Id\": \"330c6bc3-58e0-4ef3-ae83-d1ea6292bd27\",\n      \"Page\": 1,\n      \"SearchKey\": \"lines\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89875793457031,\n      \"Text\": \"into\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05159250274300575,\n          \"Height\": 0.03457470238208771,\n          \"Left\": 0.23167380690574646,\n          \"Top\": 0.266551673412323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23167380690574646,\n            \"Y\": 0.266551673412323\n          },\n          {\n            \"X\": 0.2832663059234619,\n            \"Y\": 0.266551673412323\n          },\n          {\n            \"X\": 0.2832663059234619,\n            \"Y\": 0.3011263608932495\n          },\n          {\n            \"X\": 0.23167380690574646,\n            \"Y\": 0.3011263608932495\n          }\n        ]\n      },\n      \"Id\": \"0921fefe-19be-4be0-acf4-df58b8fce3df\",\n      \"Page\": 1,\n      \"SearchKey\": \"into\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93251037597656,\n      \"Text\": \"natural\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09214003384113312,\n          \"Height\": 0.03341357782483101,\n          \"Left\": 0.28615981340408325,\n          \"Top\": 0.26763245463371277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28615981340408325,\n            \"Y\": 0.26763245463371277\n          },\n          {\n            \"X\": 0.37829986214637756,\n            \"Y\": 0.26763245463371277\n          },\n          {\n            \"X\": 0.37829986214637756,\n            \"Y\": 0.3010460138320923\n          },\n          {\n            \"X\": 0.28615981340408325,\n            \"Y\": 0.3010460138320923\n          }\n        ]\n      },\n      \"Id\": \"ed1e1b4e-c6e8-4ac5-a641-af955c6dacc5\",\n      \"Page\": 1,\n      \"SearchKey\": \"natural\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95985412597656,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10101252794265747,\n          \"Height\": 0.04023571312427521,\n          \"Left\": 0.3812342882156372,\n          \"Top\": 0.26736730337142944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3812342882156372,\n            \"Y\": 0.26736730337142944\n          },\n          {\n            \"X\": 0.4822468161582947,\n            \"Y\": 0.26736730337142944\n          },\n          {\n            \"X\": 0.4822468161582947,\n            \"Y\": 0.30760303139686584\n          },\n          {\n            \"X\": 0.3812342882156372,\n            \"Y\": 0.30760303139686584\n          }\n        ]\n      },\n      \"Id\": \"cceade6f-ecc2-437d-ad1a-9048ac34d254\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50193786621094,\n      \"Text\": \"order.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0782717913389206,\n          \"Height\": 0.03408809006214142,\n          \"Left\": 0.48392724990844727,\n          \"Top\": 0.267322301864624\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48392724990844727,\n            \"Y\": 0.267322301864624\n          },\n          {\n            \"X\": 0.562199056148529,\n            \"Y\": 0.267322301864624\n          },\n          {\n            \"X\": 0.562199056148529,\n            \"Y\": 0.30141040682792664\n          },\n          {\n            \"X\": 0.48392724990844727,\n            \"Y\": 0.30141040682792664\n          }\n        ]\n      },\n      \"Id\": \"3cf0c077-638d-40b9-9a83-8d6e27f798d2\",\n      \"Page\": 1,\n      \"SearchKey\": \"order.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94336700439453,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05980917811393738,\n          \"Height\": 0.03446454554796219,\n          \"Left\": 0.057204801589250565,\n          \"Top\": 0.36786365509033203\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057204801589250565,\n            \"Y\": 0.36786365509033203\n          },\n          {\n            \"X\": 0.11701398342847824,\n            \"Y\": 0.36786365509033203\n          },\n          {\n            \"X\": 0.11701398342847824,\n            \"Y\": 0.4023281931877136\n          },\n          {\n            \"X\": 0.057204801589250565,\n            \"Y\": 0.4023281931877136\n          }\n        ]\n      },\n      \"Id\": \"1188ced1-d316-494e-b7a7-7eec4c29975d\",\n      \"Page\": 1,\n      \"SearchKey\": \"This\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90486145019531,\n      \"Text\": \"section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09630869328975677,\n          \"Height\": 0.03383730724453926,\n          \"Left\": 0.1192241683602333,\n          \"Top\": 0.3686944246292114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1192241683602333,\n            \"Y\": 0.3686944246292114\n          },\n          {\n            \"X\": 0.21553285419940948,\n            \"Y\": 0.3686944246292114\n          },\n          {\n            \"X\": 0.21553285419940948,\n            \"Y\": 0.4025317430496216\n          },\n          {\n            \"X\": 0.1192241683602333,\n            \"Y\": 0.4025317430496216\n          }\n        ]\n      },\n      \"Id\": \"e322ce7c-6cf8-4910-ad64-0096936600b8\",\n      \"Page\": 1,\n      \"SearchKey\": \"section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97315216064453,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05184461548924446,\n          \"Height\": 0.034296441823244095,\n          \"Left\": 0.21759554743766785,\n          \"Top\": 0.36816927790641785\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21759554743766785,\n            \"Y\": 0.36816927790641785\n          },\n          {\n            \"X\": 0.2694401741027832,\n            \"Y\": 0.36816927790641785\n          },\n          {\n            \"X\": 0.2694401741027832,\n            \"Y\": 0.40246573090553284\n          },\n          {\n            \"X\": 0.21759554743766785,\n            \"Y\": 0.40246573090553284\n          }\n        ]\n      },\n      \"Id\": \"e312e461-59aa-439e-8d55-d22b97f3db0f\",\n      \"Page\": 1,\n      \"SearchKey\": \"has\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93999481201172,\n      \"Text\": \"two\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05006270855665207,\n          \"Height\": 0.03252282366156578,\n          \"Left\": 0.27129411697387695,\n          \"Top\": 0.3698059320449829\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27129411697387695,\n            \"Y\": 0.3698059320449829\n          },\n          {\n            \"X\": 0.3213568329811096,\n            \"Y\": 0.3698059320449829\n          },\n          {\n            \"X\": 0.3213568329811096,\n            \"Y\": 0.402328759431839\n          },\n          {\n            \"X\": 0.27129411697387695,\n            \"Y\": 0.402328759431839\n          }\n        ]\n      },\n      \"Id\": \"7241abda-36ed-43bf-ab0f-547d47ec607d\",\n      \"Page\": 1,\n      \"SearchKey\": \"two\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63938903808594,\n      \"Text\": \"columns,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11899260431528091,\n          \"Height\": 0.03795237839221954,\n          \"Left\": 0.32371971011161804,\n          \"Top\": 0.36865371465682983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32371971011161804,\n            \"Y\": 0.36865371465682983\n          },\n          {\n            \"X\": 0.44271230697631836,\n            \"Y\": 0.36865371465682983\n          },\n          {\n            \"X\": 0.44271230697631836,\n            \"Y\": 0.40660610795021057\n          },\n          {\n            \"X\": 0.32371971011161804,\n            \"Y\": 0.40660610795021057\n          }\n        ]\n      },\n      \"Id\": \"55add539-7802-4876-a2b0-41cd8a9ffba8\",\n      \"Page\": 1,\n      \"SearchKey\": \"columns,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81266784667969,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025662528350949287,\n          \"Height\": 0.03330359235405922,\n          \"Left\": 0.5329684615135193,\n          \"Top\": 0.3685217797756195\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5329684615135193,\n            \"Y\": 0.3685217797756195\n          },\n          {\n            \"X\": 0.5586310029029846,\n            \"Y\": 0.3685217797756195\n          },\n          {\n            \"X\": 0.5586310029029846,\n            \"Y\": 0.4018253684043884\n          },\n          {\n            \"X\": 0.5329684615135193,\n            \"Y\": 0.4018253684043884\n          }\n        ]\n      },\n      \"Id\": \"4fd87edd-6fda-46b5-a6b3-1af8c3d2c062\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95650482177734,\n      \"Text\": \"horizontally\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15054328739643097,\n          \"Height\": 0.040753912180662155,\n          \"Left\": 0.5598467588424683,\n          \"Top\": 0.3680993318557739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5598467588424683,\n            \"Y\": 0.3680993318557739\n          },\n          {\n            \"X\": 0.7103900909423828,\n            \"Y\": 0.3680993318557739\n          },\n          {\n            \"X\": 0.7103900909423828,\n            \"Y\": 0.4088532626628876\n          },\n          {\n            \"X\": 0.5598467588424683,\n            \"Y\": 0.4088532626628876\n          }\n        ]\n      },\n      \"Id\": \"49faf201-2138-4e61-9f6e-9b84a4445a2d\",\n      \"Page\": 1,\n      \"SearchKey\": \"horizontally\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91753387451172,\n      \"Text\": \"separate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11690551787614822,\n          \"Height\": 0.038391370326280594,\n          \"Left\": 0.712503969669342,\n          \"Top\": 0.3702293634414673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.712503969669342,\n            \"Y\": 0.3702293634414673\n          },\n          {\n            \"X\": 0.8294094800949097,\n            \"Y\": 0.3702293634414673\n          },\n          {\n            \"X\": 0.8294094800949097,\n            \"Y\": 0.4086207151412964\n          },\n          {\n            \"X\": 0.712503969669342,\n            \"Y\": 0.4086207151412964\n          }\n        ]\n      },\n      \"Id\": \"0d138247-e244-4abb-a1a7-a16821e56e08\",\n      \"Page\": 1,\n      \"SearchKey\": \"separate\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96456909179688,\n      \"Text\": \"right\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06192255765199661,\n          \"Height\": 0.04062498360872269,\n          \"Left\": 0.8319681882858276,\n          \"Top\": 0.3682889938354492\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8319681882858276,\n            \"Y\": 0.3682889938354492\n          },\n          {\n            \"X\": 0.8938907384872437,\n            \"Y\": 0.3682889938354492\n          },\n          {\n            \"X\": 0.8938907384872437,\n            \"Y\": 0.4089139997959137\n          },\n          {\n            \"X\": 0.8319681882858276,\n            \"Y\": 0.4089139997959137\n          }\n        ]\n      },\n      \"Id\": \"5a26a594-dc71-4066-bd3a-b19f09e437d7\",\n      \"Page\": 1,\n      \"SearchKey\": \"right\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96749114990234,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05698418244719505,\n          \"Height\": 0.03381947800517082,\n          \"Left\": 0.05688522756099701,\n          \"Top\": 0.4078357517719269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05688522756099701,\n            \"Y\": 0.4078357517719269\n          },\n          {\n            \"X\": 0.11386941373348236,\n            \"Y\": 0.4078357517719269\n          },\n          {\n            \"X\": 0.11386941373348236,\n            \"Y\": 0.4416552484035492\n          },\n          {\n            \"X\": 0.05688522756099701,\n            \"Y\": 0.4416552484035492\n          }\n        ]\n      },\n      \"Id\": \"6a97cb20-ffd3-476d-8e40-870de86ba416\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9930191040039,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04573656991124153,\n          \"Height\": 0.03353659063577652,\n          \"Left\": 0.11595737189054489,\n          \"Top\": 0.408199280500412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11595737189054489,\n            \"Y\": 0.408199280500412\n          },\n          {\n            \"X\": 0.16169394552707672,\n            \"Y\": 0.408199280500412\n          },\n          {\n            \"X\": 0.16169394552707672,\n            \"Y\": 0.4417358636856079\n          },\n          {\n            \"X\": 0.11595737189054489,\n            \"Y\": 0.4417358636856079\n          }\n        ]\n      },\n      \"Id\": \"a4eccf03-9adb-4942-b0c9-c352abe2712c\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8541030883789,\n      \"Text\": \"intention\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11376539617776871,\n          \"Height\": 0.034234292805194855,\n          \"Left\": 0.16419312357902527,\n          \"Top\": 0.40758299827575684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16419312357902527,\n            \"Y\": 0.40758299827575684\n          },\n          {\n            \"X\": 0.2779585123062134,\n            \"Y\": 0.40758299827575684\n          },\n          {\n            \"X\": 0.2779585123062134,\n            \"Y\": 0.4418172836303711\n          },\n          {\n            \"X\": 0.16419312357902527,\n            \"Y\": 0.4418172836303711\n          }\n        ]\n      },\n      \"Id\": \"f56a2e04-118c-4860-a570-8e9613eae688\",\n      \"Page\": 1,\n      \"SearchKey\": \"intention\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98400115966797,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029415393248200417,\n          \"Height\": 0.03178071603178978,\n          \"Left\": 0.2795027792453766,\n          \"Top\": 0.40968841314315796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2795027792453766,\n            \"Y\": 0.40968841314315796\n          },\n          {\n            \"X\": 0.30891817808151245,\n            \"Y\": 0.40968841314315796\n          },\n          {\n            \"X\": 0.30891817808151245,\n            \"Y\": 0.44146913290023804\n          },\n          {\n            \"X\": 0.2795027792453766,\n            \"Y\": 0.44146913290023804\n          }\n        ]\n      },\n      \"Id\": \"710991f4-966b-48f9-b0ba-84ea5bd77bf5\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96894836425781,\n      \"Text\": \"read\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.062047891318798065,\n          \"Height\": 0.033768899738788605,\n          \"Left\": 0.3115822970867157,\n          \"Top\": 0.40801355242729187\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3115822970867157,\n            \"Y\": 0.40801355242729187\n          },\n          {\n            \"X\": 0.37363019585609436,\n            \"Y\": 0.40801355242729187\n          },\n          {\n            \"X\": 0.37363019585609436,\n            \"Y\": 0.4417824447154999\n          },\n          {\n            \"X\": 0.3115822970867157,\n            \"Y\": 0.4417824447154999\n          }\n        ]\n      },\n      \"Id\": \"e9799747-d04f-4122-9d26-db6c2ec8671d\",\n      \"Page\": 1,\n      \"SearchKey\": \"read\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99425506591797,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046187449246644974,\n          \"Height\": 0.03293738141655922,\n          \"Left\": 0.37561196088790894,\n          \"Top\": 0.4087165594100952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37561196088790894,\n            \"Y\": 0.4087165594100952\n          },\n          {\n            \"X\": 0.4217993915081024,\n            \"Y\": 0.4087165594100952\n          },\n          {\n            \"X\": 0.4217993915081024,\n            \"Y\": 0.44165393710136414\n          },\n          {\n            \"X\": 0.37561196088790894,\n            \"Y\": 0.44165393710136414\n          }\n        ]\n      },\n      \"Id\": \"e71e0006-697a-438d-a3b4-6c3f4431b7aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84249114990234,\n      \"Text\": \"left\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045487791299819946,\n          \"Height\": 0.033408090472221375,\n          \"Left\": 0.4236905872821808,\n          \"Top\": 0.4083947241306305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4236905872821808,\n            \"Y\": 0.4083947241306305\n          },\n          {\n            \"X\": 0.46917837858200073,\n            \"Y\": 0.4083947241306305\n          },\n          {\n            \"X\": 0.46917837858200073,\n            \"Y\": 0.4418027997016907\n          },\n          {\n            \"X\": 0.4236905872821808,\n            \"Y\": 0.4418027997016907\n          }\n        ]\n      },\n      \"Id\": \"017e96a3-6844-478b-9e21-eeefe7eb4ad1\",\n      \"Page\": 1,\n      \"SearchKey\": \"left\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6312026977539,\n      \"Text\": \"column.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1050318256020546,\n          \"Height\": 0.033067166805267334,\n          \"Left\": 0.5327880382537842,\n          \"Top\": 0.4087204337120056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5327880382537842,\n            \"Y\": 0.4087204337120056\n          },\n          {\n            \"X\": 0.6378198266029358,\n            \"Y\": 0.4087204337120056\n          },\n          {\n            \"X\": 0.6378198266029358,\n            \"Y\": 0.44178760051727295\n          },\n          {\n            \"X\": 0.5327880382537842,\n            \"Y\": 0.44178760051727295\n          }\n        ]\n      },\n      \"Id\": \"b9cd2399-7875-462f-8e01-65d363dbfa49\",\n      \"Page\": 1,\n      \"SearchKey\": \"column.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80545043945312,\n      \"Text\": \"column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09694427996873856,\n          \"Height\": 0.033524759113788605,\n          \"Left\": 0.05781738832592964,\n          \"Top\": 0.44796204566955566\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05781738832592964,\n            \"Y\": 0.44796204566955566\n          },\n          {\n            \"X\": 0.1547616720199585,\n            \"Y\": 0.44796204566955566\n          },\n          {\n            \"X\": 0.1547616720199585,\n            \"Y\": 0.48148679733276367\n          },\n          {\n            \"X\": 0.05781738832592964,\n            \"Y\": 0.48148679733276367\n          }\n        ]\n      },\n      \"Id\": \"57f315cb-4d0f-4a84-9edc-ee62b8d34379\",\n      \"Page\": 1,\n      \"SearchKey\": \"column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98234558105469,\n      \"Text\": \"fully\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05676066502928734,\n          \"Height\": 0.04064332693815231,\n          \"Left\": 0.1573389172554016,\n          \"Top\": 0.44674593210220337\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1573389172554016,\n            \"Y\": 0.44674593210220337\n          },\n          {\n            \"X\": 0.21409958600997925,\n            \"Y\": 0.44674593210220337\n          },\n          {\n            \"X\": 0.21409958600997925,\n            \"Y\": 0.4873892664909363\n          },\n          {\n            \"X\": 0.1573389172554016,\n            \"Y\": 0.4873892664909363\n          }\n        ]\n      },\n      \"Id\": \"b1a86d6f-feb3-4984-8697-6f67e88a67b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"fully\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94725036621094,\n      \"Text\": \"before\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08580607920885086,\n          \"Height\": 0.034680914133787155,\n          \"Left\": 0.21642553806304932,\n          \"Top\": 0.44677820801734924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21642553806304932,\n            \"Y\": 0.44677820801734924\n          },\n          {\n            \"X\": 0.3022316098213196,\n            \"Y\": 0.44677820801734924\n          },\n          {\n            \"X\": 0.3022316098213196,\n            \"Y\": 0.4814591109752655\n          },\n          {\n            \"X\": 0.21642553806304932,\n            \"Y\": 0.4814591109752655\n          }\n        ]\n      },\n      \"Id\": \"12c1c981-8e2f-4b5a-b651-758db7fcf4f1\",\n      \"Page\": 1,\n      \"SearchKey\": \"before\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97857666015625,\n      \"Text\": \"starting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09973985701799393,\n          \"Height\": 0.04077182710170746,\n          \"Left\": 0.3051806688308716,\n          \"Top\": 0.44742172956466675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3051806688308716,\n            \"Y\": 0.44742172956466675\n          },\n          {\n            \"X\": 0.4049205183982849,\n            \"Y\": 0.44742172956466675\n          },\n          {\n            \"X\": 0.4049205183982849,\n            \"Y\": 0.488193541765213\n          },\n          {\n            \"X\": 0.3051806688308716,\n            \"Y\": 0.488193541765213\n          }\n        ]\n      },\n      \"Id\": \"3d89d975-65d5-4688-9841-bca656b7db7b\",\n      \"Page\": 1,\n      \"SearchKey\": \"starting\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99649047851562,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0449182502925396,\n          \"Height\": 0.03299893066287041,\n          \"Left\": 0.40661928057670593,\n          \"Top\": 0.44781237840652466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40661928057670593,\n            \"Y\": 0.44781237840652466\n          },\n          {\n            \"X\": 0.451537549495697,\n            \"Y\": 0.44781237840652466\n          },\n          {\n            \"X\": 0.451537549495697,\n            \"Y\": 0.48081129789352417\n          },\n          {\n            \"X\": 0.40661928057670593,\n            \"Y\": 0.48081129789352417\n          }\n        ]\n      },\n      \"Id\": \"5574058a-be39-4df2-90ea-6f00b7518614\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.64647674560547,\n      \"Text\": \"right.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06806891411542892,\n          \"Height\": 0.04095287621021271,\n          \"Left\": 0.05746752768754959,\n          \"Top\": 0.48628127574920654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05746752768754959,\n            \"Y\": 0.48628127574920654\n          },\n          {\n            \"X\": 0.12553644180297852,\n            \"Y\": 0.48628127574920654\n          },\n          {\n            \"X\": 0.12553644180297852,\n            \"Y\": 0.5272341370582581\n          },\n          {\n            \"X\": 0.05746752768754959,\n            \"Y\": 0.5272341370582581\n          }\n        ]\n      },\n      \"Id\": \"97783785-f5e8-4a4e-8dd9-de875f2aaa29\",\n      \"Page\": 1,\n      \"SearchKey\": \"right.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95213317871094,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060135576874017715,\n          \"Height\": 0.03454795479774475,\n          \"Left\": 0.5327730774879456,\n          \"Top\": 0.48602479696273804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5327730774879456,\n            \"Y\": 0.48602479696273804\n          },\n          {\n            \"X\": 0.5929086208343506,\n            \"Y\": 0.48602479696273804\n          },\n          {\n            \"X\": 0.5929086208343506,\n            \"Y\": 0.5205727219581604\n          },\n          {\n            \"X\": 0.5327730774879456,\n            \"Y\": 0.5205727219581604\n          }\n        ]\n      },\n      \"Id\": \"99d471ad-104b-4d71-8d67-280af692ebc0\",\n      \"Page\": 1,\n      \"SearchKey\": \"This\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4601821899414,\n      \"Text\": \"column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09846014529466629,\n          \"Height\": 0.033535733819007874,\n          \"Left\": 0.5945294499397278,\n          \"Top\": 0.4871315360069275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5945294499397278,\n            \"Y\": 0.4871315360069275\n          },\n          {\n            \"X\": 0.6929895877838135,\n            \"Y\": 0.4871315360069275\n          },\n          {\n            \"X\": 0.6929895877838135,\n            \"Y\": 0.5206672549247742\n          },\n          {\n            \"X\": 0.5945294499397278,\n            \"Y\": 0.5206672549247742\n          }\n        ]\n      },\n      \"Id\": \"35f64bae-ad39-4d69-b9af-5acd018d1d46\",\n      \"Page\": 1,\n      \"SearchKey\": \"column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98546600341797,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05165763199329376,\n          \"Height\": 0.033660031855106354,\n          \"Left\": 0.6948301792144775,\n          \"Top\": 0.48676326870918274\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6948301792144775,\n            \"Y\": 0.48676326870918274\n          },\n          {\n            \"X\": 0.7464877963066101,\n            \"Y\": 0.48676326870918274\n          },\n          {\n            \"X\": 0.7464877963066101,\n            \"Y\": 0.5204232931137085\n          },\n          {\n            \"X\": 0.6948301792144775,\n            \"Y\": 0.5204232931137085\n          }\n        ]\n      },\n      \"Id\": \"c5818dae-39a2-4aa0-bec3-2fed3a52bec0\",\n      \"Page\": 1,\n      \"SearchKey\": \"has\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9599380493164,\n      \"Text\": \"approximately\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18349777162075043,\n          \"Height\": 0.04096496105194092,\n          \"Left\": 0.7490637302398682,\n          \"Top\": 0.48615458607673645\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7490637302398682,\n            \"Y\": 0.48615458607673645\n          },\n          {\n            \"X\": 0.9325615167617798,\n            \"Y\": 0.48615458607673645\n          },\n          {\n            \"X\": 0.9325615167617798,\n            \"Y\": 0.527119517326355\n          },\n          {\n            \"X\": 0.7490637302398682,\n            \"Y\": 0.527119517326355\n          }\n        ]\n      },\n      \"Id\": \"87402d09-bf8d-433f-8609-4c37c77b879a\",\n      \"Page\": 1,\n      \"SearchKey\": \"approximately\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80827331542969,\n      \"Text\": \"equivalent\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13772155344486237,\n          \"Height\": 0.04069073125720024,\n          \"Left\": 0.532958447933197,\n          \"Top\": 0.5254881978034973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.532958447933197,\n            \"Y\": 0.5254881978034973\n          },\n          {\n            \"X\": 0.670680046081543,\n            \"Y\": 0.5254881978034973\n          },\n          {\n            \"X\": 0.670680046081543,\n            \"Y\": 0.5661789774894714\n          },\n          {\n            \"X\": 0.532958447933197,\n            \"Y\": 0.5661789774894714\n          }\n        ]\n      },\n      \"Id\": \"49b8ece8-85ff-413b-a88d-3f1cd88e6c70\",\n      \"Page\": 1,\n      \"SearchKey\": \"equivalent\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.913330078125,\n      \"Text\": \"vertical\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09632420539855957,\n          \"Height\": 0.03422914817929268,\n          \"Left\": 0.6708542704582214,\n          \"Top\": 0.5257325768470764\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6708542704582214,\n            \"Y\": 0.5257325768470764\n          },\n          {\n            \"X\": 0.767178475856781,\n            \"Y\": 0.5257325768470764\n          },\n          {\n            \"X\": 0.767178475856781,\n            \"Y\": 0.55996173620224\n          },\n          {\n            \"X\": 0.6708542704582214,\n            \"Y\": 0.55996173620224\n          }\n        ]\n      },\n      \"Id\": \"6ae98ca6-edc9-431c-98d5-ab326413633c\",\n      \"Page\": 1,\n      \"SearchKey\": \"vertical\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9364013671875,\n      \"Text\": \"position\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10252007097005844,\n          \"Height\": 0.03925623372197151,\n          \"Left\": 0.770571768283844,\n          \"Top\": 0.5267857909202576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.770571768283844,\n            \"Y\": 0.5267857909202576\n          },\n          {\n            \"X\": 0.8730918169021606,\n            \"Y\": 0.5267857909202576\n          },\n          {\n            \"X\": 0.8730918169021606,\n            \"Y\": 0.5660420656204224\n          },\n          {\n            \"X\": 0.770571768283844,\n            \"Y\": 0.5660420656204224\n          }\n        ]\n      },\n      \"Id\": \"d2050a73-f4f6-417a-9cde-9c106c13dc62\",\n      \"Page\": 1,\n      \"SearchKey\": \"position\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96821594238281,\n      \"Text\": \"but\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04745795205235481,\n          \"Height\": 0.03375038504600525,\n          \"Left\": 0.8751567006111145,\n          \"Top\": 0.5262706875801086\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8751567006111145,\n            \"Y\": 0.5262706875801086\n          },\n          {\n            \"X\": 0.9226146936416626,\n            \"Y\": 0.5262706875801086\n          },\n          {\n            \"X\": 0.9226146936416626,\n            \"Y\": 0.5600210428237915\n          },\n          {\n            \"X\": 0.8751567006111145,\n            \"Y\": 0.5600210428237915\n          }\n        ]\n      },\n      \"Id\": \"5bb2f64c-ae3e-46fc-84f7-4757c6b7da88\",\n      \"Page\": 1,\n      \"SearchKey\": \"but\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98539733886719,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0548672154545784,\n          \"Height\": 0.03430432826280594,\n          \"Left\": 0.057286813855171204,\n          \"Top\": 0.565045177936554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057286813855171204,\n            \"Y\": 0.565045177936554\n          },\n          {\n            \"X\": 0.1121540293097496,\n            \"Y\": 0.565045177936554\n          },\n          {\n            \"X\": 0.1121540293097496,\n            \"Y\": 0.5993494987487793\n          },\n          {\n            \"X\": 0.057286813855171204,\n            \"Y\": 0.5993494987487793\n          }\n        ]\n      },\n      \"Id\": \"32e135a5-cd08-4939-bd2e-1b5da0c41274\",\n      \"Page\": 1,\n      \"SearchKey\": \"The\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77369689941406,\n      \"Text\": \"left\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04533136263489723,\n          \"Height\": 0.03375827148556709,\n          \"Left\": 0.11436402797698975,\n          \"Top\": 0.5654224753379822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11436402797698975,\n            \"Y\": 0.5654224753379822\n          },\n          {\n            \"X\": 0.15969538688659668,\n            \"Y\": 0.5654224753379822\n          },\n          {\n            \"X\": 0.15969538688659668,\n            \"Y\": 0.5991807579994202\n          },\n          {\n            \"X\": 0.11436402797698975,\n            \"Y\": 0.5991807579994202\n          }\n        ]\n      },\n      \"Id\": \"d01047d9-60e9-45d4-af43-09aa3de0b956\",\n      \"Page\": 1,\n      \"SearchKey\": \"left\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74678802490234,\n      \"Text\": \"column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0976000726222992,\n          \"Height\": 0.03342600539326668,\n          \"Left\": 0.1607755422592163,\n          \"Top\": 0.5658239722251892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1607755422592163,\n            \"Y\": 0.5658239722251892\n          },\n          {\n            \"X\": 0.2583756148815155,\n            \"Y\": 0.5658239722251892\n          },\n          {\n            \"X\": 0.2583756148815155,\n            \"Y\": 0.5992499589920044\n          },\n          {\n            \"X\": 0.1607755422592163,\n            \"Y\": 0.5992499589920044\n          }\n        ]\n      },\n      \"Id\": \"a736078d-c4d8-449b-b4bc-55db0d01a400\",\n      \"Page\": 1,\n      \"SearchKey\": \"column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8208236694336,\n      \"Text\": \"contains\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11254344880580902,\n          \"Height\": 0.033558107912540436,\n          \"Left\": 0.260040819644928,\n          \"Top\": 0.5659417510032654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.260040819644928,\n            \"Y\": 0.5659417510032654\n          },\n          {\n            \"X\": 0.3725842535495758,\n            \"Y\": 0.5659417510032654\n          },\n          {\n            \"X\": 0.3725842535495758,\n            \"Y\": 0.5994998812675476\n          },\n          {\n            \"X\": 0.260040819644928,\n            \"Y\": 0.5994998812675476\n          }\n        ]\n      },\n      \"Id\": \"cfcae48c-4123-4df4-a41c-7b1dce0fc22c\",\n      \"Page\": 1,\n      \"SearchKey\": \"contains\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96029663085938,\n      \"Text\": \"different\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10832105576992035,\n          \"Height\": 0.035280462354421616,\n          \"Left\": 0.533329963684082,\n          \"Top\": 0.5651021599769592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.533329963684082,\n            \"Y\": 0.5651021599769592\n          },\n          {\n            \"X\": 0.6416509747505188,\n            \"Y\": 0.5651021599769592\n          },\n          {\n            \"X\": 0.6416509747505188,\n            \"Y\": 0.6003826260566711\n          },\n          {\n            \"X\": 0.533329963684082,\n            \"Y\": 0.6003826260566711\n          }\n        ]\n      },\n      \"Id\": \"6d7a398b-37a9-432c-b7b8-3b518dcaf27e\",\n      \"Page\": 1,\n      \"SearchKey\": \"different\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86801147460938,\n      \"Text\": \"paragraph\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13558140397071838,\n          \"Height\": 0.04042258858680725,\n          \"Left\": 0.6434916853904724,\n          \"Top\": 0.5654433369636536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6434916853904724,\n            \"Y\": 0.5654433369636536\n          },\n          {\n            \"X\": 0.7790731191635132,\n            \"Y\": 0.5654433369636536\n          },\n          {\n            \"X\": 0.7790731191635132,\n            \"Y\": 0.6058659553527832\n          },\n          {\n            \"X\": 0.6434916853904724,\n            \"Y\": 0.6058659553527832\n          }\n        ]\n      },\n      \"Id\": \"e88481f0-521d-4dc2-adbf-38efebf6f934\",\n      \"Page\": 1,\n      \"SearchKey\": \"paragraph\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.00873565673828,\n      \"Text\": \"breaks.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09721378237009048,\n          \"Height\": 0.03366311639547348,\n          \"Left\": 0.7819868922233582,\n          \"Top\": 0.5658218860626221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7819868922233582,\n            \"Y\": 0.5658218860626221\n          },\n          {\n            \"X\": 0.8792006969451904,\n            \"Y\": 0.5658218860626221\n          },\n          {\n            \"X\": 0.8792006969451904,\n            \"Y\": 0.5994849801063538\n          },\n          {\n            \"X\": 0.7819868922233582,\n            \"Y\": 0.5994849801063538\n          }\n        ]\n      },\n      \"Id\": \"48ff9d24-7919-44f5-8e52-0d030be4e756\",\n      \"Page\": 1,\n      \"SearchKey\": \"breaks.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.48475646972656,\n      \"Text\": \"multiple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10261502861976624,\n          \"Height\": 0.03915456682443619,\n          \"Left\": 0.05835356563329697,\n          \"Top\": 0.6047708988189697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05835356563329697,\n            \"Y\": 0.6047708988189697\n          },\n          {\n            \"X\": 0.1609685868024826,\n            \"Y\": 0.6047708988189697\n          },\n          {\n            \"X\": 0.1609685868024826,\n            \"Y\": 0.6439254879951477\n          },\n          {\n            \"X\": 0.05835356563329697,\n            \"Y\": 0.6439254879951477\n          }\n        ]\n      },\n      \"Id\": \"c9f4a7ac-80fd-4b9f-81f4-6b939e396544\",\n      \"Page\": 1,\n      \"SearchKey\": \"multiple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9200210571289,\n      \"Text\": \"paragraphs,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1586504876613617,\n          \"Height\": 0.04007275030016899,\n          \"Left\": 0.163276806473732,\n          \"Top\": 0.6051785945892334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.163276806473732,\n            \"Y\": 0.6051785945892334\n          },\n          {\n            \"X\": 0.3219272792339325,\n            \"Y\": 0.6051785945892334\n          },\n          {\n            \"X\": 0.3219272792339325,\n            \"Y\": 0.6452513933181763\n          },\n          {\n            \"X\": 0.163276806473732,\n            \"Y\": 0.6452513933181763\n          }\n        ]\n      },\n      \"Id\": \"5992b9b6-f848-4ef1-a8fd-7116e622d169\",\n      \"Page\": 1,\n      \"SearchKey\": \"paragraphs,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98432922363281,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05696660652756691,\n          \"Height\": 0.033306680619716644,\n          \"Left\": 0.32352232933044434,\n          \"Top\": 0.6050180792808533\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32352232933044434,\n            \"Y\": 0.6050180792808533\n          },\n          {\n            \"X\": 0.38048893213272095,\n            \"Y\": 0.6050180792808533\n          },\n          {\n            \"X\": 0.38048893213272095,\n            \"Y\": 0.6383247971534729\n          },\n          {\n            \"X\": 0.32352232933044434,\n            \"Y\": 0.6383247971534729\n          }\n        ]\n      },\n      \"Id\": \"1bea9603-e323-4dbf-a6e1-d11aedd4c9a6\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96736907958984,\n      \"Text\": \"greater\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09766583144664764,\n          \"Height\": 0.03980846703052521,\n          \"Left\": 0.057494450360536575,\n          \"Top\": 0.6461034417152405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057494450360536575,\n            \"Y\": 0.6461034417152405\n          },\n          {\n            \"X\": 0.15516027808189392,\n            \"Y\": 0.6461034417152405\n          },\n          {\n            \"X\": 0.15516027808189392,\n            \"Y\": 0.6859119534492493\n          },\n          {\n            \"X\": 0.057494450360536575,\n            \"Y\": 0.6859119534492493\n          }\n        ]\n      },\n      \"Id\": \"a7e43d95-5b3c-4bba-817f-81788501f714\",\n      \"Page\": 1,\n      \"SearchKey\": \"greater\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9149169921875,\n      \"Text\": \"separation\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1403093785047531,\n          \"Height\": 0.03995770961046219,\n          \"Left\": 0.15592177212238312,\n          \"Top\": 0.6444928050041199\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15592177212238312,\n            \"Y\": 0.6444928050041199\n          },\n          {\n            \"X\": 0.29623115062713623,\n            \"Y\": 0.6444928050041199\n          },\n          {\n            \"X\": 0.29623115062713623,\n            \"Y\": 0.6844505071640015\n          },\n          {\n            \"X\": 0.15592177212238312,\n            \"Y\": 0.6844505071640015\n          }\n        ]\n      },\n      \"Id\": \"f6e6434f-1219-489f-9225-597817111e6d\",\n      \"Page\": 1,\n      \"SearchKey\": \"separation\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98635864257812,\n      \"Text\": \"than\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06199062615633011,\n          \"Height\": 0.03367228806018829,\n          \"Left\": 0.29671111702919006,\n          \"Top\": 0.6443611979484558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29671111702919006,\n            \"Y\": 0.6443611979484558\n          },\n          {\n            \"X\": 0.3587017357349396,\n            \"Y\": 0.6443611979484558\n          },\n          {\n            \"X\": 0.3587017357349396,\n            \"Y\": 0.6780334711074829\n          },\n          {\n            \"X\": 0.29671111702919006,\n            \"Y\": 0.6780334711074829\n          }\n        ]\n      },\n      \"Id\": \"a44c341b-24a1-4953-a4de-a8770e7604f8\",\n      \"Page\": 1,\n      \"SearchKey\": \"than\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93737030029297,\n      \"Text\": \"lines\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06410539895296097,\n          \"Height\": 0.03424689546227455,\n          \"Left\": 0.36059215664863586,\n          \"Top\": 0.6438721418380737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36059215664863586,\n            \"Y\": 0.6438721418380737\n          },\n          {\n            \"X\": 0.42469754815101624,\n            \"Y\": 0.6438721418380737\n          },\n          {\n            \"X\": 0.42469754815101624,\n            \"Y\": 0.6781190633773804\n          },\n          {\n            \"X\": 0.36059215664863586,\n            \"Y\": 0.6781190633773804\n          }\n        ]\n      },\n      \"Id\": \"15f80aa0-ce46-48fe-af59-debd27e6dd9f\",\n      \"Page\": 1,\n      \"SearchKey\": \"lines\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95268249511719,\n      \"Text\": \"Correct\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10002538561820984,\n          \"Height\": 0.03461979329586029,\n          \"Left\": 0.5333043932914734,\n          \"Top\": 0.6437022089958191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5333043932914734,\n            \"Y\": 0.6437022089958191\n          },\n          {\n            \"X\": 0.6333297491073608,\n            \"Y\": 0.6437022089958191\n          },\n          {\n            \"X\": 0.6333297491073608,\n            \"Y\": 0.6783220171928406\n          },\n          {\n            \"X\": 0.5333043932914734,\n            \"Y\": 0.6783220171928406\n          }\n        ]\n      },\n      \"Id\": \"841839a6-4a46-4aea-9255-56703828e8d4\",\n      \"Page\": 1,\n      \"SearchKey\": \"Correct\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93439483642578,\n      \"Text\": \"processing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14328648149967194,\n          \"Height\": 0.04026520252227783,\n          \"Left\": 0.6349491477012634,\n          \"Top\": 0.6444198489189148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6349491477012634,\n            \"Y\": 0.6444198489189148\n          },\n          {\n            \"X\": 0.778235673904419,\n            \"Y\": 0.6444198489189148\n          },\n          {\n            \"X\": 0.778235673904419,\n            \"Y\": 0.6846850514411926\n          },\n          {\n            \"X\": 0.6349491477012634,\n            \"Y\": 0.6846850514411926\n          }\n        ]\n      },\n      \"Id\": \"da845406-fe4d-4eaa-b7d8-61dc31e20686\",\n      \"Page\": 1,\n      \"SearchKey\": \"processing\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98153686523438,\n      \"Text\": \"should\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0901232659816742,\n          \"Height\": 0.03396794945001602,\n          \"Left\": 0.7808905839920044,\n          \"Top\": 0.6442614197731018\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7808905839920044,\n            \"Y\": 0.6442614197731018\n          },\n          {\n            \"X\": 0.871013879776001,\n            \"Y\": 0.6442614197731018\n          },\n          {\n            \"X\": 0.871013879776001,\n            \"Y\": 0.6782293319702148\n          },\n          {\n            \"X\": 0.7808905839920044,\n            \"Y\": 0.6782293319702148\n          }\n        ]\n      },\n      \"Id\": \"66b2adce-510c-4f19-8515-b40d74968e45\",\n      \"Page\": 1,\n      \"SearchKey\": \"should\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96381378173828,\n      \"Text\": \"read\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06194256618618965,\n          \"Height\": 0.03344769403338432,\n          \"Left\": 0.8729005455970764,\n          \"Top\": 0.6443645358085632\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8729005455970764,\n            \"Y\": 0.6443645358085632\n          },\n          {\n            \"X\": 0.9348430633544922,\n            \"Y\": 0.6443645358085632\n          },\n          {\n            \"X\": 0.9348430633544922,\n            \"Y\": 0.6778122186660767\n          },\n          {\n            \"X\": 0.8729005455970764,\n            \"Y\": 0.6778122186660767\n          }\n        ]\n      },\n      \"Id\": \"84286d55-6353-459d-8051-0abcef89df06\",\n      \"Page\": 1,\n      \"SearchKey\": \"read\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9757080078125,\n      \"Text\": \"within\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07904213666915894,\n          \"Height\": 0.03342480584979057,\n          \"Left\": 0.05713146552443504,\n          \"Top\": 0.6838408708572388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05713146552443504,\n            \"Y\": 0.6838408708572388\n          },\n          {\n            \"X\": 0.13617360591888428,\n            \"Y\": 0.6838408708572388\n          },\n          {\n            \"X\": 0.13617360591888428,\n            \"Y\": 0.7172656655311584\n          },\n          {\n            \"X\": 0.05713146552443504,\n            \"Y\": 0.7172656655311584\n          }\n        ]\n      },\n      \"Id\": \"e70b5821-180a-41e5-a2c8-7544ce3403c3\",\n      \"Page\": 1,\n      \"SearchKey\": \"within\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98219299316406,\n      \"Text\": \"one\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052445944398641586,\n          \"Height\": 0.028224987909197807,\n          \"Left\": 0.13870133459568024,\n          \"Top\": 0.6892511248588562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13870133459568024,\n            \"Y\": 0.6892511248588562\n          },\n          {\n            \"X\": 0.19114728271961212,\n            \"Y\": 0.6892511248588562\n          },\n          {\n            \"X\": 0.19114728271961212,\n            \"Y\": 0.7174761295318604\n          },\n          {\n            \"X\": 0.13870133459568024,\n            \"Y\": 0.7174761295318604\n          }\n        ]\n      },\n      \"Id\": \"6af86706-63ba-458a-9f8b-ca999f38bd7a\",\n      \"Page\": 1,\n      \"SearchKey\": \"one\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.71085357666016,\n      \"Text\": \"paragraph.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14374522864818573,\n          \"Height\": 0.03993375226855278,\n          \"Left\": 0.19323694705963135,\n          \"Top\": 0.6836184859275818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19323694705963135,\n            \"Y\": 0.6836184859275818\n          },\n          {\n            \"X\": 0.3369821608066559,\n            \"Y\": 0.6836184859275818\n          },\n          {\n            \"X\": 0.3369821608066559,\n            \"Y\": 0.7235522270202637\n          },\n          {\n            \"X\": 0.19323694705963135,\n            \"Y\": 0.7235522270202637\n          }\n        ]\n      },\n      \"Id\": \"9b696961-8a6d-4dd3-93a1-b579e5908d39\",\n      \"Page\": 1,\n      \"SearchKey\": \"paragraph.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90459442138672,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021173328161239624,\n          \"Height\": 0.03413768112659454,\n          \"Left\": 0.533003568649292,\n          \"Top\": 0.6830947399139404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.533003568649292,\n            \"Y\": 0.6830947399139404\n          },\n          {\n            \"X\": 0.5541768670082092,\n            \"Y\": 0.6830947399139404\n          },\n          {\n            \"X\": 0.5541768670082092,\n            \"Y\": 0.7172324061393738\n          },\n          {\n            \"X\": 0.533003568649292,\n            \"Y\": 0.7172324061393738\n          }\n        ]\n      },\n      \"Id\": \"8da2b002-3e98-46e5-8d58-79b8f0f98ce0\",\n      \"Page\": 1,\n      \"SearchKey\": \"it\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9655532836914,\n      \"Text\": \"after\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06227412819862366,\n          \"Height\": 0.03385591134428978,\n          \"Left\": 0.5555939674377441,\n          \"Top\": 0.6836779713630676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5555939674377441,\n            \"Y\": 0.6836779713630676\n          },\n          {\n            \"X\": 0.6178680658340454,\n            \"Y\": 0.6836779713630676\n          },\n          {\n            \"X\": 0.6178680658340454,\n            \"Y\": 0.7175338864326477\n          },\n          {\n            \"X\": 0.5555939674377441,\n            \"Y\": 0.7175338864326477\n          }\n        ]\n      },\n      \"Id\": \"e357dcd6-0f1c-437e-8b27-a39e62147084\",\n      \"Page\": 1,\n      \"SearchKey\": \"after\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99695587158203,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045709677040576935,\n          \"Height\": 0.03333916887640953,\n          \"Left\": 0.6202672123908997,\n          \"Top\": 0.6839662790298462\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6202672123908997,\n            \"Y\": 0.6839662790298462\n          },\n          {\n            \"X\": 0.6659769415855408,\n            \"Y\": 0.6839662790298462\n          },\n          {\n            \"X\": 0.6659769415855408,\n            \"Y\": 0.7173054814338684\n          },\n          {\n            \"X\": 0.6202672123908997,\n            \"Y\": 0.7173054814338684\n          }\n        ]\n      },\n      \"Id\": \"ea9f439e-493a-4f98-b441-ef86cf075b62\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75354766845703,\n      \"Text\": \"left\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0438423790037632,\n          \"Height\": 0.033622827380895615,\n          \"Left\": 0.6682267189025879,\n          \"Top\": 0.6834665536880493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6682267189025879,\n            \"Y\": 0.6834665536880493\n          },\n          {\n            \"X\": 0.7120690941810608,\n            \"Y\": 0.6834665536880493\n          },\n          {\n            \"X\": 0.7120690941810608,\n            \"Y\": 0.7170894145965576\n          },\n          {\n            \"X\": 0.6682267189025879,\n            \"Y\": 0.7170894145965576\n          }\n        ]\n      },\n      \"Id\": \"94c60fd4-d468-4fa5-8fbe-0ef5ad419869\",\n      \"Page\": 1,\n      \"SearchKey\": \"left\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83624267578125,\n      \"Text\": \"column's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11791658401489258,\n          \"Height\": 0.033626772463321686,\n          \"Left\": 0.7137255668640137,\n          \"Top\": 0.6838205456733704\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7137255668640137,\n            \"Y\": 0.6838205456733704\n          },\n          {\n            \"X\": 0.8316421508789062,\n            \"Y\": 0.6838205456733704\n          },\n          {\n            \"X\": 0.8316421508789062,\n            \"Y\": 0.7174472808837891\n          },\n          {\n            \"X\": 0.7137255668640137,\n            \"Y\": 0.7174472808837891\n          }\n        ]\n      },\n      \"Id\": \"2624c50e-b7b0-47fe-888a-65eeee389851\",\n      \"Page\": 1,\n      \"SearchKey\": \"column's\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20774841308594,\n      \"Text\": \"content.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10561314970254898,\n          \"Height\": 0.033231329172849655,\n          \"Left\": 0.8339589834213257,\n          \"Top\": 0.6845661997795105\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8339589834213257,\n            \"Y\": 0.6845661997795105\n          },\n          {\n            \"X\": 0.9395721554756165,\n            \"Y\": 0.6845661997795105\n          },\n          {\n            \"X\": 0.9395721554756165,\n            \"Y\": 0.7177975177764893\n          },\n          {\n            \"X\": 0.8339589834213257,\n            \"Y\": 0.7177975177764893\n          }\n        ]\n      },\n      \"Id\": \"478668eb-3535-4b86-ae2d-a5c5b9b8b6ca\",\n      \"Page\": 1,\n      \"SearchKey\": \"content.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76095581054688,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02593953348696232,\n          \"Height\": 0.03353676199913025,\n          \"Left\": 0.05729520320892334,\n          \"Top\": 0.7902488112449646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05729520320892334,\n            \"Y\": 0.7902488112449646\n          },\n          {\n            \"X\": 0.08323473483324051,\n            \"Y\": 0.7902488112449646\n          },\n          {\n            \"X\": 0.08323473483324051,\n            \"Y\": 0.8237856030464172\n          },\n          {\n            \"X\": 0.05729520320892334,\n            \"Y\": 0.8237856030464172\n          }\n        ]\n      },\n      \"Id\": \"c9ece2bc-84ce-4eff-b0b0-9012e340e977\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95805358886719,\n      \"Text\": \"final\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05842920020222664,\n          \"Height\": 0.03427518531680107,\n          \"Left\": 0.08398247510194778,\n          \"Top\": 0.7899483442306519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08398247510194778,\n            \"Y\": 0.7899483442306519\n          },\n          {\n            \"X\": 0.14241167902946472,\n            \"Y\": 0.7899483442306519\n          },\n          {\n            \"X\": 0.14241167902946472,\n            \"Y\": 0.8242235779762268\n          },\n          {\n            \"X\": 0.08398247510194778,\n            \"Y\": 0.8242235779762268\n          }\n        ]\n      },\n      \"Id\": \"5f8ee700-cd45-4196-80e1-48f283b4ba84\",\n      \"Page\": 1,\n      \"SearchKey\": \"final\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89287567138672,\n      \"Text\": \"footer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08015620708465576,\n          \"Height\": 0.0338926836848259,\n          \"Left\": 0.1447191685438156,\n          \"Top\": 0.7903606295585632\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1447191685438156,\n            \"Y\": 0.7903606295585632\n          },\n          {\n            \"X\": 0.22487537562847137,\n            \"Y\": 0.7903606295585632\n          },\n          {\n            \"X\": 0.22487537562847137,\n            \"Y\": 0.8242533206939697\n          },\n          {\n            \"X\": 0.1447191685438156,\n            \"Y\": 0.8242533206939697\n          }\n        ]\n      },\n      \"Id\": \"40f8a1f9-e1d2-45ab-b965-07d2c145c70c\",\n      \"Page\": 1,\n      \"SearchKey\": \"footer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96315002441406,\n      \"Text\": \"section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09544287621974945,\n          \"Height\": 0.03357430920004845,\n          \"Left\": 0.22641485929489136,\n          \"Top\": 0.7909088134765625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22641485929489136,\n            \"Y\": 0.7909088134765625\n          },\n          {\n            \"X\": 0.3218577206134796,\n            \"Y\": 0.7909088134765625\n          },\n          {\n            \"X\": 0.3218577206134796,\n            \"Y\": 0.8244830965995789\n          },\n          {\n            \"X\": 0.22641485929489136,\n            \"Y\": 0.8244830965995789\n          }\n        ]\n      },\n      \"Id\": \"42a153ca-34e1-46f8-a0f6-baf179e1715a\",\n      \"Page\": 1,\n      \"SearchKey\": \"section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92181396484375,\n      \"Text\": \"restores\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1102244183421135,\n          \"Height\": 0.032353777438402176,\n          \"Left\": 0.32359835505485535,\n          \"Top\": 0.7921715974807739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32359835505485535,\n            \"Y\": 0.7921715974807739\n          },\n          {\n            \"X\": 0.43382278084754944,\n            \"Y\": 0.7921715974807739\n          },\n          {\n            \"X\": 0.43382278084754944,\n            \"Y\": 0.8245253562927246\n          },\n          {\n            \"X\": 0.32359835505485535,\n            \"Y\": 0.8245253562927246\n          }\n        ]\n      },\n      \"Id\": \"9249ff25-7ddb-4e49-8867-16297a054082\",\n      \"Page\": 1,\n      \"SearchKey\": \"restores\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60315704345703,\n      \"Text\": \"single-column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1805555522441864,\n          \"Height\": 0.041064828634262085,\n          \"Left\": 0.4361664950847626,\n          \"Top\": 0.7904316782951355\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4361664950847626,\n            \"Y\": 0.7904316782951355\n          },\n          {\n            \"X\": 0.616722047328949,\n            \"Y\": 0.7904316782951355\n          },\n          {\n            \"X\": 0.616722047328949,\n            \"Y\": 0.8314964771270752\n          },\n          {\n            \"X\": 0.4361664950847626,\n            \"Y\": 0.8314964771270752\n          }\n        ]\n      },\n      \"Id\": \"4f247b69-8ff5-4877-8605-133700fdcd2b\",\n      \"Page\": 1,\n      \"SearchKey\": \"single-column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54737091064453,\n      \"Text\": \"layout,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08883021771907806,\n          \"Height\": 0.04001128673553467,\n          \"Left\": 0.6190832257270813,\n          \"Top\": 0.7906901240348816\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6190832257270813,\n            \"Y\": 0.7906901240348816\n          },\n          {\n            \"X\": 0.7079134583473206,\n            \"Y\": 0.7906901240348816\n          },\n          {\n            \"X\": 0.7079134583473206,\n            \"Y\": 0.8307014107704163\n          },\n          {\n            \"X\": 0.6190832257270813,\n            \"Y\": 0.8307014107704163\n          }\n        ]\n      },\n      \"Id\": \"1655c380-1854-4108-9c89-7e07d813e235\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99217987060547,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05339532345533371,\n          \"Height\": 0.033991266041994095,\n          \"Left\": 0.7115413546562195,\n          \"Top\": 0.7904157042503357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7115413546562195,\n            \"Y\": 0.7904157042503357\n          },\n          {\n            \"X\": 0.764936625957489,\n            \"Y\": 0.7904157042503357\n          },\n          {\n            \"X\": 0.764936625957489,\n            \"Y\": 0.8244069814682007\n          },\n          {\n            \"X\": 0.7115413546562195,\n            \"Y\": 0.8244069814682007\n          }\n        ]\n      },\n      \"Id\": \"bc87d96d-b1fe-4d0e-9d85-ad62f7fe9ddf\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98089599609375,\n      \"Text\": \"should\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08887269347906113,\n          \"Height\": 0.03400463983416557,\n          \"Left\": 0.767345130443573,\n          \"Top\": 0.7904872894287109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.767345130443573,\n            \"Y\": 0.7904872894287109\n          },\n          {\n            \"X\": 0.8562178611755371,\n            \"Y\": 0.7904872894287109\n          },\n          {\n            \"X\": 0.8562178611755371,\n            \"Y\": 0.8244919776916504\n          },\n          {\n            \"X\": 0.767345130443573,\n            \"Y\": 0.8244919776916504\n          }\n        ]\n      },\n      \"Id\": \"2e15094a-5a54-4cbe-becd-506f9a5951bd\",\n      \"Page\": 1,\n      \"SearchKey\": \"should\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98799896240234,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03796212747693062,\n          \"Height\": 0.032840169966220856,\n          \"Left\": 0.8581212162971497,\n          \"Top\": 0.7908965349197388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8581212162971497,\n            \"Y\": 0.7908965349197388\n          },\n          {\n            \"X\": 0.8960833549499512,\n            \"Y\": 0.7908965349197388\n          },\n          {\n            \"X\": 0.8960833549499512,\n            \"Y\": 0.8237367272377014\n          },\n          {\n            \"X\": 0.8581212162971497,\n            \"Y\": 0.8237367272377014\n          }\n        ]\n      },\n      \"Id\": \"d029eca3-b5c7-4bd2-bfa3-52d437145f45\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97957611083984,\n      \"Text\": \"read\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0621517114341259,\n          \"Height\": 0.0335305891931057,\n          \"Left\": 0.05809899792075157,\n          \"Top\": 0.8301045894622803\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05809899792075157,\n            \"Y\": 0.8301045894622803\n          },\n          {\n            \"X\": 0.12025070935487747,\n            \"Y\": 0.8301045894622803\n          },\n          {\n            \"X\": 0.12025070935487747,\n            \"Y\": 0.8636351823806763\n          },\n          {\n            \"X\": 0.05809899792075157,\n            \"Y\": 0.8636351823806763\n          }\n        ]\n      },\n      \"Id\": \"1d2d43cc-6d41-40dd-b864-6952cbdc2015\",\n      \"Page\": 1,\n      \"SearchKey\": \"read\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81720733642578,\n      \"Text\": \"last.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05648881569504738,\n          \"Height\": 0.033455152064561844,\n          \"Left\": 0.12293993681669235,\n          \"Top\": 0.8301277756690979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12293993681669235,\n            \"Y\": 0.8301277756690979\n          },\n          {\n            \"X\": 0.17942875623703003,\n            \"Y\": 0.8301277756690979\n          },\n          {\n            \"X\": 0.17942875623703003,\n            \"Y\": 0.8635829091072083\n          },\n          {\n            \"X\": 0.12293993681669235,\n            \"Y\": 0.8635829091072083\n          }\n        ]\n      },\n      \"Id\": \"8266f83d-3cbc-42e8-bb50-704fb7ef9fb5\",\n      \"Page\": 1,\n      \"SearchKey\": \"last.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60374450683594,\n      \"Text\": \"In\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028176967054605484,\n          \"Height\": 0.032903265208005905,\n          \"Left\": 0.18366080522537231,\n          \"Top\": 0.8302068114280701\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18366080522537231,\n            \"Y\": 0.8302068114280701\n          },\n          {\n            \"X\": 0.2118377685546875,\n            \"Y\": 0.8302068114280701\n          },\n          {\n            \"X\": 0.2118377685546875,\n            \"Y\": 0.8631100654602051\n          },\n          {\n            \"X\": 0.18366080522537231,\n            \"Y\": 0.8631100654602051\n          }\n        ]\n      },\n      \"Id\": \"ba16ad51-8155-436d-a6d4-20982db758fa\",\n      \"Page\": 1,\n      \"SearchKey\": \"In\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9976577758789,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046199120581150055,\n          \"Height\": 0.03314226120710373,\n          \"Left\": 0.21381905674934387,\n          \"Top\": 0.8301994204521179\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21381905674934387,\n            \"Y\": 0.8301994204521179\n          },\n          {\n            \"X\": 0.26001816987991333,\n            \"Y\": 0.8301994204521179\n          },\n          {\n            \"X\": 0.26001816987991333,\n            \"Y\": 0.8633416891098022\n          },\n          {\n            \"X\": 0.21381905674934387,\n            \"Y\": 0.8633416891098022\n          }\n        ]\n      },\n      \"Id\": \"842a8231-eed6-4f69-8e63-857fc8b27917\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96807098388672,\n      \"Text\": \"general\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10025843232870102,\n          \"Height\": 0.039813265204429626,\n          \"Left\": 0.2623683214187622,\n          \"Top\": 0.8301873207092285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2623683214187622,\n            \"Y\": 0.8301873207092285\n          },\n          {\n            \"X\": 0.3626267611980438,\n            \"Y\": 0.8301873207092285\n          },\n          {\n            \"X\": 0.3626267611980438,\n            \"Y\": 0.8700006008148193\n          },\n          {\n            \"X\": 0.2623683214187622,\n            \"Y\": 0.8700006008148193\n          }\n        ]\n      },\n      \"Id\": \"a4ba3c80-3a05-417c-b6f7-74875855a7bc\",\n      \"Page\": 1,\n      \"SearchKey\": \"general\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63565826416016,\n      \"Text\": \"sense,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08770744502544403,\n          \"Height\": 0.032192789018154144,\n          \"Left\": 0.36584827303886414,\n          \"Top\": 0.835185706615448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36584827303886414,\n            \"Y\": 0.835185706615448\n          },\n          {\n            \"X\": 0.45355573296546936,\n            \"Y\": 0.835185706615448\n          },\n          {\n            \"X\": 0.45355573296546936,\n            \"Y\": 0.8673784732818604\n          },\n          {\n            \"X\": 0.36584827303886414,\n            \"Y\": 0.8673784732818604\n          }\n        ]\n      },\n      \"Id\": \"d6e6b3f4-7db0-44c9-8ff3-6bacfbd00bbb\",\n      \"Page\": 1,\n      \"SearchKey\": \"sense,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94584655761719,\n      \"Text\": \"text\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053229253739118576,\n          \"Height\": 0.03286520391702652,\n          \"Left\": 0.45641016960144043,\n          \"Top\": 0.8310705423355103\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45641016960144043,\n            \"Y\": 0.8310705423355103\n          },\n          {\n            \"X\": 0.5096394419670105,\n            \"Y\": 0.8310705423355103\n          },\n          {\n            \"X\": 0.5096394419670105,\n            \"Y\": 0.8639357686042786\n          },\n          {\n            \"X\": 0.45641016960144043,\n            \"Y\": 0.8639357686042786\n          }\n        ]\n      },\n      \"Id\": \"53ce71b2-73c7-4a23-8f22-b090f1fc8e42\",\n      \"Page\": 1,\n      \"SearchKey\": \"text\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97501373291016,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1010059341788292,\n          \"Height\": 0.04126233607530594,\n          \"Left\": 0.510739266872406,\n          \"Top\": 0.8297072052955627\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.510739266872406,\n            \"Y\": 0.8297072052955627\n          },\n          {\n            \"X\": 0.6117452383041382,\n            \"Y\": 0.8297072052955627\n          },\n          {\n            \"X\": 0.6117452383041382,\n            \"Y\": 0.8709695339202881\n          },\n          {\n            \"X\": 0.510739266872406,\n            \"Y\": 0.8709695339202881\n          }\n        ]\n      },\n      \"Id\": \"3f6bf6d9-fc29-4ad4-852c-f8ea48ff0440\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9336929321289,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07349299639463425,\n          \"Height\": 0.03371695056557655,\n          \"Left\": 0.614549458026886,\n          \"Top\": 0.830318808555603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.614549458026886,\n            \"Y\": 0.830318808555603\n          },\n          {\n            \"X\": 0.688042402267456,\n            \"Y\": 0.830318808555603\n          },\n          {\n            \"X\": 0.688042402267456,\n            \"Y\": 0.8640357851982117\n          },\n          {\n            \"X\": 0.614549458026886,\n            \"Y\": 0.8640357851982117\n          }\n        ]\n      },\n      \"Id\": \"b8c7e6a9-f6aa-4322-a516-8fda40438af6\",\n      \"Page\": 1,\n      \"SearchKey\": \"order\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.978515625,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03781077265739441,\n          \"Height\": 0.02875595912337303,\n          \"Left\": 0.6891140341758728,\n          \"Top\": 0.8351898789405823\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6891140341758728,\n            \"Y\": 0.8351898789405823\n          },\n          {\n            \"X\": 0.7269247770309448,\n            \"Y\": 0.8351898789405823\n          },\n          {\n            \"X\": 0.7269247770309448,\n            \"Y\": 0.8639458417892456\n          },\n          {\n            \"X\": 0.6891140341758728,\n            \"Y\": 0.8639458417892456\n          }\n        ]\n      },\n      \"Id\": \"efc6db4d-b7c5-4559-b7a2-303a63a0ea89\",\n      \"Page\": 1,\n      \"SearchKey\": \"on\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8710708618164,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022504720836877823,\n          \"Height\": 0.02776448056101799,\n          \"Left\": 0.7291910648345947,\n          \"Top\": 0.8360178470611572\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7291910648345947,\n            \"Y\": 0.8360178470611572\n          },\n          {\n            \"X\": 0.7516958117485046,\n            \"Y\": 0.8360178470611572\n          },\n          {\n            \"X\": 0.7516958117485046,\n            \"Y\": 0.8637822866439819\n          },\n          {\n            \"X\": 0.7291910648345947,\n            \"Y\": 0.8637822866439819\n          }\n        ]\n      },\n      \"Id\": \"d0615b7d-9959-44e2-b41e-59320951fe6c\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97543334960938,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06921546161174774,\n          \"Height\": 0.034703802317380905,\n          \"Left\": 0.7529886364936829,\n          \"Top\": 0.83602374792099\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7529886364936829,\n            \"Y\": 0.83602374792099\n          },\n          {\n            \"X\": 0.822204053401947,\n            \"Y\": 0.83602374792099\n          },\n          {\n            \"X\": 0.822204053401947,\n            \"Y\": 0.8707275390625\n          },\n          {\n            \"X\": 0.7529886364936829,\n            \"Y\": 0.8707275390625\n          }\n        ]\n      },\n      \"Id\": \"1d3f2698-6836-403e-afb7-10ce3f326844\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96324920654297,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02634718082845211,\n          \"Height\": 0.03370495140552521,\n          \"Left\": 0.8241859078407288,\n          \"Top\": 0.8300345540046692\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8241859078407288,\n            \"Y\": 0.8300345540046692\n          },\n          {\n            \"X\": 0.8505330681800842,\n            \"Y\": 0.8300345540046692\n          },\n          {\n            \"X\": 0.8505330681800842,\n            \"Y\": 0.863739550113678\n          },\n          {\n            \"X\": 0.8241859078407288,\n            \"Y\": 0.863739550113678\n          }\n        ]\n      },\n      \"Id\": \"d60a9b5c-e955-4d8b-b730-350a0c0487e2\",\n      \"Page\": 1,\n      \"SearchKey\": \"is\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85641479492188,\n      \"Text\": \"non-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06287302821874619,\n          \"Height\": 0.027872664853930473,\n          \"Left\": 0.8526319861412048,\n          \"Top\": 0.8356902599334717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8526319861412048,\n            \"Y\": 0.8356902599334717\n          },\n          {\n            \"X\": 0.9155049920082092,\n            \"Y\": 0.8356902599334717\n          },\n          {\n            \"X\": 0.9155049920082092,\n            \"Y\": 0.8635629415512085\n          },\n          {\n            \"X\": 0.8526319861412048,\n            \"Y\": 0.8635629415512085\n          }\n        ]\n      },\n      \"Id\": \"5b32b444-2618-4782-87db-fa78ef81430e\",\n      \"Page\": 1,\n      \"SearchKey\": \"non-\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87356567382812,\n      \"Text\": \"trivial\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07239148765802383,\n          \"Height\": 0.03355013206601143,\n          \"Left\": 0.057198453694581985,\n          \"Top\": 0.8691732883453369\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057198453694581985,\n            \"Y\": 0.8691732883453369\n          },\n          {\n            \"X\": 0.12958994507789612,\n            \"Y\": 0.8691732883453369\n          },\n          {\n            \"X\": 0.12958994507789612,\n            \"Y\": 0.9027234315872192\n          },\n          {\n            \"X\": 0.057198453694581985,\n            \"Y\": 0.9027234315872192\n          }\n        ]\n      },\n      \"Id\": \"3006bbc9-e301-4b2a-b95a-bb114bb9f7b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"trivial\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99298095703125,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05354450270533562,\n          \"Height\": 0.0341990627348423,\n          \"Left\": 0.13225314021110535,\n          \"Top\": 0.8689180612564087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13225314021110535,\n            \"Y\": 0.8689180612564087\n          },\n          {\n            \"X\": 0.18579764664173126,\n            \"Y\": 0.8689180612564087\n          },\n          {\n            \"X\": 0.18579764664173126,\n            \"Y\": 0.9031171202659607\n          },\n          {\n            \"X\": 0.13225314021110535,\n            \"Y\": 0.9031171202659607\n          }\n        ]\n      },\n      \"Id\": \"eae21012-9ee0-462b-84e2-5cbcf2d95e68\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74958038330078,\n      \"Text\": \"sometimes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14324656128883362,\n          \"Height\": 0.03330788016319275,\n          \"Left\": 0.18786010146141052,\n          \"Top\": 0.8699425458908081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18786010146141052,\n            \"Y\": 0.8699425458908081\n          },\n          {\n            \"X\": 0.33110666275024414,\n            \"Y\": 0.8699425458908081\n          },\n          {\n            \"X\": 0.33110666275024414,\n            \"Y\": 0.9032504558563232\n          },\n          {\n            \"X\": 0.18786010146141052,\n            \"Y\": 0.9032504558563232\n          }\n        ]\n      },\n      \"Id\": \"e7037901-3d03-4d5c-933e-6b7f0a6089fe\",\n      \"Page\": 1,\n      \"SearchKey\": \"sometimes\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.9103775024414,\n      \"Text\": \"subjective.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13974593579769135,\n          \"Height\": 0.03980537876486778,\n          \"Left\": 0.33382508158683777,\n          \"Top\": 0.8693244457244873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33382508158683777,\n            \"Y\": 0.8693244457244873\n          },\n          {\n            \"X\": 0.4735710024833679,\n            \"Y\": 0.8693244457244873\n          },\n          {\n            \"X\": 0.4735710024833679,\n            \"Y\": 0.909129798412323\n          },\n          {\n            \"X\": 0.33382508158683777,\n            \"Y\": 0.909129798412323\n          }\n        ]\n      },\n      \"Id\": \"89041884-e92a-43e4-b48d-7b0131a783aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"subjective.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84220886230469,\n      \"Text\": \"However,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12341221421957016,\n          \"Height\": 0.037993527948856354,\n          \"Left\": 0.47586002945899963,\n          \"Top\": 0.8691843152046204\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47586002945899963,\n            \"Y\": 0.8691843152046204\n          },\n          {\n            \"X\": 0.5992722511291504,\n            \"Y\": 0.8691843152046204\n          },\n          {\n            \"X\": 0.5992722511291504,\n            \"Y\": 0.9071778655052185\n          },\n          {\n            \"X\": 0.47586002945899963,\n            \"Y\": 0.9071778655052185\n          }\n        ]\n      },\n      \"Id\": \"825b8f15-95c1-4097-b549-04a093cd02ad\",\n      \"Page\": 1,\n      \"SearchKey\": \"However,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75080108642578,\n      \"Text\": \"heuristics\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12523166835308075,\n          \"Height\": 0.034873876720666885,\n          \"Left\": 0.6036700010299683,\n          \"Top\": 0.8690227270126343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6036700010299683,\n            \"Y\": 0.8690227270126343\n          },\n          {\n            \"X\": 0.7289016842842102,\n            \"Y\": 0.8690227270126343\n          },\n          {\n            \"X\": 0.7289016842842102,\n            \"Y\": 0.9038966298103333\n          },\n          {\n            \"X\": 0.6036700010299683,\n            \"Y\": 0.9038966298103333\n          }\n        ]\n      },\n      \"Id\": \"f7260cb7-81c0-448a-a329-17cad70e528e\",\n      \"Page\": 1,\n      \"SearchKey\": \"heuristics\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9754638671875,\n      \"Text\": \"can\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05150265246629715,\n          \"Height\": 0.02816155180335045,\n          \"Left\": 0.7319707870483398,\n          \"Top\": 0.8748311400413513\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7319707870483398,\n            \"Y\": 0.8748311400413513\n          },\n          {\n            \"X\": 0.7834734320640564,\n            \"Y\": 0.8748311400413513\n          },\n          {\n            \"X\": 0.7834734320640564,\n            \"Y\": 0.9029926657676697\n          },\n          {\n            \"X\": 0.7319707870483398,\n            \"Y\": 0.9029926657676697\n          }\n        ]\n      },\n      \"Id\": \"b85f2f76-aa26-493c-b047-8634449c427b\",\n      \"Page\": 1,\n      \"SearchKey\": \"can\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88920593261719,\n      \"Text\": \"give\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05872828885912895,\n          \"Height\": 0.04046253859996796,\n          \"Left\": 0.7850995659828186,\n          \"Top\": 0.8692238330841064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7850995659828186,\n            \"Y\": 0.8692238330841064\n          },\n          {\n            \"X\": 0.8438278436660767,\n            \"Y\": 0.8692238330841064\n          },\n          {\n            \"X\": 0.8438278436660767,\n            \"Y\": 0.9096863865852356\n          },\n          {\n            \"X\": 0.7850995659828186,\n            \"Y\": 0.9096863865852356\n          }\n        ]\n      },\n      \"Id\": \"8370272a-da16-441f-b9e8-0e1fb9ff34cc\",\n      \"Page\": 1,\n      \"SearchKey\": \"give\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.09788513183594,\n      \"Text\": \"us\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03663790971040726,\n          \"Height\": 0.02822001650929451,\n          \"Left\": 0.845994770526886,\n          \"Top\": 0.874947190284729\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.845994770526886,\n            \"Y\": 0.874947190284729\n          },\n          {\n            \"X\": 0.8826326727867126,\n            \"Y\": 0.874947190284729\n          },\n          {\n            \"X\": 0.8826326727867126,\n            \"Y\": 0.903167188167572\n          },\n          {\n            \"X\": 0.845994770526886,\n            \"Y\": 0.903167188167572\n          }\n        ]\n      },\n      \"Id\": \"8b4f73fb-80ec-4ef1-ba06-c9b1699d20c5\",\n      \"Page\": 1,\n      \"SearchKey\": \"us\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92668914794922,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021866388618946075,\n          \"Height\": 0.027382154017686844,\n          \"Left\": 0.884349524974823,\n          \"Top\": 0.8753290176391602\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.884349524974823,\n            \"Y\": 0.8753290176391602\n          },\n          {\n            \"X\": 0.9062159061431885,\n            \"Y\": 0.8753290176391602\n          },\n          {\n            \"X\": 0.9062159061431885,\n            \"Y\": 0.9027111530303955\n          },\n          {\n            \"X\": 0.884349524974823,\n            \"Y\": 0.9027111530303955\n          }\n        ]\n      },\n      \"Id\": \"8bbc8706-c73f-4151-ba8c-bf8c6cc5da12\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96341705322266,\n      \"Text\": \"good\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.069853276014328,\n          \"Height\": 0.04055357351899147,\n          \"Left\": 0.057011399418115616,\n          \"Top\": 0.9085709452629089\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057011399418115616,\n            \"Y\": 0.9085709452629089\n          },\n          {\n            \"X\": 0.12686467170715332,\n            \"Y\": 0.9085709452629089\n          },\n          {\n            \"X\": 0.12686467170715332,\n            \"Y\": 0.9491245150566101\n          },\n          {\n            \"X\": 0.057011399418115616,\n            \"Y\": 0.9491245150566101\n          }\n        ]\n      },\n      \"Id\": \"860f5432-3d89-461f-86bf-67798b57e178\",\n      \"Page\": 1,\n      \"SearchKey\": \"good\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8033447265625,\n      \"Text\": \"start.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06709007173776627,\n          \"Height\": 0.0325733982026577,\n          \"Left\": 0.12949946522712708,\n          \"Top\": 0.9099883437156677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12949946522712708,\n            \"Y\": 0.9099883437156677\n          },\n          {\n            \"X\": 0.19658952951431274,\n            \"Y\": 0.9099883437156677\n          },\n          {\n            \"X\": 0.19658952951431274,\n            \"Y\": 0.9425617456436157\n          },\n          {\n            \"X\": 0.12949946522712708,\n            \"Y\": 0.9425617456436157\n          }\n        ]\n      },\n      \"Id\": \"0f782807-10e5-4b28-9042-0a834927ded5\",\n      \"Page\": 1,\n      \"SearchKey\": \"start.\"\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/test-query-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 8.360903403669588e-17,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1.7937772895703968e-16\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"d7ae5a31-f26e-440a-a62c-b04128b6a282\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"57e62655-b193-410d-bcb9-b9dd2b1d5797\",\n            \"5a336fe1-4f81-4225-a1f4-52ee7b2e8db4\",\n            \"60c942ef-ab55-4c2b-aabf-6bbd1fdb70f9\",\n            \"f76d4a3e-1d98-4f75-af96-43be75116e8b\",\n            \"2bb7e0a2-ea3d-4d36-abb4-1bcf0be8848f\",\n            \"2affdb06-80fc-4bdf-ad8b-b5c1dd068d64\",\n            \"dde7fa00-a829-4fc1-a455-335bbd4e45de\",\n            \"7e955e62-760d-493a-bf20-bbe428e6d6a5\",\n            \"51f403e1-77e3-432a-96ee-4eb97efa4415\",\n            \"93b12a2f-4c70-4770-8a4c-28018177c3fc\",\n            \"adb22333-97cc-4972-87a1-2c8f3d0313ce\",\n            \"a4215454-1c7e-4c86-b6ea-447ca9db3ba7\",\n            \"a0349d2f-b05e-414a-9d00-104bd594f51c\",\n            \"161052ee-fc39-4d03-a028-3d417df08cf5\",\n            \"a7cc605b-dd3d-4881-89cc-51a1f9884290\",\n            \"b1073233-aeb0-486e-b35b-5491a445bbe1\",\n            \"9098060d-e636-444b-b45f-a375ba460aae\",\n            \"c85f2736-d51e-4878-b501-2e7245b0fc04\",\n            \"97d29c1b-57fd-46df-bdd4-8212c4d36e7f\",\n            \"4dd07886-1869-4d60-8942-ea4739479d78\",\n            \"9cf7e2c4-e76a-42d3-8c44-5fd32f26567e\",\n            \"64cacc78-9088-4ab8-8898-b4523ccf4196\",\n            \"a572e347-ee54-4a31-b7cd-37ec919be56f\",\n            \"6cd06851-f2c8-485e-b354-90620363ac3b\",\n            \"ee541e94-27eb-41c1-8b60-6d6c3b06807e\",\n            \"0c93c104-0334-4105-9749-d2bbf931b0d5\",\n            \"e6db51e7-cc7e-4ba5-9723-f83a470e7c69\",\n            \"2074241e-6dc2-4a66-ad47-c3c703251310\",\n            \"2dc8c04b-53b1-452d-9768-df4d9809e351\",\n            \"8c2c5f0a-8965-4b89-99ea-3b24e817dd07\",\n            \"30195163-d2f1-436d-b42e-42eef2e23823\",\n            \"a91453f8-20e1-4a4d-aad8-2fefc728b655\",\n            \"e04d68f7-7874-4a8a-a339-e6d415029f12\",\n            \"212198e9-23ad-4ae9-8844-5e0b36db50c8\",\n            \"39f58a1e-7517-4e4d-a010-900838d07755\",\n            \"2b6ed71c-be3c-443f-bae0-32bf285cc6ba\",\n            \"c0a7e08b-79a3-4ddb-86c0-8d9a674013f5\",\n            \"56cfa525-1969-43bb-ad08-737b2ab9064f\",\n            \"7e3c256e-aec8-498e-8dee-8672f697dca0\",\n            \"c78e4046-0ce9-4606-a5ec-80ea1e410475\",\n            \"756d16e5-4734-41d1-8ce8-2db22c8f8b53\",\n            \"f7efb0b7-daa3-4989-99b6-2a415d43a87d\",\n            \"96643d27-9a38-4710-a3bf-6c5dba5bda21\",\n            \"5d11b136-a3cc-491f-bc6e-4e2492b74dc6\",\n            \"dfc396a7-5a2f-4f02-a304-f4771f08afd1\",\n            \"2696f5d8-1b1b-4e78-9823-09c0d3fa6367\",\n            \"171815d5-0fb6-41a1-86ae-61adb8952764\",\n            \"7e0f5035-b17c-43e1-950b-99cf7e9cc860\",\n            \"08eb26c8-b864-4f16-a9e6-4ec895443bcc\",\n            \"99a7f8c9-69a9-4c69-87c8-093905161a7b\",\n            \"84307c59-7392-4d30-899d-39dc1073f389\",\n            \"6d75d247-b285-4195-a7db-49f790222db9\",\n            \"13b5a7b8-b75a-43e6-b315-d649b60874f3\",\n            \"8d86259c-8e2c-4e97-9f57-fe82d87d3a2f\",\n            \"2e48a325-3995-46f3-94c9-866daf957980\",\n            \"954d9c90-5029-4dd1-a37a-c6bde13608b4\",\n            \"fffd9d98-58a1-467d-941d-6697c277dabb\",\n            \"044a9104-2e4c-4ad4-8010-5fc846aae69f\",\n            \"bc354632-b810-45d1-8c2e-68aefa91d27e\",\n            \"5cd91c27-76f2-4070-ae7c-e2e9db096eaf\",\n            \"77f460ba-f704-4fda-b313-f0676f962543\",\n            \"a70eb058-9090-4fb8-8a78-d9e6b71b6f85\",\n            \"91325e05-9672-412f-9c98-fac0048d493e\",\n            \"bb52bb55-8ae5-4486-994f-99ace2b600fa\",\n            \"9d525fff-6016-40e3-b126-997f695a9c97\",\n            \"955563f9-8712-47bb-8379-d88452b7fb6c\",\n            \"c27c7344-70cd-47e7-90a6-1bdae7f09c85\",\n            \"06b2a225-4523-4c85-98ef-26c6e7ae73a3\"\n          ]\n        }\n      ],\n      \"childText\": \"Sample Vaccination Record Card Mary Major M Last Name First Name MI 1/6/58 012345abcd67 Date of Birth Patient number (medical record or IIS record number) Product Name/Manufacturer Healthcare Professional Vaccine Date Lot Number or Clinic Site 1st Dose AA1234 1/18/21 XYZ Vaccine A Pfizer mm dd yy 2nd Dose 2/8/2021 CVS / / Pfizer Vaccine A BB5678 mm dd yy Booster Shot / / Vaccine A mm dd yy / / Other mm dd yy 1/6/58 Mary Major AA1234 Pfizer \",\n      \"SearchKey\": \"Sample Vaccination Record Card Mary Major M Last Name First Name MI 1/6/58 012345abcd67 Date of Birth Patient number (medical record or IIS record number) Product Name/Manufacturer Healthcare Professional Vaccine Date Lot Number or Clinic Site 1st Dose AA1234 1/18/21 XYZ Vaccine A Pfizer mm dd yy 2nd Dose 2/8/2021 CVS / / Pfizer Vaccine A BB5678 mm dd yy Booster Shot / / Vaccine A mm dd yy / / Other mm dd yy 1/6/58 Mary Major AA1234 Pfizer \",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68571472167969,\n      \"Text\": \"Sample Vaccination Record Card\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5298210978507996,\n          \"Height\": 0.051195550709962845,\n          \"Left\": 0.2358078509569168,\n          \"Top\": 0.0370197556912899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2358078509569168,\n            \"Y\": 0.0370197556912899\n          },\n          {\n            \"X\": 0.7656289935112,\n            \"Y\": 0.0370197556912899\n          },\n          {\n            \"X\": 0.7656289935112,\n            \"Y\": 0.08821530640125275\n          },\n          {\n            \"X\": 0.2358078509569168,\n            \"Y\": 0.08821530640125275\n          }\n        ]\n      },\n      \"Id\": \"57e62655-b193-410d-bcb9-b9dd2b1d5797\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"260b1762-5e14-4bae-8d8e-439a5aa0cf35\",\n            \"46c033b2-a91f-4992-8634-0fc2c3de3907\",\n            \"83da10dc-8db9-4ced-975c-27e079a1163c\",\n            \"4468f190-5431-4681-91f9-83fbfe0e15e8\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Sample Vaccination Record Card \",\n      \"SearchKey\": \"Sample Vaccination Record Card\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97722625732422,\n      \"Text\": \"Mary\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056179460138082504,\n          \"Height\": 0.03503012657165527,\n          \"Left\": 0.039719533175230026,\n          \"Top\": 0.14434710144996643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.039719533175230026,\n            \"Y\": 0.14434710144996643\n          },\n          {\n            \"X\": 0.09589899331331253,\n            \"Y\": 0.14434710144996643\n          },\n          {\n            \"X\": 0.09589899331331253,\n            \"Y\": 0.1793772280216217\n          },\n          {\n            \"X\": 0.039719533175230026,\n            \"Y\": 0.1793772280216217\n          }\n        ]\n      },\n      \"Id\": \"5a336fe1-4f81-4225-a1f4-52ee7b2e8db4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"871877e2-eedf-49cf-bee0-ea53cc7ab455\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Mary \",\n      \"SearchKey\": \"Mary\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90886688232422,\n      \"Text\": \"Major\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06432604044675827,\n          \"Height\": 0.03528284654021263,\n          \"Left\": 0.29168885946273804,\n          \"Top\": 0.14388298988342285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29168885946273804,\n            \"Y\": 0.14388298988342285\n          },\n          {\n            \"X\": 0.3560148775577545,\n            \"Y\": 0.14388298988342285\n          },\n          {\n            \"X\": 0.3560148775577545,\n            \"Y\": 0.17916584014892578\n          },\n          {\n            \"X\": 0.29168885946273804,\n            \"Y\": 0.17916584014892578\n          }\n        ]\n      },\n      \"Id\": \"60c942ef-ab55-4c2b-aabf-6bbd1fdb70f9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ee86fbb-d88a-4189-805c-9c5f01c6913b\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Major \",\n      \"SearchKey\": \"Major\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.23570251464844,\n      \"Text\": \"M\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021111853420734406,\n          \"Height\": 0.02859259583055973,\n          \"Left\": 0.6993556022644043,\n          \"Top\": 0.1442459374666214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6993556022644043,\n            \"Y\": 0.1442459374666214\n          },\n          {\n            \"X\": 0.7204674482345581,\n            \"Y\": 0.1442459374666214\n          },\n          {\n            \"X\": 0.7204674482345581,\n            \"Y\": 0.17283853888511658\n          },\n          {\n            \"X\": 0.6993556022644043,\n            \"Y\": 0.17283853888511658\n          }\n        ]\n      },\n      \"Id\": \"f76d4a3e-1d98-4f75-af96-43be75116e8b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b99d10a-b019-4a83-841b-8c0126ed526f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"M \",\n      \"SearchKey\": \"M\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93993377685547,\n      \"Text\": \"Last Name\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09553913027048111,\n          \"Height\": 0.023103991523385048,\n          \"Left\": 0.029459139332175255,\n          \"Top\": 0.2103949934244156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.029459139332175255,\n            \"Y\": 0.2103949934244156\n          },\n          {\n            \"X\": 0.12499827146530151,\n            \"Y\": 0.2103949934244156\n          },\n          {\n            \"X\": 0.12499827146530151,\n            \"Y\": 0.2334989756345749\n          },\n          {\n            \"X\": 0.029459139332175255,\n            \"Y\": 0.2334989756345749\n          }\n        ]\n      },\n      \"Id\": \"2bb7e0a2-ea3d-4d36-abb4-1bcf0be8848f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7b7653bd-9f80-4812-a189-5b168381776b\",\n            \"e3f503d0-fc5c-4fac-bf18-28e79a4e10b6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Last Name \",\n      \"SearchKey\": \"Last Name\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9124984741211,\n      \"Text\": \"First Name\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09918852895498276,\n          \"Height\": 0.023095982149243355,\n          \"Left\": 0.28914323449134827,\n          \"Top\": 0.2104007452726364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28914323449134827,\n            \"Y\": 0.2104007452726364\n          },\n          {\n            \"X\": 0.3883317708969116,\n            \"Y\": 0.2104007452726364\n          },\n          {\n            \"X\": 0.3883317708969116,\n            \"Y\": 0.2334967404603958\n          },\n          {\n            \"X\": 0.28914323449134827,\n            \"Y\": 0.2334967404603958\n          }\n        ]\n      },\n      \"Id\": \"2affdb06-80fc-4bdf-ad8b-b5c1dd068d64\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d82a68a-db16-4ea1-a802-3956607716f2\",\n            \"6dfd7a9c-a37e-4ccb-be9e-68344fc8f9b2\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"First Name \",\n      \"SearchKey\": \"First Name\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7132797241211,\n      \"Text\": \"MI\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024707825854420662,\n          \"Height\": 0.02173513174057007,\n          \"Left\": 0.6950206160545349,\n          \"Top\": 0.21108704805374146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6950206160545349,\n            \"Y\": 0.21108704805374146\n          },\n          {\n            \"X\": 0.7197284698486328,\n            \"Y\": 0.21108704805374146\n          },\n          {\n            \"X\": 0.7197284698486328,\n            \"Y\": 0.23282217979431152\n          },\n          {\n            \"X\": 0.6950206160545349,\n            \"Y\": 0.23282217979431152\n          }\n        ]\n      },\n      \"Id\": \"dde7fa00-a829-4fc1-a455-335bbd4e45de\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ff20dba9-5d74-4342-9364-c44140b5d4c6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"MI \",\n      \"SearchKey\": \"MI\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54774475097656,\n      \"Text\": \"1/6/58\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0736883133649826,\n          \"Height\": 0.037740811705589294,\n          \"Left\": 0.038479033857584,\n          \"Top\": 0.2674500644207001\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.038479033857584,\n            \"Y\": 0.2674500644207001\n          },\n          {\n            \"X\": 0.1121673509478569,\n            \"Y\": 0.2674500644207001\n          },\n          {\n            \"X\": 0.1121673509478569,\n            \"Y\": 0.30519089102745056\n          },\n          {\n            \"X\": 0.038479033857584,\n            \"Y\": 0.30519089102745056\n          }\n        ]\n      },\n      \"Id\": \"7e955e62-760d-493a-bf20-bbe428e6d6a5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"57414551-2723-46b5-85bb-45c85da9ec8e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1/6/58 \",\n      \"SearchKey\": \"1/6/58\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52862548828125,\n      \"Text\": \"012345abcd67\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15912824869155884,\n          \"Height\": 0.030382275581359863,\n          \"Left\": 0.47279560565948486,\n          \"Top\": 0.2690737843513489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47279560565948486,\n            \"Y\": 0.2690737843513489\n          },\n          {\n            \"X\": 0.6319238543510437,\n            \"Y\": 0.2690737843513489\n          },\n          {\n            \"X\": 0.6319238543510437,\n            \"Y\": 0.29945605993270874\n          },\n          {\n            \"X\": 0.47279560565948486,\n            \"Y\": 0.29945605993270874\n          }\n        ]\n      },\n      \"Id\": \"51f403e1-77e3-432a-96ee-4eb97efa4415\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8fa23116-b012-44f2-831b-1779a85b7966\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"012345abcd67 \",\n      \"SearchKey\": \"012345abcd67\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90865325927734,\n      \"Text\": \"Date of Birth\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1185479387640953,\n          \"Height\": 0.02425128035247326,\n          \"Left\": 0.029132427647709846,\n          \"Top\": 0.33319127559661865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.029132427647709846,\n            \"Y\": 0.33319127559661865\n          },\n          {\n            \"X\": 0.1476803570985794,\n            \"Y\": 0.33319127559661865\n          },\n          {\n            \"X\": 0.1476803570985794,\n            \"Y\": 0.35744255781173706\n          },\n          {\n            \"X\": 0.029132427647709846,\n            \"Y\": 0.35744255781173706\n          }\n        ]\n      },\n      \"Id\": \"93b12a2f-4c70-4770-8a4c-28018177c3fc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b117aa7-6168-4bca-a338-d1f333ef107e\",\n            \"b5a4678a-e020-4be4-a2a3-7cdf20e0f511\",\n            \"93a28234-e833-4111-8c09-e0170f90c370\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Date of Birth \",\n      \"SearchKey\": \"Date of Birth\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.30685424804688,\n      \"Text\": \"Patient number (medical record or IIS record number)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.48891681432724,\n          \"Height\": 0.029589325189590454,\n          \"Left\": 0.4621703624725342,\n          \"Top\": 0.33245334029197693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4621703624725342,\n            \"Y\": 0.33245334029197693\n          },\n          {\n            \"X\": 0.9510871767997742,\n            \"Y\": 0.33245334029197693\n          },\n          {\n            \"X\": 0.9510871767997742,\n            \"Y\": 0.3620426654815674\n          },\n          {\n            \"X\": 0.4621703624725342,\n            \"Y\": 0.3620426654815674\n          }\n        ]\n      },\n      \"Id\": \"adb22333-97cc-4972-87a1-2c8f3d0313ce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6fec6575-2191-41dc-a946-5f70f64ee32b\",\n            \"4596f38c-3a7b-42ee-81ac-412d1cf7aae5\",\n            \"e86089e1-7d30-47c7-8bc6-8f897a35a4ab\",\n            \"a82b9a35-c48c-49a6-b747-91bb39ebee80\",\n            \"3339e1aa-726d-4431-bbe5-a65f4aee6641\",\n            \"276b403e-eef3-402f-a31a-fce01ee9149f\",\n            \"e1606972-3cf1-492f-bb07-f5a25af3d31a\",\n            \"02a92820-9713-4ebb-9564-db90c08aecfc\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Patient number (medical record or IIS record number) \",\n      \"SearchKey\": \"Patient number (medical record or IIS record number)\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.26227569580078,\n      \"Text\": \"Product Name/Manufacturer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3145357668399811,\n          \"Height\": 0.035237040370702744,\n          \"Left\": 0.21656467020511627,\n          \"Top\": 0.41144102811813354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21656467020511627,\n            \"Y\": 0.41144102811813354\n          },\n          {\n            \"X\": 0.5311004519462585,\n            \"Y\": 0.41144102811813354\n          },\n          {\n            \"X\": 0.5311004519462585,\n            \"Y\": 0.4466780722141266\n          },\n          {\n            \"X\": 0.21656467020511627,\n            \"Y\": 0.4466780722141266\n          }\n        ]\n      },\n      \"Id\": \"a4215454-1c7e-4c86-b6ea-447ca9db3ba7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0ed30ed7-4ede-4436-a051-7dbf6857ba96\",\n            \"e8512297-aa0b-44e1-9566-1f1f43614946\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Product Name/Manufacturer \",\n      \"SearchKey\": \"Product Name/Manufacturer\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57427215576172,\n      \"Text\": \"Healthcare Professional\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2536675035953522,\n          \"Height\": 0.028718814253807068,\n          \"Left\": 0.7067064642906189,\n          \"Top\": 0.40993061661720276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7067064642906189,\n            \"Y\": 0.40993061661720276\n          },\n          {\n            \"X\": 0.9603739976882935,\n            \"Y\": 0.40993061661720276\n          },\n          {\n            \"X\": 0.9603739976882935,\n            \"Y\": 0.438649445772171\n          },\n          {\n            \"X\": 0.7067064642906189,\n            \"Y\": 0.438649445772171\n          }\n        ]\n      },\n      \"Id\": \"a0349d2f-b05e-414a-9d00-104bd594f51c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bfced463-1497-4f37-bb22-707b49db5d10\",\n            \"6a04475e-2024-4556-a980-5067a3a8817a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Healthcare Professional \",\n      \"SearchKey\": \"Healthcare Professional\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.55606079101562,\n      \"Text\": \"Vaccine\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08403389155864716,\n          \"Height\": 0.028304357081651688,\n          \"Left\": 0.06916578114032745,\n          \"Top\": 0.43784892559051514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06916578114032745,\n            \"Y\": 0.43784892559051514\n          },\n          {\n            \"X\": 0.1531996726989746,\n            \"Y\": 0.43784892559051514\n          },\n          {\n            \"X\": 0.1531996726989746,\n            \"Y\": 0.4661532938480377\n          },\n          {\n            \"X\": 0.06916578114032745,\n            \"Y\": 0.4661532938480377\n          }\n        ]\n      },\n      \"Id\": \"161052ee-fc39-4d03-a028-3d417df08cf5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"086b86cb-04f8-4326-88e4-59345b2f68df\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Vaccine \",\n      \"SearchKey\": \"Vaccine\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.62688446044922,\n      \"Text\": \"Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05112472549080849,\n          \"Height\": 0.02819760888814926,\n          \"Left\": 0.5936968326568604,\n          \"Top\": 0.4379563331604004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5936968326568604,\n            \"Y\": 0.4379563331604004\n          },\n          {\n            \"X\": 0.6448215842247009,\n            \"Y\": 0.4379563331604004\n          },\n          {\n            \"X\": 0.6448215842247009,\n            \"Y\": 0.46615394949913025\n          },\n          {\n            \"X\": 0.5936968326568604,\n            \"Y\": 0.46615394949913025\n          }\n        ]\n      },\n      \"Id\": \"a7cc605b-dd3d-4881-89cc-51a1f9884290\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e5c79302-cf63-4e12-8b0f-3a57eec48f16\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Date \",\n      \"SearchKey\": \"Date\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8289794921875,\n      \"Text\": \"Lot Number\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12771163880825043,\n          \"Height\": 0.029285162687301636,\n          \"Left\": 0.30944356322288513,\n          \"Top\": 0.46271926164627075\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30944356322288513,\n            \"Y\": 0.46271926164627075\n          },\n          {\n            \"X\": 0.43715518712997437,\n            \"Y\": 0.46271926164627075\n          },\n          {\n            \"X\": 0.43715518712997437,\n            \"Y\": 0.4920044243335724\n          },\n          {\n            \"X\": 0.30944356322288513,\n            \"Y\": 0.4920044243335724\n          }\n        ]\n      },\n      \"Id\": \"b1073233-aeb0-486e-b35b-5491a445bbe1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bb8a745e-8956-42e7-8925-a8cb78e18a12\",\n            \"c02dc770-551c-4e27-8d4b-1b5872bd3e34\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Lot Number \",\n      \"SearchKey\": \"Lot Number\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68267822265625,\n      \"Text\": \"or Clinic Site\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1343613713979721,\n          \"Height\": 0.029709115624427795,\n          \"Left\": 0.7662445306777954,\n          \"Top\": 0.4591362774372101\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7662445306777954,\n            \"Y\": 0.4591362774372101\n          },\n          {\n            \"X\": 0.9006059169769287,\n            \"Y\": 0.4591362774372101\n          },\n          {\n            \"X\": 0.9006059169769287,\n            \"Y\": 0.4888453781604767\n          },\n          {\n            \"X\": 0.7662445306777954,\n            \"Y\": 0.4888453781604767\n          }\n        ]\n      },\n      \"Id\": \"9098060d-e636-444b-b45f-a375ba460aae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55b9478d-a433-4729-ada5-6e3abf78c824\",\n            \"52944e7a-7975-49d6-b31e-3da236fd7dae\",\n            \"ff2b1d63-eba5-4914-962d-378ceed24152\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"or Clinic Site \",\n      \"SearchKey\": \"or Clinic Site\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74110412597656,\n      \"Text\": \"1st Dose\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09069263190031052,\n          \"Height\": 0.02771964855492115,\n          \"Left\": 0.06768009811639786,\n          \"Top\": 0.5176612734794617\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06768009811639786,\n            \"Y\": 0.5176612734794617\n          },\n          {\n            \"X\": 0.15837273001670837,\n            \"Y\": 0.5176612734794617\n          },\n          {\n            \"X\": 0.15837273001670837,\n            \"Y\": 0.5453808903694153\n          },\n          {\n            \"X\": 0.06768009811639786,\n            \"Y\": 0.5453808903694153\n          }\n        ]\n      },\n      \"Id\": \"c85f2736-d51e-4878-b501-2e7245b0fc04\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aaefb19d-0616-4c84-bec2-ef88f0099c5d\",\n            \"926d4d67-9012-42ad-9377-cb1c0692771f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1st Dose \",\n      \"SearchKey\": \"1st Dose\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.6642837524414,\n      \"Text\": \"AA1234\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0850967988371849,\n          \"Height\": 0.029080908745527267,\n          \"Left\": 0.2419162094593048,\n          \"Top\": 0.5162579417228699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2419162094593048,\n            \"Y\": 0.5162579417228699\n          },\n          {\n            \"X\": 0.3270130157470703,\n            \"Y\": 0.5162579417228699\n          },\n          {\n            \"X\": 0.3270130157470703,\n            \"Y\": 0.5453388690948486\n          },\n          {\n            \"X\": 0.2419162094593048,\n            \"Y\": 0.5453388690948486\n          }\n        ]\n      },\n      \"Id\": \"97d29c1b-57fd-46df-bdd4-8212c4d36e7f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a684ab20-4288-4516-92fc-8722dde3c23a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"AA1234 \",\n      \"SearchKey\": \"AA1234\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 73.92820739746094,\n      \"Text\": \"1/18/21\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10536976158618927,\n          \"Height\": 0.036501966416835785,\n          \"Left\": 0.5707006454467773,\n          \"Top\": 0.5144355297088623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5707006454467773,\n            \"Y\": 0.5144355297088623\n          },\n          {\n            \"X\": 0.6760704517364502,\n            \"Y\": 0.5144355297088623\n          },\n          {\n            \"X\": 0.6760704517364502,\n            \"Y\": 0.5509375333786011\n          },\n          {\n            \"X\": 0.5707006454467773,\n            \"Y\": 0.5509375333786011\n          }\n        ]\n      },\n      \"Id\": \"4dd07886-1869-4d60-8942-ea4739479d78\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ba5e192-3679-4339-a22a-92392739bf2d\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1/18/21 \",\n      \"SearchKey\": \"1/18/21\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.3831787109375,\n      \"Text\": \"XYZ\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040585957467556,\n          \"Height\": 0.028621500357985497,\n          \"Left\": 0.7327628135681152,\n          \"Top\": 0.5165883898735046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7327628135681152,\n            \"Y\": 0.5165883898735046\n          },\n          {\n            \"X\": 0.7733488082885742,\n            \"Y\": 0.5165883898735046\n          },\n          {\n            \"X\": 0.7733488082885742,\n            \"Y\": 0.5452098846435547\n          },\n          {\n            \"X\": 0.7327628135681152,\n            \"Y\": 0.5452098846435547\n          }\n        ]\n      },\n      \"Id\": \"9cf7e2c4-e76a-42d3-8c44-5fd32f26567e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d1c1cedb-0d05-4955-a97b-29f4aeac3242\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"XYZ \",\n      \"SearchKey\": \"XYZ\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.08380126953125,\n      \"Text\": \"Vaccine A\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10225021839141846,\n          \"Height\": 0.027754660695791245,\n          \"Left\": 0.05979464575648308,\n          \"Top\": 0.5676135420799255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05979464575648308,\n            \"Y\": 0.5676135420799255\n          },\n          {\n            \"X\": 0.16204485297203064,\n            \"Y\": 0.5676135420799255\n          },\n          {\n            \"X\": 0.16204485297203064,\n            \"Y\": 0.5953682065010071\n          },\n          {\n            \"X\": 0.05979464575648308,\n            \"Y\": 0.5953682065010071\n          }\n        ]\n      },\n      \"Id\": \"64cacc78-9088-4ab8-8898-b4523ccf4196\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"15e6efaa-064a-4ddd-a18f-b8dd66fc38d8\",\n            \"02d0107c-e6c8-47fe-a092-acd42ae431b5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Vaccine A \",\n      \"SearchKey\": \"Vaccine A\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7531509399414,\n      \"Text\": \"Pfizer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05935141444206238,\n          \"Height\": 0.029857588931918144,\n          \"Left\": 0.24377329647541046,\n          \"Top\": 0.5608330368995667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24377329647541046,\n            \"Y\": 0.5608330368995667\n          },\n          {\n            \"X\": 0.30312469601631165,\n            \"Y\": 0.5608330368995667\n          },\n          {\n            \"X\": 0.30312469601631165,\n            \"Y\": 0.5906906723976135\n          },\n          {\n            \"X\": 0.24377329647541046,\n            \"Y\": 0.5906906723976135\n          }\n        ]\n      },\n      \"Id\": \"a572e347-ee54-4a31-b7cd-37ec919be56f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"91ef02eb-2d35-41de-a7fc-df660d729583\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Pfizer \",\n      \"SearchKey\": \"Pfizer\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6529541015625,\n      \"Text\": \"mm dd yy\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10716234892606735,\n          \"Height\": 0.03662869334220886,\n          \"Left\": 0.5650511980056763,\n          \"Top\": 0.5691941380500793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5650511980056763,\n            \"Y\": 0.5691941380500793\n          },\n          {\n            \"X\": 0.6722135543823242,\n            \"Y\": 0.5691941380500793\n          },\n          {\n            \"X\": 0.6722135543823242,\n            \"Y\": 0.6058228015899658\n          },\n          {\n            \"X\": 0.5650511980056763,\n            \"Y\": 0.6058228015899658\n          }\n        ]\n      },\n      \"Id\": \"6cd06851-f2c8-485e-b354-90620363ac3b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce525f37-c53b-493a-94ca-55a261c62479\",\n            \"eddb68db-9d04-40b5-a9c0-54edd0ba2808\",\n            \"293dec06-e93a-4731-ba71-77f56ecbe4a6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd yy \",\n      \"SearchKey\": \"mm dd yy\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85778045654297,\n      \"Text\": \"2nd Dose\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09935354441404343,\n          \"Height\": 0.029328785836696625,\n          \"Left\": 0.062371596693992615,\n          \"Top\": 0.6385710835456848\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.062371596693992615,\n            \"Y\": 0.6385710835456848\n          },\n          {\n            \"X\": 0.16172513365745544,\n            \"Y\": 0.6385710835456848\n          },\n          {\n            \"X\": 0.16172513365745544,\n            \"Y\": 0.6678998470306396\n          },\n          {\n            \"X\": 0.062371596693992615,\n            \"Y\": 0.6678998470306396\n          }\n        ]\n      },\n      \"Id\": \"ee541e94-27eb-41c1-8b60-6d6c3b06807e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cd51e3e1-c55a-4029-b757-5452dd846c69\",\n            \"954133d4-5b55-4cb1-b660-35a21e579b2a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2nd Dose \",\n      \"SearchKey\": \"2nd Dose\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.84259033203125,\n      \"Text\": \"2/8/2021\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09972228109836578,\n          \"Height\": 0.06216253340244293,\n          \"Left\": 0.3687000274658203,\n          \"Top\": 0.6332689523696899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3687000274658203,\n            \"Y\": 0.6332689523696899\n          },\n          {\n            \"X\": 0.4684222936630249,\n            \"Y\": 0.6332689523696899\n          },\n          {\n            \"X\": 0.4684222936630249,\n            \"Y\": 0.6954314708709717\n          },\n          {\n            \"X\": 0.3687000274658203,\n            \"Y\": 0.6954314708709717\n          }\n        ]\n      },\n      \"Id\": \"0c93c104-0334-4105-9749-d2bbf931b0d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"80042627-7b8d-4a2a-9ea9-a784b4113ecd\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2/8/2021 \",\n      \"SearchKey\": \"2/8/2021\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.9739990234375,\n      \"Text\": \"CVS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04401136189699173,\n          \"Height\": 0.03954875469207764,\n          \"Left\": 0.494731605052948,\n          \"Top\": 0.6160253286361694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.494731605052948,\n            \"Y\": 0.6160253286361694\n          },\n          {\n            \"X\": 0.5387429594993591,\n            \"Y\": 0.6160253286361694\n          },\n          {\n            \"X\": 0.5387429594993591,\n            \"Y\": 0.6555740833282471\n          },\n          {\n            \"X\": 0.494731605052948,\n            \"Y\": 0.6555740833282471\n          }\n        ]\n      },\n      \"Id\": \"e6db51e7-cc7e-4ba5-9723-f83a470e7c69\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"67c30b50-30d4-4ede-87b4-30fe586e258b\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"CVS \",\n      \"SearchKey\": \"CVS\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.00715637207031,\n      \"Text\": \"/\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013252927921712399,\n          \"Height\": 0.03841264173388481,\n          \"Left\": 0.5924714803695679,\n          \"Top\": 0.632621169090271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5924714803695679,\n            \"Y\": 0.632621169090271\n          },\n          {\n            \"X\": 0.6057243943214417,\n            \"Y\": 0.632621169090271\n          },\n          {\n            \"X\": 0.6057243943214417,\n            \"Y\": 0.6710337996482849\n          },\n          {\n            \"X\": 0.5924714803695679,\n            \"Y\": 0.6710337996482849\n          }\n        ]\n      },\n      \"Id\": \"2074241e-6dc2-4a66-ad47-c3c703251310\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0ae5d516-1204-4e6a-8926-b826274197b6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ \",\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.22288513183594,\n      \"Text\": \"/\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013600465841591358,\n          \"Height\": 0.038175083696842194,\n          \"Left\": 0.6369108557701111,\n          \"Top\": 0.6322497725486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6369108557701111,\n            \"Y\": 0.6322497725486755\n          },\n          {\n            \"X\": 0.6505113244056702,\n            \"Y\": 0.6322497725486755\n          },\n          {\n            \"X\": 0.6505113244056702,\n            \"Y\": 0.6704248189926147\n          },\n          {\n            \"X\": 0.6369108557701111,\n            \"Y\": 0.6704248189926147\n          }\n        ]\n      },\n      \"Id\": \"2dc8c04b-53b1-452d-9768-df4d9809e351\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a5535fac-956f-4c8e-bdba-7496ef50a9b4\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ \",\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.67318725585938,\n      \"Text\": \"Pfizer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06025056168437004,\n          \"Height\": 0.0444476492702961,\n          \"Left\": 0.273237407207489,\n          \"Top\": 0.6543852686882019\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.273237407207489,\n            \"Y\": 0.6543852686882019\n          },\n          {\n            \"X\": 0.33348795771598816,\n            \"Y\": 0.6543852686882019\n          },\n          {\n            \"X\": 0.33348795771598816,\n            \"Y\": 0.6988329291343689\n          },\n          {\n            \"X\": 0.273237407207489,\n            \"Y\": 0.6988329291343689\n          }\n        ]\n      },\n      \"Id\": \"8c2c5f0a-8965-4b89-99ea-3b24e817dd07\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a56fc6e8-7920-42a6-ad1c-495a01e53f24\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Pfizer \",\n      \"SearchKey\": \"Pfizer\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 74.35192108154297,\n      \"Text\": \"Vaccine A\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10281632840633392,\n          \"Height\": 0.028063129633665085,\n          \"Left\": 0.05962107703089714,\n          \"Top\": 0.687882661819458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05962107703089714,\n            \"Y\": 0.687882661819458\n          },\n          {\n            \"X\": 0.16243740916252136,\n            \"Y\": 0.687882661819458\n          },\n          {\n            \"X\": 0.16243740916252136,\n            \"Y\": 0.7159457802772522\n          },\n          {\n            \"X\": 0.05962107703089714,\n            \"Y\": 0.7159457802772522\n          }\n        ]\n      },\n      \"Id\": \"30195163-d2f1-436d-b42e-42eef2e23823\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ca305667-d655-4737-82db-f906a61f9fc9\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Vaccine A \",\n      \"SearchKey\": \"Vaccine A\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 65.44751739501953,\n      \"Text\": \"BB5678\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08339671790599823,\n          \"Height\": 0.05604154244065285,\n          \"Left\": 0.2676659822463989,\n          \"Top\": 0.6985543966293335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2676659822463989,\n            \"Y\": 0.6985543966293335\n          },\n          {\n            \"X\": 0.35106268525123596,\n            \"Y\": 0.6985543966293335\n          },\n          {\n            \"X\": 0.35106268525123596,\n            \"Y\": 0.754595935344696\n          },\n          {\n            \"X\": 0.2676659822463989,\n            \"Y\": 0.754595935344696\n          }\n        ]\n      },\n      \"Id\": \"a91453f8-20e1-4a4d-aad8-2fefc728b655\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"821f1dbe-3603-4273-8df9-95d143a4d882\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"BB5678 \",\n      \"SearchKey\": \"BB5678\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.50799560546875,\n      \"Text\": \"mm dd yy\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1068279892206192,\n          \"Height\": 0.03688118979334831,\n          \"Left\": 0.5650240778923035,\n          \"Top\": 0.6884057521820068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5650240778923035,\n            \"Y\": 0.6884057521820068\n          },\n          {\n            \"X\": 0.6718521118164062,\n            \"Y\": 0.6884057521820068\n          },\n          {\n            \"X\": 0.6718521118164062,\n            \"Y\": 0.7252869606018066\n          },\n          {\n            \"X\": 0.5650240778923035,\n            \"Y\": 0.7252869606018066\n          }\n        ]\n      },\n      \"Id\": \"e04d68f7-7874-4a8a-a339-e6d415029f12\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"33f306ed-9196-440c-a978-77de8871e0bd\",\n            \"ffd97984-fea4-48bb-9349-3f791c7ab01d\",\n            \"137b4ecf-adfa-460f-8434-597f8c603147\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd yy \",\n      \"SearchKey\": \"mm dd yy\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85558319091797,\n      \"Text\": \"Booster Shot\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.136376291513443,\n          \"Height\": 0.028431935235857964,\n          \"Left\": 0.044570133090019226,\n          \"Top\": 0.7599161863327026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.044570133090019226,\n            \"Y\": 0.7599161863327026\n          },\n          {\n            \"X\": 0.18094642460346222,\n            \"Y\": 0.7599161863327026\n          },\n          {\n            \"X\": 0.18094642460346222,\n            \"Y\": 0.7883481383323669\n          },\n          {\n            \"X\": 0.044570133090019226,\n            \"Y\": 0.7883481383323669\n          }\n        ]\n      },\n      \"Id\": \"212198e9-23ad-4ae9-8844-5e0b36db50c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"007bb03a-6571-44e8-8cc1-e59ad55c9649\",\n            \"bba804be-158c-44e2-bdda-84f548f84fa5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Booster Shot \",\n      \"SearchKey\": \"Booster Shot\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.16844940185547,\n      \"Text\": \"/\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012667388655245304,\n          \"Height\": 0.03713875263929367,\n          \"Left\": 0.5927793383598328,\n          \"Top\": 0.7537558078765869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5927793383598328,\n            \"Y\": 0.7537558078765869\n          },\n          {\n            \"X\": 0.6054467558860779,\n            \"Y\": 0.7537558078765869\n          },\n          {\n            \"X\": 0.6054467558860779,\n            \"Y\": 0.7908945679664612\n          },\n          {\n            \"X\": 0.5927793383598328,\n            \"Y\": 0.7908945679664612\n          }\n        ]\n      },\n      \"Id\": \"39f58a1e-7517-4e4d-a010-900838d07755\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"39a0bbc3-3153-499a-a83c-fba2345f00b7\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ \",\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.614501953125,\n      \"Text\": \"/\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013262784108519554,\n          \"Height\": 0.03784281015396118,\n          \"Left\": 0.6374402642250061,\n          \"Top\": 0.7531836032867432\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6374402642250061,\n            \"Y\": 0.7531836032867432\n          },\n          {\n            \"X\": 0.6507030725479126,\n            \"Y\": 0.7531836032867432\n          },\n          {\n            \"X\": 0.6507030725479126,\n            \"Y\": 0.7910264134407043\n          },\n          {\n            \"X\": 0.6374402642250061,\n            \"Y\": 0.7910264134407043\n          }\n        ]\n      },\n      \"Id\": \"2b6ed71c-be3c-443f-bae0-32bf285cc6ba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"832cb536-ee32-46d4-9911-0d1789eaec67\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ \",\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71714782714844,\n      \"Text\": \"Vaccine A\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10288754105567932,\n          \"Height\": 0.027984365820884705,\n          \"Left\": 0.06084218621253967,\n          \"Top\": 0.8103429675102234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06084218621253967,\n            \"Y\": 0.8103429675102234\n          },\n          {\n            \"X\": 0.163729727268219,\n            \"Y\": 0.8103429675102234\n          },\n          {\n            \"X\": 0.163729727268219,\n            \"Y\": 0.8383272886276245\n          },\n          {\n            \"X\": 0.06084218621253967,\n            \"Y\": 0.8383272886276245\n          }\n        ]\n      },\n      \"Id\": \"c0a7e08b-79a3-4ddb-86c0-8d9a674013f5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e1a13a97-91c5-41ca-ae95-9a127b93e873\",\n            \"d9db5a94-89ef-4287-b02b-bd8831ae0fd6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Vaccine A \",\n      \"SearchKey\": \"Vaccine A\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 89.76329040527344,\n      \"Text\": \"mm dd yy\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10772126168012619,\n          \"Height\": 0.03675873950123787,\n          \"Left\": 0.564679741859436,\n          \"Top\": 0.8103204369544983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.564679741859436,\n            \"Y\": 0.8103204369544983\n          },\n          {\n            \"X\": 0.672400951385498,\n            \"Y\": 0.8103204369544983\n          },\n          {\n            \"X\": 0.672400951385498,\n            \"Y\": 0.8470792174339294\n          },\n          {\n            \"X\": 0.564679741859436,\n            \"Y\": 0.8470792174339294\n          }\n        ]\n      },\n      \"Id\": \"56cfa525-1969-43bb-ad08-737b2ab9064f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c120d0ce-deaa-484a-8695-f62de57fb7f4\",\n            \"6e45cdc6-8e20-4624-b1d3-81a7486e70c9\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd yy \",\n      \"SearchKey\": \"mm dd yy\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.43592071533203,\n      \"Text\": \"/ /\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05766922980546951,\n          \"Height\": 0.03766666725277901,\n          \"Left\": 0.5929052233695984,\n          \"Top\": 0.8757286071777344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5929052233695984,\n            \"Y\": 0.8757286071777344\n          },\n          {\n            \"X\": 0.6505744457244873,\n            \"Y\": 0.8757286071777344\n          },\n          {\n            \"X\": 0.6505744457244873,\n            \"Y\": 0.9133952856063843\n          },\n          {\n            \"X\": 0.5929052233695984,\n            \"Y\": 0.9133952856063843\n          }\n        ]\n      },\n      \"Id\": \"7e3c256e-aec8-498e-8dee-8672f697dca0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"77a12a05-83b9-4436-9722-64bf7894599d\",\n            \"c3177699-9935-4bdd-81fb-9ac4aacd4311\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / \",\n      \"SearchKey\": \"/ /\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97953033447266,\n      \"Text\": \"Other\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06053202599287033,\n          \"Height\": 0.028294986113905907,\n          \"Left\": 0.08194313198328018,\n          \"Top\": 0.9046370983123779\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08194313198328018,\n            \"Y\": 0.9046370983123779\n          },\n          {\n            \"X\": 0.1424751579761505,\n            \"Y\": 0.9046370983123779\n          },\n          {\n            \"X\": 0.1424751579761505,\n            \"Y\": 0.9329321384429932\n          },\n          {\n            \"X\": 0.08194313198328018,\n            \"Y\": 0.9329321384429932\n          }\n        ]\n      },\n      \"Id\": \"c78e4046-0ce9-4606-a5ec-80ea1e410475\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"39337ebb-c331-4b70-b415-bd7d3435e747\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Other \",\n      \"SearchKey\": \"Other\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6828842163086,\n      \"Text\": \"mm dd yy\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10730650275945663,\n          \"Height\": 0.037293557077646255,\n          \"Left\": 0.5648700594902039,\n          \"Top\": 0.9308109879493713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5648700594902039,\n            \"Y\": 0.9308109879493713\n          },\n          {\n            \"X\": 0.6721765398979187,\n            \"Y\": 0.9308109879493713\n          },\n          {\n            \"X\": 0.6721765398979187,\n            \"Y\": 0.9681046009063721\n          },\n          {\n            \"X\": 0.5648700594902039,\n            \"Y\": 0.9681046009063721\n          }\n        ]\n      },\n      \"Id\": \"756d16e5-4734-41d1-8ce8-2db22c8f8b53\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c30f391a-772d-4e32-92c0-87848c9a300d\",\n            \"b799db2d-fc37-40f7-806a-65c7656c6d7c\",\n            \"186c774d-9947-49e1-a41e-be46067b9c59\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd yy \",\n      \"SearchKey\": \"mm dd yy\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47083282470703,\n      \"Text\": \"Sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12089162319898605,\n          \"Height\": 0.05037378892302513,\n          \"Left\": 0.2358078509569168,\n          \"Top\": 0.037841521203517914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2358078509569168,\n            \"Y\": 0.037841521203517914\n          },\n          {\n            \"X\": 0.35669946670532227,\n            \"Y\": 0.037841521203517914\n          },\n          {\n            \"X\": 0.35669946670532227,\n            \"Y\": 0.08821530640125275\n          },\n          {\n            \"X\": 0.2358078509569168,\n            \"Y\": 0.08821530640125275\n          }\n        ]\n      },\n      \"Id\": \"260b1762-5e14-4bae-8d8e-439a5aa0cf35\",\n      \"Page\": 1,\n      \"SearchKey\": \"Sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73492431640625,\n      \"Text\": \"Vaccination\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19022202491760254,\n          \"Height\": 0.04022107645869255,\n          \"Left\": 0.3678550720214844,\n          \"Top\": 0.03841099515557289\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3678550720214844,\n            \"Y\": 0.03841099515557289\n          },\n          {\n            \"X\": 0.5580770969390869,\n            \"Y\": 0.03841099515557289\n          },\n          {\n            \"X\": 0.5580770969390869,\n            \"Y\": 0.07863207161426544\n          },\n          {\n            \"X\": 0.3678550720214844,\n            \"Y\": 0.07863207161426544\n          }\n        ]\n      },\n      \"Id\": \"46c033b2-a91f-4992-8634-0fc2c3de3907\",\n      \"Page\": 1,\n      \"SearchKey\": \"Vaccination\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93934631347656,\n      \"Text\": \"Record\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11326534301042557,\n          \"Height\": 0.041143689304590225,\n          \"Left\": 0.5693022608757019,\n          \"Top\": 0.0370197556912899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693022608757019,\n            \"Y\": 0.0370197556912899\n          },\n          {\n            \"X\": 0.6825675964355469,\n            \"Y\": 0.0370197556912899\n          },\n          {\n            \"X\": 0.6825675964355469,\n            \"Y\": 0.07816344499588013\n          },\n          {\n            \"X\": 0.5693022608757019,\n            \"Y\": 0.07816344499588013\n          }\n        ]\n      },\n      \"Id\": \"83da10dc-8db9-4ced-975c-27e079a1163c\",\n      \"Page\": 1,\n      \"SearchKey\": \"Record\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5977554321289,\n      \"Text\": \"Card\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07306253910064697,\n          \"Height\": 0.040560461580753326,\n          \"Left\": 0.692566454410553,\n          \"Top\": 0.03776174783706665\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.692566454410553,\n            \"Y\": 0.03776174783706665\n          },\n          {\n            \"X\": 0.7656289935112,\n            \"Y\": 0.03776174783706665\n          },\n          {\n            \"X\": 0.7656289935112,\n            \"Y\": 0.07832220941781998\n          },\n          {\n            \"X\": 0.692566454410553,\n            \"Y\": 0.07832220941781998\n          }\n        ]\n      },\n      \"Id\": \"4468f190-5431-4681-91f9-83fbfe0e15e8\",\n      \"Page\": 1,\n      \"SearchKey\": \"Card\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97722625732422,\n      \"Text\": \"Mary\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056179460138082504,\n          \"Height\": 0.03503012657165527,\n          \"Left\": 0.039719533175230026,\n          \"Top\": 0.14434710144996643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.039719533175230026,\n            \"Y\": 0.14434710144996643\n          },\n          {\n            \"X\": 0.09589899331331253,\n            \"Y\": 0.14434710144996643\n          },\n          {\n            \"X\": 0.09589899331331253,\n            \"Y\": 0.1793772280216217\n          },\n          {\n            \"X\": 0.039719533175230026,\n            \"Y\": 0.1793772280216217\n          }\n        ]\n      },\n      \"Id\": \"871877e2-eedf-49cf-bee0-ea53cc7ab455\",\n      \"Page\": 1,\n      \"SearchKey\": \"Mary\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90886688232422,\n      \"Text\": \"Major\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06432604044675827,\n          \"Height\": 0.03528284654021263,\n          \"Left\": 0.29168885946273804,\n          \"Top\": 0.14388298988342285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29168885946273804,\n            \"Y\": 0.14388298988342285\n          },\n          {\n            \"X\": 0.3560148775577545,\n            \"Y\": 0.14388298988342285\n          },\n          {\n            \"X\": 0.3560148775577545,\n            \"Y\": 0.17916584014892578\n          },\n          {\n            \"X\": 0.29168885946273804,\n            \"Y\": 0.17916584014892578\n          }\n        ]\n      },\n      \"Id\": \"9ee86fbb-d88a-4189-805c-9c5f01c6913b\",\n      \"Page\": 1,\n      \"SearchKey\": \"Major\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.23570251464844,\n      \"Text\": \"M\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021111853420734406,\n          \"Height\": 0.02859259583055973,\n          \"Left\": 0.6993556022644043,\n          \"Top\": 0.1442459374666214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6993556022644043,\n            \"Y\": 0.1442459374666214\n          },\n          {\n            \"X\": 0.7204674482345581,\n            \"Y\": 0.1442459374666214\n          },\n          {\n            \"X\": 0.7204674482345581,\n            \"Y\": 0.17283853888511658\n          },\n          {\n            \"X\": 0.6993556022644043,\n            \"Y\": 0.17283853888511658\n          }\n        ]\n      },\n      \"Id\": \"8b99d10a-b019-4a83-841b-8c0126ed526f\",\n      \"Page\": 1,\n      \"SearchKey\": \"M\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97186279296875,\n      \"Text\": \"Last\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0365075059235096,\n          \"Height\": 0.023103991523385048,\n          \"Left\": 0.029459139332175255,\n          \"Top\": 0.2103949934244156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.029459139332175255,\n            \"Y\": 0.2103949934244156\n          },\n          {\n            \"X\": 0.0659666433930397,\n            \"Y\": 0.2103949934244156\n          },\n          {\n            \"X\": 0.0659666433930397,\n            \"Y\": 0.2334989756345749\n          },\n          {\n            \"X\": 0.029459139332175255,\n            \"Y\": 0.2334989756345749\n          }\n        ]\n      },\n      \"Id\": \"7b7653bd-9f80-4812-a189-5b168381776b\",\n      \"Page\": 1,\n      \"SearchKey\": \"Last\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90799713134766,\n      \"Text\": \"Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05460481345653534,\n          \"Height\": 0.022391291335225105,\n          \"Left\": 0.07039345800876617,\n          \"Top\": 0.21075710654258728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07039345800876617,\n            \"Y\": 0.21075710654258728\n          },\n          {\n            \"X\": 0.12499827146530151,\n            \"Y\": 0.21075710654258728\n          },\n          {\n            \"X\": 0.12499827146530151,\n            \"Y\": 0.23314839601516724\n          },\n          {\n            \"X\": 0.07039345800876617,\n            \"Y\": 0.23314839601516724\n          }\n        ]\n      },\n      \"Id\": \"e3f503d0-fc5c-4fac-bf18-28e79a4e10b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"Name\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95477294921875,\n      \"Text\": \"First\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03876981511712074,\n          \"Height\": 0.023095982149243355,\n          \"Left\": 0.28914323449134827,\n          \"Top\": 0.2104007452726364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28914323449134827,\n            \"Y\": 0.2104007452726364\n          },\n          {\n            \"X\": 0.3279130756855011,\n            \"Y\": 0.2104007452726364\n          },\n          {\n            \"X\": 0.3279130756855011,\n            \"Y\": 0.2334967404603958\n          },\n          {\n            \"X\": 0.28914323449134827,\n            \"Y\": 0.2334967404603958\n          }\n        ]\n      },\n      \"Id\": \"8d82a68a-db16-4ea1-a802-3956607716f2\",\n      \"Page\": 1,\n      \"SearchKey\": \"First\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87023162841797,\n      \"Text\": \"Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05474808067083359,\n          \"Height\": 0.022730911150574684,\n          \"Left\": 0.33358368277549744,\n          \"Top\": 0.21058905124664307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33358368277549744,\n            \"Y\": 0.21058905124664307\n          },\n          {\n            \"X\": 0.3883317708969116,\n            \"Y\": 0.21058905124664307\n          },\n          {\n            \"X\": 0.3883317708969116,\n            \"Y\": 0.233319953083992\n          },\n          {\n            \"X\": 0.33358368277549744,\n            \"Y\": 0.233319953083992\n          }\n        ]\n      },\n      \"Id\": \"6dfd7a9c-a37e-4ccb-be9e-68344fc8f9b2\",\n      \"Page\": 1,\n      \"SearchKey\": \"Name\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7132797241211,\n      \"Text\": \"MI\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024707825854420662,\n          \"Height\": 0.02173513174057007,\n          \"Left\": 0.6950206160545349,\n          \"Top\": 0.21108704805374146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6950206160545349,\n            \"Y\": 0.21108704805374146\n          },\n          {\n            \"X\": 0.7197284698486328,\n            \"Y\": 0.21108704805374146\n          },\n          {\n            \"X\": 0.7197284698486328,\n            \"Y\": 0.23282217979431152\n          },\n          {\n            \"X\": 0.6950206160545349,\n            \"Y\": 0.23282217979431152\n          }\n        ]\n      },\n      \"Id\": \"ff20dba9-5d74-4342-9364-c44140b5d4c6\",\n      \"Page\": 1,\n      \"SearchKey\": \"MI\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54774475097656,\n      \"Text\": \"1/6/58\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0736883133649826,\n          \"Height\": 0.037740811705589294,\n          \"Left\": 0.038479033857584,\n          \"Top\": 0.2674500644207001\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.038479033857584,\n            \"Y\": 0.2674500644207001\n          },\n          {\n            \"X\": 0.1121673509478569,\n            \"Y\": 0.2674500644207001\n          },\n          {\n            \"X\": 0.1121673509478569,\n            \"Y\": 0.30519089102745056\n          },\n          {\n            \"X\": 0.038479033857584,\n            \"Y\": 0.30519089102745056\n          }\n        ]\n      },\n      \"Id\": \"57414551-2723-46b5-85bb-45c85da9ec8e\",\n      \"Page\": 1,\n      \"SearchKey\": \"1/6/58\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52862548828125,\n      \"Text\": \"012345abcd67\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15912824869155884,\n          \"Height\": 0.030382275581359863,\n          \"Left\": 0.47279560565948486,\n          \"Top\": 0.2690737843513489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47279560565948486,\n            \"Y\": 0.2690737843513489\n          },\n          {\n            \"X\": 0.6319238543510437,\n            \"Y\": 0.2690737843513489\n          },\n          {\n            \"X\": 0.6319238543510437,\n            \"Y\": 0.29945605993270874\n          },\n          {\n            \"X\": 0.47279560565948486,\n            \"Y\": 0.29945605993270874\n          }\n        ]\n      },\n      \"Id\": \"8fa23116-b012-44f2-831b-1779a85b7966\",\n      \"Page\": 1,\n      \"SearchKey\": \"012345abcd67\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77632904052734,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04303653910756111,\n          \"Height\": 0.02282847836613655,\n          \"Left\": 0.029132427647709846,\n          \"Top\": 0.3346140682697296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.029132427647709846,\n            \"Y\": 0.3346140682697296\n          },\n          {\n            \"X\": 0.07216896861791611,\n            \"Y\": 0.3346140682697296\n          },\n          {\n            \"X\": 0.07216896861791611,\n            \"Y\": 0.35744255781173706\n          },\n          {\n            \"X\": 0.029132427647709846,\n            \"Y\": 0.35744255781173706\n          }\n        ]\n      },\n      \"Id\": \"0b117aa7-6168-4bca-a338-d1f333ef107e\",\n      \"Page\": 1,\n      \"SearchKey\": \"Date\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99461364746094,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020426839590072632,\n          \"Height\": 0.023812005296349525,\n          \"Left\": 0.0772329792380333,\n          \"Top\": 0.33319127559661865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0772329792380333,\n            \"Y\": 0.33319127559661865\n          },\n          {\n            \"X\": 0.09765981882810593,\n            \"Y\": 0.33319127559661865\n          },\n          {\n            \"X\": 0.09765981882810593,\n            \"Y\": 0.35700327157974243\n          },\n          {\n            \"X\": 0.0772329792380333,\n            \"Y\": 0.35700327157974243\n          }\n        ]\n      },\n      \"Id\": \"b5a4678a-e020-4be4-a2a3-7cdf20e0f511\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95500183105469,\n      \"Text\": \"Birth\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04519616439938545,\n          \"Height\": 0.02331441640853882,\n          \"Left\": 0.10248419642448425,\n          \"Top\": 0.3338603675365448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10248419642448425,\n            \"Y\": 0.3338603675365448\n          },\n          {\n            \"X\": 0.1476803570985794,\n            \"Y\": 0.3338603675365448\n          },\n          {\n            \"X\": 0.1476803570985794,\n            \"Y\": 0.3571747839450836\n          },\n          {\n            \"X\": 0.10248419642448425,\n            \"Y\": 0.3571747839450836\n          }\n        ]\n      },\n      \"Id\": \"93a28234-e833-4111-8c09-e0170f90c370\",\n      \"Page\": 1,\n      \"SearchKey\": \"Birth\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7243881225586,\n      \"Text\": \"Patient\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06766767054796219,\n          \"Height\": 0.022513551637530327,\n          \"Left\": 0.4621703624725342,\n          \"Top\": 0.3347839117050171\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4621703624725342,\n            \"Y\": 0.3347839117050171\n          },\n          {\n            \"X\": 0.5298380255699158,\n            \"Y\": 0.3347839117050171\n          },\n          {\n            \"X\": 0.5298380255699158,\n            \"Y\": 0.35729745030403137\n          },\n          {\n            \"X\": 0.4621703624725342,\n            \"Y\": 0.35729745030403137\n          }\n        ]\n      },\n      \"Id\": \"6fec6575-2191-41dc-a946-5f70f64ee32b\",\n      \"Page\": 1,\n      \"SearchKey\": \"Patient\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98352813720703,\n      \"Text\": \"number\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07346463203430176,\n          \"Height\": 0.023018991574645042,\n          \"Left\": 0.5351468324661255,\n          \"Top\": 0.33405059576034546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5351468324661255,\n            \"Y\": 0.33405059576034546\n          },\n          {\n            \"X\": 0.6086114645004272,\n            \"Y\": 0.33405059576034546\n          },\n          {\n            \"X\": 0.6086114645004272,\n            \"Y\": 0.35706958174705505\n          },\n          {\n            \"X\": 0.5351468324661255,\n            \"Y\": 0.35706958174705505\n          }\n        ]\n      },\n      \"Id\": \"4596f38c-3a7b-42ee-81ac-412d1cf7aae5\",\n      \"Page\": 1,\n      \"SearchKey\": \"number\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77689361572266,\n      \"Text\": \"(medical\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07815603911876678,\n          \"Height\": 0.029432810842990875,\n          \"Left\": 0.6141360402107239,\n          \"Top\": 0.33245334029197693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6141360402107239,\n            \"Y\": 0.33245334029197693\n          },\n          {\n            \"X\": 0.6922920942306519,\n            \"Y\": 0.33245334029197693\n          },\n          {\n            \"X\": 0.6922920942306519,\n            \"Y\": 0.3618861436843872\n          },\n          {\n            \"X\": 0.6141360402107239,\n            \"Y\": 0.3618861436843872\n          }\n        ]\n      },\n      \"Id\": \"e86089e1-7d30-47c7-8bc6-8f897a35a4ab\",\n      \"Page\": 1,\n      \"SearchKey\": \"(medical\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96569061279297,\n      \"Text\": \"record\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.061600033193826675,\n          \"Height\": 0.023099716752767563,\n          \"Left\": 0.695177435874939,\n          \"Top\": 0.333840012550354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.695177435874939,\n            \"Y\": 0.333840012550354\n          },\n          {\n            \"X\": 0.7567775249481201,\n            \"Y\": 0.333840012550354\n          },\n          {\n            \"X\": 0.7567775249481201,\n            \"Y\": 0.35693973302841187\n          },\n          {\n            \"X\": 0.695177435874939,\n            \"Y\": 0.35693973302841187\n          }\n        ]\n      },\n      \"Id\": \"a82b9a35-c48c-49a6-b747-91bb39ebee80\",\n      \"Page\": 1,\n      \"SearchKey\": \"record\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.972900390625,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02000466175377369,\n          \"Height\": 0.018066786229610443,\n          \"Left\": 0.76044762134552,\n          \"Top\": 0.33921945095062256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.76044762134552,\n            \"Y\": 0.33921945095062256\n          },\n          {\n            \"X\": 0.780452311038971,\n            \"Y\": 0.33921945095062256\n          },\n          {\n            \"X\": 0.780452311038971,\n            \"Y\": 0.3572862148284912\n          },\n          {\n            \"X\": 0.76044762134552,\n            \"Y\": 0.3572862148284912\n          }\n        ]\n      },\n      \"Id\": \"3339e1aa-726d-4431-bbe5-a65f4aee6641\",\n      \"Page\": 1,\n      \"SearchKey\": \"or\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.5468978881836,\n      \"Text\": \"IIS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02305641956627369,\n          \"Height\": 0.022392811253666878,\n          \"Left\": 0.7835856676101685,\n          \"Top\": 0.33455199003219604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7835856676101685,\n            \"Y\": 0.33455199003219604\n          },\n          {\n            \"X\": 0.8066421151161194,\n            \"Y\": 0.33455199003219604\n          },\n          {\n            \"X\": 0.8066421151161194,\n            \"Y\": 0.3569447994232178\n          },\n          {\n            \"X\": 0.7835856676101685,\n            \"Y\": 0.3569447994232178\n          }\n        ]\n      },\n      \"Id\": \"276b403e-eef3-402f-a31a-fce01ee9149f\",\n      \"Page\": 1,\n      \"SearchKey\": \"IIS\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96614074707031,\n      \"Text\": \"record\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06127220764756203,\n          \"Height\": 0.02398092858493328,\n          \"Left\": 0.809726357460022,\n          \"Top\": 0.33331096172332764\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.809726357460022,\n            \"Y\": 0.33331096172332764\n          },\n          {\n            \"X\": 0.8709985613822937,\n            \"Y\": 0.33331096172332764\n          },\n          {\n            \"X\": 0.8709985613822937,\n            \"Y\": 0.3572918772697449\n          },\n          {\n            \"X\": 0.809726357460022,\n            \"Y\": 0.3572918772697449\n          }\n        ]\n      },\n      \"Id\": \"e1606972-3cf1-492f-bb07-f5a25af3d31a\",\n      \"Page\": 1,\n      \"SearchKey\": \"record\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.51844787597656,\n      \"Text\": \"number)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07782363146543503,\n          \"Height\": 0.029462378472089767,\n          \"Left\": 0.8732635378837585,\n          \"Top\": 0.3325802683830261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8732635378837585,\n            \"Y\": 0.3325802683830261\n          },\n          {\n            \"X\": 0.9510871767997742,\n            \"Y\": 0.3325802683830261\n          },\n          {\n            \"X\": 0.9510871767997742,\n            \"Y\": 0.3620426654815674\n          },\n          {\n            \"X\": 0.8732635378837585,\n            \"Y\": 0.3620426654815674\n          }\n        ]\n      },\n      \"Id\": \"02a92820-9713-4ebb-9564-db90c08aecfc\",\n      \"Page\": 1,\n      \"SearchKey\": \"number)\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88448333740234,\n      \"Text\": \"Product\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0837925374507904,\n          \"Height\": 0.02889394201338291,\n          \"Left\": 0.21656467020511627,\n          \"Top\": 0.4128419756889343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21656467020511627,\n            \"Y\": 0.4128419756889343\n          },\n          {\n            \"X\": 0.3003571927547455,\n            \"Y\": 0.4128419756889343\n          },\n          {\n            \"X\": 0.3003571927547455,\n            \"Y\": 0.4417359232902527\n          },\n          {\n            \"X\": 0.21656467020511627,\n            \"Y\": 0.4417359232902527\n          }\n        ]\n      },\n      \"Id\": \"0ed30ed7-4ede-4436-a051-7dbf6857ba96\",\n      \"Page\": 1,\n      \"SearchKey\": \"Product\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.64006042480469,\n      \"Text\": \"Name/Manufacturer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23214338719844818,\n          \"Height\": 0.035237040370702744,\n          \"Left\": 0.29895704984664917,\n          \"Top\": 0.41144102811813354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29895704984664917,\n            \"Y\": 0.41144102811813354\n          },\n          {\n            \"X\": 0.5311004519462585,\n            \"Y\": 0.41144102811813354\n          },\n          {\n            \"X\": 0.5311004519462585,\n            \"Y\": 0.4466780722141266\n          },\n          {\n            \"X\": 0.29895704984664917,\n            \"Y\": 0.4466780722141266\n          }\n        ]\n      },\n      \"Id\": \"e8512297-aa0b-44e1-9566-1f1f43614946\",\n      \"Page\": 1,\n      \"SearchKey\": \"Name/Manufacturer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67937469482422,\n      \"Text\": \"Healthcare\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11709538847208023,\n          \"Height\": 0.028718814253807068,\n          \"Left\": 0.7067064642906189,\n          \"Top\": 0.40993061661720276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7067064642906189,\n            \"Y\": 0.40993061661720276\n          },\n          {\n            \"X\": 0.8238018751144409,\n            \"Y\": 0.40993061661720276\n          },\n          {\n            \"X\": 0.8238018751144409,\n            \"Y\": 0.438649445772171\n          },\n          {\n            \"X\": 0.7067064642906189,\n            \"Y\": 0.438649445772171\n          }\n        ]\n      },\n      \"Id\": \"bfced463-1497-4f37-bb22-707b49db5d10\",\n      \"Page\": 1,\n      \"SearchKey\": \"Healthcare\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46916961669922,\n      \"Text\": \"Professional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1305704563856125,\n          \"Height\": 0.028426744043827057,\n          \"Left\": 0.8298035264015198,\n          \"Top\": 0.4102177321910858\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8298035264015198,\n            \"Y\": 0.4102177321910858\n          },\n          {\n            \"X\": 0.9603739976882935,\n            \"Y\": 0.4102177321910858\n          },\n          {\n            \"X\": 0.9603739976882935,\n            \"Y\": 0.4386444687843323\n          },\n          {\n            \"X\": 0.8298035264015198,\n            \"Y\": 0.4386444687843323\n          }\n        ]\n      },\n      \"Id\": \"6a04475e-2024-4556-a980-5067a3a8817a\",\n      \"Page\": 1,\n      \"SearchKey\": \"Professional\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.55606079101562,\n      \"Text\": \"Vaccine\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08403389155864716,\n          \"Height\": 0.028304357081651688,\n          \"Left\": 0.06916578114032745,\n          \"Top\": 0.43784892559051514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06916578114032745,\n            \"Y\": 0.43784892559051514\n          },\n          {\n            \"X\": 0.1531996726989746,\n            \"Y\": 0.43784892559051514\n          },\n          {\n            \"X\": 0.1531996726989746,\n            \"Y\": 0.4661532938480377\n          },\n          {\n            \"X\": 0.06916578114032745,\n            \"Y\": 0.4661532938480377\n          }\n        ]\n      },\n      \"Id\": \"086b86cb-04f8-4326-88e4-59345b2f68df\",\n      \"Page\": 1,\n      \"SearchKey\": \"Vaccine\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62688446044922,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05112472549080849,\n          \"Height\": 0.02819760888814926,\n          \"Left\": 0.5936968326568604,\n          \"Top\": 0.4379563331604004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5936968326568604,\n            \"Y\": 0.4379563331604004\n          },\n          {\n            \"X\": 0.6448215842247009,\n            \"Y\": 0.4379563331604004\n          },\n          {\n            \"X\": 0.6448215842247009,\n            \"Y\": 0.46615394949913025\n          },\n          {\n            \"X\": 0.5936968326568604,\n            \"Y\": 0.46615394949913025\n          }\n        ]\n      },\n      \"Id\": \"e5c79302-cf63-4e12-8b0f-3a57eec48f16\",\n      \"Page\": 1,\n      \"SearchKey\": \"Date\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6734619140625,\n      \"Text\": \"Lot\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03427042067050934,\n          \"Height\": 0.02726447954773903,\n          \"Left\": 0.30944356322288513,\n          \"Top\": 0.4645090699195862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30944356322288513,\n            \"Y\": 0.4645090699195862\n          },\n          {\n            \"X\": 0.3437139689922333,\n            \"Y\": 0.4645090699195862\n          },\n          {\n            \"X\": 0.3437139689922333,\n            \"Y\": 0.4917735457420349\n          },\n          {\n            \"X\": 0.30944356322288513,\n            \"Y\": 0.4917735457420349\n          }\n        ]\n      },\n      \"Id\": \"bb8a745e-8956-42e7-8925-a8cb78e18a12\",\n      \"Page\": 1,\n      \"SearchKey\": \"Lot\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98448944091797,\n      \"Text\": \"Number\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08914875984191895,\n          \"Height\": 0.029285162687301636,\n          \"Left\": 0.3480064272880554,\n          \"Top\": 0.46271926164627075\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3480064272880554,\n            \"Y\": 0.46271926164627075\n          },\n          {\n            \"X\": 0.43715518712997437,\n            \"Y\": 0.46271926164627075\n          },\n          {\n            \"X\": 0.43715518712997437,\n            \"Y\": 0.4920044243335724\n          },\n          {\n            \"X\": 0.3480064272880554,\n            \"Y\": 0.4920044243335724\n          }\n        ]\n      },\n      \"Id\": \"c02dc770-551c-4e27-8d4b-1b5872bd3e34\",\n      \"Page\": 1,\n      \"SearchKey\": \"Number\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99530029296875,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024443456903100014,\n          \"Height\": 0.020462796092033386,\n          \"Left\": 0.7662445306777954,\n          \"Top\": 0.4674595892429352\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7662445306777954,\n            \"Y\": 0.4674595892429352\n          },\n          {\n            \"X\": 0.7906879782676697,\n            \"Y\": 0.4674595892429352\n          },\n          {\n            \"X\": 0.7906879782676697,\n            \"Y\": 0.4879223704338074\n          },\n          {\n            \"X\": 0.7662445306777954,\n            \"Y\": 0.4879223704338074\n          }\n        ]\n      },\n      \"Id\": \"55b9478d-a433-4729-ada5-6e3abf78c824\",\n      \"Page\": 1,\n      \"SearchKey\": \"or\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27861785888672,\n      \"Text\": \"Clinic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058128464967012405,\n          \"Height\": 0.029709115624427795,\n          \"Left\": 0.7963151931762695,\n          \"Top\": 0.4591362774372101\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7963151931762695,\n            \"Y\": 0.4591362774372101\n          },\n          {\n            \"X\": 0.8544436693191528,\n            \"Y\": 0.4591362774372101\n          },\n          {\n            \"X\": 0.8544436693191528,\n            \"Y\": 0.4888453781604767\n          },\n          {\n            \"X\": 0.7963151931762695,\n            \"Y\": 0.4888453781604767\n          }\n        ]\n      },\n      \"Id\": \"52944e7a-7975-49d6-b31e-3da236fd7dae\",\n      \"Page\": 1,\n      \"SearchKey\": \"Clinic\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77412414550781,\n      \"Text\": \"Site\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041778478771448135,\n          \"Height\": 0.027925483882427216,\n          \"Left\": 0.8588274121284485,\n          \"Top\": 0.46034640073776245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8588274121284485,\n            \"Y\": 0.46034640073776245\n          },\n          {\n            \"X\": 0.9006059169769287,\n            \"Y\": 0.46034640073776245\n          },\n          {\n            \"X\": 0.9006059169769287,\n            \"Y\": 0.48827189207077026\n          },\n          {\n            \"X\": 0.8588274121284485,\n            \"Y\": 0.48827189207077026\n          }\n        ]\n      },\n      \"Id\": \"ff2b1d63-eba5-4914-962d-378ceed24152\",\n      \"Page\": 1,\n      \"SearchKey\": \"Site\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82196807861328,\n      \"Text\": \"1st\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033097945153713226,\n          \"Height\": 0.02771964855492115,\n          \"Left\": 0.06768009811639786,\n          \"Top\": 0.5176612734794617\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06768009811639786,\n            \"Y\": 0.5176612734794617\n          },\n          {\n            \"X\": 0.10077804327011108,\n            \"Y\": 0.5176612734794617\n          },\n          {\n            \"X\": 0.10077804327011108,\n            \"Y\": 0.5453808903694153\n          },\n          {\n            \"X\": 0.06768009811639786,\n            \"Y\": 0.5453808903694153\n          }\n        ]\n      },\n      \"Id\": \"aaefb19d-0616-4c84-bec2-ef88f0099c5d\",\n      \"Page\": 1,\n      \"SearchKey\": \"1st\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.66024017333984,\n      \"Text\": \"Dose\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05346037819981575,\n          \"Height\": 0.027331942692399025,\n          \"Left\": 0.10491235554218292,\n          \"Top\": 0.5176895260810852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10491235554218292,\n            \"Y\": 0.5176895260810852\n          },\n          {\n            \"X\": 0.15837273001670837,\n            \"Y\": 0.5176895260810852\n          },\n          {\n            \"X\": 0.15837273001670837,\n            \"Y\": 0.5450214743614197\n          },\n          {\n            \"X\": 0.10491235554218292,\n            \"Y\": 0.5450214743614197\n          }\n        ]\n      },\n      \"Id\": \"926d4d67-9012-42ad-9377-cb1c0692771f\",\n      \"Page\": 1,\n      \"SearchKey\": \"Dose\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.6642837524414,\n      \"Text\": \"AA1234\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0850967988371849,\n          \"Height\": 0.029080908745527267,\n          \"Left\": 0.2419162094593048,\n          \"Top\": 0.5162579417228699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2419162094593048,\n            \"Y\": 0.5162579417228699\n          },\n          {\n            \"X\": 0.3270130157470703,\n            \"Y\": 0.5162579417228699\n          },\n          {\n            \"X\": 0.3270130157470703,\n            \"Y\": 0.5453388690948486\n          },\n          {\n            \"X\": 0.2419162094593048,\n            \"Y\": 0.5453388690948486\n          }\n        ]\n      },\n      \"Id\": \"a684ab20-4288-4516-92fc-8722dde3c23a\",\n      \"Page\": 1,\n      \"SearchKey\": \"AA1234\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 73.92820739746094,\n      \"Text\": \"1/18/21\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10536976158618927,\n          \"Height\": 0.036501966416835785,\n          \"Left\": 0.5707006454467773,\n          \"Top\": 0.5144355297088623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5707006454467773,\n            \"Y\": 0.5144355297088623\n          },\n          {\n            \"X\": 0.6760704517364502,\n            \"Y\": 0.5144355297088623\n          },\n          {\n            \"X\": 0.6760704517364502,\n            \"Y\": 0.5509375333786011\n          },\n          {\n            \"X\": 0.5707006454467773,\n            \"Y\": 0.5509375333786011\n          }\n        ]\n      },\n      \"Id\": \"6ba5e192-3679-4339-a22a-92392739bf2d\",\n      \"Page\": 1,\n      \"SearchKey\": \"1/18/21\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3831787109375,\n      \"Text\": \"XYZ\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040585957467556,\n          \"Height\": 0.028621500357985497,\n          \"Left\": 0.7327628135681152,\n          \"Top\": 0.5165883898735046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7327628135681152,\n            \"Y\": 0.5165883898735046\n          },\n          {\n            \"X\": 0.7733488082885742,\n            \"Y\": 0.5165883898735046\n          },\n          {\n            \"X\": 0.7733488082885742,\n            \"Y\": 0.5452098846435547\n          },\n          {\n            \"X\": 0.7327628135681152,\n            \"Y\": 0.5452098846435547\n          }\n        ]\n      },\n      \"Id\": \"d1c1cedb-0d05-4955-a97b-29f4aeac3242\",\n      \"Page\": 1,\n      \"SearchKey\": \"XYZ\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.51055145263672,\n      \"Text\": \"Vaccine\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08395880460739136,\n          \"Height\": 0.027754660695791245,\n          \"Left\": 0.05979464575648308,\n          \"Top\": 0.5676135420799255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05979464575648308,\n            \"Y\": 0.5676135420799255\n          },\n          {\n            \"X\": 0.14375345408916473,\n            \"Y\": 0.5676135420799255\n          },\n          {\n            \"X\": 0.14375345408916473,\n            \"Y\": 0.5953682065010071\n          },\n          {\n            \"X\": 0.05979464575648308,\n            \"Y\": 0.5953682065010071\n          }\n        ]\n      },\n      \"Id\": \"15e6efaa-064a-4ddd-a18f-b8dd66fc38d8\",\n      \"Page\": 1,\n      \"SearchKey\": \"Vaccine\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.65705108642578,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015761399641633034,\n          \"Height\": 0.02636098302900791,\n          \"Left\": 0.14628346264362335,\n          \"Top\": 0.5683541893959045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14628346264362335,\n            \"Y\": 0.5683541893959045\n          },\n          {\n            \"X\": 0.16204485297203064,\n            \"Y\": 0.5683541893959045\n          },\n          {\n            \"X\": 0.16204485297203064,\n            \"Y\": 0.5947151780128479\n          },\n          {\n            \"X\": 0.14628346264362335,\n            \"Y\": 0.5947151780128479\n          }\n        ]\n      },\n      \"Id\": \"02d0107c-e6c8-47fe-a092-acd42ae431b5\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7531509399414,\n      \"Text\": \"Pfizer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05935141444206238,\n          \"Height\": 0.029857588931918144,\n          \"Left\": 0.24377329647541046,\n          \"Top\": 0.5608330368995667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24377329647541046,\n            \"Y\": 0.5608330368995667\n          },\n          {\n            \"X\": 0.30312469601631165,\n            \"Y\": 0.5608330368995667\n          },\n          {\n            \"X\": 0.30312469601631165,\n            \"Y\": 0.5906906723976135\n          },\n          {\n            \"X\": 0.24377329647541046,\n            \"Y\": 0.5906906723976135\n          }\n        ]\n      },\n      \"Id\": \"91ef02eb-2d35-41de-a7fc-df660d729583\",\n      \"Page\": 1,\n      \"SearchKey\": \"Pfizer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86365509033203,\n      \"Text\": \"mm\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03940018266439438,\n          \"Height\": 0.021408017724752426,\n          \"Left\": 0.5650511980056763,\n          \"Top\": 0.5773391127586365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5650511980056763,\n            \"Y\": 0.5773391127586365\n          },\n          {\n            \"X\": 0.6044513583183289,\n            \"Y\": 0.5773391127586365\n          },\n          {\n            \"X\": 0.6044513583183289,\n            \"Y\": 0.5987471342086792\n          },\n          {\n            \"X\": 0.5650511980056763,\n            \"Y\": 0.5987471342086792\n          }\n        ]\n      },\n      \"Id\": \"ce525f37-c53b-493a-94ca-55a261c62479\",\n      \"Page\": 1,\n      \"SearchKey\": \"mm\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92832946777344,\n      \"Text\": \"dd\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026717577129602432,\n          \"Height\": 0.029903553426265717,\n          \"Left\": 0.6101167798042297,\n          \"Top\": 0.5691941380500793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6101167798042297,\n            \"Y\": 0.5691941380500793\n          },\n          {\n            \"X\": 0.6368343234062195,\n            \"Y\": 0.5691941380500793\n          },\n          {\n            \"X\": 0.6368343234062195,\n            \"Y\": 0.5990976691246033\n          },\n          {\n            \"X\": 0.6101167798042297,\n            \"Y\": 0.5990976691246033\n          }\n        ]\n      },\n      \"Id\": \"eddb68db-9d04-40b5-a9c0-54edd0ba2808\",\n      \"Page\": 1,\n      \"SearchKey\": \"dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16687774658203,\n      \"Text\": \"yy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02541232481598854,\n          \"Height\": 0.028777949512004852,\n          \"Left\": 0.646801233291626,\n          \"Top\": 0.5770448446273804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.646801233291626,\n            \"Y\": 0.5770448446273804\n          },\n          {\n            \"X\": 0.6722135543823242,\n            \"Y\": 0.5770448446273804\n          },\n          {\n            \"X\": 0.6722135543823242,\n            \"Y\": 0.6058228015899658\n          },\n          {\n            \"X\": 0.646801233291626,\n            \"Y\": 0.6058228015899658\n          }\n        ]\n      },\n      \"Id\": \"293dec06-e93a-4731-ba71-77f56ecbe4a6\",\n      \"Page\": 1,\n      \"SearchKey\": \"yy\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88658142089844,\n      \"Text\": \"2nd\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04052117466926575,\n          \"Height\": 0.029328785836696625,\n          \"Left\": 0.062371596693992615,\n          \"Top\": 0.6385710835456848\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.062371596693992615,\n            \"Y\": 0.6385710835456848\n          },\n          {\n            \"X\": 0.10289277136325836,\n            \"Y\": 0.6385710835456848\n          },\n          {\n            \"X\": 0.10289277136325836,\n            \"Y\": 0.6678998470306396\n          },\n          {\n            \"X\": 0.062371596693992615,\n            \"Y\": 0.6678998470306396\n          }\n        ]\n      },\n      \"Id\": \"cd51e3e1-c55a-4029-b757-5452dd846c69\",\n      \"Page\": 1,\n      \"SearchKey\": \"2nd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8289794921875,\n      \"Text\": \"Dose\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0517038032412529,\n          \"Height\": 0.027123162522912025,\n          \"Left\": 0.11002133786678314,\n          \"Top\": 0.6402031779289246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11002133786678314,\n            \"Y\": 0.6402031779289246\n          },\n          {\n            \"X\": 0.16172513365745544,\n            \"Y\": 0.6402031779289246\n          },\n          {\n            \"X\": 0.16172513365745544,\n            \"Y\": 0.6673263907432556\n          },\n          {\n            \"X\": 0.11002133786678314,\n            \"Y\": 0.6673263907432556\n          }\n        ]\n      },\n      \"Id\": \"954133d4-5b55-4cb1-b660-35a21e579b2a\",\n      \"Page\": 1,\n      \"SearchKey\": \"Dose\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.84259033203125,\n      \"Text\": \"2/8/2021\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09972228109836578,\n          \"Height\": 0.06216253340244293,\n          \"Left\": 0.3687000274658203,\n          \"Top\": 0.6332689523696899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3687000274658203,\n            \"Y\": 0.6332689523696899\n          },\n          {\n            \"X\": 0.4684222936630249,\n            \"Y\": 0.6332689523696899\n          },\n          {\n            \"X\": 0.4684222936630249,\n            \"Y\": 0.6954314708709717\n          },\n          {\n            \"X\": 0.3687000274658203,\n            \"Y\": 0.6954314708709717\n          }\n        ]\n      },\n      \"Id\": \"80042627-7b8d-4a2a-9ea9-a784b4113ecd\",\n      \"Page\": 1,\n      \"SearchKey\": \"2/8/2021\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9739990234375,\n      \"Text\": \"CVS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04401136189699173,\n          \"Height\": 0.03954875469207764,\n          \"Left\": 0.494731605052948,\n          \"Top\": 0.6160253286361694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.494731605052948,\n            \"Y\": 0.6160253286361694\n          },\n          {\n            \"X\": 0.5387429594993591,\n            \"Y\": 0.6160253286361694\n          },\n          {\n            \"X\": 0.5387429594993591,\n            \"Y\": 0.6555740833282471\n          },\n          {\n            \"X\": 0.494731605052948,\n            \"Y\": 0.6555740833282471\n          }\n        ]\n      },\n      \"Id\": \"67c30b50-30d4-4ede-87b4-30fe586e258b\",\n      \"Page\": 1,\n      \"SearchKey\": \"CVS\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.00715637207031,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013252927921712399,\n          \"Height\": 0.03841264173388481,\n          \"Left\": 0.5924714803695679,\n          \"Top\": 0.632621169090271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5924714803695679,\n            \"Y\": 0.632621169090271\n          },\n          {\n            \"X\": 0.6057243943214417,\n            \"Y\": 0.632621169090271\n          },\n          {\n            \"X\": 0.6057243943214417,\n            \"Y\": 0.6710337996482849\n          },\n          {\n            \"X\": 0.5924714803695679,\n            \"Y\": 0.6710337996482849\n          }\n        ]\n      },\n      \"Id\": \"0ae5d516-1204-4e6a-8926-b826274197b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.22288513183594,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013600465841591358,\n          \"Height\": 0.038175083696842194,\n          \"Left\": 0.6369108557701111,\n          \"Top\": 0.6322497725486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6369108557701111,\n            \"Y\": 0.6322497725486755\n          },\n          {\n            \"X\": 0.6505113244056702,\n            \"Y\": 0.6322497725486755\n          },\n          {\n            \"X\": 0.6505113244056702,\n            \"Y\": 0.6704248189926147\n          },\n          {\n            \"X\": 0.6369108557701111,\n            \"Y\": 0.6704248189926147\n          }\n        ]\n      },\n      \"Id\": \"a5535fac-956f-4c8e-bdba-7496ef50a9b4\",\n      \"Page\": 1,\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.67318725585938,\n      \"Text\": \"Pfizer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06025056168437004,\n          \"Height\": 0.0444476492702961,\n          \"Left\": 0.273237407207489,\n          \"Top\": 0.6543852686882019\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.273237407207489,\n            \"Y\": 0.6543852686882019\n          },\n          {\n            \"X\": 0.33348795771598816,\n            \"Y\": 0.6543852686882019\n          },\n          {\n            \"X\": 0.33348795771598816,\n            \"Y\": 0.6988329291343689\n          },\n          {\n            \"X\": 0.273237407207489,\n            \"Y\": 0.6988329291343689\n          }\n        ]\n      },\n      \"Id\": \"a56fc6e8-7920-42a6-ad1c-495a01e53f24\",\n      \"Page\": 1,\n      \"SearchKey\": \"Pfizer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 74.35192108154297,\n      \"Text\": \"Vaccine A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10281632840633392,\n          \"Height\": 0.028063129633665085,\n          \"Left\": 0.05962107703089714,\n          \"Top\": 0.687882661819458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05962107703089714,\n            \"Y\": 0.687882661819458\n          },\n          {\n            \"X\": 0.16243740916252136,\n            \"Y\": 0.687882661819458\n          },\n          {\n            \"X\": 0.16243740916252136,\n            \"Y\": 0.7159457802772522\n          },\n          {\n            \"X\": 0.05962107703089714,\n            \"Y\": 0.7159457802772522\n          }\n        ]\n      },\n      \"Id\": \"ca305667-d655-4737-82db-f906a61f9fc9\",\n      \"Page\": 1,\n      \"SearchKey\": \"Vaccine A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.44751739501953,\n      \"Text\": \"BB5678\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08339671790599823,\n          \"Height\": 0.05604154244065285,\n          \"Left\": 0.2676659822463989,\n          \"Top\": 0.6985543966293335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2676659822463989,\n            \"Y\": 0.6985543966293335\n          },\n          {\n            \"X\": 0.35106268525123596,\n            \"Y\": 0.6985543966293335\n          },\n          {\n            \"X\": 0.35106268525123596,\n            \"Y\": 0.754595935344696\n          },\n          {\n            \"X\": 0.2676659822463989,\n            \"Y\": 0.754595935344696\n          }\n        ]\n      },\n      \"Id\": \"821f1dbe-3603-4273-8df9-95d143a4d882\",\n      \"Page\": 1,\n      \"SearchKey\": \"BB5678\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70903778076172,\n      \"Text\": \"mm\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03950798884034157,\n          \"Height\": 0.021287593990564346,\n          \"Left\": 0.5650240778923035,\n          \"Top\": 0.6963523030281067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5650240778923035,\n            \"Y\": 0.6963523030281067\n          },\n          {\n            \"X\": 0.6045320630073547,\n            \"Y\": 0.6963523030281067\n          },\n          {\n            \"X\": 0.6045320630073547,\n            \"Y\": 0.7176399230957031\n          },\n          {\n            \"X\": 0.5650240778923035,\n            \"Y\": 0.7176399230957031\n          }\n        ]\n      },\n      \"Id\": \"33f306ed-9196-440c-a978-77de8871e0bd\",\n      \"Page\": 1,\n      \"SearchKey\": \"mm\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90653991699219,\n      \"Text\": \"dd\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02638828195631504,\n          \"Height\": 0.02886190451681614,\n          \"Left\": 0.6102077960968018,\n          \"Top\": 0.6884057521820068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6102077960968018,\n            \"Y\": 0.6884057521820068\n          },\n          {\n            \"X\": 0.6365960836410522,\n            \"Y\": 0.6884057521820068\n          },\n          {\n            \"X\": 0.6365960836410522,\n            \"Y\": 0.7172676920890808\n          },\n          {\n            \"X\": 0.6102077960968018,\n            \"Y\": 0.7172676920890808\n          }\n        ]\n      },\n      \"Id\": \"ffd97984-fea4-48bb-9349-3f791c7ab01d\",\n      \"Page\": 1,\n      \"SearchKey\": \"dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9084243774414,\n      \"Text\": \"yy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024643246084451675,\n          \"Height\": 0.028535835444927216,\n          \"Left\": 0.6472088694572449,\n          \"Top\": 0.6967511177062988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6472088694572449,\n            \"Y\": 0.6967511177062988\n          },\n          {\n            \"X\": 0.6718521118164062,\n            \"Y\": 0.6967511177062988\n          },\n          {\n            \"X\": 0.6718521118164062,\n            \"Y\": 0.7252869606018066\n          },\n          {\n            \"X\": 0.6472088694572449,\n            \"Y\": 0.7252869606018066\n          }\n        ]\n      },\n      \"Id\": \"137b4ecf-adfa-460f-8434-597f8c603147\",\n      \"Page\": 1,\n      \"SearchKey\": \"yy\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79069519042969,\n      \"Text\": \"Booster\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08216673135757446,\n          \"Height\": 0.027909275144338608,\n          \"Left\": 0.044570133090019226,\n          \"Top\": 0.760438859462738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.044570133090019226,\n            \"Y\": 0.760438859462738\n          },\n          {\n            \"X\": 0.1267368644475937,\n            \"Y\": 0.760438859462738\n          },\n          {\n            \"X\": 0.1267368644475937,\n            \"Y\": 0.7883481383323669\n          },\n          {\n            \"X\": 0.044570133090019226,\n            \"Y\": 0.7883481383323669\n          }\n        ]\n      },\n      \"Id\": \"007bb03a-6571-44e8-8cc1-e59ad55c9649\",\n      \"Page\": 1,\n      \"SearchKey\": \"Booster\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92047882080078,\n      \"Text\": \"Shot\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04960085451602936,\n          \"Height\": 0.028178995475172997,\n          \"Left\": 0.13134557008743286,\n          \"Top\": 0.7599161863327026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13134557008743286,\n            \"Y\": 0.7599161863327026\n          },\n          {\n            \"X\": 0.18094642460346222,\n            \"Y\": 0.7599161863327026\n          },\n          {\n            \"X\": 0.18094642460346222,\n            \"Y\": 0.7880951762199402\n          },\n          {\n            \"X\": 0.13134557008743286,\n            \"Y\": 0.7880951762199402\n          }\n        ]\n      },\n      \"Id\": \"bba804be-158c-44e2-bdda-84f548f84fa5\",\n      \"Page\": 1,\n      \"SearchKey\": \"Shot\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16844940185547,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012667388655245304,\n          \"Height\": 0.03713875263929367,\n          \"Left\": 0.5927793383598328,\n          \"Top\": 0.7537558078765869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5927793383598328,\n            \"Y\": 0.7537558078765869\n          },\n          {\n            \"X\": 0.6054467558860779,\n            \"Y\": 0.7537558078765869\n          },\n          {\n            \"X\": 0.6054467558860779,\n            \"Y\": 0.7908945679664612\n          },\n          {\n            \"X\": 0.5927793383598328,\n            \"Y\": 0.7908945679664612\n          }\n        ]\n      },\n      \"Id\": \"39a0bbc3-3153-499a-a83c-fba2345f00b7\",\n      \"Page\": 1,\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.614501953125,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013262784108519554,\n          \"Height\": 0.03784281015396118,\n          \"Left\": 0.6374402642250061,\n          \"Top\": 0.7531836032867432\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6374402642250061,\n            \"Y\": 0.7531836032867432\n          },\n          {\n            \"X\": 0.6507030725479126,\n            \"Y\": 0.7531836032867432\n          },\n          {\n            \"X\": 0.6507030725479126,\n            \"Y\": 0.7910264134407043\n          },\n          {\n            \"X\": 0.6374402642250061,\n            \"Y\": 0.7910264134407043\n          }\n        ]\n      },\n      \"Id\": \"832cb536-ee32-46d4-9911-0d1789eaec67\",\n      \"Page\": 1,\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62577819824219,\n      \"Text\": \"Vaccine\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08299802243709564,\n          \"Height\": 0.027984365820884705,\n          \"Left\": 0.06084218621253967,\n          \"Top\": 0.8103429675102234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06084218621253967,\n            \"Y\": 0.8103429675102234\n          },\n          {\n            \"X\": 0.14384020864963531,\n            \"Y\": 0.8103429675102234\n          },\n          {\n            \"X\": 0.14384020864963531,\n            \"Y\": 0.8383272886276245\n          },\n          {\n            \"X\": 0.06084218621253967,\n            \"Y\": 0.8383272886276245\n          }\n        ]\n      },\n      \"Id\": \"e1a13a97-91c5-41ca-ae95-9a127b93e873\",\n      \"Page\": 1,\n      \"SearchKey\": \"Vaccine\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80851745605469,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016096077859401703,\n          \"Height\": 0.027233708649873734,\n          \"Left\": 0.1476336419582367,\n          \"Top\": 0.8107858300209045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1476336419582367,\n            \"Y\": 0.8107858300209045\n          },\n          {\n            \"X\": 0.163729727268219,\n            \"Y\": 0.8107858300209045\n          },\n          {\n            \"X\": 0.163729727268219,\n            \"Y\": 0.8380195498466492\n          },\n          {\n            \"X\": 0.1476336419582367,\n            \"Y\": 0.8380195498466492\n          }\n        ]\n      },\n      \"Id\": \"d9db5a94-89ef-4287-b02b-bd8831ae0fd6\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 80.38680267333984,\n      \"Text\": \"mm dd\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07157759368419647,\n          \"Height\": 0.030629264190793037,\n          \"Left\": 0.564679741859436,\n          \"Top\": 0.8103204369544983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.564679741859436,\n            \"Y\": 0.8103204369544983\n          },\n          {\n            \"X\": 0.6362572908401489,\n            \"Y\": 0.8103204369544983\n          },\n          {\n            \"X\": 0.6362572908401489,\n            \"Y\": 0.8409497141838074\n          },\n          {\n            \"X\": 0.564679741859436,\n            \"Y\": 0.8409497141838074\n          }\n        ]\n      },\n      \"Id\": \"c120d0ce-deaa-484a-8695-f62de57fb7f4\",\n      \"Page\": 1,\n      \"SearchKey\": \"mm dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.13977813720703,\n      \"Text\": \"yy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025686895474791527,\n          \"Height\": 0.02847619354724884,\n          \"Left\": 0.6467140913009644,\n          \"Top\": 0.8186030387878418\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6467140913009644,\n            \"Y\": 0.8186030387878418\n          },\n          {\n            \"X\": 0.672400951385498,\n            \"Y\": 0.8186030387878418\n          },\n          {\n            \"X\": 0.672400951385498,\n            \"Y\": 0.8470792174339294\n          },\n          {\n            \"X\": 0.6467140913009644,\n            \"Y\": 0.8470792174339294\n          }\n        ]\n      },\n      \"Id\": \"6e45cdc6-8e20-4624-b1d3-81a7486e70c9\",\n      \"Page\": 1,\n      \"SearchKey\": \"yy\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61981201171875,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012749345041811466,\n          \"Height\": 0.037160154432058334,\n          \"Left\": 0.5929052233695984,\n          \"Top\": 0.8761171698570251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5929052233695984,\n            \"Y\": 0.8761171698570251\n          },\n          {\n            \"X\": 0.6056545972824097,\n            \"Y\": 0.8761171698570251\n          },\n          {\n            \"X\": 0.6056545972824097,\n            \"Y\": 0.9132773280143738\n          },\n          {\n            \"X\": 0.5929052233695984,\n            \"Y\": 0.9132773280143738\n          }\n        ]\n      },\n      \"Id\": \"77a12a05-83b9-4436-9722-64bf7894599d\",\n      \"Page\": 1,\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25202178955078,\n      \"Text\": \"/\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013053396716713905,\n          \"Height\": 0.03766666725277901,\n          \"Left\": 0.6375210881233215,\n          \"Top\": 0.8757286071777344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6375210881233215,\n            \"Y\": 0.8757286071777344\n          },\n          {\n            \"X\": 0.6505744457244873,\n            \"Y\": 0.8757286071777344\n          },\n          {\n            \"X\": 0.6505744457244873,\n            \"Y\": 0.9133952856063843\n          },\n          {\n            \"X\": 0.6375210881233215,\n            \"Y\": 0.9133952856063843\n          }\n        ]\n      },\n      \"Id\": \"c3177699-9935-4bdd-81fb-9ac4aacd4311\",\n      \"Page\": 1,\n      \"SearchKey\": \"/\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97953033447266,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06053202599287033,\n          \"Height\": 0.028294986113905907,\n          \"Left\": 0.08194313198328018,\n          \"Top\": 0.9046370983123779\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08194313198328018,\n            \"Y\": 0.9046370983123779\n          },\n          {\n            \"X\": 0.1424751579761505,\n            \"Y\": 0.9046370983123779\n          },\n          {\n            \"X\": 0.1424751579761505,\n            \"Y\": 0.9329321384429932\n          },\n          {\n            \"X\": 0.08194313198328018,\n            \"Y\": 0.9329321384429932\n          }\n        ]\n      },\n      \"Id\": \"39337ebb-c331-4b70-b415-bd7d3435e747\",\n      \"Page\": 1,\n      \"SearchKey\": \"Other\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78870391845703,\n      \"Text\": \"mm\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0398157574236393,\n          \"Height\": 0.021934794262051582,\n          \"Left\": 0.5648700594902039,\n          \"Top\": 0.9387519955635071\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5648700594902039,\n            \"Y\": 0.9387519955635071\n          },\n          {\n            \"X\": 0.6046857833862305,\n            \"Y\": 0.9387519955635071\n          },\n          {\n            \"X\": 0.6046857833862305,\n            \"Y\": 0.9606868028640747\n          },\n          {\n            \"X\": 0.5648700594902039,\n            \"Y\": 0.9606868028640747\n          }\n        ]\n      },\n      \"Id\": \"c30f391a-772d-4e32-92c0-87848c9a300d\",\n      \"Page\": 1,\n      \"SearchKey\": \"mm\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92949676513672,\n      \"Text\": \"dd\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026671845465898514,\n          \"Height\": 0.029995612800121307,\n          \"Left\": 0.6101131439208984,\n          \"Top\": 0.9308109879493713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6101131439208984,\n            \"Y\": 0.9308109879493713\n          },\n          {\n            \"X\": 0.6367849707603455,\n            \"Y\": 0.9308109879493713\n          },\n          {\n            \"X\": 0.6367849707603455,\n            \"Y\": 0.9608066082000732\n          },\n          {\n            \"X\": 0.6101131439208984,\n            \"Y\": 0.9608066082000732\n          }\n        ]\n      },\n      \"Id\": \"b799db2d-fc37-40f7-806a-65c7656c6d7c\",\n      \"Page\": 1,\n      \"SearchKey\": \"dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.33045196533203,\n      \"Text\": \"yy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025163602083921432,\n          \"Height\": 0.028806567192077637,\n          \"Left\": 0.6470129489898682,\n          \"Top\": 0.9392980337142944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6470129489898682,\n            \"Y\": 0.9392980337142944\n          },\n          {\n            \"X\": 0.6721765398979187,\n            \"Y\": 0.9392980337142944\n          },\n          {\n            \"X\": 0.6721765398979187,\n            \"Y\": 0.9681046009063721\n          },\n          {\n            \"X\": 0.6470129489898682,\n            \"Y\": 0.9681046009063721\n          }\n        ]\n      },\n      \"Id\": \"186c774d-9947-49e1-a41e-be46067b9c59\",\n      \"Page\": 1,\n      \"SearchKey\": \"yy\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.77847290039062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.9514180421829224,\n          \"Height\": 0.5781216621398926,\n          \"Left\": 0.023817356675863266,\n          \"Top\": 0.40192940831184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.9800510406494141\n          },\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.9800510406494141\n          }\n        ]\n      },\n      \"Id\": \"f7efb0b7-daa3-4989-99b6-2a415d43a87d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"79d3c9d8-ac99-4007-8721-cf491624469d\",\n            \"a3b55416-2309-4a49-967d-bb442a21157b\",\n            \"6a3d4dfa-9b93-4667-bf65-a76be3960def\",\n            \"76acfdc1-8905-4732-9df7-f11aaa2556c7\",\n            \"62664f87-ef95-48b0-bd9f-319c45a3b5fc\",\n            \"aed3ad7c-1844-45da-b359-e783228f6f72\",\n            \"49eef255-f7e8-46cd-94cd-9ecbd75789e0\",\n            \"accc528c-d1d7-4313-bbc2-219a13e412fa\",\n            \"87cbb202-d83c-439f-adb6-6ae6ecde675e\",\n            \"2cccf653-767b-424f-b2ed-27c590e41183\",\n            \"a191ffe7-e2ee-4cb7-9037-f4130f14f64e\",\n            \"b2a5e5e1-6fe2-475a-a6ad-81ad5043878f\",\n            \"f7aca3dc-b5b5-4f8d-b00d-e7478a0f2a3c\",\n            \"31d4fc51-7551-458b-8e00-6d446cdf577e\",\n            \"3fa6048f-afb6-48f8-9a03-54b7809db2eb\",\n            \"d308a0bf-6440-4278-a7bc-e7f4a840ba47\",\n            \"3686ddf3-15d8-459f-8d47-653dd87d8fc5\",\n            \"f10bf400-ed07-4a80-84de-f2357cf106e1\",\n            \"6d4cd844-5602-4a31-bae8-40ee59aec4fa\",\n            \"e54f0347-3803-439c-a76e-a226d88c60de\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.4017105102539,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17377470433712006,\n          \"Height\": 0.09288385510444641,\n          \"Left\": 0.023817356675863266,\n          \"Top\": 0.40192940831184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.4948132634162903\n          }\n        ]\n      },\n      \"Id\": \"79d3c9d8-ac99-4007-8721-cf491624469d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"086b86cb-04f8-4326-88e4-59345b2f68df\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Vaccine \",\n      \"SearchKey\": \"Vaccine \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 93.63573455810547,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34560906887054443,\n          \"Height\": 0.09288385510444641,\n          \"Left\": 0.19759206473827362,\n          \"Top\": 0.40192940831184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.4948132634162903\n          }\n        ]\n      },\n      \"Id\": \"a3b55416-2309-4a49-967d-bb442a21157b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0ed30ed7-4ede-4436-a051-7dbf6857ba96\",\n            \"e8512297-aa0b-44e1-9566-1f1f43614946\",\n            \"bb8a745e-8956-42e7-8925-a8cb78e18a12\",\n            \"c02dc770-551c-4e27-8d4b-1b5872bd3e34\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Product Name/Manufacturer Lot Number \",\n      \"SearchKey\": \"Product Name/Manufacturer Lot Number \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.59596252441406,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1487252116203308,\n          \"Height\": 0.09288385510444641,\n          \"Left\": 0.5432011485099792,\n          \"Top\": 0.40192940831184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.4948132634162903\n          }\n        ]\n      },\n      \"Id\": \"6a3d4dfa-9b93-4667-bf65-a76be3960def\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e5c79302-cf63-4e12-8b0f-3a57eec48f16\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Date \",\n      \"SearchKey\": \"Date \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.56207275390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28330904245376587,\n          \"Height\": 0.09288385510444641,\n          \"Left\": 0.6919263601303101,\n          \"Top\": 0.40192940831184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.40192940831184387\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.4948132634162903\n          }\n        ]\n      },\n      \"Id\": \"76acfdc1-8905-4732-9df7-f11aaa2556c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bfced463-1497-4f37-bb22-707b49db5d10\",\n            \"6a04475e-2024-4556-a980-5067a3a8817a\",\n            \"55b9478d-a433-4729-ada5-6e3abf78c824\",\n            \"52944e7a-7975-49d6-b31e-3da236fd7dae\",\n            \"ff2b1d63-eba5-4914-962d-378ceed24152\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Healthcare Professional or Clinic Site \",\n      \"SearchKey\": \"Healthcare Professional or Clinic Site \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.49319458007812,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17377470433712006,\n          \"Height\": 0.11929460614919662,\n          \"Left\": 0.023817356675863266,\n          \"Top\": 0.4948132634162903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.6141079068183899\n          }\n        ]\n      },\n      \"Id\": \"62664f87-ef95-48b0-bd9f-319c45a3b5fc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aaefb19d-0616-4c84-bec2-ef88f0099c5d\",\n            \"926d4d67-9012-42ad-9377-cb1c0692771f\",\n            \"15e6efaa-064a-4ddd-a18f-b8dd66fc38d8\",\n            \"02d0107c-e6c8-47fe-a092-acd42ae431b5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1st Dose Vaccine A \",\n      \"SearchKey\": \"1st Dose Vaccine A \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.6805648803711,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34560906887054443,\n          \"Height\": 0.11929460614919662,\n          \"Left\": 0.19759206473827362,\n          \"Top\": 0.4948132634162903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.6141079068183899\n          }\n        ]\n      },\n      \"Id\": \"aed3ad7c-1844-45da-b359-e783228f6f72\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a684ab20-4288-4516-92fc-8722dde3c23a\",\n            \"91ef02eb-2d35-41de-a7fc-df660d729583\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"AA1234 Pfizer \",\n      \"SearchKey\": \"AA1234 Pfizer \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.72515106201172,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1487252116203308,\n          \"Height\": 0.11929460614919662,\n          \"Left\": 0.5432011485099792,\n          \"Top\": 0.4948132634162903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.6141079068183899\n          }\n        ]\n      },\n      \"Id\": \"49eef255-f7e8-46cd-94cd-9ecbd75789e0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ba5e192-3679-4339-a22a-92392739bf2d\",\n            \"ce525f37-c53b-493a-94ca-55a261c62479\",\n            \"eddb68db-9d04-40b5-a9c0-54edd0ba2808\",\n            \"293dec06-e93a-4731-ba71-77f56ecbe4a6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"1/18/21 mm dd yy \",\n      \"SearchKey\": \"1/18/21 mm dd yy \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.62932586669922,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28330904245376587,\n          \"Height\": 0.11929460614919662,\n          \"Left\": 0.6919263601303101,\n          \"Top\": 0.4948132634162903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.4948132634162903\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.6141079068183899\n          }\n        ]\n      },\n      \"Id\": \"accc528c-d1d7-4313-bbc2-219a13e412fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d1c1cedb-0d05-4955-a97b-29f4aeac3242\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"XYZ \",\n      \"SearchKey\": \"XYZ \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.24959564208984,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17377470433712006,\n          \"Height\": 0.12136929482221603,\n          \"Left\": 0.023817356675863266,\n          \"Top\": 0.6141079068183899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.7354771494865417\n          }\n        ]\n      },\n      \"Id\": \"87cbb202-d83c-439f-adb6-6ae6ecde675e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cd51e3e1-c55a-4029-b757-5452dd846c69\",\n            \"954133d4-5b55-4cb1-b660-35a21e579b2a\",\n            \"ca305667-d655-4737-82db-f906a61f9fc9\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"2nd Dose Vaccine A \",\n      \"SearchKey\": \"2nd Dose Vaccine A \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.45545959472656,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34560906887054443,\n          \"Height\": 0.12136929482221603,\n          \"Left\": 0.19759206473827362,\n          \"Top\": 0.6141079068183899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.7354771494865417\n          }\n        ]\n      },\n      \"Id\": \"2cccf653-767b-424f-b2ed-27c590e41183\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a56fc6e8-7920-42a6-ad1c-495a01e53f24\",\n            \"80042627-7b8d-4a2a-9ea9-a784b4113ecd\",\n            \"67c30b50-30d4-4ede-87b4-30fe586e258b\",\n            \"821f1dbe-3603-4273-8df9-95d143a4d882\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Pfizer 2/8/2021 CVS BB5678 \",\n      \"SearchKey\": \"Pfizer 2/8/2021 CVS BB5678 \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.46660614013672,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1487252116203308,\n          \"Height\": 0.12136929482221603,\n          \"Left\": 0.5432011485099792,\n          \"Top\": 0.6141079068183899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.7354771494865417\n          }\n        ]\n      },\n      \"Id\": \"a191ffe7-e2ee-4cb7-9037-f4130f14f64e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0ae5d516-1204-4e6a-8926-b826274197b6\",\n            \"a5535fac-956f-4c8e-bdba-7496ef50a9b4\",\n            \"33f306ed-9196-440c-a978-77de8871e0bd\",\n            \"ffd97984-fea4-48bb-9349-3f791c7ab01d\",\n            \"137b4ecf-adfa-460f-8434-597f8c603147\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / mm dd yy \",\n      \"SearchKey\": \"/ / mm dd yy \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.39532470703125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28330904245376587,\n          \"Height\": 0.12136929482221603,\n          \"Left\": 0.6919263601303101,\n          \"Top\": 0.6141079068183899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.6141079068183899\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.7354771494865417\n          }\n        ]\n      },\n      \"Id\": \"b2a5e5e1-6fe2-475a-a6ad-81ad5043878f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.62782287597656,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17377470433712006,\n          \"Height\": 0.12240663915872574,\n          \"Left\": 0.023817356675863266,\n          \"Top\": 0.7354771494865417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.8578838109970093\n          }\n        ]\n      },\n      \"Id\": \"f7aca3dc-b5b5-4f8d-b00d-e7478a0f2a3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"007bb03a-6571-44e8-8cc1-e59ad55c9649\",\n            \"bba804be-158c-44e2-bdda-84f548f84fa5\",\n            \"e1a13a97-91c5-41ca-ae95-9a127b93e873\",\n            \"d9db5a94-89ef-4287-b02b-bd8831ae0fd6\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Booster Shot Vaccine A \",\n      \"SearchKey\": \"Booster Shot Vaccine A \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.81849670410156,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34560906887054443,\n          \"Height\": 0.12240663915872574,\n          \"Left\": 0.19759206473827362,\n          \"Top\": 0.7354771494865417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.8578838109970093\n          }\n        ]\n      },\n      \"Id\": \"31d4fc51-7551-458b-8e00-6d446cdf577e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.85712432861328,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1487252116203308,\n          \"Height\": 0.12240663915872574,\n          \"Left\": 0.5432011485099792,\n          \"Top\": 0.7354771494865417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.8578838109970093\n          }\n        ]\n      },\n      \"Id\": \"3fa6048f-afb6-48f8-9a03-54b7809db2eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"39a0bbc3-3153-499a-a83c-fba2345f00b7\",\n            \"832cb536-ee32-46d4-9911-0d1789eaec67\",\n            \"c120d0ce-deaa-484a-8695-f62de57fb7f4\",\n            \"6e45cdc6-8e20-4624-b1d3-81a7486e70c9\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / mm dd yy \",\n      \"SearchKey\": \"/ / mm dd yy \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.76567077636719,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28330904245376587,\n          \"Height\": 0.12240663915872574,\n          \"Left\": 0.6919263601303101,\n          \"Top\": 0.7354771494865417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.7354771494865417\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.8578838109970093\n          }\n        ]\n      },\n      \"Id\": \"d308a0bf-6440-4278-a7bc-e7f4a840ba47\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.48673248291016,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17377470433712006,\n          \"Height\": 0.12216724455356598,\n          \"Left\": 0.023817356675863266,\n          \"Top\": 0.8578838109970093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.9800510406494141\n          },\n          {\n            \"X\": 0.023817356675863266,\n            \"Y\": 0.9800510406494141\n          }\n        ]\n      },\n      \"Id\": \"3686ddf3-15d8-459f-8d47-653dd87d8fc5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"39337ebb-c331-4b70-b415-bd7d3435e747\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Other \",\n      \"SearchKey\": \"Other \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.69839477539062,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34560906887054443,\n          \"Height\": 0.12216724455356598,\n          \"Left\": 0.19759206473827362,\n          \"Top\": 0.8578838109970093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.9800510406494141\n          },\n          {\n            \"X\": 0.19759206473827362,\n            \"Y\": 0.9800510406494141\n          }\n        ]\n      },\n      \"Id\": \"f10bf400-ed07-4a80-84de-f2357cf106e1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.69905853271484,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1487252116203308,\n          \"Height\": 0.12216724455356598,\n          \"Left\": 0.5432011485099792,\n          \"Top\": 0.8578838109970093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.9800510406494141\n          },\n          {\n            \"X\": 0.5432011485099792,\n            \"Y\": 0.9800510406494141\n          }\n        ]\n      },\n      \"Id\": \"6d4cd844-5602-4a31-bae8-40ee59aec4fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"77a12a05-83b9-4436-9722-64bf7894599d\",\n            \"c3177699-9935-4bdd-81fb-9ac4aacd4311\",\n            \"c30f391a-772d-4e32-92c0-87848c9a300d\",\n            \"b799db2d-fc37-40f7-806a-65c7656c6d7c\",\n            \"186c774d-9947-49e1-a41e-be46067b9c59\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / mm dd yy \",\n      \"SearchKey\": \"/ / mm dd yy \"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.6354751586914,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28330904245376587,\n          \"Height\": 0.12216724455356598,\n          \"Left\": 0.6919263601303101,\n          \"Top\": 0.8578838109970093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.8578838109970093\n          },\n          {\n            \"X\": 0.9752354025840759,\n            \"Y\": 0.9800510406494141\n          },\n          {\n            \"X\": 0.6919263601303101,\n            \"Y\": 0.9800510406494141\n          }\n        ]\n      },\n      \"Id\": \"e54f0347-3803-439c-a76e-a226d88c60de\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 77,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09869857877492905,\n          \"Height\": 0.025937773287296295,\n          \"Left\": 0.2897520661354065,\n          \"Top\": 0.2096414715051651\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2897520661354065,\n            \"Y\": 0.2096414715051651\n          },\n          {\n            \"X\": 0.38845065236091614,\n            \"Y\": 0.2096414715051651\n          },\n          {\n            \"X\": 0.38845065236091614,\n            \"Y\": 0.2355792373418808\n          },\n          {\n            \"X\": 0.2897520661354065,\n            \"Y\": 0.2355792373418808\n          }\n        ]\n      },\n      \"Id\": \"96643d27-9a38-4710-a3bf-6c5dba5bda21\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"5d11b136-a3cc-491f-bc6e-4e2492b74dc6\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d82a68a-db16-4ea1-a802-3956607716f2\",\n            \"6dfd7a9c-a37e-4ccb-be9e-68344fc8f9b2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"First Name \",\n      \"SearchKey\": \"First Name \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 77,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06532415002584457,\n          \"Height\": 0.03844282403588295,\n          \"Left\": 0.29079967737197876,\n          \"Top\": 0.1427697390317917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29079967737197876,\n            \"Y\": 0.1427697390317917\n          },\n          {\n            \"X\": 0.35612383484840393,\n            \"Y\": 0.1427697390317917\n          },\n          {\n            \"X\": 0.35612383484840393,\n            \"Y\": 0.18121257424354553\n          },\n          {\n            \"X\": 0.29079967737197876,\n            \"Y\": 0.18121257424354553\n          }\n        ]\n      },\n      \"Id\": \"5d11b136-a3cc-491f-bc6e-4e2492b74dc6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ee86fbb-d88a-4189-805c-9c5f01c6913b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Major \",\n      \"SearchKey\": \"Major \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 75,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0969822034239769,\n          \"Height\": 0.026252098381519318,\n          \"Left\": 0.02876373566687107,\n          \"Top\": 0.2091332972049713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.02876373566687107,\n            \"Y\": 0.2091332972049713\n          },\n          {\n            \"X\": 0.12574593722820282,\n            \"Y\": 0.2091332972049713\n          },\n          {\n            \"X\": 0.12574593722820282,\n            \"Y\": 0.23538538813591003\n          },\n          {\n            \"X\": 0.02876373566687107,\n            \"Y\": 0.23538538813591003\n          }\n        ]\n      },\n      \"Id\": \"dfc396a7-5a2f-4f02-a304-f4771f08afd1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2696f5d8-1b1b-4e78-9823-09c0d3fa6367\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7b7653bd-9f80-4812-a189-5b168381776b\",\n            \"e3f503d0-fc5c-4fac-bf18-28e79a4e10b6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Last Name \",\n      \"SearchKey\": \"Last Name \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 75,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05815226212143898,\n          \"Height\": 0.03827277943491936,\n          \"Left\": 0.03861068934202194,\n          \"Top\": 0.14305615425109863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03861068934202194,\n            \"Y\": 0.14305615425109863\n          },\n          {\n            \"X\": 0.09676295518875122,\n            \"Y\": 0.14305615425109863\n          },\n          {\n            \"X\": 0.09676295518875122,\n            \"Y\": 0.1813289225101471\n          },\n          {\n            \"X\": 0.03861068934202194,\n            \"Y\": 0.1813289225101471\n          }\n        ]\n      },\n      \"Id\": \"2696f5d8-1b1b-4e78-9823-09c0d3fa6367\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"871877e2-eedf-49cf-bee0-ea53cc7ab455\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Mary \",\n      \"SearchKey\": \"Mary \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 66.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1188628077507019,\n          \"Height\": 0.026638299226760864,\n          \"Left\": 0.029299868270754814,\n          \"Top\": 0.3332599699497223\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.029299868270754814,\n            \"Y\": 0.3332599699497223\n          },\n          {\n            \"X\": 0.14816267788410187,\n            \"Y\": 0.3332599699497223\n          },\n          {\n            \"X\": 0.14816267788410187,\n            \"Y\": 0.35989826917648315\n          },\n          {\n            \"X\": 0.029299868270754814,\n            \"Y\": 0.35989826917648315\n          }\n        ]\n      },\n      \"Id\": \"171815d5-0fb6-41a1-86ae-61adb8952764\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"7e0f5035-b17c-43e1-950b-99cf7e9cc860\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b117aa7-6168-4bca-a338-d1f333ef107e\",\n            \"b5a4678a-e020-4be4-a2a3-7cdf20e0f511\",\n            \"93a28234-e833-4111-8c09-e0170f90c370\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Date of Birth \",\n      \"SearchKey\": \"Date of Birth \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 66.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0745597779750824,\n          \"Height\": 0.03943836688995361,\n          \"Left\": 0.03892914950847626,\n          \"Top\": 0.26673126220703125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03892914950847626,\n            \"Y\": 0.26673126220703125\n          },\n          {\n            \"X\": 0.11348892748355865,\n            \"Y\": 0.26673126220703125\n          },\n          {\n            \"X\": 0.11348892748355865,\n            \"Y\": 0.30616962909698486\n          },\n          {\n            \"X\": 0.03892914950847626,\n            \"Y\": 0.30616962909698486\n          }\n        ]\n      },\n      \"Id\": \"7e0f5035-b17c-43e1-950b-99cf7e9cc860\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"57414551-2723-46b5-85bb-45c85da9ec8e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"1/6/58 \",\n      \"SearchKey\": \"1/6/58 \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 63,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02634933590888977,\n          \"Height\": 0.0252032782882452,\n          \"Left\": 0.6944265365600586,\n          \"Top\": 0.2099008560180664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6944265365600586,\n            \"Y\": 0.2099008560180664\n          },\n          {\n            \"X\": 0.7207759022712708,\n            \"Y\": 0.2099008560180664\n          },\n          {\n            \"X\": 0.7207759022712708,\n            \"Y\": 0.23510412871837616\n          },\n          {\n            \"X\": 0.6944265365600586,\n            \"Y\": 0.23510412871837616\n          }\n        ]\n      },\n      \"Id\": \"08eb26c8-b864-4f16-a9e6-4ec895443bcc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"99a7f8c9-69a9-4c69-87c8-093905161a7b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ff20dba9-5d74-4342-9364-c44140b5d4c6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"MI \",\n      \"SearchKey\": \"MI \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 63,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022255441173911095,\n          \"Height\": 0.03039020486176014,\n          \"Left\": 0.6991585493087769,\n          \"Top\": 0.14372216165065765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6991585493087769,\n            \"Y\": 0.14372216165065765\n          },\n          {\n            \"X\": 0.7214139699935913,\n            \"Y\": 0.14372216165065765\n          },\n          {\n            \"X\": 0.7214139699935913,\n            \"Y\": 0.17411236464977264\n          },\n          {\n            \"X\": 0.6991585493087769,\n            \"Y\": 0.17411236464977264\n          }\n        ]\n      },\n      \"Id\": \"99a7f8c9-69a9-4c69-87c8-093905161a7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b99d10a-b019-4a83-841b-8c0126ed526f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"M \",\n      \"SearchKey\": \"M \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 40.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.493460088968277,\n          \"Height\": 0.03149021416902542,\n          \"Left\": 0.4585197865962982,\n          \"Top\": 0.3323228061199188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4585197865962982,\n            \"Y\": 0.3323228061199188\n          },\n          {\n            \"X\": 0.9519798755645752,\n            \"Y\": 0.3323228061199188\n          },\n          {\n            \"X\": 0.9519798755645752,\n            \"Y\": 0.36381304264068604\n          },\n          {\n            \"X\": 0.4585197865962982,\n            \"Y\": 0.36381304264068604\n          }\n        ]\n      },\n      \"Id\": \"84307c59-7392-4d30-899d-39dc1073f389\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6d75d247-b285-4195-a7db-49f790222db9\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6fec6575-2191-41dc-a946-5f70f64ee32b\",\n            \"4596f38c-3a7b-42ee-81ac-412d1cf7aae5\",\n            \"e86089e1-7d30-47c7-8bc6-8f897a35a4ab\",\n            \"a82b9a35-c48c-49a6-b747-91bb39ebee80\",\n            \"3339e1aa-726d-4431-bbe5-a65f4aee6641\",\n            \"276b403e-eef3-402f-a31a-fce01ee9149f\",\n            \"e1606972-3cf1-492f-bb07-f5a25af3d31a\",\n            \"02a92820-9713-4ebb-9564-db90c08aecfc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"Patient number (medical record or IIS record number) \",\n      \"SearchKey\": \"Patient number (medical record or IIS record number) \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 40.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15912020206451416,\n          \"Height\": 0.03360241651535034,\n          \"Left\": 0.4731208086013794,\n          \"Top\": 0.26814308762550354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4731208086013794,\n            \"Y\": 0.26814308762550354\n          },\n          {\n            \"X\": 0.6322410106658936,\n            \"Y\": 0.26814308762550354\n          },\n          {\n            \"X\": 0.6322410106658936,\n            \"Y\": 0.3017455041408539\n          },\n          {\n            \"X\": 0.4731208086013794,\n            \"Y\": 0.3017455041408539\n          }\n        ]\n      },\n      \"Id\": \"6d75d247-b285-4195-a7db-49f790222db9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8fa23116-b012-44f2-831b-1779a85b7966\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"012345abcd67 \",\n      \"SearchKey\": \"012345abcd67 \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 34.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08688332885503769,\n          \"Height\": 0.035530563443899155,\n          \"Left\": 0.566046953201294,\n          \"Top\": 0.9312556982040405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.566046953201294,\n            \"Y\": 0.9312556982040405\n          },\n          {\n            \"X\": 0.6529302597045898,\n            \"Y\": 0.9312556982040405\n          },\n          {\n            \"X\": 0.6529302597045898,\n            \"Y\": 0.96678626537323\n          },\n          {\n            \"X\": 0.566046953201294,\n            \"Y\": 0.96678626537323\n          }\n        ]\n      },\n      \"Id\": \"13b5a7b8-b75a-43e6-b315-d649b60874f3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"8d86259c-8e2c-4e97-9f57-fe82d87d3a2f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c30f391a-772d-4e32-92c0-87848c9a300d\",\n            \"b799db2d-fc37-40f7-806a-65c7656c6d7c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd \",\n      \"SearchKey\": \"mm dd \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 34.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12637808918952942,\n          \"Height\": 0.049120258539915085,\n          \"Left\": 0.5541247129440308,\n          \"Top\": 0.8652965426445007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5541247129440308,\n            \"Y\": 0.8652965426445007\n          },\n          {\n            \"X\": 0.6805028319358826,\n            \"Y\": 0.8652965426445007\n          },\n          {\n            \"X\": 0.6805028319358826,\n            \"Y\": 0.9144167900085449\n          },\n          {\n            \"X\": 0.5541247129440308,\n            \"Y\": 0.9144167900085449\n          }\n        ]\n      },\n      \"Id\": \"8d86259c-8e2c-4e97-9f57-fe82d87d3a2f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"77a12a05-83b9-4436-9722-64bf7894599d\",\n            \"c3177699-9935-4bdd-81fb-9ac4aacd4311\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / \",\n      \"SearchKey\": \"/ / \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 34,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11261072754859924,\n          \"Height\": 0.06751412898302078,\n          \"Left\": 0.5629793405532837,\n          \"Top\": 0.6578795313835144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5629793405532837,\n            \"Y\": 0.6578795313835144\n          },\n          {\n            \"X\": 0.6755900382995605,\n            \"Y\": 0.6578795313835144\n          },\n          {\n            \"X\": 0.6755900382995605,\n            \"Y\": 0.7253936529159546\n          },\n          {\n            \"X\": 0.5629793405532837,\n            \"Y\": 0.7253936529159546\n          }\n        ]\n      },\n      \"Id\": \"2e48a325-3995-46f3-94c9-866daf957980\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"954d9c90-5029-4dd1-a37a-c6bde13608b4\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"33f306ed-9196-440c-a978-77de8871e0bd\",\n            \"ffd97984-fea4-48bb-9349-3f791c7ab01d\",\n            \"137b4ecf-adfa-460f-8434-597f8c603147\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd yy \",\n      \"SearchKey\": \"mm dd yy \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 34,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12114454060792923,\n          \"Height\": 0.046728238463401794,\n          \"Left\": 0.5577428936958313,\n          \"Top\": 0.624728262424469\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5577428936958313,\n            \"Y\": 0.624728262424469\n          },\n          {\n            \"X\": 0.6788874268531799,\n            \"Y\": 0.624728262424469\n          },\n          {\n            \"X\": 0.6788874268531799,\n            \"Y\": 0.671456515789032\n          },\n          {\n            \"X\": 0.5577428936958313,\n            \"Y\": 0.671456515789032\n          }\n        ]\n      },\n      \"Id\": \"954d9c90-5029-4dd1-a37a-c6bde13608b4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0ae5d516-1204-4e6a-8926-b826274197b6\",\n            \"a5535fac-956f-4c8e-bdba-7496ef50a9b4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / \",\n      \"SearchKey\": \"/ / \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 32,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10609829425811768,\n          \"Height\": 0.04291018471121788,\n          \"Left\": 0.5653980374336243,\n          \"Top\": 0.563306987285614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5653980374336243,\n            \"Y\": 0.563306987285614\n          },\n          {\n            \"X\": 0.6714963316917419,\n            \"Y\": 0.563306987285614\n          },\n          {\n            \"X\": 0.6714963316917419,\n            \"Y\": 0.6062172055244446\n          },\n          {\n            \"X\": 0.5653980374336243,\n            \"Y\": 0.6062172055244446\n          }\n        ]\n      },\n      \"Id\": \"fffd9d98-58a1-467d-941d-6697c277dabb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"044a9104-2e4c-4ad4-8010-5fc846aae69f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce525f37-c53b-493a-94ca-55a261c62479\",\n            \"eddb68db-9d04-40b5-a9c0-54edd0ba2808\",\n            \"293dec06-e93a-4731-ba71-77f56ecbe4a6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd yy \",\n      \"SearchKey\": \"mm dd yy \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 32,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10658791661262512,\n          \"Height\": 0.038715820759534836,\n          \"Left\": 0.5708903670310974,\n          \"Top\": 0.5132602453231812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5708903670310974,\n            \"Y\": 0.5132602453231812\n          },\n          {\n            \"X\": 0.6774782538414001,\n            \"Y\": 0.5132602453231812\n          },\n          {\n            \"X\": 0.6774782538414001,\n            \"Y\": 0.5519760847091675\n          },\n          {\n            \"X\": 0.5708903670310974,\n            \"Y\": 0.5519760847091675\n          }\n        ]\n      },\n      \"Id\": \"044a9104-2e4c-4ad4-8010-5fc846aae69f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ba5e192-3679-4339-a22a-92392739bf2d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"1/18/21 \",\n      \"SearchKey\": \"1/18/21 \"\n    },\n    {\n      \"BlockType\": \"KEY\",\n      \"Confidence\": 26,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0785503014922142,\n          \"Height\": 0.033358942717313766,\n          \"Left\": 0.5652318596839905,\n          \"Top\": 0.8108693361282349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5652318596839905,\n            \"Y\": 0.8108693361282349\n          },\n          {\n            \"X\": 0.6437821388244629,\n            \"Y\": 0.8108693361282349\n          },\n          {\n            \"X\": 0.6437821388244629,\n            \"Y\": 0.8442282676696777\n          },\n          {\n            \"X\": 0.5652318596839905,\n            \"Y\": 0.8442282676696777\n          }\n        ]\n      },\n      \"Id\": \"bc354632-b810-45d1-8c2e-68aefa91d27e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"5cd91c27-76f2-4070-ae7c-e2e9db096eaf\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c120d0ce-deaa-484a-8695-f62de57fb7f4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"mm dd \",\n      \"SearchKey\": \"mm dd \"\n    },\n    {\n      \"BlockType\": \"VALUE\",\n      \"Confidence\": 26,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12782876193523407,\n          \"Height\": 0.056203693151474,\n          \"Left\": 0.5544124245643616,\n          \"Top\": 0.7371196150779724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5544124245643616,\n            \"Y\": 0.7371196150779724\n          },\n          {\n            \"X\": 0.6822411417961121,\n            \"Y\": 0.7371196150779724\n          },\n          {\n            \"X\": 0.6822411417961121,\n            \"Y\": 0.7933233380317688\n          },\n          {\n            \"X\": 0.5544124245643616,\n            \"Y\": 0.7933233380317688\n          }\n        ]\n      },\n      \"Id\": \"5cd91c27-76f2-4070-ae7c-e2e9db096eaf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"39a0bbc3-3153-499a-a83c-fba2345f00b7\",\n            \"832cb536-ee32-46d4-9911-0d1789eaec67\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Page\": 1,\n      \"childText\": \"/ / \",\n      \"SearchKey\": \"/ / \"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"77f460ba-f704-4fda-b313-f0676f962543\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"a70eb058-9090-4fb8-8a78-d9e6b71b6f85\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What's the patient's date of birth\"\n      },\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 99,\n      \"Text\": \"1/6/58\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07365439087152481,\n          \"Height\": 0.03838174417614937,\n          \"Left\": 0.038243625313043594,\n          \"Top\": 0.2665975093841553\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.038243625313043594,\n            \"Y\": 0.2665975093841553\n          },\n          {\n            \"X\": 0.1118980199098587,\n            \"Y\": 0.2665975093841553\n          },\n          {\n            \"X\": 0.1118980199098587,\n            \"Y\": 0.30497926473617554\n          },\n          {\n            \"X\": 0.038243625313043594,\n            \"Y\": 0.30497926473617554\n          }\n        ]\n      },\n      \"Id\": \"a70eb058-9090-4fb8-8a78-d9e6b71b6f85\",\n      \"Page\": 1,\n      \"SearchKey\": \"1/6/58\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"91325e05-9672-412f-9c98-fac0048d493e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"bb52bb55-8ae5-4486-994f-99ace2b600fa\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the patient name?\",\n        \"Alias\": \"name\"\n      },\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 76,\n      \"Text\": \"Mary Major\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.31586402654647827,\n          \"Height\": 0.035269711166620255,\n          \"Left\": 0.03966005519032478,\n          \"Top\": 0.14315353333950043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03966005519032478,\n            \"Y\": 0.14315353333950043\n          },\n          {\n            \"X\": 0.35552409291267395,\n            \"Y\": 0.14315353333950043\n          },\n          {\n            \"X\": 0.35552409291267395,\n            \"Y\": 0.17842324078083038\n          },\n          {\n            \"X\": 0.03966005519032478,\n            \"Y\": 0.17842324078083038\n          }\n        ]\n      },\n      \"Id\": \"bb52bb55-8ae5-4486-994f-99ace2b600fa\",\n      \"Page\": 1,\n      \"SearchKey\": \"Mary Major\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"9d525fff-6016-40e3-b126-997f695a9c97\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"955563f9-8712-47bb-8379-d88452b7fb6c\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the lot number of the 1st dose?\",\n        \"Alias\": \"lot_number\"\n      },\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 100,\n      \"Text\": \"AA1234\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08498583734035492,\n          \"Height\": 0.029045643284916878,\n          \"Left\": 0.24150142073631287,\n          \"Top\": 0.5155601501464844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24150142073631287,\n            \"Y\": 0.5155601501464844\n          },\n          {\n            \"X\": 0.3264872431755066,\n            \"Y\": 0.5155601501464844\n          },\n          {\n            \"X\": 0.3264872431755066,\n            \"Y\": 0.5446057915687561\n          },\n          {\n            \"X\": 0.24150142073631287,\n            \"Y\": 0.5446057915687561\n          }\n        ]\n      },\n      \"Id\": \"955563f9-8712-47bb-8379-d88452b7fb6c\",\n      \"Page\": 1,\n      \"SearchKey\": \"AA1234\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"c27c7344-70cd-47e7-90a6-1bdae7f09c85\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"06b2a225-4523-4c85-98ef-26c6e7ae73a3\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"Who is the manufacturer of the 2nd dose?\",\n        \"Alias\": \"manufacturer\"\n      },\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 100,\n      \"Text\": \"Pfizer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06019829958677292,\n          \"Height\": 0.044605810195207596,\n          \"Left\": 0.272662878036499,\n          \"Top\": 0.6535269618034363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.272662878036499,\n            \"Y\": 0.6535269618034363\n          },\n          {\n            \"X\": 0.33286118507385254,\n            \"Y\": 0.6535269618034363\n          },\n          {\n            \"X\": 0.33286118507385254,\n            \"Y\": 0.6981327533721924\n          },\n          {\n            \"X\": 0.272662878036499,\n            \"Y\": 0.6981327533721924\n          }\n        ]\n      },\n      \"Id\": \"06b2a225-4523-4c85-98ef-26c6e7ae73a3\",\n      \"Page\": 1,\n      \"SearchKey\": \"Pfizer\"\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/data/test-response.json",
    "content": "{\n  \"$metadata\": {\n    \"httpStatusCode\": 200,\n    \"requestId\": \"ec200a34-47e6-49c2-89aa-7b1771b00ab7\",\n    \"attempts\": 1,\n    \"totalRetryDelay\": 0\n  },\n  \"AnalyzeDocumentModelVersion\": \"1.0\",\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0,\n          \"Width\": 1\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0.0000010343619578634389\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 8.675223739373905e-7,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"630f40a0-0b2d-4f06-86e9-1f1bc8f3e610\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"9823ea8b-bda9-43d0-b844-d22925947504\",\n            \"2663619a-8bad-4115-95d7-8bc72d24679f\",\n            \"b86a0dd3-8a71-489a-8463-6db13735fa6d\",\n            \"7b4a9511-0c37-4957-b9d6-5926850e1d1a\",\n            \"f45f7bc9-fbf9-49c3-a241-e24ca8d01ac5\",\n            \"47540035-af89-4994-9949-24e4329a6c56\",\n            \"ddcd38b7-3040-4e33-b4b6-f908f3d7756f\",\n            \"bc686931-b124-4596-a715-401634bdd15a\",\n            \"be2a4453-acde-440c-a643-fb92cbda2210\",\n            \"156ee34a-5f30-47e9-9aa9-c14c58404fbd\",\n            \"8c4d4e10-d7a1-4a1d-b0a1-f89e40dc0e9a\",\n            \"3f36b58d-dd85-4ab5-8105-4d4ff7a0e62e\",\n            \"58a85373-fb02-446a-bc84-9c16a3fda207\",\n            \"b076a93b-a264-4b2f-ba05-3acf12103936\",\n            \"8b73a6dc-b37e-4ac3-accf-97ae4e346d52\",\n            \"eeb5a762-d778-4578-9cb7-a0b4fb21b5c1\",\n            \"56eb15e0-90b7-4fe6-855c-7bbdf0bc503a\",\n            \"667844c4-ee97-475f-8f16-43ece182ac76\",\n            \"38272c5c-94be-4d16-ab28-1a2cb1af9bb1\",\n            \"c34a1fe1-6007-42f5-a0e2-a300783c03a2\",\n            \"2d08daae-244e-42f5-8979-50d1a5447c2a\",\n            \"378d5df3-e3d3-4593-a296-87b0f054b0eb\",\n            \"252bc098-2b1c-41d8-bd37-b0a262463e3d\",\n            \"4134f7e6-8103-47ed-9451-40cb50a841f0\",\n            \"df1a2ee7-cc0b-4c50-8d88-a20f79255973\",\n            \"39be8664-14f9-4377-9fb2-a5feda402e7a\",\n            \"7fdf6e6a-c2be-418d-8219-f3e579551572\",\n            \"ddd33d23-a835-4ff7-bbf8-605377797cd0\",\n            \"87a1cf15-de56-4e5c-b92c-77a5f47ca797\",\n            \"70c12df3-7be5-4af8-86e1-2a11400bcd1d\",\n            \"381e45a5-c565-4fc8-bb0c-a85fee0bb3ce\",\n            \"f8e3cb3c-1988-4390-b1c2-b75bfe5efa21\",\n            \"fb354eb9-2578-4871-9296-96a301f87870\",\n            \"6d4e6a57-7ef1-4334-ba02-df4544fc45bd\",\n            \"220ba329-86fe-4957-873d-b71c94101ec7\",\n            \"3b3d8a9f-a14d-4260-8ddb-ab9a9710c544\",\n            \"f4d02fa5-f693-4e6c-9b83-ca33eb5b0d17\",\n            \"3f47af1c-313d-43fe-901f-ccd4d494a9cb\",\n            \"7cb98364-ee96-40a0-9f76-d90db3eab657\",\n            \"08fe8196-9c93-44dd-8e00-972e6d3da0d1\",\n            \"90e1d78d-91ae-4700-8d47-499a162105aa\",\n            \"7fed89cc-d54e-4aa4-a730-1e102ae1e032\",\n            \"9d545e38-825e-436f-889f-8160ff17b4e5\",\n            \"b54f7475-9baf-44cb-a99a-21d5a418f8e2\",\n            \"11520578-dee9-4159-9772-775559270f26\",\n            \"dfefed23-41c3-4c94-8a74-53600bb12b09\",\n            \"1aeffdbe-0dc3-4272-8485-d5cc584250d0\",\n            \"955da005-9d1f-4223-8fe0-7804fb23ff78\",\n            \"20663725-9c53-41c2-b25b-2888968291b9\",\n            \"94d47e4d-fb6f-4485-9fce-4eb1c2398a07\",\n            \"dacba4f4-99e1-4f62-854b-5344b46c2b9d\",\n            \"70a7de67-3b8f-44c0-976c-a82203d7e540\",\n            \"18995ac4-713a-4671-9927-bf6a9e4a95e0\",\n            \"4b1ce4e3-8251-4b0b-8ea9-80a9a6b43b99\",\n            \"74c0938b-2475-4c49-8001-26f969aaeee9\",\n            \"ce840788-ea77-49f0-8afb-ce77a924049d\",\n            \"e43f0f4f-ec71-4ef7-b99a-4ba49c160d61\",\n            \"7a17d6a0-9150-420b-bbdb-c077be986e8c\",\n            \"4da18bd6-78be-4839-bab0-2a9ccc973572\",\n            \"76d3c956-7e6b-4f8d-96ca-7150380d1064\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96635437011719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.060586117208004,\n          \"Left\": 0.29682961106300354,\n          \"Top\": 0.03373785689473152,\n          \"Width\": 0.3433551788330078\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29682961106300354,\n            \"Y\": 0.035057757049798965\n          },\n          {\n            \"X\": 0.6400983333587646,\n            \"Y\": 0.03373785689473152\n          },\n          {\n            \"X\": 0.640184760093689,\n            \"Y\": 0.0930408164858818\n          },\n          {\n            \"X\": 0.2968776822090149,\n            \"Y\": 0.09432397037744522\n          }\n        ]\n      },\n      \"Id\": \"9823ea8b-bda9-43d0-b844-d22925947504\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"8026a7ef-b929-4154-b805-1d21411b4863\",\n            \"567c198f-68cc-4b5e-8684-6892653efec8\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Employment Application\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.0567626953125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03433509171009064,\n          \"Left\": 0.03704217076301575,\n          \"Top\": 0.13438312709331512,\n          \"Width\": 0.20044834911823273\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03704217076301575,\n            \"Y\": 0.135117769241333\n          },\n          {\n            \"X\": 0.23746702075004578,\n            \"Y\": 0.13438312709331512\n          },\n          {\n            \"X\": 0.23749051988124847,\n            \"Y\": 0.16799576580524445\n          },\n          {\n            \"X\": 0.037052981555461884,\n            \"Y\": 0.16871821880340576\n          }\n        ]\n      },\n      \"Id\": \"2663619a-8bad-4115-95d7-8bc72d24679f\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"754353e9-8659-4399-b2a3-f3e7b3354c7e\",\n            \"66c496f7-4c66-4d36-9cd7-a24d9e8b41e2\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Application Information\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8582992553711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027783222496509552,\n          \"Left\": 0.0357961505651474,\n          \"Top\": 0.2007402777671814,\n          \"Width\": 0.16915340721607208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0357961505651474,\n            \"Y\": 0.20133991539478302\n          },\n          {\n            \"X\": 0.20493219792842865,\n            \"Y\": 0.2007402777671814\n          },\n          {\n            \"X\": 0.20494955778121948,\n            \"Y\": 0.2279321700334549\n          },\n          {\n            \"X\": 0.035804834216833115,\n            \"Y\": 0.22852349281311035\n          }\n        ]\n      },\n      \"Id\": \"b86a0dd3-8a71-489a-8463-6db13735fa6d\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"2f6dda22-7d15-4bfd-8a83-88df19c44401\",\n            \"3a8a3052-4fd5-44dc-972e-10d23ceac298\",\n            \"a45ca615-d0f2-48ae-849c-65fd31283a3d\",\n            \"cb7ccd9f-d2cb-4191-94ae-bdb3b2d492cb\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Full Name: Jane Doe\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.18640899658203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.042818259447813034,\n          \"Left\": 0.033068809658288956,\n          \"Top\": 0.2607567012310028,\n          \"Width\": 0.31682223081588745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.033068809658288956,\n            \"Y\": 0.26184502243995667\n          },\n          {\n            \"X\": 0.3498530089855194,\n            \"Y\": 0.2607567012310028\n          },\n          {\n            \"X\": 0.3498910367488861,\n            \"Y\": 0.302510529756546\n          },\n          {\n            \"X\": 0.03308192268013954,\n            \"Y\": 0.30357494950294495\n          }\n        ]\n      },\n      \"Id\": \"7b4a9511-0c37-4957-b9d6-5926850e1d1a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"16b75b07-e0c6-41c2-bf74-ee90f79fa47a\",\n            \"4a4ba481-0860-4da6-a21c-68a737347797\",\n            \"aa65645c-e369-49e9-b716-3cb871dda30c\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Phone Number: 555-0100\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.36356353759766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.0741066113114357,\n          \"Left\": 0.030385689809918404,\n          \"Top\": 0.3175898492336273,\n          \"Width\": 0.7564547657966614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.030385689809918404,\n            \"Y\": 0.3201083540916443\n          },\n          {\n            \"X\": 0.7867162227630615,\n            \"Y\": 0.3175898492336273\n          },\n          {\n            \"X\": 0.7868404984474182,\n            \"Y\": 0.3892758786678314\n          },\n          {\n            \"X\": 0.030407819896936417,\n            \"Y\": 0.3916964828968048\n          }\n        ]\n      },\n      \"Id\": \"f45f7bc9-fbf9-49c3-a241-e24ca8d01ac5\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"91673fc7-5942-4a58-a7c6-378629a55f03\",\n            \"804cb66f-a26d-4079-b32c-aec7a921eb65\",\n            \"1a79a69b-1859-4658-a38d-55260ba909e0\",\n            \"03c7da6c-aa52-4d57-99c5-8a529e2f0dc6\",\n            \"d58391e8-3d54-4e63-a226-ba806b71c966\",\n            \"293a9d95-66a7-4e83-85a1-d2d2fc943298\",\n            \"dfc78cc8-5657-414b-b720-bdb58a5cf393\",\n            \"e1011aba-4ac7-49d2-950b-4e86dc6a73dc\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Home Address: 123 Any Street, Any Town. USA\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91344451904297,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.035251010209321976,\n          \"Left\": 0.027816299349069595,\n          \"Top\": 0.3998487591743469,\n          \"Width\": 0.269490122795105\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.027816299349069595,\n            \"Y\": 0.4007066488265991\n          },\n          {\n            \"X\": 0.297278493642807,\n            \"Y\": 0.3998487591743469\n          },\n          {\n            \"X\": 0.2973064184188843,\n            \"Y\": 0.4342586398124695\n          },\n          {\n            \"X\": 0.027826763689517975,\n            \"Y\": 0.4350997805595398\n          }\n        ]\n      },\n      \"Id\": \"47540035-af89-4994-9949-24e4329a6c56\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"bef9165c-0221-4452-b265-8f0de8724b1d\",\n            \"e03c5403-6053-4e2e-bdcf-8223ccb3b3c2\",\n            \"dffea4b8-9bef-4513-b4f6-de675713e57a\",\n            \"1a6506c9-9b8c-4e51-b3d5-5aa819de9ae0\",\n            \"b22dd030-5dc4-40f0-857d-c038db070340\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Mailing Address: same as above\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86561584472656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03350025787949562,\n          \"Left\": 0.021087421104311943,\n          \"Top\": 0.4767921566963196,\n          \"Width\": 0.3586295545101166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.021087421104311943,\n            \"Y\": 0.47788360714912415\n          },\n          {\n            \"X\": 0.3796856105327606,\n            \"Y\": 0.4767921566963196\n          },\n          {\n            \"X\": 0.3797169625759125,\n            \"Y\": 0.5092219710350037\n          },\n          {\n            \"X\": 0.021096868440508842,\n            \"Y\": 0.5102924108505249\n          }\n        ]\n      },\n      \"Id\": \"ddcd38b7-3040-4e33-b4b6-f908f3d7756f\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"f31ad762-c84e-4d03-a74c-7293b63af4bf\",\n            \"facdadd2-c067-4661-a7c5-ce089800e7f7\",\n            \"1b6482b6-1aed-4105-97d8-389cb8891135\",\n            \"68cfb6ce-44ca-4644-9a04-26d95d89ab32\",\n            \"81e1fe65-c022-4fac-8434-6090e07c6c51\",\n            \"dd3dfa36-a322-4db1-9a15-d87d0d1454d1\",\n            \"dd98abd5-4a09-4bd7-b7a1-d693ffeac5fd\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"How did you hear about this position?\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73382568359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027085471898317337,\n          \"Left\": 0.045829903334379196,\n          \"Top\": 0.5168754458427429,\n          \"Width\": 0.06403516978025436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.045829903334379196,\n            \"Y\": 0.517065703868866\n          },\n          {\n            \"X\": 0.10985273867845535,\n            \"Y\": 0.5168754458427429\n          },\n          {\n            \"X\": 0.10986506938934326,\n            \"Y\": 0.5437737107276917\n          },\n          {\n            \"X\": 0.04583899676799774,\n            \"Y\": 0.5439608693122864\n          }\n        ]\n      },\n      \"Id\": \"bc686931-b124-4596-a715-401634bdd15a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a2918ed6-a4b8-4d93-a533-e53747d33a47\",\n            \"a0a73412-43db-451b-9004-b34c393ca8cf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Job fair\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.67335510253906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026219643652439117,\n          \"Left\": 0.16717872023582458,\n          \"Top\": 0.5170139670372009,\n          \"Width\": 0.06789419800043106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16717872023582458,\n            \"Y\": 0.5172156691551208\n          },\n          {\n            \"X\": 0.2350548505783081,\n            \"Y\": 0.5170139670372009\n          },\n          {\n            \"X\": 0.23507292568683624,\n            \"Y\": 0.5430351495742798\n          },\n          {\n            \"X\": 0.1671934723854065,\n            \"Y\": 0.5432336330413818\n          }\n        ]\n      },\n      \"Id\": \"be2a4453-acde-440c-a643-fb92cbda2210\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"60f29f44-b942-4366-ab60-2ef1cd1ba0a1\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Website\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.910888671875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03220067918300629,\n          \"Left\": 0.28990551829338074,\n          \"Top\": 0.5166125297546387,\n          \"Width\": 0.1657394915819168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28990551829338074,\n            \"Y\": 0.5171048641204834\n          },\n          {\n            \"X\": 0.45560982823371887,\n            \"Y\": 0.5166125297546387\n          },\n          {\n            \"X\": 0.45564502477645874,\n            \"Y\": 0.5483303666114807\n          },\n          {\n            \"X\": 0.2899308204650879,\n            \"Y\": 0.5488132238388062\n          }\n        ]\n      },\n      \"Id\": \"156ee34a-5f30-47e9-9aa9-c14c58404fbd\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"21ce35e3-5998-4d2a-a62e-5bf40ee315f6\",\n            \"0def65d8-044b-4b62-a83e-654f846828de\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Company Employee\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.24671936035156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04179218038916588,\n          \"Left\": 0.3293270468711853,\n          \"Top\": 0.5972354412078857,\n          \"Width\": 0.3242861032485962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3293270468711853,\n            \"Y\": 0.5981510281562805\n          },\n          {\n            \"X\": 0.6535525321960449,\n            \"Y\": 0.5972354412078857\n          },\n          {\n            \"X\": 0.6536131501197815,\n            \"Y\": 0.6381359696388245\n          },\n          {\n            \"X\": 0.329362690448761,\n            \"Y\": 0.6390276551246643\n          }\n        ]\n      },\n      \"Id\": \"8c4d4e10-d7a1-4a1d-b0a1-f89e40dc0e9a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"30456f1b-0094-4442-aee5-5c1e4de6c86c\",\n            \"dcbb9cb4-fbb6-4118-bc8f-7069afa2ff82\",\n            \"c6bb9c84-3964-4f1b-8ca0-1fcb03e0e3c3\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Previous Employment History\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82781982421875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02662510797381401,\n          \"Left\": 0.04611624404788017,\n          \"Top\": 0.6792829036712646,\n          \"Width\": 0.08138629049062729\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04611624404788017,\n            \"Y\": 0.6795008182525635\n          },\n          {\n            \"X\": 0.12748955190181732,\n            \"Y\": 0.6792829036712646\n          },\n          {\n            \"X\": 0.12750253081321716,\n            \"Y\": 0.7056939601898193\n          },\n          {\n            \"X\": 0.04612518474459648,\n            \"Y\": 0.7059080004692078\n          }\n        ]\n      },\n      \"Id\": \"3f36b58d-dd85-4ab5-8105-4d4ff7a0e62e\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a7f8310a-91cf-463e-a1a7-ddc83a029ab7\",\n            \"9ad223f1-8f97-40bd-a77b-1b7ffdea2b9f\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Start Date\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89901733398438,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02791038155555725,\n          \"Left\": 0.15907126665115356,\n          \"Top\": 0.6789886951446533,\n          \"Width\": 0.07423623651266098\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15907126665115356,\n            \"Y\": 0.6791874170303345\n          },\n          {\n            \"X\": 0.23328834772109985,\n            \"Y\": 0.6789886951446533\n          },\n          {\n            \"X\": 0.23330749571323395,\n            \"Y\": 0.7067040205001831\n          },\n          {\n            \"X\": 0.15908654034137726,\n            \"Y\": 0.7068990468978882\n          }\n        ]\n      },\n      \"Id\": \"58a85373-fb02-446a-bc84-9c16a3fda207\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"c418c930-deb1-474d-8342-77262427c18a\",\n            \"cfb6092b-001f-4944-b15b-b84419ecb48d\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"End Date\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95309448242188,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03413480520248413,\n          \"Left\": 0.2740098834037781,\n          \"Top\": 0.6800851821899414,\n          \"Width\": 0.13272617757320404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2740098834037781,\n            \"Y\": 0.6804401278495789\n          },\n          {\n            \"X\": 0.4067016839981079,\n            \"Y\": 0.6800851821899414\n          },\n          {\n            \"X\": 0.4067360460758209,\n            \"Y\": 0.7138730883598328\n          },\n          {\n            \"X\": 0.27403581142425537,\n            \"Y\": 0.7142199873924255\n          }\n        ]\n      },\n      \"Id\": \"b076a93b-a264-4b2f-ba05-3acf12103936\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"586ff9db-4ee0-4d9d-8851-f2c0a1500c14\",\n            \"bdc77bb1-ed0f-4b7e-9e1e-d84eb921edae\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Employer Name\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89618682861328,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028596755117177963,\n          \"Left\": 0.5072782635688782,\n          \"Top\": 0.6816064119338989,\n          \"Width\": 0.11133860796689987\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5072782635688782,\n            \"Y\": 0.6819037199020386\n          },\n          {\n            \"X\": 0.6185768246650696,\n            \"Y\": 0.6816064119338989\n          },\n          {\n            \"X\": 0.6186168789863586,\n            \"Y\": 0.7099115252494812\n          },\n          {\n            \"X\": 0.5073124170303345,\n            \"Y\": 0.7102031111717224\n          }\n        ]\n      },\n      \"Id\": \"8b73a6dc-b37e-4ac3-accf-97ae4e346d52\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"43f1bca6-5717-4930-88f0-11785c0257f6\",\n            \"9cfe7c13-07d6-4e0f-a5db-86c0efede9d1\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Position Held\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96475219726562,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03546103462576866,\n          \"Left\": 0.7476204633712769,\n          \"Top\": 0.6783403754234314,\n          \"Width\": 0.16283343732357025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7476204633712769,\n            \"Y\": 0.6787759065628052\n          },\n          {\n            \"X\": 0.910385012626648,\n            \"Y\": 0.6783403754234314\n          },\n          {\n            \"X\": 0.9104538559913635,\n            \"Y\": 0.7133762240409851\n          },\n          {\n            \"X\": 0.7476785182952881,\n            \"Y\": 0.7138014435768127\n          }\n        ]\n      },\n      \"Id\": \"eeb5a762-d778-4578-9cb7-a0b4fb21b5c1\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"4568cab5-a23e-4c73-a4c6-3c0238ab62b5\",\n            \"1a8752e6-7f9c-4f94-8710-2514ba044f2b\",\n            \"e6e97653-806c-443f-8583-4a0978604ddf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Reason for leaving\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9541015625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03305971622467041,\n          \"Left\": 0.04384903237223625,\n          \"Top\": 0.7485097050666809,\n          \"Width\": 0.08643797785043716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04384903237223625,\n            \"Y\": 0.7487303018569946\n          },\n          {\n            \"X\": 0.13027068972587585,\n            \"Y\": 0.7485097050666809\n          },\n          {\n            \"X\": 0.13028700649738312,\n            \"Y\": 0.7813540101051331\n          },\n          {\n            \"X\": 0.04386000707745552,\n            \"Y\": 0.7815694212913513\n          }\n        ]\n      },\n      \"Id\": \"56eb15e0-90b7-4fe6-855c-7bbdf0bc503a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"5443d9c1-df64-46da-b185-9a900d27eff5\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"1/15/2009\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95281219482422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03551780804991722,\n          \"Left\": 0.1563645303249359,\n          \"Top\": 0.7485414147377014,\n          \"Width\": 0.08760681003332138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1563645303249359,\n            \"Y\": 0.7487648725509644\n          },\n          {\n            \"X\": 0.24394625425338745,\n            \"Y\": 0.7485414147377014\n          },\n          {\n            \"X\": 0.2439713478088379,\n            \"Y\": 0.7838413119316101\n          },\n          {\n            \"X\": 0.15638379752635956,\n            \"Y\": 0.7840591669082642\n          }\n        ]\n      },\n      \"Id\": \"667844c4-ee97-475f-8f16-43ece182ac76\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"39254f98-d72b-4a29-a852-7aa49ea5191f\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"6/30/2011\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96428680419922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.034533992409706116,\n          \"Left\": 0.27168336510658264,\n          \"Top\": 0.7537824511528015,\n          \"Width\": 0.11661279201507568\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27168336510658264,\n            \"Y\": 0.75407874584198\n          },\n          {\n            \"X\": 0.3882625102996826,\n            \"Y\": 0.7537824511528015\n          },\n          {\n            \"X\": 0.3882961571216583,\n            \"Y\": 0.7880273461341858\n          },\n          {\n            \"X\": 0.27170947194099426,\n            \"Y\": 0.7883164286613464\n          }\n        ]\n      },\n      \"Id\": \"38272c5c-94be-4d16-ab28-1a2cb1af9bb1\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"87f211c8-dfc7-465d-9707-73c520dce643\",\n            \"f8f71feb-6ee9-449f-9623-fbaf8aa6a2d7\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Any Company\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8336410522461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028160996735095978,\n          \"Left\": 0.5051580667495728,\n          \"Top\": 0.7555969953536987,\n          \"Width\": 0.1308329850435257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5051580667495728,\n            \"Y\": 0.7559288144111633\n          },\n          {\n            \"X\": 0.6359507441520691,\n            \"Y\": 0.7555969953536987\n          },\n          {\n            \"X\": 0.635991096496582,\n            \"Y\": 0.7834327220916748\n          },\n          {\n            \"X\": 0.5051915645599365,\n            \"Y\": 0.7837579846382141\n          }\n        ]\n      },\n      \"Id\": \"c34a1fe1-6007-42f5-a0e2-a300783c03a2\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"1ea112fe-3e6b-41f6-9006-eda5e55b5c30\",\n            \"fc337804-d0a7-4606-b5bd-1ac00a5462d2\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Assistant baker\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9616470336914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02928374707698822,\n          \"Left\": 0.7473230361938477,\n          \"Top\": 0.7534971833229065,\n          \"Width\": 0.08477663993835449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7473230361938477,\n            \"Y\": 0.7537123560905457\n          },\n          {\n            \"X\": 0.8320468664169312,\n            \"Y\": 0.7534971833229065\n          },\n          {\n            \"X\": 0.8320996761322021,\n            \"Y\": 0.7825701236724854\n          },\n          {\n            \"X\": 0.747371256351471,\n            \"Y\": 0.7827808856964111\n          }\n        ]\n      },\n      \"Id\": \"2d08daae-244e-42f5-8979-50d1a5447c2a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"3d0354ee-fe31-45c3-933b-07cab5befc7a\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"relocated\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57495880126953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.06203335523605347,\n          \"Left\": 0.03900713473558426,\n          \"Top\": 0.82148677110672,\n          \"Width\": 0.09563203901052475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03900713473558426,\n            \"Y\": 0.821718156337738\n          },\n          {\n            \"X\": 0.1346079558134079,\n            \"Y\": 0.82148677110672\n          },\n          {\n            \"X\": 0.134639173746109,\n            \"Y\": 0.8832994699478149\n          },\n          {\n            \"X\": 0.039027221500873566,\n            \"Y\": 0.8835201263427734\n          }\n        ]\n      },\n      \"Id\": \"378d5df3-e3d3-4593-a296-87b0f054b0eb\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"7b51de82-de8b-474d-ab24-a9f1dcd32dc5\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"7/1/2011\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.67644500732422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05560161545872688,\n          \"Left\": 0.1505906730890274,\n          \"Top\": 0.8263616561889648,\n          \"Width\": 0.10654087364673615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1505906730890274,\n            \"Y\": 0.8266183733940125\n          },\n          {\n            \"X\": 0.25709083676338196,\n            \"Y\": 0.8263616561889648\n          },\n          {\n            \"X\": 0.25713154673576355,\n            \"Y\": 0.8817172050476074\n          },\n          {\n            \"X\": 0.15062028169631958,\n            \"Y\": 0.8819632530212402\n          }\n        ]\n      },\n      \"Id\": \"252bc098-2b1c-41d8-bd37-b0a262463e3d\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"8495e908-f3ca-435f-bec1-fff97ba5e22c\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"8/10/2013\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.68743133544922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05011221766471863,\n          \"Left\": 0.2774198353290558,\n          \"Top\": 0.84017413854599,\n          \"Width\": 0.20755207538604736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2774198353290558,\n            \"Y\": 0.8406689167022705\n          },\n          {\n            \"X\": 0.4849141240119934,\n            \"Y\": 0.84017413854599\n          },\n          {\n            \"X\": 0.48497191071510315,\n            \"Y\": 0.8898102045059204\n          },\n          {\n            \"X\": 0.27745822072029114,\n            \"Y\": 0.890286386013031\n          }\n        ]\n      },\n      \"Id\": \"4134f7e6-8103-47ed-9451-40cb50a841f0\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"28c043b7-888b-4413-bd64-94fb120bd496\",\n            \"fed10741-db8d-4c36-a7ce-6818f29c267c\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Example Corp.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57794189453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.0517936609685421,\n          \"Left\": 0.5172786712646484,\n          \"Top\": 0.8347353339195251,\n          \"Width\": 0.09741675853729248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172786712646484,\n            \"Y\": 0.8349683284759521\n          },\n          {\n            \"X\": 0.6146228313446045,\n            \"Y\": 0.8347353339195251\n          },\n          {\n            \"X\": 0.6146954298019409,\n            \"Y\": 0.886305034160614\n          },\n          {\n            \"X\": 0.5173418521881104,\n            \"Y\": 0.8865289688110352\n          }\n        ]\n      },\n      \"Id\": \"df1a2ee7-cc0b-4c50-8d88-a20f79255973\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"65b160b8-c062-4c37-9e3a-e15c3914bed7\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Baker\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.17610168457031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.06202751398086548,\n          \"Left\": 0.7483310103416443,\n          \"Top\": 0.8388600945472717,\n          \"Width\": 0.18550030887126923\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7483310103416443,\n            \"Y\": 0.8393022418022156\n          },\n          {\n            \"X\": 0.933707594871521,\n            \"Y\": 0.8388600945472717\n          },\n          {\n            \"X\": 0.9338313341140747,\n            \"Y\": 0.9004661440849304\n          },\n          {\n            \"X\": 0.7484332323074341,\n            \"Y\": 0.9008876085281372\n          }\n        ]\n      },\n      \"Id\": \"39be8664-14f9-4377-9fb2-a5feda402e7a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a0a0f2a0-e6bd-4c63-9980-55bd017b4451\",\n            \"15dbd706-fecd-437e-b7da-c0a892387bb8\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"better opp.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.16897583007812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.047877535223960876,\n          \"Left\": 0.03930141404271126,\n          \"Top\": 0.896701455116272,\n          \"Width\": 0.10153479129076004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03930141404271126,\n            \"Y\": 0.8969332575798035\n          },\n          {\n            \"X\": 0.14081159234046936,\n            \"Y\": 0.896701455116272\n          },\n          {\n            \"X\": 0.1408362090587616,\n            \"Y\": 0.9443559646606445\n          },\n          {\n            \"X\": 0.03931692615151405,\n            \"Y\": 0.944579005241394\n          }\n        ]\n      },\n      \"Id\": \"7fdf6e6a-c2be-418d-8219-f3e579551572\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"0a22b4f9-4d1e-4f7c-98f7-b9fb37e36743\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"8/15/2013\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96135711669922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.060170192271471024,\n          \"Left\": 0.15297278761863708,\n          \"Top\": 0.8883068561553955,\n          \"Width\": 0.09696198254823685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15297278761863708,\n            \"Y\": 0.8885295987129211\n          },\n          {\n            \"X\": 0.2498914897441864,\n            \"Y\": 0.8883068561553955\n          },\n          {\n            \"X\": 0.24993476271629333,\n            \"Y\": 0.9482647776603699\n          },\n          {\n            \"X\": 0.15300512313842773,\n            \"Y\": 0.948477029800415\n          }\n        ]\n      },\n      \"Id\": \"ddd33d23-a835-4ff7-bbf8-605377797cd0\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"d81aff01-b358-49fe-8a5f-643688ab63fa\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"Present\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.27928924560547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07486114650964737,\n          \"Left\": 0.26840007305145264,\n          \"Top\": 0.9053831100463867,\n          \"Width\": 0.18674123287200928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26840007305145264,\n            \"Y\": 0.9058061838150024\n          },\n          {\n            \"X\": 0.4550588130950928,\n            \"Y\": 0.9053831100463867\n          },\n          {\n            \"X\": 0.4551413059234619,\n            \"Y\": 0.9798463582992554\n          },\n          {\n            \"X\": 0.268456369638443,\n            \"Y\": 0.9802442789077759\n          }\n        ]\n      },\n      \"Id\": \"87a1cf15-de56-4e5c-b92c-77a5f47ca797\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"06927ec1-2635-45d3-b880-f60d11deaf14\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"AnyCompany\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.21939086914062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.049729593098163605,\n          \"Left\": 0.5009567737579346,\n          \"Top\": 0.9052125215530396,\n          \"Width\": 0.19014795124530792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009567737579346,\n            \"Y\": 0.9056431651115417\n          },\n          {\n            \"X\": 0.6910281777381897,\n            \"Y\": 0.9052125215530396\n          },\n          {\n            \"X\": 0.6911047101020813,\n            \"Y\": 0.9545283913612366\n          },\n          {\n            \"X\": 0.5010156035423279,\n            \"Y\": 0.9549421072006226\n          }\n        ]\n      },\n      \"Id\": \"70c12df3-7be5-4af8-86e1-2a11400bcd1d\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"00ddc39a-f7cd-48ad-9530-6290724d5360\",\n            \"65cdfc55-894e-47f0-88d7-13f90d6486fd\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"head baker\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 87.07830810546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05912750959396362,\n          \"Left\": 0.7465345859527588,\n          \"Top\": 0.9064832925796509,\n          \"Width\": 0.22058705985546112\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7465345859527588,\n            \"Y\": 0.9069820642471313\n          },\n          {\n            \"X\": 0.9670001864433289,\n            \"Y\": 0.9064832925796509\n          },\n          {\n            \"X\": 0.9671216011047363,\n            \"Y\": 0.965135395526886\n          },\n          {\n            \"X\": 0.7466316223144531,\n            \"Y\": 0.9656108021736145\n          }\n        ]\n      },\n      \"Id\": \"381e45a5-c565-4fc8-bb0c-a85fee0bb3ce\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"fdcc65d9-2d06-47ee-a36e-2ead1029d7a9\",\n            \"1d02d2fc-d4e2-4593-b690-bf57e326aecf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"Text\": \"N/A, current\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96882629394531,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05475110188126564,\n          \"Left\": 0.2968338131904602,\n          \"Top\": 0.03957287222146988,\n          \"Width\": 0.17665702104568481\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2968338131904602,\n            \"Y\": 0.04025023430585861\n          },\n          {\n            \"X\": 0.47342896461486816,\n            \"Y\": 0.03957287222146988\n          },\n          {\n            \"X\": 0.473490834236145,\n            \"Y\": 0.09366385638713837\n          },\n          {\n            \"X\": 0.2968776822090149,\n            \"Y\": 0.09432397037744522\n          }\n        ]\n      },\n      \"Id\": \"8026a7ef-b929-4154-b805-1d21411b4863\",\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96387481689453,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.053964532911777496,\n          \"Left\": 0.4786316454410553,\n          \"Top\": 0.03373785689473152,\n          \"Width\": 0.16154447197914124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4786316454410553,\n            \"Y\": 0.034358713775873184\n          },\n          {\n            \"X\": 0.6400983333587646,\n            \"Y\": 0.03373785689473152\n          },\n          {\n            \"X\": 0.6401761174201965,\n            \"Y\": 0.08709708601236343\n          },\n          {\n            \"X\": 0.4786931872367859,\n            \"Y\": 0.08770238608121872\n          }\n        ]\n      },\n      \"Id\": \"567c198f-68cc-4b5e-8684-6892653efec8\",\n      \"Text\": \"Application\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8812026977539,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03374551236629486,\n          \"Left\": 0.03704223781824112,\n          \"Top\": 0.1349727064371109,\n          \"Width\": 0.09603197127580643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03704223781824112,\n            \"Y\": 0.1353246122598648\n          },\n          {\n            \"X\": 0.13305741548538208,\n            \"Y\": 0.1349727064371109\n          },\n          {\n            \"X\": 0.13307420909404755,\n            \"Y\": 0.16837212443351746\n          },\n          {\n            \"X\": 0.037052981555461884,\n            \"Y\": 0.16871821880340576\n          }\n        ]\n      },\n      \"Id\": \"754353e9-8659-4399-b2a3-f3e7b3354c7e\",\n      \"Text\": \"Application\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.23231506347656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028515920042991638,\n          \"Left\": 0.1365945190191269,\n          \"Top\": 0.13438312709331512,\n          \"Width\": 0.10089217871427536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1365945190191269,\n            \"Y\": 0.13475286960601807\n          },\n          {\n            \"X\": 0.23746702075004578,\n            \"Y\": 0.13438312709331512\n          },\n          {\n            \"X\": 0.23748670518398285,\n            \"Y\": 0.1625344455242157\n          },\n          {\n            \"X\": 0.13660885393619537,\n            \"Y\": 0.16289904713630676\n          }\n        ]\n      },\n      \"Id\": \"66c496f7-4c66-4d36-9cd7-a24d9e8b41e2\",\n      \"Text\": \"Information\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86650085449219,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026687517762184143,\n          \"Left\": 0.0357961505651474,\n          \"Top\": 0.2012334018945694,\n          \"Width\": 0.030052291229367256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0357961505651474,\n            \"Y\": 0.20133991539478302\n          },\n          {\n            \"X\": 0.06583844870328903,\n            \"Y\": 0.2012334018945694\n          },\n          {\n            \"X\": 0.0658484399318695,\n            \"Y\": 0.22781585156917572\n          },\n          {\n            \"X\": 0.035804640501737595,\n            \"Y\": 0.22792091965675354\n          }\n        ]\n      },\n      \"Id\": \"2f6dda22-7d15-4bfd-8a83-88df19c44401\",\n      \"Text\": \"Full\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88324737548828,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02664290741086006,\n          \"Left\": 0.06907708942890167,\n          \"Top\": 0.2011769711971283,\n          \"Width\": 0.05505331605672836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06907708942890167,\n            \"Y\": 0.20137208700180054\n          },\n          {\n            \"X\": 0.12411756068468094,\n            \"Y\": 0.2011769711971283\n          },\n          {\n            \"X\": 0.12413040548563004,\n            \"Y\": 0.22762739658355713\n          },\n          {\n            \"X\": 0.0690871998667717,\n            \"Y\": 0.22781987488269806\n          }\n        ]\n      },\n      \"Id\": \"3a8a3052-4fd5-44dc-972e-10d23ceac298\",\n      \"Text\": \"Name:\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81863403320312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026618508622050285,\n          \"Left\": 0.12751416862010956,\n          \"Top\": 0.20130985975265503,\n          \"Width\": 0.03900553286075592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12751416862010956,\n            \"Y\": 0.20144806802272797\n          },\n          {\n            \"X\": 0.16650472581386566,\n            \"Y\": 0.20130985975265503\n          },\n          {\n            \"X\": 0.16651970148086548,\n            \"Y\": 0.22779203951358795\n          },\n          {\n            \"X\": 0.12752719223499298,\n            \"Y\": 0.22792837023735046\n          }\n        ]\n      },\n      \"Id\": \"a45ca615-d0f2-48ae-849c-65fd31283a3d\",\n      \"Text\": \"Jane\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86481475830078,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026832297444343567,\n          \"Left\": 0.1703924834728241,\n          \"Top\": 0.20122063159942627,\n          \"Width\": 0.034557074308395386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1703924834728241,\n            \"Y\": 0.20134305953979492\n          },\n          {\n            \"X\": 0.20493251085281372,\n            \"Y\": 0.20122063159942627\n          },\n          {\n            \"X\": 0.20494955778121948,\n            \"Y\": 0.2279321700334549\n          },\n          {\n            \"X\": 0.17040778696537018,\n            \"Y\": 0.22805292904376984\n          }\n        ]\n      },\n      \"Id\": \"cb7ccd9f-d2cb-4191-94ae-bdb3b2d492cb\",\n      \"Text\": \"Doe\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8233413696289,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026852482929825783,\n          \"Left\": 0.03307079151272774,\n          \"Top\": 0.2679796814918518,\n          \"Width\": 0.05236922577023506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03307079151272774,\n            \"Y\": 0.2681589424610138\n          },\n          {\n            \"X\": 0.08542900532484055,\n            \"Y\": 0.2679796814918518\n          },\n          {\n            \"X\": 0.0854400172829628,\n            \"Y\": 0.2946554124355316\n          },\n          {\n            \"X\": 0.03307917341589928,\n            \"Y\": 0.29483217000961304\n          }\n        ]\n      },\n      \"Id\": \"16b75b07-e0c6-41c2-bf74-ee90f79fa47a\",\n      \"Text\": \"Phone\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67406463623047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028432920575141907,\n          \"Left\": 0.08975066989660263,\n          \"Top\": 0.2664772570133209,\n          \"Width\": 0.07388392835855484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08975066989660263,\n            \"Y\": 0.2667303681373596\n          },\n          {\n            \"X\": 0.16361881792545319,\n            \"Y\": 0.2664772570133209\n          },\n          {\n            \"X\": 0.16363459825515747,\n            \"Y\": 0.2946608364582062\n          },\n          {\n            \"X\": 0.08976253122091293,\n            \"Y\": 0.294910192489624\n          }\n        ]\n      },\n      \"Id\": \"4a4ba481-0860-4da6-a21c-68a737347797\",\n      \"Text\": \"Number:\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.06182098388672,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04233734682202339,\n          \"Left\": 0.17619331181049347,\n          \"Top\": 0.2607567012310028,\n          \"Width\": 0.17369773983955383\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17619331181049347,\n            \"Y\": 0.2613533139228821\n          },\n          {\n            \"X\": 0.3498530089855194,\n            \"Y\": 0.2607567012310028\n          },\n          {\n            \"X\": 0.3498910367488861,\n            \"Y\": 0.302510529756546\n          },\n          {\n            \"X\": 0.1762176752090454,\n            \"Y\": 0.3030940294265747\n          }\n        ]\n      },\n      \"Id\": \"aa65645c-e369-49e9-b716-3cb871dda30c\",\n      \"Text\": \"555-0100\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81309509277344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026818178594112396,\n          \"Left\": 0.03039049170911312,\n          \"Top\": 0.33547544479370117,\n          \"Width\": 0.049113981425762177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03039049170911312,\n            \"Y\": 0.33563756942749023\n          },\n          {\n            \"X\": 0.07949376851320267,\n            \"Y\": 0.33547544479370117\n          },\n          {\n            \"X\": 0.07950447499752045,\n            \"Y\": 0.36213386058807373\n          },\n          {\n            \"X\": 0.03039873205125332,\n            \"Y\": 0.36229363083839417\n          }\n        ]\n      },\n      \"Id\": \"91673fc7-5942-4a58-a7c6-378629a55f03\",\n      \"Text\": \"Home\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73287200927734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.029157737269997597,\n          \"Left\": 0.08277038484811783,\n          \"Top\": 0.3329416513442993,\n          \"Width\": 0.07383417338132858\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08277038484811783,\n            \"Y\": 0.33318570256233215\n          },\n          {\n            \"X\": 0.15658874809741974,\n            \"Y\": 0.3329416513442993\n          },\n          {\n            \"X\": 0.1566045582294464,\n            \"Y\": 0.3618592321872711\n          },\n          {\n            \"X\": 0.08278217166662216,\n            \"Y\": 0.36209940910339355\n          }\n        ]\n      },\n      \"Id\": \"804cb66f-a26d-4079-b32c-aec7a921eb65\",\n      \"Text\": \"Address:\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.900146484375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04580344259738922,\n          \"Left\": 0.17066560685634613,\n          \"Top\": 0.32869601249694824,\n          \"Width\": 0.061866387724876404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17066560685634613,\n            \"Y\": 0.32890087366104126\n          },\n          {\n            \"X\": 0.23250053822994232,\n            \"Y\": 0.32869601249694824\n          },\n          {\n            \"X\": 0.23253199458122253,\n            \"Y\": 0.37429967522621155\n          },\n          {\n            \"X\": 0.17069174349308014,\n            \"Y\": 0.37449944019317627\n          }\n        ]\n      },\n      \"Id\": \"1a79a69b-1859-4658-a38d-55260ba909e0\",\n      \"Text\": \"123\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84868621826172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05869245156645775,\n          \"Left\": 0.2552854120731354,\n          \"Top\": 0.3284657299518585,\n          \"Width\": 0.0694786012172699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2552854120731354,\n            \"Y\": 0.32869574427604675\n          },\n          {\n            \"X\": 0.3247135281562805,\n            \"Y\": 0.3284657299518585\n          },\n          {\n            \"X\": 0.3247640132904053,\n            \"Y\": 0.3869355022907257\n          },\n          {\n            \"X\": 0.2553282380104065,\n            \"Y\": 0.38715818524360657\n          }\n        ]\n      },\n      \"Id\": \"03c7da6c-aa52-4d57-99c5-8a529e2f0dc6\",\n      \"Text\": \"Any\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.05290222167969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04936469346284866,\n          \"Left\": 0.33844542503356934,\n          \"Top\": 0.3284319341182709,\n          \"Width\": 0.12054824084043503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33844542503356934,\n            \"Y\": 0.3288310468196869\n          },\n          {\n            \"X\": 0.45893898606300354,\n            \"Y\": 0.3284319341182709\n          },\n          {\n            \"X\": 0.45899367332458496,\n            \"Y\": 0.3774082064628601\n          },\n          {\n            \"X\": 0.33848896622657776,\n            \"Y\": 0.37779662013053894\n          }\n        ]\n      },\n      \"Id\": \"d58391e8-3d54-4e63-a226-ba806b71c966\",\n      \"Text\": \"Street,\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71185302734375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.06774534285068512,\n          \"Left\": 0.48186084628105164,\n          \"Top\": 0.32250621914863586,\n          \"Width\": 0.07880660146474838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48186084628105164,\n            \"Y\": 0.3227677643299103\n          },\n          {\n            \"X\": 0.5605791807174683,\n            \"Y\": 0.32250621914863586\n          },\n          {\n            \"X\": 0.5606674551963806,\n            \"Y\": 0.3899996280670166\n          },\n          {\n            \"X\": 0.48193907737731934,\n            \"Y\": 0.3902515769004822\n          }\n        ]\n      },\n      \"Id\": \"293a9d95-66a7-4e83-85a1-d2d2fc943298\",\n      \"Text\": \"Any\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.93196868896484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04890327900648117,\n          \"Left\": 0.5659908056259155,\n          \"Top\": 0.3264840543270111,\n          \"Width\": 0.11057017743587494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5659908056259155,\n            \"Y\": 0.3268502950668335\n          },\n          {\n            \"X\": 0.6764869093894958,\n            \"Y\": 0.3264840543270111\n          },\n          {\n            \"X\": 0.6765609979629517,\n            \"Y\": 0.3750307857990265\n          },\n          {\n            \"X\": 0.5660547614097595,\n            \"Y\": 0.3753873407840729\n          }\n        ]\n      },\n      \"Id\": \"dfc78cc8-5657-414b-b720-bdb58a5cf393\",\n      \"Text\": \"Town.\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91700744628906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04961723834276199,\n          \"Left\": 0.6993381381034851,\n          \"Top\": 0.3175898492336273,\n          \"Width\": 0.08746359497308731\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6993381381034851,\n            \"Y\": 0.3178808093070984\n          },\n          {\n            \"X\": 0.7867162227630615,\n            \"Y\": 0.3175898492336273\n          },\n          {\n            \"X\": 0.7868017554283142,\n            \"Y\": 0.3669239282608032\n          },\n          {\n            \"X\": 0.6994155049324036,\n            \"Y\": 0.3672071099281311\n          }\n        ]\n      },\n      \"Id\": \"e1011aba-4ac7-49d2-950b-4e86dc6a73dc\",\n      \"Text\": \"USA\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85675048828125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.034182507544755936,\n          \"Left\": 0.027816424146294594,\n          \"Top\": 0.40091726183891296,\n          \"Width\": 0.06255742907524109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.027816424146294594,\n            \"Y\": 0.40111634135246277\n          },\n          {\n            \"X\": 0.09035950899124146,\n            \"Y\": 0.40091726183891296\n          },\n          {\n            \"X\": 0.09037385880947113,\n            \"Y\": 0.434904545545578\n          },\n          {\n            \"X\": 0.027826763689517975,\n            \"Y\": 0.4350997805595398\n          }\n        ]\n      },\n      \"Id\": \"bef9165c-0221-4452-b265-8f0de8724b1d\",\n      \"Text\": \"Mailing\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87333679199219,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02909913659095764,\n          \"Left\": 0.09305370599031448,\n          \"Top\": 0.4002628028392792,\n          \"Width\": 0.0741897001862526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09305370599031448,\n            \"Y\": 0.4004989564418793\n          },\n          {\n            \"X\": 0.16722704470157623,\n            \"Y\": 0.4002628028392792\n          },\n          {\n            \"X\": 0.16724340617656708,\n            \"Y\": 0.4291296601295471\n          },\n          {\n            \"X\": 0.09306603670120239,\n            \"Y\": 0.4293619394302368\n          }\n        ]\n      },\n      \"Id\": \"e03c5403-6053-4e2e-bdcf-8223ccb3b3c2\",\n      \"Text\": \"Address:\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91325378417969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.023382503539323807,\n          \"Left\": 0.1706678867340088,\n          \"Top\": 0.40618517994880676,\n          \"Width\": 0.04667229205369949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1706678867340088,\n            \"Y\": 0.40633320808410645\n          },\n          {\n            \"X\": 0.21732482314109802,\n            \"Y\": 0.40618517994880676\n          },\n          {\n            \"X\": 0.21734018623828888,\n            \"Y\": 0.42942163348197937\n          },\n          {\n            \"X\": 0.1706812083721161,\n            \"Y\": 0.42956769466400146\n          }\n        ]\n      },\n      \"Id\": \"dffea4b8-9bef-4513-b4f6-de675713e57a\",\n      \"Text\": \"same\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96176147460938,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.022479824721813202,\n          \"Left\": 0.22073058784008026,\n          \"Top\": 0.40694427490234375,\n          \"Width\": 0.019940447062253952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22073058784008026,\n            \"Y\": 0.40700745582580566\n          },\n          {\n            \"X\": 0.24065522849559784,\n            \"Y\": 0.40694427490234375\n          },\n          {\n            \"X\": 0.2406710386276245,\n            \"Y\": 0.4293617308139801\n          },\n          {\n            \"X\": 0.22074554860591888,\n            \"Y\": 0.42942410707473755\n          }\n        ]\n      },\n      \"Id\": \"1a6506c9-9b8c-4e51-b3d5-5aa819de9ae0\",\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96212768554688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02944747358560562,\n          \"Left\": 0.24381200969219208,\n          \"Top\": 0.401063472032547,\n          \"Width\": 0.053491245955228806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24381200969219208,\n            \"Y\": 0.40123358368873596\n          },\n          {\n            \"X\": 0.2972794771194458,\n            \"Y\": 0.401063472032547\n          },\n          {\n            \"X\": 0.2973032593727112,\n            \"Y\": 0.4303436577320099\n          },\n          {\n            \"X\": 0.24383282661437988,\n            \"Y\": 0.430510938167572\n          }\n        ]\n      },\n      \"Id\": \"b22dd030-5dc4-40f0-857d-c038db070340\",\n      \"Text\": \"above\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71173095703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02539595030248165,\n          \"Left\": 0.021087542176246643,\n          \"Top\": 0.47817063331604004,\n          \"Width\": 0.04270409420132637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.021087542176246643,\n            \"Y\": 0.478300541639328\n          },\n          {\n            \"X\": 0.06378223747015,\n            \"Y\": 0.47817063331604004\n          },\n          {\n            \"X\": 0.06379164010286331,\n            \"Y\": 0.5034385919570923\n          },\n          {\n            \"X\": 0.02109490893781185,\n            \"Y\": 0.503566563129425\n          }\n        ]\n      },\n      \"Id\": \"f31ad762-c84e-4d03-a74c-7293b63af4bf\",\n      \"Text\": \"How\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87238311767578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027101285755634308,\n          \"Left\": 0.06829804927110672,\n          \"Top\": 0.47764742374420166,\n          \"Width\": 0.030405143275856972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06829804927110672,\n            \"Y\": 0.47773993015289307\n          },\n          {\n            \"X\": 0.09869137406349182,\n            \"Y\": 0.47764742374420166\n          },\n          {\n            \"X\": 0.09870319068431854,\n            \"Y\": 0.5046576857566833\n          },\n          {\n            \"X\": 0.06830832362174988,\n            \"Y\": 0.5047487020492554\n          }\n        ]\n      },\n      \"Id\": \"facdadd2-c067-4661-a7c5-ce089800e7f7\",\n      \"Text\": \"did\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78998565673828,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02770698256790638,\n          \"Left\": 0.10283581167459488,\n          \"Top\": 0.4823414087295532,\n          \"Width\": 0.03518933057785034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10283581167459488,\n            \"Y\": 0.48244816064834595\n          },\n          {\n            \"X\": 0.13801102340221405,\n            \"Y\": 0.4823414087295532\n          },\n          {\n            \"X\": 0.13802513480186462,\n            \"Y\": 0.5099433660507202\n          },\n          {\n            \"X\": 0.1028481051325798,\n            \"Y\": 0.5100483894348145\n          }\n        ]\n      },\n      \"Id\": \"1b6482b6-1aed-4105-97d8-389cb8891135\",\n      \"Text\": \"you\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9512710571289,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026075012981891632,\n          \"Left\": 0.14299505949020386,\n          \"Top\": 0.477855920791626,\n          \"Width\": 0.0439160019159317\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14299505949020386,\n            \"Y\": 0.4779894948005676\n          },\n          {\n            \"X\": 0.18689540028572083,\n            \"Y\": 0.477855920791626\n          },\n          {\n            \"X\": 0.18691106140613556,\n            \"Y\": 0.5037994384765625\n          },\n          {\n            \"X\": 0.14300857484340668,\n            \"Y\": 0.503930926322937\n          }\n        ]\n      },\n      \"Id\": \"68cfb6ce-44ca-4644-9a04-26d95d89ab32\",\n      \"Text\": \"hear\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94145965576172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.025567123666405678,\n          \"Left\": 0.19119760394096375,\n          \"Top\": 0.47828245162963867,\n          \"Width\": 0.05539347603917122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19119760394096375,\n            \"Y\": 0.47845086455345154\n          },\n          {\n            \"X\": 0.24657289683818817,\n            \"Y\": 0.47828245162963867\n          },\n          {\n            \"X\": 0.24659107625484467,\n            \"Y\": 0.5036836862564087\n          },\n          {\n            \"X\": 0.19121314585208893,\n            \"Y\": 0.5038495659828186\n          }\n        ]\n      },\n      \"Id\": \"81e1fe65-c022-4fac-8434-6090e07c6c51\",\n      \"Text\": \"about\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85401153564453,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026051532477140427,\n          \"Left\": 0.25074848532676697,\n          \"Top\": 0.4779439866542816,\n          \"Width\": 0.03657621517777443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25074848532676697,\n            \"Y\": 0.4780551791191101\n          },\n          {\n            \"X\": 0.2873041331768036,\n            \"Y\": 0.4779439866542816\n          },\n          {\n            \"X\": 0.2873246967792511,\n            \"Y\": 0.5038860440254211\n          },\n          {\n            \"X\": 0.2507672607898712,\n            \"Y\": 0.5039955377578735\n          }\n        ]\n      },\n      \"Id\": \"dd3dfa36-a322-4db1-9a15-d87d0d1454d1\",\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93846893310547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03124357759952545,\n          \"Left\": 0.2923670709133148,\n          \"Top\": 0.477999746799469,\n          \"Width\": 0.08734964579343796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2923670709133148,\n            \"Y\": 0.47826531529426575\n          },\n          {\n            \"X\": 0.37968677282333374,\n            \"Y\": 0.477999746799469\n          },\n          {\n            \"X\": 0.3797167241573334,\n            \"Y\": 0.5089825987815857\n          },\n          {\n            \"X\": 0.29239192605018616,\n            \"Y\": 0.5092433094978333\n          }\n        ]\n      },\n      \"Id\": \"dd98abd5-4a09-4bd7-b7a1-d693ffeac5fd\",\n      \"Text\": \"position?\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5135269165039,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02688034251332283,\n          \"Left\": 0.04582994058728218,\n          \"Top\": 0.517080545425415,\n          \"Width\": 0.031409621238708496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04582994058728218,\n            \"Y\": 0.5171738862991333\n          },\n          {\n            \"X\": 0.07722891867160797,\n            \"Y\": 0.517080545425415\n          },\n          {\n            \"X\": 0.07723955810070038,\n            \"Y\": 0.5438690781593323\n          },\n          {\n            \"X\": 0.04583899676799774,\n            \"Y\": 0.5439608693122864\n          }\n        ]\n      },\n      \"Id\": \"a2918ed6-a4b8-4d93-a533-e53747d33a47\",\n      \"Text\": \"Job\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95411682128906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026314429938793182,\n          \"Left\": 0.08098618686199188,\n          \"Top\": 0.5168754458427429,\n          \"Width\": 0.028878578916192055\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08098618686199188,\n            \"Y\": 0.5169612169265747\n          },\n          {\n            \"X\": 0.10985273867845535,\n            \"Y\": 0.5168754458427429\n          },\n          {\n            \"X\": 0.10986476391553879,\n            \"Y\": 0.54310542345047\n          },\n          {\n            \"X\": 0.0809967890381813,\n            \"Y\": 0.5431898236274719\n          }\n        ]\n      },\n      \"Id\": \"a0a73412-43db-451b-9004-b34c393ca8cf\",\n      \"Text\": \"fair\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67335510253906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026219643652439117,\n          \"Left\": 0.16717872023582458,\n          \"Top\": 0.5170139670372009,\n          \"Width\": 0.06789419800043106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16717872023582458,\n            \"Y\": 0.5172156691551208\n          },\n          {\n            \"X\": 0.2350548505783081,\n            \"Y\": 0.5170139670372009\n          },\n          {\n            \"X\": 0.23507292568683624,\n            \"Y\": 0.5430351495742798\n          },\n          {\n            \"X\": 0.1671934723854065,\n            \"Y\": 0.5432336330413818\n          }\n        ]\n      },\n      \"Id\": \"60f29f44-b942-4366-ab60-2ef1cd1ba0a1\",\n      \"Text\": \"Website\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85221099853516,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03194388374686241,\n          \"Left\": 0.28990551829338074,\n          \"Top\": 0.516869306564331,\n          \"Width\": 0.079302579164505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28990551829338074,\n            \"Y\": 0.5171048641204834\n          },\n          {\n            \"X\": 0.36917808651924133,\n            \"Y\": 0.516869306564331\n          },\n          {\n            \"X\": 0.36920809745788574,\n            \"Y\": 0.5485821962356567\n          },\n          {\n            \"X\": 0.2899308204650879,\n            \"Y\": 0.5488132238388062\n          }\n        ]\n      },\n      \"Id\": \"21ce35e3-5998-4d2a-a62e-5bf40ee315f6\",\n      \"Text\": \"Company\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96955871582031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.030787885189056396,\n          \"Left\": 0.37411534786224365,\n          \"Top\": 0.5176916718482971,\n          \"Width\": 0.08152957260608673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37411534786224365,\n            \"Y\": 0.5179336667060852\n          },\n          {\n            \"X\": 0.4556110203266144,\n            \"Y\": 0.5176916718482971\n          },\n          {\n            \"X\": 0.4556449055671692,\n            \"Y\": 0.5482420921325684\n          },\n          {\n            \"X\": 0.3741445541381836,\n            \"Y\": 0.5484795570373535\n          }\n        ]\n      },\n      \"Id\": \"0def65d8-044b-4b62-a83e-654f846828de\",\n      \"Text\": \"Employee\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90777587890625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03311140835285187,\n          \"Left\": 0.32932764291763306,\n          \"Top\": 0.5985721945762634,\n          \"Width\": 0.09330662339925766\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32932764291763306,\n            \"Y\": 0.5988354682922363\n          },\n          {\n            \"X\": 0.4225998520851135,\n            \"Y\": 0.5985721945762634\n          },\n          {\n            \"X\": 0.4226342737674713,\n            \"Y\": 0.6314258575439453\n          },\n          {\n            \"X\": 0.32935628294944763,\n            \"Y\": 0.6316835880279541\n          }\n        ]\n      },\n      \"Id\": \"30456f1b-0094-4442-aee5-5c1e4de6c86c\",\n      \"Text\": \"Previous\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93942260742188,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04021628573536873,\n          \"Left\": 0.4284414052963257,\n          \"Top\": 0.5985387563705444,\n          \"Width\": 0.1384814828634262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4284414052963257,\n            \"Y\": 0.5989294052124023\n          },\n          {\n            \"X\": 0.566870391368866,\n            \"Y\": 0.5985387563705444\n          },\n          {\n            \"X\": 0.5669229030609131,\n            \"Y\": 0.638374388217926\n          },\n          {\n            \"X\": 0.4284835755825043,\n            \"Y\": 0.6387550830841064\n          }\n        ]\n      },\n      \"Id\": \"dcbb9cb4-fbb6-4118-bc8f-7069afa2ff82\",\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.89295959472656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04034056514501572,\n          \"Left\": 0.5718014240264893,\n          \"Top\": 0.5972354412078857,\n          \"Width\": 0.08181058615446091\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5718014240264893,\n            \"Y\": 0.5974662899971008\n          },\n          {\n            \"X\": 0.6535525321960449,\n            \"Y\": 0.5972354412078857\n          },\n          {\n            \"X\": 0.653611958026886,\n            \"Y\": 0.6373510956764221\n          },\n          {\n            \"X\": 0.5718546509742737,\n            \"Y\": 0.6375759840011597\n          }\n        ]\n      },\n      \"Id\": \"c6bb9c84-3964-4f1b-8ca0-1fcb03e0e3c3\",\n      \"Text\": \"History\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76671600341797,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02651357650756836,\n          \"Left\": 0.04611624404788017,\n          \"Top\": 0.6793944239616394,\n          \"Width\": 0.03973506763577461\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04611624404788017,\n            \"Y\": 0.6795008182525635\n          },\n          {\n            \"X\": 0.08584039658308029,\n            \"Y\": 0.6793944239616394\n          },\n          {\n            \"X\": 0.08585131168365479,\n            \"Y\": 0.7058035135269165\n          },\n          {\n            \"X\": 0.04612518474459648,\n            \"Y\": 0.7059080004692078\n          }\n        ]\n      },\n      \"Id\": \"a7f8310a-91cf-463e-a1a7-ddc83a029ab7\",\n      \"Text\": \"Start\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88892364501953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.025593489408493042,\n          \"Left\": 0.08970092236995697,\n          \"Top\": 0.6797305345535278,\n          \"Width\": 0.03780138120055199\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08970092236995697,\n            \"Y\": 0.6798316836357117\n          },\n          {\n            \"X\": 0.12748977541923523,\n            \"Y\": 0.6797305345535278\n          },\n          {\n            \"X\": 0.12750230729579926,\n            \"Y\": 0.7052245736122131\n          },\n          {\n            \"X\": 0.08971164375543594,\n            \"Y\": 0.7053239941596985\n          }\n        ]\n      },\n      \"Id\": \"9ad223f1-8f97-40bd-a77b-1b7ffdea2b9f\",\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91822052001953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027414528653025627,\n          \"Left\": 0.15907126665115356,\n          \"Top\": 0.6791040301322937,\n          \"Width\": 0.031166361644864082\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15907126665115356,\n            \"Y\": 0.6791874170303345\n          },\n          {\n            \"X\": 0.19022095203399658,\n            \"Y\": 0.6791040301322937\n          },\n          {\n            \"X\": 0.1902376264333725,\n            \"Y\": 0.7064366340637207\n          },\n          {\n            \"X\": 0.15908633172512054,\n            \"Y\": 0.7065185308456421\n          }\n        ]\n      },\n      \"Id\": \"c418c930-deb1-474d-8342-77262427c18a\",\n      \"Text\": \"End\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87980651855469,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026681311428546906,\n          \"Left\": 0.19431641697883606,\n          \"Top\": 0.6801251173019409,\n          \"Width\": 0.03899107500910759\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19431641697883606,\n            \"Y\": 0.6802294254302979\n          },\n          {\n            \"X\": 0.23328913748264313,\n            \"Y\": 0.6801251173019409\n          },\n          {\n            \"X\": 0.23330749571323395,\n            \"Y\": 0.7067040205001831\n          },\n          {\n            \"X\": 0.19433283805847168,\n            \"Y\": 0.7068064212799072\n          }\n        ]\n      },\n      \"Id\": \"cfb6092b-001f-4944-b15b-b84419ecb48d\",\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96085357666016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.0339934341609478,\n          \"Left\": 0.2740098834037781,\n          \"Top\": 0.6802265048027039,\n          \"Width\": 0.07987475395202637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2740098834037781,\n            \"Y\": 0.6804401278495789\n          },\n          {\n            \"X\": 0.35385364294052124,\n            \"Y\": 0.6802265048027039\n          },\n          {\n            \"X\": 0.35388463735580444,\n            \"Y\": 0.7140112519264221\n          },\n          {\n            \"X\": 0.27403581142425537,\n            \"Y\": 0.7142199873924255\n          }\n        ]\n      },\n      \"Id\": \"586ff9db-4ee0-4d9d-8851-f2c0a1500c14\",\n      \"Text\": \"Employer\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94532775878906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027115963399410248,\n          \"Left\": 0.35798874497413635,\n          \"Top\": 0.6824736595153809,\n          \"Width\": 0.04874282330274582\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35798874497413635,\n            \"Y\": 0.6826037764549255\n          },\n          {\n            \"X\": 0.4067041277885437,\n            \"Y\": 0.6824736595153809\n          },\n          {\n            \"X\": 0.40673157572746277,\n            \"Y\": 0.7094618678092957\n          },\n          {\n            \"X\": 0.35801371932029724,\n            \"Y\": 0.7095896005630493\n          }\n        ]\n      },\n      \"Id\": \"bdc77bb1-ed0f-4b7e-9e1e-d84eb921edae\",\n      \"Text\": \"Name\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81668853759766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027061281725764275,\n          \"Left\": 0.5072799921035767,\n          \"Top\": 0.6831418871879578,\n          \"Width\": 0.06761625409126282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5072799921035767,\n            \"Y\": 0.6833221912384033\n          },\n          {\n            \"X\": 0.5748603940010071,\n            \"Y\": 0.6831418871879578\n          },\n          {\n            \"X\": 0.5748962759971619,\n            \"Y\": 0.7100260853767395\n          },\n          {\n            \"X\": 0.5073124170303345,\n            \"Y\": 0.7102031111717224\n          }\n        ]\n      },\n      \"Id\": \"43f1bca6-5717-4930-88f0-11785c0257f6\",\n      \"Text\": \"Position\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9756851196289,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028224188834428787,\n          \"Left\": 0.5797914266586304,\n          \"Top\": 0.6816064119338989,\n          \"Width\": 0.038825199007987976\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5797914266586304,\n            \"Y\": 0.6817100048065186\n          },\n          {\n            \"X\": 0.6185768246650696,\n            \"Y\": 0.6816064119338989\n          },\n          {\n            \"X\": 0.6186166405677795,\n            \"Y\": 0.7097289562225342\n          },\n          {\n            \"X\": 0.579829216003418,\n            \"Y\": 0.7098305821418762\n          }\n        ]\n      },\n      \"Id\": \"9cfe7c13-07d6-4e0f-a5db-86c0efede9d1\",\n      \"Text\": \"Held\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95054626464844,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027643967419862747,\n          \"Left\": 0.7476232647895813,\n          \"Top\": 0.6803106069564819,\n          \"Width\": 0.06410197168588638\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7476232647895813,\n            \"Y\": 0.6804817914962769\n          },\n          {\n            \"X\": 0.8116763830184937,\n            \"Y\": 0.6803106069564819\n          },\n          {\n            \"X\": 0.8117252588272095,\n            \"Y\": 0.7077865600585938\n          },\n          {\n            \"X\": 0.7476688623428345,\n            \"Y\": 0.7079545855522156\n          }\n        ]\n      },\n      \"Id\": \"4568cab5-a23e-4c73-a4c6-3c0238ab62b5\",\n      \"Text\": \"Reason\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9928970336914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02863931842148304,\n          \"Left\": 0.8154100775718689,\n          \"Top\": 0.6788422465324402,\n          \"Width\": 0.027668066322803497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8154100775718689,\n            \"Y\": 0.6789161562919617\n          },\n          {\n            \"X\": 0.8430256247520447,\n            \"Y\": 0.6788422465324402\n          },\n          {\n            \"X\": 0.8430781364440918,\n            \"Y\": 0.707409143447876\n          },\n          {\n            \"X\": 0.8154610991477966,\n            \"Y\": 0.7074815630912781\n          }\n        ]\n      },\n      \"Id\": \"1a8752e6-7f9c-4f94-8710-2514ba044f2b\",\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9508285522461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03520220145583153,\n          \"Left\": 0.8466956615447998,\n          \"Top\": 0.6783403754234314,\n          \"Width\": 0.06375822424888611\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8466956615447998,\n            \"Y\": 0.678510844707489\n          },\n          {\n            \"X\": 0.910385012626648,\n            \"Y\": 0.6783403754234314\n          },\n          {\n            \"X\": 0.9104538559913635,\n            \"Y\": 0.7133762240409851\n          },\n          {\n            \"X\": 0.8467602729797363,\n            \"Y\": 0.7135425806045532\n          }\n        ]\n      },\n      \"Id\": \"e6e97653-806c-443f-8583-4a0978604ddf\",\n      \"Text\": \"leaving\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9541015625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03305971622467041,\n          \"Left\": 0.04384903237223625,\n          \"Top\": 0.7485097050666809,\n          \"Width\": 0.08643797785043716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04384903237223625,\n            \"Y\": 0.7487303018569946\n          },\n          {\n            \"X\": 0.13027068972587585,\n            \"Y\": 0.7485097050666809\n          },\n          {\n            \"X\": 0.13028700649738312,\n            \"Y\": 0.7813540101051331\n          },\n          {\n            \"X\": 0.04386000707745552,\n            \"Y\": 0.7815694212913513\n          }\n        ]\n      },\n      \"Id\": \"5443d9c1-df64-46da-b185-9a900d27eff5\",\n      \"Text\": \"1/15/2009\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95281219482422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03551780804991722,\n          \"Left\": 0.1563645303249359,\n          \"Top\": 0.7485414147377014,\n          \"Width\": 0.08760681003332138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1563645303249359,\n            \"Y\": 0.7487648725509644\n          },\n          {\n            \"X\": 0.24394625425338745,\n            \"Y\": 0.7485414147377014\n          },\n          {\n            \"X\": 0.2439713478088379,\n            \"Y\": 0.7838413119316101\n          },\n          {\n            \"X\": 0.15638379752635956,\n            \"Y\": 0.7840591669082642\n          }\n        ]\n      },\n      \"Id\": \"39254f98-d72b-4a29-a852-7aa49ea5191f\",\n      \"Text\": \"6/30/2011\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97894287109375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03298451378941536,\n          \"Left\": 0.27168336510658264,\n          \"Top\": 0.7539932727813721,\n          \"Width\": 0.03365083783864975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27168336510658264,\n            \"Y\": 0.75407874584198\n          },\n          {\n            \"X\": 0.305307000875473,\n            \"Y\": 0.7539932727813721\n          },\n          {\n            \"X\": 0.3053341805934906,\n            \"Y\": 0.7868943214416504\n          },\n          {\n            \"X\": 0.2717084586620331,\n            \"Y\": 0.7869777679443359\n          }\n        ]\n      },\n      \"Id\": \"87f211c8-dfc7-465d-9707-73c520dce643\",\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94962310791016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.033766008913517,\n          \"Left\": 0.30875512957572937,\n          \"Top\": 0.754458487033844,\n          \"Width\": 0.07954100519418716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30875512957572937,\n            \"Y\": 0.7546604871749878\n          },\n          {\n            \"X\": 0.38826316595077515,\n            \"Y\": 0.754458487033844\n          },\n          {\n            \"X\": 0.3882961571216583,\n            \"Y\": 0.7880273461341858\n          },\n          {\n            \"X\": 0.30878308415412903,\n            \"Y\": 0.7882245182991028\n          }\n        ]\n      },\n      \"Id\": \"f8f71feb-6ee9-449f-9623-fbaf8aa6a2d7\",\n      \"Text\": \"Company\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72539520263672,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02722465991973877,\n          \"Left\": 0.5051590800285339,\n          \"Top\": 0.7565333247184753,\n          \"Width\": 0.07757706195116043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5051590800285339,\n            \"Y\": 0.7567299604415894\n          },\n          {\n            \"X\": 0.5826996564865112,\n            \"Y\": 0.7565333247184753\n          },\n          {\n            \"X\": 0.5827361345291138,\n            \"Y\": 0.7835651636123657\n          },\n          {\n            \"X\": 0.5051915645599365,\n            \"Y\": 0.7837579846382141\n          }\n        ]\n      },\n      \"Id\": \"1ea112fe-3e6b-41f6-9006-eda5e55b5c30\",\n      \"Text\": \"Assistant\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94187927246094,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027770088985562325,\n          \"Left\": 0.5864558219909668,\n          \"Top\": 0.7555969953536987,\n          \"Width\": 0.04953498765826225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5864558219909668,\n            \"Y\": 0.7557225823402405\n          },\n          {\n            \"X\": 0.6359507441520691,\n            \"Y\": 0.7555969953536987\n          },\n          {\n            \"X\": 0.6359907984733582,\n            \"Y\": 0.7832440137863159\n          },\n          {\n            \"X\": 0.5864932537078857,\n            \"Y\": 0.7833670973777771\n          }\n        ]\n      },\n      \"Id\": \"fc337804-d0a7-4606-b5bd-1ac00a5462d2\",\n      \"Text\": \"baker\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9616470336914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02928374707698822,\n          \"Left\": 0.7473230361938477,\n          \"Top\": 0.7534971833229065,\n          \"Width\": 0.08477663993835449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7473230361938477,\n            \"Y\": 0.7537123560905457\n          },\n          {\n            \"X\": 0.8320468664169312,\n            \"Y\": 0.7534971833229065\n          },\n          {\n            \"X\": 0.8320996761322021,\n            \"Y\": 0.7825701236724854\n          },\n          {\n            \"X\": 0.747371256351471,\n            \"Y\": 0.7827808856964111\n          }\n        ]\n      },\n      \"Id\": \"3d0354ee-fe31-45c3-933b-07cab5befc7a\",\n      \"Text\": \"relocated\",\n      \"TextType\": \"PRINTED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57495880126953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.06203335523605347,\n          \"Left\": 0.03900713473558426,\n          \"Top\": 0.82148677110672,\n          \"Width\": 0.09563203901052475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03900713473558426,\n            \"Y\": 0.821718156337738\n          },\n          {\n            \"X\": 0.1346079558134079,\n            \"Y\": 0.82148677110672\n          },\n          {\n            \"X\": 0.134639173746109,\n            \"Y\": 0.8832994699478149\n          },\n          {\n            \"X\": 0.039027221500873566,\n            \"Y\": 0.8835201263427734\n          }\n        ]\n      },\n      \"Id\": \"7b51de82-de8b-474d-ab24-a9f1dcd32dc5\",\n      \"Text\": \"7/1/2011\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67644500732422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05560161545872688,\n          \"Left\": 0.1505906730890274,\n          \"Top\": 0.8263616561889648,\n          \"Width\": 0.10654087364673615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1505906730890274,\n            \"Y\": 0.8266183733940125\n          },\n          {\n            \"X\": 0.25709083676338196,\n            \"Y\": 0.8263616561889648\n          },\n          {\n            \"X\": 0.25713154673576355,\n            \"Y\": 0.8817172050476074\n          },\n          {\n            \"X\": 0.15062028169631958,\n            \"Y\": 0.8819632530212402\n          }\n        ]\n      },\n      \"Id\": \"8495e908-f3ca-435f-bec1-fff97ba5e22c\",\n      \"Text\": \"8/10/2013\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94312286376953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.048644453287124634,\n          \"Left\": 0.2774198353290558,\n          \"Top\": 0.8403841257095337,\n          \"Width\": 0.11949296295642853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2774198353290558,\n            \"Y\": 0.8406689167022705\n          },\n          {\n            \"X\": 0.39686450362205505,\n            \"Y\": 0.8403841257095337\n          },\n          {\n            \"X\": 0.3969127833843231,\n            \"Y\": 0.8887541890144348\n          },\n          {\n            \"X\": 0.27745723724365234,\n            \"Y\": 0.8890285491943359\n          }\n        ]\n      },\n      \"Id\": \"28c043b7-888b-4413-bd64-94fb120bd496\",\n      \"Text\": \"Example\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.43174743652344,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04638683795928955,\n          \"Left\": 0.4105353057384491,\n          \"Top\": 0.8435940742492676,\n          \"Width\": 0.07443659752607346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4105353057384491,\n            \"Y\": 0.8437709808349609\n          },\n          {\n            \"X\": 0.48491811752319336,\n            \"Y\": 0.8435940742492676\n          },\n          {\n            \"X\": 0.48497191071510315,\n            \"Y\": 0.8898102045059204\n          },\n          {\n            \"X\": 0.41058263182640076,\n            \"Y\": 0.8899809122085571\n          }\n        ]\n      },\n      \"Id\": \"fed10741-db8d-4c36-a7ce-6818f29c267c\",\n      \"Text\": \"Corp.\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57794189453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.0517936609685421,\n          \"Left\": 0.5172786712646484,\n          \"Top\": 0.8347353339195251,\n          \"Width\": 0.09741675853729248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172786712646484,\n            \"Y\": 0.8349683284759521\n          },\n          {\n            \"X\": 0.6146228313446045,\n            \"Y\": 0.8347353339195251\n          },\n          {\n            \"X\": 0.6146954298019409,\n            \"Y\": 0.886305034160614\n          },\n          {\n            \"X\": 0.5173418521881104,\n            \"Y\": 0.8865289688110352\n          }\n        ]\n      },\n      \"Id\": \"65b160b8-c062-4c37-9e3a-e15c3914bed7\",\n      \"Text\": \"Baker\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95509338378906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05336044356226921,\n          \"Left\": 0.7483310103416443,\n          \"Top\": 0.8390524983406067,\n          \"Width\": 0.10480593144893646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7483310103416443,\n            \"Y\": 0.8393022418022156\n          },\n          {\n            \"X\": 0.8530383110046387,\n            \"Y\": 0.8390524983406067\n          },\n          {\n            \"X\": 0.8531369566917419,\n            \"Y\": 0.8921732902526855\n          },\n          {\n            \"X\": 0.7484191656112671,\n            \"Y\": 0.8924129605293274\n          }\n        ]\n      },\n      \"Id\": \"a0a0f2a0-e6bd-4c63-9980-55bd017b4451\",\n      \"Text\": \"better\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 80.3971176147461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05290023609995842,\n          \"Left\": 0.8613425493240356,\n          \"Top\": 0.8477305173873901,\n          \"Width\": 0.07248876243829727\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8613425493240356,\n            \"Y\": 0.8479019403457642\n          },\n          {\n            \"X\": 0.9337254166603088,\n            \"Y\": 0.8477305173873901\n          },\n          {\n            \"X\": 0.9338313341140747,\n            \"Y\": 0.9004661440849304\n          },\n          {\n            \"X\": 0.8614412546157837,\n            \"Y\": 0.9006307125091553\n          }\n        ]\n      },\n      \"Id\": \"15dbd706-fecd-437e-b7da-c0a892387bb8\",\n      \"Text\": \"opp.\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16897583007812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.047877535223960876,\n          \"Left\": 0.03930141404271126,\n          \"Top\": 0.896701455116272,\n          \"Width\": 0.10153479129076004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03930141404271126,\n            \"Y\": 0.8969332575798035\n          },\n          {\n            \"X\": 0.14081159234046936,\n            \"Y\": 0.896701455116272\n          },\n          {\n            \"X\": 0.1408362090587616,\n            \"Y\": 0.9443559646606445\n          },\n          {\n            \"X\": 0.03931692615151405,\n            \"Y\": 0.944579005241394\n          }\n        ]\n      },\n      \"Id\": \"0a22b4f9-4d1e-4f7c-98f7-b9fb37e36743\",\n      \"Text\": \"8/15/2013\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96135711669922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.060170192271471024,\n          \"Left\": 0.15297278761863708,\n          \"Top\": 0.8883068561553955,\n          \"Width\": 0.09696198254823685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15297278761863708,\n            \"Y\": 0.8885295987129211\n          },\n          {\n            \"X\": 0.2498914897441864,\n            \"Y\": 0.8883068561553955\n          },\n          {\n            \"X\": 0.24993476271629333,\n            \"Y\": 0.9482647776603699\n          },\n          {\n            \"X\": 0.15300512313842773,\n            \"Y\": 0.948477029800415\n          }\n        ]\n      },\n      \"Id\": \"d81aff01-b358-49fe-8a5f-643688ab63fa\",\n      \"Text\": \"Present\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27928924560547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07486114650964737,\n          \"Left\": 0.26840007305145264,\n          \"Top\": 0.9053831100463867,\n          \"Width\": 0.18674123287200928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26840007305145264,\n            \"Y\": 0.9058061838150024\n          },\n          {\n            \"X\": 0.4550588130950928,\n            \"Y\": 0.9053831100463867\n          },\n          {\n            \"X\": 0.4551413059234619,\n            \"Y\": 0.9798463582992554\n          },\n          {\n            \"X\": 0.268456369638443,\n            \"Y\": 0.9802442789077759\n          }\n        ]\n      },\n      \"Id\": \"06927ec1-2635-45d3-b880-f60d11deaf14\",\n      \"Text\": \"AnyCompany\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82585144042969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04781681299209595,\n          \"Left\": 0.5009587407112122,\n          \"Top\": 0.9071252942085266,\n          \"Width\": 0.07200248539447784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009587407112122,\n            \"Y\": 0.9072880744934082\n          },\n          {\n            \"X\": 0.5728978514671326,\n            \"Y\": 0.9071252942085266\n          },\n          {\n            \"X\": 0.5729612112045288,\n            \"Y\": 0.9547855257987976\n          },\n          {\n            \"X\": 0.5010156035423279,\n            \"Y\": 0.9549421072006226\n          }\n        ]\n      },\n      \"Id\": \"00ddc39a-f7cd-48ad-9530-6290724d5360\",\n      \"Text\": \"head\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.6129379272461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.049035295844078064,\n          \"Left\": 0.592439591884613,\n          \"Top\": 0.9052125215530396,\n          \"Width\": 0.09866434335708618\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.592439591884613,\n            \"Y\": 0.9054359197616577\n          },\n          {\n            \"X\": 0.6910281777381897,\n            \"Y\": 0.9052125215530396\n          },\n          {\n            \"X\": 0.6911039352416992,\n            \"Y\": 0.9540331363677979\n          },\n          {\n            \"X\": 0.5925062894821167,\n            \"Y\": 0.9542478322982788\n          }\n        ]\n      },\n      \"Id\": \"65cdfc55-894e-47f0-88d7-13f90d6486fd\",\n      \"Text\": \"baker\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.76941680908203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05880872160196304,\n          \"Left\": 0.7465345859527588,\n          \"Top\": 0.9068020582199097,\n          \"Width\": 0.07966095209121704\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7465345859527588,\n            \"Y\": 0.9069820642471313\n          },\n          {\n            \"X\": 0.82608962059021,\n            \"Y\": 0.9068020582199097\n          },\n          {\n            \"X\": 0.8261955380439758,\n            \"Y\": 0.9654392600059509\n          },\n          {\n            \"X\": 0.7466316223144531,\n            \"Y\": 0.9656108021736145\n          }\n        ]\n      },\n      \"Id\": \"fdcc65d9-2d06-47ee-a36e-2ead1029d7a9\",\n      \"Text\": \"N/A,\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 81.38719177246094,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.039830341935157776,\n          \"Left\": 0.842194676399231,\n          \"Top\": 0.9195123314857483,\n          \"Width\": 0.12491438537836075\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.842194676399231,\n            \"Y\": 0.9197918176651001\n          },\n          {\n            \"X\": 0.9670271277427673,\n            \"Y\": 0.9195123314857483\n          },\n          {\n            \"X\": 0.9671090841293335,\n            \"Y\": 0.9590721130371094\n          },\n          {\n            \"X\": 0.8422672748565674,\n            \"Y\": 0.9593426585197449\n          }\n        ]\n      },\n      \"Id\": \"1d02d2fc-d4e2-4593-b690-bf57e326aecf\",\n      \"Text\": \"current\",\n      \"TextType\": \"HANDWRITING\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.97869110107422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03303451091051102,\n          \"Left\": 0.26329222321510315,\n          \"Top\": 0.514335572719574,\n          \"Width\": 0.02022305317223072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26329222321510315,\n            \"Y\": 0.5143957138061523\n          },\n          {\n            \"X\": 0.2834893763065338,\n            \"Y\": 0.514335572719574\n          },\n          {\n            \"X\": 0.2835152745246887,\n            \"Y\": 0.5473111867904663\n          },\n          {\n            \"X\": 0.2633168697357178,\n            \"Y\": 0.5473701357841492\n          }\n        ]\n      },\n      \"Id\": \"e6f55d8a-eaed-467d-9235-92d869bb71df\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.96955108642578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03366800397634506,\n          \"Left\": 0.14007286727428436,\n          \"Top\": 0.5140250325202942,\n          \"Width\": 0.020504256710410118\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14007286727428436,\n            \"Y\": 0.5140860080718994\n          },\n          {\n            \"X\": 0.16055850684642792,\n            \"Y\": 0.5140250325202942\n          },\n          {\n            \"X\": 0.16057711839675903,\n            \"Y\": 0.5476332902908325\n          },\n          {\n            \"X\": 0.1400901973247528,\n            \"Y\": 0.5476930737495422\n          }\n        ]\n      },\n      \"Id\": \"e678f465-1b11-44de-80f7-843d41a632ba\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.95822143554688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.036392346024513245,\n          \"Left\": 0.020826969295740128,\n          \"Top\": 0.5122878551483154,\n          \"Width\": 0.02239343523979187\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.020826969295740128,\n            \"Y\": 0.5123545527458191\n          },\n          {\n            \"X\": 0.043208301067352295,\n            \"Y\": 0.5122878551483154\n          },\n          {\n            \"X\": 0.043220404535532,\n            \"Y\": 0.5486149191856384\n          },\n          {\n            \"X\": 0.020837541669607162,\n            \"Y\": 0.5486801862716675\n          }\n        ]\n      },\n      \"Id\": \"f3ed1933-5f2f-4b46-8645-89647ecd7b3a\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.609375,\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.3002489507198334,\n          \"Left\": 0.03182299807667732,\n          \"Top\": 0.6669639348983765,\n          \"Width\": 0.9357935786247253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03182299807667732,\n            \"Y\": 0.6694852709770203\n          },\n          {\n            \"X\": 0.9669986963272095,\n            \"Y\": 0.6669639348983765\n          },\n          {\n            \"X\": 0.9676165580749512,\n            \"Y\": 0.9651955366134644\n          },\n          {\n            \"X\": 0.031915780156850815,\n            \"Y\": 0.9672129154205322\n          }\n        ]\n      },\n      \"Id\": \"f8e3cb3c-1988-4390-b1c2-b75bfe5efa21\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"725707fa-2850-4d01-a341-9e2b37cd206a\",\n            \"f897bbb7-dfc4-414e-bc06-13fd23451d86\",\n            \"1326cf36-287c-4d6f-878b-370fa001b5d3\",\n            \"84954ba4-d72f-40d7-b4a9-ae15b7a7c345\",\n            \"7ba58125-f5d5-46a1-9624-c96bac8b5302\",\n            \"be4cc8df-e5e4-4c52-9812-7ddddb0f9a5d\",\n            \"355e44e7-f4a3-4eeb-a90d-30a99b697dad\",\n            \"4f06ae30-4b54-4ad8-b39c-20d3b2a6a628\",\n            \"8b395c9e-cc98-457b-ad79-c5a6ddfba43a\",\n            \"aa34ed06-ed70-484f-8d71-5ae561185455\",\n            \"e89e1997-01a2-4b23-8ecf-b82fa324a214\",\n            \"ad397b1e-25b1-40f6-95c1-7a764db3a939\",\n            \"4e482e00-b25e-434a-a018-8c81cc80d2b1\",\n            \"9a57c8e6-cf4d-4e75-b865-95de42fa3e84\",\n            \"8492bcf2-0fd1-41c5-935b-3ae67bff4bf0\",\n            \"f13cdf46-cb65-4114-aaf3-8034b8754049\",\n            \"61fd4a5b-7147-4a1f-96db-3c7ad1349afd\",\n            \"05c8005f-0331-45e9-82e3-88ec5938927b\",\n            \"6049b301-42ca-461e-baba-bb04a33b1f72\",\n            \"744e4bb0-e5dd-4736-bef2-49d2ca06fb16\"\n          ],\n          \"Type\": \"CHILD\"\n        },\n        {\n          \"Ids\": [\n            \"b151f51b-da04-4e80-a89d-3079d7fdaa69\"\n          ],\n          \"Type\": \"TABLE_TITLE\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 1,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 80.810546875,\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07867801934480667,\n          \"Left\": 0.03182299807667732,\n          \"Top\": 0.6691778302192688,\n          \"Width\": 0.11406401544809341\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03182299807667732,\n            \"Y\": 0.6694852709770203\n          },\n          {\n            \"X\": 0.14584575593471527,\n            \"Y\": 0.6691778302192688\n          },\n          {\n            \"X\": 0.14588701725006104,\n            \"Y\": 0.7475646138191223\n          },\n          {\n            \"X\": 0.03184742107987404,\n            \"Y\": 0.7478559017181396\n          }\n        ]\n      },\n      \"Id\": \"725707fa-2850-4d01-a341-9e2b37cd206a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a7f8310a-91cf-463e-a1a7-ddc83a029ab7\",\n            \"9ad223f1-8f97-40bd-a77b-1b7ffdea2b9f\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 1,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 2,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 75.390625,\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07870114594697952,\n          \"Left\": 0.14584575593471527,\n          \"Top\": 0.6688634753227234,\n          \"Width\": 0.11666126549243927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14584575593471527,\n            \"Y\": 0.6691778302192688\n          },\n          {\n            \"X\": 0.26244857907295227,\n            \"Y\": 0.6688634753227234\n          },\n          {\n            \"X\": 0.26250702142715454,\n            \"Y\": 0.7472667694091797\n          },\n          {\n            \"X\": 0.14588701725006104,\n            \"Y\": 0.7475646138191223\n          }\n        ]\n      },\n      \"Id\": \"f897bbb7-dfc4-414e-bc06-13fd23451d86\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"c418c930-deb1-474d-8342-77262427c18a\",\n            \"cfb6092b-001f-4944-b15b-b84419ecb48d\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 1,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 3,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 87.158203125,\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07903509587049484,\n          \"Left\": 0.26244857907295227,\n          \"Top\": 0.668231725692749,\n          \"Width\": 0.2344275861978531\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26244857907295227,\n            \"Y\": 0.6688634753227234\n          },\n          {\n            \"X\": 0.4967830777168274,\n            \"Y\": 0.668231725692749\n          },\n          {\n            \"X\": 0.49687615036964417,\n            \"Y\": 0.7466682195663452\n          },\n          {\n            \"X\": 0.26250702142715454,\n            \"Y\": 0.7472667694091797\n          }\n        ]\n      },\n      \"Id\": \"1326cf36-287c-4d6f-878b-370fa001b5d3\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"586ff9db-4ee0-4d9d-8851-f2c0a1500c14\",\n            \"bdc77bb1-ed0f-4b7e-9e1e-d84eb921edae\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 1,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 4,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 86.962890625,\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07908473908901215,\n          \"Left\": 0.4967830777168274,\n          \"Top\": 0.6675834655761719,\n          \"Width\": 0.24055281281471252\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4967830777168274,\n            \"Y\": 0.668231725692749\n          },\n          {\n            \"X\": 0.7372072339057922,\n            \"Y\": 0.6675834655761719\n          },\n          {\n            \"X\": 0.7373358607292175,\n            \"Y\": 0.7460541129112244\n          },\n          {\n            \"X\": 0.49687615036964417,\n            \"Y\": 0.7466682195663452\n          }\n        ]\n      },\n      \"Id\": \"84954ba4-d72f-40d7-b4a9-ae15b7a7c345\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"43f1bca6-5717-4930-88f0-11785c0257f6\",\n            \"9cfe7c13-07d6-4e0f-a5db-86c0efede9d1\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 1,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 5,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 87.6953125,\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.0790901631116867,\n          \"Left\": 0.7372072339057922,\n          \"Top\": 0.6669639348983765,\n          \"Width\": 0.2299540936946869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7372072339057922,\n            \"Y\": 0.6675834655761719\n          },\n          {\n            \"X\": 0.9669986963272095,\n            \"Y\": 0.6669639348983765\n          },\n          {\n            \"X\": 0.9671613574028015,\n            \"Y\": 0.7454671859741211\n          },\n          {\n            \"X\": 0.7373358607292175,\n            \"Y\": 0.7460541129112244\n          }\n        ]\n      },\n      \"Id\": \"7ba58125-f5d5-46a1-9624-c96bac8b5302\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"4568cab5-a23e-4c73-a4c6-3c0238ab62b5\",\n            \"1a8752e6-7f9c-4f94-8710-2514ba044f2b\",\n            \"e6e97653-806c-443f-8583-4a0978604ddf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 1,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 1,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 80.322265625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07405754178762436,\n          \"Left\": 0.03184742107987404,\n          \"Top\": 0.7475646138191223,\n          \"Width\": 0.11407841742038727\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03184742107987404,\n            \"Y\": 0.7478559017181396\n          },\n          {\n            \"X\": 0.14588701725006104,\n            \"Y\": 0.7475646138191223\n          },\n          {\n            \"X\": 0.145925834774971,\n            \"Y\": 0.8213461637496948\n          },\n          {\n            \"X\": 0.03187040984630585,\n            \"Y\": 0.8216221928596497\n          }\n        ]\n      },\n      \"Id\": \"be4cc8df-e5e4-4c52-9812-7ddddb0f9a5d\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"5443d9c1-df64-46da-b185-9a900d27eff5\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 2,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 2,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 74.951171875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07407935708761215,\n          \"Left\": 0.14588701725006104,\n          \"Top\": 0.7472667694091797,\n          \"Width\": 0.11667504906654358\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14588701725006104,\n            \"Y\": 0.7475646138191223\n          },\n          {\n            \"X\": 0.26250702142715454,\n            \"Y\": 0.7472667694091797\n          },\n          {\n            \"X\": 0.2625620663166046,\n            \"Y\": 0.8210638761520386\n          },\n          {\n            \"X\": 0.145925834774971,\n            \"Y\": 0.8213461637496948\n          }\n        ]\n      },\n      \"Id\": \"355e44e7-f4a3-4eeb-a90d-30a99b697dad\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"39254f98-d72b-4a29-a852-7aa49ea5191f\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 2,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 3,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 86.669921875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07439564168453217,\n          \"Left\": 0.26250702142715454,\n          \"Top\": 0.7466682195663452,\n          \"Width\": 0.23445674777030945\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26250702142715454,\n            \"Y\": 0.7472667694091797\n          },\n          {\n            \"X\": 0.49687615036964417,\n            \"Y\": 0.7466682195663452\n          },\n          {\n            \"X\": 0.496963769197464,\n            \"Y\": 0.8204966187477112\n          },\n          {\n            \"X\": 0.2625620663166046,\n            \"Y\": 0.8210638761520386\n          }\n        ]\n      },\n      \"Id\": \"4f06ae30-4b54-4ad8-b39c-20d3b2a6a628\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"87f211c8-dfc7-465d-9707-73c520dce643\",\n            \"f8f71feb-6ee9-449f-9623-fbaf8aa6a2d7\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 2,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 4,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 86.474609375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07444248348474503,\n          \"Left\": 0.49687615036964417,\n          \"Top\": 0.7460541129112244,\n          \"Width\": 0.24058079719543457\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49687615036964417,\n            \"Y\": 0.7466682195663452\n          },\n          {\n            \"X\": 0.7373358607292175,\n            \"Y\": 0.7460541129112244\n          },\n          {\n            \"X\": 0.7374569773674011,\n            \"Y\": 0.8199145793914795\n          },\n          {\n            \"X\": 0.496963769197464,\n            \"Y\": 0.8204966187477112\n          }\n        ]\n      },\n      \"Id\": \"8b395c9e-cc98-457b-ad79-c5a6ddfba43a\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"1ea112fe-3e6b-41f6-9006-eda5e55b5c30\",\n            \"fc337804-d0a7-4606-b5bd-1ac00a5462d2\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 2,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 5,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 87.20703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07444741576910019,\n          \"Left\": 0.7373358607292175,\n          \"Top\": 0.7454671859741211,\n          \"Width\": 0.2299785315990448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7373358607292175,\n            \"Y\": 0.7460541129112244\n          },\n          {\n            \"X\": 0.9671613574028015,\n            \"Y\": 0.7454671859741211\n          },\n          {\n            \"X\": 0.9673144221305847,\n            \"Y\": 0.8193582892417908\n          },\n          {\n            \"X\": 0.7374569773674011,\n            \"Y\": 0.8199145793914795\n          }\n        ]\n      },\n      \"Id\": \"aa34ed06-ed70-484f-8d71-5ae561185455\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"3d0354ee-fe31-45c3-933b-07cab5befc7a\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 2,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 1,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 76.953125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07078295201063156,\n          \"Left\": 0.03187040984630585,\n          \"Top\": 0.8213461637496948,\n          \"Width\": 0.11409254372119904\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03187040984630585,\n            \"Y\": 0.8216221928596497\n          },\n          {\n            \"X\": 0.145925834774971,\n            \"Y\": 0.8213461637496948\n          },\n          {\n            \"X\": 0.14596295356750488,\n            \"Y\": 0.8918676376342773\n          },\n          {\n            \"X\": 0.031892381608486176,\n            \"Y\": 0.892129123210907\n          }\n        ]\n      },\n      \"Id\": \"e89e1997-01a2-4b23-8ecf-b82fa324a214\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"7b51de82-de8b-474d-ab24-a9f1dcd32dc5\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 3,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 2,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 71.77734375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07080375403165817,\n          \"Left\": 0.145925834774971,\n          \"Top\": 0.8210638761520386,\n          \"Width\": 0.1166888177394867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.145925834774971,\n            \"Y\": 0.8213461637496948\n          },\n          {\n            \"X\": 0.2625620663166046,\n            \"Y\": 0.8210638761520386\n          },\n          {\n            \"X\": 0.2626146674156189,\n            \"Y\": 0.8916002511978149\n          },\n          {\n            \"X\": 0.14596295356750488,\n            \"Y\": 0.8918676376342773\n          }\n        ]\n      },\n      \"Id\": \"ad397b1e-25b1-40f6-95c1-7a764db3a939\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"8495e908-f3ca-435f-bec1-fff97ba5e22c\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 3,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 3,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 82.958984375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07110363990068436,\n          \"Left\": 0.2625620663166046,\n          \"Top\": 0.8204966187477112,\n          \"Width\": 0.2344854474067688\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2625620663166046,\n            \"Y\": 0.8210638761520386\n          },\n          {\n            \"X\": 0.496963769197464,\n            \"Y\": 0.8204966187477112\n          },\n          {\n            \"X\": 0.4970475137233734,\n            \"Y\": 0.89106285572052\n          },\n          {\n            \"X\": 0.2626146674156189,\n            \"Y\": 0.8916002511978149\n          }\n        ]\n      },\n      \"Id\": \"4e482e00-b25e-434a-a018-8c81cc80d2b1\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"28c043b7-888b-4413-bd64-94fb120bd496\",\n            \"fed10741-db8d-4c36-a7ce-6818f29c267c\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 3,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 4,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 82.8125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07114829123020172,\n          \"Left\": 0.496963769197464,\n          \"Top\": 0.8199145793914795,\n          \"Width\": 0.24060890078544617\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.496963769197464,\n            \"Y\": 0.8204966187477112\n          },\n          {\n            \"X\": 0.7374569773674011,\n            \"Y\": 0.8199145793914795\n          },\n          {\n            \"X\": 0.7375726699829102,\n            \"Y\": 0.8905115127563477\n          },\n          {\n            \"X\": 0.4970475137233734,\n            \"Y\": 0.89106285572052\n          }\n        ]\n      },\n      \"Id\": \"9a57c8e6-cf4d-4e75-b865-95de42fa3e84\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"65b160b8-c062-4c37-9e3a-e15c3914bed7\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 3,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 5,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 83.49609375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07115323841571808,\n          \"Left\": 0.7374569773674011,\n          \"Top\": 0.8193582892417908,\n          \"Width\": 0.23000377416610718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7374569773674011,\n            \"Y\": 0.8199145793914795\n          },\n          {\n            \"X\": 0.9673144221305847,\n            \"Y\": 0.8193582892417908\n          },\n          {\n            \"X\": 0.9674607515335083,\n            \"Y\": 0.8899846076965332\n          },\n          {\n            \"X\": 0.7375726699829102,\n            \"Y\": 0.8905115127563477\n          }\n        ]\n      },\n      \"Id\": \"8492bcf2-0fd1-41c5-935b-3ae67bff4bf0\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a0a0f2a0-e6bd-4c63-9980-55bd017b4451\",\n            \"15dbd706-fecd-437e-b7da-c0a892387bb8\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 3,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 1,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 35.986328125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07534526288509369,\n          \"Left\": 0.031892381608486176,\n          \"Top\": 0.8918676376342773,\n          \"Width\": 0.11411008983850479\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.031892381608486176,\n            \"Y\": 0.892129123210907\n          },\n          {\n            \"X\": 0.14596295356750488,\n            \"Y\": 0.8918676376342773\n          },\n          {\n            \"X\": 0.14600247144699097,\n            \"Y\": 0.9669669270515442\n          },\n          {\n            \"X\": 0.031915780156850815,\n            \"Y\": 0.9672129154205322\n          }\n        ]\n      },\n      \"Id\": \"f13cdf46-cb65-4114-aaf3-8034b8754049\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"0a22b4f9-4d1e-4f7c-98f7-b9fb37e36743\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 4,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 2,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 33.5693359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07536668330430984,\n          \"Left\": 0.14596295356750488,\n          \"Top\": 0.8916002511978149,\n          \"Width\": 0.11670771986246109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14596295356750488,\n            \"Y\": 0.8918676376342773\n          },\n          {\n            \"X\": 0.2626146674156189,\n            \"Y\": 0.8916002511978149\n          },\n          {\n            \"X\": 0.2626706659793854,\n            \"Y\": 0.966715395450592\n          },\n          {\n            \"X\": 0.14600247144699097,\n            \"Y\": 0.9669669270515442\n          }\n        ]\n      },\n      \"Id\": \"61fd4a5b-7147-4a1f-96db-3c7ad1349afd\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"d81aff01-b358-49fe-8a5f-643688ab63fa\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 4,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 3,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 38.818359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07565251737833023,\n          \"Left\": 0.2626146674156189,\n          \"Top\": 0.89106285572052,\n          \"Width\": 0.2345220297574997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2626146674156189,\n            \"Y\": 0.8916002511978149\n          },\n          {\n            \"X\": 0.4970475137233734,\n            \"Y\": 0.89106285572052\n          },\n          {\n            \"X\": 0.4971366822719574,\n            \"Y\": 0.966209888458252\n          },\n          {\n            \"X\": 0.2626706659793854,\n            \"Y\": 0.966715395450592\n          }\n        ]\n      },\n      \"Id\": \"05c8005f-0331-45e9-82e3-88ec5938927b\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"06927ec1-2635-45d3-b880-f60d11deaf14\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 4,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 4,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 38.720703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07569833844900131,\n          \"Left\": 0.4970475137233734,\n          \"Top\": 0.8905115127563477,\n          \"Width\": 0.24064840376377106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4970475137233734,\n            \"Y\": 0.89106285572052\n          },\n          {\n            \"X\": 0.7375726699829102,\n            \"Y\": 0.8905115127563477\n          },\n          {\n            \"X\": 0.7376959323883057,\n            \"Y\": 0.9656912088394165\n          },\n          {\n            \"X\": 0.4971366822719574,\n            \"Y\": 0.966209888458252\n          }\n        ]\n      },\n      \"Id\": \"6049b301-42ca-461e-baba-bb04a33b1f72\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"00ddc39a-f7cd-48ad-9530-6290724d5360\",\n            \"65cdfc55-894e-47f0-88d7-13f90d6486fd\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 4,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"ColumnIndex\": 5,\n      \"ColumnSpan\": 1,\n      \"Confidence\": 39.0380859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07570664584636688,\n          \"Left\": 0.7375726699829102,\n          \"Top\": 0.8899846076965332,\n          \"Width\": 0.23004387319087982\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7375726699829102,\n            \"Y\": 0.8905115127563477\n          },\n          {\n            \"X\": 0.9674607515335083,\n            \"Y\": 0.8899846076965332\n          },\n          {\n            \"X\": 0.9676165580749512,\n            \"Y\": 0.9651955366134644\n          },\n          {\n            \"X\": 0.7376959323883057,\n            \"Y\": 0.9656912088394165\n          }\n        ]\n      },\n      \"Id\": \"744e4bb0-e5dd-4736-bef2-49d2ca06fb16\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"fdcc65d9-2d06-47ee-a36e-2ead1029d7a9\",\n            \"1d02d2fc-d4e2-4593-b690-bf57e326aecf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ],\n      \"RowIndex\": 4,\n      \"RowSpan\": 1\n    },\n    {\n      \"BlockType\": \"TABLE_TITLE\",\n      \"Confidence\": 53.90625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.09083676338195801,\n          \"Left\": 0.03705053776502609,\n          \"Top\": 0.5798898339271545,\n          \"Width\": 0.9284441471099854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03705053776502609,\n            \"Y\": 0.582538902759552\n          },\n          {\n            \"X\": 0.9653119444847107,\n            \"Y\": 0.5798898339271545\n          },\n          {\n            \"X\": 0.965494692325592,\n            \"Y\": 0.6682256460189819\n          },\n          {\n            \"X\": 0.037078890949487686,\n            \"Y\": 0.6707265973091125\n          }\n        ]\n      },\n      \"Id\": \"b151f51b-da04-4e80-a89d-3079d7fdaa69\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"30456f1b-0094-4442-aee5-5c1e4de6c86c\",\n            \"dcbb9cb4-fbb6-4118-bc8f-7069afa2ff82\",\n            \"c6bb9c84-3964-4f1b-8ca0-1fcb03e0e3c3\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.63471984863281,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.025349071249365807,\n          \"Left\": 0.04727020114660263,\n          \"Top\": 0.5178393125534058,\n          \"Width\": 0.06314939260482788\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04727020114660263,\n            \"Y\": 0.5180268883705139\n          },\n          {\n            \"X\": 0.11040803045034409,\n            \"Y\": 0.5178393125534058\n          },\n          {\n            \"X\": 0.11041960120201111,\n            \"Y\": 0.5430037379264832\n          },\n          {\n            \"X\": 0.04727877676486969,\n            \"Y\": 0.5431883931159973\n          }\n        ]\n      },\n      \"Id\": \"fb354eb9-2578-4871-9296-96a301f87870\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"6d4e6a57-7ef1-4334-ba02-df4544fc45bd\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"a2918ed6-a4b8-4d93-a533-e53747d33a47\",\n            \"a0a73412-43db-451b-9004-b34c393ca8cf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.63471984863281,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03604108467698097,\n          \"Left\": 0.021335603669285774,\n          \"Top\": 0.5112651586532593,\n          \"Width\": 0.021812139078974724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.021335603669285774,\n            \"Y\": 0.5113301873207092\n          },\n          {\n            \"X\": 0.043135762214660645,\n            \"Y\": 0.5112651586532593\n          },\n          {\n            \"X\": 0.0431477427482605,\n            \"Y\": 0.5472426414489746\n          },\n          {\n            \"X\": 0.021346108987927437,\n            \"Y\": 0.54730623960495\n          }\n        ]\n      },\n      \"Id\": \"6d4e6a57-7ef1-4334-ba02-df4544fc45bd\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"f3ed1933-5f2f-4b46-8645-89647ecd7b3a\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.29837036132812,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.024981582537293434,\n          \"Left\": 0.1677599400281906,\n          \"Top\": 0.5183537006378174,\n          \"Width\": 0.06758106499910355\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1677599400281906,\n            \"Y\": 0.5185542702674866\n          },\n          {\n            \"X\": 0.23532378673553467,\n            \"Y\": 0.5183537006378174\n          },\n          {\n            \"X\": 0.23534101247787476,\n            \"Y\": 0.5431376695632935\n          },\n          {\n            \"X\": 0.1677740067243576,\n            \"Y\": 0.5433352589607239\n          }\n        ]\n      },\n      \"Id\": \"220ba329-86fe-4957-873d-b71c94101ec7\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"3b3d8a9f-a14d-4260-8ddb-ab9a9710c544\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"60f29f44-b942-4366-ab60-2ef1cd1ba0a1\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.29837036132812,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03453260660171509,\n          \"Left\": 0.13976122438907623,\n          \"Top\": 0.5124133825302124,\n          \"Width\": 0.020596185699105263\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13976122438907623,\n            \"Y\": 0.5124747157096863\n          },\n          {\n            \"X\": 0.16033832728862762,\n            \"Y\": 0.5124133825302124\n          },\n          {\n            \"X\": 0.16035741567611694,\n            \"Y\": 0.5468859672546387\n          },\n          {\n            \"X\": 0.1397789716720581,\n            \"Y\": 0.5469459891319275\n          }\n        ]\n      },\n      \"Id\": \"3b3d8a9f-a14d-4260-8ddb-ab9a9710c544\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"e678f465-1b11-44de-80f7-843d41a632ba\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 80.64840698242188,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028682522475719452,\n          \"Left\": 0.03057091124355793,\n          \"Top\": 0.33429646492004395,\n          \"Width\": 0.1266298145055771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03057091124355793,\n            \"Y\": 0.33471474051475525\n          },\n          {\n            \"X\": 0.15718524158000946,\n            \"Y\": 0.33429646492004395\n          },\n          {\n            \"X\": 0.15720072388648987,\n            \"Y\": 0.3625672161579132\n          },\n          {\n            \"X\": 0.03057965822517872,\n            \"Y\": 0.362978994846344\n          }\n        ]\n      },\n      \"Id\": \"f4d02fa5-f693-4e6c-9b83-ca33eb5b0d17\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"3f47af1c-313d-43fe-901f-ccd4d494a9cb\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"91673fc7-5942-4a58-a7c6-378629a55f03\",\n            \"804cb66f-a26d-4079-b32c-aec7a921eb65\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 80.64840698242188,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.07393904775381088,\n          \"Left\": 0.17191912233829498,\n          \"Top\": 0.3184473514556885,\n          \"Width\": 0.608913242816925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17191912233829498,\n            \"Y\": 0.3204736113548279\n          },\n          {\n            \"X\": 0.780708372592926,\n            \"Y\": 0.3184473514556885\n          },\n          {\n            \"X\": 0.7808323502540588,\n            \"Y\": 0.3904392719268799\n          },\n          {\n            \"X\": 0.17196053266525269,\n            \"Y\": 0.39238640666007996\n          }\n        ]\n      },\n      \"Id\": \"3f47af1c-313d-43fe-901f-ccd4d494a9cb\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"1a79a69b-1859-4658-a38d-55260ba909e0\",\n            \"03c7da6c-aa52-4d57-99c5-8a529e2f0dc6\",\n            \"d58391e8-3d54-4e63-a226-ba806b71c966\",\n            \"293a9d95-66a7-4e83-85a1-d2d2fc943298\",\n            \"dfc78cc8-5657-414b-b720-bdb58a5cf393\",\n            \"e1011aba-4ac7-49d2-950b-4e86dc6a73dc\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 75.34728240966797,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.031037265434861183,\n          \"Left\": 0.28906917572021484,\n          \"Top\": 0.5181487202644348,\n          \"Width\": 0.16571466624736786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28906917572021484,\n            \"Y\": 0.5186405181884766\n          },\n          {\n            \"X\": 0.4547500014305115,\n            \"Y\": 0.5181487202644348\n          },\n          {\n            \"X\": 0.4547838568687439,\n            \"Y\": 0.5487033128738403\n          },\n          {\n            \"X\": 0.2890934944152832,\n            \"Y\": 0.5491859912872314\n          }\n        ]\n      },\n      \"Id\": \"7cb98364-ee96-40a0-9f76-d90db3eab657\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"08fe8196-9c93-44dd-8e00-972e6d3da0d1\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"21ce35e3-5998-4d2a-a62e-5bf40ee315f6\",\n            \"0def65d8-044b-4b62-a83e-654f846828de\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 75.34728240966797,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03514667600393295,\n          \"Left\": 0.26204389333724976,\n          \"Top\": 0.512403666973114,\n          \"Width\": 0.020600812509655952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26204389333724976,\n            \"Y\": 0.5124650001525879\n          },\n          {\n            \"X\": 0.2826171815395355,\n            \"Y\": 0.512403666973114\n          },\n          {\n            \"X\": 0.28264468908309937,\n            \"Y\": 0.5474903583526611\n          },\n          {\n            \"X\": 0.26207002997398376,\n            \"Y\": 0.54755038022995\n          }\n        ]\n      },\n      \"Id\": \"08fe8196-9c93-44dd-8e00-972e6d3da0d1\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"e6f55d8a-eaed-467d-9235-92d869bb71df\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 63.01451873779297,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028070248663425446,\n          \"Left\": 0.03373117744922638,\n          \"Top\": 0.2672918438911438,\n          \"Width\": 0.13017068803310394\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03373117744922638,\n            \"Y\": 0.26773762702941895\n          },\n          {\n            \"X\": 0.16388636827468872,\n            \"Y\": 0.2672918438911438\n          },\n          {\n            \"X\": 0.16390186548233032,\n            \"Y\": 0.2949228286743164\n          },\n          {\n            \"X\": 0.03373989090323448,\n            \"Y\": 0.29536211490631104\n          }\n        ]\n      },\n      \"Id\": \"90e1d78d-91ae-4700-8d47-499a162105aa\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"7fed89cc-d54e-4aa4-a730-1e102ae1e032\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"16b75b07-e0c6-41c2-bf74-ee90f79fa47a\",\n            \"4a4ba481-0860-4da6-a21c-68a737347797\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 63.01451873779297,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.04325173422694206,\n          \"Left\": 0.17896591126918793,\n          \"Top\": 0.26106134057044983,\n          \"Width\": 0.16928157210350037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17896591126918793,\n            \"Y\": 0.2616426944732666\n          },\n          {\n            \"X\": 0.3482087254524231,\n            \"Y\": 0.26106134057044983\n          },\n          {\n            \"X\": 0.3482474684715271,\n            \"Y\": 0.30374476313591003\n          },\n          {\n            \"X\": 0.17899104952812195,\n            \"Y\": 0.304313063621521\n          }\n        ]\n      },\n      \"Id\": \"7fed89cc-d54e-4aa4-a730-1e102ae1e032\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"aa65645c-e369-49e9-b716-3cb871dda30c\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 38.09983825683594,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.026639321818947792,\n          \"Left\": 0.036663949489593506,\n          \"Top\": 0.2017611265182495,\n          \"Width\": 0.08737732470035553\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.036663949489593506,\n            \"Y\": 0.20207074284553528\n          },\n          {\n            \"X\": 0.12402848154306412,\n            \"Y\": 0.2017611265182495\n          },\n          {\n            \"X\": 0.12404127418994904,\n            \"Y\": 0.22809499502182007\n          },\n          {\n            \"X\": 0.036672402173280716,\n            \"Y\": 0.22840045392513275\n          }\n        ]\n      },\n      \"Id\": \"9d545e38-825e-436f-889f-8160ff17b4e5\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"b54f7475-9baf-44cb-a99a-21d5a418f8e2\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"2f6dda22-7d15-4bfd-8a83-88df19c44401\",\n            \"3a8a3052-4fd5-44dc-972e-10d23ceac298\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 38.09983825683594,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02654709480702877,\n          \"Left\": 0.12925425171852112,\n          \"Top\": 0.20157256722450256,\n          \"Width\": 0.07472187280654907\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12925425171852112,\n            \"Y\": 0.20183730125427246\n          },\n          {\n            \"X\": 0.2039594054222107,\n            \"Y\": 0.20157256722450256\n          },\n          {\n            \"X\": 0.2039761245250702,\n            \"Y\": 0.22785846889019012\n          },\n          {\n            \"X\": 0.12926727533340454,\n            \"Y\": 0.22811967134475708\n          }\n        ]\n      },\n      \"Id\": \"b54f7475-9baf-44cb-a99a-21d5a418f8e2\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a45ca615-d0f2-48ae-849c-65fd31283a3d\",\n            \"cb7ccd9f-d2cb-4191-94ae-bdb3b2d492cb\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 35.280452728271484,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03294208273291588,\n          \"Left\": 0.7493398189544678,\n          \"Top\": 0.6796276569366455,\n          \"Width\": 0.16171106696128845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7493398189544678,\n            \"Y\": 0.6800597906112671\n          },\n          {\n            \"X\": 0.9109869003295898,\n            \"Y\": 0.6796276569366455\n          },\n          {\n            \"X\": 0.9110508561134338,\n            \"Y\": 0.7121471166610718\n          },\n          {\n            \"X\": 0.7493938207626343,\n            \"Y\": 0.7125697731971741\n          }\n        ]\n      },\n      \"Id\": \"11520578-dee9-4159-9772-775559270f26\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"dfefed23-41c3-4c94-8a74-53600bb12b09\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"4568cab5-a23e-4c73-a4c6-3c0238ab62b5\",\n            \"1a8752e6-7f9c-4f94-8710-2514ba044f2b\",\n            \"e6e97653-806c-443f-8583-4a0978604ddf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 35.280452728271484,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028650527819991112,\n          \"Left\": 0.7400031685829163,\n          \"Top\": 0.7152100205421448,\n          \"Width\": 0.2226387858390808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7400031685829163,\n            \"Y\": 0.7157906889915466\n          },\n          {\n            \"X\": 0.9625840187072754,\n            \"Y\": 0.7152100205421448\n          },\n          {\n            \"X\": 0.9626419544219971,\n            \"Y\": 0.7432911992073059\n          },\n          {\n            \"X\": 0.7400493025779724,\n            \"Y\": 0.7438605427742004\n          }\n        ]\n      },\n      \"Id\": \"dfefed23-41c3-4c94-8a74-53600bb12b09\"\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 27.225744247436523,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.03163720294833183,\n          \"Left\": 0.031608957797288895,\n          \"Top\": 0.13564801216125488,\n          \"Width\": 0.20805460214614868\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.031608957797288895,\n            \"Y\": 0.13641004264354706\n          },\n          {\n            \"X\": 0.23964183032512665,\n            \"Y\": 0.13564801216125488\n          },\n          {\n            \"X\": 0.23966355621814728,\n            \"Y\": 0.16653476655483246\n          },\n          {\n            \"X\": 0.03161857649683952,\n            \"Y\": 0.16728520393371582\n          }\n        ]\n      },\n      \"Id\": \"1aeffdbe-0dc3-4272-8485-d5cc584250d0\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"955da005-9d1f-4223-8fe0-7804fb23ff78\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"754353e9-8659-4399-b2a3-f3e7b3354c7e\",\n            \"66c496f7-4c66-4d36-9cd7-a24d9e8b41e2\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 27.225744247436523,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.05631067231297493,\n          \"Left\": 0.21920143067836761,\n          \"Top\": 0.12026279419660568,\n          \"Width\": 0.7097821235656738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21920143067836761,\n            \"Y\": 0.12287892401218414\n          },\n          {\n            \"X\": 0.9288759231567383,\n            \"Y\": 0.12026279419660568\n          },\n          {\n            \"X\": 0.9289835691452026,\n            \"Y\": 0.17402617633342743\n          },\n          {\n            \"X\": 0.21923713386058807,\n            \"Y\": 0.17657345533370972\n          }\n        ]\n      },\n      \"Id\": \"955da005-9d1f-4223-8fe0-7804fb23ff78\"\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 24.816438674926758,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.033313918858766556,\n          \"Left\": 0.028587549924850464,\n          \"Top\": 0.40222078561782837,\n          \"Width\": 0.13873891532421112\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.028587549924850464,\n            \"Y\": 0.4026619493961334\n          },\n          {\n            \"X\": 0.16730782389640808,\n            \"Y\": 0.40222078561782837\n          },\n          {\n            \"X\": 0.16732646524906158,\n            \"Y\": 0.43510180711746216\n          },\n          {\n            \"X\": 0.028597598895430565,\n            \"Y\": 0.4355347156524658\n          }\n        ]\n      },\n      \"Id\": \"20663725-9c53-41c2-b25b-2888968291b9\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"94d47e4d-fb6f-4485-9fce-4eb1c2398a07\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"bef9165c-0221-4452-b265-8f0de8724b1d\",\n            \"e03c5403-6053-4e2e-bdcf-8223ccb3b3c2\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 24.816438674926758,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.030358821153640747,\n          \"Left\": 0.17189261317253113,\n          \"Top\": 0.4027445614337921,\n          \"Width\": 0.12496870756149292\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17189261317253113,\n            \"Y\": 0.40314167737960815\n          },\n          {\n            \"X\": 0.2968370318412781,\n            \"Y\": 0.4027445614337921\n          },\n          {\n            \"X\": 0.29686132073402405,\n            \"Y\": 0.43271303176879883\n          },\n          {\n            \"X\": 0.1719098538160324,\n            \"Y\": 0.43310338258743286\n          }\n        ]\n      },\n      \"Id\": \"94d47e4d-fb6f-4485-9fce-4eb1c2398a07\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"dffea4b8-9bef-4513-b4f6-de675713e57a\",\n            \"1a6506c9-9b8c-4e51-b3d5-5aa819de9ae0\",\n            \"b22dd030-5dc4-40f0-857d-c038db070340\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 18.648008346557617,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027126003056764603,\n          \"Left\": 0.5080086588859558,\n          \"Top\": 0.6835336089134216,\n          \"Width\": 0.11048248410224915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5080086588859558,\n            \"Y\": 0.6838282942771912\n          },\n          {\n            \"X\": 0.6184531450271606,\n            \"Y\": 0.6835336089134216\n          },\n          {\n            \"X\": 0.6184911727905273,\n            \"Y\": 0.7103703618049622\n          },\n          {\n            \"X\": 0.5080410838127136,\n            \"Y\": 0.7106596231460571\n          }\n        ]\n      },\n      \"Id\": \"dacba4f4-99e1-4f62-854b-5344b46c2b9d\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"70a7de67-3b8f-44c0-976c-a82203d7e540\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"43f1bca6-5717-4930-88f0-11785c0257f6\",\n            \"9cfe7c13-07d6-4e0f-a5db-86c0efede9d1\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 18.648008346557617,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02822882868349552,\n          \"Left\": 0.501358151435852,\n          \"Top\": 0.7163277864456177,\n          \"Width\": 0.23280426859855652\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.501358151435852,\n            \"Y\": 0.7169348001480103\n          },\n          {\n            \"X\": 0.7341172695159912,\n            \"Y\": 0.7163277864456177\n          },\n          {\n            \"X\": 0.7341623902320862,\n            \"Y\": 0.7439612746238708\n          },\n          {\n            \"X\": 0.5013911724090576,\n            \"Y\": 0.7445566058158875\n          }\n        ]\n      },\n      \"Id\": \"70a7de67-3b8f-44c0-976c-a82203d7e540\"\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 17.70201873779297,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.027270952239632607,\n          \"Left\": 0.7487711310386658,\n          \"Top\": 0.7553194761276245,\n          \"Width\": 0.08314044028520584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7487711310386658,\n            \"Y\": 0.7555302381515503\n          },\n          {\n            \"X\": 0.8318623900413513,\n            \"Y\": 0.7553194761276245\n          },\n          {\n            \"X\": 0.831911563873291,\n            \"Y\": 0.7823836803436279\n          },\n          {\n            \"X\": 0.7488160729408264,\n            \"Y\": 0.782590389251709\n          }\n        ]\n      },\n      \"Id\": \"18995ac4-713a-4671-9927-bf6a9e4a95e0\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"4b1ce4e3-8251-4b0b-8ea9-80a9a6b43b99\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"3d0354ee-fe31-45c3-933b-07cab5befc7a\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 17.70201873779297,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.1290220320224762,\n          \"Left\": 0.7476274967193604,\n          \"Top\": 0.8315153121948242,\n          \"Width\": 0.21889472007751465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7476274967193604,\n            \"Y\": 0.8320396542549133\n          },\n          {\n            \"X\": 0.9662562012672424,\n            \"Y\": 0.8315153121948242\n          },\n          {\n            \"X\": 0.966522216796875,\n            \"Y\": 0.9600638747215271\n          },\n          {\n            \"X\": 0.7478405833244324,\n            \"Y\": 0.9605373740196228\n          }\n        ]\n      },\n      \"Id\": \"4b1ce4e3-8251-4b0b-8ea9-80a9a6b43b99\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"a0a0f2a0-e6bd-4c63-9980-55bd017b4451\",\n            \"15dbd706-fecd-437e-b7da-c0a892387bb8\",\n            \"fdcc65d9-2d06-47ee-a36e-2ead1029d7a9\",\n            \"1d02d2fc-d4e2-4593-b690-bf57e326aecf\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 16.889751434326172,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.028147831559181213,\n          \"Left\": 0.1606018990278244,\n          \"Top\": 0.6795597076416016,\n          \"Width\": 0.0735938549041748\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1606018990278244,\n            \"Y\": 0.6797567009925842\n          },\n          {\n            \"X\": 0.2341763973236084,\n            \"Y\": 0.6795597076416016\n          },\n          {\n            \"X\": 0.2341957539319992,\n            \"Y\": 0.7075143456459045\n          },\n          {\n            \"X\": 0.1606173813343048,\n            \"Y\": 0.7077075839042664\n          }\n        ]\n      },\n      \"Id\": \"74c0938b-2475-4c49-8001-26f969aaeee9\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"ce840788-ea77-49f0-8afb-ce77a924049d\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"c418c930-deb1-474d-8342-77262427c18a\",\n            \"cfb6092b-001f-4944-b15b-b84419ecb48d\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 16.889751434326172,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.033952221274375916,\n          \"Left\": 0.15910108387470245,\n          \"Top\": 0.7511129975318909,\n          \"Width\": 0.08551733940839767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15910108387470245,\n            \"Y\": 0.7513307332992554\n          },\n          {\n            \"X\": 0.24459439516067505,\n            \"Y\": 0.7511129975318909\n          },\n          {\n            \"X\": 0.24461841583251953,\n            \"Y\": 0.7848526835441589\n          },\n          {\n            \"X\": 0.15911966562271118,\n            \"Y\": 0.7850651741027832\n          }\n        ]\n      },\n      \"Id\": \"ce840788-ea77-49f0-8afb-ce77a924049d\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"39254f98-d72b-4a29-a852-7aa49ea5191f\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 16.45771598815918,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.035563308745622635,\n          \"Left\": 0.27197185158729553,\n          \"Top\": 0.7528207898139954,\n          \"Width\": 0.11705740541219711\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27197185158729553,\n            \"Y\": 0.7531183958053589\n          },\n          {\n            \"X\": 0.3889945447444916,\n            \"Y\": 0.7528207898139954\n          },\n          {\n            \"X\": 0.38902923464775085,\n            \"Y\": 0.7880939245223999\n          },\n          {\n            \"X\": 0.2719987630844116,\n            \"Y\": 0.7883840799331665\n          }\n        ]\n      },\n      \"Id\": \"e43f0f4f-ec71-4ef7-b99a-4ba49c160d61\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"7a17d6a0-9150-420b-bbdb-c077be986e8c\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"87f211c8-dfc7-465d-9707-73c520dce643\",\n            \"f8f71feb-6ee9-449f-9623-fbaf8aa6a2d7\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 16.45771598815918,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.13427212834358215,\n          \"Left\": 0.276349812746048,\n          \"Top\": 0.8396093249320984,\n          \"Width\": 0.20736442506313324\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.276349812746048,\n            \"Y\": 0.8401036262512207\n          },\n          {\n            \"X\": 0.4835588037967682,\n            \"Y\": 0.8396093249320984\n          },\n          {\n            \"X\": 0.48371422290802,\n            \"Y\": 0.9734372496604919\n          },\n          {\n            \"X\": 0.27645301818847656,\n            \"Y\": 0.9738814234733582\n          }\n        ]\n      },\n      \"Id\": \"7a17d6a0-9150-420b-bbdb-c077be986e8c\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"28c043b7-888b-4413-bd64-94fb120bd496\",\n            \"fed10741-db8d-4c36-a7ce-6818f29c267c\",\n            \"06927ec1-2635-45d3-b880-f60d11deaf14\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 15.505151748657227,\n      \"EntityTypes\": [\n        \"KEY\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.02774743363261223,\n          \"Left\": 0.5069320201873779,\n          \"Top\": 0.7568546533584595,\n          \"Width\": 0.1304517537355423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5069320201873779,\n            \"Y\": 0.7571852207183838\n          },\n          {\n            \"X\": 0.6373440027236938,\n            \"Y\": 0.7568546533584595\n          },\n          {\n            \"X\": 0.637383759021759,\n            \"Y\": 0.7842780351638794\n          },\n          {\n            \"X\": 0.5069651007652283,\n            \"Y\": 0.7846021056175232\n          }\n        ]\n      },\n      \"Id\": \"4da18bd6-78be-4839-bab0-2a9ccc973572\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"76d3c956-7e6b-4f8d-96ca-7150380d1064\"\n          ],\n          \"Type\": \"VALUE\"\n        },\n        {\n          \"Ids\": [\n            \"1ea112fe-3e6b-41f6-9006-eda5e55b5c30\",\n            \"fc337804-d0a7-4606-b5bd-1ac00a5462d2\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 15.505151748657227,\n      \"EntityTypes\": [\n        \"VALUE\"\n      ],\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Height\": 0.12510615587234497,\n          \"Left\": 0.5112907290458679,\n          \"Top\": 0.8345034122467041,\n          \"Width\": 0.18506716191768646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5112907290458679,\n            \"Y\": 0.8349459767341614\n          },\n          {\n            \"X\": 0.6961631774902344,\n            \"Y\": 0.8345034122467041\n          },\n          {\n            \"X\": 0.6963578462600708,\n            \"Y\": 0.9592087268829346\n          },\n          {\n            \"X\": 0.5114420056343079,\n            \"Y\": 0.9596095681190491\n          }\n        ]\n      },\n      \"Id\": \"76d3c956-7e6b-4f8d-96ca-7150380d1064\",\n      \"Relationships\": [\n        {\n          \"Ids\": [\n            \"65b160b8-c062-4c37-9e3a-e15c3914bed7\",\n            \"00ddc39a-f7cd-48ad-9530-6290724d5360\",\n            \"65cdfc55-894e-47f0-88d7-13f90d6486fd\"\n          ],\n          \"Type\": \"CHILD\"\n        }\n      ]\n    }\n  ],\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  }\n}"
  },
  {
    "path": "src-js/test/data/test-twocol-header-footer-response.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.9993429780006409,\n          \"Height\": 0.9995539784431458,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0\n          },\n          {\n            \"X\": 0.9993429780006409,\n            \"Y\": 0\n          },\n          {\n            \"X\": 0.9993429780006409,\n            \"Y\": 0.9995539784431458\n          },\n          {\n            \"X\": 0,\n            \"Y\": 0.9995539784431458\n          }\n        ]\n      },\n      \"Id\": \"684fc8ce-63da-46a5-b77b-c5b73f6548c6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b53368d-210f-4b49-b2d2-8bb8b54df84c\",\n            \"7cbbce05-4c31-48c9-8707-8c6154815908\",\n            \"2a53e40c-5e11-474c-b38c-835f6ccd7f7c\",\n            \"13388e16-7df5-4055-ac4a-e666b0bcdc16\",\n            \"8097e431-4b37-4526-9062-08e7161698c7\",\n            \"4fcd61e2-d7df-43d7-a6c7-c17cc8254edf\",\n            \"73adfb7a-642e-4623-af82-c7a3bf92f692\",\n            \"9ba650c8-271f-49eb-807f-e34a4180f28a\",\n            \"1a3c991d-c5bd-4528-829c-472a0fb12db0\",\n            \"cec9561e-79a1-4e3c-8531-be46ad2252d4\",\n            \"2662cac8-c865-467f-bf90-0827ca06ef77\",\n            \"2d029007-bd7b-42a4-9433-62acf76a4d93\",\n            \"cc22e7a8-f31d-4dad-86a3-b13c42f57e2c\",\n            \"01449ba0-fd00-429c-b8a6-6b164ce334f2\",\n            \"24a3268d-a5f6-4842-a157-2978ea5b23ad\",\n            \"8fd1b090-4552-4386-a70f-1a6f945192e1\",\n            \"f39114d1-ca94-430d-98a0-0c29c16cebfa\",\n            \"a41f5435-7a7b-4174-9da0-b9518a7382b1\",\n            \"3e2e4a46-5958-420b-a5be-ab79dc1cb10d\",\n            \"530d1805-035a-4b42-a1b5-2c61cdc1b2d3\",\n            \"62c93925-60e0-4c05-b23d-7df294c5a925\",\n            \"97a8e5cd-569d-4a6e-8502-6c2471567ca8\",\n            \"349c941d-6aad-48a1-bfdd-1f54f549b611\",\n            \"5081c06e-78fb-4dac-9e95-6622c1830918\",\n            \"6c077899-c40b-4dfa-a830-bea743266c0b\",\n            \"01c93124-37de-4097-bd43-cababb13f2ae\",\n            \"81e2c829-1869-47ea-b458-d959258addda\",\n            \"26bd84b4-63ca-4134-9686-cdcb8c13e7b8\",\n            \"ee1208a0-88a5-4465-a979-bf437e950c3e\",\n            \"28bb4056-4b99-4841-9d17-1c46829de0ae\",\n            \"218f19af-2503-4605-833c-721fc59e1ef4\",\n            \"e6ad5e96-c511-4bd1-9e00-280b4072b992\",\n            \"f4dc8b26-d618-4089-af09-798f817dbbf8\",\n            \"ca619932-ce45-4531-b5b6-1fa1426338fa\",\n            \"ef63872d-87bc-4011-aeaa-bdb0d61df66d\",\n            \"b215ac57-2d42-484b-acf4-7f3c8d2b5dbb\",\n            \"d0e899dd-c476-4f18-a328-11ccd996e054\",\n            \"c05f51c9-3e18-4dd0-b88c-716e683d3358\",\n            \"210a07a4-6b8f-41a7-957f-a498667743c1\",\n            \"9e4dd766-3503-4302-95fe-65049d39d207\",\n            \"d79d6cba-a2e5-4b78-9d40-30d5291b7d50\",\n            \"b03432de-c5cf-4636-90ed-dd97aea1f6b1\",\n            \"7c3701d1-16f4-43ea-aba8-8e80b9e770a1\",\n            \"9ff044a1-d9a6-47f9-be93-57f627cfc9c3\",\n            \"e0f16c65-92ed-4dbf-b487-95cdc941686b\",\n            \"1b48d68f-8a36-4950-bc7d-adb60e191284\",\n            \"80e129fb-25d8-4713-b075-43801790fcce\",\n            \"19aeed7a-8ac9-48fc-b2c7-c02b28bb340e\",\n            \"fd3b48f2-61b9-4452-8adb-fc19668bce08\",\n            \"1004419a-5cbe-4aa2-97ab-5bbff2ff07f0\",\n            \"7742b814-b8bd-486b-8dbf-b0357d1db29f\",\n            \"f83a8bc2-e820-4d0a-84c1-3a58b83587d8\",\n            \"88385390-5c54-4bb6-87ed-f4e885a0a01f\"\n          ]\n        }\n      ],\n      \"childText\": \"Left-aligned header right-aligned header With multiple lines CENTER-ALIGNED HEADER with multiple lines This page tests the capability to analyze and segment page headers and footers as separate elements from the main page content (like this paragraph). The Amazon Textract Response parser provides a basic implementation of this functionality using rule-based heuristics with some adjustable parameters. You could also consider different heuristics or machine learning model-based approaches, if more appropriate for your particular domain's documents. A section heading Many documents divide content into multiple sections (perhaps with a hierarchy of different levels). For our test document, adding subsections also helps consume vertical space since we need to write enough content for the total height of the page to be somewhat representative of real-world document proportions. In some cases different subsections of the document may even change the number of text columns in the layout. When a section of (LTR) text is presented in two The Amazon Textract Response Parser aims to columns, the intended reading order is typically to implement useful, generalisable parsing tools on which complete one column top-to-bottom, before starting to further (domain-specific) analyses can be built. read the next. This means it cannot solve for every edge case in However due to the broad possibilities for laying out layout analysis non-conventional documents and the nature of human visual attention, It's not precise (arguably, not even But at least sample documents like these can test some possible) to define an exact linear reading order for common, representative structures: Even if creating words on a richly formatted page. requires tackling the difficult task of writing about nothing in particular for an entire page of content. Depending on the use case, simple heuristics and/or ML model-based approaches may be appropriate. The included sample test documents are fully synthetic. After a two-column section, single-column order may sometimes be restored for follow-on content. This should appear after both columns' content in the estimated reading order. Another section Where does a header or footer end and main page content begin? To test whether a proposed implementation can reliably estimate that boundary, a synthetic example document like this can be useful. The actual content of the text is not particularly important, so long as the layout is representative of real-world documents and the models and approaches being tested are layout-based rather than using cues from the text or combining multiple signals (such as layout, text, and maybe even imagery) together. Even the representativeness of the layout need only be approximate, as different documents will represent different formatting choices such as margins, page size and shape, and separation between typographic elements. A final section In light of this variability, let's close the main content here and proceed to the footer. Not every document will have both a header and a footer, but this sample page will aim to exercise both functionalities. Left-aligned footer Multi-line centered Page of 1 footer content \",\n      \"SearchKey\": \"Left-aligned header right-aligned header With multiple lines CENTER-ALIGNED HEADER with multiple lines This page tests the capability to analyze and segment page headers and footers as separate elements from the main page content (like this paragraph). The Amazon Textract Response parser provides a basic implementation of this functionality using rule-based heuristics with some adjustable parameters. You could also consider different heuristics or machine learning model-based approaches, if more appropriate for your particular domain's documents. A section heading Many documents divide content into multiple sections (perhaps with a hierarchy of different levels). For our test document, adding subsections also helps consume vertical space since we need to write enough content for the total height of the page to be somewhat representative of real-world document proportions. In some cases different subsections of the document may even change the number of text columns in the layout. When a section of (LTR) text is presented in two The Amazon Textract Response Parser aims to columns, the intended reading order is typically to implement useful, generalisable parsing tools on which complete one column top-to-bottom, before starting to further (domain-specific) analyses can be built. read the next. This means it cannot solve for every edge case in However due to the broad possibilities for laying out layout analysis non-conventional documents and the nature of human visual attention, It's not precise (arguably, not even But at least sample documents like these can test some possible) to define an exact linear reading order for common, representative structures: Even if creating words on a richly formatted page. requires tackling the difficult task of writing about nothing in particular for an entire page of content. Depending on the use case, simple heuristics and/or ML model-based approaches may be appropriate. The included sample test documents are fully synthetic. After a two-column section, single-column order may sometimes be restored for follow-on content. This should appear after both columns' content in the estimated reading order. Another section Where does a header or footer end and main page content begin? To test whether a proposed implementation can reliably estimate that boundary, a synthetic example document like this can be useful. The actual content of the text is not particularly important, so long as the layout is representative of real-world documents and the models and approaches being tested are layout-based rather than using cues from the text or combining multiple signals (such as layout, text, and maybe even imagery) together. Even the representativeness of the layout need only be approximate, as different documents will represent different formatting choices such as margins, page size and shape, and separation between typographic elements. A final section In light of this variability, let's close the main content here and proceed to the footer. Not every document will have both a header and a footer, but this sample page will aim to exercise both functionalities. Left-aligned footer Multi-line centered Page of 1 footer content \",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.77317810058594,\n      \"Text\": \"Left-aligned header\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13828593492507935,\n          \"Height\": 0.012187634594738483,\n          \"Left\": 0.0804760754108429,\n          \"Top\": 0.06311748176813126\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0804760754108429,\n            \"Y\": 0.06311748176813126\n          },\n          {\n            \"X\": 0.21876201033592224,\n            \"Y\": 0.06311748176813126\n          },\n          {\n            \"X\": 0.21876201033592224,\n            \"Y\": 0.07530511915683746\n          },\n          {\n            \"X\": 0.0804760754108429,\n            \"Y\": 0.07530511915683746\n          }\n        ]\n      },\n      \"Id\": \"5b53368d-210f-4b49-b2d2-8bb8b54df84c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f1a592c-b869-41b6-b8cd-398730905b6d\",\n            \"c920d150-f3d5-4bcc-9fb5-aa2d869e85c5\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Left-aligned header \",\n      \"SearchKey\": \"Left-aligned header\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94284057617188,\n      \"Text\": \"right-aligned header\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14248749613761902,\n          \"Height\": 0.01243581809103489,\n          \"Left\": 0.7760204076766968,\n          \"Top\": 0.0630587786436081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7760204076766968,\n            \"Y\": 0.0630587786436081\n          },\n          {\n            \"X\": 0.9185078740119934,\n            \"Y\": 0.0630587786436081\n          },\n          {\n            \"X\": 0.9185078740119934,\n            \"Y\": 0.07549459487199783\n          },\n          {\n            \"X\": 0.7760204076766968,\n            \"Y\": 0.07549459487199783\n          }\n        ]\n      },\n      \"Id\": \"7cbbce05-4c31-48c9-8707-8c6154815908\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"22253399-2537-4084-949f-98f5186fcecc\",\n            \"ee682403-b4ea-4ba2-a324-5be131611260\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"right-aligned header \",\n      \"SearchKey\": \"right-aligned header\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.768310546875,\n      \"Text\": \"With multiple lines\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12963388860225677,\n          \"Height\": 0.012389537878334522,\n          \"Left\": 0.08013208955526352,\n          \"Top\": 0.07555448263883591\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08013208955526352,\n            \"Y\": 0.07555448263883591\n          },\n          {\n            \"X\": 0.2097659856081009,\n            \"Y\": 0.07555448263883591\n          },\n          {\n            \"X\": 0.2097659856081009,\n            \"Y\": 0.08794402331113815\n          },\n          {\n            \"X\": 0.08013208955526352,\n            \"Y\": 0.08794402331113815\n          }\n        ]\n      },\n      \"Id\": \"2a53e40c-5e11-474c-b38c-835f6ccd7f7c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c908480c-f091-4743-a40c-c6d813de916f\",\n            \"9b8de689-4d46-4d32-868b-5f12d3c48aa9\",\n            \"ce30480c-b56c-4666-b5af-1d6b8d87bad8\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"With multiple lines \",\n      \"SearchKey\": \"With multiple lines\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.64733123779297,\n      \"Text\": \"CENTER-ALIGNED HEADER\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2119773030281067,\n          \"Height\": 0.010602829977869987,\n          \"Left\": 0.3932524025440216,\n          \"Top\": 0.07536332309246063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3932524025440216,\n            \"Y\": 0.07536332309246063\n          },\n          {\n            \"X\": 0.6052296757698059,\n            \"Y\": 0.07536332309246063\n          },\n          {\n            \"X\": 0.6052296757698059,\n            \"Y\": 0.08596615493297577\n          },\n          {\n            \"X\": 0.3932524025440216,\n            \"Y\": 0.08596615493297577\n          }\n        ]\n      },\n      \"Id\": \"13388e16-7df5-4055-ac4a-e666b0bcdc16\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"01f7499a-a6ea-4596-b532-f5f6ad21fc1a\",\n            \"10894400-e1a7-49f8-8c0e-7ddf1f243a4f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"CENTER-ALIGNED HEADER \",\n      \"SearchKey\": \"CENTER-ALIGNED HEADER\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90104675292969,\n      \"Text\": \"with multiple lines\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12645545601844788,\n          \"Height\": 0.012491230852901936,\n          \"Left\": 0.7921223640441895,\n          \"Top\": 0.07550430297851562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7921223640441895,\n            \"Y\": 0.07550430297851562\n          },\n          {\n            \"X\": 0.9185777902603149,\n            \"Y\": 0.07550430297851562\n          },\n          {\n            \"X\": 0.9185777902603149,\n            \"Y\": 0.08799552917480469\n          },\n          {\n            \"X\": 0.7921223640441895,\n            \"Y\": 0.08799552917480469\n          }\n        ]\n      },\n      \"Id\": \"8097e431-4b37-4526-9062-08e7161698c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2a86ae51-ea3f-42fd-a970-8330a8c4988a\",\n            \"db740735-f7fe-4639-b452-4602c5bd7cae\",\n            \"0c6fd550-e707-4f5a-82cd-77f1a272336a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"with multiple lines \",\n      \"SearchKey\": \"with multiple lines\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97586822509766,\n      \"Text\": \"This page tests the capability to analyze and segment page headers and footers as separate elements from the main\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.817554771900177,\n          \"Height\": 0.012605148367583752,\n          \"Left\": 0.08018822222948074,\n          \"Top\": 0.11375203728675842\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08018822222948074,\n            \"Y\": 0.11375203728675842\n          },\n          {\n            \"X\": 0.8977429866790771,\n            \"Y\": 0.11375203728675842\n          },\n          {\n            \"X\": 0.8977429866790771,\n            \"Y\": 0.12635718286037445\n          },\n          {\n            \"X\": 0.08018822222948074,\n            \"Y\": 0.12635718286037445\n          }\n        ]\n      },\n      \"Id\": \"4fcd61e2-d7df-43d7-a6c7-c17cc8254edf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"282359d3-2fd2-480e-ba23-f869793bf65b\",\n            \"a465bdae-0a71-4264-90e1-11f3fd31db34\",\n            \"28842630-a3a3-4de0-a564-27c6c115981a\",\n            \"b7e96c0d-5fe5-4ed0-9f04-7539eaa1f1e5\",\n            \"5ae63d02-404d-4b9f-a1fe-808ac80f8b3c\",\n            \"373598a9-f796-4b06-9616-21abef5221dc\",\n            \"08e78270-fd17-4ed0-815a-67e32e37377e\",\n            \"7a1c95a9-31c4-4271-9173-c55c9e505f03\",\n            \"e5cbeaae-e92e-42a5-a02b-1549656b509b\",\n            \"fd8e5cf6-3b49-4ed4-966e-7d15ce90f7de\",\n            \"5c227172-6861-43cd-ab75-ee638eee9dd6\",\n            \"4c96e3e1-4353-4aba-9f9c-b90a040a95ad\",\n            \"60593137-ccb2-4004-8b1b-35eb78cc5c96\",\n            \"605cf134-a225-41c0-a3c9-321402e90f67\",\n            \"d22565f8-1243-4d6a-8f5d-0372ee31c832\",\n            \"96e5ad07-7718-4c9b-9104-160fe08c0204\",\n            \"cd589c4b-5527-4730-a3ae-4ba700181ea8\",\n            \"778d33ce-e3fc-4397-a62d-2f17b6dc104b\",\n            \"be92969a-4c0f-410e-8309-b5f3b54ab647\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"This page tests the capability to analyze and segment page headers and footers as separate elements from the main \",\n      \"SearchKey\": \"This page tests the capability to analyze and segment page headers and footers as separate elements from the main\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93001556396484,\n      \"Text\": \"page content (like this paragraph). The Amazon Textract Response parser provides a basic implementation of this\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7953885197639465,\n          \"Height\": 0.013018537312746048,\n          \"Left\": 0.08034448325634003,\n          \"Top\": 0.12590040266513824\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08034448325634003,\n            \"Y\": 0.12590040266513824\n          },\n          {\n            \"X\": 0.875732958316803,\n            \"Y\": 0.12590040266513824\n          },\n          {\n            \"X\": 0.875732958316803,\n            \"Y\": 0.138918936252594\n          },\n          {\n            \"X\": 0.08034448325634003,\n            \"Y\": 0.138918936252594\n          }\n        ]\n      },\n      \"Id\": \"73adfb7a-642e-4623-af82-c7a3bf92f692\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7f768694-b4ac-461f-8618-552b48bef138\",\n            \"9cb5a751-4545-4250-b928-e3aff305ce5e\",\n            \"9168e4f3-3701-4e12-b056-cf7a47967737\",\n            \"01c04826-666b-4d3f-af20-b80ef225af7e\",\n            \"776a9ecc-dd85-4679-8c96-e7a65b26c1f6\",\n            \"2205ff66-e597-4708-b240-55e85461013e\",\n            \"2a026318-d663-4682-9d04-aed0609f1d56\",\n            \"2514bb96-864c-41dd-8013-d1d6b5beb7aa\",\n            \"5cd846b5-a47d-4398-a453-94e8499ada20\",\n            \"f9b63cd8-48c6-4f77-b2ce-5199f2542931\",\n            \"ccf102a7-7c9c-47c6-8b21-3fec07bed94f\",\n            \"3c0ae910-a0ff-4c5d-be45-8c08262b0e9c\",\n            \"49185d3e-3863-4b95-9de2-8283db968bc7\",\n            \"9d3664af-ba56-4b9d-a993-1b50fb11c2f4\",\n            \"cc87de74-f74f-403f-a1bf-2ead5fc11772\",\n            \"cf64f8e2-efab-4fa5-b62b-dc4838151269\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"page content (like this paragraph). The Amazon Textract Response parser provides a basic implementation of this \",\n      \"SearchKey\": \"page content (like this paragraph). The Amazon Textract Response parser provides a basic implementation of this\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90955352783203,\n      \"Text\": \"functionality using rule-based heuristics with some adjustable parameters. You could also consider different heuristics or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8384941816329956,\n          \"Height\": 0.012579585425555706,\n          \"Left\": 0.08036861568689346,\n          \"Top\": 0.13887424767017365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08036861568689346,\n            \"Y\": 0.13887424767017365\n          },\n          {\n            \"X\": 0.9188627600669861,\n            \"Y\": 0.13887424767017365\n          },\n          {\n            \"X\": 0.9188627600669861,\n            \"Y\": 0.15145382285118103\n          },\n          {\n            \"X\": 0.08036861568689346,\n            \"Y\": 0.15145382285118103\n          }\n        ]\n      },\n      \"Id\": \"9ba650c8-271f-49eb-807f-e34a4180f28a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96780493-1e59-488d-aae6-a6214ee35673\",\n            \"9f6d8abe-9a58-43ae-8e61-29b717fecb26\",\n            \"7ede5e73-6f60-47b0-a449-bbaea5725c1b\",\n            \"2dbe405f-854a-494a-a4e7-ecb9dc38287a\",\n            \"272e1814-c2f3-4c24-9542-ced3427fc505\",\n            \"19f72990-ffd4-4e6b-be5b-73bef3004e73\",\n            \"2b9dd591-8322-454f-b6e1-ea3bf8b7b303\",\n            \"16a3f924-9d9c-4c5d-a0cb-4be19ac92e1f\",\n            \"537ea118-4f10-4ca5-b0a8-5b74d779bed0\",\n            \"15a06538-16c0-4fbf-8f29-d00c9580f094\",\n            \"0262a6c9-1550-4964-9c9a-1c419f182400\",\n            \"ad5061c9-38d5-4cde-86e2-56686a35bb8c\",\n            \"cd865e68-3bbf-4998-8107-fdf2ae97f3f8\",\n            \"948efbef-ec65-4c95-a4c0-96ec452dbda3\",\n            \"922466d6-0629-4d1f-9025-a052e4df1b45\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"functionality using rule-based heuristics with some adjustable parameters. You could also consider different heuristics or \",\n      \"SearchKey\": \"functionality using rule-based heuristics with some adjustable parameters. You could also consider different heuristics or\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85590362548828,\n      \"Text\": \"machine learning model-based approaches, if more appropriate for your particular domain's documents.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7252259254455566,\n          \"Height\": 0.012651251628994942,\n          \"Left\": 0.08032061159610748,\n          \"Top\": 0.1511640101671219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08032061159610748,\n            \"Y\": 0.1511640101671219\n          },\n          {\n            \"X\": 0.8055465817451477,\n            \"Y\": 0.1511640101671219\n          },\n          {\n            \"X\": 0.8055465817451477,\n            \"Y\": 0.16381525993347168\n          },\n          {\n            \"X\": 0.08032061159610748,\n            \"Y\": 0.16381525993347168\n          }\n        ]\n      },\n      \"Id\": \"1a3c991d-c5bd-4528-829c-472a0fb12db0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"885505cb-9ede-480b-a6ac-69e9216bcce8\",\n            \"cf30d539-544a-4dee-82ce-85306e3069c7\",\n            \"7efa17a3-8b02-4f92-aea8-9364227a1d6b\",\n            \"e97acb59-878c-45ea-81d4-d0174fb6fb44\",\n            \"f6f49000-09bf-4b68-9be9-45c789b236f2\",\n            \"c20c5848-3d74-4898-aefc-ecc4820a8866\",\n            \"be820785-dff1-494d-9630-6ba76cddb007\",\n            \"dd7c2345-0a29-485f-8a82-65a74dbe8c09\",\n            \"d7fdbffe-ecc3-47b0-9f79-bd20b8da10f9\",\n            \"06a13566-3fd1-44b9-8716-42a6ccc2f40c\",\n            \"3f7907ae-3a38-437d-ac1e-59d06710eace\",\n            \"dc38331c-80c0-4cea-a3b7-5c14a72de073\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"machine learning model-based approaches, if more appropriate for your particular domain's documents. \",\n      \"SearchKey\": \"machine learning model-based approaches, if more appropriate for your particular domain's documents.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9139633178711,\n      \"Text\": \"A section heading\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18248870968818665,\n          \"Height\": 0.01568913832306862,\n          \"Left\": 0.08022850006818771,\n          \"Top\": 0.1889694482088089\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08022850006818771,\n            \"Y\": 0.1889694482088089\n          },\n          {\n            \"X\": 0.26271721720695496,\n            \"Y\": 0.1889694482088089\n          },\n          {\n            \"X\": 0.26271721720695496,\n            \"Y\": 0.20465858280658722\n          },\n          {\n            \"X\": 0.08022850006818771,\n            \"Y\": 0.20465858280658722\n          }\n        ]\n      },\n      \"Id\": \"cec9561e-79a1-4e3c-8531-be46ad2252d4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5d5bedd3-3ca6-417a-afb7-c3d1362dcf39\",\n            \"afbf0917-1342-48a0-8581-f2f961177028\",\n            \"902efb09-4cce-42d8-bc87-b9a9b33f07f3\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A section heading \",\n      \"SearchKey\": \"A section heading\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91058349609375,\n      \"Text\": \"Many documents divide content into multiple sections (perhaps with a hierarchy of different levels).\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6876496076583862,\n          \"Height\": 0.012669422663748264,\n          \"Left\": 0.08054433017969131,\n          \"Top\": 0.21808405220508575\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08054433017969131,\n            \"Y\": 0.21808405220508575\n          },\n          {\n            \"X\": 0.7681939601898193,\n            \"Y\": 0.21808405220508575\n          },\n          {\n            \"X\": 0.7681939601898193,\n            \"Y\": 0.23075348138809204\n          },\n          {\n            \"X\": 0.08054433017969131,\n            \"Y\": 0.23075348138809204\n          }\n        ]\n      },\n      \"Id\": \"2662cac8-c865-467f-bf90-0827ca06ef77\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"db1ff863-38a4-44a5-8607-97d42971bf09\",\n            \"440d1172-1eb9-4ed4-a158-36903982749e\",\n            \"a26516f4-2665-4f5d-adce-5192dca04e7e\",\n            \"129ec3af-eda0-40f9-883f-719f78cb3102\",\n            \"c9d47be2-a3e8-4944-afd3-b2b431ad45b2\",\n            \"1250b558-0bd9-4599-9538-c21c3e3d1b44\",\n            \"8e27889d-2c4c-4f47-b421-095f5e805711\",\n            \"96a221cf-962b-4db2-aaa6-948cd2780819\",\n            \"4db105a6-c8e6-4ec4-9921-b38771e003a4\",\n            \"78467dd9-393c-48b5-b240-f715404d9c1c\",\n            \"d9c4e2ce-3642-49b6-bb0d-f1da66333db4\",\n            \"a5fbe9df-c37f-475e-9a84-6eecd04c4a1a\",\n            \"71e8b58b-a40f-454f-b202-c0e36d18a6d0\",\n            \"f6e5a32e-9b8d-4bc5-bf40-a4a2e90308d3\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Many documents divide content into multiple sections (perhaps with a hierarchy of different levels). \",\n      \"SearchKey\": \"Many documents divide content into multiple sections (perhaps with a hierarchy of different levels).\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97756958007812,\n      \"Text\": \"For\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02569531463086605,\n          \"Height\": 0.010251673869788647,\n          \"Left\": 0.08085297793149948,\n          \"Top\": 0.24322502315044403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08085297793149948,\n            \"Y\": 0.24322502315044403\n          },\n          {\n            \"X\": 0.10654829442501068,\n            \"Y\": 0.24322502315044403\n          },\n          {\n            \"X\": 0.10654829442501068,\n            \"Y\": 0.25347667932510376\n          },\n          {\n            \"X\": 0.08085297793149948,\n            \"Y\": 0.25347667932510376\n          }\n        ]\n      },\n      \"Id\": \"2d029007-bd7b-42a4-9433-62acf76a4d93\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"91f23db3-5a24-4bfd-930a-985d64071d4a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"For \",\n      \"SearchKey\": \"For\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89972686767578,\n      \"Text\": \"our test document, adding subsections also helps consume vertical space since we need to write enough content\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7901484370231628,\n          \"Height\": 0.01249881274998188,\n          \"Left\": 0.10851114243268967,\n          \"Top\": 0.2431575059890747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10851114243268967,\n            \"Y\": 0.2431575059890747\n          },\n          {\n            \"X\": 0.8986595869064331,\n            \"Y\": 0.2431575059890747\n          },\n          {\n            \"X\": 0.8986595869064331,\n            \"Y\": 0.25565630197525024\n          },\n          {\n            \"X\": 0.10851114243268967,\n            \"Y\": 0.25565630197525024\n          }\n        ]\n      },\n      \"Id\": \"cc22e7a8-f31d-4dad-86a3-b13c42f57e2c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ea4f6e50-e2f6-4f81-befc-0a669be24693\",\n            \"cd1acb8a-02a8-415d-b91d-21bc33b6c30f\",\n            \"057ebf42-a7f5-482e-b5c1-b06b07e64957\",\n            \"d0d5ecb5-487a-49d1-931d-62efc8f85b25\",\n            \"23d02267-aebb-4131-85dc-402c3780d9eb\",\n            \"4b2241ed-bc19-445f-8409-b4adf8fa08b1\",\n            \"8a7e8776-4a3a-45a1-92c2-138bf3b1bdbc\",\n            \"2dd7efe0-1161-4076-8831-7e24b609ce27\",\n            \"832d2342-ea1b-4043-8b41-b89f7310736a\",\n            \"89e9b46c-769a-47fa-bb77-4ca955ab4ff4\",\n            \"d19f823e-31c5-4f0a-93c8-820a66e45008\",\n            \"47caa467-e4fc-4a6a-a3fb-e60b9a442e12\",\n            \"85a613d0-12de-481b-8dba-a242a7d73027\",\n            \"c2c9a6ca-878c-4dc0-b931-109bd4cf00c7\",\n            \"639083d9-1f2e-4bb8-9db5-159bf1a8ab6e\",\n            \"64c69e26-ef0f-4106-9725-1673b2beeaea\",\n            \"c349a503-c9d6-4ecd-8277-2b76a894f011\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"our test document, adding subsections also helps consume vertical space since we need to write enough content \",\n      \"SearchKey\": \"our test document, adding subsections also helps consume vertical space since we need to write enough content\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91050720214844,\n      \"Text\": \"for the total height of the page to be somewhat representative of real-world document proportions. In some cases\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7905218005180359,\n          \"Height\": 0.012663706205785275,\n          \"Left\": 0.08037678152322769,\n          \"Top\": 0.2555219531059265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08037678152322769,\n            \"Y\": 0.2555219531059265\n          },\n          {\n            \"X\": 0.8708986043930054,\n            \"Y\": 0.2555219531059265\n          },\n          {\n            \"X\": 0.8708986043930054,\n            \"Y\": 0.26818564534187317\n          },\n          {\n            \"X\": 0.08037678152322769,\n            \"Y\": 0.26818564534187317\n          }\n        ]\n      },\n      \"Id\": \"01449ba0-fd00-429c-b8a6-6b164ce334f2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c22b94ef-83d1-4bfb-913c-58c4f2a64867\",\n            \"a2dd4fce-bfe3-47ac-b973-91808ad64d8f\",\n            \"b9c53bf0-a1d1-4c37-be1e-96f50cb0c9d0\",\n            \"5efb3b57-43dd-4c54-be09-7f9907307fc2\",\n            \"519882a8-3e70-47b3-b03f-35335b21955f\",\n            \"30866566-cb00-448d-b003-983e90bccc8d\",\n            \"f9556886-324c-4daa-9ee6-b979de5655b0\",\n            \"9b24015f-f450-43c9-9fdb-bfef2bc5fbcb\",\n            \"803784d6-80bc-413f-9039-d8d408cd0362\",\n            \"59ad9c77-93a9-48ae-96f4-5fe19b812280\",\n            \"bc85df07-d855-422e-90f2-d3e764c6e0f4\",\n            \"ded1109c-a13c-4cf0-960e-e4b475b23feb\",\n            \"24fd4e45-0aca-4ec7-85b9-a42f78e32e91\",\n            \"9aa11d96-5cc2-42af-bb8f-b5892928f50d\",\n            \"1d46fa91-e165-4e8f-ab1a-5ceb3bae9e73\",\n            \"18836b46-39ad-4dc5-a648-0380ec2f094e\",\n            \"0320e885-21e8-4742-bf71-d241b2783c3d\",\n            \"3989b4c5-13d5-400d-b8a2-3050541992d3\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"for the total height of the page to be somewhat representative of real-world document proportions. In some cases \",\n      \"SearchKey\": \"for the total height of the page to be somewhat representative of real-world document proportions. In some cases\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81082153320312,\n      \"Text\": \"different subsections of the document may even change the number of text columns in the layout.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6803611516952515,\n          \"Height\": 0.012732282280921936,\n          \"Left\": 0.08006520569324493,\n          \"Top\": 0.2679198980331421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08006520569324493,\n            \"Y\": 0.2679198980331421\n          },\n          {\n            \"X\": 0.7604263424873352,\n            \"Y\": 0.2679198980331421\n          },\n          {\n            \"X\": 0.7604263424873352,\n            \"Y\": 0.28065216541290283\n          },\n          {\n            \"X\": 0.08006520569324493,\n            \"Y\": 0.28065216541290283\n          }\n        ]\n      },\n      \"Id\": \"24a3268d-a5f6-4842-a157-2978ea5b23ad\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"36f31593-f79f-4a84-9867-4e41118b868c\",\n            \"865961f7-eb11-4a90-98f3-a958f1ca80c5\",\n            \"8d8e6b97-1244-4bd8-98da-6853ff48bb9a\",\n            \"0deabf7b-2f0f-461f-bcc2-195e68537fdd\",\n            \"147a2efd-b5c6-40b0-9da2-4195aa5bd7bf\",\n            \"a1128a8c-e76d-42fd-b503-2ba93f49f1ff\",\n            \"d36a9070-e239-48ae-ab4e-f670ee53331a\",\n            \"f36d4b74-ba38-4c83-8d93-368f8b2819a5\",\n            \"35554c8f-8249-4f48-993b-d59747019137\",\n            \"fd1311bf-93eb-453f-b963-79739d76ac22\",\n            \"8a527e60-e4f9-49c7-829c-c4c750e52f47\",\n            \"3e73a48b-4e76-4e06-b90e-c61f13e372fb\",\n            \"f0bef252-73e9-4e77-821d-3da1da5402a6\",\n            \"ec8c0368-d8dd-4fad-9355-ce9df0908a84\",\n            \"9fbf3f32-0dd6-4aa7-aa63-76e80cfbe1f4\",\n            \"04f4dbbe-5b2e-4fe1-9680-f0834c3a0266\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"different subsections of the document may even change the number of text columns in the layout. \",\n      \"SearchKey\": \"different subsections of the document may even change the number of text columns in the layout.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94446563720703,\n      \"Text\": \"When a section of (LTR) text is presented in two\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3380587697029114,\n          \"Height\": 0.012358911335468292,\n          \"Left\": 0.10676950961351395,\n          \"Top\": 0.3101569414138794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10676950961351395,\n            \"Y\": 0.3101569414138794\n          },\n          {\n            \"X\": 0.4448282718658447,\n            \"Y\": 0.3101569414138794\n          },\n          {\n            \"X\": 0.4448282718658447,\n            \"Y\": 0.3225158751010895\n          },\n          {\n            \"X\": 0.10676950961351395,\n            \"Y\": 0.3225158751010895\n          }\n        ]\n      },\n      \"Id\": \"8fd1b090-4552-4386-a70f-1a6f945192e1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b93e867-212c-4510-bf8c-b9893f5f75c3\",\n            \"51c882bc-4107-4d03-8b5a-97c9885dcac8\",\n            \"bf1b4794-5df4-4ace-a0fb-0be1a4f6b14d\",\n            \"dd8d02ae-0426-427e-a6ae-706d3973d846\",\n            \"70db81f3-a253-4ec4-9d1b-ded68f38a859\",\n            \"96129c84-1e71-46c6-bf99-b6c1094d516a\",\n            \"4e915fe7-2045-4876-adae-c6d8c71f5568\",\n            \"59004c2b-13cf-47bf-8a83-f103b8614625\",\n            \"c9a271c4-1f96-4d45-9dc7-1387d23100c5\",\n            \"58cb1d0d-e360-4381-a74b-13675699e814\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"When a section of (LTR) text is presented in two \",\n      \"SearchKey\": \"When a section of (LTR) text is presented in two\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93824005126953,\n      \"Text\": \"The Amazon Textract Response Parser aims to\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3324843943119049,\n          \"Height\": 0.01255151815712452,\n          \"Left\": 0.5562419891357422,\n          \"Top\": 0.3097350597381592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5562419891357422,\n            \"Y\": 0.3097350597381592\n          },\n          {\n            \"X\": 0.8887264132499695,\n            \"Y\": 0.3097350597381592\n          },\n          {\n            \"X\": 0.8887264132499695,\n            \"Y\": 0.32228657603263855\n          },\n          {\n            \"X\": 0.5562419891357422,\n            \"Y\": 0.32228657603263855\n          }\n        ]\n      },\n      \"Id\": \"f39114d1-ca94-430d-98a0-0c29c16cebfa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3e2ed8c0-476c-4a9e-b255-a8e812b617e5\",\n            \"1b5868a5-b8e8-412f-8c77-99b320749404\",\n            \"2bbd41f8-e739-49aa-bf3b-65677ed83228\",\n            \"f417754f-91e1-498a-a23a-49eaddccf94d\",\n            \"452df3f6-cd59-4e23-b749-0f7cce89ecc7\",\n            \"437029b6-432d-48c7-8076-97f2c1f53fe2\",\n            \"65967e61-a673-4f66-84bc-910c4c878790\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"The Amazon Textract Response Parser aims to \",\n      \"SearchKey\": \"The Amazon Textract Response Parser aims to\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6915283203125,\n      \"Text\": \"columns, the intended reading order is typically to\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3481699824333191,\n          \"Height\": 0.01243538223206997,\n          \"Left\": 0.10191464424133301,\n          \"Top\": 0.3226962983608246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10191464424133301,\n            \"Y\": 0.3226962983608246\n          },\n          {\n            \"X\": 0.4500846266746521,\n            \"Y\": 0.3226962983608246\n          },\n          {\n            \"X\": 0.4500846266746521,\n            \"Y\": 0.3351316750049591\n          },\n          {\n            \"X\": 0.10191464424133301,\n            \"Y\": 0.3351316750049591\n          }\n        ]\n      },\n      \"Id\": \"a41f5435-7a7b-4174-9da0-b9518a7382b1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ed570b3-ec65-4653-93bf-e7815a52047d\",\n            \"4cc6977e-17e5-4338-bd75-25eeb69dc881\",\n            \"66ca8f7d-c5ea-43c8-95c7-a7e90ba7d030\",\n            \"1b1ca4c9-b3ea-4b53-9279-e48b27947068\",\n            \"b80236be-c98d-495f-8d91-0491cc158d20\",\n            \"b84732a3-d31a-4533-8674-519cf02e73df\",\n            \"991efad2-24b9-49a6-8bbf-905d7e0aca64\",\n            \"3656170d-3028-451a-b49c-3c4376fff29a\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"columns, the intended reading order is typically to \",\n      \"SearchKey\": \"columns, the intended reading order is typically to\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.24488067626953,\n      \"Text\": \"implement useful, generalisable parsing tools on which\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.38422277569770813,\n          \"Height\": 0.012333130463957787,\n          \"Left\": 0.5300597548484802,\n          \"Top\": 0.32270878553390503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5300597548484802,\n            \"Y\": 0.32270878553390503\n          },\n          {\n            \"X\": 0.914282500743866,\n            \"Y\": 0.32270878553390503\n          },\n          {\n            \"X\": 0.914282500743866,\n            \"Y\": 0.33504194021224976\n          },\n          {\n            \"X\": 0.5300597548484802,\n            \"Y\": 0.33504194021224976\n          }\n        ]\n      },\n      \"Id\": \"3e2e4a46-5958-420b-a5be-ab79dc1cb10d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d1c4001-e18f-44f1-939c-cb149b574b31\",\n            \"84114289-ca7a-48b9-a263-4d6644cbe380\",\n            \"8790ed65-fe9f-4b34-9742-4229f333546b\",\n            \"cc5b3153-23da-42f7-83b2-6a086485140a\",\n            \"a5cd8307-d937-49ff-b490-94bf66f536b6\",\n            \"23e9efd6-41cf-4ffd-b209-cf0ac8ae7d39\",\n            \"0f3fd83b-e6d1-4641-9b24-86d98779a8ac\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"implement useful, generalisable parsing tools on which \",\n      \"SearchKey\": \"implement useful, generalisable parsing tools on which\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.70719146728516,\n      \"Text\": \"complete one column top-to-bottom, before starting to\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3770672082901001,\n          \"Height\": 0.01254384033381939,\n          \"Left\": 0.0870555192232132,\n          \"Top\": 0.33507847785949707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0870555192232132,\n            \"Y\": 0.33507847785949707\n          },\n          {\n            \"X\": 0.4641227126121521,\n            \"Y\": 0.33507847785949707\n          },\n          {\n            \"X\": 0.4641227126121521,\n            \"Y\": 0.3476223349571228\n          },\n          {\n            \"X\": 0.0870555192232132,\n            \"Y\": 0.3476223349571228\n          }\n        ]\n      },\n      \"Id\": \"530d1805-035a-4b42-a1b5-2c61cdc1b2d3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37d2c073-0af1-41e2-a038-f03fca0f7aed\",\n            \"55709976-831a-4f43-84c7-98c99695eaaa\",\n            \"6e3d001d-cc22-46eb-aacf-30acf4196843\",\n            \"c6d66baa-0117-48cc-9ba7-a530e1cde82e\",\n            \"49499350-25d3-43f7-9888-0e9e1c20b9db\",\n            \"b3fd909f-81df-4d76-82a2-871600486550\",\n            \"90691b29-5d6d-471c-9afc-75dbbaf872c9\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"complete one column top-to-bottom, before starting to \",\n      \"SearchKey\": \"complete one column top-to-bottom, before starting to\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.55393981933594,\n      \"Text\": \"further (domain-specific) analyses can be built.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3273126482963562,\n          \"Height\": 0.012648324482142925,\n          \"Left\": 0.5586144924163818,\n          \"Top\": 0.33498865365982056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5586144924163818,\n            \"Y\": 0.33498865365982056\n          },\n          {\n            \"X\": 0.885927140712738,\n            \"Y\": 0.33498865365982056\n          },\n          {\n            \"X\": 0.885927140712738,\n            \"Y\": 0.34763696789741516\n          },\n          {\n            \"X\": 0.5586144924163818,\n            \"Y\": 0.34763696789741516\n          }\n        ]\n      },\n      \"Id\": \"62c93925-60e0-4c05-b23d-7df294c5a925\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c3cb7c7-58e2-4959-9ddd-ab08f58723aa\",\n            \"cfc2857b-4f6e-473a-81d9-bba0fee80ccf\",\n            \"76c7a2a9-4bea-4959-9ecb-ad34f536aac3\",\n            \"4dd22b0c-ad2e-4b0d-83ed-da6a432da383\",\n            \"c62cece0-7781-4d40-90e6-09ea4d25d361\",\n            \"270879ed-678d-4866-89fe-f65bb81c2b16\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"further (domain-specific) analyses can be built. \",\n      \"SearchKey\": \"further (domain-specific) analyses can be built.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.61261749267578,\n      \"Text\": \"read the next.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09801410138607025,\n          \"Height\": 0.010154512710869312,\n          \"Left\": 0.2265327423810959,\n          \"Top\": 0.3480170965194702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2265327423810959,\n            \"Y\": 0.3480170965194702\n          },\n          {\n            \"X\": 0.32454684376716614,\n            \"Y\": 0.3480170965194702\n          },\n          {\n            \"X\": 0.32454684376716614,\n            \"Y\": 0.35817161202430725\n          },\n          {\n            \"X\": 0.2265327423810959,\n            \"Y\": 0.35817161202430725\n          }\n        ]\n      },\n      \"Id\": \"97a8e5cd-569d-4a6e-8502-6c2471567ca8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d2cd9508-f428-4784-a802-bc0f4f5d8aef\",\n            \"45c908b1-3a68-4e4d-8e01-002fd04f3efe\",\n            \"c4eb8c25-baae-490e-9b05-5cb76ba36fa8\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"read the next. \",\n      \"SearchKey\": \"read the next.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8189926147461,\n      \"Text\": \"This means it cannot solve for every edge case in\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34857162833213806,\n          \"Height\": 0.012606319040060043,\n          \"Left\": 0.5480636358261108,\n          \"Top\": 0.3600616157054901\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5480636358261108,\n            \"Y\": 0.3600616157054901\n          },\n          {\n            \"X\": 0.8966352343559265,\n            \"Y\": 0.3600616157054901\n          },\n          {\n            \"X\": 0.8966352343559265,\n            \"Y\": 0.37266790866851807\n          },\n          {\n            \"X\": 0.5480636358261108,\n            \"Y\": 0.37266790866851807\n          }\n        ]\n      },\n      \"Id\": \"349c941d-6aad-48a1-bfdd-1f54f549b611\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"27ae52b5-b3e4-40dd-a1d0-c535bf8868d1\",\n            \"4f11106f-feee-400f-819d-42e6c0e1dda3\",\n            \"27279cef-3b7e-43d5-b85a-3f0b95fb4163\",\n            \"f35e045f-c1c8-49fe-8b22-81e9448457fc\",\n            \"2fee2826-b98f-4425-bc6d-1f6a8f9f5736\",\n            \"97ca1564-181f-4280-b4a8-517384f178ef\",\n            \"fc474973-dc09-4b6e-9150-f79bcd3f9383\",\n            \"20e3ac67-aa5f-4534-b589-35760b844d4c\",\n            \"296da453-5c51-458a-b5e2-20ae1cd5b458\",\n            \"d128228b-1c8c-4875-b8e5-2ee30544d9c3\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"This means it cannot solve for every edge case in \",\n      \"SearchKey\": \"This means it cannot solve for every edge case in\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.927734375,\n      \"Text\": \"However due to the broad possibilities for laying out\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3631245493888855,\n          \"Height\": 0.01256853248924017,\n          \"Left\": 0.09431112557649612,\n          \"Top\": 0.37238940596580505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09431112557649612,\n            \"Y\": 0.37238940596580505\n          },\n          {\n            \"X\": 0.457435667514801,\n            \"Y\": 0.37238940596580505\n          },\n          {\n            \"X\": 0.457435667514801,\n            \"Y\": 0.3849579393863678\n          },\n          {\n            \"X\": 0.09431112557649612,\n            \"Y\": 0.3849579393863678\n          }\n        ]\n      },\n      \"Id\": \"5081c06e-78fb-4dac-9e95-6622c1830918\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8160a385-00ec-429f-ad26-4e76c1977d8c\",\n            \"5d1115ff-ff1d-4300-ba79-a780352e8b3b\",\n            \"cece36bf-a1ad-4756-a6f5-38e3cb22b9e5\",\n            \"48fd3bf9-4590-44be-91f0-878c0d4370b3\",\n            \"405df6f4-814f-43d0-9899-8d30889a04fc\",\n            \"a85421dc-a13d-49ff-99d2-41e2b71fcf11\",\n            \"5a0be237-f8ea-4376-b206-691b59bfac36\",\n            \"9b4581f3-f5c2-4273-9ee6-f72e6b9a51c1\",\n            \"4f4b2720-2f90-4c11-98a4-3ac882fc68c1\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"However due to the broad possibilities for laying out \",\n      \"SearchKey\": \"However due to the broad possibilities for laying out\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 82.5859603881836,\n      \"Text\": \"layout analysis\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1053999736905098,\n          \"Height\": 0.012506435625255108,\n          \"Left\": 0.6636328101158142,\n          \"Top\": 0.3726050853729248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6636328101158142,\n            \"Y\": 0.3726050853729248\n          },\n          {\n            \"X\": 0.7690327763557434,\n            \"Y\": 0.3726050853729248\n          },\n          {\n            \"X\": 0.7690327763557434,\n            \"Y\": 0.385111540555954\n          },\n          {\n            \"X\": 0.6636328101158142,\n            \"Y\": 0.385111540555954\n          }\n        ]\n      },\n      \"Id\": \"6c077899-c40b-4dfa-a830-bea743266c0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a5031b04-ed3a-4e19-af7f-0427d08d7e6b\",\n            \"55fc6a44-83ec-4122-8263-a49bf6b2f48c\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"layout analysis \",\n      \"SearchKey\": \"layout analysis\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9576416015625,\n      \"Text\": \"non-conventional documents and the nature of human\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.379972368478775,\n          \"Height\": 0.010384198278188705,\n          \"Left\": 0.0857820212841034,\n          \"Top\": 0.3851155638694763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0857820212841034,\n            \"Y\": 0.3851155638694763\n          },\n          {\n            \"X\": 0.4657543897628784,\n            \"Y\": 0.3851155638694763\n          },\n          {\n            \"X\": 0.4657543897628784,\n            \"Y\": 0.3954997658729553\n          },\n          {\n            \"X\": 0.0857820212841034,\n            \"Y\": 0.3954997658729553\n          }\n        ]\n      },\n      \"Id\": \"01c93124-37de-4097-bd43-cababb13f2ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cf881aea-d060-4e22-9510-c01042cff00a\",\n            \"0b994cf1-2487-4879-aeb6-c8b3fdb2d2e6\",\n            \"bbaba6c8-7e96-4391-a969-cf6c56dd0bb9\",\n            \"87ae59d2-6786-4685-bc28-54d67b6d7d92\",\n            \"ab9d72b9-c546-4e1d-ab3b-1bb604dbeac2\",\n            \"21d71f39-00c3-44b4-bb21-2cccc37dc306\",\n            \"9b09ee67-f449-4144-82cf-22c57641e280\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"non-conventional documents and the nature of human \",\n      \"SearchKey\": \"non-conventional documents and the nature of human\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.30415344238281,\n      \"Text\": \"visual attention, It's not precise (arguably, not even\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.35574871301651,\n          \"Height\": 0.012515800073742867,\n          \"Left\": 0.09753330051898956,\n          \"Top\": 0.39755845069885254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09753330051898956,\n            \"Y\": 0.39755845069885254\n          },\n          {\n            \"X\": 0.4532819986343384,\n            \"Y\": 0.39755845069885254\n          },\n          {\n            \"X\": 0.4532819986343384,\n            \"Y\": 0.41007426381111145\n          },\n          {\n            \"X\": 0.09753330051898956,\n            \"Y\": 0.41007426381111145\n          }\n        ]\n      },\n      \"Id\": \"81e2c829-1869-47ea-b458-d959258addda\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ea00000-6728-435b-a44e-b6b2d170b987\",\n            \"439a57ae-598d-4fab-9325-22593b3b5ea1\",\n            \"1e1dfe5a-ef30-4d29-8bca-afc42ecf3817\",\n            \"b871c880-16a6-4b56-b5c2-913c9835376f\",\n            \"76206ce3-5f50-4d80-939a-42f8d7e5f682\",\n            \"b737dc90-173f-4ec9-8565-854f2425801c\",\n            \"c582dfa1-ae44-4cfb-b3d0-349bf88dcf8b\",\n            \"dc8c6be0-53b0-4483-a800-a6efdbfe99ed\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"visual attention, It's not precise (arguably, not even \",\n      \"SearchKey\": \"visual attention, It's not precise (arguably, not even\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96793365478516,\n      \"Text\": \"But at least sample documents like these can test some\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3912177085876465,\n          \"Height\": 0.012540465220808983,\n          \"Left\": 0.5270582437515259,\n          \"Top\": 0.397422194480896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5270582437515259,\n            \"Y\": 0.397422194480896\n          },\n          {\n            \"X\": 0.9182759523391724,\n            \"Y\": 0.397422194480896\n          },\n          {\n            \"X\": 0.9182759523391724,\n            \"Y\": 0.40996265411376953\n          },\n          {\n            \"X\": 0.5270582437515259,\n            \"Y\": 0.40996265411376953\n          }\n        ]\n      },\n      \"Id\": \"26bd84b4-63ca-4134-9686-cdcb8c13e7b8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7fb602ab-883c-4a6f-b86e-07646c92cd45\",\n            \"6e597dbf-bbda-4b6c-8411-280540dcb17d\",\n            \"3a1120f1-6996-4493-a6a0-893d0cd3514e\",\n            \"c4961fef-5c06-4652-815d-bcd7f545f6a7\",\n            \"b791562c-f348-428f-8592-befff4edfd38\",\n            \"0b7dffa9-151b-405e-a61a-170e047a3c8b\",\n            \"7b1888c7-554c-403b-be42-02941387e4f7\",\n            \"d8e43aed-9aac-465b-9386-b3e198cb9b29\",\n            \"85c330ce-9eb3-408d-b1e4-7acc62081892\",\n            \"b953bb9b-a84f-413a-b7ef-9529433387e7\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"But at least sample documents like these can test some \",\n      \"SearchKey\": \"But at least sample documents like these can test some\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.58163452148438,\n      \"Text\": \"possible) to define an exact linear reading order for\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3586023151874542,\n          \"Height\": 0.012622026726603508,\n          \"Left\": 0.0969717800617218,\n          \"Top\": 0.4098469913005829\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0969717800617218,\n            \"Y\": 0.4098469913005829\n          },\n          {\n            \"X\": 0.455574095249176,\n            \"Y\": 0.4098469913005829\n          },\n          {\n            \"X\": 0.455574095249176,\n            \"Y\": 0.42246901988983154\n          },\n          {\n            \"X\": 0.0969717800617218,\n            \"Y\": 0.42246901988983154\n          }\n        ]\n      },\n      \"Id\": \"ee1208a0-88a5-4465-a979-bf437e950c3e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7b91e2d7-5303-4f87-9087-925838f133ac\",\n            \"143c40b2-f5e6-4681-b22e-0b4e43d69238\",\n            \"6271749d-189d-49cd-91f7-c230a45bfc19\",\n            \"e2b42a15-e3ec-4230-979e-22e50f0ae98b\",\n            \"fb91d584-1ba7-4344-ab45-2c0b1867da49\",\n            \"0a3457f3-e0a8-4d2a-ae7f-881bb674ff55\",\n            \"ecd08d09-7739-45ff-a069-5b9c1f78318d\",\n            \"e025d5b7-3ad4-4b50-8be0-f973db14b69c\",\n            \"bdc94ba4-12aa-424a-8c30-063795f36b8f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"possible) to define an exact linear reading order for \",\n      \"SearchKey\": \"possible) to define an exact linear reading order for\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.61534118652344,\n      \"Text\": \"common, representative structures: Even if creating\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3627657890319824,\n          \"Height\": 0.012754660099744797,\n          \"Left\": 0.5411859154701233,\n          \"Top\": 0.40980714559555054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5411859154701233,\n            \"Y\": 0.40980714559555054\n          },\n          {\n            \"X\": 0.9039517045021057,\n            \"Y\": 0.40980714559555054\n          },\n          {\n            \"X\": 0.9039517045021057,\n            \"Y\": 0.42256179451942444\n          },\n          {\n            \"X\": 0.5411859154701233,\n            \"Y\": 0.42256179451942444\n          }\n        ]\n      },\n      \"Id\": \"28bb4056-4b99-4841-9d17-1c46829de0ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"73b28ab4-af9a-426d-a802-2aa271a53cb1\",\n            \"c0e34d6e-e9c8-48af-8164-6f968a96930c\",\n            \"5d3658db-8bc6-4149-b753-0345d72e8e30\",\n            \"8aa0e586-ac2c-44d1-850b-7cd88cb40fa3\",\n            \"d40a516e-f856-4ffa-876c-29b4504f12d2\",\n            \"fe5c51ac-a9be-4314-a1a8-b04a278bb3ee\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"common, representative structures: Even if creating \",\n      \"SearchKey\": \"common, representative structures: Even if creating\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93587493896484,\n      \"Text\": \"words on a richly formatted page.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23505620658397675,\n          \"Height\": 0.012426997534930706,\n          \"Left\": 0.1577208936214447,\n          \"Top\": 0.4226222038269043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1577208936214447,\n            \"Y\": 0.4226222038269043\n          },\n          {\n            \"X\": 0.39277711510658264,\n            \"Y\": 0.4226222038269043\n          },\n          {\n            \"X\": 0.39277711510658264,\n            \"Y\": 0.4350492060184479\n          },\n          {\n            \"X\": 0.1577208936214447,\n            \"Y\": 0.4350492060184479\n          }\n        ]\n      },\n      \"Id\": \"218f19af-2503-4605-833c-721fc59e1ef4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ab481daa-f526-4c9a-a2b9-3c9af4613a5b\",\n            \"db7f2870-cc8a-4f5e-972b-bb8c31cc554c\",\n            \"5f3c0027-830e-48c3-96df-e174ad26b0ca\",\n            \"4d57ced3-913b-455e-8b3d-83117f67d5e2\",\n            \"c12be6eb-050f-45ad-acad-43b1bc64605c\",\n            \"d20ddecb-68db-4f22-9b0f-90767ddd7c97\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"words on a richly formatted page. \",\n      \"SearchKey\": \"words on a richly formatted page.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91106414794922,\n      \"Text\": \"requires tackling the difficult task of writing about\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34145188331604004,\n          \"Height\": 0.012404728680849075,\n          \"Left\": 0.5520939230918884,\n          \"Top\": 0.42238330841064453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5520939230918884,\n            \"Y\": 0.42238330841064453\n          },\n          {\n            \"X\": 0.8935458064079285,\n            \"Y\": 0.42238330841064453\n          },\n          {\n            \"X\": 0.8935458064079285,\n            \"Y\": 0.4347880482673645\n          },\n          {\n            \"X\": 0.5520939230918884,\n            \"Y\": 0.4347880482673645\n          }\n        ]\n      },\n      \"Id\": \"e6ad5e96-c511-4bd1-9e00-280b4072b992\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e270ceb6-c681-4f1b-93c5-0b6f2c7b14ca\",\n            \"7c96d3ef-0a9f-470e-9cc5-ec0802f1f25b\",\n            \"43ff66a7-d529-4960-8437-27b5bd86645a\",\n            \"d4d4893a-f5a7-4015-803f-3542f7b35289\",\n            \"d992d71f-b230-408f-925e-66e56390f767\",\n            \"7f035dda-0162-4d6c-9d33-c1db912af110\",\n            \"b364a39a-13f3-4744-bbca-703aa5f642d9\",\n            \"24915002-c55d-4f80-817f-11bc4df76e8c\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"requires tackling the difficult task of writing about \",\n      \"SearchKey\": \"requires tackling the difficult task of writing about\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73524475097656,\n      \"Text\": \"nothing in particular for an entire page of content.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34467315673828125,\n          \"Height\": 0.01260792464017868,\n          \"Left\": 0.5500743985176086,\n          \"Top\": 0.435031920671463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5500743985176086,\n            \"Y\": 0.435031920671463\n          },\n          {\n            \"X\": 0.8947475552558899,\n            \"Y\": 0.435031920671463\n          },\n          {\n            \"X\": 0.8947475552558899,\n            \"Y\": 0.4476398527622223\n          },\n          {\n            \"X\": 0.5500743985176086,\n            \"Y\": 0.4476398527622223\n          }\n        ]\n      },\n      \"Id\": \"f4dc8b26-d618-4089-af09-798f817dbbf8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bf3df01c-380f-44cb-b819-9ffe38574820\",\n            \"921eb5a4-3447-4db2-8cc8-fc3c9e7ef9e6\",\n            \"fe8da84f-0bc5-43d4-bebf-57225008afe7\",\n            \"b66807ea-0f56-4989-81f3-c157af4d0ba0\",\n            \"55cd3bd7-66db-4461-a0e8-36f9a064d9cc\",\n            \"e6f140e4-3272-40d6-85d2-336ab8159531\",\n            \"77ba631e-a609-4f3a-9a2a-4d0dbb7d891c\",\n            \"b7e628fb-caa0-44fd-a99a-887980498ba0\",\n            \"d61c9055-b266-400b-a38c-f5a366dc0cc1\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"nothing in particular for an entire page of content. \",\n      \"SearchKey\": \"nothing in particular for an entire page of content.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89002227783203,\n      \"Text\": \"Depending on the use case, simple heuristics and/or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.36843037605285645,\n          \"Height\": 0.01250684354454279,\n          \"Left\": 0.09210468828678131,\n          \"Top\": 0.4474039375782013\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09210468828678131,\n            \"Y\": 0.4474039375782013\n          },\n          {\n            \"X\": 0.46053507924079895,\n            \"Y\": 0.4474039375782013\n          },\n          {\n            \"X\": 0.46053507924079895,\n            \"Y\": 0.4599107801914215\n          },\n          {\n            \"X\": 0.09210468828678131,\n            \"Y\": 0.4599107801914215\n          }\n        ]\n      },\n      \"Id\": \"ca619932-ce45-4531-b5b6-1fa1426338fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d38caaf2-2406-4bfe-a4a3-3c53ebe22818\",\n            \"edd33009-db9b-4f40-ab42-f36d65fce37d\",\n            \"8a22e3f5-452f-4b48-9629-c52b3fab1bc8\",\n            \"463250c8-3397-4726-b6fc-46b181775a56\",\n            \"eaf285f2-f74c-4751-8e83-3912fdaeb915\",\n            \"1fe3decd-c1ba-4e83-84cd-c4767a981479\",\n            \"6d9dd20c-f030-4763-87ea-091f04383dcb\",\n            \"046e6d2d-d079-4a16-b883-31b330abd49e\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Depending on the use case, simple heuristics and/or \",\n      \"SearchKey\": \"Depending on the use case, simple heuristics and/or\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57486724853516,\n      \"Text\": \"ML model-based approaches may be appropriate.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.34997063875198364,\n          \"Height\": 0.012413767166435719,\n          \"Left\": 0.1005423441529274,\n          \"Top\": 0.46008628606796265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1005423441529274,\n            \"Y\": 0.46008628606796265\n          },\n          {\n            \"X\": 0.45051300525665283,\n            \"Y\": 0.46008628606796265\n          },\n          {\n            \"X\": 0.45051300525665283,\n            \"Y\": 0.4725000560283661\n          },\n          {\n            \"X\": 0.1005423441529274,\n            \"Y\": 0.4725000560283661\n          }\n        ]\n      },\n      \"Id\": \"ef63872d-87bc-4011-aeaa-bdb0d61df66d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"410fb1f7-0836-4d2c-ae95-10fbf1e6110f\",\n            \"b6b167fd-ca79-45fa-a303-baefd453ca63\",\n            \"b84e8d7f-4b7a-41b1-b070-f7e84ce94401\",\n            \"cfe38bb3-1e54-44be-9666-a36c5661051f\",\n            \"ce7afcd6-6688-4a16-a731-c125aed59d83\",\n            \"368056f6-2473-4179-8cfd-eb232aa1b430\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"ML model-based approaches may be appropriate. \",\n      \"SearchKey\": \"ML model-based approaches may be appropriate.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.48621368408203,\n      \"Text\": \"The included sample test documents are fully synthetic.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3895677924156189,\n          \"Height\": 0.012626055628061295,\n          \"Left\": 0.5275812149047852,\n          \"Top\": 0.45988306403160095\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5275812149047852,\n            \"Y\": 0.45988306403160095\n          },\n          {\n            \"X\": 0.917149007320404,\n            \"Y\": 0.45988306403160095\n          },\n          {\n            \"X\": 0.917149007320404,\n            \"Y\": 0.47250914573669434\n          },\n          {\n            \"X\": 0.5275812149047852,\n            \"Y\": 0.47250914573669434\n          }\n        ]\n      },\n      \"Id\": \"b215ac57-2d42-484b-acf4-7f3c8d2b5dbb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3bf86288-ee89-40d0-84fc-9df99e135b9a\",\n            \"99b56790-a889-454b-ab32-b67403073d5c\",\n            \"63955f06-2c53-4a65-8b72-49669524e533\",\n            \"7f838ff6-86d0-4236-bd2f-f2bfa1c95444\",\n            \"3393f46d-14df-4ea9-9ccc-fe7b1fd8cea3\",\n            \"2a9752a4-ee54-4d21-a89e-40c15068d000\",\n            \"85e374b2-f949-4876-a3de-5c0c65818669\",\n            \"36a016fb-af81-4bdf-bd05-0c36081f7e5b\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"The included sample test documents are fully synthetic. \",\n      \"SearchKey\": \"The included sample test documents are fully synthetic.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.55889129638672,\n      \"Text\": \"After a two-column section, single-column order may sometimes be restored for follow-on content. This should appear\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8237462043762207,\n          \"Height\": 0.012652571313083172,\n          \"Left\": 0.0805133581161499,\n          \"Top\": 0.506292998790741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0805133581161499,\n            \"Y\": 0.506292998790741\n          },\n          {\n            \"X\": 0.9042595624923706,\n            \"Y\": 0.506292998790741\n          },\n          {\n            \"X\": 0.9042595624923706,\n            \"Y\": 0.518945574760437\n          },\n          {\n            \"X\": 0.0805133581161499,\n            \"Y\": 0.518945574760437\n          }\n        ]\n      },\n      \"Id\": \"d0e899dd-c476-4f18-a328-11ccd996e054\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8ea99bbd-b6a5-4dee-9e0f-6fdeb28fc750\",\n            \"95d1078c-8577-4290-afe2-6a24d8f3627d\",\n            \"fe0bfdaa-29da-457d-9427-0678e18b2a8d\",\n            \"1ed3ac15-b479-471a-8e7e-130cfa2e5e86\",\n            \"0febacdc-79c5-4197-b2b5-e444561fbeae\",\n            \"bafbc7f8-93ad-4270-8320-09181fb5d818\",\n            \"bc4ebad0-8318-4f65-bb3b-0d2d23a8e9eb\",\n            \"a5525a7e-f98b-4425-9eb4-e09fe74f06c0\",\n            \"90c45ad8-1a52-4f9f-a1e8-fee7b29a23fd\",\n            \"5fe04248-9cef-4edc-bf7f-112e54b7d572\",\n            \"9bbdbe3b-370b-44b8-a748-21171def32e3\",\n            \"cbdb79b0-fa5f-4d45-83c6-125213e63218\",\n            \"8d854719-e428-46f3-831f-e0c11d4576be\",\n            \"01b01b83-a0bc-4c32-aa3b-f699196289cc\",\n            \"9b030135-a772-40ab-9503-f2c2210a3c82\",\n            \"e6c42153-55c8-4d59-9e48-2579865ba268\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"After a two-column section, single-column order may sometimes be restored for follow-on content. This should appear \",\n      \"SearchKey\": \"After a two-column section, single-column order may sometimes be restored for follow-on content. This should appear\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.001708984375,\n      \"Text\": \"after both columns' content in the estimated reading order.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.40791526436805725,\n          \"Height\": 0.012700594030320644,\n          \"Left\": 0.08022649586200714,\n          \"Top\": 0.5186735987663269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08022649586200714,\n            \"Y\": 0.5186735987663269\n          },\n          {\n            \"X\": 0.4881417751312256,\n            \"Y\": 0.5186735987663269\n          },\n          {\n            \"X\": 0.4881417751312256,\n            \"Y\": 0.5313742160797119\n          },\n          {\n            \"X\": 0.08022649586200714,\n            \"Y\": 0.5313742160797119\n          }\n        ]\n      },\n      \"Id\": \"c05f51c9-3e18-4dd0-b88c-716e683d3358\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f566988e-98e0-44a5-8e84-e823b53ab4d3\",\n            \"89afb305-1222-4e5a-97aa-e90790d7013c\",\n            \"8a78d641-9bc6-49ab-b19f-26df5c1d0193\",\n            \"4b276a2a-3783-4736-b7dd-bb80895bb0be\",\n            \"f66ddda9-6d60-4358-97ea-11f97f6fe2a2\",\n            \"e04caf31-e3a8-43e2-a349-3e525f203007\",\n            \"a0cd1841-b39f-4740-af91-56f4901b4bc6\",\n            \"4fa4e175-9a79-4173-8eca-09b4aed72827\",\n            \"8f8107f0-2e65-431a-8c73-6deb7cd59268\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"after both columns' content in the estimated reading order. \",\n      \"SearchKey\": \"after both columns' content in the estimated reading order.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98750305175781,\n      \"Text\": \"Another section\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1619153469800949,\n          \"Height\": 0.013244247995316982,\n          \"Left\": 0.0800715982913971,\n          \"Top\": 0.5563605427742004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0800715982913971,\n            \"Y\": 0.5563605427742004\n          },\n          {\n            \"X\": 0.241986945271492,\n            \"Y\": 0.5563605427742004\n          },\n          {\n            \"X\": 0.241986945271492,\n            \"Y\": 0.5696048140525818\n          },\n          {\n            \"X\": 0.0800715982913971,\n            \"Y\": 0.5696048140525818\n          }\n        ]\n      },\n      \"Id\": \"210a07a4-6b8f-41a7-957f-a498667743c1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f4952a6-1d2a-4c28-8e57-3a97bf675dd7\",\n            \"d77ac617-cea3-410b-9fdf-dc63f94df4d2\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Another section \",\n      \"SearchKey\": \"Another section\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9442138671875,\n      \"Text\": \"Where does a header or footer end and main page content begin? To test whether a proposed implementation can\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8003509640693665,\n          \"Height\": 0.012502079829573631,\n          \"Left\": 0.07982701808214188,\n          \"Top\": 0.5857092142105103\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07982701808214188,\n            \"Y\": 0.5857092142105103\n          },\n          {\n            \"X\": 0.8801779747009277,\n            \"Y\": 0.5857092142105103\n          },\n          {\n            \"X\": 0.8801779747009277,\n            \"Y\": 0.5982112884521484\n          },\n          {\n            \"X\": 0.07982701808214188,\n            \"Y\": 0.5982112884521484\n          }\n        ]\n      },\n      \"Id\": \"9e4dd766-3503-4302-95fe-65049d39d207\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ea948f6b-40f7-4d9f-a91e-a865233de87d\",\n            \"bc372775-68db-4929-bee6-eede805bcad2\",\n            \"158e2a29-67f1-4c7a-a22a-f7b19b4db5f0\",\n            \"634c81b3-9abf-4c05-8816-cb339f3e0a9e\",\n            \"aba0ca2f-66cc-4141-996b-6f775bcdfc0f\",\n            \"79b92d9a-8588-4ca4-ba60-4fd68da7647c\",\n            \"c0ab94d1-402f-4f73-9779-c88f6cf56ac7\",\n            \"55116301-c395-4061-a34f-1f7407aa2ee5\",\n            \"3068b6b7-ab4c-442f-909c-4f10aa05c6be\",\n            \"50a30df0-226d-4840-a657-4fb93bde7465\",\n            \"168a1122-4eb3-4128-9a2b-5bd01eb28b19\",\n            \"33cc0f0e-7cc5-4565-80f7-238b26b3de75\",\n            \"b3624849-dbab-4262-953d-d399a6344f4b\",\n            \"24c6a7f2-db50-4842-825d-089ef2a22e06\",\n            \"a1d44ccd-473a-4d4c-a0d9-dcf6c09b3156\",\n            \"cc021718-ba78-4ef5-81cf-108200348aa5\",\n            \"bc8433b2-404d-4b72-96f4-bb37c4508c10\",\n            \"76f94b78-6a00-4dbb-8c87-ad143e29485d\",\n            \"106fcb27-ca69-43fa-bc24-03fb72427212\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Where does a header or footer end and main page content begin? To test whether a proposed implementation can \",\n      \"SearchKey\": \"Where does a header or footer end and main page content begin? To test whether a proposed implementation can\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.19544219970703,\n      \"Text\": \"reliably estimate that boundary, a synthetic example document like this can be useful.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5965386033058167,\n          \"Height\": 0.01266357023268938,\n          \"Left\": 0.08047720789909363,\n          \"Top\": 0.5981904864311218\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08047720789909363,\n            \"Y\": 0.5981904864311218\n          },\n          {\n            \"X\": 0.6770158410072327,\n            \"Y\": 0.5981904864311218\n          },\n          {\n            \"X\": 0.6770158410072327,\n            \"Y\": 0.6108540296554565\n          },\n          {\n            \"X\": 0.08047720789909363,\n            \"Y\": 0.6108540296554565\n          }\n        ]\n      },\n      \"Id\": \"d79d6cba-a2e5-4b78-9d40-30d5291b7d50\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1cdfb0bc-648a-4353-bbee-7040898f4332\",\n            \"59763eb6-ec3a-443d-8423-bbcfc5e43c6f\",\n            \"bbad528c-6d26-419b-80e1-2d39a0c93d45\",\n            \"84aa51ec-6c88-4289-92d4-6464f90e159c\",\n            \"f44b4406-38af-4d77-abc1-d2fdf81ccd7e\",\n            \"1f1a2521-8d06-4c4d-942e-cadd990441d7\",\n            \"b77275ba-2226-4d68-b62b-8b8169624b03\",\n            \"40ba437a-3a48-4c36-9449-80d2ca36661f\",\n            \"c15df105-2817-43de-9a9e-b80d2c79982a\",\n            \"11a8e888-4b87-4ebd-961a-73334449ac3a\",\n            \"dcb4bdab-17d1-4645-8572-05be5817a267\",\n            \"7968ac73-77ed-4d8d-b33f-88d9ffa8b851\",\n            \"f991bb16-d68b-4fb4-ab7a-7b1634a53cd9\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"reliably estimate that boundary, a synthetic example document like this can be useful. \",\n      \"SearchKey\": \"reliably estimate that boundary, a synthetic example document like this can be useful.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86630249023438,\n      \"Text\": \"The actual content of the text is not particularly important, so long as the layout is representative of real-world\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7636251449584961,\n          \"Height\": 0.012416761368513107,\n          \"Left\": 0.08008549362421036,\n          \"Top\": 0.6232619881629944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08008549362421036,\n            \"Y\": 0.6232619881629944\n          },\n          {\n            \"X\": 0.8437106013298035,\n            \"Y\": 0.6232619881629944\n          },\n          {\n            \"X\": 0.8437106013298035,\n            \"Y\": 0.635678768157959\n          },\n          {\n            \"X\": 0.08008549362421036,\n            \"Y\": 0.635678768157959\n          }\n        ]\n      },\n      \"Id\": \"b03432de-c5cf-4636-90ed-dd97aea1f6b1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"03a3738a-fc80-405b-b846-bbf49990d2ce\",\n            \"829363dc-458e-4f9b-90f6-9fc1fb517ec8\",\n            \"31d6b856-40ee-4bea-9e73-74d7c1f08530\",\n            \"20081b19-ed17-4999-be86-e01a1cca356f\",\n            \"114b9734-7843-437e-8f10-1397d43971cc\",\n            \"2ba2bb1d-e016-49e4-ae5f-ac2f773063cd\",\n            \"d8c2b7b8-0e90-461d-ba8a-cfb2fa0eed22\",\n            \"43b3ae56-847d-493f-b89c-9c9ba5eb75f1\",\n            \"ccbef527-8873-4774-9d24-58ab9a5592ab\",\n            \"1822d551-1b15-4581-bd3d-ef2c1529d839\",\n            \"99de08df-3ff0-4ff2-82c6-9b076d53a05e\",\n            \"55073024-4107-43aa-890e-315a465ad4dd\",\n            \"9046929a-1ac7-4fec-9bfa-686da130d51d\",\n            \"644f6db4-e08f-425f-8969-4d63d1ab6a3b\",\n            \"afd2d250-2164-46cf-b069-8073efb25efd\",\n            \"22ef57cb-a179-45e1-8439-2e3d3e4ef543\",\n            \"e7e8ed1b-058c-456f-9b7f-45d7867b222a\",\n            \"fb71a34e-a6e4-44ef-9e5e-2a738ae260b6\",\n            \"a1a196c8-01e9-4009-9351-856660a73eef\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"The actual content of the text is not particularly important, so long as the layout is representative of real-world \",\n      \"SearchKey\": \"The actual content of the text is not particularly important, so long as the layout is representative of real-world\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95409393310547,\n      \"Text\": \"documents and the models and approaches being tested are layout-based rather than using cues from the text or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7925990223884583,\n          \"Height\": 0.012308520264923573,\n          \"Left\": 0.079974465072155,\n          \"Top\": 0.6359662413597107\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.079974465072155,\n            \"Y\": 0.6359662413597107\n          },\n          {\n            \"X\": 0.8725734949111938,\n            \"Y\": 0.6359662413597107\n          },\n          {\n            \"X\": 0.8725734949111938,\n            \"Y\": 0.6482747793197632\n          },\n          {\n            \"X\": 0.079974465072155,\n            \"Y\": 0.6482747793197632\n          }\n        ]\n      },\n      \"Id\": \"7c3701d1-16f4-43ea-aba8-8e80b9e770a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2e8208d9-c97e-4f24-a6ed-7bf9aac581c6\",\n            \"ae6cb0c3-4a9e-41ca-bee6-e53691c7b799\",\n            \"b724bc34-5b5e-40dd-aeef-e1623755c650\",\n            \"73642f32-a1eb-430d-8755-c44938a091ff\",\n            \"f719b8ab-633d-4891-91b5-e4045ec8be05\",\n            \"d56229a0-451d-4779-a1c1-0ff7aa5ade23\",\n            \"bdf8a37d-3b42-451e-b64e-91c38934e4bc\",\n            \"8fc9ad24-78ef-4d45-9dc2-b24a904aacf9\",\n            \"94e495bb-2ae8-45bf-963b-3b124e54ab72\",\n            \"5ed3b58a-a60e-4705-a7fc-690aeb0ac95b\",\n            \"9962ba26-1dd3-410c-a5d0-092a3b354eb1\",\n            \"a7d4a7d8-67a0-487b-84ea-a34151bb7262\",\n            \"65f7079c-0917-46c3-b0ba-fc85036cf7bf\",\n            \"6b581346-2618-4391-a131-d9196d3754db\",\n            \"fd286c58-7d65-4c30-a10a-91a317571894\",\n            \"1a48c0ae-64be-4b26-a957-477a95a350fa\",\n            \"d4eb7ad5-3aac-44c6-8597-3841167cb872\",\n            \"47a2b927-11b9-42e0-aae0-85ed147bb7d3\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"documents and the models and approaches being tested are layout-based rather than using cues from the text or \",\n      \"SearchKey\": \"documents and the models and approaches being tested are layout-based rather than using cues from the text or\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.15603637695312,\n      \"Text\": \"combining multiple signals (such as layout, text, and maybe even imagery) together.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5872425436973572,\n          \"Height\": 0.012649250216782093,\n          \"Left\": 0.08033029735088348,\n          \"Top\": 0.6481142640113831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08033029735088348,\n            \"Y\": 0.6481142640113831\n          },\n          {\n            \"X\": 0.6675727963447571,\n            \"Y\": 0.6481142640113831\n          },\n          {\n            \"X\": 0.6675727963447571,\n            \"Y\": 0.6607635021209717\n          },\n          {\n            \"X\": 0.08033029735088348,\n            \"Y\": 0.6607635021209717\n          }\n        ]\n      },\n      \"Id\": \"9ff044a1-d9a6-47f9-be93-57f627cfc9c3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d95bd74d-ef06-4102-b0b8-0859844b53a7\",\n            \"53efbf7f-5194-4cfb-9510-92094fa622ea\",\n            \"7a2e83f6-23db-489a-8504-d6e49fa979f7\",\n            \"d814eea4-ccd1-4c24-9586-735c77faca63\",\n            \"c503a864-0196-4cd1-8ba5-1c053abfbdcd\",\n            \"cee17701-e46d-4809-9be9-97ee140cfaaa\",\n            \"715952e5-8a7c-403d-8466-e5574a822418\",\n            \"20a1cf15-23c7-46f5-a117-72ad33d73808\",\n            \"d0576cb4-eb7f-4623-9a14-2bc713e13586\",\n            \"817c6975-7ccc-40fc-8440-a53a3d5bed1e\",\n            \"a6a7905a-cd32-4820-a7e2-efd64139af44\",\n            \"0320cb4b-572d-434a-a4ed-3ec4210fcc8f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"combining multiple signals (such as layout, text, and maybe even imagery) together. \",\n      \"SearchKey\": \"combining multiple signals (such as layout, text, and maybe even imagery) together.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84254455566406,\n      \"Text\": \"Even the representativeness of the layout need only be approximate, as different documents will represent different\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8044508695602417,\n          \"Height\": 0.01249298732727766,\n          \"Left\": 0.08082366734743118,\n          \"Top\": 0.6731557250022888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08082366734743118,\n            \"Y\": 0.6731557250022888\n          },\n          {\n            \"X\": 0.8852745294570923,\n            \"Y\": 0.6731557250022888\n          },\n          {\n            \"X\": 0.8852745294570923,\n            \"Y\": 0.6856486797332764\n          },\n          {\n            \"X\": 0.08082366734743118,\n            \"Y\": 0.6856486797332764\n          }\n        ]\n      },\n      \"Id\": \"e0f16c65-92ed-4dbf-b487-95cdc941686b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4e4aa494-f89e-418f-a0c5-099b718f8b96\",\n            \"50f3f0dd-90b1-4ebf-a904-09b193f499d1\",\n            \"a2b8d042-d185-4db0-a6a5-5f5d61b54b33\",\n            \"e45cee8d-04de-4e93-9005-c70df3e02c17\",\n            \"4475be1f-1921-403a-b844-55559a05e45e\",\n            \"074ad696-dd81-4015-a498-ac6508326106\",\n            \"e182b49c-4898-426e-b7d8-3433a3d8fd21\",\n            \"71da0d40-9bd5-4b8e-a01f-47a5adf0aee7\",\n            \"54664ec3-a639-49f9-92bd-15064563030f\",\n            \"c7d63da4-ff5d-4596-ae59-b71d4eadc625\",\n            \"e9ca84a3-f3ef-4085-849b-cd8516349bc7\",\n            \"6cbc217e-17c6-4705-b5fd-2396cc4dc89b\",\n            \"6c174d5c-554d-475c-8b9d-427efd6aa1e8\",\n            \"aba48989-46bd-4cf6-9b8a-aa517d4238b8\",\n            \"fdf40d5d-ea4f-4211-ac46-a657f588bd32\",\n            \"8804b317-64aa-4c5d-9659-fc8f91a90671\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Even the representativeness of the layout need only be approximate, as different documents will represent different \",\n      \"SearchKey\": \"Even the representativeness of the layout need only be approximate, as different documents will represent different\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59748840332031,\n      \"Text\": \"formatting choices such as margins, page size and shape, and separation between typographic elements.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7377602458000183,\n          \"Height\": 0.012538068927824497,\n          \"Left\": 0.08082075417041779,\n          \"Top\": 0.6858126521110535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08082075417041779,\n            \"Y\": 0.6858126521110535\n          },\n          {\n            \"X\": 0.8185809850692749,\n            \"Y\": 0.6858126521110535\n          },\n          {\n            \"X\": 0.8185809850692749,\n            \"Y\": 0.698350727558136\n          },\n          {\n            \"X\": 0.08082075417041779,\n            \"Y\": 0.698350727558136\n          }\n        ]\n      },\n      \"Id\": \"1b48d68f-8a36-4950-bc7d-adb60e191284\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9fa28165-9e2f-48e6-8c42-89a7b061e243\",\n            \"474bfd4f-278f-4302-867b-248f7e936073\",\n            \"f8fcbd89-e2f1-43d0-b982-a97a2c0688b8\",\n            \"e2b7395d-bfb2-431e-92f0-91d18c5ceb80\",\n            \"358a9f48-5159-46ba-862c-91dca4a306c3\",\n            \"d9cc87bf-7666-4240-9958-fc34f9659ada\",\n            \"cf58afef-f554-4455-a367-a732dfa1408a\",\n            \"80681090-8aab-4fcb-ab41-1431a0d59100\",\n            \"0788a040-a3a7-4d9e-af19-f10238304850\",\n            \"fe07faaf-e3b0-4d68-9e58-983152fdab9f\",\n            \"57d118fe-f784-47a0-a57f-06c6f0d0d90e\",\n            \"b1f4b7f8-3e88-4df2-82f4-d4ea93028612\",\n            \"f97d2cf8-d22c-450b-aeb8-f49e5f2d71b6\",\n            \"541d92d8-bb2e-427a-b32e-ae4d83addce7\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"formatting choices such as margins, page size and shape, and separation between typographic elements. \",\n      \"SearchKey\": \"formatting choices such as margins, page size and shape, and separation between typographic elements.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92276763916016,\n      \"Text\": \"A final section\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14518430829048157,\n          \"Height\": 0.013099255040287971,\n          \"Left\": 0.08037164807319641,\n          \"Top\": 0.7231423258781433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08037164807319641,\n            \"Y\": 0.7231423258781433\n          },\n          {\n            \"X\": 0.22555595636367798,\n            \"Y\": 0.7231423258781433\n          },\n          {\n            \"X\": 0.22555595636367798,\n            \"Y\": 0.7362415790557861\n          },\n          {\n            \"X\": 0.08037164807319641,\n            \"Y\": 0.7362415790557861\n          }\n        ]\n      },\n      \"Id\": \"80e129fb-25d8-4713-b075-43801790fcce\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3935b7c6-8d93-46cc-8dda-7e80fa51e3d8\",\n            \"b3f0a91e-70e2-470a-9e34-8e6b2cf724af\",\n            \"2106b70f-2c10-4ef2-bdec-4ffca8eae026\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"A final section \",\n      \"SearchKey\": \"A final section\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8011245727539,\n      \"Text\": \"In light of this variability, let's close the main content here and proceed to the footer. Not every document will have both\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8273507356643677,\n          \"Height\": 0.012465164996683598,\n          \"Left\": 0.08102068305015564,\n          \"Top\": 0.7525574564933777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08102068305015564,\n            \"Y\": 0.7525574564933777\n          },\n          {\n            \"X\": 0.9083713889122009,\n            \"Y\": 0.7525574564933777\n          },\n          {\n            \"X\": 0.9083713889122009,\n            \"Y\": 0.7650225758552551\n          },\n          {\n            \"X\": 0.08102068305015564,\n            \"Y\": 0.7650225758552551\n          }\n        ]\n      },\n      \"Id\": \"19aeed7a-8ac9-48fc-b2c7-c02b28bb340e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6326980a-ba0c-4475-bf21-ae7c51975512\",\n            \"b7bd72e4-fcf6-494d-b2aa-0955bacc528e\",\n            \"740292e0-d116-4919-b4d6-591ff2255975\",\n            \"ed839e38-b32c-47db-96d6-71777a86c03f\",\n            \"94353f25-9f56-4057-b519-84620cbd887d\",\n            \"a1506af9-ea3c-4ff2-9de3-70ee5ced4007\",\n            \"bac688f3-995e-404f-bc02-90c2301ef9aa\",\n            \"b57f7772-9e15-4c91-bb57-5148f4d69484\",\n            \"3dd9bfee-d2a5-45f9-8ea9-162025ca6aa3\",\n            \"d3cd2230-1478-491c-89da-0937903949d9\",\n            \"59419aaf-35c6-4101-a8b7-daa6c29f851e\",\n            \"088fd3f0-3e9a-4752-8493-2e6e0073b416\",\n            \"ce5a053a-2ab4-42d0-8e32-d00a573479e9\",\n            \"35631da0-a3f1-4b4d-9796-af35de54b182\",\n            \"ebb0ac82-add7-460a-8384-328d360549fa\",\n            \"21747fbe-c3bf-4132-8ed2-e06c0e8a01ca\",\n            \"7bb436c6-8b57-4e0a-ada7-cd9972c24028\",\n            \"ecc4ef51-7237-4910-b1e1-8ae0f0bdf1bf\",\n            \"b712b71e-61b1-444e-9856-72aa8240a9d3\",\n            \"c95067bb-abdd-4f3f-8b64-bd113e01aefa\",\n            \"e78fc81e-e30f-4237-8eb3-2bc8bbc31ebe\",\n            \"55e243fc-1320-43fe-b0eb-420b229a5d51\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"In light of this variability, let's close the main content here and proceed to the footer. Not every document will have both \",\n      \"SearchKey\": \"In light of this variability, let's close the main content here and proceed to the footer. Not every document will have both\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.4179916381836,\n      \"Text\": \"a header and a footer, but this sample page will aim to exercise both functionalities.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5817493796348572,\n          \"Height\": 0.012629703618586063,\n          \"Left\": 0.08064865320920944,\n          \"Top\": 0.7650188207626343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08064865320920944,\n            \"Y\": 0.7650188207626343\n          },\n          {\n            \"X\": 0.6623980402946472,\n            \"Y\": 0.7650188207626343\n          },\n          {\n            \"X\": 0.6623980402946472,\n            \"Y\": 0.7776485681533813\n          },\n          {\n            \"X\": 0.08064865320920944,\n            \"Y\": 0.7776485681533813\n          }\n        ]\n      },\n      \"Id\": \"fd3b48f2-61b9-4452-8adb-fc19668bce08\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52cfd6d3-b028-444c-ad1d-6a408eb8c3d6\",\n            \"9a81210c-f7ee-4c4f-a2c3-b317c2dded23\",\n            \"110e7fdd-6b4a-4b79-902d-cdbb30a8dc63\",\n            \"3c19207a-a718-4765-a661-85d4ad5917b3\",\n            \"dedffc0d-b261-46f8-857f-648599b80731\",\n            \"4cccaa26-1ad4-4434-8f4f-ead4ba33bb6e\",\n            \"1d7e49cf-c3ce-4191-8ccf-0b0d1ce6b4a5\",\n            \"349c09db-aedd-4c54-9a08-a4f77fdd7c42\",\n            \"4738c11b-1107-422c-8d67-287ecdbf0f3a\",\n            \"fb73d726-dd02-4bf5-9a30-cffce45bc82f\",\n            \"703fad9c-05cd-4916-b45a-36d3daaeda4c\",\n            \"a70c4ce8-6d09-4e09-be17-83c1a752fb5f\",\n            \"12129e0b-0290-4cfe-aac3-3de8b3d84cac\",\n            \"aa1eff56-358e-44d7-9990-618a57d9f481\",\n            \"3d1c7fab-1b97-4748-afa0-e109742c7932\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"a header and a footer, but this sample page will aim to exercise both functionalities. \",\n      \"SearchKey\": \"a header and a footer, but this sample page will aim to exercise both functionalities.\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.58444213867188,\n      \"Text\": \"Left-aligned footer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12998244166374207,\n          \"Height\": 0.01284275483340025,\n          \"Left\": 0.07994250953197479,\n          \"Top\": 0.9166613817214966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07994250953197479,\n            \"Y\": 0.9166613817214966\n          },\n          {\n            \"X\": 0.20992495119571686,\n            \"Y\": 0.9166613817214966\n          },\n          {\n            \"X\": 0.20992495119571686,\n            \"Y\": 0.9295040965080261\n          },\n          {\n            \"X\": 0.07994250953197479,\n            \"Y\": 0.9295040965080261\n          }\n        ]\n      },\n      \"Id\": \"1004419a-5cbe-4aa2-97ab-5bbff2ff07f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd013608-22d3-4d61-ac86-e42300a070aa\",\n            \"54f61372-393b-4673-92af-4b0b93a5f0b3\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Left-aligned footer \",\n      \"SearchKey\": \"Left-aligned footer\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.484375,\n      \"Text\": \"Multi-line centered\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13075783848762512,\n          \"Height\": 0.010416812263429165,\n          \"Left\": 0.43380242586135864,\n          \"Top\": 0.9167848825454712\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43380242586135864,\n            \"Y\": 0.9167848825454712\n          },\n          {\n            \"X\": 0.5645602941513062,\n            \"Y\": 0.9167848825454712\n          },\n          {\n            \"X\": 0.5645602941513062,\n            \"Y\": 0.9272016882896423\n          },\n          {\n            \"X\": 0.43380242586135864,\n            \"Y\": 0.9272016882896423\n          }\n        ]\n      },\n      \"Id\": \"7742b814-b8bd-486b-8dbf-b0357d1db29f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0fde7ffc-7515-45be-9d1c-eb7c0d1cf9d8\",\n            \"25eab4e5-9f27-4ed2-90d5-5efcadc5665f\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Multi-line centered \",\n      \"SearchKey\": \"Multi-line centered\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75161743164062,\n      \"Text\": \"Page of 1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0798574835062027,\n          \"Height\": 0.012639123015105724,\n          \"Left\": 0.8364420533180237,\n          \"Top\": 0.9166536331176758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8364420533180237,\n            \"Y\": 0.9166536331176758\n          },\n          {\n            \"X\": 0.9162995219230652,\n            \"Y\": 0.9166536331176758\n          },\n          {\n            \"X\": 0.9162995219230652,\n            \"Y\": 0.9292927384376526\n          },\n          {\n            \"X\": 0.8364420533180237,\n            \"Y\": 0.9292927384376526\n          }\n        ]\n      },\n      \"Id\": \"f83a8bc2-e820-4d0a-84c1-3a58b83587d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4b549ff7-6c28-420a-b3b1-08fc08157e91\",\n            \"05af2b1c-a276-4915-8e65-fd8c2887b036\",\n            \"60971baf-bdcb-45a7-b1a8-723a5c9cd27b\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"Page of 1 \",\n      \"SearchKey\": \"Page of 1\"\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94345092773438,\n      \"Text\": \"footer content\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0988105833530426,\n          \"Height\": 0.010426612570881844,\n          \"Left\": 0.4498787522315979,\n          \"Top\": 0.9293389320373535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4498787522315979,\n            \"Y\": 0.9293389320373535\n          },\n          {\n            \"X\": 0.5486893057823181,\n            \"Y\": 0.9293389320373535\n          },\n          {\n            \"X\": 0.5486893057823181,\n            \"Y\": 0.9397655129432678\n          },\n          {\n            \"X\": 0.4498787522315979,\n            \"Y\": 0.9397655129432678\n          }\n        ]\n      },\n      \"Id\": \"88385390-5c54-4bb6-87ed-f4e885a0a01f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1aaa102-2294-4526-9990-d0ca8be90881\",\n            \"8b3f9ee1-3910-4d31-b613-34dc6d1320fb\"\n          ]\n        }\n      ],\n      \"Page\": 1,\n      \"childText\": \"footer content \",\n      \"SearchKey\": \"footer content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57554626464844,\n      \"Text\": \"Left-aligned\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08403867483139038,\n          \"Height\": 0.01216311939060688,\n          \"Left\": 0.0804760754108429,\n          \"Top\": 0.06314200162887573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0804760754108429,\n            \"Y\": 0.06314200162887573\n          },\n          {\n            \"X\": 0.16451475024223328,\n            \"Y\": 0.06314200162887573\n          },\n          {\n            \"X\": 0.16451475024223328,\n            \"Y\": 0.07530511915683746\n          },\n          {\n            \"X\": 0.0804760754108429,\n            \"Y\": 0.07530511915683746\n          }\n        ]\n      },\n      \"Id\": \"2f1a592c-b869-41b6-b8cd-398730905b6d\",\n      \"Page\": 1,\n      \"SearchKey\": \"Left-aligned\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97080993652344,\n      \"Text\": \"header\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05192335322499275,\n          \"Height\": 0.010656093247234821,\n          \"Left\": 0.1668386608362198,\n          \"Top\": 0.06311748176813126\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1668386608362198,\n            \"Y\": 0.06311748176813126\n          },\n          {\n            \"X\": 0.21876201033592224,\n            \"Y\": 0.06311748176813126\n          },\n          {\n            \"X\": 0.21876201033592224,\n            \"Y\": 0.0737735778093338\n          },\n          {\n            \"X\": 0.1668386608362198,\n            \"Y\": 0.0737735778093338\n          }\n        ]\n      },\n      \"Id\": \"c920d150-f3d5-4bcc-9fb5-aa2d869e85c5\",\n      \"Page\": 1,\n      \"SearchKey\": \"header\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91864013671875,\n      \"Text\": \"right-aligned\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09001185745000839,\n          \"Height\": 0.01243581809103489,\n          \"Left\": 0.7760204076766968,\n          \"Top\": 0.0630587786436081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7760204076766968,\n            \"Y\": 0.0630587786436081\n          },\n          {\n            \"X\": 0.8660322427749634,\n            \"Y\": 0.0630587786436081\n          },\n          {\n            \"X\": 0.8660322427749634,\n            \"Y\": 0.07549459487199783\n          },\n          {\n            \"X\": 0.7760204076766968,\n            \"Y\": 0.07549459487199783\n          }\n        ]\n      },\n      \"Id\": \"22253399-2537-4084-949f-98f5186fcecc\",\n      \"Page\": 1,\n      \"SearchKey\": \"right-aligned\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.967041015625,\n      \"Text\": \"header\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051286373287439346,\n          \"Height\": 0.010302649810910225,\n          \"Left\": 0.8672215342521667,\n          \"Top\": 0.06322924047708511\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8672215342521667,\n            \"Y\": 0.06322924047708511\n          },\n          {\n            \"X\": 0.9185078740119934,\n            \"Y\": 0.06322924047708511\n          },\n          {\n            \"X\": 0.9185078740119934,\n            \"Y\": 0.07353189587593079\n          },\n          {\n            \"X\": 0.8672215342521667,\n            \"Y\": 0.07353189587593079\n          }\n        ]\n      },\n      \"Id\": \"ee682403-b4ea-4ba2-a324-5be131611260\",\n      \"Page\": 1,\n      \"SearchKey\": \"header\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76431274414062,\n      \"Text\": \"With\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033225543797016144,\n          \"Height\": 0.010350862517952919,\n          \"Left\": 0.08013208955526352,\n          \"Top\": 0.07555448263883591\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08013208955526352,\n            \"Y\": 0.07555448263883591\n          },\n          {\n            \"X\": 0.11335763335227966,\n            \"Y\": 0.07555448263883591\n          },\n          {\n            \"X\": 0.11335763335227966,\n            \"Y\": 0.08590535074472427\n          },\n          {\n            \"X\": 0.08013208955526352,\n            \"Y\": 0.08590535074472427\n          }\n        ]\n      },\n      \"Id\": \"c908480c-f091-4743-a40c-c6d813de916f\",\n      \"Page\": 1,\n      \"SearchKey\": \"With\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57086181640625,\n      \"Text\": \"multiple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05554710701107979,\n          \"Height\": 0.012247852981090546,\n          \"Left\": 0.11694207787513733,\n          \"Top\": 0.07569617033004761\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11694207787513733,\n            \"Y\": 0.07569617033004761\n          },\n          {\n            \"X\": 0.17248918116092682,\n            \"Y\": 0.07569617033004761\n          },\n          {\n            \"X\": 0.17248918116092682,\n            \"Y\": 0.08794402331113815\n          },\n          {\n            \"X\": 0.11694207787513733,\n            \"Y\": 0.08794402331113815\n          }\n        ]\n      },\n      \"Id\": \"9b8de689-4d46-4d32-868b-5f12d3c48aa9\",\n      \"Page\": 1,\n      \"SearchKey\": \"multiple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96977233886719,\n      \"Text\": \"lines\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03478843346238136,\n          \"Height\": 0.010123206302523613,\n          \"Left\": 0.17497754096984863,\n          \"Top\": 0.07562042027711868\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17497754096984863,\n            \"Y\": 0.07562042027711868\n          },\n          {\n            \"X\": 0.2097659856081009,\n            \"Y\": 0.07562042027711868\n          },\n          {\n            \"X\": 0.2097659856081009,\n            \"Y\": 0.08574362844228745\n          },\n          {\n            \"X\": 0.17497754096984863,\n            \"Y\": 0.08574362844228745\n          }\n        ]\n      },\n      \"Id\": \"ce30480c-b56c-4666-b5af-1d6b8d87bad8\",\n      \"Page\": 1,\n      \"SearchKey\": \"lines\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.39543914794922,\n      \"Text\": \"CENTER-ALIGNED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14241145551204681,\n          \"Height\": 0.010327069088816643,\n          \"Left\": 0.3932524025440216,\n          \"Top\": 0.07557423412799835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3932524025440216,\n            \"Y\": 0.07557423412799835\n          },\n          {\n            \"X\": 0.5356638431549072,\n            \"Y\": 0.07557423412799835\n          },\n          {\n            \"X\": 0.5356638431549072,\n            \"Y\": 0.08590130507946014\n          },\n          {\n            \"X\": 0.3932524025440216,\n            \"Y\": 0.08590130507946014\n          }\n        ]\n      },\n      \"Id\": \"01f7499a-a6ea-4596-b532-f5f6ad21fc1a\",\n      \"Page\": 1,\n      \"SearchKey\": \"CENTER-ALIGNED\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89923095703125,\n      \"Text\": \"HEADER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06810392439365387,\n          \"Height\": 0.010602829977869987,\n          \"Left\": 0.5371257662773132,\n          \"Top\": 0.07536332309246063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5371257662773132,\n            \"Y\": 0.07536332309246063\n          },\n          {\n            \"X\": 0.6052296757698059,\n            \"Y\": 0.07536332309246063\n          },\n          {\n            \"X\": 0.6052296757698059,\n            \"Y\": 0.08596615493297577\n          },\n          {\n            \"X\": 0.5371257662773132,\n            \"Y\": 0.08596615493297577\n          }\n        ]\n      },\n      \"Id\": \"10894400-e1a7-49f8-8c0e-7ddf1f243a4f\",\n      \"Page\": 1,\n      \"SearchKey\": \"HEADER\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92744445800781,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030847536399960518,\n          \"Height\": 0.009956053458154202,\n          \"Left\": 0.7921223640441895,\n          \"Top\": 0.07596956193447113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7921223640441895,\n            \"Y\": 0.07596956193447113\n          },\n          {\n            \"X\": 0.822969913482666,\n            \"Y\": 0.07596956193447113\n          },\n          {\n            \"X\": 0.822969913482666,\n            \"Y\": 0.0859256163239479\n          },\n          {\n            \"X\": 0.7921223640441895,\n            \"Y\": 0.0859256163239479\n          }\n        ]\n      },\n      \"Id\": \"2a86ae51-ea3f-42fd-a970-8330a8c4988a\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8114242553711,\n      \"Text\": \"multiple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05513904616236687,\n          \"Height\": 0.012170442380011082,\n          \"Left\": 0.8258406519889832,\n          \"Top\": 0.07582508772611618\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8258406519889832,\n            \"Y\": 0.07582508772611618\n          },\n          {\n            \"X\": 0.8809796571731567,\n            \"Y\": 0.07582508772611618\n          },\n          {\n            \"X\": 0.8809796571731567,\n            \"Y\": 0.08799552917480469\n          },\n          {\n            \"X\": 0.8258406519889832,\n            \"Y\": 0.08799552917480469\n          }\n        ]\n      },\n      \"Id\": \"db740735-f7fe-4639-b452-4602c5bd7cae\",\n      \"Page\": 1,\n      \"SearchKey\": \"multiple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96426391601562,\n      \"Text\": \"lines\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03459321707487106,\n          \"Height\": 0.010221673175692558,\n          \"Left\": 0.8839846253395081,\n          \"Top\": 0.07550430297851562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8839846253395081,\n            \"Y\": 0.07550430297851562\n          },\n          {\n            \"X\": 0.9185777902603149,\n            \"Y\": 0.07550430297851562\n          },\n          {\n            \"X\": 0.9185777902603149,\n            \"Y\": 0.08572597056627274\n          },\n          {\n            \"X\": 0.8839846253395081,\n            \"Y\": 0.08572597056627274\n          }\n        ]\n      },\n      \"Id\": \"0c6fd550-e707-4f5a-82cd-77f1a272336a\",\n      \"Page\": 1,\n      \"SearchKey\": \"lines\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9615707397461,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03216271847486496,\n          \"Height\": 0.010162598453462124,\n          \"Left\": 0.08018822222948074,\n          \"Top\": 0.11394230276346207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08018822222948074,\n            \"Y\": 0.11394230276346207\n          },\n          {\n            \"X\": 0.1123509481549263,\n            \"Y\": 0.11394230276346207\n          },\n          {\n            \"X\": 0.1123509481549263,\n            \"Y\": 0.12410490214824677\n          },\n          {\n            \"X\": 0.08018822222948074,\n            \"Y\": 0.12410490214824677\n          }\n        ]\n      },\n      \"Id\": \"282359d3-2fd2-480e-ba23-f869793bf65b\",\n      \"Page\": 1,\n      \"SearchKey\": \"This\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97091674804688,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03704868257045746,\n          \"Height\": 0.010425631888210773,\n          \"Left\": 0.11425420641899109,\n          \"Top\": 0.11593155562877655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11425420641899109,\n            \"Y\": 0.11593155562877655\n          },\n          {\n            \"X\": 0.15130288898944855,\n            \"Y\": 0.11593155562877655\n          },\n          {\n            \"X\": 0.15130288898944855,\n            \"Y\": 0.12635718286037445\n          },\n          {\n            \"X\": 0.11425420641899109,\n            \"Y\": 0.12635718286037445\n          }\n        ]\n      },\n      \"Id\": \"a465bdae-0a71-4264-90e1-11f3fd31db34\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98287963867188,\n      \"Text\": \"tests\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03557983785867691,\n          \"Height\": 0.009908929467201233,\n          \"Left\": 0.15396544337272644,\n          \"Top\": 0.11429736763238907\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15396544337272644,\n            \"Y\": 0.11429736763238907\n          },\n          {\n            \"X\": 0.18954527378082275,\n            \"Y\": 0.11429736763238907\n          },\n          {\n            \"X\": 0.18954527378082275,\n            \"Y\": 0.1242062970995903\n          },\n          {\n            \"X\": 0.15396544337272644,\n            \"Y\": 0.1242062970995903\n          }\n        ]\n      },\n      \"Id\": \"28842630-a3a3-4de0-a564-27c6c115981a\",\n      \"Page\": 1,\n      \"SearchKey\": \"tests\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99347686767578,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023882951587438583,\n          \"Height\": 0.010007969103753567,\n          \"Left\": 0.19138924777507782,\n          \"Top\": 0.11406680196523666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19138924777507782,\n            \"Y\": 0.11406680196523666\n          },\n          {\n            \"X\": 0.2152722030878067,\n            \"Y\": 0.11406680196523666\n          },\n          {\n            \"X\": 0.2152722030878067,\n            \"Y\": 0.12407476454973221\n          },\n          {\n            \"X\": 0.19138924777507782,\n            \"Y\": 0.12407476454973221\n          }\n        ]\n      },\n      \"Id\": \"b7e96c0d-5fe5-4ed0-9f04-7539eaa1f1e5\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97421264648438,\n      \"Text\": \"capability\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06802067160606384,\n          \"Height\": 0.012400699779391289,\n          \"Left\": 0.2180679440498352,\n          \"Top\": 0.11383219808340073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2180679440498352,\n            \"Y\": 0.11383219808340073\n          },\n          {\n            \"X\": 0.28608861565589905,\n            \"Y\": 0.11383219808340073\n          },\n          {\n            \"X\": 0.28608861565589905,\n            \"Y\": 0.12623289227485657\n          },\n          {\n            \"X\": 0.2180679440498352,\n            \"Y\": 0.12623289227485657\n          }\n        ]\n      },\n      \"Id\": \"5ae63d02-404d-4b9f-a1fe-808ac80f8b3c\",\n      \"Page\": 1,\n      \"SearchKey\": \"capability\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98960876464844,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01555831078439951,\n          \"Height\": 0.009932287037372589,\n          \"Left\": 0.2880106568336487,\n          \"Top\": 0.11428263038396835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2880106568336487,\n            \"Y\": 0.11428263038396835\n          },\n          {\n            \"X\": 0.303568959236145,\n            \"Y\": 0.11428263038396835\n          },\n          {\n            \"X\": 0.303568959236145,\n            \"Y\": 0.12421491742134094\n          },\n          {\n            \"X\": 0.2880106568336487,\n            \"Y\": 0.12421491742134094\n          }\n        ]\n      },\n      \"Id\": \"373598a9-f796-4b06-9616-21abef5221dc\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95404815673828,\n      \"Text\": \"analyze\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05637280270457268,\n          \"Height\": 0.011637052521109581,\n          \"Left\": 0.3057621717453003,\n          \"Top\": 0.11445032060146332\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3057621717453003,\n            \"Y\": 0.11445032060146332\n          },\n          {\n            \"X\": 0.3621349632740021,\n            \"Y\": 0.11445032060146332\n          },\n          {\n            \"X\": 0.3621349632740021,\n            \"Y\": 0.12608738243579865\n          },\n          {\n            \"X\": 0.3057621717453003,\n            \"Y\": 0.12608738243579865\n          }\n        ]\n      },\n      \"Id\": \"08e78270-fd17-4ed0-815a-67e32e37377e\",\n      \"Page\": 1,\n      \"SearchKey\": \"analyze\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99280548095703,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028278766199946404,\n          \"Height\": 0.010025909170508385,\n          \"Left\": 0.36464187502861023,\n          \"Top\": 0.1141284853219986\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36464187502861023,\n            \"Y\": 0.1141284853219986\n          },\n          {\n            \"X\": 0.3929206430912018,\n            \"Y\": 0.1141284853219986\n          },\n          {\n            \"X\": 0.3929206430912018,\n            \"Y\": 0.12415439635515213\n          },\n          {\n            \"X\": 0.36464187502861023,\n            \"Y\": 0.12415439635515213\n          }\n        ]\n      },\n      \"Id\": \"7a1c95a9-31c4-4271-9173-c55c9e505f03\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96324920654297,\n      \"Text\": \"segment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06282281875610352,\n          \"Height\": 0.011878225021064281,\n          \"Left\": 0.3949967920780182,\n          \"Top\": 0.11434818059206009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3949967920780182,\n            \"Y\": 0.11434818059206009\n          },\n          {\n            \"X\": 0.4578196108341217,\n            \"Y\": 0.11434818059206009\n          },\n          {\n            \"X\": 0.4578196108341217,\n            \"Y\": 0.12622641026973724\n          },\n          {\n            \"X\": 0.3949967920780182,\n            \"Y\": 0.12622641026973724\n          }\n        ]\n      },\n      \"Id\": \"e5cbeaae-e92e-42a5-a02b-1549656b509b\",\n      \"Page\": 1,\n      \"SearchKey\": \"segment\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96923828125,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037252940237522125,\n          \"Height\": 0.010193442925810814,\n          \"Left\": 0.4595113694667816,\n          \"Top\": 0.11587756127119064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4595113694667816,\n            \"Y\": 0.11587756127119064\n          },\n          {\n            \"X\": 0.49676430225372314,\n            \"Y\": 0.11587756127119064\n          },\n          {\n            \"X\": 0.49676430225372314,\n            \"Y\": 0.1260710060596466\n          },\n          {\n            \"X\": 0.4595113694667816,\n            \"Y\": 0.1260710060596466\n          }\n        ]\n      },\n      \"Id\": \"fd8e5cf6-3b49-4ed4-966e-7d15ce90f7de\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97166442871094,\n      \"Text\": \"headers\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05938199535012245,\n          \"Height\": 0.010609228163957596,\n          \"Left\": 0.49909016489982605,\n          \"Top\": 0.11375203728675842\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49909016489982605,\n            \"Y\": 0.11375203728675842\n          },\n          {\n            \"X\": 0.5584721565246582,\n            \"Y\": 0.11375203728675842\n          },\n          {\n            \"X\": 0.5584721565246582,\n            \"Y\": 0.12436126917600632\n          },\n          {\n            \"X\": 0.49909016489982605,\n            \"Y\": 0.12436126917600632\n          }\n        ]\n      },\n      \"Id\": \"5c227172-6861-43cd-ab75-ee638eee9dd6\",\n      \"Page\": 1,\n      \"SearchKey\": \"headers\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99183654785156,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02793685719370842,\n          \"Height\": 0.010211002081632614,\n          \"Left\": 0.5608192682266235,\n          \"Top\": 0.11391802132129669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5608192682266235,\n            \"Y\": 0.11391802132129669\n          },\n          {\n            \"X\": 0.5887561440467834,\n            \"Y\": 0.11391802132129669\n          },\n          {\n            \"X\": 0.5887561440467834,\n            \"Y\": 0.1241290271282196\n          },\n          {\n            \"X\": 0.5608192682266235,\n            \"Y\": 0.1241290271282196\n          }\n        ]\n      },\n      \"Id\": \"4c96e3e1-4353-4aba-9f9c-b90a040a95ad\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97711181640625,\n      \"Text\": \"footers\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04936348646879196,\n          \"Height\": 0.010420541279017925,\n          \"Left\": 0.5917884111404419,\n          \"Top\": 0.11385495960712433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5917884111404419,\n            \"Y\": 0.11385495960712433\n          },\n          {\n            \"X\": 0.6411519050598145,\n            \"Y\": 0.11385495960712433\n          },\n          {\n            \"X\": 0.6411519050598145,\n            \"Y\": 0.12427549809217453\n          },\n          {\n            \"X\": 0.5917884111404419,\n            \"Y\": 0.12427549809217453\n          }\n        ]\n      },\n      \"Id\": \"60593137-ccb2-4004-8b1b-35eb78cc5c96\",\n      \"Page\": 1,\n      \"SearchKey\": \"footers\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96051025390625,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017862848937511444,\n          \"Height\": 0.00866587646305561,\n          \"Left\": 0.6446561217308044,\n          \"Top\": 0.11562640964984894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6446561217308044,\n            \"Y\": 0.11562640964984894\n          },\n          {\n            \"X\": 0.6625189781188965,\n            \"Y\": 0.11562640964984894\n          },\n          {\n            \"X\": 0.6625189781188965,\n            \"Y\": 0.1242922842502594\n          },\n          {\n            \"X\": 0.6446561217308044,\n            \"Y\": 0.1242922842502594\n          }\n        ]\n      },\n      \"Id\": \"605cf134-a225-41c0-a3c9-321402e90f67\",\n      \"Page\": 1,\n      \"SearchKey\": \"as\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9805908203125,\n      \"Text\": \"separate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06324028223752975,\n          \"Height\": 0.011816944926977158,\n          \"Left\": 0.6653708815574646,\n          \"Top\": 0.11436808109283447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6653708815574646,\n            \"Y\": 0.11436808109283447\n          },\n          {\n            \"X\": 0.728611171245575,\n            \"Y\": 0.11436808109283447\n          },\n          {\n            \"X\": 0.728611171245575,\n            \"Y\": 0.12618502974510193\n          },\n          {\n            \"X\": 0.6653708815574646,\n            \"Y\": 0.12618502974510193\n          }\n        ]\n      },\n      \"Id\": \"d22565f8-1243-4d6a-8f5d-0372ee31c832\",\n      \"Page\": 1,\n      \"SearchKey\": \"separate\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94740295410156,\n      \"Text\": \"elements\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06565120816230774,\n          \"Height\": 0.010515687987208366,\n          \"Left\": 0.7307997345924377,\n          \"Top\": 0.11379725486040115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7307997345924377,\n            \"Y\": 0.11379725486040115\n          },\n          {\n            \"X\": 0.7964509725570679,\n            \"Y\": 0.11379725486040115\n          },\n          {\n            \"X\": 0.7964509725570679,\n            \"Y\": 0.12431294471025467\n          },\n          {\n            \"X\": 0.7307997345924377,\n            \"Y\": 0.12431294471025467\n          }\n        ]\n      },\n      \"Id\": \"96e5ad07-7718-4c9b-9104-160fe08c0204\",\n      \"Page\": 1,\n      \"SearchKey\": \"elements\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99187469482422,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03337957337498665,\n          \"Height\": 0.010213452391326427,\n          \"Left\": 0.7990964651107788,\n          \"Top\": 0.11379639804363251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7990964651107788,\n            \"Y\": 0.11379639804363251\n          },\n          {\n            \"X\": 0.8324760794639587,\n            \"Y\": 0.11379639804363251\n          },\n          {\n            \"X\": 0.8324760794639587,\n            \"Y\": 0.12400985509157181\n          },\n          {\n            \"X\": 0.7990964651107788,\n            \"Y\": 0.12400985509157181\n          }\n        ]\n      },\n      \"Id\": \"cd589c4b-5527-4730-a3ae-4ba700181ea8\",\n      \"Page\": 1,\n      \"SearchKey\": \"from\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99679565429688,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02444726601243019,\n          \"Height\": 0.010000455193221569,\n          \"Left\": 0.8344153761863708,\n          \"Top\": 0.11400644481182098\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8344153761863708,\n            \"Y\": 0.11400644481182098\n          },\n          {\n            \"X\": 0.8588626384735107,\n            \"Y\": 0.11400644481182098\n          },\n          {\n            \"X\": 0.8588626384735107,\n            \"Y\": 0.12400689721107483\n          },\n          {\n            \"X\": 0.8344153761863708,\n            \"Y\": 0.12400689721107483\n          }\n        ]\n      },\n      \"Id\": \"778d33ce-e3fc-4397-a62d-2f17b6dc104b\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9717025756836,\n      \"Text\": \"main\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03625279664993286,\n          \"Height\": 0.010185521095991135,\n          \"Left\": 0.8614901900291443,\n          \"Top\": 0.11393523961305618\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8614901900291443,\n            \"Y\": 0.11393523961305618\n          },\n          {\n            \"X\": 0.8977429866790771,\n            \"Y\": 0.11393523961305618\n          },\n          {\n            \"X\": 0.8977429866790771,\n            \"Y\": 0.12412076443433762\n          },\n          {\n            \"X\": 0.8614901900291443,\n            \"Y\": 0.12412076443433762\n          }\n        ]\n      },\n      \"Id\": \"be92969a-4c0f-410e-8309-b5f3b54ab647\",\n      \"Page\": 1,\n      \"SearchKey\": \"main\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93960571289062,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03684297949075699,\n          \"Height\": 0.010494915768504143,\n          \"Left\": 0.08034448325634003,\n          \"Top\": 0.12823574244976044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08034448325634003,\n            \"Y\": 0.12823574244976044\n          },\n          {\n            \"X\": 0.11718746274709702,\n            \"Y\": 0.12823574244976044\n          },\n          {\n            \"X\": 0.11718746274709702,\n            \"Y\": 0.13873066008090973\n          },\n          {\n            \"X\": 0.08034448325634003,\n            \"Y\": 0.13873066008090973\n          }\n        ]\n      },\n      \"Id\": \"7f768694-b4ac-461f-8618-552b48bef138\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97048950195312,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05397995188832283,\n          \"Height\": 0.010110083967447281,\n          \"Left\": 0.1197848692536354,\n          \"Top\": 0.1267935335636139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1197848692536354,\n            \"Y\": 0.1267935335636139\n          },\n          {\n            \"X\": 0.17376482486724854,\n            \"Y\": 0.1267935335636139\n          },\n          {\n            \"X\": 0.17376482486724854,\n            \"Y\": 0.13690362870693207\n          },\n          {\n            \"X\": 0.1197848692536354,\n            \"Y\": 0.13690362870693207\n          }\n        ]\n      },\n      \"Id\": \"9cb5a751-4545-4250-b928-e3aff305ce5e\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81660461425781,\n      \"Text\": \"(like\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03005865216255188,\n          \"Height\": 0.012092310935258865,\n          \"Left\": 0.1766454130411148,\n          \"Top\": 0.12634558975696564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1766454130411148,\n            \"Y\": 0.12634558975696564\n          },\n          {\n            \"X\": 0.2067040652036667,\n            \"Y\": 0.12634558975696564\n          },\n          {\n            \"X\": 0.2067040652036667,\n            \"Y\": 0.1384378969669342\n          },\n          {\n            \"X\": 0.1766454130411148,\n            \"Y\": 0.1384378969669342\n          }\n        ]\n      },\n      \"Id\": \"9168e4f3-3701-4e12-b056-cf7a47967737\",\n      \"Page\": 1,\n      \"SearchKey\": \"(like\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98006439208984,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02720271237194538,\n          \"Height\": 0.010204222984611988,\n          \"Left\": 0.2085057944059372,\n          \"Top\": 0.1265944391489029\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2085057944059372,\n            \"Y\": 0.1265944391489029\n          },\n          {\n            \"X\": 0.23570850491523743,\n            \"Y\": 0.1265944391489029\n          },\n          {\n            \"X\": 0.23570850491523743,\n            \"Y\": 0.1367986649274826\n          },\n          {\n            \"X\": 0.2085057944059372,\n            \"Y\": 0.1367986649274826\n          }\n        ]\n      },\n      \"Id\": \"01c04826-666b-4d3f-af20-b80ef225af7e\",\n      \"Page\": 1,\n      \"SearchKey\": \"this\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8150405883789,\n      \"Text\": \"paragraph).\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08243772387504578,\n          \"Height\": 0.012257340364158154,\n          \"Left\": 0.23869125545024872,\n          \"Top\": 0.12663385272026062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23869125545024872,\n            \"Y\": 0.12663385272026062\n          },\n          {\n            \"X\": 0.3211289644241333,\n            \"Y\": 0.12663385272026062\n          },\n          {\n            \"X\": 0.3211289644241333,\n            \"Y\": 0.13889119029045105\n          },\n          {\n            \"X\": 0.23869125545024872,\n            \"Y\": 0.13889119029045105\n          }\n        ]\n      },\n      \"Id\": \"776a9ecc-dd85-4679-8c96-e7a65b26c1f6\",\n      \"Page\": 1,\n      \"SearchKey\": \"paragraph).\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98986053466797,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029214907437562943,\n          \"Height\": 0.010450433008372784,\n          \"Left\": 0.3244081437587738,\n          \"Top\": 0.12638582289218903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3244081437587738,\n            \"Y\": 0.12638582289218903\n          },\n          {\n            \"X\": 0.35362306237220764,\n            \"Y\": 0.12638582289218903\n          },\n          {\n            \"X\": 0.35362306237220764,\n            \"Y\": 0.13683626055717468\n          },\n          {\n            \"X\": 0.3244081437587738,\n            \"Y\": 0.13683626055717468\n          }\n        ]\n      },\n      \"Id\": \"2205ff66-e597-4708-b240-55e85461013e\",\n      \"Page\": 1,\n      \"SearchKey\": \"The\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94685363769531,\n      \"Text\": \"Amazon\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05981966480612755,\n          \"Height\": 0.010335549712181091,\n          \"Left\": 0.35525572299957275,\n          \"Top\": 0.1264423429965973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35525572299957275,\n            \"Y\": 0.1264423429965973\n          },\n          {\n            \"X\": 0.4150753915309906,\n            \"Y\": 0.1264423429965973\n          },\n          {\n            \"X\": 0.4150753915309906,\n            \"Y\": 0.13677789270877838\n          },\n          {\n            \"X\": 0.35525572299957275,\n            \"Y\": 0.13677789270877838\n          }\n        ]\n      },\n      \"Id\": \"2a026318-d663-4682-9d04-aed0609f1d56\",\n      \"Page\": 1,\n      \"SearchKey\": \"Amazon\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96430969238281,\n      \"Text\": \"Textract\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05758326128125191,\n          \"Height\": 0.010904385708272457,\n          \"Left\": 0.41731253266334534,\n          \"Top\": 0.12590040266513824\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41731253266334534,\n            \"Y\": 0.12590040266513824\n          },\n          {\n            \"X\": 0.47489577531814575,\n            \"Y\": 0.12590040266513824\n          },\n          {\n            \"X\": 0.47489577531814575,\n            \"Y\": 0.13680478930473328\n          },\n          {\n            \"X\": 0.41731253266334534,\n            \"Y\": 0.13680478930473328\n          }\n        ]\n      },\n      \"Id\": \"2514bb96-864c-41dd-8013-d1d6b5beb7aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"Textract\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87254333496094,\n      \"Text\": \"Response\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07202412933111191,\n          \"Height\": 0.012252140790224075,\n          \"Left\": 0.47778019309043884,\n          \"Top\": 0.12633460760116577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47778019309043884,\n            \"Y\": 0.12633460760116577\n          },\n          {\n            \"X\": 0.5498043298721313,\n            \"Y\": 0.12633460760116577\n          },\n          {\n            \"X\": 0.5498043298721313,\n            \"Y\": 0.13858674466609955\n          },\n          {\n            \"X\": 0.47778019309043884,\n            \"Y\": 0.13858674466609955\n          }\n        ]\n      },\n      \"Id\": \"5cd846b5-a47d-4398-a453-94e8499ada20\",\n      \"Page\": 1,\n      \"SearchKey\": \"Response\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96748352050781,\n      \"Text\": \"parser\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046723414212465286,\n          \"Height\": 0.01081846747547388,\n          \"Left\": 0.5527732968330383,\n          \"Top\": 0.12804202735424042\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5527732968330383,\n            \"Y\": 0.12804202735424042\n          },\n          {\n            \"X\": 0.5994966626167297,\n            \"Y\": 0.12804202735424042\n          },\n          {\n            \"X\": 0.5994966626167297,\n            \"Y\": 0.13886049389839172\n          },\n          {\n            \"X\": 0.5527732968330383,\n            \"Y\": 0.13886049389839172\n          }\n        ]\n      },\n      \"Id\": \"f9b63cd8-48c6-4f77-b2ce-5199f2542931\",\n      \"Page\": 1,\n      \"SearchKey\": \"parser\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9258041381836,\n      \"Text\": \"provides\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06177423521876335,\n          \"Height\": 0.012367567978799343,\n          \"Left\": 0.6014711260795593,\n          \"Top\": 0.12655137479305267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6014711260795593,\n            \"Y\": 0.12655137479305267\n          },\n          {\n            \"X\": 0.6632453799247742,\n            \"Y\": 0.12655137479305267\n          },\n          {\n            \"X\": 0.6632453799247742,\n            \"Y\": 0.138918936252594\n          },\n          {\n            \"X\": 0.6014711260795593,\n            \"Y\": 0.138918936252594\n          }\n        ]\n      },\n      \"Id\": \"ccf102a7-7c9c-47c6-8b21-3fec07bed94f\",\n      \"Page\": 1,\n      \"SearchKey\": \"provides\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91985321044922,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01068335771560669,\n          \"Height\": 0.008307859301567078,\n          \"Left\": 0.6661180257797241,\n          \"Top\": 0.12842795252799988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6661180257797241,\n            \"Y\": 0.12842795252799988\n          },\n          {\n            \"X\": 0.6768013834953308,\n            \"Y\": 0.12842795252799988\n          },\n          {\n            \"X\": 0.6768013834953308,\n            \"Y\": 0.13673581182956696\n          },\n          {\n            \"X\": 0.6661180257797241,\n            \"Y\": 0.13673581182956696\n          }\n        ]\n      },\n      \"Id\": \"3c0ae910-a0ff-4c5d-be45-8c08262b0e9c\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96232604980469,\n      \"Text\": \"basic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038700297474861145,\n          \"Height\": 0.010276664979755878,\n          \"Left\": 0.6792176365852356,\n          \"Top\": 0.12643879652023315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6792176365852356,\n            \"Y\": 0.12643879652023315\n          },\n          {\n            \"X\": 0.7179179787635803,\n            \"Y\": 0.12643879652023315\n          },\n          {\n            \"X\": 0.7179179787635803,\n            \"Y\": 0.13671545684337616\n          },\n          {\n            \"X\": 0.6792176365852356,\n            \"Y\": 0.13671545684337616\n          }\n        ]\n      },\n      \"Id\": \"49185d3e-3863-4b95-9de2-8283db968bc7\",\n      \"Page\": 1,\n      \"SearchKey\": \"basic\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8448715209961,\n      \"Text\": \"implementation\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10837004333734512,\n          \"Height\": 0.012109816074371338,\n          \"Left\": 0.7205865383148193,\n          \"Top\": 0.12639883160591125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7205865383148193,\n            \"Y\": 0.12639883160591125\n          },\n          {\n            \"X\": 0.8289565443992615,\n            \"Y\": 0.12639883160591125\n          },\n          {\n            \"X\": 0.8289565443992615,\n            \"Y\": 0.1385086476802826\n          },\n          {\n            \"X\": 0.7205865383148193,\n            \"Y\": 0.1385086476802826\n          }\n        ]\n      },\n      \"Id\": \"9d3664af-ba56-4b9d-a993-1b50fb11c2f4\",\n      \"Page\": 1,\n      \"SearchKey\": \"implementation\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97693634033203,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015887266024947166,\n          \"Height\": 0.01034578587859869,\n          \"Left\": 0.8315696120262146,\n          \"Top\": 0.12637202441692352\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8315696120262146,\n            \"Y\": 0.12637202441692352\n          },\n          {\n            \"X\": 0.8474568724632263,\n            \"Y\": 0.12637202441692352\n          },\n          {\n            \"X\": 0.8474568724632263,\n            \"Y\": 0.1367178112268448\n          },\n          {\n            \"X\": 0.8315696120262146,\n            \"Y\": 0.1367178112268448\n          }\n        ]\n      },\n      \"Id\": \"cc87de74-f74f-403f-a1bf-2ead5fc11772\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98753356933594,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02683670073747635,\n          \"Height\": 0.010087189264595509,\n          \"Left\": 0.8488962650299072,\n          \"Top\": 0.12655532360076904\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8488962650299072,\n            \"Y\": 0.12655532360076904\n          },\n          {\n            \"X\": 0.875732958316803,\n            \"Y\": 0.12655532360076904\n          },\n          {\n            \"X\": 0.875732958316803,\n            \"Y\": 0.13664251565933228\n          },\n          {\n            \"X\": 0.8488962650299072,\n            \"Y\": 0.13664251565933228\n          }\n        ]\n      },\n      \"Id\": \"cf64f8e2-efab-4fa5-b62b-dc4838151269\",\n      \"Page\": 1,\n      \"SearchKey\": \"this\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9766616821289,\n      \"Text\": \"functionality\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08575794100761414,\n          \"Height\": 0.012452669441699982,\n          \"Left\": 0.08036861568689346,\n          \"Top\": 0.13890382647514343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08036861568689346,\n            \"Y\": 0.13890382647514343\n          },\n          {\n            \"X\": 0.1661265641450882,\n            \"Y\": 0.13890382647514343\n          },\n          {\n            \"X\": 0.1661265641450882,\n            \"Y\": 0.151356503367424\n          },\n          {\n            \"X\": 0.08036861568689346,\n            \"Y\": 0.151356503367424\n          }\n        ]\n      },\n      \"Id\": \"96780493-1e59-488d-aae6-a6214ee35673\",\n      \"Page\": 1,\n      \"SearchKey\": \"functionality\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94062042236328,\n      \"Text\": \"using\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04040547460317612,\n          \"Height\": 0.011589574627578259,\n          \"Left\": 0.16781531274318695,\n          \"Top\": 0.13948045670986176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16781531274318695,\n            \"Y\": 0.13948045670986176\n          },\n          {\n            \"X\": 0.20822079479694366,\n            \"Y\": 0.13948045670986176\n          },\n          {\n            \"X\": 0.20822079479694366,\n            \"Y\": 0.1510700285434723\n          },\n          {\n            \"X\": 0.16781531274318695,\n            \"Y\": 0.1510700285434723\n          }\n        ]\n      },\n      \"Id\": \"9f6d8abe-9a58-43ae-8e61-29b717fecb26\",\n      \"Page\": 1,\n      \"SearchKey\": \"using\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8676986694336,\n      \"Text\": \"rule-based\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07567436993122101,\n          \"Height\": 0.010187371633946896,\n          \"Left\": 0.2110486477613449,\n          \"Top\": 0.1390683352947235\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2110486477613449,\n            \"Y\": 0.1390683352947235\n          },\n          {\n            \"X\": 0.2867230176925659,\n            \"Y\": 0.1390683352947235\n          },\n          {\n            \"X\": 0.2867230176925659,\n            \"Y\": 0.14925570785999298\n          },\n          {\n            \"X\": 0.2110486477613449,\n            \"Y\": 0.14925570785999298\n          }\n        ]\n      },\n      \"Id\": \"7ede5e73-6f60-47b0-a449-bbaea5725c1b\",\n      \"Page\": 1,\n      \"SearchKey\": \"rule-based\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90535736083984,\n      \"Text\": \"heuristics\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06898091733455658,\n          \"Height\": 0.010519743897020817,\n          \"Left\": 0.2885635197162628,\n          \"Top\": 0.13889269530773163\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2885635197162628,\n            \"Y\": 0.13889269530773163\n          },\n          {\n            \"X\": 0.3575444221496582,\n            \"Y\": 0.13889269530773163\n          },\n          {\n            \"X\": 0.3575444221496582,\n            \"Y\": 0.14941243827342987\n          },\n          {\n            \"X\": 0.2885635197162628,\n            \"Y\": 0.14941243827342987\n          }\n        ]\n      },\n      \"Id\": \"2dbe405f-854a-494a-a4e7-ecb9dc38287a\",\n      \"Page\": 1,\n      \"SearchKey\": \"heuristics\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98529815673828,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03048950619995594,\n          \"Height\": 0.010123097337782383,\n          \"Left\": 0.35961925983428955,\n          \"Top\": 0.13902051746845245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35961925983428955,\n            \"Y\": 0.13902051746845245\n          },\n          {\n            \"X\": 0.39010876417160034,\n            \"Y\": 0.13902051746845245\n          },\n          {\n            \"X\": 0.39010876417160034,\n            \"Y\": 0.14914360642433167\n          },\n          {\n            \"X\": 0.35961925983428955,\n            \"Y\": 0.14914360642433167\n          }\n        ]\n      },\n      \"Id\": \"272e1814-c2f3-4c24-9542-ced3427fc505\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98482513427734,\n      \"Text\": \"some\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040280476212501526,\n          \"Height\": 0.00870543159544468,\n          \"Left\": 0.39258670806884766,\n          \"Top\": 0.1405630260705948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39258670806884766,\n            \"Y\": 0.1405630260705948\n          },\n          {\n            \"X\": 0.432867169380188,\n            \"Y\": 0.1405630260705948\n          },\n          {\n            \"X\": 0.432867169380188,\n            \"Y\": 0.14926846325397491\n          },\n          {\n            \"X\": 0.39258670806884766,\n            \"Y\": 0.14926846325397491\n          }\n        ]\n      },\n      \"Id\": \"19f72990-ffd4-4e6b-be5b-73bef3004e73\",\n      \"Page\": 1,\n      \"SearchKey\": \"some\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96350860595703,\n      \"Text\": \"adjustable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07316847890615463,\n          \"Height\": 0.012057274580001831,\n          \"Left\": 0.43570584058761597,\n          \"Top\": 0.13915738463401794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43570584058761597,\n            \"Y\": 0.13915738463401794\n          },\n          {\n            \"X\": 0.5088742971420288,\n            \"Y\": 0.13915738463401794\n          },\n          {\n            \"X\": 0.5088742971420288,\n            \"Y\": 0.15121465921401978\n          },\n          {\n            \"X\": 0.43570584058761597,\n            \"Y\": 0.15121465921401978\n          }\n        ]\n      },\n      \"Id\": \"2b9dd591-8322-454f-b6e1-ea3bf8b7b303\",\n      \"Page\": 1,\n      \"SearchKey\": \"adjustable\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.35203552246094,\n      \"Text\": \"parameters.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08586924523115158,\n          \"Height\": 0.011972391977906227,\n          \"Left\": 0.5112494826316833,\n          \"Top\": 0.13948144018650055\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5112494826316833,\n            \"Y\": 0.13948144018650055\n          },\n          {\n            \"X\": 0.5971187353134155,\n            \"Y\": 0.13948144018650055\n          },\n          {\n            \"X\": 0.5971187353134155,\n            \"Y\": 0.15145382285118103\n          },\n          {\n            \"X\": 0.5112494826316833,\n            \"Y\": 0.15145382285118103\n          }\n        ]\n      },\n      \"Id\": \"16a3f924-9d9c-4c5d-a0cb-4be19ac92e1f\",\n      \"Page\": 1,\n      \"SearchKey\": \"parameters.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9498519897461,\n      \"Text\": \"You\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027967095375061035,\n          \"Height\": 0.010221919044852257,\n          \"Left\": 0.6005762219429016,\n          \"Top\": 0.13901609182357788\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6005762219429016,\n            \"Y\": 0.13901609182357788\n          },\n          {\n            \"X\": 0.6285433173179626,\n            \"Y\": 0.13901609182357788\n          },\n          {\n            \"X\": 0.6285433173179626,\n            \"Y\": 0.1492380052804947\n          },\n          {\n            \"X\": 0.6005762219429016,\n            \"Y\": 0.1492380052804947\n          }\n        ]\n      },\n      \"Id\": \"537ea118-4f10-4ca5-b0a8-5b74d779bed0\",\n      \"Page\": 1,\n      \"SearchKey\": \"You\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93403625488281,\n      \"Text\": \"could\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04027438163757324,\n          \"Height\": 0.010114412754774094,\n          \"Left\": 0.630695104598999,\n          \"Top\": 0.13901111483573914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.630695104598999,\n            \"Y\": 0.13901111483573914\n          },\n          {\n            \"X\": 0.6709694862365723,\n            \"Y\": 0.13901111483573914\n          },\n          {\n            \"X\": 0.6709694862365723,\n            \"Y\": 0.14912553131580353\n          },\n          {\n            \"X\": 0.630695104598999,\n            \"Y\": 0.14912553131580353\n          }\n        ]\n      },\n      \"Id\": \"15a06538-16c0-4fbf-8f29-d00c9580f094\",\n      \"Page\": 1,\n      \"SearchKey\": \"could\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97565460205078,\n      \"Text\": \"also\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029661482200026512,\n          \"Height\": 0.010210239328444004,\n          \"Left\": 0.6740114688873291,\n          \"Top\": 0.1390189379453659\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6740114688873291,\n            \"Y\": 0.1390189379453659\n          },\n          {\n            \"X\": 0.7036729454994202,\n            \"Y\": 0.1390189379453659\n          },\n          {\n            \"X\": 0.7036729454994202,\n            \"Y\": 0.14922916889190674\n          },\n          {\n            \"X\": 0.6740114688873291,\n            \"Y\": 0.14922916889190674\n          }\n        ]\n      },\n      \"Id\": \"0262a6c9-1550-4964-9c9a-1c419f182400\",\n      \"Page\": 1,\n      \"SearchKey\": \"also\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94692993164062,\n      \"Text\": \"consider\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06121305003762245,\n          \"Height\": 0.010283362120389938,\n          \"Left\": 0.7066799402236938,\n          \"Top\": 0.13915741443634033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7066799402236938,\n            \"Y\": 0.13915741443634033\n          },\n          {\n            \"X\": 0.7678930163383484,\n            \"Y\": 0.13915741443634033\n          },\n          {\n            \"X\": 0.7678930163383484,\n            \"Y\": 0.14944078028202057\n          },\n          {\n            \"X\": 0.7066799402236938,\n            \"Y\": 0.14944078028202057\n          }\n        ]\n      },\n      \"Id\": \"ad5061c9-38d5-4cde-86e2-56686a35bb8c\",\n      \"Page\": 1,\n      \"SearchKey\": \"consider\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97867584228516,\n      \"Text\": \"different\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058946967124938965,\n          \"Height\": 0.010371348820626736,\n          \"Left\": 0.7704616785049438,\n          \"Top\": 0.13887424767017365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7704616785049438,\n            \"Y\": 0.13887424767017365\n          },\n          {\n            \"X\": 0.8294086456298828,\n            \"Y\": 0.13887424767017365\n          },\n          {\n            \"X\": 0.8294086456298828,\n            \"Y\": 0.14924558997154236\n          },\n          {\n            \"X\": 0.7704616785049438,\n            \"Y\": 0.14924558997154236\n          }\n        ]\n      },\n      \"Id\": \"cd865e68-3bbf-4998-8107-fdf2ae97f3f8\",\n      \"Page\": 1,\n      \"SearchKey\": \"different\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91060638427734,\n      \"Text\": \"heuristics\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06856261193752289,\n          \"Height\": 0.010183451697230339,\n          \"Left\": 0.8310495615005493,\n          \"Top\": 0.13904160261154175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8310495615005493,\n            \"Y\": 0.13904160261154175\n          },\n          {\n            \"X\": 0.8996121883392334,\n            \"Y\": 0.13904160261154175\n          },\n          {\n            \"X\": 0.8996121883392334,\n            \"Y\": 0.14922505617141724\n          },\n          {\n            \"X\": 0.8310495615005493,\n            \"Y\": 0.14922505617141724\n          }\n        ]\n      },\n      \"Id\": \"948efbef-ec65-4c95-a4c0-96ec452dbda3\",\n      \"Page\": 1,\n      \"SearchKey\": \"heuristics\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97150421142578,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01606098748743534,\n          \"Height\": 0.008453777059912682,\n          \"Left\": 0.9028018116950989,\n          \"Top\": 0.14063717424869537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9028018116950989,\n            \"Y\": 0.14063717424869537\n          },\n          {\n            \"X\": 0.9188627600669861,\n            \"Y\": 0.14063717424869537\n          },\n          {\n            \"X\": 0.9188627600669861,\n            \"Y\": 0.1490909457206726\n          },\n          {\n            \"X\": 0.9028018116950989,\n            \"Y\": 0.1490909457206726\n          }\n        ]\n      },\n      \"Id\": \"922466d6-0629-4d1f-9025-a052e4df1b45\",\n      \"Page\": 1,\n      \"SearchKey\": \"or\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95479583740234,\n      \"Text\": \"machine\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06134059280157089,\n          \"Height\": 0.010437202639877796,\n          \"Left\": 0.08032061159610748,\n          \"Top\": 0.151358962059021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08032061159610748,\n            \"Y\": 0.151358962059021\n          },\n          {\n            \"X\": 0.14166119694709778,\n            \"Y\": 0.151358962059021\n          },\n          {\n            \"X\": 0.14166119694709778,\n            \"Y\": 0.16179616749286652\n          },\n          {\n            \"X\": 0.08032061159610748,\n            \"Y\": 0.16179616749286652\n          }\n        ]\n      },\n      \"Id\": \"885505cb-9ede-480b-a6ac-69e9216bcce8\",\n      \"Page\": 1,\n      \"SearchKey\": \"machine\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90433502197266,\n      \"Text\": \"learning\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05812993273139,\n          \"Height\": 0.012238583527505398,\n          \"Left\": 0.14462994039058685,\n          \"Top\": 0.15153725445270538\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14462994039058685,\n            \"Y\": 0.15153725445270538\n          },\n          {\n            \"X\": 0.20275987684726715,\n            \"Y\": 0.15153725445270538\n          },\n          {\n            \"X\": 0.20275987684726715,\n            \"Y\": 0.16377583146095276\n          },\n          {\n            \"X\": 0.14462994039058685,\n            \"Y\": 0.16377583146095276\n          }\n        ]\n      },\n      \"Id\": \"cf30d539-544a-4dee-82ce-85306e3069c7\",\n      \"Page\": 1,\n      \"SearchKey\": \"learning\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80744934082031,\n      \"Text\": \"model-based\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09243136644363403,\n          \"Height\": 0.010330540128052235,\n          \"Left\": 0.20546017587184906,\n          \"Top\": 0.1514962911605835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20546017587184906,\n            \"Y\": 0.1514962911605835\n          },\n          {\n            \"X\": 0.2978915572166443,\n            \"Y\": 0.1514962911605835\n          },\n          {\n            \"X\": 0.2978915572166443,\n            \"Y\": 0.16182683408260345\n          },\n          {\n            \"X\": 0.20546017587184906,\n            \"Y\": 0.16182683408260345\n          }\n        ]\n      },\n      \"Id\": \"7efa17a3-8b02-4f92-aea8-9364227a1d6b\",\n      \"Page\": 1,\n      \"SearchKey\": \"model-based\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80192565917969,\n      \"Text\": \"approaches,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08780554682016373,\n          \"Height\": 0.012302394956350327,\n          \"Left\": 0.30055466294288635,\n          \"Top\": 0.15142469108104706\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30055466294288635,\n            \"Y\": 0.15142469108104706\n          },\n          {\n            \"X\": 0.3883602023124695,\n            \"Y\": 0.15142469108104706\n          },\n          {\n            \"X\": 0.3883602023124695,\n            \"Y\": 0.16372708976268768\n          },\n          {\n            \"X\": 0.30055466294288635,\n            \"Y\": 0.16372708976268768\n          }\n        ]\n      },\n      \"Id\": \"e97acb59-878c-45ea-81d4-d0174fb6fb44\",\n      \"Page\": 1,\n      \"SearchKey\": \"approaches,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82295227050781,\n      \"Text\": \"if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010809478349983692,\n          \"Height\": 0.010302009992301464,\n          \"Left\": 0.3914385139942169,\n          \"Top\": 0.15141631662845612\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3914385139942169,\n            \"Y\": 0.15141631662845612\n          },\n          {\n            \"X\": 0.40224799513816833,\n            \"Y\": 0.15141631662845612\n          },\n          {\n            \"X\": 0.40224799513816833,\n            \"Y\": 0.16171832382678986\n          },\n          {\n            \"X\": 0.3914385139942169,\n            \"Y\": 0.16171832382678986\n          }\n        ]\n      },\n      \"Id\": \"f6f49000-09bf-4b68-9be9-45c789b236f2\",\n      \"Page\": 1,\n      \"SearchKey\": \"if\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98617553710938,\n      \"Text\": \"more\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037134237587451935,\n          \"Height\": 0.008646764792501926,\n          \"Left\": 0.40442517399787903,\n          \"Top\": 0.1530875414609909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40442517399787903,\n            \"Y\": 0.1530875414609909\n          },\n          {\n            \"X\": 0.44155940413475037,\n            \"Y\": 0.1530875414609909\n          },\n          {\n            \"X\": 0.44155940413475037,\n            \"Y\": 0.16173429787158966\n          },\n          {\n            \"X\": 0.40442517399787903,\n            \"Y\": 0.16173429787158966\n          }\n        ]\n      },\n      \"Id\": \"c20c5848-3d74-4898-aefc-ecc4820a8866\",\n      \"Page\": 1,\n      \"SearchKey\": \"more\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94490051269531,\n      \"Text\": \"appropriate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08221002668142319,\n          \"Height\": 0.011972038075327873,\n          \"Left\": 0.4436616897583008,\n          \"Top\": 0.15184321999549866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4436616897583008,\n            \"Y\": 0.15184321999549866\n          },\n          {\n            \"X\": 0.525871753692627,\n            \"Y\": 0.15184321999549866\n          },\n          {\n            \"X\": 0.525871753692627,\n            \"Y\": 0.16381525993347168\n          },\n          {\n            \"X\": 0.4436616897583008,\n            \"Y\": 0.16381525993347168\n          }\n        ]\n      },\n      \"Id\": \"be820785-dff1-494d-9630-6ba76cddb007\",\n      \"Page\": 1,\n      \"SearchKey\": \"appropriate\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99288940429688,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020615125074982643,\n          \"Height\": 0.010544653981924057,\n          \"Left\": 0.5276337265968323,\n          \"Top\": 0.1511640101671219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5276337265968323,\n            \"Y\": 0.1511640101671219\n          },\n          {\n            \"X\": 0.548248827457428,\n            \"Y\": 0.1511640101671219\n          },\n          {\n            \"X\": 0.548248827457428,\n            \"Y\": 0.16170865297317505\n          },\n          {\n            \"X\": 0.5276337265968323,\n            \"Y\": 0.16170865297317505\n          }\n        ]\n      },\n      \"Id\": \"dd7c2345-0a29-485f-8a82-65a74dbe8c09\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96259307861328,\n      \"Text\": \"your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03369886428117752,\n          \"Height\": 0.010504499077796936,\n          \"Left\": 0.550430417060852,\n          \"Top\": 0.15324576199054718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.550430417060852,\n            \"Y\": 0.15324576199054718\n          },\n          {\n            \"X\": 0.584129273891449,\n            \"Y\": 0.15324576199054718\n          },\n          {\n            \"X\": 0.584129273891449,\n            \"Y\": 0.16375026106834412\n          },\n          {\n            \"X\": 0.550430417060852,\n            \"Y\": 0.16375026106834412\n          }\n        ]\n      },\n      \"Id\": \"d7fdbffe-ecc3-47b0-9f79-bd20b8da10f9\",\n      \"Page\": 1,\n      \"SearchKey\": \"your\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81280517578125,\n      \"Text\": \"particular\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0670284703373909,\n          \"Height\": 0.012189825996756554,\n          \"Left\": 0.586068868637085,\n          \"Top\": 0.15152868628501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.586068868637085,\n            \"Y\": 0.15152868628501892\n          },\n          {\n            \"X\": 0.6530973315238953,\n            \"Y\": 0.15152868628501892\n          },\n          {\n            \"X\": 0.6530973315238953,\n            \"Y\": 0.16371852159500122\n          },\n          {\n            \"X\": 0.586068868637085,\n            \"Y\": 0.16371852159500122\n          }\n        ]\n      },\n      \"Id\": \"06a13566-3fd1-44b9-8716-42a6ccc2f40c\",\n      \"Page\": 1,\n      \"SearchKey\": \"particular\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80481719970703,\n      \"Text\": \"domain's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06500336527824402,\n          \"Height\": 0.010141200385987759,\n          \"Left\": 0.6550252437591553,\n          \"Top\": 0.15157794952392578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6550252437591553,\n            \"Y\": 0.15157794952392578\n          },\n          {\n            \"X\": 0.7200286388397217,\n            \"Y\": 0.15157794952392578\n          },\n          {\n            \"X\": 0.7200286388397217,\n            \"Y\": 0.1617191582918167\n          },\n          {\n            \"X\": 0.6550252437591553,\n            \"Y\": 0.1617191582918167\n          }\n        ]\n      },\n      \"Id\": \"3f7907ae-3a38-437d-ac1e-59d06710eace\",\n      \"Page\": 1,\n      \"SearchKey\": \"domain's\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47523498535156,\n      \"Text\": \"documents.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08381754904985428,\n          \"Height\": 0.010281619615852833,\n          \"Left\": 0.721729040145874,\n          \"Top\": 0.15148116648197174\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.721729040145874,\n            \"Y\": 0.15148116648197174\n          },\n          {\n            \"X\": 0.8055465817451477,\n            \"Y\": 0.15148116648197174\n          },\n          {\n            \"X\": 0.8055465817451477,\n            \"Y\": 0.1617627888917923\n          },\n          {\n            \"X\": 0.721729040145874,\n            \"Y\": 0.1617627888917923\n          }\n        ]\n      },\n      \"Id\": \"dc38331c-80c0-4cea-a3b7-5c14a72de073\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79310607910156,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017466440796852112,\n          \"Height\": 0.012637135572731495,\n          \"Left\": 0.08022850006818771,\n          \"Top\": 0.1892113834619522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08022850006818771,\n            \"Y\": 0.1892113834619522\n          },\n          {\n            \"X\": 0.09769494086503983,\n            \"Y\": 0.1892113834619522\n          },\n          {\n            \"X\": 0.09769494086503983,\n            \"Y\": 0.20184852182865143\n          },\n          {\n            \"X\": 0.08022850006818771,\n            \"Y\": 0.20184852182865143\n          }\n        ]\n      },\n      \"Id\": \"5d5bedd3-3ca6-417a-afb7-c3d1362dcf39\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97714233398438,\n      \"Text\": \"section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07438495010137558,\n          \"Height\": 0.012481852434575558,\n          \"Left\": 0.10215851664543152,\n          \"Top\": 0.1893203854560852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10215851664543152,\n            \"Y\": 0.1893203854560852\n          },\n          {\n            \"X\": 0.1765434741973877,\n            \"Y\": 0.1893203854560852\n          },\n          {\n            \"X\": 0.1765434741973877,\n            \"Y\": 0.20180223882198334\n          },\n          {\n            \"X\": 0.10215851664543152,\n            \"Y\": 0.20180223882198334\n          }\n        ]\n      },\n      \"Id\": \"afbf0917-1342-48a0-8581-f2f961177028\",\n      \"Page\": 1,\n      \"SearchKey\": \"section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97162628173828,\n      \"Text\": \"heading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08177744597196579,\n          \"Height\": 0.01568913832306862,\n          \"Left\": 0.18093976378440857,\n          \"Top\": 0.1889694482088089\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18093976378440857,\n            \"Y\": 0.1889694482088089\n          },\n          {\n            \"X\": 0.26271721720695496,\n            \"Y\": 0.1889694482088089\n          },\n          {\n            \"X\": 0.26271721720695496,\n            \"Y\": 0.20465858280658722\n          },\n          {\n            \"X\": 0.18093976378440857,\n            \"Y\": 0.20465858280658722\n          }\n        ]\n      },\n      \"Id\": \"902efb09-4cce-42d8-bc87-b9a9b33f07f3\",\n      \"Page\": 1,\n      \"SearchKey\": \"heading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98597717285156,\n      \"Text\": \"Many\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04022976756095886,\n          \"Height\": 0.012527383863925934,\n          \"Left\": 0.08054433017969131,\n          \"Top\": 0.2182260900735855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08054433017969131,\n            \"Y\": 0.2182260900735855\n          },\n          {\n            \"X\": 0.12077409774065018,\n            \"Y\": 0.2182260900735855\n          },\n          {\n            \"X\": 0.12077409774065018,\n            \"Y\": 0.23075348138809204\n          },\n          {\n            \"X\": 0.08054433017969131,\n            \"Y\": 0.23075348138809204\n          }\n        ]\n      },\n      \"Id\": \"db1ff863-38a4-44a5-8607-97d42971bf09\",\n      \"Page\": 1,\n      \"SearchKey\": \"Many\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98491668701172,\n      \"Text\": \"documents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07878132909536362,\n          \"Height\": 0.010334950871765614,\n          \"Left\": 0.12352216243743896,\n          \"Top\": 0.21845035254955292\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12352216243743896,\n            \"Y\": 0.21845035254955292\n          },\n          {\n            \"X\": 0.20230349898338318,\n            \"Y\": 0.21845035254955292\n          },\n          {\n            \"X\": 0.20230349898338318,\n            \"Y\": 0.22878530621528625\n          },\n          {\n            \"X\": 0.12352216243743896,\n            \"Y\": 0.22878530621528625\n          }\n        ]\n      },\n      \"Id\": \"440d1172-1eb9-4ed4-a158-36903982749e\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90242004394531,\n      \"Text\": \"divide\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04326975345611572,\n          \"Height\": 0.010270103812217712,\n          \"Left\": 0.20472073554992676,\n          \"Top\": 0.21832410991191864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20472073554992676,\n            \"Y\": 0.21832410991191864\n          },\n          {\n            \"X\": 0.24799048900604248,\n            \"Y\": 0.21832410991191864\n          },\n          {\n            \"X\": 0.24799048900604248,\n            \"Y\": 0.22859421372413635\n          },\n          {\n            \"X\": 0.20472073554992676,\n            \"Y\": 0.22859421372413635\n          }\n        ]\n      },\n      \"Id\": \"a26516f4-2665-4f5d-adce-5192dca04e7e\",\n      \"Page\": 1,\n      \"SearchKey\": \"divide\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98532104492188,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05365820229053497,\n          \"Height\": 0.010250244289636612,\n          \"Left\": 0.25053346157073975,\n          \"Top\": 0.21842192113399506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25053346157073975,\n            \"Y\": 0.21842192113399506\n          },\n          {\n            \"X\": 0.3041916787624359,\n            \"Y\": 0.21842192113399506\n          },\n          {\n            \"X\": 0.3041916787624359,\n            \"Y\": 0.22867216169834137\n          },\n          {\n            \"X\": 0.25053346157073975,\n            \"Y\": 0.22867216169834137\n          }\n        ]\n      },\n      \"Id\": \"129ec3af-eda0-40f9-883f-719f78cb3102\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91534423828125,\n      \"Text\": \"into\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02772917039692402,\n          \"Height\": 0.010134395211935043,\n          \"Left\": 0.3062765300273895,\n          \"Top\": 0.2184293270111084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3062765300273895,\n            \"Y\": 0.2184293270111084\n          },\n          {\n            \"X\": 0.3340057134628296,\n            \"Y\": 0.2184293270111084\n          },\n          {\n            \"X\": 0.3340057134628296,\n            \"Y\": 0.22856372594833374\n          },\n          {\n            \"X\": 0.3062765300273895,\n            \"Y\": 0.22856372594833374\n          }\n        ]\n      },\n      \"Id\": \"c9d47be2-a3e8-4944-afd3-b2b431ad45b2\",\n      \"Page\": 1,\n      \"SearchKey\": \"into\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5555419921875,\n      \"Text\": \"multiple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056615762412548065,\n          \"Height\": 0.012238950468599796,\n          \"Left\": 0.33637961745262146,\n          \"Top\": 0.21827292442321777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33637961745262146,\n            \"Y\": 0.21827292442321777\n          },\n          {\n            \"X\": 0.3929953873157501,\n            \"Y\": 0.21827292442321777\n          },\n          {\n            \"X\": 0.3929953873157501,\n            \"Y\": 0.230511873960495\n          },\n          {\n            \"X\": 0.33637961745262146,\n            \"Y\": 0.230511873960495\n          }\n        ]\n      },\n      \"Id\": \"1250b558-0bd9-4599-9538-c21c3e3d1b44\",\n      \"Page\": 1,\n      \"SearchKey\": \"multiple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9570541381836,\n      \"Text\": \"sections\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0592171736061573,\n          \"Height\": 0.010519539937376976,\n          \"Left\": 0.39521166682243347,\n          \"Top\": 0.21820767223834991\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39521166682243347,\n            \"Y\": 0.21820767223834991\n          },\n          {\n            \"X\": 0.4544288218021393,\n            \"Y\": 0.21820767223834991\n          },\n          {\n            \"X\": 0.4544288218021393,\n            \"Y\": 0.22872720658779144\n          },\n          {\n            \"X\": 0.39521166682243347,\n            \"Y\": 0.22872720658779144\n          }\n        ]\n      },\n      \"Id\": \"8e27889d-2c4c-4f47-b421-095f5e805711\",\n      \"Page\": 1,\n      \"SearchKey\": \"sections\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85800170898438,\n      \"Text\": \"(perhaps\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06356478482484818,\n          \"Height\": 0.012346034869551659,\n          \"Left\": 0.4577276110649109,\n          \"Top\": 0.2182949334383011\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4577276110649109,\n            \"Y\": 0.2182949334383011\n          },\n          {\n            \"X\": 0.5212923884391785,\n            \"Y\": 0.2182949334383011\n          },\n          {\n            \"X\": 0.5212923884391785,\n            \"Y\": 0.2306409627199173\n          },\n          {\n            \"X\": 0.4577276110649109,\n            \"Y\": 0.2306409627199173\n          }\n        ]\n      },\n      \"Id\": \"96a221cf-962b-4db2-aaa6-948cd2780819\",\n      \"Page\": 1,\n      \"SearchKey\": \"(perhaps\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9766616821289,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030194437131285667,\n          \"Height\": 0.010153505951166153,\n          \"Left\": 0.5236859917640686,\n          \"Top\": 0.2183842808008194\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5236859917640686,\n            \"Y\": 0.2183842808008194\n          },\n          {\n            \"X\": 0.5538804531097412,\n            \"Y\": 0.2183842808008194\n          },\n          {\n            \"X\": 0.5538804531097412,\n            \"Y\": 0.22853778302669525\n          },\n          {\n            \"X\": 0.5236859917640686,\n            \"Y\": 0.22853778302669525\n          }\n        ]\n      },\n      \"Id\": \"4db105a6-c8e6-4ec4-9921-b38771e003a4\",\n      \"Page\": 1,\n      \"SearchKey\": \"with\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93799591064453,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010405411012470722,\n          \"Height\": 0.008060724474489689,\n          \"Left\": 0.5567570924758911,\n          \"Top\": 0.22047725319862366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5567570924758911,\n            \"Y\": 0.22047725319862366\n          },\n          {\n            \"X\": 0.5671625137329102,\n            \"Y\": 0.22047725319862366\n          },\n          {\n            \"X\": 0.5671625137329102,\n            \"Y\": 0.22853797674179077\n          },\n          {\n            \"X\": 0.5567570924758911,\n            \"Y\": 0.22853797674179077\n          }\n        ]\n      },\n      \"Id\": \"78467dd9-393c-48b5-b240-f715404d9c1c\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94210815429688,\n      \"Text\": \"hierarchy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06693968921899796,\n          \"Height\": 0.012325072661042213,\n          \"Left\": 0.5694555044174194,\n          \"Top\": 0.21825088560581207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5694555044174194,\n            \"Y\": 0.21825088560581207\n          },\n          {\n            \"X\": 0.6363952159881592,\n            \"Y\": 0.21825088560581207\n          },\n          {\n            \"X\": 0.6363952159881592,\n            \"Y\": 0.23057594895362854\n          },\n          {\n            \"X\": 0.5694555044174194,\n            \"Y\": 0.23057594895362854\n          }\n        ]\n      },\n      \"Id\": \"d9c4e2ce-3642-49b6-bb0d-f1da66333db4\",\n      \"Page\": 1,\n      \"SearchKey\": \"hierarchy\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97837829589844,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015754207968711853,\n          \"Height\": 0.010241682641208172,\n          \"Left\": 0.6388564109802246,\n          \"Top\": 0.2183193564414978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6388564109802246,\n            \"Y\": 0.2183193564414978\n          },\n          {\n            \"X\": 0.6546106338500977,\n            \"Y\": 0.2183193564414978\n          },\n          {\n            \"X\": 0.6546106338500977,\n            \"Y\": 0.22856102883815765\n          },\n          {\n            \"X\": 0.6388564109802246,\n            \"Y\": 0.22856102883815765\n          }\n        ]\n      },\n      \"Id\": \"a5fbe9df-c37f-475e-9a84-6eecd04c4a1a\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98091125488281,\n      \"Text\": \"different\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05894648656249046,\n          \"Height\": 0.010096567682921886,\n          \"Left\": 0.6560481786727905,\n          \"Top\": 0.21839302778244019\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6560481786727905,\n            \"Y\": 0.21839302778244019\n          },\n          {\n            \"X\": 0.7149946689605713,\n            \"Y\": 0.21839302778244019\n          },\n          {\n            \"X\": 0.7149946689605713,\n            \"Y\": 0.22848959267139435\n          },\n          {\n            \"X\": 0.6560481786727905,\n            \"Y\": 0.22848959267139435\n          }\n        ]\n      },\n      \"Id\": \"71e8b58b-a40f-454f-b202-c0e36d18a6d0\",\n      \"Page\": 1,\n      \"SearchKey\": \"different\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78756713867188,\n      \"Text\": \"levels).\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05070248991250992,\n          \"Height\": 0.012415018863976002,\n          \"Left\": 0.7174914479255676,\n          \"Top\": 0.21808405220508575\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7174914479255676,\n            \"Y\": 0.21808405220508575\n          },\n          {\n            \"X\": 0.7681939601898193,\n            \"Y\": 0.21808405220508575\n          },\n          {\n            \"X\": 0.7681939601898193,\n            \"Y\": 0.23049907386302948\n          },\n          {\n            \"X\": 0.7174914479255676,\n            \"Y\": 0.23049907386302948\n          }\n        ]\n      },\n      \"Id\": \"f6e5a32e-9b8d-4bc5-bf40-a4a2e90308d3\",\n      \"Page\": 1,\n      \"SearchKey\": \"levels).\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97756958007812,\n      \"Text\": \"For\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02569531463086605,\n          \"Height\": 0.010251673869788647,\n          \"Left\": 0.08085297793149948,\n          \"Top\": 0.24322502315044403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08085297793149948,\n            \"Y\": 0.24322502315044403\n          },\n          {\n            \"X\": 0.10654829442501068,\n            \"Y\": 0.24322502315044403\n          },\n          {\n            \"X\": 0.10654829442501068,\n            \"Y\": 0.25347667932510376\n          },\n          {\n            \"X\": 0.08085297793149948,\n            \"Y\": 0.25347667932510376\n          }\n        ]\n      },\n      \"Id\": \"91f23db3-5a24-4bfd-930a-985d64071d4a\",\n      \"Page\": 1,\n      \"SearchKey\": \"For\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89164733886719,\n      \"Text\": \"our\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025073299184441566,\n          \"Height\": 0.008360781706869602,\n          \"Left\": 0.10851114243268967,\n          \"Top\": 0.24511095881462097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10851114243268967,\n            \"Y\": 0.24511095881462097\n          },\n          {\n            \"X\": 0.13358443975448608,\n            \"Y\": 0.24511095881462097\n          },\n          {\n            \"X\": 0.13358443975448608,\n            \"Y\": 0.2534717321395874\n          },\n          {\n            \"X\": 0.10851114243268967,\n            \"Y\": 0.2534717321395874\n          }\n        ]\n      },\n      \"Id\": \"ea4f6e50-e2f6-4f81-befc-0a669be24693\",\n      \"Page\": 1,\n      \"SearchKey\": \"our\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97750854492188,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02739068865776062,\n          \"Height\": 0.010124975815415382,\n          \"Left\": 0.13546288013458252,\n          \"Top\": 0.2437039017677307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13546288013458252,\n            \"Y\": 0.2437039017677307\n          },\n          {\n            \"X\": 0.16285358369350433,\n            \"Y\": 0.2437039017677307\n          },\n          {\n            \"X\": 0.16285358369350433,\n            \"Y\": 0.25382888317108154\n          },\n          {\n            \"X\": 0.13546288013458252,\n            \"Y\": 0.25382888317108154\n          }\n        ]\n      },\n      \"Id\": \"cd1acb8a-02a8-415d-b91d-21bc33b6c30f\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26545715332031,\n      \"Text\": \"document,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07694865763187408,\n          \"Height\": 0.011307892389595509,\n          \"Left\": 0.16456258296966553,\n          \"Top\": 0.24357742071151733\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16456258296966553,\n            \"Y\": 0.24357742071151733\n          },\n          {\n            \"X\": 0.2415112406015396,\n            \"Y\": 0.24357742071151733\n          },\n          {\n            \"X\": 0.2415112406015396,\n            \"Y\": 0.25488531589508057\n          },\n          {\n            \"X\": 0.16456258296966553,\n            \"Y\": 0.25488531589508057\n          }\n        ]\n      },\n      \"Id\": \"057ebf42-a7f5-482e-b5c1-b06b07e64957\",\n      \"Page\": 1,\n      \"SearchKey\": \"document,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84846496582031,\n      \"Text\": \"adding\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049600448459386826,\n          \"Height\": 0.01249881274998188,\n          \"Left\": 0.24324528872966766,\n          \"Top\": 0.2431575059890747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24324528872966766,\n            \"Y\": 0.2431575059890747\n          },\n          {\n            \"X\": 0.2928457260131836,\n            \"Y\": 0.2431575059890747\n          },\n          {\n            \"X\": 0.2928457260131836,\n            \"Y\": 0.25565630197525024\n          },\n          {\n            \"X\": 0.24324528872966766,\n            \"Y\": 0.25565630197525024\n          }\n        ]\n      },\n      \"Id\": \"d0d5ecb5-487a-49d1-931d-62efc8f85b25\",\n      \"Page\": 1,\n      \"SearchKey\": \"adding\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94881439208984,\n      \"Text\": \"subsections\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08438379317522049,\n          \"Height\": 0.010385124012827873,\n          \"Left\": 0.2955513894557953,\n          \"Top\": 0.24349695444107056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2955513894557953,\n            \"Y\": 0.24349695444107056\n          },\n          {\n            \"X\": 0.3799351751804352,\n            \"Y\": 0.24349695444107056\n          },\n          {\n            \"X\": 0.3799351751804352,\n            \"Y\": 0.2538820803165436\n          },\n          {\n            \"X\": 0.2955513894557953,\n            \"Y\": 0.2538820803165436\n          }\n        ]\n      },\n      \"Id\": \"23d02267-aebb-4131-85dc-402c3780d9eb\",\n      \"Page\": 1,\n      \"SearchKey\": \"subsections\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9740219116211,\n      \"Text\": \"also\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030490869656205177,\n          \"Height\": 0.01022755354642868,\n          \"Left\": 0.3830776810646057,\n          \"Top\": 0.2433362454175949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3830776810646057,\n            \"Y\": 0.2433362454175949\n          },\n          {\n            \"X\": 0.41356855630874634,\n            \"Y\": 0.2433362454175949\n          },\n          {\n            \"X\": 0.41356855630874634,\n            \"Y\": 0.253563791513443\n          },\n          {\n            \"X\": 0.3830776810646057,\n            \"Y\": 0.253563791513443\n          }\n        ]\n      },\n      \"Id\": \"4b2241ed-bc19-445f-8409-b4adf8fa08b1\",\n      \"Page\": 1,\n      \"SearchKey\": \"also\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76243591308594,\n      \"Text\": \"helps\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039925090968608856,\n          \"Height\": 0.01185628306120634,\n          \"Left\": 0.4161877930164337,\n          \"Top\": 0.24326269328594208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4161877930164337,\n            \"Y\": 0.24326269328594208\n          },\n          {\n            \"X\": 0.4561128616333008,\n            \"Y\": 0.24326269328594208\n          },\n          {\n            \"X\": 0.4561128616333008,\n            \"Y\": 0.2551189661026001\n          },\n          {\n            \"X\": 0.4161877930164337,\n            \"Y\": 0.2551189661026001\n          }\n        ]\n      },\n      \"Id\": \"8a7e8776-4a3a-45a1-92c2-138bf3b1bdbc\",\n      \"Page\": 1,\n      \"SearchKey\": \"helps\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98137664794922,\n      \"Text\": \"consume\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06488967686891556,\n          \"Height\": 0.008624795824289322,\n          \"Left\": 0.4586622416973114,\n          \"Top\": 0.24501262605190277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4586622416973114,\n            \"Y\": 0.24501262605190277\n          },\n          {\n            \"X\": 0.523551881313324,\n            \"Y\": 0.24501262605190277\n          },\n          {\n            \"X\": 0.523551881313324,\n            \"Y\": 0.2536374032497406\n          },\n          {\n            \"X\": 0.4586622416973114,\n            \"Y\": 0.2536374032497406\n          }\n        ]\n      },\n      \"Id\": \"2dd7efe0-1161-4076-8831-7e24b609ce27\",\n      \"Page\": 1,\n      \"SearchKey\": \"consume\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90957641601562,\n      \"Text\": \"vertical\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05147100239992142,\n          \"Height\": 0.010020382702350616,\n          \"Left\": 0.5264690518379211,\n          \"Top\": 0.24342818558216095\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5264690518379211,\n            \"Y\": 0.24342818558216095\n          },\n          {\n            \"X\": 0.577940046787262,\n            \"Y\": 0.24342818558216095\n          },\n          {\n            \"X\": 0.577940046787262,\n            \"Y\": 0.25344857573509216\n          },\n          {\n            \"X\": 0.5264690518379211,\n            \"Y\": 0.25344857573509216\n          }\n        ]\n      },\n      \"Id\": \"832d2342-ea1b-4043-8b41-b89f7310736a\",\n      \"Page\": 1,\n      \"SearchKey\": \"vertical\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99176025390625,\n      \"Text\": \"space\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0439571812748909,\n          \"Height\": 0.010329751297831535,\n          \"Left\": 0.5811492204666138,\n          \"Top\": 0.2449900209903717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5811492204666138,\n            \"Y\": 0.2449900209903717\n          },\n          {\n            \"X\": 0.6251064538955688,\n            \"Y\": 0.2449900209903717\n          },\n          {\n            \"X\": 0.6251064538955688,\n            \"Y\": 0.2553197741508484\n          },\n          {\n            \"X\": 0.5811492204666138,\n            \"Y\": 0.2553197741508484\n          }\n        ]\n      },\n      \"Id\": \"89e9b46c-769a-47fa-bb77-4ca955ab4ff4\",\n      \"Page\": 1,\n      \"SearchKey\": \"space\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97572326660156,\n      \"Text\": \"since\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03838734328746796,\n          \"Height\": 0.00997453834861517,\n          \"Left\": 0.6275395750999451,\n          \"Top\": 0.24340033531188965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6275395750999451,\n            \"Y\": 0.24340033531188965\n          },\n          {\n            \"X\": 0.6659269332885742,\n            \"Y\": 0.24340033531188965\n          },\n          {\n            \"X\": 0.6659269332885742,\n            \"Y\": 0.2533748745918274\n          },\n          {\n            \"X\": 0.6275395750999451,\n            \"Y\": 0.2533748745918274\n          }\n        ]\n      },\n      \"Id\": \"d19f823e-31c5-4f0a-93c8-820a66e45008\",\n      \"Page\": 1,\n      \"SearchKey\": \"since\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87669372558594,\n      \"Text\": \"we\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022008586674928665,\n          \"Height\": 0.008169400505721569,\n          \"Left\": 0.6684319376945496,\n          \"Top\": 0.24517042934894562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6684319376945496,\n            \"Y\": 0.24517042934894562\n          },\n          {\n            \"X\": 0.6904405355453491,\n            \"Y\": 0.24517042934894562\n          },\n          {\n            \"X\": 0.6904405355453491,\n            \"Y\": 0.25333982706069946\n          },\n          {\n            \"X\": 0.6684319376945496,\n            \"Y\": 0.25333982706069946\n          }\n        ]\n      },\n      \"Id\": \"47caa467-e4fc-4a6a-a3fb-e60b9a442e12\",\n      \"Page\": 1,\n      \"SearchKey\": \"we\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9891357421875,\n      \"Text\": \"need\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03700591251254082,\n          \"Height\": 0.009987333789467812,\n          \"Left\": 0.6933386921882629,\n          \"Top\": 0.24343812465667725\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6933386921882629,\n            \"Y\": 0.24343812465667725\n          },\n          {\n            \"X\": 0.7303445935249329,\n            \"Y\": 0.24343812465667725\n          },\n          {\n            \"X\": 0.7303445935249329,\n            \"Y\": 0.2534254491329193\n          },\n          {\n            \"X\": 0.6933386921882629,\n            \"Y\": 0.2534254491329193\n          }\n        ]\n      },\n      \"Id\": \"85a613d0-12de-481b-8dba-a242a7d73027\",\n      \"Page\": 1,\n      \"SearchKey\": \"need\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98483276367188,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01566494069993496,\n          \"Height\": 0.009852305054664612,\n          \"Left\": 0.7319080829620361,\n          \"Top\": 0.2435954511165619\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7319080829620361,\n            \"Y\": 0.2435954511165619\n          },\n          {\n            \"X\": 0.7475730180740356,\n            \"Y\": 0.2435954511165619\n          },\n          {\n            \"X\": 0.7475730180740356,\n            \"Y\": 0.2534477412700653\n          },\n          {\n            \"X\": 0.7319080829620361,\n            \"Y\": 0.2534477412700653\n          }\n        ]\n      },\n      \"Id\": \"c2c9a6ca-878c-4dc0-b931-109bd4cf00c7\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9684829711914,\n      \"Text\": \"write\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03512352705001831,\n          \"Height\": 0.009884265251457691,\n          \"Left\": 0.7495792508125305,\n          \"Top\": 0.24351009726524353\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7495792508125305,\n            \"Y\": 0.24351009726524353\n          },\n          {\n            \"X\": 0.7847027778625488,\n            \"Y\": 0.24351009726524353\n          },\n          {\n            \"X\": 0.7847027778625488,\n            \"Y\": 0.25339436531066895\n          },\n          {\n            \"X\": 0.7495792508125305,\n            \"Y\": 0.25339436531066895\n          }\n        ]\n      },\n      \"Id\": \"639083d9-1f2e-4bb8-9db5-159bf1a8ab6e\",\n      \"Page\": 1,\n      \"SearchKey\": \"write\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97135162353516,\n      \"Text\": \"enough\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05487806349992752,\n          \"Height\": 0.011871909722685814,\n          \"Left\": 0.7878096103668213,\n          \"Top\": 0.24351976811885834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7878096103668213,\n            \"Y\": 0.24351976811885834\n          },\n          {\n            \"X\": 0.842687726020813,\n            \"Y\": 0.24351976811885834\n          },\n          {\n            \"X\": 0.842687726020813,\n            \"Y\": 0.2553916871547699\n          },\n          {\n            \"X\": 0.7878096103668213,\n            \"Y\": 0.2553916871547699\n          }\n        ]\n      },\n      \"Id\": \"64c69e26-ef0f-4106-9725-1673b2beeaea\",\n      \"Page\": 1,\n      \"SearchKey\": \"enough\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97813415527344,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05366842821240425,\n          \"Height\": 0.009903647936880589,\n          \"Left\": 0.844991147518158,\n          \"Top\": 0.24380990862846375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.844991147518158,\n            \"Y\": 0.24380990862846375\n          },\n          {\n            \"X\": 0.8986595869064331,\n            \"Y\": 0.24380990862846375\n          },\n          {\n            \"X\": 0.8986595869064331,\n            \"Y\": 0.25371354818344116\n          },\n          {\n            \"X\": 0.844991147518158,\n            \"Y\": 0.25371354818344116\n          }\n        ]\n      },\n      \"Id\": \"c349a503-c9d6-4ecd-8277-2b76a894f011\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98933410644531,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020391035825014114,\n          \"Height\": 0.010112888179719448,\n          \"Left\": 0.08037678152322769,\n          \"Top\": 0.25600773096084595\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08037678152322769,\n            \"Y\": 0.25600773096084595\n          },\n          {\n            \"X\": 0.1007678210735321,\n            \"Y\": 0.25600773096084595\n          },\n          {\n            \"X\": 0.1007678210735321,\n            \"Y\": 0.26612064242362976\n          },\n          {\n            \"X\": 0.08037678152322769,\n            \"Y\": 0.26612064242362976\n          }\n        ]\n      },\n      \"Id\": \"c22b94ef-83d1-4bfb-913c-58c4f2a64867\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9893569946289,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02400079183280468,\n          \"Height\": 0.010057134553790092,\n          \"Left\": 0.10263627767562866,\n          \"Top\": 0.25594526529312134\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10263627767562866,\n            \"Y\": 0.25594526529312134\n          },\n          {\n            \"X\": 0.1266370713710785,\n            \"Y\": 0.25594526529312134\n          },\n          {\n            \"X\": 0.1266370713710785,\n            \"Y\": 0.2660023868083954\n          },\n          {\n            \"X\": 0.10263627767562866,\n            \"Y\": 0.2660023868083954\n          }\n        ]\n      },\n      \"Id\": \"a2dd4fce-bfe3-47ac-b973-91808ad64d8f\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9740219116211,\n      \"Text\": \"total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03230923414230347,\n          \"Height\": 0.010197226889431477,\n          \"Left\": 0.1292194426059723,\n          \"Top\": 0.2558220326900482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1292194426059723,\n            \"Y\": 0.2558220326900482\n          },\n          {\n            \"X\": 0.16152866184711456,\n            \"Y\": 0.2558220326900482\n          },\n          {\n            \"X\": 0.16152866184711456,\n            \"Y\": 0.2660192549228668\n          },\n          {\n            \"X\": 0.1292194426059723,\n            \"Y\": 0.2660192549228668\n          }\n        ]\n      },\n      \"Id\": \"b9c53bf0-a1d1-4c37-be1e-96f50cb0c9d0\",\n      \"Page\": 1,\n      \"SearchKey\": \"total\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94795227050781,\n      \"Text\": \"height\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04522424191236496,\n          \"Height\": 0.012518632225692272,\n          \"Left\": 0.163915753364563,\n          \"Top\": 0.2555219531059265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.163915753364563,\n            \"Y\": 0.2555219531059265\n          },\n          {\n            \"X\": 0.20913998782634735,\n            \"Y\": 0.2555219531059265\n          },\n          {\n            \"X\": 0.20913998782634735,\n            \"Y\": 0.26804056763648987\n          },\n          {\n            \"X\": 0.163915753364563,\n            \"Y\": 0.26804056763648987\n          }\n        ]\n      },\n      \"Id\": \"5efb3b57-43dd-4c54-be09-7f9907307fc2\",\n      \"Page\": 1,\n      \"SearchKey\": \"height\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96589660644531,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01552354171872139,\n          \"Height\": 0.010406957007944584,\n          \"Left\": 0.21139603853225708,\n          \"Top\": 0.2557709515094757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21139603853225708,\n            \"Y\": 0.2557709515094757\n          },\n          {\n            \"X\": 0.22691959142684937,\n            \"Y\": 0.2557709515094757\n          },\n          {\n            \"X\": 0.22691959142684937,\n            \"Y\": 0.2661779224872589\n          },\n          {\n            \"X\": 0.21139603853225708,\n            \"Y\": 0.2661779224872589\n          }\n        ]\n      },\n      \"Id\": \"519882a8-3e70-47b3-b03f-35335b21955f\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99223327636719,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023742634803056717,\n          \"Height\": 0.010330677032470703,\n          \"Left\": 0.22820551693439484,\n          \"Top\": 0.25575992465019226\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22820551693439484,\n            \"Y\": 0.25575992465019226\n          },\n          {\n            \"X\": 0.25194814801216125,\n            \"Y\": 0.25575992465019226\n          },\n          {\n            \"X\": 0.25194814801216125,\n            \"Y\": 0.26609060168266296\n          },\n          {\n            \"X\": 0.22820551693439484,\n            \"Y\": 0.26609060168266296\n          }\n        ]\n      },\n      \"Id\": \"30866566-cb00-448d-b003-983e90bccc8d\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9765625,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03674905747175217,\n          \"Height\": 0.010380223393440247,\n          \"Left\": 0.2547112703323364,\n          \"Top\": 0.25780540704727173\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2547112703323364,\n            \"Y\": 0.25780540704727173\n          },\n          {\n            \"X\": 0.2914603054523468,\n            \"Y\": 0.25780540704727173\n          },\n          {\n            \"X\": 0.2914603054523468,\n            \"Y\": 0.26818564534187317\n          },\n          {\n            \"X\": 0.2547112703323364,\n            \"Y\": 0.26818564534187317\n          }\n        ]\n      },\n      \"Id\": \"f9556886-324c-4daa-9ee6-b979de5655b0\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9666976928711,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014863143675029278,\n          \"Height\": 0.009909910149872303,\n          \"Left\": 0.2941524386405945,\n          \"Top\": 0.25621935725212097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2941524386405945,\n            \"Y\": 0.25621935725212097\n          },\n          {\n            \"X\": 0.30901557207107544,\n            \"Y\": 0.25621935725212097\n          },\n          {\n            \"X\": 0.30901557207107544,\n            \"Y\": 0.2661292552947998\n          },\n          {\n            \"X\": 0.2941524386405945,\n            \"Y\": 0.2661292552947998\n          }\n        ]\n      },\n      \"Id\": \"9b24015f-f450-43c9-9fdb-bfef2bc5fbcb\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95658874511719,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01903410628437996,\n          \"Height\": 0.010024738498032093,\n          \"Left\": 0.31211942434310913,\n          \"Top\": 0.25600147247314453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31211942434310913,\n            \"Y\": 0.25600147247314453\n          },\n          {\n            \"X\": 0.33115354180336,\n            \"Y\": 0.25600147247314453\n          },\n          {\n            \"X\": 0.33115354180336,\n            \"Y\": 0.26602622866630554\n          },\n          {\n            \"X\": 0.31211942434310913,\n            \"Y\": 0.26602622866630554\n          }\n        ]\n      },\n      \"Id\": \"803784d6-80bc-413f-9039-d8d408cd0362\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9764404296875,\n      \"Text\": \"somewhat\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07437298446893692,\n          \"Height\": 0.010231583379209042,\n          \"Left\": 0.33405598998069763,\n          \"Top\": 0.2559286653995514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33405598998069763,\n            \"Y\": 0.2559286653995514\n          },\n          {\n            \"X\": 0.40842896699905396,\n            \"Y\": 0.2559286653995514\n          },\n          {\n            \"X\": 0.40842896699905396,\n            \"Y\": 0.266160249710083\n          },\n          {\n            \"X\": 0.33405598998069763,\n            \"Y\": 0.266160249710083\n          }\n        ]\n      },\n      \"Id\": \"59ad9c77-93a9-48ae-96f4-5fe19b812280\",\n      \"Page\": 1,\n      \"SearchKey\": \"somewhat\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87445831298828,\n      \"Text\": \"representative\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10124529153108597,\n          \"Height\": 0.0119083346799016,\n          \"Left\": 0.4099809527397156,\n          \"Top\": 0.25596293807029724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4099809527397156,\n            \"Y\": 0.25596293807029724\n          },\n          {\n            \"X\": 0.511226236820221,\n            \"Y\": 0.25596293807029724\n          },\n          {\n            \"X\": 0.511226236820221,\n            \"Y\": 0.26787126064300537\n          },\n          {\n            \"X\": 0.4099809527397156,\n            \"Y\": 0.26787126064300537\n          }\n        ]\n      },\n      \"Id\": \"bc85df07-d855-422e-90f2-d3e764c6e0f4\",\n      \"Page\": 1,\n      \"SearchKey\": \"representative\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97193908691406,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015558511018753052,\n          \"Height\": 0.010031272657215595,\n          \"Left\": 0.5146132111549377,\n          \"Top\": 0.2559984624385834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5146132111549377,\n            \"Y\": 0.2559984624385834\n          },\n          {\n            \"X\": 0.5301716923713684,\n            \"Y\": 0.2559984624385834\n          },\n          {\n            \"X\": 0.5301716923713684,\n            \"Y\": 0.2660297453403473\n          },\n          {\n            \"X\": 0.5146132111549377,\n            \"Y\": 0.2660297453403473\n          }\n        ]\n      },\n      \"Id\": \"ded1109c-a13c-4cf0-960e-e4b475b23feb\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79076385498047,\n      \"Text\": \"real-world\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07120661437511444,\n          \"Height\": 0.010224123485386372,\n          \"Left\": 0.5325577855110168,\n          \"Top\": 0.25593212246894836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5325577855110168,\n            \"Y\": 0.25593212246894836\n          },\n          {\n            \"X\": 0.6037644147872925,\n            \"Y\": 0.25593212246894836\n          },\n          {\n            \"X\": 0.6037644147872925,\n            \"Y\": 0.26615622639656067\n          },\n          {\n            \"X\": 0.5325577855110168,\n            \"Y\": 0.26615622639656067\n          }\n        ]\n      },\n      \"Id\": \"24fd4e45-0aca-4ec7-85b9-a42f78e32e91\",\n      \"Page\": 1,\n      \"SearchKey\": \"real-world\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9632568359375,\n      \"Text\": \"document\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07140351086854935,\n          \"Height\": 0.010361711494624615,\n          \"Left\": 0.605485737323761,\n          \"Top\": 0.25584694743156433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.605485737323761,\n            \"Y\": 0.25584694743156433\n          },\n          {\n            \"X\": 0.6768892407417297,\n            \"Y\": 0.25584694743156433\n          },\n          {\n            \"X\": 0.6768892407417297,\n            \"Y\": 0.2662086486816406\n          },\n          {\n            \"X\": 0.605485737323761,\n            \"Y\": 0.2662086486816406\n          }\n        ]\n      },\n      \"Id\": \"9aa11d96-5cc2-42af-bb8f-b5892928f50d\",\n      \"Page\": 1,\n      \"SearchKey\": \"document\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63806915283203,\n      \"Text\": \"proportions.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08467252552509308,\n          \"Height\": 0.012053980492055416,\n          \"Left\": 0.6794675588607788,\n          \"Top\": 0.2558550238609314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6794675588607788,\n            \"Y\": 0.2558550238609314\n          },\n          {\n            \"X\": 0.7641401290893555,\n            \"Y\": 0.2558550238609314\n          },\n          {\n            \"X\": 0.7641401290893555,\n            \"Y\": 0.2679089903831482\n          },\n          {\n            \"X\": 0.6794675588607788,\n            \"Y\": 0.2679089903831482\n          }\n        ]\n      },\n      \"Id\": \"1d46fa91-e165-4e8f-ab1a-5ceb3bae9e73\",\n      \"Page\": 1,\n      \"SearchKey\": \"proportions.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49515533447266,\n      \"Text\": \"In\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015009676106274128,\n          \"Height\": 0.010053486563265324,\n          \"Left\": 0.7672792077064514,\n          \"Top\": 0.2560032308101654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7672792077064514,\n            \"Y\": 0.2560032308101654\n          },\n          {\n            \"X\": 0.7822889089584351,\n            \"Y\": 0.2560032308101654\n          },\n          {\n            \"X\": 0.7822889089584351,\n            \"Y\": 0.26605671644210815\n          },\n          {\n            \"X\": 0.7672792077064514,\n            \"Y\": 0.26605671644210815\n          }\n        ]\n      },\n      \"Id\": \"18836b46-39ad-4dc5-a648-0380ec2f094e\",\n      \"Page\": 1,\n      \"SearchKey\": \"In\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97100067138672,\n      \"Text\": \"some\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03982989117503166,\n          \"Height\": 0.008703635074198246,\n          \"Left\": 0.7846934795379639,\n          \"Top\": 0.2574213445186615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7846934795379639,\n            \"Y\": 0.2574213445186615\n          },\n          {\n            \"X\": 0.824523389339447,\n            \"Y\": 0.2574213445186615\n          },\n          {\n            \"X\": 0.824523389339447,\n            \"Y\": 0.26612499356269836\n          },\n          {\n            \"X\": 0.7846934795379639,\n            \"Y\": 0.26612499356269836\n          }\n        ]\n      },\n      \"Id\": \"0320e885-21e8-4742-bf71-d241b2783c3d\",\n      \"Page\": 1,\n      \"SearchKey\": \"some\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9494400024414,\n      \"Text\": \"cases\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04333287477493286,\n          \"Height\": 0.008587336167693138,\n          \"Left\": 0.8275657296180725,\n          \"Top\": 0.2575930953025818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8275657296180725,\n            \"Y\": 0.2575930953025818\n          },\n          {\n            \"X\": 0.8708986043930054,\n            \"Y\": 0.2575930953025818\n          },\n          {\n            \"X\": 0.8708986043930054,\n            \"Y\": 0.26618045568466187\n          },\n          {\n            \"X\": 0.8275657296180725,\n            \"Y\": 0.26618045568466187\n          }\n        ]\n      },\n      \"Id\": \"3989b4c5-13d5-400d-b8a2-3050541992d3\",\n      \"Page\": 1,\n      \"SearchKey\": \"cases\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96270751953125,\n      \"Text\": \"different\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05941435694694519,\n          \"Height\": 0.010698902420699596,\n          \"Left\": 0.08006520569324493,\n          \"Top\": 0.2679198980331421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08006520569324493,\n            \"Y\": 0.2679198980331421\n          },\n          {\n            \"X\": 0.13947956264019012,\n            \"Y\": 0.2679198980331421\n          },\n          {\n            \"X\": 0.13947956264019012,\n            \"Y\": 0.27861878275871277\n          },\n          {\n            \"X\": 0.08006520569324493,\n            \"Y\": 0.27861878275871277\n          }\n        ]\n      },\n      \"Id\": \"36f31593-f79f-4a84-9867-4e41118b868c\",\n      \"Page\": 1,\n      \"SearchKey\": \"different\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93726348876953,\n      \"Text\": \"subsections\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08343680948019028,\n          \"Height\": 0.010355777107179165,\n          \"Left\": 0.14222237467765808,\n          \"Top\": 0.26834481954574585\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14222237467765808,\n            \"Y\": 0.26834481954574585\n          },\n          {\n            \"X\": 0.22565917670726776,\n            \"Y\": 0.26834481954574585\n          },\n          {\n            \"X\": 0.22565917670726776,\n            \"Y\": 0.278700590133667\n          },\n          {\n            \"X\": 0.14222237467765808,\n            \"Y\": 0.278700590133667\n          }\n        ]\n      },\n      \"Id\": \"865961f7-eb11-4a90-98f3-a958f1ca80c5\",\n      \"Page\": 1,\n      \"SearchKey\": \"subsections\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98407745361328,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015624158084392548,\n          \"Height\": 0.010110928677022457,\n          \"Left\": 0.22912688553333282,\n          \"Top\": 0.2684001624584198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22912688553333282,\n            \"Y\": 0.2684001624584198\n          },\n          {\n            \"X\": 0.24475103616714478,\n            \"Y\": 0.2684001624584198\n          },\n          {\n            \"X\": 0.24475103616714478,\n            \"Y\": 0.278511106967926\n          },\n          {\n            \"X\": 0.22912688553333282,\n            \"Y\": 0.278511106967926\n          }\n        ]\n      },\n      \"Id\": \"8d8e6b97-1244-4bd8-98da-6853ff48bb9a\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99478149414062,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023587962612509727,\n          \"Height\": 0.009810271672904491,\n          \"Left\": 0.2464841604232788,\n          \"Top\": 0.26863330602645874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2464841604232788,\n            \"Y\": 0.26863330602645874\n          },\n          {\n            \"X\": 0.2700721323490143,\n            \"Y\": 0.26863330602645874\n          },\n          {\n            \"X\": 0.2700721323490143,\n            \"Y\": 0.2784435749053955\n          },\n          {\n            \"X\": 0.2464841604232788,\n            \"Y\": 0.2784435749053955\n          }\n        ]\n      },\n      \"Id\": \"0deabf7b-2f0f-461f-bcc2-195e68537fdd\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97950744628906,\n      \"Text\": \"document\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07232170552015305,\n          \"Height\": 0.010215411894023418,\n          \"Left\": 0.2723296582698822,\n          \"Top\": 0.268471896648407\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2723296582698822,\n            \"Y\": 0.268471896648407\n          },\n          {\n            \"X\": 0.34465137124061584,\n            \"Y\": 0.268471896648407\n          },\n          {\n            \"X\": 0.34465137124061584,\n            \"Y\": 0.2786872982978821\n          },\n          {\n            \"X\": 0.2723296582698822,\n            \"Y\": 0.2786872982978821\n          }\n        ]\n      },\n      \"Id\": \"147a2efd-b5c6-40b0-9da2-4195aa5bd7bf\",\n      \"Page\": 1,\n      \"SearchKey\": \"document\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98773193359375,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032892175018787384,\n          \"Height\": 0.010390023700892925,\n          \"Left\": 0.3465399444103241,\n          \"Top\": 0.2702309787273407\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3465399444103241,\n            \"Y\": 0.2702309787273407\n          },\n          {\n            \"X\": 0.3794321119785309,\n            \"Y\": 0.2702309787273407\n          },\n          {\n            \"X\": 0.3794321119785309,\n            \"Y\": 0.2806209921836853\n          },\n          {\n            \"X\": 0.3465399444103241,\n            \"Y\": 0.2806209921836853\n          }\n        ]\n      },\n      \"Id\": \"a1128a8c-e76d-42fd-b503-2ba93f49f1ff\",\n      \"Page\": 1,\n      \"SearchKey\": \"may\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94696044921875,\n      \"Text\": \"even\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03597088158130646,\n          \"Height\": 0.008437770418822765,\n          \"Left\": 0.38086169958114624,\n          \"Top\": 0.2700583338737488\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38086169958114624,\n            \"Y\": 0.2700583338737488\n          },\n          {\n            \"X\": 0.4168325960636139,\n            \"Y\": 0.2700583338737488\n          },\n          {\n            \"X\": 0.4168325960636139,\n            \"Y\": 0.2784960865974426\n          },\n          {\n            \"X\": 0.38086169958114624,\n            \"Y\": 0.2784960865974426\n          }\n        ]\n      },\n      \"Id\": \"d36a9070-e239-48ae-ab4e-f670ee53331a\",\n      \"Page\": 1,\n      \"SearchKey\": \"even\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9732894897461,\n      \"Text\": \"change\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05312560871243477,\n          \"Height\": 0.012073690071702003,\n          \"Left\": 0.4195459485054016,\n          \"Top\": 0.2685784697532654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4195459485054016,\n            \"Y\": 0.2685784697532654\n          },\n          {\n            \"X\": 0.4726715683937073,\n            \"Y\": 0.2685784697532654\n          },\n          {\n            \"X\": 0.4726715683937073,\n            \"Y\": 0.28065216541290283\n          },\n          {\n            \"X\": 0.4195459485054016,\n            \"Y\": 0.28065216541290283\n          }\n        ]\n      },\n      \"Id\": \"f36d4b74-ba38-4c83-8d93-368f8b2819a5\",\n      \"Page\": 1,\n      \"SearchKey\": \"change\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99437713623047,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0238526351749897,\n          \"Height\": 0.009840489365160465,\n          \"Left\": 0.4754469394683838,\n          \"Top\": 0.26860424876213074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4754469394683838,\n            \"Y\": 0.26860424876213074\n          },\n          {\n            \"X\": 0.4992995858192444,\n            \"Y\": 0.26860424876213074\n          },\n          {\n            \"X\": 0.4992995858192444,\n            \"Y\": 0.27844473719596863\n          },\n          {\n            \"X\": 0.4754469394683838,\n            \"Y\": 0.27844473719596863\n          }\n        ]\n      },\n      \"Id\": \"35554c8f-8249-4f48-993b-d59747019137\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98374938964844,\n      \"Text\": \"number\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05498617887496948,\n          \"Height\": 0.010351856239140034,\n          \"Left\": 0.5017859935760498,\n          \"Top\": 0.2683003842830658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5017859935760498,\n            \"Y\": 0.2683003842830658\n          },\n          {\n            \"X\": 0.5567721724510193,\n            \"Y\": 0.2683003842830658\n          },\n          {\n            \"X\": 0.5567721724510193,\n            \"Y\": 0.27865225076675415\n          },\n          {\n            \"X\": 0.5017859935760498,\n            \"Y\": 0.27865225076675415\n          }\n        ]\n      },\n      \"Id\": \"fd1311bf-93eb-453f-b963-79739d76ac22\",\n      \"Page\": 1,\n      \"SearchKey\": \"number\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9871826171875,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01605200581252575,\n          \"Height\": 0.010074666701257229,\n          \"Left\": 0.5593950152397156,\n          \"Top\": 0.268449604511261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5593950152397156,\n            \"Y\": 0.268449604511261\n          },\n          {\n            \"X\": 0.5754469633102417,\n            \"Y\": 0.268449604511261\n          },\n          {\n            \"X\": 0.5754469633102417,\n            \"Y\": 0.2785242795944214\n          },\n          {\n            \"X\": 0.5593950152397156,\n            \"Y\": 0.2785242795944214\n          }\n        ]\n      },\n      \"Id\": \"8a527e60-e4f9-49c7-829c-c4c750e52f47\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98222351074219,\n      \"Text\": \"text\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027157114818692207,\n          \"Height\": 0.009891561232507229,\n          \"Left\": 0.5773986577987671,\n          \"Top\": 0.2685979902744293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5773986577987671,\n            \"Y\": 0.2685979902744293\n          },\n          {\n            \"X\": 0.6045557260513306,\n            \"Y\": 0.2685979902744293\n          },\n          {\n            \"X\": 0.6045557260513306,\n            \"Y\": 0.2784895598888397\n          },\n          {\n            \"X\": 0.5773986577987671,\n            \"Y\": 0.2784895598888397\n          }\n        ]\n      },\n      \"Id\": \"3e73a48b-4e76-4e06-b90e-c61f13e372fb\",\n      \"Page\": 1,\n      \"SearchKey\": \"text\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97015380859375,\n      \"Text\": \"columns\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06009877473115921,\n          \"Height\": 0.009950635954737663,\n          \"Left\": 0.607147753238678,\n          \"Top\": 0.26850172877311707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.607147753238678,\n            \"Y\": 0.26850172877311707\n          },\n          {\n            \"X\": 0.6672465205192566,\n            \"Y\": 0.26850172877311707\n          },\n          {\n            \"X\": 0.6672465205192566,\n            \"Y\": 0.2784523665904999\n          },\n          {\n            \"X\": 0.607147753238678,\n            \"Y\": 0.2784523665904999\n          }\n        ]\n      },\n      \"Id\": \"f0bef252-73e9-4e77-821d-3da1da5402a6\",\n      \"Page\": 1,\n      \"SearchKey\": \"columns\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98318481445312,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014610059559345245,\n          \"Height\": 0.00966288335621357,\n          \"Left\": 0.6696599721908569,\n          \"Top\": 0.26869702339172363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6696599721908569,\n            \"Y\": 0.26869702339172363\n          },\n          {\n            \"X\": 0.6842700242996216,\n            \"Y\": 0.26869702339172363\n          },\n          {\n            \"X\": 0.6842700242996216,\n            \"Y\": 0.27835988998413086\n          },\n          {\n            \"X\": 0.6696599721908569,\n            \"Y\": 0.27835988998413086\n          }\n        ]\n      },\n      \"Id\": \"ec8c0368-d8dd-4fad-9355-ce9df0908a84\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9894790649414,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023830659687519073,\n          \"Height\": 0.009653028100728989,\n          \"Left\": 0.686806857585907,\n          \"Top\": 0.2687171995639801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.686806857585907,\n            \"Y\": 0.2687171995639801\n          },\n          {\n            \"X\": 0.7106375098228455,\n            \"Y\": 0.2687171995639801\n          },\n          {\n            \"X\": 0.7106375098228455,\n            \"Y\": 0.2783702313899994\n          },\n          {\n            \"X\": 0.686806857585907,\n            \"Y\": 0.2783702313899994\n          }\n        ]\n      },\n      \"Id\": \"9fbf3f32-0dd6-4aa7-aa63-76e80cfbe1f4\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.31640625,\n      \"Text\": \"layout.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047131169587373734,\n          \"Height\": 0.011953961104154587,\n          \"Left\": 0.7132951617240906,\n          \"Top\": 0.2685169279575348\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7132951617240906,\n            \"Y\": 0.2685169279575348\n          },\n          {\n            \"X\": 0.7604263424873352,\n            \"Y\": 0.2685169279575348\n          },\n          {\n            \"X\": 0.7604263424873352,\n            \"Y\": 0.2804708778858185\n          },\n          {\n            \"X\": 0.7132951617240906,\n            \"Y\": 0.2804708778858185\n          }\n        ]\n      },\n      \"Id\": \"04f4dbbe-5b2e-4fe1-9680-f0834c3a0266\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9580078125,\n      \"Text\": \"When\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04357968270778656,\n          \"Height\": 0.010196628049015999,\n          \"Left\": 0.10676950961351395,\n          \"Top\": 0.31016379594802856\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10676950961351395,\n            \"Y\": 0.31016379594802856\n          },\n          {\n            \"X\": 0.1503491848707199,\n            \"Y\": 0.31016379594802856\n          },\n          {\n            \"X\": 0.1503491848707199,\n            \"Y\": 0.3203604221343994\n          },\n          {\n            \"X\": 0.10676950961351395,\n            \"Y\": 0.3203604221343994\n          }\n        ]\n      },\n      \"Id\": \"5b93e867-212c-4510-bf8c-b9893f5f75c3\",\n      \"Page\": 1,\n      \"SearchKey\": \"When\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88895416259766,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010716000571846962,\n          \"Height\": 0.008332796394824982,\n          \"Left\": 0.15306700766086578,\n          \"Top\": 0.3119921088218689\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15306700766086578,\n            \"Y\": 0.3119921088218689\n          },\n          {\n            \"X\": 0.1637830138206482,\n            \"Y\": 0.3119921088218689\n          },\n          {\n            \"X\": 0.1637830138206482,\n            \"Y\": 0.32032492756843567\n          },\n          {\n            \"X\": 0.15306700766086578,\n            \"Y\": 0.32032492756843567\n          }\n        ]\n      },\n      \"Id\": \"51c882bc-4107-4d03-8b5a-97c9885dcac8\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98867797851562,\n      \"Text\": \"section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05196120962500572,\n          \"Height\": 0.010136463679373264,\n          \"Left\": 0.1661423295736313,\n          \"Top\": 0.3103797435760498\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1661423295736313,\n            \"Y\": 0.3103797435760498\n          },\n          {\n            \"X\": 0.2181035429239273,\n            \"Y\": 0.3103797435760498\n          },\n          {\n            \"X\": 0.2181035429239273,\n            \"Y\": 0.3205161988735199\n          },\n          {\n            \"X\": 0.1661423295736313,\n            \"Y\": 0.3205161988735199\n          }\n        ]\n      },\n      \"Id\": \"bf1b4794-5df4-4ace-a0fb-0be1a4f6b14d\",\n      \"Page\": 1,\n      \"SearchKey\": \"section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97797393798828,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015684230253100395,\n          \"Height\": 0.010194014757871628,\n          \"Left\": 0.22033528983592987,\n          \"Top\": 0.3101569414138794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22033528983592987,\n            \"Y\": 0.3101569414138794\n          },\n          {\n            \"X\": 0.23601952195167542,\n            \"Y\": 0.3101569414138794\n          },\n          {\n            \"X\": 0.23601952195167542,\n            \"Y\": 0.3203509747982025\n          },\n          {\n            \"X\": 0.22033528983592987,\n            \"Y\": 0.3203509747982025\n          }\n        ]\n      },\n      \"Id\": \"dd8d02ae-0426-427e-a6ae-706d3973d846\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82899475097656,\n      \"Text\": \"(LTR)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03972514346241951,\n          \"Height\": 0.012161186896264553,\n          \"Left\": 0.2383994460105896,\n          \"Top\": 0.3102002441883087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2383994460105896,\n            \"Y\": 0.3102002441883087\n          },\n          {\n            \"X\": 0.27812460064888,\n            \"Y\": 0.3102002441883087\n          },\n          {\n            \"X\": 0.27812460064888,\n            \"Y\": 0.32236143946647644\n          },\n          {\n            \"X\": 0.2383994460105896,\n            \"Y\": 0.32236143946647644\n          }\n        ]\n      },\n      \"Id\": \"70db81f3-a253-4ec4-9d1b-ded68f38a859\",\n      \"Page\": 1,\n      \"SearchKey\": \"(LTR)\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97383117675781,\n      \"Text\": \"text\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027641305699944496,\n          \"Height\": 0.010046462528407574,\n          \"Left\": 0.2813270688056946,\n          \"Top\": 0.3103519678115845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2813270688056946,\n            \"Y\": 0.3103519678115845\n          },\n          {\n            \"X\": 0.30896836519241333,\n            \"Y\": 0.3103519678115845\n          },\n          {\n            \"X\": 0.30896836519241333,\n            \"Y\": 0.3203984200954437\n          },\n          {\n            \"X\": 0.2813270688056946,\n            \"Y\": 0.3203984200954437\n          }\n        ]\n      },\n      \"Id\": \"96129c84-1e71-46c6-bf99-b6c1094d516a\",\n      \"Page\": 1,\n      \"SearchKey\": \"text\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94505310058594,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013253291137516499,\n          \"Height\": 0.01019287109375,\n          \"Left\": 0.3111919164657593,\n          \"Top\": 0.3102453351020813\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3111919164657593,\n            \"Y\": 0.3102453351020813\n          },\n          {\n            \"X\": 0.3244452178478241,\n            \"Y\": 0.3102453351020813\n          },\n          {\n            \"X\": 0.3244452178478241,\n            \"Y\": 0.3204382061958313\n          },\n          {\n            \"X\": 0.3111919164657593,\n            \"Y\": 0.3204382061958313\n          }\n        ]\n      },\n      \"Id\": \"4e915fe7-2045-4876-adae-c6d8c71f5568\",\n      \"Page\": 1,\n      \"SearchKey\": \"is\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97511291503906,\n      \"Text\": \"presented\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07238306105136871,\n          \"Height\": 0.01224536169320345,\n          \"Left\": 0.3269689679145813,\n          \"Top\": 0.3102704882621765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3269689679145813,\n            \"Y\": 0.3102704882621765\n          },\n          {\n            \"X\": 0.3993520140647888,\n            \"Y\": 0.3102704882621765\n          },\n          {\n            \"X\": 0.3993520140647888,\n            \"Y\": 0.3225158751010895\n          },\n          {\n            \"X\": 0.3269689679145813,\n            \"Y\": 0.3225158751010895\n          }\n        ]\n      },\n      \"Id\": \"59004c2b-13cf-47bf-8a83-f103b8614625\",\n      \"Page\": 1,\n      \"SearchKey\": \"presented\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94878387451172,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014222314581274986,\n          \"Height\": 0.01010559219866991,\n          \"Left\": 0.40128129720687866,\n          \"Top\": 0.3103073835372925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40128129720687866,\n            \"Y\": 0.3103073835372925\n          },\n          {\n            \"X\": 0.415503591299057,\n            \"Y\": 0.3103073835372925\n          },\n          {\n            \"X\": 0.415503591299057,\n            \"Y\": 0.3204129934310913\n          },\n          {\n            \"X\": 0.40128129720687866,\n            \"Y\": 0.3204129934310913\n          }\n        ]\n      },\n      \"Id\": \"c9a271c4-1f96-4d45-9dc7-1387d23100c5\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95928955078125,\n      \"Text\": \"two\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02685362473130226,\n          \"Height\": 0.009615187533199787,\n          \"Left\": 0.41797465085983276,\n          \"Top\": 0.31082555651664734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41797465085983276,\n            \"Y\": 0.31082555651664734\n          },\n          {\n            \"X\": 0.4448282718658447,\n            \"Y\": 0.31082555651664734\n          },\n          {\n            \"X\": 0.4448282718658447,\n            \"Y\": 0.32044073939323425\n          },\n          {\n            \"X\": 0.41797465085983276,\n            \"Y\": 0.32044073939323425\n          }\n        ]\n      },\n      \"Id\": \"58cb1d0d-e360-4381-a74b-13675699e814\",\n      \"Page\": 1,\n      \"SearchKey\": \"two\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98480987548828,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02925982140004635,\n          \"Height\": 0.010188134387135506,\n          \"Left\": 0.5562419891357422,\n          \"Top\": 0.3100816011428833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5562419891357422,\n            \"Y\": 0.3100816011428833\n          },\n          {\n            \"X\": 0.5855018496513367,\n            \"Y\": 0.3100816011428833\n          },\n          {\n            \"X\": 0.5855018496513367,\n            \"Y\": 0.32026973366737366\n          },\n          {\n            \"X\": 0.5562419891357422,\n            \"Y\": 0.32026973366737366\n          }\n        ]\n      },\n      \"Id\": \"3e2ed8c0-476c-4a9e-b255-a8e812b617e5\",\n      \"Page\": 1,\n      \"SearchKey\": \"The\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96516418457031,\n      \"Text\": \"Amazon\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060371387749910355,\n          \"Height\": 0.009952051565051079,\n          \"Left\": 0.5875838994979858,\n          \"Top\": 0.3103860020637512\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5875838994979858,\n            \"Y\": 0.3103860020637512\n          },\n          {\n            \"X\": 0.6479552984237671,\n            \"Y\": 0.3103860020637512\n          },\n          {\n            \"X\": 0.6479552984237671,\n            \"Y\": 0.32033807039260864\n          },\n          {\n            \"X\": 0.5875838994979858,\n            \"Y\": 0.32033807039260864\n          }\n        ]\n      },\n      \"Id\": \"1b5868a5-b8e8-412f-8c77-99b320749404\",\n      \"Page\": 1,\n      \"SearchKey\": \"Amazon\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97728729248047,\n      \"Text\": \"Textract\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05768792703747749,\n          \"Height\": 0.010692150332033634,\n          \"Left\": 0.6504897475242615,\n          \"Top\": 0.3097350597381592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6504897475242615,\n            \"Y\": 0.3097350597381592\n          },\n          {\n            \"X\": 0.7081776857376099,\n            \"Y\": 0.3097350597381592\n          },\n          {\n            \"X\": 0.7081776857376099,\n            \"Y\": 0.32042720913887024\n          },\n          {\n            \"X\": 0.6504897475242615,\n            \"Y\": 0.32042720913887024\n          }\n        ]\n      },\n      \"Id\": \"2bbd41f8-e739-49aa-bf3b-65677ed83228\",\n      \"Page\": 1,\n      \"SearchKey\": \"Textract\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88121032714844,\n      \"Text\": \"Response\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07183220237493515,\n          \"Height\": 0.012141749262809753,\n          \"Left\": 0.7105879783630371,\n          \"Top\": 0.31014484167099\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7105879783630371,\n            \"Y\": 0.31014484167099\n          },\n          {\n            \"X\": 0.7824201583862305,\n            \"Y\": 0.31014484167099\n          },\n          {\n            \"X\": 0.7824201583862305,\n            \"Y\": 0.32228657603263855\n          },\n          {\n            \"X\": 0.7105879783630371,\n            \"Y\": 0.32228657603263855\n          }\n        ]\n      },\n      \"Id\": \"f417754f-91e1-498a-a23a-49eaddccf94d\",\n      \"Page\": 1,\n      \"SearchKey\": \"Response\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93316650390625,\n      \"Text\": \"Parser\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04930822551250458,\n          \"Height\": 0.010261747054755688,\n          \"Left\": 0.7853298187255859,\n          \"Top\": 0.3101959824562073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7853298187255859,\n            \"Y\": 0.3101959824562073\n          },\n          {\n            \"X\": 0.8346380591392517,\n            \"Y\": 0.3101959824562073\n          },\n          {\n            \"X\": 0.8346380591392517,\n            \"Y\": 0.32045772671699524\n          },\n          {\n            \"X\": 0.7853298187255859,\n            \"Y\": 0.32045772671699524\n          }\n        ]\n      },\n      \"Id\": \"452df3f6-cd59-4e23-b749-0f7cce89ecc7\",\n      \"Page\": 1,\n      \"SearchKey\": \"Parser\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8651123046875,\n      \"Text\": \"aims\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034743841737508774,\n          \"Height\": 0.010239532217383385,\n          \"Left\": 0.8363954424858093,\n          \"Top\": 0.31018102169036865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8363954424858093,\n            \"Y\": 0.31018102169036865\n          },\n          {\n            \"X\": 0.8711392879486084,\n            \"Y\": 0.31018102169036865\n          },\n          {\n            \"X\": 0.8711392879486084,\n            \"Y\": 0.3204205632209778\n          },\n          {\n            \"X\": 0.8363954424858093,\n            \"Y\": 0.3204205632209778\n          }\n        ]\n      },\n      \"Id\": \"437029b6-432d-48c7-8076-97f2c1f53fe2\",\n      \"Page\": 1,\n      \"SearchKey\": \"aims\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9609146118164,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015127896331250668,\n          \"Height\": 0.009721087291836739,\n          \"Left\": 0.8735985159873962,\n          \"Top\": 0.3107128441333771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8735985159873962,\n            \"Y\": 0.3107128441333771\n          },\n          {\n            \"X\": 0.8887264132499695,\n            \"Y\": 0.3107128441333771\n          },\n          {\n            \"X\": 0.8887264132499695,\n            \"Y\": 0.32043394446372986\n          },\n          {\n            \"X\": 0.8735985159873962,\n            \"Y\": 0.32043394446372986\n          }\n        ]\n      },\n      \"Id\": \"65967e61-a673-4f66-84bc-910c4c878790\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.83001708984375,\n      \"Text\": \"columns,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06395164877176285,\n          \"Height\": 0.011492740362882614,\n          \"Left\": 0.10191464424133301,\n          \"Top\": 0.3227938115596771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10191464424133301,\n            \"Y\": 0.3227938115596771\n          },\n          {\n            \"X\": 0.16586630046367645,\n            \"Y\": 0.3227938115596771\n          },\n          {\n            \"X\": 0.16586630046367645,\n            \"Y\": 0.33428657054901123\n          },\n          {\n            \"X\": 0.10191464424133301,\n            \"Y\": 0.33428657054901123\n          }\n        ]\n      },\n      \"Id\": \"6ed570b3-ec65-4653-93bf-e7815a52047d\",\n      \"Page\": 1,\n      \"SearchKey\": \"columns,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99473571777344,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02402527444064617,\n          \"Height\": 0.010062035173177719,\n          \"Left\": 0.16898106038570404,\n          \"Top\": 0.32279375195503235\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16898106038570404,\n            \"Y\": 0.32279375195503235\n          },\n          {\n            \"X\": 0.19300633668899536,\n            \"Y\": 0.32279375195503235\n          },\n          {\n            \"X\": 0.19300633668899536,\n            \"Y\": 0.33285579085350037\n          },\n          {\n            \"X\": 0.16898106038570404,\n            \"Y\": 0.33285579085350037\n          }\n        ]\n      },\n      \"Id\": \"4cc6977e-17e5-4338-bd75-25eeb69dc881\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9475326538086,\n      \"Text\": \"intended\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.062427133321762085,\n          \"Height\": 0.010399280115962029,\n          \"Left\": 0.19583633542060852,\n          \"Top\": 0.3226962983608246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19583633542060852,\n            \"Y\": 0.3226962983608246\n          },\n          {\n            \"X\": 0.2582634687423706,\n            \"Y\": 0.3226962983608246\n          },\n          {\n            \"X\": 0.2582634687423706,\n            \"Y\": 0.33309558033943176\n          },\n          {\n            \"X\": 0.19583633542060852,\n            \"Y\": 0.33309558033943176\n          }\n        ]\n      },\n      \"Id\": \"66ca8f7d-c5ea-43c8-95c7-a7e90ba7d030\",\n      \"Page\": 1,\n      \"SearchKey\": \"intended\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96221923828125,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05446645990014076,\n          \"Height\": 0.012236051261425018,\n          \"Left\": 0.260185182094574,\n          \"Top\": 0.32281020283699036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.260185182094574,\n            \"Y\": 0.32281020283699036\n          },\n          {\n            \"X\": 0.31465163826942444,\n            \"Y\": 0.32281020283699036\n          },\n          {\n            \"X\": 0.31465163826942444,\n            \"Y\": 0.33504626154899597\n          },\n          {\n            \"X\": 0.260185182094574,\n            \"Y\": 0.33504626154899597\n          }\n        ]\n      },\n      \"Id\": \"1b1ca4c9-b3ea-4b53-9279-e48b27947068\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94290161132812,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038787540048360825,\n          \"Height\": 0.00999054592102766,\n          \"Left\": 0.31762969493865967,\n          \"Top\": 0.3230670988559723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31762969493865967,\n            \"Y\": 0.3230670988559723\n          },\n          {\n            \"X\": 0.3564172387123108,\n            \"Y\": 0.3230670988559723\n          },\n          {\n            \"X\": 0.3564172387123108,\n            \"Y\": 0.3330576419830322\n          },\n          {\n            \"X\": 0.31762969493865967,\n            \"Y\": 0.3330576419830322\n          }\n        ]\n      },\n      \"Id\": \"b80236be-c98d-495f-8d91-0491cc158d20\",\n      \"Page\": 1,\n      \"SearchKey\": \"order\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93488311767578,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01369248703122139,\n          \"Height\": 0.010178551077842712,\n          \"Left\": 0.3583050072193146,\n          \"Top\": 0.3228180706501007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3583050072193146,\n            \"Y\": 0.3228180706501007\n          },\n          {\n            \"X\": 0.3719974756240845,\n            \"Y\": 0.3228180706501007\n          },\n          {\n            \"X\": 0.3719974756240845,\n            \"Y\": 0.3329966366291046\n          },\n          {\n            \"X\": 0.3583050072193146,\n            \"Y\": 0.3329966366291046\n          }\n        ]\n      },\n      \"Id\": \"b84732a3-d31a-4533-8674-519cf02e73df\",\n      \"Page\": 1,\n      \"SearchKey\": \"is\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96831512451172,\n      \"Text\": \"typically\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05860850587487221,\n          \"Height\": 0.012302258983254433,\n          \"Left\": 0.37435588240623474,\n          \"Top\": 0.3228294253349304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37435588240623474,\n            \"Y\": 0.3228294253349304\n          },\n          {\n            \"X\": 0.43296438455581665,\n            \"Y\": 0.3228294253349304\n          },\n          {\n            \"X\": 0.43296438455581665,\n            \"Y\": 0.3351316750049591\n          },\n          {\n            \"X\": 0.37435588240623474,\n            \"Y\": 0.3351316750049591\n          }\n        ]\n      },\n      \"Id\": \"991efad2-24b9-49a6-8bbf-905d7e0aca64\",\n      \"Page\": 1,\n      \"SearchKey\": \"typically\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95161437988281,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015143134631216526,\n          \"Height\": 0.009864173829555511,\n          \"Left\": 0.43494150042533875,\n          \"Top\": 0.3231857120990753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43494150042533875,\n            \"Y\": 0.3231857120990753\n          },\n          {\n            \"X\": 0.4500846266746521,\n            \"Y\": 0.3231857120990753\n          },\n          {\n            \"X\": 0.4500846266746521,\n            \"Y\": 0.3330498933792114\n          },\n          {\n            \"X\": 0.43494150042533875,\n            \"Y\": 0.3330498933792114\n          }\n        ]\n      },\n      \"Id\": \"3656170d-3028-451a-b49c-3c4376fff29a\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87387084960938,\n      \"Text\": \"implement\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07502295076847076,\n          \"Height\": 0.011962618678808212,\n          \"Left\": 0.5300597548484802,\n          \"Top\": 0.3228188455104828\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5300597548484802,\n            \"Y\": 0.3228188455104828\n          },\n          {\n            \"X\": 0.6050826907157898,\n            \"Y\": 0.3228188455104828\n          },\n          {\n            \"X\": 0.6050826907157898,\n            \"Y\": 0.3347814381122589\n          },\n          {\n            \"X\": 0.5300597548484802,\n            \"Y\": 0.3347814381122589\n          }\n        ]\n      },\n      \"Id\": \"2d1c4001-e18f-44f1-939c-cb149b574b31\",\n      \"Page\": 1,\n      \"SearchKey\": \"implement\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.11871337890625,\n      \"Text\": \"useful,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04783303663134575,\n          \"Height\": 0.011670836247503757,\n          \"Left\": 0.6078153252601624,\n          \"Top\": 0.32270878553390503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6078153252601624,\n            \"Y\": 0.32270878553390503\n          },\n          {\n            \"X\": 0.6556483507156372,\n            \"Y\": 0.32270878553390503\n          },\n          {\n            \"X\": 0.6556483507156372,\n            \"Y\": 0.334379643201828\n          },\n          {\n            \"X\": 0.6078153252601624,\n            \"Y\": 0.334379643201828\n          }\n        ]\n      },\n      \"Id\": \"84114289-ca7a-48b9-a263-4d6644cbe380\",\n      \"Page\": 1,\n      \"SearchKey\": \"useful,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87478637695312,\n      \"Text\": \"generalisable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09640470892190933,\n          \"Height\": 0.012158028781414032,\n          \"Left\": 0.6580824851989746,\n          \"Top\": 0.3228839039802551\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6580824851989746,\n            \"Y\": 0.3228839039802551\n          },\n          {\n            \"X\": 0.754487156867981,\n            \"Y\": 0.3228839039802551\n          },\n          {\n            \"X\": 0.754487156867981,\n            \"Y\": 0.33504194021224976\n          },\n          {\n            \"X\": 0.6580824851989746,\n            \"Y\": 0.33504194021224976\n          }\n        ]\n      },\n      \"Id\": \"8790ed65-fe9f-4b34-9742-4229f333546b\",\n      \"Page\": 1,\n      \"SearchKey\": \"generalisable\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95616912841797,\n      \"Text\": \"parsing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05390984192490578,\n          \"Height\": 0.011820511892437935,\n          \"Left\": 0.7565242648124695,\n          \"Top\": 0.3230889141559601\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7565242648124695,\n            \"Y\": 0.3230889141559601\n          },\n          {\n            \"X\": 0.810434103012085,\n            \"Y\": 0.3230889141559601\n          },\n          {\n            \"X\": 0.810434103012085,\n            \"Y\": 0.33490943908691406\n          },\n          {\n            \"X\": 0.7565242648124695,\n            \"Y\": 0.33490943908691406\n          }\n        ]\n      },\n      \"Id\": \"cc5b3153-23da-42f7-83b2-6a086485140a\",\n      \"Page\": 1,\n      \"SearchKey\": \"parsing\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92974090576172,\n      \"Text\": \"tools\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035230837762355804,\n          \"Height\": 0.010250095278024673,\n          \"Left\": 0.8127446174621582,\n          \"Top\": 0.32279732823371887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8127446174621582,\n            \"Y\": 0.32279732823371887\n          },\n          {\n            \"X\": 0.8479754328727722,\n            \"Y\": 0.32279732823371887\n          },\n          {\n            \"X\": 0.8479754328727722,\n            \"Y\": 0.33304741978645325\n          },\n          {\n            \"X\": 0.8127446174621582,\n            \"Y\": 0.33304741978645325\n          }\n        ]\n      },\n      \"Id\": \"a5cd8307-d937-49ff-b490-94bf66f536b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"tools\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97947692871094,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019166642799973488,\n          \"Height\": 0.008356045000255108,\n          \"Left\": 0.8508847951889038,\n          \"Top\": 0.3244655728340149\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8508847951889038,\n            \"Y\": 0.3244655728340149\n          },\n          {\n            \"X\": 0.8700514435768127,\n            \"Y\": 0.3244655728340149\n          },\n          {\n            \"X\": 0.8700514435768127,\n            \"Y\": 0.33282163739204407\n          },\n          {\n            \"X\": 0.8508847951889038,\n            \"Y\": 0.33282163739204407\n          }\n        ]\n      },\n      \"Id\": \"23e9efd6-41cf-4ffd-b209-cf0ac8ae7d39\",\n      \"Page\": 1,\n      \"SearchKey\": \"on\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98140716552734,\n      \"Text\": \"which\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041965559124946594,\n          \"Height\": 0.010136028751730919,\n          \"Left\": 0.8723169565200806,\n          \"Top\": 0.3228137791156769\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8723169565200806,\n            \"Y\": 0.3228137791156769\n          },\n          {\n            \"X\": 0.914282500743866,\n            \"Y\": 0.3228137791156769\n          },\n          {\n            \"X\": 0.914282500743866,\n            \"Y\": 0.33294978737831116\n          },\n          {\n            \"X\": 0.8723169565200806,\n            \"Y\": 0.33294978737831116\n          }\n        ]\n      },\n      \"Id\": \"0f3fd83b-e6d1-4641-9b24-86d98779a8ac\",\n      \"Page\": 1,\n      \"SearchKey\": \"which\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96745300292969,\n      \"Text\": \"complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06545048207044601,\n          \"Height\": 0.012128953821957111,\n          \"Left\": 0.0870555192232132,\n          \"Top\": 0.33532023429870605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0870555192232132,\n            \"Y\": 0.33532023429870605\n          },\n          {\n            \"X\": 0.1525060087442398,\n            \"Y\": 0.33532023429870605\n          },\n          {\n            \"X\": 0.1525060087442398,\n            \"Y\": 0.3474491834640503\n          },\n          {\n            \"X\": 0.0870555192232132,\n            \"Y\": 0.3474491834640503\n          }\n        ]\n      },\n      \"Id\": \"37d2c073-0af1-41e2-a038-f03fca0f7aed\",\n      \"Page\": 1,\n      \"SearchKey\": \"complete\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98464965820312,\n      \"Text\": \"one\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027787398546934128,\n          \"Height\": 0.008610911667346954,\n          \"Left\": 0.15561386942863464,\n          \"Top\": 0.3368638753890991\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15561386942863464,\n            \"Y\": 0.3368638753890991\n          },\n          {\n            \"X\": 0.18340125679969788,\n            \"Y\": 0.3368638753890991\n          },\n          {\n            \"X\": 0.18340125679969788,\n            \"Y\": 0.3454747796058655\n          },\n          {\n            \"X\": 0.15561386942863464,\n            \"Y\": 0.3454747796058655\n          }\n        ]\n      },\n      \"Id\": \"55709976-831a-4f43-84c7-98c99695eaaa\",\n      \"Page\": 1,\n      \"SearchKey\": \"one\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91089630126953,\n      \"Text\": \"column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0525684729218483,\n          \"Height\": 0.010180892422795296,\n          \"Left\": 0.18674004077911377,\n          \"Top\": 0.33520856499671936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18674004077911377,\n            \"Y\": 0.33520856499671936\n          },\n          {\n            \"X\": 0.23930852115154266,\n            \"Y\": 0.33520856499671936\n          },\n          {\n            \"X\": 0.23930852115154266,\n            \"Y\": 0.3453894555568695\n          },\n          {\n            \"X\": 0.18674004077911377,\n            \"Y\": 0.3453894555568695\n          }\n        ]\n      },\n      \"Id\": \"6e3d001d-cc22-46eb-aacf-30acf4196843\",\n      \"Page\": 1,\n      \"SearchKey\": \"column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.19795989990234,\n      \"Text\": \"top-to-bottom,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10070516169071198,\n          \"Height\": 0.012347831390798092,\n          \"Left\": 0.2402178943157196,\n          \"Top\": 0.3351042568683624\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2402178943157196,\n            \"Y\": 0.3351042568683624\n          },\n          {\n            \"X\": 0.3409230411052704,\n            \"Y\": 0.3351042568683624\n          },\n          {\n            \"X\": 0.3409230411052704,\n            \"Y\": 0.3474521040916443\n          },\n          {\n            \"X\": 0.2402178943157196,\n            \"Y\": 0.3474521040916443\n          }\n        ]\n      },\n      \"Id\": \"c6d66baa-0117-48cc-9ba7-a530e1cde82e\",\n      \"Page\": 1,\n      \"SearchKey\": \"top-to-bottom,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95706939697266,\n      \"Text\": \"before\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046799369156360626,\n          \"Height\": 0.010465269908308983,\n          \"Left\": 0.3438056707382202,\n          \"Top\": 0.33507847785949707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3438056707382202,\n            \"Y\": 0.33507847785949707\n          },\n          {\n            \"X\": 0.39060503244400024,\n            \"Y\": 0.33507847785949707\n          },\n          {\n            \"X\": 0.39060503244400024,\n            \"Y\": 0.345543771982193\n          },\n          {\n            \"X\": 0.3438056707382202,\n            \"Y\": 0.345543771982193\n          }\n        ]\n      },\n      \"Id\": \"49499350-25d3-43f7-9888-0e9e1c20b9db\",\n      \"Page\": 1,\n      \"SearchKey\": \"before\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97476959228516,\n      \"Text\": \"starting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053281765431165695,\n          \"Height\": 0.01221307460218668,\n          \"Left\": 0.3936547040939331,\n          \"Top\": 0.3354092538356781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3936547040939331,\n            \"Y\": 0.3354092538356781\n          },\n          {\n            \"X\": 0.4469364583492279,\n            \"Y\": 0.3354092538356781\n          },\n          {\n            \"X\": 0.4469364583492279,\n            \"Y\": 0.3476223349571228\n          },\n          {\n            \"X\": 0.3936547040939331,\n            \"Y\": 0.3476223349571228\n          }\n        ]\n      },\n      \"Id\": \"b3fd909f-81df-4d76-82a2-871600486550\",\n      \"Page\": 1,\n      \"SearchKey\": \"starting\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95753479003906,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014997485093772411,\n          \"Height\": 0.009643500670790672,\n          \"Left\": 0.4491252303123474,\n          \"Top\": 0.3358061611652374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4491252303123474,\n            \"Y\": 0.3358061611652374\n          },\n          {\n            \"X\": 0.4641227126121521,\n            \"Y\": 0.3358061611652374\n          },\n          {\n            \"X\": 0.4641227126121521,\n            \"Y\": 0.34544968605041504\n          },\n          {\n            \"X\": 0.4491252303123474,\n            \"Y\": 0.34544968605041504\n          }\n        ]\n      },\n      \"Id\": \"90691b29-5d6d-471c-9afc-75dbbaf872c9\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97109985351562,\n      \"Text\": \"further\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04795975610613823,\n          \"Height\": 0.010346248745918274,\n          \"Left\": 0.5586144924163818,\n          \"Top\": 0.3351832330226898\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5586144924163818,\n            \"Y\": 0.3351832330226898\n          },\n          {\n            \"X\": 0.6065742373466492,\n            \"Y\": 0.3351832330226898\n          },\n          {\n            \"X\": 0.6065742373466492,\n            \"Y\": 0.3455294966697693\n          },\n          {\n            \"X\": 0.5586144924163818,\n            \"Y\": 0.3455294966697693\n          }\n        ]\n      },\n      \"Id\": \"1c3cb7c7-58e2-4959-9ddd-ab08f58723aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"further\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.60055541992188,\n      \"Text\": \"(domain-specific)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12011241167783737,\n          \"Height\": 0.01262088306248188,\n          \"Left\": 0.6099241971969604,\n          \"Top\": 0.3350161015987396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6099241971969604,\n            \"Y\": 0.3350161015987396\n          },\n          {\n            \"X\": 0.7300366163253784,\n            \"Y\": 0.3350161015987396\n          },\n          {\n            \"X\": 0.7300366163253784,\n            \"Y\": 0.34763696789741516\n          },\n          {\n            \"X\": 0.6099241971969604,\n            \"Y\": 0.34763696789741516\n          }\n        ]\n      },\n      \"Id\": \"cfc2857b-4f6e-473a-81d9-bba0fee80ccf\",\n      \"Page\": 1,\n      \"SearchKey\": \"(domain-specific)\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93191528320312,\n      \"Text\": \"analyses\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06425758451223373,\n          \"Height\": 0.011544193141162395,\n          \"Left\": 0.7332190275192261,\n          \"Top\": 0.3357968330383301\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7332190275192261,\n            \"Y\": 0.3357968330383301\n          },\n          {\n            \"X\": 0.797476589679718,\n            \"Y\": 0.3357968330383301\n          },\n          {\n            \"X\": 0.797476589679718,\n            \"Y\": 0.34734103083610535\n          },\n          {\n            \"X\": 0.7332190275192261,\n            \"Y\": 0.34734103083610535\n          }\n        ]\n      },\n      \"Id\": \"76c7a2a9-4bea-4959-9ecb-ad34f536aac3\",\n      \"Page\": 1,\n      \"SearchKey\": \"analyses\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96292877197266,\n      \"Text\": \"can\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02700737491250038,\n          \"Height\": 0.008385065011680126,\n          \"Left\": 0.7998290061950684,\n          \"Top\": 0.33696621656417847\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7998290061950684,\n            \"Y\": 0.33696621656417847\n          },\n          {\n            \"X\": 0.826836347579956,\n            \"Y\": 0.33696621656417847\n          },\n          {\n            \"X\": 0.826836347579956,\n            \"Y\": 0.34535127878189087\n          },\n          {\n            \"X\": 0.7998290061950684,\n            \"Y\": 0.34535127878189087\n          }\n        ]\n      },\n      \"Id\": \"4dd22b0c-ad2e-4b0d-83ed-da6a432da383\",\n      \"Page\": 1,\n      \"SearchKey\": \"can\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96015167236328,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01930844411253929,\n          \"Height\": 0.010091600008308887,\n          \"Left\": 0.8295710682868958,\n          \"Top\": 0.33532875776290894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8295710682868958,\n            \"Y\": 0.33532875776290894\n          },\n          {\n            \"X\": 0.8488795161247253,\n            \"Y\": 0.33532875776290894\n          },\n          {\n            \"X\": 0.8488795161247253,\n            \"Y\": 0.34542036056518555\n          },\n          {\n            \"X\": 0.8295710682868958,\n            \"Y\": 0.34542036056518555\n          }\n        ]\n      },\n      \"Id\": \"c62cece0-7781-4d40-90e6-09ea4d25d361\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.89697265625,\n      \"Text\": \"built.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034636206924915314,\n          \"Height\": 0.01058728527277708,\n          \"Left\": 0.8512909412384033,\n          \"Top\": 0.33498865365982056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8512909412384033,\n            \"Y\": 0.33498865365982056\n          },\n          {\n            \"X\": 0.885927140712738,\n            \"Y\": 0.33498865365982056\n          },\n          {\n            \"X\": 0.885927140712738,\n            \"Y\": 0.3455759286880493\n          },\n          {\n            \"X\": 0.8512909412384033,\n            \"Y\": 0.3455759286880493\n          }\n        ]\n      },\n      \"Id\": \"270879ed-678d-4866-89fe-f65bb81c2b16\",\n      \"Page\": 1,\n      \"SearchKey\": \"built.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62376403808594,\n      \"Text\": \"read\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03347890451550484,\n          \"Height\": 0.01003181654959917,\n          \"Left\": 0.2265327423810959,\n          \"Top\": 0.3480170965194702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2265327423810959,\n            \"Y\": 0.3480170965194702\n          },\n          {\n            \"X\": 0.2600116431713104,\n            \"Y\": 0.3480170965194702\n          },\n          {\n            \"X\": 0.2600116431713104,\n            \"Y\": 0.3580489158630371\n          },\n          {\n            \"X\": 0.2265327423810959,\n            \"Y\": 0.3580489158630371\n          }\n        ]\n      },\n      \"Id\": \"d2cd9508-f428-4784-a802-bc0f4f5d8aef\",\n      \"Page\": 1,\n      \"SearchKey\": \"read\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8631820678711,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024451717734336853,\n          \"Height\": 0.009838638827204704,\n          \"Left\": 0.2628137469291687,\n          \"Top\": 0.3480617105960846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2628137469291687,\n            \"Y\": 0.3480617105960846\n          },\n          {\n            \"X\": 0.28726547956466675,\n            \"Y\": 0.3480617105960846\n          },\n          {\n            \"X\": 0.28726547956466675,\n            \"Y\": 0.35790035128593445\n          },\n          {\n            \"X\": 0.2628137469291687,\n            \"Y\": 0.35790035128593445\n          }\n        ]\n      },\n      \"Id\": \"45c908b1-3a68-4e4d-8e01-002fd04f3efe\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.35089874267578,\n      \"Text\": \"next.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03640398010611534,\n          \"Height\": 0.009984338656067848,\n          \"Left\": 0.2881428599357605,\n          \"Top\": 0.34818726778030396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2881428599357605,\n            \"Y\": 0.34818726778030396\n          },\n          {\n            \"X\": 0.32454684376716614,\n            \"Y\": 0.34818726778030396\n          },\n          {\n            \"X\": 0.32454684376716614,\n            \"Y\": 0.35817161202430725\n          },\n          {\n            \"X\": 0.2881428599357605,\n            \"Y\": 0.35817161202430725\n          }\n        ]\n      },\n      \"Id\": \"c4eb8c25-baae-490e-9b05-5cb76ba36fa8\",\n      \"Page\": 1,\n      \"SearchKey\": \"next.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96488952636719,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03207826614379883,\n          \"Height\": 0.010311783291399479,\n          \"Left\": 0.5480636358261108,\n          \"Top\": 0.3600616157054901\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5480636358261108,\n            \"Y\": 0.3600616157054901\n          },\n          {\n            \"X\": 0.5801419019699097,\n            \"Y\": 0.3600616157054901\n          },\n          {\n            \"X\": 0.5801419019699097,\n            \"Y\": 0.370373398065567\n          },\n          {\n            \"X\": 0.5480636358261108,\n            \"Y\": 0.370373398065567\n          }\n        ]\n      },\n      \"Id\": \"27ae52b5-b3e4-40dd-a1d0-c535bf8868d1\",\n      \"Page\": 1,\n      \"SearchKey\": \"This\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97986602783203,\n      \"Text\": \"means\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04908790439367294,\n          \"Height\": 0.008787918835878372,\n          \"Left\": 0.5825749635696411,\n          \"Top\": 0.3618219196796417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5825749635696411,\n            \"Y\": 0.3618219196796417\n          },\n          {\n            \"X\": 0.6316628456115723,\n            \"Y\": 0.3618219196796417\n          },\n          {\n            \"X\": 0.6316628456115723,\n            \"Y\": 0.370609849691391\n          },\n          {\n            \"X\": 0.5825749635696411,\n            \"Y\": 0.370609849691391\n          }\n        ]\n      },\n      \"Id\": \"4f11106f-feee-400f-819d-42e6c0e1dda3\",\n      \"Page\": 1,\n      \"SearchKey\": \"means\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86351013183594,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010177151300013065,\n          \"Height\": 0.009990165010094643,\n          \"Left\": 0.6345623731613159,\n          \"Top\": 0.36026108264923096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6345623731613159,\n            \"Y\": 0.36026108264923096\n          },\n          {\n            \"X\": 0.6447395086288452,\n            \"Y\": 0.36026108264923096\n          },\n          {\n            \"X\": 0.6447395086288452,\n            \"Y\": 0.37025123834609985\n          },\n          {\n            \"X\": 0.6345623731613159,\n            \"Y\": 0.37025123834609985\n          }\n        ]\n      },\n      \"Id\": \"27279cef-3b7e-43d5-b85a-3f0b95fb4163\",\n      \"Page\": 1,\n      \"SearchKey\": \"it\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98397064208984,\n      \"Text\": \"cannot\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049633171409368515,\n          \"Height\": 0.010098351165652275,\n          \"Left\": 0.6470720767974854,\n          \"Top\": 0.3604206442832947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6470720767974854,\n            \"Y\": 0.3604206442832947\n          },\n          {\n            \"X\": 0.6967052221298218,\n            \"Y\": 0.3604206442832947\n          },\n          {\n            \"X\": 0.6967052221298218,\n            \"Y\": 0.3705190122127533\n          },\n          {\n            \"X\": 0.6470720767974854,\n            \"Y\": 0.3705190122127533\n          }\n        ]\n      },\n      \"Id\": \"f35e045f-c1c8-49fe-8b22-81e9448457fc\",\n      \"Page\": 1,\n      \"SearchKey\": \"cannot\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93640899658203,\n      \"Text\": \"solve\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038536522537469864,\n          \"Height\": 0.010146155953407288,\n          \"Left\": 0.6983257532119751,\n          \"Top\": 0.3602805733680725\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6983257532119751,\n            \"Y\": 0.3602805733680725\n          },\n          {\n            \"X\": 0.736862301826477,\n            \"Y\": 0.3602805733680725\n          },\n          {\n            \"X\": 0.736862301826477,\n            \"Y\": 0.3704267144203186\n          },\n          {\n            \"X\": 0.6983257532119751,\n            \"Y\": 0.3704267144203186\n          }\n        ]\n      },\n      \"Id\": \"2fee2826-b98f-4425-bc6d-1f6a8f9f5736\",\n      \"Page\": 1,\n      \"SearchKey\": \"solve\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98177337646484,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021151850000023842,\n          \"Height\": 0.01011648215353489,\n          \"Left\": 0.7397938966751099,\n          \"Top\": 0.3602474331855774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7397938966751099,\n            \"Y\": 0.3602474331855774\n          },\n          {\n            \"X\": 0.760945737361908,\n            \"Y\": 0.3602474331855774\n          },\n          {\n            \"X\": 0.760945737361908,\n            \"Y\": 0.37036392092704773\n          },\n          {\n            \"X\": 0.7397938966751099,\n            \"Y\": 0.37036392092704773\n          }\n        ]\n      },\n      \"Id\": \"97ca1564-181f-4280-b4a8-517384f178ef\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85553741455078,\n      \"Text\": \"every\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040531352162361145,\n          \"Height\": 0.01081013772636652,\n          \"Left\": 0.7627055048942566,\n          \"Top\": 0.3618577718734741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7627055048942566,\n            \"Y\": 0.3618577718734741\n          },\n          {\n            \"X\": 0.8032368421554565,\n            \"Y\": 0.3618577718734741\n          },\n          {\n            \"X\": 0.8032368421554565,\n            \"Y\": 0.37266790866851807\n          },\n          {\n            \"X\": 0.7627055048942566,\n            \"Y\": 0.37266790866851807\n          }\n        ]\n      },\n      \"Id\": \"fc474973-dc09-4b6e-9150-f79bcd3f9383\",\n      \"Page\": 1,\n      \"SearchKey\": \"every\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.72904968261719,\n      \"Text\": \"edge\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03656238317489624,\n          \"Height\": 0.01239683385938406,\n          \"Left\": 0.8059696555137634,\n          \"Top\": 0.36020752787590027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8059696555137634,\n            \"Y\": 0.36020752787590027\n          },\n          {\n            \"X\": 0.8425320386886597,\n            \"Y\": 0.36020752787590027\n          },\n          {\n            \"X\": 0.8425320386886597,\n            \"Y\": 0.3726043701171875\n          },\n          {\n            \"X\": 0.8059696555137634,\n            \"Y\": 0.3726043701171875\n          }\n        ]\n      },\n      \"Id\": \"20e3ac67-aa5f-4534-b589-35760b844d4c\",\n      \"Page\": 1,\n      \"SearchKey\": \"edge\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96743774414062,\n      \"Text\": \"case\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03524174913764,\n          \"Height\": 0.00863791722804308,\n          \"Left\": 0.8447203040122986,\n          \"Top\": 0.36180251836776733\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8447203040122986,\n            \"Y\": 0.36180251836776733\n          },\n          {\n            \"X\": 0.8799620270729065,\n            \"Y\": 0.36180251836776733\n          },\n          {\n            \"X\": 0.8799620270729065,\n            \"Y\": 0.37044045329093933\n          },\n          {\n            \"X\": 0.8447203040122986,\n            \"Y\": 0.37044045329093933\n          }\n        ]\n      },\n      \"Id\": \"296da453-5c51-458a-b5e2-20ae1cd5b458\",\n      \"Page\": 1,\n      \"SearchKey\": \"case\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9274673461914,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014016752131283283,\n          \"Height\": 0.010002251714468002,\n          \"Left\": 0.8826184868812561,\n          \"Top\": 0.3603091835975647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8826184868812561,\n            \"Y\": 0.3603091835975647\n          },\n          {\n            \"X\": 0.8966352343559265,\n            \"Y\": 0.3603091835975647\n          },\n          {\n            \"X\": 0.8966352343559265,\n            \"Y\": 0.370311439037323\n          },\n          {\n            \"X\": 0.8826184868812561,\n            \"Y\": 0.370311439037323\n          }\n        ]\n      },\n      \"Id\": \"d128228b-1c8c-4875-b8e5-2ee30544d9c3\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9696273803711,\n      \"Text\": \"However\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06428898870944977,\n          \"Height\": 0.010718557052314281,\n          \"Left\": 0.09431112557649612,\n          \"Top\": 0.37238940596580505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09431112557649612,\n            \"Y\": 0.37238940596580505\n          },\n          {\n            \"X\": 0.1586001068353653,\n            \"Y\": 0.37238940596580505\n          },\n          {\n            \"X\": 0.1586001068353653,\n            \"Y\": 0.3831079602241516\n          },\n          {\n            \"X\": 0.09431112557649612,\n            \"Y\": 0.3831079602241516\n          }\n        ]\n      },\n      \"Id\": \"8160a385-00ec-429f-ad26-4e76c1977d8c\",\n      \"Page\": 1,\n      \"SearchKey\": \"However\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97015380859375,\n      \"Text\": \"due\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028589285910129547,\n          \"Height\": 0.010039221495389938,\n          \"Left\": 0.16060858964920044,\n          \"Top\": 0.37294214963912964\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16060858964920044,\n            \"Y\": 0.37294214963912964\n          },\n          {\n            \"X\": 0.18919788300991058,\n            \"Y\": 0.37294214963912964\n          },\n          {\n            \"X\": 0.18919788300991058,\n            \"Y\": 0.3829813599586487\n          },\n          {\n            \"X\": 0.16060858964920044,\n            \"Y\": 0.3829813599586487\n          }\n        ]\n      },\n      \"Id\": \"5d1115ff-ff1d-4300-ba79-a780352e8b3b\",\n      \"Page\": 1,\n      \"SearchKey\": \"due\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98191833496094,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015332456678152084,\n          \"Height\": 0.009875335730612278,\n          \"Left\": 0.19131682813167572,\n          \"Top\": 0.37304675579071045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19131682813167572,\n            \"Y\": 0.37304675579071045\n          },\n          {\n            \"X\": 0.2066492736339569,\n            \"Y\": 0.37304675579071045\n          },\n          {\n            \"X\": 0.2066492736339569,\n            \"Y\": 0.38292211294174194\n          },\n          {\n            \"X\": 0.19131682813167572,\n            \"Y\": 0.38292211294174194\n          }\n        ]\n      },\n      \"Id\": \"cece36bf-a1ad-4756-a6f5-38e3cb22b9e5\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99526977539062,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02389013022184372,\n          \"Height\": 0.010238497518002987,\n          \"Left\": 0.20886363089084625,\n          \"Top\": 0.37264612317085266\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20886363089084625,\n            \"Y\": 0.37264612317085266\n          },\n          {\n            \"X\": 0.23275375366210938,\n            \"Y\": 0.37264612317085266\n          },\n          {\n            \"X\": 0.23275375366210938,\n            \"Y\": 0.3828846216201782\n          },\n          {\n            \"X\": 0.20886363089084625,\n            \"Y\": 0.3828846216201782\n          }\n        ]\n      },\n      \"Id\": \"48fd3bf9-4590-44be-91f0-878c0d4370b3\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98037719726562,\n      \"Text\": \"broad\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042132746428251266,\n          \"Height\": 0.010297518223524094,\n          \"Left\": 0.23540957272052765,\n          \"Top\": 0.3726094365119934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23540957272052765,\n            \"Y\": 0.3726094365119934\n          },\n          {\n            \"X\": 0.2775423228740692,\n            \"Y\": 0.3726094365119934\n          },\n          {\n            \"X\": 0.2775423228740692,\n            \"Y\": 0.382906973361969\n          },\n          {\n            \"X\": 0.23540957272052765,\n            \"Y\": 0.382906973361969\n          }\n        ]\n      },\n      \"Id\": \"405df6f4-814f-43d0-9899-8d30889a04fc\",\n      \"Page\": 1,\n      \"SearchKey\": \"broad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60621643066406,\n      \"Text\": \"possibilities\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08258561789989471,\n          \"Height\": 0.012130369432270527,\n          \"Left\": 0.27962595224380493,\n          \"Top\": 0.3726251423358917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27962595224380493,\n            \"Y\": 0.3726251423358917\n          },\n          {\n            \"X\": 0.36221158504486084,\n            \"Y\": 0.3726251423358917\n          },\n          {\n            \"X\": 0.36221158504486084,\n            \"Y\": 0.3847554922103882\n          },\n          {\n            \"X\": 0.27962595224380493,\n            \"Y\": 0.3847554922103882\n          }\n        ]\n      },\n      \"Id\": \"a85421dc-a13d-49ff-99d2-41e2b71fcf11\",\n      \"Page\": 1,\n      \"SearchKey\": \"possibilities\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98783111572266,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020246587693691254,\n          \"Height\": 0.010558483190834522,\n          \"Left\": 0.3649623692035675,\n          \"Top\": 0.3724532425403595\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3649623692035675,\n            \"Y\": 0.3724532425403595\n          },\n          {\n            \"X\": 0.38520896434783936,\n            \"Y\": 0.3724532425403595\n          },\n          {\n            \"X\": 0.38520896434783936,\n            \"Y\": 0.38301172852516174\n          },\n          {\n            \"X\": 0.3649623692035675,\n            \"Y\": 0.38301172852516174\n          }\n        ]\n      },\n      \"Id\": \"5a0be237-f8ea-4376-b206-691b59bfac36\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95557403564453,\n      \"Text\": \"laying\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04298647493124008,\n          \"Height\": 0.012404782697558403,\n          \"Left\": 0.38778766989707947,\n          \"Top\": 0.37255313992500305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38778766989707947,\n            \"Y\": 0.37255313992500305\n          },\n          {\n            \"X\": 0.43077415227890015,\n            \"Y\": 0.37255313992500305\n          },\n          {\n            \"X\": 0.43077415227890015,\n            \"Y\": 0.3849579393863678\n          },\n          {\n            \"X\": 0.38778766989707947,\n            \"Y\": 0.3849579393863678\n          }\n        ]\n      },\n      \"Id\": \"9b4581f3-f5c2-4273-9ee6-f72e6b9a51c1\",\n      \"Page\": 1,\n      \"SearchKey\": \"laying\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90265655517578,\n      \"Text\": \"out\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024124285206198692,\n          \"Height\": 0.009814409539103508,\n          \"Left\": 0.433311402797699,\n          \"Top\": 0.37320905923843384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.433311402797699,\n            \"Y\": 0.37320905923843384\n          },\n          {\n            \"X\": 0.457435667514801,\n            \"Y\": 0.37320905923843384\n          },\n          {\n            \"X\": 0.457435667514801,\n            \"Y\": 0.3830234408378601\n          },\n          {\n            \"X\": 0.433311402797699,\n            \"Y\": 0.3830234408378601\n          }\n        ]\n      },\n      \"Id\": \"4f4b2720-2f90-4c11-98a4-3ac882fc68c1\",\n      \"Page\": 1,\n      \"SearchKey\": \"out\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85831451416016,\n      \"Text\": \"layout\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04406341165304184,\n          \"Height\": 0.012339228764176369,\n          \"Left\": 0.6636328101158142,\n          \"Top\": 0.3726050853729248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6636328101158142,\n            \"Y\": 0.3726050853729248\n          },\n          {\n            \"X\": 0.7076961994171143,\n            \"Y\": 0.3726050853729248\n          },\n          {\n            \"X\": 0.7076961994171143,\n            \"Y\": 0.3849443197250366\n          },\n          {\n            \"X\": 0.6636328101158142,\n            \"Y\": 0.3849443197250366\n          }\n        ]\n      },\n      \"Id\": \"a5031b04-ed3a-4e19-af7f-0427d08d7e6b\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.31360626220703,\n      \"Text\": \"analysis\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05852525681257248,\n          \"Height\": 0.012399774044752121,\n          \"Left\": 0.7105075120925903,\n          \"Top\": 0.37271174788475037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7105075120925903,\n            \"Y\": 0.37271174788475037\n          },\n          {\n            \"X\": 0.7690327763557434,\n            \"Y\": 0.37271174788475037\n          },\n          {\n            \"X\": 0.7690327763557434,\n            \"Y\": 0.385111540555954\n          },\n          {\n            \"X\": 0.7105075120925903,\n            \"Y\": 0.385111540555954\n          }\n        ]\n      },\n      \"Id\": \"55fc6a44-83ec-4122-8263-a49bf6b2f48c\",\n      \"Page\": 1,\n      \"SearchKey\": \"analysis\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85143280029297,\n      \"Text\": \"non-conventional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12284877151250839,\n          \"Height\": 0.010310422629117966,\n          \"Left\": 0.0857820212841034,\n          \"Top\": 0.38518404960632324\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0857820212841034,\n            \"Y\": 0.38518404960632324\n          },\n          {\n            \"X\": 0.20863080024719238,\n            \"Y\": 0.38518404960632324\n          },\n          {\n            \"X\": 0.20863080024719238,\n            \"Y\": 0.3954944610595703\n          },\n          {\n            \"X\": 0.0857820212841034,\n            \"Y\": 0.3954944610595703\n          }\n        ]\n      },\n      \"Id\": \"cf881aea-d060-4e22-9510-c01042cff00a\",\n      \"Page\": 1,\n      \"SearchKey\": \"non-conventional\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97834014892578,\n      \"Text\": \"documents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07937834411859512,\n          \"Height\": 0.010384198278188705,\n          \"Left\": 0.2106788158416748,\n          \"Top\": 0.3851155638694763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2106788158416748,\n            \"Y\": 0.3851155638694763\n          },\n          {\n            \"X\": 0.2900571823120117,\n            \"Y\": 0.3851155638694763\n          },\n          {\n            \"X\": 0.2900571823120117,\n            \"Y\": 0.3954997658729553\n          },\n          {\n            \"X\": 0.2106788158416748,\n            \"Y\": 0.3954997658729553\n          }\n        ]\n      },\n      \"Id\": \"0b994cf1-2487-4879-aeb6-c8b3fdb2d2e6\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98192596435547,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027912596240639687,\n          \"Height\": 0.009840816259384155,\n          \"Left\": 0.2921746075153351,\n          \"Top\": 0.38542312383651733\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2921746075153351,\n            \"Y\": 0.38542312383651733\n          },\n          {\n            \"X\": 0.320087194442749,\n            \"Y\": 0.38542312383651733\n          },\n          {\n            \"X\": 0.320087194442749,\n            \"Y\": 0.3952639400959015\n          },\n          {\n            \"X\": 0.2921746075153351,\n            \"Y\": 0.3952639400959015\n          }\n        ]\n      },\n      \"Id\": \"bbaba6c8-7e96-4391-a969-cf6c56dd0bb9\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97864532470703,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0239682886749506,\n          \"Height\": 0.009809726849198341,\n          \"Left\": 0.32220739126205444,\n          \"Top\": 0.3853934407234192\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32220739126205444,\n            \"Y\": 0.3853934407234192\n          },\n          {\n            \"X\": 0.3461757004261017,\n            \"Y\": 0.3853934407234192\n          },\n          {\n            \"X\": 0.3461757004261017,\n            \"Y\": 0.395203173160553\n          },\n          {\n            \"X\": 0.32220739126205444,\n            \"Y\": 0.395203173160553\n          }\n        ]\n      },\n      \"Id\": \"87ae59d2-6786-4685-bc28-54d67b6d7d92\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9681396484375,\n      \"Text\": \"nature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0466923750936985,\n          \"Height\": 0.009815607219934464,\n          \"Left\": 0.34883877635002136,\n          \"Top\": 0.3855179250240326\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34883877635002136,\n            \"Y\": 0.3855179250240326\n          },\n          {\n            \"X\": 0.39553114771842957,\n            \"Y\": 0.3855179250240326\n          },\n          {\n            \"X\": 0.39553114771842957,\n            \"Y\": 0.39533352851867676\n          },\n          {\n            \"X\": 0.34883877635002136,\n            \"Y\": 0.39533352851867676\n          }\n        ]\n      },\n      \"Id\": \"ab9d72b9-c546-4e1d-ab3b-1bb604dbeac2\",\n      \"Page\": 1,\n      \"SearchKey\": \"nature\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96450805664062,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01570279709994793,\n          \"Height\": 0.009789091534912586,\n          \"Left\": 0.39841845631599426,\n          \"Top\": 0.38548561930656433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39841845631599426,\n            \"Y\": 0.38548561930656433\n          },\n          {\n            \"X\": 0.41412124037742615,\n            \"Y\": 0.38548561930656433\n          },\n          {\n            \"X\": 0.41412124037742615,\n            \"Y\": 0.39527472853660583\n          },\n          {\n            \"X\": 0.39841845631599426,\n            \"Y\": 0.39527472853660583\n          }\n        ]\n      },\n      \"Id\": \"21d71f39-00c3-44b4-bb21-2cccc37dc306\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98049926757812,\n      \"Text\": \"human\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0498669259250164,\n          \"Height\": 0.010036063380539417,\n          \"Left\": 0.4158874452114105,\n          \"Top\": 0.38530564308166504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4158874452114105,\n            \"Y\": 0.38530564308166504\n          },\n          {\n            \"X\": 0.4657543897628784,\n            \"Y\": 0.38530564308166504\n          },\n          {\n            \"X\": 0.4657543897628784,\n            \"Y\": 0.395341694355011\n          },\n          {\n            \"X\": 0.4158874452114105,\n            \"Y\": 0.395341694355011\n          }\n        ]\n      },\n      \"Id\": \"9b09ee67-f449-4144-82cf-22c57641e280\",\n      \"Page\": 1,\n      \"SearchKey\": \"human\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8618392944336,\n      \"Text\": \"visual\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04239543154835701,\n          \"Height\": 0.010322890244424343,\n          \"Left\": 0.09753330051898956,\n          \"Top\": 0.39755845069885254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09753330051898956,\n            \"Y\": 0.39755845069885254\n          },\n          {\n            \"X\": 0.13992872834205627,\n            \"Y\": 0.39755845069885254\n          },\n          {\n            \"X\": 0.13992872834205627,\n            \"Y\": 0.40788134932518005\n          },\n          {\n            \"X\": 0.09753330051898956,\n            \"Y\": 0.40788134932518005\n          }\n        ]\n      },\n      \"Id\": \"6ea00000-6728-435b-a44e-b6b2d170b987\",\n      \"Page\": 1,\n      \"SearchKey\": \"visual\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4637222290039,\n      \"Text\": \"attention,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06622430682182312,\n          \"Height\": 0.011329453438520432,\n          \"Left\": 0.14325125515460968,\n          \"Top\": 0.39782604575157166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14325125515460968,\n            \"Y\": 0.39782604575157166\n          },\n          {\n            \"X\": 0.2094755619764328,\n            \"Y\": 0.39782604575157166\n          },\n          {\n            \"X\": 0.2094755619764328,\n            \"Y\": 0.4091555178165436\n          },\n          {\n            \"X\": 0.14325125515460968,\n            \"Y\": 0.4091555178165436\n          }\n        ]\n      },\n      \"Id\": \"439a57ae-598d-4fab-9325-22593b3b5ea1\",\n      \"Page\": 1,\n      \"SearchKey\": \"attention,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.787109375,\n      \"Text\": \"It's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020652981474995613,\n          \"Height\": 0.010336284525692463,\n          \"Left\": 0.21232454478740692,\n          \"Top\": 0.3976683020591736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21232454478740692,\n            \"Y\": 0.3976683020591736\n          },\n          {\n            \"X\": 0.23297752439975739,\n            \"Y\": 0.3976683020591736\n          },\n          {\n            \"X\": 0.23297752439975739,\n            \"Y\": 0.4080045819282532\n          },\n          {\n            \"X\": 0.21232454478740692,\n            \"Y\": 0.4080045819282532\n          }\n        ]\n      },\n      \"Id\": \"1e1dfe5a-ef30-4d29-8bca-afc42ecf3817\",\n      \"Page\": 1,\n      \"SearchKey\": \"It's\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9805679321289,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02479202300310135,\n          \"Height\": 0.009869673289358616,\n          \"Left\": 0.23564502596855164,\n          \"Top\": 0.39805322885513306\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23564502596855164,\n            \"Y\": 0.39805322885513306\n          },\n          {\n            \"X\": 0.2604370415210724,\n            \"Y\": 0.39805322885513306\n          },\n          {\n            \"X\": 0.2604370415210724,\n            \"Y\": 0.4079229235649109\n          },\n          {\n            \"X\": 0.23564502596855164,\n            \"Y\": 0.4079229235649109\n          }\n        ]\n      },\n      \"Id\": \"b871c880-16a6-4b56-b5c2-913c9835376f\",\n      \"Page\": 1,\n      \"SearchKey\": \"not\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84388732910156,\n      \"Text\": \"precise\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05257745459675789,\n          \"Height\": 0.01206628605723381,\n          \"Left\": 0.2618478834629059,\n          \"Top\": 0.3978324830532074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2618478834629059,\n            \"Y\": 0.3978324830532074\n          },\n          {\n            \"X\": 0.31442534923553467,\n            \"Y\": 0.3978324830532074\n          },\n          {\n            \"X\": 0.31442534923553467,\n            \"Y\": 0.4098987579345703\n          },\n          {\n            \"X\": 0.2618478834629059,\n            \"Y\": 0.4098987579345703\n          }\n        ]\n      },\n      \"Id\": \"76206ce3-5f50-4d80-939a-42f8d7e5f682\",\n      \"Page\": 1,\n      \"SearchKey\": \"precise\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.57193756103516,\n      \"Text\": \"(arguably,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07028789818286896,\n          \"Height\": 0.012482097372412682,\n          \"Left\": 0.3181350529193878,\n          \"Top\": 0.397592157125473\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3181350529193878,\n            \"Y\": 0.397592157125473\n          },\n          {\n            \"X\": 0.38842296600341797,\n            \"Y\": 0.397592157125473\n          },\n          {\n            \"X\": 0.38842296600341797,\n            \"Y\": 0.41007426381111145\n          },\n          {\n            \"X\": 0.3181350529193878,\n            \"Y\": 0.41007426381111145\n          }\n        ]\n      },\n      \"Id\": \"b737dc90-173f-4ec9-8565-854f2425801c\",\n      \"Page\": 1,\n      \"SearchKey\": \"(arguably,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97171783447266,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02393580600619316,\n          \"Height\": 0.010033396072685719,\n          \"Left\": 0.3911861181259155,\n          \"Top\": 0.3979637324810028\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3911861181259155,\n            \"Y\": 0.3979637324810028\n          },\n          {\n            \"X\": 0.4151219129562378,\n            \"Y\": 0.3979637324810028\n          },\n          {\n            \"X\": 0.4151219129562378,\n            \"Y\": 0.40799713134765625\n          },\n          {\n            \"X\": 0.3911861181259155,\n            \"Y\": 0.40799713134765625\n          }\n        ]\n      },\n      \"Id\": \"c582dfa1-ae44-4cfb-b3d0-349bf88dcf8b\",\n      \"Page\": 1,\n      \"SearchKey\": \"not\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95243835449219,\n      \"Text\": \"even\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035835497081279755,\n          \"Height\": 0.00848388671875,\n          \"Left\": 0.417446494102478,\n          \"Top\": 0.3994581401348114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.417446494102478,\n            \"Y\": 0.3994581401348114\n          },\n          {\n            \"X\": 0.4532819986343384,\n            \"Y\": 0.3994581401348114\n          },\n          {\n            \"X\": 0.4532819986343384,\n            \"Y\": 0.4079420268535614\n          },\n          {\n            \"X\": 0.417446494102478,\n            \"Y\": 0.4079420268535614\n          }\n        ]\n      },\n      \"Id\": \"dc8c6be0-53b0-4483-a800-a6efdbfe99ed\",\n      \"Page\": 1,\n      \"SearchKey\": \"even\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95813751220703,\n      \"Text\": \"But\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02646864578127861,\n          \"Height\": 0.010400314815342426,\n          \"Left\": 0.5270582437515259,\n          \"Top\": 0.3975369334220886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5270582437515259,\n            \"Y\": 0.3975369334220886\n          },\n          {\n            \"X\": 0.5535268783569336,\n            \"Y\": 0.3975369334220886\n          },\n          {\n            \"X\": 0.5535268783569336,\n            \"Y\": 0.40793725848197937\n          },\n          {\n            \"X\": 0.5270582437515259,\n            \"Y\": 0.40793725848197937\n          }\n        ]\n      },\n      \"Id\": \"7fb602ab-883c-4a6f-b86e-07646c92cd45\",\n      \"Page\": 1,\n      \"SearchKey\": \"But\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94806671142578,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014954976737499237,\n          \"Height\": 0.009622374549508095,\n          \"Left\": 0.5555142760276794,\n          \"Top\": 0.3983660638332367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5555142760276794,\n            \"Y\": 0.3983660638332367\n          },\n          {\n            \"X\": 0.5704692602157593,\n            \"Y\": 0.3983660638332367\n          },\n          {\n            \"X\": 0.5704692602157593,\n            \"Y\": 0.40798842906951904\n          },\n          {\n            \"X\": 0.5555142760276794,\n            \"Y\": 0.40798842906951904\n          }\n        ]\n      },\n      \"Id\": \"6e597dbf-bbda-4b6c-8411-280540dcb17d\",\n      \"Page\": 1,\n      \"SearchKey\": \"at\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97879791259766,\n      \"Text\": \"least\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03568615764379501,\n          \"Height\": 0.010338135994970798,\n          \"Left\": 0.5728254318237305,\n          \"Top\": 0.3975799083709717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5728254318237305,\n            \"Y\": 0.3975799083709717\n          },\n          {\n            \"X\": 0.6085115671157837,\n            \"Y\": 0.3975799083709717\n          },\n          {\n            \"X\": 0.6085115671157837,\n            \"Y\": 0.4079180359840393\n          },\n          {\n            \"X\": 0.5728254318237305,\n            \"Y\": 0.4079180359840393\n          }\n        ]\n      },\n      \"Id\": \"3a1120f1-6996-4493-a6a0-893d0cd3514e\",\n      \"Page\": 1,\n      \"SearchKey\": \"least\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96109771728516,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05288090929389,\n          \"Height\": 0.012237248942255974,\n          \"Left\": 0.6107349991798401,\n          \"Top\": 0.3977254033088684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6107349991798401,\n            \"Y\": 0.3977254033088684\n          },\n          {\n            \"X\": 0.6636159420013428,\n            \"Y\": 0.3977254033088684\n          },\n          {\n            \"X\": 0.6636159420013428,\n            \"Y\": 0.40996265411376953\n          },\n          {\n            \"X\": 0.6107349991798401,\n            \"Y\": 0.40996265411376953\n          }\n        ]\n      },\n      \"Id\": \"c4961fef-5c06-4652-815d-bcd7f545f6a7\",\n      \"Page\": 1,\n      \"SearchKey\": \"sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98497772216797,\n      \"Text\": \"documents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07892274856567383,\n          \"Height\": 0.01035632099956274,\n          \"Left\": 0.6653755307197571,\n          \"Top\": 0.3976973593235016\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6653755307197571,\n            \"Y\": 0.3976973593235016\n          },\n          {\n            \"X\": 0.7442982792854309,\n            \"Y\": 0.3976973593235016\n          },\n          {\n            \"X\": 0.7442982792854309,\n            \"Y\": 0.4080536961555481\n          },\n          {\n            \"X\": 0.6653755307197571,\n            \"Y\": 0.4080536961555481\n          }\n        ]\n      },\n      \"Id\": \"b791562c-f348-428f-8592-befff4edfd38\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9256820678711,\n      \"Text\": \"like\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025602202862501144,\n          \"Height\": 0.010435433126986027,\n          \"Left\": 0.7471864223480225,\n          \"Top\": 0.397422194480896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7471864223480225,\n            \"Y\": 0.397422194480896\n          },\n          {\n            \"X\": 0.7727886438369751,\n            \"Y\": 0.397422194480896\n          },\n          {\n            \"X\": 0.7727886438369751,\n            \"Y\": 0.40785762667655945\n          },\n          {\n            \"X\": 0.7471864223480225,\n            \"Y\": 0.40785762667655945\n          }\n        ]\n      },\n      \"Id\": \"0b7dffa9-151b-405e-a61a-170e047a3c8b\",\n      \"Page\": 1,\n      \"SearchKey\": \"like\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99405670166016,\n      \"Text\": \"these\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04047424718737602,\n          \"Height\": 0.010333126410841942,\n          \"Left\": 0.7749559879302979,\n          \"Top\": 0.3976002335548401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7749559879302979,\n            \"Y\": 0.3976002335548401\n          },\n          {\n            \"X\": 0.815430223941803,\n            \"Y\": 0.3976002335548401\n          },\n          {\n            \"X\": 0.815430223941803,\n            \"Y\": 0.4079333543777466\n          },\n          {\n            \"X\": 0.7749559879302979,\n            \"Y\": 0.4079333543777466\n          }\n        ]\n      },\n      \"Id\": \"7b1888c7-554c-403b-be42-02941387e4f7\",\n      \"Page\": 1,\n      \"SearchKey\": \"these\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97836303710938,\n      \"Text\": \"can\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027551637962460518,\n          \"Height\": 0.008675485849380493,\n          \"Left\": 0.8177281618118286,\n          \"Top\": 0.3993608057498932\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8177281618118286,\n            \"Y\": 0.3993608057498932\n          },\n          {\n            \"X\": 0.8452798128128052,\n            \"Y\": 0.3993608057498932\n          },\n          {\n            \"X\": 0.8452798128128052,\n            \"Y\": 0.4080362915992737\n          },\n          {\n            \"X\": 0.8177281618118286,\n            \"Y\": 0.4080362915992737\n          }\n        ]\n      },\n      \"Id\": \"d8e43aed-9aac-465b-9386-b3e198cb9b29\",\n      \"Page\": 1,\n      \"SearchKey\": \"can\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96979522705078,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027965812012553215,\n          \"Height\": 0.010248352773487568,\n          \"Left\": 0.8476139307022095,\n          \"Top\": 0.39775997400283813\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8476139307022095,\n            \"Y\": 0.39775997400283813\n          },\n          {\n            \"X\": 0.8755797147750854,\n            \"Y\": 0.39775997400283813\n          },\n          {\n            \"X\": 0.8755797147750854,\n            \"Y\": 0.408008337020874\n          },\n          {\n            \"X\": 0.8476139307022095,\n            \"Y\": 0.408008337020874\n          }\n        ]\n      },\n      \"Id\": \"85c330ce-9eb3-408d-b1e4-7acc62081892\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98033905029297,\n      \"Text\": \"some\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04073026031255722,\n          \"Height\": 0.008864417672157288,\n          \"Left\": 0.8775456547737122,\n          \"Top\": 0.3992379903793335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8775456547737122,\n            \"Y\": 0.3992379903793335\n          },\n          {\n            \"X\": 0.9182759523391724,\n            \"Y\": 0.3992379903793335\n          },\n          {\n            \"X\": 0.9182759523391724,\n            \"Y\": 0.4081023931503296\n          },\n          {\n            \"X\": 0.8775456547737122,\n            \"Y\": 0.4081023931503296\n          }\n        ]\n      },\n      \"Id\": \"b953bb9b-a84f-413a-b7ef-9529433387e7\",\n      \"Page\": 1,\n      \"SearchKey\": \"some\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.46532440185547,\n      \"Text\": \"possible)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0642656683921814,\n          \"Height\": 0.012560120783746243,\n          \"Left\": 0.0969717800617218,\n          \"Top\": 0.4098469913005829\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0969717800617218,\n            \"Y\": 0.4098469913005829\n          },\n          {\n            \"X\": 0.1612374484539032,\n            \"Y\": 0.4098469913005829\n          },\n          {\n            \"X\": 0.1612374484539032,\n            \"Y\": 0.4224071204662323\n          },\n          {\n            \"X\": 0.0969717800617218,\n            \"Y\": 0.4224071204662323\n          }\n        ]\n      },\n      \"Id\": \"7b91e2d7-5303-4f87-9087-925838f133ac\",\n      \"Page\": 1,\n      \"SearchKey\": \"possible)\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9843978881836,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015246528200805187,\n          \"Height\": 0.009666967205703259,\n          \"Left\": 0.16416935622692108,\n          \"Top\": 0.4105391800403595\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16416935622692108,\n            \"Y\": 0.4105391800403595\n          },\n          {\n            \"X\": 0.17941589653491974,\n            \"Y\": 0.4105391800403595\n          },\n          {\n            \"X\": 0.17941589653491974,\n            \"Y\": 0.42020612955093384\n          },\n          {\n            \"X\": 0.16416935622692108,\n            \"Y\": 0.42020612955093384\n          }\n        ]\n      },\n      \"Id\": \"143c40b2-f5e6-4681-b22e-0b4e43d69238\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98995971679688,\n      \"Text\": \"define\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04458341374993324,\n          \"Height\": 0.01034423429518938,\n          \"Left\": 0.18171411752700806,\n          \"Top\": 0.4099549949169159\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18171411752700806,\n            \"Y\": 0.4099549949169159\n          },\n          {\n            \"X\": 0.226297527551651,\n            \"Y\": 0.4099549949169159\n          },\n          {\n            \"X\": 0.226297527551651,\n            \"Y\": 0.420299232006073\n          },\n          {\n            \"X\": 0.18171411752700806,\n            \"Y\": 0.420299232006073\n          }\n        ]\n      },\n      \"Id\": \"6271749d-189d-49cd-91f7-c230a45bfc19\",\n      \"Page\": 1,\n      \"SearchKey\": \"define\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98249053955078,\n      \"Text\": \"an\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0183411855250597,\n          \"Height\": 0.00847784336656332,\n          \"Left\": 0.22951604425907135,\n          \"Top\": 0.4117776155471802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22951604425907135,\n            \"Y\": 0.4117776155471802\n          },\n          {\n            \"X\": 0.2478572279214859,\n            \"Y\": 0.4117776155471802\n          },\n          {\n            \"X\": 0.2478572279214859,\n            \"Y\": 0.42025548219680786\n          },\n          {\n            \"X\": 0.22951604425907135,\n            \"Y\": 0.42025548219680786\n          }\n        ]\n      },\n      \"Id\": \"e2b42a15-e3ec-4230-979e-22e50f0ae98b\",\n      \"Page\": 1,\n      \"SearchKey\": \"an\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98090362548828,\n      \"Text\": \"exact\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03997104987502098,\n          \"Height\": 0.009823121130466461,\n          \"Left\": 0.2511121928691864,\n          \"Top\": 0.41041526198387146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2511121928691864,\n            \"Y\": 0.41041526198387146\n          },\n          {\n            \"X\": 0.2910832464694977,\n            \"Y\": 0.41041526198387146\n          },\n          {\n            \"X\": 0.2910832464694977,\n            \"Y\": 0.4202383756637573\n          },\n          {\n            \"X\": 0.2511121928691864,\n            \"Y\": 0.4202383756637573\n          }\n        ]\n      },\n      \"Id\": \"fb91d584-1ba7-4344-ab45-2c0b1867da49\",\n      \"Page\": 1,\n      \"SearchKey\": \"exact\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92862701416016,\n      \"Text\": \"linear\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04035630822181702,\n          \"Height\": 0.010305359028279781,\n          \"Left\": 0.2934282720088959,\n          \"Top\": 0.40998995304107666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2934282720088959,\n            \"Y\": 0.40998995304107666\n          },\n          {\n            \"X\": 0.3337845802307129,\n            \"Y\": 0.40998995304107666\n          },\n          {\n            \"X\": 0.3337845802307129,\n            \"Y\": 0.4202952980995178\n          },\n          {\n            \"X\": 0.2934282720088959,\n            \"Y\": 0.4202952980995178\n          }\n        ]\n      },\n      \"Id\": \"0a3457f3-e0a8-4d2a-ae7f-881bb674ff55\",\n      \"Page\": 1,\n      \"SearchKey\": \"linear\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95186614990234,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05417764559388161,\n          \"Height\": 0.012276506051421165,\n          \"Left\": 0.33624985814094543,\n          \"Top\": 0.4101925194263458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33624985814094543,\n            \"Y\": 0.4101925194263458\n          },\n          {\n            \"X\": 0.39042750000953674,\n            \"Y\": 0.4101925194263458\n          },\n          {\n            \"X\": 0.39042750000953674,\n            \"Y\": 0.42246901988983154\n          },\n          {\n            \"X\": 0.33624985814094543,\n            \"Y\": 0.42246901988983154\n          }\n        ]\n      },\n      \"Id\": \"ecd08d09-7739-45ff-a069-5b9c1f78318d\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97344970703125,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0385730154812336,\n          \"Height\": 0.009995718486607075,\n          \"Left\": 0.39346182346343994,\n          \"Top\": 0.41028106212615967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39346182346343994,\n            \"Y\": 0.41028106212615967\n          },\n          {\n            \"X\": 0.43203482031822205,\n            \"Y\": 0.41028106212615967\n          },\n          {\n            \"X\": 0.43203482031822205,\n            \"Y\": 0.42027679085731506\n          },\n          {\n            \"X\": 0.39346182346343994,\n            \"Y\": 0.42027679085731506\n          }\n        ]\n      },\n      \"Id\": \"e025d5b7-3ad4-4b50-8be0-f973db14b69c\",\n      \"Page\": 1,\n      \"SearchKey\": \"order\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97772216796875,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020862393081188202,\n          \"Height\": 0.00998967420309782,\n          \"Left\": 0.4347117245197296,\n          \"Top\": 0.41023391485214233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4347117245197296,\n            \"Y\": 0.41023391485214233\n          },\n          {\n            \"X\": 0.455574095249176,\n            \"Y\": 0.41023391485214233\n          },\n          {\n            \"X\": 0.455574095249176,\n            \"Y\": 0.420223593711853\n          },\n          {\n            \"X\": 0.4347117245197296,\n            \"Y\": 0.420223593711853\n          }\n        ]\n      },\n      \"Id\": \"bdc94ba4-12aa-424a-8c30-063795f36b8f\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.61021423339844,\n      \"Text\": \"common,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06614719331264496,\n          \"Height\": 0.009955481626093388,\n          \"Left\": 0.5411859154701233,\n          \"Top\": 0.41169705986976624\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5411859154701233,\n            \"Y\": 0.41169705986976624\n          },\n          {\n            \"X\": 0.6073330640792847,\n            \"Y\": 0.41169705986976624\n          },\n          {\n            \"X\": 0.6073330640792847,\n            \"Y\": 0.42165255546569824\n          },\n          {\n            \"X\": 0.5411859154701233,\n            \"Y\": 0.42165255546569824\n          }\n        ]\n      },\n      \"Id\": \"73b28ab4-af9a-426d-a802-2aa271a53cb1\",\n      \"Page\": 1,\n      \"SearchKey\": \"common,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9307861328125,\n      \"Text\": \"representative\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10148446261882782,\n          \"Height\": 0.011910512112081051,\n          \"Left\": 0.6107718348503113,\n          \"Top\": 0.41025760769844055\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6107718348503113,\n            \"Y\": 0.41025760769844055\n          },\n          {\n            \"X\": 0.7122563123703003,\n            \"Y\": 0.41025760769844055\n          },\n          {\n            \"X\": 0.7122563123703003,\n            \"Y\": 0.422168105840683\n          },\n          {\n            \"X\": 0.6107718348503113,\n            \"Y\": 0.422168105840683\n          }\n        ]\n      },\n      \"Id\": \"c0e34d6e-e9c8-48af-8164-6f968a96930c\",\n      \"Page\": 1,\n      \"SearchKey\": \"representative\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3526382446289,\n      \"Text\": \"structures:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07508014142513275,\n          \"Height\": 0.010444906540215015,\n          \"Left\": 0.7155863642692566,\n          \"Top\": 0.41015487909317017\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7155863642692566,\n            \"Y\": 0.41015487909317017\n          },\n          {\n            \"X\": 0.7906665205955505,\n            \"Y\": 0.41015487909317017\n          },\n          {\n            \"X\": 0.7906665205955505,\n            \"Y\": 0.4205997884273529\n          },\n          {\n            \"X\": 0.7155863642692566,\n            \"Y\": 0.4205997884273529\n          }\n        ]\n      },\n      \"Id\": \"5d3658db-8bc6-4149-b753-0345d72e8e30\",\n      \"Page\": 1,\n      \"SearchKey\": \"structures:\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94642639160156,\n      \"Text\": \"Even\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03738671913743019,\n          \"Height\": 0.010276229120790958,\n          \"Left\": 0.7931729555130005,\n          \"Top\": 0.40987035632133484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7931729555130005,\n            \"Y\": 0.40987035632133484\n          },\n          {\n            \"X\": 0.8305596709251404,\n            \"Y\": 0.40987035632133484\n          },\n          {\n            \"X\": 0.8305596709251404,\n            \"Y\": 0.4201465845108032\n          },\n          {\n            \"X\": 0.7931729555130005,\n            \"Y\": 0.4201465845108032\n          }\n        ]\n      },\n      \"Id\": \"8aa0e586-ac2c-44d1-850b-7cd88cb40fa3\",\n      \"Page\": 1,\n      \"SearchKey\": \"Even\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86540985107422,\n      \"Text\": \"if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011186677031219006,\n          \"Height\": 0.010117243975400925,\n          \"Left\": 0.8331179618835449,\n          \"Top\": 0.40980714559555054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8331179618835449,\n            \"Y\": 0.40980714559555054\n          },\n          {\n            \"X\": 0.844304621219635,\n            \"Y\": 0.40980714559555054\n          },\n          {\n            \"X\": 0.844304621219635,\n            \"Y\": 0.41992437839508057\n          },\n          {\n            \"X\": 0.8331179618835449,\n            \"Y\": 0.41992437839508057\n          }\n        ]\n      },\n      \"Id\": \"d40a516e-f856-4ffa-876c-29b4504f12d2\",\n      \"Page\": 1,\n      \"SearchKey\": \"if\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98655700683594,\n      \"Text\": \"creating\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05783630535006523,\n          \"Height\": 0.01234467327594757,\n          \"Left\": 0.8461153507232666,\n          \"Top\": 0.41021713614463806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8461153507232666,\n            \"Y\": 0.41021713614463806\n          },\n          {\n            \"X\": 0.9039517045021057,\n            \"Y\": 0.41021713614463806\n          },\n          {\n            \"X\": 0.9039517045021057,\n            \"Y\": 0.42256179451942444\n          },\n          {\n            \"X\": 0.8461153507232666,\n            \"Y\": 0.42256179451942444\n          }\n        ]\n      },\n      \"Id\": \"fe5c51ac-a9be-4314-a1a8-b04a278bb3ee\",\n      \"Page\": 1,\n      \"SearchKey\": \"creating\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96715545654297,\n      \"Text\": \"words\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04469894990324974,\n          \"Height\": 0.009922541677951813,\n          \"Left\": 0.1577208936214447,\n          \"Top\": 0.42294979095458984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1577208936214447,\n            \"Y\": 0.42294979095458984\n          },\n          {\n            \"X\": 0.20241984724998474,\n            \"Y\": 0.42294979095458984\n          },\n          {\n            \"X\": 0.20241984724998474,\n            \"Y\": 0.43287232518196106\n          },\n          {\n            \"X\": 0.1577208936214447,\n            \"Y\": 0.43287232518196106\n          }\n        ]\n      },\n      \"Id\": \"ab481daa-f526-4c9a-a2b9-3c9af4613a5b\",\n      \"Page\": 1,\n      \"SearchKey\": \"words\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9820327758789,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018901489675045013,\n          \"Height\": 0.008310853503644466,\n          \"Left\": 0.2049507349729538,\n          \"Top\": 0.424472451210022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2049507349729538,\n            \"Y\": 0.424472451210022\n          },\n          {\n            \"X\": 0.2238522320985794,\n            \"Y\": 0.424472451210022\n          },\n          {\n            \"X\": 0.2238522320985794,\n            \"Y\": 0.432783305644989\n          },\n          {\n            \"X\": 0.2049507349729538,\n            \"Y\": 0.432783305644989\n          }\n        ]\n      },\n      \"Id\": \"db7f2870-cc8a-4f5e-972b-bb8c31cc554c\",\n      \"Page\": 1,\n      \"SearchKey\": \"on\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91588592529297,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01035564485937357,\n          \"Height\": 0.008213121443986893,\n          \"Left\": 0.22699259221553802,\n          \"Top\": 0.42453381419181824\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22699259221553802,\n            \"Y\": 0.42453381419181824\n          },\n          {\n            \"X\": 0.23734824359416962,\n            \"Y\": 0.42453381419181824\n          },\n          {\n            \"X\": 0.23734824359416962,\n            \"Y\": 0.432746946811676\n          },\n          {\n            \"X\": 0.22699259221553802,\n            \"Y\": 0.432746946811676\n          }\n        ]\n      },\n      \"Id\": \"5f3c0027-830e-48c3-96df-e174ad26b0ca\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92430114746094,\n      \"Text\": \"richly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03879670426249504,\n          \"Height\": 0.012105106376111507,\n          \"Left\": 0.23993822932243347,\n          \"Top\": 0.42266160249710083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23993822932243347,\n            \"Y\": 0.42266160249710083\n          },\n          {\n            \"X\": 0.2787349224090576,\n            \"Y\": 0.42266160249710083\n          },\n          {\n            \"X\": 0.2787349224090576,\n            \"Y\": 0.4347667098045349\n          },\n          {\n            \"X\": 0.23993822932243347,\n            \"Y\": 0.4347667098045349\n          }\n        ]\n      },\n      \"Id\": \"4d57ced3-913b-455e-8b3d-83117f67d5e2\",\n      \"Page\": 1,\n      \"SearchKey\": \"richly\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9764175415039,\n      \"Text\": \"formatted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06921659409999847,\n          \"Height\": 0.010252599604427814,\n          \"Left\": 0.2811078429222107,\n          \"Top\": 0.4226222038269043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2811078429222107,\n            \"Y\": 0.4226222038269043\n          },\n          {\n            \"X\": 0.350324422121048,\n            \"Y\": 0.4226222038269043\n          },\n          {\n            \"X\": 0.350324422121048,\n            \"Y\": 0.43287479877471924\n          },\n          {\n            \"X\": 0.2811078429222107,\n            \"Y\": 0.43287479877471924\n          }\n        ]\n      },\n      \"Id\": \"c12be6eb-050f-45ad-acad-43b1bc64605c\",\n      \"Page\": 1,\n      \"SearchKey\": \"formatted\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84949493408203,\n      \"Text\": \"page.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040554534643888474,\n          \"Height\": 0.01093166321516037,\n          \"Left\": 0.35222259163856506,\n          \"Top\": 0.4241175353527069\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35222259163856506,\n            \"Y\": 0.4241175353527069\n          },\n          {\n            \"X\": 0.39277711510658264,\n            \"Y\": 0.4241175353527069\n          },\n          {\n            \"X\": 0.39277711510658264,\n            \"Y\": 0.4350492060184479\n          },\n          {\n            \"X\": 0.35222259163856506,\n            \"Y\": 0.4350492060184479\n          }\n        ]\n      },\n      \"Id\": \"d20ddecb-68db-4f22-9b0f-90767ddd7c97\",\n      \"Page\": 1,\n      \"SearchKey\": \"page.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86530303955078,\n      \"Text\": \"requires\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05857594311237335,\n          \"Height\": 0.011806627735495567,\n          \"Left\": 0.5520939230918884,\n          \"Top\": 0.4227454364299774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5520939230918884,\n            \"Y\": 0.4227454364299774\n          },\n          {\n            \"X\": 0.6106698513031006,\n            \"Y\": 0.4227454364299774\n          },\n          {\n            \"X\": 0.6106698513031006,\n            \"Y\": 0.43455207347869873\n          },\n          {\n            \"X\": 0.5520939230918884,\n            \"Y\": 0.43455207347869873\n          }\n        ]\n      },\n      \"Id\": \"e270ceb6-c681-4f1b-93c5-0b6f2c7b14ca\",\n      \"Page\": 1,\n      \"SearchKey\": \"requires\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93396759033203,\n      \"Text\": \"tackling\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05574154108762741,\n          \"Height\": 0.012109244242310524,\n          \"Left\": 0.6132186651229858,\n          \"Top\": 0.4226185977458954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6132186651229858,\n            \"Y\": 0.4226185977458954\n          },\n          {\n            \"X\": 0.6689602136611938,\n            \"Y\": 0.4226185977458954\n          },\n          {\n            \"X\": 0.6689602136611938,\n            \"Y\": 0.43472781777381897\n          },\n          {\n            \"X\": 0.6132186651229858,\n            \"Y\": 0.43472781777381897\n          }\n        ]\n      },\n      \"Id\": \"7c96d3ef-0a9f-470e-9cc5-ec0802f1f25b\",\n      \"Page\": 1,\n      \"SearchKey\": \"tackling\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99102783203125,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02422991394996643,\n          \"Height\": 0.010359806008636951,\n          \"Left\": 0.6710724234580994,\n          \"Top\": 0.4225941002368927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6710724234580994,\n            \"Y\": 0.4225941002368927\n          },\n          {\n            \"X\": 0.6953023076057434,\n            \"Y\": 0.4225941002368927\n          },\n          {\n            \"X\": 0.6953023076057434,\n            \"Y\": 0.43295392394065857\n          },\n          {\n            \"X\": 0.6710724234580994,\n            \"Y\": 0.43295392394065857\n          }\n        ]\n      },\n      \"Id\": \"43ff66a7-d529-4960-8437-27b5bd86645a\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63321685791016,\n      \"Text\": \"difficult\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0508786179125309,\n          \"Height\": 0.010364433750510216,\n          \"Left\": 0.6975501775741577,\n          \"Top\": 0.4225280284881592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6975501775741577,\n            \"Y\": 0.4225280284881592\n          },\n          {\n            \"X\": 0.7484288215637207,\n            \"Y\": 0.4225280284881592\n          },\n          {\n            \"X\": 0.7484288215637207,\n            \"Y\": 0.43289247155189514\n          },\n          {\n            \"X\": 0.6975501775741577,\n            \"Y\": 0.43289247155189514\n          }\n        ]\n      },\n      \"Id\": \"d4d4893a-f5a7-4015-803f-3542f7b35289\",\n      \"Page\": 1,\n      \"SearchKey\": \"difficult\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96452331542969,\n      \"Text\": \"task\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031377363950014114,\n          \"Height\": 0.010083160363137722,\n          \"Left\": 0.7507261633872986,\n          \"Top\": 0.42276233434677124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7507261633872986,\n            \"Y\": 0.42276233434677124\n          },\n          {\n            \"X\": 0.7821035385131836,\n            \"Y\": 0.42276233434677124\n          },\n          {\n            \"X\": 0.7821035385131836,\n            \"Y\": 0.43284547328948975\n          },\n          {\n            \"X\": 0.7507261633872986,\n            \"Y\": 0.43284547328948975\n          }\n        ]\n      },\n      \"Id\": \"d992d71f-b230-408f-925e-66e56390f767\",\n      \"Page\": 1,\n      \"SearchKey\": \"task\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97266387939453,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015544314868748188,\n          \"Height\": 0.010317391715943813,\n          \"Left\": 0.7845869660377502,\n          \"Top\": 0.42238330841064453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7845869660377502,\n            \"Y\": 0.42238330841064453\n          },\n          {\n            \"X\": 0.8001312613487244,\n            \"Y\": 0.42238330841064453\n          },\n          {\n            \"X\": 0.8001312613487244,\n            \"Y\": 0.4327007234096527\n          },\n          {\n            \"X\": 0.7845869660377502,\n            \"Y\": 0.4327007234096527\n          }\n        ]\n      },\n      \"Id\": \"7f035dda-0162-4d6c-9d33-c1db912af110\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95465850830078,\n      \"Text\": \"writing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0473029688000679,\n          \"Height\": 0.012256632559001446,\n          \"Left\": 0.8020446300506592,\n          \"Top\": 0.4225314259529114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8020446300506592,\n            \"Y\": 0.4225314259529114\n          },\n          {\n            \"X\": 0.8493475914001465,\n            \"Y\": 0.4225314259529114\n          },\n          {\n            \"X\": 0.8493475914001465,\n            \"Y\": 0.4347880482673645\n          },\n          {\n            \"X\": 0.8020446300506592,\n            \"Y\": 0.4347880482673645\n          }\n        ]\n      },\n      \"Id\": \"b364a39a-13f3-4744-bbca-703aa5f642d9\",\n      \"Page\": 1,\n      \"SearchKey\": \"writing\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97314453125,\n      \"Text\": \"about\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041843488812446594,\n          \"Height\": 0.01014424953609705,\n          \"Left\": 0.8517022728919983,\n          \"Top\": 0.4229320287704468\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8517022728919983,\n            \"Y\": 0.4229320287704468\n          },\n          {\n            \"X\": 0.8935458064079285,\n            \"Y\": 0.4229320287704468\n          },\n          {\n            \"X\": 0.8935458064079285,\n            \"Y\": 0.43307629227638245\n          },\n          {\n            \"X\": 0.8517022728919983,\n            \"Y\": 0.43307629227638245\n          }\n        ]\n      },\n      \"Id\": \"24915002-c55d-4f80-817f-11bc4df76e8c\",\n      \"Page\": 1,\n      \"SearchKey\": \"about\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98023986816406,\n      \"Text\": \"nothing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05333229526877403,\n          \"Height\": 0.01235115248709917,\n          \"Left\": 0.5500743985176086,\n          \"Top\": 0.4351339638233185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5500743985176086,\n            \"Y\": 0.4351339638233185\n          },\n          {\n            \"X\": 0.6034067273139954,\n            \"Y\": 0.4351339638233185\n          },\n          {\n            \"X\": 0.6034067273139954,\n            \"Y\": 0.4474851191043854\n          },\n          {\n            \"X\": 0.5500743985176086,\n            \"Y\": 0.4474851191043854\n          }\n        ]\n      },\n      \"Id\": \"bf3df01c-380f-44cb-b819-9ffe38574820\",\n      \"Page\": 1,\n      \"SearchKey\": \"nothing\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95320892333984,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01392363477498293,\n          \"Height\": 0.009930436499416828,\n          \"Left\": 0.6060333251953125,\n          \"Top\": 0.43520206212997437\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6060333251953125,\n            \"Y\": 0.43520206212997437\n          },\n          {\n            \"X\": 0.619956910610199,\n            \"Y\": 0.43520206212997437\n          },\n          {\n            \"X\": 0.619956910610199,\n            \"Y\": 0.4451324939727783\n          },\n          {\n            \"X\": 0.6060333251953125,\n            \"Y\": 0.4451324939727783\n          }\n        ]\n      },\n      \"Id\": \"921eb5a4-3447-4db2-8cc8-fc3c9e7ef9e6\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94779205322266,\n      \"Text\": \"particular\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06689882278442383,\n          \"Height\": 0.012039116583764553,\n          \"Left\": 0.6228750944137573,\n          \"Top\": 0.4352402687072754\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6228750944137573,\n            \"Y\": 0.4352402687072754\n          },\n          {\n            \"X\": 0.6897739171981812,\n            \"Y\": 0.4352402687072754\n          },\n          {\n            \"X\": 0.6897739171981812,\n            \"Y\": 0.4472793638706207\n          },\n          {\n            \"X\": 0.6228750944137573,\n            \"Y\": 0.4472793638706207\n          }\n        ]\n      },\n      \"Id\": \"fe8da84f-0bc5-43d4-bebf-57225008afe7\",\n      \"Page\": 1,\n      \"SearchKey\": \"particular\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98978424072266,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020681213587522507,\n          \"Height\": 0.010306774638593197,\n          \"Left\": 0.6920165419578552,\n          \"Top\": 0.43503648042678833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6920165419578552,\n            \"Y\": 0.43503648042678833\n          },\n          {\n            \"X\": 0.7126977443695068,\n            \"Y\": 0.43503648042678833\n          },\n          {\n            \"X\": 0.7126977443695068,\n            \"Y\": 0.4453432559967041\n          },\n          {\n            \"X\": 0.6920165419578552,\n            \"Y\": 0.4453432559967041\n          }\n        ]\n      },\n      \"Id\": \"b66807ea-0f56-4989-81f3-c157af4d0ba0\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96939849853516,\n      \"Text\": \"an\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01921219937503338,\n          \"Height\": 0.008495048619806767,\n          \"Left\": 0.7148383855819702,\n          \"Top\": 0.43671610951423645\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7148383855819702,\n            \"Y\": 0.43671610951423645\n          },\n          {\n            \"X\": 0.7340505719184875,\n            \"Y\": 0.43671610951423645\n          },\n          {\n            \"X\": 0.7340505719184875,\n            \"Y\": 0.44521114230155945\n          },\n          {\n            \"X\": 0.7148383855819702,\n            \"Y\": 0.44521114230155945\n          }\n        ]\n      },\n      \"Id\": \"55cd3bd7-66db-4461-a0e8-36f9a064d9cc\",\n      \"Page\": 1,\n      \"SearchKey\": \"an\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96346282958984,\n      \"Text\": \"entire\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041091497987508774,\n          \"Height\": 0.00997453834861517,\n          \"Left\": 0.7367456555366516,\n          \"Top\": 0.4353504478931427\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7367456555366516,\n            \"Y\": 0.4353504478931427\n          },\n          {\n            \"X\": 0.7778371572494507,\n            \"Y\": 0.4353504478931427\n          },\n          {\n            \"X\": 0.7778371572494507,\n            \"Y\": 0.44532498717308044\n          },\n          {\n            \"X\": 0.7367456555366516,\n            \"Y\": 0.44532498717308044\n          }\n        ]\n      },\n      \"Id\": \"e6f140e4-3272-40d6-85d2-336ab8159531\",\n      \"Page\": 1,\n      \"SearchKey\": \"entire\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97312927246094,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037155572324991226,\n          \"Height\": 0.010760100558400154,\n          \"Left\": 0.7802451848983765,\n          \"Top\": 0.4368797242641449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7802451848983765,\n            \"Y\": 0.4368797242641449\n          },\n          {\n            \"X\": 0.8174007534980774,\n            \"Y\": 0.4368797242641449\n          },\n          {\n            \"X\": 0.8174007534980774,\n            \"Y\": 0.4476398527622223\n          },\n          {\n            \"X\": 0.7802451848983765,\n            \"Y\": 0.4476398527622223\n          }\n        ]\n      },\n      \"Id\": \"77ba631e-a609-4f3a-9a2a-4d0dbb7d891c\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96258544921875,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016267914324998856,\n          \"Height\": 0.010401022620499134,\n          \"Left\": 0.8197377324104309,\n          \"Top\": 0.435031920671463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8197377324104309,\n            \"Y\": 0.435031920671463\n          },\n          {\n            \"X\": 0.836005687713623,\n            \"Y\": 0.435031920671463\n          },\n          {\n            \"X\": 0.836005687713623,\n            \"Y\": 0.4454329311847687\n          },\n          {\n            \"X\": 0.8197377324104309,\n            \"Y\": 0.4454329311847687\n          }\n        ]\n      },\n      \"Id\": \"b7e628fb-caa0-44fd-a99a-887980498ba0\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.87757873535156,\n      \"Text\": \"content.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0572623647749424,\n          \"Height\": 0.010007588192820549,\n          \"Left\": 0.8374851942062378,\n          \"Top\": 0.43547630310058594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8374851942062378,\n            \"Y\": 0.43547630310058594\n          },\n          {\n            \"X\": 0.8947475552558899,\n            \"Y\": 0.43547630310058594\n          },\n          {\n            \"X\": 0.8947475552558899,\n            \"Y\": 0.44548389315605164\n          },\n          {\n            \"X\": 0.8374851942062378,\n            \"Y\": 0.44548389315605164\n          }\n        ]\n      },\n      \"Id\": \"d61c9055-b266-400b-a38c-f5a366dc0cc1\",\n      \"Page\": 1,\n      \"SearchKey\": \"content.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98348999023438,\n      \"Text\": \"Depending\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07677413523197174,\n          \"Height\": 0.012316089123487473,\n          \"Left\": 0.09210468828678131,\n          \"Top\": 0.44759470224380493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09210468828678131,\n            \"Y\": 0.44759470224380493\n          },\n          {\n            \"X\": 0.16887882351875305,\n            \"Y\": 0.44759470224380493\n          },\n          {\n            \"X\": 0.16887882351875305,\n            \"Y\": 0.4599107801914215\n          },\n          {\n            \"X\": 0.09210468828678131,\n            \"Y\": 0.4599107801914215\n          }\n        ]\n      },\n      \"Id\": \"d38caaf2-2406-4bfe-a4a3-3c53ebe22818\",\n      \"Page\": 1,\n      \"SearchKey\": \"Depending\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96630859375,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019004229456186295,\n          \"Height\": 0.008306661620736122,\n          \"Left\": 0.1728823035955429,\n          \"Top\": 0.44952845573425293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1728823035955429,\n            \"Y\": 0.44952845573425293\n          },\n          {\n            \"X\": 0.1918865293264389,\n            \"Y\": 0.44952845573425293\n          },\n          {\n            \"X\": 0.1918865293264389,\n            \"Y\": 0.4578351080417633\n          },\n          {\n            \"X\": 0.1728823035955429,\n            \"Y\": 0.4578351080417633\n          }\n        ]\n      },\n      \"Id\": \"edd33009-db9b-4f40-ab42-f36d65fce37d\",\n      \"Page\": 1,\n      \"SearchKey\": \"on\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99465942382812,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024156847968697548,\n          \"Height\": 0.009952242486178875,\n          \"Left\": 0.1938621997833252,\n          \"Top\": 0.44782939553260803\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1938621997833252,\n            \"Y\": 0.44782939553260803\n          },\n          {\n            \"X\": 0.218019038438797,\n            \"Y\": 0.44782939553260803\n          },\n          {\n            \"X\": 0.218019038438797,\n            \"Y\": 0.4577816426753998\n          },\n          {\n            \"X\": 0.1938621997833252,\n            \"Y\": 0.4577816426753998\n          }\n        ]\n      },\n      \"Id\": \"8a22e3f5-452f-4b48-9629-c52b3fab1bc8\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97309112548828,\n      \"Text\": \"use\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027155591174960136,\n          \"Height\": 0.00850386917591095,\n          \"Left\": 0.22045265138149261,\n          \"Top\": 0.4494781792163849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22045265138149261,\n            \"Y\": 0.4494781792163849\n          },\n          {\n            \"X\": 0.2476082444190979,\n            \"Y\": 0.4494781792163849\n          },\n          {\n            \"X\": 0.2476082444190979,\n            \"Y\": 0.45798206329345703\n          },\n          {\n            \"X\": 0.22045265138149261,\n            \"Y\": 0.45798206329345703\n          }\n        ]\n      },\n      \"Id\": \"463250c8-3397-4726-b6fc-46b181775a56\",\n      \"Page\": 1,\n      \"SearchKey\": \"use\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.32921600341797,\n      \"Text\": \"case,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03886564075946808,\n          \"Height\": 0.009652974084019661,\n          \"Left\": 0.25066131353378296,\n          \"Top\": 0.44942712783813477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25066131353378296,\n            \"Y\": 0.44942712783813477\n          },\n          {\n            \"X\": 0.28952696919441223,\n            \"Y\": 0.44942712783813477\n          },\n          {\n            \"X\": 0.28952696919441223,\n            \"Y\": 0.4590801000595093\n          },\n          {\n            \"X\": 0.25066131353378296,\n            \"Y\": 0.4590801000595093\n          }\n        ]\n      },\n      \"Id\": \"eaf285f2-f74c-4751-8e83-3912fdaeb915\",\n      \"Page\": 1,\n      \"SearchKey\": \"case,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94237518310547,\n      \"Text\": \"simple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047682832926511765,\n          \"Height\": 0.012292077764868736,\n          \"Left\": 0.2922811806201935,\n          \"Top\": 0.4475831091403961\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2922811806201935,\n            \"Y\": 0.4475831091403961\n          },\n          {\n            \"X\": 0.33996400237083435,\n            \"Y\": 0.4475831091403961\n          },\n          {\n            \"X\": 0.33996400237083435,\n            \"Y\": 0.4598751962184906\n          },\n          {\n            \"X\": 0.2922811806201935,\n            \"Y\": 0.4598751962184906\n          }\n        ]\n      },\n      \"Id\": \"1fe3decd-c1ba-4e83-84cd-c4767a981479\",\n      \"Page\": 1,\n      \"SearchKey\": \"simple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94837188720703,\n      \"Text\": \"heuristics\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0687735453248024,\n          \"Height\": 0.010641542263329029,\n          \"Left\": 0.34212395548820496,\n          \"Top\": 0.4474039375782013\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34212395548820496,\n            \"Y\": 0.4474039375782013\n          },\n          {\n            \"X\": 0.41089749336242676,\n            \"Y\": 0.4474039375782013\n          },\n          {\n            \"X\": 0.41089749336242676,\n            \"Y\": 0.45804548263549805\n          },\n          {\n            \"X\": 0.34212395548820496,\n            \"Y\": 0.45804548263549805\n          }\n        ]\n      },\n      \"Id\": \"6d9dd20c-f030-4763-87ea-091f04383dcb\",\n      \"Page\": 1,\n      \"SearchKey\": \"heuristics\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.982666015625,\n      \"Text\": \"and/or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04676046967506409,\n          \"Height\": 0.010361003689467907,\n          \"Left\": 0.41377460956573486,\n          \"Top\": 0.44753894209861755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41377460956573486,\n            \"Y\": 0.44753894209861755\n          },\n          {\n            \"X\": 0.46053507924079895,\n            \"Y\": 0.44753894209861755\n          },\n          {\n            \"X\": 0.46053507924079895,\n            \"Y\": 0.45789995789527893\n          },\n          {\n            \"X\": 0.41377460956573486,\n            \"Y\": 0.45789995789527893\n          }\n        ]\n      },\n      \"Id\": \"046e6d2d-d079-4a16-b883-31b330abd49e\",\n      \"Page\": 1,\n      \"SearchKey\": \"and/or\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78765869140625,\n      \"Text\": \"ML\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023871643468737602,\n          \"Height\": 0.010316737927496433,\n          \"Left\": 0.1005423441529274,\n          \"Top\": 0.4601561427116394\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1005423441529274,\n            \"Y\": 0.4601561427116394\n          },\n          {\n            \"X\": 0.12441398948431015,\n            \"Y\": 0.4601561427116394\n          },\n          {\n            \"X\": 0.12441398948431015,\n            \"Y\": 0.47047287225723267\n          },\n          {\n            \"X\": 0.1005423441529274,\n            \"Y\": 0.47047287225723267\n          }\n        ]\n      },\n      \"Id\": \"410fb1f7-0836-4d2c-ae95-10fbf1e6110f\",\n      \"Page\": 1,\n      \"SearchKey\": \"ML\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71001434326172,\n      \"Text\": \"model-based\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09207426011562347,\n          \"Height\": 0.010366503149271011,\n          \"Left\": 0.12697778642177582,\n          \"Top\": 0.46008628606796265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12697778642177582,\n            \"Y\": 0.46008628606796265\n          },\n          {\n            \"X\": 0.2190520465373993,\n            \"Y\": 0.46008628606796265\n          },\n          {\n            \"X\": 0.2190520465373993,\n            \"Y\": 0.47045278549194336\n          },\n          {\n            \"X\": 0.12697778642177582,\n            \"Y\": 0.47045278549194336\n          }\n        ]\n      },\n      \"Id\": \"b6b167fd-ca79-45fa-a303-baefd453ca63\",\n      \"Page\": 1,\n      \"SearchKey\": \"model-based\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97183990478516,\n      \"Text\": \"approaches\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08328688144683838,\n          \"Height\": 0.012305471114814281,\n          \"Left\": 0.2229681760072708,\n          \"Top\": 0.4601593315601349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2229681760072708,\n            \"Y\": 0.4601593315601349\n          },\n          {\n            \"X\": 0.3062550723552704,\n            \"Y\": 0.4601593315601349\n          },\n          {\n            \"X\": 0.3062550723552704,\n            \"Y\": 0.47246479988098145\n          },\n          {\n            \"X\": 0.2229681760072708,\n            \"Y\": 0.47246479988098145\n          }\n        ]\n      },\n      \"Id\": \"b84e8d7f-4b7a-41b1-b070-f7e84ce94401\",\n      \"Page\": 1,\n      \"SearchKey\": \"approaches\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97927856445312,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03245249763131142,\n          \"Height\": 0.010573075152933598,\n          \"Left\": 0.30894944071769714,\n          \"Top\": 0.4618265628814697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30894944071769714,\n            \"Y\": 0.4618265628814697\n          },\n          {\n            \"X\": 0.34140196442604065,\n            \"Y\": 0.4618265628814697\n          },\n          {\n            \"X\": 0.34140196442604065,\n            \"Y\": 0.47239965200424194\n          },\n          {\n            \"X\": 0.30894944071769714,\n            \"Y\": 0.47239965200424194\n          }\n        ]\n      },\n      \"Id\": \"cfe38bb3-1e54-44be-9666-a36c5661051f\",\n      \"Page\": 1,\n      \"SearchKey\": \"may\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9630126953125,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01944783888757229,\n          \"Height\": 0.00998079963028431,\n          \"Left\": 0.34331822395324707,\n          \"Top\": 0.46029528975486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34331822395324707,\n            \"Y\": 0.46029528975486755\n          },\n          {\n            \"X\": 0.3627660572528839,\n            \"Y\": 0.46029528975486755\n          },\n          {\n            \"X\": 0.3627660572528839,\n            \"Y\": 0.4702760875225067\n          },\n          {\n            \"X\": 0.34331822395324707,\n            \"Y\": 0.4702760875225067\n          }\n        ]\n      },\n      \"Id\": \"ce7afcd6-6688-4a16-a731-c125aed59d83\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.03739166259766,\n      \"Text\": \"appropriate.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08525432646274567,\n          \"Height\": 0.012094108387827873,\n          \"Left\": 0.36525866389274597,\n          \"Top\": 0.46040594577789307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36525866389274597,\n            \"Y\": 0.46040594577789307\n          },\n          {\n            \"X\": 0.45051300525665283,\n            \"Y\": 0.46040594577789307\n          },\n          {\n            \"X\": 0.45051300525665283,\n            \"Y\": 0.4725000560283661\n          },\n          {\n            \"X\": 0.36525866389274597,\n            \"Y\": 0.4725000560283661\n          }\n        ]\n      },\n      \"Id\": \"368056f6-2473-4179-8cfd-eb232aa1b430\",\n      \"Page\": 1,\n      \"SearchKey\": \"appropriate.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98096466064453,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029434343799948692,\n          \"Height\": 0.010281783528625965,\n          \"Left\": 0.5275812149047852,\n          \"Top\": 0.4599699079990387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5275812149047852,\n            \"Y\": 0.4599699079990387\n          },\n          {\n            \"X\": 0.5570155382156372,\n            \"Y\": 0.4599699079990387\n          },\n          {\n            \"X\": 0.5570155382156372,\n            \"Y\": 0.4702517092227936\n          },\n          {\n            \"X\": 0.5275812149047852,\n            \"Y\": 0.4702517092227936\n          }\n        ]\n      },\n      \"Id\": \"3bf86288-ee89-40d0-84fc-9df99e135b9a\",\n      \"Page\": 1,\n      \"SearchKey\": \"The\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.976318359375,\n      \"Text\": \"included\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.061933521181344986,\n          \"Height\": 0.010576559230685234,\n          \"Left\": 0.5592472553253174,\n          \"Top\": 0.45988306403160095\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5592472553253174,\n            \"Y\": 0.45988306403160095\n          },\n          {\n            \"X\": 0.6211807727813721,\n            \"Y\": 0.45988306403160095\n          },\n          {\n            \"X\": 0.6211807727813721,\n            \"Y\": 0.47045964002609253\n          },\n          {\n            \"X\": 0.5592472553253174,\n            \"Y\": 0.47045964002609253\n          }\n        ]\n      },\n      \"Id\": \"99b56790-a889-454b-ab32-b67403073d5c\",\n      \"Page\": 1,\n      \"SearchKey\": \"included\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95196533203125,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052393589168787,\n          \"Height\": 0.012322132475674152,\n          \"Left\": 0.6230359077453613,\n          \"Top\": 0.46012210845947266\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6230359077453613,\n            \"Y\": 0.46012210845947266\n          },\n          {\n            \"X\": 0.6754294633865356,\n            \"Y\": 0.46012210845947266\n          },\n          {\n            \"X\": 0.6754294633865356,\n            \"Y\": 0.47244423627853394\n          },\n          {\n            \"X\": 0.6230359077453613,\n            \"Y\": 0.47244423627853394\n          }\n        ]\n      },\n      \"Id\": \"63955f06-2c53-4a65-8b72-49669524e533\",\n      \"Page\": 1,\n      \"SearchKey\": \"sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9761962890625,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027723435312509537,\n          \"Height\": 0.010031217709183693,\n          \"Left\": 0.6779597401618958,\n          \"Top\": 0.4602174460887909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6779597401618958,\n            \"Y\": 0.4602174460887909\n          },\n          {\n            \"X\": 0.705683171749115,\n            \"Y\": 0.4602174460887909\n          },\n          {\n            \"X\": 0.705683171749115,\n            \"Y\": 0.47024866938591003\n          },\n          {\n            \"X\": 0.6779597401618958,\n            \"Y\": 0.47024866938591003\n          }\n        ]\n      },\n      \"Id\": \"7f838ff6-86d0-4236-bd2f-f2bfa1c95444\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98110961914062,\n      \"Text\": \"documents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0790901705622673,\n          \"Height\": 0.010841934941709042,\n          \"Left\": 0.7074021100997925,\n          \"Top\": 0.45992398262023926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7074021100997925,\n            \"Y\": 0.45992398262023926\n          },\n          {\n            \"X\": 0.7864922881126404,\n            \"Y\": 0.45992398262023926\n          },\n          {\n            \"X\": 0.7864922881126404,\n            \"Y\": 0.4707658886909485\n          },\n          {\n            \"X\": 0.7074021100997925,\n            \"Y\": 0.4707658886909485\n          }\n        ]\n      },\n      \"Id\": \"3393f46d-14df-4ea9-9ccc-fe7b1fd8cea3\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98001098632812,\n      \"Text\": \"are\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02478749118745327,\n          \"Height\": 0.0085190050303936,\n          \"Left\": 0.7889318466186523,\n          \"Top\": 0.4618985950946808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7889318466186523,\n            \"Y\": 0.4618985950946808\n          },\n          {\n            \"X\": 0.8137193322181702,\n            \"Y\": 0.4618985950946808\n          },\n          {\n            \"X\": 0.8137193322181702,\n            \"Y\": 0.4704176187515259\n          },\n          {\n            \"X\": 0.7889318466186523,\n            \"Y\": 0.4704176187515259\n          }\n        ]\n      },\n      \"Id\": \"2a9752a4-ee54-4d21-a89e-40c15068d000\",\n      \"Page\": 1,\n      \"SearchKey\": \"are\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96202850341797,\n      \"Text\": \"fully\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03081481344997883,\n          \"Height\": 0.01251934003084898,\n          \"Left\": 0.8162402510643005,\n          \"Top\": 0.4599897861480713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8162402510643005,\n            \"Y\": 0.4599897861480713\n          },\n          {\n            \"X\": 0.8470550179481506,\n            \"Y\": 0.4599897861480713\n          },\n          {\n            \"X\": 0.8470550179481506,\n            \"Y\": 0.47250914573669434\n          },\n          {\n            \"X\": 0.8162402510643005,\n            \"Y\": 0.47250914573669434\n          }\n        ]\n      },\n      \"Id\": \"85e374b2-f949-4876-a3de-5c0c65818669\",\n      \"Page\": 1,\n      \"SearchKey\": \"fully\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.08113098144531,\n      \"Text\": \"synthetic.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06820939481258392,\n          \"Height\": 0.012407178990542889,\n          \"Left\": 0.8489395976066589,\n          \"Top\": 0.4600718319416046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8489395976066589,\n            \"Y\": 0.4600718319416046\n          },\n          {\n            \"X\": 0.917149007320404,\n            \"Y\": 0.4600718319416046\n          },\n          {\n            \"X\": 0.917149007320404,\n            \"Y\": 0.4724790155887604\n          },\n          {\n            \"X\": 0.8489395976066589,\n            \"Y\": 0.4724790155887604\n          }\n        ]\n      },\n      \"Id\": \"36a016fb-af81-4bdf-bd05-0c36081f7e5b\",\n      \"Page\": 1,\n      \"SearchKey\": \"synthetic.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92068481445312,\n      \"Text\": \"After\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035375408828258514,\n          \"Height\": 0.01000965666025877,\n          \"Left\": 0.0805133581161499,\n          \"Top\": 0.5064722895622253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0805133581161499,\n            \"Y\": 0.5064722895622253\n          },\n          {\n            \"X\": 0.11588876694440842,\n            \"Y\": 0.5064722895622253\n          },\n          {\n            \"X\": 0.11588876694440842,\n            \"Y\": 0.5164819359779358\n          },\n          {\n            \"X\": 0.0805133581161499,\n            \"Y\": 0.5164819359779358\n          }\n        ]\n      },\n      \"Id\": \"8ea99bbd-b6a5-4dee-9e0f-6fdeb28fc750\",\n      \"Page\": 1,\n      \"SearchKey\": \"After\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81675720214844,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011374314315617085,\n          \"Height\": 0.008242631331086159,\n          \"Left\": 0.11796478927135468,\n          \"Top\": 0.5083776712417603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11796478927135468,\n            \"Y\": 0.5083776712417603\n          },\n          {\n            \"X\": 0.1293390989303589,\n            \"Y\": 0.5083776712417603\n          },\n          {\n            \"X\": 0.1293390989303589,\n            \"Y\": 0.5166202783584595\n          },\n          {\n            \"X\": 0.11796478927135468,\n            \"Y\": 0.5166202783584595\n          }\n        ]\n      },\n      \"Id\": \"95d1078c-8577-4290-afe2-6a24d8f3627d\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80547332763672,\n      \"Text\": \"two-column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08208419382572174,\n          \"Height\": 0.010055827908217907,\n          \"Left\": 0.13194043934345245,\n          \"Top\": 0.5066412687301636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13194043934345245,\n            \"Y\": 0.5066412687301636\n          },\n          {\n            \"X\": 0.2140246331691742,\n            \"Y\": 0.5066412687301636\n          },\n          {\n            \"X\": 0.2140246331691742,\n            \"Y\": 0.516697108745575\n          },\n          {\n            \"X\": 0.13194043934345245,\n            \"Y\": 0.516697108745575\n          }\n        ]\n      },\n      \"Id\": \"fe0bfdaa-29da-457d-9427-0678e18b2a8d\",\n      \"Page\": 1,\n      \"SearchKey\": \"two-column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.56328582763672,\n      \"Text\": \"section,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054863546043634415,\n          \"Height\": 0.011267165653407574,\n          \"Left\": 0.21653509140014648,\n          \"Top\": 0.5065224766731262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21653509140014648,\n            \"Y\": 0.5065224766731262\n          },\n          {\n            \"X\": 0.2713986337184906,\n            \"Y\": 0.5065224766731262\n          },\n          {\n            \"X\": 0.2713986337184906,\n            \"Y\": 0.5177896618843079\n          },\n          {\n            \"X\": 0.21653509140014648,\n            \"Y\": 0.5177896618843079\n          }\n        ]\n      },\n      \"Id\": \"1ed3ac15-b479-471a-8e7e-130cfa2e5e86\",\n      \"Page\": 1,\n      \"SearchKey\": \"section,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74388885498047,\n      \"Text\": \"single-column\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09959116578102112,\n          \"Height\": 0.012397595681250095,\n          \"Left\": 0.27505919337272644,\n          \"Top\": 0.5063514709472656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27505919337272644,\n            \"Y\": 0.5063514709472656\n          },\n          {\n            \"X\": 0.37465035915374756,\n            \"Y\": 0.5063514709472656\n          },\n          {\n            \"X\": 0.37465035915374756,\n            \"Y\": 0.5187490582466125\n          },\n          {\n            \"X\": 0.27505919337272644,\n            \"Y\": 0.5187490582466125\n          }\n        ]\n      },\n      \"Id\": \"0febacdc-79c5-4197-b2b5-e444561fbeae\",\n      \"Page\": 1,\n      \"SearchKey\": \"single-column\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97696685791016,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03915441408753395,\n          \"Height\": 0.010156664066016674,\n          \"Left\": 0.3765535354614258,\n          \"Top\": 0.5065447092056274\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3765535354614258,\n            \"Y\": 0.5065447092056274\n          },\n          {\n            \"X\": 0.4157079756259918,\n            \"Y\": 0.5065447092056274\n          },\n          {\n            \"X\": 0.4157079756259918,\n            \"Y\": 0.516701340675354\n          },\n          {\n            \"X\": 0.3765535354614258,\n            \"Y\": 0.516701340675354\n          }\n        ]\n      },\n      \"Id\": \"bafbc7f8-93ad-4270-8320-09181fb5d818\",\n      \"Page\": 1,\n      \"SearchKey\": \"order\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98265075683594,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032120611518621445,\n          \"Height\": 0.010284940712153912,\n          \"Left\": 0.41795751452445984,\n          \"Top\": 0.5083863139152527\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41795751452445984,\n            \"Y\": 0.5083863139152527\n          },\n          {\n            \"X\": 0.4500781297683716,\n            \"Y\": 0.5083863139152527\n          },\n          {\n            \"X\": 0.4500781297683716,\n            \"Y\": 0.5186712741851807\n          },\n          {\n            \"X\": 0.41795751452445984,\n            \"Y\": 0.5186712741851807\n          }\n        ]\n      },\n      \"Id\": \"bc4ebad0-8318-4f65-bb3b-0d2d23a8e9eb\",\n      \"Page\": 1,\n      \"SearchKey\": \"may\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91797637939453,\n      \"Text\": \"sometimes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07798335701227188,\n          \"Height\": 0.010507520288228989,\n          \"Left\": 0.4521092176437378,\n          \"Top\": 0.5063066482543945\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4521092176437378,\n            \"Y\": 0.5063066482543945\n          },\n          {\n            \"X\": 0.5300925970077515,\n            \"Y\": 0.5063066482543945\n          },\n          {\n            \"X\": 0.5300925970077515,\n            \"Y\": 0.5168141722679138\n          },\n          {\n            \"X\": 0.4521092176437378,\n            \"Y\": 0.5168141722679138\n          }\n        ]\n      },\n      \"Id\": \"a5525a7e-f98b-4425-9eb4-e09fe74f06c0\",\n      \"Page\": 1,\n      \"SearchKey\": \"sometimes\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95756530761719,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019570309668779373,\n          \"Height\": 0.01030824426561594,\n          \"Left\": 0.5324233174324036,\n          \"Top\": 0.5064467787742615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5324233174324036,\n            \"Y\": 0.5064467787742615\n          },\n          {\n            \"X\": 0.5519936084747314,\n            \"Y\": 0.5064467787742615\n          },\n          {\n            \"X\": 0.5519936084747314,\n            \"Y\": 0.5167549848556519\n          },\n          {\n            \"X\": 0.5324233174324036,\n            \"Y\": 0.5167549848556519\n          }\n        ]\n      },\n      \"Id\": \"90c45ad8-1a52-4f9f-a1e8-fee7b29a23fd\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99176025390625,\n      \"Text\": \"restored\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06020095571875572,\n          \"Height\": 0.010464725084602833,\n          \"Left\": 0.5544358491897583,\n          \"Top\": 0.5064093470573425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5544358491897583,\n            \"Y\": 0.5064093470573425\n          },\n          {\n            \"X\": 0.6146368384361267,\n            \"Y\": 0.5064093470573425\n          },\n          {\n            \"X\": 0.6146368384361267,\n            \"Y\": 0.5168740749359131\n          },\n          {\n            \"X\": 0.5544358491897583,\n            \"Y\": 0.5168740749359131\n          }\n        ]\n      },\n      \"Id\": \"5fe04248-9cef-4edc-bf7f-112e54b7d572\",\n      \"Page\": 1,\n      \"SearchKey\": \"restored\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98863983154297,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021286191418766975,\n          \"Height\": 0.010338625870645046,\n          \"Left\": 0.6163444519042969,\n          \"Top\": 0.5064046382904053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6163444519042969,\n            \"Y\": 0.5064046382904053\n          },\n          {\n            \"X\": 0.6376306414604187,\n            \"Y\": 0.5064046382904053\n          },\n          {\n            \"X\": 0.6376306414604187,\n            \"Y\": 0.5167433023452759\n          },\n          {\n            \"X\": 0.6163444519042969,\n            \"Y\": 0.5167433023452759\n          }\n        ]\n      },\n      \"Id\": \"9bbdbe3b-370b-44b8-a748-21171def32e3\",\n      \"Page\": 1,\n      \"SearchKey\": \"for\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90936279296875,\n      \"Text\": \"follow-on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06486617773771286,\n          \"Height\": 0.01048465259373188,\n          \"Left\": 0.6395258903503418,\n          \"Top\": 0.506292998790741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6395258903503418,\n            \"Y\": 0.506292998790741\n          },\n          {\n            \"X\": 0.7043920755386353,\n            \"Y\": 0.506292998790741\n          },\n          {\n            \"X\": 0.7043920755386353,\n            \"Y\": 0.5167776346206665\n          },\n          {\n            \"X\": 0.6395258903503418,\n            \"Y\": 0.5167776346206665\n          }\n        ]\n      },\n      \"Id\": \"cbdb79b0-fa5f-4d45-83c6-125213e63218\",\n      \"Page\": 1,\n      \"SearchKey\": \"follow-on\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.42816925048828,\n      \"Text\": \"content.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05735475942492485,\n          \"Height\": 0.010088060051202774,\n          \"Left\": 0.7070001363754272,\n          \"Top\": 0.5066965818405151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7070001363754272,\n            \"Y\": 0.5066965818405151\n          },\n          {\n            \"X\": 0.7643548846244812,\n            \"Y\": 0.5066965818405151\n          },\n          {\n            \"X\": 0.7643548846244812,\n            \"Y\": 0.51678466796875\n          },\n          {\n            \"X\": 0.7070001363754272,\n            \"Y\": 0.51678466796875\n          }\n        ]\n      },\n      \"Id\": \"8d854719-e428-46f3-831f-e0c11d4576be\",\n      \"Page\": 1,\n      \"SearchKey\": \"content.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96734619140625,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032028939574956894,\n          \"Height\": 0.01048258412629366,\n          \"Left\": 0.767273485660553,\n          \"Top\": 0.5063618421554565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.767273485660553,\n            \"Y\": 0.5063618421554565\n          },\n          {\n            \"X\": 0.7993024587631226,\n            \"Y\": 0.5063618421554565\n          },\n          {\n            \"X\": 0.7993024587631226,\n            \"Y\": 0.5168443918228149\n          },\n          {\n            \"X\": 0.767273485660553,\n            \"Y\": 0.5168443918228149\n          }\n        ]\n      },\n      \"Id\": \"01b01b83-a0bc-4c32-aa3b-f699196289cc\",\n      \"Page\": 1,\n      \"SearchKey\": \"This\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98331451416016,\n      \"Text\": \"should\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04844779893755913,\n          \"Height\": 0.010467774234712124,\n          \"Left\": 0.8022342324256897,\n          \"Top\": 0.5063856840133667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8022342324256897,\n            \"Y\": 0.5063856840133667\n          },\n          {\n            \"X\": 0.8506820201873779,\n            \"Y\": 0.5063856840133667\n          },\n          {\n            \"X\": 0.8506820201873779,\n            \"Y\": 0.5168534517288208\n          },\n          {\n            \"X\": 0.8022342324256897,\n            \"Y\": 0.5168534517288208\n          }\n        ]\n      },\n      \"Id\": \"9b030135-a772-40ab-9503-f2c2210a3c82\",\n      \"Page\": 1,\n      \"SearchKey\": \"should\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98834991455078,\n      \"Text\": \"appear\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051403310149908066,\n          \"Height\": 0.010759174823760986,\n          \"Left\": 0.8528562784194946,\n          \"Top\": 0.508186399936676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8528562784194946,\n            \"Y\": 0.508186399936676\n          },\n          {\n            \"X\": 0.9042595624923706,\n            \"Y\": 0.508186399936676\n          },\n          {\n            \"X\": 0.9042595624923706,\n            \"Y\": 0.518945574760437\n          },\n          {\n            \"X\": 0.8528562784194946,\n            \"Y\": 0.518945574760437\n          }\n        ]\n      },\n      \"Id\": \"e6c42153-55c8-4d59-9e48-2579865ba268\",\n      \"Page\": 1,\n      \"SearchKey\": \"appear\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97622680664062,\n      \"Text\": \"after\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03372369334101677,\n          \"Height\": 0.010084249079227448,\n          \"Left\": 0.08022649586200714,\n          \"Top\": 0.5191279053688049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08022649586200714,\n            \"Y\": 0.5191279053688049\n          },\n          {\n            \"X\": 0.11395019292831421,\n            \"Y\": 0.5191279053688049\n          },\n          {\n            \"X\": 0.11395019292831421,\n            \"Y\": 0.5292121767997742\n          },\n          {\n            \"X\": 0.08022649586200714,\n            \"Y\": 0.5292121767997742\n          }\n        ]\n      },\n      \"Id\": \"f566988e-98e0-44a5-8e84-e823b53ab4d3\",\n      \"Page\": 1,\n      \"SearchKey\": \"after\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95172119140625,\n      \"Text\": \"both\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03231368213891983,\n          \"Height\": 0.010263053700327873,\n          \"Left\": 0.11636105179786682,\n          \"Top\": 0.5189012885093689\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11636105179786682,\n            \"Y\": 0.5189012885093689\n          },\n          {\n            \"X\": 0.14867472648620605,\n            \"Y\": 0.5189012885093689\n          },\n          {\n            \"X\": 0.14867472648620605,\n            \"Y\": 0.5291643738746643\n          },\n          {\n            \"X\": 0.11636105179786682,\n            \"Y\": 0.5291643738746643\n          }\n        ]\n      },\n      \"Id\": \"89afb305-1222-4e5a-97aa-e90790d7013c\",\n      \"Page\": 1,\n      \"SearchKey\": \"both\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.62738037109375,\n      \"Text\": \"columns'\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06408298760652542,\n          \"Height\": 0.010222326964139938,\n          \"Left\": 0.15142786502838135,\n          \"Top\": 0.5190206170082092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15142786502838135,\n            \"Y\": 0.5190206170082092\n          },\n          {\n            \"X\": 0.21551084518432617,\n            \"Y\": 0.5190206170082092\n          },\n          {\n            \"X\": 0.21551084518432617,\n            \"Y\": 0.529242992401123\n          },\n          {\n            \"X\": 0.15142786502838135,\n            \"Y\": 0.529242992401123\n          }\n        ]\n      },\n      \"Id\": \"8a78d641-9bc6-49ab-b19f-26df5c1d0193\",\n      \"Page\": 1,\n      \"SearchKey\": \"columns'\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97640991210938,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05413501709699631,\n          \"Height\": 0.010590498335659504,\n          \"Left\": 0.2174919843673706,\n          \"Top\": 0.5186735987663269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2174919843673706,\n            \"Y\": 0.5186735987663269\n          },\n          {\n            \"X\": 0.2716270089149475,\n            \"Y\": 0.5186735987663269\n          },\n          {\n            \"X\": 0.2716270089149475,\n            \"Y\": 0.5292640924453735\n          },\n          {\n            \"X\": 0.2174919843673706,\n            \"Y\": 0.5292640924453735\n          }\n        ]\n      },\n      \"Id\": \"4b276a2a-3783-4736-b7dd-bb80895bb0be\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96224975585938,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01430255826562643,\n          \"Height\": 0.009969147853553295,\n          \"Left\": 0.27329909801483154,\n          \"Top\": 0.5191119313240051\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27329909801483154,\n            \"Y\": 0.5191119313240051\n          },\n          {\n            \"X\": 0.28760167956352234,\n            \"Y\": 0.5191119313240051\n          },\n          {\n            \"X\": 0.28760167956352234,\n            \"Y\": 0.5290811061859131\n          },\n          {\n            \"X\": 0.27329909801483154,\n            \"Y\": 0.5290811061859131\n          }\n        ]\n      },\n      \"Id\": \"f66ddda9-6d60-4358-97ea-11f97f6fe2a2\",\n      \"Page\": 1,\n      \"SearchKey\": \"in\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9832534790039,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023762324824929237,\n          \"Height\": 0.01003916747868061,\n          \"Left\": 0.28998109698295593,\n          \"Top\": 0.519138514995575\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28998109698295593,\n            \"Y\": 0.519138514995575\n          },\n          {\n            \"X\": 0.3137434124946594,\n            \"Y\": 0.519138514995575\n          },\n          {\n            \"X\": 0.3137434124946594,\n            \"Y\": 0.5291776657104492\n          },\n          {\n            \"X\": 0.28998109698295593,\n            \"Y\": 0.5291776657104492\n          }\n        ]\n      },\n      \"Id\": \"e04caf31-e3a8-43e2-a349-3e525f203007\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98397064208984,\n      \"Text\": \"estimated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07074153423309326,\n          \"Height\": 0.010428028181195259,\n          \"Left\": 0.316127747297287,\n          \"Top\": 0.5189713835716248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.316127747297287,\n            \"Y\": 0.5189713835716248\n          },\n          {\n            \"X\": 0.38686928153038025,\n            \"Y\": 0.5189713835716248\n          },\n          {\n            \"X\": 0.38686928153038025,\n            \"Y\": 0.5293993949890137\n          },\n          {\n            \"X\": 0.316127747297287,\n            \"Y\": 0.5293993949890137\n          }\n        ]\n      },\n      \"Id\": \"a0cd1841-b39f-4740-af91-56f4901b4bc6\",\n      \"Page\": 1,\n      \"SearchKey\": \"estimated\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97818756103516,\n      \"Text\": \"reading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05459999665617943,\n          \"Height\": 0.012431026436388493,\n          \"Left\": 0.3894002437591553,\n          \"Top\": 0.518943190574646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3894002437591553,\n            \"Y\": 0.518943190574646\n          },\n          {\n            \"X\": 0.444000244140625,\n            \"Y\": 0.518943190574646\n          },\n          {\n            \"X\": 0.444000244140625,\n            \"Y\": 0.5313742160797119\n          },\n          {\n            \"X\": 0.3894002437591553,\n            \"Y\": 0.5313742160797119\n          }\n        ]\n      },\n      \"Id\": \"4fa4e175-9a79-4173-8eca-09b4aed72827\",\n      \"Page\": 1,\n      \"SearchKey\": \"reading\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.575927734375,\n      \"Text\": \"order.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04139859974384308,\n          \"Height\": 0.010280584916472435,\n          \"Left\": 0.4467431902885437,\n          \"Top\": 0.5190501809120178\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4467431902885437,\n            \"Y\": 0.5190501809120178\n          },\n          {\n            \"X\": 0.4881417751312256,\n            \"Y\": 0.5190501809120178\n          },\n          {\n            \"X\": 0.4881417751312256,\n            \"Y\": 0.5293307304382324\n          },\n          {\n            \"X\": 0.4467431902885437,\n            \"Y\": 0.5293307304382324\n          }\n        ]\n      },\n      \"Id\": \"8f8107f0-2e65-431a-8c73-6deb7cd59268\",\n      \"Page\": 1,\n      \"SearchKey\": \"order.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98834991455078,\n      \"Text\": \"Another\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08263159543275833,\n          \"Height\": 0.013244247995316982,\n          \"Left\": 0.0800715982913971,\n          \"Top\": 0.5563605427742004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0800715982913971,\n            \"Y\": 0.5563605427742004\n          },\n          {\n            \"X\": 0.16270320117473602,\n            \"Y\": 0.5563605427742004\n          },\n          {\n            \"X\": 0.16270320117473602,\n            \"Y\": 0.5696048140525818\n          },\n          {\n            \"X\": 0.0800715982913971,\n            \"Y\": 0.5696048140525818\n          }\n        ]\n      },\n      \"Id\": \"2f4952a6-1d2a-4c28-8e57-3a97bf675dd7\",\n      \"Page\": 1,\n      \"SearchKey\": \"Another\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98665618896484,\n      \"Text\": \"section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07443686574697495,\n          \"Height\": 0.012535237707197666,\n          \"Left\": 0.16755008697509766,\n          \"Top\": 0.5569095015525818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16755008697509766,\n            \"Y\": 0.5569095015525818\n          },\n          {\n            \"X\": 0.241986945271492,\n            \"Y\": 0.5569095015525818\n          },\n          {\n            \"X\": 0.241986945271492,\n            \"Y\": 0.5694447159767151\n          },\n          {\n            \"X\": 0.16755008697509766,\n            \"Y\": 0.5694447159767151\n          }\n        ]\n      },\n      \"Id\": \"d77ac617-cea3-410b-9fdf-dc63f94df4d2\",\n      \"Page\": 1,\n      \"SearchKey\": \"section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95054626464844,\n      \"Text\": \"Where\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04865500330924988,\n          \"Height\": 0.010309550911188126,\n          \"Left\": 0.07982701808214188,\n          \"Top\": 0.5857787132263184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07982701808214188,\n            \"Y\": 0.5857787132263184\n          },\n          {\n            \"X\": 0.12848202884197235,\n            \"Y\": 0.5857787132263184\n          },\n          {\n            \"X\": 0.12848202884197235,\n            \"Y\": 0.5960882902145386\n          },\n          {\n            \"X\": 0.07982701808214188,\n            \"Y\": 0.5960882902145386\n          }\n        ]\n      },\n      \"Id\": \"ea948f6b-40f7-4d9f-a91e-a865233de87d\",\n      \"Page\": 1,\n      \"SearchKey\": \"Where\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98219299316406,\n      \"Text\": \"does\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036047134548425674,\n          \"Height\": 0.010036662220954895,\n          \"Left\": 0.13114260137081146,\n          \"Top\": 0.5859519243240356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13114260137081146,\n            \"Y\": 0.5859519243240356\n          },\n          {\n            \"X\": 0.16718973219394684,\n            \"Y\": 0.5859519243240356\n          },\n          {\n            \"X\": 0.16718973219394684,\n            \"Y\": 0.5959885716438293\n          },\n          {\n            \"X\": 0.13114260137081146,\n            \"Y\": 0.5959885716438293\n          }\n        ]\n      },\n      \"Id\": \"bc372775-68db-4929-bee6-eede805bcad2\",\n      \"Page\": 1,\n      \"SearchKey\": \"does\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9032211303711,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010568385943770409,\n          \"Height\": 0.008183720521628857,\n          \"Left\": 0.16963021457195282,\n          \"Top\": 0.5878363251686096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16963021457195282,\n            \"Y\": 0.5878363251686096\n          },\n          {\n            \"X\": 0.18019859492778778,\n            \"Y\": 0.5878363251686096\n          },\n          {\n            \"X\": 0.18019859492778778,\n            \"Y\": 0.5960200428962708\n          },\n          {\n            \"X\": 0.16963021457195282,\n            \"Y\": 0.5960200428962708\n          }\n        ]\n      },\n      \"Id\": \"158e2a29-67f1-4c7a-a22a-f7b19b4db5f0\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98780059814453,\n      \"Text\": \"header\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05140559747815132,\n          \"Height\": 0.01017408724874258,\n          \"Left\": 0.18284904956817627,\n          \"Top\": 0.5859306454658508\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18284904956817627,\n            \"Y\": 0.5859306454658508\n          },\n          {\n            \"X\": 0.2342546582221985,\n            \"Y\": 0.5859306454658508\n          },\n          {\n            \"X\": 0.2342546582221985,\n            \"Y\": 0.5961047410964966\n          },\n          {\n            \"X\": 0.18284904956817627,\n            \"Y\": 0.5961047410964966\n          }\n        ]\n      },\n      \"Id\": \"634c81b3-9abf-4c05-8816-cb339f3e0a9e\",\n      \"Page\": 1,\n      \"SearchKey\": \"header\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97005462646484,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016703421249985695,\n          \"Height\": 0.008347496390342712,\n          \"Left\": 0.23646114766597748,\n          \"Top\": 0.5876538157463074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23646114766597748,\n            \"Y\": 0.5876538157463074\n          },\n          {\n            \"X\": 0.2531645596027374,\n            \"Y\": 0.5876538157463074\n          },\n          {\n            \"X\": 0.2531645596027374,\n            \"Y\": 0.5960013270378113\n          },\n          {\n            \"X\": 0.23646114766597748,\n            \"Y\": 0.5960013270378113\n          }\n        ]\n      },\n      \"Id\": \"aba0ca2f-66cc-4141-996b-6f775bcdfc0f\",\n      \"Page\": 1,\n      \"SearchKey\": \"or\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98101806640625,\n      \"Text\": \"footer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042681820690631866,\n          \"Height\": 0.01026631984859705,\n          \"Left\": 0.2547072470188141,\n          \"Top\": 0.5858943462371826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2547072470188141,\n            \"Y\": 0.5858943462371826\n          },\n          {\n            \"X\": 0.29738906025886536,\n            \"Y\": 0.5858943462371826\n          },\n          {\n            \"X\": 0.29738906025886536,\n            \"Y\": 0.5961606502532959\n          },\n          {\n            \"X\": 0.2547072470188141,\n            \"Y\": 0.5961606502532959\n          }\n        ]\n      },\n      \"Id\": \"79b92d9a-8588-4ca4-ba60-4fd68da7647c\",\n      \"Page\": 1,\n      \"SearchKey\": \"footer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97453308105469,\n      \"Text\": \"end\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02813046984374523,\n          \"Height\": 0.010114412754774094,\n          \"Left\": 0.29956376552581787,\n          \"Top\": 0.5859432220458984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29956376552581787,\n            \"Y\": 0.5859432220458984\n          },\n          {\n            \"X\": 0.32769423723220825,\n            \"Y\": 0.5859432220458984\n          },\n          {\n            \"X\": 0.32769423723220825,\n            \"Y\": 0.596057653427124\n          },\n          {\n            \"X\": 0.29956376552581787,\n            \"Y\": 0.596057653427124\n          }\n        ]\n      },\n      \"Id\": \"c0ab94d1-402f-4f73-9779-c88f6cf56ac7\",\n      \"Page\": 1,\n      \"SearchKey\": \"end\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9920425415039,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028446873649954796,\n          \"Height\": 0.009979492984712124,\n          \"Left\": 0.33049771189689636,\n          \"Top\": 0.5859842896461487\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33049771189689636,\n            \"Y\": 0.5859842896461487\n          },\n          {\n            \"X\": 0.3589445948600769,\n            \"Y\": 0.5859842896461487\n          },\n          {\n            \"X\": 0.3589445948600769,\n            \"Y\": 0.5959637761116028\n          },\n          {\n            \"X\": 0.33049771189689636,\n            \"Y\": 0.5959637761116028\n          }\n        ]\n      },\n      \"Id\": \"55116301-c395-4061-a34f-1f7407aa2ee5\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92919921875,\n      \"Text\": \"main\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03627397119998932,\n          \"Height\": 0.009970237500965595,\n          \"Left\": 0.36099496483802795,\n          \"Top\": 0.5860609412193298\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36099496483802795,\n            \"Y\": 0.5860609412193298\n          },\n          {\n            \"X\": 0.3972689211368561,\n            \"Y\": 0.5860609412193298\n          },\n          {\n            \"X\": 0.3972689211368561,\n            \"Y\": 0.5960311889648438\n          },\n          {\n            \"X\": 0.36099496483802795,\n            \"Y\": 0.5960311889648438\n          }\n        ]\n      },\n      \"Id\": \"3068b6b7-ab4c-442f-909c-4f10aa05c6be\",\n      \"Page\": 1,\n      \"SearchKey\": \"main\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97105407714844,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037148114293813705,\n          \"Height\": 0.010528319515287876,\n          \"Left\": 0.3994951546192169,\n          \"Top\": 0.5876829624176025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3994951546192169,\n            \"Y\": 0.5876829624176025\n          },\n          {\n            \"X\": 0.4366432726383209,\n            \"Y\": 0.5876829624176025\n          },\n          {\n            \"X\": 0.4366432726383209,\n            \"Y\": 0.5982112884521484\n          },\n          {\n            \"X\": 0.3994951546192169,\n            \"Y\": 0.5982112884521484\n          }\n        ]\n      },\n      \"Id\": \"50a30df0-226d-4840-a657-4fb93bde7465\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97314453125,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05400857329368591,\n          \"Height\": 0.00988715048879385,\n          \"Left\": 0.43901509046554565,\n          \"Top\": 0.5863093733787537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43901509046554565,\n            \"Y\": 0.5863093733787537\n          },\n          {\n            \"X\": 0.49302366375923157,\n            \"Y\": 0.5863093733787537\n          },\n          {\n            \"X\": 0.49302366375923157,\n            \"Y\": 0.5961965322494507\n          },\n          {\n            \"X\": 0.43901509046554565,\n            \"Y\": 0.5961965322494507\n          }\n        ]\n      },\n      \"Id\": \"168a1122-4eb3-4128-9a2b-5bd01eb28b19\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87680053710938,\n      \"Text\": \"begin?\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04887448251247406,\n          \"Height\": 0.012175342999398708,\n          \"Left\": 0.49491941928863525,\n          \"Top\": 0.5857092142105103\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49491941928863525,\n            \"Y\": 0.5857092142105103\n          },\n          {\n            \"X\": 0.5437939167022705,\n            \"Y\": 0.5857092142105103\n          },\n          {\n            \"X\": 0.5437939167022705,\n            \"Y\": 0.5978845357894897\n          },\n          {\n            \"X\": 0.49491941928863525,\n            \"Y\": 0.5978845357894897\n          }\n        ]\n      },\n      \"Id\": \"33cc0f0e-7cc5-4565-80f7-238b26b3de75\",\n      \"Page\": 1,\n      \"SearchKey\": \"begin?\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7840805053711,\n      \"Text\": \"To\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018504159525036812,\n          \"Height\": 0.010087407194077969,\n          \"Left\": 0.5470157265663147,\n          \"Top\": 0.5858551859855652\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5470157265663147,\n            \"Y\": 0.5858551859855652\n          },\n          {\n            \"X\": 0.5655198693275452,\n            \"Y\": 0.5858551859855652\n          },\n          {\n            \"X\": 0.5655198693275452,\n            \"Y\": 0.5959425568580627\n          },\n          {\n            \"X\": 0.5470157265663147,\n            \"Y\": 0.5959425568580627\n          }\n        ]\n      },\n      \"Id\": \"b3624849-dbab-4262-953d-d399a6344f4b\",\n      \"Page\": 1,\n      \"SearchKey\": \"To\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98184967041016,\n      \"Text\": \"test\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027316560968756676,\n          \"Height\": 0.009793284349143505,\n          \"Left\": 0.5682212114334106,\n          \"Top\": 0.5862019062042236\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5682212114334106,\n            \"Y\": 0.5862019062042236\n          },\n          {\n            \"X\": 0.5955377817153931,\n            \"Y\": 0.5862019062042236\n          },\n          {\n            \"X\": 0.5955377817153931,\n            \"Y\": 0.5959951877593994\n          },\n          {\n            \"X\": 0.5682212114334106,\n            \"Y\": 0.5959951877593994\n          }\n        ]\n      },\n      \"Id\": \"24c6a7f2-db50-4842-825d-089ef2a22e06\",\n      \"Page\": 1,\n      \"SearchKey\": \"test\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99200439453125,\n      \"Text\": \"whether\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05828215926885605,\n          \"Height\": 0.010263815522193909,\n          \"Left\": 0.5972238183021545,\n          \"Top\": 0.5859020948410034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5972238183021545,\n            \"Y\": 0.5859020948410034\n          },\n          {\n            \"X\": 0.6555059552192688,\n            \"Y\": 0.5859020948410034\n          },\n          {\n            \"X\": 0.6555059552192688,\n            \"Y\": 0.5961658954620361\n          },\n          {\n            \"X\": 0.5972238183021545,\n            \"Y\": 0.5961658954620361\n          }\n        ]\n      },\n      \"Id\": \"a1d44ccd-473a-4d4c-a0d9-dcf6c09b3156\",\n      \"Page\": 1,\n      \"SearchKey\": \"whether\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91827392578125,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010798490606248379,\n          \"Height\": 0.008322996087372303,\n          \"Left\": 0.6579813361167908,\n          \"Top\": 0.5878347754478455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6579813361167908,\n            \"Y\": 0.5878347754478455\n          },\n          {\n            \"X\": 0.6687798500061035,\n            \"Y\": 0.5878347754478455\n          },\n          {\n            \"X\": 0.6687798500061035,\n            \"Y\": 0.5961577296257019\n          },\n          {\n            \"X\": 0.6579813361167908,\n            \"Y\": 0.5961577296257019\n          }\n        ]\n      },\n      \"Id\": \"cc021718-ba78-4ef5-81cf-108200348aa5\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98165893554688,\n      \"Text\": \"proposed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06754450500011444,\n          \"Height\": 0.012053817510604858,\n          \"Left\": 0.671629011631012,\n          \"Top\": 0.586024820804596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.671629011631012,\n            \"Y\": 0.586024820804596\n          },\n          {\n            \"X\": 0.7391735315322876,\n            \"Y\": 0.586024820804596\n          },\n          {\n            \"X\": 0.7391735315322876,\n            \"Y\": 0.5980786681175232\n          },\n          {\n            \"X\": 0.671629011631012,\n            \"Y\": 0.5980786681175232\n          }\n        ]\n      },\n      \"Id\": \"bc8433b2-404d-4b72-96f4-bb37c4508c10\",\n      \"Page\": 1,\n      \"SearchKey\": \"proposed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82156372070312,\n      \"Text\": \"implementation\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10836347192525864,\n          \"Height\": 0.01217893697321415,\n          \"Left\": 0.7415876388549805,\n          \"Top\": 0.5857760310173035\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7415876388549805,\n            \"Y\": 0.5857760310173035\n          },\n          {\n            \"X\": 0.8499511480331421,\n            \"Y\": 0.5857760310173035\n          },\n          {\n            \"X\": 0.8499511480331421,\n            \"Y\": 0.5979549288749695\n          },\n          {\n            \"X\": 0.7415876388549805,\n            \"Y\": 0.5979549288749695\n          }\n        ]\n      },\n      \"Id\": \"76f94b78-6a00-4dbb-8c87-ad143e29485d\",\n      \"Page\": 1,\n      \"SearchKey\": \"implementation\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96890258789062,\n      \"Text\": \"can\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027488598600029945,\n          \"Height\": 0.008288911543786526,\n          \"Left\": 0.8526893854141235,\n          \"Top\": 0.5876524448394775\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8526893854141235,\n            \"Y\": 0.5876524448394775\n          },\n          {\n            \"X\": 0.8801779747009277,\n            \"Y\": 0.5876524448394775\n          },\n          {\n            \"X\": 0.8801779747009277,\n            \"Y\": 0.5959413647651672\n          },\n          {\n            \"X\": 0.8526893854141235,\n            \"Y\": 0.5959413647651672\n          }\n        ]\n      },\n      \"Id\": \"106fcb27-ca69-43fa-bc24-03fb72427212\",\n      \"Page\": 1,\n      \"SearchKey\": \"can\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95332336425781,\n      \"Text\": \"reliably\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05204211547970772,\n          \"Height\": 0.012310153804719448,\n          \"Left\": 0.08047720789909363,\n          \"Top\": 0.5983699560165405\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08047720789909363,\n            \"Y\": 0.5983699560165405\n          },\n          {\n            \"X\": 0.13251931965351105,\n            \"Y\": 0.5983699560165405\n          },\n          {\n            \"X\": 0.13251931965351105,\n            \"Y\": 0.610680103302002\n          },\n          {\n            \"X\": 0.08047720789909363,\n            \"Y\": 0.610680103302002\n          }\n        ]\n      },\n      \"Id\": \"1cdfb0bc-648a-4353-bbee-7040898f4332\",\n      \"Page\": 1,\n      \"SearchKey\": \"reliably\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97998046875,\n      \"Text\": \"estimate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06120714172720909,\n          \"Height\": 0.010263270698487759,\n          \"Left\": 0.13476555049419403,\n          \"Top\": 0.5984256267547607\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13476555049419403,\n            \"Y\": 0.5984256267547607\n          },\n          {\n            \"X\": 0.19597269594669342,\n            \"Y\": 0.5984256267547607\n          },\n          {\n            \"X\": 0.19597269594669342,\n            \"Y\": 0.6086888909339905\n          },\n          {\n            \"X\": 0.13476555049419403,\n            \"Y\": 0.6086888909339905\n          }\n        ]\n      },\n      \"Id\": \"59763eb6-ec3a-443d-8423-bbcfc5e43c6f\",\n      \"Page\": 1,\n      \"SearchKey\": \"estimate\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98399353027344,\n      \"Text\": \"that\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029206084087491035,\n          \"Height\": 0.01036236435174942,\n          \"Left\": 0.1983780860900879,\n          \"Top\": 0.5983609557151794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1983780860900879,\n            \"Y\": 0.5983609557151794\n          },\n          {\n            \"X\": 0.22758418321609497,\n            \"Y\": 0.5983609557151794\n          },\n          {\n            \"X\": 0.22758418321609497,\n            \"Y\": 0.6087233424186707\n          },\n          {\n            \"X\": 0.1983780860900879,\n            \"Y\": 0.6087233424186707\n          }\n        ]\n      },\n      \"Id\": \"bbad528c-6d26-419b-80e1-2d39a0c93d45\",\n      \"Page\": 1,\n      \"SearchKey\": \"that\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.89287567138672,\n      \"Text\": \"boundary,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07006679475307465,\n          \"Height\": 0.012606563977897167,\n          \"Left\": 0.22955575585365295,\n          \"Top\": 0.5982474684715271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22955575585365295,\n            \"Y\": 0.5982474684715271\n          },\n          {\n            \"X\": 0.2996225357055664,\n            \"Y\": 0.5982474684715271\n          },\n          {\n            \"X\": 0.2996225357055664,\n            \"Y\": 0.6108540296554565\n          },\n          {\n            \"X\": 0.22955575585365295,\n            \"Y\": 0.6108540296554565\n          }\n        ]\n      },\n      \"Id\": \"84aa51ec-6c88-4289-92d4-6464f90e159c\",\n      \"Page\": 1,\n      \"SearchKey\": \"boundary,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94916534423828,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010802661068737507,\n          \"Height\": 0.008327677845954895,\n          \"Left\": 0.3030429780483246,\n          \"Top\": 0.6004098057746887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3030429780483246,\n            \"Y\": 0.6004098057746887\n          },\n          {\n            \"X\": 0.3138456344604492,\n            \"Y\": 0.6004098057746887\n          },\n          {\n            \"X\": 0.3138456344604492,\n            \"Y\": 0.6087374687194824\n          },\n          {\n            \"X\": 0.3030429780483246,\n            \"Y\": 0.6087374687194824\n          }\n        ]\n      },\n      \"Id\": \"f44b4406-38af-4d77-abc1-d2fdf81ccd7e\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97347259521484,\n      \"Text\": \"synthetic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06311596930027008,\n          \"Height\": 0.012087792158126831,\n          \"Left\": 0.31704002618789673,\n          \"Top\": 0.5985475778579712\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31704002618789673,\n            \"Y\": 0.5985475778579712\n          },\n          {\n            \"X\": 0.3801559805870056,\n            \"Y\": 0.5985475778579712\n          },\n          {\n            \"X\": 0.3801559805870056,\n            \"Y\": 0.6106353998184204\n          },\n          {\n            \"X\": 0.31704002618789673,\n            \"Y\": 0.6106353998184204\n          }\n        ]\n      },\n      \"Id\": \"1f1a2521-8d06-4c4d-942e-cadd990441d7\",\n      \"Page\": 1,\n      \"SearchKey\": \"synthetic\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96320343017578,\n      \"Text\": \"example\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06117238476872444,\n          \"Height\": 0.011912908405065536,\n          \"Left\": 0.3829559087753296,\n          \"Top\": 0.598691463470459\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3829559087753296,\n            \"Y\": 0.598691463470459\n          },\n          {\n            \"X\": 0.44412827491760254,\n            \"Y\": 0.598691463470459\n          },\n          {\n            \"X\": 0.44412827491760254,\n            \"Y\": 0.6106043457984924\n          },\n          {\n            \"X\": 0.3829559087753296,\n            \"Y\": 0.6106043457984924\n          }\n        ]\n      },\n      \"Id\": \"b77275ba-2226-4d68-b62b-8b8169624b03\",\n      \"Page\": 1,\n      \"SearchKey\": \"example\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97695922851562,\n      \"Text\": \"document\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07156913727521896,\n          \"Height\": 0.010412782430648804,\n          \"Left\": 0.4466975927352905,\n          \"Top\": 0.5981904864311218\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4466975927352905,\n            \"Y\": 0.5981904864311218\n          },\n          {\n            \"X\": 0.5182667374610901,\n            \"Y\": 0.5981904864311218\n          },\n          {\n            \"X\": 0.5182667374610901,\n            \"Y\": 0.6086032390594482\n          },\n          {\n            \"X\": 0.4466975927352905,\n            \"Y\": 0.6086032390594482\n          }\n        ]\n      },\n      \"Id\": \"40ba437a-3a48-4c36-9449-80d2ca36661f\",\n      \"Page\": 1,\n      \"SearchKey\": \"document\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94186401367188,\n      \"Text\": \"like\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025217946618795395,\n          \"Height\": 0.010058223269879818,\n          \"Left\": 0.5201916694641113,\n          \"Top\": 0.5983707308769226\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5201916694641113,\n            \"Y\": 0.5983707308769226\n          },\n          {\n            \"X\": 0.545409619808197,\n            \"Y\": 0.5983707308769226\n          },\n          {\n            \"X\": 0.545409619808197,\n            \"Y\": 0.608428955078125\n          },\n          {\n            \"X\": 0.5201916694641113,\n            \"Y\": 0.608428955078125\n          }\n        ]\n      },\n      \"Id\": \"c15df105-2817-43de-9a9e-b80d2c79982a\",\n      \"Page\": 1,\n      \"SearchKey\": \"like\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98705291748047,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02630230225622654,\n          \"Height\": 0.010010854341089725,\n          \"Left\": 0.5479811429977417,\n          \"Top\": 0.5984771251678467\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5479811429977417,\n            \"Y\": 0.5984771251678467\n          },\n          {\n            \"X\": 0.5742834806442261,\n            \"Y\": 0.5984771251678467\n          },\n          {\n            \"X\": 0.5742834806442261,\n            \"Y\": 0.6084880232810974\n          },\n          {\n            \"X\": 0.5479811429977417,\n            \"Y\": 0.6084880232810974\n          }\n        ]\n      },\n      \"Id\": \"11a8e888-4b87-4ebd-961a-73334449ac3a\",\n      \"Page\": 1,\n      \"SearchKey\": \"this\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97946166992188,\n      \"Text\": \"can\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027098486199975014,\n          \"Height\": 0.008608951233327389,\n          \"Left\": 0.5770606994628906,\n          \"Top\": 0.5999938249588013\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5770606994628906,\n            \"Y\": 0.5999938249588013\n          },\n          {\n            \"X\": 0.6041591763496399,\n            \"Y\": 0.5999938249588013\n          },\n          {\n            \"X\": 0.6041591763496399,\n            \"Y\": 0.60860276222229\n          },\n          {\n            \"X\": 0.5770606994628906,\n            \"Y\": 0.60860276222229\n          }\n        ]\n      },\n      \"Id\": \"dcb4bdab-17d1-4645-8572-05be5817a267\",\n      \"Page\": 1,\n      \"SearchKey\": \"can\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96224212646484,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018926912918686867,\n          \"Height\": 0.010195648297667503,\n          \"Left\": 0.6069365739822388,\n          \"Top\": 0.5983899831771851\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6069365739822388,\n            \"Y\": 0.5983899831771851\n          },\n          {\n            \"X\": 0.6258634924888611,\n            \"Y\": 0.5983899831771851\n          },\n          {\n            \"X\": 0.6258634924888611,\n            \"Y\": 0.6085856556892395\n          },\n          {\n            \"X\": 0.6069365739822388,\n            \"Y\": 0.6085856556892395\n          }\n        ]\n      },\n      \"Id\": \"7968ac73-77ed-4d8d-b33f-88d9ffa8b851\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.99722290039062,\n      \"Text\": \"useful.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048494115471839905,\n          \"Height\": 0.00991698820143938,\n          \"Left\": 0.628521740436554,\n          \"Top\": 0.5986291170120239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.628521740436554,\n            \"Y\": 0.5986291170120239\n          },\n          {\n            \"X\": 0.6770158410072327,\n            \"Y\": 0.5986291170120239\n          },\n          {\n            \"X\": 0.6770158410072327,\n            \"Y\": 0.6085460782051086\n          },\n          {\n            \"X\": 0.628521740436554,\n            \"Y\": 0.6085460782051086\n          }\n        ]\n      },\n      \"Id\": \"f991bb16-d68b-4fb4-ab7a-7b1634a53cd9\",\n      \"Page\": 1,\n      \"SearchKey\": \"useful.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98314666748047,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029284503310918808,\n          \"Height\": 0.010190311819314957,\n          \"Left\": 0.08008549362421036,\n          \"Top\": 0.6233257055282593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08008549362421036,\n            \"Y\": 0.6233257055282593\n          },\n          {\n            \"X\": 0.10937000066041946,\n            \"Y\": 0.6233257055282593\n          },\n          {\n            \"X\": 0.10937000066041946,\n            \"Y\": 0.6335160136222839\n          },\n          {\n            \"X\": 0.08008549362421036,\n            \"Y\": 0.6335160136222839\n          }\n        ]\n      },\n      \"Id\": \"03a3738a-fc80-405b-b846-bbf49990d2ce\",\n      \"Page\": 1,\n      \"SearchKey\": \"The\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97603607177734,\n      \"Text\": \"actual\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04417617991566658,\n          \"Height\": 0.009989075362682343,\n          \"Left\": 0.11222603917121887,\n          \"Top\": 0.6234961748123169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11222603917121887,\n            \"Y\": 0.6234961748123169\n          },\n          {\n            \"X\": 0.15640221536159515,\n            \"Y\": 0.6234961748123169\n          },\n          {\n            \"X\": 0.15640221536159515,\n            \"Y\": 0.6334852576255798\n          },\n          {\n            \"X\": 0.11222603917121887,\n            \"Y\": 0.6334852576255798\n          }\n        ]\n      },\n      \"Id\": \"829363dc-458e-4f9b-90f6-9fc1fb517ec8\",\n      \"Page\": 1,\n      \"SearchKey\": \"actual\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97723388671875,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054068244993686676,\n          \"Height\": 0.009974810294806957,\n          \"Left\": 0.15854611992835999,\n          \"Top\": 0.6236093044281006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15854611992835999,\n            \"Y\": 0.6236093044281006\n          },\n          {\n            \"X\": 0.21261435747146606,\n            \"Y\": 0.6236093044281006\n          },\n          {\n            \"X\": 0.21261435747146606,\n            \"Y\": 0.6335841417312622\n          },\n          {\n            \"X\": 0.15854611992835999,\n            \"Y\": 0.6335841417312622\n          }\n        ]\n      },\n      \"Id\": \"31d6b856-40ee-4bea-9e73-74d7c1f08530\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98270416259766,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015728823840618134,\n          \"Height\": 0.010260004550218582,\n          \"Left\": 0.21467246115207672,\n          \"Top\": 0.6232898831367493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21467246115207672,\n            \"Y\": 0.6232898831367493\n          },\n          {\n            \"X\": 0.23040127754211426,\n            \"Y\": 0.6232898831367493\n          },\n          {\n            \"X\": 0.23040127754211426,\n            \"Y\": 0.6335498690605164\n          },\n          {\n            \"X\": 0.21467246115207672,\n            \"Y\": 0.6335498690605164\n          }\n        ]\n      },\n      \"Id\": \"20081b19-ed17-4999-be86-e01a1cca356f\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99433898925781,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023841407150030136,\n          \"Height\": 0.010078150779008865,\n          \"Left\": 0.2320491224527359,\n          \"Top\": 0.6234146356582642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2320491224527359,\n            \"Y\": 0.6234146356582642\n          },\n          {\n            \"X\": 0.25589054822921753,\n            \"Y\": 0.6234146356582642\n          },\n          {\n            \"X\": 0.25589054822921753,\n            \"Y\": 0.6334928274154663\n          },\n          {\n            \"X\": 0.2320491224527359,\n            \"Y\": 0.6334928274154663\n          }\n        ]\n      },\n      \"Id\": \"114b9734-7843-437e-8f10-1397d43971cc\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96662139892578,\n      \"Text\": \"text\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027635572478175163,\n          \"Height\": 0.010085555724799633,\n          \"Left\": 0.25809141993522644,\n          \"Top\": 0.6234756112098694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25809141993522644,\n            \"Y\": 0.6234756112098694\n          },\n          {\n            \"X\": 0.28572699427604675,\n            \"Y\": 0.6234756112098694\n          },\n          {\n            \"X\": 0.28572699427604675,\n            \"Y\": 0.6335611343383789\n          },\n          {\n            \"X\": 0.25809141993522644,\n            \"Y\": 0.6335611343383789\n          }\n        ]\n      },\n      \"Id\": \"2ba2bb1d-e016-49e4-ae5f-ac2f773063cd\",\n      \"Page\": 1,\n      \"SearchKey\": \"text\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93492126464844,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012932435609400272,\n          \"Height\": 0.010139022953808308,\n          \"Left\": 0.2885749936103821,\n          \"Top\": 0.6233653426170349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2885749936103821,\n            \"Y\": 0.6233653426170349\n          },\n          {\n            \"X\": 0.30150744318962097,\n            \"Y\": 0.6233653426170349\n          },\n          {\n            \"X\": 0.30150744318962097,\n            \"Y\": 0.633504331111908\n          },\n          {\n            \"X\": 0.2885749936103821,\n            \"Y\": 0.633504331111908\n          }\n        ]\n      },\n      \"Id\": \"d8c2b7b8-0e90-461d-ba8a-cfb2fa0eed22\",\n      \"Page\": 1,\n      \"SearchKey\": \"is\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9744873046875,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024728942662477493,\n          \"Height\": 0.009717276319861412,\n          \"Left\": 0.30345579981803894,\n          \"Top\": 0.6238188743591309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30345579981803894,\n            \"Y\": 0.6238188743591309\n          },\n          {\n            \"X\": 0.32818475365638733,\n            \"Y\": 0.6238188743591309\n          },\n          {\n            \"X\": 0.32818475365638733,\n            \"Y\": 0.633536159992218\n          },\n          {\n            \"X\": 0.30345579981803894,\n            \"Y\": 0.633536159992218\n          }\n        ]\n      },\n      \"Id\": \"43b3ae56-847d-493f-b89c-9c9ba5eb75f1\",\n      \"Page\": 1,\n      \"SearchKey\": \"not\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96611022949219,\n      \"Text\": \"particularly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07836352288722992,\n          \"Height\": 0.012241768650710583,\n          \"Left\": 0.33040037751197815,\n          \"Top\": 0.6234369874000549\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33040037751197815,\n            \"Y\": 0.6234369874000549\n          },\n          {\n            \"X\": 0.40876391530036926,\n            \"Y\": 0.6234369874000549\n          },\n          {\n            \"X\": 0.40876391530036926,\n            \"Y\": 0.635678768157959\n          },\n          {\n            \"X\": 0.33040037751197815,\n            \"Y\": 0.635678768157959\n          }\n        ]\n      },\n      \"Id\": \"ccbef527-8873-4774-9d24-58ab9a5592ab\",\n      \"Page\": 1,\n      \"SearchKey\": \"particularly\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26559448242188,\n      \"Text\": \"important,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07155518233776093,\n          \"Height\": 0.012041402980685234,\n          \"Left\": 0.4108739495277405,\n          \"Top\": 0.6233682036399841\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4108739495277405,\n            \"Y\": 0.6233682036399841\n          },\n          {\n            \"X\": 0.4824291467666626,\n            \"Y\": 0.6233682036399841\n          },\n          {\n            \"X\": 0.4824291467666626,\n            \"Y\": 0.6354096531867981\n          },\n          {\n            \"X\": 0.4108739495277405,\n            \"Y\": 0.6354096531867981\n          }\n        ]\n      },\n      \"Id\": \"1822d551-1b15-4581-bd3d-ef2c1529d839\",\n      \"Page\": 1,\n      \"SearchKey\": \"important,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.17449951171875,\n      \"Text\": \"so\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018563028424978256,\n          \"Height\": 0.008618316613137722,\n          \"Left\": 0.4855133593082428,\n          \"Top\": 0.6249309778213501\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4855133593082428,\n            \"Y\": 0.6249309778213501\n          },\n          {\n            \"X\": 0.5040764212608337,\n            \"Y\": 0.6249309778213501\n          },\n          {\n            \"X\": 0.5040764212608337,\n            \"Y\": 0.6335492730140686\n          },\n          {\n            \"X\": 0.4855133593082428,\n            \"Y\": 0.6335492730140686\n          }\n        ]\n      },\n      \"Id\": \"99de08df-3ff0-4ff2-82c6-9b076d53a05e\",\n      \"Page\": 1,\n      \"SearchKey\": \"so\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92037963867188,\n      \"Text\": \"long\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03201153501868248,\n          \"Height\": 0.012241223827004433,\n          \"Left\": 0.5064903497695923,\n          \"Top\": 0.6233795285224915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5064903497695923,\n            \"Y\": 0.6233795285224915\n          },\n          {\n            \"X\": 0.5385019183158875,\n            \"Y\": 0.6233795285224915\n          },\n          {\n            \"X\": 0.5385019183158875,\n            \"Y\": 0.6356207728385925\n          },\n          {\n            \"X\": 0.5064903497695923,\n            \"Y\": 0.6356207728385925\n          }\n        ]\n      },\n      \"Id\": \"55073024-4107-43aa-890e-315a465ad4dd\",\n      \"Page\": 1,\n      \"SearchKey\": \"long\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96266174316406,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018119821324944496,\n          \"Height\": 0.008451490662992,\n          \"Left\": 0.5409985780715942,\n          \"Top\": 0.6251354813575745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5409985780715942,\n            \"Y\": 0.6251354813575745\n          },\n          {\n            \"X\": 0.559118390083313,\n            \"Y\": 0.6251354813575745\n          },\n          {\n            \"X\": 0.559118390083313,\n            \"Y\": 0.6335869431495667\n          },\n          {\n            \"X\": 0.5409985780715942,\n            \"Y\": 0.6335869431495667\n          }\n        ]\n      },\n      \"Id\": \"9046929a-1ac7-4fec-9bfa-686da130d51d\",\n      \"Page\": 1,\n      \"SearchKey\": \"as\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98975372314453,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023875733837485313,\n          \"Height\": 0.009889437817037106,\n          \"Left\": 0.5615406632423401,\n          \"Top\": 0.6236150860786438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5615406632423401,\n            \"Y\": 0.6236150860786438\n          },\n          {\n            \"X\": 0.5854164361953735,\n            \"Y\": 0.6236150860786438\n          },\n          {\n            \"X\": 0.5854164361953735,\n            \"Y\": 0.6335045099258423\n          },\n          {\n            \"X\": 0.5615406632423401,\n            \"Y\": 0.6335045099258423\n          }\n        ]\n      },\n      \"Id\": \"644f6db4-e08f-425f-8969-4d63d1ab6a3b\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89142608642578,\n      \"Text\": \"layout\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044442176818847656,\n          \"Height\": 0.012115233577787876,\n          \"Left\": 0.5876357555389404,\n          \"Top\": 0.6233193874359131\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5876357555389404,\n            \"Y\": 0.6233193874359131\n          },\n          {\n            \"X\": 0.6320779323577881,\n            \"Y\": 0.6233193874359131\n          },\n          {\n            \"X\": 0.6320779323577881,\n            \"Y\": 0.635434627532959\n          },\n          {\n            \"X\": 0.5876357555389404,\n            \"Y\": 0.635434627532959\n          }\n        ]\n      },\n      \"Id\": \"afd2d250-2164-46cf-b069-8073efb25efd\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92845916748047,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01286863349378109,\n          \"Height\": 0.01003557350486517,\n          \"Left\": 0.635024905204773,\n          \"Top\": 0.6234572529792786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.635024905204773,\n            \"Y\": 0.6234572529792786\n          },\n          {\n            \"X\": 0.6478935480117798,\n            \"Y\": 0.6234572529792786\n          },\n          {\n            \"X\": 0.6478935480117798,\n            \"Y\": 0.6334928274154663\n          },\n          {\n            \"X\": 0.635024905204773,\n            \"Y\": 0.6334928274154663\n          }\n        ]\n      },\n      \"Id\": \"22ef57cb-a179-45e1-8439-2e3d3e4ef543\",\n      \"Page\": 1,\n      \"SearchKey\": \"is\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.886962890625,\n      \"Text\": \"representative\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10201821476221085,\n          \"Height\": 0.012096285820007324,\n          \"Left\": 0.6493744254112244,\n          \"Top\": 0.623498797416687\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6493744254112244,\n            \"Y\": 0.623498797416687\n          },\n          {\n            \"X\": 0.751392662525177,\n            \"Y\": 0.623498797416687\n          },\n          {\n            \"X\": 0.751392662525177,\n            \"Y\": 0.6355950832366943\n          },\n          {\n            \"X\": 0.6493744254112244,\n            \"Y\": 0.6355950832366943\n          }\n        ]\n      },\n      \"Id\": \"e7e8ed1b-058c-456f-9b7f-45d7867b222a\",\n      \"Page\": 1,\n      \"SearchKey\": \"representative\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96537780761719,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015515120700001717,\n          \"Height\": 0.010357355698943138,\n          \"Left\": 0.754568338394165,\n          \"Top\": 0.6233530044555664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.754568338394165,\n            \"Y\": 0.6233530044555664\n          },\n          {\n            \"X\": 0.7700834274291992,\n            \"Y\": 0.6233530044555664\n          },\n          {\n            \"X\": 0.7700834274291992,\n            \"Y\": 0.6337103843688965\n          },\n          {\n            \"X\": 0.754568338394165,\n            \"Y\": 0.6337103843688965\n          }\n        ]\n      },\n      \"Id\": \"fb71a34e-a6e4-44ef-9e5e-2a738ae260b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71904754638672,\n      \"Text\": \"real-world\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07156368345022202,\n          \"Height\": 0.010522112250328064,\n          \"Left\": 0.7721469402313232,\n          \"Top\": 0.6232619881629944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7721469402313232,\n            \"Y\": 0.6232619881629944\n          },\n          {\n            \"X\": 0.8437106013298035,\n            \"Y\": 0.6232619881629944\n          },\n          {\n            \"X\": 0.8437106013298035,\n            \"Y\": 0.6337841153144836\n          },\n          {\n            \"X\": 0.7721469402313232,\n            \"Y\": 0.6337841153144836\n          }\n        ]\n      },\n      \"Id\": \"a1a196c8-01e9-4009-9351-856660a73eef\",\n      \"Page\": 1,\n      \"SearchKey\": \"real-world\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97342681884766,\n      \"Text\": \"documents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07949704676866531,\n          \"Height\": 0.010058114305138588,\n          \"Left\": 0.079974465072155,\n          \"Top\": 0.6361019611358643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.079974465072155,\n            \"Y\": 0.6361019611358643\n          },\n          {\n            \"X\": 0.1594715118408203,\n            \"Y\": 0.6361019611358643\n          },\n          {\n            \"X\": 0.1594715118408203,\n            \"Y\": 0.6461600661277771\n          },\n          {\n            \"X\": 0.079974465072155,\n            \"Y\": 0.6461600661277771\n          }\n        ]\n      },\n      \"Id\": \"2e8208d9-c97e-4f24-a6ed-7bf9aac581c6\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98578643798828,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028299469500780106,\n          \"Height\": 0.00992635264992714,\n          \"Left\": 0.16221913695335388,\n          \"Top\": 0.6359896659851074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16221913695335388,\n            \"Y\": 0.6359896659851074\n          },\n          {\n            \"X\": 0.19051861763000488,\n            \"Y\": 0.6359896659851074\n          },\n          {\n            \"X\": 0.19051861763000488,\n            \"Y\": 0.6459159851074219\n          },\n          {\n            \"X\": 0.16221913695335388,\n            \"Y\": 0.6459159851074219\n          }\n        ]\n      },\n      \"Id\": \"ae6cb0c3-4a9e-41ca-bee6-e53691c7b799\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99191284179688,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024150433018803596,\n          \"Height\": 0.009797313250601292,\n          \"Left\": 0.19260208308696747,\n          \"Top\": 0.6361504793167114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19260208308696747,\n            \"Y\": 0.6361504793167114\n          },\n          {\n            \"X\": 0.2167525291442871,\n            \"Y\": 0.6361504793167114\n          },\n          {\n            \"X\": 0.2167525291442871,\n            \"Y\": 0.6459478139877319\n          },\n          {\n            \"X\": 0.19260208308696747,\n            \"Y\": 0.6459478139877319\n          }\n        ]\n      },\n      \"Id\": \"b724bc34-5b5e-40dd-aeef-e1623755c650\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96058654785156,\n      \"Text\": \"models\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051912687718868256,\n          \"Height\": 0.010150020942091942,\n          \"Left\": 0.21942271292209625,\n          \"Top\": 0.6359722018241882\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21942271292209625,\n            \"Y\": 0.6359722018241882\n          },\n          {\n            \"X\": 0.2713353931903839,\n            \"Y\": 0.6359722018241882\n          },\n          {\n            \"X\": 0.2713353931903839,\n            \"Y\": 0.6461222767829895\n          },\n          {\n            \"X\": 0.21942271292209625,\n            \"Y\": 0.6461222767829895\n          }\n        ]\n      },\n      \"Id\": \"73642f32-a1eb-430d-8755-c44938a091ff\",\n      \"Page\": 1,\n      \"SearchKey\": \"models\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9935531616211,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027843941003084183,\n          \"Height\": 0.00991677027195692,\n          \"Left\": 0.27442723512649536,\n          \"Top\": 0.6360345482826233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27442723512649536,\n            \"Y\": 0.6360345482826233\n          },\n          {\n            \"X\": 0.30227118730545044,\n            \"Y\": 0.6360345482826233\n          },\n          {\n            \"X\": 0.30227118730545044,\n            \"Y\": 0.6459513306617737\n          },\n          {\n            \"X\": 0.27442723512649536,\n            \"Y\": 0.6459513306617737\n          }\n        ]\n      },\n      \"Id\": \"f719b8ab-633d-4891-91b5-e4045ec8be05\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97810363769531,\n      \"Text\": \"approaches\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08333833515644073,\n          \"Height\": 0.011754576116800308,\n          \"Left\": 0.30538955330848694,\n          \"Top\": 0.6360890865325928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30538955330848694,\n            \"Y\": 0.6360890865325928\n          },\n          {\n            \"X\": 0.38872790336608887,\n            \"Y\": 0.6360890865325928\n          },\n          {\n            \"X\": 0.38872790336608887,\n            \"Y\": 0.6478436589241028\n          },\n          {\n            \"X\": 0.30538955330848694,\n            \"Y\": 0.6478436589241028\n          }\n        ]\n      },\n      \"Id\": \"d56229a0-451d-4779-a1c1-0ff7aa5ade23\",\n      \"Page\": 1,\n      \"SearchKey\": \"approaches\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92546081542969,\n      \"Text\": \"being\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040917616337537766,\n          \"Height\": 0.011969423852860928,\n          \"Left\": 0.3912997841835022,\n          \"Top\": 0.6359951496124268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3912997841835022,\n            \"Y\": 0.6359951496124268\n          },\n          {\n            \"X\": 0.43221741914749146,\n            \"Y\": 0.6359951496124268\n          },\n          {\n            \"X\": 0.43221741914749146,\n            \"Y\": 0.647964596748352\n          },\n          {\n            \"X\": 0.3912997841835022,\n            \"Y\": 0.647964596748352\n          }\n        ]\n      },\n      \"Id\": \"bdf8a37d-3b42-451e-b64e-91c38934e4bc\",\n      \"Page\": 1,\n      \"SearchKey\": \"being\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98824310302734,\n      \"Text\": \"tested\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044986918568611145,\n          \"Height\": 0.00991698820143938,\n          \"Left\": 0.43467703461647034,\n          \"Top\": 0.6360984444618225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43467703461647034,\n            \"Y\": 0.6360984444618225\n          },\n          {\n            \"X\": 0.4796639382839203,\n            \"Y\": 0.6360984444618225\n          },\n          {\n            \"X\": 0.4796639382839203,\n            \"Y\": 0.6460154056549072\n          },\n          {\n            \"X\": 0.43467703461647034,\n            \"Y\": 0.6460154056549072\n          }\n        ]\n      },\n      \"Id\": \"8fc9ad24-78ef-4d45-9dc2-b24a904aacf9\",\n      \"Page\": 1,\n      \"SearchKey\": \"tested\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98487091064453,\n      \"Text\": \"are\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023851191624999046,\n          \"Height\": 0.008335518650710583,\n          \"Left\": 0.4824732840061188,\n          \"Top\": 0.6376612186431885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4824732840061188,\n            \"Y\": 0.6376612186431885\n          },\n          {\n            \"X\": 0.5063244700431824,\n            \"Y\": 0.6376612186431885\n          },\n          {\n            \"X\": 0.5063244700431824,\n            \"Y\": 0.6459967494010925\n          },\n          {\n            \"X\": 0.4824732840061188,\n            \"Y\": 0.6459967494010925\n          }\n        ]\n      },\n      \"Id\": \"94e495bb-2ae8-45bf-963b-3b124e54ab72\",\n      \"Page\": 1,\n      \"SearchKey\": \"are\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69361114501953,\n      \"Text\": \"layout-based\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09223622828722,\n          \"Height\": 0.011906483210623264,\n          \"Left\": 0.5087975859642029,\n          \"Top\": 0.6359845399856567\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5087975859642029,\n            \"Y\": 0.6359845399856567\n          },\n          {\n            \"X\": 0.6010338068008423,\n            \"Y\": 0.6359845399856567\n          },\n          {\n            \"X\": 0.6010338068008423,\n            \"Y\": 0.6478910446166992\n          },\n          {\n            \"X\": 0.5087975859642029,\n            \"Y\": 0.6478910446166992\n          }\n        ]\n      },\n      \"Id\": \"5ed3b58a-a60e-4705-a7fc-690aeb0ac95b\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout-based\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98763275146484,\n      \"Text\": \"rather\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043301116675138474,\n          \"Height\": 0.010044829919934273,\n          \"Left\": 0.6036860346794128,\n          \"Top\": 0.6359714269638062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6036860346794128,\n            \"Y\": 0.6359714269638062\n          },\n          {\n            \"X\": 0.6469871997833252,\n            \"Y\": 0.6359714269638062\n          },\n          {\n            \"X\": 0.6469871997833252,\n            \"Y\": 0.6460162401199341\n          },\n          {\n            \"X\": 0.6036860346794128,\n            \"Y\": 0.6460162401199341\n          }\n        ]\n      },\n      \"Id\": \"9962ba26-1dd3-410c-a5d0-092a3b354eb1\",\n      \"Page\": 1,\n      \"SearchKey\": \"rather\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98133087158203,\n      \"Text\": \"than\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03233816474676132,\n          \"Height\": 0.009824536740779877,\n          \"Left\": 0.6496022343635559,\n          \"Top\": 0.6361526250839233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6496022343635559,\n            \"Y\": 0.6361526250839233\n          },\n          {\n            \"X\": 0.6819404363632202,\n            \"Y\": 0.6361526250839233\n          },\n          {\n            \"X\": 0.6819404363632202,\n            \"Y\": 0.6459771394729614\n          },\n          {\n            \"X\": 0.6496022343635559,\n            \"Y\": 0.6459771394729614\n          }\n        ]\n      },\n      \"Id\": \"a7d4a7d8-67a0-487b-84ea-a34151bb7262\",\n      \"Page\": 1,\n      \"SearchKey\": \"than\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9425277709961,\n      \"Text\": \"using\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04013081640005112,\n          \"Height\": 0.012141803279519081,\n          \"Left\": 0.6842607259750366,\n          \"Top\": 0.6361329555511475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6842607259750366,\n            \"Y\": 0.6361329555511475\n          },\n          {\n            \"X\": 0.724391520023346,\n            \"Y\": 0.6361329555511475\n          },\n          {\n            \"X\": 0.724391520023346,\n            \"Y\": 0.6482747793197632\n          },\n          {\n            \"X\": 0.6842607259750366,\n            \"Y\": 0.6482747793197632\n          }\n        ]\n      },\n      \"Id\": \"65f7079c-0917-46c3-b0ba-fc85036cf7bf\",\n      \"Page\": 1,\n      \"SearchKey\": \"using\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93093872070312,\n      \"Text\": \"cues\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034735340625047684,\n          \"Height\": 0.00858673732727766,\n          \"Left\": 0.727210521697998,\n          \"Top\": 0.6375393271446228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.727210521697998,\n            \"Y\": 0.6375393271446228\n          },\n          {\n            \"X\": 0.761945903301239,\n            \"Y\": 0.6375393271446228\n          },\n          {\n            \"X\": 0.761945903301239,\n            \"Y\": 0.6461260318756104\n          },\n          {\n            \"X\": 0.727210521697998,\n            \"Y\": 0.6461260318756104\n          }\n        ]\n      },\n      \"Id\": \"6b581346-2618-4391-a131-d9196d3754db\",\n      \"Page\": 1,\n      \"SearchKey\": \"cues\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96719360351562,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033825505524873734,\n          \"Height\": 0.010043305344879627,\n          \"Left\": 0.7639271020889282,\n          \"Top\": 0.6359662413597107\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7639271020889282,\n            \"Y\": 0.6359662413597107\n          },\n          {\n            \"X\": 0.7977526187896729,\n            \"Y\": 0.6359662413597107\n          },\n          {\n            \"X\": 0.7977526187896729,\n            \"Y\": 0.6460095643997192\n          },\n          {\n            \"X\": 0.7639271020889282,\n            \"Y\": 0.6460095643997192\n          }\n        ]\n      },\n      \"Id\": \"fd286c58-7d65-4c30-a10a-91a317571894\",\n      \"Page\": 1,\n      \"SearchKey\": \"from\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9725341796875,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024347973987460136,\n          \"Height\": 0.010014448314905167,\n          \"Left\": 0.799503743648529,\n          \"Top\": 0.6360489130020142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.799503743648529,\n            \"Y\": 0.6360489130020142\n          },\n          {\n            \"X\": 0.8238517642021179,\n            \"Y\": 0.6360489130020142\n          },\n          {\n            \"X\": 0.8238517642021179,\n            \"Y\": 0.6460633873939514\n          },\n          {\n            \"X\": 0.799503743648529,\n            \"Y\": 0.6460633873939514\n          }\n        ]\n      },\n      \"Id\": \"1a48c0ae-64be-4b26-a957-477a95a350fa\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93970489501953,\n      \"Text\": \"text\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028102317824959755,\n          \"Height\": 0.009811360388994217,\n          \"Left\": 0.825984537601471,\n          \"Top\": 0.6361641883850098\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.825984537601471,\n            \"Y\": 0.6361641883850098\n          },\n          {\n            \"X\": 0.8540868163108826,\n            \"Y\": 0.6361641883850098\n          },\n          {\n            \"X\": 0.8540868163108826,\n            \"Y\": 0.6459755897521973\n          },\n          {\n            \"X\": 0.825984537601471,\n            \"Y\": 0.6459755897521973\n          }\n        ]\n      },\n      \"Id\": \"d4eb7ad5-3aac-44c6-8597-3841167cb872\",\n      \"Page\": 1,\n      \"SearchKey\": \"text\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97624206542969,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01680014654994011,\n          \"Height\": 0.00834216084331274,\n          \"Left\": 0.855773389339447,\n          \"Top\": 0.6375828385353088\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.855773389339447,\n            \"Y\": 0.6375828385353088\n          },\n          {\n            \"X\": 0.8725734949111938,\n            \"Y\": 0.6375828385353088\n          },\n          {\n            \"X\": 0.8725734949111938,\n            \"Y\": 0.645924985408783\n          },\n          {\n            \"X\": 0.855773389339447,\n            \"Y\": 0.645924985408783\n          }\n        ]\n      },\n      \"Id\": \"47a2b927-11b9-42e0-aae0-85ed147bb7d3\",\n      \"Page\": 1,\n      \"SearchKey\": \"or\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97557067871094,\n      \"Text\": \"combining\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07361050695180893,\n          \"Height\": 0.012556907720863819,\n          \"Left\": 0.08033029735088348,\n          \"Top\": 0.6481565833091736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08033029735088348,\n            \"Y\": 0.6481565833091736\n          },\n          {\n            \"X\": 0.15394079685211182,\n            \"Y\": 0.6481565833091736\n          },\n          {\n            \"X\": 0.15394079685211182,\n            \"Y\": 0.6607134938240051\n          },\n          {\n            \"X\": 0.08033029735088348,\n            \"Y\": 0.6607134938240051\n          }\n        ]\n      },\n      \"Id\": \"d95bd74d-ef06-4102-b0b8-0859844b53a7\",\n      \"Page\": 1,\n      \"SearchKey\": \"combining\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73914337158203,\n      \"Text\": \"multiple\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056192394345998764,\n          \"Height\": 0.012390299700200558,\n          \"Left\": 0.15662719309329987,\n          \"Top\": 0.6482007503509521\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15662719309329987,\n            \"Y\": 0.6482007503509521\n          },\n          {\n            \"X\": 0.21281959116458893,\n            \"Y\": 0.6482007503509521\n          },\n          {\n            \"X\": 0.21281959116458893,\n            \"Y\": 0.6605910658836365\n          },\n          {\n            \"X\": 0.15662719309329987,\n            \"Y\": 0.6605910658836365\n          }\n        ]\n      },\n      \"Id\": \"53efbf7f-5194-4cfb-9510-92094fa622ea\",\n      \"Page\": 1,\n      \"SearchKey\": \"multiple\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77296447753906,\n      \"Text\": \"signals\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05034774914383888,\n          \"Height\": 0.01236819475889206,\n          \"Left\": 0.21580593287944794,\n          \"Top\": 0.6483267545700073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21580593287944794,\n            \"Y\": 0.6483267545700073\n          },\n          {\n            \"X\": 0.2661536931991577,\n            \"Y\": 0.6483267545700073\n          },\n          {\n            \"X\": 0.2661536931991577,\n            \"Y\": 0.66069495677948\n          },\n          {\n            \"X\": 0.21580593287944794,\n            \"Y\": 0.66069495677948\n          }\n        ]\n      },\n      \"Id\": \"7a2e83f6-23db-489a-8504-d6e49fa979f7\",\n      \"Page\": 1,\n      \"SearchKey\": \"signals\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87686157226562,\n      \"Text\": \"(such\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03894155099987984,\n          \"Height\": 0.012442024424672127,\n          \"Left\": 0.26990601420402527,\n          \"Top\": 0.6481142640113831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26990601420402527,\n            \"Y\": 0.6481142640113831\n          },\n          {\n            \"X\": 0.308847576379776,\n            \"Y\": 0.6481142640113831\n          },\n          {\n            \"X\": 0.308847576379776,\n            \"Y\": 0.6605562567710876\n          },\n          {\n            \"X\": 0.26990601420402527,\n            \"Y\": 0.6605562567710876\n          }\n        ]\n      },\n      \"Id\": \"d814eea4-ccd1-4c24-9586-735c77faca63\",\n      \"Page\": 1,\n      \"SearchKey\": \"(such\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95252990722656,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01838405430316925,\n          \"Height\": 0.008431672118604183,\n          \"Left\": 0.31182563304901123,\n          \"Top\": 0.6502946019172668\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31182563304901123,\n            \"Y\": 0.6502946019172668\n          },\n          {\n            \"X\": 0.3302097022533417,\n            \"Y\": 0.6502946019172668\n          },\n          {\n            \"X\": 0.3302097022533417,\n            \"Y\": 0.6587262749671936\n          },\n          {\n            \"X\": 0.31182563304901123,\n            \"Y\": 0.6587262749671936\n          }\n        ]\n      },\n      \"Id\": \"c503a864-0196-4cd1-8ba5-1c053abfbdcd\",\n      \"Page\": 1,\n      \"SearchKey\": \"as\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.3324966430664,\n      \"Text\": \"layout,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0479128398001194,\n          \"Height\": 0.012345436029136181,\n          \"Left\": 0.33260902762413025,\n          \"Top\": 0.6482782959938049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33260902762413025,\n            \"Y\": 0.6482782959938049\n          },\n          {\n            \"X\": 0.38052186369895935,\n            \"Y\": 0.6482782959938049\n          },\n          {\n            \"X\": 0.38052186369895935,\n            \"Y\": 0.6606237292289734\n          },\n          {\n            \"X\": 0.33260902762413025,\n            \"Y\": 0.6606237292289734\n          }\n        ]\n      },\n      \"Id\": \"cee17701-e46d-4809-9be9-97ee140cfaaa\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.60765838623047,\n      \"Text\": \"text,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03092934563755989,\n          \"Height\": 0.011032717302441597,\n          \"Left\": 0.3836705982685089,\n          \"Top\": 0.6486563682556152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3836705982685089,\n            \"Y\": 0.6486563682556152\n          },\n          {\n            \"X\": 0.4145999550819397,\n            \"Y\": 0.6486563682556152\n          },\n          {\n            \"X\": 0.4145999550819397,\n            \"Y\": 0.6596890687942505\n          },\n          {\n            \"X\": 0.3836705982685089,\n            \"Y\": 0.6596890687942505\n          }\n        ]\n      },\n      \"Id\": \"715952e5-8a7c-403d-8466-e5574a822418\",\n      \"Page\": 1,\n      \"SearchKey\": \"text,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98333740234375,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02829015627503395,\n          \"Height\": 0.009960436262190342,\n          \"Left\": 0.4178442656993866,\n          \"Top\": 0.6485955119132996\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4178442656993866,\n            \"Y\": 0.6485955119132996\n          },\n          {\n            \"X\": 0.44613441824913025,\n            \"Y\": 0.6485955119132996\n          },\n          {\n            \"X\": 0.44613441824913025,\n            \"Y\": 0.6585559248924255\n          },\n          {\n            \"X\": 0.4178442656993866,\n            \"Y\": 0.6585559248924255\n          }\n        ]\n      },\n      \"Id\": \"20a1cf15-23c7-46f5-a117-72ad33d73808\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95933532714844,\n      \"Text\": \"maybe\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04912319406867027,\n          \"Height\": 0.012200498022139072,\n          \"Left\": 0.4488137662410736,\n          \"Top\": 0.648381769657135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4488137662410736,\n            \"Y\": 0.648381769657135\n          },\n          {\n            \"X\": 0.4979369640350342,\n            \"Y\": 0.648381769657135\n          },\n          {\n            \"X\": 0.4979369640350342,\n            \"Y\": 0.6605822443962097\n          },\n          {\n            \"X\": 0.4488137662410736,\n            \"Y\": 0.6605822443962097\n          }\n        ]\n      },\n      \"Id\": \"d0576cb4-eb7f-4623-9a14-2bc713e13586\",\n      \"Page\": 1,\n      \"SearchKey\": \"maybe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88387298583984,\n      \"Text\": \"even\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0360354445874691,\n          \"Height\": 0.008677772246301174,\n          \"Left\": 0.5005062222480774,\n          \"Top\": 0.649915874004364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5005062222480774,\n            \"Y\": 0.649915874004364\n          },\n          {\n            \"X\": 0.5365417003631592,\n            \"Y\": 0.649915874004364\n          },\n          {\n            \"X\": 0.5365417003631592,\n            \"Y\": 0.6585936546325684\n          },\n          {\n            \"X\": 0.5005062222480774,\n            \"Y\": 0.6585936546325684\n          }\n        ]\n      },\n      \"Id\": \"817c6975-7ccc-40fc-8440-a53a3d5bed1e\",\n      \"Page\": 1,\n      \"SearchKey\": \"even\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.89366149902344,\n      \"Text\": \"imagery)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06346477568149567,\n          \"Height\": 0.012348376214504242,\n          \"Left\": 0.5387235283851624,\n          \"Top\": 0.6484151482582092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5387235283851624,\n            \"Y\": 0.6484151482582092\n          },\n          {\n            \"X\": 0.6021882891654968,\n            \"Y\": 0.6484151482582092\n          },\n          {\n            \"X\": 0.6021882891654968,\n            \"Y\": 0.6607635021209717\n          },\n          {\n            \"X\": 0.5387235283851624,\n            \"Y\": 0.6607635021209717\n          }\n        ]\n      },\n      \"Id\": \"a6a7905a-cd32-4820-a7e2-efd64139af44\",\n      \"Page\": 1,\n      \"SearchKey\": \"imagery)\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89500427246094,\n      \"Text\": \"together.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0631350576877594,\n          \"Height\": 0.011947862803936005,\n          \"Left\": 0.6044377684593201,\n          \"Top\": 0.6486518979072571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6044377684593201,\n            \"Y\": 0.6486518979072571\n          },\n          {\n            \"X\": 0.6675727963447571,\n            \"Y\": 0.6486518979072571\n          },\n          {\n            \"X\": 0.6675727963447571,\n            \"Y\": 0.6605997681617737\n          },\n          {\n            \"X\": 0.6044377684593201,\n            \"Y\": 0.6605997681617737\n          }\n        ]\n      },\n      \"Id\": \"0320cb4b-572d-434a-a4ed-3ec4210fcc8f\",\n      \"Page\": 1,\n      \"SearchKey\": \"together.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9712142944336,\n      \"Text\": \"Even\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037677422165870667,\n          \"Height\": 0.010385232977569103,\n          \"Left\": 0.08082366734743118,\n          \"Top\": 0.6731557250022888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08082366734743118,\n            \"Y\": 0.6731557250022888\n          },\n          {\n            \"X\": 0.11850108951330185,\n            \"Y\": 0.6731557250022888\n          },\n          {\n            \"X\": 0.11850108951330185,\n            \"Y\": 0.683540940284729\n          },\n          {\n            \"X\": 0.08082366734743118,\n            \"Y\": 0.683540940284729\n          }\n        ]\n      },\n      \"Id\": \"4e4aa494-f89e-418f-a0c5-099b718f8b96\",\n      \"Page\": 1,\n      \"SearchKey\": \"Even\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98919677734375,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024037225171923637,\n          \"Height\": 0.010204576887190342,\n          \"Left\": 0.12048482894897461,\n          \"Top\": 0.6733850836753845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12048482894897461,\n            \"Y\": 0.6733850836753845\n          },\n          {\n            \"X\": 0.1445220559835434,\n            \"Y\": 0.6733850836753845\n          },\n          {\n            \"X\": 0.1445220559835434,\n            \"Y\": 0.6835896372795105\n          },\n          {\n            \"X\": 0.12048482894897461,\n            \"Y\": 0.6835896372795105\n          }\n        ]\n      },\n      \"Id\": \"50f3f0dd-90b1-4ebf-a904-09b193f499d1\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77952575683594,\n      \"Text\": \"representativeness\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1356625109910965,\n          \"Height\": 0.011984996497631073,\n          \"Left\": 0.14686855673789978,\n          \"Top\": 0.6734381318092346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14686855673789978,\n            \"Y\": 0.6734381318092346\n          },\n          {\n            \"X\": 0.2825310528278351,\n            \"Y\": 0.6734381318092346\n          },\n          {\n            \"X\": 0.2825310528278351,\n            \"Y\": 0.6854231357574463\n          },\n          {\n            \"X\": 0.14686855673789978,\n            \"Y\": 0.6854231357574463\n          }\n        ]\n      },\n      \"Id\": \"a2b8d042-d185-4db0-a6a5-5f5d61b54b33\",\n      \"Page\": 1,\n      \"SearchKey\": \"representativeness\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97514343261719,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015449673868715763,\n          \"Height\": 0.010399280115962029,\n          \"Left\": 0.28494685888290405,\n          \"Top\": 0.6731694340705872\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28494685888290405,\n            \"Y\": 0.6731694340705872\n          },\n          {\n            \"X\": 0.30039653182029724,\n            \"Y\": 0.6731694340705872\n          },\n          {\n            \"X\": 0.30039653182029724,\n            \"Y\": 0.6835687160491943\n          },\n          {\n            \"X\": 0.28494685888290405,\n            \"Y\": 0.6835687160491943\n          }\n        ]\n      },\n      \"Id\": \"e45cee8d-04de-4e93-9005-c70df3e02c17\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9952163696289,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02375234104692936,\n          \"Height\": 0.01022537611424923,\n          \"Left\": 0.30184948444366455,\n          \"Top\": 0.6733641624450684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30184948444366455,\n            \"Y\": 0.6733641624450684\n          },\n          {\n            \"X\": 0.32560181617736816,\n            \"Y\": 0.6733641624450684\n          },\n          {\n            \"X\": 0.32560181617736816,\n            \"Y\": 0.6835895776748657\n          },\n          {\n            \"X\": 0.30184948444366455,\n            \"Y\": 0.6835895776748657\n          }\n        ]\n      },\n      \"Id\": \"4475be1f-1921-403a-b844-55559a05e45e\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84500122070312,\n      \"Text\": \"layout\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04466070979833603,\n          \"Height\": 0.01237015426158905,\n          \"Left\": 0.32809850573539734,\n          \"Top\": 0.6732785105705261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32809850573539734,\n            \"Y\": 0.6732785105705261\n          },\n          {\n            \"X\": 0.37275922298431396,\n            \"Y\": 0.6732785105705261\n          },\n          {\n            \"X\": 0.37275922298431396,\n            \"Y\": 0.6856486797332764\n          },\n          {\n            \"X\": 0.32809850573539734,\n            \"Y\": 0.6856486797332764\n          }\n        ]\n      },\n      \"Id\": \"074ad696-dd81-4015-a498-ac6508326106\",\n      \"Page\": 1,\n      \"SearchKey\": \"layout\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98234558105469,\n      \"Text\": \"need\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03713848814368248,\n          \"Height\": 0.010255321860313416,\n          \"Left\": 0.37512657046318054,\n          \"Top\": 0.673369288444519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37512657046318054,\n            \"Y\": 0.673369288444519\n          },\n          {\n            \"X\": 0.4122650623321533,\n            \"Y\": 0.673369288444519\n          },\n          {\n            \"X\": 0.4122650623321533,\n            \"Y\": 0.6836246252059937\n          },\n          {\n            \"X\": 0.37512657046318054,\n            \"Y\": 0.6836246252059937\n          }\n        ]\n      },\n      \"Id\": \"e182b49c-4898-426e-b7d8-3433a3d8fd21\",\n      \"Page\": 1,\n      \"SearchKey\": \"need\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96665954589844,\n      \"Text\": \"only\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03173715993762016,\n          \"Height\": 0.012234036810696125,\n          \"Left\": 0.41429826617240906,\n          \"Top\": 0.6733741164207458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41429826617240906,\n            \"Y\": 0.6733741164207458\n          },\n          {\n            \"X\": 0.4460354149341583,\n            \"Y\": 0.6733741164207458\n          },\n          {\n            \"X\": 0.4460354149341583,\n            \"Y\": 0.6856081485748291\n          },\n          {\n            \"X\": 0.41429826617240906,\n            \"Y\": 0.6856081485748291\n          }\n        ]\n      },\n      \"Id\": \"71da0d40-9bd5-4b8e-a01f-47a5adf0aee7\",\n      \"Page\": 1,\n      \"SearchKey\": \"only\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96685791015625,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01918100006878376,\n          \"Height\": 0.01022766251116991,\n          \"Left\": 0.4478614330291748,\n          \"Top\": 0.6735639572143555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4478614330291748,\n            \"Y\": 0.6735639572143555\n          },\n          {\n            \"X\": 0.4670424163341522,\n            \"Y\": 0.6735639572143555\n          },\n          {\n            \"X\": 0.4670424163341522,\n            \"Y\": 0.6837916374206543\n          },\n          {\n            \"X\": 0.4478614330291748,\n            \"Y\": 0.6837916374206543\n          }\n        ]\n      },\n      \"Id\": \"54664ec3-a639-49f9-92bd-15064563030f\",\n      \"Page\": 1,\n      \"SearchKey\": \"be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.20693969726562,\n      \"Text\": \"approximate,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0923936739563942,\n          \"Height\": 0.01220692228525877,\n          \"Left\": 0.4699300527572632,\n          \"Top\": 0.6732499003410339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4699300527572632,\n            \"Y\": 0.6732499003410339\n          },\n          {\n            \"X\": 0.5623236894607544,\n            \"Y\": 0.6732499003410339\n          },\n          {\n            \"X\": 0.5623236894607544,\n            \"Y\": 0.6854568123817444\n          },\n          {\n            \"X\": 0.4699300527572632,\n            \"Y\": 0.6854568123817444\n          }\n        ]\n      },\n      \"Id\": \"c7d63da4-ff5d-4596-ae59-b71d4eadc625\",\n      \"Page\": 1,\n      \"SearchKey\": \"approximate,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95718383789062,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017864452674984932,\n          \"Height\": 0.008362524211406708,\n          \"Left\": 0.5654656887054443,\n          \"Top\": 0.6752211451530457\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5654656887054443,\n            \"Y\": 0.6752211451530457\n          },\n          {\n            \"X\": 0.5833300948143005,\n            \"Y\": 0.6752211451530457\n          },\n          {\n            \"X\": 0.5833300948143005,\n            \"Y\": 0.683583676815033\n          },\n          {\n            \"X\": 0.5654656887054443,\n            \"Y\": 0.683583676815033\n          }\n        ]\n      },\n      \"Id\": \"e9ca84a3-f3ef-4085-849b-cd8516349bc7\",\n      \"Page\": 1,\n      \"SearchKey\": \"as\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95843505859375,\n      \"Text\": \"different\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058855537325143814,\n          \"Height\": 0.010438155382871628,\n          \"Left\": 0.5865455865859985,\n          \"Top\": 0.6732569336891174\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5865455865859985,\n            \"Y\": 0.6732569336891174\n          },\n          {\n            \"X\": 0.645401120185852,\n            \"Y\": 0.6732569336891174\n          },\n          {\n            \"X\": 0.645401120185852,\n            \"Y\": 0.6836950778961182\n          },\n          {\n            \"X\": 0.5865455865859985,\n            \"Y\": 0.6836950778961182\n          }\n        ]\n      },\n      \"Id\": \"6cbc217e-17c6-4705-b5fd-2396cc4dc89b\",\n      \"Page\": 1,\n      \"SearchKey\": \"different\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97722625732422,\n      \"Text\": \"documents\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07863301038742065,\n          \"Height\": 0.01005158107727766,\n          \"Left\": 0.6475149989128113,\n          \"Top\": 0.6734820008277893\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6475149989128113,\n            \"Y\": 0.6734820008277893\n          },\n          {\n            \"X\": 0.7261480093002319,\n            \"Y\": 0.6734820008277893\n          },\n          {\n            \"X\": 0.7261480093002319,\n            \"Y\": 0.6835336089134216\n          },\n          {\n            \"X\": 0.6475149989128113,\n            \"Y\": 0.6835336089134216\n          }\n        ]\n      },\n      \"Id\": \"6c174d5c-554d-475c-8b9d-427efd6aa1e8\",\n      \"Page\": 1,\n      \"SearchKey\": \"documents\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96774291992188,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02485726960003376,\n          \"Height\": 0.010167335160076618,\n          \"Left\": 0.7286036610603333,\n          \"Top\": 0.6732367277145386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7286036610603333,\n            \"Y\": 0.6732367277145386\n          },\n          {\n            \"X\": 0.7534609436988831,\n            \"Y\": 0.6732367277145386\n          },\n          {\n            \"X\": 0.7534609436988831,\n            \"Y\": 0.6834040284156799\n          },\n          {\n            \"X\": 0.7286036610603333,\n            \"Y\": 0.6834040284156799\n          }\n        ]\n      },\n      \"Id\": \"aba48989-46bd-4cf6-9b8a-aa517d4238b8\",\n      \"Page\": 1,\n      \"SearchKey\": \"will\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97103118896484,\n      \"Text\": \"represent\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06896042078733444,\n          \"Height\": 0.011388801038265228,\n          \"Left\": 0.7551512718200684,\n          \"Top\": 0.6739505529403687\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7551512718200684,\n            \"Y\": 0.6739505529403687\n          },\n          {\n            \"X\": 0.8241117000579834,\n            \"Y\": 0.6739505529403687\n          },\n          {\n            \"X\": 0.8241117000579834,\n            \"Y\": 0.6853393912315369\n          },\n          {\n            \"X\": 0.7551512718200684,\n            \"Y\": 0.6853393912315369\n          }\n        ]\n      },\n      \"Id\": \"fdf40d5d-ea4f-4211-ac46-a657f588bd32\",\n      \"Page\": 1,\n      \"SearchKey\": \"represent\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9710464477539,\n      \"Text\": \"different\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0589713491499424,\n          \"Height\": 0.010501313954591751,\n          \"Left\": 0.8263031840324402,\n          \"Top\": 0.6732325553894043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8263031840324402,\n            \"Y\": 0.6732325553894043\n          },\n          {\n            \"X\": 0.8852745294570923,\n            \"Y\": 0.6732325553894043\n          },\n          {\n            \"X\": 0.8852745294570923,\n            \"Y\": 0.6837338805198669\n          },\n          {\n            \"X\": 0.8263031840324402,\n            \"Y\": 0.6837338805198669\n          }\n        ]\n      },\n      \"Id\": \"8804b317-64aa-4c5d-9659-fc8f91a90671\",\n      \"Page\": 1,\n      \"SearchKey\": \"different\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97343444824219,\n      \"Text\": \"formatting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07158257067203522,\n          \"Height\": 0.012498213909566402,\n          \"Left\": 0.08082075417041779,\n          \"Top\": 0.6858429312705994\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08082075417041779,\n            \"Y\": 0.6858429312705994\n          },\n          {\n            \"X\": 0.152403324842453,\n            \"Y\": 0.6858429312705994\n          },\n          {\n            \"X\": 0.152403324842453,\n            \"Y\": 0.6983411908149719\n          },\n          {\n            \"X\": 0.08082075417041779,\n            \"Y\": 0.6983411908149719\n          }\n        ]\n      },\n      \"Id\": \"9fa28165-9e2f-48e6-8c42-89a7b061e243\",\n      \"Page\": 1,\n      \"SearchKey\": \"formatting\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95259094238281,\n      \"Text\": \"choices\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05542746186256409,\n          \"Height\": 0.010197825729846954,\n          \"Left\": 0.15513576567173004,\n          \"Top\": 0.6859130859375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15513576567173004,\n            \"Y\": 0.6859130859375\n          },\n          {\n            \"X\": 0.21056322753429413,\n            \"Y\": 0.6859130859375\n          },\n          {\n            \"X\": 0.21056322753429413,\n            \"Y\": 0.6961109042167664\n          },\n          {\n            \"X\": 0.15513576567173004,\n            \"Y\": 0.6961109042167664\n          }\n        ]\n      },\n      \"Id\": \"474bfd4f-278f-4302-867b-248f7e936073\",\n      \"Page\": 1,\n      \"SearchKey\": \"choices\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96217346191406,\n      \"Text\": \"such\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03501882031559944,\n          \"Height\": 0.010200439020991325,\n          \"Left\": 0.21322226524353027,\n          \"Top\": 0.6858185529708862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21322226524353027,\n            \"Y\": 0.6858185529708862\n          },\n          {\n            \"X\": 0.24824108183383942,\n            \"Y\": 0.6858185529708862\n          },\n          {\n            \"X\": 0.24824108183383942,\n            \"Y\": 0.6960189938545227\n          },\n          {\n            \"X\": 0.21322226524353027,\n            \"Y\": 0.6960189938545227\n          }\n        ]\n      },\n      \"Id\": \"f8fcbd89-e2f1-43d0-b982-a97a2c0688b8\",\n      \"Page\": 1,\n      \"SearchKey\": \"such\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96211242675781,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017492227256298065,\n          \"Height\": 0.008574540726840496,\n          \"Left\": 0.25094008445739746,\n          \"Top\": 0.6876141428947449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25094008445739746,\n            \"Y\": 0.6876141428947449\n          },\n          {\n            \"X\": 0.26843228936195374,\n            \"Y\": 0.6876141428947449\n          },\n          {\n            \"X\": 0.26843228936195374,\n            \"Y\": 0.6961886882781982\n          },\n          {\n            \"X\": 0.25094008445739746,\n            \"Y\": 0.6961886882781982\n          }\n        ]\n      },\n      \"Id\": \"e2b7395d-bfb2-431e-92f0-91d18c5ceb80\",\n      \"Page\": 1,\n      \"SearchKey\": \"as\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49486541748047,\n      \"Text\": \"margins,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06142550706863403,\n          \"Height\": 0.012155524455010891,\n          \"Left\": 0.271887868642807,\n          \"Top\": 0.6860849857330322\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.271887868642807,\n            \"Y\": 0.6860849857330322\n          },\n          {\n            \"X\": 0.33331337571144104,\n            \"Y\": 0.6860849857330322\n          },\n          {\n            \"X\": 0.33331337571144104,\n            \"Y\": 0.6982405185699463\n          },\n          {\n            \"X\": 0.271887868642807,\n            \"Y\": 0.6982405185699463\n          }\n        ]\n      },\n      \"Id\": \"358a9f48-5159-46ba-862c-91dca4a306c3\",\n      \"Page\": 1,\n      \"SearchKey\": \"margins,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97412109375,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03747093304991722,\n          \"Height\": 0.010751225985586643,\n          \"Left\": 0.33609938621520996,\n          \"Top\": 0.6875994801521301\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33609938621520996,\n            \"Y\": 0.6875994801521301\n          },\n          {\n            \"X\": 0.3735703229904175,\n            \"Y\": 0.6875994801521301\n          },\n          {\n            \"X\": 0.3735703229904175,\n            \"Y\": 0.698350727558136\n          },\n          {\n            \"X\": 0.33609938621520996,\n            \"Y\": 0.698350727558136\n          }\n        ]\n      },\n      \"Id\": \"d9cc87bf-7666-4240-9958-fc34f9659ada\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96874237060547,\n      \"Text\": \"size\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02965843491256237,\n          \"Height\": 0.00999441184103489,\n          \"Left\": 0.376139372587204,\n          \"Top\": 0.686088502407074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.376139372587204,\n            \"Y\": 0.686088502407074\n          },\n          {\n            \"X\": 0.4057978093624115,\n            \"Y\": 0.686088502407074\n          },\n          {\n            \"X\": 0.4057978093624115,\n            \"Y\": 0.6960829496383667\n          },\n          {\n            \"X\": 0.376139372587204,\n            \"Y\": 0.6960829496383667\n          }\n        ]\n      },\n      \"Id\": \"cf58afef-f554-4455-a367-a732dfa1408a\",\n      \"Page\": 1,\n      \"SearchKey\": \"size\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99241638183594,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027512578293681145,\n          \"Height\": 0.01007695309817791,\n          \"Left\": 0.40860992670059204,\n          \"Top\": 0.6859703660011292\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40860992670059204,\n            \"Y\": 0.6859703660011292\n          },\n          {\n            \"X\": 0.43612250685691833,\n            \"Y\": 0.6859703660011292\n          },\n          {\n            \"X\": 0.43612250685691833,\n            \"Y\": 0.696047306060791\n          },\n          {\n            \"X\": 0.40860992670059204,\n            \"Y\": 0.696047306060791\n          }\n        ]\n      },\n      \"Id\": \"80681090-8aab-4fcb-ab41-1431a0d59100\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.58079528808594,\n      \"Text\": \"shape,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04920829087495804,\n          \"Height\": 0.01242601778358221,\n          \"Left\": 0.43900763988494873,\n          \"Top\": 0.6858470439910889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43900763988494873,\n            \"Y\": 0.6858470439910889\n          },\n          {\n            \"X\": 0.48821592330932617,\n            \"Y\": 0.6858470439910889\n          },\n          {\n            \"X\": 0.48821592330932617,\n            \"Y\": 0.6982730627059937\n          },\n          {\n            \"X\": 0.43900763988494873,\n            \"Y\": 0.6982730627059937\n          }\n        ]\n      },\n      \"Id\": \"0788a040-a3a7-4d9e-af19-f10238304850\",\n      \"Page\": 1,\n      \"SearchKey\": \"shape,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99290466308594,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028014816343784332,\n          \"Height\": 0.010156446136534214,\n          \"Left\": 0.4911954998970032,\n          \"Top\": 0.6858779191970825\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4911954998970032,\n            \"Y\": 0.6858779191970825\n          },\n          {\n            \"X\": 0.5192103385925293,\n            \"Y\": 0.6858779191970825\n          },\n          {\n            \"X\": 0.5192103385925293,\n            \"Y\": 0.6960343718528748\n          },\n          {\n            \"X\": 0.4911954998970032,\n            \"Y\": 0.6960343718528748\n          }\n        ]\n      },\n      \"Id\": \"fe07faaf-e3b0-4d68-9e58-983152fdab9f\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97881317138672,\n      \"Text\": \"separation\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07523469626903534,\n          \"Height\": 0.012257013469934464,\n          \"Left\": 0.5219250321388245,\n          \"Top\": 0.6858921647071838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5219250321388245,\n            \"Y\": 0.6858921647071838\n          },\n          {\n            \"X\": 0.5971596837043762,\n            \"Y\": 0.6858921647071838\n          },\n          {\n            \"X\": 0.5971596837043762,\n            \"Y\": 0.6981492042541504\n          },\n          {\n            \"X\": 0.5219250321388245,\n            \"Y\": 0.6981492042541504\n          }\n        ]\n      },\n      \"Id\": \"57d118fe-f784-47a0-a57f-06c6f0d0d90e\",\n      \"Page\": 1,\n      \"SearchKey\": \"separation\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98303985595703,\n      \"Text\": \"between\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06152680516242981,\n          \"Height\": 0.010119639337062836,\n          \"Left\": 0.5994815826416016,\n          \"Top\": 0.6858789920806885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5994815826416016,\n            \"Y\": 0.6858789920806885\n          },\n          {\n            \"X\": 0.6610084176063538,\n            \"Y\": 0.6858789920806885\n          },\n          {\n            \"X\": 0.6610084176063538,\n            \"Y\": 0.6959986686706543\n          },\n          {\n            \"X\": 0.5994815826416016,\n            \"Y\": 0.6959986686706543\n          }\n        ]\n      },\n      \"Id\": \"b1f4b7f8-3e88-4df2-82f4-d4ea93028612\",\n      \"Page\": 1,\n      \"SearchKey\": \"between\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97023010253906,\n      \"Text\": \"typographic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08383776247501373,\n          \"Height\": 0.01229088008403778,\n          \"Left\": 0.6627349853515625,\n          \"Top\": 0.6858126521110535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6627349853515625,\n            \"Y\": 0.6858126521110535\n          },\n          {\n            \"X\": 0.746572732925415,\n            \"Y\": 0.6858126521110535\n          },\n          {\n            \"X\": 0.746572732925415,\n            \"Y\": 0.6981034874916077\n          },\n          {\n            \"X\": 0.6627349853515625,\n            \"Y\": 0.6981034874916077\n          }\n        ]\n      },\n      \"Id\": \"f97d2cf8-d22c-450b-aeb8-f49e5f2d71b6\",\n      \"Page\": 1,\n      \"SearchKey\": \"typographic\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.57858276367188,\n      \"Text\": \"elements.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06995879858732224,\n          \"Height\": 0.010085991583764553,\n          \"Left\": 0.7486221790313721,\n          \"Top\": 0.6859711408615112\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7486221790313721,\n            \"Y\": 0.6859711408615112\n          },\n          {\n            \"X\": 0.8185809850692749,\n            \"Y\": 0.6859711408615112\n          },\n          {\n            \"X\": 0.8185809850692749,\n            \"Y\": 0.696057140827179\n          },\n          {\n            \"X\": 0.7486221790313721,\n            \"Y\": 0.696057140827179\n          }\n        ]\n      },\n      \"Id\": \"541d92d8-bb2e-427a-b32e-ae4d83addce7\",\n      \"Page\": 1,\n      \"SearchKey\": \"elements.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81814575195312,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01733480580151081,\n          \"Height\": 0.012495600618422031,\n          \"Left\": 0.08037164807319641,\n          \"Top\": 0.7237460017204285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08037164807319641,\n            \"Y\": 0.7237460017204285\n          },\n          {\n            \"X\": 0.09770645946264267,\n            \"Y\": 0.7237460017204285\n          },\n          {\n            \"X\": 0.09770645946264267,\n            \"Y\": 0.7362415790557861\n          },\n          {\n            \"X\": 0.08037164807319641,\n            \"Y\": 0.7362415790557861\n          }\n        ]\n      },\n      \"Id\": \"3935b7c6-8d93-46cc-8dda-7e80fa51e3d8\",\n      \"Page\": 1,\n      \"SearchKey\": \"A\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96690368652344,\n      \"Text\": \"final\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04504949972033501,\n          \"Height\": 0.012831429950892925,\n          \"Left\": 0.10130374133586884,\n          \"Top\": 0.7231423258781433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10130374133586884,\n            \"Y\": 0.7231423258781433\n          },\n          {\n            \"X\": 0.14635324478149414,\n            \"Y\": 0.7231423258781433\n          },\n          {\n            \"X\": 0.14635324478149414,\n            \"Y\": 0.7359737753868103\n          },\n          {\n            \"X\": 0.10130374133586884,\n            \"Y\": 0.7359737753868103\n          }\n        ]\n      },\n      \"Id\": \"b3f0a91e-70e2-470a-9e34-8e6b2cf724af\",\n      \"Page\": 1,\n      \"SearchKey\": \"final\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98324584960938,\n      \"Text\": \"section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07429806888103485,\n          \"Height\": 0.012720140628516674,\n          \"Left\": 0.15125788748264313,\n          \"Top\": 0.7235098481178284\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15125788748264313,\n            \"Y\": 0.7235098481178284\n          },\n          {\n            \"X\": 0.22555595636367798,\n            \"Y\": 0.7235098481178284\n          },\n          {\n            \"X\": 0.22555595636367798,\n            \"Y\": 0.7362300157546997\n          },\n          {\n            \"X\": 0.15125788748264313,\n            \"Y\": 0.7362300157546997\n          }\n        ]\n      },\n      \"Id\": \"2106b70f-2c10-4ef2-bdec-4ffca8eae026\",\n      \"Page\": 1,\n      \"SearchKey\": \"section\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.41004180908203,\n      \"Text\": \"In\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014079631306231022,\n          \"Height\": 0.009866679087281227,\n          \"Left\": 0.08102068305015564,\n          \"Top\": 0.7528684139251709\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08102068305015564,\n            \"Y\": 0.7528684139251709\n          },\n          {\n            \"X\": 0.09510031342506409,\n            \"Y\": 0.7528684139251709\n          },\n          {\n            \"X\": 0.09510031342506409,\n            \"Y\": 0.76273512840271\n          },\n          {\n            \"X\": 0.08102068305015564,\n            \"Y\": 0.76273512840271\n          }\n        ]\n      },\n      \"Id\": \"6326980a-ba0c-4475-bf21-ae7c51975512\",\n      \"Page\": 1,\n      \"SearchKey\": \"In\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93573760986328,\n      \"Text\": \"light\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03181593865156174,\n          \"Height\": 0.012350117787718773,\n          \"Left\": 0.09775552153587341,\n          \"Top\": 0.7525574564933777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09775552153587341,\n            \"Y\": 0.7525574564933777\n          },\n          {\n            \"X\": 0.12957146763801575,\n            \"Y\": 0.7525574564933777\n          },\n          {\n            \"X\": 0.12957146763801575,\n            \"Y\": 0.7649075388908386\n          },\n          {\n            \"X\": 0.09775552153587341,\n            \"Y\": 0.7649075388908386\n          }\n        ]\n      },\n      \"Id\": \"b7bd72e4-fcf6-494d-b2aa-0955bacc528e\",\n      \"Page\": 1,\n      \"SearchKey\": \"light\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96991729736328,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015521617606282234,\n          \"Height\": 0.01036258228123188,\n          \"Left\": 0.1313161998987198,\n          \"Top\": 0.7526012063026428\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1313161998987198,\n            \"Y\": 0.7526012063026428\n          },\n          {\n            \"X\": 0.14683783054351807,\n            \"Y\": 0.7526012063026428\n          },\n          {\n            \"X\": 0.14683783054351807,\n            \"Y\": 0.7629637718200684\n          },\n          {\n            \"X\": 0.1313161998987198,\n            \"Y\": 0.7629637718200684\n          }\n        ]\n      },\n      \"Id\": \"740292e0-d116-4919-b4d6-591ff2255975\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98990631103516,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026672082021832466,\n          \"Height\": 0.010163197293877602,\n          \"Left\": 0.1484912782907486,\n          \"Top\": 0.7527028322219849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1484912782907486,\n            \"Y\": 0.7527028322219849\n          },\n          {\n            \"X\": 0.1751633584499359,\n            \"Y\": 0.7527028322219849\n          },\n          {\n            \"X\": 0.1751633584499359,\n            \"Y\": 0.7628660202026367\n          },\n          {\n            \"X\": 0.1484912782907486,\n            \"Y\": 0.7628660202026367\n          }\n        ]\n      },\n      \"Id\": \"ed839e38-b32c-47db-96d6-71777a86c03f\",\n      \"Page\": 1,\n      \"SearchKey\": \"this\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.0925064086914,\n      \"Text\": \"variability,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0716993436217308,\n          \"Height\": 0.012195161543786526,\n          \"Left\": 0.1768103390932083,\n          \"Top\": 0.7526712417602539\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1768103390932083,\n            \"Y\": 0.7526712417602539\n          },\n          {\n            \"X\": 0.24850969016551971,\n            \"Y\": 0.7526712417602539\n          },\n          {\n            \"X\": 0.24850969016551971,\n            \"Y\": 0.7648664116859436\n          },\n          {\n            \"X\": 0.1768103390932083,\n            \"Y\": 0.7648664116859436\n          }\n        ]\n      },\n      \"Id\": \"94353f25-9f56-4057-b519-84620cbd887d\",\n      \"Page\": 1,\n      \"SearchKey\": \"variability,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90782165527344,\n      \"Text\": \"let's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029481062665581703,\n          \"Height\": 0.010138696059584618,\n          \"Left\": 0.2509542405605316,\n          \"Top\": 0.7526983022689819\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2509542405605316,\n            \"Y\": 0.7526983022689819\n          },\n          {\n            \"X\": 0.2804352939128876,\n            \"Y\": 0.7526983022689819\n          },\n          {\n            \"X\": 0.2804352939128876,\n            \"Y\": 0.7628369927406311\n          },\n          {\n            \"X\": 0.2509542405605316,\n            \"Y\": 0.7628369927406311\n          }\n        ]\n      },\n      \"Id\": \"a1506af9-ea3c-4ff2-9de3-70ee5ced4007\",\n      \"Page\": 1,\n      \"SearchKey\": \"let's\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95441436767578,\n      \"Text\": \"close\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03830641880631447,\n          \"Height\": 0.010221673175692558,\n          \"Left\": 0.2832382619380951,\n          \"Top\": 0.7526931166648865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2832382619380951,\n            \"Y\": 0.7526931166648865\n          },\n          {\n            \"X\": 0.32154467701911926,\n            \"Y\": 0.7526931166648865\n          },\n          {\n            \"X\": 0.32154467701911926,\n            \"Y\": 0.762914776802063\n          },\n          {\n            \"X\": 0.2832382619380951,\n            \"Y\": 0.762914776802063\n          }\n        ]\n      },\n      \"Id\": \"bac688f3-995e-404f-bc02-90c2301ef9aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"close\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99419403076172,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02440648339688778,\n          \"Height\": 0.009950853884220123,\n          \"Left\": 0.32376956939697266,\n          \"Top\": 0.7527267336845398\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32376956939697266,\n            \"Y\": 0.7527267336845398\n          },\n          {\n            \"X\": 0.3481760621070862,\n            \"Y\": 0.7527267336845398\n          },\n          {\n            \"X\": 0.3481760621070862,\n            \"Y\": 0.7626775503158569\n          },\n          {\n            \"X\": 0.32376956939697266,\n            \"Y\": 0.7626775503158569\n          }\n        ]\n      },\n      \"Id\": \"b57f7772-9e15-4c91-bb57-5148f4d69484\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9087905883789,\n      \"Text\": \"main\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03654634207487106,\n          \"Height\": 0.010136736556887627,\n          \"Left\": 0.35027778148651123,\n          \"Top\": 0.7526834607124329\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35027778148651123,\n            \"Y\": 0.7526834607124329\n          },\n          {\n            \"X\": 0.3868241310119629,\n            \"Y\": 0.7526834607124329\n          },\n          {\n            \"X\": 0.3868241310119629,\n            \"Y\": 0.7628202438354492\n          },\n          {\n            \"X\": 0.35027778148651123,\n            \"Y\": 0.7628202438354492\n          }\n        ]\n      },\n      \"Id\": \"3dd9bfee-d2a5-45f9-8ea9-162025ca6aa3\",\n      \"Page\": 1,\n      \"SearchKey\": \"main\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97576141357422,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054332196712493896,\n          \"Height\": 0.009965772740542889,\n          \"Left\": 0.3889924883842468,\n          \"Top\": 0.7529429197311401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3889924883842468,\n            \"Y\": 0.7529429197311401\n          },\n          {\n            \"X\": 0.4433246850967407,\n            \"Y\": 0.7529429197311401\n          },\n          {\n            \"X\": 0.4433246850967407,\n            \"Y\": 0.7629086971282959\n          },\n          {\n            \"X\": 0.3889924883842468,\n            \"Y\": 0.7629086971282959\n          }\n        ]\n      },\n      \"Id\": \"d3cd2230-1478-491c-89da-0937903949d9\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97987365722656,\n      \"Text\": \"here\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03374931216239929,\n          \"Height\": 0.010058550164103508,\n          \"Left\": 0.444949209690094,\n          \"Top\": 0.7527322173118591\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.444949209690094,\n            \"Y\": 0.7527322173118591\n          },\n          {\n            \"X\": 0.4786985218524933,\n            \"Y\": 0.7527322173118591\n          },\n          {\n            \"X\": 0.4786985218524933,\n            \"Y\": 0.7627907395362854\n          },\n          {\n            \"X\": 0.444949209690094,\n            \"Y\": 0.7627907395362854\n          }\n        ]\n      },\n      \"Id\": \"59419aaf-35c6-4101-a8b7-daa6c29f851e\",\n      \"Page\": 1,\n      \"SearchKey\": \"here\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99222564697266,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027986664324998856,\n          \"Height\": 0.010015754960477352,\n          \"Left\": 0.4812789559364319,\n          \"Top\": 0.7527748346328735\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4812789559364319,\n            \"Y\": 0.7527748346328735\n          },\n          {\n            \"X\": 0.509265661239624,\n            \"Y\": 0.7527748346328735\n          },\n          {\n            \"X\": 0.509265661239624,\n            \"Y\": 0.7627906203269958\n          },\n          {\n            \"X\": 0.4812789559364319,\n            \"Y\": 0.7627906203269958\n          }\n        ]\n      },\n      \"Id\": \"088fd3f0-3e9a-4752-8493-2e6e0073b416\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98950958251953,\n      \"Text\": \"proceed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05929994583129883,\n          \"Height\": 0.011960713192820549,\n          \"Left\": 0.5117191076278687,\n          \"Top\": 0.752975344657898\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5117191076278687,\n            \"Y\": 0.752975344657898\n          },\n          {\n            \"X\": 0.5710190534591675,\n            \"Y\": 0.752975344657898\n          },\n          {\n            \"X\": 0.5710190534591675,\n            \"Y\": 0.764936089515686\n          },\n          {\n            \"X\": 0.5117191076278687,\n            \"Y\": 0.764936089515686\n          }\n        ]\n      },\n      \"Id\": \"ce5a053a-2ab4-42d0-8e32-d00a573479e9\",\n      \"Page\": 1,\n      \"SearchKey\": \"proceed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98040771484375,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014820875599980354,\n          \"Height\": 0.00976518914103508,\n          \"Left\": 0.5732017755508423,\n          \"Top\": 0.7530997395515442\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5732017755508423,\n            \"Y\": 0.7530997395515442\n          },\n          {\n            \"X\": 0.5880227088928223,\n            \"Y\": 0.7530997395515442\n          },\n          {\n            \"X\": 0.5880227088928223,\n            \"Y\": 0.762864887714386\n          },\n          {\n            \"X\": 0.5732017755508423,\n            \"Y\": 0.762864887714386\n          }\n        ]\n      },\n      \"Id\": \"35631da0-a3f1-4b4d-9796-af35de54b182\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99516296386719,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02407231368124485,\n          \"Height\": 0.009977315552532673,\n          \"Left\": 0.5902258157730103,\n          \"Top\": 0.7527235746383667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5902258157730103,\n            \"Y\": 0.7527235746383667\n          },\n          {\n            \"X\": 0.6142981648445129,\n            \"Y\": 0.7527235746383667\n          },\n          {\n            \"X\": 0.6142981648445129,\n            \"Y\": 0.7627008557319641\n          },\n          {\n            \"X\": 0.5902258157730103,\n            \"Y\": 0.7627008557319641\n          }\n        ]\n      },\n      \"Id\": \"ebb0ac82-add7-460a-8384-328d360549fa\",\n      \"Page\": 1,\n      \"SearchKey\": \"the\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83021545410156,\n      \"Text\": \"footer.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045581232756376266,\n          \"Height\": 0.010326103307306767,\n          \"Left\": 0.6170870661735535,\n          \"Top\": 0.7526144981384277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6170870661735535,\n            \"Y\": 0.7526144981384277\n          },\n          {\n            \"X\": 0.6626682877540588,\n            \"Y\": 0.7526144981384277\n          },\n          {\n            \"X\": 0.6626682877540588,\n            \"Y\": 0.7629405856132507\n          },\n          {\n            \"X\": 0.6170870661735535,\n            \"Y\": 0.7629405856132507\n          }\n        ]\n      },\n      \"Id\": \"21747fbe-c3bf-4132-8ed2-e06c0e8a01ca\",\n      \"Page\": 1,\n      \"SearchKey\": \"footer.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95116424560547,\n      \"Text\": \"Not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02705918624997139,\n          \"Height\": 0.010222544893622398,\n          \"Left\": 0.6653915047645569,\n          \"Top\": 0.75262451171875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6653915047645569,\n            \"Y\": 0.75262451171875\n          },\n          {\n            \"X\": 0.6924506425857544,\n            \"Y\": 0.75262451171875\n          },\n          {\n            \"X\": 0.6924506425857544,\n            \"Y\": 0.7628470659255981\n          },\n          {\n            \"X\": 0.6653915047645569,\n            \"Y\": 0.7628470659255981\n          }\n        ]\n      },\n      \"Id\": \"7bb436c6-8b57-4e0a-ada7-cd9972c24028\",\n      \"Page\": 1,\n      \"SearchKey\": \"Not\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87098693847656,\n      \"Text\": \"every\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04018038138747215,\n          \"Height\": 0.010467665269970894,\n          \"Left\": 0.6943812370300293,\n          \"Top\": 0.7545549273490906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6943812370300293,\n            \"Y\": 0.7545549273490906\n          },\n          {\n            \"X\": 0.7345616221427917,\n            \"Y\": 0.7545549273490906\n          },\n          {\n            \"X\": 0.7345616221427917,\n            \"Y\": 0.7650225758552551\n          },\n          {\n            \"X\": 0.6943812370300293,\n            \"Y\": 0.7650225758552551\n          }\n        ]\n      },\n      \"Id\": \"ecc4ef51-7237-4910-b1e1-8ae0f0bdf1bf\",\n      \"Page\": 1,\n      \"SearchKey\": \"every\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98324584960938,\n      \"Text\": \"document\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07132226973772049,\n          \"Height\": 0.010505342856049538,\n          \"Left\": 0.7372759580612183,\n          \"Top\": 0.7526171207427979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7372759580612183,\n            \"Y\": 0.7526171207427979\n          },\n          {\n            \"X\": 0.8085982203483582,\n            \"Y\": 0.7526171207427979\n          },\n          {\n            \"X\": 0.8085982203483582,\n            \"Y\": 0.7631224393844604\n          },\n          {\n            \"X\": 0.7372759580612183,\n            \"Y\": 0.7631224393844604\n          }\n        ]\n      },\n      \"Id\": \"b712b71e-61b1-444e-9856-72aa8240a9d3\",\n      \"Page\": 1,\n      \"SearchKey\": \"document\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96023559570312,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024341559037566185,\n          \"Height\": 0.009958694688975811,\n          \"Left\": 0.8103122711181641,\n          \"Top\": 0.7526919841766357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8103122711181641,\n            \"Y\": 0.7526919841766357\n          },\n          {\n            \"X\": 0.8346538543701172,\n            \"Y\": 0.7526919841766357\n          },\n          {\n            \"X\": 0.8346538543701172,\n            \"Y\": 0.7626506686210632\n          },\n          {\n            \"X\": 0.8103122711181641,\n            \"Y\": 0.7626506686210632\n          }\n        ]\n      },\n      \"Id\": \"c95067bb-abdd-4f3f-8b64-bd113e01aefa\",\n      \"Page\": 1,\n      \"SearchKey\": \"will\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.978515625,\n      \"Text\": \"have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03596775233745575,\n          \"Height\": 0.010128459893167019,\n          \"Left\": 0.83698970079422,\n          \"Top\": 0.7526412010192871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.83698970079422,\n            \"Y\": 0.7526412010192871\n          },\n          {\n            \"X\": 0.8729574680328369,\n            \"Y\": 0.7526412010192871\n          },\n          {\n            \"X\": 0.8729574680328369,\n            \"Y\": 0.7627696990966797\n          },\n          {\n            \"X\": 0.83698970079422,\n            \"Y\": 0.7627696990966797\n          }\n        ]\n      },\n      \"Id\": \"e78fc81e-e30f-4237-8eb3-2bc8bbc31ebe\",\n      \"Page\": 1,\n      \"SearchKey\": \"have\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9740982055664,\n      \"Text\": \"both\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033277712762355804,\n          \"Height\": 0.010156010277569294,\n          \"Left\": 0.8750936985015869,\n          \"Top\": 0.7526124715805054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8750936985015869,\n            \"Y\": 0.7526124715805054\n          },\n          {\n            \"X\": 0.9083713889122009,\n            \"Y\": 0.7526124715805054\n          },\n          {\n            \"X\": 0.9083713889122009,\n            \"Y\": 0.7627685070037842\n          },\n          {\n            \"X\": 0.8750936985015869,\n            \"Y\": 0.7627685070037842\n          }\n        ]\n      },\n      \"Id\": \"55e243fc-1320-43fe-b0eb-420b229a5d51\",\n      \"Page\": 1,\n      \"SearchKey\": \"both\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71113586425781,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01060472335666418,\n          \"Height\": 0.008349020965397358,\n          \"Left\": 0.08064865320920944,\n          \"Top\": 0.7671467065811157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08064865320920944,\n            \"Y\": 0.7671467065811157\n          },\n          {\n            \"X\": 0.0912533700466156,\n            \"Y\": 0.7671467065811157\n          },\n          {\n            \"X\": 0.0912533700466156,\n            \"Y\": 0.775495707988739\n          },\n          {\n            \"X\": 0.08064865320920944,\n            \"Y\": 0.775495707988739\n          }\n        ]\n      },\n      \"Id\": \"52cfd6d3-b028-444c-ad1d-6a408eb8c3d6\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9745101928711,\n      \"Text\": \"header\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05176709592342377,\n          \"Height\": 0.010293979197740555,\n          \"Left\": 0.09328831732273102,\n          \"Top\": 0.7652496695518494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09328831732273102,\n            \"Y\": 0.7652496695518494\n          },\n          {\n            \"X\": 0.14505541324615479,\n            \"Y\": 0.7652496695518494\n          },\n          {\n            \"X\": 0.14505541324615479,\n            \"Y\": 0.7755436897277832\n          },\n          {\n            \"X\": 0.09328831732273102,\n            \"Y\": 0.7755436897277832\n          }\n        ]\n      },\n      \"Id\": \"9a81210c-f7ee-4c4f-a2c3-b317c2dded23\",\n      \"Page\": 1,\n      \"SearchKey\": \"header\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99093627929688,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027766063809394836,\n          \"Height\": 0.01029256358742714,\n          \"Left\": 0.14693066477775574,\n          \"Top\": 0.7652263641357422\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14693066477775574,\n            \"Y\": 0.7652263641357422\n          },\n          {\n            \"X\": 0.17469672858715057,\n            \"Y\": 0.7652263641357422\n          },\n          {\n            \"X\": 0.17469672858715057,\n            \"Y\": 0.7755188941955566\n          },\n          {\n            \"X\": 0.14693066477775574,\n            \"Y\": 0.7755188941955566\n          }\n        ]\n      },\n      \"Id\": \"110e7fdd-6b4a-4b79-902d-cdbb30a8dc63\",\n      \"Page\": 1,\n      \"SearchKey\": \"and\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85578918457031,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010914023965597153,\n          \"Height\": 0.008482417091727257,\n          \"Left\": 0.17775660753250122,\n          \"Top\": 0.7670791149139404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17775660753250122,\n            \"Y\": 0.7670791149139404\n          },\n          {\n            \"X\": 0.18867063522338867,\n            \"Y\": 0.7670791149139404\n          },\n          {\n            \"X\": 0.18867063522338867,\n            \"Y\": 0.775561511516571\n          },\n          {\n            \"X\": 0.17775660753250122,\n            \"Y\": 0.775561511516571\n          }\n        ]\n      },\n      \"Id\": \"3c19207a-a718-4765-a661-85d4ad5917b3\",\n      \"Page\": 1,\n      \"SearchKey\": \"a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60042572021484,\n      \"Text\": \"footer,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04501527175307274,\n          \"Height\": 0.01184136513620615,\n          \"Left\": 0.1910368651151657,\n          \"Top\": 0.7650338411331177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1910368651151657,\n            \"Y\": 0.7650338411331177\n          },\n          {\n            \"X\": 0.23605214059352875,\n            \"Y\": 0.7650338411331177\n          },\n          {\n            \"X\": 0.23605214059352875,\n            \"Y\": 0.7768751978874207\n          },\n          {\n            \"X\": 0.1910368651151657,\n            \"Y\": 0.7768751978874207\n          }\n        ]\n      },\n      \"Id\": \"dedffc0d-b261-46f8-857f-648599b80731\",\n      \"Page\": 1,\n      \"SearchKey\": \"footer,\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95938110351562,\n      \"Text\": \"but\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02458946779370308,\n          \"Height\": 0.010126718319952488,\n          \"Left\": 0.23868407309055328,\n          \"Top\": 0.7653445601463318\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23868407309055328,\n            \"Y\": 0.7653445601463318\n          },\n          {\n            \"X\": 0.26327353715896606,\n            \"Y\": 0.7653445601463318\n          },\n          {\n            \"X\": 0.26327353715896606,\n            \"Y\": 0.7754712700843811\n          },\n          {\n            \"X\": 0.23868407309055328,\n            \"Y\": 0.7754712700843811\n          }\n        ]\n      },\n      \"Id\": \"4cccaa26-1ad4-4434-8f4f-ead4ba33bb6e\",\n      \"Page\": 1,\n      \"SearchKey\": \"but\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9839096069336,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026781640946865082,\n          \"Height\": 0.010069222189486027,\n          \"Left\": 0.2651928961277008,\n          \"Top\": 0.765346884727478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2651928961277008,\n            \"Y\": 0.765346884727478\n          },\n          {\n            \"X\": 0.2919745147228241,\n            \"Y\": 0.765346884727478\n          },\n          {\n            \"X\": 0.2919745147228241,\n            \"Y\": 0.7754161357879639\n          },\n          {\n            \"X\": 0.2651928961277008,\n            \"Y\": 0.7754161357879639\n          }\n        ]\n      },\n      \"Id\": \"1d7e49cf-c3ce-4191-8ccf-0b0d1ce6b4a5\",\n      \"Page\": 1,\n      \"SearchKey\": \"this\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97282409667969,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052720218896865845,\n          \"Height\": 0.012456507422029972,\n          \"Left\": 0.29420211911201477,\n          \"Top\": 0.7651920318603516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29420211911201477,\n            \"Y\": 0.7651920318603516\n          },\n          {\n            \"X\": 0.3469223380088806,\n            \"Y\": 0.7651920318603516\n          },\n          {\n            \"X\": 0.3469223380088806,\n            \"Y\": 0.7776485681533813\n          },\n          {\n            \"X\": 0.29420211911201477,\n            \"Y\": 0.7776485681533813\n          }\n        ]\n      },\n      \"Id\": \"349c09db-aedd-4c54-9a08-a4f77fdd7c42\",\n      \"Page\": 1,\n      \"SearchKey\": \"sample\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97130584716797,\n      \"Text\": \"page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03724195063114166,\n          \"Height\": 0.01059474516659975,\n          \"Left\": 0.3493943214416504,\n          \"Top\": 0.7668938636779785\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493943214416504,\n            \"Y\": 0.7668938636779785\n          },\n          {\n            \"X\": 0.38663625717163086,\n            \"Y\": 0.7668938636779785\n          },\n          {\n            \"X\": 0.38663625717163086,\n            \"Y\": 0.777488648891449\n          },\n          {\n            \"X\": 0.3493943214416504,\n            \"Y\": 0.777488648891449\n          }\n        ]\n      },\n      \"Id\": \"4738c11b-1107-422c-8d67-287ecdbf0f3a\",\n      \"Page\": 1,\n      \"SearchKey\": \"page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9549331665039,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02457839995622635,\n          \"Height\": 0.010219386778771877,\n          \"Left\": 0.38874948024749756,\n          \"Top\": 0.7652094960212708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38874948024749756,\n            \"Y\": 0.7652094960212708\n          },\n          {\n            \"X\": 0.4133278727531433,\n            \"Y\": 0.7652094960212708\n          },\n          {\n            \"X\": 0.4133278727531433,\n            \"Y\": 0.7754288911819458\n          },\n          {\n            \"X\": 0.38874948024749756,\n            \"Y\": 0.7754288911819458\n          }\n        ]\n      },\n      \"Id\": \"fb73d726-dd02-4bf5-9a30-cffce45bc82f\",\n      \"Page\": 1,\n      \"SearchKey\": \"will\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86969757080078,\n      \"Text\": \"aim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027111560106277466,\n          \"Height\": 0.010083922185003757,\n          \"Left\": 0.4154059588909149,\n          \"Top\": 0.7653089761734009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4154059588909149,\n            \"Y\": 0.7653089761734009\n          },\n          {\n            \"X\": 0.4425175189971924,\n            \"Y\": 0.7653089761734009\n          },\n          {\n            \"X\": 0.4425175189971924,\n            \"Y\": 0.7753928899765015\n          },\n          {\n            \"X\": 0.4154059588909149,\n            \"Y\": 0.7753928899765015\n          }\n        ]\n      },\n      \"Id\": \"703fad9c-05cd-4916-b45a-36d3daaeda4c\",\n      \"Page\": 1,\n      \"SearchKey\": \"aim\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98056030273438,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014997805468738079,\n          \"Height\": 0.00991350319236517,\n          \"Left\": 0.445157915353775,\n          \"Top\": 0.7655967473983765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.445157915353775,\n            \"Y\": 0.7655967473983765\n          },\n          {\n            \"X\": 0.460155725479126,\n            \"Y\": 0.7655967473983765\n          },\n          {\n            \"X\": 0.460155725479126,\n            \"Y\": 0.7755102515220642\n          },\n          {\n            \"X\": 0.445157915353775,\n            \"Y\": 0.7755102515220642\n          }\n        ]\n      },\n      \"Id\": \"a70c4ce8-6d09-4e09-be17-83c1a752fb5f\",\n      \"Page\": 1,\n      \"SearchKey\": \"to\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81163024902344,\n      \"Text\": \"exercise\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06005033105611801,\n          \"Height\": 0.010377392172813416,\n          \"Left\": 0.4626566767692566,\n          \"Top\": 0.7652207016944885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626566767692566,\n            \"Y\": 0.7652207016944885\n          },\n          {\n            \"X\": 0.5227069854736328,\n            \"Y\": 0.7652207016944885\n          },\n          {\n            \"X\": 0.5227069854736328,\n            \"Y\": 0.7755981087684631\n          },\n          {\n            \"X\": 0.4626566767692566,\n            \"Y\": 0.7755981087684631\n          }\n        ]\n      },\n      \"Id\": \"12129e0b-0290-4cfe-aac3-3de8b3d84cac\",\n      \"Page\": 1,\n      \"SearchKey\": \"exercise\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98694610595703,\n      \"Text\": \"both\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032833706587553024,\n          \"Height\": 0.0103084621950984,\n          \"Left\": 0.5254794359207153,\n          \"Top\": 0.7651614546775818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5254794359207153,\n            \"Y\": 0.7651614546775818\n          },\n          {\n            \"X\": 0.5583131313323975,\n            \"Y\": 0.7651614546775818\n          },\n          {\n            \"X\": 0.5583131313323975,\n            \"Y\": 0.7754698991775513\n          },\n          {\n            \"X\": 0.5254794359207153,\n            \"Y\": 0.7754698991775513\n          }\n        ]\n      },\n      \"Id\": \"aa1eff56-358e-44d7-9990-618a57d9f481\",\n      \"Page\": 1,\n      \"SearchKey\": \"both\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 77.64591217041016,\n      \"Text\": \"functionalities.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10294497758150101,\n          \"Height\": 0.010558265261352062,\n          \"Left\": 0.5594530701637268,\n          \"Top\": 0.7650188207626343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5594530701637268,\n            \"Y\": 0.7650188207626343\n          },\n          {\n            \"X\": 0.6623980402946472,\n            \"Y\": 0.7650188207626343\n          },\n          {\n            \"X\": 0.6623980402946472,\n            \"Y\": 0.7755771279335022\n          },\n          {\n            \"X\": 0.5594530701637268,\n            \"Y\": 0.7755771279335022\n          }\n        ]\n      },\n      \"Id\": \"3d1c7fab-1b97-4748-afa0-e109742c7932\",\n      \"Page\": 1,\n      \"SearchKey\": \"functionalities.\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3212890625,\n      \"Text\": \"Left-aligned\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08415595442056656,\n          \"Height\": 0.01249298732727766,\n          \"Left\": 0.07994250953197479,\n          \"Top\": 0.9170111417770386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07994250953197479,\n            \"Y\": 0.9170111417770386\n          },\n          {\n            \"X\": 0.16409845650196075,\n            \"Y\": 0.9170111417770386\n          },\n          {\n            \"X\": 0.16409845650196075,\n            \"Y\": 0.9295040965080261\n          },\n          {\n            \"X\": 0.07994250953197479,\n            \"Y\": 0.9295040965080261\n          }\n        ]\n      },\n      \"Id\": \"dd013608-22d3-4d61-ac86-e42300a070aa\",\n      \"Page\": 1,\n      \"SearchKey\": \"Left-aligned\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84760284423828,\n      \"Text\": \"footer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04282579571008682,\n          \"Height\": 0.01041746512055397,\n          \"Left\": 0.16709914803504944,\n          \"Top\": 0.9166613817214966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16709914803504944,\n            \"Y\": 0.9166613817214966\n          },\n          {\n            \"X\": 0.20992495119571686,\n            \"Y\": 0.9166613817214966\n          },\n          {\n            \"X\": 0.20992495119571686,\n            \"Y\": 0.9270788431167603\n          },\n          {\n            \"X\": 0.16709914803504944,\n            \"Y\": 0.9270788431167603\n          }\n        ]\n      },\n      \"Id\": \"54f61372-393b-4673-92af-4b0b93a5f0b3\",\n      \"Page\": 1,\n      \"SearchKey\": \"footer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.03807067871094,\n      \"Text\": \"Multi-line\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06433674693107605,\n          \"Height\": 0.010416812263429165,\n          \"Left\": 0.43380242586135864,\n          \"Top\": 0.9167848825454712\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43380242586135864,\n            \"Y\": 0.9167848825454712\n          },\n          {\n            \"X\": 0.4981392025947571,\n            \"Y\": 0.9167848825454712\n          },\n          {\n            \"X\": 0.4981392025947571,\n            \"Y\": 0.9272016882896423\n          },\n          {\n            \"X\": 0.43380242586135864,\n            \"Y\": 0.9272016882896423\n          }\n        ]\n      },\n      \"Id\": \"0fde7ffc-7515-45be-9d1c-eb7c0d1cf9d8\",\n      \"Page\": 1,\n      \"SearchKey\": \"Multi-line\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93069458007812,\n      \"Text\": \"centered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06301948428153992,\n          \"Height\": 0.010274596512317657,\n          \"Left\": 0.5015407800674438,\n          \"Top\": 0.9168984293937683\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5015407800674438,\n            \"Y\": 0.9168984293937683\n          },\n          {\n            \"X\": 0.5645602941513062,\n            \"Y\": 0.9168984293937683\n          },\n          {\n            \"X\": 0.5645602941513062,\n            \"Y\": 0.9271730184555054\n          },\n          {\n            \"X\": 0.5015407800674438,\n            \"Y\": 0.9271730184555054\n          }\n        ]\n      },\n      \"Id\": \"25eab4e5-9f27-4ed2-90d5-5efcadc5665f\",\n      \"Page\": 1,\n      \"SearchKey\": \"centered\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8753662109375,\n      \"Text\": \"Page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03738719969987869,\n          \"Height\": 0.012639123015105724,\n          \"Left\": 0.8364420533180237,\n          \"Top\": 0.9166536331176758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8364420533180237,\n            \"Y\": 0.9166536331176758\n          },\n          {\n            \"X\": 0.8738292455673218,\n            \"Y\": 0.9166536331176758\n          },\n          {\n            \"X\": 0.8738292455673218,\n            \"Y\": 0.9292927384376526\n          },\n          {\n            \"X\": 0.8364420533180237,\n            \"Y\": 0.9292927384376526\n          }\n        ]\n      },\n      \"Id\": \"4b549ff7-6c28-420a-b3b1-08fc08157e91\",\n      \"Page\": 1,\n      \"SearchKey\": \"Page\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94462585449219,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01578027382493019,\n          \"Height\": 0.010347337462008,\n          \"Left\": 0.8901309967041016,\n          \"Top\": 0.9167428016662598\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8901309967041016,\n            \"Y\": 0.9167428016662598\n          },\n          {\n            \"X\": 0.9059113264083862,\n            \"Y\": 0.9167428016662598\n          },\n          {\n            \"X\": 0.9059113264083862,\n            \"Y\": 0.9270901679992676\n          },\n          {\n            \"X\": 0.8901309967041016,\n            \"Y\": 0.9270901679992676\n          }\n        ]\n      },\n      \"Id\": \"05af2b1c-a276-4915-8e65-fd8c2887b036\",\n      \"Page\": 1,\n      \"SearchKey\": \"of\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43485260009766,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007675671949982643,\n          \"Height\": 0.009548707865178585,\n          \"Left\": 0.9086238741874695,\n          \"Top\": 0.9174870252609253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9086238741874695,\n            \"Y\": 0.9174870252609253\n          },\n          {\n            \"X\": 0.9162995219230652,\n            \"Y\": 0.9174870252609253\n          },\n          {\n            \"X\": 0.9162995219230652,\n            \"Y\": 0.9270356893539429\n          },\n          {\n            \"X\": 0.9086238741874695,\n            \"Y\": 0.9270356893539429\n          }\n        ]\n      },\n      \"Id\": \"60971baf-bdcb-45a7-b1a8-723a5c9cd27b\",\n      \"Page\": 1,\n      \"SearchKey\": \"1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92058563232422,\n      \"Text\": \"footer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04259556159377098,\n          \"Height\": 0.010426612570881844,\n          \"Left\": 0.4498787522315979,\n          \"Top\": 0.9293389320373535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4498787522315979,\n            \"Y\": 0.9293389320373535\n          },\n          {\n            \"X\": 0.4924743175506592,\n            \"Y\": 0.9293389320373535\n          },\n          {\n            \"X\": 0.4924743175506592,\n            \"Y\": 0.9397655129432678\n          },\n          {\n            \"X\": 0.4498787522315979,\n            \"Y\": 0.9397655129432678\n          }\n        ]\n      },\n      \"Id\": \"f1aaa102-2294-4526-9990-d0ca8be90881\",\n      \"Page\": 1,\n      \"SearchKey\": \"footer\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96630859375,\n      \"Text\": \"content\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05382827669382095,\n          \"Height\": 0.010109077207744122,\n          \"Left\": 0.49486106634140015,\n          \"Top\": 0.9295600056648254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49486106634140015,\n            \"Y\": 0.9295600056648254\n          },\n          {\n            \"X\": 0.5486893057823181,\n            \"Y\": 0.9295600056648254\n          },\n          {\n            \"X\": 0.5486893057823181,\n            \"Y\": 0.9396690726280212\n          },\n          {\n            \"X\": 0.49486106634140015,\n            \"Y\": 0.9396690726280212\n          }\n        ]\n      },\n      \"Id\": \"8b3f9ee1-3910-4d31-b613-34dc6d1320fb\",\n      \"Page\": 1,\n      \"SearchKey\": \"content\"\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-js/test/integ/aws-sdk.test.ts",
    "content": "// Node Built-Ins:\nimport { promises as fs } from \"fs\";\n\n// External Dependencies:\nimport {\n  TextractClient,\n  AnalyzeDocumentCommand,\n  AnalyzeExpenseCommand,\n  DetectDocumentTextCommand,\n} from \"@aws-sdk/client-textract\";\n\n// TRP.js library:\nimport {\n  ApiAnalyzeExpenseResponse,\n  ApiResponsePage,\n  ApiResponsePages,\n  TextractDocument,\n  TextractExpense,\n} from \"../../src\";\n\nconst textract = new TextractClient({});\n\nconst runTestDocAssertions = (doc: TextractDocument, formsEnabled = true, tablesEnabled = true) => {\n  expect(doc.nPages).toStrictEqual(1);\n  const firstPage = doc.pageNumber(1);\n  expect(firstPage.nLines).toStrictEqual(31);\n  expect(firstPage.lineAtIndex(0).listWords().length).toStrictEqual(2);\n  expect([...firstPage.iterLines()].reduce((acc, next) => acc + next.listWords().length, 0)).toStrictEqual(\n    71,\n  );\n  expect(firstPage.form.nFields).toStrictEqual(formsEnabled ? 10 : 0);\n  expect(firstPage.nTables).toStrictEqual(tablesEnabled ? 1 : 0);\n};\n\ndescribe(\"TextractDocument\", () => {\n  it(\n    \"should work with AWS SDK AnalyzeDocument\",\n    async () => {\n      const textractResponse = await textract.send(\n        new AnalyzeDocumentCommand({\n          Document: {\n            Bytes: await fs.readFile(\"./test/data/default_document_4.png\"),\n          },\n          FeatureTypes: [\"FORMS\", \"TABLES\"],\n        }),\n      );\n      let doc = new TextractDocument(textractResponse as ApiResponsePage);\n      runTestDocAssertions(doc);\n      doc = new TextractDocument([textractResponse] as ApiResponsePages);\n      runTestDocAssertions(doc);\n    },\n    60 * 1000, // 60sec timeout\n  );\n\n  it(\n    \"should work with AWS SDK DetectDocumentText\",\n    async () => {\n      const textractResponse = await textract.send(\n        new DetectDocumentTextCommand({\n          Document: {\n            Bytes: await fs.readFile(\"./test/data/default_document_4.png\"),\n          },\n        }),\n      );\n      let doc = new TextractDocument(textractResponse as ApiResponsePage);\n      runTestDocAssertions(doc, false, false);\n      doc = new TextractDocument([textractResponse] as ApiResponsePages);\n      runTestDocAssertions(doc, false, false);\n    },\n    60 * 1000, // 60sec timeout\n  );\n\n  it(\n    \"should work with AWS SDK AnalyzeExpense\",\n    async () => {\n      const textractResponse = await textract.send(\n        new AnalyzeExpenseCommand({\n          Document: {\n            Bytes: await fs.readFile(\"./test/data/default_invoice_1.png\"),\n          },\n        }),\n      );\n      const expense = new TextractExpense(textractResponse as unknown as ApiAnalyzeExpenseResponse);\n      expect(expense.nDocs).toStrictEqual(1);\n      const expenseDoc = expense.listDocs()[0];\n\n      const testField = expenseDoc.getSummaryFieldByType(\"INVOICE_RECEIPT_ID\");\n      expect(testField).toBeTruthy();\n      if (!testField) return;\n      expect(testField.fieldType.text).toStrictEqual(\"INVOICE_RECEIPT_ID\");\n      expect(testField.value.text).toStrictEqual(\"123PQR456\");\n    },\n    60 * 1000, // 60sec timeout\n  );\n});\n"
  },
  {
    "path": "src-js/test/tsconfig.json",
    "content": "{\n  // We can't `include` the test/ folder in the top-level tsconfig.json (or it would get built into\n  // the library) - but we'd like IDEs like VSCode to be able to correctly recognise test files...\n  // So use this auxilliary tsconfig.\n  \"extends\": \"../tsconfig.json\",\n  \"compilerOptions\": {\n    \"types\": [\"jest\", \"node\"]\n  },\n  \"include\": [\".\"]\n}\n"
  },
  {
    "path": "src-js/test/unit/api-models.test.ts",
    "content": "import { ApiBlockType, isLayoutBlockType } from \"../../src/api-models\";\n\ndescribe(\"isLayoutBlockType\", () => {\n  it(\"should return true for layout block types\", () => {\n    expect(isLayoutBlockType(ApiBlockType.LayoutFigure)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutFooter)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutHeader)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutKeyValue)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutList)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutPageNumber)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutSectionHeader)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutTable)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutText)).toBe(true);\n    expect(isLayoutBlockType(ApiBlockType.LayoutTitle)).toBe(true);\n  });\n\n  it(\"should return false for non-layout block types\", () => {\n    expect(isLayoutBlockType(ApiBlockType.Cell)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Key)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.KeyValueSet)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Line)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.MergedCell)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Page)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Query)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.QueryResult)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.SelectionElement)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Signature)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Table)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.TableFooter)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.TableTitle)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Value)).toBe(false);\n    expect(isLayoutBlockType(ApiBlockType.Word)).toBe(false);\n  });\n\n  it(\"should return false for unknown layout block types\", () => {\n    expect(isLayoutBlockType(\"foobar\" as ApiBlockType)).toBe(false);\n    expect(isLayoutBlockType(true as unknown as ApiBlockType)).toBe(false);\n    expect(isLayoutBlockType(undefined as unknown as ApiBlockType)).toBe(false);\n    expect(isLayoutBlockType(1 as unknown as ApiBlockType)).toBe(false);\n    expect(isLayoutBlockType([ApiBlockType.LayoutFigure] as unknown as ApiBlockType)).toBe(false);\n  });\n});\n\ndescribe(\"api-models/index.ts\", () => {\n  it(\"should re-export expected public API properties\", () => {\n    expect(() => {\n      /* eslint-disable @typescript-eslint/no-unused-vars */\n      const {\n        // base:\n        ApiAnswerRelationship,\n        ApiBlockBase,\n        ApiBlockType,\n        ApiChildRelationship,\n        ApiComplexFeaturesRelationship,\n        ApiMergedCellRelationship,\n        ApiRelationship,\n        ApiRelationshipType,\n        ApiTableFooterRelationship,\n        ApiTableTitleRelationship,\n        ApiValueRelationship,\n        isLayoutBlockType,\n        // content:\n        ApiLineBlock,\n        ApiSelectionStatus,\n        ApiSelectionElementBlock,\n        ApiSignatureBlock,\n        ApiTextType,\n        ApiWordBlock,\n        // document:\n        ApiBlock,\n        ApiPageBlock,\n        // expense:\n        ApiExpenseComponentDetection,\n        ApiExpenseDocument,\n        ApiExpenseField,\n        ApiExpenseFieldType,\n        ApiExpenseLineItem,\n        ApiExpenseLineItemGroup,\n        // form:\n        ApiKeyBlock,\n        ApiKeyValueEntityType,\n        ApiKeyValueSetBlock,\n        ApiValueBlock,\n        // geometry:\n        ApiBoundingBox,\n        ApiPoint,\n        ApiGeometry,\n        // id:\n        ApiIdentityDocument,\n        ApiIdentityDocumentField,\n        ApiIdentityDocumentFieldType,\n        ApiIdentityDocumentFieldValueDetection,\n        // layout:\n        ApiLayoutBlock,\n        ApiLayoutFigureBlock,\n        ApiLayoutFooterBlock,\n        ApiLayoutHeaderBlock,\n        ApiLayoutKeyValueBlock,\n        ApiLayoutListBlock,\n        ApiLayoutPageNumberBlock,\n        ApiLayoutSectionHeaderBlock,\n        ApiLayoutTableBlock,\n        ApiLayoutTextBlock,\n        ApiLayoutTitleBlock,\n        // query:\n        ApiQueryBlock,\n        ApiQueryResultBlock,\n        // response:\n        ApiAnalyzeDocumentResponse,\n        ApiAnalyzeExpenseResponse,\n        ApiAnalyzeIdResponse,\n        ApiAsyncDocumentAnalysis,\n        ApiAsyncDocumentTextDetection,\n        /**\n         * @deprecated Backward compatibility for typo: Please use ApiAsyncJobOutputInProgress\n         */\n        ApiAsyncJobOuputInProgress,\n        ApiAsyncJobOutputFailed,\n        ApiAsyncJobOutputInProgress,\n        ApiAsyncJobOutputPartialSuccess,\n        ApiAsyncJobOuputSucceded,\n        ApiDetectDocumentTextResponse,\n        ApiDocumentMetadata,\n        ApiJobStatus,\n        ApiResponsePage,\n        ApiResponsePages,\n        ApiResponseWithContent,\n        ApiResultWarning,\n        // table:\n        ApiCellBlock,\n        ApiMergedCellBlock,\n        ApiTableBlock,\n        ApiTableCellEntityType,\n        ApiTableEntityType,\n        ApiTableFooterBlock,\n        ApiTableTitleBlock,\n        // eslint-disable-next-line @typescript-eslint/no-var-requires\n      } = require(\"../../src/api-models\");\n      /* eslint-enable @typescript-eslint/no-unused-vars */\n    }).not.toThrow();\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/base.test.ts",
    "content": "import { ApiBlockType, ApiRelationshipType } from \"../../src/api-models/base\";\nimport { ApiBlock } from \"../../src/api-models/document\";\nimport { ApiDocumentMetadata } from \"../../src/api-models/response\";\nimport {\n  AggregationMethod,\n  ApiBlockWrapper,\n  DocumentMetadata,\n  IBlockManager,\n  IDocBlocks,\n  PageHostedApiBlockWrapper,\n  _implIterRelatedBlocksByRelType,\n  _implListRelatedBlocksByRelType,\n  aggregate,\n  argMax,\n  doesFilterAllowBlockType,\n  escapeHtml,\n  getIterable,\n  indent,\n  modalAvg,\n  normalizeOptionalSet,\n  setIntersection,\n  setUnion,\n} from \"../../src/base\";\n\n// Precision limit for testing summary statistics\nconst PRECISION_DPS = 10;\n\ndescribe(\"modalAvg\", () => {\n  it(\"calculates the modal average of an array of numbers\", () => {\n    expect(modalAvg([1, 2, 3, 3, 4, 4, 4, 5, 5, 6])).toStrictEqual(4);\n    expect(modalAvg([0.9, 0.7, 0.8, 0.7, 0.6, 0.7, 0.6, 0.9])).toStrictEqual(0.7);\n  });\n\n  it(\"returns null for empty lists\", () => {\n    expect(modalAvg([])).toBeNull();\n  });\n\n  it(\"breaks ties by choosing one candidate\", () => {\n    const avg = modalAvg([4, 5, 4, 5, 4, 5, 1, 1]) as number;\n    expect(avg).not.toBeNull();\n    expect([4, 5].indexOf(avg)).toBeGreaterThanOrEqual(0);\n  });\n});\n\ndescribe(\"aggregate\", () => {\n  it(\"returns expected values for empty inputs\", () => {\n    expect(aggregate([], AggregationMethod.GeometricMean)).toBeNull();\n    expect(aggregate([], AggregationMethod.Max)).toBeNull();\n    expect(aggregate([], AggregationMethod.Mean)).toBeNull();\n    expect(aggregate([], AggregationMethod.Min)).toBeNull();\n    expect(aggregate([], AggregationMethod.Mode)).toBeNull();\n  });\n\n  it(\"supports geometric mean value aggregation of positive numbers\", () => {\n    expect(aggregate([1, 1, 8], AggregationMethod.GeometricMean)).toStrictEqual(2);\n    expect(\n      (aggregate([4, 1, 1 / 32], AggregationMethod.GeometricMean) as number).toFixed(PRECISION_DPS),\n    ).toStrictEqual((0.5).toFixed(PRECISION_DPS));\n  });\n\n  it(\"supports max value aggregation\", () => {\n    expect(aggregate([1, 0, 2, 10, 5, 8, 7], AggregationMethod.Max)).toStrictEqual(10);\n    expect(aggregate([-1000, 24, 24.0001], AggregationMethod.Max)).toStrictEqual(24.0001);\n    expect(aggregate([-1, -10, -4], AggregationMethod.Max)).toStrictEqual(-1);\n  });\n\n  it(\"supports mean value aggregation\", () => {\n    expect(aggregate([-5, -1, 0, 1, 5], AggregationMethod.Mean)).toStrictEqual(0);\n    expect(\n      (aggregate([3.6, 6.3, 2.4], AggregationMethod.Mean) as number).toFixed(PRECISION_DPS),\n    ).toStrictEqual((4.1).toFixed(PRECISION_DPS));\n    expect(\n      (aggregate([-3.6, -6.3, -2.4], AggregationMethod.Mean) as number).toFixed(PRECISION_DPS),\n    ).toStrictEqual((-4.1).toFixed(PRECISION_DPS));\n  });\n\n  it(\"supports min value aggregation\", () => {\n    expect(aggregate([1, 0, 2, 10, 5, 8, 7], AggregationMethod.Min)).toStrictEqual(0);\n    expect(aggregate([1000, -24, -24.0001], AggregationMethod.Min)).toStrictEqual(-24.0001);\n    expect(aggregate([-1, -10, -4], AggregationMethod.Min)).toStrictEqual(-10);\n  });\n\n  it(\"supports modal average aggregation\", () => {\n    expect(aggregate([2, 4, 4, 5, 7, 100, 100.001], AggregationMethod.Mode)).toStrictEqual(4);\n    expect(aggregate([-30, -2.3, -2.3, 0, 1], AggregationMethod.Mode)).toStrictEqual(-2.3);\n    expect(aggregate([0, 1, 1, 1, 2, 2, 2, 2], AggregationMethod.Mode)).toStrictEqual(2);\n  });\n\n  it(\"works with iterables\", () => {\n    expect(\n      aggregate(\n        getIterable(() => [1, 0, 2, 10, 5, 8, 7]),\n        AggregationMethod.Min,\n      ),\n    ).toStrictEqual(0);\n    expect(\n      aggregate(\n        getIterable(() => [2, 4, 4, 5, 7, 100, 100.001]),\n        AggregationMethod.Mode,\n      ),\n    ).toStrictEqual(4);\n    expect(\n      aggregate(\n        getIterable(() => [-5, -1, 0, 1, 5]),\n        AggregationMethod.Mean,\n      ),\n    ).toStrictEqual(0);\n  });\n\n  it(\"throws an error for unsupported aggregation types\", () => {\n    expect(() => aggregate([1, 2, 3], \"foobar\" as AggregationMethod)).toThrow(\"Unsupported aggMethod\");\n  });\n});\n\ndescribe(\"argMax\", () => {\n  it(\"returns expected values for empty inputs\", () => {\n    expect(argMax([])).toStrictEqual({ maxValue: -Infinity, maxIndex: -1 });\n  });\n\n  it(\"finds the first occurrence of the maximum number in the list\", () => {\n    expect(argMax([1, 5, 4, 2, 3])).toStrictEqual({ maxValue: 5, maxIndex: 1 });\n    expect(argMax([-3, 4.7, 20, 0, 20])).toStrictEqual({ maxValue: 20, maxIndex: 2 });\n    expect(argMax([Infinity, -Infinity, NaN, 0, Infinity])).toStrictEqual({\n      maxValue: Infinity,\n      maxIndex: 0,\n    });\n    expect(argMax([8, -6, NaN, 13, NaN, 3.14])).toStrictEqual({ maxValue: 13, maxIndex: 3 });\n  });\n});\n\ndescribe(\"normalizeOptionalSet\", () => {\n  it(\"returns null for null/undefined inputs\", () => {\n    expect(normalizeOptionalSet(undefined)).toBe(null);\n    expect(normalizeOptionalSet(null)).toBe(null);\n  });\n\n  it(\"returns the original object for set inputs\", () => {\n    const demoSet = new Set([1, 2, \"hi\", null]);\n    expect(normalizeOptionalSet(demoSet)).toBe(demoSet);\n  });\n\n  it(\"converts arrays to sets\", () => {\n    const demoList = [1, 2, \"hi\", null];\n    expect(normalizeOptionalSet(demoList)).toStrictEqual(new Set(demoList));\n  });\n\n  it(\"converts single values, even falsy ones, to sets\", () => {\n    const testObj = { cool: \"yes\" };\n    expect(normalizeOptionalSet(testObj)).toStrictEqual(new Set([testObj]));\n    expect(normalizeOptionalSet(false)).toStrictEqual(new Set([false]));\n    expect(normalizeOptionalSet(0)).toStrictEqual(new Set([0]));\n  });\n});\n\ndescribe(\"doesFilterAllowBlockType\", () => {\n  it(\"returns true for falsy and empty filter specs\", () => {\n    expect(doesFilterAllowBlockType(undefined, ApiBlockType.Word)).toBe(true);\n    expect(doesFilterAllowBlockType(null, ApiBlockType.LayoutFigure)).toBe(true);\n    expect(doesFilterAllowBlockType({}, ApiBlockType.LayoutFigure)).toBe(true);\n    expect(\n      doesFilterAllowBlockType({ includeBlockTypes: null, skipBlockTypes: null }, ApiBlockType.LayoutFigure),\n    ).toBe(true);\n    expect(\n      doesFilterAllowBlockType(\n        { includeBlockTypes: undefined, skipBlockTypes: undefined },\n        ApiBlockType.LayoutFigure,\n      ),\n    ).toBe(true);\n    expect(doesFilterAllowBlockType(false as unknown as null, ApiBlockType.Cell)).toBe(true);\n  });\n\n  it(\"returns false when blockType is skipped\", () => {\n    expect(\n      doesFilterAllowBlockType({ skipBlockTypes: [ApiBlockType.Line, ApiBlockType.Word] }, ApiBlockType.Word),\n    ).toBe(false);\n    expect(\n      doesFilterAllowBlockType(\n        { skipBlockTypes: new Set([ApiBlockType.Table, ApiBlockType.Word]) },\n        ApiBlockType.Word,\n      ),\n    ).toBe(false);\n    expect(\n      doesFilterAllowBlockType(\n        { skipBlockTypes: new Set([ApiBlockType.Table, ApiBlockType.Word]) },\n        ApiBlockType.Word,\n      ),\n    ).toBe(false);\n    expect(doesFilterAllowBlockType(null, ApiBlockType.LayoutFigure)).toBe(true);\n    expect(doesFilterAllowBlockType(false as unknown as null, ApiBlockType.Cell)).toBe(true);\n  });\n\n  it(\"requires blockType to be present in includeBlockTypes, when set\", () => {\n    expect(doesFilterAllowBlockType({ includeBlockTypes: [] }, ApiBlockType.Word)).toBe(false);\n    expect(doesFilterAllowBlockType({ includeBlockTypes: new Set() }, ApiBlockType.Word)).toBe(false);\n    expect(\n      doesFilterAllowBlockType(\n        { includeBlockTypes: [ApiBlockType.Line, ApiBlockType.Word] },\n        ApiBlockType.Word,\n      ),\n    ).toBe(true);\n    expect(\n      doesFilterAllowBlockType({ includeBlockTypes: new Set([ApiBlockType.Word]) }, ApiBlockType.Word),\n    ).toBe(true);\n  });\n\n  it(\"returns false if a blockType is both included and skipped\", () => {\n    expect(\n      doesFilterAllowBlockType(\n        { includeBlockTypes: [ApiBlockType.Word], skipBlockTypes: new Set([ApiBlockType.Word]) },\n        ApiBlockType.Word,\n      ),\n    ).toBe(false);\n    expect(\n      doesFilterAllowBlockType(\n        { includeBlockTypes: new Set([ApiBlockType.Word]), skipBlockTypes: [ApiBlockType.Word] },\n        ApiBlockType.Word,\n      ),\n    ).toBe(false);\n  });\n});\n\ndescribe(\"setIntersection\", () => {\n  it(\"returns a new empty set for empty inputs\", () => {\n    const [a, b] = [new Set(), new Set()];\n    const result = setIntersection(a, b);\n    expect(result).toStrictEqual(new Set());\n    expect(result).not.toBe(a);\n    expect(result).not.toBe(b);\n  });\n\n  it(\"intersects sets with diverse inputs\", () => {\n    const [a, b] = [new Set([null, undefined, 0, 1, false, true, \"\"]), new Set([0, true, \"\", {}, \"hi\"])];\n    const result = setIntersection(a, b);\n    expect(result).toStrictEqual(new Set([0, true, \"\"]));\n  });\n\n  it(\"intersects disjoint sets to empty\", () => {\n    const [a, b] = [new Set([null, undefined, 0, 1, false, true, \"\"]), new Set([{}, \"hi\"])];\n    const result = setIntersection(a, b);\n    expect(result).toStrictEqual(new Set());\n  });\n});\n\ndescribe(\"setUnion\", () => {\n  it(\"returns a new empty set for empty inputs\", () => {\n    const [a, b] = [new Set(), new Set()];\n    const result = setUnion(a, b);\n    expect(result).toStrictEqual(new Set());\n    expect(result).not.toBe(a);\n    expect(result).not.toBe(b);\n  });\n\n  it(\"unions sets with diverse inputs\", () => {\n    const [a, b] = [new Set([null, undefined, 0, 1, false, true, \"\"]), new Set([0, true, \"\", {}, \"hi\"])];\n    const result = setUnion(a, b);\n    expect(result).toStrictEqual(new Set([null, undefined, 0, 1, false, true, \"\", {}, \"hi\"]));\n  });\n\n  it(\"unions disjoint sets\", () => {\n    const [a, b] = [new Set([null, undefined, 0, 1, false, true, \"\"]), new Set([{}, \"hi\"])];\n    const result = setUnion(a, b);\n    expect(result).toStrictEqual(new Set([null, undefined, 0, 1, false, true, \"\", {}, \"hi\"]));\n  });\n});\n\ndescribe(\"documentMetadata\", () => {\n  it(\"fetches number of pages in document\", () => {\n    const docMetaDict = { Pages: 42 };\n    const docMeta = new DocumentMetadata(docMetaDict);\n    expect(docMeta.dict).toBe(docMetaDict);\n    expect(docMeta.nPages).toStrictEqual(docMetaDict.Pages);\n  });\n\n  it(\"defaults missing page count to 0\", () => {\n    expect(new DocumentMetadata({} as ApiDocumentMetadata).nPages).toStrictEqual(0);\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    expect(new DocumentMetadata(undefined as any).nPages).toStrictEqual(0);\n  });\n});\n\ndescribe(\"escapeHtml\", () => {\n  it(\"escapes only [&<>] by default for use in general text nodes\", () => {\n    expect(escapeHtml(`A \"fun\" example & a 'great' function >_< !?`)).toStrictEqual(\n      `A \"fun\" example &amp; a 'great' function &gt;_&lt; !?`,\n    );\n  });\n\n  it(`escapes [&<>'\"] when configured for use in node attributes`, () => {\n    expect(escapeHtml(`A \"fun\" example & a 'great' function >_< !?`, { forAttr: true })).toStrictEqual(\n      `A &quot;fun&quot; example &amp; a &#39;great&#39; function &gt;_&lt; !?`,\n    );\n  });\n});\n\ndescribe(\"indent\", () => {\n  it(\"indents text with one tab by default\", () => {\n    expect(indent(\"I'm a\\nbasic kind of\\nstring you know\")).toStrictEqual(\n      \"\\tI'm a\\n\\tbasic kind of\\n\\tstring you know\",\n    );\n  });\n\n  it(\"can customize level of indentation\", () => {\n    expect(indent(\"I'm a\\nbasic kind of\\nstring you know\", { count: 3 })).toStrictEqual(\n      \"\\t\\t\\tI'm a\\n\\t\\t\\tbasic kind of\\n\\t\\t\\tstring you know\",\n    );\n  });\n\n  it(\"can customize indentation prefix\", () => {\n    expect(indent(\"I'm a\\nbasic kind of\\nstring you know\", { character: \"dog\", count: 3 })).toStrictEqual(\n      \"dogdogdogI'm a\\ndogdogdogbasic kind of\\ndogdogdogstring you know\",\n    );\n  });\n\n  it(\"can omit first line indentation\", () => {\n    expect(indent(\"I'm a\\nbasic kind of\\nstring you know\", { skipFirstLine: true })).toStrictEqual(\n      \"I'm a\\n\\tbasic kind of\\n\\tstring you know\",\n    );\n  });\n\n  it(\"can indent empty lines (but doesn't by default)\", () => {\n    const rawStr = \"I'm a\\n\\nstring you know\";\n    expect(indent(rawStr)).toStrictEqual(\"\\tI'm a\\n\\n\\tstring you know\");\n    expect(indent(rawStr, { includeEmptyLines: true })).toStrictEqual(\"\\tI'm a\\n\\t\\n\\tstring you know\");\n  });\n});\n\ndescribe(\"_impl{Iter/List}RelatedBlocksByRelType\", () => {\n  // Most of these functions get covered by higher tests, but need to check missing block handling\n  it(\"provides configurable handling for missing blocks\", () => {\n    const baseBlock = {\n      Id: \"DUMMY-1\",\n      BlockType: ApiBlockType.Line,\n      Relationships: [{ Ids: [\"DOESNOTEXIST\"], Type: ApiRelationshipType.Child }],\n    };\n    const baseWrapper = new ApiBlockWrapper(baseBlock as unknown as ApiBlock);\n    const host = {\n      getBlockById: (blockId: string) => (blockId == baseBlock.Id ? baseBlock : undefined),\n    } as IDocBlocks;\n\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n\n    // By default, throw error:\n    const errIterable = _implIterRelatedBlocksByRelType(\n      ApiRelationshipType.Child,\n      undefined,\n      baseWrapper,\n      host,\n    );\n    expect(() => [...errIterable]).toThrow(/DOESNOTEXIST/);\n    expect(() =>\n      _implListRelatedBlocksByRelType(ApiRelationshipType.Child, undefined, baseWrapper, host),\n    ).toThrow(/DOESNOTEXIST/);\n\n    // Warn when requested:\n    expect([\n      ..._implIterRelatedBlocksByRelType(\n        ApiRelationshipType.Child,\n        { onMissingBlockId: \"warn\" },\n        baseWrapper,\n        host,\n      ),\n    ]).toStrictEqual([]);\n    expect(warn).toHaveBeenCalledTimes(1);\n    expect(warn.mock.calls[0][0]).toContain(\"DOESNOTEXIST\");\n    warn.mockClear();\n    expect(\n      _implListRelatedBlocksByRelType(\n        ApiRelationshipType.Child,\n        { onMissingBlockId: \"warn\" },\n        baseWrapper,\n        host,\n      ),\n    ).toStrictEqual([]);\n    expect(warn).toHaveBeenCalledTimes(1);\n    expect(warn.mock.calls[0][0]).toContain(\"DOESNOTEXIST\");\n    warn.mockClear();\n\n    // Silently omit when requested:\n    expect([\n      ..._implIterRelatedBlocksByRelType(\n        ApiRelationshipType.Child,\n        { onMissingBlockId: null },\n        baseWrapper,\n        host,\n      ),\n    ]).toStrictEqual([]);\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(\n      _implListRelatedBlocksByRelType(\n        ApiRelationshipType.Child,\n        { onMissingBlockId: null },\n        baseWrapper,\n        host,\n      ),\n    ).toStrictEqual([]);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n  });\n});\n\ndescribe(\"ApiBlockWrapper\", () => {\n  it(\"fetches related blocks filtered by one or more relationship types\", () => {\n    const wrapper = new ApiBlockWrapper({\n      BlockType: ApiBlockType.Line,\n      Id: \"DUMMY-1\",\n      Relationships: [\n        {\n          Ids: [\"DUMMY-2\", \"DUMMY-3\"],\n          Type: ApiRelationshipType.Answer,\n        },\n        {\n          Ids: [\"DUMMY-4\", \"DUMMY-5\", \"DUMMY-6\"],\n          Type: ApiRelationshipType.Child,\n        },\n        {\n          Ids: [\"DUMMY-7\", \"DUMMY-8\"],\n          Type: ApiRelationshipType.ComplexFeatures,\n        },\n        {\n          Ids: [\"DUMMY-9\", \"DUMMY-0\"],\n          Type: ApiRelationshipType.Child,\n        },\n      ],\n    } as unknown as ApiBlock);\n    expect(wrapper.childBlockIds).toStrictEqual([\"DUMMY-4\", \"DUMMY-5\", \"DUMMY-6\", \"DUMMY-9\", \"DUMMY-0\"]);\n    expect(wrapper.relatedBlockIdsByRelType(ApiRelationshipType.ComplexFeatures)).toStrictEqual([\n      \"DUMMY-7\",\n      \"DUMMY-8\",\n    ]);\n    expect(\n      wrapper.relatedBlockIdsByRelType([ApiRelationshipType.ComplexFeatures, ApiRelationshipType.Answer]),\n    ).toStrictEqual([\"DUMMY-2\", \"DUMMY-3\", \"DUMMY-7\", \"DUMMY-8\"]);\n    expect(wrapper.relatedBlockIdsByRelType(ApiRelationshipType.MergedCell)).toStrictEqual([]);\n  });\n});\n\ndescribe(\"PageHostedApiBlockWrapper\", () => {\n  // eslint-disable-next-line @typescript-eslint/no-explicit-any\n  const dummyItemMap: { [id: string]: any } = {\n    \"DUMMY-1\": { id: \"DUMMY-1\", blockType: ApiBlockType.Line },\n    \"DUMMY-2\": { id: \"DUMMY-2\", blockType: ApiBlockType.QueryResult },\n    \"DUMMY-3\": { id: \"DUMMY-3\", blockType: ApiBlockType.QueryResult },\n    \"DUMMY-4\": { id: \"DUMMY-4\", blockType: ApiBlockType.Word },\n    \"DUMMY-5\": { id: \"DUMMY-5\", blockType: ApiBlockType.Word },\n    \"DUMMY-6\": { id: \"DUMMY-6\", blockType: ApiBlockType.Table },\n    \"DUMMY-7\": { id: \"DUMMY-7\", blockType: ApiBlockType.Word },\n    \"DUMMY-8\": { id: \"DUMMY-8\", blockType: ApiBlockType.Word },\n    \"DUMMY-9\": { id: \"DUMMY-9\", blockType: ApiBlockType.Key },\n    \"DUMMY-0\": { id: \"DUMMY-0\", blockType: ApiBlockType.Word },\n  };\n  const dummyBlockMap: { [id: string]: ApiBlock } = Object.keys(dummyItemMap).reduce(\n    (acc, id) => {\n      acc[id] = {\n        Id: id,\n        BlockType: dummyItemMap[id].blockType,\n      } as ApiBlock;\n      return acc;\n    },\n    {} as { [id: string]: ApiBlock },\n  );\n  const dummyHost: IBlockManager = {\n    getItemByBlockId: (\n      blockId: string,\n      allowBlockTypes?: ApiBlockType | ApiBlockType[] | null | undefined,\n    ) => {\n      const item = dummyItemMap[blockId];\n      if (allowBlockTypes) {\n        if (Array.isArray(allowBlockTypes)) {\n          if (!allowBlockTypes.includes(item.blockType)) {\n            throw new Error(`Item for block ${blockId} has unexpected type ${item.blockType}`);\n          }\n        } else if (allowBlockTypes !== item.blockType) {\n          throw new Error(`Item for block ${blockId} has unexpected type ${item.blockType}`);\n        }\n      }\n      return item;\n    },\n    registerParsedItem: () => {},\n    getBlockById: (blockId: string) => dummyBlockMap[blockId],\n    listBlocks: () => [...Object.values(dummyBlockMap)],\n  };\n  const wrapper = new PageHostedApiBlockWrapper(\n    {\n      BlockType: ApiBlockType.Line,\n      Id: \"DUMMY-1\",\n      Relationships: [\n        {\n          Ids: [\"DUMMY-2\", \"DUMMY-3\"],\n          Type: ApiRelationshipType.Answer,\n        },\n        {\n          Ids: [\"DUMMY-4\", \"DUMMY-5\", \"DUMMY-6\"],\n          Type: ApiRelationshipType.Child,\n        },\n        {\n          Ids: [\"DUMMY-7\", \"DUMMY-8\"],\n          Type: ApiRelationshipType.ComplexFeatures,\n        },\n        {\n          Ids: [\"DUMMY-9\", \"DUMMY-0\"],\n          Type: ApiRelationshipType.Child,\n        },\n      ],\n    } as unknown as ApiBlock,\n    dummyHost,\n  );\n\n  it(\"lists and iterates related items by relationship type, ignoring others by default\", () => {\n    const expectedItems = [\n      dummyItemMap[\"DUMMY-4\"],\n      dummyItemMap[\"DUMMY-5\"],\n      dummyItemMap[\"DUMMY-6\"],\n      dummyItemMap[\"DUMMY-9\"],\n      dummyItemMap[\"DUMMY-0\"],\n    ];\n    expect(wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child)).toStrictEqual(expectedItems);\n    let ixItem = 0;\n    for (const child of wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child)) {\n      expect(child).toBe(expectedItems[ixItem]);\n      ++ixItem;\n    }\n    expect(ixItem).toStrictEqual(expectedItems.length);\n  });\n\n  it(\"lists and iterates related items by multiple relationship types\", () => {\n    const expectedItems = [\n      dummyItemMap[\"DUMMY-2\"],\n      dummyItemMap[\"DUMMY-3\"],\n      dummyItemMap[\"DUMMY-7\"],\n      dummyItemMap[\"DUMMY-8\"],\n    ];\n    expect(\n      wrapper.listRelatedItemsByRelType([ApiRelationshipType.Answer, ApiRelationshipType.ComplexFeatures]),\n    ).toStrictEqual(expectedItems);\n    let ixItem = 0;\n    for (const child of wrapper.iterRelatedItemsByRelType([\n      ApiRelationshipType.Answer,\n      ApiRelationshipType.ComplexFeatures,\n    ])) {\n      expect(child).toBe(expectedItems[ixItem]);\n      ++ixItem;\n    }\n    expect(ixItem).toStrictEqual(expectedItems.length);\n  });\n\n  it(\"filters related items by optional target block type(s)\", () => {\n    const expectedItems = [dummyItemMap[\"DUMMY-4\"], dummyItemMap[\"DUMMY-5\"], dummyItemMap[\"DUMMY-0\"]];\n    expect(\n      wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, { includeBlockTypes: ApiBlockType.Word }),\n    ).toStrictEqual(expectedItems);\n    expect(\n      wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes: [ApiBlockType.Word],\n      }),\n    ).toStrictEqual(expectedItems);\n    let ixItem = 0;\n    for (const child of wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: ApiBlockType.Word,\n    })) {\n      expect(child).toBe(expectedItems[ixItem]);\n      ++ixItem;\n    }\n    expect(ixItem).toStrictEqual(expectedItems.length);\n    ixItem = 0;\n    for (const child of wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: new Set([ApiBlockType.Word]),\n    })) {\n      expect(child).toBe(expectedItems[ixItem]);\n      ++ixItem;\n    }\n    expect(ixItem).toStrictEqual(expectedItems.length);\n  });\n\n  it(\"optionally raises errors for unexpected related item types\", () => {\n    // Creating iterators should not throw:\n    let iter = wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: ApiBlockType.Word,\n      onUnexpectedBlockType: \"error\",\n    });\n    // But running them should:\n    expect(() => [...iter]).toThrow(/DUMMY-6.*TABLE/);\n    iter = wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: new Set([ApiBlockType.Word]),\n      onUnexpectedBlockType: \"error\",\n    });\n    expect(() => [...iter]).toThrow(/DUMMY-6.*TABLE/);\n    expect(() =>\n      wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes: ApiBlockType.Word,\n        onUnexpectedBlockType: \"error\",\n      }),\n    ).toThrow(/DUMMY-6.*TABLE/);\n    expect(() =>\n      wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes: [ApiBlockType.Word],\n        onUnexpectedBlockType: \"error\",\n      }),\n    ).toThrow(/DUMMY-6.*TABLE/);\n  });\n\n  it(\"can ignore a subset of unexpected related item types\", () => {\n    let iter = wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: ApiBlockType.Word,\n      onUnexpectedBlockType: \"error\",\n      skipBlockTypes: [ApiBlockType.Table],\n    });\n    expect(() => [...iter]).toThrow(/DUMMY-9.*KEY/);\n    iter = wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: [ApiBlockType.Word],\n      onUnexpectedBlockType: \"error\",\n      skipBlockTypes: [ApiBlockType.Table],\n    });\n    expect(() => [...iter]).toThrow(/DUMMY-9.*KEY/);\n    expect(() =>\n      wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes: ApiBlockType.Word,\n        onUnexpectedBlockType: \"error\",\n        skipBlockTypes: [ApiBlockType.Table],\n      }),\n    ).toThrow(/DUMMY-9.*KEY/);\n    expect(() =>\n      wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n        includeBlockTypes: [ApiBlockType.Word],\n        onUnexpectedBlockType: \"error\",\n        skipBlockTypes: [ApiBlockType.Table],\n      }),\n    ).toThrow(/DUMMY-9.*KEY/);\n\n    // Exceptions should only be thrown for blocks in the relevant identity type(s):\n    iter = wrapper.iterRelatedItemsByRelType(\n      [ApiRelationshipType.Answer, ApiRelationshipType.ComplexFeatures],\n      {\n        includeBlockTypes: [ApiBlockType.QueryResult, ApiBlockType.Word],\n        onUnexpectedBlockType: \"error\",\n      },\n    );\n    expect(() => [...iter]).not.toThrow();\n    expect(() =>\n      wrapper.listRelatedItemsByRelType([ApiRelationshipType.Answer, ApiRelationshipType.ComplexFeatures], {\n        includeBlockTypes: [ApiBlockType.QueryResult, ApiBlockType.Word],\n        onUnexpectedBlockType: \"error\",\n      }),\n    ).not.toThrow();\n  });\n\n  it(\"optionally logs warnings for unexpected related item types\", () => {\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n\n    // We rely on the other tests for full coverage, so this one just explores a range of scenarios:\n\n    wrapper.listRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: ApiBlockType.Word,\n      onUnexpectedBlockType: \"warn\",\n    });\n    expect(warn).toHaveBeenCalledTimes(2);\n    expect(warn.mock.calls[0][0]).toMatch(/DUMMY-6.*TABLE/);\n    expect(warn.mock.calls[1][0]).toMatch(/DUMMY-9.*KEY/);\n    warn.mockClear();\n\n    const iter = wrapper.iterRelatedItemsByRelType(ApiRelationshipType.Child, {\n      includeBlockTypes: new Set([ApiBlockType.Word]),\n      onUnexpectedBlockType: \"warn\",\n      skipBlockTypes: [ApiBlockType.Key],\n    });\n    expect(warn).toHaveBeenCalledTimes(0);\n    [...iter];\n    expect(warn).toHaveBeenCalledTimes(1);\n    expect(warn.mock.calls[0][0]).toMatch(/DUMMY-6.*TABLE/);\n    warn.mockClear();\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/content.test.ts",
    "content": "import { ApiBlockType, ApiRelationshipType } from \"../../src/api-models/base\";\nimport {\n  ApiLineBlock,\n  ApiSelectionElementBlock,\n  ApiSelectionStatus,\n  ApiSignatureBlock,\n  ApiTextType,\n  ApiWordBlock,\n} from \"../../src/api-models/content\";\nimport { ApiBlock } from \"../../src/api-models/document\";\nimport { IApiBlockWrapper, IBlockManager, PageHostedApiBlockWrapper } from \"../../src/base\";\nimport {\n  LineGeneric,\n  SelectionElement,\n  Signature,\n  WithWords,\n  Word,\n  buildWithContent,\n} from \"../../src/content\";\n\nconst EXAMPLE_WORD_BLOCK: ApiWordBlock = {\n  BlockType: \"WORD\" as ApiBlockType.Word,\n  Confidence: 99.9,\n  Geometry: {\n    BoundingBox: {\n      Height: 0.055,\n      Left: 0.297,\n      Top: 0.04,\n      Width: 0.177,\n    },\n    Polygon: [\n      {\n        X: 0.297,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.095,\n      },\n      {\n        X: 0.297,\n        Y: 0.095,\n      },\n    ],\n  },\n  Id: \"8026a7ef-b929-4154-b805-1d21411b4863\",\n  Text: \"Employment\",\n  TextType: \"PRINTED\" as ApiTextType,\n};\n\nconst EXAMPLE_SELECT_BLOCK: ApiSelectionElementBlock = {\n  BlockType: \"SELECTION_ELEMENT\" as ApiBlockType.SelectionElement,\n  Confidence: 92,\n  Geometry: {\n    BoundingBox: {\n      Height: 0.055,\n      Left: 0.297,\n      Top: 0.04,\n      Width: 0.177,\n    },\n    Polygon: [\n      {\n        X: 0.297,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.095,\n      },\n      {\n        X: 0.297,\n        Y: 0.095,\n      },\n    ],\n  },\n  Id: \"e6f55d8a-eaed-467d-9235-92d869bb71df\",\n  SelectionStatus: \"SELECTED\" as ApiSelectionStatus,\n};\n\nconst EXAMPLE_SIG_BLOCK: ApiSignatureBlock = {\n  BlockType: \"SIGNATURE\" as ApiBlockType.Signature,\n  Confidence: 40.4,\n  Geometry: {\n    BoundingBox: {\n      Width: 0.155,\n      Height: 0.03,\n      Left: 0.126,\n      Top: 0.3,\n    },\n    Polygon: [\n      {\n        X: 0.126,\n        Y: 0.3,\n      },\n      {\n        X: 0.281,\n        Y: 0.3,\n      },\n      {\n        X: 0.281,\n        Y: 0.33,\n      },\n      {\n        X: 0.126,\n        Y: 0.33,\n      },\n    ],\n  },\n  Id: \"19baf15e-ab45-436c-af37-b930ef61e540\",\n};\n\nconst EXAMPLE_LINE_BLOCK: ApiLineBlock = {\n  BlockType: \"LINE\" as ApiBlockType.Line,\n  Confidence: 99.0,\n  Geometry: {\n    BoundingBox: {\n      Height: 0.055,\n      Left: 0.297,\n      Top: 0.04,\n      Width: 0.177,\n    },\n    Polygon: [\n      {\n        X: 0.297,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.095,\n      },\n      {\n        X: 0.297,\n        Y: 0.095,\n      },\n    ],\n  },\n  Id: \"bd0b8aed-b700-49af-9b93-6dbce6e0777c\",\n  Text: \"DIFFERENT FROM WORD TEXT\",\n  Relationships: [\n    {\n      Type: \"CHILD\" as ApiRelationshipType.Child,\n      Ids: [\n        \"8026a7ef-b929-4154-b805-1d21411b4863\", // EXAMPLE_WORD_BLOCK\n        \"e6f55d8a-eaed-467d-9235-92d869bb71df\", // EXAMPLE_SELECT_BLOCK\n      ],\n    },\n  ],\n};\n\n/**\n * Mock for something Page-like (IBlockManager) to support unit testing\n */\nclass DummyPage implements IBlockManager {\n  private _blocks: ApiBlock[];\n  // eslint-disable-next-line @typescript-eslint/no-explicit-any\n  private _items: any[];\n  // eslint-disable-next-line @typescript-eslint/no-explicit-any\n  constructor(blocks: ApiBlock[], items: any[] | undefined = undefined) {\n    this._blocks = blocks;\n    this._items = items || [];\n  }\n\n  get parentDocument() {\n    return this;\n  }\n\n  // eslint-disable-next-line @typescript-eslint/no-explicit-any\n  getItemByBlockId(id: string): any {\n    if (!this._items) {\n      throw new Error(\"Dummy page requires items in constructor to use getItemByBlockId\");\n    }\n    const result = this._items.find((item) => item.id === id);\n    if (!result) {\n      throw new Error(`Item ID ${id} missing from dummy page`);\n    }\n    return result;\n  }\n\n  getBlockById(id: string): ApiBlock | undefined {\n    return this._blocks.find((block) => block.Id === id);\n  }\n\n  listBlocks(): ApiBlock[] {\n    return this._blocks.slice();\n  }\n\n  registerParsedItem(blockId: string, item: IApiBlockWrapper<ApiBlock>): void {\n    if (this._blocks.indexOf(item.dict) < 0) {\n      this._blocks.push(item.dict);\n      this._items.push(item);\n    }\n  }\n}\n\ndescribe(\"Word\", () => {\n  it(\"correctly stores raw dict properties\", () => {\n    const word = new Word(EXAMPLE_WORD_BLOCK);\n    expect(word.blockType).toStrictEqual(ApiBlockType.Word);\n    expect(word.confidence).toStrictEqual(EXAMPLE_WORD_BLOCK.Confidence);\n    expect(word.dict).toBe(EXAMPLE_WORD_BLOCK);\n    expect(word.geometry).toBeTruthy();\n    expect(word.geometry.boundingBox).toBeTruthy();\n    expect(word.geometry.boundingBox.top).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Top);\n    expect(word.geometry.boundingBox.left).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Left);\n    expect(word.geometry.boundingBox.height).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Height);\n    expect(word.geometry.boundingBox.width).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Width);\n    expect(word.geometry.polygon).toBeTruthy();\n    expect(word.geometry.polygon.length).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon.length);\n    EXAMPLE_WORD_BLOCK.Geometry.Polygon.forEach((rawPoly, ixPoint) => {\n      expect(word.geometry.polygon[ixPoint].x).toStrictEqual(rawPoly.X);\n      expect(word.geometry.polygon[ixPoint].y).toStrictEqual(rawPoly.Y);\n    });\n    expect(word.id).toStrictEqual(EXAMPLE_WORD_BLOCK.Id);\n    expect(word.text).toStrictEqual(EXAMPLE_WORD_BLOCK.Text);\n    expect(word.textType).toStrictEqual(EXAMPLE_WORD_BLOCK.TextType);\n  });\n\n  it(\"renders plain word text for HTML and str\", () => {\n    const word = new Word(EXAMPLE_WORD_BLOCK);\n    expect(word.html()).toStrictEqual(word.text);\n    expect(word.str()).toStrictEqual(word.text);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const word = new Word(EXAMPLE_WORD_BLOCK);\n    expect(word.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(word.text);\n    expect(word.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(word.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(word.html({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(word.text);\n  });\n\n  it(\"escapes forbidden entities in word text for html()\", () => {\n    const customBlock = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK));\n    const word = new Word(customBlock);\n    customBlock.Text = `Text-with-<html>-&-'quote-marks\"`;\n    const customHtml = word.html();\n    expect(customHtml).toContain(\"&lt;\");\n    expect(customHtml).toContain(\"&gt;\");\n    expect(customHtml).not.toContain(\"<html>\");\n    expect(customHtml).toContain(\"-&amp;-\");\n    expect(customHtml).not.toContain(\"-&-\");\n    expect(customHtml).toContain(`'quote-marks\"`);\n  });\n\n  it(\"propagates confidence updates to underlying dict\", () => {\n    const wordBlockCopy: ApiWordBlock = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK));\n    const word = new Word(wordBlockCopy);\n    word.confidence = 13.4;\n    expect(word.confidence).toStrictEqual(13.4);\n    expect(wordBlockCopy.Confidence).toStrictEqual(13.4);\n  });\n\n  it(\"propagates textType updates to underlying dict\", () => {\n    const wordBlockCopy: ApiWordBlock = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK));\n    const word = new Word(wordBlockCopy);\n    word.textType = ApiTextType.Handwriting;\n    expect(word.textType).toStrictEqual(ApiTextType.Handwriting);\n    expect(wordBlockCopy.TextType).toStrictEqual(ApiTextType.Handwriting);\n  });\n});\n\ndescribe(\"SelectionElement\", () => {\n  it(\"correctly stores raw dict properties\", () => {\n    const selEl = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    expect(selEl.blockType).toStrictEqual(ApiBlockType.SelectionElement);\n    expect(selEl.confidence).toStrictEqual(EXAMPLE_SELECT_BLOCK.Confidence);\n    expect(selEl.dict).toBe(EXAMPLE_SELECT_BLOCK);\n    expect(selEl.geometry).toBeTruthy();\n    expect(selEl.geometry.boundingBox).toBeTruthy();\n    expect(selEl.geometry.boundingBox.top).toStrictEqual(EXAMPLE_SELECT_BLOCK.Geometry.BoundingBox.Top);\n    expect(selEl.geometry.boundingBox.left).toStrictEqual(EXAMPLE_SELECT_BLOCK.Geometry.BoundingBox.Left);\n    expect(selEl.geometry.boundingBox.height).toStrictEqual(EXAMPLE_SELECT_BLOCK.Geometry.BoundingBox.Height);\n    expect(selEl.geometry.boundingBox.width).toStrictEqual(EXAMPLE_SELECT_BLOCK.Geometry.BoundingBox.Width);\n    expect(selEl.geometry.polygon).toBeTruthy();\n    expect(selEl.geometry.polygon.length).toStrictEqual(EXAMPLE_SELECT_BLOCK.Geometry.Polygon.length);\n    EXAMPLE_SELECT_BLOCK.Geometry.Polygon.forEach((rawPoly, ixPoint) => {\n      expect(selEl.geometry.polygon[ixPoint].x).toStrictEqual(rawPoly.X);\n      expect(selEl.geometry.polygon[ixPoint].y).toStrictEqual(rawPoly.Y);\n    });\n    expect(selEl.id).toStrictEqual(EXAMPLE_SELECT_BLOCK.Id);\n    expect(selEl.selectionStatus).toStrictEqual(EXAMPLE_SELECT_BLOCK.SelectionStatus);\n    expect(selEl.text).toStrictEqual(EXAMPLE_SELECT_BLOCK.SelectionStatus);\n  });\n\n  it(\"reports whether selected as boolean property\", () => {\n    const selBlockCopy = JSON.parse(JSON.stringify(EXAMPLE_SELECT_BLOCK)) as ApiSelectionElementBlock;\n    const selEl = new SelectionElement(selBlockCopy);\n    expect(selEl.isSelected).toBe(true);\n    selBlockCopy.SelectionStatus = ApiSelectionStatus.NotSelected;\n    expect(selEl.isSelected).toBe(false);\n    selBlockCopy.SelectionStatus = \"BORK BORK\" as ApiSelectionStatus;\n    expect(() => selEl.isSelected).toThrow(/BORK BORK/);\n  });\n\n  it(\"renders semantic HTML\", () => {\n    const selEl = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    expect(selEl.html()).toStrictEqual('<input type=\"checkbox\" disabled checked />');\n    const selBlockCopy: ApiSelectionElementBlock = JSON.parse(JSON.stringify(EXAMPLE_SELECT_BLOCK));\n    selBlockCopy.SelectionStatus = ApiSelectionStatus.NotSelected;\n    const unselEl = new SelectionElement(selBlockCopy);\n    expect(unselEl.html()).toStrictEqual('<input type=\"checkbox\" disabled />');\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const selEl = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const elHtml = '<input type=\"checkbox\" disabled checked />';\n    expect(selEl.html({ includeBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(elHtml);\n    expect(selEl.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(selEl.html({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(\"\");\n    expect(selEl.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(elHtml);\n  });\n\n  it(\"uses selection status for str()\", () => {\n    const selEl = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    expect(selEl.str()).toStrictEqual(ApiSelectionStatus.Selected);\n  });\n\n  it(\"propagates confidence updates to underlying dict\", () => {\n    const selBlockCopy: ApiSelectionElementBlock = JSON.parse(JSON.stringify(EXAMPLE_SELECT_BLOCK));\n    const selEl = new SelectionElement(selBlockCopy);\n    selEl.confidence = 13;\n    expect(selEl.confidence).toStrictEqual(13);\n    expect(selBlockCopy.Confidence).toStrictEqual(13);\n  });\n\n  it(\"propagates selectionStatus updates to underlying dict\", () => {\n    const selBlockCopy: ApiSelectionElementBlock = JSON.parse(JSON.stringify(EXAMPLE_SELECT_BLOCK));\n    const selEl = new SelectionElement(selBlockCopy);\n    selEl.selectionStatus = ApiSelectionStatus.NotSelected;\n    expect(selEl.selectionStatus).toStrictEqual(ApiSelectionStatus.NotSelected);\n    expect(selBlockCopy.SelectionStatus).toStrictEqual(ApiSelectionStatus.NotSelected);\n  });\n});\n\ndescribe(\"Signature\", () => {\n  it(\"correctly stores raw dict properties\", () => {\n    const sigEl = new Signature(EXAMPLE_SIG_BLOCK);\n    expect(sigEl.blockType).toStrictEqual(ApiBlockType.Signature);\n    expect(sigEl.confidence).toStrictEqual(EXAMPLE_SIG_BLOCK.Confidence);\n    expect(sigEl.dict).toBe(EXAMPLE_SIG_BLOCK);\n    expect(sigEl.geometry).toBeTruthy();\n    expect(sigEl.geometry.boundingBox).toBeTruthy();\n    expect(sigEl.geometry.boundingBox.top).toStrictEqual(EXAMPLE_SIG_BLOCK.Geometry.BoundingBox.Top);\n    expect(sigEl.geometry.boundingBox.left).toStrictEqual(EXAMPLE_SIG_BLOCK.Geometry.BoundingBox.Left);\n    expect(sigEl.geometry.boundingBox.height).toStrictEqual(EXAMPLE_SIG_BLOCK.Geometry.BoundingBox.Height);\n    expect(sigEl.geometry.boundingBox.width).toStrictEqual(EXAMPLE_SIG_BLOCK.Geometry.BoundingBox.Width);\n    expect(sigEl.geometry.polygon).toBeTruthy();\n    expect(sigEl.geometry.polygon.length).toStrictEqual(EXAMPLE_SIG_BLOCK.Geometry.Polygon.length);\n    EXAMPLE_SIG_BLOCK.Geometry.Polygon.forEach((rawPoly, ixPoint) => {\n      expect(sigEl.geometry.polygon[ixPoint].x).toStrictEqual(rawPoly.X);\n      expect(sigEl.geometry.polygon[ixPoint].y).toStrictEqual(rawPoly.Y);\n    });\n    expect(sigEl.id).toStrictEqual(EXAMPLE_SIG_BLOCK.Id);\n  });\n\n  it(\"reports empty text\", () => {\n    const sigEl = new Signature(EXAMPLE_SIG_BLOCK);\n    expect(sigEl.text).toStrictEqual(\"\");\n  });\n\n  it(\"renders semantic HTML\", () => {\n    const sigEl = new Signature(EXAMPLE_SIG_BLOCK);\n    expect(sigEl.html()).toStrictEqual('<input class=\"signature\" type=\"text\" disabled value=\"[SIGNATURE]\"/>');\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const sigEl = new Signature(EXAMPLE_SIG_BLOCK);\n    const elHtml = '<input class=\"signature\" type=\"text\" disabled value=\"[SIGNATURE]\"/>';\n    expect(sigEl.html({ includeBlockTypes: [ApiBlockType.Signature] })).toStrictEqual(elHtml);\n    expect(sigEl.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(sigEl.html({ skipBlockTypes: [ApiBlockType.Signature] })).toStrictEqual(\"\");\n    expect(sigEl.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(elHtml);\n  });\n\n  it(\"renders an informational str() representation\", () => {\n    const sigEl = new Signature(EXAMPLE_SIG_BLOCK);\n    expect(sigEl.str()).toStrictEqual(\"/-------------\\\\\\n| [SIGNATURE] |\\n\\\\-------------/\");\n  });\n\n  it(\"propagates confidence updates to underlying dict\", () => {\n    const sigBlockCopy: ApiSignatureBlock = JSON.parse(JSON.stringify(EXAMPLE_SIG_BLOCK));\n    const sigEl = new Signature(sigBlockCopy);\n    sigEl.confidence = 13;\n    expect(sigEl.confidence).toStrictEqual(13);\n    expect(sigBlockCopy.Confidence).toStrictEqual(13);\n  });\n});\n\ndescribe(\"LineGeneric\", () => {\n  it(\"correctly stores raw dict properties\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.blockType).toStrictEqual(ApiBlockType.Line);\n    expect(line.confidence).toStrictEqual(EXAMPLE_LINE_BLOCK.Confidence);\n    expect(line.dict).toBe(EXAMPLE_LINE_BLOCK);\n    expect(line.geometry).toBeTruthy();\n    expect(line.geometry.boundingBox).toBeTruthy();\n    expect(line.geometry.boundingBox.top).toStrictEqual(EXAMPLE_LINE_BLOCK.Geometry.BoundingBox.Top);\n    expect(line.geometry.boundingBox.left).toStrictEqual(EXAMPLE_LINE_BLOCK.Geometry.BoundingBox.Left);\n    expect(line.geometry.boundingBox.height).toStrictEqual(EXAMPLE_LINE_BLOCK.Geometry.BoundingBox.Height);\n    expect(line.geometry.boundingBox.width).toStrictEqual(EXAMPLE_LINE_BLOCK.Geometry.BoundingBox.Width);\n    expect(line.geometry.polygon).toBeTruthy();\n    expect(line.geometry.polygon.length).toStrictEqual(EXAMPLE_LINE_BLOCK.Geometry.Polygon.length);\n    EXAMPLE_LINE_BLOCK.Geometry.Polygon.forEach((rawPoly, ixPoint) => {\n      expect(line.geometry.polygon[ixPoint].x).toStrictEqual(rawPoly.X);\n      expect(line.geometry.polygon[ixPoint].y).toStrictEqual(rawPoly.Y);\n    });\n    expect(line.id).toStrictEqual(EXAMPLE_LINE_BLOCK.Id);\n    expect(line.nWords).toStrictEqual(1);\n    expect(line.parentPage).toBe(dummyPage);\n    expect(line.text).toStrictEqual(EXAMPLE_LINE_BLOCK.Text);\n  });\n\n  it(\"renders plain line text for HTML\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.html()).toStrictEqual(line.text);\n  });\n\n  it(\"filters getText by content types (including own block)\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.nWords).toBeGreaterThan(0);\n    expect(line.getText({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(line.getText({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(line.dict.Text);\n    expect(line.getText({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(line.dict.Text);\n    expect(line.getText({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(line.dict.Text);\n    expect(line.getText({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(line.getText({ includeBlockTypes: [ApiBlockType.Line, ApiBlockType.Word] })).toStrictEqual(\n      line.dict.Text,\n    );\n\n    // Because LineGeneric.getText does not actually iterate children, errors and warnings don't get generated:\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(() => line.getText({ onUnexpectedBlockType: \"error\", skipBlockTypes: [] })).not.toThrow();\n    expect(line.getText({ onUnexpectedBlockType: \"warn\" })).toStrictEqual(line.dict.Text);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(line.text);\n    expect(line.html({ includeBlockTypes: [ApiBlockType.Signature] })).toStrictEqual(\"\");\n    expect(line.html({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(line.html({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(line.text);\n    expect(line.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(line.text);\n  });\n\n  it(\"escapes forbidden entities in line text for html()\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const customBlock = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK));\n    const line = new LineGeneric(customBlock, dummyPage);\n    customBlock.Text = `Text-with-<html>-&-'quote-marks\"`;\n    const customHtml = line.html();\n    expect(customHtml).toContain(\"&lt;\");\n    expect(customHtml).toContain(\"&gt;\");\n    expect(customHtml).not.toContain(\"<html>\");\n    expect(customHtml).toContain(\"-&amp;-\");\n    expect(customHtml).not.toContain(\"-&-\");\n    expect(customHtml).toContain(`'quote-marks\"`);\n  });\n\n  it(\"renders debug info for str()\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    const strRep = line.str();\n    expect(strRep.startsWith(\"Line\\n==========\\n\")).toBeTruthy();\n    expect(strRep).toContain(\n      line\n        .listWords()\n        .map((word) => word.text)\n        .join(\" \"),\n    );\n  });\n\n  it(\"throws error when accessing a missing WORD child)\", () => {\n    const lineBlockCopy: ApiLineBlock = JSON.parse(JSON.stringify(EXAMPLE_LINE_BLOCK));\n    lineBlockCopy.Relationships[0].Ids.push(\"DOESNOTEXIST\");\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [lineBlockCopy, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(lineBlockCopy, dummyPage);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n    expect(() => line.listWords()).toThrow(\"DOESNOTEXIST\");\n  });\n\n  it(\"propagates confidence updates to underlying dict\", () => {\n    const lineBlockCopy: ApiLineBlock = JSON.parse(JSON.stringify(EXAMPLE_LINE_BLOCK));\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [lineBlockCopy, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(lineBlockCopy, dummyPage);\n    line.confidence = 13.4;\n    expect(line.confidence).toStrictEqual(13.4);\n    expect(lineBlockCopy.Confidence).toStrictEqual(13.4);\n  });\n});\n\n/**\n * The mixins are tricky to test alone, so we use LineGeneric as a base\n */\ndescribe(\"WithWords (via LineGeneric)\", () => {\n  it(\"iterates, lists, and counts contained Words\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_SELECT_BLOCK, EXAMPLE_WORD_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    const wordList = line.listWords();\n    let nWords = 0;\n    for (const word of line.iterWords()) {\n      expect(word).toBe(wordList[nWords]);\n      ++nWords;\n    }\n    expect(nWords).toStrictEqual(line.nWords);\n    expect(nWords).toStrictEqual(wordList.length);\n  });\n\n  it(\"gracefully interprets missing LINE.Relationships field as an empty set\", () => {\n    const lineBlockCopy: ApiLineBlock = {\n      ...JSON.parse(JSON.stringify(EXAMPLE_LINE_BLOCK)),\n      Relationships: undefined,\n    };\n    const dummyPage = new DummyPage([lineBlockCopy], []);\n    const line = new LineGeneric(lineBlockCopy, dummyPage);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    expect(() => line.listWords()).not.toThrow();\n    expect(line.listWords().length).toStrictEqual(0);\n    expect(warn).toHaveBeenCalledTimes(0); // No warnings with default settings\n    warn.mockReset();\n  });\n\n  it(\"filters specific content block types configured at runtime\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.nWords).toBeGreaterThan(0);\n    expect(line.listWords({ includeBlockTypes: [ApiBlockType.Signature] }).length).toStrictEqual(0);\n    expect([...line.iterWords({ includeBlockTypes: [ApiBlockType.Signature] })].length).toStrictEqual(0);\n    const wordList = line.listWords({ includeBlockTypes: [ApiBlockType.Word] });\n    expect(wordList.length).toStrictEqual(1);\n    expect(wordList[0]).toBe(dummyWord);\n    const iterWords = [...line.iterWords({ includeBlockTypes: [ApiBlockType.Word] })];\n    expect(iterWords.length).toStrictEqual(1);\n    expect(iterWords[0]).toBe(dummyWord);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n  });\n\n  it(\"skips specific content block types configured at runtime\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.listWords({ skipBlockTypes: [ApiBlockType.Word] }).length).toStrictEqual(0);\n    expect([...line.iterWords({ skipBlockTypes: [ApiBlockType.Word] })].length).toStrictEqual(0);\n    const wordList = line.listWords({ skipBlockTypes: [ApiBlockType.Line] });\n    expect(wordList.length).toStrictEqual(1);\n    expect(wordList[0]).toBe(dummyWord);\n    expect(warn).toHaveBeenCalledTimes(0);\n    const iterWords = [\n      ...line.iterWords({ onUnexpectedBlockType: \"warn\", skipBlockTypes: [ApiBlockType.Line] }),\n    ];\n    expect(iterWords.length).toStrictEqual(1);\n    expect(iterWords[0]).toBe(dummyWord);\n    expect(warn).toHaveBeenCalledTimes(1);\n    warn.mockReset();\n  });\n\n  it(\"cannot request runtime blocks outside the mixin-configured scope\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listWords({\n      includeBlockTypes: [ApiBlockType.SelectionElement, ApiBlockType.Word],\n    });\n    expect(itemList.length).toStrictEqual(1);\n    expect(itemList[0]).toBe(dummyWord);\n    const iterItems = [\n      ...line.iterWords({ includeBlockTypes: [ApiBlockType.SelectionElement, ApiBlockType.Word] }),\n    ];\n    expect(iterItems.length).toStrictEqual(1);\n    expect(iterItems[0]).toBe(dummyWord);\n  });\n\n  it(\"cannot prevent ignoring mixin-configured skip block types at runtime\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n\n    class ErrLine extends WithWords(PageHostedApiBlockWrapper, {\n      onUnexpectedBlockType: \"error\",\n      otherExpectedChildTypes: [ApiBlockType.SelectionElement],\n    })<ApiLineBlock, DummyPage> {}\n    const line = new ErrLine(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(() => line.listWords({ skipBlockTypes: [] })).not.toThrow();\n    expect(() => [...line.iterWords({ skipBlockTypes: [] })]).not.toThrow();\n  });\n\n  it(\"can override mixin-configured unexpected block handling at run-time\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const line = new LineGeneric(EXAMPLE_LINE_BLOCK, dummyPage);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    expect(() => line.listWords()).not.toThrow();\n    expect(() => line.listWords({ onUnexpectedBlockType: \"error\" })).toThrow(/SELECTION_ELEMENT/);\n    expect(() => [...line.iterWords({ onUnexpectedBlockType: \"error\" })]).toThrow(/SELECTION_ELEMENT/);\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(line.listWords({ onUnexpectedBlockType: \"warn\" }).length).toStrictEqual(1);\n    expect([...line.iterWords({ onUnexpectedBlockType: \"warn\" })].length).toStrictEqual(1);\n    expect(warn).toHaveBeenCalledTimes(2);\n    warn.mockReset();\n  });\n\n  it(\"filters getText by content types (including own block)\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    // LineGeneric has specific getText behaviour, so we'll explicitly test the Mixin:\n    // class ErrLine extends WithWords(PageHostedApiBlockWrapper, { onUnexpectedBlockType: \"error\", otherExpectedChildTypes: [ApiBlockType.SelectionElement] })<ApiLineBlock, DummyPage> {}\n\n    class ItemWithWords extends WithWords(PageHostedApiBlockWrapper)<ApiLineBlock, DummyPage> {}\n    const itemWithWords = new ItemWithWords(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(itemWithWords.nWords).toBeGreaterThan(0);\n    expect(itemWithWords.getText({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(itemWithWords.getText({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(itemWithWords.getText({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(\n      itemWithWords.text,\n    );\n    expect(itemWithWords.getText({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(itemWithWords.getText({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(\n      itemWithWords.getText({ includeBlockTypes: [ApiBlockType.Line, ApiBlockType.Word] }),\n    ).toStrictEqual(itemWithWords.text);\n\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(() => itemWithWords.getText({ onUnexpectedBlockType: \"error\", skipBlockTypes: [] })).toThrow();\n    expect(() =>\n      itemWithWords.getText({\n        onUnexpectedBlockType: \"error\",\n        skipBlockTypes: [ApiBlockType.SelectionElement],\n      }),\n    ).not.toThrow();\n    expect(itemWithWords.getText({ onUnexpectedBlockType: \"warn\" })).toStrictEqual(itemWithWords.text);\n    expect(warn).toHaveBeenCalledTimes(1);\n    warn.mockReset();\n  });\n});\n\ndescribe(\"WithContent (via LineGeneric)\", () => {\n  it(\"iterates, lists, and counts contained content Words and SelectionElements by default\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithDefaultContent = buildWithContent<SelectionElement | Signature | Word>()(LineGeneric);\n    const line = new LineWithDefaultContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listContent();\n    let nItems = 0;\n    for (const item of line.iterContent()) {\n      expect(item).toBe(itemList[nItems]);\n      ++nItems;\n    }\n    expect(nItems).toStrictEqual(line.nContentItems);\n    expect(nItems).toStrictEqual(itemList.length);\n    expect(nItems).toStrictEqual(2);\n  });\n\n  it(\"can be explicitly instantiated with no content types, if you insist\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    // Setting `[]` should do this:\n    const LineWithNoContent = buildWithContent<never>({ contentTypes: [] })(LineGeneric);\n    const emptyLine = new LineWithNoContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const emptyItemList = emptyLine.listContent();\n    expect(emptyItemList.length).toStrictEqual(0);\n    expect([...emptyLine.iterContent()].length).toStrictEqual(0);\n\n    // ...But `undefined` should just return default content:\n    const LineWithDefaultContent = buildWithContent<SelectionElement | Signature | Word>({\n      contentTypes: undefined,\n    })(LineGeneric);\n    const line = new LineWithDefaultContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listContent();\n    expect(itemList.length).toStrictEqual(2);\n    expect([...line.iterContent()].length).toStrictEqual(2);\n  });\n\n  it(\"filters specific content block types configured by Mixin\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word],\n    })(LineGeneric);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listContent();\n    expect(itemList.length).toStrictEqual(1);\n    expect(itemList[0].dict).toBe(EXAMPLE_WORD_BLOCK);\n    let nItems = 0;\n    for (const item of line.iterContent()) {\n      expect(item).toBe(itemList[nItems]);\n      ++nItems;\n    }\n    expect(nItems).toStrictEqual(line.nContentItems);\n    expect(nItems).toStrictEqual(itemList.length);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n  });\n\n  it(\"warns on unexpected content types if configured by Mixin\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<SelectionElement>({\n      contentTypes: [ApiBlockType.SelectionElement],\n      onUnexpectedBlockType: \"warn\",\n    })(LineGeneric);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(warn).toHaveBeenCalledTimes(0);\n    const itemList = line.listContent();\n    expect(warn).toHaveBeenCalledTimes(1);\n    warn.mockClear();\n    expect(itemList.length).toStrictEqual(1);\n    expect(itemList[0].dict).toBe(EXAMPLE_SELECT_BLOCK);\n    let nItems = 0;\n    for (const item of line.iterContent()) {\n      expect(item).toBe(itemList[nItems]);\n      ++nItems;\n    }\n    expect(warn).toHaveBeenCalledTimes(1);\n    warn.mockClear();\n    expect(nItems).toStrictEqual(line.nContentItems);\n    expect(warn).toHaveBeenCalledTimes(1);\n    expect(nItems).toStrictEqual(itemList.length);\n    warn.mockReset();\n  });\n\n  it(\"suppresses warnings for known other block types configured by Mixin\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<SelectionElement>({\n      contentTypes: [ApiBlockType.SelectionElement],\n      onUnexpectedBlockType: \"warn\",\n      otherExpectedChildTypes: [ApiBlockType.Word],\n    })(LineGeneric);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(warn).toHaveBeenCalledTimes(0);\n    const itemList = line.listContent();\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(itemList.length).toStrictEqual(1);\n    expect(itemList[0].dict).toBe(EXAMPLE_SELECT_BLOCK);\n    let nItems = 0;\n    for (const item of line.iterContent()) {\n      expect(item).toBe(itemList[nItems]);\n      ++nItems;\n    }\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(nItems).toStrictEqual(line.nContentItems);\n    expect(warn).toHaveBeenCalledTimes(0);\n    expect(nItems).toStrictEqual(itemList.length);\n    warn.mockReset();\n  });\n\n  it(\"errors on unexpected content types if configured by Mixin\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word],\n      onUnexpectedBlockType: \"error\",\n    })(LineGeneric);\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(() => line.listContent()).toThrow(/SELECTION_ELEMENT/);\n  });\n\n  it(\"suppresses errors on other content types if configured by Mixin\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word],\n      onUnexpectedBlockType: \"error\",\n      otherExpectedChildTypes: [ApiBlockType.SelectionElement],\n    })(LineGeneric);\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(() => line.listContent()).not.toThrow();\n  });\n\n  it(\"filters specific content block types configured at runtime\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<SelectionElement | Signature | Word>()(LineGeneric);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listContent({ includeBlockTypes: [ApiBlockType.SelectionElement] });\n    expect(itemList.length).toStrictEqual(1);\n    expect(itemList[0].dict).toBe(EXAMPLE_SELECT_BLOCK);\n    let nItems = 0;\n    for (const item of line.iterContent({ includeBlockTypes: [ApiBlockType.SelectionElement] })) {\n      expect(item).toBe(itemList[nItems]);\n      ++nItems;\n    }\n    expect(nItems).toBeLessThan(line.nContentItems);\n    expect(nItems).toStrictEqual(itemList.length);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n  });\n\n  it(\"skips specific content block types configured at runtime\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<SelectionElement | Signature | Word>()(LineGeneric);\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listContent({ skipBlockTypes: [ApiBlockType.SelectionElement] });\n    expect(itemList.length).toStrictEqual(1);\n    expect(itemList[0].dict).toBe(EXAMPLE_WORD_BLOCK);\n    let nItems = 0;\n    for (const item of line.iterContent({ skipBlockTypes: [ApiBlockType.SelectionElement] })) {\n      expect(item).toBe(itemList[nItems]);\n      ++nItems;\n    }\n    expect(nItems).toBeLessThan(line.nContentItems);\n    expect(nItems).toStrictEqual(itemList.length);\n    expect(warn).toHaveBeenCalledTimes(0);\n    warn.mockReset();\n  });\n\n  it(\"cannot request runtime blocks outside the mixin-configured scope\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<Word>({ contentTypes: [ApiBlockType.Word] })(LineGeneric);\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    const itemList = line.listContent({ includeBlockTypes: [ApiBlockType.SelectionElement] });\n    expect(itemList.length).toStrictEqual(0);\n    expect(\n      [...line.iterContent({ includeBlockTypes: [ApiBlockType.SelectionElement] })].length,\n    ).toStrictEqual(0);\n  });\n\n  it(\"cannot prevent ignoring mixin-configured skip block types at runtime\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word],\n      onUnexpectedBlockType: \"error\",\n      otherExpectedChildTypes: [ApiBlockType.SelectionElement],\n    })(LineGeneric);\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(() => line.listContent({ skipBlockTypes: [] })).not.toThrow();\n    expect(() => [...line.iterContent({ skipBlockTypes: [] })]).not.toThrow();\n  });\n\n  it(\"can override mixin-configured unexpected block handling at run-time\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const LineWithContent = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word],\n    })(LineGeneric);\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(() => line.listContent()).not.toThrow();\n    expect(() => line.listContent({ onUnexpectedBlockType: \"error\" })).toThrow(/SELECTION_ELEMENT/);\n    expect(() => [...line.iterContent({ onUnexpectedBlockType: \"error\" })]).toThrow(/SELECTION_ELEMENT/);\n  });\n\n  it(\"filters getText by content types (including own block)\", () => {\n    const dummyWord = new Word(EXAMPLE_WORD_BLOCK);\n    const dummySel = new SelectionElement(EXAMPLE_SELECT_BLOCK);\n    const dummyPage = new DummyPage(\n      [EXAMPLE_LINE_BLOCK, EXAMPLE_WORD_BLOCK, EXAMPLE_SELECT_BLOCK],\n      [dummyWord, dummySel],\n    );\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    const LineWithContent = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word, ApiBlockType.SelectionElement],\n    })(LineGeneric);\n    const line = new LineWithContent(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(line.nContentItems).toStrictEqual(2);\n    expect(line.getText({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(line.getText({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(dummySel.text);\n    expect(line.getText({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(dummyWord.text);\n    expect(line.getText({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(line.getText({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(line.getText({ includeBlockTypes: [ApiBlockType.Line, ApiBlockType.Word] })).toStrictEqual(\n      dummyWord.text,\n    );\n    expect(warn).toHaveBeenCalledTimes(0);\n\n    const ContentWithWordsOnly = buildWithContent<Word>({\n      contentTypes: [ApiBlockType.Word],\n    })(LineGeneric);\n    const withStrictContent = new ContentWithWordsOnly(EXAMPLE_LINE_BLOCK, dummyPage);\n    expect(() => withStrictContent.getText({ onUnexpectedBlockType: \"error\" })).toThrow();\n    expect(() =>\n      withStrictContent.getText({\n        onUnexpectedBlockType: \"error\",\n        skipBlockTypes: [ApiBlockType.SelectionElement],\n      }),\n    ).not.toThrow();\n    expect(withStrictContent.getText({ onUnexpectedBlockType: \"warn\" })).toStrictEqual(\n      withStrictContent.text,\n    );\n    expect(warn).toHaveBeenCalledTimes(1);\n    warn.mockReset();\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/corpus/header-footer.test.ts",
    "content": "/**\n * Tests for evaluating the header and footer segmentation APIs against a corpus of example documents.\n *\n * You can use this template to run your own tests to tune the getLinesByLayoutArea model for your use case\n * as follows:\n *\n * 1. Extract your sample documents and put the Textract JSON result files in the test/data/corpus folder\n * 2. For each sample document, create a test spec (as shown below) defining what lines you expect to see\n *    pulled out as header and footer.\n * 3. Run the tests and note which files fail with the default configuration.\n * 4. Adjust the getLinesByLayoutArea({}) configuration params to optimize performance on your test set.\n *\n * The TRP's getLinesByLayoutArea functions are based on heuristics only and can't achieve perfect results on\n * every use case - so if you're struggling to tune parameters for your own documents, you may find it easier\n * to write custom logic!\n */\nimport { ApiResponsePages } from \"../../../src/api-models/response\";\nimport { HeaderFooterSegmentModelParams, Line, TextractDocument } from \"../../../src/document\";\n\ninterface HeaderFooterTest {\n  textractJsonFile: string;\n  pages: Array<{\n    pageNum: number;\n    headerLinesLike: string[];\n    footerLinesLike: string[];\n  }>;\n}\n\n// Define your tests in a .ts file in the corpus folder alongside your documents:\n// import { HEADER_FOOTER_TESTS } from \"../../data/corpus/header-footer-spec\";\n// OR here inline:\nconst HEADER_FOOTER_TESTS: HeaderFooterTest[] = [\n  // {\n  //   textractJsonFile: \"../../data/corpus/...textract.json\",\n  //   pages: [\n  //     {\n  //       // Specify whichever pages you want to test for each document:\n  //       pageNum: 1,\n  //       // Case-insensitive expected line texts for headers and footers:\n  //       headerLinesLike: [\"Header line 1\", \"header line 2?\"],\n  //       footerLinesLike: [\"Footer?\"],\n  //     },\n  //     {\n  //       // ...And etc...\n  //       pageNum: 5,\n  //       headerLinesLike: [],\n  //       footerLinesLike: [],\n  //     },\n  //   ],\n  // },\n];\n\nconst HEADER_CONFIG: HeaderFooterSegmentModelParams = {\n  // Config overrides here for headers if you want:\n  // maxMargin: 0.2,\n  // minGap: 1.5,\n};\nconst FOOTER_CONFIG: HeaderFooterSegmentModelParams = {\n  // Config overrides here for footers if you want:\n  // maxMargin: 0.2,\n  // minGap: 1.5,\n};\n\nexport interface PageHeaderFooterTestSpec {\n  pageNum: number;\n  headerLinesLike: string[];\n  footerLinesLike: string[];\n}\n\nfunction checkLinesAreLike(\n  lines: Line[],\n  expected: string[],\n  filename: string,\n  pageNum: number,\n  lineType: string,\n) {\n  const nExpected = expected.length;\n  if (lines.length !== nExpected) {\n    throw new Error(\n      `${filename} page ${pageNum} returned ${lines.length} ${lineType} LINEs. Expected ${nExpected}`,\n    );\n  }\n  const remainingExpectedLines = expected.map((e) => e.toLocaleLowerCase());\n  for (const line of lines) {\n    const lineTextLower = line.text.toLocaleLowerCase();\n    const foundTextIx = remainingExpectedLines.findIndex(\n      (expected) => lineTextLower.indexOf(expected.toLocaleLowerCase()) >= 0,\n    );\n    if (foundTextIx < 0) {\n      throw new Error(\n        `${filename} page ${pageNum} returned unexpected ${lineType} line '${line.text}' not matching spec`,\n      );\n    }\n    remainingExpectedLines.splice(foundTextIx, 1);\n  }\n  if (remainingExpectedLines.length) {\n    throw new Error(\n      `${filename} page ${pageNum} expected ${lineType} lines were not present:\\n${remainingExpectedLines}`,\n    );\n  }\n}\n\nfunction checkHeaderFooters(filename: string, headerFooterSpec: PageHeaderFooterTestSpec[]) {\n  // eslint-disable-next-line @typescript-eslint/no-var-requires\n  const textractJson: ApiResponsePages = require(filename);\n  const doc = new TextractDocument(textractJson);\n\n  for (const pageSpec of headerFooterSpec) {\n    expect(doc.nPages).toBeGreaterThanOrEqual(pageSpec.pageNum);\n    const page = doc.pageNumber(pageSpec.pageNum);\n\n    if (pageSpec.headerLinesLike) {\n      checkLinesAreLike(\n        page.getHeaderLines(HEADER_CONFIG),\n        pageSpec.headerLinesLike,\n        filename,\n        pageSpec.pageNum,\n        \"header\",\n      );\n    }\n\n    if (pageSpec.footerLinesLike) {\n      checkLinesAreLike(\n        page.getFooterLines(FOOTER_CONFIG),\n        pageSpec.footerLinesLike,\n        filename,\n        pageSpec.pageNum,\n        \"footer\",\n      );\n    }\n  }\n}\n\ndescribe(\"Header/footer corpus tests\", () => {\n  it(\"dummy test to prevent errors when corpus is empty\", () => undefined);\n\n  HEADER_FOOTER_TESTS.forEach((headerFooterTest, ixTest) => {\n    it(`reads test doc ${ixTest + 1} header and footer: ${headerFooterTest.textractJsonFile}`, () => {\n      checkHeaderFooters(headerFooterTest.textractJsonFile, headerFooterTest.pages);\n    });\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/corpus/reading-order.test.ts",
    "content": "/**\n * Tests for evaluating the '*inReadingOrder' APIs against a corpus of example documents.\n *\n * You can use this template to run your own tests to tune the getLineClustersInReadingOrder model for your\n * use case as follows:\n *\n * 1. Extract your sample documents and put the Textract JSON result files in the test/data/corpus folder\n * 2. For each sample document, create a test spec (as shown below) defining which paragraphs you expect to\n *    see by specifying text contained within the first LINE from each one. You may find the diagnostic\n *    script `npm run reading-order-diagnostic` helps by pulling out the text with the default settings.\n * 3. Run the tests. Note that files where your specified lines come out in the wrong order are marked as\n *    failures, while extra paragraph breaks (or missing paragraph breaks) are logged as warnings.\n * 4. Adjust the inReadingOrder({}) params to optimize performance on your test set, perhaps diving into the\n *    detailed outputs available in the test function below.\n *\n * The TRP's inReadingOrder functions are based on local heuristics only and can't achieve perfect results on\n * every use case - so if you're struggling to tune parameters for your own documents, you may find it easier\n * to write custom logic!\n */\nimport { ApiResponsePages } from \"../../../src/api-models/response\";\nimport { TextractDocument } from \"../../../src/document\";\n\ninterface ReadingOrderTest {\n  textractJsonFile: string;\n  sequence: string[][];\n}\n\n// Define your tests in a .ts file in the corpus folder alongside your documents:\n//import { READING_ORDER_TESTS } from \"../../data/corpus/reading-order-spec\";\n// OR here inline:\nconst READING_ORDER_TESTS: ReadingOrderTest[] = [\n  // {\n  //   textractJsonFile: \"../../data/corpus/...textract.json\",\n  //   sequence: [\n  //     // List of (case-insensitive) expected paragraph first line texts by page.\n  //     // The code will check if your text is *contained* within the LINE from Textract.\n  //     [\n  //       \"Friends, Romans,\", // Page 1 paragraph 1 expected first line includes\n  //       \"wondering why I\", // Pag 1 paragraph 2 expected first line includes\n  //     ],\n  //     [\n  //       \"can say for what reason\", // Page 2 paragraph 1 expected first line includes\n  //     ],\n  //   ],\n  // },\n];\n\ntype CheckReadingOrderResult = {\n  readingOrderPassed: boolean;\n  readingOrderFailedAfterPara: number | null;\n  extraParas: { after: number }[];\n  missingBreaks: { after: number }[];\n};\n\nfunction checkReadingOrder(filename: string, expectedDocReadingOrder: string[][]): CheckReadingOrderResult[] {\n  // eslint-disable-next-line @typescript-eslint/no-var-requires\n  const textractJson: ApiResponsePages = require(filename);\n  const doc = new TextractDocument(textractJson);\n\n  expectedDocReadingOrder = expectedDocReadingOrder.map((page) =>\n    page.map((para) => para.toLocaleLowerCase()),\n  );\n\n  return expectedDocReadingOrder.map((expectedPageReadingOrder, ixPage) => {\n    const readingOrder = doc.pageNumber(ixPage + 1).getLineClustersInReadingOrder(\n      // Can customize the parameters here if wanted:\n      {\n        // colHOverlapThresh: 0.8,\n        // colHMultilineUnionThresh: 0.7,\n        // paraVDistTol: 0.5,\n        // paraLineHeightTol: 0.5,\n        // paraIndentThresh: 1.0,\n      },\n    );\n    const pageParasLower = readingOrder.map((para) => para.map((line) => line.text.toLocaleLowerCase()));\n\n    let ixTestPara = 0;\n    const detectedOrder: number[] = [];\n    const extraParas: { after: number }[] = [];\n    const missingBreaks: { after: number }[] = [];\n    for (let ixPara = 0; ixPara < readingOrder.length; ++ixPara) {\n      const firstLine = pageParasLower[ixPara][0];\n      if (firstLine.indexOf(expectedPageReadingOrder[ixTestPara]) >= 0) {\n        detectedOrder.push(ixTestPara);\n        ++ixTestPara;\n      } else {\n        extraParas.push({ after: ixTestPara - 1 });\n      }\n      for (let ixLine = 1; ixLine < pageParasLower[ixPara].length; ++ixLine) {\n        const line = pageParasLower[ixPara][ixLine];\n        if (line.indexOf(expectedPageReadingOrder[ixTestPara]) >= 0) {\n          detectedOrder.push(ixTestPara);\n          missingBreaks.push({ after: ixTestPara - 1 });\n          ++ixTestPara;\n        }\n      }\n    }\n    const readingOrderPassed = ixTestPara === expectedPageReadingOrder.length;\n    return {\n      readingOrderPassed,\n      readingOrderFailedAfterPara: readingOrderPassed ? null : ixTestPara,\n      extraParas,\n      missingBreaks,\n    };\n  });\n}\n\nfunction expectReadingOrderSuccessful(result: CheckReadingOrderResult[]): void {\n  const pagesFailed = result\n    .map((pageResult, ixPage) =>\n      pageResult.readingOrderPassed\n        ? \"\"\n        : `Page ${ixPage + 1} after test para index ${pageResult.readingOrderFailedAfterPara}`,\n    )\n    .filter((m: string) => m);\n  const msg = pagesFailed.length\n    ? `Reading order mismatches on ${pagesFailed.length} pages:\\n - ${pagesFailed.join(\"\\n - \")}`\n    : \"All pages matched reading order spec\";\n  expect(msg).toStrictEqual(\"All pages matched reading order spec\");\n}\n\ndescribe(\"Reading order corpus tests\", () => {\n  READING_ORDER_TESTS.forEach((readingOrderTest, ixTest) => {\n    it(`reads test doc ${ixTest + 1} in correct order: ${readingOrderTest.textractJsonFile}`, () => {\n      const result = checkReadingOrder(readingOrderTest.textractJsonFile, readingOrderTest.sequence);\n\n      expectReadingOrderSuccessful(result);\n      const nMissingBreaks = result.reduce((acc, next) => acc + next.missingBreaks.length, 0);\n      const nExtraParas = result.reduce((acc, next) => acc + next.extraParas.length, 0);\n      if (nMissingBreaks > 0 || nExtraParas > 0) {\n        console.warn(\n          `Test doc ${\n            ixTest + 1\n          } got ${nMissingBreaks} missing para breaks and ${nExtraParas} extra paragraphs`,\n        );\n      }\n    });\n  });\n\n  it(\"segments paragraphs okay\", () => {\n    const docResults = READING_ORDER_TESTS.map((test) =>\n      checkReadingOrder(test.textractJsonFile, test.sequence),\n    );\n    const nMissingBreaks = docResults.reduce(\n      (acc, docResult) => acc + docResult.reduce((acc, next) => acc + next.missingBreaks.length, 0),\n      0,\n    );\n    const nExtraParas = docResults.reduce(\n      (acc, docResult) => acc + docResult.reduce((acc, next) => acc + next.extraParas.length, 0),\n      0,\n    );\n    if (nMissingBreaks > 0 || nExtraParas > 0) {\n      console.warn(`Overall got ${nMissingBreaks} missing para breaks and ${nExtraParas} extra paragraphs`);\n    }\n    // We don't actually have any expect()s here because appropriate thresholds will depend on your corpus.\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/document.test.ts",
    "content": "import { ApiBlockType } from \"../../src/api-models/base\";\nimport {\n  ApiAnalyzeDocumentResponse,\n  ApiAsyncDocumentAnalysis,\n  ApiAsyncJobOuputSucceded,\n  ApiResponsePage,\n  ApiResponsePages,\n} from \"../../src/api-models/response\";\nimport { Line, ReadingOrderLayoutMode, TextractDocument } from \"../../src/document\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testFailedJson: ApiResponsePage = require(\"../data/test-failed-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testInProgressJson: ApiResponsePage = require(\"../data/test-inprogress-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/test-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst finDocResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/financial-document-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst payStubResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/paystub-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst taxFormResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/form1005-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testMultiColumnJson: ApiResponsePage = require(\"../data/test-multicol-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testMultiColumnJson2: ApiResponsePage = require(\"../data/test-multicol-response-2.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testHeaderFooterJson: ApiResponsePage = require(\"../data/test-twocol-header-footer-response.json\");\n\nconst EXPECTED_MULTILINE_SEQ_LOWER = [\n  \"multi-column test document\",\n  \"a sample document with\",\n  \"this section has two columns\",\n  \"the left column contains\",\n  \"a horizontally separate right\",\n  \"this column has approximately\",\n  \"correct processing\",\n  \"a final footer\",\n];\n\nconst EXPECTED_MULTILINE_SEQ_2_LOWER = [\n  \"heading of the page\",\n  \"section id\",\n  \"[enter]\",\n  \"two columns, both alike\",\n  \"from ancient grudge break\",\n  \"a glooming peace\",\n  \"go hence with caution\",\n  \"for never was a heuristic\",\n  \"in reading order\",\n  \"the end\",\n  \"page 1\",\n];\n\n/**\n * We want to test a couple of examples for reading order, so will pull this out as a function\n */\nfunction checkMultiColReadingOrder(\n  docJson: ApiResponsePage | ApiResponsePages,\n  expectedSeq: string[],\n  pageNum = 1,\n) {\n  const doc = new TextractDocument(docJson);\n\n  const readingOrder = doc.pageNumber(pageNum).getLineClustersInReadingOrder();\n  // May want to switch to this instead to help debug if you see failures:\n  // const clustered = doc.pageNumber(pageNum)._getLineClustersByColumn();\n  // console.warn(clustered.map((col) => col.map((p) => `${p[0].text}... (${p.length} lines)`)));\n  // const readingOrder = [].concat(...clustered);\n\n  expect(readingOrder.length).not.toBeLessThan(expectedSeq.length);\n\n  const sortedLinesTextLower = ([] as Line[]).concat(...readingOrder).map((l) => l.text.toLocaleLowerCase());\n  expect(sortedLinesTextLower.length).not.toBeLessThan(expectedSeq.length);\n  let ixTest = 0;\n  sortedLinesTextLower.forEach((lineText) => {\n    const matchIx = expectedSeq.findIndex((seq) => lineText.indexOf(seq) >= 0);\n    if (matchIx >= 0) {\n      // We compare the strings first here to make failed assertions a bit more meaningful:\n      expect(expectedSeq[matchIx]).toStrictEqual(expectedSeq[ixTest]);\n      expect(matchIx).toStrictEqual(ixTest);\n      ++ixTest;\n    }\n  });\n  expect(ixTest).toStrictEqual(expectedSeq.length);\n}\n\ndescribe(\"Basic TextractDocument parsing\", () => {\n  it(\"should throw status error on failed async job JSONs (list)\", () => {\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n    expect(() => {\n      new TextractDocument([testFailedJson] as ApiResponsePages);\n    }).toThrowError(/status.*FAILED/);\n    warn.mockReset();\n  });\n\n  it(\"should throw status error on still-in-progress async job JSON (individual)\", () => {\n    expect(() => {\n      new TextractDocument(testInProgressJson);\n    }).toThrowError(/content/);\n  });\n\n  it(\"should parse the test JSON without error\", () => {\n    expect(() => {\n      new TextractDocument(testResponseJson);\n    }).not.toThrowError();\n  });\n\n  it(\"logs a warning when single-page input content has a NextToken\", () => {\n    // Load a new copy of the response JSON so we can edit it:\n    const testJson1: ApiAsyncDocumentAnalysis & ApiAsyncJobOuputSucceded = JSON.parse(\n      JSON.stringify(testResponseJson),\n    );\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n\n    // Single page response should not have a truthy NextToken:\n    delete testJson1.NextToken; // Should NOT log a warning\n    new TextractDocument(testJson1);\n    testJson1.NextToken = \"\"; // Should NOT log a warning\n    new TextractDocument(testJson1);\n    expect(warn).not.toHaveBeenCalledWith(expect.stringMatching(/NextToken/));\n    testJson1.NextToken = \"DUMMY\"; // Should log a warning\n    new TextractDocument(testJson1);\n    expect(warn).toHaveBeenCalledWith(expect.stringMatching(/NextToken/));\n    warn.mockReset();\n  });\n\n  it(\"logs a warning when multi-page input content has a NextToken in the final page\", () => {\n    // Load a new copies of the response JSON so we can edit them:\n    const testJson1: ApiAsyncDocumentAnalysis & ApiAsyncJobOuputSucceded = JSON.parse(\n      JSON.stringify(testResponseJson),\n    );\n    const testJson2: ApiAsyncDocumentAnalysis & ApiAsyncJobOuputSucceded = JSON.parse(\n      JSON.stringify(testResponseJson),\n    );\n\n    const warn = jest.spyOn(console, \"warn\").mockImplementation(() => {}); // eslint-disable-line @typescript-eslint/no-empty-function\n\n    testJson1.NextToken = \"DUMMY\";\n    delete testJson2.NextToken;\n    new TextractDocument([testJson1, testJson2]); // Should NOT log a warning\n    expect(warn).not.toHaveBeenCalledWith(expect.stringMatching(/NextToken/));\n\n    testJson2.NextToken = \"DUMMY\";\n    new TextractDocument([testJson1, testJson2]); // Should log a warning\n    expect(warn).toHaveBeenCalledWith(expect.stringMatching(/NextToken/));\n    warn.mockReset();\n  });\n\n  it(\"registers parsed items for all Blocks in the document\", () => {\n    const baseDoc = new TextractDocument(testResponseJson);\n    expect(() =>\n      testResponseJson.Blocks.forEach((block) => {\n        expect(baseDoc.getItemByBlockId(block.Id)).toBeTruthy();\n      }),\n    ).not.toThrow();\n\n    const finDoc = new TextractDocument(finDocResponseJson);\n    expect(() =>\n      finDocResponseJson.Blocks.forEach((block) => {\n        expect(finDoc.getItemByBlockId(block.Id)).toBeTruthy();\n      }),\n    ).not.toThrow();\n\n    const payStubDoc = new TextractDocument(payStubResponseJson);\n    expect(() =>\n      payStubResponseJson.Blocks.forEach((block) => {\n        expect(payStubDoc.getItemByBlockId(block.Id)).toBeTruthy();\n      }),\n    ).not.toThrow();\n\n    const taxDoc = new TextractDocument(taxFormResponseJson);\n    expect(() =>\n      taxFormResponseJson.Blocks.forEach((block) => {\n        expect(taxDoc.getItemByBlockId(block.Id)).toBeTruthy();\n      }),\n    ).not.toThrow();\n  });\n});\n\ndescribe(\"Page\", () => {\n  it(\"exposes and navigates through results from Textract Signature Detection\", () => {\n    const page = new TextractDocument(taxFormResponseJson).pageNumber(1);\n    expect(page.nSignatures).toStrictEqual(3);\n    const sigList = page.listSignatures();\n    let nSignatures = 0;\n    for (const sig of page.iterSignatures()) {\n      expect(sig.blockType).toStrictEqual(ApiBlockType.Signature);\n      expect(sig).toBe(sigList[nSignatures]);\n      ++nSignatures;\n    }\n    expect(sigList.length).toStrictEqual(nSignatures);\n    expect(nSignatures).toStrictEqual(page.nSignatures);\n  });\n\n  it(\"renders HTML representation for empty page with no content\", () => {\n    const page = new TextractDocument({\n      AnalyzeDocumentModelVersion: \"unknown\",\n      Blocks: [\n        {\n          BlockType: ApiBlockType.Page,\n          Geometry: {\n            BoundingBox: {\n              Height: 1,\n              Left: 0,\n              Top: 0,\n              Width: 1,\n            },\n            Polygon: [\n              { X: 0, Y: 0 },\n              { X: 1, Y: 0 },\n              { X: 1, Y: 1 },\n              { X: 0, Y: 1 },\n            ],\n          },\n          Id: \"dummy-page-id\",\n        },\n      ],\n      DocumentMetadata: {\n        Pages: 1,\n      },\n    }).pageNumber(1);\n    const pageHtml = page.html();\n    expect(pageHtml).toStrictEqual(page.layout.html());\n    expect(pageHtml).toStrictEqual(\"\");\n  });\n});\n\ndescribe(\"TextractDocument\", () => {\n  it(\"loads and navigates pages\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    expect(doc.nPages).toStrictEqual(1);\n    const iterPages = [...doc.iterPages()];\n    const pageList = doc.listPages();\n    const firstPage = doc.pageNumber(1);\n    expect(iterPages.length).toStrictEqual(doc.nPages);\n    expect(pageList.length).toStrictEqual(doc.nPages);\n    expect(firstPage).toBe(iterPages[0]);\n    for (let ix = 0; ix < doc.nPages; ++ix) {\n      expect(iterPages[ix]).toBe(pageList[ix]);\n    }\n\n    expect(firstPage.blockType).toStrictEqual(ApiBlockType.Page);\n    expect(firstPage.parentDocument).toBe(doc);\n    expect(firstPage.geometry.parentObject).toBe(firstPage);\n  });\n\n  it(\"throws errors on out-of-bounds pages\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    expect(() => doc.pageNumber(0)).toThrow(/must be between 1 and/);\n    expect(() => doc.pageNumber(doc.nPages + 1)).toThrow(/must be between 1 and/);\n  });\n\n  it(\"loads and navigates lines\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const firstPage = doc.pageNumber(1);\n    expect(firstPage.nLines).toStrictEqual(31);\n\n    const iterLines = [...firstPage.iterLines()];\n    const lineList = firstPage.listLines();\n    const firstLine = firstPage.lineAtIndex(0);\n    expect(iterLines.length).toStrictEqual(firstPage.nLines);\n    expect(lineList.length).toStrictEqual(firstPage.nLines);\n    expect(firstLine).toBe(iterLines[0]);\n    for (let ix = 0; ix < firstPage.nLines; ++ix) {\n      expect(iterLines[ix]).toBe(lineList[ix]);\n    }\n\n    expect(firstLine.blockType).toStrictEqual(ApiBlockType.Line);\n    expect(firstLine.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(firstLine.confidence).toBeLessThanOrEqual(100);\n    expect(firstLine.parentPage).toBe(firstPage);\n    expect(firstLine.geometry.parentObject).toBe(firstLine);\n    expect(firstLine.text).toMatch(\"Employment Application\");\n  });\n\n  it(\"throws errors on out-of-bounds lines\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    expect(() => page.lineAtIndex(-1)).toThrow(/Line index/);\n    expect(() => page.lineAtIndex(page.nLines)).toThrow(/Line index/);\n  });\n\n  it(\"loads and navigates line words\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const firstPage = doc.pageNumber(1);\n    const firstLine = firstPage.lineAtIndex(0);\n    expect(firstLine.nWords).toStrictEqual(2);\n\n    const iterWords = [...firstLine.iterWords()];\n    const wordList = firstLine.listWords();\n    const firstWord = firstLine.wordAtIndex(0);\n    expect(iterWords.length).toStrictEqual(firstLine.nWords);\n    expect(wordList.length).toStrictEqual(firstLine.nWords);\n    expect(firstWord).toBe(iterWords[0]);\n    for (let ix = 0; ix < firstLine.nWords; ++ix) {\n      expect(iterWords[ix]).toBe(wordList[ix]);\n    }\n\n    // (no parent prop on Word)\n    expect(firstWord.blockType).toStrictEqual(ApiBlockType.Word);\n    expect(firstWord.geometry.parentObject).toBe(firstWord);\n    expect(firstPage.listLines().reduce((acc, next) => acc + next.listWords().length, 0)).toStrictEqual(71);\n    expect(firstWord.text).toMatch(\"Employment\");\n    expect(firstWord.str()).toStrictEqual(firstWord.text);\n  });\n\n  it(\"throws errors on out-of-bounds line words\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const line = page.lineAtIndex(0);\n    expect(() => line.wordAtIndex(-1)).toThrow(/Word index/);\n    expect(() => line.wordAtIndex(line.nWords)).toThrow(/Word index/);\n  });\n\n  it(\"loads page, line and word bounding boxes\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const line = page.lineAtIndex(1);\n    const word = line.wordAtIndex(0);\n\n    expect(word.geometry.boundingBox.parentGeometry?.parentObject).toBe(word);\n    expect(line.geometry.boundingBox.parentGeometry?.parentObject?.parentPage).toBe(page);\n\n    expect(page.geometry.boundingBox.top).toBeLessThan(line.geometry.boundingBox.top);\n    expect(page.geometry.boundingBox.bottom).toBeGreaterThan(line.geometry.boundingBox.bottom);\n    expect(page.geometry.boundingBox.left).toBeLessThan(line.geometry.boundingBox.left);\n    expect(page.geometry.boundingBox.right).toBeGreaterThan(line.geometry.boundingBox.right);\n\n    expect(line.geometry.boundingBox.top).toBeLessThanOrEqual(word.geometry.boundingBox.top);\n    expect(line.geometry.boundingBox.bottom).toBeGreaterThanOrEqual(word.geometry.boundingBox.bottom);\n    expect(line.geometry.boundingBox.left.toFixed(5)).toStrictEqual(\n      word.geometry.boundingBox.left.toFixed(5),\n    );\n    expect(line.geometry.boundingBox.right).toBeGreaterThan(word.geometry.boundingBox.right);\n  });\n\n  it(\"exposes raw dicts with traversal up and down the tree\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    // Doc to LINE and back again:\n    expect(page.lineAtIndex(0).parentPage.parentDocument.dict).toBe(doc.dict);\n    // Word to BBox/Polygon and back again:\n    const aWord = doc.pageNumber(1).lineAtIndex(0).wordAtIndex(0);\n    expect(aWord.geometry.boundingBox.parentGeometry?.parentObject?.dict).toBe(aWord.dict);\n    expect(aWord.geometry.polygon[0].parentGeometry?.parentObject?.dict).toBe(aWord.dict);\n  });\n\n  it(\"sorts lines correctly for multi-column documents (case 1)\", () => {\n    checkMultiColReadingOrder(testMultiColumnJson, EXPECTED_MULTILINE_SEQ_LOWER);\n  });\n\n  it(\"sorts lines correctly for multi-column documents (case 2)\", () => {\n    checkMultiColReadingOrder(testMultiColumnJson2, EXPECTED_MULTILINE_SEQ_2_LOWER);\n  });\n\n  it(\"auto-selects Layout vs heuristic reading order by default\", () => {\n    // Use heuristics when no Layout available:\n    const noLayoutPage = new TextractDocument(testMultiColumnJson).pageNumber(1);\n    expect(noLayoutPage.hasLayout).toStrictEqual(false);\n    const heuristicModel = jest.spyOn(noLayoutPage, \"_getLineClustersByColumn\");\n    noLayoutPage.getLineClustersInReadingOrder();\n    noLayoutPage.getTextInReadingOrder();\n    expect(heuristicModel).toHaveBeenCalledTimes(2);\n    heuristicModel.mockReset();\n\n    // Use Layout when it's there:\n    const pageWithLayout = new TextractDocument(payStubResponseJson).pageNumber(1);\n    expect(pageWithLayout.hasLayout).toStrictEqual(true);\n    const heuristicModel2 = jest.spyOn(pageWithLayout, \"_getLineClustersByColumn\");\n    const clusters = pageWithLayout.getLineClustersInReadingOrder();\n    const readingText = pageWithLayout.getTextInReadingOrder();\n    expect(heuristicModel2).not.toHaveBeenCalled();\n    heuristicModel2.mockReset();\n\n    // Check the Layout-based results are as expected:\n    const linesPerLayout = pageWithLayout.layout.listItems().map((item) => item.listTextLines());\n    expect(clusters.length).toStrictEqual(linesPerLayout.length);\n    linesPerLayout.forEach((cluster, ixCluster) => {\n      expect(cluster.length).toStrictEqual(linesPerLayout[ixCluster].length);\n      cluster.forEach((line, ixLine) => {\n        expect(line).toBe(linesPerLayout[ixCluster][ixLine]);\n      });\n    });\n    expect(readingText).toStrictEqual(\n      clusters.map((cluster) => cluster.map((c) => c.text).join(\"\\n\")).join(\"\\n\\n\"),\n    );\n  });\n\n  it(\"can enforce Textract Layout be present for reading order\", () => {\n    const page = new TextractDocument(testMultiColumnJson).pageNumber(1);\n    expect(page.hasLayout).toStrictEqual(false);\n    expect(() =>\n      page.getLineClustersInReadingOrder({ useLayout: ReadingOrderLayoutMode.RequireLayout }),\n    ).toThrow(/Layout/);\n    expect(() => page.getTextInReadingOrder({ useLayout: ReadingOrderLayoutMode.RequireLayout })).toThrow(\n      /Layout/,\n    );\n  });\n\n  it(\"can ignore Textract Layout for reading order if requested\", () => {\n    const pageWithLayout = new TextractDocument(payStubResponseJson).pageNumber(1);\n    expect(pageWithLayout.hasLayout).toStrictEqual(true);\n    const heuristicModel = jest.spyOn(pageWithLayout, \"_getLineClustersByColumn\");\n    pageWithLayout.getLineClustersInReadingOrder({ useLayout: ReadingOrderLayoutMode.IgnoreLayout });\n    pageWithLayout.getTextInReadingOrder({ useLayout: ReadingOrderLayoutMode.IgnoreLayout });\n    expect(heuristicModel).toHaveBeenCalledTimes(2);\n    heuristicModel.mockReset();\n  });\n\n  it(\"outputs text correctly for multi-column documents\", () => {\n    const doc = new TextractDocument(testMultiColumnJson);\n\n    const sortedLinesTextLower = doc.pageNumber(1).getTextInReadingOrder().toLocaleLowerCase().split(\"\\n\");\n    expect(sortedLinesTextLower.length).not.toBeLessThan(EXPECTED_MULTILINE_SEQ_LOWER.length);\n    let ixTest = 0;\n    sortedLinesTextLower.forEach((lineText) => {\n      const matchIx = EXPECTED_MULTILINE_SEQ_LOWER.findIndex((seq) => lineText.indexOf(seq) >= 0);\n      if (matchIx >= 0) {\n        // We compare the strings first here to make failed assertions a bit more meaningful:\n        expect(EXPECTED_MULTILINE_SEQ_LOWER[matchIx]).toStrictEqual(EXPECTED_MULTILINE_SEQ_LOWER[ixTest]);\n        expect(matchIx).toStrictEqual(ixTest);\n        ++ixTest;\n      }\n    });\n    expect(ixTest).toStrictEqual(EXPECTED_MULTILINE_SEQ_LOWER.length);\n  });\n\n  it(\"Extracts header and footer content\", () => {\n    const page = new TextractDocument(testHeaderFooterJson).pageNumber(1);\n\n    const headerLines = page.getHeaderLines();\n    expect(headerLines.length).toStrictEqual(5);\n    const footerLines = page.getFooterLines();\n    expect(footerLines.length).toStrictEqual(4);\n  });\n\n  it(\"Restricts header and footer content with strict configuration\", () => {\n    const page = new TextractDocument(testHeaderFooterJson).pageNumber(1);\n\n    // Require bigger gap between header and content than exists:\n    const headerLines = page.getHeaderLines({ minGap: 4 });\n    expect(headerLines.length).toStrictEqual(0);\n    // Footer has a big gap on this page, so same param should be fine:\n    const footerLines1 = page.getFooterLines({ minGap: 4 });\n    expect(footerLines1.length).toStrictEqual(4);\n    // But should still be able to restrict by narrowing the footer window too short:\n    const footerLines2 = page.getFooterLines({ maxMargin: 0.02 });\n    expect(footerLines2.length).toStrictEqual(0);\n  });\n\n  it(\"Segments header, content, and footer sections\", () => {\n    const page = new TextractDocument(testHeaderFooterJson).pageNumber(1);\n\n    const segmented = page.getLinesByLayoutArea(false);\n    expect(segmented.header.length).toStrictEqual(5);\n    expect(segmented.footer.length).toStrictEqual(4);\n    expect(segmented.content.length).toStrictEqual(page.listLines().length - (5 + 4));\n  });\n\n  it(\"Segments header, content, and footer sections in reading order\", () => {\n    const page = new TextractDocument(testHeaderFooterJson).pageNumber(1);\n\n    const readingOrder = ([] as Line[]).concat(...page.getLineClustersInReadingOrder());\n    const tmpfirst = readingOrder.findIndex((line) => line.text == \"With multiple lines\");\n    const tmpsecond = readingOrder.findIndex((line) => line.text == \"right-aligned header\");\n    expect(tmpfirst).toBeGreaterThanOrEqual(0);\n    expect(tmpsecond).toBeGreaterThanOrEqual(0);\n    expect(tmpsecond).toBeGreaterThan(tmpfirst);\n\n    const segmented = page.getLinesByLayoutArea(true);\n    const EXPECTED_HEADER_LINES = [\n      \"Left-aligned header\",\n      \"With multiple lines\",\n      // (Right comes in first because it starts higher up than center)\n      \"right-aligned header\",\n      \"with multiple lines\",\n      \"CENTER-ALIGNED HEADER\",\n    ];\n    expect(segmented.header.length).toStrictEqual(EXPECTED_HEADER_LINES.length);\n    segmented.header.forEach((line, ix) => {\n      expect(line.text).toMatch(EXPECTED_HEADER_LINES[ix]);\n    });\n\n    const EXPECTED_FOOTER_LINES = [\"Left-aligned footer\", \"Multi-line centered\", \"footer content\", \"Page\"];\n    expect(segmented.footer.length).toStrictEqual(EXPECTED_FOOTER_LINES.length);\n    segmented.footer.forEach((line, ix) => {\n      expect(line.text).toMatch(EXPECTED_FOOTER_LINES[ix]);\n    });\n\n    const ixLeftColBottomLine = segmented.content.findIndex((l) =>\n      l.text.startsWith(\"ML model-based approaches may be\"),\n    );\n    if (ixLeftColBottomLine < 0) {\n      throw new Error(\"Couldn't find multi-column left col test line in segmented content\");\n    }\n    const ixRightColMidLine = segmented.content.findIndex((l) =>\n      l.text.startsWith(\"This means it cannot solve\"),\n    );\n    if (ixRightColMidLine < 0) {\n      throw new Error(\"Couldn't find multi-column right col test line in segmented content\");\n    }\n\n    expect(ixRightColMidLine).toBeGreaterThan(ixLeftColBottomLine);\n  });\n\n  it(\"detects 0 orientation for perfectly straight pages\", () => {\n    const doc = new TextractDocument(testMultiColumnJson);\n\n    for (const page of doc.iterPages()) {\n      expect(page.getModalWordOrientationDegrees()).toStrictEqual(0);\n    }\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/expense.test.ts",
    "content": "import { ApiAnalyzeExpenseResponse } from \"../../src/api-models/response\";\nimport { TextractExpense } from \"../../src/expense\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testFailedJson = {} as ApiAnalyzeExpenseResponse;\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testExpenseJson: ApiAnalyzeExpenseResponse = require(\"../data/invoice-expense-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testExpenseMissingGeomsJson: ApiAnalyzeExpenseResponse = require(\"../data/expense-missing-geoms-response.json\");\n\ndescribe(\"Expense\", () => {\n  it(\"throws status error on failed job JSON\", () => {\n    expect(() => {\n      new TextractExpense(testFailedJson);\n    }).toThrowError(/ExpenseDocuments/);\n  });\n\n  it(\"parses the test JSON without error\", () => {\n    expect(() => {\n      new TextractExpense(testExpenseJson);\n    }).not.toThrowError();\n  });\n\n  it(\"iterates through expense documents and summary fields\", () => {\n    const expense = new TextractExpense(testExpenseJson);\n    expect(expense.nDocs).toStrictEqual(1);\n    const docList = expense.listDocs();\n    const expenseDocs = [...expense.iterDocs()].map((doc, ixDoc) => {\n      expect(doc.index).toStrictEqual(ixDoc + 1); // One-based indexes\n      expect(doc).toBe(docList[ixDoc]);\n      return doc;\n    });\n    const expenseDoc = expenseDocs[0];\n    expect(expenseDoc.parentExpense).toBe(expense);\n    const fieldList = expenseDoc.listSummaryFields();\n    let nFieldsSeen = 0;\n    for (const field of expenseDoc.iterSummaryFields()) {\n      expect(field).toBe(fieldList[nFieldsSeen]);\n      ++nFieldsSeen;\n      expect(field.parent).toBe(expenseDoc);\n    }\n    expect(nFieldsSeen).toStrictEqual(expenseDoc.nSummaryFields);\n    expect(nFieldsSeen).toStrictEqual(31);\n  });\n\n  it(\"iterates through expense document item groups, line items, and fields\", () => {\n    const expense = new TextractExpense(testExpenseJson);\n    expect(expense.nDocs).toStrictEqual(1);\n    const expenseDoc = expense.listDocs()[0];\n    expect(expenseDoc.parentExpense).toBe(expense);\n\n    const groupList = expenseDoc.listLineItemGroups();\n    let nGroupsSeen = 0;\n    for (const group of expenseDoc.iterLineItemGroups()) {\n      expect(group).toBe(groupList[nGroupsSeen]);\n      ++nGroupsSeen;\n      expect(group.index).toStrictEqual(nGroupsSeen); // One-based indexes\n      const itemList = group.listLineItems();\n      let groupItemsSeen = 0;\n      for (const item of group.iterLineItems()) {\n        expect(item).toBe(itemList[groupItemsSeen]);\n        expect(item.parentGroup).toBe(group);\n        ++groupItemsSeen;\n        const itemFields = item.listFields();\n        const itemFieldIterList = [...item.iterFields()];\n        expect(itemFields.length).toBeGreaterThanOrEqual(1);\n        expect(itemFields.length).toStrictEqual(item.nFields);\n        expect(itemFields.length).toStrictEqual(itemFieldIterList.length);\n        itemFields.forEach((field, ixField) => {\n          expect(field).toBe(itemFieldIterList[ixField]);\n          expect(field.parent).toBe(item);\n        });\n      }\n      expect(groupItemsSeen).toBeGreaterThanOrEqual(1);\n      expect(groupItemsSeen).toStrictEqual(group.nLineItems);\n    }\n    expect(nGroupsSeen).toStrictEqual(expenseDoc.nLineItemGroups);\n    expect(nGroupsSeen).toStrictEqual(1);\n  });\n\n  it(\"fetches expense summary fields by type\", () => {\n    const expense = new TextractExpense(testExpenseJson);\n    const expenseDoc = expense.listDocs()[0];\n\n    const testFields = expenseDoc.searchSummaryFieldsByType(\"INVOICE_RECEIPT_ID\");\n    expect(testFields.length).toStrictEqual(1);\n    expect(testFields[0].fieldType.text).toStrictEqual(\"INVOICE_RECEIPT_ID\");\n    expect(testFields[0].value.text).toStrictEqual(\"123PQR456\");\n\n    const subtotalField = expenseDoc.getSummaryFieldByType(\"SUBTOTAL\");\n    expect(subtotalField).toBeTruthy();\n    if (!subtotalField) return;\n    expect(subtotalField.pageNumber).toStrictEqual(1);\n    expect(subtotalField.fieldType.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(subtotalField.fieldType.confidence).toBeLessThanOrEqual(100);\n    expect(subtotalField.fieldType.parentField).toBe(subtotalField);\n    expect(subtotalField.fieldType.text).toStrictEqual(\"SUBTOTAL\");\n    expect(subtotalField.label?.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(subtotalField.label?.confidence).toBeLessThanOrEqual(100);\n    expect(subtotalField.label?.geometry?.parentObject).toBe(subtotalField.label);\n    expect(subtotalField.label?.parentField).toBe(subtotalField);\n    expect(subtotalField.label?.text).toStrictEqual(\"Total\");\n    expect(subtotalField.value.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(subtotalField.value.confidence).toBeLessThanOrEqual(100);\n    expect(subtotalField.value.geometry?.parentObject).toBe(subtotalField.value);\n    expect(subtotalField.value.parentField).toBe(subtotalField);\n    expect(subtotalField.value.text).toStrictEqual(\"$6169.40\");\n  });\n\n  it(\"returns no matches for non-existent summary field types\", () => {\n    const expense = new TextractExpense(testExpenseJson);\n    const expenseDoc = expense.listDocs()[0];\n\n    const searchResult = expenseDoc.searchSummaryFieldsByType(\"doesnotexist\");\n    expect(searchResult.length).toStrictEqual(0);\n\n    const getResult = expenseDoc.getSummaryFieldByType(\"alsodoesnotexist\");\n    expect(getResult).toStrictEqual(null);\n  });\n\n  it(\"handles missing summary field geometries when no text detected\", () => {\n    const expense = new TextractExpense(testExpenseMissingGeomsJson);\n    const expenseDoc = expense.listDocs()[0];\n\n    const searchResult = expenseDoc.searchSummaryFieldsByType(\"CITY\");\n    expect(searchResult.length).toStrictEqual(1);\n    expect(searchResult[0].value).toBeDefined();\n    expect(searchResult[0].value?.text).toStrictEqual(\"\");\n    expect(searchResult[0].value?.geometry).toBeUndefined();\n  });\n\n  it(\"fetches line item fields by type\", () => {\n    const expense = new TextractExpense(testExpenseJson);\n    const expenseDoc = expense.listDocs()[0];\n\n    const lineItems = expenseDoc.listLineItemGroups()[0].listLineItems();\n    expect(lineItems.length).toBeGreaterThanOrEqual(1);\n    const lineItem = lineItems[0];\n\n    const quantityFields = lineItem.searchFieldsByType(\"QUANTITY\");\n    expect(quantityFields.length).toStrictEqual(1);\n    expect(quantityFields[0].fieldType.text).toStrictEqual(\"QUANTITY\");\n    expect(quantityFields[0].label?.text).toStrictEqual(\"Quantity\");\n    expect(quantityFields[0].value.text).toStrictEqual(\"1\");\n\n    const priceField = lineItem.getFieldByType(\"PRICE\");\n    expect(priceField).toBeTruthy();\n    if (!priceField) return;\n    expect(priceField.fieldType.text).toStrictEqual(\"PRICE\");\n    expect(priceField.label?.text).toStrictEqual(\"Amount\");\n    expect(priceField.value.text).toStrictEqual(\"$1000\");\n  });\n\n  it(\"returns no matches for non-existent line item field types\", () => {\n    const expense = new TextractExpense(testExpenseJson);\n    const expenseDoc = expense.listDocs()[0];\n\n    const lineItems = expenseDoc.listLineItemGroups()[0].listLineItems();\n    expect(lineItems.length).toBeGreaterThanOrEqual(1);\n    const lineItem = lineItems[0];\n\n    const searchResult = lineItem.searchFieldsByType(\"doesnotexist\");\n    expect(searchResult.length).toStrictEqual(0);\n\n    const getResult = lineItem.getFieldByType(\"alsodoesnotexist\");\n    expect(getResult).toStrictEqual(null);\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/form.test.ts",
    "content": "import { ApiBlockType, ApiRelationshipType } from \"../../src/api-models/base\";\nimport { ApiSelectionStatus } from \"../../src/api-models/content\";\nimport { ApiResponsePage } from \"../../src/api-models/response\";\nimport { AggregationMethod } from \"../../src/base\";\nimport { Field, FieldKey, FieldValue, TextractDocument, Word } from \"../../src/document\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testResponseJson: ApiResponsePage = require(\"../data/test-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst separateBlockTypesResponseJson: ApiResponsePage = require(\"../data/test-query-response.json\");\n\nconst REFERENCE_FIELD_STR = `\nField\n==========\nKey: Phone Number:\nValue: 555-0100`;\n\ndescribe(\"FieldKey\", () => {\n  it(\"renders plain key text for HTML and str representations\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const key = doc.form.getFieldByKey(\"Phone Number:\")?.key as FieldKey;\n    expect(key).toBeTruthy();\n    expect(key.text).toStrictEqual(\"Phone Number:\");\n    expect(key.html()).toStrictEqual(key.text);\n    expect(key.str()).toStrictEqual(key.text);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const key = doc.form.getFieldByKey(\"Phone Number:\")?.key as FieldKey;\n    expect(key).toBeTruthy();\n\n    expect(key.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(key.html({ includeBlockTypes: [key.blockType] })).toStrictEqual(\"\");\n    expect(key.html({ includeBlockTypes: [key.blockType, ApiBlockType.Word] })).toStrictEqual(key.text);\n    expect(key.html({ skipBlockTypes: [ApiBlockType.Value] })).toStrictEqual(key.text);\n    expect(key.html({ skipBlockTypes: [ApiBlockType.Key] })).toStrictEqual(\"\");\n    expect(key.html({ skipBlockTypes: [ApiBlockType.KeyValueSet] })).toStrictEqual(\"\");\n    expect(key.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n  });\n\n  it(\"escapes forbidden entities in key text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const doc = new TextractDocument(responseCopy);\n    const key = doc.form.getFieldByKey(\"Phone Number:\")?.key as FieldKey;\n\n    // Manipulate the underlying dict to insert non-HTML-safe text:\n    const word = key.listWords()[0];\n    const origText = word.dict.Text;\n    word.dict.Text = `<!DOCTYPE><html>'woof\"${origText}`;\n    // Check the content gets escaped:\n    expect(key.html()).toContain(`&lt;!DOCTYPE&gt;&lt;html&gt;'woof\"${origText}`);\n  });\n});\n\ndescribe(\"FieldValue\", () => {\n  it(\"reports whether it's a checkbox/radio button, and selected\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const doc = new TextractDocument(responseCopy);\n\n    const nonSelValue = doc.form.getFieldByKey(\"Phone Number:\")?.value as FieldValue;\n    expect(nonSelValue.isCheckbox).toBe(false);\n    expect(nonSelValue.isSelected).toBe(null);\n    expect(nonSelValue.selectionStatus).toBe(null);\n\n    const selNotSelectedValue = doc.form.getFieldByKey(\"Company Employee\")?.value as FieldValue;\n    expect(selNotSelectedValue.isCheckbox).toBe(true);\n    expect(selNotSelectedValue.isSelected).toBe(false);\n    expect(selNotSelectedValue.selectionStatus).toBe(ApiSelectionStatus.NotSelected);\n    const selSelectedValue = doc.form.getFieldByKey(\"Job fair\")?.value as FieldValue;\n    expect(selSelectedValue.isCheckbox).toBe(true);\n    expect(selSelectedValue.isSelected).toBe(true);\n    expect(selSelectedValue.selectionStatus).toBe(ApiSelectionStatus.Selected);\n\n    const emptyValue = doc.form.getFieldByKey(\"Position Held\")?.value as FieldValue;\n    expect(emptyValue.isCheckbox).toBe(false);\n    expect(emptyValue.isSelected).toBe(null);\n    expect(emptyValue.selectionStatus).toBe(null);\n  });\n\n  it(\"renders plain value text for HTML and str representations\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const value = doc.form.getFieldByKey(\"Phone Number:\")?.value as FieldValue;\n    expect(value).toBeTruthy();\n    expect(value.text).toStrictEqual(\"555-0100\");\n    expect(value.html()).toStrictEqual(value.text);\n    expect(value.str()).toStrictEqual(value.text);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const value = doc.form.getFieldByKey(\"Phone Number:\")?.value as FieldValue;\n    expect(value).toBeTruthy();\n\n    expect(value.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(value.html({ includeBlockTypes: [value.blockType] })).toStrictEqual(\"\");\n    expect(value.html({ includeBlockTypes: [value.blockType, ApiBlockType.Word] })).toStrictEqual(value.text);\n    expect(value.html({ skipBlockTypes: [ApiBlockType.Key] })).toStrictEqual(value.text);\n    expect(value.html({ skipBlockTypes: [ApiBlockType.Value] })).toStrictEqual(\"\");\n    expect(value.html({ skipBlockTypes: [ApiBlockType.KeyValueSet] })).toStrictEqual(\"\");\n    expect(value.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n\n    const selValue = doc.form.getFieldByKey(\"Job fair\")?.value as FieldValue;\n    expect(selValue).toBeTruthy();\n    expect(selValue.html()).toStrictEqual(\"SELECTED\");\n    expect(\n      selValue.html({ includeBlockTypes: [selValue.blockType, ApiBlockType.SelectionElement] }),\n    ).toStrictEqual(\"SELECTED\");\n    expect(selValue.html({ includeBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(\"\");\n    expect(selValue.html({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(\"\");\n  });\n\n  it(\"escapes forbidden entities in value text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const doc = new TextractDocument(responseCopy);\n    const value = doc.form.getFieldByKey(\"Phone Number:\")?.value as FieldValue;\n\n    // Manipulate the underlying dict to insert non-HTML-safe text:\n    const word = value.listContent()[0] as Word;\n    const origText = word.dict.Text;\n    word.dict.Text = `<!DOCTYPE><html>'woof\"${origText}`;\n    // Check the content gets escaped:\n    expect(value.html()).toContain(`&lt;!DOCTYPE&gt;&lt;html&gt;'woof\"${origText}`);\n  });\n});\n\ndescribe(\"FieldGeneric\", () => {\n  it(\"hoists properties from FieldKey to behave like an ApiBlockWrapper\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Phone Number:\");\n    expect(field?.blockType).toStrictEqual(field?.key.blockType);\n    expect(field?.childBlockIds).toStrictEqual(field?.key.childBlockIds);\n    expect(field?.dict).toBe(field?.key.dict);\n    expect(field?.id).toStrictEqual(field?.key.id);\n    const mock = jest\n      .spyOn(field?.key as FieldKey, \"relatedBlockIdsByRelType\")\n      .mockImplementation(() => [] as string[]);\n    expect(field?.relatedBlockIdsByRelType(ApiRelationshipType.Value).length).toStrictEqual(0);\n    expect(mock).toHaveBeenCalledTimes(1);\n    mock.mockReset();\n  });\n\n  it(\"exposes field OCR confidences as well as structural detection confidences\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Phone Number:\");\n    if (!field) throw new Error(\"Test missing expected document field\");\n\n    function mean(numberArr: number[]): number {\n      return numberArr.reduce((acc, next) => acc + next) / numberArr.length;\n    }\n\n    const keyWords = field.key.listWords();\n    const keyOcrConf = field.key.getOcrConfidence();\n    expect(keyOcrConf).not.toBeNaN();\n    expect(keyOcrConf).toStrictEqual(mean(keyWords.map((word) => word.confidence)));\n    expect(keyOcrConf).not.toEqual(field.key.confidence);\n\n    if (!field.value) throw new Error(\"Test missing expected document field value\");\n    const valueContent = field.value.listContent();\n    const valueOcrConf = field.value.getOcrConfidence();\n    expect(valueOcrConf).not.toBeNaN();\n    expect(valueOcrConf).toStrictEqual(mean(valueContent.map((c) => c.confidence)));\n    expect(valueOcrConf).not.toEqual(field.value.confidence);\n\n    expect(field.getOcrConfidence()).toStrictEqual(\n      mean(valueContent.map((c) => c.confidence).concat(keyWords.map((w) => w.confidence))),\n    );\n  });\n\n  it(\"supports alternative field key/value OCR confidence aggregations\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Phone Number:\");\n    if (!field) throw new Error(\"Test missing expected document field\");\n\n    const keyOcrConf = field.key.getOcrConfidence() as number;\n    expect(keyOcrConf).not.toBeNull();\n    expect(field.key.getOcrConfidence(AggregationMethod.Mean)).toStrictEqual(keyOcrConf);\n    expect(field.key.getOcrConfidence(AggregationMethod.Min)).toBeLessThan(keyOcrConf);\n    expect(field.key.getOcrConfidence(AggregationMethod.Max)).toBeGreaterThan(keyOcrConf);\n\n    if (!field.value) throw new Error(\"Test missing expected document field value\");\n    const valueOcrConf = field.value.getOcrConfidence() as number;\n    expect(valueOcrConf).not.toBeNull();\n    expect(field.value.getOcrConfidence(AggregationMethod.Mean)).toStrictEqual(valueOcrConf);\n    // The test doc has exactly one WORD/content in this field value:\n    expect(field.value.listContent().length).toStrictEqual(1);\n    expect(field.value.getOcrConfidence(AggregationMethod.Min)).toStrictEqual(valueOcrConf);\n    expect(field.value.getOcrConfidence(AggregationMethod.Max)).toStrictEqual(valueOcrConf);\n\n    const fieldOcrConf = field.getOcrConfidence() as number;\n    expect(fieldOcrConf).not.toBeNull();\n    expect(field.getOcrConfidence(AggregationMethod.Mean)).toStrictEqual(fieldOcrConf);\n    expect(field.getOcrConfidence(AggregationMethod.Min)).toBeLessThan(fieldOcrConf);\n    expect(field.getOcrConfidence(AggregationMethod.Max)).toBeGreaterThan(fieldOcrConf);\n  });\n\n  it(\"reports whether it's a checkbox/radio button\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const doc = new TextractDocument(responseCopy);\n\n    const nonSel = doc.form.getFieldByKey(\"Phone Number:\") as Field;\n    expect(nonSel.isCheckbox).toBe(false);\n    expect(nonSel.isSelected).toBe(null);\n    expect(nonSel.selectionStatus).toBe(null);\n\n    const selNotSelected = doc.form.getFieldByKey(\"Company Employee\") as Field;\n    expect(selNotSelected.isCheckbox).toBe(true);\n    expect(selNotSelected.isSelected).toBe(false);\n    expect(selNotSelected.selectionStatus).toBe(ApiSelectionStatus.NotSelected);\n    const selSelected = doc.form.getFieldByKey(\"Job fair\") as Field;\n    expect(selSelected.isCheckbox).toBe(true);\n    expect(selSelected.isSelected).toBe(true);\n    expect(selSelected.selectionStatus).toBe(ApiSelectionStatus.Selected);\n\n    const emptyValueField = doc.form.getFieldByKey(\"Position Held\") as Field;\n    expect(emptyValueField.isCheckbox).toBe(false);\n    expect(emptyValueField.isSelected).toBe(null);\n    expect(emptyValueField.selectionStatus).toBe(null);\n\n    // TODO: Can't find a test case of a field with no VALUE at all, yet\n  });\n\n  it(\"renders semantic HTML and str representations\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Phone Number:\") as Field;\n    expect(field).toBeTruthy();\n    expect(field.str()).toStrictEqual(REFERENCE_FIELD_STR);\n    expect(field.html()).toStrictEqual(\n      '<input label=\"Phone Number:\" type=\"text\" disabled value=\"555-0100\" />',\n    );\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Job fair\") as Field;\n    expect(field).toBeTruthy();\n    expect(field.html()).toStrictEqual('<input label=\"Job fair\" type=\"text\" disabled value=\"SELECTED\" />');\n\n    expect(\n      field.html({\n        includeBlockTypes: [ApiBlockType.KeyValueSet, ApiBlockType.SelectionElement, ApiBlockType.Word],\n      }),\n    ).toStrictEqual('<input label=\"Job fair\" type=\"text\" disabled value=\"SELECTED\" />');\n    expect(\n      field.html({ includeBlockTypes: [ApiBlockType.SelectionElement, ApiBlockType.Word] }),\n    ).toStrictEqual(\"\");\n\n    expect(field.html({ skipBlockTypes: [ApiBlockType.Key] })).toStrictEqual(\n      '<input type=\"text\" disabled value=\"SELECTED\" />',\n    );\n    expect(field.html({ skipBlockTypes: [ApiBlockType.Value] })).toStrictEqual(\n      '<input label=\"Job fair\" type=\"text\" disabled />',\n    );\n    expect(field.html({ skipBlockTypes: [ApiBlockType.SelectionElement] })).toStrictEqual(\n      '<input label=\"Job fair\" type=\"text\" disabled value=\"\" />',\n    );\n    expect(field.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\n      '<input label=\"\" type=\"text\" disabled value=\"SELECTED\" />',\n    );\n  });\n\n  it(\"escapes forbidden entities in word text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const doc = new TextractDocument(responseCopy);\n    const field = doc.form.getFieldByKey(\"Phone Number:\") as Field;\n    const value = field.value as FieldValue;\n    expect(field).toBeTruthy();\n    expect(value).toBeTruthy();\n\n    // Manipulate the underlying dicts to insert non-HTML-safe text:\n    const keyWord = field.key.listWords()[0];\n    const origKeyText = keyWord.dict.Text;\n    keyWord.dict.Text = `<div id=\"q\">'${origKeyText}`;\n    const valWord = value.listContent()[0] as Word;\n    const origValText = valWord.dict.Text;\n    valWord.dict.Text = `${origValText}'</div>`;\n    // Check the content gets escaped:\n    const fieldHtml = field.html();\n    expect(fieldHtml).toContain(`&lt;div id=&quot;q&quot;&gt;&#39;${origKeyText}`);\n    expect(fieldHtml).toContain(`${origValText}&#39;&lt;/div&gt;`);\n  });\n});\n\ndescribe(\"Form\", () => {\n  it(\"loads and navigates form fields per page\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    expect(page.form.nFields).toStrictEqual(14);\n    expect(page.form.parentPage).toBe(page);\n\n    const iterFields = [...page.form.iterFields()];\n    const fieldList = page.form.listFields();\n    expect(iterFields.length).toStrictEqual(page.form.nFields);\n    expect(fieldList.length).toStrictEqual(page.form.nFields);\n    for (let ix = 0; ix < page.form.nFields; ++ix) {\n      expect(iterFields[ix]).toBe(fieldList[ix]);\n    }\n\n    const field = fieldList[0];\n    expect(field.parentForm).toBe(page.form);\n    expect(field.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(field.confidence).toBeLessThanOrEqual(100);\n  });\n\n  it(\"loads form fields from alternative 'KEY' and 'VALUE' BlockTypes\", () => {\n    // Test functionality with KEY and VALUE blocks instead of KEY_VALUE_SET:\n    const doc = new TextractDocument(separateBlockTypesResponseJson);\n    const page = doc.pageNumber(1);\n    expect(page.form.nFields).toStrictEqual(9);\n    const field = page.form.listFields()[0];\n    expect(field.parentForm).toBe(page.form);\n    expect(field.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(field.confidence).toBeLessThanOrEqual(100);\n    expect(field.key.text).toStrictEqual(\"First Name\");\n    expect(field.value?.text).toStrictEqual(\"Major\");\n    expect(page.form.getFieldByKey(\"First Name\")).toBe(field);\n  });\n\n  it(\"loads and navigates form fields at document level\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    expect(doc.form.nFields).toStrictEqual(14);\n    expect(doc.form.parentDocument).toBe(doc);\n\n    const iterFields = [...doc.form.iterFields()];\n    const fieldList = doc.form.listFields();\n    expect(iterFields.length).toStrictEqual(doc.form.nFields);\n    expect(fieldList.length).toStrictEqual(doc.form.nFields);\n    for (let ix = 0; ix < doc.form.nFields; ++ix) {\n      expect(iterFields[ix]).toBe(fieldList[ix]);\n    }\n    const allPageFields = ([] as Field[]).concat(...doc.listPages().map((p) => p.form.listFields()));\n    allPageFields.forEach((fieldFromPages, ix) => {\n      expect(fieldList[ix]).toBe(fieldFromPages);\n    });\n\n    const field = fieldList[0];\n    expect(field.parentForm).toBe(doc.pageNumber(1).form);\n    expect(field.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(field.confidence).toBeLessThanOrEqual(100);\n  });\n\n  it(\"loads correct types of form field content\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    let nFieldValWords = 0;\n    let nFieldValSelEls = 0;\n    for (const field of page.form.iterFields()) {\n      if (field?.value) {\n        for (const item of field.value.listContent()) {\n          if (item.blockType === ApiBlockType.Word) {\n            ++nFieldValWords;\n          } else if (item.blockType === ApiBlockType.SelectionElement) {\n            ++nFieldValSelEls;\n          } else {\n            throw new Error(`Unexpected field value content type ${item.blockType}`);\n          }\n        }\n      }\n    }\n    expect(nFieldValSelEls).toBeGreaterThan(0);\n    expect(nFieldValWords).toBeGreaterThan(0);\n  });\n\n  it(\"retrieves form fields by key\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Phone Number:\");\n    expect(field).toBeTruthy();\n    if (!field) {\n      throw new Error(\"Test field missing from test document\");\n    }\n\n    // Check fetching the field on the expected page also works:\n    expect(field).toBe(doc.pageNumber(1).form.getFieldByKey(\"Phone Number:\"));\n\n    // We also do bulk of field functionality validation here because we know what the field is:\n    expect(field.key?.parentField).toBe(field);\n    expect(field.value?.parentField).toBe(field);\n    expect(field.key?.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(field.key?.confidence).toBeLessThanOrEqual(100);\n    expect(field.key?.geometry.parentObject).toBe(field.key);\n    expect(field.key?.str()).toStrictEqual(field.key?.text);\n    expect(field.value?.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(field.value?.confidence).toBeLessThanOrEqual(100);\n    expect(field.value?.geometry.parentObject).toBe(field.value);\n    expect(field.value?.text).toStrictEqual(\"555-0100\");\n    expect(field.value?.str()).toStrictEqual(field.value?.text);\n  });\n\n  it(\"returns null for non-existent field key\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"ThisFieldDoesNotExist\");\n    expect(field).toBeNull();\n  });\n\n  it(\"searches form fields by key\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const results = doc.form.searchFieldsByKey(\"Home Addr\");\n    expect(results.length).toStrictEqual(1);\n    expect(results[0].value?.text).toMatch(/123 Any Street/i);\n\n    // Check searching the field at page level also works:\n    const pageLevelResults = doc.pageNumber(1).form.searchFieldsByKey(\"Home Addr\");\n    expect(pageLevelResults.length).toStrictEqual(results.length);\n    pageLevelResults.forEach((field, ix) => {\n      expect(field).toBe(results[ix]);\n    });\n  });\n\n  it(\"collects text from fields, per-page forms, and whole-document forms\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.listPages()[0];\n    const fieldKeyText = \"Phone Number:\";\n    const fieldValText = \"555-0100\";\n    const field = doc.form.getFieldByKey(fieldKeyText);\n    // Individual field key & value:\n    expect(field?.key.text).toStrictEqual(fieldKeyText);\n    expect(field?.value?.text).toStrictEqual(fieldValText);\n    // Individual field:\n    expect(field?.text).toStrictEqual(`${fieldKeyText}: ${fieldValText}`);\n    // Page-level form:\n    expect(page.form.text).toMatch(/.*: .*(?:\\n.*: .*)*/g);\n    expect(page.form.text).toContain(`\\n${fieldKeyText}: ${fieldValText}\\n`);\n    // Document-level form:\n    expect(doc.form.text).toContain(page.form.text);\n  });\n\n  it(\"stringifies composite document forms consistently with per-page forms\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const docFormStr = doc.form.str();\n    expect(docFormStr).toBeTruthy();\n    const pageFormStrs = doc.listPages().map((p) => p.form.str());\n    expect(docFormStr).toStrictEqual(pageFormStrs.join(\"\\n\"));\n  });\n\n  it(\"renders semantic HTML for the collection of all fields\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.listPages()[0];\n    // TODO: Could probably add some more checks here, but would ideally have a smaller ref JSON.\n    expect(page.form.html()).toMatch(\n      /^<form>\\n(?:\\t<input label=\".*\" type=\"text\" disabled value=\".*\" \\/>\\n)*<\\/form>$/g,\n    );\n    expect(doc.form.html()).toMatch(\n      /^<form>\\n(?:\\t<div class=\"form-page\" id=\"form-page-\\d+\">\\n(?:\\t\\t<input label=\".*\" type=\"text\" disabled value=\".*\" \\/>\\n)*\\t<\\/div>\\n)*<\\/form>$/g,\n    );\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.listPages()[0];\n    expect(page.form.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"<form></form>\");\n    expect(page.form.html({ skipBlockTypes: [ApiBlockType.Value] })).not.toContain(\"value=\");\n    expect(page.form.html({ skipBlockTypes: [ApiBlockType.Key] })).not.toContain(\"label=\");\n  });\n\n  it(\"exposes raw form dicts with traversal up and down the tree\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const formKeys = page.form.searchFieldsByKey(\"\");\n    expect(formKeys.length).toBeGreaterThan(0);\n    expect(formKeys.length && formKeys[0].value?.parentField.parentForm.parentPage.dict).toBe(page.dict);\n  });\n\n  it(\"exposes parent page from document-level field queries\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const field = doc.form.getFieldByKey(\"Phone Number:\");\n    expect(field?.parentPage.pageNumber).toStrictEqual(1);\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/geometry.test.ts",
    "content": "import { ApiBlockType } from \"../../src/api-models/base\";\nimport { ApiTextType, ApiWordBlock } from \"../../src/api-models/content\";\nimport { ApiObjectWrapper } from \"../../src/base\";\nimport { Geometry, Point } from \"../../src/geometry\";\n\n// Precision limit for testing calculations\nconst PRECISION_DPS = 15;\n\nconst EXAMPLE_WORD_BLOCK: ApiWordBlock = {\n  BlockType: \"WORD\" as ApiBlockType.Word,\n  Confidence: 99.9,\n  Geometry: {\n    BoundingBox: {\n      Height: 0.055,\n      Left: 0.297,\n      Top: 0.04,\n      Width: 0.177,\n    },\n    Polygon: [\n      {\n        X: 0.297,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.04,\n      },\n      {\n        X: 0.474,\n        Y: 0.095,\n      },\n      {\n        X: 0.297,\n        Y: 0.095,\n      },\n    ],\n  },\n  Id: \"8026a7ef-b929-4154-b805-1d21411b4863\",\n  Text: \"Employment\",\n  TextType: \"PRINTED\" as ApiTextType,\n};\n\ndescribe(\"BoundingBox\", () => {\n  it(\"maintains a read-only reference to parent geometry\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const box = geometry.boundingBox;\n    expect(box.parentGeometry).toBe(geometry);\n    expect(() => {\n      (box as { parentGeometry: unknown }).parentGeometry = 10;\n    }).toThrow();\n  });\n\n  it(\"exposes read-only raw properties\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const box = geometry.boundingBox;\n    expect(box.height).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Height);\n    expect(() => {\n      (box as { height: number }).height = 10;\n    }).toThrow();\n    expect(box.left).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Left);\n    expect(() => {\n      (box as { left: number }).left = 10;\n    }).toThrow();\n    expect(box.top).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Top);\n    expect(() => {\n      (box as { top: number }).top = 10;\n    }).toThrow();\n    expect(box.width).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Width);\n    expect(() => {\n      (box as { width: number }).width = 10;\n    }).toThrow();\n  });\n\n  it(\"stringifies including raw properties\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const box = geometry.boundingBox;\n    expect(box.str()).toMatch(/width: [.\\d]+, height: [.\\d]+, left: [.\\d]+, top: [.\\d]+/);\n  });\n\n  it(\"exposes read-only computed properties\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const box = geometry.boundingBox;\n    expect(box.bottom).toStrictEqual(box.top + box.height);\n    expect(() => {\n      (box as { bottom: number }).bottom = 10;\n    }).toThrow();\n    expect(box.hCenter).toStrictEqual(box.left + box.width / 2);\n    expect(() => {\n      (box as { hCenter: number }).hCenter = 10;\n    }).toThrow();\n    expect(box.right).toStrictEqual(box.left + box.width);\n    expect(() => {\n      (box as { right: number }).right = 10;\n    }).toThrow();\n    expect(box.vCenter).toStrictEqual(box.top + box.height / 2);\n    expect(() => {\n      (box as { vCenter: number }).vCenter = 10;\n    }).toThrow();\n  });\n\n  it(\"dynamically tracks updates to the underlying response object\", () => {\n    const blockCopy: ApiWordBlock = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK));\n    const host = new ApiObjectWrapper(blockCopy);\n    const geometry = new Geometry(blockCopy.Geometry, host);\n    const box = geometry.boundingBox;\n    expect(box.height).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Height);\n    expect(box.left).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Left);\n    expect(box.top).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Top);\n    expect(box.width).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Width);\n    expect(box.height).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Height);\n    expect(box.left).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.BoundingBox.Left);\n    const oldArea = box.height * box.width;\n    // Edit dimensions in-place on underlying response object:\n    blockCopy.Geometry.BoundingBox.Height *= 10;\n    blockCopy.Geometry.BoundingBox.Top *= 10;\n    blockCopy.Geometry.BoundingBox.Left *= 20;\n    blockCopy.Geometry.BoundingBox.Width *= 20;\n    // Check BoundingBox reads new values:\n    expect(box.height).toStrictEqual(blockCopy.Geometry.BoundingBox.Height);\n    expect(box.left).toStrictEqual(blockCopy.Geometry.BoundingBox.Left);\n    expect(box.top).toStrictEqual(blockCopy.Geometry.BoundingBox.Top);\n    expect(box.width).toStrictEqual(blockCopy.Geometry.BoundingBox.Width);\n    expect(box.height).toStrictEqual(blockCopy.Geometry.BoundingBox.Height);\n    expect(box.left).toStrictEqual(blockCopy.Geometry.BoundingBox.Left);\n    expect(box.bottom).toStrictEqual(box.top + box.height);\n    expect(box.hCenter).toStrictEqual(box.left + box.width / 2);\n    expect(box.right).toStrictEqual(box.left + box.width);\n    expect(box.vCenter).toStrictEqual(box.top + box.height / 2);\n    expect(box.top).toStrictEqual(blockCopy.Geometry.BoundingBox.Top);\n    expect(box.width).toStrictEqual(blockCopy.Geometry.BoundingBox.Width);\n    expect((box.height * box.width).toFixed(PRECISION_DPS)).toStrictEqual(\n      (oldArea * 10 * 20).toFixed(PRECISION_DPS),\n    );\n  });\n});\n\ndescribe(\"Point (in polygon)\", () => {\n  it(\"maintains a read-only reference to parent geometry\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const poly = geometry.polygon;\n    poly.forEach((point) => {\n      expect(point.parentGeometry).toBe(geometry);\n      expect(() => {\n        (point as { parentGeometry: unknown }).parentGeometry = 10;\n      }).toThrow();\n    });\n  });\n\n  it(\"exposes read-only raw properties\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const poly = geometry.polygon;\n    expect(poly.length).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon.length);\n    poly.forEach((point, ixPoint) => {\n      expect(point.x).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[ixPoint].X);\n      expect(() => {\n        (point as { x: number }).x = 10;\n      }).toThrow();\n      expect(point.y).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[ixPoint].Y);\n      expect(() => {\n        (point as { y: number }).y = 10;\n      }).toThrow();\n    });\n  });\n\n  it(\"stringifies including raw properties\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    const poly = geometry.polygon;\n    poly.forEach((point) => {\n      expect(point.str()).toMatch(/x: [.\\d]+, y: [.\\d]+/);\n    });\n  });\n\n  it(\"dynamically tracks updates to the underlying response object\", () => {\n    const blockCopy: ApiWordBlock = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK));\n    const host = new ApiObjectWrapper(blockCopy);\n    const geometry = new Geometry(blockCopy.Geometry, host);\n    const poly = geometry.polygon;\n    expect(poly[0].x).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0].X);\n    expect(poly[0].y).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0].Y);\n    blockCopy.Geometry.Polygon[0].X *= 2;\n    blockCopy.Geometry.Polygon[0].Y *= 4;\n    expect(poly[0].x).toStrictEqual(blockCopy.Geometry.Polygon[0].X);\n    expect(poly[0].y).toStrictEqual(blockCopy.Geometry.Polygon[0].Y);\n    expect(poly[0].x).not.toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0].X);\n    expect(poly[0].y).not.toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0].Y);\n  });\n\n  it(\"can be instantiated without a parent geometry\", () => {\n    const point = new Point(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0]);\n    expect(point.x).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0].X);\n    expect(point.y).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon[0].Y);\n  });\n});\n\ndescribe(\"Geometry\", () => {\n  it(\"maintains a read-only reference to parent object\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    expect(geometry.parentObject).toBe(host);\n    expect(() => {\n      (geometry as { parentObject: unknown }).parentObject = 10;\n    }).toThrow();\n  });\n\n  it(\"exposes raw BoundingBox properties\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    expect(geometry.polygon.length).toStrictEqual(EXAMPLE_WORD_BLOCK.Geometry.Polygon.length);\n    EXAMPLE_WORD_BLOCK.Geometry.Polygon.forEach((point, ixPoint) => {\n      expect(point.X).toStrictEqual(geometry.polygon[ixPoint].x);\n      expect(point.Y).toStrictEqual(geometry.polygon[ixPoint].y);\n    });\n  });\n\n  it(\"stringifies with reference to bounding box\", () => {\n    const host = new ApiObjectWrapper(EXAMPLE_WORD_BLOCK);\n    const geometry = new Geometry(EXAMPLE_WORD_BLOCK.Geometry, host);\n    expect(geometry.str()).toMatch(/^BoundingBox: /);\n  });\n\n  it(\"returns null orientation if polygon has <2 points\", () => {\n    const blockCopy = JSON.parse(JSON.stringify(EXAMPLE_WORD_BLOCK)) as ApiWordBlock;\n\n    blockCopy.Geometry.Polygon = [blockCopy.Geometry.Polygon[0]];\n    const host = new ApiObjectWrapper(blockCopy);\n    const geometry = new Geometry(blockCopy.Geometry, host);\n    expect(geometry.orientationDegrees()).toBeNull();\n    expect(geometry.orientationRadians()).toBeNull();\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/id.test.ts",
    "content": "import { ApiIdentityDocument } from \"../../src/api-models/id\";\nimport { ApiAnalyzeIdResponse } from \"../../src/api-models/response\";\nimport {\n  IdDocument,\n  IdDocumentField,\n  IdDocumentType,\n  IdFieldType,\n  IdFieldValueType,\n  TextractIdentity,\n} from \"../../src/id\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testDrivingLicenseJson: ApiAnalyzeIdResponse = require(\"../data/analyzeid-test-drivers-license-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testPassportJson: ApiAnalyzeIdResponse = require(\"../data/analyzeid-test-passport-response.json\");\n\nconst singleEmptyDocumentJson: ApiAnalyzeIdResponse = {\n  AnalyzeIDModelVersion: \"unknown\",\n  DocumentMetadata: { Pages: 1 },\n  IdentityDocuments: [\n    {\n      DocumentIndex: 0,\n      IdentityDocumentFields: [],\n    },\n  ],\n};\n\ndescribe(\"TextractIdentity\", () => {\n  it(\"parses the test JSONs without error\", () => {\n    expect(() => {\n      new TextractIdentity(testDrivingLicenseJson);\n    }).not.toThrowError();\n    expect(() => {\n      new TextractIdentity(testPassportJson);\n    }).not.toThrowError();\n  });\n\n  it(\"parses empty input to sensible defaults\", () => {\n    expect(() => {\n      new TextractIdentity({} as ApiAnalyzeIdResponse);\n    }).not.toThrowError();\n    const identity = new TextractIdentity({} as ApiAnalyzeIdResponse);\n    expect(identity.nDocuments).toStrictEqual(0);\n    expect(identity.nPages).toStrictEqual(0);\n  });\n\n  it(\"parses empty documents to sensible defaults\", () => {\n    expect(() => {\n      new IdDocument({} as ApiIdentityDocument);\n    }).not.toThrowError();\n    const doc = new IdDocument({} as ApiIdentityDocument);\n    expect(doc.parentCollection).toBeUndefined();\n    expect(doc.nFields).toStrictEqual(0);\n  });\n\n  it(\"loads ID response metadata\", () => {\n    const identity = new TextractIdentity(testPassportJson);\n    expect(identity.nPages).toStrictEqual(1);\n    expect(identity.modelVersion).toStrictEqual(\"1.0\");\n    expect(identity.dict).toBe(testPassportJson);\n  });\n\n  it(\"navigates ID documents within a response\", () => {\n    const identity = new TextractIdentity(testPassportJson);\n    // List:\n    const docs = identity.listDocuments();\n    expect(docs.length).toStrictEqual(identity.nDocuments);\n    expect(docs.length).toStrictEqual(1);\n    // Iterate:\n    const docsFromIterator = [...identity.iterDocuments()];\n    expect(docsFromIterator.length).toStrictEqual(docs.length);\n    docs.forEach((doc, ixDoc) => {\n      expect(doc).toBe(docsFromIterator[ixDoc]);\n    });\n    // Index:\n    expect(identity.getDocAtIndex(0)).toBe(docs[0]);\n    expect(() => identity.getDocAtIndex(-1)).toThrowError(/index/);\n    expect(() => identity.getDocAtIndex(identity.nDocuments)).toThrowError(/index/);\n  });\n\n  it(\"detects and normalizes ID document types\", () => {\n    const passportIdentity = new TextractIdentity(testPassportJson);\n    expect(passportIdentity.getDocAtIndex(0).idType).toStrictEqual(IdDocumentType.Passport);\n\n    const driverIdentity = new TextractIdentity(testDrivingLicenseJson);\n    expect(driverIdentity.getDocAtIndex(0).idType).toStrictEqual(IdDocumentType.DrivingLicense);\n\n    const nullIdentity = new TextractIdentity(singleEmptyDocumentJson);\n    expect(nullIdentity.getDocAtIndex(0).idType).toStrictEqual(IdDocumentType.Other);\n  });\n\n  it(\"lists and iterates document fields\", () => {\n    const identity = new TextractIdentity(testPassportJson);\n    const doc = identity.getDocAtIndex(0);\n\n    const fields = doc.listFields();\n    expect(fields.length).toStrictEqual(doc.nFields);\n    expect(fields.length).toStrictEqual(20);\n\n    const fieldsFromIterator = [...doc.iterFields()];\n    expect(fieldsFromIterator.length).toStrictEqual(fields.length);\n    fields.forEach((field, ixField) => {\n      expect(field).toBe(fieldsFromIterator[ixField]);\n    });\n  });\n\n  it(\"links fields and documents to parent collections\", () => {\n    const identity = new TextractIdentity(testPassportJson);\n    const doc = identity.getDocAtIndex(0);\n    expect(doc.parentCollection).toBe(identity);\n    expect(doc.parentCollection?.dict).toBe(identity.dict);\n    const field = doc.listFields()[0];\n    expect(field?.parentDocument).toBe(doc);\n    expect(field?.parentDocument?.dict).toBe(doc.dict);\n  });\n\n  it(\"retrieves document field by type\", () => {\n    const identity = new TextractIdentity(testPassportJson);\n    const doc = identity.getDocAtIndex(0);\n    const docNumberField = doc.getFieldByType(IdFieldType.DocumentNumber);\n    expect(docNumberField).toBeTruthy();\n\n    expect(docNumberField?.fieldType).toStrictEqual(IdFieldType.DocumentNumber);\n    expect(docNumberField?.fieldTypeRaw).toStrictEqual(IdFieldType.DocumentNumber);\n    expect(docNumberField?.isValueNormalized).toStrictEqual(false);\n    expect(docNumberField?.value).toStrictEqual(\"0002028373\");\n    expect(docNumberField?.valueConfidence).toBeGreaterThan(1); // 1% very unlikely\n    expect(docNumberField?.valueConfidence).toBeLessThanOrEqual(100);\n    expect(docNumberField?.valueRaw).toStrictEqual(\"0002028373\");\n    expect(docNumberField?.valueType).toStrictEqual(IdFieldValueType.Other);\n  });\n\n  it(\"retrieves undefined for missing fields\", () => {\n    const identity = new TextractIdentity(testDrivingLicenseJson);\n    const doc = identity.getDocAtIndex(0);\n    const unknownField = doc.getFieldByType(IdFieldType.Other);\n    expect(unknownField).toBeUndefined();\n  });\n\n  it(\"parses normalized field values\", () => {\n    const identity = new TextractIdentity(testDrivingLicenseJson);\n    const doc = identity.getDocAtIndex(0);\n    const field = doc.getFieldByType(IdFieldType.ExpirationDate);\n    expect(field).toBeTruthy();\n\n    expect(field?.fieldType).toStrictEqual(IdFieldType.ExpirationDate);\n    expect(field?.isValueNormalized).toStrictEqual(true);\n\n    expect(field?.valueType).toStrictEqual(IdFieldValueType.Date);\n    expect(field?.valueRaw).toStrictEqual(\"01/20/2028\");\n    const fieldValue = field?.value;\n    expect(fieldValue).toMatch(/\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}/);\n\n    expect(field?.valueConfidence).toBeGreaterThan(1); // 1% very unlikely\n    expect(field?.valueConfidence).toBeLessThanOrEqual(100);\n  });\n\n  it(\"normalizes unknown field types\", () => {\n    const field = new IdDocumentField({\n      Type: {\n        Confidence: 90,\n        Text: \"DOES_NOT_EXIST\",\n      },\n      ValueDetection: {\n        Confidence: 90,\n        Text: \"Howdy\",\n      },\n    });\n    expect(field.fieldType).toStrictEqual(IdFieldType.Other);\n    expect(field.parentDocument).toBeUndefined();\n  });\n\n  it(\"stringifies identity documents to plain text\", () => {\n    const identity = new TextractIdentity(testDrivingLicenseJson);\n    const doc = identity.getDocAtIndex(0);\n    const field = doc.listFields()[0];\n    const fieldStr = field.str();\n    expect(fieldStr).toContain(field.fieldType);\n    expect(fieldStr).toContain(field.valueConfidence.toFixed(1) + \"%\");\n    expect(fieldStr).toContain(field.value);\n    const docStr = doc.str();\n    expect(docStr).toContain(fieldStr);\n    expect(identity.str()).toContain(docStr);\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/index.test.ts",
    "content": "describe(\"Top-level index.ts\", () => {\n  it(\"should re-export expected public /api-models properties\", () => {\n    expect(() => {\n      /* eslint-disable @typescript-eslint/no-unused-vars */\n      const {\n        // base:\n        ApiAnswerRelationship,\n        ApiBlockBase,\n        ApiBlockType,\n        ApiChildRelationship,\n        ApiComplexFeaturesRelationship,\n        ApiMergedCellRelationship,\n        ApiRelationship,\n        ApiRelationshipType,\n        ApiTableFooterRelationship,\n        ApiTableTitleRelationship,\n        ApiValueRelationship,\n        isLayoutBlockType,\n        // content:\n        ApiLineBlock,\n        ApiSelectionStatus,\n        ApiSelectionElementBlock,\n        ApiSignatureBlock,\n        ApiTextType,\n        ApiWordBlock,\n        // document:\n        ApiBlock,\n        ApiPageBlock,\n        // expense:\n        ApiExpenseComponentDetection,\n        ApiExpenseDocument,\n        ApiExpenseField,\n        ApiExpenseFieldType,\n        ApiExpenseLineItem,\n        ApiExpenseLineItemGroup,\n        // form:\n        ApiKeyBlock,\n        ApiKeyValueEntityType,\n        ApiKeyValueSetBlock,\n        ApiValueBlock,\n        // geometry:\n        ApiBoundingBox,\n        ApiPoint,\n        ApiGeometry,\n        // id:\n        ApiIdentityDocument,\n        ApiIdentityDocumentField,\n        ApiIdentityDocumentFieldType,\n        ApiIdentityDocumentFieldValueDetection,\n        // layout:\n        ApiLayoutBlock,\n        ApiLayoutFigureBlock,\n        ApiLayoutFooterBlock,\n        ApiLayoutHeaderBlock,\n        ApiLayoutKeyValueBlock,\n        ApiLayoutListBlock,\n        ApiLayoutPageNumberBlock,\n        ApiLayoutSectionHeaderBlock,\n        ApiLayoutTableBlock,\n        ApiLayoutTextBlock,\n        ApiLayoutTitleBlock,\n        // query:\n        ApiQueryBlock,\n        ApiQueryResultBlock,\n        // response:\n        ApiAnalyzeDocumentResponse,\n        ApiAnalyzeExpenseResponse,\n        ApiAnalyzeIdResponse,\n        ApiAsyncDocumentAnalysis,\n        ApiAsyncDocumentTextDetection,\n        /**\n         * @deprecated Backward compatibility for typo: Please use ApiAsyncJobOutputInProgress\n         */\n        ApiAsyncJobOuputInProgress,\n        ApiAsyncJobOutputFailed,\n        ApiAsyncJobOutputInProgress,\n        ApiAsyncJobOutputPartialSuccess,\n        ApiAsyncJobOuputSucceded,\n        ApiDetectDocumentTextResponse,\n        ApiDocumentMetadata,\n        ApiJobStatus,\n        ApiResponsePage,\n        ApiResponsePages,\n        ApiResponseWithContent,\n        ApiResultWarning,\n        // table:\n        ApiCellBlock,\n        ApiMergedCellBlock,\n        ApiTableBlock,\n        ApiTableCellEntityType,\n        ApiTableEntityType,\n        ApiTableFooterBlock,\n        ApiTableTitleBlock,\n        // eslint-disable-next-line @typescript-eslint/no-var-requires\n      } = require(\"../../src\");\n      /* eslint-enable @typescript-eslint/no-unused-vars */\n    }).not.toThrow();\n  });\n\n  it(\"should export expected public TRP components\", () => {\n    expect(() => {\n      /* eslint-disable @typescript-eslint/no-unused-vars */\n      const {\n        // base:\n        ActionOnMissingBlock,\n        ActionOnUnexpectedBlockType,\n        aggregate,\n        AggregationMethod,\n        /**\n         * @deprecated Planned for private-only: Please let us know if you have a use-case for this?\n         */\n        ApiBlockWrapper,\n        argMax,\n        DocumentMetadata,\n        doesFilterAllowBlockType,\n        escapeHtml,\n        getIterable,\n        IApiBlockWrapper,\n        IBlockManager,\n        IBlockTypeFilterOpts,\n        IDocBlocks,\n        IEscapeHtmlOpts,\n        IIndentOpts,\n        indent,\n        IRenderable,\n        IRenderOpts,\n        modalAvg,\n        // content:\n        IWithContent,\n        IWithContentMixinOptions,\n        IWithWords,\n        IWithWordsMixinOptions,\n        SelectionElement,\n        Signature,\n        Word,\n        // document:\n        Cell,\n        Field,\n        FieldKey,\n        FieldValue,\n        Form,\n        FormsComposite,\n        HeaderFooterSegmentModelParams,\n        HeuristicReadingOrderModelParams,\n        Layout,\n        LayoutFigure,\n        LayoutFooter,\n        LayoutHeader,\n        LayoutKeyValue,\n        LayoutPageNumber,\n        LayoutSectionHeader,\n        LayoutTable,\n        LayoutText,\n        LayoutTitle,\n        LayoutList,\n        Line,\n        MergedCell,\n        Page,\n        QueryInstance,\n        QueryInstanceCollection,\n        QueryResult,\n        ReadingOrderLayoutMode,\n        Row,\n        Table,\n        TableFooter,\n        TableTitle,\n        TextractDocument,\n        // expense:\n        ExpenseComponentDetection,\n        ExpenseFieldType,\n        ExpenseField,\n        ExpenseLineItem,\n        ExpenseLineItemGroup,\n        ExpenseDocument,\n        TextractExpense,\n        // geometry:\n        BoundingBox,\n        Point,\n        Geometry,\n        // id:\n        IdDocumentType,\n        IdDocumentField,\n        IdDocument,\n        IdFieldType,\n        IdFieldValueType,\n        TextractIdentity,\n        // layout:\n        ILayoutItem,\n        // query:\n        IFilterQueryOpts,\n        // table:\n        IWithTables,\n        // eslint-disable-next-line @typescript-eslint/no-var-requires\n      } = require(\"../../src\");\n      /* eslint-enable @typescript-eslint/no-unused-vars */\n    }).not.toThrow();\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/layout.test.ts",
    "content": "import { ApiLayoutListBlock } from \"../../src\";\nimport { ApiBlockType, ApiRelationshipType } from \"../../src/api-models/base\";\nimport { ApiAnalyzeDocumentResponse } from \"../../src/api-models/response\";\nimport { indent } from \"../../src/base\";\nimport { LineGeneric } from \"../../src/content\";\nimport { Page, TextractDocument } from \"../../src/document\";\nimport {\n  LayoutFigureGeneric,\n  LayoutFooterGeneric,\n  LayoutHeaderGeneric,\n  LayoutKeyValueGeneric,\n  LayoutListGeneric,\n  LayoutPageNumberGeneric,\n  LayoutSectionHeaderGeneric,\n  LayoutTableGeneric,\n  LayoutTextGeneric,\n  LayoutTitleGeneric,\n} from \"../../src/layout\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst finDocResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/financial-document-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst payStubResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/paystub-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst taxFormResponseJson: ApiAnalyzeDocumentResponse = require(\"../data/form1005-response.json\");\n\n// TODO: Add tests for HTML entity escaping in the individual item types\n// TODO: Consider using an HTML/DOM parser for stricter checks of complex renders?\n// TODO: Functions/props on .layout to fetch different kinds of layout item as separate lists?\n\ndescribe(\"LayoutItemBase and LayoutText\", () => {\n  it(\"exposes basic properties\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const item = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutText) as LayoutTextGeneric<Page>;\n    expect(item).toBeTruthy();\n    // Confidence should be 0-100 scale:\n    expect(item.confidence).toStrictEqual(item.dict.Confidence);\n    expect(item.confidence).toBeGreaterThan(1);\n    expect(item.confidence).toBeLessThanOrEqual(100);\n    expect(item.geometry.parentObject).toBe(item);\n    expect(item.id).toStrictEqual(item.dict.Id);\n    expect(item.parentLayout).toBe(page.layout);\n    expect(item.parentPage).toBe(page);\n  });\n\n  it(\"exposes content which should be text Lines\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const item = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutText) as LayoutTextGeneric<Page>;\n    expect(item).toBeTruthy();\n\n    const childRels = item.dict.Relationships?.find((rel) => rel.Type === ApiRelationshipType.Child);\n    // item.id == 6b065e4c-7fcc-4977-9341-5eef0cd84ead\n    expect(item.nContentItems).toBeGreaterThan(0);\n    expect(item.nContentItems).toStrictEqual(childRels?.Ids.length);\n    const textLines = (childRels?.Ids || []).map((id) => page.getItemByBlockId(id)) as LineGeneric<Page>[];\n    const contentItems = item.listContent();\n    let nItems = 0;\n    for (const line of item.iterContent()) {\n      expect(line.blockType).toStrictEqual(ApiBlockType.Line);\n      expect(line).toBeInstanceOf(LineGeneric);\n      expect(line).toBe(contentItems[nItems]);\n      expect(line).toBe(textLines[nItems]);\n      ++nItems;\n    }\n    expect(nItems).toStrictEqual(item.nContentItems);\n  });\n\n  it(\"exposes explicit textLines matching listContent\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const item = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutText) as LayoutTextGeneric<Page>;\n    expect(item).toBeTruthy();\n\n    expect(item.nTextLines).toStrictEqual(item.nContentItems);\n    const contentList = item.listContent();\n    const lineList = item.listTextLines();\n    expect(lineList.length).toStrictEqual(contentList.length);\n    lineList.forEach((line, ixLine) => {\n      expect(line).toBe(contentList[ixLine]);\n    });\n    let nLines = 0;\n    for (const line of item.iterTextLines()) {\n      expect(line).toBe(contentList[nLines]);\n      ++nLines;\n    }\n  });\n\n  it(\"navigates nested layout items\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    // LAYOUT_TEXT items don't have sub-layouts:\n    const txt = page.layout\n      .listItems()\n      .find((ls) => ls.blockType === ApiBlockType.LayoutText) as LayoutTextGeneric<Page>;\n    expect(txt).toBeTruthy();\n    expect(txt.nLayoutChildrenDirect).toStrictEqual(0);\n    expect(txt.nLayoutChildrenTotal).toStrictEqual(0);\n    expect(txt.listLayoutChildren()).toStrictEqual([]);\n\n    // LAYOUT_LIST items should link to LAYOUT_TEXT children:\n    const lsBlock = finDocResponseJson.Blocks.find(\n      (block) => block.BlockType === ApiBlockType.LayoutList,\n    ) as ApiLayoutListBlock;\n    const lsBlockCids = (lsBlock.Relationships || [])[0].Ids;\n    expect(lsBlockCids.length).toBeGreaterThan(0);\n    const ls = page.layout\n      .listItems()\n      .find((ls) => ls.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n    expect(ls.nLayoutChildrenDirect).toStrictEqual(lsBlockCids.length);\n    expect(ls.nLayoutChildrenTotal).toStrictEqual(lsBlockCids.length);\n    expect(ls.listLayoutChildren().map((c) => c.id)).toStrictEqual(lsBlockCids);\n    let ix = 0;\n    for (const c of ls.iterLayoutChildren()) {\n      expect(c.listLayoutChildren()).toStrictEqual([]);\n      expect(c.id).toStrictEqual(lsBlockCids[ix]);\n      ++ix;\n    }\n  });\n\n  it(\"filters nested layout items\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    // LAYOUT_LIST items should link to LAYOUT_TEXT children:\n    const lsBlock = finDocResponseJson.Blocks.find(\n      (block) => block.BlockType === ApiBlockType.LayoutList,\n    ) as ApiLayoutListBlock;\n    const lsBlockCids = (lsBlock.Relationships || [])[0].Ids;\n    expect(lsBlockCids.length).toBeGreaterThan(0);\n    const ls = page.layout\n      .listItems()\n      .find((ls) => ls.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n    expect(ls.listLayoutChildren().map((c) => c.id)).toStrictEqual(lsBlockCids);\n    expect(\n      ls.listLayoutChildren({ includeBlockTypes: [ApiBlockType.LayoutText] }).map((c) => c.id),\n    ).toStrictEqual(lsBlockCids);\n    expect(ls.listLayoutChildren({ includeBlockTypes: [ApiBlockType.LayoutTable] }).length).toStrictEqual(0);\n    expect(ls.listLayoutChildren({ skipBlockTypes: [ApiBlockType.LayoutText] }).length).toStrictEqual(0);\n  });\n\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const item = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutText) as LayoutTextGeneric<Page>;\n    expect(item).toBeTruthy();\n    expect(item.nContentItems).toBeGreaterThan(1); // Check it has multiple lines\n\n    const textLines = item.listContent();\n\n    expect(item.text).toStrictEqual(textLines.map((l) => l.text).join(\"\\n\"));\n    expect(item.str()).toStrictEqual(item.text);\n    expect(item.html()).toStrictEqual(`<p>\\n${indent(item.text)}\\n</p>`);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const item = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutText) as LayoutTextGeneric<Page>;\n    expect(item).toBeTruthy();\n    expect(item.nContentItems).toBeGreaterThan(1); // Check it has multiple lines\n\n    const textLines = item.listContent();\n    const defaultHtml = `<p>\\n${indent(textLines.map((l) => l.text).join(\"\\n\"))}\\n</p>`;\n    expect(item.html({ skipBlockTypes: [ApiBlockType.LayoutText] })).toStrictEqual(\"\");\n    expect(item.html({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"<p></p>\");\n    expect(item.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(item.html({ includeBlockTypes: [ApiBlockType.LayoutText] })).toStrictEqual(\"<p></p>\");\n    expect(item.html({ includeBlockTypes: [ApiBlockType.LayoutText, ApiBlockType.Line] })).toContain(\n      defaultHtml,\n    );\n  });\n});\n\ndescribe(\"LayoutFigure\", () => {\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(payStubResponseJson);\n    const page = doc.pageNumber(1);\n\n    const fig = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutFigure) as LayoutFigureGeneric<Page>;\n    expect(fig).toBeTruthy();\n    // This test figure doesn't have any test content (TODO: Find or make one that does!)\n    expect(fig.text).toStrictEqual(\"\");\n    expect(fig.html()).toStrictEqual('<div class=\"figure\"></div>');\n    expect(fig.str()).toStrictEqual(\"#### Figure ####\\n################\");\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(payStubResponseJson);\n    const page = doc.pageNumber(1);\n\n    const fig = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutFigure) as LayoutFigureGeneric<Page>;\n    const defaultHtml = '<div class=\"figure\"></div>';\n    expect(fig).toBeTruthy();\n    expect(fig.html({ skipBlockTypes: [ApiBlockType.LayoutFigure] })).toStrictEqual(\"\");\n    expect(fig.html({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(defaultHtml);\n    expect(fig.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(fig.html({ includeBlockTypes: [ApiBlockType.LayoutFigure] })).toStrictEqual(defaultHtml);\n    expect(fig.html({ includeBlockTypes: [] })).toStrictEqual(\"\");\n  });\n});\n\ndescribe(\"LayoutFooter\", () => {\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(taxFormResponseJson);\n    const page = doc.pageNumber(1);\n\n    const foot = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutFooter) as LayoutFooterGeneric<Page>;\n    expect(foot).toBeTruthy();\n    expect(foot.text).toStrictEqual(\"Form 1005\");\n    expect(foot.html()).toStrictEqual(`<div class=\"footer-el\">\\n\\t${foot.text}\\n</div>`);\n    expect(foot.str()).toStrictEqual(`---- Footer text ----\\n${foot.text}\\n---------------------`);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(taxFormResponseJson);\n    const page = doc.pageNumber(1);\n\n    const foot = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutFooter) as LayoutFooterGeneric<Page>;\n    expect(foot).toBeTruthy();\n\n    const emptyHtml = '<div class=\"footer-el\"></div>';\n    expect(foot.html({ skipBlockTypes: [ApiBlockType.LayoutFooter] })).toStrictEqual(\"\");\n    expect(foot.html({ skipBlockTypes: [ApiBlockType.Word] })).toContain(foot.text);\n    expect(foot.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(foot.html({ includeBlockTypes: [ApiBlockType.LayoutFooter] })).toStrictEqual(emptyHtml);\n    expect(foot.html({ includeBlockTypes: [ApiBlockType.LayoutFooter, ApiBlockType.Line] })).toContain(\n      foot.text,\n    );\n  });\n});\n\ndescribe(\"LayoutHeader\", () => {\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const head = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutHeader) as LayoutHeaderGeneric<Page>;\n    expect(head).toBeTruthy();\n    expect(head.text).toStrictEqual(\"IV. Administered Accounts\");\n    expect(head.html()).toStrictEqual(`<div class=\"header-el\">\\n\\t${head.text}\\n</div>`);\n    expect(head.str()).toStrictEqual(`---- Header text ----\\n${head.text}\\n---------------------`);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const head = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutHeader) as LayoutHeaderGeneric<Page>;\n    expect(head).toBeTruthy();\n\n    const emptyHtml = '<div class=\"header-el\"></div>';\n    expect(head.html({ skipBlockTypes: [ApiBlockType.LayoutHeader] })).toStrictEqual(\"\");\n    expect(head.html({ skipBlockTypes: [ApiBlockType.Word] })).toContain(head.text);\n    expect(head.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(head.html({ includeBlockTypes: [ApiBlockType.LayoutHeader] })).toStrictEqual(emptyHtml);\n    expect(head.html({ includeBlockTypes: [ApiBlockType.LayoutHeader, ApiBlockType.Line] })).toContain(\n      head.text,\n    );\n  });\n});\n\ndescribe(\"LayoutKeyValue\", () => {\n  it(\"links to Form Fields when the Textract Forms feature was enabled\", () => {\n    const doc = new TextractDocument(taxFormResponseJson);\n    const page = doc.pageNumber(1);\n    const kv = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutKeyValue) as LayoutKeyValueGeneric<Page>;\n    expect(kv).toBeTruthy();\n\n    const fields = kv.listFields();\n    const kvText = kv.text;\n    expect(fields.length).toStrictEqual(35);\n    expect(kvText).toContain(fields[0].key.text);\n    expect(fields[0].key.text).toStrictEqual(\"1. To (Name and address of employer)\");\n    // Values (e.g. addresses) may be spread across different Lines so not as easy as\n    // expect(kvText).toContain(fields[0].value?.text);\n    expect(kvText).toContain(\"Carlos Salazar\");\n    expect(fields[2].value?.text).toContain(\"Carlos Salazar\");\n\n    let nFields = 0;\n    for (const field of kv.iterFields()) {\n      expect(field).toBe(fields[nFields]);\n      expect(field.parentPage).toBe(kv.parentPage);\n      ++nFields;\n    }\n    expect(nFields).toStrictEqual(fields.length);\n  });\n\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(taxFormResponseJson);\n    const page = doc.pageNumber(1);\n\n    const kv = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutKeyValue) as LayoutKeyValueGeneric<Page>;\n    expect(kv).toBeTruthy();\n\n    expect(kv.text).toStrictEqual(\n      kv\n        .listContent()\n        .map((line) => line.text)\n        .join(\"\\n\"),\n    );\n    expect(kv.str()).toStrictEqual(`---- Key-value ----\\n${kv.text}\\n-------------------`);\n\n    const kvHtml = kv.html();\n    expect(kvHtml).toMatch(/^<div class=\"key-value\">\\n\\t[^\\s]/g); // Starts with HTML tag and indent\n    expect(kvHtml).toMatch(/\\n<\\/div>$/g); // Ends with expected closing tag\n    // As many <input/> tags as linked K-V fields:\n    expect((kvHtml.match(/\\t<input label=\"/g) || []).length).toStrictEqual(kv.listFields().length);\n    // TODO: More fine-grained checks\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(taxFormResponseJson);\n    const page = doc.pageNumber(1);\n\n    const kv = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutKeyValue) as LayoutKeyValueGeneric<Page>;\n    expect(kv).toBeTruthy();\n\n    expect(kv.html({ skipBlockTypes: [ApiBlockType.LayoutKeyValue] })).toStrictEqual(\"\");\n    const emptyHtml = '<div class=\"key-value\"></div>';\n    expect(kv.html({ skipBlockTypes: [ApiBlockType.KeyValueSet, ApiBlockType.Line] })).toStrictEqual(\n      emptyHtml,\n    );\n    expect(kv.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    // TODO: Can we test just skipping KV or just skipping text lines?\n  });\n});\n\ndescribe(\"LayoutPageNumber\", () => {\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const pgnum = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutPageNumber) as LayoutPageNumberGeneric<Page>;\n    expect(pgnum).toBeTruthy();\n    // This test figure doesn't have any test content (TODO: Find or make one that does!)\n    expect(pgnum.text).toStrictEqual(\"57\");\n    expect(pgnum.html()).toStrictEqual(`<div class=\"page-num\">\\n\\t${pgnum.text}\\n</div>`);\n    expect(pgnum.str()).toStrictEqual(`---- Page number: ${pgnum.text}`);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const pgnum = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutPageNumber) as LayoutPageNumberGeneric<Page>;\n    expect(pgnum).toBeTruthy();\n\n    const emptyHtml = '<div class=\"page-num\"></div>';\n    expect(pgnum.html({ skipBlockTypes: [ApiBlockType.LayoutPageNumber] })).toStrictEqual(\"\");\n    expect(pgnum.html({ skipBlockTypes: [ApiBlockType.Word] })).toContain(pgnum.text);\n    expect(pgnum.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(pgnum.html({ includeBlockTypes: [ApiBlockType.LayoutPageNumber] })).toStrictEqual(emptyHtml);\n    expect(pgnum.html({ includeBlockTypes: [ApiBlockType.LayoutPageNumber, ApiBlockType.Line] })).toContain(\n      pgnum.text,\n    );\n  });\n});\n\ndescribe(\"LayoutSectionHeader\", () => {\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(payStubResponseJson);\n    const page = doc.pageNumber(1);\n\n    const head = page.layout\n      .listItems()\n      .find(\n        (item) => item.blockType === ApiBlockType.LayoutSectionHeader,\n      ) as LayoutSectionHeaderGeneric<Page>;\n    expect(head).toBeTruthy();\n    // This test figure doesn't have any test content (TODO: Find or make one that does!)\n    expect(head.text).toStrictEqual(\"Earnings Statement\");\n    expect(head.html()).toStrictEqual(`<h2>\\n\\t${head.text}\\n</h2>`);\n    expect(head.str()).toStrictEqual(\"\\nEarnings Statement\\n------------------\\n\");\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(payStubResponseJson);\n    const page = doc.pageNumber(1);\n\n    const head = page.layout\n      .listItems()\n      .find(\n        (item) => item.blockType === ApiBlockType.LayoutSectionHeader,\n      ) as LayoutSectionHeaderGeneric<Page>;\n    expect(head).toBeTruthy();\n\n    const emptyHtml = \"<h2></h2>\";\n    expect(head.html({ skipBlockTypes: [ApiBlockType.LayoutSectionHeader] })).toStrictEqual(\"\");\n    expect(head.html({ skipBlockTypes: [ApiBlockType.Word] })).toContain(head.text);\n    expect(head.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(head.html({ includeBlockTypes: [ApiBlockType.LayoutSectionHeader] })).toStrictEqual(emptyHtml);\n    expect(head.html({ includeBlockTypes: [ApiBlockType.LayoutSectionHeader, ApiBlockType.Line] })).toContain(\n      head.text,\n    );\n  });\n});\n\ndescribe(\"LayoutTable\", () => {\n  it(\"links to Table objects when the Textract Tables feature was enabled\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n    const tab = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutTable) as LayoutTableGeneric<Page>;\n    expect(tab).toBeTruthy();\n\n    const tables = tab.listTables();\n    const tabText = tab.text;\n    expect(tables.length).toStrictEqual(1);\n    // Cell content (e.g. addresses) may be spread across different lines, so won't work for all:\n    expect(tabText).toContain(tables[0].cellAt(3, 1)?.text);\n    expect(tables[0].cellAt(3, 1)?.text).toStrictEqual(\"Supplementary Financing Facility Subsidy Account\");\n    // expect(tables[0].nColumns).toStrictEqual(0);\n    expect(tabText).toContain(tables[0].cellAt(12, 6)?.text);\n    expect(tables[0].cellAt(12, 6)?.text).toStrictEqual(\"**\");\n\n    let nTables = 0;\n    for (const table of tab.iterTables()) {\n      expect(table).toBe(tables[nTables]);\n      expect(table.parentPage).toBe(tab.parentPage);\n      ++nTables;\n    }\n    expect(nTables).toStrictEqual(tables.length);\n  });\n\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(payStubResponseJson);\n    const page = doc.pageNumber(1);\n    const tab = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutTable) as LayoutTableGeneric<Page>;\n    expect(tab).toBeTruthy();\n\n    // Text:\n    expect(tab.listContent().length).toStrictEqual(68);\n    expect(tab.text).toStrictEqual(\n      tab\n        .listContent()\n        .map((item) => item.text)\n        .join(\"\\n\"),\n    );\n\n    // HTML:\n    const tabHtml = tab.html();\n    const linkedTables = tab.listTables();\n    expect(linkedTables.length).toStrictEqual(2);\n    expect(tabHtml).toMatch(/^<div class=\"table\">\\n\\t[^\\s]/g); // Starts with HTML tag and indent\n    expect(tabHtml).toMatch(/\\t[^\\s].*\\n<\\/div>$/g); // Ends closing HTML tag\n    expect(tabHtml).toContain(indent(linkedTables[0].html()));\n\n    // str() representation:\n    const tabStr = tab.str();\n    expect(tabStr).toMatch(/^|==== Table (structure unknown) ====|\\n/g);\n    expect(tabStr).toMatch(/\\n|==================================|$/g);\n    expect(tabStr).toContain(tab.text);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(payStubResponseJson);\n    const page = doc.pageNumber(1);\n    const tab = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutTable) as LayoutTableGeneric<Page>;\n    expect(tab).toBeTruthy();\n\n    expect(\n      tab.html({ includeBlockTypes: [ApiBlockType.Cell, ApiBlockType.MergedCell, ApiBlockType.Word] }),\n    ).toStrictEqual(\"\");\n    expect(tab.html({ skipBlockTypes: [ApiBlockType.LayoutTable] })).toStrictEqual(\"\");\n    expect(tab.html({ skipBlockTypes: [ApiBlockType.Table] })).toStrictEqual('<div class=\"table\"></div>');\n  });\n});\n\ndescribe(\"LayoutTitle\", () => {\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const head = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutTitle) as LayoutTitleGeneric<Page>;\n    expect(head).toBeTruthy();\n    // This test figure doesn't have any test content (TODO: Find or make one that does!)\n    expect(head.text).toStrictEqual(\"ADMINISTERED ACCOUNTS\");\n    expect(head.html()).toStrictEqual(`<h1>\\n\\t${head.text}\\n</h1>`);\n    expect(head.str()).toStrictEqual(\"\\n\\nADMINISTERED ACCOUNTS\\n=====================\\n\");\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const head = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutTitle) as LayoutTitleGeneric<Page>;\n    expect(head).toBeTruthy();\n\n    const emptyHtml = \"<h1></h1>\";\n    expect(head.html({ skipBlockTypes: [ApiBlockType.LayoutTitle] })).toStrictEqual(\"\");\n    expect(head.html({ skipBlockTypes: [ApiBlockType.Word] })).toContain(head.text);\n    expect(head.html({ includeBlockTypes: [ApiBlockType.Line] })).toStrictEqual(\"\");\n    expect(head.html({ includeBlockTypes: [ApiBlockType.LayoutTitle] })).toStrictEqual(emptyHtml);\n    expect(head.html({ includeBlockTypes: [ApiBlockType.LayoutTitle, ApiBlockType.Line] })).toContain(\n      head.text,\n    );\n  });\n});\n\ndescribe(\"LayoutList\", () => {\n  it(\"exposes LayoutText children\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const ls = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n    const lsContents = ls.listContent();\n    expect(lsContents.length).toBeGreaterThan(1);\n    let nItems = 0;\n    for (const item of ls.iterContent()) {\n      expect(item.blockType).toStrictEqual(ApiBlockType.LayoutText);\n      expect(item).toBeInstanceOf(LayoutTextGeneric<Page>);\n      expect(item).toBe(lsContents[nItems]);\n      ++nItems;\n    }\n    expect(nItems).toStrictEqual(lsContents.length);\n    expect(ls.nContentItems).toStrictEqual(nItems);\n  });\n\n  it(\"exposes child LayoutTexts' textLines\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const ls = page.layout\n      .listItems()\n      .find((ls) => ls.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n\n    const expectedLineIds = ls\n      .listContent()\n      .map((para) => para.listContent().map((item) => item.id))\n      .flat();\n    const listLines = ls.listTextLines();\n    expect(listLines.map((l) => l.id)).toStrictEqual(expectedLineIds);\n    expect(ls.nTextLines).toStrictEqual(listLines.length);\n    let nLines = 0;\n    for (const line of ls.iterTextLines()) {\n      expect(line.id).toStrictEqual(expectedLineIds[nLines]);\n      ++nLines;\n    }\n  });\n\n  it(\"renders bulleted .text\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const ls = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n    const lsText = ls.text;\n    expect((lsText.match(/^ {2}-/gm) || []).length).toStrictEqual(ls.nContentItems); // As many bullets as items\n    expect((lsText.match(/^\\s{0,1}[^\\s]/gm) || []).length).toStrictEqual(0); // No lines starting without indent\n  });\n\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const ls = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n    expect(ls.str()).toStrictEqual(ls.text);\n    const lsHtml = ls.html();\n    expect(lsHtml).toMatch(/^<ul>\\n\\t<li>/g); // Starts with ul and li tags\n    expect(lsHtml).toMatch(/<\\/li>\\n<\\/ul>$/g); // Ends closing li and ul tags\n    expect((lsHtml.match(/<li>/g) || []).length).toStrictEqual(ls.nContentItems);\n    // TODO: Stricter checks?\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const ls = page.layout\n      .listItems()\n      .find((item) => item.blockType === ApiBlockType.LayoutList) as LayoutListGeneric<Page>;\n    expect(ls).toBeTruthy();\n    expect(ls.str()).toStrictEqual(ls.text);\n    expect(ls.html({ includeBlockTypes: [ApiBlockType.LayoutText] })).toStrictEqual(\"\");\n    expect(ls.html({ includeBlockTypes: [ApiBlockType.LayoutList] })).toStrictEqual(\"<ul></ul>\");\n    expect(ls.html({ skipBlockTypes: [ApiBlockType.LayoutText] })).toStrictEqual(\"<ul></ul>\");\n    const noTextHtml =\n      \"<ul>\\n\" +\n      indent(\n        ls\n          .listContent()\n          .map(() => \"<li><p></p></li>\")\n          .join(\"\\n\"),\n      ) +\n      \"\\n</ul>\";\n    expect(ls.html({ skipBlockTypes: [ApiBlockType.Line] })).toStrictEqual(noTextHtml);\n    expect(ls.html({ includeBlockTypes: [ApiBlockType.LayoutList, ApiBlockType.LayoutText] })).toStrictEqual(\n      noTextHtml,\n    );\n  });\n});\n\ndescribe(\"Layout\", () => {\n  it(\"loads and navigates all layout elements per page (by default)\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n    expect(page.layout.nItemsTotal).toStrictEqual(14);\n    expect(page.layout.nItems).toStrictEqual(page.layout.nItemsTotal); // (Deprecated alias)\n    expect(page.layout.parentPage).toBe(page);\n\n    const iterAllItems = [...page.layout.iterItems()];\n    const itemAllList = page.layout.listItems();\n    expect(iterAllItems.length).toStrictEqual(page.layout.nItemsTotal);\n    expect(itemAllList.length).toStrictEqual(page.layout.nItemsTotal);\n    for (let ix = 0; ix < page.layout.nItemsTotal; ++ix) {\n      expect(iterAllItems[ix]).toBe(itemAllList[ix]);\n    }\n\n    const layoutItem = itemAllList[0];\n    expect(layoutItem.parentPage).toBe(page);\n    expect(layoutItem.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(layoutItem.confidence).toBeLessThanOrEqual(100);\n  });\n\n  it(\"filters layout items by allow-listing block types\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const iterItems = [...page.layout.iterItems({ includeBlockTypes: ApiBlockType.LayoutHeader })];\n    const listItems = page.layout.listItems({ includeBlockTypes: ApiBlockType.LayoutHeader });\n    expect(iterItems.length).toStrictEqual(listItems.length);\n    expect(listItems.length).toStrictEqual(2);\n  });\n\n  it(\"filters layout items by skipping block types\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const iterItems = [\n      ...page.layout.iterItems({ skipBlockTypes: [ApiBlockType.LayoutHeader, ApiBlockType.LayoutFooter] }),\n    ];\n    const listItems = page.layout.listItems({\n      skipBlockTypes: [ApiBlockType.LayoutHeader, ApiBlockType.LayoutFooter],\n    });\n    expect(iterItems.length).toStrictEqual(listItems.length);\n    expect(listItems.length).toStrictEqual(12);\n  });\n\n  it(\"cannot broaden filters beyond Layout* elements\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const iterItems = [...page.layout.iterItems({ includeBlockTypes: [ApiBlockType.Line] })];\n    const listItems = page.layout.listItems({ includeBlockTypes: [ApiBlockType.Line] });\n    expect(iterItems.length).toStrictEqual(0);\n    expect(listItems.length).toStrictEqual(0);\n  });\n\n  it(\"loads and navigates top-level layout elements per page\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n    expect(page.layout.nItemsDirect).toStrictEqual(9);\n    expect(page.layout.parentPage).toBe(page);\n\n    const iterTopItems = [...page.layout.iterItems({ deep: false })];\n    const itemTopList = page.layout.listItems({ deep: false });\n    expect(iterTopItems.length).toStrictEqual(page.layout.nItemsDirect);\n    expect(itemTopList.length).toStrictEqual(itemTopList.length);\n    const nestedChildIds = new Set<string>();\n    for (let ix = 0; ix < itemTopList.length; ++ix) {\n      expect(iterTopItems[ix]).toBe(itemTopList[ix]);\n      iterTopItems[ix].listLayoutChildren({ deep: true }).forEach((child) => nestedChildIds.add(child.id));\n    }\n    expect(itemTopList.length + nestedChildIds.size).toStrictEqual(page.layout.nItemsTotal);\n  });\n\n  it(\"renders semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    // Text:\n    const layText = page.layout.text;\n    expect(layText).toStrictEqual(\n      page.layout\n        .listItems({ deep: false })\n        .map((item) => item.text)\n        .join(\"\\n\\n\"),\n    );\n\n    // str() representation:\n    const layStr = page.layout.str();\n    expect(layStr).toMatch(/^\\n#### BEGIN PAGE LAYOUT #################\\n/g);\n    expect(layStr).toMatch(/\\n#### END PAGE LAYOUT {3}#################\\n$/g);\n    expect(layStr).toContain(\n      page.layout\n        .listItems({ deep: false })\n        .map((item) => item.str())\n        .join(\"\\n\\n\"),\n    );\n\n    // HTML:\n    const layHtml = page.layout.html();\n    expect(layHtml).toStrictEqual(\n      page.layout\n        .listItems({ deep: false })\n        .map((item) => item.html())\n        .join(\"\\n\"),\n    );\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    const origHtml = page.layout.html();\n    expect(origHtml).toContain('<div class=\"header-el\">');\n    expect(page.layout.html({ skipBlockTypes: [ApiBlockType.LayoutHeader] })).not.toContain(\n      '<div class=\"header-el\">',\n    );\n    const titleOnlyHtml = page.layout.html({ includeBlockTypes: [ApiBlockType.LayoutTitle] });\n    expect(titleOnlyHtml).toContain(\"<h1>\");\n    expect(titleOnlyHtml).not.toContain(\"<p>\");\n  });\n\n  it(\"does not duplicate content of nested layout items in semantic representations\", () => {\n    const doc = new TextractDocument(finDocResponseJson);\n    const page = doc.pageNumber(1);\n\n    // When LayoutList contains LayoutText children, those same LayoutText items will be listed as\n    // children of PAGE. Check that we don't duplicate those nested items in semantic reprs:\n\n    // Text:\n    const layText = page.layout.text;\n    expect(layText).toStrictEqual(\n      page.layout\n        .listItems({ deep: false })\n        .map((item) => item.text)\n        .join(\"\\n\\n\"),\n    );\n    expect((layText.match(/Transfer out represents transfer to the CCR Trust/g) || []).length).toStrictEqual(\n      1,\n    );\n\n    // str() representation:\n    const layStr = page.layout.str();\n    expect(layStr).toMatch(/^\\n#### BEGIN PAGE LAYOUT #################\\n/g);\n    expect(layStr).toMatch(/\\n#### END PAGE LAYOUT {3}#################\\n$/g);\n    expect(layStr).toContain(\n      page.layout\n        .listItems({ deep: false })\n        .map((item) => item.str())\n        .join(\"\\n\\n\"),\n    );\n    expect((layStr.match(/Transfer out represents transfer to the CCR Trust/g) || []).length).toStrictEqual(\n      1,\n    );\n\n    // HTML:\n    const layHtml = page.layout.html();\n    expect(layHtml).toStrictEqual(\n      page.layout\n        .listItems({ deep: false })\n        .map((item) => item.html())\n        .join(\"\\n\"),\n    );\n    expect((layHtml.match(/Transfer out represents transfer to the CCR Trust/g) || []).length).toStrictEqual(\n      1,\n    );\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/query.test.ts",
    "content": "import { ApiAnswerRelationship, ApiBlockType, ApiRelationshipType } from \"../../src/api-models/base\";\nimport { ApiQueryBlock, ApiQueryResultBlock } from \"../../src/api-models/query\";\nimport { ApiAnalyzeDocumentResponse, ApiResponsePage } from \"../../src/api-models/response\";\nimport { QueryInstance, QueryResult, TextractDocument } from \"../../src/document\";\nimport { QueryInstanceCollectionGeneric } from \"../../src/query\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testResponseJson: ApiResponsePage = require(\"../data/test-query-response.json\");\n\nconst REFERENCE_QUERY_HTML = `<div class=\"query\">\n\\t<p>What is the patient name?</p>\n\\t<ul>\n\\t\\t<li>Mary Major</li>\n\\t</ul>\n</div>`;\n\nconst REFERENCE_QUERY_STR = `Query\n==========\nQuestion: What is the patient name?\nAnswers:\n - Mary Major`;\n\nconst REFERENCE_QUERIES_HTML = `<div class=\"queries\">\n\\t<div class=\"query\">\n\\t\\t<p>What's the patient's date of birth</p>\n\\t\\t<ul></ul>\n\\t</div>\n\\t<div class=\"query\">\n\\t\\t<p>What is the patient name?</p>\n\\t\\t<ul>\n\\t\\t\\t<li>Mary Major</li>\n\\t\\t</ul>\n\\t</div>\n\\t<div class=\"query\">\n\\t\\t<p>What is the lot number of the 1st dose?</p>\n\\t\\t<ul>\n\\t\\t\\t<li>AA1234</li>\n\\t\\t</ul>\n\\t</div>\n\\t<div class=\"query\">\n\\t\\t<p>Who is the manufacturer of the 2nd dose?</p>\n\\t\\t<ul>\n\\t\\t\\t<li>Pfizer</li>\n\\t\\t</ul>\n\\t</div>\n</div>`;\n\ndescribe(\"QueryResult\", () => {\n  it(\"renders plain word text for HTML and str\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    const topResult = page.queries.getQueryByAlias(\"name\")?.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    expect(topResult.text).toStrictEqual(\"Mary Major\");\n    expect(topResult.html()).toStrictEqual(topResult.text);\n    expect(topResult.str()).toStrictEqual(topResult.text);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    const topResult = page.queries.getQueryByAlias(\"name\")?.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    expect(topResult.html({ includeBlockTypes: [ApiBlockType.QueryResult] })).toStrictEqual(topResult.text);\n    expect(topResult.html({ includeBlockTypes: [ApiBlockType.Query] })).toStrictEqual(\"\");\n    expect(topResult.html({ skipBlockTypes: [ApiBlockType.QueryResult] })).toStrictEqual(\"\");\n    expect(topResult.html({ skipBlockTypes: [ApiBlockType.Query] })).toStrictEqual(topResult.text);\n  });\n\n  it(\"escapes forbidden entities in word text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const page = new TextractDocument(responseCopy).pageNumber(1);\n    const topResult = page.queries.getQueryByAlias(\"name\")?.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    topResult.dict.Text = `Text-with-<html>-&-'quote-marks\"`;\n    const customHtml = topResult.html();\n    expect(customHtml).toContain(\"&lt;\");\n    expect(customHtml).toContain(\"&gt;\");\n    expect(customHtml).not.toContain(\"<html>\");\n    expect(customHtml).toContain(\"-&amp;-\");\n    expect(customHtml).not.toContain(\"-&-\");\n    expect(customHtml).toContain(`'quote-marks\"`);\n  });\n});\n\ndescribe(\"QueryInstance\", () => {\n  it(\"renders an informational str() representation\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n\n    expect(query.text).toStrictEqual(\"What is the patient name?\");\n    expect(query.topResult?.text).toStrictEqual(\"Mary Major\");\n    expect(query.str()).toStrictEqual(REFERENCE_QUERY_STR);\n  });\n\n  it(\"renders semantic HTML\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n\n    expect(query.text).toStrictEqual(\"What is the patient name?\");\n    expect(query.topResult?.text).toStrictEqual(\"Mary Major\");\n    expect(query.html()).toStrictEqual(REFERENCE_QUERY_HTML);\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    expect(query.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(query.html({ includeBlockTypes: [ApiBlockType.Query, ApiBlockType.QueryResult] })).toStrictEqual(\n      REFERENCE_QUERY_HTML,\n    );\n    const includeQueryOnly = query.html({ includeBlockTypes: [ApiBlockType.Query] });\n    expect(includeQueryOnly).toContain(query.text);\n    expect(includeQueryOnly).not.toContain(\"<ul>\");\n    const includeResultsOnly = query.html({ includeBlockTypes: [ApiBlockType.QueryResult] });\n    expect(includeResultsOnly).toContain(topResult.text);\n    expect(includeResultsOnly).not.toContain(query.text);\n\n    expect(query.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(REFERENCE_QUERY_HTML);\n    expect(query.html({ skipBlockTypes: [ApiBlockType.Query, ApiBlockType.QueryResult] })).toStrictEqual(\"\");\n    const skipQueryOnly = query.html({ skipBlockTypes: [ApiBlockType.Query] });\n    expect(skipQueryOnly).toContain(topResult.text);\n    expect(skipQueryOnly).not.toContain(query.text);\n    const skipResultsOnly = query.html({ skipBlockTypes: [ApiBlockType.QueryResult] });\n    expect(skipResultsOnly).toContain(query.text);\n    expect(skipResultsOnly).not.toContain(topResult.text);\n  });\n\n  it(\"escapes forbidden entities in query+response text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testResponseJson));\n    const page = new TextractDocument(responseCopy).pageNumber(1);\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n    const topResult = page.queries.getQueryByAlias(\"name\")?.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    const origQueryText = query.dict.Query.Text;\n    query.dict.Query.Text = `<p class=\"injected\"> & ${origQueryText}`;\n    const origAnsText = topResult.dict.Text;\n    topResult.dict.Text = `'hello'&</html> ${origAnsText}`;\n\n    const queryHtml = query.html();\n    expect(queryHtml).toContain(`&lt;p class=\"injected\"&gt; &amp; ${origQueryText}`);\n    expect(queryHtml).toContain(`'hello'&amp;&lt;/html&gt; ${origAnsText}`);\n  });\n});\n\ndescribe(\"QueryCollection\", () => {\n  it(\"loads and navigates queries at page level\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    expect(page.queries.nQueries).toStrictEqual(4);\n    expect(page.queries.parentPage).toBe(page);\n\n    const queryList = page.queries.listQueries();\n    expect(queryList.length).toStrictEqual(page.queries.nQueries);\n    const iterQueries = [...page.queries.iterQueries()];\n    expect(iterQueries.length).toStrictEqual(page.queries.nQueries);\n    for (let ix = 0; ix < page.queries.nQueries; ++ix) {\n      expect(iterQueries[ix]).toBe(queryList[ix]);\n    }\n\n    const query = queryList[0];\n    expect(query.parentPage).toBe(page);\n\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n    expect(topResult.parentPage).toBe(page);\n    expect(topResult.parentQuery).toBe(query);\n    expect(topResult.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(topResult.confidence).toBeLessThanOrEqual(100);\n  });\n\n  it(\"fetches page queries by exact alias\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    expect(page.queries.getQueryByAlias(\"doesnotexist\")).toBeUndefined();\n\n    // Cast type to keep IDE happy because it can't tell the following expect() will error on undef\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n\n    expect(query.alias).toStrictEqual(\"name\");\n    expect(query.text).toStrictEqual(\"What is the patient name?\");\n    expect(query.nResults).toStrictEqual(1);\n\n    // Cast type to keep IDE happy because it can't tell the following expect() will error on undef\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n    expect(topResult.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(topResult.confidence).toBeLessThanOrEqual(100);\n    expect(topResult.geometry).toBeTruthy(); // Non-interpreted answer\n    expect(topResult.geometry?.parentObject).toBe(topResult);\n    expect(topResult.text).toStrictEqual(\"Mary Major\");\n  });\n\n  it(\"searches page queries by alias\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    expect(page.queries.searchQueriesByAlias(\"doesnotexist\")).toStrictEqual([]);\n\n    const queries = page.queries.searchQueriesByAlias(\"NAM\");\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(queries.length).toStrictEqual(1);\n    expect(queries).toContain(query);\n  });\n\n  it(\"fetches page queries by exact query text\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    expect(page.queries.getQueryByQuestion(\"doesnotexist\")).toBeUndefined();\n\n    // Cast type to keep IDE happy because it can't tell the following expect() will error on undef\n    const query = page.queries.getQueryByQuestion(\"What is the lot number of the 1st dose?\") as QueryInstance;\n    expect(query).toBeTruthy();\n\n    expect(query.alias).toStrictEqual(\"lot_number\");\n    expect(query.text).toStrictEqual(\"What is the lot number of the 1st dose?\");\n    expect(query.nResults).toStrictEqual(1);\n\n    // Cast type to keep IDE happy because it can't tell the following expect() will error on undef\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n    expect(topResult.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(topResult.confidence).toBeLessThanOrEqual(100);\n    expect(topResult.geometry).toBeTruthy(); // Non-interpreted answer\n    expect(topResult.geometry?.parentObject).toBe(topResult);\n    expect(topResult.text).toStrictEqual(\"AA1234\");\n  });\n\n  it(\"searches page queries by query text\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    expect(page.queries.searchQueriesByQuestion(\"doesnotexist\")).toStrictEqual([]);\n\n    const queries = page.queries.searchQueriesByQuestion(\"what\");\n    expect(queries.length).toStrictEqual(3);\n    const q1 = page.queries.getQueryByAlias(\"lot_number\") as QueryInstance;\n    const q2 = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(queries).toContain(q1);\n    expect(queries).toContain(q2);\n  });\n\n  it(\"doesn't retrieve queries by empty alias/text\", () => {\n    // (Important to avoid unexpected behaviour if search term is unexpectedly empty and doc\n    // contains un-aliased queries)\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n\n    const noAliasQueries = page.queries.listQueries().filter((q) => typeof q.alias === \"undefined\");\n    expect(noAliasQueries.length).toBeGreaterThan(0); // Test doc should contain some un-aliased queries\n    expect(page.queries.getQueryByAlias(undefined as unknown as string)).toBeUndefined();\n    expect(page.queries.getQueryByAlias(\"\")).toBeUndefined();\n    expect(page.queries.searchQueriesByAlias(undefined as unknown as string)).toStrictEqual([]);\n    expect(page.queries.searchQueriesByAlias(\"\")).toStrictEqual([]);\n\n    // Test doc doesn't actually contain any empty-text queries\n    expect(page.queries.getQueryByQuestion(undefined as unknown as string)).toBeUndefined();\n    expect(page.queries.getQueryByQuestion(\"\")).toBeUndefined();\n    expect(page.queries.searchQueriesByQuestion(undefined as unknown as string)).toStrictEqual([]);\n    expect(page.queries.searchQueriesByQuestion(\"\")).toStrictEqual([]);\n  });\n\n  it(\"ranks query answers by descending confidence\", () => {\n    // Load (a new copy of) the response JSON:\n    const response: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n    // Since our sample doc only has single-answer queries, synthetically create extra answers for\n    // a question:\n    const queryBlock = (response.Blocks.filter((b) => b.BlockType === \"QUERY\") as ApiQueryBlock[])[0];\n    const queryText = queryBlock.Query.Text;\n    const answerRel = queryBlock.Relationships?.filter((r) => r.Type === ApiRelationshipType.Answer)[0];\n    if (!answerRel) throw new Error(\"No answer relationship found in test response JSON\");\n    const dummyAnswer1: ApiQueryResultBlock = {\n      BlockType: ApiBlockType.QueryResult,\n      Confidence: 3,\n      Id: \"DUMMY-BLOCK-1\",\n      Page: 0,\n      Text: \"Dummy Answer 1\",\n      SearchKey: \"Dummy Answer 1\",\n    };\n    response.Blocks.push(dummyAnswer1);\n    answerRel.Ids.push(dummyAnswer1.Id);\n    const dummyAnswer2: ApiQueryResultBlock = {\n      BlockType: ApiBlockType.QueryResult,\n      Confidence: 4,\n      Id: \"DUMMY-BLOCK-2\",\n      Page: 0,\n      Text: \"Dummy Answer 2\",\n      SearchKey: \"Dummy Answer 2\",\n    };\n    response.Blocks.push(dummyAnswer2);\n    answerRel.Ids.push(dummyAnswer2.Id);\n\n    // Check the TRP behaves as expected:\n    // TODO: This test is not ideal at the moment because test doc only has single-answer Qs.\n    const page = new TextractDocument(response).pageNumber(1);\n    // Cast types to keep IDE happy because it can't tell the following expect() will error on undef\n    const query = page.queries.getQueryByQuestion(queryText) as QueryInstance;\n    expect(query).toBeTruthy();\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    const results = query.listResultsByConfidence();\n    const resConfs = results.map((r) => r.confidence);\n    expect(results[0]).toBe(topResult);\n    expect(topResult.confidence).toStrictEqual(Math.max(...resConfs));\n    expect(results[results.length - 1].confidence).toStrictEqual(Math.min(...resConfs));\n  });\n\n  it(\"produces human-readable query representations\", () => {\n    // TODO: This test is not ideal at the moment because test doc only has single-answer Qs.\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    // Cast types to keep IDE happy because it can't tell the following expect() will error on undef\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    expect(topResult.str()).toStrictEqual(topResult.text);\n    const queryStr = query.str();\n    expect(queryStr).toContain(\"Query\");\n    expect(queryStr).toContain(query.text);\n    expect(queryStr).toContain(\"Answers\");\n    expect(queryStr).toContain(topResult.text);\n\n    const collStr = page.queries.str();\n    for (const query of page.queries.iterQueries()) {\n      expect(collStr).toContain(query.text);\n      if (query.topResult) {\n        expect(collStr).toContain(query.topResult.text);\n      }\n    }\n  });\n\n  it(\"renders empty HTML div when no queries present\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    const queries = new QueryInstanceCollectionGeneric([], page);\n    expect(queries.html()).toStrictEqual('<div class=\"queries\"></div>');\n  });\n\n  it(\"filters HTML rendering by block type\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    expect(page.queries.html()).toBeTruthy();\n    expect(page.queries.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(\n      page.queries.html({ skipBlockTypes: [ApiBlockType.Query, ApiBlockType.QueryResult] }),\n    ).toStrictEqual(\"\");\n  });\n\n  it(\"provides access to underlying API result objects\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    // Cast types to keep IDE happy because it can't tell the following expect() will error on undef\n    const query = page.queries.getQueryByAlias(\"name\") as QueryInstance;\n    expect(query).toBeTruthy();\n    const topResult = query.topResult as QueryResult;\n    expect(topResult).toBeTruthy();\n\n    expect(query.dict.Query.Text).toStrictEqual(query.text);\n    expect(topResult.dict.Confidence).toStrictEqual(topResult.confidence);\n    expect(topResult.dict.Geometry?.Polygon[0].X).toStrictEqual(topResult.geometry?.polygon[0].x);\n  });\n\n  it(\"filters queries without answers\", () => {\n    // Load (a new copy of) the response JSON:\n    const response: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n    // Explicitly remove one of the query answers:\n    const queryBlocks = response.Blocks.filter((b) => b.BlockType === \"QUERY\") as ApiQueryBlock[];\n    queryBlocks[0].Relationships = [];\n    const queryText = queryBlocks[0].Query.Text;\n\n    // Check the TRP omits the unanswered query from results when instructed:\n    const page = new TextractDocument(response).pageNumber(1);\n    expect(page.queries.nQueries).toStrictEqual(queryBlocks.length);\n    expect(page.queries.listQueries().length).toStrictEqual(queryBlocks.length);\n    expect(page.queries.listQueries({ skipUnanswered: true }).length).toStrictEqual(queryBlocks.length - 1);\n    expect(page.queries.searchQueriesByQuestion(queryText).length).toStrictEqual(1);\n    expect(page.queries.searchQueriesByQuestion(queryText, { skipUnanswered: true }).length).toStrictEqual(0);\n\n    // Check unanswered queries behave as expected when accessing results:\n    const unansQueries = page.queries.listQueries().filter((q) => q.nResults === 0);\n    expect(unansQueries[0].topResult).toBeUndefined();\n    expect(unansQueries[0].listResultsByConfidence()).toStrictEqual([]);\n  });\n\n  it(\"warns on and gracefully handles missing answer blocks\", () => {\n    // Load (a new copy of) the response JSON:\n    const response: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n    // Add a dummy answer to one of the queries:\n    const queryBlocks = response.Blocks.filter(\n      (b) =>\n        b.BlockType === \"QUERY\" &&\n        b.Relationships &&\n        b.Relationships.filter((r) => r.Type === ApiRelationshipType.Answer).length,\n    ) as ApiQueryBlock[];\n    const modifiedRel = queryBlocks[0].Relationships?.filter(\n      (r) => r.Type === ApiRelationshipType.Answer,\n    )[0] as ApiAnswerRelationship;\n    modifiedRel.Ids.push(\"DUMMY-BLOCK-1\");\n\n    const consoleWarnMock = jest.spyOn(console, \"warn\").mockImplementation();\n    // Check the TRP omits the unanswered query from results when instructed:\n    const page = new TextractDocument(response).pageNumber(1);\n    expect(consoleWarnMock).toHaveBeenCalledTimes(1); // Warn on create\n\n    // No errors when iterating through results:\n    for (const query of page.queries.iterQueries()) {\n      for (const res of query.listResultsByConfidence()) {\n        expect(typeof res.text).toStrictEqual(\"string\"); // No dummy answer entries\n      }\n    }\n\n    expect(consoleWarnMock).toHaveBeenCalledTimes(1); // No extra warnings on iteration\n    consoleWarnMock.mockRestore();\n  });\n\n  it(\"warns on and gracefully handles non-QUERY_RESULT answer blocks\", () => {\n    // Load (a new copy of) the response JSON:\n    const response: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n    // Add a block of unexpected type to a query's ANSWER relationship:\n    const altBlocks = response.Blocks.filter((b) => b.BlockType === \"QUERY\") as ApiQueryBlock[];\n    const queryBlocks = response.Blocks.filter(\n      (b) =>\n        b.BlockType === \"QUERY\" &&\n        b.Relationships &&\n        b.Relationships.filter((r) => r.Type === ApiRelationshipType.Answer).length,\n    ) as ApiQueryBlock[];\n    const modifiedRel = queryBlocks[0].Relationships?.filter(\n      (r) => r.Type === ApiRelationshipType.Answer,\n    )[0] as ApiAnswerRelationship;\n    modifiedRel.Ids.push(altBlocks[0].Id);\n\n    const consoleWarnMock = jest.spyOn(console, \"warn\").mockImplementation();\n    // Check the TRP omits the unanswered query from results when instructed:\n    const page = new TextractDocument(response).pageNumber(1);\n    expect(consoleWarnMock).toHaveBeenCalledTimes(1); // Warn on create\n\n    // No errors when iterating through results:\n    for (const query of page.queries.iterQueries()) {\n      for (const res of query.listResultsByConfidence()) {\n        expect(res.blockType).toStrictEqual(ApiBlockType.QueryResult); // No dummy answer entries\n      }\n    }\n\n    expect(consoleWarnMock).toHaveBeenCalledTimes(1); // No extra warnings on iteration\n    consoleWarnMock.mockRestore();\n  });\n\n  it(\"summarizes the text of all queries and responses on a page\", () => {\n    const page = new TextractDocument(testResponseJson).pageNumber(1);\n    // Cast type to keep IDE happy because it can't tell the following expect() will error on undef\n    const pageQueriesText = page.queries.text;\n    for (const query of page.queries.iterQueries()) {\n      expect(pageQueriesText).toContain(query.text);\n      for (const res of query.listResultsByConfidence()) {\n        expect(pageQueriesText).toContain(res.text);\n      }\n    }\n  });\n\n  it(\"renders all queries to combined semantic HTML\", () => {\n    // Load (a new copy of) the response JSON:\n    const response: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n    // Remove answers from one question to ensure there's an unanswered query in the example:\n    const queryBlocks = response.Blocks.filter(\n      (b) => b.BlockType === \"QUERY\" && b.Query.Text === \"What's the patient's date of birth\",\n    ) as ApiQueryBlock[];\n    queryBlocks[0].Relationships = [];\n\n    const page = new TextractDocument(response).pageNumber(1);\n    expect(page.queries.html()).toStrictEqual(REFERENCE_QUERIES_HTML);\n  });\n});\n"
  },
  {
    "path": "src-js/test/unit/table.test.ts",
    "content": "import { ApiBlockType, ApiRelationshipType } from \"../../src/api-models/base\";\nimport { ApiAnalyzeDocumentResponse, ApiResponsePage } from \"../../src/api-models/response\";\nimport {\n  ApiCellBlock,\n  ApiTableBlock,\n  ApiTableCellEntityType,\n  ApiTableEntityType,\n} from \"../../src/api-models/table\";\nimport { AggregationMethod } from \"../../src/base\";\nimport { Page, TextractDocument, Word } from \"../../src/document\";\nimport { CellGeneric, MergedCellGeneric, TableFooterGeneric, TableTitleGeneric } from \"../../src/table\";\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testTableMergedCellsJson: ApiResponsePage = require(\"../data/table-example-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testResponseJson: ApiResponsePage = require(\"../data/test-response.json\");\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst testTitleFootersJson: ApiAnalyzeDocumentResponse = require(\"../data/financial-document-response.json\");\n\nconst REFERENCE_TABLE_NO_CAPTION_HTML = `<table>\n\\t<tr>\n\\t\\t<th>Date</th>\n\\t\\t<th>Description</th>\n\\t\\t<th>Credit</th>\n\\t\\t<th>Debit</th>\n\\t\\t<th>Balance</th>\n\\t</tr>\n\\t<tr>\n\\t\\t<td colspan=\"4\">Previous Balance</td>\n\\t\\t<td>11,000</td>\n\\t</tr>\n\\t<tr>\n\\t\\t<td rowspan=\"2\">2022-01-01</td>\n\\t\\t<td>Payment - Credit Card</td>\n\\t\\t<td></td>\n\\t\\t<td>1,000</td>\n\\t\\t<td>10,000</td>\n\\t</tr>\n\\t<tr>\n\\t\\t<td>Payment - Utility</td>\n\\t\\t<td></td>\n\\t\\t<td>40</td>\n\\t\\t<td>9,960</td>\n\\t</tr>\n\\t<tr>\n\\t\\t<td>2022-01-02</td>\n\\t\\t<td>Deposit</td>\n\\t\\t<td>1,000</td>\n\\t\\t<td></td>\n\\t\\t<td>10,960</td>\n\\t</tr>\n\\t<tr>\n\\t\\t<td colspan=\"4\">Ending Balance</td>\n\\t\\t<td>10,960</td>\n\\t</tr>\n</table>`;\n\nconst REFERENCE_TABLE_WITH_HEADER_HTML = `<table>\n\\t<caption style=\"caption-side: top\">\n\\t\\tPrevious Employment History\n\\t</caption>\n\\t<tr>\n\\t\\t<th>Start Date</th>\n\\t\\t<th>End Date</th>\n\\t\\t<th>Employer Name</th>\n\\t\\t<th>Position Held</th>\n\\t\\t<th>Reason for leaving</th>\n\\t</tr>\n\\t<tr>\n\\t\\t<td>1/15/2009</td>\n\\t\\t<td>6/30/2011</td>\n\\t\\t<td>Any Company</td>\n\\t\\t<td>Assistant baker</td>\n\\t\\t<td>relocated</td>\n\\t</tr>\n\\t<tr>\n\\t\\t<td>7/1/2011</td>\n\\t\\t<td>8/10/2013</td>\n\\t\\t<td>Example Corp.</td>\n\\t\\t<td>Baker</td>\n\\t\\t<td>better opp.</td>\n\\t</tr>\n\\t<tr>\n\\t\\t<td>8/15/2013</td>\n\\t\\t<td>Present</td>\n\\t\\t<td>AnyCompany</td>\n\\t\\t<td>head baker</td>\n\\t\\t<td>N/A, current</td>\n\\t</tr>\n</table>`;\n\ndescribe(\"MergedCell\", () => {\n  it(\"links through to sub-cells\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    expect(doc.pageNumber(1).nTables).toStrictEqual(1);\n\n    const table = doc.pageNumber(1).listTables()[0];\n\n    // Horizontal merge:\n    const horzMergedCell = table.cellAt(2, 1) as MergedCellGeneric<Page>;\n    expect(horzMergedCell.blockType).toStrictEqual(ApiBlockType.MergedCell);\n    expect(horzMergedCell.nSubCells).toStrictEqual(4);\n    expect(horzMergedCell.text).toStrictEqual(\"Previous Balance\");\n    const horzSubCells = horzMergedCell.listSubCells();\n    expect(horzSubCells.length).toStrictEqual(horzMergedCell.nSubCells);\n    let nSubCells = 0;\n    for (const subCell of horzMergedCell.iterSubCells()) {\n      expect(subCell).toBe(horzSubCells[nSubCells]);\n      expect(\"Previous Balance\".indexOf(subCell.text)).toBeGreaterThanOrEqual(0);\n      ++nSubCells;\n    }\n    expect(nSubCells).toStrictEqual(horzMergedCell.nSubCells);\n  });\n\n  it(\"renders semantic HTML\", () => {\n    // With colspans and rowspans:\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table).toBeTruthy();\n    const hMergedCell = table.cellAt(2, 1) as MergedCellGeneric<Page>;\n    expect(hMergedCell.html()).toStrictEqual('<td colspan=\"4\">Previous Balance</td>');\n    const vMergedCell = table.cellAt(3, 1) as MergedCellGeneric<Page>;\n    expect(vMergedCell.html()).toStrictEqual('<td rowspan=\"2\">2022-01-01</td>');\n\n    // Using <th> for header cells:\n    const docWithEntityTypes = new TextractDocument(testResponseJson);\n    const tableWithHeader = docWithEntityTypes.pageNumber(1).tableAtIndex(0);\n    expect(tableWithHeader).toBeTruthy();\n    const headerCell = table.cellAt(1, 1);\n    if (!headerCell) throw new Error(\"Expected table cell not to be undefined\");\n    expect(headerCell.html()).toStrictEqual(\"<th>Date</th>\");\n  });\n\n  it(\"filters rendered HTML by block type\", () => {\n    // With colspans and rowspans:\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table).toBeTruthy();\n\n    // Merged cell:\n    const hMergedCell = table.cellAt(2, 1) as MergedCellGeneric<Page>;\n    expect(hMergedCell.html()).toStrictEqual('<td colspan=\"4\">Previous Balance</td>');\n    expect(hMergedCell.html({ includeBlockTypes: [ApiBlockType.MergedCell] })).toStrictEqual(\n      '<td colspan=\"4\"></td>',\n    );\n    expect(hMergedCell.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(hMergedCell.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual('<td colspan=\"4\"></td>');\n    expect(hMergedCell.html({ skipBlockTypes: [ApiBlockType.MergedCell] })).toStrictEqual(\"\");\n\n    // Standard non-merged cell (th):\n    const docWithEntityTypes = new TextractDocument(testResponseJson);\n    const tableWithHeader = docWithEntityTypes.pageNumber(1).tableAtIndex(0);\n    expect(tableWithHeader).toBeTruthy();\n    const headerCell = table.cellAt(1, 1) as CellGeneric<Page>;\n    expect(headerCell.html()).toStrictEqual(\"<th>Date</th>\");\n    expect(headerCell.html({ includeBlockTypes: [ApiBlockType.Cell] })).toStrictEqual(\"<th></th>\");\n    expect(headerCell.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(headerCell.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"<th></th>\");\n    expect(headerCell.html({ skipBlockTypes: [ApiBlockType.Cell] })).toStrictEqual(\"\");\n  });\n\n  it(\"escapes forbidden entities in cell text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testTableMergedCellsJson));\n    const doc = new TextractDocument(responseCopy);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table).toBeTruthy();\n    const cell = table.cellAt(2, 1) as MergedCellGeneric<Page>;\n    expect(cell).toBeTruthy();\n    const word = cell.listContent().filter((c) => c.blockType === ApiBlockType.Word)[0] as Word;\n    const origText = word.dict.Text;\n    word.dict.Text = `<!DOCTYPE><html>'woof\"${origText}`;\n    // Check the content gets escaped:\n    expect(cell.html()).toContain(`&lt;!DOCTYPE&gt;&lt;html&gt;'woof\"${origText}`);\n  });\n});\n\ndescribe(\"TableFooter\", () => {\n  it(\"exposes table footer properties\", () => {\n    const doc = new TextractDocument(testTitleFootersJson);\n    const tableFooter = doc.pageNumber(1).tableAtIndex(0).firstFooter as TableFooterGeneric<Page>;\n    expect(tableFooter).not.toBeUndefined();\n    expect(tableFooter.blockType).toStrictEqual(ApiBlockType.TableFooter);\n    expect(tableFooter.confidence).toBeGreaterThan(1);\n    expect(tableFooter.confidence).toBeLessThan(100);\n    expect(tableFooter.text).toStrictEqual(\"** Less than US$50,000.\");\n    expect(tableFooter.html()).toStrictEqual(tableFooter.text);\n    const tableFooterStr = tableFooter.str();\n    expect(tableFooterStr.indexOf(\"==== [Table footer] ====\\n\")).toStrictEqual(0);\n    expect(tableFooterStr.indexOf(tableFooter.text)).toStrictEqual(\"==== [Table footer] ====\\n\".length);\n  });\n\n  it(\"escapes forbidden entities in footer text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testTitleFootersJson));\n    const doc = new TextractDocument(responseCopy);\n    const tableFooter = doc.pageNumber(1).tableAtIndex(0).firstFooter as TableFooterGeneric<Page>;\n    expect(tableFooter).not.toBeUndefined();\n\n    // Manipulate the underlying dict to insert non-HTML-safe text:\n    const word = tableFooter.listWords()[0];\n    const origText = word.dict.Text;\n    word.dict.Text = `<!DOCTYPE><html>'woof\"${origText}`;\n    // Check the content gets escaped:\n    expect(tableFooter.html()).toContain(`&lt;!DOCTYPE&gt;&lt;html&gt;'woof\"${origText}`);\n  });\n\n  it(\"filters rendered HTML by block type\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testTitleFootersJson));\n    const doc = new TextractDocument(responseCopy);\n    const tableFooter = doc.pageNumber(1).tableAtIndex(0).firstFooter as TableFooterGeneric<Page>;\n    expect(tableFooter).not.toBeUndefined();\n    expect(tableFooter.html({ includeBlockTypes: [ApiBlockType.TableFooter] })).toStrictEqual(\"\");\n    expect(\n      tableFooter.html({ includeBlockTypes: [ApiBlockType.TableFooter, ApiBlockType.Word] }),\n    ).toStrictEqual(tableFooter.text);\n    expect(tableFooter.html({ skipBlockTypes: [ApiBlockType.TableFooter] })).toStrictEqual(\"\");\n    expect(tableFooter.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(tableFooter.html({ skipBlockTypes: [ApiBlockType.TableTitle] })).toStrictEqual(tableFooter.text);\n  });\n});\n\ndescribe(\"TableTitle\", () => {\n  it(\"exposes table title properties\", () => {\n    const doc = new TextractDocument(testTitleFootersJson);\n    const tableTitle = doc.pageNumber(1).tableAtIndex(0).firstTitle as TableTitleGeneric<Page>;\n    expect(tableTitle).not.toBeUndefined();\n    expect(tableTitle.blockType).toStrictEqual(ApiBlockType.TableTitle);\n    expect(tableTitle.confidence).toBeGreaterThan(1);\n    expect(tableTitle.confidence).toBeLessThan(100);\n    expect(tableTitle.listWords().length).toBeGreaterThan(0);\n    expect(tableTitle.text).toStrictEqual(\"The changes in total assets of these accounts were as follows:\");\n    expect(tableTitle.html()).toStrictEqual(tableTitle.text);\n    const tableTitleStr = tableTitle.str();\n    expect(tableTitleStr.indexOf(\"==== [Table header] ====\\n\")).toStrictEqual(0);\n    expect(tableTitleStr.indexOf(tableTitle.text)).toStrictEqual(\"==== [Table header] ====\\n\".length);\n  });\n\n  it(\"escapes forbidden entities in title text for html()\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testTitleFootersJson));\n    const doc = new TextractDocument(responseCopy);\n    const tableTitle = doc.pageNumber(1).tableAtIndex(0).firstTitle as TableTitleGeneric<Page>;\n    expect(tableTitle).not.toBeUndefined();\n\n    // Manipulate the underlying dict to insert non-HTML-safe text:\n    const word = tableTitle.listWords()[0];\n    const origText = word.dict.Text;\n    word.dict.Text = `<!DOCTYPE><html>'woof\"${origText}`;\n    // Check the content gets escaped:\n    expect(tableTitle.html()).toContain(`&lt;!DOCTYPE&gt;&lt;html&gt;'woof\"${origText}`);\n  });\n\n  it(\"filters rendered HTML by block type\", () => {\n    const responseCopy = JSON.parse(JSON.stringify(testTitleFootersJson));\n    const doc = new TextractDocument(responseCopy);\n    const tableTitle = doc.pageNumber(1).tableAtIndex(0).firstTitle as TableTitleGeneric<Page>;\n    expect(tableTitle).not.toBeUndefined();\n    expect(tableTitle.html({ includeBlockTypes: [ApiBlockType.TableTitle] })).toStrictEqual(\"\");\n    expect(\n      tableTitle.html({ includeBlockTypes: [ApiBlockType.TableTitle, ApiBlockType.Word] }),\n    ).toStrictEqual(tableTitle.text);\n    expect(tableTitle.html({ skipBlockTypes: [ApiBlockType.TableTitle] })).toStrictEqual(\"\");\n    expect(tableTitle.html({ skipBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(tableTitle.html({ skipBlockTypes: [ApiBlockType.TableFooter] })).toStrictEqual(tableTitle.text);\n  });\n});\n\ndescribe(\"Table\", () => {\n  it(\"loads and navigates basic table properties\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    expect(page.nTables).toStrictEqual(1);\n\n    const iterTables = [...page.iterTables()];\n    const tableList = page.listTables();\n    const table = page.tableAtIndex(0);\n    expect(iterTables.length).toStrictEqual(page.nTables);\n    expect(tableList.length).toStrictEqual(page.nTables);\n    expect(table).toBe(iterTables[0]);\n    for (let ix = 0; ix < page.nLines; ++ix) {\n      expect(iterTables[ix]).toBe(tableList[ix]);\n    }\n\n    expect(table.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n    expect(table.confidence).toBeLessThanOrEqual(100);\n    expect(table.geometry.parentObject).toBe(table);\n  });\n\n  it(\"gracefully handles tables with missing referenced cell blocks\", () => {\n    // Create a clone to avoid messing up the shared imported object:\n    const responseCopy: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testTableMergedCellsJson));\n    // Prepend a non-existent block ID to every table's list of cells and list of merged_cells:\n    const tableBlocks = responseCopy.Blocks.filter((b) => b.BlockType === \"TABLE\") as ApiTableBlock[];\n    let nFakeCells = 0;\n    let nFakeMergedCells = 0;\n    tableBlocks.forEach((block) => {\n      block.Relationships.forEach((rel) => {\n        if (rel.Type === ApiRelationshipType.Child) {\n          rel.Ids.unshift(`DOESNOTEXIST-${++nFakeCells}`);\n        } else if (rel.Type === ApiRelationshipType.MergedCell) {\n          rel.Ids.unshift(`DOESNOTEXIST-${++nFakeMergedCells}`);\n        }\n      });\n    });\n    if (nFakeCells === 0) {\n      throw new Error(\"Test input doc had no table cell relationships to modify\");\n    }\n    if (nFakeMergedCells === 0) {\n      throw new Error(\"Test input doc had no table merged_cell relationships to modify\");\n    }\n\n    const consoleWarnMock = jest.spyOn(console, \"warn\").mockImplementation();\n    const doc = new TextractDocument(responseCopy);\n    // Should have warned once per inserted dummy block ID:\n    expect(consoleWarnMock).toHaveBeenCalledTimes(nFakeCells + nFakeMergedCells);\n    consoleWarnMock.mockRestore();\n\n    // doc tables should still be functional:\n    expect(() => {\n      for (const page of doc.iterPages()) {\n        for (const table of page.iterTables()) {\n          table.cellAt(1, 1);\n        }\n      }\n    }).not.toThrow();\n  });\n\n  it(\"warns on unknown Relationship types in TABLE blocks\", () => {\n    // Create a clone to avoid messing up the shared imported object:\n    const responseCopy: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testTableMergedCellsJson));\n    // Prepend a non-existent block ID to every table's list of cells and list of merged_cells:\n    const tableBlocks = responseCopy.Blocks.filter((b) => b.BlockType === \"TABLE\") as ApiTableBlock[];\n    const dummyRel = {\n      Ids: [\"DUMMY-1\", \"DUMMY-2\"],\n      Type: \"FAKE_RELATIONSHIP_TYPE\" as ApiRelationshipType.Child,\n    };\n    tableBlocks[0].Relationships.push(dummyRel);\n\n    const consoleWarnMock = jest.spyOn(console, \"warn\").mockImplementation();\n    const doc = new TextractDocument(responseCopy);\n    // Should have warned once per nonexistent cell, plus once for the rel type:\n    expect(consoleWarnMock).toHaveBeenCalledTimes(1 + dummyRel.Ids.length);\n    for (const callArgs of consoleWarnMock.mock.calls) {\n      // Either a warning about the non-existent block ID or the fake relationship\n      expect(callArgs[0]).toMatch(/(DUMMY-\\d|FAKE_RELATIONSHIP_TYPE)/g);\n    }\n    consoleWarnMock.mockRestore();\n\n    // doc tables should still be functional:\n    expect(() => {\n      for (const page of doc.iterPages()) {\n        for (const table of page.iterTables()) {\n          table.cellAt(1, 1);\n        }\n      }\n    }).not.toThrow();\n  });\n\n  // TODO: Is this the preferred behavior?\n  // At one time it would just gloss over missing content blocks, and e.g.QueryInstance still does\n  it(\"parses, but errors on content access for table cells with missing referenced content blocks\", () => {\n    // Create a clone to avoid messing up the shared imported object:\n    const responseCopy: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testTableMergedCellsJson));\n    // Prepend a non-existent block ID to every table cell's list of content blocks:\n    const cellBlocks = responseCopy.Blocks.filter((b) => b.BlockType === \"CELL\") as ApiCellBlock[];\n    let nFakeBlocks = 0;\n    cellBlocks.forEach((block) => {\n      if (!block.Relationships) return;\n      block.Relationships.filter((rel) => rel.Type === ApiRelationshipType.Child).forEach((rel) => {\n        rel.Ids.unshift(`DOESNOTEXIST-${++nFakeBlocks}`);\n      });\n    });\n    if (nFakeBlocks === 0) {\n      throw new Error(\"Test input doc had no table cell child relationships to modify\");\n    }\n\n    const consoleWarnMock = jest.spyOn(console, \"warn\").mockImplementation();\n    const doc = new TextractDocument(responseCopy);\n    // Should have warned once per inserted dummy block ID:\n    expect(consoleWarnMock).toHaveBeenCalledTimes(nFakeBlocks);\n    consoleWarnMock.mockRestore();\n\n    // doc tables should still be functional:\n    expect(() => {\n      for (const page of doc.iterPages()) {\n        for (const table of page.iterTables()) {\n          for (const row of table.iterRows()) {\n            for (const cell of row.iterCells()) {\n              cell.text;\n            }\n          }\n        }\n      }\n    }).toThrow();\n  });\n\n  it(\"differentiates structured from semi-structured tables\", () => {\n    // Create a clone to avoid messing up the shared imported object:\n    const responseCopy: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n\n    // Check correct behaviour on the response object as-is:\n    const doc = new TextractDocument(responseCopy);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table.tableType).toStrictEqual(ApiTableEntityType.StructuredTable);\n\n    // Find and manipulate the TABLE block, and check the parser responds correctly:\n    const tableBlocks = responseCopy.Blocks.filter((block) => block.BlockType === ApiBlockType.Table);\n    expect(tableBlocks.length).toStrictEqual(1);\n    const tableBlock = tableBlocks[0] as ApiTableBlock;\n\n    tableBlock.EntityTypes = [\"SEMI_STRUCTURED_TABLE\" as ApiTableEntityType];\n    expect(new TextractDocument(responseCopy).pageNumber(1).tableAtIndex(0).tableType).toStrictEqual(\n      ApiTableEntityType.SemiStructuredTable,\n    );\n\n    tableBlock.EntityTypes = [\n      \"STRUCTURED_TABLE\" as ApiTableEntityType,\n      \"SEMI_STRUCTURED_TABLE\" as ApiTableEntityType,\n    ];\n    expect(() => new TextractDocument(responseCopy).pageNumber(1).tableAtIndex(0).tableType).toThrow(\n      \"multiple conflicting table types\",\n    );\n\n    delete tableBlock.EntityTypes;\n    expect(new TextractDocument(responseCopy).pageNumber(1).tableAtIndex(0).tableType).toBeNull();\n  });\n\n  it(\"throws errors on out-of-bounds tables\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    expect(() => page.tableAtIndex(-1)).toThrow(/Table index/);\n    expect(() => page.tableAtIndex(page.nTables)).toThrow(/Table index/);\n  });\n\n  it(\"loads table dimensions\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    expect(doc.pageNumber(1).nTables).toStrictEqual(1);\n\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table.nColumns).toStrictEqual(5);\n    expect(table.nRows).toStrictEqual(4);\n    expect(table.nCells).toStrictEqual(20);\n  });\n\n  it(\"indexes table cells by row and column\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    expect(doc.pageNumber(1).nTables).toStrictEqual(1);\n\n    const table = [...doc.pageNumber(1).iterTables()][0];\n\n    expect(table.cellAt(1, 2)?.text).toMatch(\"End Date\");\n    expect(table.cellAt(2, 2, { ignoreMerged: false })?.text).toMatch(\"6/30/2011\");\n    // Explicitly ignoring merged cells:\n    expect(table.cellAt(1, 2, { ignoreMerged: true })?.text).toMatch(\"End Date\");\n    expect(table.cellAt(2, 2, { ignoreMerged: true })?.text).toMatch(\"6/30/2011\");\n  });\n\n  it(\"indexes merged cells by row and column\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    expect(doc.pageNumber(1).nTables).toStrictEqual(1);\n\n    const table = doc.pageNumber(1).listTables()[0];\n\n    // Horizontal merge:\n    expect(table.cellAt(2, 1)?.text).toMatch(\"Previous Balance\");\n    expect(table.cellAt(2, 4)?.text).toMatch(\"Previous Balance\");\n    expect(table.cellAt(2, 4, { ignoreMerged: true })?.text).toStrictEqual(\"\");\n    // Merged cell contents equals sum of split cell contents:\n    const mergedContents = table.cellAt(2, 1)?.listContent() || [];\n    const splitContents = [1, 2, 3, 4]\n      .map((ixCol) => table.cellAt(2, ixCol, { ignoreMerged: true })?.listContent() || [])\n      .flat();\n    expect(mergedContents.map((c) => c.id)).toStrictEqual(splitContents.map((c) => c.id));\n    // Vertical merge:\n    expect(table.cellAt(3, 1)?.text).toMatch(\"2022-01-01\");\n    expect(table.cellAt(4, 1)?.text).toMatch(\"2022-01-01\");\n    expect(table.cellAt(3, 1, { ignoreMerged: true })?.text).toStrictEqual(\"\");\n\n    // Check overall total number of cells reflects the merged cells:\n    expect(table.nCells).toBeLessThan(table.nColumns * table.nRows);\n    expect(table.nCells).toStrictEqual(23);\n  });\n\n  it(\"fetches table row cells by index\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const table = doc.pageNumber(1).listTables()[0];\n\n    // No merges:\n    expect(table.cellsAt(1, null).length).toStrictEqual(5);\n    expect(table.cellsAt(1, null, { ignoreMerged: true }).length).toStrictEqual(5);\n    // Merges in row, no merges across rows:\n    expect(table.cellsAt(2, null).length).toStrictEqual(2);\n    expect(table.cellsAt(2, null, { ignoreMerged: true }).length).toStrictEqual(5);\n    // Includes cells merged across rows:\n    expect(table.cellsAt(3, null).length).toStrictEqual(5);\n    expect(table.cellsAt(3, null, { ignoreMerged: true }).length).toStrictEqual(5);\n  });\n\n  it(\"fetches table column cells by index\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const table = doc.pageNumber(1).listTables()[0];\n\n    // No merges:\n    expect(table.cellsAt(null, 5).length).toStrictEqual(6);\n    expect(table.cellsAt(null, 5, { ignoreMerged: true }).length).toStrictEqual(6);\n    // Cross-column merges:\n    expect(table.cellsAt(null, 4).length).toStrictEqual(6);\n    expect(table.cellsAt(null, 4, { ignoreMerged: true }).length).toStrictEqual(6);\n    // Cross-column and in-column merges:\n    expect(table.cellsAt(null, 1).length).toStrictEqual(5);\n    expect(table.cellsAt(null, 1, { ignoreMerged: true }).length).toStrictEqual(6);\n  });\n\n  it(\"iterates table rows\", () => {\n    const doc = new TextractDocument(testResponseJson);\n\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const tableRows = table.listRows();\n    expect(tableRows.length).toStrictEqual(table.nRows);\n    let nRows = 0;\n    for (const row of table.iterRows()) {\n      ++nRows;\n      expect(row.parentTable).toBe(table);\n    }\n    expect(nRows).toStrictEqual(table.nRows);\n    expect(nRows).toStrictEqual(4);\n  });\n\n  it(\"iterates table rows with cross-row merged cell repetition\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    // Row 3 or 4 will be one cell short if a cross-row merged cell is not repeated:\n    const expectedCellsPerRow = [5, 2, 5, 5, 5, 2];\n\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const tableRows = table.listRows();\n    expect(tableRows.length).toStrictEqual(table.nRows);\n    let nRows = 0;\n    for (const row of table.iterRows({ repeatMultiRowCells: true })) {\n      expect(row.nCells).toStrictEqual(expectedCellsPerRow[nRows]);\n      ++nRows;\n    }\n    expect(nRows).toStrictEqual(table.nRows);\n    expect(nRows).toStrictEqual(6);\n  });\n\n  it(\"iterates table rows ignoring merged cells and repeating spanned cells\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const expectedCellsPerRow = [5, 5, 5, 5, 5, 5];\n\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const tableRows = table.listRows();\n    expect(tableRows.length).toStrictEqual(table.nRows);\n    let nRows = 0;\n    for (const row of table.iterRows({ ignoreMerged: true, repeatMultiRowCells: true })) {\n      expect(row.nCells).toStrictEqual(expectedCellsPerRow[nRows]);\n      ++nRows;\n    }\n    expect(nRows).toStrictEqual(table.nRows);\n    expect(nRows).toStrictEqual(6);\n  });\n\n  it(\"lists table rows\", () => {\n    const doc = new TextractDocument(testResponseJson);\n\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table.listRows({ repeatMultiRowCells: true }).length).toStrictEqual(table.nRows);\n  });\n\n  it(\"navigates table row cells\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const expectedRowLengths = [5, 2, 5, 4, 5, 2];\n    let nCellsTotal = 0;\n    let nRows = 0;\n    let targetCellFound = false;\n    for (const row of table.iterRows({ repeatMultiRowCells: false })) {\n      const rowCells = row.listCells();\n      expect(rowCells.length).toStrictEqual(expectedRowLengths[nRows]);\n      let nCells = 0;\n      ++nRows;\n      const indexedCells = table.cellsAt(nRows, null).filter((c) => c.rowIndex === nRows);\n      expect(rowCells.length).toStrictEqual(indexedCells.length);\n      for (const cell of row.iterCells()) {\n        ++nCells;\n        ++nCellsTotal;\n        expect(indexedCells.indexOf(cell)).toBeGreaterThanOrEqual(0);\n        expect(rowCells.indexOf(cell)).toBeGreaterThanOrEqual(0);\n        expect(cell.confidence).toBeGreaterThan(1); // (<1% very unlikely)\n        expect(cell.confidence).toBeLessThanOrEqual(100);\n        expect(cell.geometry.parentObject).toBe(cell);\n        expect(cell.str()).toStrictEqual(cell.text);\n        const cellContent = cell.listContent();\n        expect(cellContent.length).toStrictEqual(cell.nContentItems);\n        const cellContentByIteration = [...cell.iterContent()];\n        expect(cellContent.length).toStrictEqual(cellContentByIteration.length);\n        cellContentByIteration.forEach((item, ixItem) => {\n          expect(item).toBe(cellContent[ixItem]);\n        });\n        if (nRows === 4 && nCells === 1) {\n          expect(cell.text).toMatch(\"Payment - Utility\");\n          expect(\n            cellContent\n              .filter((c) => c.blockType === ApiBlockType.Word)\n              .map((w) => (w as Word).text)\n              .join(\" \"),\n          ).toMatch(\"Payment - Utility\");\n          targetCellFound = true;\n        }\n      }\n      expect(nCells).toStrictEqual(row.nCells);\n    }\n    expect(nCellsTotal).toStrictEqual(expectedRowLengths.reduce((acc, next) => acc + next, 0));\n    expect(targetCellFound).toStrictEqual(true);\n  });\n\n  it(\"aggregates OCR confidence of cell content\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const table = page.tableAtIndex(0);\n    const firstCell = table.cellAt(1, 1);\n\n    expect(firstCell).toBeTruthy();\n    const cellContentRaw = firstCell?.listContent();\n    expect(cellContentRaw?.length).toBeGreaterThan(1); // (to validate different agg methods)\n    const cellContent = cellContentRaw || []; // Give us nice typings for the rest of this suite\n\n    const minOcrConf = firstCell?.getOcrConfidence(AggregationMethod.Min);\n    expect(minOcrConf).toStrictEqual(Math.min(...cellContent.map((c) => c.confidence)));\n    const maxOcrConf = firstCell?.getOcrConfidence(AggregationMethod.Max);\n    expect(maxOcrConf).toStrictEqual(Math.max(...cellContent.map((c) => c.confidence)));\n\n    const avgOcrConf = firstCell?.getOcrConfidence();\n    expect(firstCell?.getOcrConfidence(AggregationMethod.Mean)).toStrictEqual(avgOcrConf);\n    expect(avgOcrConf).toStrictEqual(\n      cellContent.reduce((acc, next) => acc + next.confidence, 0) / cellContent.length,\n    );\n  });\n\n  it(\"aggregates OCR confidence of row content\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const table = page.tableAtIndex(0);\n    const firstRow = table.rowAt(1);\n    const firstRowCells = firstRow.listCells();\n\n    // List the OCR confidence scores of all content in this row:\n    let contentConfs: number[] = [];\n    firstRowCells.forEach((cell) => {\n      contentConfs = contentConfs.concat(cell.listContent().map((c) => c.confidence));\n    });\n\n    // Check the row contains multiple content to ensure the different aggs are well tested:\n    expect(contentConfs.length).toBeGreaterThan(1);\n\n    // Check the OCR confidences scores behave as expected:\n    expect(firstRow.getOcrConfidence(AggregationMethod.Max)).toStrictEqual(Math.max(...contentConfs));\n    expect(firstRow.getOcrConfidence(AggregationMethod.Min)).toStrictEqual(Math.min(...contentConfs));\n    expect(firstRow.getOcrConfidence()).toStrictEqual(\n      contentConfs.reduce((acc, next) => acc + next, 0) / contentConfs.length,\n    );\n  });\n\n  it(\"aggregates structure confidence of row cells\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const table = page.tableAtIndex(0);\n    const firstRow = table.rowAt(1);\n    const cellConfs: number[] = firstRow.listCells().map((c) => c.confidence);\n\n    // Check the row contains multiple content to ensure the different aggs are well tested:\n    expect(cellConfs.length).toBeGreaterThan(1);\n\n    // Check the aggregate structure confidences scores behave as expected:\n    expect(firstRow.getConfidence(AggregationMethod.Max)).toStrictEqual(Math.max(...cellConfs));\n    expect(firstRow.getConfidence(AggregationMethod.Min)).toStrictEqual(Math.min(...cellConfs));\n    expect(firstRow.getConfidence()).toStrictEqual(\n      cellConfs.reduce((acc, next) => acc + next, 0) / cellConfs.length,\n    );\n  });\n\n  it(\"aggregates OCR confidence of table content\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const table = page.tableAtIndex(0);\n    const cells = ([] as Array<CellGeneric<Page> | MergedCellGeneric<Page>>).concat(\n      ...table.listRows().map((row) => row.listCells()),\n    );\n\n    // List the OCR confidence scores of all content in this row:\n    let contentConfs: number[] = [];\n    cells.forEach((cell) => {\n      contentConfs = contentConfs.concat(cell.listContent().map((c) => c.confidence));\n    });\n\n    // Check the table contains multiple content to ensure the different aggs are well tested:\n    expect(contentConfs.length).toBeGreaterThan(1);\n\n    // Check the OCR confidences scores behave as expected:\n    expect(table.getOcrConfidence(AggregationMethod.Max)).toStrictEqual(Math.max(...contentConfs));\n    expect(table.getOcrConfidence(AggregationMethod.Min)).toStrictEqual(Math.min(...contentConfs));\n    expect(table.getOcrConfidence()).toStrictEqual(\n      contentConfs.reduce((acc, next) => acc + next, 0) / contentConfs.length,\n    );\n  });\n\n  it(\"exposes raw table dicts with traversal up and down the tree\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const table = page.tableAtIndex(0);\n    const firstCell = table.cellAt(1, 1);\n    expect(firstCell?.parentTable.dict).toBe(table.dict);\n    expect(firstCell?.parentTable.parentPage.dict).toBe(page.dict);\n  });\n\n  it(\"queries table cell EntityTypes\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const page = doc.pageNumber(1);\n    const table = page.tableAtIndex(0);\n    expect(\n      table\n        .rowAt(1)\n        .listCells()\n        .filter((c) => c.hasEntityTypes(ApiTableCellEntityType.ColumnHeader)).length,\n    ).toStrictEqual(5);\n\n    // Query one type at a time:\n    for (const row of table.iterRows()) {\n      for (const cell of row.iterCells()) {\n        if (cell.rowIndex === 1) {\n          expect(cell.hasEntityTypes(ApiTableCellEntityType.ColumnHeader)).toStrictEqual(true);\n        } else {\n          expect(cell.hasEntityTypes(ApiTableCellEntityType.ColumnHeader)).toBeFalsy();\n        }\n      }\n    }\n\n    // Query multiple types at once:\n    const firstCell = table.cellAt(1, 1);\n    expect(\n      firstCell?.hasEntityTypes([ApiTableCellEntityType.ColumnHeader, ApiTableCellEntityType.Footer]),\n    ).toStrictEqual(true);\n    expect(\n      firstCell?.hasEntityTypes([ApiTableCellEntityType.Summary, ApiTableCellEntityType.Footer]),\n    ).toStrictEqual(false);\n  });\n\n  it(\"navigates table titles\", () => {\n    const doc = new TextractDocument(testTitleFootersJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const tableTitles = table.listTitles();\n    expect(tableTitles.length).toBeGreaterThan(0);\n    let ixTitle = 0;\n    for (const title of table.iterTitles()) {\n      expect(title).toBe(tableTitles[ixTitle]);\n      ++ixTitle;\n    }\n    expect(ixTitle).toStrictEqual(tableTitles.length);\n    expect(table.firstTitle).toBe(tableTitles[0]);\n\n    // Perform as expected when no titles present:\n    const noTitlesDoc = new TextractDocument(testTableMergedCellsJson);\n    const noTitlesTable = noTitlesDoc.pageNumber(1).tableAtIndex(0);\n    expect(noTitlesTable.listTitles().length).toStrictEqual(0);\n    expect(noTitlesTable.firstTitle).toBeUndefined();\n  });\n\n  it(\"navigates table footers\", () => {\n    const doc = new TextractDocument(testTitleFootersJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const tableFooters = table.listFooters();\n    expect(tableFooters.length).toBeGreaterThan(0);\n    let ixFooter = 0;\n    for (const footer of table.iterFooters()) {\n      expect(footer).toBe(tableFooters[ixFooter]);\n      ++ixFooter;\n    }\n    expect(ixFooter).toStrictEqual(tableFooters.length);\n    expect(table.firstFooter).toBe(tableFooters[0]);\n\n    // Perform as expected when no footers present:\n    const noFootersDoc = new TextractDocument(testResponseJson);\n    const noFootersTable = noFootersDoc.pageNumber(1).tableAtIndex(0);\n    expect(noFootersTable.listFooters().length).toStrictEqual(0);\n    expect(noFootersTable.firstFooter).toBeUndefined();\n  });\n\n  it(\"stringifies tables to contain each row's representation\", () => {\n    const doc = new TextractDocument(testResponseJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const rowStrs = table.listRows().map((row) => row.str());\n    const tableStr = table.str();\n    let lastDetectedLoc = 0;\n    rowStrs.forEach((rowStr) => {\n      const rowStrLoc = tableStr.slice(lastDetectedLoc).indexOf(rowStr);\n      expect(rowStrLoc).toBeGreaterThanOrEqual(0);\n      lastDetectedLoc += rowStrLoc + rowStr.length;\n    });\n  });\n\n  it(\"extracts text content from tables\", () => {\n    const doc = new TextractDocument(testTableMergedCellsJson);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    expect(table.cellAt(6, 1)?.text).toStrictEqual(\"Ending Balance\");\n    expect(table.cellAt(6, 4)?.text).toStrictEqual(\"Ending Balance\");\n    expect(table.cellAt(6, 5)?.text).toStrictEqual(\"10,960\");\n    expect(table.rowAt(6).text).toStrictEqual(\"Ending Balance\\t10,960\");\n    expect(table.text).toContain(\"Ending Balance\\t10,960\");\n  });\n\n  it(\"stringifies tables to semantic HTML\", () => {\n    const docTableNoCaption = new TextractDocument(testTableMergedCellsJson);\n    const tableNoCaption = docTableNoCaption.pageNumber(1).tableAtIndex(0);\n    expect(tableNoCaption.html()).toStrictEqual(REFERENCE_TABLE_NO_CAPTION_HTML);\n\n    const docTableWithHeader = new TextractDocument(testResponseJson);\n    const tableWithHeader = docTableWithHeader.pageNumber(1).tableAtIndex(0);\n    expect(tableWithHeader.html()).toStrictEqual(REFERENCE_TABLE_WITH_HEADER_HTML);\n\n    // TODO: Ideally could add tests for footer-only and having both?\n  });\n\n  it(\"filters rendered HTML by block type\", () => {\n    const docTableNoCaption = new TextractDocument(testTableMergedCellsJson);\n    const tableNoCaption = docTableNoCaption.pageNumber(1).tableAtIndex(0);\n    expect(tableNoCaption.html()).toStrictEqual(REFERENCE_TABLE_NO_CAPTION_HTML);\n\n    expect(tableNoCaption.html({ includeBlockTypes: [ApiBlockType.Word] })).toStrictEqual(\"\");\n    expect(\n      tableNoCaption.html({\n        includeBlockTypes: [\n          ApiBlockType.Cell,\n          ApiBlockType.MergedCell,\n          ApiBlockType.Table,\n          ApiBlockType.Word,\n        ],\n      }),\n    ).toStrictEqual(REFERENCE_TABLE_NO_CAPTION_HTML);\n    expect(tableNoCaption.html({ skipBlockTypes: [ApiBlockType.Table] })).toStrictEqual(\"\");\n    expect(\n      tableNoCaption.html({ skipBlockTypes: [ApiBlockType.Cell, ApiBlockType.MergedCell] }),\n    ).not.toContain(\"<td>\");\n\n    const docTableWithHeader = new TextractDocument(testResponseJson);\n    const tableWithHeader = docTableWithHeader.pageNumber(1).tableAtIndex(0);\n    expect(tableWithHeader.html()).toContain(\"<caption\");\n    expect(tableWithHeader.html({ skipBlockTypes: [ApiBlockType.TableTitle] })).not.toContain(\"<caption\");\n  });\n\n  it(\"mutates confidence fields\", () => {\n    const NEW_CONFIDENCE = 42.42;\n    const response: ApiAnalyzeDocumentResponse = JSON.parse(JSON.stringify(testResponseJson));\n    const doc = new TextractDocument(response);\n    const table = doc.pageNumber(1).tableAtIndex(0);\n    const tableBlock = response.Blocks.find((b) => b.Id === table.id) as ApiTableBlock;\n    expect(table.confidence).not.toEqual(NEW_CONFIDENCE);\n    table.confidence = NEW_CONFIDENCE;\n    expect(table.confidence).toEqual(NEW_CONFIDENCE);\n    expect(tableBlock.Confidence).toStrictEqual(NEW_CONFIDENCE);\n\n    const cell = table.cellAt(1, 1);\n    if (typeof cell === \"undefined\") throw new Error(\"Expected table cell not found\");\n    const cellBlock = response.Blocks.find((b) => b.Id === cell.id) as ApiCellBlock;\n    expect(cell.confidence).not.toEqual(NEW_CONFIDENCE);\n    cell.confidence = NEW_CONFIDENCE;\n    expect(cell.confidence).toEqual(NEW_CONFIDENCE);\n    expect(cellBlock.Confidence).toStrictEqual(NEW_CONFIDENCE);\n  });\n});\n"
  },
  {
    "path": "src-js/tsconfig.browser.json",
    "content": "{\n  \"extends\": \"./tsconfig.json\",\n  \"compilerOptions\": {\n    // @rollup/plugin-typescript requires esnext output (will be converted to final IIFE bundle)\n    \"module\": \"esnext\",\n  }\n}\n"
  },
  {
    "path": "src-js/tsconfig.cjs.json",
    "content": "{\n  \"extends\": \"./tsconfig.json\",\n  \"compilerOptions\": {\n    \"module\": \"CommonJS\",\n    \"outDir\": \"dist/cjs\"\n  }\n}\n"
  },
  {
    "path": "src-js/tsconfig.es.json",
    "content": "{\n  \"extends\": \"./tsconfig.json\",\n  \"compilerOptions\": {\n    \"module\": \"esnext\",\n    \"outDir\": \"dist/es\"\n  }\n}\n"
  },
  {
    "path": "src-js/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"lib\": [\"dom\", \"es2016\"],\n    \"module\": \"CommonJS\",\n    \"moduleResolution\": \"node\",\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitOverride\": true,\n    \"preserveConstEnums\": true,\n    \"removeComments\": true,\n    \"sourceMap\": true,\n    \"strict\": true,\n    \"target\": \"ES6\"\n  },\n  \"exclude\": [\"dist/\", \"node_modules/\", \"**/*.spec.*\"],\n  \"include\": [\"src/\"]\n}\n"
  },
  {
    "path": "src-js/tsconfig.types.json",
    "content": "{\n  \"extends\": \"./tsconfig.json\",\n  \"compilerOptions\": {\n    \"declaration\": true,\n    \"emitDeclarationOnly\": true,\n    \"outDir\": \"dist/types\",\n    \"removeComments\": false\n  }\n}\n"
  },
  {
    "path": "src-python/.style.yapf",
    "content": "[style]\nbased_on_style = pep8\nspaces_before_comment = 4\nsplit_before_logical_operator = true\ncolumn_limit: 120\n"
  },
  {
    "path": "src-python/.yapfignore",
    "content": ""
  },
  {
    "path": "src-python/README.md",
    "content": "# Textract Response Parser\n\nYou can use Textract response parser library to easily parser JSON returned by Amazon Textract. Library parses JSON and provides programming language specific constructs to work with different parts of the document. [textractor](https://github.com/aws-samples/amazon-textract-textractor) is an example of PoC batch processing tool that takes advantage of Textract response parser library and generate output in multiple formats.\n\n## Installation\n\n```\npython -m pip install amazon-textract-response-parser\n```\n\n## Pipeline and Serializer/Deserializer\n\n### Serializer/Deserializer\n\nBased on the [marshmallow](https://marshmallow.readthedocs.io/en/stable/) framework, the serializer/deserializer allows for creating an object represenation of the Textract JSON response.\n\n#### Deserialize Textract JSON\n```python\n# j holds the Textract JSON dict\nfrom trp.trp2 import TDocument, TDocumentSchema\nt_doc = TDocumentSchema().load(j)\n```\n\n#### Serialize Textract \n```python\nfrom trp.trp2 import TDocument, TDocumentSchema\nt_doc = TDocumentSchema().dump(t_doc)\n```\n\n#### Deserialize Textract AnalyzeId JSON\n```python\n# j holds the Textract JSON\nfrom trp.trp2_analyzeid import TAnalyzeIdDocument, TAnalyzeIdDocumentSchema\nt_doc = TAnalyzeIdDocumentSchema().load(json.loads(j))\n```\n#### Serialize Textract AnalyzeId object to JSON\n```python\nfrom trp.trp2_analyzeid import TAnalyzeIdDocument, TAnalyzeIdDocumentSchema\nt_doc = TAnalyzeIdDocumentSchema().dump(t_doc)\n```\n\n\n### Pipeline \n\nWe added some commonly requested features as easily consumable components that modify the Textract JSON Schema and ideally don't require big changes to any  existing workflow.\n\n#### Order blocks (WORDS, LINES, TABLE, KEY_VALUE_SET) by geometry y-axis\n\nBy default Textract does not put the elements identified in an order in the JSON response.\n\nThe sample implementation ```order_blocks_by_geo``` of a function using the Serializer/Deserializer shows how to change the structure and order the elements while maintaining the schema. This way no change is necessary to integrate with existing processing.\n\n```bash\n# the sample code below makes use of the amazon-textract-caller\npython -m pip install amazon-textract-caller\n```\n\n```python\nfrom textractcaller.t_call import call_textract, Textract_Features\nfrom trp.trp2 import TDocument, TDocumentSchema\nfrom trp.t_pipeline import order_blocks_by_geo\nimport trp\nimport json\n\nj = call_textract(input_document=\"path_to_some_document (PDF, JPEG, PNG)\", features=[Textract_Features.FORMS, Textract_Features.TABLES])\n# the t_doc will be not ordered\nt_doc = TDocumentSchema().load(j)\n# the ordered_doc has elements ordered by y-coordinate (top to bottom of page)\nordered_doc = order_blocks_by_geo(t_doc)\n# send to trp for further processing logic\ntrp_doc = trp.Document(TDocumentSchema().dump(ordered_doc))\n```\n\n#### Page orientation in degrees\n\nAmazon Textract supports all in-plane document rotations. However the response does not include a single number for the degree, but instead each word and line does have polygon points which can be used to calculate the degree of rotation. The following code adds this information as a custom field to Amazon Textract JSON response.\n\n```python\nfrom trp.t_pipeline import add_page_orientation\nimport trp.trp2 as t2\nimport trp as t1\n\n# assign the Textract JSON dict to j\nj = <call_textract(input_document=\"path_to_some_document (PDF, JPEG, PNG)\") or your JSON dict>\nt_document: t2.TDocument = t2.TDocumentSchema().load(j)\nt_document = add_page_orientation(t_document)\n\ndoc = t1.Document(t2.TDocumentSchema().dump(t_document))\n# page orientation can be read now for each page\nfor page in doc.pages:\n    print(page.custom['PageOrientationBasedOnWords'])\n```\n\n#### Using the pipeline on command line\n\nThe amazon-textract-response-parser package also includes a command line tool to test pipeline components like the add_page_orientation or the order_blocks_by_geo.\n\nHere is one example of the usage (in combination with the ```amazon-textract``` command from amazon-textract-helper and the ```jq``` tool (https://stedolan.github.io/jq/))\n\n```bash\n> amazon-textract --input-document \"s3://somebucket/some-multi-page-pdf.pdf\" | amazon-textract-pipeline --components add_page_orientation | jq '.Blocks[] | select(.BlockType==\"PAGE\") | .Custom'm\n\n{\n  \"Orientation\": 7\n}\n{\n  \"Orientation\": 11\n}\n...\n{\n  \"Orientation\": -7\n}\n{\n  \"Orientation\": 0\n}\n```\n\n\n#### Merge or link tables across pages\n\nSometimes tables start on one page and continue across the next page or pages. This component identifies if that is the case based on the number of columns and if a header is present on the subsequent table and can modify the output Textract JSON schema for down-stream processing. Other custom-logic is possible to develop for specific use cases.\n\nThe MergeOptions.MERGE combines the tables and makes them appear as one for post processing, with the drawback that the geometry information is not accuracy any longer. So overlaying with bounding boxes will not be accuracy.\n\nThe MergeOptions.LINK maintains the geometric structure and enriches the table information with links between the table elements. There is a custom['previus_table'] and custom['next_table'] attribute added to the TABLE blocks in the Textract JSON schema.\n\nUsage is simple\n\n```python\nfrom trp.t_pipeline import pipeline_merge_tables\nimport trp.trp2 as t2\n\nj = <call_textract(input_document=\"path_to_some_document (PDF, JPEG, PNG)\") or your JSON dict>\nt_document: t2.TDocument = t2.TDocumentSchema().load(j)\nt_document = pipeline_merge_tables(t_document, MergeOptions.MERGE, None, HeaderFooterType.NONE)\n```\n\nUsing from command line example\n\n```bash\n# from the root of the repository\ncat src-python/tests/data/gib_multi_page_table_merge.json | amazon-textract-pipeline --components merge_tables | amazon-textract --stdin --pretty-print TABLES\n# compare to cat src-python/tests/data/gib_multi_page_table_merge.json | amazon-textract --stdin --pretty-print TABLES\n```\n\n#### Add OCR confidence score to KEY and VALUE\n\nIt can be useful for some use cases to validate the confidence score for a given KEY or the VALUE from an Analyze action with FORMS feature result.\n\nThe Confidence property of a BlockType 'KEY_VALUE_SET' expresses the confidence in this particular prediction being a KEY or a VALUE, but not the confidence of the underlying text value.\n\nSimplified example:\n\n```json\n{\n    \"Confidence\": 95.5,\n    \"Geometry\": {<...>},\n    \"Id\": \"v1\",\n    \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c1\"]}],\n    \"EntityTypes\": [\"VALUE\"],\n    \"BlockType\": \"KEY_VALUE_SET\"\n},\n{\n    \"Confidence\": 99.2610092163086,\n    \"TextType\": \"PRINTED\",\n    \"Geometry\": {<...>},\n    \"Id\": \"c1\",\n    \"Text\": \"2021-Apr-08\",\n    \"BlockType\": \"WORD\"\n},\n```\n\nIn this example the confidence in the prediction of the VALUE to be an actual value in a key/value relationship is 95.5.\n\nThe confidence in the actual text representation is 99.2610092163086.\nFor simplicity in this example the value consists of just one word, but is not limited to that and could contain multiple words.\n\nThe KV_OCR_Confidence pipeline component adds confidence scores for the underlying OCR to the JSON. After executing the example JSON will look like this:\n\n```json\n{\n    \"Confidence\": 95.5,\n    \"Geometry\": {<...>},\n    \"Id\": \"v1\",\n    \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c1\"]}],\n    \"EntityTypes\": [\"VALUE\"],\n    \"BlockType\": \"KEY_VALUE_SET\",\n    \"Custom\": {\"OCRConfidence\": {\"mean\": 99.2610092163086, \"min\": 99.2610092163086}}\n},\n{\n    \"Confidence\": 99.2610092163086,\n    \"TextType\": \"PRINTED\",\n    \"Geometry\": {<...>},\n    \"Id\": \"c1\",\n    \"Text\": \"2021-Apr-08\",\n    \"BlockType\": \"WORD\"\n},\n```\n\nUsage is simple\n\n```python\nfrom trp.t_pipeline import add_kv_ocr_confidence\nimport trp.trp2 as t2\n\nj = <call_textract(input_document=\"path_to_some_document (PDF, JPEG, PNG)\") or your JSON dict>\nt_document: t2.TDocument = t2.TDocumentSchema().load(j)\nt_document = add_kv_ocr_confidence(t_document)\n# further processing\n```\n\nUsing from command line example and validating the output:\n\n```bash\n# from the root of the repository\ncat \"src-python/tests/data/employment-application.json\" | amazon-textract-pipeline --components kv_ocr_confidence | jq '.Blocks[] | select(.BlockType==\"KEY_VALUE_SET\") '\n```\n\n# Parse JSON response from Textract\n\n```python\nfrom trp import Document\ndoc = Document(response)\n\n# Iterate over elements in the document\nfor page in doc.pages:\n    # Print lines and words\n    for line in page.lines:\n        print(\"Line: {}--{}\".format(line.text, line.confidence))\n        for word in line.words:\n            print(\"Word: {}--{}\".format(word.text, word.confidence))\n\n    # Print tables\n    for table in page.tables:\n        for r, row in enumerate(table.rows):\n            for c, cell in enumerate(row.cells):\n                print(\"Table[{}][{}] = {}-{}\".format(r, c, cell.text, cell.confidence))\n\n    # Print fields\n    for field in page.form.fields:\n        print(\"Field: Key: {}, Value: {}\".format(field.key.text, field.value.text))\n\n    # Get field by key\n    key = \"Phone Number:\"\n    field = page.form.getFieldByKey(key)\n    if(field):\n        print(\"Field: Key: {}, Value: {}\".format(field.key, field.value))\n\n    # Search fields by key\n    key = \"address\"\n    fields = page.form.searchFieldsByKey(key)\n    for field in fields:\n        print(\"Field: Key: {}, Value: {}\".format(field.key, field.value))\n\n```\n\n## Test\n\n- Clone the repo and run pytest\n\n```bash\ngit clone https://github.com/aws-samples/amazon-textract-response-parser.git\ncd amazon-textract-response-parser\npython -m venv virtualenv\nvirtualenv/bin/activate\n\npython -m pip install --upgrade pip setuptools\npython -m pip install -e .[dev]\npytest\n```\n\n\n\n## Other Resources\n\n- [Large scale document processing with Amazon Textract - Reference Architecture](https://github.com/aws-samples/amazon-textract-serverless-large-scale-document-processing)\n- [Batch processing tool](https://github.com/aws-samples/amazon-textract-textractor)\n- [Code samples](https://github.com/aws-samples/amazon-textract-code-samples)\n\n## License Summary\n\nThis sample code is made available under the Apache License Version 2.0. See the LICENSE file.\n"
  },
  {
    "path": "src-python/a2i/README.md",
    "content": "# Textract-Augmented AI (A2I) Human Review Response Parser\n\nYou can use Textract-Amazon Augmented AI (A2I) response parser library to easily parser JSON returned by A2I human review workflow . Library parses JSON and provides programming language specific constructs to work with different parts of the document. \n\n## Python Usage\n\n```\n# Call Amazon Textract with A2I HumanLoop Config and get JSON response\n#  client = boto3.client('textract')\n#  response = client.analyze_document(Document={...}, FeatureTypes=[...], HumanLoopConfig={...})\n#\n# Check if Human Loop was started\n#  if 'HumanLoopArn' in response['HumanLoopActivationOutput']:\n#       print(f'A human loop has been started with ARN: {response[\"HumanLoopActivationOutput\"][\"HumanLoopArn\"]}')  \n#\n# Once human review is complete, retrieve the human review results stored in S3 bucket\n#  a2i_runtime_client = boto3.client('sagemaker-a2i-runtime', REGION)\n#  describe_human_loop_response = a2i_runtime_client.describe_human_loop(\n#       HumanLoopName=human_loop_name\n#  )\n#  a2i_s3_output_uri = describe_human_loop_response['HumanLoopOutput']['OutputS3Uri']\n# Split the bucket and object key from the a2i_s3_output_uri\n#\n# Gets the json file published by A2I and returns a deserialized object\n#   s3_content = s3.get_object(Bucket=bucket, Key=output_bucket_key)\n#   a2i_json = json.loads(s3_content['Body'].read().decode('utf-8'))\n#   a2i_response = a2i_json[\"humanAnswers\"][0][\"answerContent\"][\"AWS/Textract/AnalyzeDocument/Forms/V1\"]\n#\n# Parse JSON response from Textract\ndoc = Document(a2i_response)\n\n# Iterate over elements in the document\nfor page in doc.pages:\n        print(\"PAGE\\n====================\")\n        print(\"Form (key/values)\\n====================\")\n        for field in page.form.fields:\n            k = \"\"\n            v = \"\"\n            if(field.key):\n                k = field.key.text\n            if(field.value):\n                v = field.value.text\n            print(\"Field: Key: {}, Value: {}\".format(k,v))\n\n        #Get field by key\n        key = \"Policy Number:\"\n        print(\"\\nGet field by key ({}):\\n====================\".format(key))\n        f = page.form.getFieldByKey(key)\n        if(f):\n            print(\"Field: Key: {}, Value: {}\".format(f.key.text, f.value.text))\n\n        #Search field by key\n        key = \"Policy Number:\"\n        print(\"\\nSearch field by key ({}):\\n====================\".format(key))\n        fields = page.form.searchFieldsByKey(key)\n        for field in fields:\n            print(\"Field: Key: {}, Value: {}\".format(field.key, field.value))\n\n```\n\n\n## Test\n\n- Download [code](.) on your local machine.\n- Run \"python3 a2irptest.py\"\n- You should see output using the sample JSON response file included in the source.\n\n## Other Resources\n\n- [Using Amazon Textract with Amazon Augmented AI for processing critical documents](https://aws.amazon.com/blogs/machine-learning/using-amazon-textract-with-amazon-augmented-ai-for-processing-critical-documents/)\n- [Amazon Augmented AI (Amazon A2I) integration with Amazon Textract's Analyze Document Example](https://github.com/aws-samples/amazon-a2i-sample-jupyter-notebooks/blob/master/Amazon%20Augmented%20AI%20(A2I)%20and%20Textract%20AnalyzeDocument.ipynb)\n\n## License Summary\n\nThis sample code is made available under the MIT-0 license. See the LICENSE file.\n"
  },
  {
    "path": "src-python/a2i/__init__.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"Top-level package for amazon-textract-response-parser.\"\"\"\n\n__version__ = '1.0.2'\n"
  },
  {
    "path": "src-python/a2i/a2i-response.json",
    "content": "{\n    \"aiServiceRequest\": {\n        \"document\": {\n            \"s3Object\": {\n                \"bucket\": \"textract-documentsbucket-sirajama\",\n                \"name\": \"inputDocuments/mr2.png\"\n            }\n        },\n        \"featureTypes\": [\n            \"TABLES\",\n            \"FORMS\"\n        ],\n        \"humanLoopConfig\": {\n            \"flowDefinitionArn\": \"arn:aws:sagemaker:us-east-1:298034081971:flow-definition/insurance-validation-flowv6\",\n            \"humanLoopName\": \"ivf-25e512f2-75a2-11ea-ab9f-36f379a2239d\"\n        }\n    },\n    \"aiServiceResponse\": {\n        \"blocks\": [\n            {\n                \"blockType\": \"PAGE\",\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 1,\n                        \"left\": 0,\n                        \"top\": 0,\n                        \"width\": 1\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 2.1155324e-16,\n                            \"y\": 0\n                        },\n                        {\n                            \"x\": 1,\n                            \"y\": 7.10414e-17\n                        },\n                        {\n                            \"x\": 1,\n                            \"y\": 1\n                        },\n                        {\n                            \"x\": 0,\n                            \"y\": 1\n                        }\n                    ]\n                },\n                \"id\": \"e764658e-babf-4fa9-8eaf-71b336468fe5\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"3108a765-0c6d-48c1-be3d-9ec6cca43fb8\",\n                            \"d7403c80-f64b-4e01-8e69-a425b6d97e46\",\n                            \"29e0ae12-41a0-454a-ae75-e415c1cbc94b\",\n                            \"ab504d6f-45e4-44e0-be1f-7ed7ff662c91\",\n                            \"9699eb51-bcb5-420d-96d2-2fe7272dd726\",\n                            \"2bc3d049-a6ed-483d-b9e9-253922bf7417\",\n                            \"7c457ec5-d5d0-4737-9d50-8aaebe558500\",\n                            \"5f350a4f-2fcd-4f90-8d47-df9757d4bf58\",\n                            \"b4c82dda-d65d-4283-9899-33b511695441\",\n                            \"40ae9ff8-4d00-4ef4-bcfb-466ba85e4bc3\",\n                            \"8fd8b847-c361-4230-a2a4-1c555283c67a\",\n                            \"a5c0086f-e8d8-4220-8110-a46ce1cfa90f\",\n                            \"a7942c81-05e2-4b21-9f7d-09086d93e0be\",\n                            \"09eb1d97-5db8-4d3b-9784-376ce1522644\",\n                            \"29082da0-0dad-421d-a8c9-df5cc0d20bc7\",\n                            \"3f252f2d-f438-4f85-ad22-b945cbc8154d\",\n                            \"7816b8bb-b339-4e88-a1d6-0ad691ac0290\",\n                            \"9b4939f3-483c-4f75-9651-eee0727fa315\",\n                            \"c4ae9cab-835c-4332-975e-22aa4208fb70\",\n                            \"d19c70c0-50f1-4720-aae8-785ad81bfb52\",\n                            \"500a5d4b-a855-4f33-a262-33304cf2b3e4\",\n                            \"ec7ebb77-2cf3-440f-875f-47771c99aba6\",\n                            \"ffc0f514-cdb7-49c9-a729-ab85a51ae1f0\",\n                            \"8801f4b7-d958-47d9-8f65-f4bff9f16afd\",\n                            \"81139649-b27c-48d6-9ab0-08350756d0f1\",\n                            \"3871231f-34e7-40d5-ac93-e9bb168a5ca4\",\n                            \"47c2c981-9590-447c-b3b1-f35dae4c6670\",\n                            \"137d5e1d-7d04-490e-920a-dfbf37ee7450\",\n                            \"a323081d-baac-4306-ac61-70c9393a73eb\",\n                            \"e61c53dd-e189-41ab-9034-8e76e999ec8f\",\n                            \"89061259-37e2-44dc-a0c4-b03638c26124\",\n                            \"efef5f95-e05c-476c-8251-6378c6d69001\",\n                            \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 97.18951,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.024819765,\n                        \"left\": 0.32416707,\n                        \"top\": 0.057702165,\n                        \"width\": 0.5107142\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.32416707,\n                            \"y\": 0.057702165\n                        },\n                        {\n                            \"x\": 0.83488125,\n                            \"y\": 0.057702165\n                        },\n                        {\n                            \"x\": 0.83488125,\n                            \"y\": 0.08252193\n                        },\n                        {\n                            \"x\": 0.32416707,\n                            \"y\": 0.08252193\n                        }\n                    ]\n                },\n                \"id\": \"3108a765-0c6d-48c1-be3d-9ec6cca43fb8\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"9528e915-8de4-4a01-ba93-a295c6429d3f\",\n                            \"101e3657-0c58-40af-9d9d-29fb1a38fceb\",\n                            \"d3582348-abfe-4fec-8768-dec9d3d1a3c2\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Mall Mobile Repair\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.620125,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02029768,\n                        \"left\": 0.242488,\n                        \"top\": 0.0892392,\n                        \"width\": 0.67564625\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.242488,\n                            \"y\": 0.0892392\n                        },\n                        {\n                            \"x\": 0.9181343,\n                            \"y\": 0.0892392\n                        },\n                        {\n                            \"x\": 0.9181343,\n                            \"y\": 0.10953688\n                        },\n                        {\n                            \"x\": 0.242488,\n                            \"y\": 0.10953688\n                        }\n                    ]\n                },\n                \"id\": \"d7403c80-f64b-4e01-8e69-a425b6d97e46\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"91257bc8-29ad-4bc1-9c11-530237a5da24\",\n                            \"5c035a27-6031-4109-9254-05a22f507131\",\n                            \"51997171-fa0c-4a4e-bf26-84b522a54476\",\n                            \"b22cb843-5679-4183-95f1-342e31ee1918\",\n                            \"ca9e70da-551e-44de-8c66-cf2e1feb9638\",\n                            \"e8da18d8-1c4b-4566-b576-edee8fae4c55\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"You break it We fix it\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.73003,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02269014,\n                        \"left\": 0.2586333,\n                        \"top\": 0.11995361,\n                        \"width\": 0.645947\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.2586333,\n                            \"y\": 0.11995361\n                        },\n                        {\n                            \"x\": 0.9045803,\n                            \"y\": 0.11995361\n                        },\n                        {\n                            \"x\": 0.9045803,\n                            \"y\": 0.14264375\n                        },\n                        {\n                            \"x\": 0.2586333,\n                            \"y\": 0.14264375\n                        }\n                    ]\n                },\n                \"id\": \"29e0ae12-41a0-454a-ae75-e415c1cbc94b\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"84f7f5fb-16b1-4ae1-800c-7b7ff6248ee2\",\n                            \"90443359-09b9-4910-973e-2bcec0a3865c\",\n                            \"a1c556c4-4db9-4b27-99ca-4bfaad8e1eb3\",\n                            \"ddd4c16d-02b3-4abf-b478-785c2a2879dc\",\n                            \"4521a1c0-919c-49a1-803a-7e0371ed42bb\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"444, New Mall, New Town\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.9187,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01969862,\n                        \"left\": 0.46672013,\n                        \"top\": 0.15139394,\n                        \"width\": 0.22254544\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.46672013,\n                            \"y\": 0.15139394\n                        },\n                        {\n                            \"x\": 0.68926555,\n                            \"y\": 0.15139394\n                        },\n                        {\n                            \"x\": 0.68926555,\n                            \"y\": 0.17109255\n                        },\n                        {\n                            \"x\": 0.46672013,\n                            \"y\": 0.17109255\n                        }\n                    ]\n                },\n                \"id\": \"ab504d6f-45e4-44e0-be1f-7ed7ff662c91\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"76ac69d4-12cf-4b70-8c06-ab3b248e84b1\",\n                            \"95186354-30eb-414a-82cb-1a7ea733b417\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"MA 00001\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.72334,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02119486,\n                        \"left\": 0.4932077,\n                        \"top\": 0.2128705,\n                        \"width\": 0.4507787\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4932077,\n                            \"y\": 0.2128705\n                        },\n                        {\n                            \"x\": 0.9439864,\n                            \"y\": 0.2128705\n                        },\n                        {\n                            \"x\": 0.9439864,\n                            \"y\": 0.23406535\n                        },\n                        {\n                            \"x\": 0.4932077,\n                            \"y\": 0.23406535\n                        }\n                    ]\n                },\n                \"id\": \"9699eb51-bcb5-420d-96d2-2fe7272dd726\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"4bfd9716-4fce-4e69-813d-ac3806906a93\",\n                            \"f2790ea1-b8a8-4dd6-a5ca-9157bec638e7\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Date: 03/02/2020\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.906136,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019374598,\n                        \"left\": 0.2186609,\n                        \"top\": 0.24418725,\n                        \"width\": 0.64496577\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.2186609,\n                            \"y\": 0.24418725\n                        },\n                        {\n                            \"x\": 0.8636267,\n                            \"y\": 0.24418725\n                        },\n                        {\n                            \"x\": 0.8636267,\n                            \"y\": 0.26356184\n                        },\n                        {\n                            \"x\": 0.2186609,\n                            \"y\": 0.26356184\n                        }\n                    ]\n                },\n                \"id\": \"2bc3d049-a6ed-483d-b9e9-253922bf7417\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"479e9792-2fa7-452b-bc50-69d69dc6a9e5\",\n                            \"4c560b98-f2eb-4aef-9d17-9a4997b5ed9a\",\n                            \"98a1e130-9aa0-4592-88aa-b546f2bd0e7a\",\n                            \"c039d6e4-3451-4b7d-be9b-4aa68e099364\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Customer Name: John Doe\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.2183,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.024882257,\n                        \"left\": 0.21588285,\n                        \"top\": 0.30372137,\n                        \"width\": 0.5906096\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21588285,\n                            \"y\": 0.30372137\n                        },\n                        {\n                            \"x\": 0.80649245,\n                            \"y\": 0.30372137\n                        },\n                        {\n                            \"x\": 0.80649245,\n                            \"y\": 0.32860363\n                        },\n                        {\n                            \"x\": 0.21588285,\n                            \"y\": 0.32860363\n                        }\n                    ]\n                },\n                \"id\": \"7c457ec5-d5d0-4737-9d50-8aaebe558500\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"039e310a-53ff-4d55-bd9b-6cb878c23ca7\",\n                            \"42949eb3-3f15-41f4-bd7f-fb1f3f1e0d1d\",\n                            \"5752a4cb-82cb-4ff1-8509-c64f6a7a8eb1\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Device S/N: 424403233\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.69493,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.025607735,\n                        \"left\": 0.21768335,\n                        \"top\": 0.33554754,\n                        \"width\": 0.44663107\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21768335,\n                            \"y\": 0.33554754\n                        },\n                        {\n                            \"x\": 0.66431445,\n                            \"y\": 0.33554754\n                        },\n                        {\n                            \"x\": 0.66431445,\n                            \"y\": 0.36115527\n                        },\n                        {\n                            \"x\": 0.21768335,\n                            \"y\": 0.36115527\n                        }\n                    ]\n                },\n                \"id\": \"5f350a4f-2fcd-4f90-8d47-df9757d4bf58\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"3d0e87a0-0102-46dc-b56e-e9ccd989db88\",\n                            \"b64799f1-334d-4ec1-96b7-c12b44fd8f82\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Policy: AG133441\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 97.51201,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019860417,\n                        \"left\": 0.21901202,\n                        \"top\": 0.3976416,\n                        \"width\": 0.30794704\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21901202,\n                            \"y\": 0.3976416\n                        },\n                        {\n                            \"x\": 0.52695906,\n                            \"y\": 0.3976416\n                        },\n                        {\n                            \"x\": 0.52695906,\n                            \"y\": 0.41750202\n                        },\n                        {\n                            \"x\": 0.21901202,\n                            \"y\": 0.41750202\n                        }\n                    ]\n                },\n                \"id\": \"b4c82dda-d65d-4283-9899-33b511695441\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"5f778c44-6799-4fac-b1f6-9f32fa16a3b2\",\n                            \"12f1a47a-a57d-408e-8952-d551ffd138a1\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Job Details\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.53273,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02450244,\n                        \"left\": 0.21992747,\n                        \"top\": 0.4894485,\n                        \"width\": 0.5817503\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21992747,\n                            \"y\": 0.4894485\n                        },\n                        {\n                            \"x\": 0.8016777,\n                            \"y\": 0.4894485\n                        },\n                        {\n                            \"x\": 0.8016777,\n                            \"y\": 0.51395094\n                        },\n                        {\n                            \"x\": 0.21992747,\n                            \"y\": 0.51395094\n                        }\n                    ]\n                },\n                \"id\": \"40ae9ff8-4d00-4ef4-bcfb-466ba85e4bc3\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"1f05bab3-df48-4236-a10c-54698377f602\",\n                            \"14ea2388-50ed-4be0-bc62-d116df59391c\",\n                            \"faafe006-c642-43a9-85dc-885d95c9ce85\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Screen Replace $99.00\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.18958,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.024822064,\n                        \"left\": 0.21758953,\n                        \"top\": 0.5196849,\n                        \"width\": 0.5904365\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21758953,\n                            \"y\": 0.5196849\n                        },\n                        {\n                            \"x\": 0.808026,\n                            \"y\": 0.5196849\n                        },\n                        {\n                            \"x\": 0.808026,\n                            \"y\": 0.54450697\n                        },\n                        {\n                            \"x\": 0.21758953,\n                            \"y\": 0.54450697\n                        }\n                    ]\n                },\n                \"id\": \"8fd8b847-c361-4230-a2a4-1c555283c67a\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"cf23cf10-de84-475a-abf7-82b0fcf5b656\",\n                            \"1573707e-60f3-4e85-90b7-0ff29f9c1b4a\",\n                            \"f4ab36bc-57b3-4db7-af47-59b5674e4e02\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Labor Charges $49.99\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.57196,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.022857666,\n                        \"left\": 0.23006997,\n                        \"top\": 0.5515018,\n                        \"width\": 0.28620675\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.23006997,\n                            \"y\": 0.5515018\n                        },\n                        {\n                            \"x\": 0.5162767,\n                            \"y\": 0.5515018\n                        },\n                        {\n                            \"x\": 0.5162767,\n                            \"y\": 0.5743595\n                        },\n                        {\n                            \"x\": 0.23006997,\n                            \"y\": 0.5743595\n                        }\n                    ]\n                },\n                \"id\": \"a5c0086f-e8d8-4220-8110-a46ce1cfa90f\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"34066604-b348-4e63-b97f-915f4bdde8c2\",\n                            \"dc3d75e3-3dd1-4706-8d4a-d7313ac8288f\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"(flat rate)\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 69.80187,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.020683765,\n                        \"left\": 0.21824719,\n                        \"top\": 0.61347944,\n                        \"width\": 0.47107917\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21824719,\n                            \"y\": 0.61347944\n                        },\n                        {\n                            \"x\": 0.68932635,\n                            \"y\": 0.61347944\n                        },\n                        {\n                            \"x\": 0.68932635,\n                            \"y\": 0.6341632\n                        },\n                        {\n                            \"x\": 0.21824719,\n                            \"y\": 0.6341632\n                        }\n                    ]\n                },\n                \"id\": \"a7942c81-05e2-4b21-9f7d-09086d93e0be\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"637b4c54-931b-4d3a-8800-2a58b0a390ed\",\n                            \"b68e3e55-d6c7-4600-8d20-9897f015212f\",\n                            \"d9dd6924-3c81-438e-9577-6fa307a4dcea\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Additional Notes -\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.9032,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.024597615,\n                        \"left\": 0.21707901,\n                        \"top\": 0.64506114,\n                        \"width\": 0.6168775\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21707901,\n                            \"y\": 0.64506114\n                        },\n                        {\n                            \"x\": 0.8339565,\n                            \"y\": 0.64506114\n                        },\n                        {\n                            \"x\": 0.8339565,\n                            \"y\": 0.6696588\n                        },\n                        {\n                            \"x\": 0.21707901,\n                            \"y\": 0.6696588\n                        }\n                    ]\n                },\n                \"id\": \"09eb1d97-5db8-4d3b-9784-376ce1522644\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"538088fc-5db5-4c0a-b273-82a95ce5a545\",\n                            \"aa9ce232-61c7-478d-8cb8-da41254700b6\",\n                            \"60b9cfc6-d074-400a-a2cb-3a6c1f8a18a5\",\n                            \"1f4f8154-c52e-4328-8b5e-1067494f1718\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Warranty fixed 10 days\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.94729,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.023833843,\n                        \"left\": 0.22088936,\n                        \"top\": 0.675953,\n                        \"width\": 0.47306797\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.22088936,\n                            \"y\": 0.675953\n                        },\n                        {\n                            \"x\": 0.6939573,\n                            \"y\": 0.675953\n                        },\n                        {\n                            \"x\": 0.6939573,\n                            \"y\": 0.69978684\n                        },\n                        {\n                            \"x\": 0.22088936,\n                            \"y\": 0.69978684\n                        }\n                    ]\n                },\n                \"id\": \"29082da0-0dad-421d-a8c9-df5cc0d20bc7\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"6487eb6e-3d0b-4779-afce-89f1ee168e5d\",\n                            \"ebd1215a-7784-4600-a72a-d16a5dff7fd9\",\n                            \"20c82995-e30e-4c14-9edf-b03aa21a17c6\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"from receipt date\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.74751,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02883792,\n                        \"left\": 0.21727453,\n                        \"top\": 0.7367701,\n                        \"width\": 0.4645571\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21727453,\n                            \"y\": 0.7367701\n                        },\n                        {\n                            \"x\": 0.68183166,\n                            \"y\": 0.7367701\n                        },\n                        {\n                            \"x\": 0.68183166,\n                            \"y\": 0.765608\n                        },\n                        {\n                            \"x\": 0.21727453,\n                            \"y\": 0.765608\n                        }\n                    ]\n                },\n                \"id\": \"3f252f2d-f438-4f85-ad22-b945cbc8154d\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\",\n                            \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Total $148.99\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.01189,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.023964286,\n                        \"left\": 0.21997344,\n                        \"top\": 0.8042776,\n                        \"width\": 0.56201667\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21997344,\n                            \"y\": 0.8042776\n                        },\n                        {\n                            \"x\": 0.7819901,\n                            \"y\": 0.8042776\n                        },\n                        {\n                            \"x\": 0.7819901,\n                            \"y\": 0.8282419\n                        },\n                        {\n                            \"x\": 0.21997344,\n                            \"y\": 0.8282419\n                        }\n                    ]\n                },\n                \"id\": \"7816b8bb-b339-4e88-a1d6-0ad691ac0290\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"7379e93f-df82-4d28-a90e-f8e3f52cab0a\",\n                            \"e3312857-2a6a-40de-b7bf-d00bb6f264dd\",\n                            \"7ec950dc-bc15-4d39-9fda-e2f8efdf7f03\",\n                            \"d0119262-d800-466d-aa6d-68bf0cfc6c48\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"Paid by: Credit Card\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.87143,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01994628,\n                        \"left\": 0.21655525,\n                        \"top\": 0.8358282,\n                        \"width\": 0.67764795\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21655525,\n                            \"y\": 0.8358282\n                        },\n                        {\n                            \"x\": 0.8942032,\n                            \"y\": 0.8358282\n                        },\n                        {\n                            \"x\": 0.8942032,\n                            \"y\": 0.85577446\n                        },\n                        {\n                            \"x\": 0.21655525,\n                            \"y\": 0.85577446\n                        }\n                    ]\n                },\n                \"id\": \"9b4939f3-483c-4f75-9651-eee0727fa315\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"a20107e2-7b35-40b9-86e0-254843149497\",\n                            \"07d1cf9f-117f-4b31-8e72-c3720068e511\",\n                            \"8985ef07-086a-40bd-afc2-cce4da9f98f9\",\n                            \"b69d79c9-e01d-4abf-b7cf-65485bf6ae8f\",\n                            \"085da2d7-4b1f-430e-a3ad-accac40d6ea0\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"VISA 4400 XXXX XXXX XXXX\"\n            },\n            {\n                \"blockType\": \"LINE\",\n                \"confidence\": 99.61508,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019450285,\n                        \"left\": 0.21773706,\n                        \"top\": 0.86649597,\n                        \"width\": 0.33189663\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21773706,\n                            \"y\": 0.86649597\n                        },\n                        {\n                            \"x\": 0.5496337,\n                            \"y\": 0.86649597\n                        },\n                        {\n                            \"x\": 0.5496337,\n                            \"y\": 0.8859463\n                        },\n                        {\n                            \"x\": 0.21773706,\n                            \"y\": 0.8859463\n                        }\n                    ]\n                },\n                \"id\": \"c4ae9cab-835c-4332-975e-22aa4208fb70\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"566f6a76-c7c4-470b-b768-e0880caccf5f\",\n                            \"ca2d3fde-bb9f-477f-a852-f2df8990517c\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ],\n                \"text\": \"AUTH: 043221\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 91.69564,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019946229,\n                        \"left\": 0.32416707,\n                        \"top\": 0.057702165,\n                        \"width\": 0.11333931\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.32416707,\n                            \"y\": 0.057702165\n                        },\n                        {\n                            \"x\": 0.43750638,\n                            \"y\": 0.057702165\n                        },\n                        {\n                            \"x\": 0.43750638,\n                            \"y\": 0.077648394\n                        },\n                        {\n                            \"x\": 0.32416707,\n                            \"y\": 0.077648394\n                        }\n                    ]\n                },\n                \"id\": \"9528e915-8de4-4a01-ba93-a295c6429d3f\",\n                \"text\": \"Mall\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.94557,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019671168,\n                        \"left\": 0.4653701,\n                        \"top\": 0.057794947,\n                        \"width\": 0.17169113\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4653701,\n                            \"y\": 0.057794947\n                        },\n                        {\n                            \"x\": 0.63706124,\n                            \"y\": 0.057794947\n                        },\n                        {\n                            \"x\": 0.63706124,\n                            \"y\": 0.077466115\n                        },\n                        {\n                            \"x\": 0.4653701,\n                            \"y\": 0.077466115\n                        }\n                    ]\n                },\n                \"id\": \"101e3657-0c58-40af-9d9d-29fb1a38fceb\",\n                \"text\": \"Mobile\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.92729,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.024458155,\n                        \"left\": 0.6644006,\n                        \"top\": 0.058063775,\n                        \"width\": 0.17048065\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6644006,\n                            \"y\": 0.058063775\n                        },\n                        {\n                            \"x\": 0.83488125,\n                            \"y\": 0.058063775\n                        },\n                        {\n                            \"x\": 0.83488125,\n                            \"y\": 0.08252193\n                        },\n                        {\n                            \"x\": 0.6644006,\n                            \"y\": 0.08252193\n                        }\n                    ]\n                },\n                \"id\": \"d3582348-abfe-4fec-8768-dec9d3d1a3c2\",\n                \"text\": \"Repair\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.545494,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.018896936,\n                        \"left\": 0.242488,\n                        \"top\": 0.090622835,\n                        \"width\": 0.08328396\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.242488,\n                            \"y\": 0.090622835\n                        },\n                        {\n                            \"x\": 0.32577196,\n                            \"y\": 0.090622835\n                        },\n                        {\n                            \"x\": 0.32577196,\n                            \"y\": 0.10951977\n                        },\n                        {\n                            \"x\": 0.242488,\n                            \"y\": 0.10951977\n                        }\n                    ]\n                },\n                \"id\": \"91257bc8-29ad-4bc1-9c11-530237a5da24\",\n                \"text\": \"You\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.84449,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019189522,\n                        \"left\": 0.3536243,\n                        \"top\": 0.090000354,\n                        \"width\": 0.14344372\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.3536243,\n                            \"y\": 0.090000354\n                        },\n                        {\n                            \"x\": 0.49706802,\n                            \"y\": 0.090000354\n                        },\n                        {\n                            \"x\": 0.49706802,\n                            \"y\": 0.109189875\n                        },\n                        {\n                            \"x\": 0.3536243,\n                            \"y\": 0.109189875\n                        }\n                    ]\n                },\n                \"id\": \"5c035a27-6031-4109-9254-05a22f507131\",\n                \"text\": \"break\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.652794,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02009817,\n                        \"left\": 0.526299,\n                        \"top\": 0.0894387,\n                        \"width\": 0.05461603\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.526299,\n                            \"y\": 0.0894387\n                        },\n                        {\n                            \"x\": 0.58091503,\n                            \"y\": 0.0894387\n                        },\n                        {\n                            \"x\": 0.58091503,\n                            \"y\": 0.10953687\n                        },\n                        {\n                            \"x\": 0.526299,\n                            \"y\": 0.10953687\n                        }\n                    ]\n                },\n                \"id\": \"51997171-fa0c-4a4e-bf26-84b522a54476\",\n                \"text\": \"it\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.33779,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.018259736,\n                        \"left\": 0.6650073,\n                        \"top\": 0.090594895,\n                        \"width\": 0.05496823\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6650073,\n                            \"y\": 0.090594895\n                        },\n                        {\n                            \"x\": 0.71997553,\n                            \"y\": 0.090594895\n                        },\n                        {\n                            \"x\": 0.71997553,\n                            \"y\": 0.10885463\n                        },\n                        {\n                            \"x\": 0.6650073,\n                            \"y\": 0.10885463\n                        }\n                    ]\n                },\n                \"id\": \"b22cb843-5679-4183-95f1-342e31ee1918\",\n                \"text\": \"We\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.57772,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019531773,\n                        \"left\": 0.7533313,\n                        \"top\": 0.089346506,\n                        \"width\": 0.0817313\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.7533313,\n                            \"y\": 0.089346506\n                        },\n                        {\n                            \"x\": 0.8350626,\n                            \"y\": 0.089346506\n                        },\n                        {\n                            \"x\": 0.8350626,\n                            \"y\": 0.10887828\n                        },\n                        {\n                            \"x\": 0.7533313,\n                            \"y\": 0.10887828\n                        }\n                    ]\n                },\n                \"id\": \"ca9e70da-551e-44de-8c66-cf2e1feb9638\",\n                \"text\": \"fix\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.76246,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0201527,\n                        \"left\": 0.8657807,\n                        \"top\": 0.0892392,\n                        \"width\": 0.0523536\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.8657807,\n                            \"y\": 0.0892392\n                        },\n                        {\n                            \"x\": 0.9181343,\n                            \"y\": 0.0892392\n                        },\n                        {\n                            \"x\": 0.9181343,\n                            \"y\": 0.1093919\n                        },\n                        {\n                            \"x\": 0.8657807,\n                            \"y\": 0.1093919\n                        }\n                    ]\n                },\n                \"id\": \"e8da18d8-1c4b-4566-b576-edee8fae4c55\",\n                \"text\": \"it\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.887146,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02269014,\n                        \"left\": 0.2586333,\n                        \"top\": 0.11995361,\n                        \"width\": 0.10183977\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.2586333,\n                            \"y\": 0.11995361\n                        },\n                        {\n                            \"x\": 0.36047307,\n                            \"y\": 0.11995361\n                        },\n                        {\n                            \"x\": 0.36047307,\n                            \"y\": 0.14264375\n                        },\n                        {\n                            \"x\": 0.2586333,\n                            \"y\": 0.14264375\n                        }\n                    ]\n                },\n                \"id\": \"84f7f5fb-16b1-4ae1-800c-7b7ff6248ee2\",\n                \"text\": \"444,\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.41745,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.018834256,\n                        \"left\": 0.3978421,\n                        \"top\": 0.120783724,\n                        \"width\": 0.08239172\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.3978421,\n                            \"y\": 0.120783724\n                        },\n                        {\n                            \"x\": 0.48023382,\n                            \"y\": 0.120783724\n                        },\n                        {\n                            \"x\": 0.48023382,\n                            \"y\": 0.13961798\n                        },\n                        {\n                            \"x\": 0.3978421,\n                            \"y\": 0.13961798\n                        }\n                    ]\n                },\n                \"id\": \"90443359-09b9-4910-973e-2bcec0a3865c\",\n                \"text\": \"New\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.841156,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02249405,\n                        \"left\": 0.5097763,\n                        \"top\": 0.12009461,\n                        \"width\": 0.1329584\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.5097763,\n                            \"y\": 0.12009461\n                        },\n                        {\n                            \"x\": 0.6427347,\n                            \"y\": 0.12009461\n                        },\n                        {\n                            \"x\": 0.6427347,\n                            \"y\": 0.14258866\n                        },\n                        {\n                            \"x\": 0.5097763,\n                            \"y\": 0.14258866\n                        }\n                    ]\n                },\n                \"id\": \"a1c556c4-4db9-4b27-99ca-4bfaad8e1eb3\",\n                \"text\": \"Mall,\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.77108,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01846051,\n                        \"left\": 0.6800399,\n                        \"top\": 0.12113114,\n                        \"width\": 0.0838866\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6800399,\n                            \"y\": 0.12113114\n                        },\n                        {\n                            \"x\": 0.7639265,\n                            \"y\": 0.12113114\n                        },\n                        {\n                            \"x\": 0.7639265,\n                            \"y\": 0.13959165\n                        },\n                        {\n                            \"x\": 0.6800399,\n                            \"y\": 0.13959165\n                        }\n                    ]\n                },\n                \"id\": \"ddd4c16d-02b3-4abf-b478-785c2a2879dc\",\n                \"text\": \"New\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.733315,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.018523466,\n                        \"left\": 0.79379165,\n                        \"top\": 0.120842144,\n                        \"width\": 0.11078865\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.79379165,\n                            \"y\": 0.120842144\n                        },\n                        {\n                            \"x\": 0.9045803,\n                            \"y\": 0.120842144\n                        },\n                        {\n                            \"x\": 0.9045803,\n                            \"y\": 0.13936561\n                        },\n                        {\n                            \"x\": 0.79379165,\n                            \"y\": 0.13936561\n                        }\n                    ]\n                },\n                \"id\": \"4521a1c0-919c-49a1-803a-7e0371ed42bb\",\n                \"text\": \"Town\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.958115,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01834321,\n                        \"left\": 0.46672013,\n                        \"top\": 0.1525436,\n                        \"width\": 0.05887837\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.46672013,\n                            \"y\": 0.1525436\n                        },\n                        {\n                            \"x\": 0.5255985,\n                            \"y\": 0.1525436\n                        },\n                        {\n                            \"x\": 0.5255985,\n                            \"y\": 0.17088681\n                        },\n                        {\n                            \"x\": 0.46672013,\n                            \"y\": 0.17088681\n                        }\n                    ]\n                },\n                \"id\": \"76ac69d4-12cf-4b70-8c06-ab3b248e84b1\",\n                \"text\": \"MA\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.87928,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01969861,\n                        \"left\": 0.5565063,\n                        \"top\": 0.15139394,\n                        \"width\": 0.13275924\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.5565063,\n                            \"y\": 0.15139394\n                        },\n                        {\n                            \"x\": 0.68926555,\n                            \"y\": 0.15139394\n                        },\n                        {\n                            \"x\": 0.68926555,\n                            \"y\": 0.17109255\n                        },\n                        {\n                            \"x\": 0.5565063,\n                            \"y\": 0.17109255\n                        }\n                    ]\n                },\n                \"id\": \"95186354-30eb-414a-82cb-1a7ea733b417\",\n                \"text\": \"00001\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.65475,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01890931,\n                        \"left\": 0.4932077,\n                        \"top\": 0.21439208,\n                        \"width\": 0.1302086\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4932077,\n                            \"y\": 0.21439208\n                        },\n                        {\n                            \"x\": 0.6234163,\n                            \"y\": 0.21439208\n                        },\n                        {\n                            \"x\": 0.6234163,\n                            \"y\": 0.23330139\n                        },\n                        {\n                            \"x\": 0.4932077,\n                            \"y\": 0.23330139\n                        }\n                    ]\n                },\n                \"id\": \"4bfd9716-4fce-4e69-813d-ac3806906a93\",\n                \"text\": \"Date:\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.79194,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02119487,\n                        \"left\": 0.6617794,\n                        \"top\": 0.2128705,\n                        \"width\": 0.28220695\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6617794,\n                            \"y\": 0.2128705\n                        },\n                        {\n                            \"x\": 0.94398636,\n                            \"y\": 0.2128705\n                        },\n                        {\n                            \"x\": 0.94398636,\n                            \"y\": 0.23406537\n                        },\n                        {\n                            \"x\": 0.6617794,\n                            \"y\": 0.23406537\n                        }\n                    ]\n                },\n                \"id\": \"f2790ea1-b8a8-4dd6-a5ca-9157bec638e7\",\n                \"text\": \"03/02/2020\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.93105,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01837319,\n                        \"left\": 0.2186609,\n                        \"top\": 0.24509671,\n                        \"width\": 0.22265746\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.2186609,\n                            \"y\": 0.24509671\n                        },\n                        {\n                            \"x\": 0.44131836,\n                            \"y\": 0.24509671\n                        },\n                        {\n                            \"x\": 0.44131836,\n                            \"y\": 0.2634699\n                        },\n                        {\n                            \"x\": 0.2186609,\n                            \"y\": 0.2634699\n                        }\n                    ]\n                },\n                \"id\": \"479e9792-2fa7-452b-bc50-69d69dc6a9e5\",\n                \"text\": \"Customer\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.93316,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01851917,\n                        \"left\": 0.47130764,\n                        \"top\": 0.24504267,\n                        \"width\": 0.13257182\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.47130764,\n                            \"y\": 0.24504267\n                        },\n                        {\n                            \"x\": 0.60387945,\n                            \"y\": 0.24504267\n                        },\n                        {\n                            \"x\": 0.60387945,\n                            \"y\": 0.26356184\n                        },\n                        {\n                            \"x\": 0.47130764,\n                            \"y\": 0.26356184\n                        }\n                    ]\n                },\n                \"id\": \"4c560b98-f2eb-4aef-9d17-9a4997b5ed9a\",\n                \"text\": \"Name:\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.85619,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01922529,\n                        \"left\": 0.6431094,\n                        \"top\": 0.24418725,\n                        \"width\": 0.10824017\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6431094,\n                            \"y\": 0.24418725\n                        },\n                        {\n                            \"x\": 0.75134957,\n                            \"y\": 0.24418725\n                        },\n                        {\n                            \"x\": 0.75134957,\n                            \"y\": 0.26341254\n                        },\n                        {\n                            \"x\": 0.6431094,\n                            \"y\": 0.26341254\n                        }\n                    ]\n                },\n                \"id\": \"98a1e130-9aa0-4592-88aa-b546f2bd0e7a\",\n                \"text\": \"John\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.90413,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0187879,\n                        \"left\": 0.7830796,\n                        \"top\": 0.24461411,\n                        \"width\": 0.0805471\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.7830796,\n                            \"y\": 0.24461411\n                        },\n                        {\n                            \"x\": 0.8636267,\n                            \"y\": 0.24461411\n                        },\n                        {\n                            \"x\": 0.8636267,\n                            \"y\": 0.26340201\n                        },\n                        {\n                            \"x\": 0.7830796,\n                            \"y\": 0.26340201\n                        }\n                    ]\n                },\n                \"id\": \"c039d6e4-3451-4b7d-be9b-4aa68e099364\",\n                \"text\": \"Doe\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.95256,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01986256,\n                        \"left\": 0.21588285,\n                        \"top\": 0.30540082,\n                        \"width\": 0.16944896\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21588285,\n                            \"y\": 0.30540082\n                        },\n                        {\n                            \"x\": 0.3853318,\n                            \"y\": 0.30540082\n                        },\n                        {\n                            \"x\": 0.3853318,\n                            \"y\": 0.32526338\n                        },\n                        {\n                            \"x\": 0.21588285,\n                            \"y\": 0.32526338\n                        }\n                    ]\n                },\n                \"id\": \"039e310a-53ff-4d55-bd9b-6cb878c23ca7\",\n                \"text\": \"Device\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.399765,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02488226,\n                        \"left\": 0.41478527,\n                        \"top\": 0.30372137,\n                        \"width\": 0.10394543\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.41478527,\n                            \"y\": 0.30372137\n                        },\n                        {\n                            \"x\": 0.5187307,\n                            \"y\": 0.30372137\n                        },\n                        {\n                            \"x\": 0.5187307,\n                            \"y\": 0.32860363\n                        },\n                        {\n                            \"x\": 0.41478527,\n                            \"y\": 0.32860363\n                        }\n                    ]\n                },\n                \"id\": \"42949eb3-3f15-41f4-bd7f-fb1f3f1e0d1d\",\n                \"text\": \"S/N:\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 98.30255,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01956784,\n                        \"left\": 0.55881935,\n                        \"top\": 0.30574566,\n                        \"width\": 0.2476731\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.55881935,\n                            \"y\": 0.30574566\n                        },\n                        {\n                            \"x\": 0.80649245,\n                            \"y\": 0.30574566\n                        },\n                        {\n                            \"x\": 0.80649245,\n                            \"y\": 0.3253135\n                        },\n                        {\n                            \"x\": 0.55881935,\n                            \"y\": 0.3253135\n                        }\n                    ]\n                },\n                \"id\": \"5752a4cb-82cb-4ff1-8509-c64f6a7a8eb1\",\n                \"text\": \"424403233\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.683975,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02560773,\n                        \"left\": 0.21768335,\n                        \"top\": 0.33554754,\n                        \"width\": 0.18862198\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21768335,\n                            \"y\": 0.33554754\n                        },\n                        {\n                            \"x\": 0.40630534,\n                            \"y\": 0.33554754\n                        },\n                        {\n                            \"x\": 0.40630534,\n                            \"y\": 0.36115527\n                        },\n                        {\n                            \"x\": 0.21768335,\n                            \"y\": 0.36115527\n                        }\n                    ]\n                },\n                \"id\": \"3d0e87a0-0102-46dc-b56e-e9ccd989db88\",\n                \"text\": \"Policy:\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.70589,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01930141,\n                        \"left\": 0.4435765,\n                        \"top\": 0.33650023,\n                        \"width\": 0.22073795\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4435765,\n                            \"y\": 0.33650023\n                        },\n                        {\n                            \"x\": 0.66431445,\n                            \"y\": 0.33650023\n                        },\n                        {\n                            \"x\": 0.66431445,\n                            \"y\": 0.35580164\n                        },\n                        {\n                            \"x\": 0.4435765,\n                            \"y\": 0.35580164\n                        }\n                    ]\n                },\n                \"id\": \"b64799f1-334d-4ec1-96b7-c12b44fd8f82\",\n                \"text\": \"AG133441\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.83076,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01972029,\n                        \"left\": 0.21901202,\n                        \"top\": 0.39774206,\n                        \"width\": 0.08121218\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21901202,\n                            \"y\": 0.39774206\n                        },\n                        {\n                            \"x\": 0.3002242,\n                            \"y\": 0.39774206\n                        },\n                        {\n                            \"x\": 0.3002242,\n                            \"y\": 0.41746235\n                        },\n                        {\n                            \"x\": 0.21901202,\n                            \"y\": 0.41746235\n                        }\n                    ]\n                },\n                \"id\": \"5f778c44-6799-4fac-b1f6-9f32fa16a3b2\",\n                \"text\": \"Job\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 95.19325,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01986042,\n                        \"left\": 0.32681617,\n                        \"top\": 0.3976416,\n                        \"width\": 0.20014289\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.32681617,\n                            \"y\": 0.3976416\n                        },\n                        {\n                            \"x\": 0.52695906,\n                            \"y\": 0.3976416\n                        },\n                        {\n                            \"x\": 0.52695906,\n                            \"y\": 0.41750202\n                        },\n                        {\n                            \"x\": 0.32681617,\n                            \"y\": 0.41750202\n                        }\n                    ]\n                },\n                \"id\": \"12f1a47a-a57d-408e-8952-d551ffd138a1\",\n                \"text\": \"Details\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.78479,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01882303,\n                        \"left\": 0.21992747,\n                        \"top\": 0.49122387,\n                        \"width\": 0.16439787\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21992747,\n                            \"y\": 0.49122387\n                        },\n                        {\n                            \"x\": 0.38432533,\n                            \"y\": 0.49122387\n                        },\n                        {\n                            \"x\": 0.38432533,\n                            \"y\": 0.5100469\n                        },\n                        {\n                            \"x\": 0.21992747,\n                            \"y\": 0.5100469\n                        }\n                    ]\n                },\n                \"id\": \"1f05bab3-df48-4236-a10c-54698377f602\",\n                \"text\": \"Screen\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.972336,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02327317,\n                        \"left\": 0.4144567,\n                        \"top\": 0.49067783,\n                        \"width\": 0.1952607\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4144567,\n                            \"y\": 0.49067783\n                        },\n                        {\n                            \"x\": 0.6097174,\n                            \"y\": 0.49067783\n                        },\n                        {\n                            \"x\": 0.6097174,\n                            \"y\": 0.513951\n                        },\n                        {\n                            \"x\": 0.4144567,\n                            \"y\": 0.513951\n                        }\n                    ]\n                },\n                \"id\": \"14ea2388-50ed-4be0-bc62-d116df59391c\",\n                \"text\": \"Replace\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 98.841064,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0222494,\n                        \"left\": 0.6449814,\n                        \"top\": 0.4894485,\n                        \"width\": 0.1566963\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6449814,\n                            \"y\": 0.4894485\n                        },\n                        {\n                            \"x\": 0.8016777,\n                            \"y\": 0.4894485\n                        },\n                        {\n                            \"x\": 0.8016777,\n                            \"y\": 0.5116979\n                        },\n                        {\n                            \"x\": 0.6449814,\n                            \"y\": 0.5116979\n                        }\n                    ]\n                },\n                \"id\": \"faafe006-c642-43a9-85dc-885d95c9ce85\",\n                \"text\": \"$99.00\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.46387,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01950795,\n                        \"left\": 0.21758953,\n                        \"top\": 0.5205627,\n                        \"width\": 0.13820617\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21758953,\n                            \"y\": 0.5205627\n                        },\n                        {\n                            \"x\": 0.3557957,\n                            \"y\": 0.5205627\n                        },\n                        {\n                            \"x\": 0.3557957,\n                            \"y\": 0.54007065\n                        },\n                        {\n                            \"x\": 0.21758953,\n                            \"y\": 0.54007065\n                        }\n                    ]\n                },\n                \"id\": \"cf23cf10-de84-475a-abf7-82b0fcf5b656\",\n                \"text\": \"Labor\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.88478,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02381537,\n                        \"left\": 0.38494027,\n                        \"top\": 0.52069163,\n                        \"width\": 0.21601659\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.38494027,\n                            \"y\": 0.52069163\n                        },\n                        {\n                            \"x\": 0.60095686,\n                            \"y\": 0.52069163\n                        },\n                        {\n                            \"x\": 0.60095686,\n                            \"y\": 0.544507\n                        },\n                        {\n                            \"x\": 0.38494027,\n                            \"y\": 0.544507\n                        }\n                    ]\n                },\n                \"id\": \"1573707e-60f3-4e85-90b7-0ff29f9c1b4a\",\n                \"text\": \"Charges\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 98.22011,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02207894,\n                        \"left\": 0.6453457,\n                        \"top\": 0.5196849,\n                        \"width\": 0.1626803\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6453457,\n                            \"y\": 0.5196849\n                        },\n                        {\n                            \"x\": 0.808026,\n                            \"y\": 0.5196849\n                        },\n                        {\n                            \"x\": 0.808026,\n                            \"y\": 0.54176384\n                        },\n                        {\n                            \"x\": 0.6453457,\n                            \"y\": 0.54176384\n                        }\n                    ]\n                },\n                \"id\": \"f4ab36bc-57b3-4db7-af47-59b5674e4e02\",\n                \"text\": \"$49.99\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.9376,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0228577,\n                        \"left\": 0.23006997,\n                        \"top\": 0.5515018,\n                        \"width\": 0.12576666\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.23006997,\n                            \"y\": 0.5515018\n                        },\n                        {\n                            \"x\": 0.35583663,\n                            \"y\": 0.5515018\n                        },\n                        {\n                            \"x\": 0.35583663,\n                            \"y\": 0.5743595\n                        },\n                        {\n                            \"x\": 0.23006997,\n                            \"y\": 0.5743595\n                        }\n                    ]\n                },\n                \"id\": \"34066604-b348-4e63-b97f-915f4bdde8c2\",\n                \"text\": \"(flat\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.20632,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02095094,\n                        \"left\": 0.38925728,\n                        \"top\": 0.5531734,\n                        \"width\": 0.12701938\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.38925728,\n                            \"y\": 0.5531734\n                        },\n                        {\n                            \"x\": 0.51627666,\n                            \"y\": 0.5531734\n                        },\n                        {\n                            \"x\": 0.51627666,\n                            \"y\": 0.57412434\n                        },\n                        {\n                            \"x\": 0.38925728,\n                            \"y\": 0.57412434\n                        }\n                    ]\n                },\n                \"id\": \"dc3d75e3-3dd1-4706-8d4a-d7313ac8288f\",\n                \"text\": \"rate)\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.896935,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02068376,\n                        \"left\": 0.21824719,\n                        \"top\": 0.61347944,\n                        \"width\": 0.27851984\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21824719,\n                            \"y\": 0.61347944\n                        },\n                        {\n                            \"x\": 0.49676704,\n                            \"y\": 0.61347944\n                        },\n                        {\n                            \"x\": 0.49676704,\n                            \"y\": 0.6341632\n                        },\n                        {\n                            \"x\": 0.21824719,\n                            \"y\": 0.6341632\n                        }\n                    ]\n                },\n                \"id\": \"637b4c54-931b-4d3a-8800-2a58b0a390ed\",\n                \"text\": \"Additional\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.95183,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0186945,\n                        \"left\": 0.52867407,\n                        \"top\": 0.6150696,\n                        \"width\": 0.15252773\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.52867407,\n                            \"y\": 0.6150696\n                        },\n                        {\n                            \"x\": 0.6812018,\n                            \"y\": 0.6150696\n                        },\n                        {\n                            \"x\": 0.6812018,\n                            \"y\": 0.6337641\n                        },\n                        {\n                            \"x\": 0.52867407,\n                            \"y\": 0.6337641\n                        }\n                    ]\n                },\n                \"id\": \"b68e3e55-d6c7-4600-8d20-9897f015212f\",\n                \"text\": \"Notes\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 9.556861,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.014019,\n                        \"left\": 0.67736626,\n                        \"top\": 0.6194276,\n                        \"width\": 0.01196009\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.67736626,\n                            \"y\": 0.6194276\n                        },\n                        {\n                            \"x\": 0.68932635,\n                            \"y\": 0.6194276\n                        },\n                        {\n                            \"x\": 0.68932635,\n                            \"y\": 0.6334466\n                        },\n                        {\n                            \"x\": 0.67736626,\n                            \"y\": 0.6334466\n                        }\n                    ]\n                },\n                \"id\": \"d9dd6924-3c81-438e-9577-6fa307a4dcea\",\n                \"text\": \"-\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.769585,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02312314,\n                        \"left\": 0.21707901,\n                        \"top\": 0.6463424,\n                        \"width\": 0.22652572\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21707901,\n                            \"y\": 0.6463424\n                        },\n                        {\n                            \"x\": 0.44360474,\n                            \"y\": 0.6463424\n                        },\n                        {\n                            \"x\": 0.44360474,\n                            \"y\": 0.66946554\n                        },\n                        {\n                            \"x\": 0.21707901,\n                            \"y\": 0.66946554\n                        }\n                    ]\n                },\n                \"id\": \"538088fc-5db5-4c0a-b273-82a95ce5a545\",\n                \"text\": \"Warranty\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.96708,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02027376,\n                        \"left\": 0.47374314,\n                        \"top\": 0.64506114,\n                        \"width\": 0.13972536\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.47374314,\n                            \"y\": 0.64506114\n                        },\n                        {\n                            \"x\": 0.6134685,\n                            \"y\": 0.64506114\n                        },\n                        {\n                            \"x\": 0.6134685,\n                            \"y\": 0.6653349\n                        },\n                        {\n                            \"x\": 0.47374314,\n                            \"y\": 0.6653349\n                        }\n                    ]\n                },\n                \"id\": \"aa9ce232-61c7-478d-8cb8-da41254700b6\",\n                \"text\": \"fixed\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.94415,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01931554,\n                        \"left\": 0.6426299,\n                        \"top\": 0.64560676,\n                        \"width\": 0.05196246\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6426299,\n                            \"y\": 0.64560676\n                        },\n                        {\n                            \"x\": 0.69459236,\n                            \"y\": 0.64560676\n                        },\n                        {\n                            \"x\": 0.69459236,\n                            \"y\": 0.6649223\n                        },\n                        {\n                            \"x\": 0.6426299,\n                            \"y\": 0.6649223\n                        }\n                    ]\n                },\n                \"id\": \"60b9cfc6-d074-400a-a2cb-3a6c1f8a18a5\",\n                \"text\": \"10\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.93195,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0241559,\n                        \"left\": 0.72451586,\n                        \"top\": 0.6455029,\n                        \"width\": 0.10944064\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.72451586,\n                            \"y\": 0.6455029\n                        },\n                        {\n                            \"x\": 0.8339565,\n                            \"y\": 0.6455029\n                        },\n                        {\n                            \"x\": 0.8339565,\n                            \"y\": 0.6696588\n                        },\n                        {\n                            \"x\": 0.72451586,\n                            \"y\": 0.6696588\n                        }\n                    ]\n                },\n                \"id\": \"1f4f8154-c52e-4328-8b5e-1067494f1718\",\n                \"text\": \"days\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.96383,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01938933,\n                        \"left\": 0.22088936,\n                        \"top\": 0.6759994,\n                        \"width\": 0.10933968\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.22088936,\n                            \"y\": 0.6759994\n                        },\n                        {\n                            \"x\": 0.33022904,\n                            \"y\": 0.6759994\n                        },\n                        {\n                            \"x\": 0.33022904,\n                            \"y\": 0.69538873\n                        },\n                        {\n                            \"x\": 0.22088936,\n                            \"y\": 0.69538873\n                        }\n                    ]\n                },\n                \"id\": \"6487eb6e-3d0b-4779-afce-89f1ee168e5d\",\n                \"text\": \"from\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.96759,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02377635,\n                        \"left\": 0.35991177,\n                        \"top\": 0.67601055,\n                        \"width\": 0.1948047\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.35991177,\n                            \"y\": 0.67601055\n                        },\n                        {\n                            \"x\": 0.55471647,\n                            \"y\": 0.67601055\n                        },\n                        {\n                            \"x\": 0.55471647,\n                            \"y\": 0.6997869\n                        },\n                        {\n                            \"x\": 0.35991177,\n                            \"y\": 0.6997869\n                        }\n                    ]\n                },\n                \"id\": \"ebd1215a-7784-4600-a72a-d16a5dff7fd9\",\n                \"text\": \"receipt\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.91045,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01988587,\n                        \"left\": 0.58531296,\n                        \"top\": 0.675953,\n                        \"width\": 0.10864434\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.58531296,\n                            \"y\": 0.675953\n                        },\n                        {\n                            \"x\": 0.6939573,\n                            \"y\": 0.675953\n                        },\n                        {\n                            \"x\": 0.6939573,\n                            \"y\": 0.69583887\n                        },\n                        {\n                            \"x\": 0.58531296,\n                            \"y\": 0.69583887\n                        }\n                    ]\n                },\n                \"id\": \"20c82995-e30e-4c14-9edf-b03aa21a17c6\",\n                \"text\": \"date\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.81427,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02351264,\n                        \"left\": 0.21727453,\n                        \"top\": 0.7385722,\n                        \"width\": 0.18703507\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21727453,\n                            \"y\": 0.7385722\n                        },\n                        {\n                            \"x\": 0.4043096,\n                            \"y\": 0.7385722\n                        },\n                        {\n                            \"x\": 0.4043096,\n                            \"y\": 0.76208484\n                        },\n                        {\n                            \"x\": 0.21727453,\n                            \"y\": 0.76208484\n                        }\n                    ]\n                },\n                \"id\": \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\",\n                \"text\": \"Total\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.680756,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0288379,\n                        \"left\": 0.45194077,\n                        \"top\": 0.7367701,\n                        \"width\": 0.22989088\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.45194077,\n                            \"y\": 0.7367701\n                        },\n                        {\n                            \"x\": 0.68183166,\n                            \"y\": 0.7367701\n                        },\n                        {\n                            \"x\": 0.68183166,\n                            \"y\": 0.765608\n                        },\n                        {\n                            \"x\": 0.45194077,\n                            \"y\": 0.765608\n                        }\n                    ]\n                },\n                \"id\": \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\",\n                \"text\": \"$148.99\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.71886,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0194466,\n                        \"left\": 0.21997344,\n                        \"top\": 0.804526,\n                        \"width\": 0.10959179\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21997344,\n                            \"y\": 0.804526\n                        },\n                        {\n                            \"x\": 0.32956523,\n                            \"y\": 0.804526\n                        },\n                        {\n                            \"x\": 0.32956523,\n                            \"y\": 0.8239726\n                        },\n                        {\n                            \"x\": 0.21997344,\n                            \"y\": 0.8239726\n                        }\n                    ]\n                },\n                \"id\": \"7379e93f-df82-4d28-a90e-f8e3f52cab0a\",\n                \"text\": \"Paid\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.67575,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0239643,\n                        \"left\": 0.35615247,\n                        \"top\": 0.8042776,\n                        \"width\": 0.07581425\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.35615247,\n                            \"y\": 0.8042776\n                        },\n                        {\n                            \"x\": 0.43196672,\n                            \"y\": 0.8042776\n                        },\n                        {\n                            \"x\": 0.43196672,\n                            \"y\": 0.8282419\n                        },\n                        {\n                            \"x\": 0.35615247,\n                            \"y\": 0.8282419\n                        }\n                    ]\n                },\n                \"id\": \"e3312857-2a6a-40de-b7bf-d00bb6f264dd\",\n                \"text\": \"by:\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 96.74888,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02006213,\n                        \"left\": 0.47122723,\n                        \"top\": 0.8043731,\n                        \"width\": 0.16805822\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.47122723,\n                            \"y\": 0.8043731\n                        },\n                        {\n                            \"x\": 0.63928545,\n                            \"y\": 0.8043731\n                        },\n                        {\n                            \"x\": 0.63928545,\n                            \"y\": 0.82443523\n                        },\n                        {\n                            \"x\": 0.47122723,\n                            \"y\": 0.82443523\n                        }\n                    ]\n                },\n                \"id\": \"7ec950dc-bc15-4d39-9fda-e2f8efdf7f03\",\n                \"text\": \"Credit\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.904076,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01898145,\n                        \"left\": 0.6695494,\n                        \"top\": 0.8046887,\n                        \"width\": 0.1124407\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6695494,\n                            \"y\": 0.8046887\n                        },\n                        {\n                            \"x\": 0.7819901,\n                            \"y\": 0.8046887\n                        },\n                        {\n                            \"x\": 0.7819901,\n                            \"y\": 0.82367015\n                        },\n                        {\n                            \"x\": 0.6695494,\n                            \"y\": 0.82367015\n                        }\n                    ]\n                },\n                \"id\": \"d0119262-d800-466d-aa6d-68bf0cfc6c48\",\n                \"text\": \"Card\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.86294,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0187101,\n                        \"left\": 0.21655525,\n                        \"top\": 0.8370553,\n                        \"width\": 0.11397048\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21655525,\n                            \"y\": 0.8370553\n                        },\n                        {\n                            \"x\": 0.33052573,\n                            \"y\": 0.8370553\n                        },\n                        {\n                            \"x\": 0.33052573,\n                            \"y\": 0.8557654\n                        },\n                        {\n                            \"x\": 0.21655525,\n                            \"y\": 0.8557654\n                        }\n                    ]\n                },\n                \"id\": \"a20107e2-7b35-40b9-86e0-254843149497\",\n                \"text\": \"VISA\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.96192,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0193705,\n                        \"left\": 0.36111665,\n                        \"top\": 0.8358282,\n                        \"width\": 0.10672855\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.36111665,\n                            \"y\": 0.8358282\n                        },\n                        {\n                            \"x\": 0.4678452,\n                            \"y\": 0.8358282\n                        },\n                        {\n                            \"x\": 0.4678452,\n                            \"y\": 0.8551987\n                        },\n                        {\n                            \"x\": 0.36111665,\n                            \"y\": 0.8551987\n                        }\n                    ]\n                },\n                \"id\": \"07d1cf9f-117f-4b31-8e72-c3720068e511\",\n                \"text\": \"4400\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.8873,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0176021,\n                        \"left\": 0.4979113,\n                        \"top\": 0.8377293,\n                        \"width\": 0.11482737\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4979113,\n                            \"y\": 0.8377293\n                        },\n                        {\n                            \"x\": 0.61273867,\n                            \"y\": 0.8377293\n                        },\n                        {\n                            \"x\": 0.61273867,\n                            \"y\": 0.8553314\n                        },\n                        {\n                            \"x\": 0.4979113,\n                            \"y\": 0.8553314\n                        }\n                    ]\n                },\n                \"id\": \"8985ef07-086a-40bd-afc2-cce4da9f98f9\",\n                \"text\": \"XXXX\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.75661,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0179551,\n                        \"left\": 0.63973707,\n                        \"top\": 0.8369649,\n                        \"width\": 0.11440289\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.63973707,\n                            \"y\": 0.8369649\n                        },\n                        {\n                            \"x\": 0.75413996,\n                            \"y\": 0.8369649\n                        },\n                        {\n                            \"x\": 0.75413996,\n                            \"y\": 0.85492\n                        },\n                        {\n                            \"x\": 0.63973707,\n                            \"y\": 0.85492\n                        }\n                    ]\n                },\n                \"id\": \"b69d79c9-e01d-4abf-b7cf-65485bf6ae8f\",\n                \"text\": \"XXXX\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.888405,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01848046,\n                        \"left\": 0.7815282,\n                        \"top\": 0.837294,\n                        \"width\": 0.112675\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.7815282,\n                            \"y\": 0.837294\n                        },\n                        {\n                            \"x\": 0.8942032,\n                            \"y\": 0.837294\n                        },\n                        {\n                            \"x\": 0.8942032,\n                            \"y\": 0.85577446\n                        },\n                        {\n                            \"x\": 0.7815282,\n                            \"y\": 0.85577446\n                        }\n                    ]\n                },\n                \"id\": \"085da2d7-4b1f-430e-a3ad-accac40d6ea0\",\n                \"text\": \"XXXX\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.38315,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.0183004,\n                        \"left\": 0.21773706,\n                        \"top\": 0.8676459,\n                        \"width\": 0.12845884\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21773706,\n                            \"y\": 0.8676459\n                        },\n                        {\n                            \"x\": 0.3461959,\n                            \"y\": 0.8676459\n                        },\n                        {\n                            \"x\": 0.3461959,\n                            \"y\": 0.8859463\n                        },\n                        {\n                            \"x\": 0.21773706,\n                            \"y\": 0.8859463\n                        }\n                    ]\n                },\n                \"id\": \"566f6a76-c7c4-470b-b768-e0880caccf5f\",\n                \"text\": \"AUTH:\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"confidence\": 99.847015,\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.01897287,\n                        \"left\": 0.39013013,\n                        \"top\": 0.86649597,\n                        \"width\": 0.15950356\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.39013013,\n                            \"y\": 0.86649597\n                        },\n                        {\n                            \"x\": 0.5496337,\n                            \"y\": 0.86649597\n                        },\n                        {\n                            \"x\": 0.5496337,\n                            \"y\": 0.88546884\n                        },\n                        {\n                            \"x\": 0.39013013,\n                            \"y\": 0.88546884\n                        }\n                    ]\n                },\n                \"id\": \"ca2d3fde-bb9f-477f-a852-f2df8990517c\",\n                \"text\": \"043221\"\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 55.551563,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.022006284,\n                        \"left\": 0.21704902,\n                        \"top\": 0.5207687,\n                        \"width\": 0.38852945\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21704902,\n                            \"y\": 0.5207687\n                        },\n                        {\n                            \"x\": 0.6055785,\n                            \"y\": 0.5207687\n                        },\n                        {\n                            \"x\": 0.6055785,\n                            \"y\": 0.542775\n                        },\n                        {\n                            \"x\": 0.21704902,\n                            \"y\": 0.542775\n                        }\n                    ]\n                },\n                \"id\": \"d19c70c0-50f1-4720-aae8-785ad81bfb52\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"500a5d4b-a855-4f33-a262-33304cf2b3e4\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"cf23cf10-de84-475a-abf7-82b0fcf5b656\",\n                            \"1573707e-60f3-4e85-90b7-0ff29f9c1b4a\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 55.551563,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019893166,\n                        \"left\": 0.6438621,\n                        \"top\": 0.51978976,\n                        \"width\": 0.1654523\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6438621,\n                            \"y\": 0.51978976\n                        },\n                        {\n                            \"x\": 0.80931437,\n                            \"y\": 0.51978976\n                        },\n                        {\n                            \"x\": 0.80931437,\n                            \"y\": 0.5396829\n                        },\n                        {\n                            \"x\": 0.6438621,\n                            \"y\": 0.5396829\n                        }\n                    ]\n                },\n                \"id\": \"500a5d4b-a855-4f33-a262-33304cf2b3e4\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"f4ab36bc-57b3-4db7-af47-59b5674e4e02\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 57.21336,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02102787,\n                        \"left\": 0.21815214,\n                        \"top\": 0.49226,\n                        \"width\": 0.39622915\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21815214,\n                            \"y\": 0.49226\n                        },\n                        {\n                            \"x\": 0.6143813,\n                            \"y\": 0.49226\n                        },\n                        {\n                            \"x\": 0.6143813,\n                            \"y\": 0.5132879\n                        },\n                        {\n                            \"x\": 0.21815214,\n                            \"y\": 0.5132879\n                        }\n                    ]\n                },\n                \"id\": \"ec7ebb77-2cf3-440f-875f-47771c99aba6\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"ffc0f514-cdb7-49c9-a729-ab85a51ae1f0\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"1f05bab3-df48-4236-a10c-54698377f602\",\n                            \"14ea2388-50ed-4be0-bc62-d116df59391c\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 57.21336,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.021711515,\n                        \"left\": 0.64606464,\n                        \"top\": 0.48996806,\n                        \"width\": 0.16338573\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.64606464,\n                            \"y\": 0.48996806\n                        },\n                        {\n                            \"x\": 0.8094503,\n                            \"y\": 0.48996806\n                        },\n                        {\n                            \"x\": 0.8094503,\n                            \"y\": 0.5116796\n                        },\n                        {\n                            \"x\": 0.64606464,\n                            \"y\": 0.5116796\n                        }\n                    ]\n                },\n                \"id\": \"ffc0f514-cdb7-49c9-a729-ab85a51ae1f0\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"faafe006-c642-43a9-85dc-885d95c9ce85\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 61.78828,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.018444765,\n                        \"left\": 0.49412963,\n                        \"top\": 0.21524137,\n                        \"width\": 0.13285735\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.49412963,\n                            \"y\": 0.21524137\n                        },\n                        {\n                            \"x\": 0.626987,\n                            \"y\": 0.21524137\n                        },\n                        {\n                            \"x\": 0.626987,\n                            \"y\": 0.23368613\n                        },\n                        {\n                            \"x\": 0.49412963,\n                            \"y\": 0.23368613\n                        }\n                    ]\n                },\n                \"id\": \"8801f4b7-d958-47d9-8f65-f4bff9f16afd\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"81139649-b27c-48d6-9ab0-08350756d0f1\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"4bfd9716-4fce-4e69-813d-ac3806906a93\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 61.78828,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.021107702,\n                        \"left\": 0.663132,\n                        \"top\": 0.21348816,\n                        \"width\": 0.28013107\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.663132,\n                            \"y\": 0.21348816\n                        },\n                        {\n                            \"x\": 0.9432631,\n                            \"y\": 0.21348816\n                        },\n                        {\n                            \"x\": 0.9432631,\n                            \"y\": 0.23459587\n                        },\n                        {\n                            \"x\": 0.663132,\n                            \"y\": 0.23459587\n                        }\n                    ]\n                },\n                \"id\": \"81139649-b27c-48d6-9ab0-08350756d0f1\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"f2790ea1-b8a8-4dd6-a5ca-9157bec638e7\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 53.477592,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.022197094,\n                        \"left\": 0.21318783,\n                        \"top\": 0.3060539,\n                        \"width\": 0.31240368\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21318783,\n                            \"y\": 0.3060539\n                        },\n                        {\n                            \"x\": 0.5255915,\n                            \"y\": 0.3060539\n                        },\n                        {\n                            \"x\": 0.5255915,\n                            \"y\": 0.328251\n                        },\n                        {\n                            \"x\": 0.21318783,\n                            \"y\": 0.328251\n                        }\n                    ]\n                },\n                \"id\": \"3871231f-34e7-40d5-ac93-e9bb168a5ca4\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"47c2c981-9590-447c-b3b1-f35dae4c6670\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"039e310a-53ff-4d55-bd9b-6cb878c23ca7\",\n                            \"42949eb3-3f15-41f4-bd7f-fb1f3f1e0d1d\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 53.477592,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.020867875,\n                        \"left\": 0.5610694,\n                        \"top\": 0.30533606,\n                        \"width\": 0.24651062\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.5610694,\n                            \"y\": 0.30533606\n                        },\n                        {\n                            \"x\": 0.80758005,\n                            \"y\": 0.30533606\n                        },\n                        {\n                            \"x\": 0.80758005,\n                            \"y\": 0.32620394\n                        },\n                        {\n                            \"x\": 0.5610694,\n                            \"y\": 0.32620394\n                        }\n                    ]\n                },\n                \"id\": \"47c2c981-9590-447c-b3b1-f35dae4c6670\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"5752a4cb-82cb-4ff1-8509-c64f6a7a8eb1\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 46.55586,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.020361632,\n                        \"left\": 0.21510133,\n                        \"top\": 0.24574025,\n                        \"width\": 0.3912498\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21510133,\n                            \"y\": 0.24574025\n                        },\n                        {\n                            \"x\": 0.60635114,\n                            \"y\": 0.24574025\n                        },\n                        {\n                            \"x\": 0.60635114,\n                            \"y\": 0.26610187\n                        },\n                        {\n                            \"x\": 0.21510133,\n                            \"y\": 0.26610187\n                        }\n                    ]\n                },\n                \"id\": \"137d5e1d-7d04-490e-920a-dfbf37ee7450\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"a323081d-baac-4306-ac61-70c9393a73eb\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"479e9792-2fa7-452b-bc50-69d69dc6a9e5\",\n                            \"4c560b98-f2eb-4aef-9d17-9a4997b5ed9a\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 46.55586,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.019857462,\n                        \"left\": 0.6460559,\n                        \"top\": 0.2444246,\n                        \"width\": 0.21836998\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.6460559,\n                            \"y\": 0.2444246\n                        },\n                        {\n                            \"x\": 0.86442584,\n                            \"y\": 0.2444246\n                        },\n                        {\n                            \"x\": 0.86442584,\n                            \"y\": 0.26428205\n                        },\n                        {\n                            \"x\": 0.6460559,\n                            \"y\": 0.26428205\n                        }\n                    ]\n                },\n                \"id\": \"a323081d-baac-4306-ac61-70c9393a73eb\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"98a1e130-9aa0-4592-88aa-b546f2bd0e7a\",\n                            \"c039d6e4-3451-4b7d-be9b-4aa68e099364\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 46.362053,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02477883,\n                        \"left\": 0.21738026,\n                        \"top\": 0.33516002,\n                        \"width\": 0.1859698\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21738026,\n                            \"y\": 0.33516002\n                        },\n                        {\n                            \"x\": 0.40335006,\n                            \"y\": 0.33516002\n                        },\n                        {\n                            \"x\": 0.40335006,\n                            \"y\": 0.35993883\n                        },\n                        {\n                            \"x\": 0.21738026,\n                            \"y\": 0.35993883\n                        }\n                    ]\n                },\n                \"id\": \"e61c53dd-e189-41ab-9034-8e76e999ec8f\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"89061259-37e2-44dc-a0c4-b03638c26124\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"3d0e87a0-0102-46dc-b56e-e9ccd989db88\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 46.362053,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.021096388,\n                        \"left\": 0.44273973,\n                        \"top\": 0.3357211,\n                        \"width\": 0.22283408\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.44273973,\n                            \"y\": 0.3357211\n                        },\n                        {\n                            \"x\": 0.6655738,\n                            \"y\": 0.3357211\n                        },\n                        {\n                            \"x\": 0.6655738,\n                            \"y\": 0.35681748\n                        },\n                        {\n                            \"x\": 0.44273973,\n                            \"y\": 0.35681748\n                        }\n                    ]\n                },\n                \"id\": \"89061259-37e2-44dc-a0c4-b03638c26124\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"b64799f1-334d-4ec1-96b7-c12b44fd8f82\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 41.29178,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.02385445,\n                        \"left\": 0.21882042,\n                        \"top\": 0.73902375,\n                        \"width\": 0.19576286\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21882042,\n                            \"y\": 0.73902375\n                        },\n                        {\n                            \"x\": 0.4145833,\n                            \"y\": 0.73902375\n                        },\n                        {\n                            \"x\": 0.4145833,\n                            \"y\": 0.7628782\n                        },\n                        {\n                            \"x\": 0.21882042,\n                            \"y\": 0.7628782\n                        }\n                    ]\n                },\n                \"id\": \"efef5f95-e05c-476c-8251-6378c6d69001\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 41.29178,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"boundingBox\": {\n                        \"height\": 0.026887024,\n                        \"left\": 0.45399767,\n                        \"top\": 0.73757654,\n                        \"width\": 0.2335081\n                    },\n                    \"polygon\": [\n                        {\n                            \"x\": 0.45399767,\n                            \"y\": 0.73757654\n                        },\n                        {\n                            \"x\": 0.6875058,\n                            \"y\": 0.73757654\n                        },\n                        {\n                            \"x\": 0.6875058,\n                            \"y\": 0.76446354\n                        },\n                        {\n                            \"x\": 0.45399767,\n                            \"y\": 0.76446354\n                        }\n                    ]\n                },\n                \"id\": \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            }\n        ],\n        \"documentMetadata\": {\n            \"pages\": 1\n        }\n    },\n    \"awsManagedHumanLoopRequestSource\": \"AWS/Textract/AnalyzeDocument/Forms/V1\",\n    \"flowDefinitionArn\": \"arn:aws:sagemaker:us-east-1:298034081971:flow-definition/insurance-validation-flowv6\",\n    \"humanAnswers\": [\n        {\n            \"answerContent\": {\n                \"AWS/Textract/AnalyzeDocument/Forms/V1\": {\n                    \"blocks\": [\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"225f6c94-f9e1-49cb-a57e-e42403bae7c0\",\n                            \"text\": \"Policy\"\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"bd73cca7-048b-4c46-8cef-ece3b2c156e2\",\n                            \"text\": \"Number:\"\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"c3d6df11-c179-4243-aa1a-48fded207d3e\",\n                            \"text\": \"AG133441\"\n                        },\n                        {\n                            \"blockType\": \"KEY_VALUE_SET\",\n                            \"entityTypes\": [\n                                \"KEY\"\n                            ],\n                            \"id\": \"c441171e-8a2a-429c-9296-4e9447378ce6\",\n                            \"relationships\": [\n                                {\n                                    \"ids\": [\n                                        \"2e058639-c1e8-4e9c-a943-396965b53d9e\"\n                                    ],\n                                    \"type\": \"VALUE\"\n                                },\n                                {\n                                    \"ids\": [\n                                        \"225f6c94-f9e1-49cb-a57e-e42403bae7c0\",\n                                        \"bd73cca7-048b-4c46-8cef-ece3b2c156e2\"\n                                    ],\n                                    \"type\": \"CHILD\"\n                                }\n                            ]\n                        },\n                        {\n                            \"blockType\": \"KEY_VALUE_SET\",\n                            \"entityTypes\": [\n                                \"VALUE\"\n                            ],\n                            \"id\": \"2e058639-c1e8-4e9c-a943-396965b53d9e\",\n                            \"relationships\": [\n                                {\n                                    \"ids\": [\n                                        \"c3d6df11-c179-4243-aa1a-48fded207d3e\"\n                                    ],\n                                    \"type\": \"CHILD\"\n                                }\n                            ]\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"f53da241-5916-4efc-8c03-7237ea5d0cef\",\n                            \"text\": \"Device\"\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"3717a4f1-752d-4428-9f5c-e15a0ba35768\",\n                            \"text\": \"ID:\"\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"7f5d76d0-5ff6-4527-9c33-00dcc3fa1f70\",\n                            \"text\": \"424403233\"\n                        },\n                        {\n                            \"blockType\": \"KEY_VALUE_SET\",\n                            \"entityTypes\": [\n                                \"KEY\"\n                            ],\n                            \"id\": \"64cad9a8-2a28-40ef-9ecf-c3111069bde8\",\n                            \"relationships\": [\n                                {\n                                    \"ids\": [\n                                        \"14d04885-c582-4960-8ee2-7d0eff735c30\"\n                                    ],\n                                    \"type\": \"VALUE\"\n                                },\n                                {\n                                    \"ids\": [\n                                        \"f53da241-5916-4efc-8c03-7237ea5d0cef\",\n                                        \"3717a4f1-752d-4428-9f5c-e15a0ba35768\"\n                                    ],\n                                    \"type\": \"CHILD\"\n                                }\n                            ]\n                        },\n                        {\n                            \"blockType\": \"KEY_VALUE_SET\",\n                            \"entityTypes\": [\n                                \"VALUE\"\n                            ],\n                            \"id\": \"14d04885-c582-4960-8ee2-7d0eff735c30\",\n                            \"relationships\": [\n                                {\n                                    \"ids\": [\n                                        \"7f5d76d0-5ff6-4527-9c33-00dcc3fa1f70\"\n                                    ],\n                                    \"type\": \"CHILD\"\n                                }\n                            ]\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\",\n                            \"text\": \"Total\"\n                        },\n                        {\n                            \"blockType\": \"WORD\",\n                            \"id\": \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\",\n                            \"text\": \"$148.99\"\n                        },\n                        {\n                            \"blockType\": \"KEY_VALUE_SET\",\n                            \"confidence\": 41.291778564453125,\n                            \"entityTypes\": [\n                                \"KEY\"\n                            ],\n                            \"id\": \"efef5f95-e05c-476c-8251-6378c6d69001\",\n                            \"relationships\": [\n                                {\n                                    \"ids\": [\n                                        \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\"\n                                    ],\n                                    \"type\": \"VALUE\"\n                                },\n                                {\n                                    \"ids\": [\n                                        \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\"\n                                    ],\n                                    \"type\": \"CHILD\"\n                                }\n                            ]\n                        },\n                        {\n                            \"blockType\": \"KEY_VALUE_SET\",\n                            \"confidence\": 41.291778564453125,\n                            \"entityTypes\": [\n                                \"VALUE\"\n                            ],\n                            \"id\": \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\",\n                            \"relationships\": [\n                                {\n                                    \"ids\": [\n                                        \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\"\n                                    ],\n                                    \"type\": \"CHILD\"\n                                }\n                            ]\n                        }\n                    ]\n                }\n            },\n            \"submissionTime\": \"2020-04-03T11:59:51.470Z\",\n            \"workerId\": \"66b74ced2dbe1cfd\"\n        }\n    ],\n    \"humanLoopName\": \"ivf-25e512f2-75a2-11ea-ab9f-36f379a2239d\",\n    \"humanTaskActivationConditionResults\": {\n        \"Conditions\": [\n            {\n                \"EvaluationResult\": true,\n                \"Or\": [\n                    {\n                        \"ConditionParameters\": {\n                            \"ImportantFormKey\": \"Policy Number:\",\n                            \"ImportantFormKeyAliases\": [\n                                \"Policy No.\",\n                                \"Policy #:\",\n                                \"Policy Number.\",\n                                \"Policy No:\",\n                                \"Policy NO:\",\n                                \"Policy #.\"\n                            ],\n                            \"KeyValueBlockConfidenceLessThan\": 50,\n                            \"WordBlockConfidenceLessThan\": 85\n                        },\n                        \"ConditionType\": \"ImportantFormKeyConfidenceCheck\",\n                        \"EvaluationResult\": false\n                    },\n                    {\n                        \"ConditionParameters\": {\n                            \"ImportantFormKey\": \"Total:\",\n                            \"ImportantFormKeyAliases\": [\n                                \"Total Due:\",\n                                \"Total Amount:\",\n                                \"Total\",\n                                \"Total Due\",\n                                \"Total Amount\"\n                            ],\n                            \"KeyValueBlockConfidenceLessThan\": 45,\n                            \"WordBlockConfidenceLessThan\": 85\n                        },\n                        \"ConditionType\": \"ImportantFormKeyConfidenceCheck\",\n                        \"EvaluationResult\": true\n                    },\n                    {\n                        \"ConditionParameters\": {\n                            \"ImportantFormKey\": \"Device ID:\",\n                            \"ImportantFormKeyAliases\": [\n                                \"Serial Number:\",\n                                \"Device S/N:\",\n                                \"Serial #:\",\n                                \"Device Identification Number\",\n                                \"Serial No.\",\n                                \"Serial No:\",\n                                \"Device #:\",\n                                \"Device No:\",\n                                \"Device Serial No:\",\n                                \"Device S/N\"\n                            ],\n                            \"KeyValueBlockConfidenceLessThan\": 45,\n                            \"WordBlockConfidenceLessThan\": 85\n                        },\n                        \"ConditionType\": \"ImportantFormKeyConfidenceCheck\",\n                        \"EvaluationResult\": false\n                    },\n                    {\n                        \"ConditionParameters\": {\n                            \"ImportantFormKey\": \"Policy Number:\",\n                            \"ImportantFormKeyAliases\": [\n                                \"Policy No.\",\n                                \"Policy #:\",\n                                \"Policy Number.\",\n                                \"Policy No:\",\n                                \"Policy NO:\",\n                                \"Policy #.\"\n                            ]\n                        },\n                        \"ConditionType\": \"MissingImportantFormKey\",\n                        \"EvaluationResult\": true\n                    },\n                    {\n                        \"ConditionParameters\": {\n                            \"ImportantFormKey\": \"Total:\",\n                            \"ImportantFormKeyAliases\": [\n                                \"Total Due:\",\n                                \"Total Amount:\",\n                                \"Total\",\n                                \"Total Due\",\n                                \"Total Amount\"\n                            ]\n                        },\n                        \"ConditionType\": \"MissingImportantFormKey\",\n                        \"EvaluationResult\": false\n                    },\n                    {\n                        \"ConditionParameters\": {\n                            \"ImportantFormKey\": \"Device ID:\",\n                            \"ImportantFormKeyAliases\": [\n                                \"Serial Number:\",\n                                \"Device S/N:\",\n                                \"Serial #:\",\n                                \"Device Identification Number\",\n                                \"Serial No.\",\n                                \"Serial No:\",\n                                \"Device #:\",\n                                \"Device No:\",\n                                \"Device Serial No:\",\n                                \"Device S/N\"\n                            ]\n                        },\n                        \"ConditionType\": \"MissingImportantFormKey\",\n                        \"EvaluationResult\": false\n                    }\n                ]\n            }\n        ]\n    },\n    \"selectedAiServiceResponse\": {\n        \"blocks\": [\n            {\n                \"blockType\": \"WORD\",\n                \"id\": \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\",\n                \"text\": \"Total\"\n            },\n            {\n                \"blockType\": \"WORD\",\n                \"id\": \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\",\n                \"text\": \"$148.99\"\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 41.291778564453125,\n                \"entityTypes\": [\n                    \"KEY\"\n                ],\n                \"geometry\": {\n                    \"polygon\": [\n                        {\n                            \"x\": 0.21882042288780212,\n                            \"y\": 0.739023745059967\n                        },\n                        {\n                            \"x\": 0.414583295583725,\n                            \"y\": 0.739023745059967\n                        },\n                        {\n                            \"x\": 0.414583295583725,\n                            \"y\": 0.7628781795501709\n                        },\n                        {\n                            \"x\": 0.21882042288780212,\n                            \"y\": 0.7628781795501709\n                        }\n                    ]\n                },\n                \"id\": \"efef5f95-e05c-476c-8251-6378c6d69001\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\"\n                        ],\n                        \"type\": \"VALUE\"\n                    },\n                    {\n                        \"ids\": [\n                            \"911f8f63-be3e-4e7c-bbf5-9edcb194c07d\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            },\n            {\n                \"blockType\": \"KEY_VALUE_SET\",\n                \"confidence\": 41.291778564453125,\n                \"entityTypes\": [\n                    \"VALUE\"\n                ],\n                \"geometry\": {\n                    \"polygon\": [\n                        {\n                            \"x\": 0.4539976716041565,\n                            \"y\": 0.7375765442848206\n                        },\n                        {\n                            \"x\": 0.6875057816505432,\n                            \"y\": 0.7375765442848206\n                        },\n                        {\n                            \"x\": 0.6875057816505432,\n                            \"y\": 0.7644635438919067\n                        },\n                        {\n                            \"x\": 0.4539976716041565,\n                            \"y\": 0.7644635438919067\n                        }\n                    ]\n                },\n                \"id\": \"5d2518f0-40e5-420f-b72e-3aae5c2425a1\",\n                \"relationships\": [\n                    {\n                        \"ids\": [\n                            \"62462e47-8ffc-4f9b-86b3-34cd56e8d865\"\n                        ],\n                        \"type\": \"CHILD\"\n                    }\n                ]\n            }\n        ]\n    }\n}"
  },
  {
    "path": "src-python/a2i/a2irp.py",
    "content": "import json\n\nclass Word:\n    def __init__(self, block, blockMap):\n        self._block = block\n        self._id = block['id']\n        self._text = \"\"\n        if(block['text']):\n            self._text = block['text']\n\n    def __str__(self):\n        return self._text\n\n    @property\n    def id(self):\n        return self._id\n\n    @property\n    def text(self):\n        return self._text\n\n    @property\n    def block(self):\n        return self._block\n\nclass FieldKey:\n    def __init__(self, block, children, blockMap):\n        self._block = block\n        self._id = block['id']\n        self._text = \"\"\n        self._content = []\n\n        t = []\n\n        for eid in children:\n            wb = blockMap[eid]\n            if(wb['blockType'] == \"WORD\"):\n                w = Word(wb, blockMap)\n                self._content.append(w)\n                t.append(w.text)\n\n        if(t):\n            self._text = ' '.join(t)\n\n    def __str__(self):\n        return self._text\n\n    @property\n    def id(self):\n        return self._id\n\n    @property\n    def content(self):\n        return self._content\n\n    @property\n    def text(self):\n        return self._text\n\n    @property\n    def block(self):\n        return self._block\n\nclass FieldValue:\n    def __init__(self, block, children, blockMap):\n        self._block = block\n        self._id = block['id']\n        self._text = \"\"\n        self._content = []\n\n        t = []\n\n        for eid in children:\n            wb = blockMap[eid]\n            if(wb['blockType'] == \"WORD\"):\n                w = Word(wb, blockMap)\n                self._content.append(w)\n                t.append(w.text)\n \n        if(t):\n            self._text = ' '.join(t)\n\n    def __str__(self):\n        return self._text\n\n    @property\n    def id(self):\n        return self._id\n\n    @property\n    def content(self):\n        return self._content\n\n    @property\n    def text(self):\n        return self._text\n    \n    @property\n    def block(self):\n        return self._block\n\nclass Field:\n    def __init__(self, block, blockMap):\n        self._key = None\n        self._value = None\n\n        for item in block['relationships']:\n            if(item[\"type\"] == \"CHILD\"):\n                self._key = FieldKey(block, item['ids'], blockMap)\n            elif(item[\"type\"] == \"VALUE\"):\n                for eid in item['ids']:\n                    vkvs = blockMap[eid]\n                    if 'VALUE' in vkvs['entityTypes']:\n                        if('relationships' in vkvs):\n                            for vitem in vkvs['relationships']:\n                                if(vitem[\"type\"] == \"CHILD\"):\n                                    self._value = FieldValue(vkvs, vitem['ids'], blockMap)\n    def __str__(self):\n        s = \"\\nField\\n==========\\n\"\n        k = \"\"\n        v = \"\"\n        if(self._key):\n            k = str(self._key)\n        if(self._value):\n            v = str(self._value)\n        s = s + \"Key: {}\\nValue: {}\".format(k, v)\n        return s\n\n    @property\n    def key(self):\n        return self._key\n\n    @property\n    def value(self):\n        return self._value\n\nclass Form:\n    def __init__(self):\n        self._fields = []\n        self._fieldsMap = {}\n\n    def addField(self, field):\n        self._fields.append(field)\n        self._fieldsMap[field.key.text] = field\n\n    def __str__(self):\n        s = \"\"\n        for field in self._fields:\n            s = s + str(field) + \"\\n\"\n        return s\n\n    @property\n    def fields(self):\n        return self._fields\n\n    def getFieldByKey(self, key):\n        field = None\n        if(key in self._fieldsMap):\n            field = self._fieldsMap[key]\n        return field\n    \n    def searchFieldsByKey(self, key):\n        searchKey = key.lower()\n        results = []\n        for field in self._fields:\n            if(field.key and searchKey in field.key.text.lower()):\n                results.append(field)\n        return results\n\nclass Page:\n\n    def __init__(self, blocks, blockMap):\n        self._blocks = blocks\n        self._text = \"\"\n        self._lines = []\n        self._form = Form()\n        self._content = []\n        self._id = 'xxx'\n        self._parse(blockMap)\n\n    def __str__(self):\n        s = \"Page\\n==========\\n\"\n        for item in self._content:\n            s = s + str(item) + \"\\n\"\n        return s\n\n    def _parse(self, blockMap):\n        for item in self._blocks:\n            if item[\"blockType\"] == \"KEY_VALUE_SET\":\n                if 'KEY' in item['entityTypes']:\n                    f = Field(item, blockMap)\n                    if(f.key):\n                        self._form.addField(f)\n                        self._content.append(f)\n                    #else:\n                    #    print(\"WARNING: Detected K/V where key does not have content. Excluding key from output.\")\n                    #    print(f)\n                    #    print(item)\n\n    @property\n    def blocks(self):\n        return self._blocks\n\n    @property\n    def text(self):\n        return self._text\n\n    @property\n    def lines(self):\n        return self._lines\n\n    @property\n    def form(self):\n        return self._form\n\n    @property\n    def tables(self):\n        return self._tables\n\n    @property\n    def content(self):\n        return self._content\n\n    @property\n    def id(self):\n        return self._id\n\nclass Document:\n\n    def __init__(self, responsePages):\n\n        if(not isinstance(responsePages, list)):\n            rps = []\n            rps.append(responsePages)\n            responsePages = rps\n\n        self._responsePages = responsePages\n        self._pages = []\n\n        self._parse()\n\n    def __str__(self):\n        s = \"\\nDocument\\n==========\\n\"\n        for p in self._pages:\n            s = s + str(p) + \"\\n\\n\"\n        return s\n\n    def _parseDocumentPagesAndBlockMap(self):\n\n        blockMap = {}\n\n        documentPages = []\n        documentPage = []\n        for page in self._responsePages:\n            print(\"page id {}\".format(page))\n            for block in page['blocks']:\n                if('blockType' in block and 'id' in block):\n                    blockMap[block['id']] = block\n\n                if(block['blockType'] == 'PAGE'):\n                    if(documentPage):\n                        documentPages.append({\"blocks\" : documentPage})\n                    documentPage = []\n                    documentPage.append(block)\n                else:\n\n                    documentPage.append(block)\n        if(documentPage):\n            documentPages.append({\"blocks\" : documentPage})\n        return documentPages, blockMap\n\n    def _parse(self):\n\n        self._responseDocumentPages, self._blockMap = self._parseDocumentPagesAndBlockMap()\n        for documentPage in self._responseDocumentPages:\n            page = Page(documentPage[\"blocks\"], self._blockMap)\n            self._pages.append(page)\n\n    @property\n    def blocks(self):\n        return self._responsePages\n\n    @property\n    def pageBlocks(self):\n        return self._responseDocumentPages\n\n    @property\n    def pages(self):\n        return self._pages\n\n    def getBlockById(self, blockId):\n        block = None\n        if(self._blockMap and blockId in self._blockMap):\n            block = self._blockMap[blockId]\n        return block\n\n"
  },
  {
    "path": "src-python/a2i/a2irptest.py",
    "content": "import json\nfrom a2irp import Document\n\n\ndef processDocument(doc):\n    for page in doc.pages:\n        print(\"PAGE\\n====================\")\n        print(\"Form (key/values)\\n====================\")\n        for field in page.form.fields:\n            k = \"\"\n            v = \"\"\n            if(field.key):\n                k = field.key.text\n            if(field.value):\n                v = field.value.text\n            print(\"Field: Key: {}, Value: {}\".format(k,v))\n\n        #Get field by key\n        key = \"Policy Number:\"\n        print(\"\\nGet field by key ({}):\\n====================\".format(key))\n        f = page.form.getFieldByKey(key)\n        if(f):\n            print(\"Field: Key: {}, Value: {}\".format(f.key.text, f.value.text))\n\n        #Search field by key\n        key = \"Policy Number:\"\n        print(\"\\nSearch field by key ({}):\\n====================\".format(key))\n        fields = page.form.searchFieldsByKey(key)\n        for field in fields:\n            print(\"Field: Key: {}, Value: {}\".format(field.key, field.value))\n\ndef run():\n  a2iResponseParse = {}\n  filePath = \"a2i-response.json\"\n  with open(filePath, 'r') as document:\n    data = json.loads(document.read())\n    a2iResponseParse=data[\"humanAnswers\"][0][\"answerContent\"][\"AWS/Textract/AnalyzeDocument/Forms/V1\"]\n    document = Document(a2iResponseParse)\n    processDocument(document)\n\nrun()"
  },
  {
    "path": "src-python/bin/amazon-textract-pipeline",
    "content": "#!/usr/bin/env python\n\nimport json\nimport sys\nfrom trp.trp2 import TDocumentSchema\nfrom trp.t_pipeline import order_blocks_by_geo, add_page_orientation, pipeline_merge_tables, add_kv_ocr_confidence\nimport argparse\nfrom trp import __version__\nfrom enum import Enum, auto\n\n\nclass TPipelineComponents(Enum):\n    order_blocks_by_geo = auto()\n    add_page_orientation = auto()\n    merge_tables = auto()\n    kv_ocr_confidence = auto()\n\n\nparser = argparse.ArgumentParser()\nparser.add_argument(\"--components\",\n                    nargs='+',\n                    choices=[\n                        TPipelineComponents.add_page_orientation.name, TPipelineComponents.order_blocks_by_geo.name,\n                        TPipelineComponents.merge_tables.name, TPipelineComponents.kv_ocr_confidence.name\n                    ],\n                    help=\"define which components to call\",\n                    required=True)\nparser.add_argument(\"--version\",\n                    action='version',\n                    version='%(prog)s {version}'.format(version=__version__),\n                    help=\"print version information\")\n\nargs = parser.parse_args()\ncomponents = [TPipelineComponents[x] for x in args.components]\n\ndoc_json = json.load(sys.stdin)\nt_doc = TDocumentSchema().load(doc_json)\nif TPipelineComponents.order_blocks_by_geo in components:\n    t_doc = order_blocks_by_geo(t_doc)\nif TPipelineComponents.add_page_orientation in components:\n    t_doc = add_page_orientation(t_doc)\nif TPipelineComponents.merge_tables in components:\n    t_doc = pipeline_merge_tables(t_doc)\nif TPipelineComponents.kv_ocr_confidence in components:\n    t_doc = add_kv_ocr_confidence(t_doc)\n\nprint(TDocumentSchema().dumps(t_doc))\n"
  },
  {
    "path": "src-python/extras/dev.txt",
    "content": "pytest\n"
  },
  {
    "path": "src-python/setup.cfg",
    "content": "[bumpversion]\ncurrent_version = 1.0.2\ncommit = True\ntag = True\n\n[bumpversion:file:setup.py]\nsearch = version='{current_version}'\nreplace = version='{new_version}'\n\n[bumpversion:file:trp/__init__.py]\nsearch = __version__ = '{current_version}'\nreplace = __version__ = '{new_version}'\n\n[bumpversion:file:a2i/__init__.py]\nsearch = __version__ = '{current_version}'\nreplace = __version__ = '{new_version}'\n\n[bdist_wheel]\nuniversal = 1\n\n[flake8]\nexclude = docs\n\n[aliases]\n"
  },
  {
    "path": "src-python/setup.py",
    "content": "import os\nimport sys\nfrom setuptools import setup\n\n\ndef read(fname):\n    return open(os.path.join(os.path.dirname(__file__), fname)).read()\n\n\nrequirements = ['boto3', 'marshmallow>=3.14,<4']\n\nif sys.argv[-1] == 'publish-test':\n    os.system(f\"cd {os.path.dirname(__file__)}\")\n    os.system('rm -rf dist/ build/ amazon_textract_response_parser.egg-info/')\n    os.system('python3 setup.py sdist bdist_wheel')\n    os.system('twine check dist/*')\n    os.system('twine upload --repository pypitest dist/*')\n    sys.exit()\n\nif sys.argv[-1] == 'publish':\n    script_path = str(f\"cd {os.path.dirname(__file__)}\")\n    os.system(script_path)\n    os.system('rm -rf dist/ build/ amazon_textract_response_parser.egg-info/')\n    os.system('python3 setup.py sdist bdist_wheel')\n    os.system('twine check dist/*')\n    os.system('twine upload --repository pypi dist/*')\n    sys.exit()\n\nsetup(name='amazon-textract-response-parser',\n      packages=['trp', 'a2i'],\n      version='1.0.3',\n      description='Easily parse JSON returned by Amazon Textract.',\n      install_requires=requirements,\n      extras_require={\n          \"dev\": [\"pytest\", \"tabulate\"]\n      },\n      scripts=['bin/amazon-textract-pipeline'],\n      long_description_content_type='text/markdown',\n      long_description=read('README.md'),\n      author='Amazon Rekognition Textract Demoes',\n      author_email='rekognition-textract-demos@amazon.com',\n      url='https://github.com/aws-samples/amazon-textract-response-parser',\n      keywords='amazon-textract-response-parser trp aws amazon textract ocr response parser',\n      license=\"Apache License Version 2.0\",\n      classifiers=[\n          \"Development Status :: 4 - Beta\",\n          \"Topic :: Utilities\",\n          'License :: OSI Approved :: Apache Software License',\n          'Programming Language :: Python :: 3.8',\n          'Programming Language :: Python :: 3.9',\n          'Programming Language :: Python :: 3.10',\n          'Programming Language :: Python :: 3.11',\n      ],\n      python_requires='>=3.8')\n"
  },
  {
    "path": "src-python/tests/data/180-degree-roation.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"JobStatus\": \"SUCCEEDED\",\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 1,\n            \"Y\": 0.9989853501319885\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 0.000277136976365\n          },\n          {\n            \"X\": 0.999391496181488,\n            \"Y\": 0\n          }\n        ]\n      },\n      \"Id\": \"cbc32a28-75bf-4c93-974e-1f04a9ba4794\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"71ab0284-793a-415d-9a2e-e0b6d79ada69\",\n            \"11617af6-4b3a-435b-a912-b433c3a1624d\",\n            \"97926b45-80bc-4ec9-b3c2-ddb3fc316d6b\",\n            \"4d5b7b9b-e915-426c-808e-2a383f9a1dd3\",\n            \"b47368af-52fd-4a19-9cbf-45c6c9ece5c0\",\n            \"035fe46b-e08b-412c-854d-5f8ec184bdd5\",\n            \"1dcb333c-a1ff-441c-b679-428e201d5f55\",\n            \"12bdc8ea-cd33-450a-b149-fb3c6dc9dacf\",\n            \"62c49857-96f3-45ff-914d-624a1a165df2\",\n            \"08962959-3f5e-4eba-9ed3-9434979dce6e\",\n            \"02be6870-0e5e-477a-9a17-48fd30e74c21\",\n            \"188d4187-986a-41e4-8354-bdbda3d8b62d\",\n            \"31f12237-1025-4502-8538-4a52ad825cd3\",\n            \"a9eab07d-9c5a-4039-91ee-e293998d0cfa\",\n            \"1023eaa4-f6ee-4161-863a-266058119d1d\",\n            \"ab94bd07-720c-4383-9e26-1ccead88e97c\",\n            \"708c875d-5c5f-4614-a429-4725bd209642\",\n            \"b1dde05b-fea5-4bf3-a6d0-8413a2dce83d\",\n            \"a105fbbf-7ad8-46de-b738-a1892eaa82fd\",\n            \"ac4a217e-a2bf-4a60-be6a-7f2358ce78ab\",\n            \"36c9af18-e5b5-46e6-9687-c73c63a9c44b\",\n            \"4b61fb54-295f-41fc-905e-9eb1b932797b\",\n            \"b639fe53-e54e-4677-b7c3-23152695eb34\",\n            \"1b422fc2-e7b2-4798-98cf-d077fdd02d43\",\n            \"ac7bdf17-4a84-4c0d-a8e4-b2be7ff0f244\",\n            \"aca4d97a-a7ee-4df0-ab46-a60f0f1a2064\",\n            \"daed5135-c53e-4d34-a53b-e6fce535c147\",\n            \"1825561a-640b-479d-b9b5-7d6225563546\",\n            \"b9c88dec-07fb-41c5-ab44-8bdca5a8f9d7\",\n            \"e070b1b1-7d7b-4a97-99a7-bb77efcc7737\",\n            \"fc1d2e09-c17d-4015-9666-d5be265a611c\",\n            \"237dfd32-ba26-4c4a-a88f-bb7f82fbedfa\",\n            \"1c571e5f-0ff5-4491-9eb2-7f9afe18d33a\",\n            \"29f04e7c-c175-42f0-b095-b7c166dc9859\",\n            \"ea8d0d30-7581-4c08-ad08-57512b61c9a5\",\n            \"c1ae3dc1-4093-44e2-aaf4-a964677ec95c\",\n            \"49986390-d055-4513-9cfe-36f477084b63\",\n            \"7a725966-d56c-4488-9e16-f3de536596cd\",\n            \"29372bbe-200e-45d1-b253-398666e534ba\",\n            \"5b6ced37-a44d-4d57-a375-6874e8204eb6\",\n            \"fd0d93a1-ca15-482a-806a-402973943c3a\",\n            \"baa06fa4-0649-4d8d-bb16-9cd404188e32\",\n            \"8b2407d7-2551-4409-8397-5d03194bf9ed\",\n            \"d2bb23af-f3b1-4d27-af7d-ae87d5402849\",\n            \"67bd561b-2da8-42eb-b6e6-5d1efcab11a0\",\n            \"82f08907-a26f-44b4-975c-98a8dac25f8f\",\n            \"0c9b75ec-1910-4b53-848e-de830e6a54a7\",\n            \"ace453a9-d3bb-48e6-b90e-34f45bb3a864\",\n            \"76e55973-07f0-4744-a5f6-7eaaba9e0de9\",\n            \"5b9d32f5-049d-4af7-babf-069ea836a997\",\n            \"1c916cc5-69c5-47d3-885b-5acc4dba137f\",\n            \"1989860c-88c4-49ce-a168-6381199a2f00\",\n            \"329b77c9-f728-4cbe-a2ee-1a8ecff79e3c\",\n            \"fe8fc06e-b0fb-4b64-9207-64b70e3273d7\",\n            \"4ec752ae-a1b1-490c-b068-d6fba3cf1be8\",\n            \"08c6ae59-b83f-4df8-87d7-c44a912d9f7d\",\n            \"7b760498-57d3-45e8-b254-2d4032edb351\",\n            \"1cf6d311-8933-43ef-9396-1b7b1e2816dd\",\n            \"14b699d8-4082-4137-9390-38ecd6bb61cb\",\n            \"673ed3cd-1eec-492f-993f-edfc3426fc2b\",\n            \"1317bcaa-b074-4b02-a45b-5597cd75e4ae\",\n            \"f8ce86d4-f56c-4bcf-a5ad-60af32128f3d\",\n            \"48ce241e-02c1-438b-8be0-8cf1ec66c358\",\n            \"d7904fd9-6f84-4588-9d63-d14ef0911953\",\n            \"397f678a-fc9c-42d3-84b0-6b0a598584c3\",\n            \"090068a6-4221-4577-a455-273c6ffabd4a\",\n            \"04a2aa0f-a03a-476b-b584-e70b9226a02f\",\n            \"68ea047f-5e57-416d-8601-37ce118eab17\",\n            \"82a79cac-5eef-4492-a501-ec2bef744715\",\n            \"10814b87-f70a-4bdb-b928-e72c848b6701\",\n            \"42d349c9-05e6-4183-8f01-286aecfe9836\",\n            \"470d34c1-98ff-4dd4-b4ca-369076e5d8fa\",\n            \"dcc18b39-2377-4a8c-83ab-490475a76f2e\",\n            \"d80d5cb8-3d4c-4f11-a207-c130af54889b\",\n            \"76b9f5c6-c803-4bad-822a-79219edc7c33\",\n            \"4614ba24-3c2e-47f3-bf6b-b7385ea0f96e\",\n            \"db1e0348-151a-4eec-8721-0fd87113eeee\",\n            \"97bc63cf-8714-4019-9ed4-fa8a8b98b040\",\n            \"0f7f9cdc-ecdf-4411-b270-c951654ad071\",\n            \"3673e2fd-fb3d-4a50-9e14-b3673a4d0e9e\",\n            \"0c2cdc0d-895f-4f22-b754-dc9d49bc0b55\",\n            \"2ca5748b-e848-46b8-8d10-ff9a2cd0f9c5\",\n            \"5f172d87-1976-451a-9714-83c27fcd852b\",\n            \"93ad31b6-33c3-4355-b450-2efc6f654891\",\n            \"377d9423-1026-45c7-98d3-6c31745038b7\",\n            \"890bcbb6-d5bb-48e1-96a4-d5b917f68b32\",\n            \"d3503262-1981-45bc-98af-9d9aeb96ae9f\",\n            \"e77feb16-652b-42fd-bf9f-6023eb6e0980\",\n            \"a8a85175-9ba0-439f-b2ce-00d09435d92f\",\n            \"6ff1dcde-4d88-4c87-953e-da242ab59b24\",\n            \"dbe764ec-1780-4ace-98e9-49c267e0a78a\",\n            \"177bdf7d-f620-49e2-a1e4-cce7bb44dd26\",\n            \"02d58bf8-1477-4ca9-9ade-d247fc866ad4\",\n            \"e7313854-e175-44a6-892d-13a9187d3201\",\n            \"ae7e845a-028b-40ee-9125-b7aa56b877fb\",\n            \"913f2512-ef15-4f0f-b93e-e1d88c192800\",\n            \"81bdc74b-1759-442d-bd81-4194d3d8659e\",\n            \"e662ccc8-91bc-466f-8510-57ab18220ae9\",\n            \"d47a7ed4-8456-4963-be24-956f707d3eb5\",\n            \"f8b81427-5583-4032-a429-48b85c7db5d7\",\n            \"9e66ea77-7bd0-4947-ab26-84dcbdd4ae46\",\n            \"2ef33e6a-5333-417f-b9c7-96a865adc4b4\",\n            \"b808b2f3-b04c-4342-b4f7-2954e8393924\",\n            \"c93f1adb-3095-4984-bf64-f003b3984aab\",\n            \"5083087d-ff20-4074-a38d-252dd190e568\",\n            \"b9b98d06-726e-466b-8500-5fb26ccb6e14\",\n            \"297da974-6b70-4fba-a309-5c02cb5d80f6\",\n            \"3264f43c-25be-45cb-bb06-7b9f0f3fccf0\",\n            \"2484e94a-9e3b-45e5-91b5-ed601c9977dc\",\n            \"ad3c0b3d-18c2-4616-948f-b5842868ca66\",\n            \"04ccacfd-6a03-4898-9fd9-36b3914d7331\",\n            \"d07f4b83-9d68-4302-97fb-66c2d183c335\",\n            \"5e337a8f-eda3-49f5-9444-fbaf0357e941\",\n            \"23cbf7d8-3e1c-44be-b1e1-973d64bb2c84\",\n            \"b0af3cc3-11fd-4c9e-87b0-b270971b34a7\",\n            \"836fb9d2-773a-4cd5-96fe-0de9a40c59e9\",\n            \"eb0e7a4f-4ee3-414d-9873-275433c6cf2e\",\n            \"8b487f3b-dd7f-480b-907a-7806e188e00e\",\n            \"6121aef3-b5f3-4ac2-ab69-1ef9c7265b5a\",\n            \"b8103874-f8ae-4592-96c7-2b3cc64ca46b\",\n            \"414d27e6-1a35-4ec6-aeef-71d9807c0210\",\n            \"96e3a5d5-41f9-4f3e-a4f8-332ef4ffa5d6\",\n            \"a4cacb13-74e8-46a2-9b8c-3fe28bcd2fa0\",\n            \"3f6fd8da-243b-431e-b39b-0d88ad6ff216\",\n            \"16124c98-3788-4b59-8622-2dbb5ef0e13c\",\n            \"b1018d66-0e38-4d76-8e58-fef66869e4c4\",\n            \"dcb45502-d5bb-45f6-b112-6b09aba26ff9\",\n            \"e58f5ddc-45fe-4bdd-b203-98a87d8e3f67\",\n            \"c1d190a0-653f-4416-99f8-8dc8d07b9611\",\n            \"de05f375-02de-4976-aff3-d5a25bd3602a\",\n            \"1280fc9d-bac7-497d-a84c-d51d9ea425a3\",\n            \"be9409be-9aad-4616-959b-e9ecd81ee8be\",\n            \"e673541c-8d1e-439a-beb1-5fd87d9829c3\",\n            \"e0fa7d22-7d7e-4329-941b-5fd7acbb419f\",\n            \"13c45d47-f23d-4a6d-8363-58174040511b\",\n            \"25391adc-7c6e-4856-93b5-93f33ac9ec3a\",\n            \"5a4a8490-bcbb-4895-b3ee-c9a44e43887f\",\n            \"81cd49c9-6ae0-4224-8976-74b5468bda76\",\n            \"84aed796-e987-4305-bc28-0e32ae5d0614\",\n            \"00d6362b-6d7f-4776-9da8-7960bbca1674\",\n            \"b14fc499-04f7-4ae3-9d28-b62ab830b779\",\n            \"9f8786a2-83fa-4011-a748-dec4adad017b\",\n            \"3dedefed-8844-44c8-9acc-23126abe5b3e\",\n            \"e5bb5d41-3ad5-4fe9-b942-e79ad23c3fac\",\n            \"856e7322-1fe4-4b8f-8627-4d06304696c7\",\n            \"492cb9f1-7702-429a-96ff-00ed44d557a1\",\n            \"32967e6e-f901-4f48-816f-e64f7c4eca2d\",\n            \"e7fa4c87-d1ba-462c-acff-3b62613baf1d\",\n            \"64b54f7c-b01a-46cd-969c-30346fdd90a9\",\n            \"44812308-e9fd-4a9c-8e47-828a21e32665\",\n            \"614084d6-0495-4a16-8faf-af3e6937a87c\",\n            \"e3bdb1be-5aa5-4b47-92ec-aaa2c08ea2ca\",\n            \"a023da17-f2bb-4df3-a377-137ac4f3a682\",\n            \"b9b508bf-92c2-4eb7-8ecd-6793f5ecd293\",\n            \"44dd83cf-4011-48e5-b981-c1993188af10\",\n            \"e93a1632-6b64-45a9-ad4e-0b5735549576\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.65951538085938,\n      \"Text\": \"2022 21003B04\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046407490968704224,\n          \"Height\": 0.005733183119446039,\n          \"Left\": 0.4767977297306061,\n          \"Top\": 0.9801100492477417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5232052206993103,\n            \"Y\": 0.9857350587844849\n          },\n          {\n            \"X\": 0.47681158781051636,\n            \"Y\": 0.9858432412147522\n          },\n          {\n            \"X\": 0.4767977297306061,\n            \"Y\": 0.980218231678009\n          },\n          {\n            \"X\": 0.5231914520263672,\n            \"Y\": 0.9801100492477417\n          }\n        ]\n      },\n      \"Id\": \"71ab0284-793a-415d-9a2e-e0b6d79ada69\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1be37b1a-7cdf-4f95-b70b-9aa8f55b2bd6\",\n            \"0ac1d41d-4e5b-42cc-b396-ef98b7950c1a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.76356506347656,\n      \"Text\": \"JD88\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01832064427435398,\n          \"Height\": 0.005627120845019817,\n          \"Left\": 0.49105674028396606,\n          \"Top\": 0.9745515584945679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5093773603439331,\n            \"Y\": 0.980135977268219\n          },\n          {\n            \"X\": 0.4910704791545868,\n            \"Y\": 0.9801786541938782\n          },\n          {\n            \"X\": 0.49105674028396606,\n            \"Y\": 0.974594235420227\n          },\n          {\n            \"X\": 0.5093636512756348,\n            \"Y\": 0.9745515584945679\n          }\n        ]\n      },\n      \"Id\": \"11617af6-4b3a-435b-a912-b433c3a1624d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"389282a1-bc0e-4b75-9bf6-defd059822d4\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.27823638916016,\n      \"Text\": \"JD88 [8.386] 4 of 8\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10344302654266357,\n          \"Height\": 0.010633434168994427,\n          \"Left\": 0.03257434442639351,\n          \"Top\": 0.9748523235321045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13601736724376678,\n            \"Y\": 0.985244631767273\n          },\n          {\n            \"X\": 0.03260156884789467,\n            \"Y\": 0.9854857325553894\n          },\n          {\n            \"X\": 0.03257434442639351,\n            \"Y\": 0.975093424320221\n          },\n          {\n            \"X\": 0.13599051535129547,\n            \"Y\": 0.9748523235321045\n          }\n        ]\n      },\n      \"Id\": \"97926b45-80bc-4ec9-b3c2-ddb3fc316d6b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c539f929-0e96-45fe-89a4-0a5368642607\",\n            \"801b3df0-40d2-4c77-a0e5-e0e427f5060c\",\n            \"d5e0662c-0aa7-470d-aecb-47d948a736c7\",\n            \"b5afff10-0df5-45a6-bbe1-e2911f3609f9\",\n            \"320dfd95-c33e-49a5-9dab-a9f3f81f96b7\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 78.2055435180664,\n      \"Text\": \"8888 300044\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04402926191687584,\n          \"Height\": 0.005797364749014378,\n          \"Left\": 0.4780726134777069,\n          \"Top\": 0.9686209559440613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.522101879119873,\n            \"Y\": 0.9743157029151917\n          },\n          {\n            \"X\": 0.4780866503715515,\n            \"Y\": 0.9744182825088501\n          },\n          {\n            \"X\": 0.4780726134777069,\n            \"Y\": 0.9687235355377197\n          },\n          {\n            \"X\": 0.5220879316329956,\n            \"Y\": 0.9686209559440613\n          }\n        ]\n      },\n      \"Id\": \"4d5b7b9b-e915-426c-808e-2a383f9a1dd3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55bb72a8-be07-40ac-a246-571298d67c69\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.3843765258789,\n      \"Text\": \"ePayment Transmittal\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23633208870887756,\n          \"Height\": 0.017217813059687614,\n          \"Left\": 0.6899420022964478,\n          \"Top\": 0.9050362706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9262740612030029,\n            \"Y\": 0.9217032790184021\n          },\n          {\n            \"X\": 0.6899818778038025,\n            \"Y\": 0.9222540855407715\n          },\n          {\n            \"X\": 0.6899420022964478,\n            \"Y\": 0.9055869579315186\n          },\n          {\n            \"X\": 0.926235556602478,\n            \"Y\": 0.9050362706184387\n          }\n        ]\n      },\n      \"Id\": \"b47368af-52fd-4a19-9cbf-45c6c9ece5c0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d0bc1246-af30-4233-8b3d-acc26989b95d\",\n            \"eaba861a-8ee6-4918-8817-77cb22b3d76a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72050476074219,\n      \"Text\": \"MATCH TO\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08921730518341064,\n          \"Height\": 0.010578400455415249,\n          \"Left\": 0.1965126097202301,\n          \"Top\": 0.9173758029937744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28572991490364075,\n            \"Y\": 0.9277463555335999\n          },\n          {\n            \"X\": 0.19653919339179993,\n            \"Y\": 0.9279542565345764\n          },\n          {\n            \"X\": 0.1965126097202301,\n            \"Y\": 0.917583703994751\n          },\n          {\n            \"X\": 0.2857036590576172,\n            \"Y\": 0.9173758029937744\n          }\n        ]\n      },\n      \"Id\": \"035fe46b-e08b-412c-854d-5f8ec184bdd5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"662a2d8c-abea-49b5-9580-6e34c09a1e9c\",\n            \"2c515319-3b50-40b8-aada-111bb0c46618\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.07703399658203,\n      \"Text\": \"281362449\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11609262973070145,\n          \"Height\": 0.013789139688014984,\n          \"Left\": 0.0526459626853466,\n          \"Top\": 0.9083777666091919\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16873858869075775,\n            \"Y\": 0.9218963980674744\n          },\n          {\n            \"X\": 0.05268128588795662,\n            \"Y\": 0.9221669435501099\n          },\n          {\n            \"X\": 0.0526459626853466,\n            \"Y\": 0.9086483120918274\n          },\n          {\n            \"X\": 0.1687038093805313,\n            \"Y\": 0.9083777666091919\n          }\n        ]\n      },\n      \"Id\": \"1dcb333c-a1ff-441c-b679-428e201d5f55\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c7e8a5b3-e5ad-4270-903e-3e760240c2b5\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7848129272461,\n      \"Text\": \"PAYMENT ID:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10735578835010529,\n          \"Height\": 0.010718947276473045,\n          \"Left\": 0.1876169592142105,\n          \"Top\": 0.9021885991096497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2949727475643158,\n            \"Y\": 0.9126573801040649\n          },\n          {\n            \"X\": 0.18764382600784302,\n            \"Y\": 0.9129075407981873\n          },\n          {\n            \"X\": 0.1876169592142105,\n            \"Y\": 0.9024387001991272\n          },\n          {\n            \"X\": 0.29494625329971313,\n            \"Y\": 0.9021885991096497\n          }\n        ]\n      },\n      \"Id\": \"12bdc8ea-cd33-450a-b149-fb3c6dc9dacf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d8033e1f-579b-4534-b3e1-2264e562092c\",\n            \"8125274b-4909-43eb-bc91-ecafa7518490\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7788314819336,\n      \"Text\": \"Payment Date: 09/28/2022\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20999209582805634,\n          \"Height\": 0.012854279018938541,\n          \"Left\": 0.28249454498291016,\n          \"Top\": 0.8633260130882263\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4924866557121277,\n            \"Y\": 0.8756910562515259\n          },\n          {\n            \"X\": 0.282525897026062,\n            \"Y\": 0.8761802911758423\n          },\n          {\n            \"X\": 0.28249454498291016,\n            \"Y\": 0.8638152480125427\n          },\n          {\n            \"X\": 0.49245619773864746,\n            \"Y\": 0.8633260130882263\n          }\n        ]\n      },\n      \"Id\": \"62c49857-96f3-45ff-914d-624a1a165df2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a825a15-5236-4e32-bb21-bd3b40a5544e\",\n            \"39c66356-48f6-47e2-a4bb-fed35873ab39\",\n            \"2bc27ca0-7191-44bc-9a28-d89a51398ef8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 60.855716705322266,\n      \"Text\": \"zelis\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19616913795471191,\n          \"Height\": 0.06426117569208145,\n          \"Left\": 0.6950998902320862,\n          \"Top\": 0.7876718640327454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8912690281867981,\n            \"Y\": 0.8514763712882996\n          },\n          {\n            \"X\": 0.6952524781227112,\n            \"Y\": 0.8519330620765686\n          },\n          {\n            \"X\": 0.6950998902320862,\n            \"Y\": 0.7881284356117249\n          },\n          {\n            \"X\": 0.8911207318305969,\n            \"Y\": 0.7876718640327454\n          }\n        ]\n      },\n      \"Id\": \"08962959-3f5e-4eba-9ed3-9434979dce6e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a9451326-7891-4bba-9f11-ab425b04dd78\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.66041564941406,\n      \"Text\": \"Claim Payor:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10462907701730728,\n          \"Height\": 0.01294854935258627,\n          \"Left\": 0.3756166100502014,\n          \"Top\": 0.8348768949508667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4802456796169281,\n            \"Y\": 0.8475817441940308\n          },\n          {\n            \"X\": 0.3756484091281891,\n            \"Y\": 0.8478254079818726\n          },\n          {\n            \"X\": 0.3756166100502014,\n            \"Y\": 0.8351205587387085\n          },\n          {\n            \"X\": 0.48021435737609863,\n            \"Y\": 0.8348768949508667\n          }\n        ]\n      },\n      \"Id\": \"02be6870-0e5e-477a-9a17-48fd30e74c21\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b91338b-2e3b-4603-916e-5916a2893d3a\",\n            \"cd3bceb4-2f7d-464f-bc87-139e2819e089\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81047821044922,\n      \"Text\": \"Wellfleet\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.072586789727211,\n          \"Height\": 0.010805080644786358,\n          \"Left\": 0.40761563181877136,\n          \"Top\": 0.8227010369300842\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48020240664482117,\n            \"Y\": 0.8333370685577393\n          },\n          {\n            \"X\": 0.407642126083374,\n            \"Y\": 0.8335061073303223\n          },\n          {\n            \"X\": 0.40761563181877136,\n            \"Y\": 0.8228700160980225\n          },\n          {\n            \"X\": 0.48017618060112,\n            \"Y\": 0.8227010369300842\n          }\n        ]\n      },\n      \"Id\": \"188d4187-986a-41e4-8354-bdbda3d8b62d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94d8b957-ab49-45ac-b39c-74a776e39dbf\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8637466430664,\n      \"Text\": \"PO Box 15369\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08384343236684799,\n          \"Height\": 0.008142014034092426,\n          \"Left\": 0.39601007103919983,\n          \"Top\": 0.8099331259727478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47985348105430603,\n            \"Y\": 0.817879855632782\n          },\n          {\n            \"X\": 0.39602988958358765,\n            \"Y\": 0.8180751204490662\n          },\n          {\n            \"X\": 0.39601007103919983,\n            \"Y\": 0.810128390789032\n          },\n          {\n            \"X\": 0.4798339009284973,\n            \"Y\": 0.8099331259727478\n          }\n        ]\n      },\n      \"Id\": \"31f12237-1025-4502-8538-4a52ad825cd3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"273963f9-b7bb-420d-8613-1034e85953b3\",\n            \"dbb8bcc6-02e3-47c7-b7f5-34b30e1b7624\",\n            \"a7e526af-2663-45b8-a1d5-77274063ca24\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.52610778808594,\n      \"Text\": \"Springfield, MA 01115-5369\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15999369323253632,\n          \"Height\": 0.01014287956058979,\n          \"Left\": 0.31992867588996887,\n          \"Top\": 0.793890118598938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4799223840236664,\n            \"Y\": 0.8036603927612305\n          },\n          {\n            \"X\": 0.3199533224105835,\n            \"Y\": 0.8040329813957214\n          },\n          {\n            \"X\": 0.31992867588996887,\n            \"Y\": 0.794262707233429\n          },\n          {\n            \"X\": 0.4798983037471771,\n            \"Y\": 0.793890118598938\n          }\n        ]\n      },\n      \"Id\": \"a9eab07d-9c5a-4039-91ee-e293998d0cfa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cfb1730b-5fa1-445e-a49c-a96b0824c8f1\",\n            \"4ffc9c67-d68c-4dec-82a8-fdea98e754f5\",\n            \"ed38fbc0-3349-459c-8400-5f814a3debab\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.45700073242188,\n      \"Text\": \"Electronic Claims:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13371539115905762,\n          \"Height\": 0.009932090528309345,\n          \"Left\": 0.06761512905359268,\n          \"Top\": 0.7888084053993225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2013305127620697,\n            \"Y\": 0.7984291315078735\n          },\n          {\n            \"X\": 0.06764021515846252,\n            \"Y\": 0.7987405061721802\n          },\n          {\n            \"X\": 0.06761512905359268,\n            \"Y\": 0.7891197800636292\n          },\n          {\n            \"X\": 0.20130586624145508,\n            \"Y\": 0.7888084053993225\n          }\n        ]\n      },\n      \"Id\": \"1023eaa4-f6ee-4161-863a-266058119d1d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2bd063bf-31af-4648-8c8b-a02216420a0b\",\n            \"193b1af1-74d2-42d1-91c4-cc753fdca59f\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.55857849121094,\n      \"Text\": \"Customer Service: Contact Info is on ID Card\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2665354311466217,\n          \"Height\": 0.009044317528605461,\n          \"Left\": 0.21343575417995453,\n          \"Top\": 0.7805896401405334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4799712002277374,\n            \"Y\": 0.7890132069587708\n          },\n          {\n            \"X\": 0.21345730125904083,\n            \"Y\": 0.7896339893341064\n          },\n          {\n            \"X\": 0.21343575417995453,\n            \"Y\": 0.7812103629112244\n          },\n          {\n            \"X\": 0.4799504280090332,\n            \"Y\": 0.7805896401405334\n          }\n        ]\n      },\n      \"Id\": \"ab94bd07-720c-4383-9e26-1ccead88e97c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b896d53-ae57-4b49-aad5-bb973dcc99d8\",\n            \"5ba6e35a-dbbf-4400-973d-2507ca639d23\",\n            \"fab06744-dda0-4037-9837-dab2a81767cb\",\n            \"dce43754-99ec-435a-b74a-4785585714cf\",\n            \"23283c37-9504-4699-ba4c-610ca4b11414\",\n            \"cb4b23b1-b01f-425d-826d-453c0bf10f61\",\n            \"baf37f5f-d6f6-4e8b-835b-e5d57dcf7169\",\n            \"e171792e-1f81-4eaf-8f04-ac1184bcc016\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98100280761719,\n      \"Text\": \"87843\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04803053289651871,\n          \"Height\": 0.009917032904922962,\n          \"Left\": 0.15314434468746185,\n          \"Top\": 0.7758345603942871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20117488503456116,\n            \"Y\": 0.7856398224830627\n          },\n          {\n            \"X\": 0.1531696319580078,\n            \"Y\": 0.7857516407966614\n          },\n          {\n            \"X\": 0.15314434468746185,\n            \"Y\": 0.7759463787078857\n          },\n          {\n            \"X\": 0.20114976167678833,\n            \"Y\": 0.7758345603942871\n          }\n        ]\n      },\n      \"Id\": \"708c875d-5c5f-4614-a429-4725bd209642\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a0b8ec5c-2531-44ec-bd49-4f6795194c77\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.26246643066406,\n      \"Text\": \"570 Carillon Pkwy. Suite 500,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19593845307826996,\n          \"Height\": 0.01161258015781641,\n          \"Left\": 0.7300693988800049,\n          \"Top\": 0.7399753332138062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9260078072547913,\n            \"Y\": 0.7511317729949951\n          },\n          {\n            \"X\": 0.7300959229469299,\n            \"Y\": 0.7515879273414612\n          },\n          {\n            \"X\": 0.7300693988800049,\n            \"Y\": 0.740431547164917\n          },\n          {\n            \"X\": 0.9259820580482483,\n            \"Y\": 0.7399753332138062\n          }\n        ]\n      },\n      \"Id\": \"b1dde05b-fea5-4bf3-a6d0-8413a2dce83d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ff3a64b6-cc1e-4073-8315-28b8d20f30da\",\n            \"f07a9f68-f34a-4e8d-906e-0d622c6bc226\",\n            \"afc7cd86-5603-4349-83b3-3adb5f5deb5e\",\n            \"29409e50-8c08-4141-96a9-f82309089350\",\n            \"8e9aa39a-a9f6-4903-ab46-0bb9f1aded14\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81433868408203,\n      \"Text\": \"Claim Questions ? Please refer to the Payor's Customer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4024372696876526,\n          \"Height\": 0.014024268835783005,\n          \"Left\": 0.06614488363265991,\n          \"Top\": 0.7357693910598755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4685821533203125,\n            \"Y\": 0.7488566637039185\n          },\n          {\n            \"X\": 0.06617902219295502,\n            \"Y\": 0.7497936487197876\n          },\n          {\n            \"X\": 0.06614488363265991,\n            \"Y\": 0.7367063164710999\n          },\n          {\n            \"X\": 0.46854984760284424,\n            \"Y\": 0.7357693910598755\n          }\n        ]\n      },\n      \"Id\": \"a105fbbf-7ad8-46de-b738-a1892eaa82fd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9880ccee-63a0-4081-8899-9a390ded3baa\",\n            \"f9ded9ab-2e32-48c4-bf54-b33c1ad5fce7\",\n            \"d7cac683-331a-46bc-ae7f-ed36d4a6a4d9\",\n            \"9c49aaba-8a9c-4343-a544-ce7c7f405df9\",\n            \"21d1dbae-a8d8-40f9-97f1-ac417ddf974a\",\n            \"e23e177e-1b84-4346-a70f-d79a5e6d014c\",\n            \"12951dc4-2c98-4ac1-a4eb-c3e1c9ad5440\",\n            \"2e8aaa6a-42b4-4fe3-a075-59d55f1f38a1\",\n            \"372155df-4931-4fee-b5b8-b9b0ba7ba585\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65482330322266,\n      \"Text\": \"St. Petersburg, FL 33716\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17054276168346405,\n          \"Height\": 0.01144499983638525,\n          \"Left\": 0.755290687084198,\n          \"Top\": 0.7275476455688477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9258334636688232,\n            \"Y\": 0.7385956645011902\n          },\n          {\n            \"X\": 0.7553169131278992,\n            \"Y\": 0.7389926910400391\n          },\n          {\n            \"X\": 0.755290687084198,\n            \"Y\": 0.7279446721076965\n          },\n          {\n            \"X\": 0.9258079528808594,\n            \"Y\": 0.7275476455688477\n          }\n        ]\n      },\n      \"Id\": \"ac4a217e-a2bf-4a60-be6a-7f2358ce78ab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0abbe259-88fb-43b6-a932-0c5ac0120124\",\n            \"378034dc-6687-40b4-b958-b4b4bc8f5a7f\",\n            \"8f330392-c89c-408b-a46e-c98574a5c178\",\n            \"62dc259a-698b-43c1-8e1d-daeaeb1d9df2\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88966369628906,\n      \"Text\": \"Service Phone Number as noted ABOVE.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27740946412086487,\n          \"Height\": 0.00996978860348463,\n          \"Left\": 0.12977753579616547,\n          \"Top\": 0.7247870564460754\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40718701481819153,\n            \"Y\": 0.7341110110282898\n          },\n          {\n            \"X\": 0.1298016607761383,\n            \"Y\": 0.7347568273544312\n          },\n          {\n            \"X\": 0.12977753579616547,\n            \"Y\": 0.7254328727722168\n          },\n          {\n            \"X\": 0.4071637988090515,\n            \"Y\": 0.7247870564460754\n          }\n        ]\n      },\n      \"Id\": \"36c9af18-e5b5-46e6-9687-c73c63a9c44b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e6fc1b37-ff1b-41de-a160-ae4d79c4cb2a\",\n            \"298a37b3-cb44-4c54-ac75-dabe2765fe5f\",\n            \"0e06bf13-82b2-469d-bbc5-c54c161144dd\",\n            \"63a39b23-fb98-4566-9ee7-2af9855a139d\",\n            \"838b31c4-9f3f-4f44-a446-38da1d1ab021\",\n            \"e7ad855b-0ddc-4ad6-8c2a-586cdbf55cd8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70541381835938,\n      \"Text\": \"MINUTECLINIC DIAGNOSTIC OF NJ\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2906859517097473,\n          \"Height\": 0.011302529834210873,\n          \"Left\": 0.6137863397598267,\n          \"Top\": 0.6905832886695862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.904472291469574,\n            \"Y\": 0.7012091875076294\n          },\n          {\n            \"X\": 0.6138120293617249,\n            \"Y\": 0.7018858194351196\n          },\n          {\n            \"X\": 0.6137863397598267,\n            \"Y\": 0.6912599205970764\n          },\n          {\n            \"X\": 0.9044476747512817,\n            \"Y\": 0.6905832886695862\n          }\n        ]\n      },\n      \"Id\": \"4b61fb54-295f-41fc-905e-9eb1b932797b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b689132-d360-4af2-9be6-dfcad7755623\",\n            \"125b839c-b305-42bd-af87-0864ad4da1a4\",\n            \"c0a9feb7-f279-4165-9412-88369a00f4ef\",\n            \"8bc67589-14d0-4714-be2e-574a1f020195\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70633697509766,\n      \"Text\": \"Provider's TIN: 20-4868967\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2185526341199875,\n          \"Height\": 0.011249643750488758,\n          \"Left\": 0.2704046666622162,\n          \"Top\": 0.679982602596283\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48895731568336487,\n            \"Y\": 0.6907235980033875\n          },\n          {\n            \"X\": 0.2704319357872009,\n            \"Y\": 0.6912322640419006\n          },\n          {\n            \"X\": 0.2704046666622162,\n            \"Y\": 0.6804912686347961\n          },\n          {\n            \"X\": 0.4889308512210846,\n            \"Y\": 0.679982602596283\n          }\n        ]\n      },\n      \"Id\": \"b639fe53-e54e-4677-b7c3-23152695eb34\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6b8caa13-50fd-4471-bcbd-9029b6a53df0\",\n            \"d5a3fe3a-9bb9-4cd2-acd8-7348c807aa0f\",\n            \"3c4766d8-4d58-4df1-b68f-3678a5bb99f1\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85712432861328,\n      \"Text\": \"PO BOX 8442\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1094619631767273,\n          \"Height\": 0.01062982901930809,\n          \"Left\": 0.7945964336395264,\n          \"Top\": 0.6718111634254456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9040583968162537,\n            \"Y\": 0.6821862459182739\n          },\n          {\n            \"X\": 0.7946208715438843,\n            \"Y\": 0.682440996170044\n          },\n          {\n            \"X\": 0.7945964336395264,\n            \"Y\": 0.6720659136772156\n          },\n          {\n            \"X\": 0.9040343165397644,\n            \"Y\": 0.6718111634254456\n          }\n        ]\n      },\n      \"Id\": \"1b422fc2-e7b2-4798-98cf-d077fdd02d43\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"097b87b7-0677-48ef-a99e-0d565ba09396\",\n            \"9806c390-c94f-44aa-8780-81203927429a\",\n            \"62bd79e2-ebdb-4ce0-aa25-98aac1141beb\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.04943084716797,\n      \"Text\": \"BELFAST, ME 049158442\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20261052250862122,\n          \"Height\": 0.01265900768339634,\n          \"Left\": 0.7013052105903625,\n          \"Top\": 0.651104748249054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9039157032966614,\n            \"Y\": 0.6632922887802124\n          },\n          {\n            \"X\": 0.7013342976570129,\n            \"Y\": 0.6637637615203857\n          },\n          {\n            \"X\": 0.7013052105903625,\n            \"Y\": 0.6515762209892273\n          },\n          {\n            \"X\": 0.9038874506950378,\n            \"Y\": 0.651104748249054\n          }\n        ]\n      },\n      \"Id\": \"ac7bdf17-4a84-4c0d-a8e4-b2be7ff0f244\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e4687609-76f1-440c-816e-5c7e17ecdf62\",\n            \"e56daab3-802f-4348-8102-04b2f14068d7\",\n            \"a6b2482f-754e-4466-830f-e3d91df7b9d5\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.69009399414062,\n      \"Text\": \"PT:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022067993879318237,\n          \"Height\": 0.008661405183374882,\n          \"Left\": 0.9057045578956604,\n          \"Top\": 0.6138901710510254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.927772581577301,\n            \"Y\": 0.6225003004074097\n          },\n          {\n            \"X\": 0.9057245254516602,\n            \"Y\": 0.6225515604019165\n          },\n          {\n            \"X\": 0.9057045578956604,\n            \"Y\": 0.613941490650177\n          },\n          {\n            \"X\": 0.927752673625946,\n            \"Y\": 0.6138901710510254\n          }\n        ]\n      },\n      \"Id\": \"aca4d97a-a7ee-4df0-ab46-a60f0f1a2064\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a63fb264-2345-4287-9a9d-932b00c42c33\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.45973205566406,\n      \"Text\": \"PT. DOB: 2004-02-14\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13806720077991486,\n          \"Height\": 0.008944987319409847,\n          \"Left\": 0.5803046226501465,\n          \"Top\": 0.6139282584190369\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7183718085289001,\n            \"Y\": 0.6225520372390747\n          },\n          {\n            \"X\": 0.5803256034851074,\n            \"Y\": 0.6228732466697693\n          },\n          {\n            \"X\": 0.5803046226501465,\n            \"Y\": 0.6142494678497314\n          },\n          {\n            \"X\": 0.7183513045310974,\n            \"Y\": 0.6139282584190369\n          }\n        ]\n      },\n      \"Id\": \"daed5135-c53e-4d34-a53b-e6fce535c147\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d0c3c05b-c038-43a0-b413-6acec2fd7918\",\n            \"de88b700-9c0f-4a49-bd8f-02e1afdffc4a\",\n            \"6e4e12f0-f105-4e17-884d-17d46fb7bf17\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79002380371094,\n      \"Text\": \"SCHOOL OF VISUAL\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13430969417095184,\n          \"Height\": 0.00943776499480009,\n          \"Left\": 0.10633086413145065,\n          \"Top\": 0.6196902394294739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2406405657529831,\n            \"Y\": 0.6288155317306519\n          },\n          {\n            \"X\": 0.10635453462600708,\n            \"Y\": 0.6291280388832092\n          },\n          {\n            \"X\": 0.10633086413145065,\n            \"Y\": 0.6200027465820312\n          },\n          {\n            \"X\": 0.2406173050403595,\n            \"Y\": 0.6196902394294739\n          }\n        ]\n      },\n      \"Id\": \"1825561a-640b-479d-b9b5-7d6225563546\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e9c137b-dcbc-4a66-b16d-fc07de74fd12\",\n            \"9cd118f8-d64a-426b-bb83-ef58eb8df656\",\n            \"6f809a36-0628-48ef-9373-d2e49b2e5b88\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.69692993164062,\n      \"Text\": \"Doug Dimmadale\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1435004621744156,\n          \"Height\": 0.010836202651262283,\n          \"Left\": 0.7257935404777527,\n          \"Top\": 0.6086771488189697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8692939877510071,\n            \"Y\": 0.6191794872283936\n          },\n          {\n            \"X\": 0.7258185148239136,\n            \"Y\": 0.6195133328437805\n          },\n          {\n            \"X\": 0.7257935404777527,\n            \"Y\": 0.6090109348297119\n          },\n          {\n            \"X\": 0.8692694902420044,\n            \"Y\": 0.6086771488189697\n          }\n        ]\n      },\n      \"Id\": \"b9c88dec-07fb-41c5-ab44-8bdca5a8f9d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e84b5752-e1b6-4679-9788-caad7bfe1a52\",\n            \"67bad510-e5e0-4194-af44-58d617ab8287\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.70989990234375,\n      \"Text\": \"PT. ACCT: 5705589V1648\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17263071238994598,\n          \"Height\": 0.00949067808687687,\n          \"Left\": 0.34742245078086853,\n          \"Top\": 0.613831102848053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5200531482696533,\n            \"Y\": 0.6229201555252075\n          },\n          {\n            \"X\": 0.3474452793598175,\n            \"Y\": 0.6233217716217041\n          },\n          {\n            \"X\": 0.34742245078086853,\n            \"Y\": 0.6142327189445496\n          },\n          {\n            \"X\": 0.5200308561325073,\n            \"Y\": 0.613831102848053\n          }\n        ]\n      },\n      \"Id\": \"e070b1b1-7d7b-4a97-99a7-bb77efcc7737\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"106ed427-4f7b-4390-910c-9c84a3b8402e\",\n            \"ab9a9a31-7b4d-48f9-a48f-a97a8df33450\",\n            \"551e6259-38f5-4384-8b9b-42bb704c1ca1\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74942016601562,\n      \"Text\": \"GRP:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03356422111392021,\n          \"Height\": 0.008730622939765453,\n          \"Left\": 0.2826884686946869,\n          \"Top\": 0.6140135526657104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3162526786327362,\n            \"Y\": 0.6226661205291748\n          },\n          {\n            \"X\": 0.28271037340164185,\n            \"Y\": 0.6227442026138306\n          },\n          {\n            \"X\": 0.2826884686946869,\n            \"Y\": 0.6140916347503662\n          },\n          {\n            \"X\": 0.3162308633327484,\n            \"Y\": 0.6140135526657104\n          }\n        ]\n      },\n      \"Id\": \"fc1d2e09-c17d-4015-9666-d5be265a611c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce2fba41-3391-4418-aa9f-8ce7d10bc3b8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82857513427734,\n      \"Text\": \"ARTS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03706885874271393,\n          \"Height\": 0.008515174500644207,\n          \"Left\": 0.20448412001132965,\n          \"Top\": 0.6081969738006592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24155297875404358,\n            \"Y\": 0.616625964641571\n          },\n          {\n            \"X\": 0.20450569689273834,\n            \"Y\": 0.6167121529579163\n          },\n          {\n            \"X\": 0.20448412001132965,\n            \"Y\": 0.6082831621170044\n          },\n          {\n            \"X\": 0.24153150618076324,\n            \"Y\": 0.6081969738006592\n          }\n        ]\n      },\n      \"Id\": \"237dfd32-ba26-4c4a-a88f-bb7f82fbedfa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6dc72954-2261-4d29-9f5d-1a4b0ca725b6\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7085952758789,\n      \"Text\": \"MBR:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03460070490837097,\n          \"Height\": 0.008382274769246578,\n          \"Left\": 0.8928751349449158,\n          \"Top\": 0.5942569375038147\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9274758100509644,\n            \"Y\": 0.6025587916374207\n          },\n          {\n            \"X\": 0.892894446849823,\n            \"Y\": 0.6026391983032227\n          },\n          {\n            \"X\": 0.8928751349449158,\n            \"Y\": 0.5943374037742615\n          },\n          {\n            \"X\": 0.9274566173553467,\n            \"Y\": 0.5942569375038147\n          }\n        ]\n      },\n      \"Id\": \"1c571e5f-0ff5-4491-9eb2-7f9afe18d33a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9d62c16b-6c25-40f5-9c6d-988abad7f325\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76080322265625,\n      \"Text\": \"PLAN ID: 002366148\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13660019636154175,\n          \"Height\": 0.008725790306925774,\n          \"Left\": 0.5811940431594849,\n          \"Top\": 0.59425950050354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7177942395210266,\n            \"Y\": 0.602667510509491\n          },\n          {\n            \"X\": 0.581214427947998,\n            \"Y\": 0.6029852628707886\n          },\n          {\n            \"X\": 0.5811940431594849,\n            \"Y\": 0.5945772528648376\n          },\n          {\n            \"X\": 0.7177741527557373,\n            \"Y\": 0.59425950050354\n          }\n        ]\n      },\n      \"Id\": \"29f04e7c-c175-42f0-b095-b7c166dc9859\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46b8c23a-4465-4123-8b19-00a14050e1eb\",\n            \"884c9452-38ab-4108-8960-77be62a6db21\",\n            \"f7f6f9f1-db93-4af0-96b8-2be00fe1b9dd\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.3301010131836,\n      \"Text\": \"CLAIM #:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05969816446304321,\n          \"Height\": 0.008497689850628376,\n          \"Left\": 0.4605981707572937,\n          \"Top\": 0.5944271087646484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5202963352203369,\n            \"Y\": 0.6027859449386597\n          },\n          {\n            \"X\": 0.46061885356903076,\n            \"Y\": 0.6029248237609863\n          },\n          {\n            \"X\": 0.4605981707572937,\n            \"Y\": 0.5945659875869751\n          },\n          {\n            \"X\": 0.5202758312225342,\n            \"Y\": 0.5944271087646484\n          }\n        ]\n      },\n      \"Id\": \"ea8d0d30-7581-4c08-ad08-57512b61c9a5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a174a934-3e07-40d7-9d2c-41a334773eb7\",\n            \"b089335e-e1d1-4512-bb1a-24d896b1b5f1\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72154235839844,\n      \"Text\": \"202209130818\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09060470014810562,\n          \"Height\": 0.008802251890301704,\n          \"Left\": 0.34961599111557007,\n          \"Top\": 0.5941889882087708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4402207136154175,\n            \"Y\": 0.6027805209159851\n          },\n          {\n            \"X\": 0.34963756799697876,\n            \"Y\": 0.6029912829399109\n          },\n          {\n            \"X\": 0.34961599111557007,\n            \"Y\": 0.5943997502326965\n          },\n          {\n            \"X\": 0.4401994049549103,\n            \"Y\": 0.5941889882087708\n          }\n        ]\n      },\n      \"Id\": \"c1ae3dc1-4093-44e2-aaf4-a964677ec95c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b6cbcb3-479d-480b-8efc-de9ee7c62a77\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.46652221679688,\n      \"Text\": \"GRP #:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045503098517656326,\n          \"Height\": 0.008417317643761635,\n          \"Left\": 0.27067264914512634,\n          \"Top\": 0.5943911075592041\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31617575883865356,\n            \"Y\": 0.6027026176452637\n          },\n          {\n            \"X\": 0.27069374918937683,\n            \"Y\": 0.6028084754943848\n          },\n          {\n            \"X\": 0.27067264914512634,\n            \"Y\": 0.5944969654083252\n          },\n          {\n            \"X\": 0.3161547780036926,\n            \"Y\": 0.5943911075592041\n          }\n        ]\n      },\n      \"Id\": \"49986390-d055-4513-9cfe-36f477084b63\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afd3cdc6-f320-4c92-b847-5c2e03b63025\",\n            \"7f8a3269-0f6a-40fb-923d-fafffc4ea8c1\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.21053314208984,\n      \"Text\": \"ST0654SHUI01\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09310783445835114,\n          \"Height\": 0.008973052725195885,\n          \"Left\": 0.14750079810619354,\n          \"Top\": 0.5941421389579773\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24060863256454468,\n            \"Y\": 0.6028985977172852\n          },\n          {\n            \"X\": 0.14752338826656342,\n            \"Y\": 0.6031152009963989\n          },\n          {\n            \"X\": 0.14750079810619354,\n            \"Y\": 0.5943586826324463\n          },\n          {\n            \"X\": 0.2405863255262375,\n            \"Y\": 0.5941421389579773\n          }\n        ]\n      },\n      \"Id\": \"7a725966-d56c-4488-9e16-f3de536596cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"460f2b86-fb12-4f21-87b7-aba0d33b1c40\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9725341796875,\n      \"Text\": \"Billed\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032148949801921844,\n          \"Height\": 0.007591409608721733,\n          \"Left\": 0.5460500121116638,\n          \"Top\": 0.5815684795379639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781989693641663,\n            \"Y\": 0.5890851020812988\n          },\n          {\n            \"X\": 0.5460683703422546,\n            \"Y\": 0.5891599059104919\n          },\n          {\n            \"X\": 0.5460500121116638,\n            \"Y\": 0.5816432237625122\n          },\n          {\n            \"X\": 0.5781806707382202,\n            \"Y\": 0.5815684795379639\n          }\n        ]\n      },\n      \"Id\": \"29372bbe-200e-45d1-b253-398666e534ba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"87b89c83-1741-4b0f-a869-109f389edc66\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87433624267578,\n      \"Text\": \"PPO\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023862464353442192,\n          \"Height\": 0.007193189579993486,\n          \"Left\": 0.48041799664497375,\n          \"Top\": 0.5817707777023315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5042804479598999,\n            \"Y\": 0.5889084935188293\n          },\n          {\n            \"X\": 0.4804356098175049,\n            \"Y\": 0.5889639854431152\n          },\n          {\n            \"X\": 0.48041799664497375,\n            \"Y\": 0.5818262100219727\n          },\n          {\n            \"X\": 0.5042629241943359,\n            \"Y\": 0.5817707777023315\n          }\n        ]\n      },\n      \"Id\": \"5b6ced37-a44d-4d57-a375-6874e8204eb6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b7ce1c1-af4b-4b83-9c9e-882d0ddcd228\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71550750732422,\n      \"Text\": \"Non\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022434741258621216,\n          \"Height\": 0.007217978592962027,\n          \"Left\": 0.4111204445362091,\n          \"Top\": 0.581731915473938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4335551857948303,\n            \"Y\": 0.5888977646827698\n          },\n          {\n            \"X\": 0.41113826632499695,\n            \"Y\": 0.5889499187469482\n          },\n          {\n            \"X\": 0.4111204445362091,\n            \"Y\": 0.5817840695381165\n          },\n          {\n            \"X\": 0.43353739380836487,\n            \"Y\": 0.581731915473938\n          }\n        ]\n      },\n      \"Id\": \"fd0d93a1-ca15-482a-806a-402973943c3a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"59bd3a39-c905-4453-9d7e-7d2bae16c270\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87520599365234,\n      \"Text\": \"Date of Service\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0882110744714737,\n          \"Height\": 0.0077821435406804085,\n          \"Left\": 0.8328675627708435,\n          \"Top\": 0.5758493542671204\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.921078622341156,\n            \"Y\": 0.5834263563156128\n          },\n          {\n            \"X\": 0.8328853249549866,\n            \"Y\": 0.5836315155029297\n          },\n          {\n            \"X\": 0.8328675627708435,\n            \"Y\": 0.5760545134544373\n          },\n          {\n            \"X\": 0.921061098575592,\n            \"Y\": 0.5758493542671204\n          }\n        ]\n      },\n      \"Id\": \"baa06fa4-0649-4d8d-bb16-9cd404188e32\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c498bd2d-7a35-4058-a285-af263e2d9a1e\",\n            \"2d726733-0a1b-4a9f-b9b4-58a3546ef1c0\",\n            \"481e40d7-0616-4b63-8e2a-0e46cbb31be8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9566879272461,\n      \"Text\": \"Other\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03421858325600624,\n          \"Height\": 0.007657462265342474,\n          \"Left\": 0.33492469787597656,\n          \"Top\": 0.5814123749732971\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3691432774066925,\n            \"Y\": 0.5889902710914612\n          },\n          {\n            \"X\": 0.3349437713623047,\n            \"Y\": 0.5890698432922363\n          },\n          {\n            \"X\": 0.33492469787597656,\n            \"Y\": 0.5814919471740723\n          },\n          {\n            \"X\": 0.36912432312965393,\n            \"Y\": 0.5814123749732971\n          }\n        ]\n      },\n      \"Id\": \"8b2407d7-2551-4409-8397-5d03194bf9ed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e9d0589-a4b7-4f21-bb15-db8384199564\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79985046386719,\n      \"Text\": \"Deductible\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0628536120057106,\n          \"Height\": 0.007828352972865105,\n          \"Left\": 0.25140389800071716,\n          \"Top\": 0.5813519954681396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31425750255584717,\n            \"Y\": 0.5890341401100159\n          },\n          {\n            \"X\": 0.2514234483242035,\n            \"Y\": 0.5891803503036499\n          },\n          {\n            \"X\": 0.25140389800071716,\n            \"Y\": 0.5814981460571289\n          },\n          {\n            \"X\": 0.31423813104629517,\n            \"Y\": 0.5813519954681396\n          }\n        ]\n      },\n      \"Id\": \"d2bb23af-f3b1-4d27-af7d-ae87d5402849\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bdf22317-407b-4234-b0c1-4b29101ea7bb\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59220886230469,\n      \"Text\": \"Patient\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04296339675784111,\n          \"Height\": 0.008126743137836456,\n          \"Left\": 0.191646546125412,\n          \"Top\": 0.5815037488937378\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2346099466085434,\n            \"Y\": 0.5895305871963501\n          },\n          {\n            \"X\": 0.19166713953018188,\n            \"Y\": 0.5896304845809937\n          },\n          {\n            \"X\": 0.191646546125412,\n            \"Y\": 0.5816036462783813\n          },\n          {\n            \"X\": 0.23458947241306305,\n            \"Y\": 0.5815037488937378\n          }\n        ]\n      },\n      \"Id\": \"67bd561b-2da8-42eb-b6e6-5d1efcab11a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7fa9b3de-8c7b-47e1-a8cb-e5a1f3806cc4\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80757141113281,\n      \"Text\": \"Procedure\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06240997090935707,\n          \"Height\": 0.00775545509532094,\n          \"Left\": 0.6792393922805786,\n          \"Top\": 0.5759565830230713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.741649329662323,\n            \"Y\": 0.5835668444633484\n          },\n          {\n            \"X\": 0.6792576313018799,\n            \"Y\": 0.5837119817733765\n          },\n          {\n            \"X\": 0.6792393922805786,\n            \"Y\": 0.5761017203330994\n          },\n          {\n            \"X\": 0.741631269454956,\n            \"Y\": 0.5759565830230713\n          }\n        ]\n      },\n      \"Id\": \"82f08907-a26f-44b4-975c-98a8dac25f8f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d69f9ff8-96ae-4d33-946b-a6ebd26e7958\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80506134033203,\n      \"Text\": \"Paid\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024808144196867943,\n          \"Height\": 0.007324195466935635,\n          \"Left\": 0.13005636632442474,\n          \"Top\": 0.5762420296669006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15486450493335724,\n            \"Y\": 0.5835085511207581\n          },\n          {\n            \"X\": 0.13007515668869019,\n            \"Y\": 0.5835662484169006\n          },\n          {\n            \"X\": 0.13005636632442474,\n            \"Y\": 0.5762997269630432\n          },\n          {\n            \"X\": 0.15484577417373657,\n            \"Y\": 0.5762420296669006\n          }\n        ]\n      },\n      \"Id\": \"0c9b75ec-1910-4b53-848e-de830e6a54a7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34546521-c040-4642-9fd3-e9a40fd5b99a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97759246826172,\n      \"Text\": \"Amount\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04846351221203804,\n          \"Height\": 0.007398147135972977,\n          \"Left\": 0.5375468730926514,\n          \"Top\": 0.5709258317947388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5860103964805603,\n            \"Y\": 0.5782113075256348\n          },\n          {\n            \"X\": 0.5375646948814392,\n            \"Y\": 0.578324019908905\n          },\n          {\n            \"X\": 0.5375468730926514,\n            \"Y\": 0.571038544178009\n          },\n          {\n            \"X\": 0.585992693901062,\n            \"Y\": 0.5709258317947388\n          }\n        ]\n      },\n      \"Id\": \"ace453a9-d3bb-48e6-b90e-34f45bb3a864\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"028e877b-d149-4dc7-9e33-b00354121859\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85255432128906,\n      \"Text\": \"Discount\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052231524139642715,\n          \"Height\": 0.007622379809617996,\n          \"Left\": 0.4656895697116852,\n          \"Top\": 0.570999026298523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5179210901260376,\n            \"Y\": 0.578499972820282\n          },\n          {\n            \"X\": 0.4657081067562103,\n            \"Y\": 0.5786214470863342\n          },\n          {\n            \"X\": 0.4656895697116852,\n            \"Y\": 0.5711205005645752\n          },\n          {\n            \"X\": 0.517902672290802,\n            \"Y\": 0.570999026298523\n          }\n        ]\n      },\n      \"Id\": \"76e55973-07f0-4744-a5f6-7eaaba9e0de9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aee42708-c5d7-4a7b-9beb-3b5a6716548f\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.95447540283203,\n      \"Text\": \"Ref.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022012896835803986,\n          \"Height\": 0.007452758494764566,\n          \"Left\": 0.07803347706794739,\n          \"Top\": 0.5762735605239868\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10004637390375137,\n            \"Y\": 0.5836751461029053\n          },\n          {\n            \"X\": 0.07805274426937103,\n            \"Y\": 0.5837263464927673\n          },\n          {\n            \"X\": 0.07803347706794739,\n            \"Y\": 0.5763247013092041\n          },\n          {\n            \"X\": 0.10002715140581131,\n            \"Y\": 0.5762735605239868\n          }\n        ]\n      },\n      \"Id\": \"5b9d32f5-049d-4af7-babf-069ea836a997\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b77ac117-e662-474e-9116-f48af82d34e5\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84352111816406,\n      \"Text\": \"Covered\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05028693750500679,\n          \"Height\": 0.007648003753274679,\n          \"Left\": 0.39696094393730164,\n          \"Top\": 0.5709769129753113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44724786281585693,\n            \"Y\": 0.5785079598426819\n          },\n          {\n            \"X\": 0.3969797194004059,\n            \"Y\": 0.5786249041557312\n          },\n          {\n            \"X\": 0.39696094393730164,\n            \"Y\": 0.5710937976837158\n          },\n          {\n            \"X\": 0.44722920656204224,\n            \"Y\": 0.5709769129753113\n          }\n        ]\n      },\n      \"Id\": \"1c916cc5-69c5-47d3-885b-5acc4dba137f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4a2a699-1d12-4759-8edb-e87d5bce1171\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91952514648438,\n      \"Text\": \"Coverage\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0569581612944603,\n          \"Height\": 0.009313305839896202,\n          \"Left\": 0.3237423300743103,\n          \"Top\": 0.5692269206047058\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3807004690170288,\n            \"Y\": 0.5784077644348145\n          },\n          {\n            \"X\": 0.32376545667648315,\n            \"Y\": 0.5785402059555054\n          },\n          {\n            \"X\": 0.3237423300743103,\n            \"Y\": 0.5693593621253967\n          },\n          {\n            \"X\": 0.3806775212287903,\n            \"Y\": 0.5692269206047058\n          }\n        ]\n      },\n      \"Id\": \"1989860c-88c4-49ce-a168-6381199a2f00\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"35ce46b2-547a-4995-8a1c-8d23b1d0bc7d\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86260223388672,\n      \"Text\": \"Co-Pays\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048345278948545456,\n          \"Height\": 0.00911044143140316,\n          \"Left\": 0.25821569561958313,\n          \"Top\": 0.569307804107666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3065609931945801,\n            \"Y\": 0.5783058404922485\n          },\n          {\n            \"X\": 0.2582385838031769,\n            \"Y\": 0.5784182548522949\n          },\n          {\n            \"X\": 0.25821569561958313,\n            \"Y\": 0.5694202184677124\n          },\n          {\n            \"X\": 0.30653825402259827,\n            \"Y\": 0.569307804107666\n          }\n        ]\n      },\n      \"Id\": \"329b77c9-f728-4cbe-a2ee-1a8ecff79e3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93b231d2-45e6-4e8c-accc-685ff45b4937\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.993408203125,\n      \"Text\": \"Resp.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033221643418073654,\n          \"Height\": 0.008997433818876743,\n          \"Left\": 0.19592805206775665,\n          \"Top\": 0.5693479776382446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2291496843099594,\n            \"Y\": 0.5782681703567505\n          },\n          {\n            \"X\": 0.19595091044902802,\n            \"Y\": 0.5783454179763794\n          },\n          {\n            \"X\": 0.19592805206775665,\n            \"Y\": 0.5694252252578735\n          },\n          {\n            \"X\": 0.2291269302368164,\n            \"Y\": 0.5693479776382446\n          }\n        ]\n      },\n      \"Id\": \"fe8fc06e-b0fb-4b64-9207-64b70e3273d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2c115e1a-2aec-410c-815d-106347981a86\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.41130828857422,\n      \"Text\": \"90651 9VHPV VACC 2/3 DOSE SCHED IM\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21989963948726654,\n          \"Height\": 0.007978212088346481,\n          \"Left\": 0.6034274101257324,\n          \"Top\": 0.5567442178726196\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8233270645141602,\n            \"Y\": 0.5642109513282776\n          },\n          {\n            \"X\": 0.6034455299377441,\n            \"Y\": 0.5647224187850952\n          },\n          {\n            \"X\": 0.6034274101257324,\n            \"Y\": 0.5572556853294373\n          },\n          {\n            \"X\": 0.8233095407485962,\n            \"Y\": 0.5567442178726196\n          }\n        ]\n      },\n      \"Id\": \"4ec752ae-a1b1-490c-b068-d6fba3cf1be8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"65c96d37-8a7c-4f6d-bd9a-46dd268a58c7\",\n            \"1f5b631c-1226-43a2-83b8-b17cfd678924\",\n            \"c2f617a7-49e1-4960-8a70-49017e9a096c\",\n            \"15f3c877-8e7e-4556-9341-39246447c62a\",\n            \"f05fd883-bc94-4e2a-8918-bff748357c7a\",\n            \"7ea4db7f-f7f7-496a-9c2c-eda88bf2f686\",\n            \"37e70d03-ece0-4af2-a8b6-f675f537d86a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.08270263671875,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09511898458003998,\n          \"Height\": 0.007603700738400221,\n          \"Left\": 0.8293141722679138,\n          \"Top\": 0.5515025854110718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.924433171749115,\n            \"Y\": 0.5588850975036621\n          },\n          {\n            \"X\": 0.8293314576148987,\n            \"Y\": 0.5591062903404236\n          },\n          {\n            \"X\": 0.8293141722679138,\n            \"Y\": 0.5517237782478333\n          },\n          {\n            \"X\": 0.9244160652160645,\n            \"Y\": 0.5515025854110718\n          }\n        ]\n      },\n      \"Id\": \"08c6ae59-b83f-4df8-87d7-c44a912d9f7d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"274f3491-1a54-45f0-a13e-10c1e4ccb023\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92021942138672,\n      \"Text\": \"$235.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041995398700237274,\n          \"Height\": 0.007730985060334206,\n          \"Left\": 0.5299240350723267,\n          \"Top\": 0.5516448020935059\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5719194412231445,\n            \"Y\": 0.5592781901359558\n          },\n          {\n            \"X\": 0.5299426913261414,\n            \"Y\": 0.5593758225440979\n          },\n          {\n            \"X\": 0.5299240350723267,\n            \"Y\": 0.551742434501648\n          },\n          {\n            \"X\": 0.5719008445739746,\n            \"Y\": 0.5516448020935059\n          }\n        ]\n      },\n      \"Id\": \"7b760498-57d3-45e8-b254-2d4032edb351\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"31898d7c-710d-4ffa-8d82-b42bf6f5f2a3\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91783142089844,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02944253571331501,\n          \"Height\": 0.007715765852481127,\n          \"Left\": 0.45983439683914185,\n          \"Top\": 0.5515719056129456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4892769157886505,\n            \"Y\": 0.559219241142273\n          },\n          {\n            \"X\": 0.45985329151153564,\n            \"Y\": 0.5592876672744751\n          },\n          {\n            \"X\": 0.45983439683914185,\n            \"Y\": 0.5516403913497925\n          },\n          {\n            \"X\": 0.4892580807209015,\n            \"Y\": 0.5515719056129456\n          }\n        ]\n      },\n      \"Id\": \"1cf6d311-8933-43ef-9396-1b7b1e2816dd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f4f4d77f-7d5e-414f-bf12-fdf0675c7e64\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8943099975586,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029035041108727455,\n          \"Height\": 0.007552310358732939,\n          \"Left\": 0.39058685302734375,\n          \"Top\": 0.551599383354187\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41962188482284546,\n            \"Y\": 0.5590841770172119\n          },\n          {\n            \"X\": 0.39060553908348083,\n            \"Y\": 0.5591516494750977\n          },\n          {\n            \"X\": 0.39058685302734375,\n            \"Y\": 0.5516668558120728\n          },\n          {\n            \"X\": 0.41960328817367554,\n            \"Y\": 0.551599383354187\n          }\n        ]\n      },\n      \"Id\": \"14b699d8-4082-4137-9390-38ecd6bb61cb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"20d23770-30bc-4456-90f9-11b7b0d6d0b0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86566162109375,\n      \"Text\": \"USE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021389489993453026,\n          \"Height\": 0.007040532771497965,\n          \"Left\": 0.801784098148346,\n          \"Top\": 0.5465641021728516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8231735825538635,\n            \"Y\": 0.553554892539978\n          },\n          {\n            \"X\": 0.801800549030304,\n            \"Y\": 0.5536046028137207\n          },\n          {\n            \"X\": 0.801784098148346,\n            \"Y\": 0.5466138124465942\n          },\n          {\n            \"X\": 0.8231571912765503,\n            \"Y\": 0.5465641021728516\n          }\n        ]\n      },\n      \"Id\": \"673ed3cd-1eec-492f-993f-edfc3426fc2b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"186b226e-63d0-4138-bfb1-81630e59b8d8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87655639648438,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029432399198412895,\n          \"Height\": 0.007856114767491817,\n          \"Left\": 0.32050350308418274,\n          \"Top\": 0.5513530373573303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.349935919046402,\n            \"Y\": 0.5591407418251038\n          },\n          {\n            \"X\": 0.32052314281463623,\n            \"Y\": 0.5592091679573059\n          },\n          {\n            \"X\": 0.32050350308418274,\n            \"Y\": 0.5514214634895325\n          },\n          {\n            \"X\": 0.34991636872291565,\n            \"Y\": 0.5513530373573303\n          }\n        ]\n      },\n      \"Id\": \"1317bcaa-b074-4b02-a45b-5597cd75e4ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d259d987-ae38-4b66-8337-735c82961feb\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84952545166016,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029292507097125053,\n          \"Height\": 0.007662121672183275,\n          \"Left\": 0.2506519556045532,\n          \"Top\": 0.5515263676643372\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27994444966316223,\n            \"Y\": 0.5591203570365906\n          },\n          {\n            \"X\": 0.25067126750946045,\n            \"Y\": 0.5591884851455688\n          },\n          {\n            \"X\": 0.2506519556045532,\n            \"Y\": 0.5515944361686707\n          },\n          {\n            \"X\": 0.2799251973628998,\n            \"Y\": 0.5515263676643372\n          }\n        ]\n      },\n      \"Id\": \"f8ce86d4-f56c-4bcf-a5ad-60af32128f3d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"72b60a5e-6cb8-4a81-a2bd-92b6d2dede25\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85860443115234,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029640836641192436,\n          \"Height\": 0.00794890895485878,\n          \"Left\": 0.18037058413028717,\n          \"Top\": 0.5514008402824402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21001142263412476,\n            \"Y\": 0.5592808127403259\n          },\n          {\n            \"X\": 0.18039081990718842,\n            \"Y\": 0.5593497157096863\n          },\n          {\n            \"X\": 0.18037058413028717,\n            \"Y\": 0.5514697432518005\n          },\n          {\n            \"X\": 0.20999126136302948,\n            \"Y\": 0.5514008402824402\n          }\n        ]\n      },\n      \"Id\": \"48ce241e-02c1-438b-8be0-8cf1ec66c358\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fb884383-1768-4193-a600-9d7e372859de\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96714782714844,\n      \"Text\": \"$235.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04201674461364746,\n          \"Height\": 0.00812111422419548,\n          \"Left\": 0.11078153550624847,\n          \"Top\": 0.5513263940811157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15279828011989594,\n            \"Y\": 0.5593498349189758\n          },\n          {\n            \"X\": 0.11080233752727509,\n            \"Y\": 0.5594474673271179\n          },\n          {\n            \"X\": 0.11078153550624847,\n            \"Y\": 0.5514240860939026\n          },\n          {\n            \"X\": 0.15277759730815887,\n            \"Y\": 0.5513263940811157\n          }\n        ]\n      },\n      \"Id\": \"d7904fd9-6f84-4588-9d63-d14ef0911953\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"325ed476-9901-4b5d-88f7-15b54d2b1fed\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.49185180664062,\n      \"Text\": \"90471 : IM ADM PRQ ID SUBQ/IM NJXS 1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2068033367395401,\n          \"Height\": 0.00790438987314701,\n          \"Left\": 0.6164042949676514,\n          \"Top\": 0.5317113399505615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8232076168060303,\n            \"Y\": 0.5391348004341125\n          },\n          {\n            \"X\": 0.6164222359657288,\n            \"Y\": 0.5396156907081604\n          },\n          {\n            \"X\": 0.6164042949676514,\n            \"Y\": 0.5321922302246094\n          },\n          {\n            \"X\": 0.8231902122497559,\n            \"Y\": 0.5317113399505615\n          }\n        ]\n      },\n      \"Id\": \"397f678a-fc9c-42d3-84b0-6b0a598584c3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a65ee9cd-284b-4721-b25b-b068b8b4d9d0\",\n            \"76227ce9-784d-4870-a4bc-220cc6700f0c\",\n            \"9ac589ee-e5c9-4c50-aacf-d4a76c011943\",\n            \"9c06c391-c86e-4cf2-8411-65c9aaf31173\",\n            \"98797fe2-beef-4cd8-9c54-ff46da997b70\",\n            \"4263a379-1119-46c0-8842-96bb1cf5e1af\",\n            \"16023209-be36-418b-bd9b-b5d037a992e4\",\n            \"a663a990-e715-4646-a4e7-6e1fe7208cfc\",\n            \"dcc6e787-c295-4999-84e7-bc907b2f68a5\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.86044311523438,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09531670808792114,\n          \"Height\": 0.007611058186739683,\n          \"Left\": 0.8292961716651917,\n          \"Top\": 0.5263999700546265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9246128797531128,\n            \"Y\": 0.5337893962860107\n          },\n          {\n            \"X\": 0.8293135166168213,\n            \"Y\": 0.5340110063552856\n          },\n          {\n            \"X\": 0.8292961716651917,\n            \"Y\": 0.5266215801239014\n          },\n          {\n            \"X\": 0.924595832824707,\n            \"Y\": 0.5263999700546265\n          }\n        ]\n      },\n      \"Id\": \"090068a6-4221-4577-a455-273c6ffabd4a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60e3d9a9-e114-4580-b315-25d7c4d8078f\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89684295654297,\n      \"Text\": \"$26.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03559179976582527,\n          \"Height\": 0.007843618281185627,\n          \"Left\": 0.5298241376876831,\n          \"Top\": 0.5263326168060303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5654159188270569,\n            \"Y\": 0.5340934991836548\n          },\n          {\n            \"X\": 0.5298431515693665,\n            \"Y\": 0.534176230430603\n          },\n          {\n            \"X\": 0.5298241376876831,\n            \"Y\": 0.5264153480529785\n          },\n          {\n            \"X\": 0.5653970241546631,\n            \"Y\": 0.5263326168060303\n          }\n        ]\n      },\n      \"Id\": \"04a2aa0f-a03a-476b-b584-e70b9226a02f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2bb7e07d-5e88-444b-8c9a-d036cd4108c9\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90023803710938,\n      \"Text\": \"$16.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03576529026031494,\n          \"Height\": 0.007825169712305069,\n          \"Left\": 0.4598364531993866,\n          \"Top\": 0.5264539122581482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4956017732620239,\n            \"Y\": 0.5341959595680237\n          },\n          {\n            \"X\": 0.4598556160926819,\n            \"Y\": 0.5342791080474854\n          },\n          {\n            \"X\": 0.4598364531993866,\n            \"Y\": 0.5265370607376099\n          },\n          {\n            \"X\": 0.4955826997756958,\n            \"Y\": 0.5264539122581482\n          }\n        ]\n      },\n      \"Id\": \"68ea047f-5e57-416d-8601-37ce118eab17\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08e54242-88ec-431f-b2fd-fa1066635975\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82511901855469,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02930936962366104,\n          \"Height\": 0.007810001261532307,\n          \"Left\": 0.39034298062324524,\n          \"Top\": 0.5262539386749268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4196523427963257,\n            \"Y\": 0.5339958071708679\n          },\n          {\n            \"X\": 0.39036229252815247,\n            \"Y\": 0.5340639352798462\n          },\n          {\n            \"X\": 0.39034298062324524,\n            \"Y\": 0.526322066783905\n          },\n          {\n            \"X\": 0.41963309049606323,\n            \"Y\": 0.5262539386749268\n          }\n        ]\n      },\n      \"Id\": \"82a79cac-5eef-4492-a501-ec2bef744715\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"40856e98-d02d-4d9f-9928-17422cd2e83a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.47007751464844,\n      \"Text\": \"VACCINE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047123536467552185,\n          \"Height\": 0.007141673471778631,\n          \"Left\": 0.7763349413871765,\n          \"Top\": 0.5214401483535767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8234584927558899,\n            \"Y\": 0.5284722447395325\n          },\n          {\n            \"X\": 0.7763515710830688,\n            \"Y\": 0.5285817980766296\n          },\n          {\n            \"X\": 0.7763349413871765,\n            \"Y\": 0.5215497016906738\n          },\n          {\n            \"X\": 0.8234419822692871,\n            \"Y\": 0.5214401483535767\n          }\n        ]\n      },\n      \"Id\": \"10814b87-f70a-4bdb-b928-e72c848b6701\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a8584ac3-dd2a-41f1-baad-c80273c79de8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83589935302734,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029333336278796196,\n          \"Height\": 0.007916495203971863,\n          \"Left\": 0.32044509053230286,\n          \"Top\": 0.5261660218238831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3497784435749054,\n            \"Y\": 0.5340143442153931\n          },\n          {\n            \"X\": 0.3204648792743683,\n            \"Y\": 0.5340825319290161\n          },\n          {\n            \"X\": 0.32044509053230286,\n            \"Y\": 0.5262342095375061\n          },\n          {\n            \"X\": 0.34975874423980713,\n            \"Y\": 0.5261660218238831\n          }\n        ]\n      },\n      \"Id\": \"42d349c9-05e6-4183-8f01-286aecfe9836\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f7316ca-88ac-4706-abe4-930698453878\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90959930419922,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02910503000020981,\n          \"Height\": 0.007632032502442598,\n          \"Left\": 0.25067582726478577,\n          \"Top\": 0.5264413356781006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27978086471557617,\n            \"Y\": 0.5340057611465454\n          },\n          {\n            \"X\": 0.2506950795650482,\n            \"Y\": 0.5340734124183655\n          },\n          {\n            \"X\": 0.25067582726478577,\n            \"Y\": 0.5265089869499207\n          },\n          {\n            \"X\": 0.2797617018222809,\n            \"Y\": 0.5264413356781006\n          }\n        ]\n      },\n      \"Id\": \"470d34c1-98ff-4dd4-b4ca-369076e5d8fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4deefc51-253c-4dbc-a410-9e79754ce04b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8736572265625,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02932196483016014,\n          \"Height\": 0.007875099778175354,\n          \"Left\": 0.18049925565719604,\n          \"Top\": 0.5262616872787476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2098212093114853,\n            \"Y\": 0.5340685844421387\n          },\n          {\n            \"X\": 0.18051929771900177,\n            \"Y\": 0.5341367721557617\n          },\n          {\n            \"X\": 0.18049925565719604,\n            \"Y\": 0.5263298153877258\n          },\n          {\n            \"X\": 0.20980124175548553,\n            \"Y\": 0.5262616872787476\n          }\n        ]\n      },\n      \"Id\": \"dcc18b39-2377-4a8c-83ab-490475a76f2e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"864640b9-8621-4d77-a068-c26d5265ed24\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9498291015625,\n      \"Text\": \"$10.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035697199404239655,\n          \"Height\": 0.007790425792336464,\n          \"Left\": 0.11076558381319046,\n          \"Top\": 0.5263655185699463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14646278321743011,\n            \"Y\": 0.534072995185852\n          },\n          {\n            \"X\": 0.11078556627035141,\n            \"Y\": 0.5341559648513794\n          },\n          {\n            \"X\": 0.11076558381319046,\n            \"Y\": 0.5264484882354736\n          },\n          {\n            \"X\": 0.14644289016723633,\n            \"Y\": 0.5263655185699463\n          }\n        ]\n      },\n      \"Id\": \"d80d5cb8-3d4c-4f11-a207-c130af54889b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b8a156f-42f8-435a-b94b-577e0ff06bbd\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.32735443115234,\n      \"Text\": \"12183\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028097791597247124,\n          \"Height\": 0.007159462198615074,\n          \"Left\": 0.07544352859258652,\n          \"Top\": 0.5268439054489136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10354132205247879,\n            \"Y\": 0.5339380502700806\n          },\n          {\n            \"X\": 0.07546200603246689,\n            \"Y\": 0.5340033769607544\n          },\n          {\n            \"X\": 0.07544352859258652,\n            \"Y\": 0.5269092321395874\n          },\n          {\n            \"X\": 0.10352291166782379,\n            \"Y\": 0.5268439054489136\n          }\n        ]\n      },\n      \"Id\": \"76b9f5c6-c803-4bad-822a-79219edc7c33\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3d91bcd4-afe3-4393-861d-b11c02509c94\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70059967041016,\n      \"Text\": \"Totals:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038331978023052216,\n          \"Height\": 0.007478117011487484,\n          \"Left\": 0.5997524261474609,\n          \"Top\": 0.5067843794822693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6380844116210938,\n            \"Y\": 0.5141733884811401\n          },\n          {\n            \"X\": 0.5997703671455383,\n            \"Y\": 0.5142624974250793\n          },\n          {\n            \"X\": 0.5997524261474609,\n            \"Y\": 0.5068734884262085\n          },\n          {\n            \"X\": 0.6380665898323059,\n            \"Y\": 0.5067843794822693\n          }\n        ]\n      },\n      \"Id\": \"4614ba24-3c2e-47f3-bf6b-b7385ea0f96e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1f7986fb-1799-4bfc-b1b1-7352d18ef86b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93464660644531,\n      \"Text\": \"$261.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04179539531469345,\n          \"Height\": 0.00827046763151884,\n          \"Left\": 0.5297731757164001,\n          \"Top\": 0.5063973069190979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5715685486793518,\n            \"Y\": 0.5145705938339233\n          },\n          {\n            \"X\": 0.5297932028770447,\n            \"Y\": 0.5146677494049072\n          },\n          {\n            \"X\": 0.5297731757164001,\n            \"Y\": 0.506494402885437\n          },\n          {\n            \"X\": 0.5715487003326416,\n            \"Y\": 0.5063973069190979\n          }\n        ]\n      },\n      \"Id\": \"db1e0348-151a-4eec-8721-0fd87113eeee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dacc3ca6-fa10-4b96-8e81-a37214f103a0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92379760742188,\n      \"Text\": \"$16.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035355184227228165,\n          \"Height\": 0.008146868087351322,\n          \"Left\": 0.45984718203544617,\n          \"Top\": 0.5063608288764954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49520236253738403,\n            \"Y\": 0.5144255757331848\n          },\n          {\n            \"X\": 0.45986711978912354,\n            \"Y\": 0.5145077109336853\n          },\n          {\n            \"X\": 0.45984718203544617,\n            \"Y\": 0.5064430236816406\n          },\n          {\n            \"X\": 0.49518251419067383,\n            \"Y\": 0.5063608288764954\n          }\n        ]\n      },\n      \"Id\": \"97bc63cf-8714-4019-9ed4-fa8a8b98b040\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b45a66f-d10d-49a6-b65b-1fdad59a2661\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8665771484375,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029414987191557884,\n          \"Height\": 0.008352200500667095,\n          \"Left\": 0.3901572823524475,\n          \"Top\": 0.5061311721801758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41957226395606995,\n            \"Y\": 0.5144150257110596\n          },\n          {\n            \"X\": 0.39017796516418457,\n            \"Y\": 0.5144833922386169\n          },\n          {\n            \"X\": 0.3901572823524475,\n            \"Y\": 0.5061995387077332\n          },\n          {\n            \"X\": 0.41955167055130005,\n            \"Y\": 0.5061311721801758\n          }\n        ]\n      },\n      \"Id\": \"0f7f9cdc-ecdf-4411-b270-c951654ad071\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2643edcc-450f-4877-9902-545e8a5b716a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88143157958984,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02920771948993206,\n          \"Height\": 0.008366390131413937,\n          \"Left\": 0.3204864263534546,\n          \"Top\": 0.5061272382736206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.349694162607193,\n            \"Y\": 0.5144257545471191\n          },\n          {\n            \"X\": 0.32050734758377075,\n            \"Y\": 0.5144935846328735\n          },\n          {\n            \"X\": 0.3204864263534546,\n            \"Y\": 0.506195068359375\n          },\n          {\n            \"X\": 0.349673330783844,\n            \"Y\": 0.5061272382736206\n          }\n        ]\n      },\n      \"Id\": \"3673e2fd-fb3d-4a50-9e14-b3673a4d0e9e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f72efb0a-4828-4af1-a637-3775658d8ca7\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8906478881836,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029028385877609253,\n          \"Height\": 0.007819561287760735,\n          \"Left\": 0.2507588863372803,\n          \"Top\": 0.5064206719398499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2797872722148895,\n            \"Y\": 0.5141727924346924\n          },\n          {\n            \"X\": 0.2507786154747009,\n            \"Y\": 0.5142402648925781\n          },\n          {\n            \"X\": 0.2507588863372803,\n            \"Y\": 0.5064881443977356\n          },\n          {\n            \"X\": 0.27976763248443604,\n            \"Y\": 0.5064206719398499\n          }\n        ]\n      },\n      \"Id\": \"0c2cdc0d-895f-4f22-b754-dc9d49bc0b55\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a79eda0-692a-47da-850e-3341d344b09f\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88232421875,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029119443148374557,\n          \"Height\": 0.008050934411585331,\n          \"Left\": 0.1806596964597702,\n          \"Top\": 0.5063705444335938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20977912843227386,\n            \"Y\": 0.5143538117408752\n          },\n          {\n            \"X\": 0.18068020045757294,\n            \"Y\": 0.5144215226173401\n          },\n          {\n            \"X\": 0.1806596964597702,\n            \"Y\": 0.5064381957054138\n          },\n          {\n            \"X\": 0.2097587138414383,\n            \"Y\": 0.5063705444335938\n          }\n        ]\n      },\n      \"Id\": \"2ca5748b-e848-46b8-8d10-ff9a2cd0f9c5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"21467615-8ada-479b-b885-9fb045392ea0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90673065185547,\n      \"Text\": \"$245.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04367656260728836,\n          \"Height\": 0.008832301013171673,\n          \"Left\": 0.11028443276882172,\n          \"Top\": 0.5066843032836914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15396098792552948,\n            \"Y\": 0.5154150724411011\n          },\n          {\n            \"X\": 0.11030706763267517,\n            \"Y\": 0.5155165791511536\n          },\n          {\n            \"X\": 0.11028443276882172,\n            \"Y\": 0.5067858099937439\n          },\n          {\n            \"X\": 0.15393848717212677,\n            \"Y\": 0.5066843032836914\n          }\n        ]\n      },\n      \"Id\": \"5f172d87-1976-451a-9714-83c27fcd852b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e4da6b8-57a5-4bc5-8555-3d73d46b6272\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.81367492675781,\n      \"Text\": \"Reference: 12183\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12301410734653473,\n          \"Height\": 0.009062746539711952,\n          \"Left\": 0.8018485307693481,\n          \"Top\": 0.47637370228767395\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9248626232147217,\n            \"Y\": 0.4851504862308502\n          },\n          {\n            \"X\": 0.8018692135810852,\n            \"Y\": 0.48543643951416016\n          },\n          {\n            \"X\": 0.8018485307693481,\n            \"Y\": 0.4766596555709839\n          },\n          {\n            \"X\": 0.924842357635498,\n            \"Y\": 0.47637370228767395\n          }\n        ]\n      },\n      \"Id\": \"93ad31b6-33c3-4355-b450-2efc6f654891\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"669783d4-48d7-46a3-81d2-84277517c954\",\n            \"73e78dcf-3ef7-4532-96de-f8eb3a05d4df\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79814910888672,\n      \"Text\": \"A Cigna preferred provider discount has been applied.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32728034257888794,\n          \"Height\": 0.011445661075413227,\n          \"Left\": 0.3473477065563202,\n          \"Top\": 0.4745667576789856\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6746280193328857,\n            \"Y\": 0.4852515161037445\n          },\n          {\n            \"X\": 0.3473745286464691,\n            \"Y\": 0.48601239919662476\n          },\n          {\n            \"X\": 0.3473477065563202,\n            \"Y\": 0.47532758116722107\n          },\n          {\n            \"X\": 0.6746023893356323,\n            \"Y\": 0.4745667576789856\n          }\n        ]\n      },\n      \"Id\": \"377d9423-1026-45c7-98d3-6c31745038b7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"517a679d-f883-420e-bbc9-c1fd84752aca\",\n            \"e5df44bf-e1d1-40d9-9dd6-d35164f54050\",\n            \"c4579d87-92e1-4884-b16b-ffb12a87625f\",\n            \"387927fe-aefd-4396-a89a-72cb437dbe6a\",\n            \"12313e31-dd83-4630-812f-cd6dc8a6f033\",\n            \"e0530dd5-ff4a-404d-9ac8-d4ee310b5355\",\n            \"763ceedb-22f9-4ba7-889e-0c18c443a6d1\",\n            \"d534f600-0882-4cf5-a9b5-781547e378e1\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8837890625,\n      \"Text\": \"SCHOOL OF VISUAL\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13426469266414642,\n          \"Height\": 0.008906928822398186,\n          \"Left\": 0.10618849843740463,\n          \"Top\": 0.4314102828502655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24045318365097046,\n            \"Y\": 0.44000518321990967\n          },\n          {\n            \"X\": 0.10621079057455063,\n            \"Y\": 0.44031721353530884\n          },\n          {\n            \"X\": 0.10618849843740463,\n            \"Y\": 0.4317223131656647\n          },\n          {\n            \"X\": 0.2404312938451767,\n            \"Y\": 0.4314102828502655\n          }\n        ]\n      },\n      \"Id\": \"890bcbb6-d5bb-48e1-96a4-d5b917f68b32\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b7bacba9-d628-406c-8e52-642e02cf9108\",\n            \"ac670b25-a1ed-4d4d-96d1-a5f8e2e6e5e3\",\n            \"ba719a54-797a-4ee5-99d9-5110a06c18e9\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71166229248047,\n      \"Text\": \"PT:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021907825022935867,\n          \"Height\": 0.008310442790389061,\n          \"Left\": 0.9050406217575073,\n          \"Top\": 0.4248965382575989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9269484281539917,\n            \"Y\": 0.4331561028957367\n          },\n          {\n            \"X\": 0.9050597548484802,\n            \"Y\": 0.4332070052623749\n          },\n          {\n            \"X\": 0.9050406217575073,\n            \"Y\": 0.4249474108219147\n          },\n          {\n            \"X\": 0.9269293546676636,\n            \"Y\": 0.4248965382575989\n          }\n        ]\n      },\n      \"Id\": \"d3503262-1981-45bc-98af-9d9aeb96ae9f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ea719b03-a2f0-45d0-9f45-2d0f86d7acb7\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.09650421142578,\n      \"Text\": \"PT. DOB: 1997-10-07\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13740292191505432,\n          \"Height\": 0.008906947448849678,\n          \"Left\": 0.5799598693847656,\n          \"Top\": 0.4248787462711334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7173628211021423,\n            \"Y\": 0.4334663450717926\n          },\n          {\n            \"X\": 0.5799807906150818,\n            \"Y\": 0.43378567695617676\n          },\n          {\n            \"X\": 0.5799598693847656,\n            \"Y\": 0.4251980483531952\n          },\n          {\n            \"X\": 0.7173423171043396,\n            \"Y\": 0.4248787462711334\n          }\n        ]\n      },\n      \"Id\": \"e77feb16-652b-42fd-bf9f-6023eb6e0980\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6e1caf58-ed84-46ec-8049-38a63e7fb1c5\",\n            \"4ecb2944-f8f8-4153-910b-cfa239be46c1\",\n            \"d66240c8-6f79-41d0-96fb-1fc0b634c44b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93875885009766,\n      \"Text\": \"Timmy Turner\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11736655980348587,\n          \"Height\": 0.010792523622512817,\n          \"Left\": 0.7589752078056335,\n          \"Top\": 0.4178631901741028\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8763417601585388,\n            \"Y\": 0.4283829927444458\n          },\n          {\n            \"X\": 0.7590001225471497,\n            \"Y\": 0.4286557137966156\n          },\n          {\n            \"X\": 0.7589752078056335,\n            \"Y\": 0.4181359112262726\n          },\n          {\n            \"X\": 0.8763172626495361,\n            \"Y\": 0.4178631901741028\n          }\n        ]\n      },\n      \"Id\": \"a8a85175-9ba0-439f-b2ce-00d09435d92f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5324643f-f8c1-4c48-822d-b316f54e86d6\",\n            \"ce33de25-7f41-4d6c-a56e-d3a6a8e22bf9\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.8924560546875,\n      \"Text\": \"PT. ACCT: 5705387V1648\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17232239246368408,\n          \"Height\": 0.009039947763085365,\n          \"Left\": 0.3470936715602875,\n          \"Top\": 0.42488381266593933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.519416093826294,\n            \"Y\": 0.4335232675075531\n          },\n          {\n            \"X\": 0.3471153676509857,\n            \"Y\": 0.43392375111579895\n          },\n          {\n            \"X\": 0.3470936715602875,\n            \"Y\": 0.4252842962741852\n          },\n          {\n            \"X\": 0.5193948745727539,\n            \"Y\": 0.42488381266593933\n          }\n        ]\n      },\n      \"Id\": \"6ff1dcde-4d88-4c87-953e-da242ab59b24\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b0fdd69-3ea8-4433-8423-ee4166489b30\",\n            \"63e29d9c-74f0-42cb-896d-de97dd01dc52\",\n            \"02f960a5-6171-47e3-b13c-7d3b32bd5562\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75233459472656,\n      \"Text\": \"GRP:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03335200995206833,\n          \"Height\": 0.008592184633016586,\n          \"Left\": 0.28245773911476135,\n          \"Top\": 0.4251795709133148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3158097565174103,\n            \"Y\": 0.4336942732334137\n          },\n          {\n            \"X\": 0.28247931599617004,\n            \"Y\": 0.4337717592716217\n          },\n          {\n            \"X\": 0.28245773911476135,\n            \"Y\": 0.42525702714920044\n          },\n          {\n            \"X\": 0.31578826904296875,\n            \"Y\": 0.4251795709133148\n          }\n        ]\n      },\n      \"Id\": \"dbe764ec-1780-4ace-98e9-49c267e0a78a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac4ca666-3615-4ebb-95af-ee4dc1a3265a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85516357421875,\n      \"Text\": \"ARTS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0368640273809433,\n          \"Height\": 0.008457981050014496,\n          \"Left\": 0.2041054219007492,\n          \"Top\": 0.4192611277103424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2409694492816925,\n            \"Y\": 0.42763346433639526\n          },\n          {\n            \"X\": 0.20412686467170715,\n            \"Y\": 0.4277190864086151\n          },\n          {\n            \"X\": 0.2041054219007492,\n            \"Y\": 0.41934674978256226\n          },\n          {\n            \"X\": 0.2409481257200241,\n            \"Y\": 0.4192611277103424\n          }\n        ]\n      },\n      \"Id\": \"177bdf7d-f620-49e2-a1e4-cce7bb44dd26\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cea6cfe6-017e-40b8-a577-8b6077b81b96\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73731231689453,\n      \"Text\": \"MBR:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034854449331760406,\n          \"Height\": 0.008058878593146801,\n          \"Left\": 0.8922139406204224,\n          \"Top\": 0.40532341599464417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9270683526992798,\n            \"Y\": 0.41330134868621826\n          },\n          {\n            \"X\": 0.8922324776649475,\n            \"Y\": 0.41338229179382324\n          },\n          {\n            \"X\": 0.8922139406204224,\n            \"Y\": 0.40540438890457153\n          },\n          {\n            \"X\": 0.9270499348640442,\n            \"Y\": 0.40532341599464417\n          }\n        ]\n      },\n      \"Id\": \"02d58bf8-1477-4ca9-9ade-d247fc866ad4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d88344b6-f00b-4c41-ad07-e433ec22303e\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8231201171875,\n      \"Text\": \"PLAN ID: 002138521\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13511334359645844,\n          \"Height\": 0.008652126416563988,\n          \"Left\": 0.5821572542190552,\n          \"Top\": 0.4052172303199768\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7172706127166748,\n            \"Y\": 0.413555383682251\n          },\n          {\n            \"X\": 0.5821775197982788,\n            \"Y\": 0.41386935114860535\n          },\n          {\n            \"X\": 0.5821572542190552,\n            \"Y\": 0.4055311977863312\n          },\n          {\n            \"X\": 0.7172507643699646,\n            \"Y\": 0.4052172303199768\n          }\n        ]\n      },\n      \"Id\": \"e7313854-e175-44a6-892d-13a9187d3201\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a3bdee80-bdbe-4b12-8ee3-b16a906cd650\",\n            \"60edcd0f-e360-4f6e-a623-d271012707cd\",\n            \"f8b02b28-6bae-487d-83d5-4d57f4973a67\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.14177703857422,\n      \"Text\": \"CLAIM #:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059278495609760284,\n          \"Height\": 0.008492805063724518,\n          \"Left\": 0.4600514769554138,\n          \"Top\": 0.40527430176734924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5193299651145935,\n            \"Y\": 0.4136293828487396\n          },\n          {\n            \"X\": 0.4600721597671509,\n            \"Y\": 0.41376709938049316\n          },\n          {\n            \"X\": 0.4600514769554138,\n            \"Y\": 0.4054120182991028\n          },\n          {\n            \"X\": 0.5193095207214355,\n            \"Y\": 0.40527430176734924\n          }\n        ]\n      },\n      \"Id\": \"ae7e845a-028b-40ee-9125-b7aa56b877fb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e82434ba-e1b4-41e7-a361-5a9d6487b797\",\n            \"c95a3725-1738-4b45-bdeb-202ed05bfed8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83562469482422,\n      \"Text\": \"202209131720\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09091653674840927,\n          \"Height\": 0.008510862477123737,\n          \"Left\": 0.34903836250305176,\n          \"Top\": 0.4054137170314789\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4399549067020416,\n            \"Y\": 0.41371333599090576\n          },\n          {\n            \"X\": 0.34905922412872314,\n            \"Y\": 0.41392457485198975\n          },\n          {\n            \"X\": 0.34903836250305176,\n            \"Y\": 0.40562495589256287\n          },\n          {\n            \"X\": 0.4399343430995941,\n            \"Y\": 0.4054137170314789\n          }\n        ]\n      },\n      \"Id\": \"913f2512-ef15-4f0f-b93e-e1d88c192800\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"425db244-0c78-460a-b8aa-573ad5b2e20e\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.64977264404297,\n      \"Text\": \"GRP #:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04534538462758064,\n          \"Height\": 0.008492502383887768,\n          \"Left\": 0.2703527808189392,\n          \"Top\": 0.4054907560348511\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31569817662239075,\n            \"Y\": 0.4138779044151306\n          },\n          {\n            \"X\": 0.270374059677124,\n            \"Y\": 0.4139832556247711\n          },\n          {\n            \"X\": 0.2703527808189392,\n            \"Y\": 0.4055960774421692\n          },\n          {\n            \"X\": 0.3156770169734955,\n            \"Y\": 0.4054907560348511\n          }\n        ]\n      },\n      \"Id\": \"81bdc74b-1759-442d-bd81-4194d3d8659e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"66ca335b-215f-414c-8e5c-c8a2a735b74d\",\n            \"95f32ffb-1a52-492f-9f16-721a87f6534b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.38864135742188,\n      \"Text\": \"ST0654SHUI01\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09288021922111511,\n          \"Height\": 0.008697286248207092,\n          \"Left\": 0.14726592600345612,\n          \"Top\": 0.40551939606666565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24014614522457123,\n            \"Y\": 0.41400086879730225\n          },\n          {\n            \"X\": 0.14728780090808868,\n            \"Y\": 0.41421666741371155\n          },\n          {\n            \"X\": 0.14726592600345612,\n            \"Y\": 0.40573519468307495\n          },\n          {\n            \"X\": 0.24012452363967896,\n            \"Y\": 0.40551939606666565\n          }\n        ]\n      },\n      \"Id\": \"e662ccc8-91bc-466f-8510-57ab18220ae9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cc01d164-915f-49ea-8a1c-d32d38c5d514\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86314392089844,\n      \"Text\": \"Billed\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031994838267564774,\n          \"Height\": 0.007699938490986824,\n          \"Left\": 0.5454535484313965,\n          \"Top\": 0.3920955955982208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5774483680725098,\n            \"Y\": 0.39972123503685\n          },\n          {\n            \"X\": 0.5454722046852112,\n            \"Y\": 0.3997955322265625\n          },\n          {\n            \"X\": 0.5454535484313965,\n            \"Y\": 0.39216992259025574\n          },\n          {\n            \"X\": 0.5774298310279846,\n            \"Y\": 0.3920955955982208\n          }\n        ]\n      },\n      \"Id\": \"d47a7ed4-8456-4963-be24-956f707d3eb5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2af955f3-8094-42b6-b474-19079cd7cc2e\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92169189453125,\n      \"Text\": \"PPO\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023784469813108444,\n          \"Height\": 0.007243982516229153,\n          \"Left\": 0.4798901677131653,\n          \"Top\": 0.3924105167388916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5036746263504028,\n            \"Y\": 0.39959925413131714\n          },\n          {\n            \"X\": 0.47990790009498596,\n            \"Y\": 0.3996545076370239\n          },\n          {\n            \"X\": 0.4798901677131653,\n            \"Y\": 0.392465740442276\n          },\n          {\n            \"X\": 0.5036569833755493,\n            \"Y\": 0.3924105167388916\n          }\n        ]\n      },\n      \"Id\": \"f8b81427-5583-4032-a429-48b85c7db5d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"463cbbad-92eb-4b44-a14e-b43bbea3b4ec\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74292755126953,\n      \"Text\": \"Non\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02242141030728817,\n          \"Height\": 0.007299928460270166,\n          \"Left\": 0.41048750281333923,\n          \"Top\": 0.3922979533672333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43290889263153076,\n            \"Y\": 0.399545818567276\n          },\n          {\n            \"X\": 0.4105055332183838,\n            \"Y\": 0.3995978832244873\n          },\n          {\n            \"X\": 0.41048750281333923,\n            \"Y\": 0.3923500180244446\n          },\n          {\n            \"X\": 0.432890921831131,\n            \"Y\": 0.3922979533672333\n          }\n        ]\n      },\n      \"Id\": \"9e66ea77-7bd0-4947-ab26-84dcbdd4ae46\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1e0301a1-b960-41d6-855c-03ad357280fe\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95677947998047,\n      \"Text\": \"Other\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03347807750105858,\n          \"Height\": 0.0072091673500835896,\n          \"Left\": 0.33479052782058716,\n          \"Top\": 0.39237117767333984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36826860904693604,\n            \"Y\": 0.39950257539749146\n          },\n          {\n            \"X\": 0.33480846881866455,\n            \"Y\": 0.39958035945892334\n          },\n          {\n            \"X\": 0.33479052782058716,\n            \"Y\": 0.39244893193244934\n          },\n          {\n            \"X\": 0.3682507574558258,\n            \"Y\": 0.39237117767333984\n          }\n        ]\n      },\n      \"Id\": \"2ef33e6a-5333-417f-b9c7-96a865adc4b4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6c1485c4-6f53-4640-bff1-817d4f3123ad\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85523986816406,\n      \"Text\": \"Deductible\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06254803389310837,\n          \"Height\": 0.007660370785742998,\n          \"Left\": 0.25107771158218384,\n          \"Top\": 0.39238399267196655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3136257231235504,\n            \"Y\": 0.39989903569221497\n          },\n          {\n            \"X\": 0.25109681487083435,\n            \"Y\": 0.40004435181617737\n          },\n          {\n            \"X\": 0.25107771158218384,\n            \"Y\": 0.39252927899360657\n          },\n          {\n            \"X\": 0.31360676884651184,\n            \"Y\": 0.39238399267196655\n          }\n        ]\n      },\n      \"Id\": \"b808b2f3-b04c-4342-b4f7-2954e8393924\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"476583b3-88e9-4e3d-bc27-c6b7e9f9c55a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90216827392578,\n      \"Text\": \"Date of Service\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08826784044504166,\n          \"Height\": 0.008031768724322319,\n          \"Left\": 0.8323720693588257,\n          \"Top\": 0.38642027974128723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9206398725509644,\n            \"Y\": 0.3942469656467438\n          },\n          {\n            \"X\": 0.8323903679847717,\n            \"Y\": 0.3944520354270935\n          },\n          {\n            \"X\": 0.8323720693588257,\n            \"Y\": 0.38662534952163696\n          },\n          {\n            \"X\": 0.9206217527389526,\n            \"Y\": 0.38642027974128723\n          }\n        ]\n      },\n      \"Id\": \"c93f1adb-3095-4984-bf64-f003b3984aab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9f80cca3-cce2-4859-bece-faf0bbd36b15\",\n            \"b4be79b4-39f4-4f24-a66c-ffa7b6f9b94c\",\n            \"e5ebc158-4eae-4e16-8fb2-2d30fbc82e38\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83894348144531,\n      \"Text\": \"Patient\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041440583765506744,\n          \"Height\": 0.007506678346544504,\n          \"Left\": 0.1916184425354004,\n          \"Top\": 0.3924364447593689\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23305903375148773,\n            \"Y\": 0.3998468518257141\n          },\n          {\n            \"X\": 0.19163745641708374,\n            \"Y\": 0.39994311332702637\n          },\n          {\n            \"X\": 0.1916184425354004,\n            \"Y\": 0.39253270626068115\n          },\n          {\n            \"X\": 0.23304013907909393,\n            \"Y\": 0.3924364447593689\n          }\n        ]\n      },\n      \"Id\": \"5083087d-ff20-4074-a38d-252dd190e568\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aa5d74d9-8044-4914-bbce-afb472f7d977\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.56674194335938,\n      \"Text\": \"Procedure\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06235251575708389,\n          \"Height\": 0.007820273749530315,\n          \"Left\": 0.6789592504501343,\n          \"Top\": 0.38658323884010315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.74131178855896,\n            \"Y\": 0.39425864815711975\n          },\n          {\n            \"X\": 0.6789776682853699,\n            \"Y\": 0.39440351724624634\n          },\n          {\n            \"X\": 0.6789592504501343,\n            \"Y\": 0.38672807812690735\n          },\n          {\n            \"X\": 0.7412935495376587,\n            \"Y\": 0.38658323884010315\n          }\n        ]\n      },\n      \"Id\": \"b9b98d06-726e-466b-8500-5fb26ccb6e14\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7558f9d-0030-4bdd-a381-5c0b8ec4a9e0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88455200195312,\n      \"Text\": \"Paid\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02487185038626194,\n          \"Height\": 0.00747724948450923,\n          \"Left\": 0.12960149347782135,\n          \"Top\": 0.38731276988983154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15447334945201874,\n            \"Y\": 0.394732266664505\n          },\n          {\n            \"X\": 0.12962068617343903,\n            \"Y\": 0.39479002356529236\n          },\n          {\n            \"X\": 0.12960149347782135,\n            \"Y\": 0.3873705267906189\n          },\n          {\n            \"X\": 0.15445421636104584,\n            \"Y\": 0.38731276988983154\n          }\n        ]\n      },\n      \"Id\": \"297da974-6b70-4fba-a309-5c02cb5d80f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a5f250ca-3a14-4a3a-9db4-34a6a630f8fa\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.20878601074219,\n      \"Text\": \"Ref.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02219957299530506,\n          \"Height\": 0.007487949915230274,\n          \"Left\": 0.07750416547060013,\n          \"Top\": 0.3873628079891205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09970373660326004,\n            \"Y\": 0.39479920268058777\n          },\n          {\n            \"X\": 0.07752352952957153,\n            \"Y\": 0.3948507606983185\n          },\n          {\n            \"X\": 0.07750416547060013,\n            \"Y\": 0.3874143362045288\n          },\n          {\n            \"X\": 0.09968443214893341,\n            \"Y\": 0.3873628079891205\n          }\n        ]\n      },\n      \"Id\": \"3264f43c-25be-45cb-bb06-7b9f0f3fccf0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f501cbfb-3b6f-44a9-b036-020e262e01a4\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97796630859375,\n      \"Text\": \"Amount\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04853825643658638,\n          \"Height\": 0.007275598123669624,\n          \"Left\": 0.5370064377784729,\n          \"Top\": 0.3816765248775482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5855447053909302,\n            \"Y\": 0.38883936405181885\n          },\n          {\n            \"X\": 0.5370239615440369,\n            \"Y\": 0.3889521360397339\n          },\n          {\n            \"X\": 0.5370064377784729,\n            \"Y\": 0.38178926706314087\n          },\n          {\n            \"X\": 0.5855273008346558,\n            \"Y\": 0.3816765248775482\n          }\n        ]\n      },\n      \"Id\": \"2484e94a-9e3b-45e5-91b5-ed601c9977dc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a305ed2-1bc1-4f27-ba95-43045353f9a9\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8944091796875,\n      \"Text\": \"Discount\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05199160426855087,\n          \"Height\": 0.007466000504791737,\n          \"Left\": 0.465285062789917,\n          \"Top\": 0.38173913955688477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172766447067261,\n            \"Y\": 0.3890843689441681\n          },\n          {\n            \"X\": 0.4653032124042511,\n            \"Y\": 0.3892051577568054\n          },\n          {\n            \"X\": 0.465285062789917,\n            \"Y\": 0.3818598985671997\n          },\n          {\n            \"X\": 0.5172586441040039,\n            \"Y\": 0.38173913955688477\n          }\n        ]\n      },\n      \"Id\": \"ad3c0b3d-18c2-4616-948f-b5842868ca66\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e27589a-734b-4330-b8fa-99e9102bac2b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91632843017578,\n      \"Text\": \"Covered\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05042010545730591,\n          \"Height\": 0.007570344489067793,\n          \"Left\": 0.39634624123573303,\n          \"Top\": 0.3817307949066162\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44676634669303894,\n            \"Y\": 0.38918402791023254\n          },\n          {\n            \"X\": 0.39636483788490295,\n            \"Y\": 0.3893011510372162\n          },\n          {\n            \"X\": 0.39634624123573303,\n            \"Y\": 0.38184791803359985\n          },\n          {\n            \"X\": 0.44674786925315857,\n            \"Y\": 0.3817307949066162\n          }\n        ]\n      },\n      \"Id\": \"04ccacfd-6a03-4898-9fd9-36b3914d7331\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6b65361e-132c-4fc8-a8e4-fb54b9fd98a9\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88899993896484,\n      \"Text\": \"Coverage\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05679871886968613,\n          \"Height\": 0.008839949034154415,\n          \"Left\": 0.3234195411205292,\n          \"Top\": 0.3803650140762329\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3802182376384735,\n            \"Y\": 0.3890730142593384\n          },\n          {\n            \"X\": 0.3234414756298065,\n            \"Y\": 0.3892049491405487\n          },\n          {\n            \"X\": 0.3234195411205292,\n            \"Y\": 0.38049694895744324\n          },\n          {\n            \"X\": 0.3801964819431305,\n            \"Y\": 0.3803650140762329\n          }\n        ]\n      },\n      \"Id\": \"d07f4b83-9d68-4302-97fb-66c2d183c335\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fd03d727-1c8a-476e-a9ec-85cedfd8e006\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84860229492188,\n      \"Text\": \"Co-Pays\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04811697080731392,\n          \"Height\": 0.008882067166268826,\n          \"Left\": 0.2578524649143219,\n          \"Top\": 0.3804273009300232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3059694468975067,\n            \"Y\": 0.38919761776924133\n          },\n          {\n            \"X\": 0.2578747570514679,\n            \"Y\": 0.3893093764781952\n          },\n          {\n            \"X\": 0.2578524649143219,\n            \"Y\": 0.38053905963897705\n          },\n          {\n            \"X\": 0.30594727396965027,\n            \"Y\": 0.3804273009300232\n          }\n        ]\n      },\n      \"Id\": \"5e337a8f-eda3-49f5-9444-fbaf0357e941\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"228d56b3-0daf-4a0f-bb8a-da807daf26b0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.02440643310547,\n      \"Text\": \"Resp.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03286245837807655,\n          \"Height\": 0.008724992163479328,\n          \"Left\": 0.1956140100955963,\n          \"Top\": 0.3805738091468811\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22847646474838257,\n            \"Y\": 0.38922250270843506\n          },\n          {\n            \"X\": 0.19563616812229156,\n            \"Y\": 0.38929879665374756\n          },\n          {\n            \"X\": 0.1956140100955963,\n            \"Y\": 0.380650132894516\n          },\n          {\n            \"X\": 0.22845439612865448,\n            \"Y\": 0.3805738091468811\n          }\n        ]\n      },\n      \"Id\": \"23cbf7d8-3e1c-44be-b1e1-973d64bb2c84\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"44b0b43b-e164-4c7d-8d00-18d70d2390f9\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.8125,\n      \"Text\": \"90651 : 9VHPV VACC 2/3 DOSE SCHED IM\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21977046132087708,\n          \"Height\": 0.008093859069049358,\n          \"Left\": 0.6030087471008301,\n          \"Top\": 0.3674350678920746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8227791786193848,\n            \"Y\": 0.37501832842826843\n          },\n          {\n            \"X\": 0.6030271053314209,\n            \"Y\": 0.3755289316177368\n          },\n          {\n            \"X\": 0.6030087471008301,\n            \"Y\": 0.36794567108154297\n          },\n          {\n            \"X\": 0.8227614164352417,\n            \"Y\": 0.3674350678920746\n          }\n        ]\n      },\n      \"Id\": \"b0af3cc3-11fd-4c9e-87b0-b270971b34a7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9f5a13a3-0dbe-4546-bdd0-8b6ffdfd752d\",\n            \"122c17af-c59d-4887-8a92-f3ded66d0b2d\",\n            \"9bed95ca-5cde-4422-9fdf-6d54c1f0f424\",\n            \"31b1e441-6aa0-4314-ae7f-98e4b73f9f0d\",\n            \"8d132624-2d3e-4278-88cb-17965a2ffce1\",\n            \"795f884e-8ea4-48b9-9009-689617eaa52d\",\n            \"1ae3cc6a-0760-4785-ba5c-8b9122f80bb4\",\n            \"ab9f89ac-ea48-41e4-a086-16463cc8765e\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.36234283447266,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09388118237257004,\n          \"Height\": 0.007663954049348831,\n          \"Left\": 0.8295504450798035,\n          \"Top\": 0.3622507154941559\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9234315752983093,\n            \"Y\": 0.36969658732414246\n          },\n          {\n            \"X\": 0.8295679092407227,\n            \"Y\": 0.3699146807193756\n          },\n          {\n            \"X\": 0.8295504450798035,\n            \"Y\": 0.36246880888938904\n          },\n          {\n            \"X\": 0.923414409160614,\n            \"Y\": 0.3622507154941559\n          }\n        ]\n      },\n      \"Id\": \"836fb9d2-773a-4cd5-96fe-0de9a40c59e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5ad49a33-d6a6-48ae-a3e1-494cf8024285\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92781829833984,\n      \"Text\": \"$235.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04186365008354187,\n          \"Height\": 0.007846768014132977,\n          \"Left\": 0.5293743014335632,\n          \"Top\": 0.3622797429561615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5712379813194275,\n            \"Y\": 0.3700293004512787\n          },\n          {\n            \"X\": 0.5293933153152466,\n            \"Y\": 0.37012651562690735\n          },\n          {\n            \"X\": 0.5293743014335632,\n            \"Y\": 0.36237698793411255\n          },\n          {\n            \"X\": 0.5712190866470337,\n            \"Y\": 0.3622797429561615\n          }\n        ]\n      },\n      \"Id\": \"eb0e7a4f-4ee3-414d-9873-275433c6cf2e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9713ae7f-6769-48c4-8459-386053df0526\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91423797607422,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029368752613663673,\n          \"Height\": 0.007717330940067768,\n          \"Left\": 0.4593529999256134,\n          \"Top\": 0.36231544613838196\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4887217581272125,\n            \"Y\": 0.369964599609375\n          },\n          {\n            \"X\": 0.4593719244003296,\n            \"Y\": 0.37003278732299805\n          },\n          {\n            \"X\": 0.4593529999256134,\n            \"Y\": 0.362383633852005\n          },\n          {\n            \"X\": 0.4887029230594635,\n            \"Y\": 0.36231544613838196\n          }\n        ]\n      },\n      \"Id\": \"8b487f3b-dd7f-480b-907a-7806e188e00e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b1e769fb-9f72-4fd0-bf9a-b271e4d7c6e5\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87933349609375,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029308414086699486,\n          \"Height\": 0.007685912307351828,\n          \"Left\": 0.3898544907569885,\n          \"Top\": 0.36234837770462036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41916289925575256,\n            \"Y\": 0.3699662387371063\n          },\n          {\n            \"X\": 0.3898735046386719,\n            \"Y\": 0.37003427743911743\n          },\n          {\n            \"X\": 0.3898544907569885,\n            \"Y\": 0.36241641640663147\n          },\n          {\n            \"X\": 0.4191439747810364,\n            \"Y\": 0.36234837770462036\n          }\n        ]\n      },\n      \"Id\": \"6121aef3-b5f3-4ac2-ab69-1ef9c7265b5a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a564fd9d-3ca3-4dbc-acce-ec5aed4b0742\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72171783447266,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02913825213909149,\n          \"Height\": 0.007612280081957579,\n          \"Left\": 0.3202212154865265,\n          \"Top\": 0.36257055401802063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493594527244568,\n            \"Y\": 0.3701151907444\n          },\n          {\n            \"X\": 0.32024022936820984,\n            \"Y\": 0.3701828420162201\n          },\n          {\n            \"X\": 0.3202212154865265,\n            \"Y\": 0.3626382350921631\n          },\n          {\n            \"X\": 0.3493405282497406,\n            \"Y\": 0.36257055401802063\n          }\n        ]\n      },\n      \"Id\": \"b8103874-f8ae-4592-96c7-2b3cc64ca46b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47393f07-be43-49ba-8bff-9558dddb884c\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9330062866211,\n      \"Text\": \"USE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02135300636291504,\n          \"Height\": 0.007257407996803522,\n          \"Left\": 0.8011951446533203,\n          \"Top\": 0.3572373688220978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8225481510162354,\n            \"Y\": 0.36444520950317383\n          },\n          {\n            \"X\": 0.8012120723724365,\n            \"Y\": 0.36449480056762695\n          },\n          {\n            \"X\": 0.8011951446533203,\n            \"Y\": 0.3572869598865509\n          },\n          {\n            \"X\": 0.8225312232971191,\n            \"Y\": 0.3572373688220978\n          }\n        ]\n      },\n      \"Id\": \"414d27e6-1a35-4ec6-aeef-71d9807c0210\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1bba4e27-fcef-4de9-bac9-b5abd1b17f09\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90933990478516,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029071461409330368,\n          \"Height\": 0.007736377418041229,\n          \"Left\": 0.2504102885723114,\n          \"Top\": 0.3622925877571106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27948176860809326,\n            \"Y\": 0.3699614703655243\n          },\n          {\n            \"X\": 0.25042980909347534,\n            \"Y\": 0.3700289726257324\n          },\n          {\n            \"X\": 0.2504102885723114,\n            \"Y\": 0.3623600900173187\n          },\n          {\n            \"X\": 0.2794623374938965,\n            \"Y\": 0.3622925877571106\n          }\n        ]\n      },\n      \"Id\": \"96e3a5d5-41f9-4f3e-a4f8-332ef4ffa5d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7c0667ce-fb99-4fe0-9177-3388f8af89d6\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84579467773438,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02954711951315403,\n          \"Height\": 0.007976120337843895,\n          \"Left\": 0.17996782064437866,\n          \"Top\": 0.3623260259628296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20951494574546814,\n            \"Y\": 0.37023353576660156\n          },\n          {\n            \"X\": 0.17998813092708588,\n            \"Y\": 0.37030214071273804\n          },\n          {\n            \"X\": 0.17996782064437866,\n            \"Y\": 0.36239463090896606\n          },\n          {\n            \"X\": 0.2094947099685669,\n            \"Y\": 0.3623260259628296\n          }\n        ]\n      },\n      \"Id\": \"a4cacb13-74e8-46a2-9b8c-3fe28bcd2fa0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fed927e5-133b-42e6-93fc-f35b04e688b1\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93856811523438,\n      \"Text\": \"$235.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04205828905105591,\n          \"Height\": 0.007857853546738625,\n          \"Left\": 0.11032763123512268,\n          \"Top\": 0.36254534125328064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1523859202861786,\n            \"Y\": 0.37030550837516785\n          },\n          {\n            \"X\": 0.11034774780273438,\n            \"Y\": 0.3704031705856323\n          },\n          {\n            \"X\": 0.11032763123512268,\n            \"Y\": 0.3626430034637451\n          },\n          {\n            \"X\": 0.15236590802669525,\n            \"Y\": 0.36254534125328064\n          }\n        ]\n      },\n      \"Id\": \"3f6fd8da-243b-431e-b39b-0d88ad6ff216\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1bba6db1-e1c8-4153-bfa8-f8cdc2f2020a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.80509948730469,\n      \"Text\": \"90471 : IM ADM PRQ ID SUBQ/IM NJXS 1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20697948336601257,\n          \"Height\": 0.00816563330590725,\n          \"Left\": 0.6158467531204224,\n          \"Top\": 0.3425436317920685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8228262066841125,\n            \"Y\": 0.3502284288406372\n          },\n          {\n            \"X\": 0.6158652901649475,\n            \"Y\": 0.3507092595100403\n          },\n          {\n            \"X\": 0.6158467531204224,\n            \"Y\": 0.34302443265914917\n          },\n          {\n            \"X\": 0.8228081464767456,\n            \"Y\": 0.3425436317920685\n          }\n        ]\n      },\n      \"Id\": \"16124c98-3788-4b59-8622-2dbb5ef0e13c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"43ab03a5-7370-49d7-8727-ecf40e94f298\",\n            \"9ee8e479-38dc-45f3-ac34-63e7680ebc3e\",\n            \"a902c8d7-829c-4bdb-9149-75a2cfe39b61\",\n            \"fd5614d6-21ec-4160-b7d9-3acc3b8221db\",\n            \"ff519993-5d10-4214-bf33-d78e70275a4f\",\n            \"d1839e3d-5f93-43af-80ab-23c9519ede94\",\n            \"94c117b2-e1c8-42c0-bac7-16eebeec9ffe\",\n            \"9a4ea2af-68a3-4944-8ae3-dff98dca8049\",\n            \"3442cb59-30ca-4f47-b8f8-528728a4ad0a\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.81365203857422,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09420053660869598,\n          \"Height\": 0.007587109226733446,\n          \"Left\": 0.8294508457183838,\n          \"Top\": 0.3372204601764679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.923651397228241,\n            \"Y\": 0.3445887863636017\n          },\n          {\n            \"X\": 0.8294681310653687,\n            \"Y\": 0.34480759501457214\n          },\n          {\n            \"X\": 0.8294508457183838,\n            \"Y\": 0.33743926882743835\n          },\n          {\n            \"X\": 0.9236343502998352,\n            \"Y\": 0.3372204601764679\n          }\n        ]\n      },\n      \"Id\": \"b1018d66-0e38-4d76-8e58-fef66869e4c4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a41059c7-a05d-4d25-b371-a8c10cded5d0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91687774658203,\n      \"Text\": \"$26.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03553605452179909,\n          \"Height\": 0.00785842351615429,\n          \"Left\": 0.5292251706123352,\n          \"Top\": 0.33713510632514954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.564761221408844,\n            \"Y\": 0.34491100907325745\n          },\n          {\n            \"X\": 0.5292441844940186,\n            \"Y\": 0.344993531703949\n          },\n          {\n            \"X\": 0.5292251706123352,\n            \"Y\": 0.3372175991535187\n          },\n          {\n            \"X\": 0.5647422671318054,\n            \"Y\": 0.33713510632514954\n          }\n        ]\n      },\n      \"Id\": \"dcb45502-d5bb-45f6-b112-6b09aba26ff9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f1adc1ff-7392-4b29-9c19-b54dc7ee1918\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91737365722656,\n      \"Text\": \"$16.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0359230637550354,\n          \"Height\": 0.007936647161841393,\n          \"Left\": 0.4592631161212921,\n          \"Top\": 0.3371599316596985\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4951861798763275,\n            \"Y\": 0.34501317143440247\n          },\n          {\n            \"X\": 0.4592825174331665,\n            \"Y\": 0.3450965881347656\n          },\n          {\n            \"X\": 0.4592631161212921,\n            \"Y\": 0.33724334836006165\n          },\n          {\n            \"X\": 0.4951668381690979,\n            \"Y\": 0.3371599316596985\n          }\n        ]\n      },\n      \"Id\": \"e58f5ddc-45fe-4bdd-b203-98a87d8e3f67\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b26ddcdc-5948-43f3-9baa-6cc4cb1c3296\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.78353118896484,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029518092051148415,\n          \"Height\": 0.0078013986349105835,\n          \"Left\": 0.38978201150894165,\n          \"Top\": 0.337222695350647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4193000793457031,\n            \"Y\": 0.34495556354522705\n          },\n          {\n            \"X\": 0.3898012936115265,\n            \"Y\": 0.34502407908439636\n          },\n          {\n            \"X\": 0.38978201150894165,\n            \"Y\": 0.3372912108898163\n          },\n          {\n            \"X\": 0.41928085684776306,\n            \"Y\": 0.337222695350647\n          }\n        ]\n      },\n      \"Id\": \"c1d190a0-653f-4416-99f8-8dc8d07b9611\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0057c658-4f52-4a75-8336-2a657d79aae2\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86542510986328,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029389042407274246,\n          \"Height\": 0.0075377426110208035,\n          \"Left\": 0.3198292553424835,\n          \"Top\": 0.33749181032180786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34921830892562866,\n            \"Y\": 0.34496134519577026\n          },\n          {\n            \"X\": 0.31984809041023254,\n            \"Y\": 0.3450295627117157\n          },\n          {\n            \"X\": 0.3198292553424835,\n            \"Y\": 0.3375600576400757\n          },\n          {\n            \"X\": 0.3491995632648468,\n            \"Y\": 0.33749181032180786\n          }\n        ]\n      },\n      \"Id\": \"de05f375-02de-4976-aff3-d5a25bd3602a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a01ef5bf-2614-4f04-a322-b8a40e0747b8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57159423828125,\n      \"Text\": \"VACCINE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047535546123981476,\n          \"Height\": 0.007239810656756163,\n          \"Left\": 0.7754744291305542,\n          \"Top\": 0.33203911781311035\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8230099678039551,\n            \"Y\": 0.339168518781662\n          },\n          {\n            \"X\": 0.7754912972450256,\n            \"Y\": 0.339278906583786\n          },\n          {\n            \"X\": 0.7754744291305542,\n            \"Y\": 0.3321495056152344\n          },\n          {\n            \"X\": 0.822993278503418,\n            \"Y\": 0.33203911781311035\n          }\n        ]\n      },\n      \"Id\": \"1280fc9d-bac7-497d-a84c-d51d9ea425a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e704391-eae7-44a1-90ab-d7b6ad928012\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87493133544922,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029250117018818855,\n          \"Height\": 0.007792846765369177,\n          \"Left\": 0.2502218186855316,\n          \"Top\": 0.3372083008289337\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2794719338417053,\n            \"Y\": 0.34493324160575867\n          },\n          {\n            \"X\": 0.2502414882183075,\n            \"Y\": 0.3450011610984802\n          },\n          {\n            \"X\": 0.2502218186855316,\n            \"Y\": 0.3372762203216553\n          },\n          {\n            \"X\": 0.2794523537158966,\n            \"Y\": 0.3372083008289337\n          }\n        ]\n      },\n      \"Id\": \"be9409be-9aad-4616-959b-e9ecd81ee8be\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b378804a-bfcb-41f9-81f4-06ec5d40e20f\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84716796875,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029243921861052513,\n          \"Height\": 0.007849952206015587,\n          \"Left\": 0.18006056547164917,\n          \"Top\": 0.33725202083587646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20930449664592743,\n            \"Y\": 0.34503409266471863\n          },\n          {\n            \"X\": 0.1800805628299713,\n            \"Y\": 0.3451019823551178\n          },\n          {\n            \"X\": 0.18006056547164917,\n            \"Y\": 0.33731991052627563\n          },\n          {\n            \"X\": 0.20928458869457245,\n            \"Y\": 0.33725202083587646\n          }\n        ]\n      },\n      \"Id\": \"e673541c-8d1e-439a-beb1-5fd87d9829c3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"98b8e142-d997-44fc-9d4c-d17d349914a5\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89440155029297,\n      \"Text\": \"$10.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036070503294467926,\n          \"Height\": 0.007825203239917755,\n          \"Left\": 0.10998905450105667,\n          \"Top\": 0.33727988600730896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1460595577955246,\n            \"Y\": 0.3450213372707367\n          },\n          {\n            \"X\": 0.11000912636518478,\n            \"Y\": 0.3451050817966461\n          },\n          {\n            \"X\": 0.10998905450105667,\n            \"Y\": 0.3373636305332184\n          },\n          {\n            \"X\": 0.14603957533836365,\n            \"Y\": 0.33727988600730896\n          }\n        ]\n      },\n      \"Id\": \"e0fa7d22-7d7e-4329-941b-5fd7acbb419f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ce88bac-d056-4a7b-954c-658cd503ecd4\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.067138671875,\n      \"Text\": \"12183\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027654029428958893,\n          \"Height\": 0.007144780829548836,\n          \"Left\": 0.07501115649938583,\n          \"Top\": 0.3378620445728302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10266518592834473,\n            \"Y\": 0.3449426293373108\n          },\n          {\n            \"X\": 0.07502959668636322,\n            \"Y\": 0.3450068235397339\n          },\n          {\n            \"X\": 0.07501115649938583,\n            \"Y\": 0.3379262387752533\n          },\n          {\n            \"X\": 0.10264680534601212,\n            \"Y\": 0.3378620445728302\n          }\n        ]\n      },\n      \"Id\": \"13c45d47-f23d-4a6d-8363-58174040511b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e912d766-a3d2-43c2-a9b3-a029c9a7c548\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.46124267578125,\n      \"Text\": \"Totals:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03826369345188141,\n          \"Height\": 0.007517035119235516,\n          \"Left\": 0.5992051362991333,\n          \"Top\": 0.3176909387111664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6374688148498535,\n            \"Y\": 0.32511910796165466\n          },\n          {\n            \"X\": 0.5992231369018555,\n            \"Y\": 0.32520797848701477\n          },\n          {\n            \"X\": 0.5992051362991333,\n            \"Y\": 0.3177797794342041\n          },\n          {\n            \"X\": 0.6374508738517761,\n            \"Y\": 0.3176909387111664\n          }\n        ]\n      },\n      \"Id\": \"25391adc-7c6e-4856-93b5-93f33ac9ec3a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c7da6d15-d951-4ada-b00e-1a81cef0e3dc\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8884048461914,\n      \"Text\": \"$261.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04165279492735863,\n          \"Height\": 0.008173977956175804,\n          \"Left\": 0.5292514562606812,\n          \"Top\": 0.3173803687095642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5709042549133301,\n            \"Y\": 0.3254576325416565\n          },\n          {\n            \"X\": 0.5292711853981018,\n            \"Y\": 0.32555434107780457\n          },\n          {\n            \"X\": 0.5292514562606812,\n            \"Y\": 0.3174770772457123\n          },\n          {\n            \"X\": 0.5708845853805542,\n            \"Y\": 0.3173803687095642\n          }\n        ]\n      },\n      \"Id\": \"5a4a8490-bcbb-4895-b3ee-c9a44e43887f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b655799b-86f0-4186-96c9-426c6b447e37\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7440185546875,\n      \"Text\": \"$16.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03543134033679962,\n          \"Height\": 0.008245570585131645,\n          \"Left\": 0.45944786071777344,\n          \"Top\": 0.31740838289260864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49487918615341187,\n            \"Y\": 0.3255717158317566\n          },\n          {\n            \"X\": 0.4594680368900299,\n            \"Y\": 0.32565397024154663\n          },\n          {\n            \"X\": 0.45944786071777344,\n            \"Y\": 0.3174906373023987\n          },\n          {\n            \"X\": 0.49485912919044495,\n            \"Y\": 0.31740838289260864\n          }\n        ]\n      },\n      \"Id\": \"81cd49c9-6ae0-4224-8976-74b5468bda76\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8f4d454c-23df-425f-9a14-61b5b720494c\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85853576660156,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0293874591588974,\n          \"Height\": 0.008070952259004116,\n          \"Left\": 0.38970136642456055,\n          \"Top\": 0.3175436556339264\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41908881068229675,\n            \"Y\": 0.32554638385772705\n          },\n          {\n            \"X\": 0.3897213339805603,\n            \"Y\": 0.3256146013736725\n          },\n          {\n            \"X\": 0.38970136642456055,\n            \"Y\": 0.3176118731498718\n          },\n          {\n            \"X\": 0.41906893253326416,\n            \"Y\": 0.3175436556339264\n          }\n        ]\n      },\n      \"Id\": \"84aed796-e987-4305-bc28-0e32ae5d0614\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bdab9f5a-8ce4-477f-a662-a24a95b445b2\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92359924316406,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029193060472607613,\n          \"Height\": 0.008099229075014591,\n          \"Left\": 0.3199523389339447,\n          \"Top\": 0.3174440562725067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34914541244506836,\n            \"Y\": 0.3254755139350891\n          },\n          {\n            \"X\": 0.31997260451316833,\n            \"Y\": 0.32554328441619873\n          },\n          {\n            \"X\": 0.3199523389339447,\n            \"Y\": 0.31751182675361633\n          },\n          {\n            \"X\": 0.3491252362728119,\n            \"Y\": 0.3174440562725067\n          }\n        ]\n      },\n      \"Id\": \"00d6362b-6d7f-4776-9da8-7960bbca1674\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e3227036-1019-48f6-80b4-cc90f0537472\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86518859863281,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029053475707769394,\n          \"Height\": 0.008233996108174324,\n          \"Left\": 0.2503359019756317,\n          \"Top\": 0.31735897064208984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.279389351606369,\n            \"Y\": 0.32552552223205566\n          },\n          {\n            \"X\": 0.25035667419433594,\n            \"Y\": 0.325592964887619\n          },\n          {\n            \"X\": 0.2503359019756317,\n            \"Y\": 0.3174264132976532\n          },\n          {\n            \"X\": 0.27936866879463196,\n            \"Y\": 0.31735897064208984\n          }\n        ]\n      },\n      \"Id\": \"b14fc499-04f7-4ae3-9d28-b62ab830b779\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5713ff2f-0b33-444e-8294-8fadf0ae0a52\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88922119140625,\n      \"Text\": \"$0.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029071561992168427,\n          \"Height\": 0.0076712192967534065,\n          \"Left\": 0.18016353249549866,\n          \"Top\": 0.3178196847438812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2092350870370865,\n            \"Y\": 0.3254234194755554\n          },\n          {\n            \"X\": 0.1801830679178238,\n            \"Y\": 0.32549089193344116\n          },\n          {\n            \"X\": 0.18016353249549866,\n            \"Y\": 0.31788715720176697\n          },\n          {\n            \"X\": 0.20921564102172852,\n            \"Y\": 0.3178196847438812\n          }\n        ]\n      },\n      \"Id\": \"9f8786a2-83fa-4011-a748-dec4adad017b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9d9ae6a3-4fe1-4082-ac47-a0cd12c96150\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96060943603516,\n      \"Text\": \"$245.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04204871878027916,\n          \"Height\": 0.008047555573284626,\n          \"Left\": 0.11023509502410889,\n          \"Top\": 0.31754398345947266\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15228381752967834,\n            \"Y\": 0.3254939019680023\n          },\n          {\n            \"X\": 0.11025571078062057,\n            \"Y\": 0.3255915343761444\n          },\n          {\n            \"X\": 0.11023509502410889,\n            \"Y\": 0.31764161586761475\n          },\n          {\n            \"X\": 0.1522633135318756,\n            \"Y\": 0.31754398345947266\n          }\n        ]\n      },\n      \"Id\": \"3dedefed-8844-44c8-9acc-23126abe5b3e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3e6546f6-7958-4739-9fee-1dd3c474d978\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.90707397460938,\n      \"Text\": \"Reference: 12183\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12333232909440994,\n          \"Height\": 0.009142170660197735,\n          \"Left\": 0.8012884259223938,\n          \"Top\": 0.2868470549583435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9246207475662231,\n            \"Y\": 0.29570281505584717\n          },\n          {\n            \"X\": 0.8013092875480652,\n            \"Y\": 0.2959892153739929\n          },\n          {\n            \"X\": 0.8012884259223938,\n            \"Y\": 0.28713342547416687\n          },\n          {\n            \"X\": 0.9246003031730652,\n            \"Y\": 0.2868470549583435\n          }\n        ]\n      },\n      \"Id\": \"e5bb5d41-3ad5-4fe9-b942-e79ad23c3fac\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9089b5e3-03da-465c-a3a8-0f75be28e95a\",\n            \"b38cb7bc-6cea-4aa0-a168-8f2cbcef11d4\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88546752929688,\n      \"Text\": \"A Cigna preferred provider discount has been applied.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32746759057044983,\n          \"Height\": 0.011629498563706875,\n          \"Left\": 0.3467254042625427,\n          \"Top\": 0.28505393862724304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6741929650306702,\n            \"Y\": 0.2959229350090027\n          },\n          {\n            \"X\": 0.34675270318984985,\n            \"Y\": 0.2966834306716919\n          },\n          {\n            \"X\": 0.3467254042625427,\n            \"Y\": 0.2858143746852875\n          },\n          {\n            \"X\": 0.6741669178009033,\n            \"Y\": 0.28505393862724304\n          }\n        ]\n      },\n      \"Id\": \"856e7322-1fe4-4b8f-8627-4d06304696c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5abae0ad-2133-4c5b-99fc-91bdb640f782\",\n            \"92fee6b5-7249-4d4c-bb02-8931f2ecfb12\",\n            \"a670cf4a-14ee-43f2-919c-42977ede9383\",\n            \"04068eb8-87d9-404e-a267-3aa62c778f1b\",\n            \"7cfc71bd-6178-494f-b7a6-3dbd0665f722\",\n            \"d79ab2ce-5e44-46db-aa48-9cf739dc2f7a\",\n            \"d30100b6-945d-4956-9e7f-1024a016b8e2\",\n            \"14fa1c15-29ea-42ac-b8be-dd15078f703e\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5748291015625,\n      \"Text\": \"APPEAL PROCESS: There is an appeal process if you disagree with the determination made on\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5972146987915039,\n          \"Height\": 0.012473695911467075,\n          \"Left\": 0.07707301527261734,\n          \"Top\": 0.2723788619041443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6742876768112183,\n            \"Y\": 0.2834656536579132\n          },\n          {\n            \"X\": 0.07710188627243042,\n            \"Y\": 0.2848525643348694\n          },\n          {\n            \"X\": 0.07707301527261734,\n            \"Y\": 0.2737656533718109\n          },\n          {\n            \"X\": 0.6742610931396484,\n            \"Y\": 0.2723788619041443\n          }\n        ]\n      },\n      \"Id\": \"492cb9f1-7702-429a-96ff-00ed44d557a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"44bc3d78-0786-4d79-ba94-ce2f91dd1548\",\n            \"928b5359-f3ca-4693-93de-29347910191c\",\n            \"ac0b67a3-0ff7-4efd-8dfd-bc48dc2e68b4\",\n            \"243408bc-22c0-4c5b-b292-2fbaeed51a30\",\n            \"93b63882-1a57-48c9-84ef-cfb10bdfa367\",\n            \"9b25f327-db90-4f85-9fe8-44a3fc256e72\",\n            \"104a4608-e8bc-4945-84c2-6f23b8d82321\",\n            \"81429324-2ba9-4f93-bf4a-1bba15aab015\",\n            \"06e5c2d8-6ca3-4317-8e8a-f5333ddf51b5\",\n            \"69fcc15b-5fcf-4164-b2c5-70873ff58738\",\n            \"86bf6f40-d4bf-4d1e-81b1-2c9d582bd1df\",\n            \"336d5fa0-18ae-448b-9fd4-d5e4a8ce680e\",\n            \"0300fb45-aeae-42a4-9c2a-d39a461e6b5c\",\n            \"65aeb176-e440-40b3-9b9f-77d0d650cb54\",\n            \"15f48d66-4086-41d0-805c-d2a189593854\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.49363708496094,\n      \"Text\": \"this claim. You have 180 days to submit your appeal to Wellfleet Attn: Appeals Department, PO\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5925697088241577,\n          \"Height\": 0.012626593932509422,\n          \"Left\": 0.0814167708158493,\n          \"Top\": 0.26006147265434265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6739864945411682,\n            \"Y\": 0.27131205797195435\n          },\n          {\n            \"X\": 0.08144605159759521,\n            \"Y\": 0.2726880609989166\n          },\n          {\n            \"X\": 0.0814167708158493,\n            \"Y\": 0.26143738627433777\n          },\n          {\n            \"X\": 0.673959493637085,\n            \"Y\": 0.26006147265434265\n          }\n        ]\n      },\n      \"Id\": \"32967e6e-f901-4f48-816f-e64f7c4eca2d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dc0e93c2-9036-4e61-9d32-07beed4ae8c6\",\n            \"5f87ad5a-e7f6-45ff-a8af-6ea650bef546\",\n            \"3e960ad3-6792-479d-b720-507a511b9fa5\",\n            \"01364699-b9b3-4a31-a9e3-68ed791ad176\",\n            \"16655fa5-2072-4cd6-b7c3-9ce6ff3435ad\",\n            \"16c681f9-8847-43ee-8c37-8a5286cd0858\",\n            \"6f324014-e953-490f-99ee-6054e55411b2\",\n            \"8c7da12c-0f5b-4035-ae0d-85ae0e64ad49\",\n            \"213682d2-cd1f-4e43-9c5d-6cb2845a55b3\",\n            \"4cf88552-c036-47fb-b899-46c10f6cbec4\",\n            \"67921f03-b5ec-409c-a5e8-b2657a993b31\",\n            \"2bd545c3-6f2f-4019-967c-c9e02a775842\",\n            \"0c38f694-37a2-42d3-ae16-6e312bbf3157\",\n            \"2f29ad5c-6a03-4d57-9486-8e3fce5333d8\",\n            \"13b211d7-08ac-4bbd-9302-8bf337e96eab\",\n            \"db532f16-f9b8-43ef-8b20-87c8b819b7f6\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.29782104492188,\n      \"Text\": \"Box 15369, Springfield, MA 01115-5369. Once your appeal is received, a decision will be made\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5833151936531067,\n          \"Height\": 0.012342254631221294,\n          \"Left\": 0.08973982185125351,\n          \"Top\": 0.2481389045715332\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6730549931526184,\n            \"Y\": 0.2591267228126526\n          },\n          {\n            \"X\": 0.08976838737726212,\n            \"Y\": 0.2604811489582062\n          },\n          {\n            \"X\": 0.08973982185125351,\n            \"Y\": 0.24949324131011963\n          },\n          {\n            \"X\": 0.6730286478996277,\n            \"Y\": 0.2481389045715332\n          }\n        ]\n      },\n      \"Id\": \"e7fa4c87-d1ba-462c-acff-3b62613baf1d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51a88d19-a601-4c08-ac96-3a9982723403\",\n            \"3ec5194e-5baa-4179-9634-e6d8479d557c\",\n            \"3d1630ea-5bfa-4e02-9d62-2259231e466d\",\n            \"a34b5b90-490f-4a61-9f0b-ec00d536dfc1\",\n            \"9f2474f1-7133-4c00-b90b-fa51c34d04df\",\n            \"e8183872-b190-4a9c-84ed-fece15c134de\",\n            \"a475ccea-32c6-4d3c-b84a-0f41d7e6b660\",\n            \"7dffa994-e3dd-4d05-a270-8ab97eb9abb3\",\n            \"877e2a10-c673-4cba-9c9d-f01be22a7179\",\n            \"a31be6ce-39f5-413f-b153-d53e7a5a0a50\",\n            \"8fc84bdd-9978-4d5e-b74c-c6479d55f85d\",\n            \"5badf39b-b85b-427a-8d33-ea158907a4dc\",\n            \"d7844aab-6a30-440f-80ba-e0ff241f714b\",\n            \"e9bb44b4-d39b-4100-9774-0ec374287997\",\n            \"ce224741-4196-4e56-bba1-69984882bba8\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8211669921875,\n      \"Text\": \"within 30 to 60 calendar days, depending on State requirements. For additional information on\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5789287686347961,\n          \"Height\": 0.012380873784422874,\n          \"Left\": 0.09510348737239838,\n          \"Top\": 0.23604020476341248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6740322113037109,\n            \"Y\": 0.24707692861557007\n          },\n          {\n            \"X\": 0.09513215720653534,\n            \"Y\": 0.2484210878610611\n          },\n          {\n            \"X\": 0.09510348737239838,\n            \"Y\": 0.23738427460193634\n          },\n          {\n            \"X\": 0.6740057468414307,\n            \"Y\": 0.23604020476341248\n          }\n        ]\n      },\n      \"Id\": \"64b54f7c-b01a-46cd-969c-30346fdd90a9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a96284f0-5711-4c7d-a68f-77647c5a6d34\",\n            \"b03844be-def2-4781-be75-9647c6fe34b4\",\n            \"170f4989-724d-4c02-a640-37a17a122f95\",\n            \"eba57b6c-1e26-4ff2-8c19-80d20a758c2e\",\n            \"0f828fdd-611f-440d-a28b-c7127d04ea1f\",\n            \"d5927a42-b2de-421c-a0c1-5dd552e8f696\",\n            \"8aa2202c-3935-459f-9895-8c2b5ea5abb6\",\n            \"4886dc50-8c2c-4025-8df8-8a46e0d63fe6\",\n            \"252cda4f-c798-4bdd-ad66-8c3ba5e86bf1\",\n            \"361c1e42-9510-48bd-8d59-fd84de9a8b25\",\n            \"d80f6646-6d46-4288-9ad0-0b86167f9198\",\n            \"e57968ef-ce1b-4e63-8b35-53a06a41a296\",\n            \"4022e20c-95a9-4c55-a0b4-b5314f36d404\",\n            \"ae6fa0de-1edc-4f5a-8067-6256dd492430\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8447036743164,\n      \"Text\": \"appeal rights, please refer to the certificate of coverage.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3409305512905121,\n          \"Height\": 0.011496848426759243,\n          \"Left\": 0.3324931263923645,\n          \"Top\": 0.22413641214370728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6734236478805542,\n            \"Y\": 0.23484176397323608\n          },\n          {\n            \"X\": 0.332520067691803,\n            \"Y\": 0.2356332540512085\n          },\n          {\n            \"X\": 0.3324931263923645,\n            \"Y\": 0.2249278426170349\n          },\n          {\n            \"X\": 0.673397958278656,\n            \"Y\": 0.22413641214370728\n          }\n        ]\n      },\n      \"Id\": \"44812308-e9fd-4a9c-8e47-828a21e32665\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"426c3d27-377d-4c76-86d4-cde05e0615c0\",\n            \"1ee3c5fb-6640-4c81-b44a-1e259a8ae600\",\n            \"94507074-833c-49ab-bb33-692ba02bf479\",\n            \"3033dc02-db41-4420-b5fc-fb3ad1ee5f51\",\n            \"eb767b13-5204-4532-b459-9460806c3aae\",\n            \"005af55d-ce57-4cbe-b914-0e20b62e9d16\",\n            \"70aabb68-23f1-4fcd-b67c-4c836bbac68c\",\n            \"60330143-4a7c-42a5-968e-07caac5fa781\",\n            \"2ef406ce-92da-44c5-b11e-1c034c4d1f8b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87786102294922,\n      \"Text\": \"Total Paid By Payor\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13466934859752655,\n          \"Height\": 0.011103413999080658,\n          \"Left\": 0.4310924708843231,\n          \"Top\": 0.18778038024902344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5657618045806885,\n            \"Y\": 0.19857126474380493\n          },\n          {\n            \"X\": 0.43111923336982727,\n            \"Y\": 0.1988838016986847\n          },\n          {\n            \"X\": 0.4310924708843231,\n            \"Y\": 0.188092902302742\n          },\n          {\n            \"X\": 0.5657355189323425,\n            \"Y\": 0.18778038024902344\n          }\n        ]\n      },\n      \"Id\": \"614084d6-0495-4a16-8faf-af3e6937a87c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd6a7101-24b5-436e-9a33-c3f047462b3d\",\n            \"e6c8982b-3821-4851-bddd-e7a892fa63ab\",\n            \"95142044-408d-45bb-b2c1-6cfd96fe9507\",\n            \"50cd7e5c-9cb3-488c-8d3f-441b6f7fee41\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76596069335938,\n      \"Text\": \"Total: $490.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.140409454703331,\n          \"Height\": 0.014611645601689816,\n          \"Left\": 0.42804843187332153,\n          \"Top\": 0.15424108505249023\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5684579014778137,\n            \"Y\": 0.16852694749832153\n          },\n          {\n            \"X\": 0.4280839264392853,\n            \"Y\": 0.16885273158550262\n          },\n          {\n            \"X\": 0.42804843187332153,\n            \"Y\": 0.15456685423851013\n          },\n          {\n            \"X\": 0.5684230923652649,\n            \"Y\": 0.15424108505249023\n          }\n        ]\n      },\n      \"Id\": \"e3bdb1be-5aa5-4b47-92ec-aaa2c08ea2ca\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1efa7fb1-a9f2-4e9e-915b-833bb6a3b95c\",\n            \"42625383-b0b4-4bcb-a8f1-0066b4cac14c\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91637420654297,\n      \"Text\": \"For questions regarding the claim or benefit determination, please contact the Payor indicated in the box at the\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8141355514526367,\n          \"Height\": 0.01547703891992569,\n          \"Left\": 0.11307377368211746,\n          \"Top\": 0.09047047048807144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9272093176841736,\n            \"Y\": 0.10405879467725754\n          },\n          {\n            \"X\": 0.11310898512601852,\n            \"Y\": 0.10594750940799713\n          },\n          {\n            \"X\": 0.11307377368211746,\n            \"Y\": 0.09235905110836029\n          },\n          {\n            \"X\": 0.927177906036377,\n            \"Y\": 0.09047047048807144\n          }\n        ]\n      },\n      \"Id\": \"a023da17-f2bb-4df3-a377-137ac4f3a682\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fd8da422-e633-4a89-bbbc-7eaa4d4930a5\",\n            \"41f709d8-106b-493b-8e38-491b0fac259a\",\n            \"8890e31f-fc8d-493f-9ce8-07f9d2405a80\",\n            \"c38c4f85-241c-4743-99d6-ccde816bf288\",\n            \"67d4c4d6-103e-46bd-b1ce-513eac79ad07\",\n            \"8a10f095-d2d5-4fdc-a1d8-f0e542439605\",\n            \"df4a00a8-2412-46a4-b26b-0240b3aabd3f\",\n            \"ebc80993-7aa5-4442-b7b4-211654fd084c\",\n            \"041d9d04-7bc5-48f1-ae7d-21835dbd5b52\",\n            \"2cd231d1-eaf0-4f5e-9ea5-db9874d6eaf3\",\n            \"ae773b00-22bc-4908-b8c6-c52c8d29c8ec\",\n            \"415dccb5-10ff-42cd-8aab-50dd80138612\",\n            \"bf2d5dce-9dda-4f74-b92f-7ab94699ef5f\",\n            \"72ea22a7-fcdc-4878-a24c-dc1be4dc489d\",\n            \"71a1641a-3d2f-40e3-ae80-c1f936ca972e\",\n            \"dc1d70bd-60a2-436b-9f72-602ea33d6b8f\",\n            \"9bf87df8-6e3b-4925-8728-46714cfd834a\",\n            \"c3bd6e1a-4469-4eb1-baa8-fed5ff24a369\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80027770996094,\n      \"Text\": \"upper right hand corner of this EOP.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2621830701828003,\n          \"Height\": 0.01311379112303257,\n          \"Left\": 0.665283203125,\n          \"Top\": 0.07691077142953873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9274662733078003,\n            \"Y\": 0.08941641449928284\n          },\n          {\n            \"X\": 0.6653132438659668,\n            \"Y\": 0.09002456068992615\n          },\n          {\n            \"X\": 0.665283203125,\n            \"Y\": 0.07751887291669846\n          },\n          {\n            \"X\": 0.927437424659729,\n            \"Y\": 0.07691077142953873\n          }\n        ]\n      },\n      \"Id\": \"b9b508bf-92c2-4eb7-8ecd-6793f5ecd293\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fdee2d01-9557-40dc-86fe-5b1732ad3017\",\n            \"1a132387-e519-4f2c-bfd2-975ee028bccf\",\n            \"0dd8bcfc-a1cb-4be4-955e-8fbaad6256d5\",\n            \"f2521329-8c82-41b3-a08b-b80cbcce5838\",\n            \"66c9cb47-527d-4158-b6d7-70ff983fbb3e\",\n            \"a3bb49b4-dbb8-462a-9348-84fd3ad14ebc\",\n            \"79449352-f188-4e88-b9ed-a6dac9c18f7b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81634521484375,\n      \"Text\": \"Page 1 of 2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0955415591597557,\n          \"Height\": 0.014137458056211472,\n          \"Left\": 0.8438737392425537,\n          \"Top\": 0.033556800335645676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9394152760505676,\n            \"Y\": 0.047472745180130005\n          },\n          {\n            \"X\": 0.8439062833786011,\n            \"Y\": 0.04769425839185715\n          },\n          {\n            \"X\": 0.8438737392425537,\n            \"Y\": 0.03377829119563103\n          },\n          {\n            \"X\": 0.9393832087516785,\n            \"Y\": 0.033556800335645676\n          }\n        ]\n      },\n      \"Id\": \"44dd83cf-4011-48e5-b981-c1993188af10\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ec152ffe-d223-42fb-9f37-a07f9d1b15e0\",\n            \"fa440d70-6b9e-4315-8605-046accfb41ea\",\n            \"be1d7203-dcca-47eb-8286-7459d0d3f345\",\n            \"d9698af0-dd72-4d68-b6c0-4e40d62b0dce\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 88.98785400390625,\n      \"Text\": \"2022\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016690148040652275,\n          \"Height\": 0.005602926015853882,\n          \"Left\": 0.5065150856971741,\n          \"Top\": 0.9801710247993469\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5232052206993103,\n            \"Y\": 0.9857350587844849\n          },\n          {\n            \"X\": 0.5065287351608276,\n            \"Y\": 0.9857739210128784\n          },\n          {\n            \"X\": 0.5065150856971741,\n            \"Y\": 0.9802098870277405\n          },\n          {\n            \"X\": 0.5231915712356567,\n            \"Y\": 0.9801710247993469\n          }\n        ]\n      },\n      \"Id\": \"1be37b1a-7cdf-4f95-b70b-9aa8f55b2bd6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 88.3311767578125,\n      \"Text\": \"21003B04\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03147869184613228,\n          \"Height\": 0.005672460421919823,\n          \"Left\": 0.4767977297306061,\n          \"Top\": 0.9801448583602905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5082764029502869,\n            \"Y\": 0.9857439398765564\n          },\n          {\n            \"X\": 0.4768115282058716,\n            \"Y\": 0.9858173131942749\n          },\n          {\n            \"X\": 0.4767977297306061,\n            \"Y\": 0.980218231678009\n          },\n          {\n            \"X\": 0.5082626342773438,\n            \"Y\": 0.9801448583602905\n          }\n        ]\n      },\n      \"Id\": \"0ac1d41d-4e5b-42cc-b396-ef98b7950c1a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.76356506347656,\n      \"Text\": \"JD88\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01832064427435398,\n          \"Height\": 0.005627120845019817,\n          \"Left\": 0.49105674028396606,\n          \"Top\": 0.9745515584945679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5093773603439331,\n            \"Y\": 0.980135977268219\n          },\n          {\n            \"X\": 0.4910704791545868,\n            \"Y\": 0.9801786541938782\n          },\n          {\n            \"X\": 0.49105674028396606,\n            \"Y\": 0.974594235420227\n          },\n          {\n            \"X\": 0.5093636512756348,\n            \"Y\": 0.9745515584945679\n          }\n        ]\n      },\n      \"Id\": \"389282a1-bc0e-4b75-9bf6-defd059822d4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8049087524414,\n      \"Text\": \"JD88\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028768841177225113,\n          \"Height\": 0.008696090430021286,\n          \"Left\": 0.10724852979183197,\n          \"Top\": 0.9766155481338501\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13601736724376678,\n            \"Y\": 0.985244631767273\n          },\n          {\n            \"X\": 0.10727091878652573,\n            \"Y\": 0.9853116273880005\n          },\n          {\n            \"X\": 0.10724852979183197,\n            \"Y\": 0.9766825437545776\n          },\n          {\n            \"X\": 0.1359950751066208,\n            \"Y\": 0.9766155481338501\n          }\n        ]\n      },\n      \"Id\": \"c539f929-0e96-45fe-89a4-0a5368642607\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.46196746826172,\n      \"Text\": \"[8.386]\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03792475163936615,\n          \"Height\": 0.010442025028169155,\n          \"Left\": 0.06618902087211609,\n          \"Top\": 0.9749267101287842\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10411377251148224,\n            \"Y\": 0.9852803349494934\n          },\n          {\n            \"X\": 0.06621602177619934,\n            \"Y\": 0.9853687286376953\n          },\n          {\n            \"X\": 0.06618902087211609,\n            \"Y\": 0.9750150442123413\n          },\n          {\n            \"X\": 0.10408689826726913,\n            \"Y\": 0.9749267101287842\n          }\n        ]\n      },\n      \"Id\": \"801b3df0-40d2-4c77-a0e5-e0e427f5060c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.08504486083984,\n      \"Text\": \"4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007220215164124966,\n          \"Height\": 0.00795764196664095,\n          \"Left\": 0.05657240003347397,\n          \"Top\": 0.9770168662071228\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06379261612892151,\n            \"Y\": 0.9849576950073242\n          },\n          {\n            \"X\": 0.056593138724565506,\n            \"Y\": 0.9849745035171509\n          },\n          {\n            \"X\": 0.05657240003347397,\n            \"Y\": 0.9770336151123047\n          },\n          {\n            \"X\": 0.06377189606428146,\n            \"Y\": 0.9770168662071228\n          }\n        ]\n      },\n      \"Id\": \"d5e0662c-0aa7-470d-aecb-47d948a736c7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67015075683594,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012895842082798481,\n          \"Height\": 0.008407222107052803,\n          \"Left\": 0.04086250811815262,\n          \"Top\": 0.9769136309623718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.053758349269628525,\n            \"Y\": 0.9852908849716187\n          },\n          {\n            \"X\": 0.04088443145155907,\n            \"Y\": 0.9853208661079407\n          },\n          {\n            \"X\": 0.04086250811815262,\n            \"Y\": 0.9769436717033386\n          },\n          {\n            \"X\": 0.05373646318912506,\n            \"Y\": 0.9769136309623718\n          }\n        ]\n      },\n      \"Id\": \"b5afff10-0df5-45a6-bbe1-e2911f3609f9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.36910247802734,\n      \"Text\": \"8\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006677234545350075,\n          \"Height\": 0.008267588913440704,\n          \"Left\": 0.0325789712369442,\n          \"Top\": 0.9768450260162354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03925620764493942,\n            \"Y\": 0.9850971102714539\n          },\n          {\n            \"X\": 0.03260059282183647,\n            \"Y\": 0.9851126074790955\n          },\n          {\n            \"X\": 0.0325789712369442,\n            \"Y\": 0.976860523223877\n          },\n          {\n            \"X\": 0.03923460841178894,\n            \"Y\": 0.9768450260162354\n          }\n        ]\n      },\n      \"Id\": \"320dfd95-c33e-49a5-9dab-a9f3f81f96b7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 78.2055435180664,\n      \"Text\": \"8888 300044\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04402926191687584,\n          \"Height\": 0.005797364749014378,\n          \"Left\": 0.4780726134777069,\n          \"Top\": 0.9686209559440613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.522101879119873,\n            \"Y\": 0.9743157029151917\n          },\n          {\n            \"X\": 0.4780866503715515,\n            \"Y\": 0.9744182825088501\n          },\n          {\n            \"X\": 0.4780726134777069,\n            \"Y\": 0.9687235355377197\n          },\n          {\n            \"X\": 0.5220879316329956,\n            \"Y\": 0.9686209559440613\n          }\n        ]\n      },\n      \"Id\": \"55bb72a8-be07-40ac-a246-571298d67c69\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42684936523438,\n      \"Text\": \"ePayment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10922276973724365,\n          \"Height\": 0.016921542584896088,\n          \"Left\": 0.817051351070404,\n          \"Top\": 0.9050362706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9262740612030029,\n            \"Y\": 0.9217032790184021\n          },\n          {\n            \"X\": 0.8170905113220215,\n            \"Y\": 0.921957790851593\n          },\n          {\n            \"X\": 0.817051351070404,\n            \"Y\": 0.9052907228469849\n          },\n          {\n            \"X\": 0.926235556602478,\n            \"Y\": 0.9050362706184387\n          }\n        ]\n      },\n      \"Id\": \"d0bc1246-af30-4233-8b3d-acc26989b95d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.34191131591797,\n      \"Text\": \"Transmittal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12257327139377594,\n          \"Height\": 0.014001153409481049,\n          \"Left\": 0.6899487376213074,\n          \"Top\": 0.9081090092658997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8125219941139221,\n            \"Y\": 0.92182457447052\n          },\n          {\n            \"X\": 0.6899815797805786,\n            \"Y\": 0.9221101999282837\n          },\n          {\n            \"X\": 0.6899487376213074,\n            \"Y\": 0.9083946347236633\n          },\n          {\n            \"X\": 0.8124897480010986,\n            \"Y\": 0.9081090092658997\n          }\n        ]\n      },\n      \"Id\": \"eaba861a-8ee6-4918-8817-77cb22b3d76a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96659088134766,\n      \"Text\": \"MATCH\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06152479350566864,\n          \"Height\": 0.010416707955300808,\n          \"Left\": 0.22420509159564972,\n          \"Top\": 0.9174583554267883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28572988510131836,\n            \"Y\": 0.9277316927909851\n          },\n          {\n            \"X\": 0.22423133254051208,\n            \"Y\": 0.9278750419616699\n          },\n          {\n            \"X\": 0.22420509159564972,\n            \"Y\": 0.9176016449928284\n          },\n          {\n            \"X\": 0.2857038676738739,\n            \"Y\": 0.9174583554267883\n          }\n        ]\n      },\n      \"Id\": \"662a2d8c-abea-49b5-9580-6e34c09a1e9c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47441101074219,\n      \"Text\": \"TO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02412203885614872,\n          \"Height\": 0.010426677763462067,\n          \"Left\": 0.1965126097202301,\n          \"Top\": 0.9175275564193726\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22063465416431427,\n            \"Y\": 0.9278980493545532\n          },\n          {\n            \"X\": 0.19653919339179993,\n            \"Y\": 0.9279542565345764\n          },\n          {\n            \"X\": 0.1965126097202301,\n            \"Y\": 0.917583703994751\n          },\n          {\n            \"X\": 0.2206081598997116,\n            \"Y\": 0.9175275564193726\n          }\n        ]\n      },\n      \"Id\": \"2c515319-3b50-40b8-aada-111bb0c46618\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.07703399658203,\n      \"Text\": \"281362449\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11609262973070145,\n          \"Height\": 0.013789139688014984,\n          \"Left\": 0.0526459626853466,\n          \"Top\": 0.9083777666091919\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16873858869075775,\n            \"Y\": 0.9218963980674744\n          },\n          {\n            \"X\": 0.05268128588795662,\n            \"Y\": 0.9221669435501099\n          },\n          {\n            \"X\": 0.0526459626853466,\n            \"Y\": 0.9086483120918274\n          },\n          {\n            \"X\": 0.1687038093805313,\n            \"Y\": 0.9083777666091919\n          }\n        ]\n      },\n      \"Id\": \"c7e8a5b3-e5ad-4270-903e-3e760240c2b5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94970703125,\n      \"Text\": \"PAYMENT\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0825108140707016,\n          \"Height\": 0.01062777265906334,\n          \"Left\": 0.2124619334936142,\n          \"Top\": 0.9022218585014343\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2949727475643158,\n            \"Y\": 0.9126573801040649\n          },\n          {\n            \"X\": 0.21248862147331238,\n            \"Y\": 0.9128496050834656\n          },\n          {\n            \"X\": 0.2124619334936142,\n            \"Y\": 0.902414083480835\n          },\n          {\n            \"X\": 0.2949463427066803,\n            \"Y\": 0.9022218585014343\n          }\n        ]\n      },\n      \"Id\": \"d8033e1f-579b-4534-b3e1-2264e562092c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61990356445312,\n      \"Text\": \"ID:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02133943699300289,\n          \"Height\": 0.010187278501689434,\n          \"Left\": 0.1876169592142105,\n          \"Top\": 0.9023890495300293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20895639061927795,\n            \"Y\": 0.9125266671180725\n          },\n          {\n            \"X\": 0.18764297664165497,\n            \"Y\": 0.9125763177871704\n          },\n          {\n            \"X\": 0.1876169592142105,\n            \"Y\": 0.9024387001991272\n          },\n          {\n            \"X\": 0.20893044769763947,\n            \"Y\": 0.9023890495300293\n          }\n        ]\n      },\n      \"Id\": \"8125274b-4909-43eb-bc91-ecafa7518490\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81328582763672,\n      \"Text\": \"Payment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07196464389562607,\n          \"Height\": 0.012532645836472511,\n          \"Left\": 0.420522004365921,\n          \"Top\": 0.8633260130882263\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4924866557121277,\n            \"Y\": 0.8756910562515259\n          },\n          {\n            \"X\": 0.4205527603626251,\n            \"Y\": 0.8758586645126343\n          },\n          {\n            \"X\": 0.420522004365921,\n            \"Y\": 0.8634936213493347\n          },\n          {\n            \"X\": 0.49245619773864746,\n            \"Y\": 0.8633260130882263\n          }\n        ]\n      },\n      \"Id\": \"6a825a15-5236-4e32-bb21-bd3b40a5544e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62957763671875,\n      \"Text\": \"Date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04188109189271927,\n          \"Height\": 0.010484783910214901,\n          \"Left\": 0.3738301992416382,\n          \"Top\": 0.8654295802116394\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41571128368377686,\n            \"Y\": 0.8758168816566467\n          },\n          {\n            \"X\": 0.37385618686676025,\n            \"Y\": 0.8759143948554993\n          },\n          {\n            \"X\": 0.3738301992416382,\n            \"Y\": 0.8655271530151367\n          },\n          {\n            \"X\": 0.4156854450702667,\n            \"Y\": 0.8654295802116394\n          }\n        ]\n      },\n      \"Id\": \"39c66356-48f6-47e2-a4bb-fed35873ab39\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89363861083984,\n      \"Text\": \"09/28/2022\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08599656075239182,\n          \"Height\": 0.010689363814890385,\n          \"Left\": 0.2824985980987549,\n          \"Top\": 0.8652113080024719\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3684951663017273,\n            \"Y\": 0.8757003545761108\n          },\n          {\n            \"X\": 0.2825251817703247,\n            \"Y\": 0.8759006857872009\n          },\n          {\n            \"X\": 0.2824985980987549,\n            \"Y\": 0.865411639213562\n          },\n          {\n            \"X\": 0.36846888065338135,\n            \"Y\": 0.8652113080024719\n          }\n        ]\n      },\n      \"Id\": \"2bc27ca0-7191-44bc-9a28-d89a51398ef8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 60.855716705322266,\n      \"Text\": \"zelis\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19616913795471191,\n          \"Height\": 0.06426117569208145,\n          \"Left\": 0.6950998902320862,\n          \"Top\": 0.7876718640327454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8912690281867981,\n            \"Y\": 0.8514763712882996\n          },\n          {\n            \"X\": 0.6952524781227112,\n            \"Y\": 0.8519330620765686\n          },\n          {\n            \"X\": 0.6950998902320862,\n            \"Y\": 0.7881284356117249\n          },\n          {\n            \"X\": 0.8911207318305969,\n            \"Y\": 0.7876718640327454\n          }\n        ]\n      },\n      \"Id\": \"a9451326-7891-4bba-9f11-ab425b04dd78\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89796447753906,\n      \"Text\": \"Claim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04645080864429474,\n          \"Height\": 0.010393903590738773,\n          \"Left\": 0.43379488587379456,\n          \"Top\": 0.8372960090637207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4802456796169281,\n            \"Y\": 0.8475817441940308\n          },\n          {\n            \"X\": 0.4338204264640808,\n            \"Y\": 0.8476899266242981\n          },\n          {\n            \"X\": 0.43379488587379456,\n            \"Y\": 0.8374041318893433\n          },\n          {\n            \"X\": 0.48022031784057617,\n            \"Y\": 0.8372960090637207\n          }\n        ]\n      },\n      \"Id\": \"5b91338b-2e3b-4603-916e-5916a2893d3a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42285919189453,\n      \"Text\": \"Payor:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052476368844509125,\n          \"Height\": 0.012608605436980724,\n          \"Left\": 0.3756166100502014,\n          \"Top\": 0.834998369216919\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42809298634529114,\n            \"Y\": 0.8474847674369812\n          },\n          {\n            \"X\": 0.3756478428840637,\n            \"Y\": 0.8476069569587708\n          },\n          {\n            \"X\": 0.3756166100502014,\n            \"Y\": 0.8351205587387085\n          },\n          {\n            \"X\": 0.42806196212768555,\n            \"Y\": 0.834998369216919\n          }\n        ]\n      },\n      \"Id\": \"cd3bceb4-2f7d-464f-bc87-139e2819e089\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81047821044922,\n      \"Text\": \"Wellfleet\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.072586789727211,\n          \"Height\": 0.010805080644786358,\n          \"Left\": 0.40761563181877136,\n          \"Top\": 0.8227010369300842\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48020240664482117,\n            \"Y\": 0.8333370685577393\n          },\n          {\n            \"X\": 0.407642126083374,\n            \"Y\": 0.8335061073303223\n          },\n          {\n            \"X\": 0.40761563181877136,\n            \"Y\": 0.8228700160980225\n          },\n          {\n            \"X\": 0.48017618060112,\n            \"Y\": 0.8227010369300842\n          }\n        ]\n      },\n      \"Id\": \"94d8b957-ab49-45ac-b39c-74a776e39dbf\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90898132324219,\n      \"Text\": \"PO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01801901124417782,\n          \"Height\": 0.007861358113586903,\n          \"Left\": 0.46183449029922485,\n          \"Top\": 0.810060441493988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47985348105430603,\n            \"Y\": 0.817879855632782\n          },\n          {\n            \"X\": 0.4618538022041321,\n            \"Y\": 0.8179218173027039\n          },\n          {\n            \"X\": 0.46183449029922485,\n            \"Y\": 0.8101023435592651\n          },\n          {\n            \"X\": 0.4798341989517212,\n            \"Y\": 0.810060441493988\n          }\n        ]\n      },\n      \"Id\": \"273963f9-b7bb-420d-8613-1034e85953b3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81616973876953,\n      \"Text\": \"Box\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02251831255853176,\n          \"Height\": 0.00785139761865139,\n          \"Left\": 0.43531936407089233,\n          \"Top\": 0.8100658059120178\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45783767104148865,\n            \"Y\": 0.8178647756576538\n          },\n          {\n            \"X\": 0.43533870577812195,\n            \"Y\": 0.8179172277450562\n          },\n          {\n            \"X\": 0.43531936407089233,\n            \"Y\": 0.8101181983947754\n          },\n          {\n            \"X\": 0.4578183889389038,\n            \"Y\": 0.8100658059120178\n          }\n        ]\n      },\n      \"Id\": \"dbb8bcc6-02e3-47c7-b7f5-34b30e1b7624\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8660888671875,\n      \"Text\": \"15369\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03568623960018158,\n          \"Height\": 0.007738993503153324,\n          \"Left\": 0.39601007103919983,\n          \"Top\": 0.8100453019142151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4316962957382202,\n            \"Y\": 0.8177012205123901\n          },\n          {\n            \"X\": 0.39602917432785034,\n            \"Y\": 0.817784309387207\n          },\n          {\n            \"X\": 0.39601007103919983,\n            \"Y\": 0.810128390789032\n          },\n          {\n            \"X\": 0.43167731165885925,\n            \"Y\": 0.8100453019142151\n          }\n        ]\n      },\n      \"Id\": \"a7e526af-2663-45b8-a1d5-77274063ca24\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.07313537597656,\n      \"Text\": \"Springfield,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06396766752004623,\n          \"Height\": 0.009919210337102413,\n          \"Left\": 0.41595470905303955,\n          \"Top\": 0.793890118598938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4799223840236664,\n            \"Y\": 0.8036603927612305\n          },\n          {\n            \"X\": 0.4159790277481079,\n            \"Y\": 0.8038093447685242\n          },\n          {\n            \"X\": 0.41595470905303955,\n            \"Y\": 0.7940390706062317\n          },\n          {\n            \"X\": 0.4798983037471771,\n            \"Y\": 0.793890118598938\n          }\n        ]\n      },\n      \"Id\": \"cfb1730b-5fa1-445e-a49c-a96b0824c8f1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83712005615234,\n      \"Text\": \"MA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019794991239905357,\n          \"Height\": 0.00768565759062767,\n          \"Left\": 0.39206111431121826,\n          \"Top\": 0.7958293557167053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41185611486434937,\n            \"Y\": 0.8034689426422119\n          },\n          {\n            \"X\": 0.3920801877975464,\n            \"Y\": 0.8035149574279785\n          },\n          {\n            \"X\": 0.39206111431121826,\n            \"Y\": 0.7958753705024719\n          },\n          {\n            \"X\": 0.411837100982666,\n            \"Y\": 0.7958293557167053\n          }\n        ]\n      },\n      \"Id\": \"4ffc9c67-d68c-4dec-82a8-fdea98e754f5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6680679321289,\n      \"Text\": \"01115-5369\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06898244470357895,\n          \"Height\": 0.007890372537076473,\n          \"Left\": 0.31993263959884644,\n          \"Top\": 0.7956684827804565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.388915091753006,\n            \"Y\": 0.8033981919288635\n          },\n          {\n            \"X\": 0.319952130317688,\n            \"Y\": 0.8035588264465332\n          },\n          {\n            \"X\": 0.31993263959884644,\n            \"Y\": 0.7958291172981262\n          },\n          {\n            \"X\": 0.38889577984809875,\n            \"Y\": 0.7956684827804565\n          }\n        ]\n      },\n      \"Id\": \"ed38fbc0-3349-459c-8400-5f814a3debab\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77919006347656,\n      \"Text\": \"Electronic\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07407736778259277,\n          \"Height\": 0.009528089314699173,\n          \"Left\": 0.12725314497947693,\n          \"Top\": 0.7890735268592834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2013305127620697,\n            \"Y\": 0.7984291315078735\n          },\n          {\n            \"X\": 0.12727734446525574,\n            \"Y\": 0.7986015677452087\n          },\n          {\n            \"X\": 0.12725314497947693,\n            \"Y\": 0.7892459630966187\n          },\n          {\n            \"X\": 0.2013065367937088,\n            \"Y\": 0.7890735268592834\n          }\n        ]\n      },\n      \"Id\": \"2bd063bf-31af-4648-8c8b-a02216420a0b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.13481140136719,\n      \"Text\": \"Claims:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055032096803188324,\n          \"Height\": 0.009633888490498066,\n          \"Left\": 0.06761512905359268,\n          \"Top\": 0.7889916896820068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12264721840620041,\n            \"Y\": 0.7984974384307861\n          },\n          {\n            \"X\": 0.06763990968465805,\n            \"Y\": 0.7986255288124084\n          },\n          {\n            \"X\": 0.06761512905359268,\n            \"Y\": 0.7891197800636292\n          },\n          {\n            \"X\": 0.12262260913848877,\n            \"Y\": 0.7889916896820068\n          }\n        ]\n      },\n      \"Id\": \"193b1af1-74d2-42d1-91c4-cc753fdca59f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85482025146484,\n      \"Text\": \"Customer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0599074512720108,\n          \"Height\": 0.007997042499482632,\n          \"Left\": 0.4200637638568878,\n          \"Top\": 0.7811556458473206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4799712002277374,\n            \"Y\": 0.7890132069587708\n          },\n          {\n            \"X\": 0.42008328437805176,\n            \"Y\": 0.7891527414321899\n          },\n          {\n            \"X\": 0.4200637638568878,\n            \"Y\": 0.7812951803207397\n          },\n          {\n            \"X\": 0.4799518287181854,\n            \"Y\": 0.7811556458473206\n          }\n        ]\n      },\n      \"Id\": \"8b896d53-ae57-4b49-aad5-bb973dcc99d8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.1149673461914,\n      \"Text\": \"Service:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04887315630912781,\n          \"Height\": 0.008019322529435158,\n          \"Left\": 0.3680497705936432,\n          \"Top\": 0.7810898423194885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.416922926902771,\n            \"Y\": 0.7889953851699829\n          },\n          {\n            \"X\": 0.3680695593357086,\n            \"Y\": 0.7891091704368591\n          },\n          {\n            \"X\": 0.3680497705936432,\n            \"Y\": 0.7812036275863647\n          },\n          {\n            \"X\": 0.4169032573699951,\n            \"Y\": 0.7810898423194885\n          }\n        ]\n      },\n      \"Id\": \"5ba6e35a-dbbf-4400-973d-2507ca639d23\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83055877685547,\n      \"Text\": \"Contact\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04524793475866318,\n          \"Height\": 0.008435862138867378,\n          \"Left\": 0.31864842772483826,\n          \"Top\": 0.780870258808136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36389636993408203,\n            \"Y\": 0.7892007827758789\n          },\n          {\n            \"X\": 0.3186694383621216,\n            \"Y\": 0.7893061637878418\n          },\n          {\n            \"X\": 0.31864842772483826,\n            \"Y\": 0.7809756398200989\n          },\n          {\n            \"X\": 0.36387547850608826,\n            \"Y\": 0.780870258808136\n          }\n        ]\n      },\n      \"Id\": \"fab06744-dda0-4037-9837-dab2a81767cb\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.97805786132812,\n      \"Text\": \"Info\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021593911573290825,\n          \"Height\": 0.007780277170240879,\n          \"Left\": 0.29337000846862793,\n          \"Top\": 0.7811367511749268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3149639368057251,\n            \"Y\": 0.7888668179512024\n          },\n          {\n            \"X\": 0.29338955879211426,\n            \"Y\": 0.788917064666748\n          },\n          {\n            \"X\": 0.29337000846862793,\n            \"Y\": 0.7811869978904724\n          },\n          {\n            \"X\": 0.31494441628456116,\n            \"Y\": 0.7811367511749268\n          }\n        ]\n      },\n      \"Id\": \"dce43754-99ec-435a-b74a-4785585714cf\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94255828857422,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00937764160335064,\n          \"Height\": 0.0077253975905478,\n          \"Left\": 0.28031572699546814,\n          \"Top\": 0.7811135053634644\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2896933853626251,\n            \"Y\": 0.7888171076774597\n          },\n          {\n            \"X\": 0.2803352475166321,\n            \"Y\": 0.7888389229774475\n          },\n          {\n            \"X\": 0.28031572699546814,\n            \"Y\": 0.7811353206634521\n          },\n          {\n            \"X\": 0.2896738648414612,\n            \"Y\": 0.7811135053634644\n          }\n        ]\n      },\n      \"Id\": \"23283c37-9504-4699-ba4c-610ca4b11414\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95842742919922,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014853737317025661,\n          \"Height\": 0.006159073673188686,\n          \"Left\": 0.2620348632335663,\n          \"Top\": 0.7812509536743164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27688857913017273,\n            \"Y\": 0.7873754501342773\n          },\n          {\n            \"X\": 0.26205042004585266,\n            \"Y\": 0.7874100208282471\n          },\n          {\n            \"X\": 0.2620348632335663,\n            \"Y\": 0.7812855243682861\n          },\n          {\n            \"X\": 0.27687305212020874,\n            \"Y\": 0.7812509536743164\n          }\n        ]\n      },\n      \"Id\": \"cb4b23b1-b01f-425d-826d-453c0bf10f61\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90464782714844,\n      \"Text\": \"ID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01265989150851965,\n          \"Height\": 0.007795190438628197,\n          \"Left\": 0.24551887810230255,\n          \"Top\": 0.7811137437820435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2581787705421448,\n            \"Y\": 0.7888795137405396\n          },\n          {\n            \"X\": 0.2455386519432068,\n            \"Y\": 0.7889089584350586\n          },\n          {\n            \"X\": 0.24551887810230255,\n            \"Y\": 0.7811431884765625\n          },\n          {\n            \"X\": 0.2581590414047241,\n            \"Y\": 0.7811137437820435\n          }\n        ]\n      },\n      \"Id\": \"baf37f5f-d6f6-4e8b-835b-e5d57dcf7169\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88461303710938,\n      \"Text\": \"Card\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028250141069293022,\n          \"Height\": 0.007896396331489086,\n          \"Left\": 0.21343575417995453,\n          \"Top\": 0.7811446189880371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2416858971118927,\n            \"Y\": 0.7889752388000488\n          },\n          {\n            \"X\": 0.21345578134059906,\n            \"Y\": 0.7890409827232361\n          },\n          {\n            \"X\": 0.21343575417995453,\n            \"Y\": 0.7812103629112244\n          },\n          {\n            \"X\": 0.24166594445705414,\n            \"Y\": 0.7811446189880371\n          }\n        ]\n      },\n      \"Id\": \"e171792e-1f81-4eaf-8f04-ac1184bcc016\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98100280761719,\n      \"Text\": \"87843\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04803053289651871,\n          \"Height\": 0.009917032904922962,\n          \"Left\": 0.15314434468746185,\n          \"Top\": 0.7758345603942871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20117488503456116,\n            \"Y\": 0.7856398224830627\n          },\n          {\n            \"X\": 0.1531696319580078,\n            \"Y\": 0.7857516407966614\n          },\n          {\n            \"X\": 0.15314434468746185,\n            \"Y\": 0.7759463787078857\n          },\n          {\n            \"X\": 0.20114976167678833,\n            \"Y\": 0.7758345603942871\n          }\n        ]\n      },\n      \"Id\": \"a0b8ec5c-2531-44ec-bd49-4f6795194c77\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97660827636719,\n      \"Text\": \"570\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025138020515441895,\n          \"Height\": 0.009188296273350716,\n          \"Left\": 0.9008697867393494,\n          \"Top\": 0.7420019507408142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9260078072547913,\n            \"Y\": 0.7511317729949951\n          },\n          {\n            \"X\": 0.9008910059928894,\n            \"Y\": 0.7511902451515198\n          },\n          {\n            \"X\": 0.9008697867393494,\n            \"Y\": 0.7420604228973389\n          },\n          {\n            \"X\": 0.9259867072105408,\n            \"Y\": 0.7420019507408142\n          }\n        ]\n      },\n      \"Id\": \"ff3a64b6-cc1e-4073-8315-28b8d20f30da\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.27088165283203,\n      \"Text\": \"Carillon\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05111124366521835,\n          \"Height\": 0.00916820578277111,\n          \"Left\": 0.845739483833313,\n          \"Top\": 0.7420627474784851\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8968507051467896,\n            \"Y\": 0.7511119842529297\n          },\n          {\n            \"X\": 0.8457606434822083,\n            \"Y\": 0.7512308955192566\n          },\n          {\n            \"X\": 0.845739483833313,\n            \"Y\": 0.742181658744812\n          },\n          {\n            \"X\": 0.8968297243118286,\n            \"Y\": 0.7420627474784851\n          }\n        ]\n      },\n      \"Id\": \"f07a9f68-f34a-4e8d-906e-0d622c6bc226\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.01563262939453,\n      \"Text\": \"Pkwy.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03914482891559601,\n          \"Height\": 0.011008675210177898,\n          \"Left\": 0.8019566535949707,\n          \"Top\": 0.7401730418205261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8411014676094055,\n            \"Y\": 0.7510906457901001\n          },\n          {\n            \"X\": 0.8019823431968689,\n            \"Y\": 0.7511817216873169\n          },\n          {\n            \"X\": 0.8019566535949707,\n            \"Y\": 0.7402641177177429\n          },\n          {\n            \"X\": 0.8410758972167969,\n            \"Y\": 0.7401730418205261\n          }\n        ]\n      },\n      \"Id\": \"afc7cd86-5603-4349-83b3-3adb5f5deb5e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69959259033203,\n      \"Text\": \"Suite\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03432142734527588,\n          \"Height\": 0.0093994140625,\n          \"Left\": 0.7622689604759216,\n          \"Top\": 0.7418948411941528\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7965903878211975,\n            \"Y\": 0.7512143850326538\n          },\n          {\n            \"X\": 0.7622910737991333,\n            \"Y\": 0.7512942552566528\n          },\n          {\n            \"X\": 0.7622689604759216,\n            \"Y\": 0.7419747114181519\n          },\n          {\n            \"X\": 0.7965684533119202,\n            \"Y\": 0.7418948411941528\n          }\n        ]\n      },\n      \"Id\": \"29409e50-8c08-4141-96a9-f82309089350\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3496322631836,\n      \"Text\": \"500,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028474755585193634,\n          \"Height\": 0.01022504922002554,\n          \"Left\": 0.7300705909729004,\n          \"Top\": 0.7408719062805176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7585453391075134,\n            \"Y\": 0.751030683517456\n          },\n          {\n            \"X\": 0.7300947308540344,\n            \"Y\": 0.7510969638824463\n          },\n          {\n            \"X\": 0.7300705909729004,\n            \"Y\": 0.740938127040863\n          },\n          {\n            \"X\": 0.7585212588310242,\n            \"Y\": 0.7408719062805176\n          }\n        ]\n      },\n      \"Id\": \"8e9aa39a-a9f6-4903-ab46-0bb9f1aded14\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90158081054688,\n      \"Text\": \"Claim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046043623238801956,\n          \"Height\": 0.010645288042724133,\n          \"Left\": 0.42253854870796204,\n          \"Top\": 0.7383185029029846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4685821533203125,\n            \"Y\": 0.7488566637039185\n          },\n          {\n            \"X\": 0.42256471514701843,\n            \"Y\": 0.7489637732505798\n          },\n          {\n            \"X\": 0.42253854870796204,\n            \"Y\": 0.7384256720542908\n          },\n          {\n            \"X\": 0.46855613589286804,\n            \"Y\": 0.7383185029029846\n          }\n        ]\n      },\n      \"Id\": \"9880ccee-63a0-4081-8899-9a390ded3baa\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.904541015625,\n      \"Text\": \"Questions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08285932242870331,\n          \"Height\": 0.010734118521213531,\n          \"Left\": 0.3345780670642853,\n          \"Top\": 0.7379497289657593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4174373745918274,\n            \"Y\": 0.7484909892082214\n          },\n          {\n            \"X\": 0.3346045911312103,\n            \"Y\": 0.7486838698387146\n          },\n          {\n            \"X\": 0.3345780670642853,\n            \"Y\": 0.7381426095962524\n          },\n          {\n            \"X\": 0.4174111783504486,\n            \"Y\": 0.7379497289657593\n          }\n        ]\n      },\n      \"Id\": \"f9ded9ab-2e32-48c4-bf54-b33c1ad5fce7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.92255401611328,\n      \"Text\": \"?\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009901739656925201,\n          \"Height\": 0.009975133463740349,\n          \"Left\": 0.31933385133743286,\n          \"Top\": 0.7385152578353882\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32923558354377747,\n            \"Y\": 0.7484673857688904\n          },\n          {\n            \"X\": 0.3193589448928833,\n            \"Y\": 0.7484903931617737\n          },\n          {\n            \"X\": 0.31933385133743286,\n            \"Y\": 0.7385382652282715\n          },\n          {\n            \"X\": 0.3292105197906494,\n            \"Y\": 0.7385152578353882\n          }\n        ]\n      },\n      \"Id\": \"d7cac683-331a-46bc-ae7f-ed36d4a6a4d9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93333435058594,\n      \"Text\": \"Please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044808100908994675,\n          \"Height\": 0.008905867114663124,\n          \"Left\": 0.2710355520248413,\n          \"Top\": 0.7381359338760376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3158436417579651,\n            \"Y\": 0.7469375133514404\n          },\n          {\n            \"X\": 0.2710578739643097,\n            \"Y\": 0.7470418214797974\n          },\n          {\n            \"X\": 0.2710355520248413,\n            \"Y\": 0.7382402420043945\n          },\n          {\n            \"X\": 0.31582143902778625,\n            \"Y\": 0.7381359338760376\n          }\n        ]\n      },\n      \"Id\": \"9c49aaba-8a9c-4343-a544-ce7c7f405df9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9286880493164,\n      \"Text\": \"refer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032759033143520355,\n          \"Height\": 0.008462723344564438,\n          \"Left\": 0.23418152332305908,\n          \"Top\": 0.738298237323761\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26694056391716003,\n            \"Y\": 0.746684730052948\n          },\n          {\n            \"X\": 0.23420290648937225,\n            \"Y\": 0.7467609643936157\n          },\n          {\n            \"X\": 0.23418152332305908,\n            \"Y\": 0.7383744716644287\n          },\n          {\n            \"X\": 0.26691925525665283,\n            \"Y\": 0.738298237323761\n          }\n        ]\n      },\n      \"Id\": \"21d1dbae-a8d8-40f9-97f1-ac417ddf974a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94310760498047,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01365080289542675,\n          \"Height\": 0.008080477826297283,\n          \"Left\": 0.21774332225322723,\n          \"Top\": 0.7383430004119873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23139412701129913,\n            \"Y\": 0.7463917136192322\n          },\n          {\n            \"X\": 0.21776390075683594,\n            \"Y\": 0.7464234828948975\n          },\n          {\n            \"X\": 0.21774332225322723,\n            \"Y\": 0.7383747100830078\n          },\n          {\n            \"X\": 0.231373593211174,\n            \"Y\": 0.7383430004119873\n          }\n        ]\n      },\n      \"Id\": \"e23e177e-1b84-4346-a70f-d79a5e6d014c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98535919189453,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021644126623868942,\n          \"Height\": 0.00847307313233614,\n          \"Left\": 0.19220800697803497,\n          \"Top\": 0.7383594512939453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21385212242603302,\n            \"Y\": 0.7467821836471558\n          },\n          {\n            \"X\": 0.19222959876060486,\n            \"Y\": 0.7468324899673462\n          },\n          {\n            \"X\": 0.19220800697803497,\n            \"Y\": 0.7384097576141357\n          },\n          {\n            \"X\": 0.2138305902481079,\n            \"Y\": 0.7383594512939453\n          }\n        ]\n      },\n      \"Id\": \"12951dc4-2c98-4ac1-a4eb-c3e1c9ad5440\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.880126953125,\n      \"Text\": \"Payor's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0509377159178257,\n          \"Height\": 0.010435882024466991,\n          \"Left\": 0.13705308735370636,\n          \"Top\": 0.7364227175712585\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18799081444740295,\n            \"Y\": 0.7467400431632996\n          },\n          {\n            \"X\": 0.13707974553108215,\n            \"Y\": 0.7468585968017578\n          },\n          {\n            \"X\": 0.13705308735370636,\n            \"Y\": 0.736541211605072\n          },\n          {\n            \"X\": 0.1879643350839615,\n            \"Y\": 0.7364227175712585\n          }\n        ]\n      },\n      \"Id\": \"2e8aaa6a-42b4-4fe3-a075-59d55f1f38a1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9297103881836,\n      \"Text\": \"Customer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06722358614206314,\n          \"Height\": 0.008877038955688477,\n          \"Left\": 0.06614883989095688,\n          \"Top\": 0.738065779209137\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13337242603302002,\n            \"Y\": 0.7467862963676453\n          },\n          {\n            \"X\": 0.06617158651351929,\n            \"Y\": 0.7469428181648254\n          },\n          {\n            \"X\": 0.06614883989095688,\n            \"Y\": 0.7382222414016724\n          },\n          {\n            \"X\": 0.13334988057613373,\n            \"Y\": 0.738065779209137\n          }\n        ]\n      },\n      \"Id\": \"372155df-4931-4fee-b5b8-b9b0ba7ba585\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89628601074219,\n      \"Text\": \"St.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017779601737856865,\n          \"Height\": 0.008772088214755058,\n          \"Left\": 0.9080537557601929,\n          \"Top\": 0.7298136353492737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9258333444595337,\n            \"Y\": 0.7385443449020386\n          },\n          {\n            \"X\": 0.9080740213394165,\n            \"Y\": 0.7385857105255127\n          },\n          {\n            \"X\": 0.9080537557601929,\n            \"Y\": 0.7298550009727478\n          },\n          {\n            \"X\": 0.9258131384849548,\n            \"Y\": 0.7298136353492737\n          }\n        ]\n      },\n      \"Id\": \"0abbe259-88fb-43b6-a932-0c5ac0120124\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.96410369873047,\n      \"Text\": \"Petersburg,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07824921607971191,\n          \"Height\": 0.0112301055341959,\n          \"Left\": 0.8244485855102539,\n          \"Top\": 0.7276015281677246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9026978015899658,\n            \"Y\": 0.7386494874954224\n          },\n          {\n            \"X\": 0.8244745135307312,\n            \"Y\": 0.738831639289856\n          },\n          {\n            \"X\": 0.8244485855102539,\n            \"Y\": 0.7277836799621582\n          },\n          {\n            \"X\": 0.9026721715927124,\n            \"Y\": 0.7276015281677246\n          }\n        ]\n      },\n      \"Id\": \"378034dc-6687-40b4-b958-b4b4bc8f5a7f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81404876708984,\n      \"Text\": \"FL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017475562170147896,\n          \"Height\": 0.008668133057653904,\n          \"Left\": 0.8016766905784607,\n          \"Top\": 0.7299236059188843\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8191522359848022,\n            \"Y\": 0.738551139831543\n          },\n          {\n            \"X\": 0.8016970157623291,\n            \"Y\": 0.738591730594635\n          },\n          {\n            \"X\": 0.8016766905784607,\n            \"Y\": 0.7299642562866211\n          },\n          {\n            \"X\": 0.8191319704055786,\n            \"Y\": 0.7299236059188843\n          }\n        ]\n      },\n      \"Id\": \"8f330392-c89c-408b-a46e-c98574a5c178\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94485473632812,\n      \"Text\": \"33716\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04204931855201721,\n          \"Height\": 0.008867179043591022,\n          \"Left\": 0.7552955150604248,\n          \"Top\": 0.7298818230628967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7973448634147644,\n            \"Y\": 0.7386511564254761\n          },\n          {\n            \"X\": 0.7553163170814514,\n            \"Y\": 0.7387490272521973\n          },\n          {\n            \"X\": 0.7552955150604248,\n            \"Y\": 0.7299796938896179\n          },\n          {\n            \"X\": 0.7973241806030273,\n            \"Y\": 0.7298818230628967\n          }\n        ]\n      },\n      \"Id\": \"62dc259a-698b-43c1-8e1d-daeaeb1d9df2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86428833007812,\n      \"Text\": \"Service\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050906240940093994,\n          \"Height\": 0.008706029504537582,\n          \"Left\": 0.35628077387809753,\n          \"Top\": 0.7255234122276306\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40718701481819153,\n            \"Y\": 0.7341110110282898\n          },\n          {\n            \"X\": 0.35630232095718384,\n            \"Y\": 0.7342294454574585\n          },\n          {\n            \"X\": 0.35628077387809753,\n            \"Y\": 0.7256419062614441\n          },\n          {\n            \"X\": 0.40716561675071716,\n            \"Y\": 0.7255234122276306\n          }\n        ]\n      },\n      \"Id\": \"e6fc1b37-ff1b-41de-a160-ae4d79c4cb2a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96086883544922,\n      \"Text\": \"Phone\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0430232435464859,\n          \"Height\": 0.008732135407626629,\n          \"Left\": 0.30885908007621765,\n          \"Top\": 0.7252369523048401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35188230872154236,\n            \"Y\": 0.7338689565658569\n          },\n          {\n            \"X\": 0.30888086557388306,\n            \"Y\": 0.7339690923690796\n          },\n          {\n            \"X\": 0.30885908007621765,\n            \"Y\": 0.7253370881080627\n          },\n          {\n            \"X\": 0.3518606424331665,\n            \"Y\": 0.7252369523048401\n          }\n        ]\n      },\n      \"Id\": \"298a37b3-cb44-4c54-ac75-dabe2765fe5f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9647216796875,\n      \"Text\": \"Number\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05433550477027893,\n          \"Height\": 0.008635284379124641,\n          \"Left\": 0.25013267993927,\n          \"Top\": 0.7252081036567688\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30446818470954895,\n            \"Y\": 0.7337169051170349\n          },\n          {\n            \"X\": 0.2501543164253235,\n            \"Y\": 0.7338433861732483\n          },\n          {\n            \"X\": 0.25013267993927,\n            \"Y\": 0.7253345251083374\n          },\n          {\n            \"X\": 0.30444666743278503,\n            \"Y\": 0.7252081036567688\n          }\n        ]\n      },\n      \"Id\": \"0e06bf13-82b2-469d-bbc5-c54c161144dd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9232406616211,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015637245029211044,\n          \"Height\": 0.006687057204544544,\n          \"Left\": 0.23107334971427917,\n          \"Top\": 0.7252299189567566\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24671058356761932,\n            \"Y\": 0.7318806052207947\n          },\n          {\n            \"X\": 0.23109030723571777,\n            \"Y\": 0.7319169640541077\n          },\n          {\n            \"X\": 0.23107334971427917,\n            \"Y\": 0.7252662777900696\n          },\n          {\n            \"X\": 0.2466936558485031,\n            \"Y\": 0.7252299189567566\n          }\n        ]\n      },\n      \"Id\": \"63a39b23-fb98-4566-9ee7-2af9855a139d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94649505615234,\n      \"Text\": \"noted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038593802601099014,\n          \"Height\": 0.00843836460262537,\n          \"Left\": 0.18791426718235016,\n          \"Top\": 0.7252508997917175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22650806605815887,\n            \"Y\": 0.7335994243621826\n          },\n          {\n            \"X\": 0.1879356950521469,\n            \"Y\": 0.7336892485618591\n          },\n          {\n            \"X\": 0.18791426718235016,\n            \"Y\": 0.725340723991394\n          },\n          {\n            \"X\": 0.22648675739765167,\n            \"Y\": 0.7252508997917175\n          }\n        ]\n      },\n      \"Id\": \"838b31c4-9f3f-4f44-a446-38da1d1ab021\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67835998535156,\n      \"Text\": \"ABOVE.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05438283085823059,\n          \"Height\": 0.00863227155059576,\n          \"Left\": 0.12977753579616547,\n          \"Top\": 0.7253062725067139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18416036665439606,\n            \"Y\": 0.7338119745254517\n          },\n          {\n            \"X\": 0.12979954481124878,\n            \"Y\": 0.7339385747909546\n          },\n          {\n            \"X\": 0.12977753579616547,\n            \"Y\": 0.7254328727722168\n          },\n          {\n            \"X\": 0.18413853645324707,\n            \"Y\": 0.7253062725067139\n          }\n        ]\n      },\n      \"Id\": \"e7ad855b-0ddc-4ad6-8c2a-586cdbf55cd8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16307067871094,\n      \"Text\": \"MINUTECLINIC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12286119908094406,\n          \"Height\": 0.010632668621838093,\n          \"Left\": 0.7816110849380493,\n          \"Top\": 0.6908624768257141\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.904472291469574,\n            \"Y\": 0.7012091875076294\n          },\n          {\n            \"X\": 0.7816355228424072,\n            \"Y\": 0.7014951705932617\n          },\n          {\n            \"X\": 0.7816110849380493,\n            \"Y\": 0.6911484003067017\n          },\n          {\n            \"X\": 0.9044482707977295,\n            \"Y\": 0.6908624768257141\n          }\n        ]\n      },\n      \"Id\": \"5b689132-d360-4af2-9be6-dfcad7755623\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71742248535156,\n      \"Text\": \"DIAGNOSTIC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10716225951910019,\n          \"Height\": 0.010558956302702427,\n          \"Left\": 0.6691674590110779,\n          \"Top\": 0.6910085082054138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.776329755783081,\n            \"Y\": 0.701318085193634\n          },\n          {\n            \"X\": 0.6691922545433044,\n            \"Y\": 0.7015674710273743\n          },\n          {\n            \"X\": 0.6691674590110779,\n            \"Y\": 0.691257894039154\n          },\n          {\n            \"X\": 0.7763053774833679,\n            \"Y\": 0.6910085082054138\n          }\n        ]\n      },\n      \"Id\": \"125b839c-b305-42bd-af87-0864ad4da1a4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9833755493164,\n      \"Text\": \"OF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023024192079901695,\n          \"Height\": 0.010208100080490112,\n          \"Left\": 0.6406794190406799,\n          \"Top\": 0.6912445425987244\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6637036204338074,\n            \"Y\": 0.7013991475105286\n          },\n          {\n            \"X\": 0.6407039165496826,\n            \"Y\": 0.7014526724815369\n          },\n          {\n            \"X\": 0.6406794190406799,\n            \"Y\": 0.6912981271743774\n          },\n          {\n            \"X\": 0.6636792421340942,\n            \"Y\": 0.6912445425987244\n          }\n        ]\n      },\n      \"Id\": \"c0a9feb7-f279-4165-9412-88369a00f4ef\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95780944824219,\n      \"Text\": \"NJ\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021532978862524033,\n          \"Height\": 0.01031909417361021,\n          \"Left\": 0.6137863397598267,\n          \"Top\": 0.6912098526954651\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6353192925453186,\n            \"Y\": 0.7014788389205933\n          },\n          {\n            \"X\": 0.613811194896698,\n            \"Y\": 0.7015289068222046\n          },\n          {\n            \"X\": 0.6137863397598267,\n            \"Y\": 0.6912599205970764\n          },\n          {\n            \"X\": 0.6352945566177368,\n            \"Y\": 0.6912098526954651\n          }\n        ]\n      },\n      \"Id\": \"8bc67589-14d0-4714-be2e-574a1f020195\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89500427246094,\n      \"Text\": \"Provider's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0826546922326088,\n          \"Height\": 0.010510030202567577,\n          \"Left\": 0.40630263090133667,\n          \"Top\": 0.6804059147834778\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48895731568336487,\n            \"Y\": 0.6907235980033875\n          },\n          {\n            \"X\": 0.40632832050323486,\n            \"Y\": 0.6909159421920776\n          },\n          {\n            \"X\": 0.40630263090133667,\n            \"Y\": 0.680598258972168\n          },\n          {\n            \"X\": 0.48893189430236816,\n            \"Y\": 0.6804059147834778\n          }\n        ]\n      },\n      \"Id\": \"6b8caa13-50fd-4471-bcbd-9029b6a53df0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58010864257812,\n      \"Text\": \"TIN:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03303004801273346,\n          \"Height\": 0.009954983368515968,\n          \"Left\": 0.36785298585891724,\n          \"Top\": 0.6805222034454346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4008830487728119,\n            \"Y\": 0.6904003620147705\n          },\n          {\n            \"X\": 0.367877721786499,\n            \"Y\": 0.690477192401886\n          },\n          {\n            \"X\": 0.36785298585891724,\n            \"Y\": 0.68059903383255\n          },\n          {\n            \"X\": 0.40085843205451965,\n            \"Y\": 0.6805222034454346\n          }\n        ]\n      },\n      \"Id\": \"d5a3fe3a-9bb9-4cd2-acd8-7348c807aa0f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64391326904297,\n      \"Text\": \"20-4868967\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09197453409433365,\n          \"Height\": 0.010270805098116398,\n          \"Left\": 0.2704046666622162,\n          \"Top\": 0.6802772283554077\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36237919330596924,\n            \"Y\": 0.6903340220451355\n          },\n          {\n            \"X\": 0.27043020725250244,\n            \"Y\": 0.6905480623245239\n          },\n          {\n            \"X\": 0.2704046666622162,\n            \"Y\": 0.6804912686347961\n          },\n          {\n            \"X\": 0.36235401034355164,\n            \"Y\": 0.6802772283554077\n          }\n        ]\n      },\n      \"Id\": \"3c4766d8-4d58-4df1-b68f-3678a5bb99f1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87603759765625,\n      \"Text\": \"PO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024116644635796547,\n          \"Height\": 0.010279384441673756,\n          \"Left\": 0.8799416422843933,\n          \"Top\": 0.6719135642051697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9040582776069641,\n            \"Y\": 0.6821368336677551\n          },\n          {\n            \"X\": 0.8799654245376587,\n            \"Y\": 0.6821929216384888\n          },\n          {\n            \"X\": 0.8799416422843933,\n            \"Y\": 0.6719695925712585\n          },\n          {\n            \"X\": 0.9040345549583435,\n            \"Y\": 0.6719135642051697\n          }\n        ]\n      },\n      \"Id\": \"097b87b7-0677-48ef-a99e-0d565ba09396\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80699157714844,\n      \"Text\": \"BOX\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03732600063085556,\n          \"Height\": 0.010461924597620964,\n          \"Left\": 0.8370363116264343,\n          \"Top\": 0.671880304813385\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8743623495101929,\n            \"Y\": 0.6822553873062134\n          },\n          {\n            \"X\": 0.8370606303215027,\n            \"Y\": 0.6823422312736511\n          },\n          {\n            \"X\": 0.8370363116264343,\n            \"Y\": 0.671967089176178\n          },\n          {\n            \"X\": 0.8743381500244141,\n            \"Y\": 0.671880304813385\n          }\n        ]\n      },\n      \"Id\": \"9806c390-c94f-44aa-8780-81203927429a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88834381103516,\n      \"Text\": \"8442\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03806135430932045,\n          \"Height\": 0.010163484141230583,\n          \"Left\": 0.7945964932441711,\n          \"Top\": 0.672005295753479\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8326578736305237,\n            \"Y\": 0.6820802688598633\n          },\n          {\n            \"X\": 0.7946202754974365,\n            \"Y\": 0.6821687817573547\n          },\n          {\n            \"X\": 0.7945964932441711,\n            \"Y\": 0.6720938682556152\n          },\n          {\n            \"X\": 0.8326342105865479,\n            \"Y\": 0.672005295753479\n          }\n        ]\n      },\n      \"Id\": \"62bd79e2-ebdb-4ce0-aa25-98aac1141beb\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.33460235595703,\n      \"Text\": \"BELFAST,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08307474851608276,\n          \"Height\": 0.012380799278616905,\n          \"Left\": 0.8208409547805786,\n          \"Top\": 0.651104748249054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9039157032966614,\n            \"Y\": 0.6632922887802124\n          },\n          {\n            \"X\": 0.8208695650100708,\n            \"Y\": 0.663485586643219\n          },\n          {\n            \"X\": 0.8208409547805786,\n            \"Y\": 0.6512980461120605\n          },\n          {\n            \"X\": 0.9038874506950378,\n            \"Y\": 0.651104748249054\n          }\n        ]\n      },\n      \"Id\": \"e4687609-76f1-440c-816e-5c7e17ecdf62\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87003326416016,\n      \"Text\": \"ME\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025578131899237633,\n          \"Height\": 0.010074359364807606,\n          \"Left\": 0.790851891040802,\n          \"Top\": 0.6531275510787964\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8164300322532654,\n            \"Y\": 0.6631423830986023\n          },\n          {\n            \"X\": 0.7908754944801331,\n            \"Y\": 0.6632018685340881\n          },\n          {\n            \"X\": 0.790851891040802,\n            \"Y\": 0.6531869769096375\n          },\n          {\n            \"X\": 0.8164064884185791,\n            \"Y\": 0.6531275510787964\n          }\n        ]\n      },\n      \"Id\": \"e56daab3-802f-4348-8102-04b2f14068d7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94365692138672,\n      \"Text\": \"049158442\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08530595153570175,\n          \"Height\": 0.010466312058269978,\n          \"Left\": 0.7013089060783386,\n          \"Top\": 0.6529362797737122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7866148352622986,\n            \"Y\": 0.6632040739059448\n          },\n          {\n            \"X\": 0.7013334631919861,\n            \"Y\": 0.6634025573730469\n          },\n          {\n            \"X\": 0.7013089060783386,\n            \"Y\": 0.6531347036361694\n          },\n          {\n            \"X\": 0.7865906357765198,\n            \"Y\": 0.6529362797737122\n          }\n        ]\n      },\n      \"Id\": \"a6b2482f-754e-4466-830f-e3d91df7b9d5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69009399414062,\n      \"Text\": \"PT:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022067993879318237,\n          \"Height\": 0.008661405183374882,\n          \"Left\": 0.9057045578956604,\n          \"Top\": 0.6138901710510254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.927772581577301,\n            \"Y\": 0.6225003004074097\n          },\n          {\n            \"X\": 0.9057245254516602,\n            \"Y\": 0.6225515604019165\n          },\n          {\n            \"X\": 0.9057045578956604,\n            \"Y\": 0.613941490650177\n          },\n          {\n            \"X\": 0.927752673625946,\n            \"Y\": 0.6138901710510254\n          }\n        ]\n      },\n      \"Id\": \"a63fb264-2345-4287-9a9d-932b00c42c33\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.10679626464844,\n      \"Text\": \"PT.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020996253937482834,\n          \"Height\": 0.008519480004906654,\n          \"Left\": 0.6973755955696106,\n          \"Top\": 0.6140813827514648\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7183718085289001,\n            \"Y\": 0.6225520372390747\n          },\n          {\n            \"X\": 0.6973958611488342,\n            \"Y\": 0.6226008534431458\n          },\n          {\n            \"X\": 0.6973755955696106,\n            \"Y\": 0.6141301989555359\n          },\n          {\n            \"X\": 0.7183516621589661,\n            \"Y\": 0.6140813827514648\n          }\n        ]\n      },\n      \"Id\": \"d0c3c05b-c038-43a0-b413-6acec2fd7918\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.33783721923828,\n      \"Text\": \"DOB:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03399597480893135,\n          \"Height\": 0.008555391803383827,\n          \"Left\": 0.6600726842880249,\n          \"Top\": 0.614103376865387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6940686702728271,\n            \"Y\": 0.6225797533988953\n          },\n          {\n            \"X\": 0.6600930690765381,\n            \"Y\": 0.6226587891578674\n          },\n          {\n            \"X\": 0.6600726842880249,\n            \"Y\": 0.6141824722290039\n          },\n          {\n            \"X\": 0.6940484046936035,\n            \"Y\": 0.614103376865387\n          }\n        ]\n      },\n      \"Id\": \"de88b700-9c0f-4a49-bd8f-02e1afdffc4a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93456268310547,\n      \"Text\": \"2004-02-14\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0685962662100792,\n          \"Height\": 0.008656026795506477,\n          \"Left\": 0.5803046226501465,\n          \"Top\": 0.6140899062156677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6489009261131287,\n            \"Y\": 0.6225863695144653\n          },\n          {\n            \"X\": 0.5803253054618835,\n            \"Y\": 0.622745931148529\n          },\n          {\n            \"X\": 0.5803046226501465,\n            \"Y\": 0.6142494678497314\n          },\n          {\n            \"X\": 0.6488804817199707,\n            \"Y\": 0.6140899062156677\n          }\n        ]\n      },\n      \"Id\": \"6e4e12f0-f105-4e17-884d-17d46fb7bf17\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9393310546875,\n      \"Text\": \"SCHOOL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05826776102185249,\n          \"Height\": 0.008763317950069904,\n          \"Left\": 0.1823727935552597,\n          \"Top\": 0.6201877593994141\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2406405657529831,\n            \"Y\": 0.6288155317306519\n          },\n          {\n            \"X\": 0.18239495158195496,\n            \"Y\": 0.6289510726928711\n          },\n          {\n            \"X\": 0.1823727935552597,\n            \"Y\": 0.6203233003616333\n          },\n          {\n            \"X\": 0.24061857163906097,\n            \"Y\": 0.6201877593994141\n          }\n        ]\n      },\n      \"Id\": \"6e9c137b-dcbc-4a66-b16d-fc07de74fd12\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9752197265625,\n      \"Text\": \"OF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019033649936318398,\n          \"Height\": 0.0088298125192523,\n          \"Left\": 0.15963353216648102,\n          \"Top\": 0.6201611757278442\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17866718769073486,\n            \"Y\": 0.6289467215538025\n          },\n          {\n            \"X\": 0.15965616703033447,\n            \"Y\": 0.6289909482002258\n          },\n          {\n            \"X\": 0.15963353216648102,\n            \"Y\": 0.6202054023742676\n          },\n          {\n            \"X\": 0.17864461243152618,\n            \"Y\": 0.6201611757278442\n          }\n        ]\n      },\n      \"Id\": \"9cd118f8-d64a-426b-bb83-ef58eb8df656\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45552062988281,\n      \"Text\": \"VISUAL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049983520060777664,\n          \"Height\": 0.009068374522030354,\n          \"Left\": 0.10633086413145065,\n          \"Top\": 0.6198864579200745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15631438791751862,\n            \"Y\": 0.6288385987281799\n          },\n          {\n            \"X\": 0.10635408759117126,\n            \"Y\": 0.6289548277854919\n          },\n          {\n            \"X\": 0.10633086413145065,\n            \"Y\": 0.6200027465820312\n          },\n          {\n            \"X\": 0.15629130601882935,\n            \"Y\": 0.6198864579200745\n          }\n        ]\n      },\n      \"Id\": \"6f809a36-0628-48ef-9373-d2e49b2e5b88\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96006774902344,\n      \"Text\": \"Doug\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04434776306152344,\n          \"Height\": 0.010511449538171291,\n          \"Left\": 0.8249459862709045,\n          \"Top\": 0.6086771488189697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.869293749332428,\n            \"Y\": 0.619085431098938\n          },\n          {\n            \"X\": 0.8249704241752625,\n            \"Y\": 0.6191885471343994\n          },\n          {\n            \"X\": 0.8249459862709045,\n            \"Y\": 0.6087802648544312\n          },\n          {\n            \"X\": 0.8692694902420044,\n            \"Y\": 0.6086771488189697\n          }\n        ]\n      },\n      \"Id\": \"e84b5752-e1b6-4679-9788-caad7bfe1a52\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43378448486328,\n      \"Text\": \"Dimmadale\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09588506817817688,\n          \"Height\": 0.008958720602095127,\n          \"Left\": 0.725797712802887,\n          \"Top\": 0.6105546355247498\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8216828107833862,\n            \"Y\": 0.619290292263031\n          },\n          {\n            \"X\": 0.7258185148239136,\n            \"Y\": 0.6195133328437805\n          },\n          {\n            \"X\": 0.725797712802887,\n            \"Y\": 0.6107776761054993\n          },\n          {\n            \"X\": 0.8216623067855835,\n            \"Y\": 0.6105546355247498\n          }\n        ]\n      },\n      \"Id\": \"67bad510-e5e0-4194-af44-58d617ab8287\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.66432189941406,\n      \"Text\": \"PT.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02168082445859909,\n          \"Height\": 0.008670608513057232,\n          \"Left\": 0.498372346162796,\n          \"Top\": 0.6142998933792114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5200531482696533,\n            \"Y\": 0.6229201555252075\n          },\n          {\n            \"X\": 0.49839353561401367,\n            \"Y\": 0.6229705214500427\n          },\n          {\n            \"X\": 0.498372346162796,\n            \"Y\": 0.6143503189086914\n          },\n          {\n            \"X\": 0.5200320482254028,\n            \"Y\": 0.6142998933792114\n          }\n        ]\n      },\n      \"Id\": \"106ed427-4f7b-4390-910c-9c84a3b8402e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.73799896240234,\n      \"Text\": \"ACCT:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04135763645172119,\n          \"Height\": 0.00852916669100523,\n          \"Left\": 0.45452913641929626,\n          \"Top\": 0.6143428087234497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49588677287101746,\n            \"Y\": 0.6227757930755615\n          },\n          {\n            \"X\": 0.45454999804496765,\n            \"Y\": 0.6228719353675842\n          },\n          {\n            \"X\": 0.45452913641929626,\n            \"Y\": 0.6144389510154724\n          },\n          {\n            \"X\": 0.4958660304546356,\n            \"Y\": 0.6143428087234497\n          }\n        ]\n      },\n      \"Id\": \"ab9a9a31-7b4d-48f9-a48f-a97a8df33450\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72738647460938,\n      \"Text\": \"5705589V1648\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09269851446151733,\n          \"Height\": 0.008953532204031944,\n          \"Left\": 0.34742245078086853,\n          \"Top\": 0.6140170693397522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44012096524238586,\n            \"Y\": 0.6227549314498901\n          },\n          {\n            \"X\": 0.3474443852901459,\n            \"Y\": 0.6229705810546875\n          },\n          {\n            \"X\": 0.34742245078086853,\n            \"Y\": 0.6142327189445496\n          },\n          {\n            \"X\": 0.44009929895401,\n            \"Y\": 0.6140170693397522\n          }\n        ]\n      },\n      \"Id\": \"551e6259-38f5-4384-8b9b-42bb704c1ca1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74942016601562,\n      \"Text\": \"GRP:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03356422111392021,\n          \"Height\": 0.008730622939765453,\n          \"Left\": 0.2826884686946869,\n          \"Top\": 0.6140135526657104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3162526786327362,\n            \"Y\": 0.6226661205291748\n          },\n          {\n            \"X\": 0.28271037340164185,\n            \"Y\": 0.6227442026138306\n          },\n          {\n            \"X\": 0.2826884686946869,\n            \"Y\": 0.6140916347503662\n          },\n          {\n            \"X\": 0.3162308633327484,\n            \"Y\": 0.6140135526657104\n          }\n        ]\n      },\n      \"Id\": \"ce2fba41-3391-4418-aa9f-8ce7d10bc3b8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82857513427734,\n      \"Text\": \"ARTS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03706885874271393,\n          \"Height\": 0.008515174500644207,\n          \"Left\": 0.20448412001132965,\n          \"Top\": 0.6081969738006592\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24155297875404358,\n            \"Y\": 0.616625964641571\n          },\n          {\n            \"X\": 0.20450569689273834,\n            \"Y\": 0.6167121529579163\n          },\n          {\n            \"X\": 0.20448412001132965,\n            \"Y\": 0.6082831621170044\n          },\n          {\n            \"X\": 0.24153150618076324,\n            \"Y\": 0.6081969738006592\n          }\n        ]\n      },\n      \"Id\": \"6dc72954-2261-4d29-9f5d-1a4b0ca725b6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7085952758789,\n      \"Text\": \"MBR:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03460070490837097,\n          \"Height\": 0.008382274769246578,\n          \"Left\": 0.8928751349449158,\n          \"Top\": 0.5942569375038147\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9274758100509644,\n            \"Y\": 0.6025587916374207\n          },\n          {\n            \"X\": 0.892894446849823,\n            \"Y\": 0.6026391983032227\n          },\n          {\n            \"X\": 0.8928751349449158,\n            \"Y\": 0.5943374037742615\n          },\n          {\n            \"X\": 0.9274566173553467,\n            \"Y\": 0.5942569375038147\n          }\n        ]\n      },\n      \"Id\": \"9d62c16b-6c25-40f5-9c6d-988abad7f325\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80010986328125,\n      \"Text\": \"PLAN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03714274615049362,\n          \"Height\": 0.008299584500491619,\n          \"Left\": 0.6806514859199524,\n          \"Top\": 0.594454288482666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7177942395210266,\n            \"Y\": 0.602667510509491\n          },\n          {\n            \"X\": 0.6806711554527283,\n            \"Y\": 0.6027538776397705\n          },\n          {\n            \"X\": 0.6806514859199524,\n            \"Y\": 0.5945406556129456\n          },\n          {\n            \"X\": 0.7177746295928955,\n            \"Y\": 0.594454288482666\n          }\n        ]\n      },\n      \"Id\": \"46b8c23a-4465-4123-8b19-00a14050e1eb\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68096160888672,\n      \"Text\": \"ID:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017845306545495987,\n          \"Height\": 0.008358754217624664,\n          \"Left\": 0.6587852835655212,\n          \"Top\": 0.5943552255630493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6766305565834045,\n            \"Y\": 0.6026725172996521\n          },\n          {\n            \"X\": 0.658805251121521,\n            \"Y\": 0.6027140021324158\n          },\n          {\n            \"X\": 0.6587852835655212,\n            \"Y\": 0.594396710395813\n          },\n          {\n            \"X\": 0.6766106486320496,\n            \"Y\": 0.5943552255630493\n          }\n        ]\n      },\n      \"Id\": \"884c9452-38ab-4108-8960-77be62a6db21\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80132293701172,\n      \"Text\": \"002366148\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06766475737094879,\n          \"Height\": 0.008469046093523502,\n          \"Left\": 0.5811941027641296,\n          \"Top\": 0.594449520111084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6488588452339172,\n            \"Y\": 0.6027612090110779\n          },\n          {\n            \"X\": 0.5812143087387085,\n            \"Y\": 0.6029185652732849\n          },\n          {\n            \"X\": 0.5811941027641296,\n            \"Y\": 0.5946069359779358\n          },\n          {\n            \"X\": 0.6488388180732727,\n            \"Y\": 0.594449520111084\n          }\n        ]\n      },\n      \"Id\": \"f7f6f9f1-db93-4af0-96b8-2be00fe1b9dd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73542785644531,\n      \"Text\": \"CLAIM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044501323252916336,\n          \"Height\": 0.008201420307159424,\n          \"Left\": 0.4757950007915497,\n          \"Top\": 0.594679057598114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5202963352203369,\n            \"Y\": 0.6027769446372986\n          },\n          {\n            \"X\": 0.47581496834754944,\n            \"Y\": 0.6028804779052734\n          },\n          {\n            \"X\": 0.4757950007915497,\n            \"Y\": 0.5947825312614441\n          },\n          {\n            \"X\": 0.5202764868736267,\n            \"Y\": 0.594679057598114\n          }\n        ]\n      },\n      \"Id\": \"a174a934-3e07-40d7-9d2c-41a334773eb7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.92477416992188,\n      \"Text\": \"#:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012403813190758228,\n          \"Height\": 0.008387659676373005,\n          \"Left\": 0.4605981707572937,\n          \"Top\": 0.5945371389389038\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47300198674201965,\n            \"Y\": 0.6028960347175598\n          },\n          {\n            \"X\": 0.46061885356903076,\n            \"Y\": 0.6029248237609863\n          },\n          {\n            \"X\": 0.4605981707572937,\n            \"Y\": 0.5945659875869751\n          },\n          {\n            \"X\": 0.47298136353492737,\n            \"Y\": 0.5945371389389038\n          }\n        ]\n      },\n      \"Id\": \"b089335e-e1d1-4512-bb1a-24d896b1b5f1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72154235839844,\n      \"Text\": \"202209130818\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09060470014810562,\n          \"Height\": 0.008802251890301704,\n          \"Left\": 0.34961599111557007,\n          \"Top\": 0.5941889882087708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4402207136154175,\n            \"Y\": 0.6027805209159851\n          },\n          {\n            \"X\": 0.34963756799697876,\n            \"Y\": 0.6029912829399109\n          },\n          {\n            \"X\": 0.34961599111557007,\n            \"Y\": 0.5943997502326965\n          },\n          {\n            \"X\": 0.4401994049549103,\n            \"Y\": 0.5941889882087708\n          }\n        ]\n      },\n      \"Id\": \"5b6cbcb3-479d-480b-8efc-de9ee7c62a77\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60736083984375,\n      \"Text\": \"GRP\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029414279386401176,\n          \"Height\": 0.008317040279507637,\n          \"Left\": 0.28676146268844604,\n          \"Top\": 0.5944539904594421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31617575883865356,\n            \"Y\": 0.6027026176452637\n          },\n          {\n            \"X\": 0.2867823541164398,\n            \"Y\": 0.6027710437774658\n          },\n          {\n            \"X\": 0.28676146268844604,\n            \"Y\": 0.5945223569869995\n          },\n          {\n            \"X\": 0.31615495681762695,\n            \"Y\": 0.5944539904594421\n          }\n        ]\n      },\n      \"Id\": \"afd3cdc6-f320-4c92-b847-5c2e03b63025\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.32567596435547,\n      \"Text\": \"#:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012137901969254017,\n          \"Height\": 0.008267928846180439,\n          \"Left\": 0.27067264914512634,\n          \"Top\": 0.5944687724113464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2828105390071869,\n            \"Y\": 0.6027085185050964\n          },\n          {\n            \"X\": 0.2706935703754425,\n            \"Y\": 0.6027367115020752\n          },\n          {\n            \"X\": 0.27067264914512634,\n            \"Y\": 0.5944969654083252\n          },\n          {\n            \"X\": 0.2827896773815155,\n            \"Y\": 0.5944687724113464\n          }\n        ]\n      },\n      \"Id\": \"7f8a3269-0f6a-40fb-923d-fafffc4ea8c1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.21053314208984,\n      \"Text\": \"ST0654SHUI01\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09310783445835114,\n          \"Height\": 0.008973052725195885,\n          \"Left\": 0.14750079810619354,\n          \"Top\": 0.5941421389579773\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24060863256454468,\n            \"Y\": 0.6028985977172852\n          },\n          {\n            \"X\": 0.14752338826656342,\n            \"Y\": 0.6031152009963989\n          },\n          {\n            \"X\": 0.14750079810619354,\n            \"Y\": 0.5943586826324463\n          },\n          {\n            \"X\": 0.2405863255262375,\n            \"Y\": 0.5941421389579773\n          }\n        ]\n      },\n      \"Id\": \"460f2b86-fb12-4f21-87b7-aba0d33b1c40\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9725341796875,\n      \"Text\": \"Billed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032148949801921844,\n          \"Height\": 0.007591409608721733,\n          \"Left\": 0.5460500121116638,\n          \"Top\": 0.5815684795379639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781989693641663,\n            \"Y\": 0.5890851020812988\n          },\n          {\n            \"X\": 0.5460683703422546,\n            \"Y\": 0.5891599059104919\n          },\n          {\n            \"X\": 0.5460500121116638,\n            \"Y\": 0.5816432237625122\n          },\n          {\n            \"X\": 0.5781806707382202,\n            \"Y\": 0.5815684795379639\n          }\n        ]\n      },\n      \"Id\": \"87b89c83-1741-4b0f-a869-109f389edc66\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87433624267578,\n      \"Text\": \"PPO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023862464353442192,\n          \"Height\": 0.007193189579993486,\n          \"Left\": 0.48041799664497375,\n          \"Top\": 0.5817707777023315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5042804479598999,\n            \"Y\": 0.5889084935188293\n          },\n          {\n            \"X\": 0.4804356098175049,\n            \"Y\": 0.5889639854431152\n          },\n          {\n            \"X\": 0.48041799664497375,\n            \"Y\": 0.5818262100219727\n          },\n          {\n            \"X\": 0.5042629241943359,\n            \"Y\": 0.5817707777023315\n          }\n        ]\n      },\n      \"Id\": \"0b7ce1c1-af4b-4b83-9c9e-882d0ddcd228\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71550750732422,\n      \"Text\": \"Non\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022434741258621216,\n          \"Height\": 0.007217978592962027,\n          \"Left\": 0.4111204445362091,\n          \"Top\": 0.581731915473938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4335551857948303,\n            \"Y\": 0.5888977646827698\n          },\n          {\n            \"X\": 0.41113826632499695,\n            \"Y\": 0.5889499187469482\n          },\n          {\n            \"X\": 0.4111204445362091,\n            \"Y\": 0.5817840695381165\n          },\n          {\n            \"X\": 0.43353739380836487,\n            \"Y\": 0.581731915473938\n          }\n        ]\n      },\n      \"Id\": \"59bd3a39-c905-4453-9d7e-7d2bae16c270\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84123229980469,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026326004415750504,\n          \"Height\": 0.00745387515053153,\n          \"Left\": 0.8947525024414062,\n          \"Top\": 0.5759616494178772\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9210785031318665,\n            \"Y\": 0.5833542943000793\n          },\n          {\n            \"X\": 0.8947696685791016,\n            \"Y\": 0.5834155082702637\n          },\n          {\n            \"X\": 0.8947525024414062,\n            \"Y\": 0.5760228633880615\n          },\n          {\n            \"X\": 0.9210613965988159,\n            \"Y\": 0.5759616494178772\n          }\n        ]\n      },\n      \"Id\": \"c498bd2d-7a35-4058-a285-af263e2d9a1e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90776824951172,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011954725719988346,\n          \"Height\": 0.007450136821717024,\n          \"Left\": 0.8793419599533081,\n          \"Top\": 0.5760732293128967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8912966847419739,\n            \"Y\": 0.5834956169128418\n          },\n          {\n            \"X\": 0.8793591856956482,\n            \"Y\": 0.5835233926773071\n          },\n          {\n            \"X\": 0.8793419599533081,\n            \"Y\": 0.5761010050773621\n          },\n          {\n            \"X\": 0.891279399394989,\n            \"Y\": 0.5760732293128967\n          }\n        ]\n      },\n      \"Id\": \"2d726733-0a1b-4a9f-b9b4-58a3546ef1c0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8766098022461,\n      \"Text\": \"Service\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04336778447031975,\n          \"Height\": 0.007641373202204704,\n          \"Left\": 0.8328675627708435,\n          \"Top\": 0.5759536623954773\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8762353658676147,\n            \"Y\": 0.5834941864013672\n          },\n          {\n            \"X\": 0.8328852653503418,\n            \"Y\": 0.5835950374603271\n          },\n          {\n            \"X\": 0.8328675627708435,\n            \"Y\": 0.5760545134544373\n          },\n          {\n            \"X\": 0.876217782497406,\n            \"Y\": 0.5759536623954773\n          }\n        ]\n      },\n      \"Id\": \"481e40d7-0616-4b63-8e2a-0e46cbb31be8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9566879272461,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03421858325600624,\n          \"Height\": 0.007657462265342474,\n          \"Left\": 0.33492469787597656,\n          \"Top\": 0.5814123749732971\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3691432774066925,\n            \"Y\": 0.5889902710914612\n          },\n          {\n            \"X\": 0.3349437713623047,\n            \"Y\": 0.5890698432922363\n          },\n          {\n            \"X\": 0.33492469787597656,\n            \"Y\": 0.5814919471740723\n          },\n          {\n            \"X\": 0.36912432312965393,\n            \"Y\": 0.5814123749732971\n          }\n        ]\n      },\n      \"Id\": \"9e9d0589-a4b7-4f21-bb15-db8384199564\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79985046386719,\n      \"Text\": \"Deductible\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0628536120057106,\n          \"Height\": 0.007828352972865105,\n          \"Left\": 0.25140389800071716,\n          \"Top\": 0.5813519954681396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31425750255584717,\n            \"Y\": 0.5890341401100159\n          },\n          {\n            \"X\": 0.2514234483242035,\n            \"Y\": 0.5891803503036499\n          },\n          {\n            \"X\": 0.25140389800071716,\n            \"Y\": 0.5814981460571289\n          },\n          {\n            \"X\": 0.31423813104629517,\n            \"Y\": 0.5813519954681396\n          }\n        ]\n      },\n      \"Id\": \"bdf22317-407b-4234-b0c1-4b29101ea7bb\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.59220886230469,\n      \"Text\": \"Patient\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04296339675784111,\n          \"Height\": 0.008126743137836456,\n          \"Left\": 0.191646546125412,\n          \"Top\": 0.5815037488937378\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2346099466085434,\n            \"Y\": 0.5895305871963501\n          },\n          {\n            \"X\": 0.19166713953018188,\n            \"Y\": 0.5896304845809937\n          },\n          {\n            \"X\": 0.191646546125412,\n            \"Y\": 0.5816036462783813\n          },\n          {\n            \"X\": 0.23458947241306305,\n            \"Y\": 0.5815037488937378\n          }\n        ]\n      },\n      \"Id\": \"7fa9b3de-8c7b-47e1-a8cb-e5a1f3806cc4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80757141113281,\n      \"Text\": \"Procedure\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06240997090935707,\n          \"Height\": 0.00775545509532094,\n          \"Left\": 0.6792393922805786,\n          \"Top\": 0.5759565830230713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.741649329662323,\n            \"Y\": 0.5835668444633484\n          },\n          {\n            \"X\": 0.6792576313018799,\n            \"Y\": 0.5837119817733765\n          },\n          {\n            \"X\": 0.6792393922805786,\n            \"Y\": 0.5761017203330994\n          },\n          {\n            \"X\": 0.741631269454956,\n            \"Y\": 0.5759565830230713\n          }\n        ]\n      },\n      \"Id\": \"d69f9ff8-96ae-4d33-946b-a6ebd26e7958\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80506134033203,\n      \"Text\": \"Paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024808144196867943,\n          \"Height\": 0.007324195466935635,\n          \"Left\": 0.13005636632442474,\n          \"Top\": 0.5762420296669006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15486450493335724,\n            \"Y\": 0.5835085511207581\n          },\n          {\n            \"X\": 0.13007515668869019,\n            \"Y\": 0.5835662484169006\n          },\n          {\n            \"X\": 0.13005636632442474,\n            \"Y\": 0.5762997269630432\n          },\n          {\n            \"X\": 0.15484577417373657,\n            \"Y\": 0.5762420296669006\n          }\n        ]\n      },\n      \"Id\": \"34546521-c040-4642-9fd3-e9a40fd5b99a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97759246826172,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04846351221203804,\n          \"Height\": 0.007398147135972977,\n          \"Left\": 0.5375468730926514,\n          \"Top\": 0.5709258317947388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5860103964805603,\n            \"Y\": 0.5782113075256348\n          },\n          {\n            \"X\": 0.5375646948814392,\n            \"Y\": 0.578324019908905\n          },\n          {\n            \"X\": 0.5375468730926514,\n            \"Y\": 0.571038544178009\n          },\n          {\n            \"X\": 0.585992693901062,\n            \"Y\": 0.5709258317947388\n          }\n        ]\n      },\n      \"Id\": \"028e877b-d149-4dc7-9e33-b00354121859\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85255432128906,\n      \"Text\": \"Discount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052231524139642715,\n          \"Height\": 0.007622379809617996,\n          \"Left\": 0.4656895697116852,\n          \"Top\": 0.570999026298523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5179210901260376,\n            \"Y\": 0.578499972820282\n          },\n          {\n            \"X\": 0.4657081067562103,\n            \"Y\": 0.5786214470863342\n          },\n          {\n            \"X\": 0.4656895697116852,\n            \"Y\": 0.5711205005645752\n          },\n          {\n            \"X\": 0.517902672290802,\n            \"Y\": 0.570999026298523\n          }\n        ]\n      },\n      \"Id\": \"aee42708-c5d7-4a7b-9beb-3b5a6716548f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.95447540283203,\n      \"Text\": \"Ref.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022012896835803986,\n          \"Height\": 0.007452758494764566,\n          \"Left\": 0.07803347706794739,\n          \"Top\": 0.5762735605239868\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10004637390375137,\n            \"Y\": 0.5836751461029053\n          },\n          {\n            \"X\": 0.07805274426937103,\n            \"Y\": 0.5837263464927673\n          },\n          {\n            \"X\": 0.07803347706794739,\n            \"Y\": 0.5763247013092041\n          },\n          {\n            \"X\": 0.10002715140581131,\n            \"Y\": 0.5762735605239868\n          }\n        ]\n      },\n      \"Id\": \"b77ac117-e662-474e-9116-f48af82d34e5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84352111816406,\n      \"Text\": \"Covered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05028693750500679,\n          \"Height\": 0.007648003753274679,\n          \"Left\": 0.39696094393730164,\n          \"Top\": 0.5709769129753113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44724786281585693,\n            \"Y\": 0.5785079598426819\n          },\n          {\n            \"X\": 0.3969797194004059,\n            \"Y\": 0.5786249041557312\n          },\n          {\n            \"X\": 0.39696094393730164,\n            \"Y\": 0.5710937976837158\n          },\n          {\n            \"X\": 0.44722920656204224,\n            \"Y\": 0.5709769129753113\n          }\n        ]\n      },\n      \"Id\": \"b4a2a699-1d12-4759-8edb-e87d5bce1171\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91952514648438,\n      \"Text\": \"Coverage\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0569581612944603,\n          \"Height\": 0.009313305839896202,\n          \"Left\": 0.3237423300743103,\n          \"Top\": 0.5692269206047058\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3807004690170288,\n            \"Y\": 0.5784077644348145\n          },\n          {\n            \"X\": 0.32376545667648315,\n            \"Y\": 0.5785402059555054\n          },\n          {\n            \"X\": 0.3237423300743103,\n            \"Y\": 0.5693593621253967\n          },\n          {\n            \"X\": 0.3806775212287903,\n            \"Y\": 0.5692269206047058\n          }\n        ]\n      },\n      \"Id\": \"35ce46b2-547a-4995-8a1c-8d23b1d0bc7d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86260223388672,\n      \"Text\": \"Co-Pays\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048345278948545456,\n          \"Height\": 0.00911044143140316,\n          \"Left\": 0.25821569561958313,\n          \"Top\": 0.569307804107666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3065609931945801,\n            \"Y\": 0.5783058404922485\n          },\n          {\n            \"X\": 0.2582385838031769,\n            \"Y\": 0.5784182548522949\n          },\n          {\n            \"X\": 0.25821569561958313,\n            \"Y\": 0.5694202184677124\n          },\n          {\n            \"X\": 0.30653825402259827,\n            \"Y\": 0.569307804107666\n          }\n        ]\n      },\n      \"Id\": \"93b231d2-45e6-4e8c-accc-685ff45b4937\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.993408203125,\n      \"Text\": \"Resp.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033221643418073654,\n          \"Height\": 0.008997433818876743,\n          \"Left\": 0.19592805206775665,\n          \"Top\": 0.5693479776382446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2291496843099594,\n            \"Y\": 0.5782681703567505\n          },\n          {\n            \"X\": 0.19595091044902802,\n            \"Y\": 0.5783454179763794\n          },\n          {\n            \"X\": 0.19592805206775665,\n            \"Y\": 0.5694252252578735\n          },\n          {\n            \"X\": 0.2291269302368164,\n            \"Y\": 0.5693479776382446\n          }\n        ]\n      },\n      \"Id\": \"2c115e1a-2aec-410c-815d-106347981a86\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.91075897216797,\n      \"Text\": \"90651\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030300261452794075,\n          \"Height\": 0.007113551255315542,\n          \"Left\": 0.7930263876914978,\n          \"Top\": 0.5569854378700256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8233266472816467,\n            \"Y\": 0.5640285611152649\n          },\n          {\n            \"X\": 0.7930429577827454,\n            \"Y\": 0.5640989542007446\n          },\n          {\n            \"X\": 0.7930263876914978,\n            \"Y\": 0.5570558905601501\n          },\n          {\n            \"X\": 0.8233100771903992,\n            \"Y\": 0.5569854378700256\n          }\n        ]\n      },\n      \"Id\": \"65c96d37-8a7c-4f6d-bd9a-46dd268a58c7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.63568878173828,\n      \"Text\": \"9VHPV\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037273142486810684,\n          \"Height\": 0.007033487316220999,\n          \"Left\": 0.7465814352035522,\n          \"Top\": 0.5571950674057007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7838545441627502,\n            \"Y\": 0.5641419291496277\n          },\n          {\n            \"X\": 0.7465978860855103,\n            \"Y\": 0.5642285346984863\n          },\n          {\n            \"X\": 0.7465814352035522,\n            \"Y\": 0.5572817325592041\n          },\n          {\n            \"X\": 0.783838152885437,\n            \"Y\": 0.5571950674057007\n          }\n        ]\n      },\n      \"Id\": \"1f5b631c-1226-43a2-83b8-b17cfd678924\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57083892822266,\n      \"Text\": \"VACC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031726397573947906,\n          \"Height\": 0.007214220240712166,\n          \"Left\": 0.7129661440849304,\n          \"Top\": 0.5570896863937378\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7446925640106201,\n            \"Y\": 0.5642301440238953\n          },\n          {\n            \"X\": 0.7129831910133362,\n            \"Y\": 0.5643038749694824\n          },\n          {\n            \"X\": 0.7129661440849304,\n            \"Y\": 0.557163417339325\n          },\n          {\n            \"X\": 0.7446755766868591,\n            \"Y\": 0.5570896863937378\n          }\n        ]\n      },\n      \"Id\": \"c2f617a7-49e1-4960-8a70-49017e9a096c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49458312988281,\n      \"Text\": \"2/3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0159636028110981,\n          \"Height\": 0.007103183772414923,\n          \"Left\": 0.6948711276054382,\n          \"Top\": 0.5572023391723633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7108347415924072,\n            \"Y\": 0.5642684102058411\n          },\n          {\n            \"X\": 0.6948880553245544,\n            \"Y\": 0.5643054842948914\n          },\n          {\n            \"X\": 0.6948711276054382,\n            \"Y\": 0.5572394132614136\n          },\n          {\n            \"X\": 0.7108178734779358,\n            \"Y\": 0.5572023391723633\n          }\n        ]\n      },\n      \"Id\": \"15f3c877-8e7e-4556-9341-39246447c62a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89837646484375,\n      \"Text\": \"DOSE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031993187963962555,\n          \"Height\": 0.007434789091348648,\n          \"Left\": 0.6606543064117432,\n          \"Top\": 0.5570482015609741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6926474571228027,\n            \"Y\": 0.5644086003303528\n          },\n          {\n            \"X\": 0.6606719493865967,\n            \"Y\": 0.5644829869270325\n          },\n          {\n            \"X\": 0.6606543064117432,\n            \"Y\": 0.5571225881576538\n          },\n          {\n            \"X\": 0.692629873752594,\n            \"Y\": 0.5570482015609741\n          }\n        ]\n      },\n      \"Id\": \"f05fd883-bc94-4e2a-8918-bff748357c7a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8462142944336,\n      \"Text\": \"SCHED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03898210823535919,\n          \"Height\": 0.007325191982090473,\n          \"Left\": 0.6190745234489441,\n          \"Top\": 0.55722576379776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6580566167831421,\n            \"Y\": 0.564460277557373\n          },\n          {\n            \"X\": 0.6190919876098633,\n            \"Y\": 0.5645509362220764\n          },\n          {\n            \"X\": 0.6190745234489441,\n            \"Y\": 0.5573163628578186\n          },\n          {\n            \"X\": 0.6580392122268677,\n            \"Y\": 0.55722576379776\n          }\n        ]\n      },\n      \"Id\": \"7ea4db7f-f7f7-496a-9c2c-eda88bf2f686\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52268981933594,\n      \"Text\": \"IM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012762418016791344,\n          \"Height\": 0.007290517445653677,\n          \"Left\": 0.6034279465675354,\n          \"Top\": 0.5574319362640381\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6161903142929077,\n            \"Y\": 0.5646927952766418\n          },\n          {\n            \"X\": 0.6034455299377441,\n            \"Y\": 0.5647224187850952\n          },\n          {\n            \"X\": 0.6034279465675354,\n            \"Y\": 0.5574615597724915\n          },\n          {\n            \"X\": 0.6161727905273438,\n            \"Y\": 0.5574319362640381\n          }\n        ]\n      },\n      \"Id\": \"37e70d03-ece0-4af2-a8b6-f675f537d86a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.08270263671875,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09511898458003998,\n          \"Height\": 0.007603700738400221,\n          \"Left\": 0.8293141722679138,\n          \"Top\": 0.5515025854110718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.924433171749115,\n            \"Y\": 0.5588850975036621\n          },\n          {\n            \"X\": 0.8293314576148987,\n            \"Y\": 0.5591062903404236\n          },\n          {\n            \"X\": 0.8293141722679138,\n            \"Y\": 0.5517237782478333\n          },\n          {\n            \"X\": 0.9244160652160645,\n            \"Y\": 0.5515025854110718\n          }\n        ]\n      },\n      \"Id\": \"274f3491-1a54-45f0-a13e-10c1e4ccb023\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92021942138672,\n      \"Text\": \"$235.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041995398700237274,\n          \"Height\": 0.007730985060334206,\n          \"Left\": 0.5299240350723267,\n          \"Top\": 0.5516448020935059\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5719194412231445,\n            \"Y\": 0.5592781901359558\n          },\n          {\n            \"X\": 0.5299426913261414,\n            \"Y\": 0.5593758225440979\n          },\n          {\n            \"X\": 0.5299240350723267,\n            \"Y\": 0.551742434501648\n          },\n          {\n            \"X\": 0.5719008445739746,\n            \"Y\": 0.5516448020935059\n          }\n        ]\n      },\n      \"Id\": \"31898d7c-710d-4ffa-8d82-b42bf6f5f2a3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91783142089844,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02944253571331501,\n          \"Height\": 0.007715765852481127,\n          \"Left\": 0.45983439683914185,\n          \"Top\": 0.5515719056129456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4892769157886505,\n            \"Y\": 0.559219241142273\n          },\n          {\n            \"X\": 0.45985329151153564,\n            \"Y\": 0.5592876672744751\n          },\n          {\n            \"X\": 0.45983439683914185,\n            \"Y\": 0.5516403913497925\n          },\n          {\n            \"X\": 0.4892580807209015,\n            \"Y\": 0.5515719056129456\n          }\n        ]\n      },\n      \"Id\": \"f4f4d77f-7d5e-414f-bf12-fdf0675c7e64\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8943099975586,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029035041108727455,\n          \"Height\": 0.007552310358732939,\n          \"Left\": 0.39058685302734375,\n          \"Top\": 0.551599383354187\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41962188482284546,\n            \"Y\": 0.5590841770172119\n          },\n          {\n            \"X\": 0.39060553908348083,\n            \"Y\": 0.5591516494750977\n          },\n          {\n            \"X\": 0.39058685302734375,\n            \"Y\": 0.5516668558120728\n          },\n          {\n            \"X\": 0.41960328817367554,\n            \"Y\": 0.551599383354187\n          }\n        ]\n      },\n      \"Id\": \"20d23770-30bc-4456-90f9-11b7b0d6d0b0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86566162109375,\n      \"Text\": \"USE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021389489993453026,\n          \"Height\": 0.007040532771497965,\n          \"Left\": 0.801784098148346,\n          \"Top\": 0.5465641021728516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8231735825538635,\n            \"Y\": 0.553554892539978\n          },\n          {\n            \"X\": 0.801800549030304,\n            \"Y\": 0.5536046028137207\n          },\n          {\n            \"X\": 0.801784098148346,\n            \"Y\": 0.5466138124465942\n          },\n          {\n            \"X\": 0.8231571912765503,\n            \"Y\": 0.5465641021728516\n          }\n        ]\n      },\n      \"Id\": \"186b226e-63d0-4138-bfb1-81630e59b8d8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87655639648438,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029432399198412895,\n          \"Height\": 0.007856114767491817,\n          \"Left\": 0.32050350308418274,\n          \"Top\": 0.5513530373573303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.349935919046402,\n            \"Y\": 0.5591407418251038\n          },\n          {\n            \"X\": 0.32052314281463623,\n            \"Y\": 0.5592091679573059\n          },\n          {\n            \"X\": 0.32050350308418274,\n            \"Y\": 0.5514214634895325\n          },\n          {\n            \"X\": 0.34991636872291565,\n            \"Y\": 0.5513530373573303\n          }\n        ]\n      },\n      \"Id\": \"d259d987-ae38-4b66-8337-735c82961feb\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84952545166016,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029292507097125053,\n          \"Height\": 0.007662121672183275,\n          \"Left\": 0.2506519556045532,\n          \"Top\": 0.5515263676643372\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27994444966316223,\n            \"Y\": 0.5591203570365906\n          },\n          {\n            \"X\": 0.25067126750946045,\n            \"Y\": 0.5591884851455688\n          },\n          {\n            \"X\": 0.2506519556045532,\n            \"Y\": 0.5515944361686707\n          },\n          {\n            \"X\": 0.2799251973628998,\n            \"Y\": 0.5515263676643372\n          }\n        ]\n      },\n      \"Id\": \"72b60a5e-6cb8-4a81-a2bd-92b6d2dede25\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85860443115234,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029640836641192436,\n          \"Height\": 0.00794890895485878,\n          \"Left\": 0.18037058413028717,\n          \"Top\": 0.5514008402824402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21001142263412476,\n            \"Y\": 0.5592808127403259\n          },\n          {\n            \"X\": 0.18039081990718842,\n            \"Y\": 0.5593497157096863\n          },\n          {\n            \"X\": 0.18037058413028717,\n            \"Y\": 0.5514697432518005\n          },\n          {\n            \"X\": 0.20999126136302948,\n            \"Y\": 0.5514008402824402\n          }\n        ]\n      },\n      \"Id\": \"fb884383-1768-4193-a600-9d7e372859de\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96714782714844,\n      \"Text\": \"$235.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04201674461364746,\n          \"Height\": 0.00812111422419548,\n          \"Left\": 0.11078153550624847,\n          \"Top\": 0.5513263940811157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15279828011989594,\n            \"Y\": 0.5593498349189758\n          },\n          {\n            \"X\": 0.11080233752727509,\n            \"Y\": 0.5594474673271179\n          },\n          {\n            \"X\": 0.11078153550624847,\n            \"Y\": 0.5514240860939026\n          },\n          {\n            \"X\": 0.15277759730815887,\n            \"Y\": 0.5513263940811157\n          }\n        ]\n      },\n      \"Id\": \"325ed476-9901-4b5d-88f7-15b54d2b1fed\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90373229980469,\n      \"Text\": \"90471\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03071044757962227,\n          \"Height\": 0.007146997842937708,\n          \"Left\": 0.7924966216087341,\n          \"Top\": 0.5318374633789062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8232070803642273,\n            \"Y\": 0.5389130711555481\n          },\n          {\n            \"X\": 0.7925133109092712,\n            \"Y\": 0.538984477519989\n          },\n          {\n            \"X\": 0.7924966216087341,\n            \"Y\": 0.5319088697433472\n          },\n          {\n            \"X\": 0.8231905102729797,\n            \"Y\": 0.5318374633789062\n          }\n        ]\n      },\n      \"Id\": \"a65ee9cd-284b-4721-b25b-b068b8b4d9d0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.72640991210938,\n      \"Text\": \":\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.002768694655969739,\n          \"Height\": 0.005552365910261869,\n          \"Left\": 0.7871940732002258,\n          \"Top\": 0.5322414040565491\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7899627685546875,\n            \"Y\": 0.5377873778343201\n          },\n          {\n            \"X\": 0.7872071862220764,\n            \"Y\": 0.537793755531311\n          },\n          {\n            \"X\": 0.7871940732002258,\n            \"Y\": 0.53224778175354\n          },\n          {\n            \"X\": 0.7899497151374817,\n            \"Y\": 0.5322414040565491\n          }\n        ]\n      },\n      \"Id\": \"76227ce9-784d-4870-a4bc-220cc6700f0c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68738555908203,\n      \"Text\": \"IM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012482468038797379,\n          \"Height\": 0.006991862785071135,\n          \"Left\": 0.7717300653457642,\n          \"Top\": 0.5322626233100891\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7842125296592712,\n            \"Y\": 0.5392254590988159\n          },\n          {\n            \"X\": 0.7717465758323669,\n            \"Y\": 0.5392544865608215\n          },\n          {\n            \"X\": 0.7717300653457642,\n            \"Y\": 0.53229159116745\n          },\n          {\n            \"X\": 0.784196138381958,\n            \"Y\": 0.5322626233100891\n          }\n        ]\n      },\n      \"Id\": \"9ac589ee-e5c9-4c50-aacf-d4a76c011943\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.03153228759766,\n      \"Text\": \"ADM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025718212127685547,\n          \"Height\": 0.00697470735758543,\n          \"Left\": 0.7441511154174805,\n          \"Top\": 0.5321422219276428\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.769869327545166,\n            \"Y\": 0.5390571355819702\n          },\n          {\n            \"X\": 0.7441675662994385,\n            \"Y\": 0.5391169190406799\n          },\n          {\n            \"X\": 0.7441511154174805,\n            \"Y\": 0.5322020053863525\n          },\n          {\n            \"X\": 0.7698529958724976,\n            \"Y\": 0.5321422219276428\n          }\n        ]\n      },\n      \"Id\": \"9c06c391-c86e-4cf2-8411-65c9aaf31173\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.53067779541016,\n      \"Text\": \"PRQ\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02427426353096962,\n          \"Height\": 0.007466680835932493,\n          \"Left\": 0.7177109718322754,\n          \"Top\": 0.5319002270698547\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7419852614402771,\n            \"Y\": 0.5393104553222656\n          },\n          {\n            \"X\": 0.7177286744117737,\n            \"Y\": 0.5393669009208679\n          },\n          {\n            \"X\": 0.7177109718322754,\n            \"Y\": 0.5319566130638123\n          },\n          {\n            \"X\": 0.7419676780700684,\n            \"Y\": 0.5319002270698547\n          }\n        ]\n      },\n      \"Id\": \"98797fe2-beef-4cd8-9c54-ff46da997b70\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79105377197266,\n      \"Text\": \"ID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011189711280167103,\n          \"Height\": 0.007020266260951757,\n          \"Left\": 0.7040619254112244,\n          \"Top\": 0.532119870185852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.715251624584198,\n            \"Y\": 0.5391141176223755\n          },\n          {\n            \"X\": 0.7040786147117615,\n            \"Y\": 0.5391401052474976\n          },\n          {\n            \"X\": 0.7040619254112244,\n            \"Y\": 0.5321458578109741\n          },\n          {\n            \"X\": 0.7152349352836609,\n            \"Y\": 0.532119870185852\n          }\n        ]\n      },\n      \"Id\": \"4263a379-1119-46c0-8842-96bb1cf5e1af\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.19416809082031,\n      \"Text\": \"SUBQ/IM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0465325303375721,\n          \"Height\": 0.00710328109562397,\n          \"Left\": 0.6550310850143433,\n          \"Top\": 0.5321616530418396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7015635967254639,\n            \"Y\": 0.5391567349433899\n          },\n          {\n            \"X\": 0.6550478935241699,\n            \"Y\": 0.5392649173736572\n          },\n          {\n            \"X\": 0.6550310850143433,\n            \"Y\": 0.5322697758674622\n          },\n          {\n            \"X\": 0.7015469074249268,\n            \"Y\": 0.5321616530418396\n          }\n        ]\n      },\n      \"Id\": \"16023209-be36-418b-bd9b-b5d037a992e4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78215026855469,\n      \"Text\": \"NJXS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02836422249674797,\n          \"Height\": 0.007239146623760462,\n          \"Left\": 0.6241559982299805,\n          \"Top\": 0.5322228670120239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6525202393531799,\n            \"Y\": 0.5393960475921631\n          },\n          {\n            \"X\": 0.6241733431816101,\n            \"Y\": 0.5394620299339294\n          },\n          {\n            \"X\": 0.6241559982299805,\n            \"Y\": 0.5322887897491455\n          },\n          {\n            \"X\": 0.6525029540061951,\n            \"Y\": 0.5322228670120239\n          }\n        ]\n      },\n      \"Id\": \"a663a990-e715-4646-a4e7-6e1fe7208cfc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.77951049804688,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004850860219448805,\n          \"Height\": 0.006733164191246033,\n          \"Left\": 0.6164044737815857,\n          \"Top\": 0.5322695970535278\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6212553381919861,\n            \"Y\": 0.5389915108680725\n          },\n          {\n            \"X\": 0.6164207458496094,\n            \"Y\": 0.5390027761459351\n          },\n          {\n            \"X\": 0.6164044737815857,\n            \"Y\": 0.5322808623313904\n          },\n          {\n            \"X\": 0.6212391257286072,\n            \"Y\": 0.5322695970535278\n          }\n        ]\n      },\n      \"Id\": \"dcc6e787-c295-4999-84e7-bc907b2f68a5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.86044311523438,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09531670808792114,\n          \"Height\": 0.007611058186739683,\n          \"Left\": 0.8292961716651917,\n          \"Top\": 0.5263999700546265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9246128797531128,\n            \"Y\": 0.5337893962860107\n          },\n          {\n            \"X\": 0.8293135166168213,\n            \"Y\": 0.5340110063552856\n          },\n          {\n            \"X\": 0.8292961716651917,\n            \"Y\": 0.5266215801239014\n          },\n          {\n            \"X\": 0.924595832824707,\n            \"Y\": 0.5263999700546265\n          }\n        ]\n      },\n      \"Id\": \"60e3d9a9-e114-4580-b315-25d7c4d8078f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89684295654297,\n      \"Text\": \"$26.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03559179976582527,\n          \"Height\": 0.007843618281185627,\n          \"Left\": 0.5298241376876831,\n          \"Top\": 0.5263326168060303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5654159188270569,\n            \"Y\": 0.5340934991836548\n          },\n          {\n            \"X\": 0.5298431515693665,\n            \"Y\": 0.534176230430603\n          },\n          {\n            \"X\": 0.5298241376876831,\n            \"Y\": 0.5264153480529785\n          },\n          {\n            \"X\": 0.5653970241546631,\n            \"Y\": 0.5263326168060303\n          }\n        ]\n      },\n      \"Id\": \"2bb7e07d-5e88-444b-8c9a-d036cd4108c9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90023803710938,\n      \"Text\": \"$16.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03576529026031494,\n          \"Height\": 0.007825169712305069,\n          \"Left\": 0.4598364531993866,\n          \"Top\": 0.5264539122581482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4956017732620239,\n            \"Y\": 0.5341959595680237\n          },\n          {\n            \"X\": 0.4598556160926819,\n            \"Y\": 0.5342791080474854\n          },\n          {\n            \"X\": 0.4598364531993866,\n            \"Y\": 0.5265370607376099\n          },\n          {\n            \"X\": 0.4955826997756958,\n            \"Y\": 0.5264539122581482\n          }\n        ]\n      },\n      \"Id\": \"08e54242-88ec-431f-b2fd-fa1066635975\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82511901855469,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02930936962366104,\n          \"Height\": 0.007810001261532307,\n          \"Left\": 0.39034298062324524,\n          \"Top\": 0.5262539386749268\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4196523427963257,\n            \"Y\": 0.5339958071708679\n          },\n          {\n            \"X\": 0.39036229252815247,\n            \"Y\": 0.5340639352798462\n          },\n          {\n            \"X\": 0.39034298062324524,\n            \"Y\": 0.526322066783905\n          },\n          {\n            \"X\": 0.41963309049606323,\n            \"Y\": 0.5262539386749268\n          }\n        ]\n      },\n      \"Id\": \"40856e98-d02d-4d9f-9928-17422cd2e83a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47007751464844,\n      \"Text\": \"VACCINE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047123536467552185,\n          \"Height\": 0.007141673471778631,\n          \"Left\": 0.7763349413871765,\n          \"Top\": 0.5214401483535767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8234584927558899,\n            \"Y\": 0.5284722447395325\n          },\n          {\n            \"X\": 0.7763515710830688,\n            \"Y\": 0.5285817980766296\n          },\n          {\n            \"X\": 0.7763349413871765,\n            \"Y\": 0.5215497016906738\n          },\n          {\n            \"X\": 0.8234419822692871,\n            \"Y\": 0.5214401483535767\n          }\n        ]\n      },\n      \"Id\": \"a8584ac3-dd2a-41f1-baad-c80273c79de8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83589935302734,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029333336278796196,\n          \"Height\": 0.007916495203971863,\n          \"Left\": 0.32044509053230286,\n          \"Top\": 0.5261660218238831\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3497784435749054,\n            \"Y\": 0.5340143442153931\n          },\n          {\n            \"X\": 0.3204648792743683,\n            \"Y\": 0.5340825319290161\n          },\n          {\n            \"X\": 0.32044509053230286,\n            \"Y\": 0.5262342095375061\n          },\n          {\n            \"X\": 0.34975874423980713,\n            \"Y\": 0.5261660218238831\n          }\n        ]\n      },\n      \"Id\": \"6f7316ca-88ac-4706-abe4-930698453878\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90959930419922,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02910503000020981,\n          \"Height\": 0.007632032502442598,\n          \"Left\": 0.25067582726478577,\n          \"Top\": 0.5264413356781006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27978086471557617,\n            \"Y\": 0.5340057611465454\n          },\n          {\n            \"X\": 0.2506950795650482,\n            \"Y\": 0.5340734124183655\n          },\n          {\n            \"X\": 0.25067582726478577,\n            \"Y\": 0.5265089869499207\n          },\n          {\n            \"X\": 0.2797617018222809,\n            \"Y\": 0.5264413356781006\n          }\n        ]\n      },\n      \"Id\": \"4deefc51-253c-4dbc-a410-9e79754ce04b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8736572265625,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02932196483016014,\n          \"Height\": 0.007875099778175354,\n          \"Left\": 0.18049925565719604,\n          \"Top\": 0.5262616872787476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2098212093114853,\n            \"Y\": 0.5340685844421387\n          },\n          {\n            \"X\": 0.18051929771900177,\n            \"Y\": 0.5341367721557617\n          },\n          {\n            \"X\": 0.18049925565719604,\n            \"Y\": 0.5263298153877258\n          },\n          {\n            \"X\": 0.20980124175548553,\n            \"Y\": 0.5262616872787476\n          }\n        ]\n      },\n      \"Id\": \"864640b9-8621-4d77-a068-c26d5265ed24\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9498291015625,\n      \"Text\": \"$10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035697199404239655,\n          \"Height\": 0.007790425792336464,\n          \"Left\": 0.11076558381319046,\n          \"Top\": 0.5263655185699463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14646278321743011,\n            \"Y\": 0.534072995185852\n          },\n          {\n            \"X\": 0.11078556627035141,\n            \"Y\": 0.5341559648513794\n          },\n          {\n            \"X\": 0.11076558381319046,\n            \"Y\": 0.5264484882354736\n          },\n          {\n            \"X\": 0.14644289016723633,\n            \"Y\": 0.5263655185699463\n          }\n        ]\n      },\n      \"Id\": \"3b8a156f-42f8-435a-b94b-577e0ff06bbd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.32735443115234,\n      \"Text\": \"12183\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028097791597247124,\n          \"Height\": 0.007159462198615074,\n          \"Left\": 0.07544352859258652,\n          \"Top\": 0.5268439054489136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10354132205247879,\n            \"Y\": 0.5339380502700806\n          },\n          {\n            \"X\": 0.07546200603246689,\n            \"Y\": 0.5340033769607544\n          },\n          {\n            \"X\": 0.07544352859258652,\n            \"Y\": 0.5269092321395874\n          },\n          {\n            \"X\": 0.10352291166782379,\n            \"Y\": 0.5268439054489136\n          }\n        ]\n      },\n      \"Id\": \"3d91bcd4-afe3-4393-861d-b11c02509c94\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70059967041016,\n      \"Text\": \"Totals:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038331978023052216,\n          \"Height\": 0.007478117011487484,\n          \"Left\": 0.5997524261474609,\n          \"Top\": 0.5067843794822693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6380844116210938,\n            \"Y\": 0.5141733884811401\n          },\n          {\n            \"X\": 0.5997703671455383,\n            \"Y\": 0.5142624974250793\n          },\n          {\n            \"X\": 0.5997524261474609,\n            \"Y\": 0.5068734884262085\n          },\n          {\n            \"X\": 0.6380665898323059,\n            \"Y\": 0.5067843794822693\n          }\n        ]\n      },\n      \"Id\": \"1f7986fb-1799-4bfc-b1b1-7352d18ef86b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93464660644531,\n      \"Text\": \"$261.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04179539531469345,\n          \"Height\": 0.00827046763151884,\n          \"Left\": 0.5297731757164001,\n          \"Top\": 0.5063973069190979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5715685486793518,\n            \"Y\": 0.5145705938339233\n          },\n          {\n            \"X\": 0.5297932028770447,\n            \"Y\": 0.5146677494049072\n          },\n          {\n            \"X\": 0.5297731757164001,\n            \"Y\": 0.506494402885437\n          },\n          {\n            \"X\": 0.5715487003326416,\n            \"Y\": 0.5063973069190979\n          }\n        ]\n      },\n      \"Id\": \"dacc3ca6-fa10-4b96-8e81-a37214f103a0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92379760742188,\n      \"Text\": \"$16.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035355184227228165,\n          \"Height\": 0.008146868087351322,\n          \"Left\": 0.45984718203544617,\n          \"Top\": 0.5063608288764954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49520236253738403,\n            \"Y\": 0.5144255757331848\n          },\n          {\n            \"X\": 0.45986711978912354,\n            \"Y\": 0.5145077109336853\n          },\n          {\n            \"X\": 0.45984718203544617,\n            \"Y\": 0.5064430236816406\n          },\n          {\n            \"X\": 0.49518251419067383,\n            \"Y\": 0.5063608288764954\n          }\n        ]\n      },\n      \"Id\": \"8b45a66f-d10d-49a6-b65b-1fdad59a2661\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8665771484375,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029414987191557884,\n          \"Height\": 0.008352200500667095,\n          \"Left\": 0.3901572823524475,\n          \"Top\": 0.5061311721801758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41957226395606995,\n            \"Y\": 0.5144150257110596\n          },\n          {\n            \"X\": 0.39017796516418457,\n            \"Y\": 0.5144833922386169\n          },\n          {\n            \"X\": 0.3901572823524475,\n            \"Y\": 0.5061995387077332\n          },\n          {\n            \"X\": 0.41955167055130005,\n            \"Y\": 0.5061311721801758\n          }\n        ]\n      },\n      \"Id\": \"2643edcc-450f-4877-9902-545e8a5b716a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88143157958984,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02920771948993206,\n          \"Height\": 0.008366390131413937,\n          \"Left\": 0.3204864263534546,\n          \"Top\": 0.5061272382736206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.349694162607193,\n            \"Y\": 0.5144257545471191\n          },\n          {\n            \"X\": 0.32050734758377075,\n            \"Y\": 0.5144935846328735\n          },\n          {\n            \"X\": 0.3204864263534546,\n            \"Y\": 0.506195068359375\n          },\n          {\n            \"X\": 0.349673330783844,\n            \"Y\": 0.5061272382736206\n          }\n        ]\n      },\n      \"Id\": \"f72efb0a-4828-4af1-a637-3775658d8ca7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8906478881836,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029028385877609253,\n          \"Height\": 0.007819561287760735,\n          \"Left\": 0.2507588863372803,\n          \"Top\": 0.5064206719398499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2797872722148895,\n            \"Y\": 0.5141727924346924\n          },\n          {\n            \"X\": 0.2507786154747009,\n            \"Y\": 0.5142402648925781\n          },\n          {\n            \"X\": 0.2507588863372803,\n            \"Y\": 0.5064881443977356\n          },\n          {\n            \"X\": 0.27976763248443604,\n            \"Y\": 0.5064206719398499\n          }\n        ]\n      },\n      \"Id\": \"6a79eda0-692a-47da-850e-3341d344b09f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88232421875,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029119443148374557,\n          \"Height\": 0.008050934411585331,\n          \"Left\": 0.1806596964597702,\n          \"Top\": 0.5063705444335938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20977912843227386,\n            \"Y\": 0.5143538117408752\n          },\n          {\n            \"X\": 0.18068020045757294,\n            \"Y\": 0.5144215226173401\n          },\n          {\n            \"X\": 0.1806596964597702,\n            \"Y\": 0.5064381957054138\n          },\n          {\n            \"X\": 0.2097587138414383,\n            \"Y\": 0.5063705444335938\n          }\n        ]\n      },\n      \"Id\": \"21467615-8ada-479b-b885-9fb045392ea0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90673065185547,\n      \"Text\": \"$245.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04367656260728836,\n          \"Height\": 0.008832301013171673,\n          \"Left\": 0.11028443276882172,\n          \"Top\": 0.5066843032836914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15396098792552948,\n            \"Y\": 0.5154150724411011\n          },\n          {\n            \"X\": 0.11030706763267517,\n            \"Y\": 0.5155165791511536\n          },\n          {\n            \"X\": 0.11028443276882172,\n            \"Y\": 0.5067858099937439\n          },\n          {\n            \"X\": 0.15393848717212677,\n            \"Y\": 0.5066843032836914\n          }\n        ]\n      },\n      \"Id\": \"5e4da6b8-57a5-4bc5-8555-3d73d46b6272\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.22157287597656,\n      \"Text\": \"Reference:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07268699258565903,\n          \"Height\": 0.008945733308792114,\n          \"Left\": 0.8521756529808044,\n          \"Top\": 0.47637370228767395\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9248626232147217,\n            \"Y\": 0.4851504862308502\n          },\n          {\n            \"X\": 0.8521961569786072,\n            \"Y\": 0.48531943559646606\n          },\n          {\n            \"X\": 0.8521756529808044,\n            \"Y\": 0.4765426516532898\n          },\n          {\n            \"X\": 0.924842357635498,\n            \"Y\": 0.47637370228767395\n          }\n        ]\n      },\n      \"Id\": \"669783d4-48d7-46a3-81d2-84277517c954\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.40577697753906,\n      \"Text\": \"12183\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03274817019701004,\n          \"Height\": 0.008507350459694862,\n          \"Left\": 0.8018486499786377,\n          \"Top\": 0.4766297936439514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8345968127250671,\n            \"Y\": 0.48506104946136475\n          },\n          {\n            \"X\": 0.8018684983253479,\n            \"Y\": 0.48513713479042053\n          },\n          {\n            \"X\": 0.8018486499786377,\n            \"Y\": 0.4767058789730072\n          },\n          {\n            \"X\": 0.8345770835876465,\n            \"Y\": 0.4766297936439514\n          }\n        ]\n      },\n      \"Id\": \"73e78dcf-3ef7-4532-96de-f8eb3a05d4df\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3787612915039,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010077896527945995,\n          \"Height\": 0.007717806380242109,\n          \"Left\": 0.6645491719245911,\n          \"Top\": 0.47713956236839294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6746270656585693,\n            \"Y\": 0.4848339855670929\n          },\n          {\n            \"X\": 0.6645676493644714,\n            \"Y\": 0.48485735058784485\n          },\n          {\n            \"X\": 0.6645491719245911,\n            \"Y\": 0.4771629571914673\n          },\n          {\n            \"X\": 0.674608588218689,\n            \"Y\": 0.47713956236839294\n          }\n        ]\n      },\n      \"Id\": \"517a679d-f883-420e-bbc9-c1fd84752aca\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68912506103516,\n      \"Text\": \"Cigna\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03553585335612297,\n          \"Height\": 0.010415332391858101,\n          \"Left\": 0.625641405582428,\n          \"Top\": 0.47495001554489136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6611772775650024,\n            \"Y\": 0.4852828085422516\n          },\n          {\n            \"X\": 0.6256663799285889,\n            \"Y\": 0.4853653609752655\n          },\n          {\n            \"X\": 0.625641405582428,\n            \"Y\": 0.47503259778022766\n          },\n          {\n            \"X\": 0.6611524224281311,\n            \"Y\": 0.47495001554489136\n          }\n        ]\n      },\n      \"Id\": \"e5df44bf-e1d1-40d9-9dd6-d35164f54050\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95268249511719,\n      \"Text\": \"preferred\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05533139035105705,\n          \"Height\": 0.010386863723397255,\n          \"Left\": 0.5663320422172546,\n          \"Top\": 0.47502121329307556\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6216633915901184,\n            \"Y\": 0.48527947068214417\n          },\n          {\n            \"X\": 0.5663570165634155,\n            \"Y\": 0.48540806770324707\n          },\n          {\n            \"X\": 0.5663320422172546,\n            \"Y\": 0.4751497805118561\n          },\n          {\n            \"X\": 0.6216385960578918,\n            \"Y\": 0.47502121329307556\n          }\n        ]\n      },\n      \"Id\": \"c4579d87-92e1-4884-b16b-ffb12a87625f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94406127929688,\n      \"Text\": \"provider\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0497562438249588,\n          \"Height\": 0.010131264105439186,\n          \"Left\": 0.5125360488891602,\n          \"Top\": 0.47522276639938354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5622923374176025,\n            \"Y\": 0.4852384030818939\n          },\n          {\n            \"X\": 0.5125606656074524,\n            \"Y\": 0.4853540360927582\n          },\n          {\n            \"X\": 0.5125360488891602,\n            \"Y\": 0.4753383994102478\n          },\n          {\n            \"X\": 0.5622678995132446,\n            \"Y\": 0.47522276639938354\n          }\n        ]\n      },\n      \"Id\": \"387927fe-aefd-4396-a89a-72cb437dbe6a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92102813720703,\n      \"Text\": \"discount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0520344041287899,\n          \"Height\": 0.00865967944264412,\n          \"Left\": 0.4572303593158722,\n          \"Top\": 0.4767591655254364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5092647671699524,\n            \"Y\": 0.48529791831970215\n          },\n          {\n            \"X\": 0.45725148916244507,\n            \"Y\": 0.4854188561439514\n          },\n          {\n            \"X\": 0.4572303593158722,\n            \"Y\": 0.47688010334968567\n          },\n          {\n            \"X\": 0.5092437863349915,\n            \"Y\": 0.4767591655254364\n          }\n        ]\n      },\n      \"Id\": \"12313e31-dd83-4630-812f-cd6dc8a6f033\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95098114013672,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02194000966846943,\n          \"Height\": 0.008419574238359928,\n          \"Left\": 0.4322299063205719,\n          \"Top\": 0.4768882393836975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4541699290275574,\n            \"Y\": 0.4852568507194519\n          },\n          {\n            \"X\": 0.4322506785392761,\n            \"Y\": 0.48530781269073486\n          },\n          {\n            \"X\": 0.4322299063205719,\n            \"Y\": 0.47693920135498047\n          },\n          {\n            \"X\": 0.4541492164134979,\n            \"Y\": 0.4768882393836975\n          }\n        ]\n      },\n      \"Id\": \"e0530dd5-ff4a-404d-9ac8-d4ee310b5355\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97696685791016,\n      \"Text\": \"been\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030505580827593803,\n          \"Height\": 0.008277458138763905,\n          \"Left\": 0.39803797006607056,\n          \"Top\": 0.4768204987049103\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4285435378551483,\n            \"Y\": 0.4850270748138428\n          },\n          {\n            \"X\": 0.3980584144592285,\n            \"Y\": 0.4850979447364807\n          },\n          {\n            \"X\": 0.39803797006607056,\n            \"Y\": 0.4768913686275482\n          },\n          {\n            \"X\": 0.42852315306663513,\n            \"Y\": 0.4768204987049103\n          }\n        ]\n      },\n      \"Id\": \"763ceedb-22f9-4ba7-889e-0c18c443a6d1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57157135009766,\n      \"Text\": \"applied.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04686005786061287,\n          \"Height\": 0.009934494271874428,\n          \"Left\": 0.3473477065563202,\n          \"Top\": 0.47521868348121643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39420774579048157,\n            \"Y\": 0.48504430055618286\n          },\n          {\n            \"X\": 0.3473723828792572,\n            \"Y\": 0.4851531982421875\n          },\n          {\n            \"X\": 0.3473477065563202,\n            \"Y\": 0.47532758116722107\n          },\n          {\n            \"X\": 0.3941832482814789,\n            \"Y\": 0.47521868348121643\n          }\n        ]\n      },\n      \"Id\": \"d534f600-0882-4cf5-a9b5-781547e378e1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95726013183594,\n      \"Text\": \"SCHOOL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0584280900657177,\n          \"Height\": 0.008649957366287708,\n          \"Left\": 0.18202510476112366,\n          \"Top\": 0.4314909875392914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24045318365097046,\n            \"Y\": 0.44000518321990967\n          },\n          {\n            \"X\": 0.18204696476459503,\n            \"Y\": 0.4401409327983856\n          },\n          {\n            \"X\": 0.18202510476112366,\n            \"Y\": 0.43162673711776733\n          },\n          {\n            \"X\": 0.2404315024614334,\n            \"Y\": 0.4314909875392914\n          }\n        ]\n      },\n      \"Id\": \"b7bacba9-d628-406c-8e52-642e02cf9108\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98104095458984,\n      \"Text\": \"OF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018847955390810966,\n          \"Height\": 0.008464355953037739,\n          \"Left\": 0.15933804214000702,\n          \"Top\": 0.431658536195755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17818599939346313,\n            \"Y\": 0.44007912278175354\n          },\n          {\n            \"X\": 0.15935973823070526,\n            \"Y\": 0.4401228725910187\n          },\n          {\n            \"X\": 0.15933804214000702,\n            \"Y\": 0.43170228600502014\n          },\n          {\n            \"X\": 0.17816436290740967,\n            \"Y\": 0.431658536195755\n          }\n        ]\n      },\n      \"Id\": \"ac670b25-a1ed-4d4d-96d1-a5f8e2e6e5e3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71306610107422,\n      \"Text\": \"VISUAL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05032328888773918,\n          \"Height\": 0.008371122181415558,\n          \"Left\": 0.10618849843740463,\n          \"Top\": 0.43160539865493774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15651178359985352,\n            \"Y\": 0.4398595988750458\n          },\n          {\n            \"X\": 0.1062099039554596,\n            \"Y\": 0.4399765133857727\n          },\n          {\n            \"X\": 0.10618849843740463,\n            \"Y\": 0.4317223131656647\n          },\n          {\n            \"X\": 0.1564905196428299,\n            \"Y\": 0.43160539865493774\n          }\n        ]\n      },\n      \"Id\": \"ba719a54-797a-4ee5-99d9-5110a06c18e9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71166229248047,\n      \"Text\": \"PT:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021907825022935867,\n          \"Height\": 0.008310442790389061,\n          \"Left\": 0.9050406217575073,\n          \"Top\": 0.4248965382575989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9269484281539917,\n            \"Y\": 0.4331561028957367\n          },\n          {\n            \"X\": 0.9050597548484802,\n            \"Y\": 0.4332070052623749\n          },\n          {\n            \"X\": 0.9050406217575073,\n            \"Y\": 0.4249474108219147\n          },\n          {\n            \"X\": 0.9269293546676636,\n            \"Y\": 0.4248965382575989\n          }\n        ]\n      },\n      \"Id\": \"ea719b03-a2f0-45d0-9f45-2d0f86d7acb7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.95601654052734,\n      \"Text\": \"PT.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020353419706225395,\n          \"Height\": 0.0083388676866889,\n          \"Left\": 0.6970093250274658,\n          \"Top\": 0.425149142742157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7173627614974976,\n            \"Y\": 0.4334407448768616\n          },\n          {\n            \"X\": 0.697029173374176,\n            \"Y\": 0.43348801136016846\n          },\n          {\n            \"X\": 0.6970093250274658,\n            \"Y\": 0.4251963794231415\n          },\n          {\n            \"X\": 0.7173429727554321,\n            \"Y\": 0.425149142742157\n          }\n        ]\n      },\n      \"Id\": \"6e1caf58-ed84-46ec-8049-38a63e7fb1c5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45874786376953,\n      \"Text\": \"DOB:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03398615121841431,\n          \"Height\": 0.008666572161018848,\n          \"Left\": 0.659588634967804,\n          \"Top\": 0.4249340295791626\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6935747861862183,\n            \"Y\": 0.43352165818214417\n          },\n          {\n            \"X\": 0.6596092581748962,\n            \"Y\": 0.43360060453414917\n          },\n          {\n            \"X\": 0.659588634967804,\n            \"Y\": 0.4250129759311676\n          },\n          {\n            \"X\": 0.6935542225837708,\n            \"Y\": 0.4249340295791626\n          }\n        ]\n      },\n      \"Id\": \"4ecb2944-f8f8-4153-910b-cfa239be46c1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.874755859375,\n      \"Text\": \"1997-10-07\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06733986735343933,\n          \"Height\": 0.008409514091908932,\n          \"Left\": 0.5799599289894104,\n          \"Top\": 0.4250708222389221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6472998261451721,\n            \"Y\": 0.43332386016845703\n          },\n          {\n            \"X\": 0.5799800157546997,\n            \"Y\": 0.4334803521633148\n          },\n          {\n            \"X\": 0.5799599289894104,\n            \"Y\": 0.4252272844314575\n          },\n          {\n            \"X\": 0.6472799777984619,\n            \"Y\": 0.4250708222389221\n          }\n        ]\n      },\n      \"Id\": \"d66240c8-6f79-41d0-96fb-1fc0b634c44b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94042205810547,\n      \"Text\": \"Timmy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.057432085275650024,\n          \"Height\": 0.010653218254446983,\n          \"Left\": 0.8189096450805664,\n          \"Top\": 0.4178631901741028\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8763417601585388,\n            \"Y\": 0.4283829927444458\n          },\n          {\n            \"X\": 0.8189343810081482,\n            \"Y\": 0.4285164177417755\n          },\n          {\n            \"X\": 0.8189096450805664,\n            \"Y\": 0.4179966151714325\n          },\n          {\n            \"X\": 0.8763172626495361,\n            \"Y\": 0.4178631901741028\n          }\n        ]\n      },\n      \"Id\": \"5324643f-f8c1-4c48-822d-b316f54e86d6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93708801269531,\n      \"Text\": \"Turner\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05694790184497833,\n          \"Height\": 0.008323654532432556,\n          \"Left\": 0.758979856967926,\n          \"Top\": 0.41996899247169495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8159277439117432,\n            \"Y\": 0.42816033959388733\n          },\n          {\n            \"X\": 0.758999228477478,\n            \"Y\": 0.4282926619052887\n          },\n          {\n            \"X\": 0.758979856967926,\n            \"Y\": 0.4201013147830963\n          },\n          {\n            \"X\": 0.8159084916114807,\n            \"Y\": 0.41996899247169495\n          }\n        ]\n      },\n      \"Id\": \"ce33de25-7f41-4d6c-a56e-d3a6a8e22bf9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.02863311767578,\n      \"Text\": \"PT.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021422309800982475,\n          \"Height\": 0.00821839738637209,\n          \"Left\": 0.4979937672615051,\n          \"Top\": 0.42535462975502014\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.519416093826294,\n            \"Y\": 0.4335232675075531\n          },\n          {\n            \"X\": 0.49801385402679443,\n            \"Y\": 0.43357300758361816\n          },\n          {\n            \"X\": 0.4979937672615051,\n            \"Y\": 0.4254043698310852\n          },\n          {\n            \"X\": 0.5193960070610046,\n            \"Y\": 0.42535462975502014\n          }\n        ]\n      },\n      \"Id\": \"3b0fdd69-3ea8-4433-8423-ee4166489b30\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20930480957031,\n      \"Text\": \"ACCT:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04122612625360489,\n          \"Height\": 0.008280317299067974,\n          \"Left\": 0.4540212154388428,\n          \"Top\": 0.42529159784317017\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49524733424186707,\n            \"Y\": 0.43347615003585815\n          },\n          {\n            \"X\": 0.454041451215744,\n            \"Y\": 0.4335719347000122\n          },\n          {\n            \"X\": 0.4540212154388428,\n            \"Y\": 0.4253873825073242\n          },\n          {\n            \"X\": 0.495227187871933,\n            \"Y\": 0.42529159784317017\n          }\n        ]\n      },\n      \"Id\": \"63e29d9c-74f0-42cb-896d-de97dd01dc52\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43941497802734,\n      \"Text\": \"5705387V1648\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0924367755651474,\n          \"Height\": 0.008694922551512718,\n          \"Left\": 0.3470936715602875,\n          \"Top\": 0.4250694811344147\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4395304322242737,\n            \"Y\": 0.4335496127605438\n          },\n          {\n            \"X\": 0.3471149504184723,\n            \"Y\": 0.43376439809799194\n          },\n          {\n            \"X\": 0.3470936715602875,\n            \"Y\": 0.4252842962741852\n          },\n          {\n            \"X\": 0.43950942158699036,\n            \"Y\": 0.4250694811344147\n          }\n        ]\n      },\n      \"Id\": \"02f960a5-6171-47e3-b13c-7d3b32bd5562\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75233459472656,\n      \"Text\": \"GRP:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03335200995206833,\n          \"Height\": 0.008592184633016586,\n          \"Left\": 0.28245773911476135,\n          \"Top\": 0.4251795709133148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3158097565174103,\n            \"Y\": 0.4336942732334137\n          },\n          {\n            \"X\": 0.28247931599617004,\n            \"Y\": 0.4337717592716217\n          },\n          {\n            \"X\": 0.28245773911476135,\n            \"Y\": 0.42525702714920044\n          },\n          {\n            \"X\": 0.31578826904296875,\n            \"Y\": 0.4251795709133148\n          }\n        ]\n      },\n      \"Id\": \"ac4ca666-3615-4ebb-95af-ee4dc1a3265a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85516357421875,\n      \"Text\": \"ARTS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0368640273809433,\n          \"Height\": 0.008457981050014496,\n          \"Left\": 0.2041054219007492,\n          \"Top\": 0.4192611277103424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2409694492816925,\n            \"Y\": 0.42763346433639526\n          },\n          {\n            \"X\": 0.20412686467170715,\n            \"Y\": 0.4277190864086151\n          },\n          {\n            \"X\": 0.2041054219007492,\n            \"Y\": 0.41934674978256226\n          },\n          {\n            \"X\": 0.2409481257200241,\n            \"Y\": 0.4192611277103424\n          }\n        ]\n      },\n      \"Id\": \"cea6cfe6-017e-40b8-a577-8b6077b81b96\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73731231689453,\n      \"Text\": \"MBR:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034854449331760406,\n          \"Height\": 0.008058878593146801,\n          \"Left\": 0.8922139406204224,\n          \"Top\": 0.40532341599464417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9270683526992798,\n            \"Y\": 0.41330134868621826\n          },\n          {\n            \"X\": 0.8922324776649475,\n            \"Y\": 0.41338229179382324\n          },\n          {\n            \"X\": 0.8922139406204224,\n            \"Y\": 0.40540438890457153\n          },\n          {\n            \"X\": 0.9270499348640442,\n            \"Y\": 0.40532341599464417\n          }\n        ]\n      },\n      \"Id\": \"d88344b6-f00b-4c41-ad07-e433ec22303e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90892028808594,\n      \"Text\": \"PLAN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036937326192855835,\n          \"Height\": 0.008251037448644638,\n          \"Left\": 0.6803333163261414,\n          \"Top\": 0.4053901433944702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7172706127166748,\n            \"Y\": 0.413555383682251\n          },\n          {\n            \"X\": 0.6803528666496277,\n            \"Y\": 0.41364118456840515\n          },\n          {\n            \"X\": 0.6803333163261414,\n            \"Y\": 0.4054759442806244\n          },\n          {\n            \"X\": 0.717251181602478,\n            \"Y\": 0.4053901433944702\n          }\n        ]\n      },\n      \"Id\": \"a3bdee80-bdbe-4b12-8ee3-b16a906cd650\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65093231201172,\n      \"Text\": \"ID:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017937922850251198,\n          \"Height\": 0.008121873252093792,\n          \"Left\": 0.6582638025283813,\n          \"Top\": 0.4054091274738312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6762017607688904,\n            \"Y\": 0.41348937153816223\n          },\n          {\n            \"X\": 0.6582832336425781,\n            \"Y\": 0.41353100538253784\n          },\n          {\n            \"X\": 0.6582638025283813,\n            \"Y\": 0.4054507911205292\n          },\n          {\n            \"X\": 0.6761823296546936,\n            \"Y\": 0.4054091274738312\n          }\n        ]\n      },\n      \"Id\": \"60edcd0f-e360-4f6e-a623-d271012707cd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90950012207031,\n      \"Text\": \"002138521\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06623215973377228,\n          \"Height\": 0.008381452411413193,\n          \"Left\": 0.5821572542190552,\n          \"Top\": 0.4053773283958435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.648389458656311,\n            \"Y\": 0.41360488533973694\n          },\n          {\n            \"X\": 0.5821772813796997,\n            \"Y\": 0.413758784532547\n          },\n          {\n            \"X\": 0.5821572542190552,\n            \"Y\": 0.4055311977863312\n          },\n          {\n            \"X\": 0.6483696103096008,\n            \"Y\": 0.4053773283958435\n          }\n        ]\n      },\n      \"Id\": \"f8b02b28-6bae-487d-83d5-4d57f4973a67\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.35515594482422,\n      \"Text\": \"CLAIM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04404453933238983,\n          \"Height\": 0.008081215433776379,\n          \"Left\": 0.4752854108810425,\n          \"Top\": 0.40563151240348816\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5193299651145935,\n            \"Y\": 0.41361039876937866\n          },\n          {\n            \"X\": 0.47530508041381836,\n            \"Y\": 0.4137127101421356\n          },\n          {\n            \"X\": 0.4752854108810425,\n            \"Y\": 0.4057338237762451\n          },\n          {\n            \"X\": 0.5193103551864624,\n            \"Y\": 0.40563151240348816\n          }\n        ]\n      },\n      \"Id\": \"e82434ba-e1b4-41e7-a361-5a9d6487b797\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.92839813232422,\n      \"Text\": \"#:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012699945829808712,\n          \"Height\": 0.00838455744087696,\n          \"Left\": 0.4600514769554138,\n          \"Top\": 0.40538254380226135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4727514386177063,\n            \"Y\": 0.41373762488365173\n          },\n          {\n            \"X\": 0.4600721597671509,\n            \"Y\": 0.41376709938049316\n          },\n          {\n            \"X\": 0.4600514769554138,\n            \"Y\": 0.4054120182991028\n          },\n          {\n            \"X\": 0.472730815410614,\n            \"Y\": 0.40538254380226135\n          }\n        ]\n      },\n      \"Id\": \"c95a3725-1738-4b45-bdeb-202ed05bfed8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83562469482422,\n      \"Text\": \"202209131720\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09091653674840927,\n          \"Height\": 0.008510862477123737,\n          \"Left\": 0.34903836250305176,\n          \"Top\": 0.4054137170314789\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4399549067020416,\n            \"Y\": 0.41371333599090576\n          },\n          {\n            \"X\": 0.34905922412872314,\n            \"Y\": 0.41392457485198975\n          },\n          {\n            \"X\": 0.34903836250305176,\n            \"Y\": 0.40562495589256287\n          },\n          {\n            \"X\": 0.4399343430995941,\n            \"Y\": 0.4054137170314789\n          }\n        ]\n      },\n      \"Id\": \"425db244-0c78-460a-b8aa-573ad5b2e20e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73261260986328,\n      \"Text\": \"GRP\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02965071052312851,\n          \"Height\": 0.008274920284748077,\n          \"Left\": 0.28604745864868164,\n          \"Top\": 0.4056718647480011\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31569817662239075,\n            \"Y\": 0.4138779044151306\n          },\n          {\n            \"X\": 0.28606823086738586,\n            \"Y\": 0.4139467775821686\n          },\n          {\n            \"X\": 0.28604745864868164,\n            \"Y\": 0.4057407081127167\n          },\n          {\n            \"X\": 0.3156774640083313,\n            \"Y\": 0.4056718647480011\n          }\n        ]\n      },\n      \"Id\": \"66ca335b-215f-414c-8e5c-c8a2a735b74d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.56692504882812,\n      \"Text\": \"#:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012527188286185265,\n          \"Height\": 0.008355335332453251,\n          \"Left\": 0.2703527808189392,\n          \"Top\": 0.4055670201778412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2828799784183502,\n            \"Y\": 0.41389328241348267\n          },\n          {\n            \"X\": 0.2703739106655121,\n            \"Y\": 0.41392233967781067\n          },\n          {\n            \"X\": 0.2703527808189392,\n            \"Y\": 0.4055960774421692\n          },\n          {\n            \"X\": 0.28285887837409973,\n            \"Y\": 0.4055670201778412\n          }\n        ]\n      },\n      \"Id\": \"95f32ffb-1a52-492f-9f16-721a87f6534b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.38864135742188,\n      \"Text\": \"ST0654SHUI01\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09288021922111511,\n          \"Height\": 0.008697286248207092,\n          \"Left\": 0.14726592600345612,\n          \"Top\": 0.40551939606666565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24014614522457123,\n            \"Y\": 0.41400086879730225\n          },\n          {\n            \"X\": 0.14728780090808868,\n            \"Y\": 0.41421666741371155\n          },\n          {\n            \"X\": 0.14726592600345612,\n            \"Y\": 0.40573519468307495\n          },\n          {\n            \"X\": 0.24012452363967896,\n            \"Y\": 0.40551939606666565\n          }\n        ]\n      },\n      \"Id\": \"cc01d164-915f-49ea-8a1c-d32d38c5d514\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86314392089844,\n      \"Text\": \"Billed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031994838267564774,\n          \"Height\": 0.007699938490986824,\n          \"Left\": 0.5454535484313965,\n          \"Top\": 0.3920955955982208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5774483680725098,\n            \"Y\": 0.39972123503685\n          },\n          {\n            \"X\": 0.5454722046852112,\n            \"Y\": 0.3997955322265625\n          },\n          {\n            \"X\": 0.5454535484313965,\n            \"Y\": 0.39216992259025574\n          },\n          {\n            \"X\": 0.5774298310279846,\n            \"Y\": 0.3920955955982208\n          }\n        ]\n      },\n      \"Id\": \"2af955f3-8094-42b6-b474-19079cd7cc2e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92169189453125,\n      \"Text\": \"PPO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023784469813108444,\n          \"Height\": 0.007243982516229153,\n          \"Left\": 0.4798901677131653,\n          \"Top\": 0.3924105167388916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5036746263504028,\n            \"Y\": 0.39959925413131714\n          },\n          {\n            \"X\": 0.47990790009498596,\n            \"Y\": 0.3996545076370239\n          },\n          {\n            \"X\": 0.4798901677131653,\n            \"Y\": 0.392465740442276\n          },\n          {\n            \"X\": 0.5036569833755493,\n            \"Y\": 0.3924105167388916\n          }\n        ]\n      },\n      \"Id\": \"463cbbad-92eb-4b44-a14e-b43bbea3b4ec\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74292755126953,\n      \"Text\": \"Non\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02242141030728817,\n          \"Height\": 0.007299928460270166,\n          \"Left\": 0.41048750281333923,\n          \"Top\": 0.3922979533672333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43290889263153076,\n            \"Y\": 0.399545818567276\n          },\n          {\n            \"X\": 0.4105055332183838,\n            \"Y\": 0.3995978832244873\n          },\n          {\n            \"X\": 0.41048750281333923,\n            \"Y\": 0.3923500180244446\n          },\n          {\n            \"X\": 0.432890921831131,\n            \"Y\": 0.3922979533672333\n          }\n        ]\n      },\n      \"Id\": \"1e0301a1-b960-41d6-855c-03ad357280fe\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95677947998047,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03347807750105858,\n          \"Height\": 0.0072091673500835896,\n          \"Left\": 0.33479052782058716,\n          \"Top\": 0.39237117767333984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36826860904693604,\n            \"Y\": 0.39950257539749146\n          },\n          {\n            \"X\": 0.33480846881866455,\n            \"Y\": 0.39958035945892334\n          },\n          {\n            \"X\": 0.33479052782058716,\n            \"Y\": 0.39244893193244934\n          },\n          {\n            \"X\": 0.3682507574558258,\n            \"Y\": 0.39237117767333984\n          }\n        ]\n      },\n      \"Id\": \"6c1485c4-6f53-4640-bff1-817d4f3123ad\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85523986816406,\n      \"Text\": \"Deductible\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06254803389310837,\n          \"Height\": 0.007660370785742998,\n          \"Left\": 0.25107771158218384,\n          \"Top\": 0.39238399267196655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3136257231235504,\n            \"Y\": 0.39989903569221497\n          },\n          {\n            \"X\": 0.25109681487083435,\n            \"Y\": 0.40004435181617737\n          },\n          {\n            \"X\": 0.25107771158218384,\n            \"Y\": 0.39252927899360657\n          },\n          {\n            \"X\": 0.31360676884651184,\n            \"Y\": 0.39238399267196655\n          }\n        ]\n      },\n      \"Id\": \"476583b3-88e9-4e3d-bc27-c6b7e9f9c55a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89350891113281,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026301849633455276,\n          \"Height\": 0.00757993571460247,\n          \"Left\": 0.8943375945091248,\n          \"Top\": 0.3865352272987366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9206394553184509,\n            \"Y\": 0.3940540850162506\n          },\n          {\n            \"X\": 0.894355058670044,\n            \"Y\": 0.394115149974823\n          },\n          {\n            \"X\": 0.8943375945091248,\n            \"Y\": 0.38659629225730896\n          },\n          {\n            \"X\": 0.9206220507621765,\n            \"Y\": 0.3865352272987366\n          }\n        ]\n      },\n      \"Id\": \"9f80cca3-cce2-4859-bece-faf0bbd36b15\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90524291992188,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011892796494066715,\n          \"Height\": 0.007702264469116926,\n          \"Left\": 0.8789461851119995,\n          \"Top\": 0.3866415321826935\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8908389806747437,\n            \"Y\": 0.3943162262439728\n          },\n          {\n            \"X\": 0.8789640665054321,\n            \"Y\": 0.3943438231945038\n          },\n          {\n            \"X\": 0.8789461851119995,\n            \"Y\": 0.3866691291332245\n          },\n          {\n            \"X\": 0.8908211588859558,\n            \"Y\": 0.3866415321826935\n          }\n        ]\n      },\n      \"Id\": \"b4be79b4-39f4-4f24-a66c-ffa7b6f9b94c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90775299072266,\n      \"Text\": \"Service\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043653685599565506,\n          \"Height\": 0.007757131941616535,\n          \"Left\": 0.8323720693588257,\n          \"Top\": 0.38652393221855164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8760257363319397,\n            \"Y\": 0.39417967200279236\n          },\n          {\n            \"X\": 0.8323900103569031,\n            \"Y\": 0.3942810893058777\n          },\n          {\n            \"X\": 0.8323720693588257,\n            \"Y\": 0.38662534952163696\n          },\n          {\n            \"X\": 0.8760079145431519,\n            \"Y\": 0.38652393221855164\n          }\n        ]\n      },\n      \"Id\": \"e5ebc158-4eae-4e16-8fb2-2d30fbc82e38\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83894348144531,\n      \"Text\": \"Patient\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041440583765506744,\n          \"Height\": 0.007506678346544504,\n          \"Left\": 0.1916184425354004,\n          \"Top\": 0.3924364447593689\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23305903375148773,\n            \"Y\": 0.3998468518257141\n          },\n          {\n            \"X\": 0.19163745641708374,\n            \"Y\": 0.39994311332702637\n          },\n          {\n            \"X\": 0.1916184425354004,\n            \"Y\": 0.39253270626068115\n          },\n          {\n            \"X\": 0.23304013907909393,\n            \"Y\": 0.3924364447593689\n          }\n        ]\n      },\n      \"Id\": \"aa5d74d9-8044-4914-bbce-afb472f7d977\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56674194335938,\n      \"Text\": \"Procedure\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06235251575708389,\n          \"Height\": 0.007820273749530315,\n          \"Left\": 0.6789592504501343,\n          \"Top\": 0.38658323884010315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.74131178855896,\n            \"Y\": 0.39425864815711975\n          },\n          {\n            \"X\": 0.6789776682853699,\n            \"Y\": 0.39440351724624634\n          },\n          {\n            \"X\": 0.6789592504501343,\n            \"Y\": 0.38672807812690735\n          },\n          {\n            \"X\": 0.7412935495376587,\n            \"Y\": 0.38658323884010315\n          }\n        ]\n      },\n      \"Id\": \"e7558f9d-0030-4bdd-a381-5c0b8ec4a9e0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88455200195312,\n      \"Text\": \"Paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02487185038626194,\n          \"Height\": 0.00747724948450923,\n          \"Left\": 0.12960149347782135,\n          \"Top\": 0.38731276988983154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15447334945201874,\n            \"Y\": 0.394732266664505\n          },\n          {\n            \"X\": 0.12962068617343903,\n            \"Y\": 0.39479002356529236\n          },\n          {\n            \"X\": 0.12960149347782135,\n            \"Y\": 0.3873705267906189\n          },\n          {\n            \"X\": 0.15445421636104584,\n            \"Y\": 0.38731276988983154\n          }\n        ]\n      },\n      \"Id\": \"a5f250ca-3a14-4a3a-9db4-34a6a630f8fa\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20878601074219,\n      \"Text\": \"Ref.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02219957299530506,\n          \"Height\": 0.007487949915230274,\n          \"Left\": 0.07750416547060013,\n          \"Top\": 0.3873628079891205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09970373660326004,\n            \"Y\": 0.39479920268058777\n          },\n          {\n            \"X\": 0.07752352952957153,\n            \"Y\": 0.3948507606983185\n          },\n          {\n            \"X\": 0.07750416547060013,\n            \"Y\": 0.3874143362045288\n          },\n          {\n            \"X\": 0.09968443214893341,\n            \"Y\": 0.3873628079891205\n          }\n        ]\n      },\n      \"Id\": \"f501cbfb-3b6f-44a9-b036-020e262e01a4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97796630859375,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04853825643658638,\n          \"Height\": 0.007275598123669624,\n          \"Left\": 0.5370064377784729,\n          \"Top\": 0.3816765248775482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5855447053909302,\n            \"Y\": 0.38883936405181885\n          },\n          {\n            \"X\": 0.5370239615440369,\n            \"Y\": 0.3889521360397339\n          },\n          {\n            \"X\": 0.5370064377784729,\n            \"Y\": 0.38178926706314087\n          },\n          {\n            \"X\": 0.5855273008346558,\n            \"Y\": 0.3816765248775482\n          }\n        ]\n      },\n      \"Id\": \"0a305ed2-1bc1-4f27-ba95-43045353f9a9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8944091796875,\n      \"Text\": \"Discount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05199160426855087,\n          \"Height\": 0.007466000504791737,\n          \"Left\": 0.465285062789917,\n          \"Top\": 0.38173913955688477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172766447067261,\n            \"Y\": 0.3890843689441681\n          },\n          {\n            \"X\": 0.4653032124042511,\n            \"Y\": 0.3892051577568054\n          },\n          {\n            \"X\": 0.465285062789917,\n            \"Y\": 0.3818598985671997\n          },\n          {\n            \"X\": 0.5172586441040039,\n            \"Y\": 0.38173913955688477\n          }\n        ]\n      },\n      \"Id\": \"5e27589a-734b-4330-b8fa-99e9102bac2b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91632843017578,\n      \"Text\": \"Covered\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05042010545730591,\n          \"Height\": 0.007570344489067793,\n          \"Left\": 0.39634624123573303,\n          \"Top\": 0.3817307949066162\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44676634669303894,\n            \"Y\": 0.38918402791023254\n          },\n          {\n            \"X\": 0.39636483788490295,\n            \"Y\": 0.3893011510372162\n          },\n          {\n            \"X\": 0.39634624123573303,\n            \"Y\": 0.38184791803359985\n          },\n          {\n            \"X\": 0.44674786925315857,\n            \"Y\": 0.3817307949066162\n          }\n        ]\n      },\n      \"Id\": \"6b65361e-132c-4fc8-a8e4-fb54b9fd98a9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88899993896484,\n      \"Text\": \"Coverage\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05679871886968613,\n          \"Height\": 0.008839949034154415,\n          \"Left\": 0.3234195411205292,\n          \"Top\": 0.3803650140762329\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3802182376384735,\n            \"Y\": 0.3890730142593384\n          },\n          {\n            \"X\": 0.3234414756298065,\n            \"Y\": 0.3892049491405487\n          },\n          {\n            \"X\": 0.3234195411205292,\n            \"Y\": 0.38049694895744324\n          },\n          {\n            \"X\": 0.3801964819431305,\n            \"Y\": 0.3803650140762329\n          }\n        ]\n      },\n      \"Id\": \"fd03d727-1c8a-476e-a9ec-85cedfd8e006\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84860229492188,\n      \"Text\": \"Co-Pays\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04811697080731392,\n          \"Height\": 0.008882067166268826,\n          \"Left\": 0.2578524649143219,\n          \"Top\": 0.3804273009300232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3059694468975067,\n            \"Y\": 0.38919761776924133\n          },\n          {\n            \"X\": 0.2578747570514679,\n            \"Y\": 0.3893093764781952\n          },\n          {\n            \"X\": 0.2578524649143219,\n            \"Y\": 0.38053905963897705\n          },\n          {\n            \"X\": 0.30594727396965027,\n            \"Y\": 0.3804273009300232\n          }\n        ]\n      },\n      \"Id\": \"228d56b3-0daf-4a0f-bb8a-da807daf26b0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.02440643310547,\n      \"Text\": \"Resp.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03286245837807655,\n          \"Height\": 0.008724992163479328,\n          \"Left\": 0.1956140100955963,\n          \"Top\": 0.3805738091468811\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22847646474838257,\n            \"Y\": 0.38922250270843506\n          },\n          {\n            \"X\": 0.19563616812229156,\n            \"Y\": 0.38929879665374756\n          },\n          {\n            \"X\": 0.1956140100955963,\n            \"Y\": 0.380650132894516\n          },\n          {\n            \"X\": 0.22845439612865448,\n            \"Y\": 0.3805738091468811\n          }\n        ]\n      },\n      \"Id\": \"44b0b43b-e164-4c7d-8d00-18d70d2390f9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5255355834961,\n      \"Text\": \"90651\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030277537181973457,\n          \"Height\": 0.007336225360631943,\n          \"Left\": 0.7925014495849609,\n          \"Top\": 0.3676645755767822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8227789998054504,\n            \"Y\": 0.3749305009841919\n          },\n          {\n            \"X\": 0.7925185561180115,\n            \"Y\": 0.37500080466270447\n          },\n          {\n            \"X\": 0.7925014495849609,\n            \"Y\": 0.3677349090576172\n          },\n          {\n            \"X\": 0.8227619528770447,\n            \"Y\": 0.3676645755767822\n          }\n        ]\n      },\n      \"Id\": \"9f5a13a3-0dbe-4546-bdd0-8b6ffdfd752d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.30900573730469,\n      \"Text\": \":\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0027723207604140043,\n          \"Height\": 0.004991536028683186,\n          \"Left\": 0.7864941954612732,\n          \"Top\": 0.3684479892253876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7892665266990662,\n            \"Y\": 0.37343311309814453\n          },\n          {\n            \"X\": 0.786505937576294,\n            \"Y\": 0.3734395205974579\n          },\n          {\n            \"X\": 0.7864941954612732,\n            \"Y\": 0.3684543967247009\n          },\n          {\n            \"X\": 0.7892547845840454,\n            \"Y\": 0.3684479892253876\n          }\n        ]\n      },\n      \"Id\": \"122c17af-c59d-4887-8a92-f3ded66d0b2d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60760498046875,\n      \"Text\": \"9VHPV\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03741110488772392,\n          \"Height\": 0.007266281638294458,\n          \"Left\": 0.7458495497703552,\n          \"Top\": 0.3678945004940033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7832606434822083,\n            \"Y\": 0.3750738799571991\n          },\n          {\n            \"X\": 0.745866596698761,\n            \"Y\": 0.3751607835292816\n          },\n          {\n            \"X\": 0.7458495497703552,\n            \"Y\": 0.3679813742637634\n          },\n          {\n            \"X\": 0.783243715763092,\n            \"Y\": 0.3678945004940033\n          }\n        ]\n      },\n      \"Id\": \"9bed95ca-5cde-4422-9fdf-6d54c1f0f424\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.0501708984375,\n      \"Text\": \"VACC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03190596401691437,\n          \"Height\": 0.007314515300095081,\n          \"Left\": 0.7125586271286011,\n          \"Top\": 0.36787429451942444\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7444645762443542,\n            \"Y\": 0.37511470913887024\n          },\n          {\n            \"X\": 0.7125759124755859,\n            \"Y\": 0.37518879771232605\n          },\n          {\n            \"X\": 0.7125586271286011,\n            \"Y\": 0.36794838309288025\n          },\n          {\n            \"X\": 0.7444474101066589,\n            \"Y\": 0.36787429451942444\n          }\n        ]\n      },\n      \"Id\": \"31b1e441-6aa0-4314-ae7f-98e4b73f9f0d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60653686523438,\n      \"Text\": \"2/3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015945330262184143,\n          \"Height\": 0.007275273557752371,\n          \"Left\": 0.694410502910614,\n          \"Top\": 0.36787882447242737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7103558778762817,\n            \"Y\": 0.37511709332466125\n          },\n          {\n            \"X\": 0.6944278478622437,\n            \"Y\": 0.3751541078090668\n          },\n          {\n            \"X\": 0.694410502910614,\n            \"Y\": 0.3679158389568329\n          },\n          {\n            \"X\": 0.7103385925292969,\n            \"Y\": 0.36787882447242737\n          }\n        ]\n      },\n      \"Id\": \"8d132624-2d3e-4278-88cb-17965a2ffce1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85432434082031,\n      \"Text\": \"DOSE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03161081299185753,\n          \"Height\": 0.007656665053218603,\n          \"Left\": 0.6603602766990662,\n          \"Top\": 0.3677390217781067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6919711232185364,\n            \"Y\": 0.37532228231430054\n          },\n          {\n            \"X\": 0.6603785157203674,\n            \"Y\": 0.37539568543434143\n          },\n          {\n            \"X\": 0.6603602766990662,\n            \"Y\": 0.3678124248981476\n          },\n          {\n            \"X\": 0.6919529438018799,\n            \"Y\": 0.3677390217781067\n          }\n        ]\n      },\n      \"Id\": \"795f884e-8ea4-48b9-9009-689617eaa52d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8634262084961,\n      \"Text\": \"SCHED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03919980302453041,\n          \"Height\": 0.007460562512278557,\n          \"Left\": 0.6183311939239502,\n          \"Top\": 0.367876797914505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6575309634208679,\n            \"Y\": 0.3752463161945343\n          },\n          {\n            \"X\": 0.618349015712738,\n            \"Y\": 0.3753373622894287\n          },\n          {\n            \"X\": 0.6183311939239502,\n            \"Y\": 0.3679678440093994\n          },\n          {\n            \"X\": 0.6575132608413696,\n            \"Y\": 0.367876797914505\n          }\n        ]\n      },\n      \"Id\": \"1ae3cc6a-0760-4785-ba5c-8b9122f80bb4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68336486816406,\n      \"Text\": \"IM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012573488056659698,\n          \"Height\": 0.007286837790161371,\n          \"Left\": 0.6030088663101196,\n          \"Top\": 0.36795952916145325\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6155823469161987,\n            \"Y\": 0.37521716952323914\n          },\n          {\n            \"X\": 0.6030264496803284,\n            \"Y\": 0.3752463459968567\n          },\n          {\n            \"X\": 0.6030088663101196,\n            \"Y\": 0.3679886758327484\n          },\n          {\n            \"X\": 0.61556476354599,\n            \"Y\": 0.36795952916145325\n          }\n        ]\n      },\n      \"Id\": \"ab9f89ac-ea48-41e4-a086-16463cc8765e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.36234283447266,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09388118237257004,\n          \"Height\": 0.007663954049348831,\n          \"Left\": 0.8295504450798035,\n          \"Top\": 0.3622507154941559\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9234315752983093,\n            \"Y\": 0.36969658732414246\n          },\n          {\n            \"X\": 0.8295679092407227,\n            \"Y\": 0.3699146807193756\n          },\n          {\n            \"X\": 0.8295504450798035,\n            \"Y\": 0.36246880888938904\n          },\n          {\n            \"X\": 0.923414409160614,\n            \"Y\": 0.3622507154941559\n          }\n        ]\n      },\n      \"Id\": \"5ad49a33-d6a6-48ae-a3e1-494cf8024285\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92781829833984,\n      \"Text\": \"$235.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04186365008354187,\n          \"Height\": 0.007846768014132977,\n          \"Left\": 0.5293743014335632,\n          \"Top\": 0.3622797429561615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5712379813194275,\n            \"Y\": 0.3700293004512787\n          },\n          {\n            \"X\": 0.5293933153152466,\n            \"Y\": 0.37012651562690735\n          },\n          {\n            \"X\": 0.5293743014335632,\n            \"Y\": 0.36237698793411255\n          },\n          {\n            \"X\": 0.5712190866470337,\n            \"Y\": 0.3622797429561615\n          }\n        ]\n      },\n      \"Id\": \"9713ae7f-6769-48c4-8459-386053df0526\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91423797607422,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029368752613663673,\n          \"Height\": 0.007717330940067768,\n          \"Left\": 0.4593529999256134,\n          \"Top\": 0.36231544613838196\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4887217581272125,\n            \"Y\": 0.369964599609375\n          },\n          {\n            \"X\": 0.4593719244003296,\n            \"Y\": 0.37003278732299805\n          },\n          {\n            \"X\": 0.4593529999256134,\n            \"Y\": 0.362383633852005\n          },\n          {\n            \"X\": 0.4887029230594635,\n            \"Y\": 0.36231544613838196\n          }\n        ]\n      },\n      \"Id\": \"b1e769fb-9f72-4fd0-bf9a-b271e4d7c6e5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87933349609375,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029308414086699486,\n          \"Height\": 0.007685912307351828,\n          \"Left\": 0.3898544907569885,\n          \"Top\": 0.36234837770462036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41916289925575256,\n            \"Y\": 0.3699662387371063\n          },\n          {\n            \"X\": 0.3898735046386719,\n            \"Y\": 0.37003427743911743\n          },\n          {\n            \"X\": 0.3898544907569885,\n            \"Y\": 0.36241641640663147\n          },\n          {\n            \"X\": 0.4191439747810364,\n            \"Y\": 0.36234837770462036\n          }\n        ]\n      },\n      \"Id\": \"a564fd9d-3ca3-4dbc-acce-ec5aed4b0742\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72171783447266,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02913825213909149,\n          \"Height\": 0.007612280081957579,\n          \"Left\": 0.3202212154865265,\n          \"Top\": 0.36257055401802063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493594527244568,\n            \"Y\": 0.3701151907444\n          },\n          {\n            \"X\": 0.32024022936820984,\n            \"Y\": 0.3701828420162201\n          },\n          {\n            \"X\": 0.3202212154865265,\n            \"Y\": 0.3626382350921631\n          },\n          {\n            \"X\": 0.3493405282497406,\n            \"Y\": 0.36257055401802063\n          }\n        ]\n      },\n      \"Id\": \"47393f07-be43-49ba-8bff-9558dddb884c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9330062866211,\n      \"Text\": \"USE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02135300636291504,\n          \"Height\": 0.007257407996803522,\n          \"Left\": 0.8011951446533203,\n          \"Top\": 0.3572373688220978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8225481510162354,\n            \"Y\": 0.36444520950317383\n          },\n          {\n            \"X\": 0.8012120723724365,\n            \"Y\": 0.36449480056762695\n          },\n          {\n            \"X\": 0.8011951446533203,\n            \"Y\": 0.3572869598865509\n          },\n          {\n            \"X\": 0.8225312232971191,\n            \"Y\": 0.3572373688220978\n          }\n        ]\n      },\n      \"Id\": \"1bba4e27-fcef-4de9-bac9-b5abd1b17f09\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90933990478516,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029071461409330368,\n          \"Height\": 0.007736377418041229,\n          \"Left\": 0.2504102885723114,\n          \"Top\": 0.3622925877571106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27948176860809326,\n            \"Y\": 0.3699614703655243\n          },\n          {\n            \"X\": 0.25042980909347534,\n            \"Y\": 0.3700289726257324\n          },\n          {\n            \"X\": 0.2504102885723114,\n            \"Y\": 0.3623600900173187\n          },\n          {\n            \"X\": 0.2794623374938965,\n            \"Y\": 0.3622925877571106\n          }\n        ]\n      },\n      \"Id\": \"7c0667ce-fb99-4fe0-9177-3388f8af89d6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84579467773438,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02954711951315403,\n          \"Height\": 0.007976120337843895,\n          \"Left\": 0.17996782064437866,\n          \"Top\": 0.3623260259628296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20951494574546814,\n            \"Y\": 0.37023353576660156\n          },\n          {\n            \"X\": 0.17998813092708588,\n            \"Y\": 0.37030214071273804\n          },\n          {\n            \"X\": 0.17996782064437866,\n            \"Y\": 0.36239463090896606\n          },\n          {\n            \"X\": 0.2094947099685669,\n            \"Y\": 0.3623260259628296\n          }\n        ]\n      },\n      \"Id\": \"fed927e5-133b-42e6-93fc-f35b04e688b1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93856811523438,\n      \"Text\": \"$235.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04205828905105591,\n          \"Height\": 0.007857853546738625,\n          \"Left\": 0.11032763123512268,\n          \"Top\": 0.36254534125328064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1523859202861786,\n            \"Y\": 0.37030550837516785\n          },\n          {\n            \"X\": 0.11034774780273438,\n            \"Y\": 0.3704031705856323\n          },\n          {\n            \"X\": 0.11032763123512268,\n            \"Y\": 0.3626430034637451\n          },\n          {\n            \"X\": 0.15236590802669525,\n            \"Y\": 0.36254534125328064\n          }\n        ]\n      },\n      \"Id\": \"1bba6db1-e1c8-4153-bfa8-f8cdc2f2020a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90815734863281,\n      \"Text\": \"90471\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030931632965803146,\n          \"Height\": 0.007466993760317564,\n          \"Left\": 0.7918940186500549,\n          \"Top\": 0.34260815382003784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8228256702423096,\n            \"Y\": 0.35000333189964294\n          },\n          {\n            \"X\": 0.7919114828109741,\n            \"Y\": 0.3500751554965973\n          },\n          {\n            \"X\": 0.7918940186500549,\n            \"Y\": 0.3426799774169922\n          },\n          {\n            \"X\": 0.8228083252906799,\n            \"Y\": 0.34260815382003784\n          }\n        ]\n      },\n      \"Id\": \"43ab03a5-7370-49d7-8727-ecf40e94f298\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.18814086914062,\n      \"Text\": \":\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.002772301435470581,\n          \"Height\": 0.005742920096963644,\n          \"Left\": 0.7867387533187866,\n          \"Top\": 0.34298765659332275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7895110845565796,\n            \"Y\": 0.3487241566181183\n          },\n          {\n            \"X\": 0.7867522835731506,\n            \"Y\": 0.34873056411743164\n          },\n          {\n            \"X\": 0.7867387533187866,\n            \"Y\": 0.3429940640926361\n          },\n          {\n            \"X\": 0.7894975543022156,\n            \"Y\": 0.34298765659332275\n          }\n        ]\n      },\n      \"Id\": \"9ee8e479-38dc-45f3-ac34-63e7680ebc3e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.703857421875,\n      \"Text\": \"IM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012049894779920578,\n          \"Height\": 0.007499387487769127,\n          \"Left\": 0.7714237570762634,\n          \"Top\": 0.34284842014312744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7834736704826355,\n            \"Y\": 0.35031986236572266\n          },\n          {\n            \"X\": 0.7714414000511169,\n            \"Y\": 0.3503478169441223\n          },\n          {\n            \"X\": 0.7714237570762634,\n            \"Y\": 0.3428763747215271\n          },\n          {\n            \"X\": 0.783456027507782,\n            \"Y\": 0.34284842014312744\n          }\n        ]\n      },\n      \"Id\": \"a902c8d7-829c-4bdb-9149-75a2cfe39b61\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.1966781616211,\n      \"Text\": \"ADM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025826994329690933,\n          \"Height\": 0.0073645408265292645,\n          \"Left\": 0.7435689568519592,\n          \"Top\": 0.3429272770881653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7693959474563599,\n            \"Y\": 0.3502318561077118\n          },\n          {\n            \"X\": 0.7435863018035889,\n            \"Y\": 0.35029181838035583\n          },\n          {\n            \"X\": 0.7435689568519592,\n            \"Y\": 0.3429872393608093\n          },\n          {\n            \"X\": 0.769378662109375,\n            \"Y\": 0.3429272770881653\n          }\n        ]\n      },\n      \"Id\": \"fd5614d6-21ec-4160-b7d9-3acc3b8221db\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.00474548339844,\n      \"Text\": \"PRQ\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023859338834881783,\n          \"Height\": 0.007551270071417093,\n          \"Left\": 0.7172119617462158,\n          \"Top\": 0.34283381700515747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7410712838172913,\n            \"Y\": 0.3503296971321106\n          },\n          {\n            \"X\": 0.7172298431396484,\n            \"Y\": 0.35038506984710693\n          },\n          {\n            \"X\": 0.7172119617462158,\n            \"Y\": 0.3428891897201538\n          },\n          {\n            \"X\": 0.7410534620285034,\n            \"Y\": 0.34283381700515747\n          }\n        ]\n      },\n      \"Id\": \"ff519993-5d10-4214-bf33-d78e70275a4f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71097564697266,\n      \"Text\": \"ID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011171304620802402,\n          \"Height\": 0.007332982029765844,\n          \"Left\": 0.7035435438156128,\n          \"Top\": 0.3429630994796753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7147148251533508,\n            \"Y\": 0.35027018189430237\n          },\n          {\n            \"X\": 0.703561007976532,\n            \"Y\": 0.35029610991477966\n          },\n          {\n            \"X\": 0.7035435438156128,\n            \"Y\": 0.3429890275001526\n          },\n          {\n            \"X\": 0.7146974205970764,\n            \"Y\": 0.3429630994796753\n          }\n        ]\n      },\n      \"Id\": \"d1839e3d-5f93-43af-80ab-23c9519ede94\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.64649200439453,\n      \"Text\": \"SUBQ/IM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046796780079603195,\n          \"Height\": 0.007604400161653757,\n          \"Left\": 0.6541581749916077,\n          \"Top\": 0.3428703546524048\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7009549736976624,\n            \"Y\": 0.3503660559654236\n          },\n          {\n            \"X\": 0.6541762351989746,\n            \"Y\": 0.3504747450351715\n          },\n          {\n            \"X\": 0.6541581749916077,\n            \"Y\": 0.3429790139198303\n          },\n          {\n            \"X\": 0.7009370923042297,\n            \"Y\": 0.3428703546524048\n          }\n        ]\n      },\n      \"Id\": \"94c117b2-e1c8-42c0-bac7-16eebeec9ffe\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73518371582031,\n      \"Text\": \"NJXS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02818172052502632,\n          \"Height\": 0.007498505059629679,\n          \"Left\": 0.6236467957496643,\n          \"Top\": 0.34294089674949646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6518284678459167,\n            \"Y\": 0.3503739535808563\n          },\n          {\n            \"X\": 0.6236647367477417,\n            \"Y\": 0.3504393994808197\n          },\n          {\n            \"X\": 0.6236467957496643,\n            \"Y\": 0.34300631284713745\n          },\n          {\n            \"X\": 0.6518105864524841,\n            \"Y\": 0.34294089674949646\n          }\n        ]\n      },\n      \"Id\": \"9a4ea2af-68a3-4944-8ae3-dff98dca8049\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.15166473388672,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004759559873491526,\n          \"Height\": 0.006656048819422722,\n          \"Left\": 0.6158471703529358,\n          \"Top\": 0.3432096838951111\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6206067800521851,\n            \"Y\": 0.3498547077178955\n          },\n          {\n            \"X\": 0.6158632636070251,\n            \"Y\": 0.34986573457717896\n          },\n          {\n            \"X\": 0.6158471703529358,\n            \"Y\": 0.34322071075439453\n          },\n          {\n            \"X\": 0.6205906867980957,\n            \"Y\": 0.3432096838951111\n          }\n        ]\n      },\n      \"Id\": \"3442cb59-30ca-4f47-b8f8-528728a4ad0a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.81365203857422,\n      \"Text\": \"09/10/22-09/10/22\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09420053660869598,\n          \"Height\": 0.007587109226733446,\n          \"Left\": 0.8294508457183838,\n          \"Top\": 0.3372204601764679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.923651397228241,\n            \"Y\": 0.3445887863636017\n          },\n          {\n            \"X\": 0.8294681310653687,\n            \"Y\": 0.34480759501457214\n          },\n          {\n            \"X\": 0.8294508457183838,\n            \"Y\": 0.33743926882743835\n          },\n          {\n            \"X\": 0.9236343502998352,\n            \"Y\": 0.3372204601764679\n          }\n        ]\n      },\n      \"Id\": \"a41059c7-a05d-4d25-b371-a8c10cded5d0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91687774658203,\n      \"Text\": \"$26.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03553605452179909,\n          \"Height\": 0.00785842351615429,\n          \"Left\": 0.5292251706123352,\n          \"Top\": 0.33713510632514954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.564761221408844,\n            \"Y\": 0.34491100907325745\n          },\n          {\n            \"X\": 0.5292441844940186,\n            \"Y\": 0.344993531703949\n          },\n          {\n            \"X\": 0.5292251706123352,\n            \"Y\": 0.3372175991535187\n          },\n          {\n            \"X\": 0.5647422671318054,\n            \"Y\": 0.33713510632514954\n          }\n        ]\n      },\n      \"Id\": \"f1adc1ff-7392-4b29-9c19-b54dc7ee1918\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91737365722656,\n      \"Text\": \"$16.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0359230637550354,\n          \"Height\": 0.007936647161841393,\n          \"Left\": 0.4592631161212921,\n          \"Top\": 0.3371599316596985\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4951861798763275,\n            \"Y\": 0.34501317143440247\n          },\n          {\n            \"X\": 0.4592825174331665,\n            \"Y\": 0.3450965881347656\n          },\n          {\n            \"X\": 0.4592631161212921,\n            \"Y\": 0.33724334836006165\n          },\n          {\n            \"X\": 0.4951668381690979,\n            \"Y\": 0.3371599316596985\n          }\n        ]\n      },\n      \"Id\": \"b26ddcdc-5948-43f3-9baa-6cc4cb1c3296\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78353118896484,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029518092051148415,\n          \"Height\": 0.0078013986349105835,\n          \"Left\": 0.38978201150894165,\n          \"Top\": 0.337222695350647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4193000793457031,\n            \"Y\": 0.34495556354522705\n          },\n          {\n            \"X\": 0.3898012936115265,\n            \"Y\": 0.34502407908439636\n          },\n          {\n            \"X\": 0.38978201150894165,\n            \"Y\": 0.3372912108898163\n          },\n          {\n            \"X\": 0.41928085684776306,\n            \"Y\": 0.337222695350647\n          }\n        ]\n      },\n      \"Id\": \"0057c658-4f52-4a75-8336-2a657d79aae2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86542510986328,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029389042407274246,\n          \"Height\": 0.0075377426110208035,\n          \"Left\": 0.3198292553424835,\n          \"Top\": 0.33749181032180786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34921830892562866,\n            \"Y\": 0.34496134519577026\n          },\n          {\n            \"X\": 0.31984809041023254,\n            \"Y\": 0.3450295627117157\n          },\n          {\n            \"X\": 0.3198292553424835,\n            \"Y\": 0.3375600576400757\n          },\n          {\n            \"X\": 0.3491995632648468,\n            \"Y\": 0.33749181032180786\n          }\n        ]\n      },\n      \"Id\": \"a01ef5bf-2614-4f04-a322-b8a40e0747b8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57159423828125,\n      \"Text\": \"VACCINE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047535546123981476,\n          \"Height\": 0.007239810656756163,\n          \"Left\": 0.7754744291305542,\n          \"Top\": 0.33203911781311035\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8230099678039551,\n            \"Y\": 0.339168518781662\n          },\n          {\n            \"X\": 0.7754912972450256,\n            \"Y\": 0.339278906583786\n          },\n          {\n            \"X\": 0.7754744291305542,\n            \"Y\": 0.3321495056152344\n          },\n          {\n            \"X\": 0.822993278503418,\n            \"Y\": 0.33203911781311035\n          }\n        ]\n      },\n      \"Id\": \"9e704391-eae7-44a1-90ab-d7b6ad928012\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87493133544922,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029250117018818855,\n          \"Height\": 0.007792846765369177,\n          \"Left\": 0.2502218186855316,\n          \"Top\": 0.3372083008289337\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2794719338417053,\n            \"Y\": 0.34493324160575867\n          },\n          {\n            \"X\": 0.2502414882183075,\n            \"Y\": 0.3450011610984802\n          },\n          {\n            \"X\": 0.2502218186855316,\n            \"Y\": 0.3372762203216553\n          },\n          {\n            \"X\": 0.2794523537158966,\n            \"Y\": 0.3372083008289337\n          }\n        ]\n      },\n      \"Id\": \"b378804a-bfcb-41f9-81f4-06ec5d40e20f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84716796875,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029243921861052513,\n          \"Height\": 0.007849952206015587,\n          \"Left\": 0.18006056547164917,\n          \"Top\": 0.33725202083587646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20930449664592743,\n            \"Y\": 0.34503409266471863\n          },\n          {\n            \"X\": 0.1800805628299713,\n            \"Y\": 0.3451019823551178\n          },\n          {\n            \"X\": 0.18006056547164917,\n            \"Y\": 0.33731991052627563\n          },\n          {\n            \"X\": 0.20928458869457245,\n            \"Y\": 0.33725202083587646\n          }\n        ]\n      },\n      \"Id\": \"98b8e142-d997-44fc-9d4c-d17d349914a5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89440155029297,\n      \"Text\": \"$10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036070503294467926,\n          \"Height\": 0.007825203239917755,\n          \"Left\": 0.10998905450105667,\n          \"Top\": 0.33727988600730896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1460595577955246,\n            \"Y\": 0.3450213372707367\n          },\n          {\n            \"X\": 0.11000912636518478,\n            \"Y\": 0.3451050817966461\n          },\n          {\n            \"X\": 0.10998905450105667,\n            \"Y\": 0.3373636305332184\n          },\n          {\n            \"X\": 0.14603957533836365,\n            \"Y\": 0.33727988600730896\n          }\n        ]\n      },\n      \"Id\": \"4ce88bac-d056-4a7b-954c-658cd503ecd4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.067138671875,\n      \"Text\": \"12183\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027654029428958893,\n          \"Height\": 0.007144780829548836,\n          \"Left\": 0.07501115649938583,\n          \"Top\": 0.3378620445728302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10266518592834473,\n            \"Y\": 0.3449426293373108\n          },\n          {\n            \"X\": 0.07502959668636322,\n            \"Y\": 0.3450068235397339\n          },\n          {\n            \"X\": 0.07501115649938583,\n            \"Y\": 0.3379262387752533\n          },\n          {\n            \"X\": 0.10264680534601212,\n            \"Y\": 0.3378620445728302\n          }\n        ]\n      },\n      \"Id\": \"e912d766-a3d2-43c2-a9b3-a029c9a7c548\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46124267578125,\n      \"Text\": \"Totals:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03826369345188141,\n          \"Height\": 0.007517035119235516,\n          \"Left\": 0.5992051362991333,\n          \"Top\": 0.3176909387111664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6374688148498535,\n            \"Y\": 0.32511910796165466\n          },\n          {\n            \"X\": 0.5992231369018555,\n            \"Y\": 0.32520797848701477\n          },\n          {\n            \"X\": 0.5992051362991333,\n            \"Y\": 0.3177797794342041\n          },\n          {\n            \"X\": 0.6374508738517761,\n            \"Y\": 0.3176909387111664\n          }\n        ]\n      },\n      \"Id\": \"c7da6d15-d951-4ada-b00e-1a81cef0e3dc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8884048461914,\n      \"Text\": \"$261.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04165279492735863,\n          \"Height\": 0.008173977956175804,\n          \"Left\": 0.5292514562606812,\n          \"Top\": 0.3173803687095642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5709042549133301,\n            \"Y\": 0.3254576325416565\n          },\n          {\n            \"X\": 0.5292711853981018,\n            \"Y\": 0.32555434107780457\n          },\n          {\n            \"X\": 0.5292514562606812,\n            \"Y\": 0.3174770772457123\n          },\n          {\n            \"X\": 0.5708845853805542,\n            \"Y\": 0.3173803687095642\n          }\n        ]\n      },\n      \"Id\": \"b655799b-86f0-4186-96c9-426c6b447e37\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7440185546875,\n      \"Text\": \"$16.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03543134033679962,\n          \"Height\": 0.008245570585131645,\n          \"Left\": 0.45944786071777344,\n          \"Top\": 0.31740838289260864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49487918615341187,\n            \"Y\": 0.3255717158317566\n          },\n          {\n            \"X\": 0.4594680368900299,\n            \"Y\": 0.32565397024154663\n          },\n          {\n            \"X\": 0.45944786071777344,\n            \"Y\": 0.3174906373023987\n          },\n          {\n            \"X\": 0.49485912919044495,\n            \"Y\": 0.31740838289260864\n          }\n        ]\n      },\n      \"Id\": \"8f4d454c-23df-425f-9a14-61b5b720494c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85853576660156,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0293874591588974,\n          \"Height\": 0.008070952259004116,\n          \"Left\": 0.38970136642456055,\n          \"Top\": 0.3175436556339264\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41908881068229675,\n            \"Y\": 0.32554638385772705\n          },\n          {\n            \"X\": 0.3897213339805603,\n            \"Y\": 0.3256146013736725\n          },\n          {\n            \"X\": 0.38970136642456055,\n            \"Y\": 0.3176118731498718\n          },\n          {\n            \"X\": 0.41906893253326416,\n            \"Y\": 0.3175436556339264\n          }\n        ]\n      },\n      \"Id\": \"bdab9f5a-8ce4-477f-a662-a24a95b445b2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92359924316406,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029193060472607613,\n          \"Height\": 0.008099229075014591,\n          \"Left\": 0.3199523389339447,\n          \"Top\": 0.3174440562725067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34914541244506836,\n            \"Y\": 0.3254755139350891\n          },\n          {\n            \"X\": 0.31997260451316833,\n            \"Y\": 0.32554328441619873\n          },\n          {\n            \"X\": 0.3199523389339447,\n            \"Y\": 0.31751182675361633\n          },\n          {\n            \"X\": 0.3491252362728119,\n            \"Y\": 0.3174440562725067\n          }\n        ]\n      },\n      \"Id\": \"e3227036-1019-48f6-80b4-cc90f0537472\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86518859863281,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029053475707769394,\n          \"Height\": 0.008233996108174324,\n          \"Left\": 0.2503359019756317,\n          \"Top\": 0.31735897064208984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.279389351606369,\n            \"Y\": 0.32552552223205566\n          },\n          {\n            \"X\": 0.25035667419433594,\n            \"Y\": 0.325592964887619\n          },\n          {\n            \"X\": 0.2503359019756317,\n            \"Y\": 0.3174264132976532\n          },\n          {\n            \"X\": 0.27936866879463196,\n            \"Y\": 0.31735897064208984\n          }\n        ]\n      },\n      \"Id\": \"5713ff2f-0b33-444e-8294-8fadf0ae0a52\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88922119140625,\n      \"Text\": \"$0.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029071561992168427,\n          \"Height\": 0.0076712192967534065,\n          \"Left\": 0.18016353249549866,\n          \"Top\": 0.3178196847438812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2092350870370865,\n            \"Y\": 0.3254234194755554\n          },\n          {\n            \"X\": 0.1801830679178238,\n            \"Y\": 0.32549089193344116\n          },\n          {\n            \"X\": 0.18016353249549866,\n            \"Y\": 0.31788715720176697\n          },\n          {\n            \"X\": 0.20921564102172852,\n            \"Y\": 0.3178196847438812\n          }\n        ]\n      },\n      \"Id\": \"9d9ae6a3-4fe1-4082-ac47-a0cd12c96150\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96060943603516,\n      \"Text\": \"$245.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04204871878027916,\n          \"Height\": 0.008047555573284626,\n          \"Left\": 0.11023509502410889,\n          \"Top\": 0.31754398345947266\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15228381752967834,\n            \"Y\": 0.3254939019680023\n          },\n          {\n            \"X\": 0.11025571078062057,\n            \"Y\": 0.3255915343761444\n          },\n          {\n            \"X\": 0.11023509502410889,\n            \"Y\": 0.31764161586761475\n          },\n          {\n            \"X\": 0.1522633135318756,\n            \"Y\": 0.31754398345947266\n          }\n        ]\n      },\n      \"Id\": \"3e6546f6-7958-4739-9fee-1dd3c474d978\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.82830047607422,\n      \"Text\": \"Reference:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07335495948791504,\n          \"Height\": 0.00902609620243311,\n          \"Left\": 0.8512657880783081,\n          \"Top\": 0.2868470549583435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9246207475662231,\n            \"Y\": 0.29570281505584717\n          },\n          {\n            \"X\": 0.8512864708900452,\n            \"Y\": 0.29587313532829285\n          },\n          {\n            \"X\": 0.8512657880783081,\n            \"Y\": 0.2870173454284668\n          },\n          {\n            \"X\": 0.9246003031730652,\n            \"Y\": 0.2868470549583435\n          }\n        ]\n      },\n      \"Id\": \"9089b5e3-03da-465c-a3a8-0f75be28e95a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.98583984375,\n      \"Text\": \"12183\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0330229215323925,\n          \"Height\": 0.008692080155014992,\n          \"Left\": 0.8012884855270386,\n          \"Top\": 0.28708016872406006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8343114256858826,\n            \"Y\": 0.29569560289382935\n          },\n          {\n            \"X\": 0.8013087511062622,\n            \"Y\": 0.2957722544670105\n          },\n          {\n            \"X\": 0.8012884855270386,\n            \"Y\": 0.2871568202972412\n          },\n          {\n            \"X\": 0.8342912197113037,\n            \"Y\": 0.28708016872406006\n          }\n        ]\n      },\n      \"Id\": \"b38cb7bc-6cea-4aa0-a168-8f2cbcef11d4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72877502441406,\n      \"Text\": \"A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01042917463928461,\n          \"Height\": 0.008284144103527069,\n          \"Left\": 0.6637634038925171,\n          \"Top\": 0.28750181198120117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6741926074028015,\n            \"Y\": 0.29576176404953003\n          },\n          {\n            \"X\": 0.6637832522392273,\n            \"Y\": 0.29578596353530884\n          },\n          {\n            \"X\": 0.6637634038925171,\n            \"Y\": 0.2875259816646576\n          },\n          {\n            \"X\": 0.6741728186607361,\n            \"Y\": 0.28750181198120117\n          }\n        ]\n      },\n      \"Id\": \"5abae0ad-2133-4c5b-99fc-91bdb640f782\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79345703125,\n      \"Text\": \"Cigna\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03547833487391472,\n          \"Height\": 0.010788964107632637,\n          \"Left\": 0.624951183795929,\n          \"Top\": 0.2852482795715332\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6604295372962952,\n            \"Y\": 0.2959549129009247\n          },\n          {\n            \"X\": 0.6249770522117615,\n            \"Y\": 0.2960372567176819\n          },\n          {\n            \"X\": 0.624951183795929,\n            \"Y\": 0.2853306233882904\n          },\n          {\n            \"X\": 0.6604037880897522,\n            \"Y\": 0.2852482795715332\n          }\n        ]\n      },\n      \"Id\": \"92fee6b5-7249-4d4c-bb02-8931f2ecfb12\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9517822265625,\n      \"Text\": \"preferred\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0551936998963356,\n          \"Height\": 0.010615344159305096,\n          \"Left\": 0.5658222436904907,\n          \"Top\": 0.28552794456481934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6210159659385681,\n            \"Y\": 0.2960151433944702\n          },\n          {\n            \"X\": 0.5658477544784546,\n            \"Y\": 0.2961432933807373\n          },\n          {\n            \"X\": 0.5658222436904907,\n            \"Y\": 0.28565606474876404\n          },\n          {\n            \"X\": 0.6209905743598938,\n            \"Y\": 0.28552794456481934\n          }\n        ]\n      },\n      \"Id\": \"a670cf4a-14ee-43f2-919c-42977ede9383\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93916320800781,\n      \"Text\": \"provider\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049815379083156586,\n          \"Height\": 0.01011628657579422,\n          \"Left\": 0.512030303478241,\n          \"Top\": 0.28573834896087646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5618456602096558,\n            \"Y\": 0.29573899507522583\n          },\n          {\n            \"X\": 0.5120548605918884,\n            \"Y\": 0.2958546578884125\n          },\n          {\n            \"X\": 0.512030303478241,\n            \"Y\": 0.2858539819717407\n          },\n          {\n            \"X\": 0.5618213415145874,\n            \"Y\": 0.28573834896087646\n          }\n        ]\n      },\n      \"Id\": \"04068eb8-87d9-404e-a267-3aa62c778f1b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89833068847656,\n      \"Text\": \"discount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0518653579056263,\n          \"Height\": 0.00873392354696989,\n          \"Left\": 0.4567025899887085,\n          \"Top\": 0.2872300148010254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5085679292678833,\n            \"Y\": 0.2958435118198395\n          },\n          {\n            \"X\": 0.4567238986492157,\n            \"Y\": 0.29596391320228577\n          },\n          {\n            \"X\": 0.4567025899887085,\n            \"Y\": 0.2873504161834717\n          },\n          {\n            \"X\": 0.508546769618988,\n            \"Y\": 0.2872300148010254\n          }\n        ]\n      },\n      \"Id\": \"7cfc71bd-6178-494f-b7a6-3dbd0665f722\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96328735351562,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021997548639774323,\n          \"Height\": 0.0084394421428442,\n          \"Left\": 0.43174055218696594,\n          \"Top\": 0.28737762570381165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45373809337615967,\n            \"Y\": 0.29576602578163147\n          },\n          {\n            \"X\": 0.43176135420799255,\n            \"Y\": 0.2958170771598816\n          },\n          {\n            \"X\": 0.43174055218696594,\n            \"Y\": 0.28742867708206177\n          },\n          {\n            \"X\": 0.45371732115745544,\n            \"Y\": 0.28737762570381165\n          }\n        ]\n      },\n      \"Id\": \"d79ab2ce-5e44-46db-aa48-9cf739dc2f7a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97605895996094,\n      \"Text\": \"been\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03031931258738041,\n          \"Height\": 0.00860852561891079,\n          \"Left\": 0.39761242270469666,\n          \"Top\": 0.2873384952545166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4279317259788513,\n            \"Y\": 0.2958766520023346\n          },\n          {\n            \"X\": 0.39763370156288147,\n            \"Y\": 0.29594701528549194\n          },\n          {\n            \"X\": 0.39761242270469666,\n            \"Y\": 0.28740885853767395\n          },\n          {\n            \"X\": 0.42791053652763367,\n            \"Y\": 0.2873384952545166\n          }\n        ]\n      },\n      \"Id\": \"d30100b6-945d-4956-9e7f-1024a016b8e2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83283233642578,\n      \"Text\": \"applied.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047075215727090836,\n          \"Height\": 0.010158341377973557,\n          \"Left\": 0.3467254042625427,\n          \"Top\": 0.2857051193714142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39380061626434326,\n            \"Y\": 0.29575416445732117\n          },\n          {\n            \"X\": 0.3467506468296051,\n            \"Y\": 0.29586344957351685\n          },\n          {\n            \"X\": 0.3467254042625427,\n            \"Y\": 0.2858143746852875\n          },\n          {\n            \"X\": 0.3937755525112152,\n            \"Y\": 0.2857051193714142\n          }\n        ]\n      },\n      \"Id\": \"14fa1c15-29ea-42ac-b8be-dd15078f703e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86710357666016,\n      \"Text\": \"APPEAL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05513244867324829,\n          \"Height\": 0.008612334728240967,\n          \"Left\": 0.6191551685333252,\n          \"Top\": 0.27494871616363525\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6742876172065735,\n            \"Y\": 0.28343307971954346\n          },\n          {\n            \"X\": 0.6191756725311279,\n            \"Y\": 0.2835610508918762\n          },\n          {\n            \"X\": 0.6191551685333252,\n            \"Y\": 0.2750767171382904\n          },\n          {\n            \"X\": 0.6742672920227051,\n            \"Y\": 0.27494871616363525\n          }\n        ]\n      },\n      \"Id\": \"44bc3d78-0786-4d79-ba94-ce2f91dd1548\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.96258544921875,\n      \"Text\": \"PROCESS:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0709780603647232,\n          \"Height\": 0.008789850398898125,\n          \"Left\": 0.5441541075706482,\n          \"Top\": 0.27497798204421997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6151321530342102,\n            \"Y\": 0.2836030423641205\n          },\n          {\n            \"X\": 0.5441752076148987,\n            \"Y\": 0.28376784920692444\n          },\n          {\n            \"X\": 0.5441541075706482,\n            \"Y\": 0.27514275908470154\n          },\n          {\n            \"X\": 0.6151112914085388,\n            \"Y\": 0.27497798204421997\n          }\n        ]\n      },\n      \"Id\": \"928b5359-f3ca-4693-93de-29347910191c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97362518310547,\n      \"Text\": \"There\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03697044774889946,\n          \"Height\": 0.00865490548312664,\n          \"Left\": 0.5032772421836853,\n          \"Top\": 0.27512720227241516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5402476787567139,\n            \"Y\": 0.2836962938308716\n          },\n          {\n            \"X\": 0.503298282623291,\n            \"Y\": 0.28378209471702576\n          },\n          {\n            \"X\": 0.5032772421836853,\n            \"Y\": 0.27521300315856934\n          },\n          {\n            \"X\": 0.5402267575263977,\n            \"Y\": 0.27512720227241516\n          }\n        ]\n      },\n      \"Id\": \"ac0b67a3-0ff7-4efd-8dfd-bc48dc2e68b4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98123931884766,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009903524070978165,\n          \"Height\": 0.008362450636923313,\n          \"Left\": 0.48928889632225037,\n          \"Top\": 0.2751821279525757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49919241666793823,\n            \"Y\": 0.2835216224193573\n          },\n          {\n            \"X\": 0.4893094301223755,\n            \"Y\": 0.2835445702075958\n          },\n          {\n            \"X\": 0.48928889632225037,\n            \"Y\": 0.2752050757408142\n          },\n          {\n            \"X\": 0.4991719126701355,\n            \"Y\": 0.2751821279525757\n          }\n        ]\n      },\n      \"Id\": \"243408bc-22c0-4c5b-b292-2fbaeed51a30\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94833374023438,\n      \"Text\": \"an\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015571790747344494,\n          \"Height\": 0.006715941242873669,\n          \"Left\": 0.469778835773468,\n          \"Top\": 0.27518028020858765\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4853506088256836,\n            \"Y\": 0.2818601131439209\n          },\n          {\n            \"X\": 0.4697953164577484,\n            \"Y\": 0.2818962335586548\n          },\n          {\n            \"X\": 0.469778835773468,\n            \"Y\": 0.27521640062332153\n          },\n          {\n            \"X\": 0.4853341579437256,\n            \"Y\": 0.27518028020858765\n          }\n        ]\n      },\n      \"Id\": \"93b63882-1a57-48c9-84ef-cfb10bdfa367\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52265930175781,\n      \"Text\": \"appeal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04243125021457672,\n          \"Height\": 0.010220058262348175,\n          \"Left\": 0.42352303862571716,\n          \"Top\": 0.27320560812950134\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4659542739391327,\n            \"Y\": 0.2833271622657776\n          },\n          {\n            \"X\": 0.42354816198349,\n            \"Y\": 0.2834256589412689\n          },\n          {\n            \"X\": 0.42352303862571716,\n            \"Y\": 0.2733040750026703\n          },\n          {\n            \"X\": 0.4659292697906494,\n            \"Y\": 0.27320560812950134\n          }\n        ]\n      },\n      \"Id\": \"9b25f327-db90-4f85-9fe8-44a3fc256e72\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94713592529297,\n      \"Text\": \"process\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04869562387466431,\n          \"Height\": 0.008484250865876675,\n          \"Left\": 0.3713347315788269,\n          \"Top\": 0.2735428214073181\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4200303554534912,\n            \"Y\": 0.28191402554512024\n          },\n          {\n            \"X\": 0.37135568261146545,\n            \"Y\": 0.28202706575393677\n          },\n          {\n            \"X\": 0.3713347315788269,\n            \"Y\": 0.27365586161613464\n          },\n          {\n            \"X\": 0.4200095236301422,\n            \"Y\": 0.2735428214073181\n          }\n        ]\n      },\n      \"Id\": \"104a4608-e8bc-4945-84c2-6f23b8d82321\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92955780029297,\n      \"Text\": \"if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00834091380238533,\n          \"Height\": 0.008376596495509148,\n          \"Left\": 0.3592313528060913,\n          \"Top\": 0.2753426730632782\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36757227778434753,\n            \"Y\": 0.28369995951652527\n          },\n          {\n            \"X\": 0.35925230383872986,\n            \"Y\": 0.2837192714214325\n          },\n          {\n            \"X\": 0.3592313528060913,\n            \"Y\": 0.2753619849681854\n          },\n          {\n            \"X\": 0.367551326751709,\n            \"Y\": 0.2753426730632782\n          }\n        ]\n      },\n      \"Id\": \"81429324-2ba9-4f93-bf4a-1bba15aab015\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97041320800781,\n      \"Text\": \"you\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022922001779079437,\n          \"Height\": 0.008637629449367523,\n          \"Left\": 0.3338278532028198,\n          \"Top\": 0.27311623096466064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35674983263015747,\n            \"Y\": 0.2817007005214691\n          },\n          {\n            \"X\": 0.3338494300842285,\n            \"Y\": 0.28175386786460876\n          },\n          {\n            \"X\": 0.3338278532028198,\n            \"Y\": 0.2731694281101227\n          },\n          {\n            \"X\": 0.35672831535339355,\n            \"Y\": 0.27311623096466064\n          }\n        ]\n      },\n      \"Id\": \"06e5c2d8-6ca3-4317-8e8a-f5333ddf51b5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9072494506836,\n      \"Text\": \"disagree\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053967058658599854,\n          \"Height\": 0.010535945184528828,\n          \"Left\": 0.27622294425964355,\n          \"Top\": 0.2731969952583313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3301900029182434,\n            \"Y\": 0.2836076617240906\n          },\n          {\n            \"X\": 0.27624934911727905,\n            \"Y\": 0.28373295068740845\n          },\n          {\n            \"X\": 0.27622294425964355,\n            \"Y\": 0.2733222544193268\n          },\n          {\n            \"X\": 0.3301638066768646,\n            \"Y\": 0.2731969952583313\n          }\n        ]\n      },\n      \"Id\": \"69fcc15b-5fcf-4164-b2c5-70873ff58738\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99073791503906,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025511043146252632,\n          \"Height\": 0.008324984461069107,\n          \"Left\": 0.24740681052207947,\n          \"Top\": 0.2753761410713196\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27291783690452576,\n            \"Y\": 0.2836419343948364\n          },\n          {\n            \"X\": 0.24742785096168518,\n            \"Y\": 0.2837011218070984\n          },\n          {\n            \"X\": 0.24740681052207947,\n            \"Y\": 0.27543532848358154\n          },\n          {\n            \"X\": 0.2728968858718872,\n            \"Y\": 0.2753761410713196\n          }\n        ]\n      },\n      \"Id\": \"86bf6f40-d4bf-4d1e-81b1-2c9d582bd1df\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99217224121094,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019754402339458466,\n          \"Height\": 0.008224193938076496,\n          \"Left\": 0.2241944819688797,\n          \"Top\": 0.27540308237075806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24394887685775757,\n            \"Y\": 0.2835814356803894\n          },\n          {\n            \"X\": 0.22421535849571228,\n            \"Y\": 0.2836272716522217\n          },\n          {\n            \"X\": 0.2241944819688797,\n            \"Y\": 0.27544891834259033\n          },\n          {\n            \"X\": 0.24392804503440857,\n            \"Y\": 0.27540308237075806\n          }\n        ]\n      },\n      \"Id\": \"336d5fa0-18ae-448b-9fd4-d5e4a8ce680e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70323944091797,\n      \"Text\": \"determination\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0851907730102539,\n          \"Height\": 0.008633874356746674,\n          \"Left\": 0.13529081642627716,\n          \"Top\": 0.2752181887626648\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22048158943653107,\n            \"Y\": 0.28365427255630493\n          },\n          {\n            \"X\": 0.13531261682510376,\n            \"Y\": 0.28385207056999207\n          },\n          {\n            \"X\": 0.13529081642627716,\n            \"Y\": 0.27541598677635193\n          },\n          {\n            \"X\": 0.22046002745628357,\n            \"Y\": 0.2752181887626648\n          }\n        ]\n      },\n      \"Id\": \"0300fb45-aeae-42a4-9c2a-d39a461e6b5c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96034240722656,\n      \"Text\": \"made\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03493664413690567,\n          \"Height\": 0.008316743187606335,\n          \"Left\": 0.09633688628673553,\n          \"Top\": 0.275251567363739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1312735229730606,\n            \"Y\": 0.2834872305393219\n          },\n          {\n            \"X\": 0.0963582769036293,\n            \"Y\": 0.2835683226585388\n          },\n          {\n            \"X\": 0.09633688628673553,\n            \"Y\": 0.27533265948295593\n          },\n          {\n            \"X\": 0.1312522441148758,\n            \"Y\": 0.275251567363739\n          }\n        ]\n      },\n      \"Id\": \"65aeb176-e440-40b3-9b9f-77d0d650cb54\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96601104736328,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01540409680455923,\n          \"Height\": 0.0065734898671507835,\n          \"Left\": 0.07707740366458893,\n          \"Top\": 0.2754129469394684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09248150140047073,\n            \"Y\": 0.2819506824016571\n          },\n          {\n            \"X\": 0.0770944282412529,\n            \"Y\": 0.28198641538619995\n          },\n          {\n            \"X\": 0.07707740366458893,\n            \"Y\": 0.27544867992401123\n          },\n          {\n            \"X\": 0.09246450662612915,\n            \"Y\": 0.2754129469394684\n          }\n        ]\n      },\n      \"Id\": \"15f48d66-4086-41d0-805c-d2a189593854\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98289489746094,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02223272994160652,\n          \"Height\": 0.00835332553833723,\n          \"Left\": 0.6517534255981445,\n          \"Top\": 0.2628704905509949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6739861369132996,\n            \"Y\": 0.27117225527763367\n          },\n          {\n            \"X\": 0.6517733931541443,\n            \"Y\": 0.2712238132953644\n          },\n          {\n            \"X\": 0.6517534255981445,\n            \"Y\": 0.262922078371048\n          },\n          {\n            \"X\": 0.6739662289619446,\n            \"Y\": 0.2628704905509949\n          }\n        ]\n      },\n      \"Id\": \"dc0e93c2-9036-4e61-9d32-07beed4ae8c6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.85691833496094,\n      \"Text\": \"claim.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03592368960380554,\n          \"Height\": 0.008374529890716076,\n          \"Left\": 0.6117064356803894,\n          \"Top\": 0.2628387212753296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6476300954818726,\n            \"Y\": 0.27112987637519836\n          },\n          {\n            \"X\": 0.6117265224456787,\n            \"Y\": 0.27121326327323914\n          },\n          {\n            \"X\": 0.6117064356803894,\n            \"Y\": 0.26292210817337036\n          },\n          {\n            \"X\": 0.6476101279258728,\n            \"Y\": 0.2628387212753296\n          }\n        ]\n      },\n      \"Id\": \"5f87ad5a-e7f6-45ff-a8af-6ea650bef546\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9035415649414,\n      \"Text\": \"You\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02498709224164486,\n          \"Height\": 0.008629173040390015,\n          \"Left\": 0.582373321056366,\n          \"Top\": 0.2628955841064453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6073604226112366,\n            \"Y\": 0.27146679162979126\n          },\n          {\n            \"X\": 0.5823941230773926,\n            \"Y\": 0.2715247571468353\n          },\n          {\n            \"X\": 0.582373321056366,\n            \"Y\": 0.2629535496234894\n          },\n          {\n            \"X\": 0.60733962059021,\n            \"Y\": 0.2628955841064453\n          }\n        ]\n      },\n      \"Id\": \"3e960ad3-6792-479d-b720-507a511b9fa5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98854064941406,\n      \"Text\": \"have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0306235421448946,\n          \"Height\": 0.008714373223483562,\n          \"Left\": 0.5476800203323364,\n          \"Top\": 0.26285257935523987\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5783035755157471,\n            \"Y\": 0.27149587869644165\n          },\n          {\n            \"X\": 0.5477011203765869,\n            \"Y\": 0.2715669572353363\n          },\n          {\n            \"X\": 0.5476800203323364,\n            \"Y\": 0.26292362809181213\n          },\n          {\n            \"X\": 0.5782825946807861,\n            \"Y\": 0.26285257935523987\n          }\n        ]\n      },\n      \"Id\": \"01364699-b9b3-4a31-a9e3-68ed791ad176\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94281005859375,\n      \"Text\": \"180\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02274271473288536,\n          \"Height\": 0.008545179851353168,\n          \"Left\": 0.5204229354858398,\n          \"Top\": 0.2629600763320923\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5431656241416931,\n            \"Y\": 0.27145248651504517\n          },\n          {\n            \"X\": 0.5204437375068665,\n            \"Y\": 0.2715052664279938\n          },\n          {\n            \"X\": 0.5204229354858398,\n            \"Y\": 0.2630128264427185\n          },\n          {\n            \"X\": 0.5431448817253113,\n            \"Y\": 0.2629600763320923\n          }\n        ]\n      },\n      \"Id\": \"16655fa5-2072-4cd6-b7c3-9ce6ff3435ad\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96748352050781,\n      \"Text\": \"days\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029568403959274292,\n          \"Height\": 0.01015978492796421,\n          \"Left\": 0.48725342750549316,\n          \"Top\": 0.26131755113601685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5168218612670898,\n            \"Y\": 0.27140870690345764\n          },\n          {\n            \"X\": 0.4872782826423645,\n            \"Y\": 0.2714773416519165\n          },\n          {\n            \"X\": 0.48725342750549316,\n            \"Y\": 0.2613861560821533\n          },\n          {\n            \"X\": 0.5167970657348633,\n            \"Y\": 0.26131755113601685\n          }\n        ]\n      },\n      \"Id\": \"16c681f9-8847-43ee-8c37-8a5286cd0858\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98246765136719,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012388295494019985,\n          \"Height\": 0.008146918378770351,\n          \"Left\": 0.4710753560066223,\n          \"Top\": 0.2628537714481354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4834636449813843,\n            \"Y\": 0.27097198367118835\n          },\n          {\n            \"X\": 0.47109538316726685,\n            \"Y\": 0.2710007131099701\n          },\n          {\n            \"X\": 0.4710753560066223,\n            \"Y\": 0.2628825008869171\n          },\n          {\n            \"X\": 0.48344364762306213,\n            \"Y\": 0.2628537714481354\n          }\n        ]\n      },\n      \"Id\": \"6f324014-e953-490f-99ee-6054e55411b2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96892547607422,\n      \"Text\": \"submit\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042075302451848984,\n          \"Height\": 0.008621533401310444,\n          \"Left\": 0.4252668023109436,\n          \"Top\": 0.2628275156021118\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4673421084880829,\n            \"Y\": 0.2713513672351837\n          },\n          {\n            \"X\": 0.42528796195983887,\n            \"Y\": 0.2714490294456482\n          },\n          {\n            \"X\": 0.4252668023109436,\n            \"Y\": 0.2629251480102539\n          },\n          {\n            \"X\": 0.4673210382461548,\n            \"Y\": 0.2628275156021118\n          }\n        ]\n      },\n      \"Id\": \"8c7da12c-0f5b-4035-ae0d-85ae0e64ad49\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96842956542969,\n      \"Text\": \"your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028461385518312454,\n          \"Height\": 0.00864444300532341,\n          \"Left\": 0.3939991593360901,\n          \"Top\": 0.26095008850097656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42246055603027344,\n            \"Y\": 0.26952847838401794\n          },\n          {\n            \"X\": 0.39402055740356445,\n            \"Y\": 0.2695945203304291\n          },\n          {\n            \"X\": 0.3939991593360901,\n            \"Y\": 0.2610161304473877\n          },\n          {\n            \"X\": 0.42243921756744385,\n            \"Y\": 0.26095008850097656\n          }\n        ]\n      },\n      \"Id\": \"213682d2-cd1f-4e43-9c5d-6cb2845a55b3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89143371582031,\n      \"Text\": \"appeal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04197283834218979,\n          \"Height\": 0.010031276382505894,\n          \"Left\": 0.348480224609375,\n          \"Top\": 0.26111721992492676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3904530704021454,\n            \"Y\": 0.2710510790348053\n          },\n          {\n            \"X\": 0.3485051691532135,\n            \"Y\": 0.2711485028266907\n          },\n          {\n            \"X\": 0.348480224609375,\n            \"Y\": 0.26121461391448975\n          },\n          {\n            \"X\": 0.3904282748699188,\n            \"Y\": 0.26111721992492676\n          }\n        ]\n      },\n      \"Id\": \"4cf88552-c036-47fb-b899-46c10f6cbec4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96600341796875,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012039881199598312,\n          \"Height\": 0.008044603280723095,\n          \"Left\": 0.3330211341381073,\n          \"Top\": 0.26291704177856445\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3450610041618347,\n            \"Y\": 0.27093374729156494\n          },\n          {\n            \"X\": 0.3330412805080414,\n            \"Y\": 0.2709616422653198\n          },\n          {\n            \"X\": 0.3330211341381073,\n            \"Y\": 0.2629449665546417\n          },\n          {\n            \"X\": 0.34504085779190063,\n            \"Y\": 0.26291704177856445\n          }\n        ]\n      },\n      \"Id\": \"67921f03-b5ec-409c-a5e8-b2657a993b31\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70475006103516,\n      \"Text\": \"Wellfleet\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05554242432117462,\n          \"Height\": 0.008970909751951694,\n          \"Left\": 0.27410468459129333,\n          \"Top\": 0.2627872824668884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32964712381362915,\n            \"Y\": 0.2716292440891266\n          },\n          {\n            \"X\": 0.27412712574005127,\n            \"Y\": 0.27175819873809814\n          },\n          {\n            \"X\": 0.27410468459129333,\n            \"Y\": 0.2629162073135376\n          },\n          {\n            \"X\": 0.32962486147880554,\n            \"Y\": 0.2627872824668884\n          }\n        ]\n      },\n      \"Id\": \"2bd545c3-6f2f-4019-967c-c9e02a775842\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61967468261719,\n      \"Text\": \"Attn:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028900763019919395,\n          \"Height\": 0.008607419207692146,\n          \"Left\": 0.24237240850925446,\n          \"Top\": 0.26289039850234985\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2712731659412384,\n            \"Y\": 0.27143076062202454\n          },\n          {\n            \"X\": 0.24239414930343628,\n            \"Y\": 0.27149781584739685\n          },\n          {\n            \"X\": 0.24237240850925446,\n            \"Y\": 0.26295745372772217\n          },\n          {\n            \"X\": 0.27125149965286255,\n            \"Y\": 0.26289039850234985\n          }\n        ]\n      },\n      \"Id\": \"0c38f694-37a2-42d3-ae16-6e312bbf3157\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98097229003906,\n      \"Text\": \"Appeals\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051557134836912155,\n          \"Height\": 0.010194018483161926,\n          \"Left\": 0.18667316436767578,\n          \"Top\": 0.2613796889781952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23823030292987823,\n            \"Y\": 0.2714540362358093\n          },\n          {\n            \"X\": 0.1866990178823471,\n            \"Y\": 0.2715736925601959\n          },\n          {\n            \"X\": 0.18667316436767578,\n            \"Y\": 0.2614993453025818\n          },\n          {\n            \"X\": 0.23820462822914124,\n            \"Y\": 0.2613796889781952\n          }\n        ]\n      },\n      \"Id\": \"2f29ad5c-6a03-4d57-9486-8e3fce5333d8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.25172424316406,\n      \"Text\": \"Department,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07663719356060028,\n          \"Height\": 0.010595531202852726,\n          \"Left\": 0.10583794862031937,\n          \"Top\": 0.26120278239250183\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18247513473033905,\n            \"Y\": 0.27162042260169983\n          },\n          {\n            \"X\": 0.10586497187614441,\n            \"Y\": 0.271798312664032\n          },\n          {\n            \"X\": 0.10583794862031937,\n            \"Y\": 0.261380672454834\n          },\n          {\n            \"X\": 0.1824483871459961,\n            \"Y\": 0.26120278239250183\n          }\n        ]\n      },\n      \"Id\": \"13b211d7-08ac-4bbd-9302-8bf337e96eab\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92168426513672,\n      \"Text\": \"PO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01966022700071335,\n          \"Height\": 0.008602030575275421,\n          \"Left\": 0.08142124861478806,\n          \"Top\": 0.2631113827228546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1010814756155014,\n            \"Y\": 0.27166780829429626\n          },\n          {\n            \"X\": 0.08144351094961166,\n            \"Y\": 0.2717134356498718\n          },\n          {\n            \"X\": 0.08142124861478806,\n            \"Y\": 0.2631570100784302\n          },\n          {\n            \"X\": 0.10105926543474197,\n            \"Y\": 0.2631113827228546\n          }\n        ]\n      },\n      \"Id\": \"db532f16-f9b8-43ef-8b20-87c8b819b7f6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91230010986328,\n      \"Text\": \"Box\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023881951346993446,\n          \"Height\": 0.008305808529257774,\n          \"Left\": 0.649172842502594,\n          \"Top\": 0.2508014440536499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6730548143386841,\n            \"Y\": 0.2590518593788147\n          },\n          {\n            \"X\": 0.6491926908493042,\n            \"Y\": 0.2591072618961334\n          },\n          {\n            \"X\": 0.649172842502594,\n            \"Y\": 0.25085684657096863\n          },\n          {\n            \"X\": 0.6730350255966187,\n            \"Y\": 0.2508014440536499\n          }\n        ]\n      },\n      \"Id\": \"51a88d19-a601-4c08-ac96-3a9982723403\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.32193756103516,\n      \"Text\": \"15369,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040717851370573044,\n          \"Height\": 0.009436629712581635,\n          \"Left\": 0.6043257117271423,\n          \"Top\": 0.24968302249908447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6450436115264893,\n            \"Y\": 0.2590251564979553\n          },\n          {\n            \"X\": 0.604348361492157,\n            \"Y\": 0.2591196596622467\n          },\n          {\n            \"X\": 0.6043257117271423,\n            \"Y\": 0.24977751076221466\n          },\n          {\n            \"X\": 0.6450210809707642,\n            \"Y\": 0.24968302249908447\n          }\n        ]\n      },\n      \"Id\": \"3ec5194e-5baa-4179-9634-e6d8479d557c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.42452239990234,\n      \"Text\": \"Springfield,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0681736022233963,\n          \"Height\": 0.010676849633455276,\n          \"Left\": 0.5311927199363708,\n          \"Top\": 0.24877923727035522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5993663668632507,\n            \"Y\": 0.25929784774780273\n          },\n          {\n            \"X\": 0.5312184691429138,\n            \"Y\": 0.2594560980796814\n          },\n          {\n            \"X\": 0.5311927199363708,\n            \"Y\": 0.2489374727010727\n          },\n          {\n            \"X\": 0.5993408560752869,\n            \"Y\": 0.24877923727035522\n          }\n        ]\n      },\n      \"Id\": \"3d1630ea-5bfa-4e02-9d62-2259231e466d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87677764892578,\n      \"Text\": \"MA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02127281203866005,\n          \"Height\": 0.008166548795998096,\n          \"Left\": 0.5055451393127441,\n          \"Top\": 0.2509969472885132\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5268179774284363,\n            \"Y\": 0.259114146232605\n          },\n          {\n            \"X\": 0.5055651068687439,\n            \"Y\": 0.259163498878479\n          },\n          {\n            \"X\": 0.5055451393127441,\n            \"Y\": 0.2510462999343872\n          },\n          {\n            \"X\": 0.5267980694770813,\n            \"Y\": 0.2509969472885132\n          }\n        ]\n      },\n      \"Id\": \"a34b5b90-490f-4a61-9f0b-ec00d536dfc1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.93919372558594,\n      \"Text\": \"01115-5369.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07732969522476196,\n          \"Height\": 0.008721381425857544,\n          \"Left\": 0.4250740706920624,\n          \"Top\": 0.2505932152271271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.502403736114502,\n            \"Y\": 0.25913506746292114\n          },\n          {\n            \"X\": 0.4250952899456024,\n            \"Y\": 0.2593145966529846\n          },\n          {\n            \"X\": 0.4250740706920624,\n            \"Y\": 0.25077271461486816\n          },\n          {\n            \"X\": 0.502382755279541,\n            \"Y\": 0.2505932152271271\n          }\n        ]\n      },\n      \"Id\": \"9f2474f1-7133-4c00-b90b-fa51c34d04df\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9172592163086,\n      \"Text\": \"Once\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033248938620090485,\n          \"Height\": 0.008586116135120392,\n          \"Left\": 0.38721707463264465,\n          \"Top\": 0.2507041096687317\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42046603560447693,\n            \"Y\": 0.25921306014060974\n          },\n          {\n            \"X\": 0.3872383236885071,\n            \"Y\": 0.2592902183532715\n          },\n          {\n            \"X\": 0.38721707463264465,\n            \"Y\": 0.25078126788139343\n          },\n          {\n            \"X\": 0.42044487595558167,\n            \"Y\": 0.2507041096687317\n          }\n        ]\n      },\n      \"Id\": \"e8183872-b190-4a9c-84ed-fece15c134de\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98609161376953,\n      \"Text\": \"your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028102517127990723,\n          \"Height\": 0.00854598917067051,\n          \"Left\": 0.35593724250793457,\n          \"Top\": 0.24880994856357574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3840397596359253,\n            \"Y\": 0.2572907507419586\n          },\n          {\n            \"X\": 0.3559585213661194,\n            \"Y\": 0.2573559582233429\n          },\n          {\n            \"X\": 0.35593724250793457,\n            \"Y\": 0.24887515604496002\n          },\n          {\n            \"X\": 0.38401859998703003,\n            \"Y\": 0.24880994856357574\n          }\n        ]\n      },\n      \"Id\": \"a475ccea-32c6-4d3c-b84a-0f41d7e6b660\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81822204589844,\n      \"Text\": \"appeal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04174071550369263,\n          \"Height\": 0.010042143985629082,\n          \"Left\": 0.31095996499061584,\n          \"Top\": 0.24902817606925964\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35270068049430847,\n            \"Y\": 0.25897344946861267\n          },\n          {\n            \"X\": 0.3109850585460663,\n            \"Y\": 0.2590703070163727\n          },\n          {\n            \"X\": 0.31095996499061584,\n            \"Y\": 0.24912503361701965\n          },\n          {\n            \"X\": 0.3526757061481476,\n            \"Y\": 0.24902817606925964\n          }\n        ]\n      },\n      \"Id\": \"7dffa994-e3dd-4d05-a270-8ab97eb9abb3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97576904296875,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009937780909240246,\n          \"Height\": 0.008415565825998783,\n          \"Left\": 0.29725754261016846,\n          \"Top\": 0.2509174942970276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3071953058242798,\n            \"Y\": 0.2593100368976593\n          },\n          {\n            \"X\": 0.2972787618637085,\n            \"Y\": 0.2593330442905426\n          },\n          {\n            \"X\": 0.29725754261016846,\n            \"Y\": 0.2509405016899109\n          },\n          {\n            \"X\": 0.30717411637306213,\n            \"Y\": 0.2509174942970276\n          }\n        ]\n      },\n      \"Id\": \"877e2a10-c673-4cba-9c9d-f01be22a7179\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.34178924560547,\n      \"Text\": \"received,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05564745515584946,\n          \"Height\": 0.009679678827524185,\n          \"Left\": 0.23766866326332092,\n          \"Top\": 0.24962690472602844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.293316125869751,\n            \"Y\": 0.25917741656303406\n          },\n          {\n            \"X\": 0.23769301176071167,\n            \"Y\": 0.25930657982826233\n          },\n          {\n            \"X\": 0.23766866326332092,\n            \"Y\": 0.24975605309009552\n          },\n          {\n            \"X\": 0.29329195618629456,\n            \"Y\": 0.24962690472602844\n          }\n        ]\n      },\n      \"Id\": \"a31be6ce-39f5-413f-b153-d53e7a5a0a50\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9269027709961,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007978166453540325,\n          \"Height\": 0.006712696049362421,\n          \"Left\": 0.22538217902183533,\n          \"Top\": 0.2509181499481201\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23336033523082733,\n            \"Y\": 0.25761234760284424\n          },\n          {\n            \"X\": 0.22539927065372467,\n            \"Y\": 0.2576308250427246\n          },\n          {\n            \"X\": 0.22538217902183533,\n            \"Y\": 0.2509366273880005\n          },\n          {\n            \"X\": 0.23334327340126038,\n            \"Y\": 0.2509181499481201\n          }\n        ]\n      },\n      \"Id\": \"8fc84bdd-9978-4d5e-b74c-c6479d55f85d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92377471923828,\n      \"Text\": \"decision\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05121343210339546,\n          \"Height\": 0.008505634032189846,\n          \"Left\": 0.1705956608057022,\n          \"Top\": 0.25088638067245483\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22180908918380737,\n            \"Y\": 0.25927314162254333\n          },\n          {\n            \"X\": 0.1706172227859497,\n            \"Y\": 0.25939202308654785\n          },\n          {\n            \"X\": 0.1705956608057022,\n            \"Y\": 0.25100526213645935\n          },\n          {\n            \"X\": 0.22178766131401062,\n            \"Y\": 0.25088638067245483\n          }\n        ]\n      },\n      \"Id\": \"5badf39b-b85b-427a-8d33-ea158907a4dc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87938690185547,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019940871745347977,\n          \"Height\": 0.008304043672978878,\n          \"Left\": 0.14738750457763672,\n          \"Top\": 0.25110918283462524\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1673283725976944,\n            \"Y\": 0.2593669891357422\n          },\n          {\n            \"X\": 0.14740881323814392,\n            \"Y\": 0.2594132423400879\n          },\n          {\n            \"X\": 0.14738750457763672,\n            \"Y\": 0.25115543603897095\n          },\n          {\n            \"X\": 0.16730713844299316,\n            \"Y\": 0.25110918283462524\n          }\n        ]\n      },\n      \"Id\": \"d7844aab-6a30-440f-80ba-e0ff241f714b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25707244873047,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015509909018874168,\n          \"Height\": 0.008240797556936741,\n          \"Left\": 0.12820394337177277,\n          \"Top\": 0.2509668469429016\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14371386170387268,\n            \"Y\": 0.25917166471481323\n          },\n          {\n            \"X\": 0.1282251626253128,\n            \"Y\": 0.2592076361179352\n          },\n          {\n            \"X\": 0.12820394337177277,\n            \"Y\": 0.25100281834602356\n          },\n          {\n            \"X\": 0.14369267225265503,\n            \"Y\": 0.2509668469429016\n          }\n        ]\n      },\n      \"Id\": \"e9bb44b4-d39b-4100-9774-0ec374287997\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96629333496094,\n      \"Text\": \"made\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034884899854660034,\n          \"Height\": 0.008266397751867771,\n          \"Left\": 0.08974356204271317,\n          \"Top\": 0.25084999203681946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1246284618973732,\n            \"Y\": 0.2590354382991791\n          },\n          {\n            \"X\": 0.08976484090089798,\n            \"Y\": 0.25911638140678406\n          },\n          {\n            \"X\": 0.08974356204271317,\n            \"Y\": 0.25093093514442444\n          },\n          {\n            \"X\": 0.12460727989673615,\n            \"Y\": 0.25084999203681946\n          }\n        ]\n      },\n      \"Id\": \"ce224741-4196-4e56-bba1-69984882bba8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98548889160156,\n      \"Text\": \"within\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03612249717116356,\n          \"Height\": 0.008351241238415241,\n          \"Left\": 0.6379095911979675,\n          \"Top\": 0.2387523204088211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6740320920944214,\n            \"Y\": 0.24701973795890808\n          },\n          {\n            \"X\": 0.6379294991493225,\n            \"Y\": 0.24710355699062347\n          },\n          {\n            \"X\": 0.6379095911979675,\n            \"Y\": 0.2388361394405365\n          },\n          {\n            \"X\": 0.6740122437477112,\n            \"Y\": 0.2387523204088211\n          }\n        ]\n      },\n      \"Id\": \"a96284f0-5711-4c7d-a68f-77647c5a6d34\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94640350341797,\n      \"Text\": \"30\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015050745569169521,\n          \"Height\": 0.008345910347998142,\n          \"Left\": 0.6189935207366943,\n          \"Top\": 0.23885029554367065\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6340442299842834,\n            \"Y\": 0.24716131389141083\n          },\n          {\n            \"X\": 0.6190136075019836,\n            \"Y\": 0.24719621241092682\n          },\n          {\n            \"X\": 0.6189935207366943,\n            \"Y\": 0.23888519406318665\n          },\n          {\n            \"X\": 0.6340242028236389,\n            \"Y\": 0.23885029554367065\n          }\n        ]\n      },\n      \"Id\": \"b03844be-def2-4781-be75-9647c6fe34b4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98210906982422,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01187132578343153,\n          \"Height\": 0.007934479974210262,\n          \"Left\": 0.6032662987709045,\n          \"Top\": 0.23876774311065674\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6151376366615295,\n            \"Y\": 0.24667470157146454\n          },\n          {\n            \"X\": 0.6032854914665222,\n            \"Y\": 0.24670222401618958\n          },\n          {\n            \"X\": 0.6032662987709045,\n            \"Y\": 0.23879525065422058\n          },\n          {\n            \"X\": 0.6151185035705566,\n            \"Y\": 0.23876774311065674\n          }\n        ]\n      },\n      \"Id\": \"170f4989-724d-4c02-a640-37a17a122f95\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.944580078125,\n      \"Text\": \"60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015967536717653275,\n          \"Height\": 0.008457304909825325,\n          \"Left\": 0.5837962031364441,\n          \"Top\": 0.238829106092453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5997637510299683,\n            \"Y\": 0.24724937975406647\n          },\n          {\n            \"X\": 0.583816647529602,\n            \"Y\": 0.24728640913963318\n          },\n          {\n            \"X\": 0.5837962031364441,\n            \"Y\": 0.23886612057685852\n          },\n          {\n            \"X\": 0.5997433066368103,\n            \"Y\": 0.238829106092453\n          }\n        ]\n      },\n      \"Id\": \"eba57b6c-1e26-4ff2-8c19-80d20a758c2e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70296478271484,\n      \"Text\": \"calendar\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05379534140229225,\n          \"Height\": 0.008948703296482563,\n          \"Left\": 0.5262045860290527,\n          \"Top\": 0.23833999037742615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5799999237060547,\n            \"Y\": 0.24716384708881378\n          },\n          {\n            \"X\": 0.5262262225151062,\n            \"Y\": 0.24728870391845703\n          },\n          {\n            \"X\": 0.5262045860290527,\n            \"Y\": 0.2384648472070694\n          },\n          {\n            \"X\": 0.5799784660339355,\n            \"Y\": 0.23833999037742615\n          }\n        ]\n      },\n      \"Id\": \"0f828fdd-611f-440d-a28b-c7127d04ea1f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84475708007812,\n      \"Text\": \"days,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033152200281620026,\n          \"Height\": 0.010163131169974804,\n          \"Left\": 0.4899232089519501,\n          \"Top\": 0.23701034486293793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5230754017829895,\n            \"Y\": 0.24709655344486237\n          },\n          {\n            \"X\": 0.4899480640888214,\n            \"Y\": 0.247173473238945\n          },\n          {\n            \"X\": 0.4899232089519501,\n            \"Y\": 0.23708724975585938\n          },\n          {\n            \"X\": 0.5230507254600525,\n            \"Y\": 0.23701034486293793\n          }\n        ]\n      },\n      \"Id\": \"d5927a42-b2de-421c-a0c1-5dd552e8f696\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97840118408203,\n      \"Text\": \"depending\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0649099126458168,\n          \"Height\": 0.010647528804838657,\n          \"Left\": 0.4206438362598419,\n          \"Top\": 0.2364778071641922\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4855537712574005,\n            \"Y\": 0.24697467684745789\n          },\n          {\n            \"X\": 0.42066994309425354,\n            \"Y\": 0.24712532758712769\n          },\n          {\n            \"X\": 0.4206438362598419,\n            \"Y\": 0.2366284430027008\n          },\n          {\n            \"X\": 0.485527902841568,\n            \"Y\": 0.2364778071641922\n          }\n        ]\n      },\n      \"Id\": \"8aa2202c-3935-459f-9895-8c2b5ea5abb6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98466491699219,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01555084902793169,\n          \"Height\": 0.006545198615640402,\n          \"Left\": 0.401313453912735,\n          \"Top\": 0.2386741042137146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4168643057346344,\n            \"Y\": 0.24518322944641113\n          },\n          {\n            \"X\": 0.4013296961784363,\n            \"Y\": 0.24521929025650024\n          },\n          {\n            \"X\": 0.401313453912735,\n            \"Y\": 0.2387101650238037\n          },\n          {\n            \"X\": 0.4168481230735779,\n            \"Y\": 0.2386741042137146\n          }\n        ]\n      },\n      \"Id\": \"4886dc50-8c2c-4025-8df8-8a46e0d63fe6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95938110351562,\n      \"Text\": \"State\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032253164798021317,\n          \"Height\": 0.008600574918091297,\n          \"Left\": 0.36509472131729126,\n          \"Top\": 0.23859475553035736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39734789729118347,\n            \"Y\": 0.24712049961090088\n          },\n          {\n            \"X\": 0.36511608958244324,\n            \"Y\": 0.24719533324241638\n          },\n          {\n            \"X\": 0.36509472131729126,\n            \"Y\": 0.23866958916187286\n          },\n          {\n            \"X\": 0.39732661843299866,\n            \"Y\": 0.23859475553035736\n          }\n        ]\n      },\n      \"Id\": \"252cda4f-c798-4bdd-ad66-8c3ba5e86bf1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.36904907226562,\n      \"Text\": \"requirements.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08462751656770706,\n          \"Height\": 0.01030288077890873,\n          \"Left\": 0.27697303891181946,\n          \"Top\": 0.23678269982337952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3616005778312683,\n            \"Y\": 0.2468891441822052\n          },\n          {\n            \"X\": 0.2769986689090729,\n            \"Y\": 0.2470855861902237\n          },\n          {\n            \"X\": 0.27697303891181946,\n            \"Y\": 0.23697912693023682\n          },\n          {\n            \"X\": 0.36157524585723877,\n            \"Y\": 0.23678269982337952\n          }\n        ]\n      },\n      \"Id\": \"361c1e42-9510-48bd-8d59-fd84de9a8b25\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95769500732422,\n      \"Text\": \"For\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021415317431092262,\n          \"Height\": 0.008462413214147091,\n          \"Left\": 0.25034886598587036,\n          \"Top\": 0.23882009088993073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27176418900489807,\n            \"Y\": 0.2472328245639801\n          },\n          {\n            \"X\": 0.2503702640533447,\n            \"Y\": 0.2472825050354004\n          },\n          {\n            \"X\": 0.25034886598587036,\n            \"Y\": 0.23886975646018982\n          },\n          {\n            \"X\": 0.2717428505420685,\n            \"Y\": 0.23882009088993073\n          }\n        ]\n      },\n      \"Id\": \"d80f6646-6d46-4288-9ad0-0b86167f9198\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95877075195312,\n      \"Text\": \"additional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05961184203624725,\n          \"Height\": 0.008856568485498428,\n          \"Left\": 0.18728619813919067,\n          \"Top\": 0.2385444939136505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24689804017543793,\n            \"Y\": 0.24726270139217377\n          },\n          {\n            \"X\": 0.18730857968330383,\n            \"Y\": 0.24740105867385864\n          },\n          {\n            \"X\": 0.18728619813919067,\n            \"Y\": 0.2386828511953354\n          },\n          {\n            \"X\": 0.2468758523464203,\n            \"Y\": 0.2385444939136505\n          }\n        ]\n      },\n      \"Id\": \"e57968ef-ce1b-4e63-8b35-53a06a41a296\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92822265625,\n      \"Text\": \"information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06879343092441559,\n          \"Height\": 0.008776452392339706,\n          \"Left\": 0.11453163623809814,\n          \"Top\": 0.23867009580135345\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18332506716251373,\n            \"Y\": 0.2472868710756302\n          },\n          {\n            \"X\": 0.11455395817756653,\n            \"Y\": 0.24744655191898346\n          },\n          {\n            \"X\": 0.11453163623809814,\n            \"Y\": 0.23882976174354553\n          },\n          {\n            \"X\": 0.18330293893814087,\n            \"Y\": 0.23867009580135345\n          }\n        ]\n      },\n      \"Id\": \"4022e20c-95a9-4c55-a0b4-b5314f36d404\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95388793945312,\n      \"Text\": \"on\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0153553057461977,\n          \"Height\": 0.006520245224237442,\n          \"Left\": 0.09510727226734161,\n          \"Top\": 0.23880347609519958\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11046257615089417,\n            \"Y\": 0.24528811872005463\n          },\n          {\n            \"X\": 0.09512411057949066,\n            \"Y\": 0.24532373249530792\n          },\n          {\n            \"X\": 0.09510727226734161,\n            \"Y\": 0.23883908987045288\n          },\n          {\n            \"X\": 0.11044576019048691,\n            \"Y\": 0.23880347609519958\n          }\n        ]\n      },\n      \"Id\": \"ae6fa0de-1edc-4f5a-8067-6256dd492430\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78811645507812,\n      \"Text\": \"appeal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041461627930402756,\n          \"Height\": 0.009871803224086761,\n          \"Left\": 0.6319617033004761,\n          \"Top\": 0.2249213010072708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6734233498573303,\n            \"Y\": 0.2346968948841095\n          },\n          {\n            \"X\": 0.6319853067398071,\n            \"Y\": 0.23479311168193817\n          },\n          {\n            \"X\": 0.6319617033004761,\n            \"Y\": 0.2250175029039383\n          },\n          {\n            \"X\": 0.6733998656272888,\n            \"Y\": 0.2249213010072708\n          }\n        ]\n      },\n      \"Id\": \"426c3d27-377d-4c76-86d4-cde05e0615c0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63233184814453,\n      \"Text\": \"rights,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03722858428955078,\n          \"Height\": 0.010097618214786053,\n          \"Left\": 0.5910228490829468,\n          \"Top\": 0.2249354124069214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6282514333724976,\n            \"Y\": 0.23494665324687958\n          },\n          {\n            \"X\": 0.5910471677780151,\n            \"Y\": 0.23503302037715912\n          },\n          {\n            \"X\": 0.5910228490829468,\n            \"Y\": 0.22502177953720093\n          },\n          {\n            \"X\": 0.6282272934913635,\n            \"Y\": 0.2249354124069214\n          }\n        ]\n      },\n      \"Id\": \"1ee3c5fb-6640-4c81-b44a-1e259a8ae600\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9578857421875,\n      \"Text\": \"please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041197143495082855,\n          \"Height\": 0.010225308127701283,\n          \"Left\": 0.5459024906158447,\n          \"Top\": 0.22491051256656647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5870996713638306,\n            \"Y\": 0.23504023253917694\n          },\n          {\n            \"X\": 0.5459272265434265,\n            \"Y\": 0.23513582348823547\n          },\n          {\n            \"X\": 0.5459024906158447,\n            \"Y\": 0.225006103515625\n          },\n          {\n            \"X\": 0.5870750546455383,\n            \"Y\": 0.22491051256656647\n          }\n        ]\n      },\n      \"Id\": \"94507074-833c-49ab-bb33-692ba02bf479\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8266372680664,\n      \"Text\": \"refer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028588419780135155,\n          \"Height\": 0.008377416990697384,\n          \"Left\": 0.5129739046096802,\n          \"Top\": 0.22678883373737335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5415623188018799,\n            \"Y\": 0.2350999265909195\n          },\n          {\n            \"X\": 0.5129942893981934,\n            \"Y\": 0.2351662516593933\n          },\n          {\n            \"X\": 0.5129739046096802,\n            \"Y\": 0.22685515880584717\n          },\n          {\n            \"X\": 0.5415419936180115,\n            \"Y\": 0.22678883373737335\n          }\n        ]\n      },\n      \"Id\": \"3033dc02-db41-4420-b5fc-fb3ad1ee5f51\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9864730834961,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011886120773851871,\n          \"Height\": 0.008043280802667141,\n          \"Left\": 0.49815282225608826,\n          \"Top\": 0.22683186829090118\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5100389122962952,\n            \"Y\": 0.23484760522842407\n          },\n          {\n            \"X\": 0.4981725215911865,\n            \"Y\": 0.2348751574754715\n          },\n          {\n            \"X\": 0.49815282225608826,\n            \"Y\": 0.2268594205379486\n          },\n          {\n            \"X\": 0.5100192427635193,\n            \"Y\": 0.22683186829090118\n          }\n        ]\n      },\n      \"Id\": \"eb767b13-5204-4532-b459-9460806c3aae\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99053192138672,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019244398921728134,\n          \"Height\": 0.008233021013438702,\n          \"Left\": 0.4752451479434967,\n          \"Top\": 0.22675642371177673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49448955059051514,\n            \"Y\": 0.23494480550289154\n          },\n          {\n            \"X\": 0.47526535391807556,\n            \"Y\": 0.2349894493818283\n          },\n          {\n            \"X\": 0.4752451479434967,\n            \"Y\": 0.2268010526895523\n          },\n          {\n            \"X\": 0.49446940422058105,\n            \"Y\": 0.22675642371177673\n          }\n        ]\n      },\n      \"Id\": \"005af55d-ce57-4cbe-b914-0e20b62e9d16\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83160400390625,\n      \"Text\": \"certificate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059489715844392776,\n          \"Height\": 0.008616773411631584,\n          \"Left\": 0.41162392497062683,\n          \"Top\": 0.2264825701713562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4711136519908905,\n            \"Y\": 0.23496127128601074\n          },\n          {\n            \"X\": 0.4116450250148773,\n            \"Y\": 0.23509934544563293\n          },\n          {\n            \"X\": 0.41162392497062683,\n            \"Y\": 0.2266206443309784\n          },\n          {\n            \"X\": 0.47109270095825195,\n            \"Y\": 0.2264825701713562\n          }\n        ]\n      },\n      \"Id\": \"70aabb68-23f1-4fcd-b67c-4c836bbac68c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9691162109375,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012642883695662022,\n          \"Height\": 0.008258036337792873,\n          \"Left\": 0.39538684487342834,\n          \"Top\": 0.22671255469322205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.408029705286026,\n            \"Y\": 0.2349412739276886\n          },\n          {\n            \"X\": 0.3954073488712311,\n            \"Y\": 0.2349705845117569\n          },\n          {\n            \"X\": 0.39538684487342834,\n            \"Y\": 0.22674185037612915\n          },\n          {\n            \"X\": 0.40800923109054565,\n            \"Y\": 0.22671255469322205\n          }\n        ]\n      },\n      \"Id\": \"60330143-4a7c-42a5-968e-07caac5fa781\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61962890625,\n      \"Text\": \"coverage.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06004761531949043,\n          \"Height\": 0.008544102311134338,\n          \"Left\": 0.3324931263923645,\n          \"Top\": 0.22478848695755005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39254075288772583,\n            \"Y\": 0.23319323360919952\n          },\n          {\n            \"X\": 0.3325142562389374,\n            \"Y\": 0.2333325892686844\n          },\n          {\n            \"X\": 0.3324931263923645,\n            \"Y\": 0.2249278426170349\n          },\n          {\n            \"X\": 0.3925197720527649,\n            \"Y\": 0.22478848695755005\n          }\n        ]\n      },\n      \"Id\": \"2ef406ce-92da-44c5-b11e-1c034c4d1f8b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9261245727539,\n      \"Text\": \"Total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0345270149409771,\n          \"Height\": 0.008494957350194454,\n          \"Left\": 0.5312348008155823,\n          \"Top\": 0.19015640020370483\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5657618045806885,\n            \"Y\": 0.19857126474380493\n          },\n          {\n            \"X\": 0.5312554240226746,\n            \"Y\": 0.19865135848522186\n          },\n          {\n            \"X\": 0.5312348008155823,\n            \"Y\": 0.19023649394512177\n          },\n          {\n            \"X\": 0.5657413005828857,\n            \"Y\": 0.19015640020370483\n          }\n        ]\n      },\n      \"Id\": \"dd6a7101-24b5-436e-9a33-c3f047462b3d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94476318359375,\n      \"Text\": \"Paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030258091166615486,\n          \"Height\": 0.008864267729222775,\n          \"Left\": 0.4970327615737915,\n          \"Top\": 0.18979322910308838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5272908806800842,\n            \"Y\": 0.1985873132944107\n          },\n          {\n            \"X\": 0.49705439805984497,\n            \"Y\": 0.19865749776363373\n          },\n          {\n            \"X\": 0.4970327615737915,\n            \"Y\": 0.1898634135723114\n          },\n          {\n            \"X\": 0.5272693037986755,\n            \"Y\": 0.18979322910308838\n          }\n        ]\n      },\n      \"Id\": \"e6c8982b-3821-4851-bddd-e7a892fa63ab\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92094421386719,\n      \"Text\": \"By\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017845390364527702,\n          \"Height\": 0.010051898658275604,\n          \"Left\": 0.47491875290870667,\n          \"Top\": 0.18843960762023926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4927641451358795,\n            \"Y\": 0.19845013320446014\n          },\n          {\n            \"X\": 0.47494345903396606,\n            \"Y\": 0.19849149882793427\n          },\n          {\n            \"X\": 0.47491875290870667,\n            \"Y\": 0.18848097324371338\n          },\n          {\n            \"X\": 0.4927394986152649,\n            \"Y\": 0.18843960762023926\n          }\n        ]\n      },\n      \"Id\": \"95142044-408d-45bb-b2c1-6cfd96fe9507\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71958923339844,\n      \"Text\": \"Payor\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039640575647354126,\n          \"Height\": 0.010634242556989193,\n          \"Left\": 0.4310924708843231,\n          \"Top\": 0.18800094723701477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47073304653167725,\n            \"Y\": 0.1985432356595993\n          },\n          {\n            \"X\": 0.4311186373233795,\n            \"Y\": 0.19863519072532654\n          },\n          {\n            \"X\": 0.4310924708843231,\n            \"Y\": 0.188092902302742\n          },\n          {\n            \"X\": 0.4707070291042328,\n            \"Y\": 0.18800094723701477\n          }\n        ]\n      },\n      \"Id\": \"50cd7e5c-9cb3-488c-8d3f-441b6f7fee41\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57095336914062,\n      \"Text\": \"Total:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05548878014087677,\n          \"Height\": 0.01255413144826889,\n          \"Left\": 0.5129681825637817,\n          \"Top\": 0.1557096689939499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5684569478034973,\n            \"Y\": 0.16813509166240692\n          },\n          {\n            \"X\": 0.512998640537262,\n            \"Y\": 0.16826380789279938\n          },\n          {\n            \"X\": 0.5129681825637817,\n            \"Y\": 0.15583837032318115\n          },\n          {\n            \"X\": 0.5684266686439514,\n            \"Y\": 0.1557096689939499\n          }\n        ]\n      },\n      \"Id\": \"1efa7fb1-a9f2-4e9e-915b-833bb6a3b95c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96096801757812,\n      \"Text\": \"$490.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07760298997163773,\n          \"Height\": 0.014465891756117344,\n          \"Left\": 0.42804843187332153,\n          \"Top\": 0.15438684821128845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5056514143943787,\n            \"Y\": 0.16867271065711975\n          },\n          {\n            \"X\": 0.4280839264392853,\n            \"Y\": 0.16885273158550262\n          },\n          {\n            \"X\": 0.42804843187332153,\n            \"Y\": 0.15456685423851013\n          },\n          {\n            \"X\": 0.5056163668632507,\n            \"Y\": 0.15438684821128845\n          }\n        ]\n      },\n      \"Id\": \"42625383-b0b4-4bcb-a8f1-0066b4cac14c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95471954345703,\n      \"Text\": \"For\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025358134880661964,\n          \"Height\": 0.010128242895007133,\n          \"Left\": 0.9018511772155762,\n          \"Top\": 0.09398932754993439\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9272093176841736,\n            \"Y\": 0.10405879467725754\n          },\n          {\n            \"X\": 0.9018745422363281,\n            \"Y\": 0.10411756485700607\n          },\n          {\n            \"X\": 0.9018511772155762,\n            \"Y\": 0.09404809772968292\n          },\n          {\n            \"X\": 0.9271860122680664,\n            \"Y\": 0.09398932754993439\n          }\n        ]\n      },\n      \"Id\": \"fd8da422-e633-4a89-bbbc-7eaa4d4930a5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91033172607422,\n      \"Text\": \"questions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07161521911621094,\n          \"Height\": 0.012283485382795334,\n          \"Left\": 0.826271653175354,\n          \"Top\": 0.09158959239721298\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8978868722915649,\n            \"Y\": 0.10370700061321259\n          },\n          {\n            \"X\": 0.8263000845909119,\n            \"Y\": 0.10387308150529861\n          },\n          {\n            \"X\": 0.826271653175354,\n            \"Y\": 0.09175566583871841\n          },\n          {\n            \"X\": 0.897858738899231,\n            \"Y\": 0.09158959239721298\n          }\n        ]\n      },\n      \"Id\": \"41f709d8-106b-493b-8e38-491b0fac259a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96674346923828,\n      \"Text\": \"regarding\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07038205862045288,\n          \"Height\": 0.01245159562677145,\n          \"Left\": 0.7511974573135376,\n          \"Top\": 0.09145011752843857\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8215795159339905,\n            \"Y\": 0.10373849421739578\n          },\n          {\n            \"X\": 0.7512266039848328,\n            \"Y\": 0.10390171408653259\n          },\n          {\n            \"X\": 0.7511974573135376,\n            \"Y\": 0.09161332994699478\n          },\n          {\n            \"X\": 0.8215506672859192,\n            \"Y\": 0.09145011752843857\n          }\n        ]\n      },\n      \"Id\": \"8890e31f-fc8d-493f-9ce8-07f9d2405a80\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9922866821289,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0235628429800272,\n          \"Height\": 0.009899932891130447,\n          \"Left\": 0.7234135270118713,\n          \"Top\": 0.09404156357049942\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.746976375579834,\n            \"Y\": 0.10388688743114471\n          },\n          {\n            \"X\": 0.7234369516372681,\n            \"Y\": 0.10394150018692017\n          },\n          {\n            \"X\": 0.7234135270118713,\n            \"Y\": 0.09409617632627487\n          },\n          {\n            \"X\": 0.746953010559082,\n            \"Y\": 0.09404156357049942\n          }\n        ]\n      },\n      \"Id\": \"c38c4f85-241c-4743-99d6-ccde816bf288\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97908020019531,\n      \"Text\": \"claim\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03868299722671509,\n          \"Height\": 0.009926213882863522,\n          \"Left\": 0.6800879240036011,\n          \"Top\": 0.09408222883939743\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7187709212303162,\n            \"Y\": 0.10391875356435776\n          },\n          {\n            \"X\": 0.6801114678382874,\n            \"Y\": 0.10400844365358353\n          },\n          {\n            \"X\": 0.6800879240036011,\n            \"Y\": 0.0941719114780426\n          },\n          {\n            \"X\": 0.7187474966049194,\n            \"Y\": 0.09408222883939743\n          }\n        ]\n      },\n      \"Id\": \"67d4c4d6-103e-46bd-b1ce-513eac79ad07\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94451141357422,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015269648283720016,\n          \"Height\": 0.007656614296138287,\n          \"Left\": 0.6599273085594177,\n          \"Top\": 0.09430976957082748\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6751969456672668,\n            \"Y\": 0.10193099826574326\n          },\n          {\n            \"X\": 0.6599456667900085,\n            \"Y\": 0.10196638107299805\n          },\n          {\n            \"X\": 0.6599273085594177,\n            \"Y\": 0.09434515237808228\n          },\n          {\n            \"X\": 0.6751787066459656,\n            \"Y\": 0.09430976957082748\n          }\n        ]\n      },\n      \"Id\": \"8a10f095-d2d5-4fdc-a1d8-f0e542439605\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86322784423828,\n      \"Text\": \"benefit\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05040983483195305,\n          \"Height\": 0.01009668130427599,\n          \"Left\": 0.6053392291069031,\n          \"Top\": 0.0940796360373497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6557490825653076,\n            \"Y\": 0.10405942052602768\n          },\n          {\n            \"X\": 0.6053633689880371,\n            \"Y\": 0.10417631268501282\n          },\n          {\n            \"X\": 0.6053392291069031,\n            \"Y\": 0.09419652074575424\n          },\n          {\n            \"X\": 0.6557250618934631,\n            \"Y\": 0.0940796360373497\n          }\n        ]\n      },\n      \"Id\": \"df4a00a8-2412-46a4-b26b-0240b3aabd3f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52620697021484,\n      \"Text\": \"determination,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10483549535274506,\n          \"Height\": 0.012214738875627518,\n          \"Left\": 0.49652475118637085,\n          \"Top\": 0.09215998649597168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6013602614402771,\n            \"Y\": 0.10413157939910889\n          },\n          {\n            \"X\": 0.4965541958808899,\n            \"Y\": 0.1043747290968895\n          },\n          {\n            \"X\": 0.49652475118637085,\n            \"Y\": 0.0924031212925911\n          },\n          {\n            \"X\": 0.6013312339782715,\n            \"Y\": 0.09215998649597168\n          }\n        ]\n      },\n      \"Id\": \"ebc80993-7aa5-4442-b7b4-211654fd084c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94906616210938,\n      \"Text\": \"please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048946864902973175,\n          \"Height\": 0.01232735626399517,\n          \"Left\": 0.44230765104293823,\n          \"Top\": 0.09191679209470749\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4912545084953308,\n            \"Y\": 0.10413066297769547\n          },\n          {\n            \"X\": 0.44233793020248413,\n            \"Y\": 0.10424415022134781\n          },\n          {\n            \"X\": 0.44230765104293823,\n            \"Y\": 0.09203027188777924\n          },\n          {\n            \"X\": 0.4912244379520416,\n            \"Y\": 0.09191679209470749\n          }\n        ]\n      },\n      \"Id\": \"041d9d04-7bc5-48f1-ae7d-21835dbd5b52\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97952270507812,\n      \"Text\": \"contact\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05432464927434921,\n          \"Height\": 0.010168946348130703,\n          \"Left\": 0.383098304271698,\n          \"Top\": 0.0937190130352974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4374229609966278,\n            \"Y\": 0.10376197844743729\n          },\n          {\n            \"X\": 0.38312339782714844,\n            \"Y\": 0.10388795286417007\n          },\n          {\n            \"X\": 0.383098304271698,\n            \"Y\": 0.09384498000144958\n          },\n          {\n            \"X\": 0.4373980760574341,\n            \"Y\": 0.0937190130352974\n          }\n        ]\n      },\n      \"Id\": \"2cd231d1-eaf0-4f5e-9ea5-db9874d6eaf3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99504852294922,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023562926799058914,\n          \"Height\": 0.009833324700593948,\n          \"Left\": 0.3563515543937683,\n          \"Top\": 0.09405385702848434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3799144923686981,\n            \"Y\": 0.10383257269859314\n          },\n          {\n            \"X\": 0.3563760817050934,\n            \"Y\": 0.10388718545436859\n          },\n          {\n            \"X\": 0.3563515543937683,\n            \"Y\": 0.0941084623336792\n          },\n          {\n            \"X\": 0.3798900544643402,\n            \"Y\": 0.09405385702848434\n          }\n        ]\n      },\n      \"Id\": \"ae773b00-22bc-4908-b8c6-c52c8d29c8ec\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61933898925781,\n      \"Text\": \"Payor\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04415891692042351,\n          \"Height\": 0.012317982502281666,\n          \"Left\": 0.3072640895843506,\n          \"Top\": 0.09180619567632675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3514229953289032,\n            \"Y\": 0.10402180254459381\n          },\n          {\n            \"X\": 0.30729490518569946,\n            \"Y\": 0.10412418097257614\n          },\n          {\n            \"X\": 0.3072640895843506,\n            \"Y\": 0.09190856665372849\n          },\n          {\n            \"X\": 0.35139235854148865,\n            \"Y\": 0.09180619567632675\n          }\n        ]\n      },\n      \"Id\": \"415dccb5-10ff-42cd-8aab-50dd80138612\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95769500732422,\n      \"Text\": \"indicated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06687016785144806,\n          \"Height\": 0.010406347922980785,\n          \"Left\": 0.23650358617305756,\n          \"Top\": 0.09398223459720612\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3033737540245056,\n            \"Y\": 0.1042335033416748\n          },\n          {\n            \"X\": 0.23652972280979156,\n            \"Y\": 0.10438857972621918\n          },\n          {\n            \"X\": 0.23650358617305756,\n            \"Y\": 0.09413730353116989\n          },\n          {\n            \"X\": 0.3033478558063507,\n            \"Y\": 0.09398223459720612\n          }\n        ]\n      },\n      \"Id\": \"bf2d5dce-9dda-4f74-b92f-7ab94699ef5f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95352935791016,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012799764052033424,\n          \"Height\": 0.009974523447453976,\n          \"Left\": 0.21896156668663025,\n          \"Top\": 0.09426872432231903\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23176132142543793,\n            \"Y\": 0.10421361029148102\n          },\n          {\n            \"X\": 0.21898697316646576,\n            \"Y\": 0.10424324870109558\n          },\n          {\n            \"X\": 0.21896156668663025,\n            \"Y\": 0.094298355281353\n          },\n          {\n            \"X\": 0.231735959649086,\n            \"Y\": 0.09426872432231903\n          }\n        ]\n      },\n      \"Id\": \"72ea22a7-fcdc-4878-a24c-dc1be4dc489d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99256896972656,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02355457842350006,\n          \"Height\": 0.009946918115019798,\n          \"Left\": 0.19099469482898712,\n          \"Top\": 0.09411463141441345\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21454927325248718,\n            \"Y\": 0.10400696098804474\n          },\n          {\n            \"X\": 0.19102005660533905,\n            \"Y\": 0.1040615439414978\n          },\n          {\n            \"X\": 0.19099469482898712,\n            \"Y\": 0.09416921436786652\n          },\n          {\n            \"X\": 0.21452397108078003,\n            \"Y\": 0.09411463141441345\n          }\n        ]\n      },\n      \"Id\": \"71a1641a-3d2f-40e3-ae80-c1f936ca972e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97601318359375,\n      \"Text\": \"box\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02717011608183384,\n          \"Height\": 0.009980815462768078,\n          \"Left\": 0.15892520546913147,\n          \"Top\": 0.09410900622606277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18609531223773956,\n            \"Y\": 0.10402684658765793\n          },\n          {\n            \"X\": 0.15895074605941772,\n            \"Y\": 0.10408982634544373\n          },\n          {\n            \"X\": 0.15892520546913147,\n            \"Y\": 0.09417197853326797\n          },\n          {\n            \"X\": 0.18606986105442047,\n            \"Y\": 0.09410900622606277\n          }\n        ]\n      },\n      \"Id\": \"dc1d70bd-60a2-436b-9f72-602ea33d6b8f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94178771972656,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014315842650830746,\n          \"Height\": 0.009452464058995247,\n          \"Left\": 0.14044436812400818,\n          \"Top\": 0.09378305822610855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1547602117061615,\n            \"Y\": 0.10320236533880234\n          },\n          {\n            \"X\": 0.14046868681907654,\n            \"Y\": 0.10323552042245865\n          },\n          {\n            \"X\": 0.14044436812400818,\n            \"Y\": 0.09381621330976486\n          },\n          {\n            \"X\": 0.15473593771457672,\n            \"Y\": 0.09378305822610855\n          }\n        ]\n      },\n      \"Id\": \"9bf87df8-6e3b-4925-8728-46714cfd834a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9930191040039,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023893503472208977,\n          \"Height\": 0.010058783926069736,\n          \"Left\": 0.113077312707901,\n          \"Top\": 0.09366869181394577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13697081804275513,\n            \"Y\": 0.1036721020936966\n          },\n          {\n            \"X\": 0.1131032332777977,\n            \"Y\": 0.10372747480869293\n          },\n          {\n            \"X\": 0.113077312707901,\n            \"Y\": 0.09372405707836151\n          },\n          {\n            \"X\": 0.136944979429245,\n            \"Y\": 0.09366869181394577\n          }\n        ]\n      },\n      \"Id\": \"c3bd6e1a-4469-4eb1-baa8-fed5ff24a369\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94126892089844,\n      \"Text\": \"upper\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04314315691590309,\n          \"Height\": 0.01031213253736496,\n          \"Left\": 0.884317934513092,\n          \"Top\": 0.0769629180431366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9274611473083496,\n            \"Y\": 0.08717502653598785\n          },\n          {\n            \"X\": 0.8843417167663574,\n            \"Y\": 0.08727505058050156\n          },\n          {\n            \"X\": 0.884317934513092,\n            \"Y\": 0.0770629420876503\n          },\n          {\n            \"X\": 0.9274375438690186,\n            \"Y\": 0.0769629180431366\n          }\n        ]\n      },\n      \"Id\": \"fdee2d01-9557-40dc-86fe-5b1732ad3017\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9649429321289,\n      \"Text\": \"right\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03249669820070267,\n          \"Height\": 0.012557909823954105,\n          \"Left\": 0.8482296466827393,\n          \"Top\": 0.07701919227838516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8807263970375061,\n            \"Y\": 0.08950178325176239\n          },\n          {\n            \"X\": 0.8482588529586792,\n            \"Y\": 0.0895771011710167\n          },\n          {\n            \"X\": 0.8482296466827393,\n            \"Y\": 0.07709450274705887\n          },\n          {\n            \"X\": 0.8806973099708557,\n            \"Y\": 0.07701919227838516\n          }\n        ]\n      },\n      \"Id\": \"1a132387-e519-4f2c-bfd2-975ee028bccf\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96543884277344,\n      \"Text\": \"hand\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036490123718976974,\n          \"Height\": 0.010208035819232464,\n          \"Left\": 0.8076743483543396,\n          \"Top\": 0.07948621362447739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8441644310951233,\n            \"Y\": 0.08960966020822525\n          },\n          {\n            \"X\": 0.807698130607605,\n            \"Y\": 0.08969425410032272\n          },\n          {\n            \"X\": 0.8076743483543396,\n            \"Y\": 0.07957080751657486\n          },\n          {\n            \"X\": 0.8441407680511475,\n            \"Y\": 0.07948621362447739\n          }\n        ]\n      },\n      \"Id\": \"0dd8bcfc-a1cb-4be4-955e-8fbaad6256d5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9028091430664,\n      \"Text\": \"corner\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.047843314707279205,\n          \"Height\": 0.008707885630428791,\n          \"Left\": 0.7556837797164917,\n          \"Top\": 0.07917678356170654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8035271167755127,\n            \"Y\": 0.08777372539043427\n          },\n          {\n            \"X\": 0.7557041645050049,\n            \"Y\": 0.08788466453552246\n          },\n          {\n            \"X\": 0.7556837797164917,\n            \"Y\": 0.07928771525621414\n          },\n          {\n            \"X\": 0.8035068511962891,\n            \"Y\": 0.07917678356170654\n          }\n        ]\n      },\n      \"Id\": \"f2521329-8c82-41b3-a08b-b80cbcce5838\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98165130615234,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014812293462455273,\n          \"Height\": 0.010040255263447762,\n          \"Left\": 0.7372381687164307,\n          \"Top\": 0.07955076545476913\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7520504593849182,\n            \"Y\": 0.08955671638250351\n          },\n          {\n            \"X\": 0.737261950969696,\n            \"Y\": 0.08959102630615234\n          },\n          {\n            \"X\": 0.7372381687164307,\n            \"Y\": 0.07958507537841797\n          },\n          {\n            \"X\": 0.7520267367362976,\n            \"Y\": 0.07955076545476913\n          }\n        ]\n      },\n      \"Id\": \"66c9cb47-527d-4158-b6d7-70ff983fbb3e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98787689208984,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025769555941224098,\n          \"Height\": 0.010029985569417477,\n          \"Left\": 0.7086262702941895,\n          \"Top\": 0.07948668301105499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7343958616256714,\n            \"Y\": 0.0894569456577301\n          },\n          {\n            \"X\": 0.7086501121520996,\n            \"Y\": 0.08951666951179504\n          },\n          {\n            \"X\": 0.7086262702941895,\n            \"Y\": 0.07954640686511993\n          },\n          {\n            \"X\": 0.7343721389770508,\n            \"Y\": 0.07948668301105499\n          }\n        ]\n      },\n      \"Id\": \"a3bb49b4-dbb8-462a-9348-84fd3ad14ebc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.85796356201172,\n      \"Text\": \"EOP.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03864109143614769,\n          \"Height\": 0.01037406362593174,\n          \"Left\": 0.665287971496582,\n          \"Top\": 0.0794045701622963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.70392906665802,\n            \"Y\": 0.08968904614448547\n          },\n          {\n            \"X\": 0.665312647819519,\n            \"Y\": 0.08977863192558289\n          },\n          {\n            \"X\": 0.665287971496582,\n            \"Y\": 0.07949414849281311\n          },\n          {\n            \"X\": 0.7039045095443726,\n            \"Y\": 0.0794045701622963\n          }\n        ]\n      },\n      \"Id\": \"79449352-f188-4e88-b9ed-a6dac9c18f7b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92628479003906,\n      \"Text\": \"Page\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04361462965607643,\n          \"Height\": 0.013598416931927204,\n          \"Left\": 0.8957996964454651,\n          \"Top\": 0.033556800335645676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9394143223762512,\n            \"Y\": 0.04705413430929184\n          },\n          {\n            \"X\": 0.8958310484886169,\n            \"Y\": 0.047155216336250305\n          },\n          {\n            \"X\": 0.8957996964454651,\n            \"Y\": 0.033657871186733246\n          },\n          {\n            \"X\": 0.9393832087516785,\n            \"Y\": 0.033556800335645676\n          }\n        ]\n      },\n      \"Id\": \"ec152ffe-d223-42fb-9f37-a07f9d1b15e0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69440460205078,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006931310053914785,\n          \"Height\": 0.010880003683269024,\n          \"Left\": 0.882331907749176,\n          \"Top\": 0.036263760179281235\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8892632126808167,\n            \"Y\": 0.04712774604558945\n          },\n          {\n            \"X\": 0.8823571801185608,\n            \"Y\": 0.04714376479387283\n          },\n          {\n            \"X\": 0.882331907749176,\n            \"Y\": 0.03627977520227432\n          },\n          {\n            \"X\": 0.8892379403114319,\n            \"Y\": 0.036263760179281235\n          }\n        ]\n      },\n      \"Id\": \"fa440d70-6b9e-4315-8605-046accfb41ea\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94519805908203,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01760251261293888,\n          \"Height\": 0.011667251586914062,\n          \"Left\": 0.8573633432388306,\n          \"Top\": 0.0359957329928875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8749658465385437,\n            \"Y\": 0.04762222245335579\n          },\n          {\n            \"X\": 0.8573905229568481,\n            \"Y\": 0.04766298457980156\n          },\n          {\n            \"X\": 0.8573633432388306,\n            \"Y\": 0.03603649139404297\n          },\n          {\n            \"X\": 0.8749387860298157,\n            \"Y\": 0.0359957329928875\n          }\n        ]\n      },\n      \"Id\": \"be1d7203-dcca-47eb-8286-7459d0d3f345\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69950103759766,\n      \"Text\": \"2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010403705760836601,\n          \"Height\": 0.010775688104331493,\n          \"Left\": 0.8438798785209656,\n          \"Top\": 0.03638554364442825\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8542835712432861,\n            \"Y\": 0.04713716357946396\n          },\n          {\n            \"X\": 0.8439050316810608,\n            \"Y\": 0.04716123268008232\n          },\n          {\n            \"X\": 0.8438798785209656,\n            \"Y\": 0.036409612745046616\n          },\n          {\n            \"X\": 0.8542584776878357,\n            \"Y\": 0.03638554364442825\n          }\n        ]\n      },\n      \"Id\": \"d9698af0-dd72-4d68-b6c0-4e40d62b0dce\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"e93a1632-6b64-45a9-ad4e-0b5735549576\",\n      \"Page\": 1,\n      \"Query\": {\n        \"Text\": \"What is the orientation?\"\n      }\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/2023-Q2-table-model-sample.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1.0,\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 3.251549003380205e-07,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 7.483300237254298e-07\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"7379dc2b-8c71-4005-af3d-f72b2848e954\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8a0728a9-858e-4ce0-881f-02a5a744017b\",\n                        \"4334eb43-da77-427c-b9b9-f91a112eed33\",\n                        \"84c17f35-1305-466e-8814-f55900307cba\",\n                        \"900da4f1-15a4-4e5c-a78a-1bd2911d2195\",\n                        \"2401abff-c4d2-400c-b7d2-c3e10073201a\",\n                        \"08ac6e7e-1e67-450e-b565-1bd6203507ef\",\n                        \"75afe5c5-d3cb-4233-969a-e0aa680d81ec\",\n                        \"87c038a3-907d-4992-9b68-9e27b6c4d7c8\",\n                        \"f861138e-2a50-4462-8b4d-7d19de439732\",\n                        \"f0ffa550-90b4-4808-841e-40eabaca03d1\",\n                        \"21f8d700-7e8d-46d5-9011-52e9a76f0030\",\n                        \"aa2085db-af5d-4e0f-bdb5-fb70fc9a8aee\",\n                        \"72648031-33de-44d5-aa2b-b7fcc8f17126\",\n                        \"2522c881-87c5-48f6-995c-406641bbd8f3\",\n                        \"e773bb69-2cbe-4b54-826d-350fa7a46e68\",\n                        \"415ea8a6-47af-4bfa-9aca-98f7a4819211\",\n                        \"fd35d2d9-60a7-4ace-9b3d-45134776cbc0\",\n                        \"5eab1dc2-1dbd-4c5b-b5bc-02f2124ba5ed\",\n                        \"4b9ee875-cd6a-4f73-b2e3-ac47ac1f9a1c\",\n                        \"62189001-f420-4389-ae24-9bce6cacce12\",\n                        \"ef70a628-c7f2-4479-839f-5c87f7114590\",\n                        \"a184e53c-badf-49e1-bd13-d2afc49dc9d5\",\n                        \"2e4d1f00-d585-4027-b76a-3cabe8c16210\",\n                        \"e5004115-3533-40c9-8f3e-9daea3bec7cc\",\n                        \"d2cf1af7-7198-440b-a10e-5b8ebf5fd548\",\n                        \"85ab6939-835c-4b64-89b4-5b9d005bbfa7\",\n                        \"fd4e6786-2252-4fa5-ba16-b53f391f9471\",\n                        \"2bae4e0f-f130-4761-9a27-9f9333722fee\",\n                        \"fa94fd1a-bd95-482d-8cbf-98127e33f03c\",\n                        \"5376fff8-de0e-49a2-b76b-d41e410a8f40\",\n                        \"fe6544b9-f2b0-4930-a0fa-402ce3c0149b\",\n                        \"fb93d0da-fd05-42e8-8604-d758ff383fcf\",\n                        \"82af7a5c-6382-46fa-b992-ff77403ab836\",\n                        \"306ee579-65a4-465f-a9da-533d359a3c08\",\n                        \"6b9d5e67-bada-42ef-b4b1-48d509aa5ef0\",\n                        \"e2db986d-e2e2-43ce-89e2-41450b206540\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69920349121094,\n            \"Text\": \"CENTRAL BANK\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11925087869167328,\n                    \"Height\": 0.011416607536375523,\n                    \"Left\": 0.316195547580719,\n                    \"Top\": 0.08410031348466873\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3161977529525757,\n                        \"Y\": 0.08410031348466873\n                    },\n                    {\n                        \"X\": 0.43544644117355347,\n                        \"Y\": 0.08418045192956924\n                    },\n                    {\n                        \"X\": 0.43544483184814453,\n                        \"Y\": 0.09551692008972168\n                    },\n                    {\n                        \"X\": 0.316195547580719,\n                        \"Y\": 0.09543659538030624\n                    }\n                ]\n            },\n            \"Id\": \"8a0728a9-858e-4ce0-881f-02a5a744017b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"336cf068-0447-4363-af90-60e71799b467\",\n                        \"eb4e253d-155d-4d97-9c49-6b1f7954799b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88365936279297,\n            \"Text\": \"The following table contains the list of transactions for the period.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.5068097114562988,\n                    \"Height\": 0.015193561092019081,\n                    \"Left\": 0.058708615601062775,\n                    \"Top\": 0.10303481668233871\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05871320888400078,\n                        \"Y\": 0.10303481668233871\n                    },\n                    {\n                        \"X\": 0.565518319606781,\n                        \"Y\": 0.10337673127651215\n                    },\n                    {\n                        \"X\": 0.5655171275138855,\n                        \"Y\": 0.11822838336229324\n                    },\n                    {\n                        \"X\": 0.058708615601062775,\n                        \"Y\": 0.11788543313741684\n                    }\n                ]\n            },\n            \"Id\": \"4334eb43-da77-427c-b9b9-f91a112eed33\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7d0436e-c470-4328-9557-e87f74a2095f\",\n                        \"d032d9a0-6428-45a2-a0db-c3e47ac2b062\",\n                        \"f81c183c-462e-4b34-b3f8-26cb61d89ec5\",\n                        \"aef27f71-b1bb-4ae8-9078-5e817b3184d6\",\n                        \"63293b49-6cf5-4b28-872d-d7bfdaeaf404\",\n                        \"11ecad15-18d5-45e4-9a41-240d93d03eeb\",\n                        \"f94268c5-0291-4c9d-805f-f8644c1e6841\",\n                        \"af36d966-e34d-4b94-a567-9bbd06a3f958\",\n                        \"e88b20a7-d2f0-446f-b2d5-d9853316747b\",\n                        \"7306a011-457a-4a53-ad58-50fa95314cc5\",\n                        \"e318214a-bb62-49af-9731-9ccc9dfc410d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91542053222656,\n            \"Text\": \"Balance Sheet\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11170247942209244,\n                    \"Height\": 0.011547254398465157,\n                    \"Left\": 0.41760116815567017,\n                    \"Top\": 0.14450907707214355\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41760289669036865,\n                        \"Y\": 0.14450907707214355\n                    },\n                    {\n                        \"X\": 0.5293036699295044,\n                        \"Y\": 0.14458505809307098\n                    },\n                    {\n                        \"X\": 0.5293025374412537,\n                        \"Y\": 0.15605632960796356\n                    },\n                    {\n                        \"X\": 0.41760116815567017,\n                        \"Y\": 0.1559801548719406\n                    }\n                ]\n            },\n            \"Id\": \"84c17f35-1305-466e-8814-f55900307cba\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ebae23e3-1db7-405b-ae1c-ce4b383fdf42\",\n                        \"5bdedfdf-b612-4c64-bb9c-d9bc7acf91ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87665557861328,\n            \"Text\": \"Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03675399720668793,\n                    \"Height\": 0.011200057342648506,\n                    \"Left\": 0.05976765975356102,\n                    \"Top\": 0.16569817066192627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059771109372377396,\n                        \"Y\": 0.16569817066192627\n                    },\n                    {\n                        \"X\": 0.09652165323495865,\n                        \"Y\": 0.1657232791185379\n                    },\n                    {\n                        \"X\": 0.0965183898806572,\n                        \"Y\": 0.17689822614192963\n                    },\n                    {\n                        \"X\": 0.05976765975356102,\n                        \"Y\": 0.17687305808067322\n                    }\n                ]\n            },\n            \"Id\": \"900da4f1-15a4-4e5c-a78a-1bd2911d2195\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"368788c4-608e-4d76-bbc3-fd080c5218ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8873519897461,\n            \"Text\": \"Description\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0919945240020752,\n                    \"Height\": 0.013917464762926102,\n                    \"Left\": 0.17129626870155334,\n                    \"Top\": 0.16534006595611572\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17129985988140106,\n                        \"Y\": 0.16534006595611572\n                    },\n                    {\n                        \"X\": 0.26329079270362854,\n                        \"Y\": 0.16540290415287018\n                    },\n                    {\n                        \"X\": 0.2632877826690674,\n                        \"Y\": 0.17925752699375153\n                    },\n                    {\n                        \"X\": 0.17129626870155334,\n                        \"Y\": 0.17919450998306274\n                    }\n                ]\n            },\n            \"Id\": \"2401abff-c4d2-400c-b7d2-c3e10073201a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"19cb1359-9086-440a-b423-f3e485528746\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9227066040039,\n            \"Text\": \"Credit\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05011717975139618,\n                    \"Height\": 0.011660009622573853,\n                    \"Left\": 0.43312644958496094,\n                    \"Top\": 0.16517344117164612\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43312808871269226,\n                        \"Y\": 0.16517344117164612\n                    },\n                    {\n                        \"X\": 0.4832436442375183,\n                        \"Y\": 0.1652076691389084\n                    },\n                    {\n                        \"X\": 0.4832422435283661,\n                        \"Y\": 0.17683345079421997\n                    },\n                    {\n                        \"X\": 0.43312644958496094,\n                        \"Y\": 0.17679913341999054\n                    }\n                ]\n            },\n            \"Id\": \"08ac6e7e-1e67-450e-b565-1bd6203507ef\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"96757a30-6d21-42cb-a71f-7708127cceb2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96669006347656,\n            \"Text\": \"Debit\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044728703796863556,\n                    \"Height\": 0.011729283258318901,\n                    \"Left\": 0.5874471068382263,\n                    \"Top\": 0.16526450216770172\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5874479413032532,\n                        \"Y\": 0.16526450216770172\n                    },\n                    {\n                        \"X\": 0.6321758031845093,\n                        \"Y\": 0.1652950644493103\n                    },\n                    {\n                        \"X\": 0.6321752071380615,\n                        \"Y\": 0.17699378728866577\n                    },\n                    {\n                        \"X\": 0.5874471068382263,\n                        \"Y\": 0.17696316540241241\n                    }\n                ]\n            },\n            \"Id\": \"75afe5c5-d3cb-4233-969a-e0aa680d81ec\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"799b7609-25a5-4f1c-97ac-31bea9ebf1a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90754699707031,\n            \"Text\": \"Balance\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06068531423807144,\n                    \"Height\": 0.011675440706312656,\n                    \"Left\": 0.7638397216796875,\n                    \"Top\": 0.1652829349040985\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7638397216796875,\n                        \"Y\": 0.1652829349040985\n                    },\n                    {\n                        \"X\": 0.8245246410369873,\n                        \"Y\": 0.1653243899345398\n                    },\n                    {\n                        \"X\": 0.8245250582695007,\n                        \"Y\": 0.176958367228508\n                    },\n                    {\n                        \"X\": 0.7638397812843323,\n                        \"Y\": 0.17691682279109955\n                    }\n                ]\n            },\n            \"Id\": \"87c038a3-907d-4992-9b68-9e27b6c4d7c8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7b4ba8d-4aa9-4974-bc04-98de87facf4b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94229888916016,\n            \"Text\": \"2022\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040949102491140366,\n                    \"Height\": 0.011292267590761185,\n                    \"Left\": 0.0593448132276535,\n                    \"Top\": 0.18638239800930023\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05934829264879227,\n                        \"Y\": 0.18638239800930023\n                    },\n                    {\n                        \"X\": 0.10029391944408417,\n                        \"Y\": 0.18641048669815063\n                    },\n                    {\n                        \"X\": 0.10029064118862152,\n                        \"Y\": 0.19767466187477112\n                    },\n                    {\n                        \"X\": 0.0593448132276535,\n                        \"Y\": 0.19764651358127594\n                    }\n                ]\n            },\n            \"Id\": \"f861138e-2a50-4462-8b4d-7d19de439732\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c6964843-7356-466b-aa55-7453d331c803\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92613220214844,\n            \"Text\": \"Previous Balance\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1311371624469757,\n                    \"Height\": 0.011798209510743618,\n                    \"Left\": 0.05964932218194008,\n                    \"Top\": 0.20607459545135498\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05965293571352959,\n                        \"Y\": 0.20607459545135498\n                    },\n                    {\n                        \"X\": 0.1907864809036255,\n                        \"Y\": 0.2061649113893509\n                    },\n                    {\n                        \"X\": 0.1907835602760315,\n                        \"Y\": 0.21787279844284058\n                    },\n                    {\n                        \"X\": 0.05964932218194008,\n                        \"Y\": 0.21778227388858795\n                    }\n                ]\n            },\n            \"Id\": \"f0ffa550-90b4-4808-841e-40eabaca03d1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"26637d02-582c-436f-b9f1-94b00942dcd0\",\n                        \"ab52331a-4774-47ac-a823-d13d9ec0f7bd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93741607666016,\n            \"Text\": \"11,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05588853731751442,\n                    \"Height\": 0.013563545420765877,\n                    \"Left\": 0.8309134244918823,\n                    \"Top\": 0.20613527297973633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8309134244918823,\n                        \"Y\": 0.20613527297973633\n                    },\n                    {\n                        \"X\": 0.8868011832237244,\n                        \"Y\": 0.20617376267910004\n                    },\n                    {\n                        \"X\": 0.8868020176887512,\n                        \"Y\": 0.21969881653785706\n                    },\n                    {\n                        \"X\": 0.8309139609336853,\n                        \"Y\": 0.219660222530365\n                    }\n                ]\n            },\n            \"Id\": \"21f8d700-7e8d-46d5-9011-52e9a76f0030\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"397e21a8-f7bb-4df5-ab9e-edcfd524f9e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77581787109375,\n            \"Text\": \"2022-12-24\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09155608713626862,\n                    \"Height\": 0.011458075605332851,\n                    \"Left\": 0.05934705212712288,\n                    \"Top\": 0.22618746757507324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059350572526454926,\n                        \"Y\": 0.22618746757507324\n                    },\n                    {\n                        \"X\": 0.1509031355381012,\n                        \"Y\": 0.2262507677078247\n                    },\n                    {\n                        \"X\": 0.15090008080005646,\n                        \"Y\": 0.23764553666114807\n                    },\n                    {\n                        \"X\": 0.05934705212712288,\n                        \"Y\": 0.23758208751678467\n                    }\n                ]\n            },\n            \"Id\": \"aa2085db-af5d-4e0f-bdb5-fb70fc9a8aee\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"65fda16f-cb67-4eb8-9187-361f64afa997\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72949981689453,\n            \"Text\": \"Payment Credit Card\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16722306609153748,\n                    \"Height\": 0.014120079576969147,\n                    \"Left\": 0.17124231159687042,\n                    \"Top\": 0.2267843633890152\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17124593257904053,\n                        \"Y\": 0.2267843633890152\n                    },\n                    {\n                        \"X\": 0.3384653627872467,\n                        \"Y\": 0.22690001130104065\n                    },\n                    {\n                        \"X\": 0.33846279978752136,\n                        \"Y\": 0.24090443551540375\n                    },\n                    {\n                        \"X\": 0.17124231159687042,\n                        \"Y\": 0.24078847467899323\n                    }\n                ]\n            },\n            \"Id\": \"72648031-33de-44d5-aa2b-b7fcc8f17126\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5aa60d83-5887-4b3d-84aa-e8412864429e\",\n                        \"dbec763e-7988-4834-93ad-b6d723ea4a57\",\n                        \"82e9ccb8-2538-4312-81c6-c781a847daf2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8794174194336,\n            \"Text\": \"1,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0482948012650013,\n                    \"Height\": 0.01540737971663475,\n                    \"Left\": 0.7029736638069153,\n                    \"Top\": 0.22533920407295227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7029740214347839,\n                        \"Y\": 0.22533920407295227\n                    },\n                    {\n                        \"X\": 0.7512685060501099,\n                        \"Y\": 0.22537259757518768\n                    },\n                    {\n                        \"X\": 0.7512685060501099,\n                        \"Y\": 0.24074658751487732\n                    },\n                    {\n                        \"X\": 0.7029736638069153,\n                        \"Y\": 0.24071310460567474\n                    }\n                ]\n            },\n            \"Id\": \"2522c881-87c5-48f6-995c-406641bbd8f3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5f98df44-4bd4-4b70-b086-c7d9e830ef89\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85717010498047,\n            \"Text\": \"10,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05542517453432083,\n                    \"Height\": 0.01344285998493433,\n                    \"Left\": 0.8260496258735657,\n                    \"Top\": 0.22696736454963684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8260496258735657,\n                        \"Y\": 0.22696736454963684\n                    },\n                    {\n                        \"X\": 0.8814740180969238,\n                        \"Y\": 0.2270057052373886\n                    },\n                    {\n                        \"X\": 0.8814747929573059,\n                        \"Y\": 0.2404102236032486\n                    },\n                    {\n                        \"X\": 0.8260500431060791,\n                        \"Y\": 0.24037179350852966\n                    }\n                ]\n            },\n            \"Id\": \"e773bb69-2cbe-4b54-826d-350fa7a46e68\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7e14797c-9c45-4563-9a99-3d9a3c887a8a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86573791503906,\n            \"Text\": \"Payment Utility\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1299908459186554,\n                    \"Height\": 0.014273862354457378,\n                    \"Left\": 0.17148953676223755,\n                    \"Top\": 0.2475503832101822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17149320244789124,\n                        \"Y\": 0.2475503832101822\n                    },\n                    {\n                        \"X\": 0.30148038268089294,\n                        \"Y\": 0.24764065444469452\n                    },\n                    {\n                        \"X\": 0.3014775216579437,\n                        \"Y\": 0.26182425022125244\n                    },\n                    {\n                        \"X\": 0.17148953676223755,\n                        \"Y\": 0.261733740568161\n                    }\n                ]\n            },\n            \"Id\": \"415ea8a6-47af-4bfa-9aca-98f7a4819211\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fdad3bad-491b-49b5-beb3-4e63d6e1cfe1\",\n                        \"4be75194-f027-4a1e-ae14-fee36cca0f3f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98810577392578,\n            \"Text\": \"40\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020635146647691727,\n                    \"Height\": 0.011547374539077282,\n                    \"Left\": 0.7290180325508118,\n                    \"Top\": 0.2478259652853012\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7290180921554565,\n                        \"Y\": 0.2478259652853012\n                    },\n                    {\n                        \"X\": 0.749653160572052,\n                        \"Y\": 0.2478402853012085\n                    },\n                    {\n                        \"X\": 0.749653160572052,\n                        \"Y\": 0.25937333703041077\n                    },\n                    {\n                        \"X\": 0.7290180325508118,\n                        \"Y\": 0.2593589723110199\n                    }\n                ]\n            },\n            \"Id\": \"fd35d2d9-60a7-4ace-9b3d-45134776cbc0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cf8f4489-9bf1-4b02-b4ec-b416693e1175\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88890075683594,\n            \"Text\": \"9,960\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046545688062906265,\n                    \"Height\": 0.013485259376466274,\n                    \"Left\": 0.8351225256919861,\n                    \"Top\": 0.24793757498264313\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8351225256919861,\n                        \"Y\": 0.24793757498264313\n                    },\n                    {\n                        \"X\": 0.88166743516922,\n                        \"Y\": 0.24796989560127258\n                    },\n                    {\n                        \"X\": 0.881668210029602,\n                        \"Y\": 0.2614228427410126\n                    },\n                    {\n                        \"X\": 0.8351230025291443,\n                        \"Y\": 0.26139041781425476\n                    }\n                ]\n            },\n            \"Id\": \"5eab1dc2-1dbd-4c5b-b5bc-02f2124ba5ed\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"09c7cad1-ba65-43fe-92ef-837a37fa0062\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82150268554688,\n            \"Text\": \"2022-12-31\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09076805412769318,\n                    \"Height\": 0.011780940927565098,\n                    \"Left\": 0.06002306193113327,\n                    \"Top\": 0.2676829695701599\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06002667546272278,\n                        \"Y\": 0.2676829695701599\n                    },\n                    {\n                        \"X\": 0.15079110860824585,\n                        \"Y\": 0.2677462697029114\n                    },\n                    {\n                        \"X\": 0.15078797936439514,\n                        \"Y\": 0.27946391701698303\n                    },\n                    {\n                        \"X\": 0.06002306193113327,\n                        \"Y\": 0.279400497674942\n                    }\n                ]\n            },\n            \"Id\": \"4b9ee875-cd6a-4f73-b2e3-ac47ac1f9a1c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"110da060-c8e7-441f-8521-e75892275a7b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92741394042969,\n            \"Text\": \"Deposit\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05905073881149292,\n                    \"Height\": 0.013423396274447441,\n                    \"Left\": 0.17170493304729462,\n                    \"Top\": 0.26808178424835205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17170840501785278,\n                        \"Y\": 0.26808178424835205\n                    },\n                    {\n                        \"X\": 0.23075567185878754,\n                        \"Y\": 0.26812294125556946\n                    },\n                    {\n                        \"X\": 0.23075257241725922,\n                        \"Y\": 0.28150516748428345\n                    },\n                    {\n                        \"X\": 0.17170493304729462,\n                        \"Y\": 0.2814638912677765\n                    }\n                ]\n            },\n            \"Id\": \"62189001-f420-4389-ae24-9bce6cacce12\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"afef6e54-0789-4a52-af9a-1314c13e78ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94865417480469,\n            \"Text\": \"1,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04558362811803818,\n                    \"Height\": 0.013033991679549217,\n                    \"Left\": 0.5275039672851562,\n                    \"Top\": 0.2679845094680786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5275052785873413,\n                        \"Y\": 0.2679845094680786\n                    },\n                    {\n                        \"X\": 0.5730875730514526,\n                        \"Y\": 0.2680163085460663\n                    },\n                    {\n                        \"X\": 0.5730865597724915,\n                        \"Y\": 0.2810184955596924\n                    },\n                    {\n                        \"X\": 0.5275039672851562,\n                        \"Y\": 0.28098663687705994\n                    }\n                ]\n            },\n            \"Id\": \"ef70a628-c7f2-4479-839f-5c87f7114590\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0886f560-1798-491e-bb50-55d22ebb3372\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87687683105469,\n            \"Text\": \"10,960\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05614409223198891,\n                    \"Height\": 0.013593371957540512,\n                    \"Left\": 0.830930233001709,\n                    \"Top\": 0.26774975657463074\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.830930233001709,\n                        \"Y\": 0.26774975657463074\n                    },\n                    {\n                        \"X\": 0.8870735168457031,\n                        \"Y\": 0.2677888870239258\n                    },\n                    {\n                        \"X\": 0.88707435131073,\n                        \"Y\": 0.28134313225746155\n                    },\n                    {\n                        \"X\": 0.8309307098388672,\n                        \"Y\": 0.28130388259887695\n                    }\n                ]\n            },\n            \"Id\": \"a184e53c-badf-49e1-bd13-d2afc49dc9d5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6910ecd2-baa5-4440-9560-eae4f52d07ab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90848541259766,\n            \"Text\": \"2023\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0408756360411644,\n                    \"Height\": 0.011326982639729977,\n                    \"Left\": 0.05911041423678398,\n                    \"Top\": 0.2887732982635498\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05911390483379364,\n                        \"Y\": 0.2887732982635498\n                    },\n                    {\n                        \"X\": 0.09998604655265808,\n                        \"Y\": 0.288801908493042\n                    },\n                    {\n                        \"X\": 0.09998276829719543,\n                        \"Y\": 0.30010026693344116\n                    },\n                    {\n                        \"X\": 0.05911041423678398,\n                        \"Y\": 0.3000715970993042\n                    }\n                ]\n            },\n            \"Id\": \"2e4d1f00-d585-4027-b76a-3cabe8c16210\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a0fce67e-9265-46c8-a43e-31ef818720b8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90055847167969,\n            \"Text\": \"2023-01-15\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09085570275783539,\n                    \"Height\": 0.011390036903321743,\n                    \"Left\": 0.06006191670894623,\n                    \"Top\": 0.30956315994262695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.060065411031246185,\n                        \"Y\": 0.30956315994262695\n                    },\n                    {\n                        \"X\": 0.15091761946678162,\n                        \"Y\": 0.3096270263195038\n                    },\n                    {\n                        \"X\": 0.15091457962989807,\n                        \"Y\": 0.3209531903266907\n                    },\n                    {\n                        \"X\": 0.06006191670894623,\n                        \"Y\": 0.3208892047405243\n                    }\n                ]\n            },\n            \"Id\": \"e5004115-3533-40c9-8f3e-9daea3bec7cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"75ece466-3513-40e6-a369-b411541f008d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9068832397461,\n            \"Text\": \"Deposit\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05942661315202713,\n                    \"Height\": 0.013455498032271862,\n                    \"Left\": 0.17141592502593994,\n                    \"Top\": 0.3096478283405304\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1714193969964981,\n                        \"Y\": 0.3096478283405304\n                    },\n                    {\n                        \"X\": 0.23084253072738647,\n                        \"Y\": 0.30968961119651794\n                    },\n                    {\n                        \"X\": 0.23083941638469696,\n                        \"Y\": 0.3231033384799957\n                    },\n                    {\n                        \"X\": 0.17141592502593994,\n                        \"Y\": 0.32306143641471863\n                    }\n                ]\n            },\n            \"Id\": \"d2cf1af7-7198-440b-a10e-5b8ebf5fd548\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"71003e33-3f9b-478a-899b-ea3dd81fd71a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98876190185547,\n            \"Text\": \"40\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020581115037202835,\n                    \"Height\": 0.011086833663284779,\n                    \"Left\": 0.5578409433364868,\n                    \"Top\": 0.30981186032295227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5578418970108032,\n                        \"Y\": 0.30981186032295227\n                    },\n                    {\n                        \"X\": 0.5784220695495605,\n                        \"Y\": 0.3098263144493103\n                    },\n                    {\n                        \"X\": 0.5784212350845337,\n                        \"Y\": 0.3208986818790436\n                    },\n                    {\n                        \"X\": 0.5578409433364868,\n                        \"Y\": 0.32088419795036316\n                    }\n                ]\n            },\n            \"Id\": \"85ab6939-835c-4b64-89b4-5b9d005bbfa7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dfc6273-08e3-4d79-81d7-fd20f8715f35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94544982910156,\n            \"Text\": \"11,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05612313747406006,\n                    \"Height\": 0.013385548256337643,\n                    \"Left\": 0.8308804035186768,\n                    \"Top\": 0.309421569108963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8308804035186768,\n                        \"Y\": 0.309421569108963\n                    },\n                    {\n                        \"X\": 0.8870027661323547,\n                        \"Y\": 0.30946099758148193\n                    },\n                    {\n                        \"X\": 0.8870035409927368,\n                        \"Y\": 0.32280710339546204\n                    },\n                    {\n                        \"X\": 0.830880880355835,\n                        \"Y\": 0.32276755571365356\n                    }\n                ]\n            },\n            \"Id\": \"fd4e6786-2252-4fa5-ba16-b53f391f9471\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8500ee88-9f85-4852-b880-17019ab91479\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90938568115234,\n            \"Text\": \"Total Ending Balance\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16082023084163666,\n                    \"Height\": 0.013929322361946106,\n                    \"Left\": 0.05866687372326851,\n                    \"Top\": 0.33006754517555237\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058671146631240845,\n                        \"Y\": 0.33006754517555237\n                    },\n                    {\n                        \"X\": 0.21948710083961487,\n                        \"Y\": 0.3301810622215271\n                    },\n                    {\n                        \"X\": 0.21948382258415222,\n                        \"Y\": 0.34399688243865967\n                    },\n                    {\n                        \"X\": 0.05866687372326851,\n                        \"Y\": 0.34388306736946106\n                    }\n                ]\n            },\n            \"Id\": \"2bae4e0f-f130-4761-9a27-9f9333722fee\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"568235b1-0330-4abb-869e-90460aad0c66\",\n                        \"9ddd1870-1d74-4253-bd40-d635ef379c29\",\n                        \"868b28f3-7a33-419b-974c-ed2062597e30\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94739532470703,\n            \"Text\": \"11,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05619266629219055,\n                    \"Height\": 0.013500289991497993,\n                    \"Left\": 0.830832302570343,\n                    \"Top\": 0.33016377687454224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.830832302570343,\n                        \"Y\": 0.33016377687454224\n                    },\n                    {\n                        \"X\": 0.8870241641998291,\n                        \"Y\": 0.33020341396331787\n                    },\n                    {\n                        \"X\": 0.8870249390602112,\n                        \"Y\": 0.3436640501022339\n                    },\n                    {\n                        \"X\": 0.8308327794075012,\n                        \"Y\": 0.3436242938041687\n                    }\n                ]\n            },\n            \"Id\": \"fa94fd1a-bd95-482d-8cbf-98127e33f03c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3190fa49-2d71-4f0c-9965-d67ae7925770\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6732406616211,\n            \"Text\": \"(1) Represents transactions till 2023-01-17\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3335176408290863,\n                    \"Height\": 0.014627300202846527,\n                    \"Left\": 0.059232037514448166,\n                    \"Top\": 0.34947410225868225\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05923648551106453,\n                        \"Y\": 0.34947410225868225\n                    },\n                    {\n                        \"X\": 0.3927496671676636,\n                        \"Y\": 0.3497103750705719\n                    },\n                    {\n                        \"X\": 0.3927473723888397,\n                        \"Y\": 0.3641014099121094\n                    },\n                    {\n                        \"X\": 0.059232037514448166,\n                        \"Y\": 0.3638644814491272\n                    }\n                ]\n            },\n            \"Id\": \"5376fff8-de0e-49a2-b76b-d41e410a8f40\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"64315dc1-4c15-4bf3-864e-0561cea96d3b\",\n                        \"fc32aadf-2c8e-400c-b459-c36b7d4aa138\",\n                        \"fbe6b0f6-688a-4cef-baa5-80da8b51eb02\",\n                        \"e68924ef-2110-4159-98dd-a96ea7a2381e\",\n                        \"b0d4bb89-dfb9-4422-bc4d-9f669febbbde\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6923599243164,\n            \"Text\": \"(2) Anything wrong? If you notice incorrect or unusual transactions, get in touch with us\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6881706714630127,\n                    \"Height\": 0.015207495540380478,\n                    \"Left\": 0.059544637799263,\n                    \"Top\": 0.3702143132686615\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059549182653427124,\n                        \"Y\": 0.3702143132686615\n                    },\n                    {\n                        \"X\": 0.7477153539657593,\n                        \"Y\": 0.370703786611557\n                    },\n                    {\n                        \"X\": 0.7477152943611145,\n                        \"Y\": 0.3854218125343323\n                    },\n                    {\n                        \"X\": 0.059544637799263,\n                        \"Y\": 0.38493096828460693\n                    }\n                ]\n            },\n            \"Id\": \"fe6544b9-f2b0-4930-a0fa-402ce3c0149b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"948a8c7a-d3f0-4e53-bdc0-5f8d7c3a8a6c\",\n                        \"b745be53-c39c-4297-93d7-992c1e6e3d0a\",\n                        \"5b2b7a4f-56b2-4093-a95c-3aa740b6d720\",\n                        \"88445626-7941-4f8f-913a-f577a5561e09\",\n                        \"634aee0c-9e1d-4cac-b969-9f4069b62233\",\n                        \"543bcaed-c6d8-4adf-937f-5d1112997c2a\",\n                        \"5408cb30-f511-447b-9d29-f39492c5f86f\",\n                        \"3f51bd28-33e2-4755-bfaa-d2f247441f57\",\n                        \"5a38acfe-2362-4565-bbb1-093ce888710c\",\n                        \"67a858e5-8efa-4bac-b9d6-917a8000433b\",\n                        \"4ae753d1-869f-424f-9395-027e3c048101\",\n                        \"69caa358-ba12-4ae2-94f5-a3301bd1756a\",\n                        \"8fed288e-9e03-4759-8026-82d9ff170395\",\n                        \"56cab4e1-01a7-43fb-98a9-99b2afe13f64\",\n                        \"3b8d3aea-b4b1-4553-8616-f13367180b62\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7412109375,\n            \"Text\": \"Final available balance as of 2023-01-20\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3091738224029541,\n                    \"Height\": 0.012297450564801693,\n                    \"Left\": 0.05981374904513359,\n                    \"Top\": 0.39120563864707947\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05981747806072235,\n                        \"Y\": 0.39120563864707947\n                    },\n                    {\n                        \"X\": 0.3689875900745392,\n                        \"Y\": 0.3914264142513275\n                    },\n                    {\n                        \"X\": 0.36898553371429443,\n                        \"Y\": 0.40350309014320374\n                    },\n                    {\n                        \"X\": 0.05981374904513359,\n                        \"Y\": 0.4032817780971527\n                    }\n                ]\n            },\n            \"Id\": \"fb93d0da-fd05-42e8-8604-d758ff383fcf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a488eb79-d287-4e6c-a1e3-7e12a6a34780\",\n                        \"b08aced8-5825-4cfb-bbad-c00b310646cc\",\n                        \"7a70959d-6a10-4e79-bbdc-36d9c8621ece\",\n                        \"f6c7b127-ceb3-49bf-9d1b-587ea984d3f4\",\n                        \"5c3b9794-ce76-41f9-9315-c657ea259385\",\n                        \"c1716c45-e684-4922-94c2-5a38bca7b841\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95265197753906,\n            \"Text\": \"11,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05598180368542671,\n                    \"Height\": 0.013293315656483173,\n                    \"Left\": 0.8310263156890869,\n                    \"Top\": 0.39188557863235474\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8310263156890869,\n                        \"Y\": 0.39188557863235474\n                    },\n                    {\n                        \"X\": 0.8870072960853577,\n                        \"Y\": 0.39192554354667664\n                    },\n                    {\n                        \"X\": 0.8870080709457397,\n                        \"Y\": 0.40517887473106384\n                    },\n                    {\n                        \"X\": 0.8310267925262451,\n                        \"Y\": 0.4051387906074524\n                    }\n                ]\n            },\n            \"Id\": \"82af7a5c-6382-46fa-b992-ff77403ab836\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bdcde108-8826-43dd-8846-7640e5c86592\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83183288574219,\n            \"Text\": \"Always protect your PIN code. Worried about fraud? Get in touch with us.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.5673925876617432,\n                    \"Height\": 0.015477790497243404,\n                    \"Left\": 0.05876917764544487,\n                    \"Top\": 0.6382110118865967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05877383053302765,\n                        \"Y\": 0.6382110118865967\n                    },\n                    {\n                        \"X\": 0.6261617541313171,\n                        \"Y\": 0.6386353969573975\n                    },\n                    {\n                        \"X\": 0.6261609196662903,\n                        \"Y\": 0.6536887884140015\n                    },\n                    {\n                        \"X\": 0.05876917764544487,\n                        \"Y\": 0.6532632112503052\n                    }\n                ]\n            },\n            \"Id\": \"306ee579-65a4-465f-a9da-533d359a3c08\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a5659d71-a7d5-4ebd-9f00-b67a5b6e5e76\",\n                        \"19108659-f504-49f5-9224-bcb92b29b86b\",\n                        \"23ce9b43-99af-4a88-bccb-8fd6629d54aa\",\n                        \"2b1c00b0-a5ac-4d96-a95a-d04025542688\",\n                        \"b1940516-e978-4558-8886-6daa32298539\",\n                        \"24a10a83-6d52-460a-95cb-1c0064e28827\",\n                        \"bfdd5c20-5ac6-485f-b3bf-ab7c6da2937c\",\n                        \"790c0667-e3b5-4434-86fc-c771ad7288ce\",\n                        \"1c5352f4-dbb7-4d1e-8353-8d44c4bdd6e0\",\n                        \"fb7618a5-4219-47ac-a50d-9015373270db\",\n                        \"6c5fb26c-50cd-4b1e-89db-28a0ad8a218e\",\n                        \"ec9677b5-4707-49bc-b1a1-5e2b5fecf0d4\",\n                        \"86c9d593-6a07-4662-bace-464e20f2766c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91744995117188,\n            \"Text\": \"This document is privileged and confidential\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.370121568441391,\n                    \"Height\": 0.01603478565812111,\n                    \"Left\": 0.058603644371032715,\n                    \"Top\": 0.9047814607620239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058608509600162506,\n                        \"Y\": 0.9047814607620239\n                    },\n                    {\n                        \"X\": 0.4287252128124237,\n                        \"Y\": 0.9050717949867249\n                    },\n                    {\n                        \"X\": 0.42872294783592224,\n                        \"Y\": 0.9208162426948547\n                    },\n                    {\n                        \"X\": 0.058603644371032715,\n                        \"Y\": 0.920525074005127\n                    }\n                ]\n            },\n            \"Id\": \"6b9d5e67-bada-42ef-b4b1-48d509aa5ef0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e757a693-1386-4037-8aba-4078ec278756\",\n                        \"8fee6c9f-225c-4a7f-bbdc-24d24316fc41\",\n                        \"7e419fec-14e5-483d-8abd-97e27bf867e6\",\n                        \"e8eb76d8-edc5-4b08-bc6b-a0218cb682b8\",\n                        \"de69aef7-7067-4755-9b52-43277e51e60a\",\n                        \"756a863e-f9cf-4304-ba1b-872e9f3c2cb0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84423828125,\n            \"Text\": \"CENTRAL\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0707336887717247,\n                    \"Height\": 0.01135832630097866,\n                    \"Left\": 0.316195547580719,\n                    \"Top\": 0.08412591367959976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3161977529525757,\n                        \"Y\": 0.08412591367959976\n                    },\n                    {\n                        \"X\": 0.3869292438030243,\n                        \"Y\": 0.08417344838380814\n                    },\n                    {\n                        \"X\": 0.38692739605903625,\n                        \"Y\": 0.09548424184322357\n                    },\n                    {\n                        \"X\": 0.316195547580719,\n                        \"Y\": 0.09543659538030624\n                    }\n                ]\n            },\n            \"Id\": \"336cf068-0447-4363-af90-60e71799b467\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5541763305664,\n            \"Text\": \"BANK\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04536645486950874,\n                    \"Height\": 0.011167841963469982,\n                    \"Left\": 0.39007997512817383,\n                    \"Top\": 0.08414996415376663\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3900817632675171,\n                        \"Y\": 0.08414996415376663\n                    },\n                    {\n                        \"X\": 0.43544644117355347,\n                        \"Y\": 0.08418045192956924\n                    },\n                    {\n                        \"X\": 0.4354448616504669,\n                        \"Y\": 0.09531780332326889\n                    },\n                    {\n                        \"X\": 0.39007997512817383,\n                        \"Y\": 0.0952872484922409\n                    }\n                ]\n            },\n            \"Id\": \"eb4e253d-155d-4d97-9c49-6b1f7954799b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9552230834961,\n            \"Text\": \"The\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028653450310230255,\n                    \"Height\": 0.011619801633059978,\n                    \"Left\": 0.05870940163731575,\n                    \"Top\": 0.10373895615339279\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05871298909187317,\n                        \"Y\": 0.10373895615339279\n                    },\n                    {\n                        \"X\": 0.0873628556728363,\n                        \"Y\": 0.10375829041004181\n                    },\n                    {\n                        \"X\": 0.08735941350460052,\n                        \"Y\": 0.11535875499248505\n                    },\n                    {\n                        \"X\": 0.05870940163731575,\n                        \"Y\": 0.11533938348293304\n                    }\n                ]\n            },\n            \"Id\": \"a7d0436e-c470-4328-9557-e87f74a2095f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97933197021484,\n            \"Text\": \"following\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07415012270212173,\n                    \"Height\": 0.014694266952574253,\n                    \"Left\": 0.09043718874454498,\n                    \"Top\": 0.10326281189918518\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0904415100812912,\n                        \"Y\": 0.10326281189918518\n                    },\n                    {\n                        \"X\": 0.16458731889724731,\n                        \"Y\": 0.10331283509731293\n                    },\n                    {\n                        \"X\": 0.1645834743976593,\n                        \"Y\": 0.11795707792043686\n                    },\n                    {\n                        \"X\": 0.09043718874454498,\n                        \"Y\": 0.11790690571069717\n                    }\n                ]\n            },\n            \"Id\": \"d032d9a0-6428-45a2-a0db-c3e47ac2b062\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95994567871094,\n            \"Text\": \"table\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039975687861442566,\n                    \"Height\": 0.011984691955149174,\n                    \"Left\": 0.1674932986497879,\n                    \"Top\": 0.10343567281961441\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16749641299247742,\n                        \"Y\": 0.10343567281961441\n                    },\n                    {\n                        \"X\": 0.20746898651123047,\n                        \"Y\": 0.10346264392137527\n                    },\n                    {\n                        \"X\": 0.20746608078479767,\n                        \"Y\": 0.11542036384344101\n                    },\n                    {\n                        \"X\": 0.1674932986497879,\n                        \"Y\": 0.11539333313703537\n                    }\n                ]\n            },\n            \"Id\": \"f81c183c-462e-4b34-b3f8-26cb61d89ec5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8570556640625,\n            \"Text\": \"contains\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0671776831150055,\n                    \"Height\": 0.011659856885671616,\n                    \"Left\": 0.2108219563961029,\n                    \"Top\": 0.10392788052558899\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21082475781440735,\n                        \"Y\": 0.10392788052558899\n                    },\n                    {\n                        \"X\": 0.2779996395111084,\n                        \"Y\": 0.10397320985794067\n                    },\n                    {\n                        \"X\": 0.2779971957206726,\n                        \"Y\": 0.1155877411365509\n                    },\n                    {\n                        \"X\": 0.2108219563961029,\n                        \"Y\": 0.11554230749607086\n                    }\n                ]\n            },\n            \"Id\": \"aef27f71-b1bb-4ae8-9078-5e817b3184d6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78112030029297,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026736600324511528,\n                    \"Height\": 0.011731116101145744,\n                    \"Left\": 0.28032687306404114,\n                    \"Top\": 0.10362420976161957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2803293466567993,\n                        \"Y\": 0.10362420976161957\n                    },\n                    {\n                        \"X\": 0.307063490152359,\n                        \"Y\": 0.10364224761724472\n                    },\n                    {\n                        \"X\": 0.30706116557121277,\n                        \"Y\": 0.11535532772541046\n                    },\n                    {\n                        \"X\": 0.28032687306404114,\n                        \"Y\": 0.11533724516630173\n                    }\n                ]\n            },\n            \"Id\": \"63293b49-6cf5-4b28-872d-d7bfdaeaf404\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91324615478516,\n            \"Text\": \"list\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023427721112966537,\n                    \"Height\": 0.011768946424126625,\n                    \"Left\": 0.31003981828689575,\n                    \"Top\": 0.1035105437040329\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.310042142868042,\n                        \"Y\": 0.1035105437040329\n                    },\n                    {\n                        \"X\": 0.3334675431251526,\n                        \"Y\": 0.10352634638547897\n                    },\n                    {\n                        \"X\": 0.3334653675556183,\n                        \"Y\": 0.11527948826551437\n                    },\n                    {\n                        \"X\": 0.31003981828689575,\n                        \"Y\": 0.11526364833116531\n                    }\n                ]\n            },\n            \"Id\": \"11ecad15-18d5-45e4-9a41-240d93d03eeb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63291931152344,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017583301290869713,\n                    \"Height\": 0.011956218630075455,\n                    \"Left\": 0.33677971363067627,\n                    \"Top\": 0.10328256338834763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33678191900253296,\n                        \"Y\": 0.10328256338834763\n                    },\n                    {\n                        \"X\": 0.35436302423477173,\n                        \"Y\": 0.10329442471265793\n                    },\n                    {\n                        \"X\": 0.3543609082698822,\n                        \"Y\": 0.11523878574371338\n                    },\n                    {\n                        \"X\": 0.33677971363067627,\n                        \"Y\": 0.11522689461708069\n                    }\n                ]\n            },\n            \"Id\": \"f94268c5-0291-4c9d-805f-f8644c1e6841\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80252838134766,\n            \"Text\": \"transactions\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09671396762132645,\n                    \"Height\": 0.01150935422629118,\n                    \"Left\": 0.35554978251457214,\n                    \"Top\": 0.103815957903862\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3555518090724945,\n                        \"Y\": 0.103815957903862\n                    },\n                    {\n                        \"X\": 0.452263742685318,\n                        \"Y\": 0.10388121008872986\n                    },\n                    {\n                        \"X\": 0.4522622227668762,\n                        \"Y\": 0.11532530933618546\n                    },\n                    {\n                        \"X\": 0.35554978251457214,\n                        \"Y\": 0.11525990813970566\n                    }\n                ]\n            },\n            \"Id\": \"af36d966-e34d-4b94-a567-9bbd06a3f958\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9797592163086,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02302931807935238,\n                    \"Height\": 0.011821329593658447,\n                    \"Left\": 0.45486798882484436,\n                    \"Top\": 0.10330208390951157\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4548695385456085,\n                        \"Y\": 0.10330208390951157\n                    },\n                    {\n                        \"X\": 0.4778973162174225,\n                        \"Y\": 0.10331761837005615\n                    },\n                    {\n                        \"X\": 0.4778958559036255,\n                        \"Y\": 0.11512341350317001\n                    },\n                    {\n                        \"X\": 0.45486798882484436,\n                        \"Y\": 0.11510784178972244\n                    }\n                ]\n            },\n            \"Id\": \"e88b20a7-d2f0-446f-b2d5-d9853316747b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9881591796875,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026677852496504784,\n                    \"Height\": 0.011646298691630363,\n                    \"Left\": 0.4805348217487335,\n                    \"Top\": 0.10357595980167389\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48053625226020813,\n                        \"Y\": 0.10357595980167389\n                    },\n                    {\n                        \"X\": 0.5072126984596252,\n                        \"Y\": 0.10359396040439606\n                    },\n                    {\n                        \"X\": 0.507211446762085,\n                        \"Y\": 0.1152222603559494\n                    },\n                    {\n                        \"X\": 0.4805348217487335,\n                        \"Y\": 0.11520422250032425\n                    }\n                ]\n            },\n            \"Id\": \"7306a011-457a-4a53-ad58-50fa95314cc5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87094116210938,\n            \"Text\": \"period.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05539561063051224,\n                    \"Height\": 0.014277868904173374,\n                    \"Left\": 0.5101227164268494,\n                    \"Top\": 0.10352165997028351\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5101242661476135,\n                        \"Y\": 0.10352165997028351\n                    },\n                    {\n                        \"X\": 0.565518319606781,\n                        \"Y\": 0.10355903208255768\n                    },\n                    {\n                        \"X\": 0.5655171275138855,\n                        \"Y\": 0.11779952794313431\n                    },\n                    {\n                        \"X\": 0.5101227164268494,\n                        \"Y\": 0.11776204407215118\n                    }\n                ]\n            },\n            \"Id\": \"e318214a-bb62-49af-9731-9ccc9dfc410d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95711517333984,\n            \"Text\": \"Balance\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06083102151751518,\n                    \"Height\": 0.011506947688758373,\n                    \"Left\": 0.41760116815567017,\n                    \"Top\": 0.14451469480991364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41760286688804626,\n                        \"Y\": 0.14451469480991364\n                    },\n                    {\n                        \"X\": 0.47843220829963684,\n                        \"Y\": 0.14455607533454895\n                    },\n                    {\n                        \"X\": 0.4784308075904846,\n                        \"Y\": 0.15602163970470428\n                    },\n                    {\n                        \"X\": 0.41760116815567017,\n                        \"Y\": 0.1559801548719406\n                    }\n                ]\n            },\n            \"Id\": \"ebae23e3-1db7-405b-ae1c-ce4b383fdf42\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87372589111328,\n            \"Text\": \"Sheet\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04684372618794441,\n                    \"Height\": 0.01149981003254652,\n                    \"Left\": 0.4824599325656891,\n                    \"Top\": 0.14455319941043854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4824613034725189,\n                        \"Y\": 0.14455319941043854\n                    },\n                    {\n                        \"X\": 0.5293036699295044,\n                        \"Y\": 0.14458505809307098\n                    },\n                    {\n                        \"X\": 0.5293025374412537,\n                        \"Y\": 0.15605300664901733\n                    },\n                    {\n                        \"X\": 0.4824599325656891,\n                        \"Y\": 0.15602105855941772\n                    }\n                ]\n            },\n            \"Id\": \"5bdedfdf-b612-4c64-bb9c-d9bc7acf91ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87665557861328,\n            \"Text\": \"Date\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03675399720668793,\n                    \"Height\": 0.011200057342648506,\n                    \"Left\": 0.05976765975356102,\n                    \"Top\": 0.16569817066192627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059771109372377396,\n                        \"Y\": 0.16569817066192627\n                    },\n                    {\n                        \"X\": 0.09652165323495865,\n                        \"Y\": 0.1657232791185379\n                    },\n                    {\n                        \"X\": 0.0965183898806572,\n                        \"Y\": 0.17689822614192963\n                    },\n                    {\n                        \"X\": 0.05976765975356102,\n                        \"Y\": 0.17687305808067322\n                    }\n                ]\n            },\n            \"Id\": \"368788c4-608e-4d76-bbc3-fd080c5218ca\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8873519897461,\n            \"Text\": \"Description\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0919945240020752,\n                    \"Height\": 0.013917464762926102,\n                    \"Left\": 0.17129626870155334,\n                    \"Top\": 0.16534006595611572\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17129985988140106,\n                        \"Y\": 0.16534006595611572\n                    },\n                    {\n                        \"X\": 0.26329079270362854,\n                        \"Y\": 0.16540290415287018\n                    },\n                    {\n                        \"X\": 0.2632877826690674,\n                        \"Y\": 0.17925752699375153\n                    },\n                    {\n                        \"X\": 0.17129626870155334,\n                        \"Y\": 0.17919450998306274\n                    }\n                ]\n            },\n            \"Id\": \"19cb1359-9086-440a-b423-f3e485528746\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9227066040039,\n            \"Text\": \"Credit\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05011717975139618,\n                    \"Height\": 0.011660009622573853,\n                    \"Left\": 0.43312644958496094,\n                    \"Top\": 0.16517344117164612\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43312808871269226,\n                        \"Y\": 0.16517344117164612\n                    },\n                    {\n                        \"X\": 0.4832436442375183,\n                        \"Y\": 0.1652076691389084\n                    },\n                    {\n                        \"X\": 0.4832422435283661,\n                        \"Y\": 0.17683345079421997\n                    },\n                    {\n                        \"X\": 0.43312644958496094,\n                        \"Y\": 0.17679913341999054\n                    }\n                ]\n            },\n            \"Id\": \"96757a30-6d21-42cb-a71f-7708127cceb2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96669006347656,\n            \"Text\": \"Debit\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044728703796863556,\n                    \"Height\": 0.011729283258318901,\n                    \"Left\": 0.5874471068382263,\n                    \"Top\": 0.16526450216770172\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5874479413032532,\n                        \"Y\": 0.16526450216770172\n                    },\n                    {\n                        \"X\": 0.6321758031845093,\n                        \"Y\": 0.1652950644493103\n                    },\n                    {\n                        \"X\": 0.6321752071380615,\n                        \"Y\": 0.17699378728866577\n                    },\n                    {\n                        \"X\": 0.5874471068382263,\n                        \"Y\": 0.17696316540241241\n                    }\n                ]\n            },\n            \"Id\": \"799b7609-25a5-4f1c-97ac-31bea9ebf1a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90754699707031,\n            \"Text\": \"Balance\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06068531423807144,\n                    \"Height\": 0.011675440706312656,\n                    \"Left\": 0.7638397216796875,\n                    \"Top\": 0.1652829349040985\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7638397216796875,\n                        \"Y\": 0.1652829349040985\n                    },\n                    {\n                        \"X\": 0.8245246410369873,\n                        \"Y\": 0.1653243899345398\n                    },\n                    {\n                        \"X\": 0.8245250582695007,\n                        \"Y\": 0.176958367228508\n                    },\n                    {\n                        \"X\": 0.7638397812843323,\n                        \"Y\": 0.17691682279109955\n                    }\n                ]\n            },\n            \"Id\": \"e7b4ba8d-4aa9-4974-bc04-98de87facf4b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94229888916016,\n            \"Text\": \"2022\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040949102491140366,\n                    \"Height\": 0.011292267590761185,\n                    \"Left\": 0.0593448132276535,\n                    \"Top\": 0.18638239800930023\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05934829264879227,\n                        \"Y\": 0.18638239800930023\n                    },\n                    {\n                        \"X\": 0.10029391944408417,\n                        \"Y\": 0.18641048669815063\n                    },\n                    {\n                        \"X\": 0.10029064118862152,\n                        \"Y\": 0.19767466187477112\n                    },\n                    {\n                        \"X\": 0.0593448132276535,\n                        \"Y\": 0.19764651358127594\n                    }\n                ]\n            },\n            \"Id\": \"c6964843-7356-466b-aa55-7453d331c803\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89031219482422,\n            \"Text\": \"Previous\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06697701662778854,\n                    \"Height\": 0.011461042799055576,\n                    \"Left\": 0.05964932218194008,\n                    \"Top\": 0.20636746287345886\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059652846306562424,\n                        \"Y\": 0.20636746287345886\n                    },\n                    {\n                        \"X\": 0.12662634253501892,\n                        \"Y\": 0.20641359686851501\n                    },\n                    {\n                        \"X\": 0.12662315368652344,\n                        \"Y\": 0.21782851219177246\n                    },\n                    {\n                        \"X\": 0.05964932218194008,\n                        \"Y\": 0.21778227388858795\n                    }\n                ]\n            },\n            \"Id\": \"26637d02-582c-436f-b9f1-94b00942dcd0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96194458007812,\n            \"Text\": \"Balance\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06089063733816147,\n                    \"Height\": 0.011563762091100216,\n                    \"Left\": 0.12989585101604462,\n                    \"Top\": 0.2061229795217514\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1298990398645401,\n                        \"Y\": 0.2061229795217514\n                    },\n                    {\n                        \"X\": 0.1907864809036255,\n                        \"Y\": 0.2061649113893509\n                    },\n                    {\n                        \"X\": 0.19078360497951508,\n                        \"Y\": 0.2176867425441742\n                    },\n                    {\n                        \"X\": 0.12989585101604462,\n                        \"Y\": 0.21764470636844635\n                    }\n                ]\n            },\n            \"Id\": \"ab52331a-4774-47ac-a823-d13d9ec0f7bd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93741607666016,\n            \"Text\": \"11,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05588853731751442,\n                    \"Height\": 0.013563545420765877,\n                    \"Left\": 0.8309134244918823,\n                    \"Top\": 0.20613527297973633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8309134244918823,\n                        \"Y\": 0.20613527297973633\n                    },\n                    {\n                        \"X\": 0.8868011832237244,\n                        \"Y\": 0.20617376267910004\n                    },\n                    {\n                        \"X\": 0.8868020176887512,\n                        \"Y\": 0.21969881653785706\n                    },\n                    {\n                        \"X\": 0.8309139609336853,\n                        \"Y\": 0.219660222530365\n                    }\n                ]\n            },\n            \"Id\": \"397e21a8-f7bb-4df5-ab9e-edcfd524f9e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77581787109375,\n            \"Text\": \"2022-12-24\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09155608713626862,\n                    \"Height\": 0.011458075605332851,\n                    \"Left\": 0.05934705212712288,\n                    \"Top\": 0.22618746757507324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059350572526454926,\n                        \"Y\": 0.22618746757507324\n                    },\n                    {\n                        \"X\": 0.1509031355381012,\n                        \"Y\": 0.2262507677078247\n                    },\n                    {\n                        \"X\": 0.15090008080005646,\n                        \"Y\": 0.23764553666114807\n                    },\n                    {\n                        \"X\": 0.05934705212712288,\n                        \"Y\": 0.23758208751678467\n                    }\n                ]\n            },\n            \"Id\": \"65fda16f-cb67-4eb8-9187-361f64afa997\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75135040283203,\n            \"Text\": \"Payment\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0678548514842987,\n                    \"Height\": 0.013492072932422161,\n                    \"Left\": 0.17124231159687042,\n                    \"Top\": 0.22734345495700836\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1712457835674286,\n                        \"Y\": 0.22734345495700836\n                    },\n                    {\n                        \"X\": 0.23909716308116913,\n                        \"Y\": 0.22739039361476898\n                    },\n                    {\n                        \"X\": 0.2390940934419632,\n                        \"Y\": 0.2408355325460434\n                    },\n                    {\n                        \"X\": 0.17124231159687042,\n                        \"Y\": 0.24078847467899323\n                    }\n                ]\n            },\n            \"Id\": \"5aa60d83-5887-4b3d-84aa-e8412864429e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81246948242188,\n            \"Text\": \"Credit\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04773614555597305,\n                    \"Height\": 0.011400030925869942,\n                    \"Left\": 0.2510859966278076,\n                    \"Top\": 0.22698423266410828\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25108852982521057,\n                        \"Y\": 0.22698423266410828\n                    },\n                    {\n                        \"X\": 0.2988221347332001,\n                        \"Y\": 0.22701725363731384\n                    },\n                    {\n                        \"X\": 0.2988198399543762,\n                        \"Y\": 0.23838427662849426\n                    },\n                    {\n                        \"X\": 0.2510859966278076,\n                        \"Y\": 0.23835118114948273\n                    }\n                ]\n            },\n            \"Id\": \"dbec763e-7988-4834-93ad-b6d723ea4a57\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62468719482422,\n            \"Text\": \"Card\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0355708934366703,\n                    \"Height\": 0.011401670053601265,\n                    \"Left\": 0.3028944730758667,\n                    \"Top\": 0.2268754094839096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30289676785469055,\n                        \"Y\": 0.2268754094839096\n                    },\n                    {\n                        \"X\": 0.3384653627872467,\n                        \"Y\": 0.22690001130104065\n                    },\n                    {\n                        \"X\": 0.33846327662467957,\n                        \"Y\": 0.23827707767486572\n                    },\n                    {\n                        \"X\": 0.3028944730758667,\n                        \"Y\": 0.2382524311542511\n                    }\n                ]\n            },\n            \"Id\": \"82e9ccb8-2538-4312-81c6-c781a847daf2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8794174194336,\n            \"Text\": \"1,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0482948012650013,\n                    \"Height\": 0.01540737971663475,\n                    \"Left\": 0.7029736638069153,\n                    \"Top\": 0.22533920407295227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7029740214347839,\n                        \"Y\": 0.22533920407295227\n                    },\n                    {\n                        \"X\": 0.7512685060501099,\n                        \"Y\": 0.22537259757518768\n                    },\n                    {\n                        \"X\": 0.7512685060501099,\n                        \"Y\": 0.24074658751487732\n                    },\n                    {\n                        \"X\": 0.7029736638069153,\n                        \"Y\": 0.24071310460567474\n                    }\n                ]\n            },\n            \"Id\": \"5f98df44-4bd4-4b70-b086-c7d9e830ef89\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85717010498047,\n            \"Text\": \"10,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05542517453432083,\n                    \"Height\": 0.01344285998493433,\n                    \"Left\": 0.8260496258735657,\n                    \"Top\": 0.22696736454963684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8260496258735657,\n                        \"Y\": 0.22696736454963684\n                    },\n                    {\n                        \"X\": 0.8814740180969238,\n                        \"Y\": 0.2270057052373886\n                    },\n                    {\n                        \"X\": 0.8814747929573059,\n                        \"Y\": 0.2404102236032486\n                    },\n                    {\n                        \"X\": 0.8260500431060791,\n                        \"Y\": 0.24037179350852966\n                    }\n                ]\n            },\n            \"Id\": \"7e14797c-9c45-4563-9a99-3d9a3c887a8a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78996276855469,\n            \"Text\": \"Payment\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06680580228567123,\n                    \"Height\": 0.013414223678410053,\n                    \"Left\": 0.17148959636688232,\n                    \"Top\": 0.2481307089328766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1714930534362793,\n                        \"Y\": 0.2481307089328766\n                    },\n                    {\n                        \"X\": 0.23829539120197296,\n                        \"Y\": 0.24817709624767303\n                    },\n                    {\n                        \"X\": 0.23829233646392822,\n                        \"Y\": 0.26154494285583496\n                    },\n                    {\n                        \"X\": 0.17148959636688232,\n                        \"Y\": 0.26149842143058777\n                    }\n                ]\n            },\n            \"Id\": \"fdad3bad-491b-49b5-beb3-4e63d6e1cfe1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94151306152344,\n            \"Text\": \"Utility\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04939594119787216,\n                    \"Height\": 0.014217894524335861,\n                    \"Left\": 0.2520844340324402,\n                    \"Top\": 0.24760635197162628\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2520875930786133,\n                        \"Y\": 0.24760635197162628\n                    },\n                    {\n                        \"X\": 0.30148038268089294,\n                        \"Y\": 0.24764065444469452\n                    },\n                    {\n                        \"X\": 0.3014775216579437,\n                        \"Y\": 0.26182425022125244\n                    },\n                    {\n                        \"X\": 0.2520844340324402,\n                        \"Y\": 0.26178985834121704\n                    }\n                ]\n            },\n            \"Id\": \"4be75194-f027-4a1e-ae14-fee36cca0f3f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98810577392578,\n            \"Text\": \"40\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020635146647691727,\n                    \"Height\": 0.011547374539077282,\n                    \"Left\": 0.7290180325508118,\n                    \"Top\": 0.2478259652853012\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7290180921554565,\n                        \"Y\": 0.2478259652853012\n                    },\n                    {\n                        \"X\": 0.749653160572052,\n                        \"Y\": 0.2478402853012085\n                    },\n                    {\n                        \"X\": 0.749653160572052,\n                        \"Y\": 0.25937333703041077\n                    },\n                    {\n                        \"X\": 0.7290180325508118,\n                        \"Y\": 0.2593589723110199\n                    }\n                ]\n            },\n            \"Id\": \"cf8f4489-9bf1-4b02-b4ec-b416693e1175\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88890075683594,\n            \"Text\": \"9,960\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046545688062906265,\n                    \"Height\": 0.013485259376466274,\n                    \"Left\": 0.8351225256919861,\n                    \"Top\": 0.24793757498264313\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8351225256919861,\n                        \"Y\": 0.24793757498264313\n                    },\n                    {\n                        \"X\": 0.88166743516922,\n                        \"Y\": 0.24796989560127258\n                    },\n                    {\n                        \"X\": 0.881668210029602,\n                        \"Y\": 0.2614228427410126\n                    },\n                    {\n                        \"X\": 0.8351230025291443,\n                        \"Y\": 0.26139041781425476\n                    }\n                ]\n            },\n            \"Id\": \"09c7cad1-ba65-43fe-92ef-837a37fa0062\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82150268554688,\n            \"Text\": \"2022-12-31\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09076805412769318,\n                    \"Height\": 0.011780940927565098,\n                    \"Left\": 0.06002306193113327,\n                    \"Top\": 0.2676829695701599\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06002667546272278,\n                        \"Y\": 0.2676829695701599\n                    },\n                    {\n                        \"X\": 0.15079110860824585,\n                        \"Y\": 0.2677462697029114\n                    },\n                    {\n                        \"X\": 0.15078797936439514,\n                        \"Y\": 0.27946391701698303\n                    },\n                    {\n                        \"X\": 0.06002306193113327,\n                        \"Y\": 0.279400497674942\n                    }\n                ]\n            },\n            \"Id\": \"110da060-c8e7-441f-8521-e75892275a7b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92741394042969,\n            \"Text\": \"Deposit\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05905073881149292,\n                    \"Height\": 0.013423396274447441,\n                    \"Left\": 0.17170493304729462,\n                    \"Top\": 0.26808178424835205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17170840501785278,\n                        \"Y\": 0.26808178424835205\n                    },\n                    {\n                        \"X\": 0.23075567185878754,\n                        \"Y\": 0.26812294125556946\n                    },\n                    {\n                        \"X\": 0.23075257241725922,\n                        \"Y\": 0.28150516748428345\n                    },\n                    {\n                        \"X\": 0.17170493304729462,\n                        \"Y\": 0.2814638912677765\n                    }\n                ]\n            },\n            \"Id\": \"afef6e54-0789-4a52-af9a-1314c13e78ca\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94865417480469,\n            \"Text\": \"1,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04558362811803818,\n                    \"Height\": 0.013033991679549217,\n                    \"Left\": 0.5275039672851562,\n                    \"Top\": 0.2679845094680786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5275052785873413,\n                        \"Y\": 0.2679845094680786\n                    },\n                    {\n                        \"X\": 0.5730875730514526,\n                        \"Y\": 0.2680163085460663\n                    },\n                    {\n                        \"X\": 0.5730865597724915,\n                        \"Y\": 0.2810184955596924\n                    },\n                    {\n                        \"X\": 0.5275039672851562,\n                        \"Y\": 0.28098663687705994\n                    }\n                ]\n            },\n            \"Id\": \"0886f560-1798-491e-bb50-55d22ebb3372\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87687683105469,\n            \"Text\": \"10,960\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05614409223198891,\n                    \"Height\": 0.013593371957540512,\n                    \"Left\": 0.830930233001709,\n                    \"Top\": 0.26774975657463074\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.830930233001709,\n                        \"Y\": 0.26774975657463074\n                    },\n                    {\n                        \"X\": 0.8870735168457031,\n                        \"Y\": 0.2677888870239258\n                    },\n                    {\n                        \"X\": 0.88707435131073,\n                        \"Y\": 0.28134313225746155\n                    },\n                    {\n                        \"X\": 0.8309307098388672,\n                        \"Y\": 0.28130388259887695\n                    }\n                ]\n            },\n            \"Id\": \"6910ecd2-baa5-4440-9560-eae4f52d07ab\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90848541259766,\n            \"Text\": \"2023\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0408756360411644,\n                    \"Height\": 0.011326982639729977,\n                    \"Left\": 0.05911041423678398,\n                    \"Top\": 0.2887732982635498\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05911390483379364,\n                        \"Y\": 0.2887732982635498\n                    },\n                    {\n                        \"X\": 0.09998604655265808,\n                        \"Y\": 0.288801908493042\n                    },\n                    {\n                        \"X\": 0.09998276829719543,\n                        \"Y\": 0.30010026693344116\n                    },\n                    {\n                        \"X\": 0.05911041423678398,\n                        \"Y\": 0.3000715970993042\n                    }\n                ]\n            },\n            \"Id\": \"a0fce67e-9265-46c8-a43e-31ef818720b8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90055847167969,\n            \"Text\": \"2023-01-15\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09085570275783539,\n                    \"Height\": 0.011390036903321743,\n                    \"Left\": 0.06006191670894623,\n                    \"Top\": 0.30956315994262695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.060065411031246185,\n                        \"Y\": 0.30956315994262695\n                    },\n                    {\n                        \"X\": 0.15091761946678162,\n                        \"Y\": 0.3096270263195038\n                    },\n                    {\n                        \"X\": 0.15091457962989807,\n                        \"Y\": 0.3209531903266907\n                    },\n                    {\n                        \"X\": 0.06006191670894623,\n                        \"Y\": 0.3208892047405243\n                    }\n                ]\n            },\n            \"Id\": \"75ece466-3513-40e6-a369-b411541f008d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9068832397461,\n            \"Text\": \"Deposit\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05942661315202713,\n                    \"Height\": 0.013455498032271862,\n                    \"Left\": 0.17141592502593994,\n                    \"Top\": 0.3096478283405304\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1714193969964981,\n                        \"Y\": 0.3096478283405304\n                    },\n                    {\n                        \"X\": 0.23084253072738647,\n                        \"Y\": 0.30968961119651794\n                    },\n                    {\n                        \"X\": 0.23083941638469696,\n                        \"Y\": 0.3231033384799957\n                    },\n                    {\n                        \"X\": 0.17141592502593994,\n                        \"Y\": 0.32306143641471863\n                    }\n                ]\n            },\n            \"Id\": \"71003e33-3f9b-478a-899b-ea3dd81fd71a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98876190185547,\n            \"Text\": \"40\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020581115037202835,\n                    \"Height\": 0.011086833663284779,\n                    \"Left\": 0.5578409433364868,\n                    \"Top\": 0.30981186032295227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5578418970108032,\n                        \"Y\": 0.30981186032295227\n                    },\n                    {\n                        \"X\": 0.5784220695495605,\n                        \"Y\": 0.3098263144493103\n                    },\n                    {\n                        \"X\": 0.5784212350845337,\n                        \"Y\": 0.3208986818790436\n                    },\n                    {\n                        \"X\": 0.5578409433364868,\n                        \"Y\": 0.32088419795036316\n                    }\n                ]\n            },\n            \"Id\": \"9dfc6273-08e3-4d79-81d7-fd20f8715f35\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94544982910156,\n            \"Text\": \"11,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05612313747406006,\n                    \"Height\": 0.013385548256337643,\n                    \"Left\": 0.8308804035186768,\n                    \"Top\": 0.309421569108963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8308804035186768,\n                        \"Y\": 0.309421569108963\n                    },\n                    {\n                        \"X\": 0.8870027661323547,\n                        \"Y\": 0.30946099758148193\n                    },\n                    {\n                        \"X\": 0.8870035409927368,\n                        \"Y\": 0.32280710339546204\n                    },\n                    {\n                        \"X\": 0.830880880355835,\n                        \"Y\": 0.32276755571365356\n                    }\n                ]\n            },\n            \"Id\": \"8500ee88-9f85-4852-b880-17019ab91479\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82987976074219,\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03903970494866371,\n                    \"Height\": 0.011661621741950512,\n                    \"Left\": 0.05866754800081253,\n                    \"Top\": 0.33006754517555237\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058671146631240845,\n                        \"Y\": 0.33006754517555237\n                    },\n                    {\n                        \"X\": 0.09770724922418594,\n                        \"Y\": 0.330095112323761\n                    },\n                    {\n                        \"X\": 0.09770385921001434,\n                        \"Y\": 0.34172919392585754\n                    },\n                    {\n                        \"X\": 0.05866754800081253,\n                        \"Y\": 0.34170156717300415\n                    }\n                ]\n            },\n            \"Id\": \"568235b1-0330-4abb-869e-90460aad0c66\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9586181640625,\n            \"Text\": \"Ending\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05271993577480316,\n                    \"Height\": 0.013599644415080547,\n                    \"Left\": 0.1028241291642189,\n                    \"Top\": 0.33035197854042053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10282804816961288,\n                        \"Y\": 0.33035197854042053\n                    },\n                    {\n                        \"X\": 0.15554405748844147,\n                        \"Y\": 0.33038920164108276\n                    },\n                    {\n                        \"X\": 0.15554045140743256,\n                        \"Y\": 0.34395164251327515\n                    },\n                    {\n                        \"X\": 0.1028241291642189,\n                        \"Y\": 0.34391433000564575\n                    }\n                ]\n            },\n            \"Id\": \"9ddd1870-1d74-4253-bd40-d635ef379c29\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93964385986328,\n            \"Text\": \"Balance\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.060063764452934265,\n                    \"Height\": 0.011328519321978092,\n                    \"Left\": 0.15942326188087463,\n                    \"Top\": 0.3304435610771179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1594262421131134,\n                        \"Y\": 0.3304435610771179\n                    },\n                    {\n                        \"X\": 0.2194870263338089,\n                        \"Y\": 0.3304859399795532\n                    },\n                    {\n                        \"X\": 0.219484344124794,\n                        \"Y\": 0.34177207946777344\n                    },\n                    {\n                        \"X\": 0.15942326188087463,\n                        \"Y\": 0.3417295813560486\n                    }\n                ]\n            },\n            \"Id\": \"868b28f3-7a33-419b-974c-ed2062597e30\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94739532470703,\n            \"Text\": \"11,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05619266629219055,\n                    \"Height\": 0.013500289991497993,\n                    \"Left\": 0.830832302570343,\n                    \"Top\": 0.33016377687454224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.830832302570343,\n                        \"Y\": 0.33016377687454224\n                    },\n                    {\n                        \"X\": 0.8870241641998291,\n                        \"Y\": 0.33020341396331787\n                    },\n                    {\n                        \"X\": 0.8870249390602112,\n                        \"Y\": 0.3436640501022339\n                    },\n                    {\n                        \"X\": 0.8308327794075012,\n                        \"Y\": 0.3436242938041687\n                    }\n                ]\n            },\n            \"Id\": \"3190fa49-2d71-4f0c-9965-d67ae7925770\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.12728881835938,\n            \"Text\": \"(1)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021562498062849045,\n                    \"Height\": 0.014280674047768116,\n                    \"Left\": 0.05923207849264145,\n                    \"Top\": 0.34947410225868225\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05923648551106453,\n                        \"Y\": 0.34947410225868225\n                    },\n                    {\n                        \"X\": 0.0807945728302002,\n                        \"Y\": 0.34948936104774475\n                    },\n                    {\n                        \"X\": 0.08079030364751816,\n                        \"Y\": 0.3637547791004181\n                    },\n                    {\n                        \"X\": 0.05923207849264145,\n                        \"Y\": 0.3637394607067108\n                    }\n                ]\n            },\n            \"Id\": \"64315dc1-4c15-4bf3-864e-0561cea96d3b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9076156616211,\n            \"Text\": \"Represents\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08438021689653397,\n                    \"Height\": 0.013508155941963196,\n                    \"Left\": 0.08323363959789276,\n                    \"Top\": 0.3504333198070526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0832376480102539,\n                        \"Y\": 0.3504333198070526\n                    },\n                    {\n                        \"X\": 0.16761384904384613,\n                        \"Y\": 0.35049310326576233\n                    },\n                    {\n                        \"X\": 0.16761034727096558,\n                        \"Y\": 0.3639414608478546\n                    },\n                    {\n                        \"X\": 0.08323363959789276,\n                        \"Y\": 0.36388152837753296\n                    }\n                ]\n            },\n            \"Id\": \"fc32aadf-2c8e-400c-b459-c36b7d4aa138\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.59252166748047,\n            \"Text\": \"transactions\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09998761117458344,\n                    \"Height\": 0.011244968511164188,\n                    \"Left\": 0.1707811802625656,\n                    \"Top\": 0.3505084216594696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17078407108783722,\n                        \"Y\": 0.3505084216594696\n                    },\n                    {\n                        \"X\": 0.27076879143714905,\n                        \"Y\": 0.35057929158210754\n                    },\n                    {\n                        \"X\": 0.27076637744903564,\n                        \"Y\": 0.3617534041404724\n                    },\n                    {\n                        \"X\": 0.1707811802625656,\n                        \"Y\": 0.3616824150085449\n                    }\n                ]\n            },\n            \"Id\": \"fbe6b0f6-688a-4cef-baa5-80da8b51eb02\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9558334350586,\n            \"Text\": \"till\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02255730889737606,\n                    \"Height\": 0.011611095629632473,\n                    \"Left\": 0.27378401160240173,\n                    \"Top\": 0.3498966693878174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2737864851951599,\n                        \"Y\": 0.3498966693878174\n                    },\n                    {\n                        \"X\": 0.29634132981300354,\n                        \"Y\": 0.3499126434326172\n                    },\n                    {\n                        \"X\": 0.2963389754295349,\n                        \"Y\": 0.361507773399353\n                    },\n                    {\n                        \"X\": 0.27378401160240173,\n                        \"Y\": 0.36149173974990845\n                    }\n                ]\n            },\n            \"Id\": \"e68924ef-2110-4159-98dd-a96ea7a2381e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78292846679688,\n            \"Text\": \"2023-01-17\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09359262883663177,\n                    \"Height\": 0.011348530650138855,\n                    \"Left\": 0.29915693402290344,\n                    \"Top\": 0.35025444626808167\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2991592288017273,\n                        \"Y\": 0.35025444626808167\n                    },\n                    {\n                        \"X\": 0.3927495777606964,\n                        \"Y\": 0.3503207266330719\n                    },\n                    {\n                        \"X\": 0.39274775981903076,\n                        \"Y\": 0.3616029620170593\n                    },\n                    {\n                        \"X\": 0.29915693402290344,\n                        \"Y\": 0.36153650283813477\n                    }\n                ]\n            },\n            \"Id\": \"b0d4bb89-dfb9-4422-bc4d-9f669febbbde\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.39775848388672,\n            \"Text\": \"(2)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020546341314911842,\n                    \"Height\": 0.014093750156462193,\n                    \"Left\": 0.05954471603035927,\n                    \"Top\": 0.3706016540527344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05954906344413757,\n                        \"Y\": 0.3706016540527344\n                    },\n                    {\n                        \"X\": 0.08009105920791626,\n                        \"Y\": 0.37061628699302673\n                    },\n                    {\n                        \"X\": 0.0800868347287178,\n                        \"Y\": 0.3846954107284546\n                    },\n                    {\n                        \"X\": 0.05954471603035927,\n                        \"Y\": 0.38468077778816223\n                    }\n                ]\n            },\n            \"Id\": \"948a8c7a-d3f0-4e53-bdc0-5f8d7c3a8a6c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87581634521484,\n            \"Text\": \"Anything\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07266052812337875,\n                    \"Height\": 0.014165851287543774,\n                    \"Left\": 0.08245934545993805,\n                    \"Top\": 0.37083327770233154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08246356248855591,\n                        \"Y\": 0.37083327770233154\n                    },\n                    {\n                        \"X\": 0.1551198810338974,\n                        \"Y\": 0.3708849847316742\n                    },\n                    {\n                        \"X\": 0.15511612594127655,\n                        \"Y\": 0.3849991261959076\n                    },\n                    {\n                        \"X\": 0.08245934545993805,\n                        \"Y\": 0.3849472999572754\n                    }\n                ]\n            },\n            \"Id\": \"b745be53-c39c-4297-93d7-992c1e6e3d0a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92428588867188,\n            \"Text\": \"wrong?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06113407760858536,\n                    \"Height\": 0.013891348615288734,\n                    \"Left\": 0.1588740199804306,\n                    \"Top\": 0.3709842264652252\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1588776856660843,\n                        \"Y\": 0.3709842264652252\n                    },\n                    {\n                        \"X\": 0.22000810503959656,\n                        \"Y\": 0.37102770805358887\n                    },\n                    {\n                        \"X\": 0.2200048267841339,\n                        \"Y\": 0.3848755657672882\n                    },\n                    {\n                        \"X\": 0.1588740199804306,\n                        \"Y\": 0.384831964969635\n                    }\n                ]\n            },\n            \"Id\": \"5b2b7a4f-56b2-4093-a95c-3aa740b6d720\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74254608154297,\n            \"Text\": \"If\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013221210800111294,\n                    \"Height\": 0.013858674094080925,\n                    \"Left\": 0.22242937982082367,\n                    \"Top\": 0.3706071972846985\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22243264317512512,\n                        \"Y\": 0.3706071972846985\n                    },\n                    {\n                        \"X\": 0.23565058410167694,\n                        \"Y\": 0.370616614818573\n                    },\n                    {\n                        \"X\": 0.23564741015434265,\n                        \"Y\": 0.38446587324142456\n                    },\n                    {\n                        \"X\": 0.22242937982082367,\n                        \"Y\": 0.38445645570755005\n                    }\n                ]\n            },\n            \"Id\": \"88445626-7941-4f8f-913a-f577a5561e09\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88538360595703,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02963772974908352,\n                    \"Height\": 0.011128832586109638,\n                    \"Left\": 0.23545140027999878,\n                    \"Top\": 0.373809278011322\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23545396327972412,\n                        \"Y\": 0.373809278011322\n                    },\n                    {\n                        \"X\": 0.26508912444114685,\n                        \"Y\": 0.3738303780555725\n                    },\n                    {\n                        \"X\": 0.26508671045303345,\n                        \"Y\": 0.3849380910396576\n                    },\n                    {\n                        \"X\": 0.23545140027999878,\n                        \"Y\": 0.3849169611930847\n                    }\n                ]\n            },\n            \"Id\": \"634aee0c-9e1d-4cac-b969-9f4069b62233\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96768188476562,\n            \"Text\": \"notice\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05036219209432602,\n                    \"Height\": 0.011687559075653553,\n                    \"Left\": 0.26845934987068176,\n                    \"Top\": 0.37097519636154175\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26846185326576233,\n                        \"Y\": 0.37097519636154175\n                    },\n                    {\n                        \"X\": 0.3188215494155884,\n                        \"Y\": 0.37101101875305176\n                    },\n                    {\n                        \"X\": 0.3188192844390869,\n                        \"Y\": 0.3826627731323242\n                    },\n                    {\n                        \"X\": 0.26845934987068176,\n                        \"Y\": 0.38262686133384705\n                    }\n                ]\n            },\n            \"Id\": \"543bcaed-c6d8-4adf-937f-5d1112997c2a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.927734375,\n            \"Text\": \"incorrect\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07292447984218597,\n                    \"Height\": 0.011219143867492676,\n                    \"Left\": 0.32146793603897095,\n                    \"Top\": 0.37130188941955566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32147008180618286,\n                        \"Y\": 0.37130188941955566\n                    },\n                    {\n                        \"X\": 0.3943924009799957,\n                        \"Y\": 0.37135377526283264\n                    },\n                    {\n                        \"X\": 0.39439064264297485,\n                        \"Y\": 0.38252103328704834\n                    },\n                    {\n                        \"X\": 0.32146793603897095,\n                        \"Y\": 0.3824690580368042\n                    }\n                ]\n            },\n            \"Id\": \"5408cb30-f511-447b-9d29-f39492c5f86f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95685577392578,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01799718104302883,\n                    \"Height\": 0.008690106682479382,\n                    \"Left\": 0.3969973921775818,\n                    \"Top\": 0.3735784590244293\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3969987630844116,\n                        \"Y\": 0.3735784590244293\n                    },\n                    {\n                        \"X\": 0.41499456763267517,\n                        \"Y\": 0.37359127402305603\n                    },\n                    {\n                        \"X\": 0.4149932563304901,\n                        \"Y\": 0.3822685778141022\n                    },\n                    {\n                        \"X\": 0.3969973921775818,\n                        \"Y\": 0.3822557330131531\n                    }\n                ]\n            },\n            \"Id\": \"3f51bd28-33e2-4755-bfaa-d2f247441f57\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.875244140625,\n            \"Text\": \"unusual\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06402924656867981,\n                    \"Height\": 0.011769905686378479,\n                    \"Left\": 0.41778481006622314,\n                    \"Top\": 0.3708187937736511\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41778653860092163,\n                        \"Y\": 0.3708187937736511\n                    },\n                    {\n                        \"X\": 0.48181405663490295,\n                        \"Y\": 0.3708643317222595\n                    },\n                    {\n                        \"X\": 0.48181262612342834,\n                        \"Y\": 0.3825886845588684\n                    },\n                    {\n                        \"X\": 0.41778481006622314,\n                        \"Y\": 0.38254302740097046\n                    }\n                ]\n            },\n            \"Id\": \"5a38acfe-2362-4565-bbb1-093ce888710c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.42268371582031,\n            \"Text\": \"transactions,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10333383083343506,\n                    \"Height\": 0.013268855400383472,\n                    \"Left\": 0.48457854986190796,\n                    \"Top\": 0.371102899312973\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4845801293849945,\n                        \"Y\": 0.371102899312973\n                    },\n                    {\n                        \"X\": 0.587912380695343,\n                        \"Y\": 0.37117642164230347\n                    },\n                    {\n                        \"X\": 0.5879114270210266,\n                        \"Y\": 0.3843717575073242\n                    },\n                    {\n                        \"X\": 0.48457854986190796,\n                        \"Y\": 0.38429808616638184\n                    }\n                ]\n            },\n            \"Id\": \"67a858e5-8efa-4bac-b9d6-917a8000433b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86541748046875,\n            \"Text\": \"get\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026505155488848686,\n                    \"Height\": 0.013007682748138905,\n                    \"Left\": 0.592064380645752,\n                    \"Top\": 0.3719637393951416\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5920652747154236,\n                        \"Y\": 0.3719637393951416\n                    },\n                    {\n                        \"X\": 0.618569552898407,\n                        \"Y\": 0.371982604265213\n                    },\n                    {\n                        \"X\": 0.6185687780380249,\n                        \"Y\": 0.3849714398384094\n                    },\n                    {\n                        \"X\": 0.592064380645752,\n                        \"Y\": 0.38495251536369324\n                    }\n                ]\n            },\n            \"Id\": \"4ae753d1-869f-424f-9395-027e3c048101\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89759063720703,\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015337049961090088,\n                    \"Height\": 0.011548202484846115,\n                    \"Left\": 0.6213395595550537,\n                    \"Top\": 0.3710802495479584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6213402152061462,\n                        \"Y\": 0.3710802495479584\n                    },\n                    {\n                        \"X\": 0.6366766095161438,\n                        \"Y\": 0.37109115719795227\n                    },\n                    {\n                        \"X\": 0.636676013469696,\n                        \"Y\": 0.382628470659256\n                    },\n                    {\n                        \"X\": 0.6213395595550537,\n                        \"Y\": 0.3826175332069397\n                    }\n                ]\n            },\n            \"Id\": \"69caa358-ba12-4ae2-94f5-a3301bd1756a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93783569335938,\n            \"Text\": \"touch\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04618535190820694,\n                    \"Height\": 0.011927308514714241,\n                    \"Left\": 0.6402562260627747,\n                    \"Top\": 0.3706854283809662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6402567625045776,\n                        \"Y\": 0.3706854283809662\n                    },\n                    {\n                        \"X\": 0.6864415407180786,\n                        \"Y\": 0.3707183003425598\n                    },\n                    {\n                        \"X\": 0.68644118309021,\n                        \"Y\": 0.3826127350330353\n                    },\n                    {\n                        \"X\": 0.6402562260627747,\n                        \"Y\": 0.38257983326911926\n                    }\n                ]\n            },\n            \"Id\": \"8fed288e-9e03-4759-8026-82d9ff170395\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94915771484375,\n            \"Text\": \"with\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035516709089279175,\n                    \"Height\": 0.011872495524585247,\n                    \"Left\": 0.6901693940162659,\n                    \"Top\": 0.3706628680229187\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6901697516441345,\n                        \"Y\": 0.3706628680229187\n                    },\n                    {\n                        \"X\": 0.7256861329078674,\n                        \"Y\": 0.3706881105899811\n                    },\n                    {\n                        \"X\": 0.7256859540939331,\n                        \"Y\": 0.3825353682041168\n                    },\n                    {\n                        \"X\": 0.6901693940162659,\n                        \"Y\": 0.3825100362300873\n                    }\n                ]\n            },\n            \"Id\": \"56cab4e1-01a7-43fb-98a9-99b2afe13f64\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.75947570800781,\n            \"Text\": \"us\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017938490957021713,\n                    \"Height\": 0.009216714650392532,\n                    \"Left\": 0.7297768592834473,\n                    \"Top\": 0.37344491481781006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.729776918888092,\n                        \"Y\": 0.37344491481781006\n                    },\n                    {\n                        \"X\": 0.7477153539657593,\n                        \"Y\": 0.3734577000141144\n                    },\n                    {\n                        \"X\": 0.7477152943611145,\n                        \"Y\": 0.3826616406440735\n                    },\n                    {\n                        \"X\": 0.7297768592834473,\n                        \"Y\": 0.38264885544776917\n                    }\n                ]\n            },\n            \"Id\": \"3b8d3aea-b4b1-4553-8616-f13367180b62\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.45631408691406,\n            \"Text\": \"Final\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036826442927122116,\n                    \"Height\": 0.011672635562717915,\n                    \"Left\": 0.05981375277042389,\n                    \"Top\": 0.39162489771842957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.059817347675561905,\n                        \"Y\": 0.39162489771842957\n                    },\n                    {\n                        \"X\": 0.0966401994228363,\n                        \"Y\": 0.3916512131690979\n                    },\n                    {\n                        \"X\": 0.09663679450750351,\n                        \"Y\": 0.4032975435256958\n                    },\n                    {\n                        \"X\": 0.05981375277042389,\n                        \"Y\": 0.4032711684703827\n                    }\n                ]\n            },\n            \"Id\": \"a488eb79-d287-4e6c-a1e3-7e12a6a34780\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9118881225586,\n            \"Text\": \"available\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06912627816200256,\n                    \"Height\": 0.011536858975887299,\n                    \"Left\": 0.10063465684652328,\n                    \"Top\": 0.3916871249675751\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10063798725605011,\n                        \"Y\": 0.3916871249675751\n                    },\n                    {\n                        \"X\": 0.16976092755794525,\n                        \"Y\": 0.3917364776134491\n                    },\n                    {\n                        \"X\": 0.16975794732570648,\n                        \"Y\": 0.4032239615917206\n                    },\n                    {\n                        \"X\": 0.10063465684652328,\n                        \"Y\": 0.403174489736557\n                    }\n                ]\n            },\n            \"Id\": \"b08aced8-5825-4cfb-bbad-c00b310646cc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94690704345703,\n            \"Text\": \"balance\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06078285351395607,\n                    \"Height\": 0.011544013395905495,\n                    \"Left\": 0.17447395622730255,\n                    \"Top\": 0.39167168736457825\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17447692155838013,\n                        \"Y\": 0.39167168736457825\n                    },\n                    {\n                        \"X\": 0.23525680601596832,\n                        \"Y\": 0.3917151093482971\n                    },\n                    {\n                        \"X\": 0.235254168510437,\n                        \"Y\": 0.4032157063484192\n                    },\n                    {\n                        \"X\": 0.17447395622730255,\n                        \"Y\": 0.40317219495773315\n                    }\n                ]\n            },\n            \"Id\": \"7a70959d-6a10-4e79-bbdc-36d9c8621ece\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96472930908203,\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016189072281122208,\n                    \"Height\": 0.008921168744564056,\n                    \"Left\": 0.23939970135688782,\n                    \"Top\": 0.3945007622241974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23940174281597137,\n                        \"Y\": 0.3945007622241974\n                    },\n                    {\n                        \"X\": 0.2555887699127197,\n                        \"Y\": 0.3945123255252838\n                    },\n                    {\n                        \"X\": 0.25558680295944214,\n                        \"Y\": 0.40342190861701965\n                    },\n                    {\n                        \"X\": 0.23939970135688782,\n                        \"Y\": 0.4034103453159332\n                    }\n                ]\n            },\n            \"Id\": \"f6c7b127-ceb3-49bf-9d1b-587ea984d3f4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.28227233886719,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01774938404560089,\n                    \"Height\": 0.01184981968253851,\n                    \"Left\": 0.2581491470336914,\n                    \"Top\": 0.3913472592830658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2581517696380615,\n                        \"Y\": 0.3913472592830658\n                    },\n                    {\n                        \"X\": 0.2758985459804535,\n                        \"Y\": 0.39135995507240295\n                    },\n                    {\n                        \"X\": 0.2758960425853729,\n                        \"Y\": 0.4031970798969269\n                    },\n                    {\n                        \"X\": 0.2581491470336914,\n                        \"Y\": 0.4031843841075897\n                    }\n                ]\n            },\n            \"Id\": \"5c3b9794-ce76-41f9-9315-c657ea259385\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88517761230469,\n            \"Text\": \"2023-01-20\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09245903044939041,\n                    \"Height\": 0.011427430436015129,\n                    \"Left\": 0.2765284478664398,\n                    \"Top\": 0.39194220304489136\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2765308618545532,\n                        \"Y\": 0.39194220304489136\n                    },\n                    {\n                        \"X\": 0.36898747086524963,\n                        \"Y\": 0.3920082449913025\n                    },\n                    {\n                        \"X\": 0.36898553371429443,\n                        \"Y\": 0.40336963534355164\n                    },\n                    {\n                        \"X\": 0.2765284478664398,\n                        \"Y\": 0.40330347418785095\n                    }\n                ]\n            },\n            \"Id\": \"c1716c45-e684-4922-94c2-5a38bca7b841\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95265197753906,\n            \"Text\": \"11,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05598180368542671,\n                    \"Height\": 0.013293315656483173,\n                    \"Left\": 0.8310263156890869,\n                    \"Top\": 0.39188557863235474\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8310263156890869,\n                        \"Y\": 0.39188557863235474\n                    },\n                    {\n                        \"X\": 0.8870072960853577,\n                        \"Y\": 0.39192554354667664\n                    },\n                    {\n                        \"X\": 0.8870080709457397,\n                        \"Y\": 0.40517887473106384\n                    },\n                    {\n                        \"X\": 0.8310267925262451,\n                        \"Y\": 0.4051387906074524\n                    }\n                ]\n            },\n            \"Id\": \"bdcde108-8826-43dd-8846-7640e5c86592\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85892486572266,\n            \"Text\": \"Always\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05434662103652954,\n                    \"Height\": 0.014270155690610409,\n                    \"Left\": 0.05876918509602547,\n                    \"Top\": 0.6390129923820496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05877358466386795,\n                        \"Y\": 0.6390129923820496\n                    },\n                    {\n                        \"X\": 0.11311580240726471,\n                        \"Y\": 0.6390536427497864\n                    },\n                    {\n                        \"X\": 0.11311174929141998,\n                        \"Y\": 0.6532831788063049\n                    },\n                    {\n                        \"X\": 0.05876918509602547,\n                        \"Y\": 0.6532424092292786\n                    }\n                ]\n            },\n            \"Id\": \"a5659d71-a7d5-4ebd-9f00-b67a5b6e5e76\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98379516601562,\n            \"Text\": \"protect\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.058115631341934204,\n                    \"Height\": 0.013271491043269634,\n                    \"Left\": 0.11613887548446655,\n                    \"Top\": 0.6399168372154236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1161426231265068,\n                        \"Y\": 0.6399168372154236\n                    },\n                    {\n                        \"X\": 0.17425450682640076,\n                        \"Y\": 0.6399602890014648\n                    },\n                    {\n                        \"X\": 0.17425109446048737,\n                        \"Y\": 0.6531882882118225\n                    },\n                    {\n                        \"X\": 0.11613887548446655,\n                        \"Y\": 0.6531447172164917\n                    }\n                ]\n            },\n            \"Id\": \"19108659-f504-49f5-9224-bcb92b29b86b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95760345458984,\n            \"Text\": \"your\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03641044721007347,\n                    \"Height\": 0.011666905134916306,\n                    \"Left\": 0.1773669421672821,\n                    \"Top\": 0.6417126059532166\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17736992239952087,\n                        \"Y\": 0.6417126059532166\n                    },\n                    {\n                        \"X\": 0.21377737820148468,\n                        \"Y\": 0.6417398452758789\n                    },\n                    {\n                        \"X\": 0.21377459168434143,\n                        \"Y\": 0.653379499912262\n                    },\n                    {\n                        \"X\": 0.1773669421672821,\n                        \"Y\": 0.6533522009849548\n                    }\n                ]\n            },\n            \"Id\": \"23ce9b43-99af-4a88-bccb-8fd6629d54aa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90888977050781,\n            \"Text\": \"PIN\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027035292237997055,\n                    \"Height\": 0.011412900872528553,\n                    \"Left\": 0.21742737293243408,\n                    \"Top\": 0.6392229199409485\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21743008494377136,\n                        \"Y\": 0.6392229199409485\n                    },\n                    {\n                        \"X\": 0.24446266889572144,\n                        \"Y\": 0.6392431259155273\n                    },\n                    {\n                        \"X\": 0.2444600909948349,\n                        \"Y\": 0.650635838508606\n                    },\n                    {\n                        \"X\": 0.21742737293243408,\n                        \"Y\": 0.6506155729293823\n                    }\n                ]\n            },\n            \"Id\": \"2b1c00b0-a5ac-4d96-a95a-d04025542688\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.33457946777344,\n            \"Text\": \"code.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.041715774685144424,\n                    \"Height\": 0.012101821601390839,\n                    \"Left\": 0.24826213717460632,\n                    \"Top\": 0.6388752460479736\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2482648342847824,\n                        \"Y\": 0.6388752460479736\n                    },\n                    {\n                        \"X\": 0.28997790813446045,\n                        \"Y\": 0.6389064788818359\n                    },\n                    {\n                        \"X\": 0.28997543454170227,\n                        \"Y\": 0.6509770750999451\n                    },\n                    {\n                        \"X\": 0.24826213717460632,\n                        \"Y\": 0.650945782661438\n                    }\n                ]\n            },\n            \"Id\": \"b1940516-e978-4558-8886-6daa32298539\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95560455322266,\n            \"Text\": \"Worried\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06496252864599228,\n                    \"Height\": 0.012042563408613205,\n                    \"Left\": 0.29392480850219727,\n                    \"Top\": 0.6387990713119507\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29392725229263306,\n                        \"Y\": 0.6387990713119507\n                    },\n                    {\n                        \"X\": 0.35888731479644775,\n                        \"Y\": 0.6388476490974426\n                    },\n                    {\n                        \"X\": 0.3588852286338806,\n                        \"Y\": 0.6508415937423706\n                    },\n                    {\n                        \"X\": 0.29392480850219727,\n                        \"Y\": 0.6507928967475891\n                    }\n                ]\n            },\n            \"Id\": \"24a10a83-6d52-460a-95cb-1c0064e28827\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97554779052734,\n            \"Text\": \"about\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04574589431285858,\n                    \"Height\": 0.011670057661831379,\n                    \"Left\": 0.36290428042411804,\n                    \"Top\": 0.6389718055725098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.362906277179718,\n                        \"Y\": 0.6389718055725098\n                    },\n                    {\n                        \"X\": 0.40865015983581543,\n                        \"Y\": 0.6390060186386108\n                    },\n                    {\n                        \"X\": 0.40864837169647217,\n                        \"Y\": 0.6506418585777283\n                    },\n                    {\n                        \"X\": 0.36290428042411804,\n                        \"Y\": 0.6506075859069824\n                    }\n                ]\n            },\n            \"Id\": \"bfdd5c20-5ac6-485f-b3bf-ab7c6da2937c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87886047363281,\n            \"Text\": \"fraud?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05005735158920288,\n                    \"Height\": 0.012140902690589428,\n                    \"Left\": 0.41200560331344604,\n                    \"Top\": 0.638475239276886\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4120074212551117,\n                        \"Y\": 0.638475239276886\n                    },\n                    {\n                        \"X\": 0.4620629549026489,\n                        \"Y\": 0.6385126709938049\n                    },\n                    {\n                        \"X\": 0.46206140518188477,\n                        \"Y\": 0.6506161093711853\n                    },\n                    {\n                        \"X\": 0.41200560331344604,\n                        \"Y\": 0.6505786180496216\n                    }\n                ]\n            },\n            \"Id\": \"790c0667-e3b5-4434-86fc-c771ad7288ce\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91625213623047,\n            \"Text\": \"Get\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02727225422859192,\n                    \"Height\": 0.011633556336164474,\n                    \"Left\": 0.4655725359916687,\n                    \"Top\": 0.6390844583511353\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4655740261077881,\n                        \"Y\": 0.6390844583511353\n                    },\n                    {\n                        \"X\": 0.4928447902202606,\n                        \"Y\": 0.6391048431396484\n                    },\n                    {\n                        \"X\": 0.4928434491157532,\n                        \"Y\": 0.6507180333137512\n                    },\n                    {\n                        \"X\": 0.4655725359916687,\n                        \"Y\": 0.6506975889205933\n                    }\n                ]\n            },\n            \"Id\": \"1c5352f4-dbb7-4d1e-8353-8d44c4bdd6e0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93888854980469,\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014418419450521469,\n                    \"Height\": 0.01134638860821724,\n                    \"Left\": 0.49669313430786133,\n                    \"Top\": 0.6391549706459045\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.496694415807724,\n                        \"Y\": 0.6391549706459045\n                    },\n                    {\n                        \"X\": 0.5111115574836731,\n                        \"Y\": 0.6391657590866089\n                    },\n                    {\n                        \"X\": 0.5111103653907776,\n                        \"Y\": 0.6505013704299927\n                    },\n                    {\n                        \"X\": 0.49669313430786133,\n                        \"Y\": 0.6504905819892883\n                    }\n                ]\n            },\n            \"Id\": \"fb7618a5-4219-47ac-a50d-9015373270db\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98755645751953,\n            \"Text\": \"touch\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04588514566421509,\n                    \"Height\": 0.01153615489602089,\n                    \"Left\": 0.5149519443511963,\n                    \"Top\": 0.6390698552131653\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5149531960487366,\n                        \"Y\": 0.6390698552131653\n                    },\n                    {\n                        \"X\": 0.5608370900154114,\n                        \"Y\": 0.6391041874885559\n                    },\n                    {\n                        \"X\": 0.560836136341095,\n                        \"Y\": 0.6506060361862183\n                    },\n                    {\n                        \"X\": 0.5149519443511963,\n                        \"Y\": 0.6505716443061829\n                    }\n                ]\n            },\n            \"Id\": \"6c5fb26c-50cd-4b1e-89db-28a0ad8a218e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98526763916016,\n            \"Text\": \"with\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036346372216939926,\n                    \"Height\": 0.01192939467728138,\n                    \"Left\": 0.5646671056747437,\n                    \"Top\": 0.6387633681297302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5646680593490601,\n                        \"Y\": 0.6387633681297302\n                    },\n                    {\n                        \"X\": 0.6010134816169739,\n                        \"Y\": 0.6387905478477478\n                    },\n                    {\n                        \"X\": 0.601012647151947,\n                        \"Y\": 0.6506927609443665\n                    },\n                    {\n                        \"X\": 0.5646671056747437,\n                        \"Y\": 0.6506655216217041\n                    }\n                ]\n            },\n            \"Id\": \"ec9677b5-4707-49bc-b1a1-5e2b5fecf0d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.13203430175781,\n            \"Text\": \"us.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02169797569513321,\n                    \"Height\": 0.008882458321750164,\n                    \"Left\": 0.6044635772705078,\n                    \"Top\": 0.6418289542198181\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6044641733169556,\n                        \"Y\": 0.6418289542198181\n                    },\n                    {\n                        \"X\": 0.6261615753173828,\n                        \"Y\": 0.641845166683197\n                    },\n                    {\n                        \"X\": 0.6261610984802246,\n                        \"Y\": 0.6507114171981812\n                    },\n                    {\n                        \"X\": 0.6044635772705078,\n                        \"Y\": 0.6506951451301575\n                    }\n                ]\n            },\n            \"Id\": \"86c9d593-6a07-4662-bace-464e20f2766c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95099639892578,\n            \"Text\": \"This\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03491538017988205,\n                    \"Height\": 0.012514456175267696,\n                    \"Left\": 0.05860449746251106,\n                    \"Top\": 0.9052765369415283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05860835686326027,\n                        \"Y\": 0.9052765369415283\n                    },\n                    {\n                        \"X\": 0.09351987391710281,\n                        \"Y\": 0.905303955078125\n                    },\n                    {\n                        \"X\": 0.09351620823144913,\n                        \"Y\": 0.9177910089492798\n                    },\n                    {\n                        \"X\": 0.05860449746251106,\n                        \"Y\": 0.9177635312080383\n                    }\n                ]\n            },\n            \"Id\": \"e757a693-1386-4037-8aba-4078ec278756\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8283462524414,\n            \"Text\": \"document\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08433219790458679,\n                    \"Height\": 0.012632817029953003,\n                    \"Left\": 0.09870108217000961,\n                    \"Top\": 0.9053235650062561\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0987047404050827,\n                        \"Y\": 0.9053235650062561\n                    },\n                    {\n                        \"X\": 0.1830332726240158,\n                        \"Y\": 0.9053897261619568\n                    },\n                    {\n                        \"X\": 0.18303009867668152,\n                        \"Y\": 0.9179564118385315\n                    },\n                    {\n                        \"X\": 0.09870108217000961,\n                        \"Y\": 0.9178900718688965\n                    }\n                ]\n            },\n            \"Id\": \"8fee6c9f-225c-4a7f-bbdc-24d24316fc41\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97437286376953,\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013056222349405289,\n                    \"Height\": 0.012049354612827301,\n                    \"Left\": 0.18792687356472015,\n                    \"Top\": 0.9055874943733215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1879298985004425,\n                        \"Y\": 0.9055874943733215\n                    },\n                    {\n                        \"X\": 0.20098309218883514,\n                        \"Y\": 0.9055977463722229\n                    },\n                    {\n                        \"X\": 0.20098014175891876,\n                        \"Y\": 0.9176368713378906\n                    },\n                    {\n                        \"X\": 0.18792687356472015,\n                        \"Y\": 0.9176266193389893\n                    }\n                ]\n            },\n            \"Id\": \"7e419fec-14e5-483d-8abd-97e27bf867e6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.947509765625,\n            \"Text\": \"privileged\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08224073052406311,\n                    \"Height\": 0.015563856810331345,\n                    \"Left\": 0.20717404782772064,\n                    \"Top\": 0.9051427841186523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2071778029203415,\n                        \"Y\": 0.9051427841186523\n                    },\n                    {\n                        \"X\": 0.28941476345062256,\n                        \"Y\": 0.9052072763442993\n                    },\n                    {\n                        \"X\": 0.2894115746021271,\n                        \"Y\": 0.9207066297531128\n                    },\n                    {\n                        \"X\": 0.20717404782772064,\n                        \"Y\": 0.9206419587135315\n                    }\n                ]\n            },\n            \"Id\": \"e8eb76d8-edc5-4b08-bc6b-a0218cb682b8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95040130615234,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030757734552025795,\n                    \"Height\": 0.012489432469010353,\n                    \"Left\": 0.294291228055954,\n                    \"Top\": 0.9053207635879517\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2942937910556793,\n                        \"Y\": 0.9053207635879517\n                    },\n                    {\n                        \"X\": 0.3250489830970764,\n                        \"Y\": 0.9053449034690857\n                    },\n                    {\n                        \"X\": 0.3250465989112854,\n                        \"Y\": 0.9178102016448975\n                    },\n                    {\n                        \"X\": 0.294291228055954,\n                        \"Y\": 0.9177860021591187\n                    }\n                ]\n            },\n            \"Id\": \"de69aef7-7067-4755-9b52-43277e51e60a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85311889648438,\n            \"Text\": \"confidential\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09849392622709274,\n                    \"Height\": 0.01302889920771122,\n                    \"Left\": 0.33023130893707275,\n                    \"Top\": 0.904994547367096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33023372292518616,\n                        \"Y\": 0.904994547367096\n                    },\n                    {\n                        \"X\": 0.4287252128124237,\n                        \"Y\": 0.9050717949867249\n                    },\n                    {\n                        \"X\": 0.42872336506843567,\n                        \"Y\": 0.918023407459259\n                    },\n                    {\n                        \"X\": 0.33023130893707275,\n                        \"Y\": 0.9179459810256958\n                    }\n                ]\n            },\n            \"Id\": \"756a863e-f9cf-4304-ba1b-872e9f3c2cb0\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.8046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8376555442810059,\n                    \"Height\": 0.267607182264328,\n                    \"Left\": 0.054616253823041916,\n                    \"Top\": 0.13880564272403717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054699286818504333,\n                        \"Y\": 0.13880564272403717\n                    },\n                    {\n                        \"X\": 0.8922548890113831,\n                        \"Y\": 0.13937480747699738\n                    },\n                    {\n                        \"X\": 0.8922717571258545,\n                        \"Y\": 0.406412810087204\n                    },\n                    {\n                        \"X\": 0.054616253823041916,\n                        \"Y\": 0.40581294894218445\n                    }\n                ]\n            },\n            \"Id\": \"e2db986d-e2e2-43ce-89e2-41450b206540\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46ea5ec5-7146-4702-84d8-70cb96c8c5fa\",\n                        \"697d5a5f-fbef-49bd-a739-0a313b287cb8\",\n                        \"9835dd29-0bcb-4af6-afed-5f9c9f786507\",\n                        \"5a96da3b-3f46-42b1-80ce-1ffe1333a551\",\n                        \"02944712-2fa1-4259-ae43-567dca5dc7a0\",\n                        \"d6ef8d34-f6a5-49ea-85f0-e33355e95c68\",\n                        \"5be2eec8-18ca-4e8a-8693-b948f9973c2e\",\n                        \"f087dc70-c13f-4cb2-9a15-70243a5db513\",\n                        \"de6bd5d4-6cb0-471d-8d1a-13f4632cb9a0\",\n                        \"dc13f1e5-9020-4ec1-afbf-cb5f8acc65c6\",\n                        \"9499c89b-2b55-4973-bde1-bd2e06e7bd4f\",\n                        \"4b182372-feb6-44bf-ab7e-c926a2c588a5\",\n                        \"a1c0bb18-f49c-41b0-ad94-4844dce98223\",\n                        \"6eadf21a-87d7-4a05-a0b4-c06c4c46ae2a\",\n                        \"b2454c49-69dd-4923-8dcc-87f27270b525\",\n                        \"6e522be2-c3d1-4f7a-bd25-cca2772f508e\",\n                        \"e1deabb4-7dbd-4744-8461-a9c36400c144\",\n                        \"df77aa41-50de-461c-86b2-6243555d2585\",\n                        \"5f97d3cb-83fa-4c4b-8ea9-f584e4960b81\",\n                        \"590f1907-a679-4686-82c3-34b89f7b4a75\",\n                        \"8f0950df-018e-4b14-8f61-de43182b0aaa\",\n                        \"148ec70a-5c17-4afa-8e26-ee9c91508a30\",\n                        \"4bcd22f1-419e-4b90-8617-c70d51906174\",\n                        \"a210f657-9844-4754-b0ed-3c8c7ef7eeb5\",\n                        \"8789c1da-ae95-4162-bb75-669a525c2f42\",\n                        \"eb7c9d65-73f1-406c-ba9c-8bd65dc38beb\",\n                        \"072a0c01-e6e1-4fe7-977f-6ace165a59fc\",\n                        \"cb4f070e-ff61-46a8-8d97-89f6aaa5bd72\",\n                        \"316837ca-ed22-4561-8318-90c5ed5f93a8\",\n                        \"4e064b7a-43b7-491d-b41f-90dd93380c34\",\n                        \"0a114ec2-288b-4525-875d-529e22f1073c\",\n                        \"483a33b4-7008-4a05-82ea-0a01ab31b3bf\",\n                        \"9b148ac2-c298-4d2a-b1da-b6583bcceb7d\",\n                        \"0d90dbe6-eb28-489a-bdf7-5266142296b7\",\n                        \"72c24082-dc64-4748-b189-dc435eb09359\",\n                        \"def2bf9a-4193-4a50-b255-3c57892826ac\",\n                        \"5d3b9a44-5605-40ec-9d47-e45141697bf0\",\n                        \"6c57f7b0-2523-49cb-8c17-ee1732b05d6f\",\n                        \"d8dd2e6f-fb13-4f23-8cdb-e9b913a3c30c\",\n                        \"bcd9a076-79eb-41af-8f21-0df8ad934b73\",\n                        \"1a8e541b-2054-48d7-9135-bdfef6d2768b\",\n                        \"3680e025-5e04-43f1-86f2-065ed13d1a16\",\n                        \"78babed2-fcd8-4145-8a23-41a0423fd920\",\n                        \"0f6badb0-1ba0-4bd1-9529-a61dc4358207\",\n                        \"4015b08a-44ad-41c1-839c-814dbbeee28e\",\n                        \"be5798d5-c34e-4841-83c1-e08259c218cc\",\n                        \"6130cece-372e-4f52-aa65-2a369abd29e0\",\n                        \"88e42e8f-bb8b-49cd-a4f1-2ce539cf1146\",\n                        \"6698c156-73a6-4898-a819-cc28180e4f3c\",\n                        \"d1fdd55e-85d8-4bdd-a453-15877dd63d06\",\n                        \"e6d19293-1143-443d-bda0-486abb727636\",\n                        \"eb28a4f7-f69d-4383-ab09-ff2c5f653db8\",\n                        \"9a1fe022-3280-49da-8c6f-8f5e1ee347d7\",\n                        \"2674f72c-a8d4-4daf-82e7-ddbba46cd0fe\",\n                        \"ad6681de-affb-4b55-b199-48fc5fcd63f6\",\n                        \"3f1d0331-3d30-4d34-acfa-7d7f2d30b9af\",\n                        \"1a84fe38-af9b-420b-85e2-b5be7a613785\",\n                        \"2d24d7cb-41b1-4492-bd3d-e6adf0b089ba\",\n                        \"69795a4d-69cc-4786-aef2-35f924f52842\",\n                        \"c2664137-18b4-44e5-9e95-59ac9ba2ef68\",\n                        \"dbe56dbc-5524-49b5-b5e1-816bdd6b5715\",\n                        \"f7abe07a-a43b-4545-a3bf-c2bdd435a46a\",\n                        \"8ff120f9-8761-4d49-824a-1f16dc93a16c\",\n                        \"28c63a36-f987-47fd-970f-9304cecc8505\",\n                        \"fc35554e-33fd-481b-ad42-84015dba1d39\"\n                    ]\n                },\n                {\n                    \"Type\": \"MERGED_CELL\",\n                    \"Ids\": [\n                        \"16130e5d-0bd3-4d20-82b7-ac59d7593198\",\n                        \"a11cecd2-64e8-4abd-8a76-41a97606e4f5\",\n                        \"6c36e8cb-762c-493d-8914-78c09af238f1\",\n                        \"18c5dbb1-4414-4f73-9ef5-3f12f0779949\",\n                        \"0d9ffb09-cb95-4fb4-90c8-b1022d9058a7\",\n                        \"446709a3-e0ab-4c01-92e3-42aeb2a03ee6\",\n                        \"1bee0c4c-31b3-4f6d-ac9b-4b2809049859\",\n                        \"50452318-da98-4596-8ee5-798511d573b6\",\n                        \"95944f45-69b9-4524-92b5-d7720abd1e8c\"\n                    ]\n                },\n                {\n                    \"Type\": \"TABLE_TITLE\",\n                    \"Ids\": [\n                        \"1ba13673-3670-4398-abea-d18e2ab7b0ff\"\n                    ]\n                },\n                {\n                    \"Type\": \"TABLE_FOOTER\",\n                    \"Ids\": [\n                        \"c5cfab1f-5602-4ce5-b4e5-f651c4ac5421\",\n                        \"01b42556-1756-4421-bc68-faac38b6f896\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"STRUCTURED_TABLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 77.44140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11325143277645111,\n                    \"Height\": 0.020029932260513306,\n                    \"Left\": 0.05430373176932335,\n                    \"Top\": 0.13903413712978363\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054309941828250885,\n                        \"Y\": 0.13903413712978363\n                    },\n                    {\n                        \"X\": 0.16755516827106476,\n                        \"Y\": 0.13911110162734985\n                    },\n                    {\n                        \"X\": 0.1675499677658081,\n                        \"Y\": 0.15906408429145813\n                    },\n                    {\n                        \"X\": 0.05430373176932335,\n                        \"Y\": 0.15898680686950684\n                    }\n                ]\n            },\n            \"Id\": \"46ea5ec5-7146-4702-84d8-70cb96c8c5fa\",\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 77.44140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2616150975227356,\n                    \"Height\": 0.02013147622346878,\n                    \"Left\": 0.1675499677658081,\n                    \"Top\": 0.13911110162734985\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16755516827106476,\n                        \"Y\": 0.13911110162734985\n                    },\n                    {\n                        \"X\": 0.4291650652885437,\n                        \"Y\": 0.13928888738155365\n                    },\n                    {\n                        \"X\": 0.4291622042655945,\n                        \"Y\": 0.15924258530139923\n                    },\n                    {\n                        \"X\": 0.1675499677658081,\n                        \"Y\": 0.15906408429145813\n                    }\n                ]\n            },\n            \"Id\": \"697d5a5f-fbef-49bd-a739-0a313b287cb8\",\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 77.44140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1551656574010849,\n                    \"Height\": 0.020059561356902122,\n                    \"Left\": 0.4291622042655945,\n                    \"Top\": 0.13928888738155365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291650652885437,\n                        \"Y\": 0.13928888738155365\n                    },\n                    {\n                        \"X\": 0.5843278765678406,\n                        \"Y\": 0.13939432799816132\n                    },\n                    {\n                        \"X\": 0.5843263864517212,\n                        \"Y\": 0.15934844315052032\n                    },\n                    {\n                        \"X\": 0.4291622042655945,\n                        \"Y\": 0.15924258530139923\n                    }\n                ]\n            },\n            \"Id\": \"9835dd29-0bcb-4af6-afed-5f9c9f786507\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ebae23e3-1db7-405b-ae1c-ce4b383fdf42\",\n                        \"5bdedfdf-b612-4c64-bb9c-d9bc7acf91ef\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 77.44140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1755586564540863,\n                    \"Height\": 0.02007390186190605,\n                    \"Left\": 0.5843263864517212,\n                    \"Top\": 0.13939432799816132\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843278765678406,\n                        \"Y\": 0.13939432799816132\n                    },\n                    {\n                        \"X\": 0.7598849534988403,\n                        \"Y\": 0.13951364159584045\n                    },\n                    {\n                        \"X\": 0.7598850727081299,\n                        \"Y\": 0.15946823358535767\n                    },\n                    {\n                        \"X\": 0.5843263864517212,\n                        \"Y\": 0.15934844315052032\n                    }\n                ]\n            },\n            \"Id\": \"5a96da3b-3f46-42b1-80ce-1ffe1333a551\",\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 77.44140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13252414762973785,\n                    \"Height\": 0.020045019686222076,\n                    \"Left\": 0.7598849534988403,\n                    \"Top\": 0.13951364159584045\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598849534988403,\n                        \"Y\": 0.13951364159584045\n                    },\n                    {\n                        \"X\": 0.8924078345298767,\n                        \"Y\": 0.13960370421409607\n                    },\n                    {\n                        \"X\": 0.892409086227417,\n                        \"Y\": 0.15955865383148193\n                    },\n                    {\n                        \"X\": 0.7598850727081299,\n                        \"Y\": 0.15946823358535767\n                    }\n                ]\n            },\n            \"Id\": \"02944712-2fa1-4259-ae43-567dca5dc7a0\",\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.8359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1128634437918663,\n                    \"Height\": 0.02093731239438057,\n                    \"Left\": 0.0546865239739418,\n                    \"Top\": 0.15898707509040833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054693009704351425,\n                        \"Y\": 0.15898707509040833\n                    },\n                    {\n                        \"X\": 0.1675499677658081,\n                        \"Y\": 0.15906408429145813\n                    },\n                    {\n                        \"X\": 0.16754452884197235,\n                        \"Y\": 0.1799243837594986\n                    },\n                    {\n                        \"X\": 0.0546865239739418,\n                        \"Y\": 0.17984706163406372\n                    }\n                ]\n            },\n            \"Id\": \"d6ef8d34-f6a5-49ea-85f0-e33355e95c68\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"368788c4-608e-4d76-bbc3-fd080c5218ca\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.986328125,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2616176903247833,\n                    \"Height\": 0.021039558574557304,\n                    \"Left\": 0.16754452884197235,\n                    \"Top\": 0.15906408429145813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1675499677658081,\n                        \"Y\": 0.15906408429145813\n                    },\n                    {\n                        \"X\": 0.4291622042655945,\n                        \"Y\": 0.15924258530139923\n                    },\n                    {\n                        \"X\": 0.4291592240333557,\n                        \"Y\": 0.1801036298274994\n                    },\n                    {\n                        \"X\": 0.16754452884197235,\n                        \"Y\": 0.1799243837594986\n                    }\n                ]\n            },\n            \"Id\": \"5be2eec8-18ca-4e8a-8693-b948f9973c2e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"19cb1359-9086-440a-b423-f3e485528746\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.009765625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15516717731952667,\n                    \"Height\": 0.02096737176179886,\n                    \"Left\": 0.4291592240333557,\n                    \"Top\": 0.15924258530139923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291622042655945,\n                        \"Y\": 0.15924258530139923\n                    },\n                    {\n                        \"X\": 0.5843263864517212,\n                        \"Y\": 0.15934844315052032\n                    },\n                    {\n                        \"X\": 0.584324836730957,\n                        \"Y\": 0.1802099496126175\n                    },\n                    {\n                        \"X\": 0.4291592240333557,\n                        \"Y\": 0.1801036298274994\n                    }\n                ]\n            },\n            \"Id\": \"f087dc70-c13f-4cb2-9a15-70243a5db513\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"96757a30-6d21-42cb-a71f-7708127cceb2\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.0859375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17556029558181763,\n                    \"Height\": 0.020981790497899055,\n                    \"Left\": 0.584324836730957,\n                    \"Top\": 0.15934844315052032\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843263864517212,\n                        \"Y\": 0.15934844315052032\n                    },\n                    {\n                        \"X\": 0.7598850727081299,\n                        \"Y\": 0.15946823358535767\n                    },\n                    {\n                        \"X\": 0.7598851323127747,\n                        \"Y\": 0.18033024668693542\n                    },\n                    {\n                        \"X\": 0.584324836730957,\n                        \"Y\": 0.1802099496126175\n                    }\n                ]\n            },\n            \"Id\": \"de6bd5d4-6cb0-471d-8d1a-13f4632cb9a0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"799b7609-25a5-4f1c-97ac-31bea9ebf1a3\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.232421875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13237245380878448,\n                    \"Height\": 0.020952701568603516,\n                    \"Left\": 0.7598850727081299,\n                    \"Top\": 0.15946823358535767\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598850727081299,\n                        \"Y\": 0.15946823358535767\n                    },\n                    {\n                        \"X\": 0.8922562003135681,\n                        \"Y\": 0.15955854952335358\n                    },\n                    {\n                        \"X\": 0.8922575116157532,\n                        \"Y\": 0.18042093515396118\n                    },\n                    {\n                        \"X\": 0.7598851323127747,\n                        \"Y\": 0.18033024668693542\n                    }\n                ]\n            },\n            \"Id\": \"dc13f1e5-9020-4ec1-afbf-cb5f8acc65c6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7b4ba8d-4aa9-4974-bc04-98de87facf4b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.478515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11325377970933914,\n                    \"Height\": 0.020938290283083916,\n                    \"Left\": 0.05429074913263321,\n                    \"Top\": 0.17984679341316223\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05429724231362343,\n                        \"Y\": 0.17984679341316223\n                    },\n                    {\n                        \"X\": 0.16754452884197235,\n                        \"Y\": 0.1799243837594986\n                    },\n                    {\n                        \"X\": 0.1675390899181366,\n                        \"Y\": 0.2007850855588913\n                    },\n                    {\n                        \"X\": 0.05429074913263321,\n                        \"Y\": 0.20070716738700867\n                    }\n                ]\n            },\n            \"Id\": \"9499c89b-2b55-4973-bde1-bd2e06e7bd4f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c6964843-7356-466b-aa55-7453d331c803\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.478515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26162010431289673,\n                    \"Height\": 0.021040696650743484,\n                    \"Left\": 0.1675390899181366,\n                    \"Top\": 0.1799243837594986\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16754452884197235,\n                        \"Y\": 0.1799243837594986\n                    },\n                    {\n                        \"X\": 0.4291592240333557,\n                        \"Y\": 0.1801036298274994\n                    },\n                    {\n                        \"X\": 0.42915621399879456,\n                        \"Y\": 0.20096507668495178\n                    },\n                    {\n                        \"X\": 0.1675390899181366,\n                        \"Y\": 0.2007850855588913\n                    }\n                ]\n            },\n            \"Id\": \"4b182372-feb6-44bf-ab7e-c926a2c588a5\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.478515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15516862273216248,\n                    \"Height\": 0.020968206226825714,\n                    \"Left\": 0.42915621399879456,\n                    \"Top\": 0.1801036298274994\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291592240333557,\n                        \"Y\": 0.1801036298274994\n                    },\n                    {\n                        \"X\": 0.584324836730957,\n                        \"Y\": 0.1802099496126175\n                    },\n                    {\n                        \"X\": 0.5843232870101929,\n                        \"Y\": 0.2010718435049057\n                    },\n                    {\n                        \"X\": 0.42915621399879456,\n                        \"Y\": 0.20096507668495178\n                    }\n                ]\n            },\n            \"Id\": \"a1c0bb18-f49c-41b0-ad94-4844dce98223\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.478515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17556193470954895,\n                    \"Height\": 0.020982682704925537,\n                    \"Left\": 0.5843232870101929,\n                    \"Top\": 0.1802099496126175\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.584324836730957,\n                        \"Y\": 0.1802099496126175\n                    },\n                    {\n                        \"X\": 0.7598851323127747,\n                        \"Y\": 0.18033024668693542\n                    },\n                    {\n                        \"X\": 0.7598851919174194,\n                        \"Y\": 0.20119263231754303\n                    },\n                    {\n                        \"X\": 0.5843232870101929,\n                        \"Y\": 0.2010718435049057\n                    }\n                ]\n            },\n            \"Id\": \"6eadf21a-87d7-4a05-a0b4-c06c4c46ae2a\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.478515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13252662122249603,\n                    \"Height\": 0.020953575149178505,\n                    \"Left\": 0.7598851323127747,\n                    \"Top\": 0.18033024668693542\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598851323127747,\n                        \"Y\": 0.18033024668693542\n                    },\n                    {\n                        \"X\": 0.8924104571342468,\n                        \"Y\": 0.18042103946208954\n                    },\n                    {\n                        \"X\": 0.8924117684364319,\n                        \"Y\": 0.20128381252288818\n                    },\n                    {\n                        \"X\": 0.7598851919174194,\n                        \"Y\": 0.20119263231754303\n                    }\n                ]\n            },\n            \"Id\": \"b2454c49-69dd-4923-8dcc-87f27270b525\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.408203125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1132548376917839,\n                    \"Height\": 0.02093900367617607,\n                    \"Left\": 0.05428425967693329,\n                    \"Top\": 0.20070716738700867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05429074913263321,\n                        \"Y\": 0.20070716738700867\n                    },\n                    {\n                        \"X\": 0.1675390899181366,\n                        \"Y\": 0.2007850855588913\n                    },\n                    {\n                        \"X\": 0.16753366589546204,\n                        \"Y\": 0.22164615988731384\n                    },\n                    {\n                        \"X\": 0.05428425967693329,\n                        \"Y\": 0.22156792879104614\n                    }\n                ]\n            },\n            \"Id\": \"6e522be2-c3d1-4f7a-bd25-cca2772f508e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"26637d02-582c-436f-b9f1-94b00942dcd0\",\n                        \"ab52331a-4774-47ac-a823-d13d9ec0f7bd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.408203125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2616225481033325,\n                    \"Height\": 0.021041834726929665,\n                    \"Left\": 0.16753366589546204,\n                    \"Top\": 0.2007850855588913\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1675390899181366,\n                        \"Y\": 0.2007850855588913\n                    },\n                    {\n                        \"X\": 0.42915621399879456,\n                        \"Y\": 0.20096507668495178\n                    },\n                    {\n                        \"X\": 0.4291532039642334,\n                        \"Y\": 0.22182691097259521\n                    },\n                    {\n                        \"X\": 0.16753366589546204,\n                        \"Y\": 0.22164615988731384\n                    }\n                ]\n            },\n            \"Id\": \"e1deabb4-7dbd-4744-8461-a9c36400c144\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.408203125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517006814479828,\n                    \"Height\": 0.02096903882920742,\n                    \"Left\": 0.4291532039642334,\n                    \"Top\": 0.20096507668495178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42915621399879456,\n                        \"Y\": 0.20096507668495178\n                    },\n                    {\n                        \"X\": 0.5843232870101929,\n                        \"Y\": 0.2010718435049057\n                    },\n                    {\n                        \"X\": 0.5843217372894287,\n                        \"Y\": 0.22193412482738495\n                    },\n                    {\n                        \"X\": 0.4291532039642334,\n                        \"Y\": 0.22182691097259521\n                    }\n                ]\n            },\n            \"Id\": \"df77aa41-50de-461c-86b2-6243555d2585\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.408203125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17556357383728027,\n                    \"Height\": 0.02098357304930687,\n                    \"Left\": 0.5843217372894287,\n                    \"Top\": 0.2010718435049057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843232870101929,\n                        \"Y\": 0.2010718435049057\n                    },\n                    {\n                        \"X\": 0.7598851919174194,\n                        \"Y\": 0.20119263231754303\n                    },\n                    {\n                        \"X\": 0.759885311126709,\n                        \"Y\": 0.22205542027950287\n                    },\n                    {\n                        \"X\": 0.5843217372894287,\n                        \"Y\": 0.22193412482738495\n                    }\n                ]\n            },\n            \"Id\": \"5f97d3cb-83fa-4c4b-8ea9-f584e4960b81\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.2265625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13237492740154266,\n                    \"Height\": 0.02095423825085163,\n                    \"Left\": 0.7598851919174194,\n                    \"Top\": 0.20119263231754303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598851919174194,\n                        \"Y\": 0.20119263231754303\n                    },\n                    {\n                        \"X\": 0.8922588229179382,\n                        \"Y\": 0.20128370821475983\n                    },\n                    {\n                        \"X\": 0.8922601342201233,\n                        \"Y\": 0.2221468687057495\n                    },\n                    {\n                        \"X\": 0.759885311126709,\n                        \"Y\": 0.22205542027950287\n                    }\n                ]\n            },\n            \"Id\": \"590f1907-a679-4686-82c3-34b89f7b4a75\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"397e21a8-f7bb-4df5-ab9e-edcfd524f9e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 45.2392578125,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11325589567422867,\n                    \"Height\": 0.020939717069268227,\n                    \"Left\": 0.05427777022123337,\n                    \"Top\": 0.22156792879104614\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05428425967693329,\n                        \"Y\": 0.22156792879104614\n                    },\n                    {\n                        \"X\": 0.16753366589546204,\n                        \"Y\": 0.22164615988731384\n                    },\n                    {\n                        \"X\": 0.16752822697162628,\n                        \"Y\": 0.24250763654708862\n                    },\n                    {\n                        \"X\": 0.05427777022123337,\n                        \"Y\": 0.24242907762527466\n                    }\n                ]\n            },\n            \"Id\": \"8f0950df-018e-4b14-8f61-de43182b0aaa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"65fda16f-cb67-4eb8-9187-361f64afa997\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.912109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2616249918937683,\n                    \"Height\": 0.021042972803115845,\n                    \"Left\": 0.16752822697162628,\n                    \"Top\": 0.22164615988731384\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16753366589546204,\n                        \"Y\": 0.22164615988731384\n                    },\n                    {\n                        \"X\": 0.4291532039642334,\n                        \"Y\": 0.22182691097259521\n                    },\n                    {\n                        \"X\": 0.42915022373199463,\n                        \"Y\": 0.24268914759159088\n                    },\n                    {\n                        \"X\": 0.16752822697162628,\n                        \"Y\": 0.24250763654708862\n                    }\n                ]\n            },\n            \"Id\": \"148ec70a-5c17-4afa-8e26-ee9c91508a30\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5aa60d83-5887-4b3d-84aa-e8412864429e\",\n                        \"dbec763e-7988-4834-93ad-b6d723ea4a57\",\n                        \"82e9ccb8-2538-4312-81c6-c781a847daf2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.935546875,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517151355743408,\n                    \"Height\": 0.020969871431589127,\n                    \"Left\": 0.42915022373199463,\n                    \"Top\": 0.22182691097259521\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291532039642334,\n                        \"Y\": 0.22182691097259521\n                    },\n                    {\n                        \"X\": 0.5843217372894287,\n                        \"Y\": 0.22193412482738495\n                    },\n                    {\n                        \"X\": 0.5843201875686646,\n                        \"Y\": 0.24279679358005524\n                    },\n                    {\n                        \"X\": 0.42915022373199463,\n                        \"Y\": 0.24268914759159088\n                    }\n                ]\n            },\n            \"Id\": \"4bcd22f1-419e-4b90-8617-c70d51906174\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.962890625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1755651980638504,\n                    \"Height\": 0.02098446525633335,\n                    \"Left\": 0.5843201875686646,\n                    \"Top\": 0.22193412482738495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843217372894287,\n                        \"Y\": 0.22193412482738495\n                    },\n                    {\n                        \"X\": 0.759885311126709,\n                        \"Y\": 0.22205542027950287\n                    },\n                    {\n                        \"X\": 0.7598853707313538,\n                        \"Y\": 0.24291858077049255\n                    },\n                    {\n                        \"X\": 0.5843201875686646,\n                        \"Y\": 0.24279679358005524\n                    }\n                ]\n            },\n            \"Id\": \"a210f657-9844-4754-b0ed-3c8c7ef7eeb5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5f98df44-4bd4-4b70-b086-c7d9e830ef89\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.158203125,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13237616419792175,\n                    \"Height\": 0.020955005660653114,\n                    \"Left\": 0.759885311126709,\n                    \"Top\": 0.22205542027950287\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.759885311126709,\n                        \"Y\": 0.22205542027950287\n                    },\n                    {\n                        \"X\": 0.8922601342201233,\n                        \"Y\": 0.2221468687057495\n                    },\n                    {\n                        \"X\": 0.8922614455223083,\n                        \"Y\": 0.24301041662693024\n                    },\n                    {\n                        \"X\": 0.7598853707313538,\n                        \"Y\": 0.24291858077049255\n                    }\n                ]\n            },\n            \"Id\": \"8789c1da-ae95-4162-bb75-669a525c2f42\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7e14797c-9c45-4563-9a99-3d9a3c887a8a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 45.2392578125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11325666308403015,\n                    \"Height\": 0.02003338374197483,\n                    \"Left\": 0.05427156016230583,\n                    \"Top\": 0.24242907762527466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05427777022123337,\n                        \"Y\": 0.24242907762527466\n                    },\n                    {\n                        \"X\": 0.16752822697162628,\n                        \"Y\": 0.24250763654708862\n                    },\n                    {\n                        \"X\": 0.16752302646636963,\n                        \"Y\": 0.26246246695518494\n                    },\n                    {\n                        \"X\": 0.05427156016230583,\n                        \"Y\": 0.2623835802078247\n                    }\n                ]\n            },\n            \"Id\": \"eb7c9d65-73f1-406c-ba9c-8bd65dc38beb\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.30078125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.261627197265625,\n                    \"Height\": 0.020137032493948936,\n                    \"Left\": 0.16752302646636963,\n                    \"Top\": 0.24250763654708862\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16752822697162628,\n                        \"Y\": 0.24250763654708862\n                    },\n                    {\n                        \"X\": 0.42915022373199463,\n                        \"Y\": 0.24268914759159088\n                    },\n                    {\n                        \"X\": 0.4291473627090454,\n                        \"Y\": 0.2626446783542633\n                    },\n                    {\n                        \"X\": 0.16752302646636963,\n                        \"Y\": 0.26246246695518494\n                    }\n                ]\n            },\n            \"Id\": \"072a0c01-e6e1-4fe7-977f-6ace165a59fc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fdad3bad-491b-49b5-beb3-4e63d6e1cfe1\",\n                        \"4be75194-f027-4a1e-ae14-fee36cca0f3f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.32421875,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517282485961914,\n                    \"Height\": 0.020063607022166252,\n                    \"Left\": 0.4291473627090454,\n                    \"Top\": 0.24268914759159088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42915022373199463,\n                        \"Y\": 0.24268914759159088\n                    },\n                    {\n                        \"X\": 0.5843201875686646,\n                        \"Y\": 0.24279679358005524\n                    },\n                    {\n                        \"X\": 0.5843186974525452,\n                        \"Y\": 0.2627527415752411\n                    },\n                    {\n                        \"X\": 0.4291473627090454,\n                        \"Y\": 0.2626446783542633\n                    }\n                ]\n            },\n            \"Id\": \"cb4f070e-ff61-46a8-8d97-89f6aaa5bd72\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.302734375,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17556676268577576,\n                    \"Height\": 0.02007823809981346,\n                    \"Left\": 0.5843186974525452,\n                    \"Top\": 0.24279679358005524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843201875686646,\n                        \"Y\": 0.24279679358005524\n                    },\n                    {\n                        \"X\": 0.7598853707313538,\n                        \"Y\": 0.24291858077049255\n                    },\n                    {\n                        \"X\": 0.7598854303359985,\n                        \"Y\": 0.2628750205039978\n                    },\n                    {\n                        \"X\": 0.5843186974525452,\n                        \"Y\": 0.2627527415752411\n                    }\n                ]\n            },\n            \"Id\": \"316837ca-ed22-4561-8318-90c5ed5f93a8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cf8f4489-9bf1-4b02-b4ec-b416693e1175\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.44921875,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13237734138965607,\n                    \"Height\": 0.020048638805747032,\n                    \"Left\": 0.7598853707313538,\n                    \"Top\": 0.24291858077049255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598853707313538,\n                        \"Y\": 0.24291858077049255\n                    },\n                    {\n                        \"X\": 0.8922614455223083,\n                        \"Y\": 0.24301041662693024\n                    },\n                    {\n                        \"X\": 0.8922626972198486,\n                        \"Y\": 0.26296722888946533\n                    },\n                    {\n                        \"X\": 0.7598854303359985,\n                        \"Y\": 0.2628750205039978\n                    }\n                ]\n            },\n            \"Id\": \"4e064b7a-43b7-491d-b41f-90dd93380c34\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"09c7cad1-ba65-43fe-92ef-837a37fa0062\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.03125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11286865919828415,\n                    \"Height\": 0.020940840244293213,\n                    \"Left\": 0.05465436726808548,\n                    \"Top\": 0.2623838484287262\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0546608567237854,\n                        \"Y\": 0.2623838484287262\n                    },\n                    {\n                        \"X\": 0.16752302646636963,\n                        \"Y\": 0.26246246695518494\n                    },\n                    {\n                        \"X\": 0.16751758754253387,\n                        \"Y\": 0.2833246886730194\n                    },\n                    {\n                        \"X\": 0.05465436726808548,\n                        \"Y\": 0.2832457721233368\n                    }\n                ]\n            },\n            \"Id\": \"0a114ec2-288b-4525-875d-529e22f1073c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"110da060-c8e7-441f-8521-e75892275a7b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.181640625,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26162976026535034,\n                    \"Height\": 0.021045200526714325,\n                    \"Left\": 0.16751758754253387,\n                    \"Top\": 0.26246246695518494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16752302646636963,\n                        \"Y\": 0.26246246695518494\n                    },\n                    {\n                        \"X\": 0.4291473627090454,\n                        \"Y\": 0.2626446783542633\n                    },\n                    {\n                        \"X\": 0.42914435267448425,\n                        \"Y\": 0.28350764513015747\n                    },\n                    {\n                        \"X\": 0.16751758754253387,\n                        \"Y\": 0.2833246886730194\n                    }\n                ]\n            },\n            \"Id\": \"483a33b4-7008-4a05-82ea-0a01ab31b3bf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"afef6e54-0789-4a52-af9a-1314c13e78ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.15625,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517432987689972,\n                    \"Height\": 0.020971503108739853,\n                    \"Left\": 0.42914435267448425,\n                    \"Top\": 0.2626446783542633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291473627090454,\n                        \"Y\": 0.2626446783542633\n                    },\n                    {\n                        \"X\": 0.5843186974525452,\n                        \"Y\": 0.2627527415752411\n                    },\n                    {\n                        \"X\": 0.584317147731781,\n                        \"Y\": 0.28361618518829346\n                    },\n                    {\n                        \"X\": 0.42914435267448425,\n                        \"Y\": 0.28350764513015747\n                    }\n                ]\n            },\n            \"Id\": \"9b148ac2-c298-4d2a-b1da-b6583bcceb7d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0886f560-1798-491e-bb50-55d22ebb3372\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.232421875,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17556840181350708,\n                    \"Height\": 0.02098621055483818,\n                    \"Left\": 0.584317147731781,\n                    \"Top\": 0.2627527415752411\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843186974525452,\n                        \"Y\": 0.2627527415752411\n                    },\n                    {\n                        \"X\": 0.7598854303359985,\n                        \"Y\": 0.2628750205039978\n                    },\n                    {\n                        \"X\": 0.7598855495452881,\n                        \"Y\": 0.28373897075653076\n                    },\n                    {\n                        \"X\": 0.584317147731781,\n                        \"Y\": 0.28361618518829346\n                    }\n                ]\n            },\n            \"Id\": \"0d90dbe6-eb28-489a-bdf7-5266142296b7\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.427734375,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13237857818603516,\n                    \"Height\": 0.020956508815288544,\n                    \"Left\": 0.7598854303359985,\n                    \"Top\": 0.2628750205039978\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598854303359985,\n                        \"Y\": 0.2628750205039978\n                    },\n                    {\n                        \"X\": 0.8922626972198486,\n                        \"Y\": 0.26296722888946533\n                    },\n                    {\n                        \"X\": 0.8922640085220337,\n                        \"Y\": 0.28383153676986694\n                    },\n                    {\n                        \"X\": 0.7598855495452881,\n                        \"Y\": 0.28373897075653076\n                    }\n                ]\n            },\n            \"Id\": \"72c24082-dc64-4748-b189-dc435eb09359\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6910ecd2-baa5-4440-9560-eae4f52d07ab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.06640625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11325901001691818,\n                    \"Height\": 0.020941825583577156,\n                    \"Left\": 0.05425857752561569,\n                    \"Top\": 0.2832455039024353\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05426507070660591,\n                        \"Y\": 0.2832455039024353\n                    },\n                    {\n                        \"X\": 0.16751758754253387,\n                        \"Y\": 0.2833246886730194\n                    },\n                    {\n                        \"X\": 0.16751214861869812,\n                        \"Y\": 0.3041873276233673\n                    },\n                    {\n                        \"X\": 0.05425857752561569,\n                        \"Y\": 0.30410778522491455\n                    }\n                ]\n            },\n            \"Id\": \"def2bf9a-4193-4a50-b255-3c57892826ac\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a0fce67e-9265-46c8-a43e-31ef818720b8\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.06640625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26163220405578613,\n                    \"Height\": 0.021046338602900505,\n                    \"Left\": 0.16751214861869812,\n                    \"Top\": 0.2833246886730194\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16751758754253387,\n                        \"Y\": 0.2833246886730194\n                    },\n                    {\n                        \"X\": 0.42914435267448425,\n                        \"Y\": 0.28350764513015747\n                    },\n                    {\n                        \"X\": 0.4291413426399231,\n                        \"Y\": 0.30437102913856506\n                    },\n                    {\n                        \"X\": 0.16751214861869812,\n                        \"Y\": 0.3041873276233673\n                    }\n                ]\n            },\n            \"Id\": \"5d3b9a44-5605-40ec-9d47-e45141697bf0\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.06640625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517579019069672,\n                    \"Height\": 0.02097233571112156,\n                    \"Left\": 0.4291413426399231,\n                    \"Top\": 0.28350764513015747\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42914435267448425,\n                        \"Y\": 0.28350764513015747\n                    },\n                    {\n                        \"X\": 0.584317147731781,\n                        \"Y\": 0.28361618518829346\n                    },\n                    {\n                        \"X\": 0.5843155980110168,\n                        \"Y\": 0.3044799864292145\n                    },\n                    {\n                        \"X\": 0.4291413426399231,\n                        \"Y\": 0.30437102913856506\n                    }\n                ]\n            },\n            \"Id\": \"6c57f7b0-2523-49cb-8c17-ee1732b05d6f\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.06640625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1755700409412384,\n                    \"Height\": 0.020987102761864662,\n                    \"Left\": 0.5843155980110168,\n                    \"Top\": 0.28361618518829346\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.584317147731781,\n                        \"Y\": 0.28361618518829346\n                    },\n                    {\n                        \"X\": 0.7598855495452881,\n                        \"Y\": 0.28373897075653076\n                    },\n                    {\n                        \"X\": 0.7598856091499329,\n                        \"Y\": 0.3046032786369324\n                    },\n                    {\n                        \"X\": 0.5843155980110168,\n                        \"Y\": 0.3044799864292145\n                    }\n                ]\n            },\n            \"Id\": \"d8dd2e6f-fb13-4f23-8cdb-e9b913a3c30c\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 68.06640625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1325327455997467,\n                    \"Height\": 0.020957384258508682,\n                    \"Left\": 0.7598855495452881,\n                    \"Top\": 0.28373897075653076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598855495452881,\n                        \"Y\": 0.28373897075653076\n                    },\n                    {\n                        \"X\": 0.8924169540405273,\n                        \"Y\": 0.2838316559791565\n                    },\n                    {\n                        \"X\": 0.8924182653427124,\n                        \"Y\": 0.30469635128974915\n                    },\n                    {\n                        \"X\": 0.7598856091499329,\n                        \"Y\": 0.3046032786369324\n                    }\n                ]\n            },\n            \"Id\": \"bcd9a076-79eb-41af-8f21-0df8ad934b73\",\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.15234375,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1128704771399498,\n                    \"Height\": 0.020035170018672943,\n                    \"Left\": 0.05464167520403862,\n                    \"Top\": 0.30410805344581604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05464788153767586,\n                        \"Y\": 0.30410805344581604\n                    },\n                    {\n                        \"X\": 0.16751214861869812,\n                        \"Y\": 0.3041873276233673\n                    },\n                    {\n                        \"X\": 0.16750694811344147,\n                        \"Y\": 0.3241432309150696\n                    },\n                    {\n                        \"X\": 0.05464167520403862,\n                        \"Y\": 0.32406365871429443\n                    }\n                ]\n            },\n            \"Id\": \"1a8e541b-2054-48d7-9135-bdfef6d2768b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"75ece466-3513-40e6-a369-b411541f008d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.25390625,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2616344094276428,\n                    \"Height\": 0.020140349864959717,\n                    \"Left\": 0.16750694811344147,\n                    \"Top\": 0.3041873276233673\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16751214861869812,\n                        \"Y\": 0.3041873276233673\n                    },\n                    {\n                        \"X\": 0.4291413426399231,\n                        \"Y\": 0.30437102913856506\n                    },\n                    {\n                        \"X\": 0.4291384816169739,\n                        \"Y\": 0.324327677488327\n                    },\n                    {\n                        \"X\": 0.16750694811344147,\n                        \"Y\": 0.3241432309150696\n                    }\n                ]\n            },\n            \"Id\": \"3680e025-5e04-43f1-86f2-065ed13d1a16\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"71003e33-3f9b-478a-899b-ea3dd81fd71a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.228515625,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517710149288177,\n                    \"Height\": 0.020066022872924805,\n                    \"Left\": 0.4291384816169739,\n                    \"Top\": 0.30437102913856506\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291413426399231,\n                        \"Y\": 0.30437102913856506\n                    },\n                    {\n                        \"X\": 0.5843155980110168,\n                        \"Y\": 0.3044799864292145\n                    },\n                    {\n                        \"X\": 0.5843141078948975,\n                        \"Y\": 0.32443705201148987\n                    },\n                    {\n                        \"X\": 0.4291384816169739,\n                        \"Y\": 0.324327677488327\n                    }\n                ]\n            },\n            \"Id\": \"78babed2-fcd8-4145-8a23-41a0423fd920\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dfc6273-08e3-4d79-81d7-fd20f8715f35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.3046875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17557160556316376,\n                    \"Height\": 0.020080825313925743,\n                    \"Left\": 0.5843141078948975,\n                    \"Top\": 0.3044799864292145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843155980110168,\n                        \"Y\": 0.3044799864292145\n                    },\n                    {\n                        \"X\": 0.7598856091499329,\n                        \"Y\": 0.3046032786369324\n                    },\n                    {\n                        \"X\": 0.7598857283592224,\n                        \"Y\": 0.32456082105636597\n                    },\n                    {\n                        \"X\": 0.5843141078948975,\n                        \"Y\": 0.32443705201148987\n                    }\n                ]\n            },\n            \"Id\": \"0f6badb0-1ba0-4bd1-9529-a61dc4358207\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.5,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13238097727298737,\n                    \"Height\": 0.020050859078764915,\n                    \"Left\": 0.7598856091499329,\n                    \"Top\": 0.3046032786369324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598856091499329,\n                        \"Y\": 0.3046032786369324\n                    },\n                    {\n                        \"X\": 0.8922653198242188,\n                        \"Y\": 0.3046962320804596\n                    },\n                    {\n                        \"X\": 0.8922666311264038,\n                        \"Y\": 0.32465413212776184\n                    },\n                    {\n                        \"X\": 0.7598857283592224,\n                        \"Y\": 0.32456082105636597\n                    }\n                ]\n            },\n            \"Id\": \"4015b08a-44ad-41c1-839c-814dbbeee28e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8500ee88-9f85-4852-b880-17019ab91479\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.34765625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11326107382774353,\n                    \"Height\": 0.02094322070479393,\n                    \"Left\": 0.054245878010988235,\n                    \"Top\": 0.32406339049339294\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054252367466688156,\n                        \"Y\": 0.32406339049339294\n                    },\n                    {\n                        \"X\": 0.16750694811344147,\n                        \"Y\": 0.3241432309150696\n                    },\n                    {\n                        \"X\": 0.1675015240907669,\n                        \"Y\": 0.3450066149234772\n                    },\n                    {\n                        \"X\": 0.054245878010988235,\n                        \"Y\": 0.3449264466762543\n                    }\n                ]\n            },\n            \"Id\": \"be5798d5-c34e-4841-83c1-e08259c218cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"568235b1-0330-4abb-869e-90460aad0c66\",\n                        \"9ddd1870-1d74-4253-bd40-d635ef379c29\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.34765625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26163697242736816,\n                    \"Height\": 0.021048566326498985,\n                    \"Left\": 0.1675015240907669,\n                    \"Top\": 0.3241432309150696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16750694811344147,\n                        \"Y\": 0.3241432309150696\n                    },\n                    {\n                        \"X\": 0.4291384816169739,\n                        \"Y\": 0.324327677488327\n                    },\n                    {\n                        \"X\": 0.4291355013847351,\n                        \"Y\": 0.3451918065547943\n                    },\n                    {\n                        \"X\": 0.1675015240907669,\n                        \"Y\": 0.3450066149234772\n                    }\n                ]\n            },\n            \"Id\": \"6130cece-372e-4f52-aa65-2a369abd29e0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"868b28f3-7a33-419b-974c-ed2062597e30\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.34765625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15517860651016235,\n                    \"Height\": 0.020973967388272285,\n                    \"Left\": 0.4291355013847351,\n                    \"Top\": 0.324327677488327\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291384816169739,\n                        \"Y\": 0.324327677488327\n                    },\n                    {\n                        \"X\": 0.5843141078948975,\n                        \"Y\": 0.32443705201148987\n                    },\n                    {\n                        \"X\": 0.5843125581741333,\n                        \"Y\": 0.34530162811279297\n                    },\n                    {\n                        \"X\": 0.4291355013847351,\n                        \"Y\": 0.3451918065547943\n                    }\n                ]\n            },\n            \"Id\": \"88e42e8f-bb8b-49cd-a4f1-2ce539cf1146\",\n            \"EntityTypes\": [\n                \"TABLE_SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.34765625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17557324469089508,\n                    \"Height\": 0.02098884806036949,\n                    \"Left\": 0.5843125581741333,\n                    \"Top\": 0.32443705201148987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843141078948975,\n                        \"Y\": 0.32443705201148987\n                    },\n                    {\n                        \"X\": 0.7598857283592224,\n                        \"Y\": 0.32456082105636597\n                    },\n                    {\n                        \"X\": 0.7598857879638672,\n                        \"Y\": 0.34542590379714966\n                    },\n                    {\n                        \"X\": 0.5843125581741333,\n                        \"Y\": 0.34530162811279297\n                    }\n                ]\n            },\n            \"Id\": \"6698c156-73a6-4898-a819-cc28180e4f3c\",\n            \"EntityTypes\": [\n                \"TABLE_SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.427734375,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13238221406936646,\n                    \"Height\": 0.020958781242370605,\n                    \"Left\": 0.7598857283592224,\n                    \"Top\": 0.32456082105636597\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598857283592224,\n                        \"Y\": 0.32456082105636597\n                    },\n                    {\n                        \"X\": 0.8922666311264038,\n                        \"Y\": 0.32465413212776184\n                    },\n                    {\n                        \"X\": 0.8922679424285889,\n                        \"Y\": 0.3455196022987366\n                    },\n                    {\n                        \"X\": 0.7598857879638672,\n                        \"Y\": 0.34542590379714966\n                    }\n                ]\n            },\n            \"Id\": \"d1fdd55e-85d8-4bdd-a453-15877dd63d06\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3190fa49-2d71-4f0c-9965-d67ae7925770\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.27734375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1132621318101883,\n                    \"Height\": 0.020943934097886086,\n                    \"Left\": 0.054239384829998016,\n                    \"Top\": 0.3449264466762543\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054245878010988235,\n                        \"Y\": 0.3449264466762543\n                    },\n                    {\n                        \"X\": 0.1675015240907669,\n                        \"Y\": 0.3450066149234772\n                    },\n                    {\n                        \"X\": 0.16749608516693115,\n                        \"Y\": 0.3658703863620758\n                    },\n                    {\n                        \"X\": 0.054239384829998016,\n                        \"Y\": 0.36578989028930664\n                    }\n                ]\n            },\n            \"Id\": \"e6d19293-1143-443d-bda0-486abb727636\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"64315dc1-4c15-4bf3-864e-0561cea96d3b\",\n                        \"fc32aadf-2c8e-400c-b459-c36b7d4aa138\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.27734375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26163941621780396,\n                    \"Height\": 0.021049704402685165,\n                    \"Left\": 0.16749608516693115,\n                    \"Top\": 0.3450066149234772\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1675015240907669,\n                        \"Y\": 0.3450066149234772\n                    },\n                    {\n                        \"X\": 0.4291355013847351,\n                        \"Y\": 0.3451918065547943\n                    },\n                    {\n                        \"X\": 0.42913249135017395,\n                        \"Y\": 0.36605632305145264\n                    },\n                    {\n                        \"X\": 0.16749608516693115,\n                        \"Y\": 0.3658703863620758\n                    }\n                ]\n            },\n            \"Id\": \"eb28a4f7-f69d-4383-ab09-ff2c5f653db8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fbe6b0f6-688a-4cef-baa5-80da8b51eb02\",\n                        \"e68924ef-2110-4159-98dd-a96ea7a2381e\",\n                        \"b0d4bb89-dfb9-4422-bc4d-9f669febbbde\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.27734375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15518005192279816,\n                    \"Height\": 0.02097479999065399,\n                    \"Left\": 0.42913249135017395,\n                    \"Top\": 0.3451918065547943\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291355013847351,\n                        \"Y\": 0.3451918065547943\n                    },\n                    {\n                        \"X\": 0.5843125581741333,\n                        \"Y\": 0.34530162811279297\n                    },\n                    {\n                        \"X\": 0.5843110084533691,\n                        \"Y\": 0.3661665916442871\n                    },\n                    {\n                        \"X\": 0.42913249135017395,\n                        \"Y\": 0.36605632305145264\n                    }\n                ]\n            },\n            \"Id\": \"9a1fe022-3280-49da-8c6f-8f5e1ee347d7\",\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.27734375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1755748838186264,\n                    \"Height\": 0.020989740267395973,\n                    \"Left\": 0.5843110084533691,\n                    \"Top\": 0.34530162811279297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843125581741333,\n                        \"Y\": 0.34530162811279297\n                    },\n                    {\n                        \"X\": 0.7598857879638672,\n                        \"Y\": 0.34542590379714966\n                    },\n                    {\n                        \"X\": 0.759885847568512,\n                        \"Y\": 0.3662913739681244\n                    },\n                    {\n                        \"X\": 0.5843110084533691,\n                        \"Y\": 0.3661665916442871\n                    }\n                ]\n            },\n            \"Id\": \"2674f72c-a8d4-4daf-82e7-ddbba46cd0fe\",\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.27734375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1325363963842392,\n                    \"Height\": 0.020959656685590744,\n                    \"Left\": 0.7598857879638672,\n                    \"Top\": 0.34542590379714966\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598857879638672,\n                        \"Y\": 0.34542590379714966\n                    },\n                    {\n                        \"X\": 0.8924208879470825,\n                        \"Y\": 0.3455197215080261\n                    },\n                    {\n                        \"X\": 0.8924221992492676,\n                        \"Y\": 0.3663855493068695\n                    },\n                    {\n                        \"X\": 0.759885847568512,\n                        \"Y\": 0.3662913739681244\n                    }\n                ]\n            },\n            \"Id\": \"ad6681de-affb-4b55-b199-48fc5fcd63f6\",\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.546875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11326318979263306,\n                    \"Height\": 0.02094464749097824,\n                    \"Left\": 0.054232895374298096,\n                    \"Top\": 0.36578989028930664\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054239384829998016,\n                        \"Y\": 0.36578989028930664\n                    },\n                    {\n                        \"X\": 0.16749608516693115,\n                        \"Y\": 0.3658703863620758\n                    },\n                    {\n                        \"X\": 0.1674906462430954,\n                        \"Y\": 0.3867345452308655\n                    },\n                    {\n                        \"X\": 0.054232895374298096,\n                        \"Y\": 0.38665375113487244\n                    }\n                ]\n            },\n            \"Id\": \"3f1d0331-3d30-4d34-acfa-7d7f2d30b9af\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"948a8c7a-d3f0-4e53-bdc0-5f8d7c3a8a6c\",\n                        \"b745be53-c39c-4297-93d7-992c1e6e3d0a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.546875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26164183020591736,\n                    \"Height\": 0.021050842478871346,\n                    \"Left\": 0.1674906462430954,\n                    \"Top\": 0.3658703863620758\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16749608516693115,\n                        \"Y\": 0.3658703863620758\n                    },\n                    {\n                        \"X\": 0.42913249135017395,\n                        \"Y\": 0.36605632305145264\n                    },\n                    {\n                        \"X\": 0.4291294813156128,\n                        \"Y\": 0.386921226978302\n                    },\n                    {\n                        \"X\": 0.1674906462430954,\n                        \"Y\": 0.3867345452308655\n                    }\n                ]\n            },\n            \"Id\": \"1a84fe38-af9b-420b-85e2-b5be7a613785\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5b2b7a4f-56b2-4093-a95c-3aa740b6d720\",\n                        \"88445626-7941-4f8f-913a-f577a5561e09\",\n                        \"634aee0c-9e1d-4cac-b969-9f4069b62233\",\n                        \"543bcaed-c6d8-4adf-937f-5d1112997c2a\",\n                        \"5408cb30-f511-447b-9d29-f39492c5f86f\",\n                        \"3f51bd28-33e2-4755-bfaa-d2f247441f57\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.546875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15518149733543396,\n                    \"Height\": 0.020975634455680847,\n                    \"Left\": 0.4291294813156128,\n                    \"Top\": 0.36605632305145264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42913249135017395,\n                        \"Y\": 0.36605632305145264\n                    },\n                    {\n                        \"X\": 0.5843110084533691,\n                        \"Y\": 0.3661665916442871\n                    },\n                    {\n                        \"X\": 0.584309458732605,\n                        \"Y\": 0.3870319426059723\n                    },\n                    {\n                        \"X\": 0.4291294813156128,\n                        \"Y\": 0.386921226978302\n                    }\n                ]\n            },\n            \"Id\": \"2d24d7cb-41b1-4492-bd3d-e6adf0b089ba\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5a38acfe-2362-4565-bbb1-093ce888710c\",\n                        \"67a858e5-8efa-4bac-b9d6-917a8000433b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.546875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17557652294635773,\n                    \"Height\": 0.020990630611777306,\n                    \"Left\": 0.584309458732605,\n                    \"Top\": 0.3661665916442871\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5843110084533691,\n                        \"Y\": 0.3661665916442871\n                    },\n                    {\n                        \"X\": 0.759885847568512,\n                        \"Y\": 0.3662913739681244\n                    },\n                    {\n                        \"X\": 0.7598859667778015,\n                        \"Y\": 0.38715723156929016\n                    },\n                    {\n                        \"X\": 0.584309458732605,\n                        \"Y\": 0.3870319426059723\n                    }\n                ]\n            },\n            \"Id\": \"69795a4d-69cc-4786-aef2-35f924f52842\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ae753d1-869f-424f-9395-027e3c048101\",\n                        \"69caa358-ba12-4ae2-94f5-a3301bd1756a\",\n                        \"8fed288e-9e03-4759-8026-82d9ff170395\",\n                        \"56cab4e1-01a7-43fb-98a9-99b2afe13f64\",\n                        \"3b8d3aea-b4b1-4553-8616-f13367180b62\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.546875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1325376331806183,\n                    \"Height\": 0.020960425958037376,\n                    \"Left\": 0.759885847568512,\n                    \"Top\": 0.3662913739681244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.759885847568512,\n                        \"Y\": 0.3662913739681244\n                    },\n                    {\n                        \"X\": 0.8924221992492676,\n                        \"Y\": 0.3663855493068695\n                    },\n                    {\n                        \"X\": 0.8924235105514526,\n                        \"Y\": 0.3872517943382263\n                    },\n                    {\n                        \"X\": 0.7598859667778015,\n                        \"Y\": 0.38715723156929016\n                    }\n                ]\n            },\n            \"Id\": \"c2664137-18b4-44e5-9e95-59ac9ba2ef68\",\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.359375,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11326368153095245,\n                    \"Height\": 0.01913103647530079,\n                    \"Left\": 0.054226964712142944,\n                    \"Top\": 0.38665375113487244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054232895374298096,\n                        \"Y\": 0.38665375113487244\n                    },\n                    {\n                        \"X\": 0.1674906462430954,\n                        \"Y\": 0.3867345452308655\n                    },\n                    {\n                        \"X\": 0.16748568415641785,\n                        \"Y\": 0.4057847857475281\n                    },\n                    {\n                        \"X\": 0.054226964712142944,\n                        \"Y\": 0.40570366382598877\n                    }\n                ]\n            },\n            \"Id\": \"dbe56dbc-5524-49b5-b5e1-816bdd6b5715\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a488eb79-d287-4e6c-a1e3-7e12a6a34780\",\n                        \"b08aced8-5825-4cfb-bbad-c00b310646cc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.359375,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.26164379715919495,\n                    \"Height\": 0.019237592816352844,\n                    \"Left\": 0.16748568415641785,\n                    \"Top\": 0.3867345452308655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1674906462430954,\n                        \"Y\": 0.3867345452308655\n                    },\n                    {\n                        \"X\": 0.4291294813156128,\n                        \"Y\": 0.386921226978302\n                    },\n                    {\n                        \"X\": 0.4291267395019531,\n                        \"Y\": 0.4059721529483795\n                    },\n                    {\n                        \"X\": 0.16748568415641785,\n                        \"Y\": 0.4057847857475281\n                    }\n                ]\n            },\n            \"Id\": \"f7abe07a-a43b-4545-a3bf-c2bdd435a46a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7a70959d-6a10-4e79-bbdc-36d9c8621ece\",\n                        \"f6c7b127-ceb3-49bf-9d1b-587ea984d3f4\",\n                        \"5c3b9794-ce76-41f9-9315-c657ea259385\",\n                        \"c1716c45-e684-4922-94c2-5a38bca7b841\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.359375,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15518268942832947,\n                    \"Height\": 0.01916203834116459,\n                    \"Left\": 0.4291267395019531,\n                    \"Top\": 0.386921226978302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4291294813156128,\n                        \"Y\": 0.386921226978302\n                    },\n                    {\n                        \"X\": 0.584309458732605,\n                        \"Y\": 0.3870319426059723\n                    },\n                    {\n                        \"X\": 0.5843080282211304,\n                        \"Y\": 0.40608328580856323\n                    },\n                    {\n                        \"X\": 0.4291267395019531,\n                        \"Y\": 0.4059721529483795\n                    }\n                ]\n            },\n            \"Id\": \"8ff120f9-8761-4d49-824a-1f16dc93a16c\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.359375,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1755780130624771,\n                    \"Height\": 0.01917705126106739,\n                    \"Left\": 0.5843080282211304,\n                    \"Top\": 0.3870319426059723\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.584309458732605,\n                        \"Y\": 0.3870319426059723\n                    },\n                    {\n                        \"X\": 0.7598859667778015,\n                        \"Y\": 0.38715723156929016\n                    },\n                    {\n                        \"X\": 0.7598860263824463,\n                        \"Y\": 0.4062090218067169\n                    },\n                    {\n                        \"X\": 0.5843080282211304,\n                        \"Y\": 0.40608328580856323\n                    }\n                ]\n            },\n            \"Id\": \"28c63a36-f987-47fd-970f-9304cecc8505\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.576171875,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13238582015037537,\n                    \"Height\": 0.019255584105849266,\n                    \"Left\": 0.7598859667778015,\n                    \"Top\": 0.38715723156929016\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7598859667778015,\n                        \"Y\": 0.38715723156929016\n                    },\n                    {\n                        \"X\": 0.892270565032959,\n                        \"Y\": 0.38725167512893677\n                    },\n                    {\n                        \"X\": 0.8922717571258545,\n                        \"Y\": 0.406412810087204\n                    },\n                    {\n                        \"X\": 0.7598860263824463,\n                        \"Y\": 0.4063180088996887\n                    }\n                ]\n            },\n            \"Id\": \"fc35554e-33fd-481b-ad42-84015dba1d39\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bdcde108-8826-43dd-8846-7640e5c86592\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 77.44140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.837563157081604,\n                    \"Height\": 0.020752912387251854,\n                    \"Left\": 0.054693009704351425,\n                    \"Top\": 0.13880564272403717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054699286818504333,\n                        \"Y\": 0.13880564272403717\n                    },\n                    {\n                        \"X\": 0.8922548890113831,\n                        \"Y\": 0.13937480747699738\n                    },\n                    {\n                        \"X\": 0.8922562003135681,\n                        \"Y\": 0.15955854952335358\n                    },\n                    {\n                        \"X\": 0.054693009704351425,\n                        \"Y\": 0.15898707509040833\n                    }\n                ]\n            },\n            \"Id\": \"16130e5d-0bd3-4d20-82b7-ac59d7593198\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46ea5ec5-7146-4702-84d8-70cb96c8c5fa\",\n                        \"697d5a5f-fbef-49bd-a739-0a313b287cb8\",\n                        \"9835dd29-0bcb-4af6-afed-5f9c9f786507\",\n                        \"5a96da3b-3f46-42b1-80ce-1ffe1333a551\",\n                        \"02944712-2fa1-4259-ae43-567dca5dc7a0\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 65.478515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8375787734985352,\n                    \"Height\": 0.021436652168631554,\n                    \"Left\": 0.05468003451824188,\n                    \"Top\": 0.17984706163406372\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0546865239739418,\n                        \"Y\": 0.17984706163406372\n                    },\n                    {\n                        \"X\": 0.8922575116157532,\n                        \"Y\": 0.18042093515396118\n                    },\n                    {\n                        \"X\": 0.8922588229179382,\n                        \"Y\": 0.20128370821475983\n                    },\n                    {\n                        \"X\": 0.05468003451824188,\n                        \"Y\": 0.20070743560791016\n                    }\n                ]\n            },\n            \"Id\": \"a11cecd2-64e8-4abd-8a76-41a97606e4f5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9499c89b-2b55-4973-bde1-bd2e06e7bd4f\",\n                        \"4b182372-feb6-44bf-ab7e-c926a2c588a5\",\n                        \"a1c0bb18-f49c-41b0-ad94-4844dce98223\",\n                        \"6eadf21a-87d7-4a05-a0b4-c06c4c46ae2a\",\n                        \"b2454c49-69dd-4923-8dcc-87f27270b525\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 68.408203125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 4,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.7052117586135864,\n                    \"Height\": 0.021347984671592712,\n                    \"Left\": 0.05467354878783226,\n                    \"Top\": 0.20070743560791016\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05468003451824188,\n                        \"Y\": 0.20070743560791016\n                    },\n                    {\n                        \"X\": 0.7598851919174194,\n                        \"Y\": 0.20119263231754303\n                    },\n                    {\n                        \"X\": 0.759885311126709,\n                        \"Y\": 0.22205542027950287\n                    },\n                    {\n                        \"X\": 0.05467354878783226,\n                        \"Y\": 0.22156819701194763\n                    }\n                ]\n            },\n            \"Id\": \"6c36e8cb-762c-493d-8914-78c09af238f1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6e522be2-c3d1-4f7a-bd25-cca2772f508e\",\n                        \"e1deabb4-7dbd-4744-8461-a9c36400c144\",\n                        \"df77aa41-50de-461c-86b2-6243555d2585\",\n                        \"5f97d3cb-83fa-4c4b-8ea9-f584e4960b81\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 45.2392578125,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11287280172109604,\n                    \"Height\": 0.040894266217947006,\n                    \"Left\": 0.0546608567237854,\n                    \"Top\": 0.22156819701194763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05467354878783226,\n                        \"Y\": 0.22156819701194763\n                    },\n                    {\n                        \"X\": 0.16753366589546204,\n                        \"Y\": 0.22164615988731384\n                    },\n                    {\n                        \"X\": 0.16752302646636963,\n                        \"Y\": 0.26246246695518494\n                    },\n                    {\n                        \"X\": 0.0546608567237854,\n                        \"Y\": 0.2623838484287262\n                    }\n                ]\n            },\n            \"Id\": \"18c5dbb1-4414-4f73-9ef5-3f12f0779949\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8f0950df-018e-4b14-8f61-de43182b0aaa\",\n                        \"eb7c9d65-73f1-406c-ba9c-8bd65dc38beb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 68.06640625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8376174569129944,\n                    \"Height\": 0.021450472995638847,\n                    \"Left\": 0.05464788153767586,\n                    \"Top\": 0.2832457721233368\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05465436726808548,\n                        \"Y\": 0.2832457721233368\n                    },\n                    {\n                        \"X\": 0.8922640085220337,\n                        \"Y\": 0.28383153676986694\n                    },\n                    {\n                        \"X\": 0.8922653198242188,\n                        \"Y\": 0.3046962320804596\n                    },\n                    {\n                        \"X\": 0.05464788153767586,\n                        \"Y\": 0.30410805344581604\n                    }\n                ]\n            },\n            \"Id\": \"0d9ffb09-cb95-4fb4-90c8-b1022d9058a7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"def2bf9a-4193-4a50-b255-3c57892826ac\",\n                        \"5d3b9a44-5605-40ec-9d47-e45141697bf0\",\n                        \"6c57f7b0-2523-49cb-8c17-ee1732b05d6f\",\n                        \"d8dd2e6f-fb13-4f23-8cdb-e9b913a3c30c\",\n                        \"bcd9a076-79eb-41af-8f21-0df8ad934b73\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 81.34765625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 4,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.70525062084198,\n                    \"Height\": 0.02136223018169403,\n                    \"Left\": 0.0546351857483387,\n                    \"Top\": 0.32406365871429443\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05464167520403862,\n                        \"Y\": 0.32406365871429443\n                    },\n                    {\n                        \"X\": 0.7598857283592224,\n                        \"Y\": 0.32456082105636597\n                    },\n                    {\n                        \"X\": 0.7598857879638672,\n                        \"Y\": 0.34542590379714966\n                    },\n                    {\n                        \"X\": 0.0546351857483387,\n                        \"Y\": 0.34492674469947815\n                    }\n                ]\n            },\n            \"Id\": \"446709a3-e0ab-4c01-92e3-42aeb2a03ee6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"be5798d5-c34e-4841-83c1-e08259c218cc\",\n                        \"6130cece-372e-4f52-aa65-2a369abd29e0\",\n                        \"88e42e8f-bb8b-49cd-a4f1-2ce539cf1146\",\n                        \"6698c156-73a6-4898-a819-cc28180e4f3c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 84.27734375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8376405239105225,\n                    \"Height\": 0.021458718925714493,\n                    \"Left\": 0.05462870001792908,\n                    \"Top\": 0.34492674469947815\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0546351857483387,\n                        \"Y\": 0.34492674469947815\n                    },\n                    {\n                        \"X\": 0.8922679424285889,\n                        \"Y\": 0.3455196022987366\n                    },\n                    {\n                        \"X\": 0.8922692537307739,\n                        \"Y\": 0.36638545989990234\n                    },\n                    {\n                        \"X\": 0.05462870001792908,\n                        \"Y\": 0.3657901883125305\n                    }\n                ]\n            },\n            \"Id\": \"1bee0c4c-31b3-4f6d-ac9b-4b2809049859\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e6d19293-1143-443d-bda0-486abb727636\",\n                        \"eb28a4f7-f69d-4383-ab09-ff2c5f653db8\",\n                        \"9a1fe022-3280-49da-8c6f-8f5e1ee347d7\",\n                        \"2674f72c-a8d4-4daf-82e7-ddbba46cd0fe\",\n                        \"ad6681de-affb-4b55-b199-48fc5fcd63f6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 85.546875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.837648332118988,\n                    \"Height\": 0.02146150730550289,\n                    \"Left\": 0.054622210562229156,\n                    \"Top\": 0.3657901883125305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05462870001792908,\n                        \"Y\": 0.3657901883125305\n                    },\n                    {\n                        \"X\": 0.8922692537307739,\n                        \"Y\": 0.36638545989990234\n                    },\n                    {\n                        \"X\": 0.892270565032959,\n                        \"Y\": 0.38725167512893677\n                    },\n                    {\n                        \"X\": 0.054622210562229156,\n                        \"Y\": 0.3866540193557739\n                    }\n                ]\n            },\n            \"Id\": \"50452318-da98-4596-8ee5-798511d573b6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3f1d0331-3d30-4d34-acfa-7d7f2d30b9af\",\n                        \"1a84fe38-af9b-420b-85e2-b5be7a613785\",\n                        \"2d24d7cb-41b1-4492-bd3d-e6adf0b089ba\",\n                        \"69795a4d-69cc-4786-aef2-35f924f52842\",\n                        \"c2664137-18b4-44e5-9e95-59ac9ba2ef68\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TABLE_FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 93.359375,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 4,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.7052697539329529,\n                    \"Height\": 0.019663989543914795,\n                    \"Left\": 0.054616253823041916,\n                    \"Top\": 0.3866540193557739\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.054622210562229156,\n                        \"Y\": 0.3866540193557739\n                    },\n                    {\n                        \"X\": 0.7598859667778015,\n                        \"Y\": 0.38715723156929016\n                    },\n                    {\n                        \"X\": 0.7598860263824463,\n                        \"Y\": 0.4063180088996887\n                    },\n                    {\n                        \"X\": 0.054616253823041916,\n                        \"Y\": 0.40581294894218445\n                    }\n                ]\n            },\n            \"Id\": \"95944f45-69b9-4524-92b5-d7720abd1e8c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dbe56dbc-5524-49b5-b5e1-816bdd6b5715\",\n                        \"f7abe07a-a43b-4545-a3bf-c2bdd435a46a\",\n                        \"8ff120f9-8761-4d49-824a-1f16dc93a16c\",\n                        \"28c63a36-f987-47fd-970f-9304cecc8505\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE_TITLE\",\n            \"Confidence\": 97.802734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8378764986991882,\n                    \"Height\": 0.021368693560361862,\n                    \"Left\": 0.05563141033053398,\n                    \"Top\": 0.13855572044849396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.055637869983911514,\n                        \"Y\": 0.13855572044849396\n                    },\n                    {\n                        \"X\": 0.8935065865516663,\n                        \"Y\": 0.1391250640153885\n                    },\n                    {\n                        \"X\": 0.8935078978538513,\n                        \"Y\": 0.15992440283298492\n                    },\n                    {\n                        \"X\": 0.05563141033053398,\n                        \"Y\": 0.15935267508029938\n                    }\n                ]\n            },\n            \"Id\": \"1ba13673-3670-4398-abea-d18e2ab7b0ff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ebae23e3-1db7-405b-ae1c-ce4b383fdf42\",\n                        \"5bdedfdf-b612-4c64-bb9c-d9bc7acf91ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE_FOOTER\",\n            \"Confidence\": 88.0859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8392052054405212,\n                    \"Height\": 0.021647755056619644,\n                    \"Left\": 0.05431585758924484,\n                    \"Top\": 0.34466230869293213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05432240664958954,\n                        \"Y\": 0.34466230869293213\n                    },\n                    {\n                        \"X\": 0.8935196995735168,\n                        \"Y\": 0.3452562689781189\n                    },\n                    {\n                        \"X\": 0.8935210704803467,\n                        \"Y\": 0.3663100600242615\n                    },\n                    {\n                        \"X\": 0.05431585758924484,\n                        \"Y\": 0.3657136857509613\n                    }\n                ]\n            },\n            \"Id\": \"c5cfab1f-5602-4ce5-b4e5-f651c4ac5421\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"64315dc1-4c15-4bf3-864e-0561cea96d3b\",\n                        \"fc32aadf-2c8e-400c-b459-c36b7d4aa138\",\n                        \"fbe6b0f6-688a-4cef-baa5-80da8b51eb02\",\n                        \"e68924ef-2110-4159-98dd-a96ea7a2381e\",\n                        \"b0d4bb89-dfb9-4422-bc4d-9f669febbbde\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE_FOOTER\",\n            \"Confidence\": 86.376953125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8389000296592712,\n                    \"Height\": 0.021650316193699837,\n                    \"Left\": 0.054622333496809006,\n                    \"Top\": 0.36521267890930176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0546288788318634,\n                        \"Y\": 0.36521267890930176\n                    },\n                    {\n                        \"X\": 0.8935210108757019,\n                        \"Y\": 0.36580878496170044\n                    },\n                    {\n                        \"X\": 0.893522322177887,\n                        \"Y\": 0.38686299324035645\n                    },\n                    {\n                        \"X\": 0.054622333496809006,\n                        \"Y\": 0.38626447319984436\n                    }\n                ]\n            },\n            \"Id\": \"01b42556-1756-4421-bc68-faac38b6f896\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"948a8c7a-d3f0-4e53-bdc0-5f8d7c3a8a6c\",\n                        \"b745be53-c39c-4297-93d7-992c1e6e3d0a\",\n                        \"5b2b7a4f-56b2-4093-a95c-3aa740b6d720\",\n                        \"88445626-7941-4f8f-913a-f577a5561e09\",\n                        \"634aee0c-9e1d-4cac-b969-9f4069b62233\",\n                        \"543bcaed-c6d8-4adf-937f-5d1112997c2a\",\n                        \"5408cb30-f511-447b-9d29-f39492c5f86f\",\n                        \"3f51bd28-33e2-4755-bfaa-d2f247441f57\",\n                        \"5a38acfe-2362-4565-bbb1-093ce888710c\",\n                        \"67a858e5-8efa-4bac-b9d6-917a8000433b\",\n                        \"4ae753d1-869f-424f-9395-027e3c048101\",\n                        \"69caa358-ba12-4ae2-94f5-a3301bd1756a\",\n                        \"8fed288e-9e03-4759-8026-82d9ff170395\",\n                        \"56cab4e1-01a7-43fb-98a9-99b2afe13f64\",\n                        \"3b8d3aea-b4b1-4553-8616-f13367180b62\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/all_features_with_floating_title_header.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1.0,\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 3.4813095339814026e-07\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 5.822402613375743e-07,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"60d2f48c-cde0-4f26-81d8-5450e7132dc4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"488787a7-55da-4b04-9bb3-bf3099178d7f\",\n                        \"6f3ec5cf-366f-4972-afb2-8415a60d7a1d\",\n                        \"ca2043bc-4326-4a7d-971e-abae1032966b\",\n                        \"273c00c0-966e-439f-bc0b-e62ae18a0856\",\n                        \"d6852920-1395-45ba-a060-571941c3e5fe\",\n                        \"a2042eac-2767-404f-8ab3-0602bc1bcab0\",\n                        \"717bbb70-9b90-470e-a5d0-8511220e1bea\",\n                        \"a22b3620-fd9b-4958-ba5e-3413bbb6a506\",\n                        \"0687100c-0b5d-4c60-b914-c955e8ad9f1a\",\n                        \"6d2f968a-2037-4769-94d2-a47b5ae54c04\",\n                        \"959f5f0d-0d49-4392-812e-6a4ba378cc4b\",\n                        \"de21a6f0-047c-4fbf-bf88-d9f172f6ae2c\",\n                        \"50574951-fc57-49f3-84dd-4fda0f907d43\",\n                        \"51507f63-8730-48ba-8f30-988bc57f5721\",\n                        \"19766a02-53ed-4294-be2f-f06f69f6c95c\",\n                        \"b007b9bf-4792-47b6-93ed-29a01e2cf6ea\",\n                        \"981a43e1-b2ab-4d07-9175-54bf47ccee9d\",\n                        \"0a5450cb-2c37-46ad-9f29-af6d478f10dd\",\n                        \"dfe92b65-e4b2-4cd2-9699-4ea71623b88d\",\n                        \"0bd758f7-976d-450c-b58a-9b2167738425\",\n                        \"a3da9f16-2f87-4b45-98c4-dd4593c6eb81\",\n                        \"bf895c30-ec0d-422d-829e-de2b0c98a961\",\n                        \"785b1746-b089-43aa-a210-e46763f7e656\",\n                        \"f8b524ad-0db2-49ca-8f72-cecbca240f73\",\n                        \"5e673018-d48c-491e-b31a-248f012c2dd8\",\n                        \"7cdbe573-15dc-4d86-bb4f-8fdea51c8325\",\n                        \"1f597ba0-a200-4444-92e5-f1af0b571cf2\",\n                        \"fb1a785a-b98f-4617-942d-5dfc08232b88\",\n                        \"01a79580-5346-4212-bbd1-3e9430a786e4\",\n                        \"aa220ab8-3674-491c-bcf6-5b2a71af0ef6\",\n                        \"763fc9db-f6d6-4ef1-acdd-834b52335b70\",\n                        \"194efae8-114d-4b3a-9b1e-e2717e2518e2\",\n                        \"1921199a-f640-4536-a2d8-d04afa4cd316\",\n                        \"1545c073-700c-4c2e-9e53-135c62012123\",\n                        \"21d755ed-6ce7-43db-8daf-3c164b9f55c1\",\n                        \"6e3db233-652f-4401-8ec1-f926425af6ed\",\n                        \"540f4d7c-9519-4a1e-8733-44c669825d38\",\n                        \"1519fa09-8b13-45da-8774-29e91ef288d5\",\n                        \"5e7c5bb8-5002-405c-a457-f9c02db6b7ad\",\n                        \"b4a2d39c-a034-4e7c-b3a5-90c20332bc8a\",\n                        \"7335dbf8-3920-4a17-8f84-030c7d4ec789\",\n                        \"62874fe3-3f55-42ec-9dee-a73c8e593f11\",\n                        \"4b39909e-e304-4755-a594-671f2ba1700a\",\n                        \"7e19c8b6-e6e9-41af-a8f9-f858b2d416c9\",\n                        \"f22df3c0-5d0f-486f-acdd-2f095def56da\",\n                        \"502aa5e2-4124-42b7-b965-ef27e66c7855\",\n                        \"21bb8ffc-f41f-4744-8f42-e715d9691672\",\n                        \"af47eae7-1262-4f25-966c-1239bbf612a4\",\n                        \"281dde45-5474-4305-81ff-d2bc4550099e\",\n                        \"da83c228-2875-4fdf-8dfc-68f6ba7443a0\",\n                        \"0eaf7b87-7e2f-45f2-a104-4d32c24b0e32\",\n                        \"61fa07e2-6cdd-4bda-b104-015144545bf4\",\n                        \"379f15b5-41b7-4a32-826b-4d1b1b513639\",\n                        \"2f6d2877-cdbd-4c18-a6ac-c0d076e7c39f\",\n                        \"a5fc4bd5-e7a9-40b0-89df-ea3cec5e43ea\",\n                        \"be12cc89-3c15-4e89-9764-abb3993be2ce\",\n                        \"c69148d6-a8ee-45e1-a146-355bda3fdb03\",\n                        \"8fd12ed5-adc2-4fe7-bc9c-60e97e881e23\",\n                        \"10c163f4-9796-4340-a733-7b9c7c95b87f\",\n                        \"0f58192a-919e-409c-b68d-d63b4c2aeeb4\",\n                        \"e75ea2c5-87b9-4f41-96c7-d88d0a77f4ab\",\n                        \"1cb6dcb3-b9fb-49c0-969f-65bab100529f\",\n                        \"5311cbd2-1b62-4abc-8f6f-7c1ce6e887b7\",\n                        \"4417b7f6-47cc-4457-ac36-51290b1b2b65\",\n                        \"78bb1229-ddd7-4329-a01b-144a6cfb9dad\",\n                        \"d3d0605f-eb3e-46f4-8dbf-871389a9b2ec\",\n                        \"467717ff-3e8d-4a86-ad62-7daa4da5ef15\",\n                        \"a1a2d19f-d661-46da-96c8-adda2848ec12\",\n                        \"94ff1474-2836-4da4-b537-f78c9bce66c3\",\n                        \"75bfdb0c-f4b2-496e-b1c7-db3fec4749f2\",\n                        \"edfed950-10bd-4439-9fb6-52c8fd2d15bc\",\n                        \"49f68d33-cf7c-425c-affd-4bc3762980a7\",\n                        \"fe1a01af-1cfc-4026-a39c-2b4d983c8a97\",\n                        \"26ee2f5e-1ece-4fd5-a4fc-78479f4e957a\",\n                        \"9fdad767-7ed8-4726-a97f-1c9244eab04a\",\n                        \"194f5211-08d8-42fa-a6ba-5c36f1f7e13e\",\n                        \"f6e7cfa0-e3c4-40dc-ba16-f4ea39eb8893\",\n                        \"6f696479-b179-4acf-a927-71fa75754cc5\",\n                        \"75e2dd1a-afaf-480b-b976-0665feee7f7c\",\n                        \"798c0de2-5d32-469f-8f06-2a643b0c87dd\",\n                        \"8b78a6b5-78ae-4379-be9d-4b6cddeeaafa\",\n                        \"bdd3f21a-3f62-4e3a-aad6-17016465b941\",\n                        \"4c43c831-9831-4fb0-a41f-2033882423be\",\n                        \"42053ad5-6246-4cd1-8a7c-4dc919fee605\",\n                        \"21bdab40-3c16-4482-910c-0b392f496fc2\",\n                        \"fe75f29a-a3ce-44fc-ac54-d99f059e3d11\",\n                        \"5f798aa7-2f45-490a-b397-27a3fff41515\",\n                        \"6ab606a9-4994-4623-bad4-f91cf068b345\",\n                        \"c610b091-a385-4408-a567-39e9f8381346\",\n                        \"af40127b-7083-487c-a6c7-a9fd5afb782a\",\n                        \"c73891a5-ead5-4d65-91af-fd56b85f96b3\",\n                        \"3914394c-07ee-4539-b06e-d7dcd8356dd3\",\n                        \"5aa1ac9d-5e97-43ec-9c28-8298c45921b8\",\n                        \"ffa4879d-9585-4605-bcad-0e78935b58bd\",\n                        \"33f636e1-6415-4db3-b5b6-0738cb236ee8\",\n                        \"e06becf1-6e7a-49f2-908e-3e3b1a829d76\",\n                        \"f0d6ac5a-799e-48df-90ce-61383f21e022\",\n                        \"19fc9e6e-4e92-4065-9722-0ccdb7551a6a\",\n                        \"77aceb8a-9c7a-4b08-8e18-f4079fa51c43\",\n                        \"c6a9fc1a-8e56-480c-a871-2afda07d26bc\",\n                        \"640001ad-d006-427a-a935-9a01eb37d439\",\n                        \"b13efedd-3047-491f-b4d1-6c475efea733\",\n                        \"57d2a48f-aa70-4224-be0d-df2b674ea644\",\n                        \"5a18a7f6-8d2a-4fdd-8c05-a344752ea680\",\n                        \"ad0e2fb9-1217-44fa-9b55-f877fda61c9e\",\n                        \"1a01097b-0f3a-45bc-aa21-116fb40e0066\",\n                        \"0ae94502-9b18-4a9b-a5e2-0d78358d7cce\",\n                        \"06174a78-61ed-4b1e-b6b2-054bc40b58ed\",\n                        \"56199cb8-50c1-412d-9b87-9a03c9bdef72\",\n                        \"9256f6ea-3989-423c-8511-8b278f2f8938\",\n                        \"dbaa9112-f40e-429e-9253-f1bde96d5055\",\n                        \"4eb6e7cd-1b43-4e64-8dcd-9d7c822509f0\",\n                        \"18d50407-7011-4aec-95ce-99156dda3360\",\n                        \"d560d004-a207-4fb5-9291-19366c150532\",\n                        \"a3453f97-3218-4cd5-9a98-c40534ec0296\",\n                        \"e688be64-d452-4ea6-ae50-8fb68820f9cc\",\n                        \"39427cf6-1047-466b-ad5c-31ddca786497\",\n                        \"b2ceb605-0128-411d-86a6-e2319cd70243\",\n                        \"3ec74d7e-c067-4bef-b51d-5f88d921a369\",\n                        \"81041b46-31bf-41c5-b866-8ad29159ac05\",\n                        \"7e5614f6-316a-49c9-95e6-9ba2c3091891\",\n                        \"49958196-9292-4f4d-bed9-ddb0b09aeb9c\",\n                        \"3a24c252-acee-4459-81f7-3008c78fa57a\",\n                        \"c3b9c495-b465-4f14-9721-818c668da28c\",\n                        \"4d4717bf-e3b9-45b9-a1f2-414669dfe285\",\n                        \"061971c7-16ec-4d0b-8ee6-41696a4113b4\",\n                        \"74cd209d-1199-4b5b-9642-0eb74d2b19e1\",\n                        \"7b1ca766-7fdf-4c3f-85e4-1dd21ce466ed\",\n                        \"901c33ab-4589-467b-a92a-4f3c58d97d8c\",\n                        \"f47b5624-32f7-442f-9c57-e3793ad89266\",\n                        \"6b0642b2-ebd4-4104-ade9-d5f15daf0ec6\",\n                        \"36cddcaa-72d8-4f85-ab3c-3f15384eda75\",\n                        \"e8bceaf2-9d06-414b-b711-0fd49fff19e6\",\n                        \"e2a7ca83-5fd8-45d9-8f2d-e591de0f96c6\",\n                        \"87347277-d439-43d9-9dd3-cedc8732118f\",\n                        \"e8b04eaa-eafe-4caf-ae28-3342b5fef9f5\",\n                        \"332cae12-0fd9-4acc-967f-f903f82dd02c\",\n                        \"1a11a955-d7a6-438d-9c1a-a35311987062\",\n                        \"12d494c0-d9f8-444f-9cc4-1f4e846f65e0\",\n                        \"97f482ca-dcde-4767-a862-b15b9878f97d\",\n                        \"f641f639-b94d-47e2-9b1a-f9fa65886d33\",\n                        \"6fc695be-690f-4d47-bcc8-a8e3bd214065\",\n                        \"05e30e81-74a2-4575-bcee-241871748045\",\n                        \"ef27d9e3-7746-4f5f-8ae6-9b09f714b52a\",\n                        \"5dcf8af9-0926-4cae-b105-7573a0048ddb\",\n                        \"ca187859-193d-44eb-b0a9-e388a7be0a3f\",\n                        \"250216e8-060c-4485-b830-8a2f696795ae\",\n                        \"b5d131ad-afdb-41c4-8f0b-0cc79780ec0e\",\n                        \"458f1ce6-93dc-4c0a-9045-1a0e378fdd64\",\n                        \"e1312c01-a100-49c0-9f5e-ffdee9850881\",\n                        \"b8af9ae0-a9c6-4b83-861d-4a40ae3c6182\",\n                        \"2d93c95c-4a54-41d7-b6c7-3638d42385a7\",\n                        \"a1c10e87-cda0-4815-aee9-a5e72245c431\",\n                        \"73f4b45e-264b-484e-b837-f546c0e7843b\",\n                        \"cd12c146-dfb1-41a0-802f-5f73102f4ecb\",\n                        \"bc579191-321f-4903-bc2e-160399e34f48\",\n                        \"10bd2949-9370-4b50-a088-622e4564d0d3\",\n                        \"2bea11b3-441d-410c-a811-308e2eccae1e\",\n                        \"9ac4e53c-bea9-4a20-b421-e7e2a66437ec\",\n                        \"214ebedb-e874-4f21-bb22-51e6b5f70e47\",\n                        \"9d95c6d7-00fa-48d3-bae1-6e252044761f\",\n                        \"a6403439-e8ab-44a0-bb28-8d8f4ddabf92\",\n                        \"83e47992-58f5-4d9a-82f3-4d812f5ffedb\",\n                        \"cf73c4df-48be-4d8a-ab1d-c3ec605df028\",\n                        \"cde43821-110e-4202-b751-20fb95e11277\",\n                        \"deea185e-1cd4-49f3-b6a4-d289cd14c181\",\n                        \"bc56b7ac-eadc-401f-aebf-bffe03f2eee9\",\n                        \"ce757ca6-0c17-4a1a-a7df-0d3519172aa1\",\n                        \"b590d7a3-332b-4862-a291-b4c5b058d033\",\n                        \"7d4911bd-81c6-466b-b102-3c24641f0dee\",\n                        \"0705b1f9-0164-44b3-a348-1d4c38369448\",\n                        \"ee521c3a-4a3d-4c5b-a771-7c717f324692\",\n                        \"0f4a7771-437c-4d3e-9472-336899d5908b\",\n                        \"a78d626d-855b-4789-8964-bfcfafe49d94\",\n                        \"394c1c86-8301-4c4c-9062-9457230ae968\",\n                        \"17171d80-02ef-4696-8eb1-d5f19610069c\",\n                        \"29052ec0-5841-4801-8a29-ce17c00930cb\",\n                        \"8f73434a-eb8f-46f5-a2d3-0aa4871de34c\",\n                        \"f51efa3d-0585-4f8f-8064-3c76a7143022\",\n                        \"02b15ca4-da2f-45e4-8879-50b623a91bf0\",\n                        \"e403cbd1-0c1c-4724-a255-c00d14c8eb20\",\n                        \"7b8f046b-1c90-404d-8f92-5b957b69b343\",\n                        \"436bf053-54de-401e-9603-efcd8d50e075\",\n                        \"12029377-0c33-4d39-9fd4-ffd62be9478e\",\n                        \"3ebef668-a872-4176-96fd-edfdce0f6afa\",\n                        \"cb4dab21-ca3c-4327-9ec3-203b6add4de2\",\n                        \"d7e7d63c-b7b0-4241-bbe1-78e19f7a51f5\",\n                        \"0fb4ee9f-68a9-48e9-905f-85f1bfab3714\",\n                        \"7be966b1-3fc6-4942-a1b3-8a22de715961\",\n                        \"c6b5c2c0-1a73-433a-a149-d19ef4bf8d5e\",\n                        \"012cf6fb-8bd4-4739-a599-d9a6e363d7c3\",\n                        \"3f944b26-7c3c-459d-9bfc-02ba4bb7bdde\",\n                        \"db80d8a0-c923-44c7-8f87-5d11084562ff\",\n                        \"d468a6b5-fbb0-4469-8007-25d9e486e14c\",\n                        \"a79276ca-1404-44ac-83e0-0250e536bc15\",\n                        \"3c3ccd6d-694e-4aa7-805d-b1f878e25cf6\",\n                        \"e60b9eb6-9deb-4bb3-8a63-0d28462eee9d\",\n                        \"4b0b7d57-9cec-4445-9bf7-7f5e9a29d0b8\",\n                        \"da609255-6fc5-4abf-af21-54835d25451d\",\n                        \"77a917ab-cbf2-44c0-a50a-6e2949cd4077\",\n                        \"61ae77d0-1a8f-4c42-9751-503062059e7d\",\n                        \"bdb1da12-0e34-4e0c-ad4d-15196e8a9a9a\",\n                        \"5c6f64fa-7073-430d-a354-7060d840a414\",\n                        \"6153e0fe-cb82-494e-95ed-3c4b75063159\",\n                        \"a4824c74-8bc9-4a6d-88b5-91ce18e0da7b\",\n                        \"ac6cc1c2-fae8-44cc-83cb-1e7e301ca80e\",\n                        \"60d02e36-8a96-43fb-8e3b-d4ac549c9ed7\",\n                        \"65540e5a-1b1c-43fe-b195-edfc9f04bbd1\",\n                        \"58916e6f-b20e-46c3-a4bc-b68cf934cae9\",\n                        \"2df931ad-85a4-4e30-a0f9-bb09e87026c4\",\n                        \"39b3b0f4-b1af-4e44-968a-171e169e87fe\",\n                        \"c36064a4-6086-4674-9ac9-ecd71d4587c0\",\n                        \"6e75818f-fb50-49e2-a392-4932958801c6\",\n                        \"5a6f2731-9bd9-4c24-904e-6cf5f63410eb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94066619873047,\n            \"Text\": \"A-4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019717397168278694,\n                    \"Height\": 0.007507956586778164,\n                    \"Left\": 0.4986926317214966,\n                    \"Top\": 0.07198607921600342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4986926317214966,\n                        \"Y\": 0.07200095057487488\n                    },\n                    {\n                        \"X\": 0.5184053182601929,\n                        \"Y\": 0.07198607921600342\n                    },\n                    {\n                        \"X\": 0.5184100270271301,\n                        \"Y\": 0.0794791579246521\n                    },\n                    {\n                        \"X\": 0.49869728088378906,\n                        \"Y\": 0.07949403673410416\n                    }\n                ]\n            },\n            \"Id\": \"488787a7-55da-4b04-9bb3-bf3099178d7f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"da3604c9-bc79-42cb-8cbe-f34c0c338307\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.58265686035156,\n            \"Text\": \"MECKLENBURG COUNTY, NORTH CAROLINA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.24221636354923248,\n                    \"Height\": 0.009377846494317055,\n                    \"Left\": 0.3878786861896515,\n                    \"Top\": 0.08539575338363647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3878786861896515,\n                        \"Y\": 0.08557865768671036\n                    },\n                    {\n                        \"X\": 0.6300889849662781,\n                        \"Y\": 0.08539575338363647\n                    },\n                    {\n                        \"X\": 0.6300950646400452,\n                        \"Y\": 0.09459055215120316\n                    },\n                    {\n                        \"X\": 0.3878840506076813,\n                        \"Y\": 0.09477360546588898\n                    }\n                ]\n            },\n            \"Id\": \"6f3ec5cf-366f-4972-afb2-8415a60d7a1d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"915b4836-19a6-43f4-aeef-3deb57c355dd\",\n                        \"0694177d-575b-4927-ae3a-d11e55e4b11e\",\n                        \"b4dbf69b-5fe9-4b2a-b4e5-d9959fbafbe0\",\n                        \"ccf304fd-5bb0-4b60-a36b-e7b203705eac\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86835479736328,\n            \"Text\": \"STATEMENT OF REVENUES, EXPENDITURES AND CHANGES IN FUND BALANCE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.42761874198913574,\n                    \"Height\": 0.009265140630304813,\n                    \"Left\": 0.2947384715080261,\n                    \"Top\": 0.09915254265069962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2947384715080261,\n                        \"Y\": 0.09947583824396133\n                    },\n                    {\n                        \"X\": 0.72235107421875,\n                        \"Y\": 0.09915254265069962\n                    },\n                    {\n                        \"X\": 0.7223572134971619,\n                        \"Y\": 0.10809413343667984\n                    },\n                    {\n                        \"X\": 0.29474344849586487,\n                        \"Y\": 0.10841768234968185\n                    }\n                ]\n            },\n            \"Id\": \"ca2043bc-4326-4a7d-971e-abae1032966b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"871fb159-93d2-45e7-b1cb-f1844a08994c\",\n                        \"e556bf5b-aac1-4c34-ba89-b38b76482a11\",\n                        \"bae5c944-54be-4586-9c39-5d631ba0711a\",\n                        \"55fad0dc-4f08-4e5d-9de5-4380cbe0f76e\",\n                        \"21058087-0d70-4b44-b081-9654d04c1286\",\n                        \"dfd2cbe4-c97d-4aa3-8b0c-0040b10efee0\",\n                        \"a2daedf1-3810-4f1a-b175-0c1d87ec51e4\",\n                        \"185a53fe-5639-4e8d-9369-8300b1a864db\",\n                        \"4ecb0aba-efa4-4246-b797-a7ccd7f03852\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86477661132812,\n            \"Text\": \"GOVERNMENTAL FUNDS\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13627323508262634,\n                    \"Height\": 0.007944716140627861,\n                    \"Left\": 0.44064098596572876,\n                    \"Top\": 0.11311168223619461\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44064098596572876,\n                        \"Y\": 0.11321482807397842\n                    },\n                    {\n                        \"X\": 0.5769091844558716,\n                        \"Y\": 0.11311168223619461\n                    },\n                    {\n                        \"X\": 0.5769142508506775,\n                        \"Y\": 0.12095317244529724\n                    },\n                    {\n                        \"X\": 0.4406457245349884,\n                        \"Y\": 0.12105639278888702\n                    }\n                ]\n            },\n            \"Id\": \"273c00c0-966e-439f-bc0b-e62ae18a0856\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"de9ccc0f-29f9-4247-af1b-68e6f6e67f07\",\n                        \"78947068-9338-4552-80ac-fd412f11a0e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86912536621094,\n            \"Text\": \"FOR THE YEAR ENDED JUNE 30, 2018\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20245100557804108,\n                    \"Height\": 0.009206121787428856,\n                    \"Left\": 0.40770772099494934,\n                    \"Top\": 0.126765176653862\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40770772099494934,\n                        \"Y\": 0.12691859900951385\n                    },\n                    {\n                        \"X\": 0.6101527810096741,\n                        \"Y\": 0.126765176653862\n                    },\n                    {\n                        \"X\": 0.6101587414741516,\n                        \"Y\": 0.1358177363872528\n                    },\n                    {\n                        \"X\": 0.40771305561065674,\n                        \"Y\": 0.1359712928533554\n                    }\n                ]\n            },\n            \"Id\": \"d6852920-1395-45ba-a060-571941c3e5fe\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a21d1062-6b2d-4bc0-99cf-8ed506fa1d5a\",\n                        \"0aaa9eb5-d1ac-4fa0-b1df-177fccbb96dc\",\n                        \"ff0674b4-21f8-42e6-9c9c-d7a11ec98905\",\n                        \"68dc8b0f-5204-404a-8591-55264e9a8e82\",\n                        \"973bf735-2707-4a9d-9426-e63f90b2948f\",\n                        \"5e5f61e4-5bc8-457a-adcb-5ee0d00b5bcb\",\n                        \"40a50940-588b-49a9-a56d-5feb2d220526\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98222351074219,\n            \"Text\": \"Debt\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026407741010189056,\n                    \"Height\": 0.007780742831528187,\n                    \"Left\": 0.5522582530975342,\n                    \"Top\": 0.1544410139322281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5522582530975342,\n                        \"Y\": 0.154461070895195\n                    },\n                    {\n                        \"X\": 0.5786609649658203,\n                        \"Y\": 0.1544410139322281\n                    },\n                    {\n                        \"X\": 0.5786659717559814,\n                        \"Y\": 0.1622016876935959\n                    },\n                    {\n                        \"X\": 0.5522632002830505,\n                        \"Y\": 0.162221759557724\n                    }\n                ]\n            },\n            \"Id\": \"a2042eac-2767-404f-8ab3-0602bc1bcab0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"730b5ec8-5cca-48e5-a8df-7bedb269d9ec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86443328857422,\n            \"Text\": \"Nonmajor\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05478428304195404,\n                    \"Height\": 0.009102829732000828,\n                    \"Left\": 0.6750528216362,\n                    \"Top\": 0.15432314574718475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6750528216362,\n                        \"Y\": 0.15436476469039917\n                    },\n                    {\n                        \"X\": 0.7298308610916138,\n                        \"Y\": 0.15432314574718475\n                    },\n                    {\n                        \"X\": 0.7298371195793152,\n                        \"Y\": 0.1633843183517456\n                    },\n                    {\n                        \"X\": 0.6750589609146118,\n                        \"Y\": 0.1634259670972824\n                    }\n                ]\n            },\n            \"Id\": \"717bbb70-9b90-470e-a5d0-8511220e1bea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dc925817-2bc3-4401-ae06-53094e453fac\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9231185913086,\n            \"Text\": \"Total\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027840306982398033,\n                    \"Height\": 0.00789112038910389,\n                    \"Left\": 0.8289929628372192,\n                    \"Top\": 0.15392592549324036\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8289929628372192,\n                        \"Y\": 0.15394707024097443\n                    },\n                    {\n                        \"X\": 0.8568275570869446,\n                        \"Y\": 0.15392592549324036\n                    },\n                    {\n                        \"X\": 0.856833279132843,\n                        \"Y\": 0.16179588437080383\n                    },\n                    {\n                        \"X\": 0.8289986848831177,\n                        \"Y\": 0.1618170440196991\n                    }\n                ]\n            },\n            \"Id\": \"a22b3620-fd9b-4958-ba5e-3413bbb6a506\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dc559009-1fbf-4f8c-8d4e-d0756b440a30\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95450592041016,\n            \"Text\": \"General\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04266580566763878,\n                    \"Height\": 0.008151098154485226,\n                    \"Left\": 0.41516509652137756,\n                    \"Top\": 0.16809335350990295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41516509652137756,\n                        \"Y\": 0.16812580823898315\n                    },\n                    {\n                        \"X\": 0.4578259587287903,\n                        \"Y\": 0.16809335350990295\n                    },\n                    {\n                        \"X\": 0.45783087611198425,\n                        \"Y\": 0.17621198296546936\n                    },\n                    {\n                        \"X\": 0.415169894695282,\n                        \"Y\": 0.17624445259571075\n                    }\n                ]\n            },\n            \"Id\": \"0687100c-0b5d-4c60-b914-c955e8ad9f1a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"baec9f64-9a13-4702-b9fd-fe5a69b7df2a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95771026611328,\n            \"Text\": \"Service\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039159443229436874,\n                    \"Height\": 0.007907518185675144,\n                    \"Left\": 0.545534074306488,\n                    \"Top\": 0.1681336611509323\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.545534074306488,\n                        \"Y\": 0.1681634485721588\n                    },\n                    {\n                        \"X\": 0.5846884250640869,\n                        \"Y\": 0.1681336611509323\n                    },\n                    {\n                        \"X\": 0.5846934914588928,\n                        \"Y\": 0.1760113686323166\n                    },\n                    {\n                        \"X\": 0.5455390810966492,\n                        \"Y\": 0.17604118585586548\n                    }\n                ]\n            },\n            \"Id\": \"6d2f968a-2037-4769-94d2-a47b5ae54c04\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f81c4eaf-9d75-442f-8951-74e0a29d9bbf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90296936035156,\n            \"Text\": \"Governmental\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07817747443914413,\n                    \"Height\": 0.00792798213660717,\n                    \"Left\": 0.6629002094268799,\n                    \"Top\": 0.16796426475048065\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6629002094268799,\n                        \"Y\": 0.1680237203836441\n                    },\n                    {\n                        \"X\": 0.7410721778869629,\n                        \"Y\": 0.16796426475048065\n                    },\n                    {\n                        \"X\": 0.7410776615142822,\n                        \"Y\": 0.17583274841308594\n                    },\n                    {\n                        \"X\": 0.6629054546356201,\n                        \"Y\": 0.17589224874973297\n                    }\n                ]\n            },\n            \"Id\": \"959f5f0d-0d49-4392-812e-6a4ba378cc4b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"488bf395-682f-4b72-ba29-59eab4465c6f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93904113769531,\n            \"Text\": \"Governmental\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07833745330572128,\n                    \"Height\": 0.00798101257532835,\n                    \"Left\": 0.8041697144508362,\n                    \"Top\": 0.16770610213279724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8041697144508362,\n                        \"Y\": 0.16776569187641144\n                    },\n                    {\n                        \"X\": 0.8825013041496277,\n                        \"Y\": 0.16770610213279724\n                    },\n                    {\n                        \"X\": 0.8825071454048157,\n                        \"Y\": 0.17562749981880188\n                    },\n                    {\n                        \"X\": 0.8041753768920898,\n                        \"Y\": 0.17568711936473846\n                    }\n                ]\n            },\n            \"Id\": \"de21a6f0-047c-4fbf-bf88-d9f172f6ae2c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bdb22b16-0656-42bf-ae71-db9de38086f5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98711395263672,\n            \"Text\": \"Fund\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02689930982887745,\n                    \"Height\": 0.007677082438021898,\n                    \"Left\": 0.4231102764606476,\n                    \"Top\": 0.1817322075366974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4231102764606476,\n                        \"Y\": 0.18175269663333893\n                    },\n                    {\n                        \"X\": 0.4500049650669098,\n                        \"Y\": 0.1817322075366974\n                    },\n                    {\n                        \"X\": 0.4500095844268799,\n                        \"Y\": 0.18938879668712616\n                    },\n                    {\n                        \"X\": 0.4231148660182953,\n                        \"Y\": 0.1894092857837677\n                    }\n                ]\n            },\n            \"Id\": \"50574951-fc57-49f3-84dd-4fda0f907d43\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6cadcdcf-4ebe-495b-b508-85c0279d4f6e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97726440429688,\n            \"Text\": \"Fund\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026872269809246063,\n                    \"Height\": 0.007633550092577934,\n                    \"Left\": 0.5518976449966431,\n                    \"Top\": 0.18163681030273438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5518976449966431,\n                        \"Y\": 0.18165726959705353\n                    },\n                    {\n                        \"X\": 0.5787649750709534,\n                        \"Y\": 0.18163681030273438\n                    },\n                    {\n                        \"X\": 0.5787699222564697,\n                        \"Y\": 0.1892498880624771\n                    },\n                    {\n                        \"X\": 0.5519024729728699,\n                        \"Y\": 0.18927036225795746\n                    }\n                ]\n            },\n            \"Id\": \"51507f63-8730-48ba-8f30-988bc57f5721\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7511087-f58d-4519-82e5-3ee4ffac1b0b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97865295410156,\n            \"Text\": \"Funds\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032226014882326126,\n                    \"Height\": 0.007565352600067854,\n                    \"Left\": 0.6863751411437988,\n                    \"Top\": 0.18149352073669434\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6863751411437988,\n                        \"Y\": 0.1815180629491806\n                    },\n                    {\n                        \"X\": 0.7185959815979004,\n                        \"Y\": 0.18149352073669434\n                    },\n                    {\n                        \"X\": 0.7186011672019958,\n                        \"Y\": 0.1890343278646469\n                    },\n                    {\n                        \"X\": 0.6863802671432495,\n                        \"Y\": 0.18905887007713318\n                    }\n                ]\n            },\n            \"Id\": \"19766a02-53ed-4294-be2f-f06f69f6c95c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6e9fe541-8352-4c26-834f-e4e8a7d7f7af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98499298095703,\n            \"Text\": \"Funds\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03223782405257225,\n                    \"Height\": 0.007519848179072142,\n                    \"Left\": 0.8273398280143738,\n                    \"Top\": 0.1813504993915558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8273398280143738,\n                        \"Y\": 0.18137504160404205\n                    },\n                    {\n                        \"X\": 0.859572172164917,\n                        \"Y\": 0.1813504993915558\n                    },\n                    {\n                        \"X\": 0.8595776557922363,\n                        \"Y\": 0.18884578347206116\n                    },\n                    {\n                        \"X\": 0.8273452520370483,\n                        \"Y\": 0.18887034058570862\n                    }\n                ]\n            },\n            \"Id\": \"b007b9bf-4792-47b6-93ed-29a01e2cf6ea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e8315f5d-d0fb-4300-915e-9d5aa359a744\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88338470458984,\n            \"Text\": \"REVENUES\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0585334487259388,\n                    \"Height\": 0.00781822856515646,\n                    \"Left\": 0.10902470350265503,\n                    \"Top\": 0.198225200176239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10902470350265503,\n                        \"Y\": 0.19826984405517578\n                    },\n                    {\n                        \"X\": 0.16755414009094238,\n                        \"Y\": 0.198225200176239\n                    },\n                    {\n                        \"X\": 0.16755814850330353,\n                        \"Y\": 0.2059987634420395\n                    },\n                    {\n                        \"X\": 0.10902858525514603,\n                        \"Y\": 0.20604343712329865\n                    }\n                ]\n            },\n            \"Id\": \"981a43e1-b2ab-4d07-9175-54bf47ccee9d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7b432d0-7d23-4c27-a6b0-a39dd54a1aa1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97467041015625,\n            \"Text\": \"Taxes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.031443897634744644,\n                    \"Height\": 0.007601593621075153,\n                    \"Left\": 0.12716929614543915,\n                    \"Top\": 0.21212773025035858\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12716929614543915,\n                        \"Y\": 0.21215173602104187\n                    },\n                    {\n                        \"X\": 0.1586092859506607,\n                        \"Y\": 0.21212773025035858\n                    },\n                    {\n                        \"X\": 0.1586131900548935,\n                        \"Y\": 0.21970529854297638\n                    },\n                    {\n                        \"X\": 0.12717311084270477,\n                        \"Y\": 0.21972931921482086\n                    }\n                ]\n            },\n            \"Id\": \"0a5450cb-2c37-46ad-9f29-af6d478f10dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f91ab119-aa33-46ac-a6ea-57122b662448\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9781723022461,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006562374532222748,\n                    \"Height\": 0.009154515340924263,\n                    \"Left\": 0.3775043487548828,\n                    \"Top\": 0.2110685408115387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3775043487548828,\n                        \"Y\": 0.21107354760169983\n                    },\n                    {\n                        \"X\": 0.38406139612197876,\n                        \"Y\": 0.2110685408115387\n                    },\n                    {\n                        \"X\": 0.38406673073768616,\n                        \"Y\": 0.22021803259849548\n                    },\n                    {\n                        \"X\": 0.3775096833705902,\n                        \"Y\": 0.2202230542898178\n                    }\n                ]\n            },\n            \"Id\": \"dfe92b65-e4b2-4cd2-9699-4ea71623b88d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b8a5f7bf-43a5-40b5-b261-73ea2de7b4bd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8322525024414,\n            \"Text\": \"992,032,794\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06873741745948792,\n                    \"Height\": 0.008964729495346546,\n                    \"Left\": 0.42624327540397644,\n                    \"Top\": 0.21150241792201996\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42624327540397644,\n                        \"Y\": 0.2115548998117447\n                    },\n                    {\n                        \"X\": 0.49497517943382263,\n                        \"Y\": 0.21150241792201996\n                    },\n                    {\n                        \"X\": 0.49498069286346436,\n                        \"Y\": 0.2204146385192871\n                    },\n                    {\n                        \"X\": 0.42624861001968384,\n                        \"Y\": 0.22046715021133423\n                    }\n                ]\n            },\n            \"Id\": \"0bd758f7-976d-450c-b58a-9b2167738425\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fd707d05-aed2-4b83-9821-fa17b5c18c23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94895935058594,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006880499422550201,\n                    \"Height\": 0.009177850559353828,\n                    \"Left\": 0.507476806640625,\n                    \"Top\": 0.21092019975185394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.507476806640625,\n                        \"Y\": 0.21092544496059418\n                    },\n                    {\n                        \"X\": 0.5143515467643738,\n                        \"Y\": 0.21092019975185394\n                    },\n                    {\n                        \"X\": 0.5143572688102722,\n                        \"Y\": 0.2200928032398224\n                    },\n                    {\n                        \"X\": 0.5074825286865234,\n                        \"Y\": 0.22009804844856262\n                    }\n                ]\n            },\n            \"Id\": \"a3da9f16-2f87-4b45-98c4-dd4593c6eb81\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d8923b92-8ee3-4a78-9fc3-6f1b333ba720\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81076049804688,\n            \"Text\": \"299,653,249\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06831535696983337,\n                    \"Height\": 0.009039408527314663,\n                    \"Left\": 0.553400993347168,\n                    \"Top\": 0.21133048832416534\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.553400993347168,\n                        \"Y\": 0.2113826423883438\n                    },\n                    {\n                        \"X\": 0.6217104196548462,\n                        \"Y\": 0.21133048832416534\n                    },\n                    {\n                        \"X\": 0.6217163801193237,\n                        \"Y\": 0.22031769156455994\n                    },\n                    {\n                        \"X\": 0.5534067153930664,\n                        \"Y\": 0.22036989033222198\n                    }\n                ]\n            },\n            \"Id\": \"bf895c30-ec0d-422d-829e-de2b0c98a961\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ff9e76e4-8608-4695-b8c1-b662340bf7bf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93745422363281,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006740028504282236,\n                    \"Height\": 0.009052942506968975,\n                    \"Left\": 0.6348891258239746,\n                    \"Top\": 0.21082855761051178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6348891258239746,\n                        \"Y\": 0.21083369851112366\n                    },\n                    {\n                        \"X\": 0.6416231393814087,\n                        \"Y\": 0.21082855761051178\n                    },\n                    {\n                        \"X\": 0.641629159450531,\n                        \"Y\": 0.21987634897232056\n                    },\n                    {\n                        \"X\": 0.6348951458930969,\n                        \"Y\": 0.21988148987293243\n                    }\n                ]\n            },\n            \"Id\": \"785b1746-b089-43aa-a210-e46763f7e656\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8c5e3791-64e2-4e8b-9dab-53a973d6f38b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 94.7583999633789,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004541723057627678,\n                    \"Height\": 0.0021483013406395912,\n                    \"Left\": 0.7644885778427124,\n                    \"Top\": 0.21482795476913452\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7644885778427124,\n                        \"Y\": 0.2148314118385315\n                    },\n                    {\n                        \"X\": 0.7690287828445435,\n                        \"Y\": 0.21482795476913452\n                    },\n                    {\n                        \"X\": 0.7690303325653076,\n                        \"Y\": 0.21697278320789337\n                    },\n                    {\n                        \"X\": 0.7644901275634766,\n                        \"Y\": 0.21697625517845154\n                    }\n                ]\n            },\n            \"Id\": \"f8b524ad-0db2-49ca-8f72-cecbca240f73\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a41510d8-f14f-498e-b17d-71e4e8994b7b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93047332763672,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006398484110832214,\n                    \"Height\": 0.009106091223657131,\n                    \"Left\": 0.7818601131439209,\n                    \"Top\": 0.2105858027935028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7818601131439209,\n                        \"Y\": 0.2105906903743744\n                    },\n                    {\n                        \"X\": 0.7882521748542786,\n                        \"Y\": 0.2105858027935028\n                    },\n                    {\n                        \"X\": 0.7882586121559143,\n                        \"Y\": 0.21968701481819153\n                    },\n                    {\n                        \"X\": 0.7818666100502014,\n                        \"Y\": 0.2196919023990631\n                    }\n                ]\n            },\n            \"Id\": \"5e673018-d48c-491e-b31a-248f012c2dd8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"436c7166-9f4c-4ab4-8840-9423ca23a2d8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72154235839844,\n            \"Text\": \"1,291,686,043\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07829948514699936,\n                    \"Height\": 0.008959641680121422,\n                    \"Left\": 0.8255435228347778,\n                    \"Top\": 0.21098953485488892\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8255435228347778,\n                        \"Y\": 0.21104930341243744\n                    },\n                    {\n                        \"X\": 0.9038363695144653,\n                        \"Y\": 0.21098953485488892\n                    },\n                    {\n                        \"X\": 0.9038430452346802,\n                        \"Y\": 0.2198893427848816\n                    },\n                    {\n                        \"X\": 0.8255499601364136,\n                        \"Y\": 0.2199491709470749\n                    }\n                ]\n            },\n            \"Id\": \"7cdbe573-15dc-4d86-bb4f-8fdea51c8325\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"eccb40fa-0a3a-425e-861e-d26c3d58648e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93472290039062,\n            \"Text\": \"Law Enforcement Service District taxes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21225197613239288,\n                    \"Height\": 0.008023116737604141,\n                    \"Left\": 0.12782754004001617,\n                    \"Top\": 0.22557803988456726\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12782754004001617,\n                        \"Y\": 0.22574029862880707\n                    },\n                    {\n                        \"X\": 0.3400750160217285,\n                        \"Y\": 0.22557803988456726\n                    },\n                    {\n                        \"X\": 0.34007951617240906,\n                        \"Y\": 0.23343878984451294\n                    },\n                    {\n                        \"X\": 0.12783150374889374,\n                        \"Y\": 0.2336011528968811\n                    }\n                ]\n            },\n            \"Id\": \"1f597ba0-a200-4444-92e5-f1af0b571cf2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fd55dda4-559e-41e0-a8a0-3bd9dcea7d28\",\n                        \"aad8f188-6fe8-4b7d-a8f1-1aeb38a648e2\",\n                        \"32bcce36-a711-40d5-9440-949e3ce75e4d\",\n                        \"33fedbd4-789d-4260-b778-fc86026cebfb\",\n                        \"83db5e43-f54f-4e8f-a13a-04bcd7680b17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.40245819091797,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004689238965511322,\n                    \"Height\": 0.0020164158195257187,\n                    \"Left\": 0.49011528491973877,\n                    \"Top\": 0.22890089452266693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49011528491973877,\n                        \"Y\": 0.22890448570251465\n                    },\n                    {\n                        \"X\": 0.4948032796382904,\n                        \"Y\": 0.22890089452266693\n                    },\n                    {\n                        \"X\": 0.4948045313358307,\n                        \"Y\": 0.23091372847557068\n                    },\n                    {\n                        \"X\": 0.49011653661727905,\n                        \"Y\": 0.2309173047542572\n                    }\n                ]\n            },\n            \"Id\": \"fb1a785a-b98f-4617-942d-5dfc08232b88\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ba6a057f-7d96-4e7e-9b17-e5c1bde06381\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.66303253173828,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004509096033871174,\n                    \"Height\": 0.0020307383965700865,\n                    \"Left\": 0.6175787448883057,\n                    \"Top\": 0.22874383628368378\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6175787448883057,\n                        \"Y\": 0.22874727845191956\n                    },\n                    {\n                        \"X\": 0.6220865249633789,\n                        \"Y\": 0.22874383628368378\n                    },\n                    {\n                        \"X\": 0.622087836265564,\n                        \"Y\": 0.23077112436294556\n                    },\n                    {\n                        \"X\": 0.6175801157951355,\n                        \"Y\": 0.23077458143234253\n                    }\n                ]\n            },\n            \"Id\": \"01a79580-5346-4212-bbd1-3e9430a786e4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6fc7dbcd-fe03-44c3-803c-7ebe355fd9bc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94489288330078,\n            \"Text\": \"17,131,106\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061068613082170486,\n                    \"Height\": 0.008669801987707615,\n                    \"Left\": 0.7076337337493896,\n                    \"Top\": 0.22513779997825623\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7076337337493896,\n                        \"Y\": 0.22518448531627655\n                    },\n                    {\n                        \"X\": 0.7686963081359863,\n                        \"Y\": 0.22513779997825623\n                    },\n                    {\n                        \"X\": 0.7687023878097534,\n                        \"Y\": 0.23376089334487915\n                    },\n                    {\n                        \"X\": 0.7076396346092224,\n                        \"Y\": 0.23380760848522186\n                    }\n                ]\n            },\n            \"Id\": \"aa220ab8-3674-491c-bcf6-5b2a71af0ef6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2c34db33-f16d-486f-941b-22ee31d2f260\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96233367919922,\n            \"Text\": \"17,131,106\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06164123862981796,\n                    \"Height\": 0.008771474473178387,\n                    \"Left\": 0.8424055576324463,\n                    \"Top\": 0.22495795786380768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8424055576324463,\n                        \"Y\": 0.22500507533550262\n                    },\n                    {\n                        \"X\": 0.9040402770042419,\n                        \"Y\": 0.22495795786380768\n                    },\n                    {\n                        \"X\": 0.9040468335151672,\n                        \"Y\": 0.2336822748184204\n                    },\n                    {\n                        \"X\": 0.8424119353294373,\n                        \"Y\": 0.23372943699359894\n                    }\n                ]\n            },\n            \"Id\": \"763fc9db-f6d6-4ef1-acdd-834b52335b70\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bfd06762-ca71-4a7f-af66-8271dae79616\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83263397216797,\n            \"Text\": \"Transit one-half cent sales tax\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1642879694700241,\n                    \"Height\": 0.008104905486106873,\n                    \"Left\": 0.12721574306488037,\n                    \"Top\": 0.23921900987625122\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12721574306488037,\n                        \"Y\": 0.2393447607755661\n                    },\n                    {\n                        \"X\": 0.2914992570877075,\n                        \"Y\": 0.23921900987625122\n                    },\n                    {\n                        \"X\": 0.2915036976337433,\n                        \"Y\": 0.24719808995723724\n                    },\n                    {\n                        \"X\": 0.1272197663784027,\n                        \"Y\": 0.2473239153623581\n                    }\n                ]\n            },\n            \"Id\": \"194efae8-114d-4b3a-9b1e-e2717e2518e2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fff0dfa6-cc40-42b0-b76d-3d3a130144d6\",\n                        \"e3c8f645-a645-40e8-9cfb-56c25dc1fd66\",\n                        \"e0b1560a-e4db-4549-b1b9-c00ca1b0fe9e\",\n                        \"0f2bb40e-1d21-45e9-86b1-07bb15cf9a0e\",\n                        \"9738f038-d0da-4558-aad9-e3dbe36e7b6f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.0230484008789,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004562615882605314,\n                    \"Height\": 0.0019182824762538075,\n                    \"Left\": 0.49025142192840576,\n                    \"Top\": 0.2427227944135666\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49025142192840576,\n                        \"Y\": 0.24272629618644714\n                    },\n                    {\n                        \"X\": 0.49481284618377686,\n                        \"Y\": 0.2427227944135666\n                    },\n                    {\n                        \"X\": 0.49481403827667236,\n                        \"Y\": 0.244637593626976\n                    },\n                    {\n                        \"X\": 0.4902525842189789,\n                        \"Y\": 0.24464108049869537\n                    }\n                ]\n            },\n            \"Id\": \"1921199a-f640-4536-a2d8-d04afa4cd316\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c76c8240-03b6-4956-b32d-f633365353bb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.39881134033203,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004544690251350403,\n                    \"Height\": 0.0019262399291619658,\n                    \"Left\": 0.6175937056541443,\n                    \"Top\": 0.24255026876926422\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6175937056541443,\n                        \"Y\": 0.2425537407398224\n                    },\n                    {\n                        \"X\": 0.6221371293067932,\n                        \"Y\": 0.24255026876926422\n                    },\n                    {\n                        \"X\": 0.6221384406089783,\n                        \"Y\": 0.24447302520275116\n                    },\n                    {\n                        \"X\": 0.6175950169563293,\n                        \"Y\": 0.24447649717330933\n                    }\n                ]\n            },\n            \"Id\": \"1545c073-700c-4c2e-9e53-135c62012123\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"76436d98-879d-4248-a553-0ba57c3ea2c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85709381103516,\n            \"Text\": \"55,915,981\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06125115603208542,\n                    \"Height\": 0.00894345436245203,\n                    \"Left\": 0.7072041034698486,\n                    \"Top\": 0.23874236643314362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7072041034698486,\n                        \"Y\": 0.23878924548625946\n                    },\n                    {\n                        \"X\": 0.7684490084648132,\n                        \"Y\": 0.23874236643314362\n                    },\n                    {\n                        \"X\": 0.7684552669525146,\n                        \"Y\": 0.24763891100883484\n                    },\n                    {\n                        \"X\": 0.7072101831436157,\n                        \"Y\": 0.24768581986427307\n                    }\n                ]\n            },\n            \"Id\": \"21d755ed-6ce7-43db-8daf-3c164b9f55c1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"daba8bc2-64a5-4c3b-8a6f-1e288aea4d39\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85369110107422,\n            \"Text\": \"55,915,981\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06153956055641174,\n                    \"Height\": 0.00892062857747078,\n                    \"Left\": 0.8422829508781433,\n                    \"Top\": 0.23856060206890106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8422829508781433,\n                        \"Y\": 0.23860770463943481\n                    },\n                    {\n                        \"X\": 0.9038158655166626,\n                        \"Y\": 0.23856060206890106\n                    },\n                    {\n                        \"X\": 0.9038224816322327,\n                        \"Y\": 0.2474341094493866\n                    },\n                    {\n                        \"X\": 0.842289388179779,\n                        \"Y\": 0.24748124182224274\n                    }\n                ]\n            },\n            \"Id\": \"6e3db233-652f-4401-8ec1-f926425af6ed\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1014e2a0-ab26-4fa1-9a35-fee8fcb37c9e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94284057617188,\n            \"Text\": \"Fire Service Districts taxes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14215010404586792,\n                    \"Height\": 0.008081283420324326,\n                    \"Left\": 0.12819775938987732,\n                    \"Top\": 0.2531529366970062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12819775938987732,\n                        \"Y\": 0.25326186418533325\n                    },\n                    {\n                        \"X\": 0.27034348249435425,\n                        \"Y\": 0.2531529366970062\n                    },\n                    {\n                        \"X\": 0.27034786343574524,\n                        \"Y\": 0.26112520694732666\n                    },\n                    {\n                        \"X\": 0.12820178270339966,\n                        \"Y\": 0.26123422384262085\n                    }\n                ]\n            },\n            \"Id\": \"540f4d7c-9519-4a1e-8733-44c669825d38\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c79c6bbe-98b6-44f2-b88c-517adef52bf4\",\n                        \"480b9067-3acd-4dcb-afef-5e4150c215a7\",\n                        \"43b20773-d42b-46b6-b98c-3e3a4eddc5f0\",\n                        \"1f175a8d-c155-462b-9e87-27bc631e0dab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.0616683959961,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004468886181712151,\n                    \"Height\": 0.0015493488172069192,\n                    \"Left\": 0.4903559684753418,\n                    \"Top\": 0.2567022740840912\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4903559684753418,\n                        \"Y\": 0.25670570135116577\n                    },\n                    {\n                        \"X\": 0.4948239028453827,\n                        \"Y\": 0.2567022740840912\n                    },\n                    {\n                        \"X\": 0.4948248565196991,\n                        \"Y\": 0.2582481801509857\n                    },\n                    {\n                        \"X\": 0.4903569221496582,\n                        \"Y\": 0.2582516074180603\n                    }\n                ]\n            },\n            \"Id\": \"1519fa09-8b13-45da-8774-29e91ef288d5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ea750ea-92c7-41e1-9070-5fd4b1634bb2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.70974731445312,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004510697443038225,\n                    \"Height\": 0.0020079149398952723,\n                    \"Left\": 0.6176250576972961,\n                    \"Top\": 0.25619426369667053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6176250576972961,\n                        \"Y\": 0.2561977207660675\n                    },\n                    {\n                        \"X\": 0.6221344470977783,\n                        \"Y\": 0.25619426369667053\n                    },\n                    {\n                        \"X\": 0.6221357583999634,\n                        \"Y\": 0.25819870829582214\n                    },\n                    {\n                        \"X\": 0.6176263689994812,\n                        \"Y\": 0.2582021653652191\n                    }\n                ]\n            },\n            \"Id\": \"5e7c5bb8-5002-405c-a457-f9c02db6b7ad\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e9707a59-561f-4970-a234-5e542c5b5075\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95648193359375,\n            \"Text\": \"5,811,871\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05443677306175232,\n                    \"Height\": 0.009041673503816128,\n                    \"Left\": 0.7141618132591248,\n                    \"Top\": 0.2524142861366272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7141618132591248,\n                        \"Y\": 0.25245600938796997\n                    },\n                    {\n                        \"X\": 0.7685922384262085,\n                        \"Y\": 0.2524142861366272\n                    },\n                    {\n                        \"X\": 0.7685985565185547,\n                        \"Y\": 0.26141422986984253\n                    },\n                    {\n                        \"X\": 0.7141680121421814,\n                        \"Y\": 0.2614559531211853\n                    }\n                ]\n            },\n            \"Id\": \"b4a2d39c-a034-4e7c-b3a5-90c20332bc8a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"12789a4c-36b5-4038-b4e8-19a4d8ab25b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9374771118164,\n            \"Text\": \"5,811,871\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05461627617478371,\n                    \"Height\": 0.008885637857019901,\n                    \"Left\": 0.849027693271637,\n                    \"Top\": 0.252370148897171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.849027693271637,\n                        \"Y\": 0.25241199135780334\n                    },\n                    {\n                        \"X\": 0.9036373496055603,\n                        \"Y\": 0.252370148897171\n                    },\n                    {\n                        \"X\": 0.9036439657211304,\n                        \"Y\": 0.26121392846107483\n                    },\n                    {\n                        \"X\": 0.8490341305732727,\n                        \"Y\": 0.26125580072402954\n                    }\n                ]\n            },\n            \"Id\": \"7335dbf8-3920-4a17-8f84-030c7d4ec789\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"edb0b2fd-7956-407b-9e70-9a08e4283845\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83350372314453,\n            \"Text\": \"Licenses and permits\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11408970504999161,\n                    \"Height\": 0.009542111307382584,\n                    \"Left\": 0.1280766725540161,\n                    \"Top\": 0.2669711410999298\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1280766725540161,\n                        \"Y\": 0.26705867052078247\n                    },\n                    {\n                        \"X\": 0.24216127395629883,\n                        \"Y\": 0.2669711410999298\n                    },\n                    {\n                        \"X\": 0.24216638505458832,\n                        \"Y\": 0.27642565965652466\n                    },\n                    {\n                        \"X\": 0.12808145582675934,\n                        \"Y\": 0.2765132486820221\n                    }\n                ]\n            },\n            \"Id\": \"62874fe3-3f55-42ec-9dee-a73c8e593f11\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23bfd58e-d98c-4a0d-9af7-089fab375dcf\",\n                        \"e7751c23-31ea-4ae8-9694-43d75d7386f2\",\n                        \"6c2f0876-539d-4abd-8e51-c99435ca811a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89471435546875,\n            \"Text\": \"32,691,258\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061325881630182266,\n                    \"Height\": 0.00888114795088768,\n                    \"Left\": 0.43344810605049133,\n                    \"Top\": 0.26668503880500793\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43344810605049133,\n                        \"Y\": 0.2667320668697357\n                    },\n                    {\n                        \"X\": 0.49476850032806396,\n                        \"Y\": 0.26668503880500793\n                    },\n                    {\n                        \"X\": 0.4947739839553833,\n                        \"Y\": 0.27551910281181335\n                    },\n                    {\n                        \"X\": 0.43345341086387634,\n                        \"Y\": 0.2755661904811859\n                    }\n                ]\n            },\n            \"Id\": \"4b39909e-e304-4755-a594-671f2ba1700a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"902da998-adf1-4594-ab83-cf2b816bbd9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.82472229003906,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0046079326421022415,\n                    \"Height\": 0.0018475335091352463,\n                    \"Left\": 0.6176692247390747,\n                    \"Top\": 0.2703271210193634\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6176692247390747,\n                        \"Y\": 0.27033063769340515\n                    },\n                    {\n                        \"X\": 0.6222759485244751,\n                        \"Y\": 0.2703271210193634\n                    },\n                    {\n                        \"X\": 0.6222771406173706,\n                        \"Y\": 0.27217110991477966\n                    },\n                    {\n                        \"X\": 0.6176704168319702,\n                        \"Y\": 0.2721746563911438\n                    }\n                ]\n            },\n            \"Id\": \"7e19c8b6-e6e9-41af-a8f9-f858b2d416c9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b12443c3-1ae3-45e2-a310-4bc43f791c92\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.68876647949219,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004609465133398771,\n                    \"Height\": 0.0018929189536720514,\n                    \"Left\": 0.7645269632339478,\n                    \"Top\": 0.2700575590133667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7645269632339478,\n                        \"Y\": 0.27006110548973083\n                    },\n                    {\n                        \"X\": 0.769135057926178,\n                        \"Y\": 0.2700575590133667\n                    },\n                    {\n                        \"X\": 0.7691364288330078,\n                        \"Y\": 0.2719469368457794\n                    },\n                    {\n                        \"X\": 0.7645282745361328,\n                        \"Y\": 0.27195048332214355\n                    }\n                ]\n            },\n            \"Id\": \"f22df3c0-5d0f-486f-acdd-2f095def56da\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d3494a9b-5930-4022-9ca1-4168bf711b6d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88487243652344,\n            \"Text\": \"32,691,258\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061769451946020126,\n                    \"Height\": 0.00884685292840004,\n                    \"Left\": 0.8422956466674805,\n                    \"Top\": 0.26619529724121094\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8422956466674805,\n                        \"Y\": 0.2662426829338074\n                    },\n                    {\n                        \"X\": 0.904058575630188,\n                        \"Y\": 0.26619529724121094\n                    },\n                    {\n                        \"X\": 0.9040651321411133,\n                        \"Y\": 0.27499473094940186\n                    },\n                    {\n                        \"X\": 0.8423020839691162,\n                        \"Y\": 0.2750421464443207\n                    }\n                ]\n            },\n            \"Id\": \"502aa5e2-4124-42b7-b965-ef27e66c7855\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"321596e2-ab0c-49d4-9fa9-66cfca1cb94f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.10432434082031,\n            \"Text\": \"Intergovernmental\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10178467631340027,\n                    \"Height\": 0.009508742019534111,\n                    \"Left\": 0.12841162085533142,\n                    \"Top\": 0.2807319462299347\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12841162085533142,\n                        \"Y\": 0.2808101177215576\n                    },\n                    {\n                        \"X\": 0.23019124567508698,\n                        \"Y\": 0.2807319462299347\n                    },\n                    {\n                        \"X\": 0.2301962971687317,\n                        \"Y\": 0.29016244411468506\n                    },\n                    {\n                        \"X\": 0.12841638922691345,\n                        \"Y\": 0.29024067521095276\n                    }\n                ]\n            },\n            \"Id\": \"21bb8ffc-f41f-4744-8f42-e715d9691672\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5c8f0329-894b-469d-b3b4-469dd304263e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82086944580078,\n            \"Text\": \"128,866,078\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0677429735660553,\n                    \"Height\": 0.008872455917298794,\n                    \"Left\": 0.4271184802055359,\n                    \"Top\": 0.28043514490127563\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4271184802055359,\n                        \"Y\": 0.28048717975616455\n                    },\n                    {\n                        \"X\": 0.49485599994659424,\n                        \"Y\": 0.28043514490127563\n                    },\n                    {\n                        \"X\": 0.4948614537715912,\n                        \"Y\": 0.2892555296421051\n                    },\n                    {\n                        \"X\": 0.4271237552165985,\n                        \"Y\": 0.2893075942993164\n                    }\n                ]\n            },\n            \"Id\": \"af47eae7-1262-4f25-966c-1239bbf612a4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3c6e87aa-208f-429c-aeeb-500035779390\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82060241699219,\n            \"Text\": \"12,901,016\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06137319281697273,\n                    \"Height\": 0.008786856196820736,\n                    \"Left\": 0.5609820485115051,\n                    \"Top\": 0.28036269545555115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5609820485115051,\n                        \"Y\": 0.2804098427295685\n                    },\n                    {\n                        \"X\": 0.6223494410514832,\n                        \"Y\": 0.28036269545555115\n                    },\n                    {\n                        \"X\": 0.6223552227020264,\n                        \"Y\": 0.28910237550735474\n                    },\n                    {\n                        \"X\": 0.560987651348114,\n                        \"Y\": 0.28914955258369446\n                    }\n                ]\n            },\n            \"Id\": \"281dde45-5474-4305-81ff-d2bc4550099e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"20273c93-750d-4493-b407-ee2856cbb58f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85814666748047,\n            \"Text\": \"5,548,001\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05412396043539047,\n                    \"Height\": 0.008802635595202446,\n                    \"Left\": 0.7144038081169128,\n                    \"Top\": 0.2801433503627777\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7144038081169128,\n                        \"Y\": 0.28018492460250854\n                    },\n                    {\n                        \"X\": 0.7685216069221497,\n                        \"Y\": 0.2801433503627777\n                    },\n                    {\n                        \"X\": 0.7685278058052063,\n                        \"Y\": 0.2889043986797333\n                    },\n                    {\n                        \"X\": 0.7144098877906799,\n                        \"Y\": 0.2889460027217865\n                    }\n                ]\n            },\n            \"Id\": \"da83c228-2875-4fdf-8dfc-68f6ba7443a0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"892ea0bb-5931-40df-af87-eaea82e6a830\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92918395996094,\n            \"Text\": \"147,315,095\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06803363561630249,\n                    \"Height\": 0.008808976970613003,\n                    \"Left\": 0.8359826803207397,\n                    \"Top\": 0.2799965739250183\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8359826803207397,\n                        \"Y\": 0.28004881739616394\n                    },\n                    {\n                        \"X\": 0.9040097594261169,\n                        \"Y\": 0.2799965739250183\n                    },\n                    {\n                        \"X\": 0.9040163159370422,\n                        \"Y\": 0.2887532711029053\n                    },\n                    {\n                        \"X\": 0.8359889984130859,\n                        \"Y\": 0.2888055443763733\n                    }\n                ]\n            },\n            \"Id\": \"0eaf7b87-7e2f-45f2-a104-4d32c24b0e32\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e03d8be1-087d-46d9-ac84-0a4b182699b8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87008666992188,\n            \"Text\": \"Charges for services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10923788696527481,\n                    \"Height\": 0.009688889607787132,\n                    \"Left\": 0.12801477313041687,\n                    \"Top\": 0.2942952513694763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12801477313041687,\n                        \"Y\": 0.29437926411628723\n                    },\n                    {\n                        \"X\": 0.23724748194217682,\n                        \"Y\": 0.2942952513694763\n                    },\n                    {\n                        \"X\": 0.23725265264511108,\n                        \"Y\": 0.3039000630378723\n                    },\n                    {\n                        \"X\": 0.12801961600780487,\n                        \"Y\": 0.3039841651916504\n                    }\n                ]\n            },\n            \"Id\": \"61fa07e2-6cdd-4bda-b104-015144545bf4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b22ec062-f769-49e0-b562-89a99d7fab4e\",\n                        \"7e7d56a9-8a9c-46c9-b565-ac026ab25642\",\n                        \"528f0483-cc0a-4210-bfe8-65c460220167\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94681549072266,\n            \"Text\": \"63,361,407\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06135309487581253,\n                    \"Height\": 0.009069873951375484,\n                    \"Left\": 0.43350949883461,\n                    \"Top\": 0.2941226065158844\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43350949883461,\n                        \"Y\": 0.2941697835922241\n                    },\n                    {\n                        \"X\": 0.4948570132255554,\n                        \"Y\": 0.2941226065158844\n                    },\n                    {\n                        \"X\": 0.4948625862598419,\n                        \"Y\": 0.30314525961875916\n                    },\n                    {\n                        \"X\": 0.43351492285728455,\n                        \"Y\": 0.30319249629974365\n                    }\n                ]\n            },\n            \"Id\": \"379f15b5-41b7-4a32-826b-4d1b1b513639\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"24b669f9-5e7d-408e-aa23-54dae6d1c933\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.06731414794922,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004512490704655647,\n                    \"Height\": 0.0019192253239452839,\n                    \"Left\": 0.6176855564117432,\n                    \"Top\": 0.2976512908935547\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6176855564117432,\n                        \"Y\": 0.29765477776527405\n                    },\n                    {\n                        \"X\": 0.6221967935562134,\n                        \"Y\": 0.2976512908935547\n                    },\n                    {\n                        \"X\": 0.6221980452537537,\n                        \"Y\": 0.2995670437812805\n                    },\n                    {\n                        \"X\": 0.6176868081092834,\n                        \"Y\": 0.2995705306529999\n                    }\n                ]\n            },\n            \"Id\": \"2f6d2877-cdbd-4c18-a6ac-c0d076e7c39f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2864a5e-587a-4639-829d-72b0c6b6dc73\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91148376464844,\n            \"Text\": \"20,559,814\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06176493689417839,\n                    \"Height\": 0.008974834345281124,\n                    \"Left\": 0.7072641849517822,\n                    \"Top\": 0.29386642575263977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7072641849517822,\n                        \"Y\": 0.29391390085220337\n                    },\n                    {\n                        \"X\": 0.7690228223800659,\n                        \"Y\": 0.29386642575263977\n                    },\n                    {\n                        \"X\": 0.7690291404724121,\n                        \"Y\": 0.3027937114238739\n                    },\n                    {\n                        \"X\": 0.7072703242301941,\n                        \"Y\": 0.3028412461280823\n                    }\n                ]\n            },\n            \"Id\": \"a5fc4bd5-e7a9-40b0-89df-ea3cec5e43ea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8de454c9-3e08-41ac-927e-8dbaf05d7d42\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75704193115234,\n            \"Text\": \"83,921,221\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0613938570022583,\n                    \"Height\": 0.008973551914095879,\n                    \"Left\": 0.8423281311988831,\n                    \"Top\": 0.29363203048706055\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8423281311988831,\n                        \"Y\": 0.29367923736572266\n                    },\n                    {\n                        \"X\": 0.9037153124809265,\n                        \"Y\": 0.29363203048706055\n                    },\n                    {\n                        \"X\": 0.9037219882011414,\n                        \"Y\": 0.3025583326816559\n                    },\n                    {\n                        \"X\": 0.8423346281051636,\n                        \"Y\": 0.30260559916496277\n                    }\n                ]\n            },\n            \"Id\": \"be12cc89-3c15-4e89-9764-abb3993be2ce\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"01554a8b-b69d-4a70-b2e8-c497c92ae92b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90543365478516,\n            \"Text\": \"Interest earned on investments\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1714499294757843,\n                    \"Height\": 0.00807781983166933,\n                    \"Left\": 0.12832796573638916,\n                    \"Top\": 0.30828535556793213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12832796573638916,\n                        \"Y\": 0.30841735005378723\n                    },\n                    {\n                        \"X\": 0.2997734546661377,\n                        \"Y\": 0.30828535556793213\n                    },\n                    {\n                        \"X\": 0.29977789521217346,\n                        \"Y\": 0.3162310719490051\n                    },\n                    {\n                        \"X\": 0.1283319741487503,\n                        \"Y\": 0.3163631558418274\n                    }\n                ]\n            },\n            \"Id\": \"c69148d6-a8ee-45e1-a146-355bda3fdb03\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"032bc09a-35f2-4b78-ac48-0937975955f7\",\n                        \"3e3f37f7-b97b-4c78-a962-c144ff599b39\",\n                        \"6c2c6d0e-675e-4083-849b-52087fe65a50\",\n                        \"7971b6bb-092f-4c61-8c9b-ba4c7b6b10f7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55472564697266,\n            \"Text\": \"8,125,273\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054591063410043716,\n                    \"Height\": 0.008879601024091244,\n                    \"Left\": 0.43986064195632935,\n                    \"Top\": 0.30804353952407837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43986064195632935,\n                        \"Y\": 0.308085560798645\n                    },\n                    {\n                        \"X\": 0.4944462478160858,\n                        \"Y\": 0.30804353952407837\n                    },\n                    {\n                        \"X\": 0.49445170164108276,\n                        \"Y\": 0.31688106060028076\n                    },\n                    {\n                        \"X\": 0.43986597657203674,\n                        \"Y\": 0.3169231414794922\n                    }\n                ]\n            },\n            \"Id\": \"8fd12ed5-adc2-4fe7-bc9c-60e97e881e23\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f550dd83-1c12-4977-a168-c1e112b79004\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70169067382812,\n            \"Text\": \"874,580\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04483699053525925,\n                    \"Height\": 0.009053070098161697,\n                    \"Left\": 0.577523410320282,\n                    \"Top\": 0.3077024519443512\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.577523410320282,\n                        \"Y\": 0.30773699283599854\n                    },\n                    {\n                        \"X\": 0.6223544478416443,\n                        \"Y\": 0.3077024519443512\n                    },\n                    {\n                        \"X\": 0.622360348701477,\n                        \"Y\": 0.31672099232673645\n                    },\n                    {\n                        \"X\": 0.5775291919708252,\n                        \"Y\": 0.3167555332183838\n                    }\n                ]\n            },\n            \"Id\": \"10c163f4-9796-4340-a733-7b9c7c95b87f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b9057b1e-1477-4cd3-bd25-6b485fa7e187\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9144515991211,\n            \"Text\": \"625,537\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044605277478694916,\n                    \"Height\": 0.009005846455693245,\n                    \"Left\": 0.7243080735206604,\n                    \"Top\": 0.3076349198818207\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7243080735206604,\n                        \"Y\": 0.3076692521572113\n                    },\n                    {\n                        \"X\": 0.7689070105552673,\n                        \"Y\": 0.3076349198818207\n                    },\n                    {\n                        \"X\": 0.7689133882522583,\n                        \"Y\": 0.31660640239715576\n                    },\n                    {\n                        \"X\": 0.724314272403717,\n                        \"Y\": 0.3166407644748688\n                    }\n                ]\n            },\n            \"Id\": \"0f58192a-919e-409c-b68d-d63b4c2aeeb4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"630bc400-368b-425c-8baa-4f673c053bec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87960815429688,\n            \"Text\": \"9,625,390\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055313002318143845,\n                    \"Height\": 0.008878913708031178,\n                    \"Left\": 0.8490760326385498,\n                    \"Top\": 0.3075295388698578\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8490760326385498,\n                        \"Y\": 0.3075721263885498\n                    },\n                    {\n                        \"X\": 0.9043824672698975,\n                        \"Y\": 0.3075295388698578\n                    },\n                    {\n                        \"X\": 0.9043890833854675,\n                        \"Y\": 0.3163658380508423\n                    },\n                    {\n                        \"X\": 0.8490825295448303,\n                        \"Y\": 0.3164084553718567\n                    }\n                ]\n            },\n            \"Id\": \"e75ea2c5-87b9-4f41-96c7-d88d0a77f4ab\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9c9894be-54c8-4783-b2fa-8a67ed5a635a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75271606445312,\n            \"Text\": \"Administrative charges\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1256590038537979,\n                    \"Height\": 0.009759664535522461,\n                    \"Left\": 0.12787310779094696,\n                    \"Top\": 0.3218652009963989\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12787310779094696,\n                        \"Y\": 0.32196205854415894\n                    },\n                    {\n                        \"X\": 0.25352683663368225,\n                        \"Y\": 0.3218652009963989\n                    },\n                    {\n                        \"X\": 0.2535321116447449,\n                        \"Y\": 0.3315279185771942\n                    },\n                    {\n                        \"X\": 0.12787798047065735,\n                        \"Y\": 0.3316248655319214\n                    }\n                ]\n            },\n            \"Id\": \"1cb6dcb3-b9fb-49c0-969f-65bab100529f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"27c296c4-2c5e-4a58-8c58-662b816e9c56\",\n                        \"63339557-f8ac-4036-9b5d-26b38940d17d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87234497070312,\n            \"Text\": \"2,498,781\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05470501258969307,\n                    \"Height\": 0.00941397063434124,\n                    \"Left\": 0.4398273527622223,\n                    \"Top\": 0.3215745687484741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4398273527622223,\n                        \"Y\": 0.3216167390346527\n                    },\n                    {\n                        \"X\": 0.49452656507492065,\n                        \"Y\": 0.3215745687484741\n                    },\n                    {\n                        \"X\": 0.49453234672546387,\n                        \"Y\": 0.3309463560581207\n                    },\n                    {\n                        \"X\": 0.43983298540115356,\n                        \"Y\": 0.3309885561466217\n                    }\n                ]\n            },\n            \"Id\": \"5311cbd2-1b62-4abc-8f6f-7c1ce6e887b7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1209d34c-e5c2-4059-bc06-f578f1c6ef11\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.67523193359375,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004637779202312231,\n                    \"Height\": 0.0018535447306931019,\n                    \"Left\": 0.6177356839179993,\n                    \"Top\": 0.32536959648132324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6177356839179993,\n                        \"Y\": 0.32537317276000977\n                    },\n                    {\n                        \"X\": 0.6223722696304321,\n                        \"Y\": 0.32536959648132324\n                    },\n                    {\n                        \"X\": 0.6223734617233276,\n                        \"Y\": 0.32721954584121704\n                    },\n                    {\n                        \"X\": 0.6177368760108948,\n                        \"Y\": 0.32722312211990356\n                    }\n                ]\n            },\n            \"Id\": \"4417b7f6-47cc-4457-ac36-51290b1b2b65\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0b5d1748-3581-4ee9-80e8-9b6f59618b16\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.31260681152344,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0046035051345825195,\n                    \"Height\": 0.0018718335777521133,\n                    \"Left\": 0.764707624912262,\n                    \"Top\": 0.3251914978027344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.764707624912262,\n                        \"Y\": 0.3251950442790985\n                    },\n                    {\n                        \"X\": 0.7693098187446594,\n                        \"Y\": 0.3251914978027344\n                    },\n                    {\n                        \"X\": 0.7693111300468445,\n                        \"Y\": 0.327059805393219\n                    },\n                    {\n                        \"X\": 0.7647089958190918,\n                        \"Y\": 0.32706335186958313\n                    }\n                ]\n            },\n            \"Id\": \"78bb1229-ddd7-4329-a01b-144a6cfb9dad\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a797dc1d-3266-4dc3-8fb6-8f570e9c1541\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81986236572266,\n            \"Text\": \"2,498,781\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05486723408102989,\n                    \"Height\": 0.008783090859651566,\n                    \"Left\": 0.8490285873413086,\n                    \"Top\": 0.32126933336257935\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8490285873413086,\n                        \"Y\": 0.3213116228580475\n                    },\n                    {\n                        \"X\": 0.9038892984390259,\n                        \"Y\": 0.32126933336257935\n                    },\n                    {\n                        \"X\": 0.9038957953453064,\n                        \"Y\": 0.3300100862979889\n                    },\n                    {\n                        \"X\": 0.8490349650382996,\n                        \"Y\": 0.3300524055957794\n                    }\n                ]\n            },\n            \"Id\": \"d3d0605f-eb3e-46f4-8dbf-871389a9b2ec\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"005ab816-8dd1-479b-a3d0-4d01e92f9103\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.975341796875,\n            \"Text\": \"Other\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03189919516444206,\n                    \"Height\": 0.007762612774968147,\n                    \"Left\": 0.12811747193336487,\n                    \"Top\": 0.3356834053993225\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12811747193336487,\n                        \"Y\": 0.33570802211761475\n                    },\n                    {\n                        \"X\": 0.16001267731189728,\n                        \"Y\": 0.3356834053993225\n                    },\n                    {\n                        \"X\": 0.16001665592193604,\n                        \"Y\": 0.3434213697910309\n                    },\n                    {\n                        \"X\": 0.12812137603759766,\n                        \"Y\": 0.3434460163116455\n                    }\n                ]\n            },\n            \"Id\": \"467717ff-3e8d-4a86-ad62-7daa4da5ef15\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"765c2d5d-6927-48a9-9d46-ea893b3e337e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80744934082031,\n            \"Text\": \"10,324,439\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06084743142127991,\n                    \"Height\": 0.008785550482571125,\n                    \"Left\": 0.43403488397598267,\n                    \"Top\": 0.33533865213394165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43403488397598267,\n                        \"Y\": 0.33538562059402466\n                    },\n                    {\n                        \"X\": 0.494876891374588,\n                        \"Y\": 0.33533865213394165\n                    },\n                    {\n                        \"X\": 0.4948823153972626,\n                        \"Y\": 0.3440771996974945\n                    },\n                    {\n                        \"X\": 0.4340401291847229,\n                        \"Y\": 0.3441241979598999\n                    }\n                ]\n            },\n            \"Id\": \"a1a2d19f-d661-46da-96c8-adda2848ec12\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b61d66b6-4d34-4e40-b8b4-5477bc30a282\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87232971191406,\n            \"Text\": \"3,117,908\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05488753691315651,\n                    \"Height\": 0.00876093003898859,\n                    \"Left\": 0.5674089193344116,\n                    \"Top\": 0.3352014720439911\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5674089193344116,\n                        \"Y\": 0.335243821144104\n                    },\n                    {\n                        \"X\": 0.6222907304763794,\n                        \"Y\": 0.3352014720439911\n                    },\n                    {\n                        \"X\": 0.6222964525222778,\n                        \"Y\": 0.3439199924468994\n                    },\n                    {\n                        \"X\": 0.5674145221710205,\n                        \"Y\": 0.3439624011516571\n                    }\n                ]\n            },\n            \"Id\": \"94ff1474-2836-4da4-b537-f78c9bce66c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4c4a0302-3e5c-49b0-b75d-47589b3f52ba\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88990020751953,\n            \"Text\": \"2,263,119\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05447995662689209,\n                    \"Height\": 0.008794200606644154,\n                    \"Left\": 0.7142983078956604,\n                    \"Top\": 0.3349705636501312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7142983078956604,\n                        \"Y\": 0.3350125849246979\n                    },\n                    {\n                        \"X\": 0.7687721252441406,\n                        \"Y\": 0.3349705636501312\n                    },\n                    {\n                        \"X\": 0.7687782645225525,\n                        \"Y\": 0.3437226712703705\n                    },\n                    {\n                        \"X\": 0.7143043279647827,\n                        \"Y\": 0.3437647521495819\n                    }\n                ]\n            },\n            \"Id\": \"75bfdb0c-f4b2-496e-b1c7-db3fec4749f2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fa81446f-1e01-4221-bd8e-61da15e7e5d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82518768310547,\n            \"Text\": \"15,705,466\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06143975630402565,\n                    \"Height\": 0.008785377256572247,\n                    \"Left\": 0.8427975177764893,\n                    \"Top\": 0.3347721993923187\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8427975177764893,\n                        \"Y\": 0.33481961488723755\n                    },\n                    {\n                        \"X\": 0.9042307734489441,\n                        \"Y\": 0.3347721993923187\n                    },\n                    {\n                        \"X\": 0.9042372703552246,\n                        \"Y\": 0.34351012110710144\n                    },\n                    {\n                        \"X\": 0.8428038954734802,\n                        \"Y\": 0.34355759620666504\n                    }\n                ]\n            },\n            \"Id\": \"edfed950-10bd-4439-9fb6-52c8fd2d15bc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"089a64e0-62b0-46e7-870f-18754a3bc3e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92543029785156,\n            \"Text\": \"Total revenues\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08141310513019562,\n                    \"Height\": 0.007861331105232239,\n                    \"Left\": 0.15596874058246613,\n                    \"Top\": 0.3512035310268402\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15596874058246613,\n                        \"Y\": 0.35126644372940063\n                    },\n                    {\n                        \"X\": 0.23737764358520508,\n                        \"Y\": 0.3512035310268402\n                    },\n                    {\n                        \"X\": 0.23738184571266174,\n                        \"Y\": 0.35900190472602844\n                    },\n                    {\n                        \"X\": 0.15597274899482727,\n                        \"Y\": 0.35906487703323364\n                    }\n                ]\n            },\n            \"Id\": \"49f68d33-cf7c-425c-affd-4bc3762980a7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"83d4abd2-5d28-4548-9dca-36b9b57c4c3d\",\n                        \"80053264-1bc9-4177-a642-f95bca898c40\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.68649291992188,\n            \"Text\": \"1,237,900,030\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07820996642112732,\n                    \"Height\": 0.009076613001525402,\n                    \"Left\": 0.4169773459434509,\n                    \"Top\": 0.35092562437057495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4169773459434509,\n                        \"Y\": 0.3509860634803772\n                    },\n                    {\n                        \"X\": 0.49518170952796936,\n                        \"Y\": 0.35092562437057495\n                    },\n                    {\n                        \"X\": 0.49518731236457825,\n                        \"Y\": 0.3599417507648468\n                    },\n                    {\n                        \"X\": 0.4169827103614807,\n                        \"Y\": 0.3600022494792938\n                    }\n                ]\n            },\n            \"Id\": \"fe1a01af-1cfc-4026-a39c-2b4d983c8a97\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3b6ae8a1-45d7-41e5-ab5b-af4c236d1db4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87418365478516,\n            \"Text\": \"316,546,753\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06821949779987335,\n                    \"Height\": 0.008987926878035069,\n                    \"Left\": 0.5538623929023743,\n                    \"Top\": 0.35079696774482727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5538623929023743,\n                        \"Y\": 0.3508496880531311\n                    },\n                    {\n                        \"X\": 0.6220760345458984,\n                        \"Y\": 0.35079696774482727\n                    },\n                    {\n                        \"X\": 0.6220819354057312,\n                        \"Y\": 0.35973215103149414\n                    },\n                    {\n                        \"X\": 0.5538681149482727,\n                        \"Y\": 0.35978490114212036\n                    }\n                ]\n            },\n            \"Id\": \"26ee2f5e-1ece-4fd5-a4fc-78479f4e957a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2f641ead-8221-407e-b585-52420e94a671\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8182601928711,\n            \"Text\": \"107,855,429\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06754354387521744,\n                    \"Height\": 0.008973279967904091,\n                    \"Left\": 0.7014420032501221,\n                    \"Top\": 0.35059449076652527\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7014420032501221,\n                        \"Y\": 0.3506466746330261\n                    },\n                    {\n                        \"X\": 0.7689792513847351,\n                        \"Y\": 0.35059449076652527\n                    },\n                    {\n                        \"X\": 0.7689855694770813,\n                        \"Y\": 0.35951554775238037\n                    },\n                    {\n                        \"X\": 0.7014481425285339,\n                        \"Y\": 0.3595677614212036\n                    }\n                ]\n            },\n            \"Id\": \"9fdad767-7ed8-4726-a97f-1c9244eab04a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"904b9957-bd58-4d84-81d2-ae7b0d2c78d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76786041259766,\n            \"Text\": \"1,662,302,212\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07833139598369598,\n                    \"Height\": 0.008900357410311699,\n                    \"Left\": 0.8259252309799194,\n                    \"Top\": 0.35045126080513\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8259252309799194,\n                        \"Y\": 0.3505117893218994\n                    },\n                    {\n                        \"X\": 0.9042500257492065,\n                        \"Y\": 0.35045126080513\n                    },\n                    {\n                        \"X\": 0.9042566418647766,\n                        \"Y\": 0.35929104685783386\n                    },\n                    {\n                        \"X\": 0.8259316086769104,\n                        \"Y\": 0.35935160517692566\n                    }\n                ]\n            },\n            \"Id\": \"194f5211-08d8-42fa-a6ba-5c36f1f7e13e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"84b37f9c-3b2d-4f66-acd2-351687188610\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76721954345703,\n            \"Text\": \"EXPENDITURES\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08309381455183029,\n                    \"Height\": 0.007508025970309973,\n                    \"Left\": 0.10977599024772644,\n                    \"Top\": 0.3814193308353424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10977599024772644,\n                        \"Y\": 0.3814837336540222\n                    },\n                    {\n                        \"X\": 0.19286589324474335,\n                        \"Y\": 0.3814193308353424\n                    },\n                    {\n                        \"X\": 0.19286979734897614,\n                        \"Y\": 0.3888629376888275\n                    },\n                    {\n                        \"X\": 0.10977970063686371,\n                        \"Y\": 0.3889273703098297\n                    }\n                ]\n            },\n            \"Id\": \"f6e7cfa0-e3c4-40dc-ba16-f4ea39eb8893\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ccba9da-4850-4837-9e61-ea1be2e3bc76\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.881591796875,\n            \"Text\": \"Customer satisfaction and management\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21855296194553375,\n                    \"Height\": 0.00957050733268261,\n                    \"Left\": 0.1280674934387207,\n                    \"Top\": 0.3946925401687622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1280674934387207,\n                        \"Y\": 0.3948620855808258\n                    },\n                    {\n                        \"X\": 0.3466150760650635,\n                        \"Y\": 0.3946925401687622\n                    },\n                    {\n                        \"X\": 0.34662047028541565,\n                        \"Y\": 0.4040933847427368\n                    },\n                    {\n                        \"X\": 0.12807224690914154,\n                        \"Y\": 0.40426304936408997\n                    }\n                ]\n            },\n            \"Id\": \"6f696479-b179-4acf-a927-71fa75754cc5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4998e6fc-c2dd-44eb-99e8-65f67048298b\",\n                        \"80ec2a41-d3fd-4de9-b91c-4459467f0301\",\n                        \"f9440d2d-e40c-433c-b3bb-cf227aa0f095\",\n                        \"7f7e295b-555d-4bd4-bd3d-ba845f0c0147\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7484359741211,\n            \"Text\": \"24,626,613\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06114169582724571,\n                    \"Height\": 0.00902999471873045,\n                    \"Left\": 0.4335375428199768,\n                    \"Top\": 0.39453989267349243\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4335375428199768,\n                        \"Y\": 0.39458730816841125\n                    },\n                    {\n                        \"X\": 0.4946736693382263,\n                        \"Y\": 0.39453989267349243\n                    },\n                    {\n                        \"X\": 0.4946792423725128,\n                        \"Y\": 0.40352240204811096\n                    },\n                    {\n                        \"X\": 0.433542937040329,\n                        \"Y\": 0.40356987714767456\n                    }\n                ]\n            },\n            \"Id\": \"75e2dd1a-afaf-480b-b976-0665feee7f7c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5c0794e2-e7de-4ebd-b891-5c8a688342b1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.0195083618164,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0045825219713151455,\n                    \"Height\": 0.0019714105874300003,\n                    \"Left\": 0.6179372668266296,\n                    \"Top\": 0.3980063796043396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6179372668266296,\n                        \"Y\": 0.39800992608070374\n                    },\n                    {\n                        \"X\": 0.6225185394287109,\n                        \"Y\": 0.3980063796043396\n                    },\n                    {\n                        \"X\": 0.6225197911262512,\n                        \"Y\": 0.3999742269515991\n                    },\n                    {\n                        \"X\": 0.6179385781288147,\n                        \"Y\": 0.39997777342796326\n                    }\n                ]\n            },\n            \"Id\": \"798c0de2-5d32-469f-8f06-2a643b0c87dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"be75689a-403c-4a90-9346-c9bd182b8ce5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.58294677734375,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004617590457201004,\n                    \"Height\": 0.0019673684146255255,\n                    \"Left\": 0.7647848725318909,\n                    \"Top\": 0.3977658152580261\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7647848725318909,\n                        \"Y\": 0.39776939153671265\n                    },\n                    {\n                        \"X\": 0.7694010734558105,\n                        \"Y\": 0.3977658152580261\n                    },\n                    {\n                        \"X\": 0.7694025039672852,\n                        \"Y\": 0.3997296094894409\n                    },\n                    {\n                        \"X\": 0.7647862434387207,\n                        \"Y\": 0.39973318576812744\n                    }\n                ]\n            },\n            \"Id\": \"8b78a6b5-78ae-4379-be9d-4b6cddeeaafa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"81f00998-4173-44d7-be90-ae304fe44109\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77699279785156,\n            \"Text\": \"24,626,613\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06161537021398544,\n                    \"Height\": 0.008863551542162895,\n                    \"Left\": 0.8424966931343079,\n                    \"Top\": 0.3940763771533966\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8424966931343079,\n                        \"Y\": 0.3941241502761841\n                    },\n                    {\n                        \"X\": 0.9041054844856262,\n                        \"Y\": 0.3940763771533966\n                    },\n                    {\n                        \"X\": 0.9041120409965515,\n                        \"Y\": 0.4028920829296112\n                    },\n                    {\n                        \"X\": 0.8425030708312988,\n                        \"Y\": 0.40293991565704346\n                    }\n                ]\n            },\n            \"Id\": \"bdd3f21a-3f62-4e3a-aad6-17016465b941\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0755c5dc-2557-4717-9702-36c056fe13ae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84993743896484,\n            \"Text\": \"Administrative services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12735174596309662,\n                    \"Height\": 0.008222077041864395,\n                    \"Left\": 0.12769930064678192,\n                    \"Top\": 0.40848463773727417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12769930064678192,\n                        \"Y\": 0.40858355164527893\n                    },\n                    {\n                        \"X\": 0.25504663586616516,\n                        \"Y\": 0.40848463773727417\n                    },\n                    {\n                        \"X\": 0.25505104660987854,\n                        \"Y\": 0.41660773754119873\n                    },\n                    {\n                        \"X\": 0.12770339846611023,\n                        \"Y\": 0.41670671105384827\n                    }\n                ]\n            },\n            \"Id\": \"4c43c831-9831-4fb0-a41f-2033882423be\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7a7a58b5-a926-4a79-a439-98b7fb99c28c\",\n                        \"08365279-a3c9-4c6c-8dbb-53d20b6b3954\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81387329101562,\n            \"Text\": \"90,355,707\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061193421483039856,\n                    \"Height\": 0.009041042067110538,\n                    \"Left\": 0.43380048871040344,\n                    \"Top\": 0.40831053256988525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43380048871040344,\n                        \"Y\": 0.40835803747177124\n                    },\n                    {\n                        \"X\": 0.494988352060318,\n                        \"Y\": 0.40831053256988525\n                    },\n                    {\n                        \"X\": 0.4949939250946045,\n                        \"Y\": 0.41730400919914246\n                    },\n                    {\n                        \"X\": 0.4338058829307556,\n                        \"Y\": 0.4173515737056732\n                    }\n                ]\n            },\n            \"Id\": \"42053ad5-6246-4cd1-8a7c-4dc919fee605\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2ec4a6ab-bf0d-49e6-9725-d2b2c799d066\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.96580505371094,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004493967164307833,\n                    \"Height\": 0.0019724168814718723,\n                    \"Left\": 0.61800217628479,\n                    \"Top\": 0.4117891788482666\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.61800217628479,\n                        \"Y\": 0.41179269552230835\n                    },\n                    {\n                        \"X\": 0.6224948167800903,\n                        \"Y\": 0.4117891788482666\n                    },\n                    {\n                        \"X\": 0.6224961280822754,\n                        \"Y\": 0.41375812888145447\n                    },\n                    {\n                        \"X\": 0.6180034279823303,\n                        \"Y\": 0.41376161575317383\n                    }\n                ]\n            },\n            \"Id\": \"21bdab40-3c16-4482-910c-0b392f496fc2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ad6df55d-b5e5-4586-981c-0d8bd665109e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.33776092529297,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00464412709698081,\n                    \"Height\": 0.002042135689407587,\n                    \"Left\": 0.76481032371521,\n                    \"Top\": 0.4115283191204071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.76481032371521,\n                        \"Y\": 0.411531925201416\n                    },\n                    {\n                        \"X\": 0.7694530487060547,\n                        \"Y\": 0.4115283191204071\n                    },\n                    {\n                        \"X\": 0.7694544792175293,\n                        \"Y\": 0.41356685757637024\n                    },\n                    {\n                        \"X\": 0.7648117542266846,\n                        \"Y\": 0.41357046365737915\n                    }\n                ]\n            },\n            \"Id\": \"fe75f29a-a3ce-44fc-ac54-d99f059e3d11\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6f508ed5-fcf6-404e-997e-f12f41c14d87\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.74755859375,\n            \"Text\": \"90,355,707\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06174379959702492,\n                    \"Height\": 0.008868054486811161,\n                    \"Left\": 0.8423752188682556,\n                    \"Top\": 0.4078310430049896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8423752188682556,\n                        \"Y\": 0.4078789949417114\n                    },\n                    {\n                        \"X\": 0.9041124582290649,\n                        \"Y\": 0.4078310430049896\n                    },\n                    {\n                        \"X\": 0.9041190147399902,\n                        \"Y\": 0.4166510999202728\n                    },\n                    {\n                        \"X\": 0.8423816561698914,\n                        \"Y\": 0.416699081659317\n                    }\n                ]\n            },\n            \"Id\": \"5f798aa7-2f45-490a-b397-27a3fff41515\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"59b7c8a3-c612-41a8-91d8-b25dead2a34e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80918884277344,\n            \"Text\": \"Financial services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09471344202756882,\n                    \"Height\": 0.007891589775681496,\n                    \"Left\": 0.128530353307724,\n                    \"Top\": 0.4225679636001587\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.128530353307724,\n                        \"Y\": 0.4226416349411011\n                    },\n                    {\n                        \"X\": 0.22323961555957794,\n                        \"Y\": 0.4225679636001587\n                    },\n                    {\n                        \"X\": 0.22324378788471222,\n                        \"Y\": 0.43038585782051086\n                    },\n                    {\n                        \"X\": 0.12853430211544037,\n                        \"Y\": 0.43045955896377563\n                    }\n                ]\n            },\n            \"Id\": \"6ab606a9-4994-4623-bad4-f91cf068b345\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6a7a7d47-74a5-4970-808b-7b47941a5c51\",\n                        \"0f109464-bda9-4401-9c20-67f70e798417\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87774658203125,\n            \"Text\": \"17,458,897\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061142366379499435,\n                    \"Height\": 0.00892188772559166,\n                    \"Left\": 0.4341004490852356,\n                    \"Top\": 0.42210081219673157\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4341004490852356,\n                        \"Y\": 0.42214834690093994\n                    },\n                    {\n                        \"X\": 0.4952372908592224,\n                        \"Y\": 0.42210081219673157\n                    },\n                    {\n                        \"X\": 0.49524280428886414,\n                        \"Y\": 0.4309751093387604\n                    },\n                    {\n                        \"X\": 0.4341057538986206,\n                        \"Y\": 0.4310227036476135\n                    }\n                ]\n            },\n            \"Id\": \"c610b091-a385-4408-a567-39e9f8381346\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"af9af8bf-c0a3-4e12-9fe5-eb0479d1478b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.16438293457031,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004476399626582861,\n                    \"Height\": 0.0019491242710500956,\n                    \"Left\": 0.6181684136390686,\n                    \"Top\": 0.42563140392303467\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181684136390686,\n                        \"Y\": 0.42563486099243164\n                    },\n                    {\n                        \"X\": 0.6226435303688049,\n                        \"Y\": 0.42563140392303467\n                    },\n                    {\n                        \"X\": 0.6226447820663452,\n                        \"Y\": 0.42757704854011536\n                    },\n                    {\n                        \"X\": 0.6181696653366089,\n                        \"Y\": 0.42758050560951233\n                    }\n                ]\n            },\n            \"Id\": \"af40127b-7083-487c-a6c7-a9fd5afb782a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"162d892a-5c10-41ce-8ac7-a37a7fd6098f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.89962005615234,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004534965381026268,\n                    \"Height\": 0.0019054911099374294,\n                    \"Left\": 0.7649404406547546,\n                    \"Top\": 0.4255006015300751\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7649404406547546,\n                        \"Y\": 0.4255041182041168\n                    },\n                    {\n                        \"X\": 0.7694740891456604,\n                        \"Y\": 0.4255006015300751\n                    },\n                    {\n                        \"X\": 0.7694754004478455,\n                        \"Y\": 0.4274025559425354\n                    },\n                    {\n                        \"X\": 0.7649418115615845,\n                        \"Y\": 0.42740610241889954\n                    }\n                ]\n            },\n            \"Id\": \"c73891a5-ead5-4d65-91af-fd56b85f96b3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4ac4349-d5b3-4ae6-8e49-7ffaf111e58e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84112548828125,\n            \"Text\": \"17,458,897\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06164707988500595,\n                    \"Height\": 0.008840817958116531,\n                    \"Left\": 0.8427942395210266,\n                    \"Top\": 0.4216077923774719\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8427942395210266,\n                        \"Y\": 0.42165571451187134\n                    },\n                    {\n                        \"X\": 0.9044348001480103,\n                        \"Y\": 0.4216077923774719\n                    },\n                    {\n                        \"X\": 0.9044413566589355,\n                        \"Y\": 0.43040063977241516\n                    },\n                    {\n                        \"X\": 0.8428006768226624,\n                        \"Y\": 0.43044862151145935\n                    }\n                ]\n            },\n            \"Id\": \"3914394c-07ee-4539-b06e-d7dcd8356dd3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d68257a0-73be-4bdb-b69b-6b49674ee591\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91586303710938,\n            \"Text\": \"Land use and environmental services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20206989347934723,\n                    \"Height\": 0.007926583290100098,\n                    \"Left\": 0.12840668857097626,\n                    \"Top\": 0.4361574351787567\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12840668857097626,\n                        \"Y\": 0.43631473183631897\n                    },\n                    {\n                        \"X\": 0.3304721713066101,\n                        \"Y\": 0.4361574351787567\n                    },\n                    {\n                        \"X\": 0.3304765820503235,\n                        \"Y\": 0.443926602602005\n                    },\n                    {\n                        \"X\": 0.12841060757637024,\n                        \"Y\": 0.4440840184688568\n                    }\n                ]\n            },\n            \"Id\": \"5aa1ac9d-5e97-43ec-9c28-8298c45921b8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e5bcfe0d-f22b-4649-a2d4-4cdb6c0e65ec\",\n                        \"b1b42bed-e204-41bb-98cf-7bab0d3810e7\",\n                        \"ad73f1bc-3ed3-43b6-8de9-4a5f5934767a\",\n                        \"7a90d169-3d29-444b-99e0-9e1887a6852e\",\n                        \"e28f3cc7-8d59-48cd-b871-1caf54835798\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89723205566406,\n            \"Text\": \"55,029,706\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061473265290260315,\n                    \"Height\": 0.008966797962784767,\n                    \"Left\": 0.43373212218284607,\n                    \"Top\": 0.43585407733917236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43373212218284607,\n                        \"Y\": 0.4359019100666046\n                    },\n                    {\n                        \"X\": 0.49519985914230347,\n                        \"Y\": 0.43585407733917236\n                    },\n                    {\n                        \"X\": 0.4952053725719452,\n                        \"Y\": 0.44477298855781555\n                    },\n                    {\n                        \"X\": 0.43373745679855347,\n                        \"Y\": 0.4448208808898926\n                    }\n                ]\n            },\n            \"Id\": \"ffa4879d-9585-4605-bcad-0e78935b58bd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"74be80fa-7cd0-44ad-83ff-e0f3be6a4c6e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.99293518066406,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0045215715654194355,\n                    \"Height\": 0.002009761054068804,\n                    \"Left\": 0.618093729019165,\n                    \"Top\": 0.43934503197669983\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.618093729019165,\n                        \"Y\": 0.4393485486507416\n                    },\n                    {\n                        \"X\": 0.6226139664649963,\n                        \"Y\": 0.43934503197669983\n                    },\n                    {\n                        \"X\": 0.6226152777671814,\n                        \"Y\": 0.4413512647151947\n                    },\n                    {\n                        \"X\": 0.6180950403213501,\n                        \"Y\": 0.44135478138923645\n                    }\n                ]\n            },\n            \"Id\": \"33f636e1-6415-4db3-b5b6-0738cb236ee8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8a5aca9c-66b9-45b9-a148-be8c04720c3d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8058853149414,\n            \"Text\": \"13,789,663\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.060799166560173035,\n                    \"Height\": 0.008891575038433075,\n                    \"Left\": 0.7082003355026245,\n                    \"Top\": 0.4355665445327759\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7082003355026245,\n                        \"Y\": 0.43561387062072754\n                    },\n                    {\n                        \"X\": 0.7689932584762573,\n                        \"Y\": 0.4355665445327759\n                    },\n                    {\n                        \"X\": 0.7689995169639587,\n                        \"Y\": 0.4444107711315155\n                    },\n                    {\n                        \"X\": 0.7082064151763916,\n                        \"Y\": 0.44445812702178955\n                    }\n                ]\n            },\n            \"Id\": \"e06becf1-6e7a-49f2-908e-3e3b1a829d76\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"31e289e8-02d3-44fa-8ca8-1d06ae580e32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8576431274414,\n            \"Text\": \"68,819,369\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06196644529700279,\n                    \"Height\": 0.008771715685725212,\n                    \"Left\": 0.8423805236816406,\n                    \"Top\": 0.4354189336299896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8423805236816406,\n                        \"Y\": 0.4354671835899353\n                    },\n                    {\n                        \"X\": 0.9043404459953308,\n                        \"Y\": 0.4354189336299896\n                    },\n                    {\n                        \"X\": 0.9043469429016113,\n                        \"Y\": 0.4441424012184143\n                    },\n                    {\n                        \"X\": 0.8423869013786316,\n                        \"Y\": 0.44419065117836\n                    }\n                ]\n            },\n            \"Id\": \"f0d6ac5a-799e-48df-90ce-61383f21e022\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ecfcd3c-fce7-41dc-a7b8-855e3cc8a72a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90840911865234,\n            \"Text\": \"Community services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11029630899429321,\n                    \"Height\": 0.009370088577270508,\n                    \"Left\": 0.12837150692939758,\n                    \"Top\": 0.45017945766448975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12837150692939758,\n                        \"Y\": 0.45026543736457825\n                    },\n                    {\n                        \"X\": 0.23866282403469086,\n                        \"Y\": 0.45017945766448975\n                    },\n                    {\n                        \"X\": 0.238667830824852,\n                        \"Y\": 0.459463506937027\n                    },\n                    {\n                        \"X\": 0.12837620079517365,\n                        \"Y\": 0.45954954624176025\n                    }\n                ]\n            },\n            \"Id\": \"19fc9e6e-4e92-4065-9722-0ccdb7551a6a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fb63eb83-6ab6-46ca-a228-f8fdf9706c11\",\n                        \"9d502d4c-a064-4c81-88fe-bc3c1fed9579\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89038848876953,\n            \"Text\": \"76,945,546\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06143046170473099,\n                    \"Height\": 0.008914277888834476,\n                    \"Left\": 0.43389421701431274,\n                    \"Top\": 0.4497295916080475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43389421701431274,\n                        \"Y\": 0.4497774839401245\n                    },\n                    {\n                        \"X\": 0.4953191876411438,\n                        \"Y\": 0.4497295916080475\n                    },\n                    {\n                        \"X\": 0.49532467126846313,\n                        \"Y\": 0.45859596133232117\n                    },\n                    {\n                        \"X\": 0.43389952182769775,\n                        \"Y\": 0.4586438834667206\n                    }\n                ]\n            },\n            \"Id\": \"77aceb8a-9c7a-4b08-8e18-f4079fa51c43\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4addb878-6a26-48da-bc66-87ce93a58225\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.75738525390625,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0043775043450295925,\n                    \"Height\": 0.002013636752963066,\n                    \"Left\": 0.6181724667549133,\n                    \"Top\": 0.453092485666275\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181724667549133,\n                        \"Y\": 0.4530959129333496\n                    },\n                    {\n                        \"X\": 0.6225486397743225,\n                        \"Y\": 0.453092485666275\n                    },\n                    {\n                        \"X\": 0.6225499510765076,\n                        \"Y\": 0.45510271191596985\n                    },\n                    {\n                        \"X\": 0.6181737780570984,\n                        \"Y\": 0.45510613918304443\n                    }\n                ]\n            },\n            \"Id\": \"c6a9fc1a-8e56-480c-a871-2afda07d26bc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"042c871f-9aea-49f6-a315-6eaac601f51d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.18665313720703,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0045947302132844925,\n                    \"Height\": 0.0019826083444058895,\n                    \"Left\": 0.7648937106132507,\n                    \"Top\": 0.45294782519340515\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7648937106132507,\n                        \"Y\": 0.4529514014720917\n                    },\n                    {\n                        \"X\": 0.7694870233535767,\n                        \"Y\": 0.45294782519340515\n                    },\n                    {\n                        \"X\": 0.7694884538650513,\n                        \"Y\": 0.45492684841156006\n                    },\n                    {\n                        \"X\": 0.7648950815200806,\n                        \"Y\": 0.4549304246902466\n                    }\n                ]\n            },\n            \"Id\": \"640001ad-d006-427a-a935-9a01eb37d439\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"66f0befe-800d-4270-850c-62e7f2f3c5c6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86654663085938,\n            \"Text\": \"76,945,546\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.062085557729005814,\n                    \"Height\": 0.008778293617069721,\n                    \"Left\": 0.8426583409309387,\n                    \"Top\": 0.44930359721183777\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8426583409309387,\n                        \"Y\": 0.449351966381073\n                    },\n                    {\n                        \"X\": 0.9047374129295349,\n                        \"Y\": 0.44930359721183777\n                    },\n                    {\n                        \"X\": 0.9047439098358154,\n                        \"Y\": 0.4580334424972534\n                    },\n                    {\n                        \"X\": 0.8426647186279297,\n                        \"Y\": 0.4580818712711334\n                    }\n                ]\n            },\n            \"Id\": \"b13efedd-3047-491f-b4d1-6c475efea733\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23c6c849-08ce-4010-ac20-3fa46c516e68\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94117736816406,\n            \"Text\": \"Detention and court support services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20302580296993256,\n                    \"Height\": 0.009666265919804573,\n                    \"Left\": 0.1286107748746872,\n                    \"Top\": 0.46365073323249817\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1286107748746872,\n                        \"Y\": 0.46380916237831116\n                    },\n                    {\n                        \"X\": 0.3316311836242676,\n                        \"Y\": 0.46365073323249817\n                    },\n                    {\n                        \"X\": 0.33163657784461975,\n                        \"Y\": 0.47315844893455505\n                    },\n                    {\n                        \"X\": 0.1286155879497528,\n                        \"Y\": 0.4733169972896576\n                    }\n                ]\n            },\n            \"Id\": \"57d2a48f-aa70-4224-be0d-df2b674ea644\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c683cda4-26b1-4d8c-8697-e39031f7ec38\",\n                        \"88c6dea5-ce7c-4a69-8947-4c8e28093f63\",\n                        \"ba9385d6-7634-4fc8-a3ca-38ad1bb9acbc\",\n                        \"dfa32872-8fee-4bb9-811c-05e72b614a00\",\n                        \"1972d744-7468-433e-ba70-6a011aab4fe4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87309265136719,\n            \"Text\": \"145,417,680\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06828771531581879,\n                    \"Height\": 0.008872469887137413,\n                    \"Left\": 0.42726999521255493,\n                    \"Top\": 0.4635307788848877\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42726999521255493,\n                        \"Y\": 0.4635840654373169\n                    },\n                    {\n                        \"X\": 0.49555227160453796,\n                        \"Y\": 0.4635307788848877\n                    },\n                    {\n                        \"X\": 0.4955577254295349,\n                        \"Y\": 0.47234994173049927\n                    },\n                    {\n                        \"X\": 0.42727527022361755,\n                        \"Y\": 0.47240325808525085\n                    }\n                ]\n            },\n            \"Id\": \"5a18a7f6-8d2a-4fdd-8c05-a344752ea680\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5ee6de6-de9d-440d-8054-9dfcb20b8b3e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.73054504394531,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004456529393792152,\n                    \"Height\": 0.0019656759686768055,\n                    \"Left\": 0.6181528568267822,\n                    \"Top\": 0.4668717384338379\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181528568267822,\n                        \"Y\": 0.46687522530555725\n                    },\n                    {\n                        \"X\": 0.6226080656051636,\n                        \"Y\": 0.4668717384338379\n                    },\n                    {\n                        \"X\": 0.6226093769073486,\n                        \"Y\": 0.46883392333984375\n                    },\n                    {\n                        \"X\": 0.6181541681289673,\n                        \"Y\": 0.4688374102115631\n                    }\n                ]\n            },\n            \"Id\": \"ad0e2fb9-1217-44fa-9b55-f877fda61c9e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7919f587-bef4-4462-b74a-c1852dedbffd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.10711669921875,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004429984837770462,\n                    \"Height\": 0.0016457533929497004,\n                    \"Left\": 0.7651426792144775,\n                    \"Top\": 0.46677637100219727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7651426792144775,\n                        \"Y\": 0.46677982807159424\n                    },\n                    {\n                        \"X\": 0.7695715427398682,\n                        \"Y\": 0.46677637100219727\n                    },\n                    {\n                        \"X\": 0.7695726752281189,\n                        \"Y\": 0.468418687582016\n                    },\n                    {\n                        \"X\": 0.765143871307373,\n                        \"Y\": 0.46842214465141296\n                    }\n                ]\n            },\n            \"Id\": \"1a01097b-0f3a-45bc-aa21-116fb40e0066\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6e41a9a4-bb74-46be-9d70-3753d5e850e9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.79496002197266,\n            \"Text\": \"145,417,680\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06857027113437653,\n                    \"Height\": 0.008935715071856976,\n                    \"Left\": 0.8363608121871948,\n                    \"Top\": 0.46268966794013977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8363608121871948,\n                        \"Y\": 0.4627431631088257\n                    },\n                    {\n                        \"X\": 0.9049244523048401,\n                        \"Y\": 0.46268966794013977\n                    },\n                    {\n                        \"X\": 0.9049311280250549,\n                        \"Y\": 0.47157183289527893\n                    },\n                    {\n                        \"X\": 0.8363673090934753,\n                        \"Y\": 0.4716253876686096\n                    }\n                ]\n            },\n            \"Id\": \"0ae94502-9b18-4a9b-a5e2-0d78358d7cce\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5d899d4-ddeb-4c34-a3ba-3d2b96580d22\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93473052978516,\n            \"Text\": \"Health and human services\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1474841684103012,\n                    \"Height\": 0.00804012082517147,\n                    \"Left\": 0.12876568734645844,\n                    \"Top\": 0.477390855550766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12876568734645844,\n                        \"Y\": 0.4775060713291168\n                    },\n                    {\n                        \"X\": 0.27624550461769104,\n                        \"Y\": 0.477390855550766\n                    },\n                    {\n                        \"X\": 0.27624985575675964,\n                        \"Y\": 0.4853156805038452\n                    },\n                    {\n                        \"X\": 0.1287696808576584,\n                        \"Y\": 0.4854309856891632\n                    }\n                ]\n            },\n            \"Id\": \"06174a78-61ed-4b1e-b6b2-054bc40b58ed\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"89325d09-a0ee-4e1d-88db-6322bbe863c0\",\n                        \"b0bf8d55-cef9-4f48-a72e-0c2fde6c3403\",\n                        \"6d347d54-3501-4d3e-927a-e9488329cf88\",\n                        \"1ab7fac3-bb95-4fc5-afa8-28e5a2380fa4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91486358642578,\n            \"Text\": \"264,849,818\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06831524521112442,\n                    \"Height\": 0.008963032625615597,\n                    \"Left\": 0.42701512575149536,\n                    \"Top\": 0.4771457314491272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42701512575149536,\n                        \"Y\": 0.47719910740852356\n                    },\n                    {\n                        \"X\": 0.49532487988471985,\n                        \"Y\": 0.4771457314491272\n                    },\n                    {\n                        \"X\": 0.4953303933143616,\n                        \"Y\": 0.4860553741455078\n                    },\n                    {\n                        \"X\": 0.42702046036720276,\n                        \"Y\": 0.48610877990722656\n                    }\n                ]\n            },\n            \"Id\": \"56199cb8-50c1-412d-9b87-9a03c9bdef72\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"87f09549-8368-4e8c-a07d-f10f9b6d5091\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.07032012939453,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004467738326638937,\n                    \"Height\": 0.001966870855540037,\n                    \"Left\": 0.6182785034179688,\n                    \"Top\": 0.4807516038417816\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6182785034179688,\n                        \"Y\": 0.480755090713501\n                    },\n                    {\n                        \"X\": 0.6227449774742126,\n                        \"Y\": 0.4807516038417816\n                    },\n                    {\n                        \"X\": 0.6227462887763977,\n                        \"Y\": 0.482714980840683\n                    },\n                    {\n                        \"X\": 0.6182798147201538,\n                        \"Y\": 0.48271846771240234\n                    }\n                ]\n            },\n            \"Id\": \"9256f6ea-3989-423c-8511-8b278f2f8938\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7a00a80-e327-4799-989d-e517005643a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.31015014648438,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004351237788796425,\n                    \"Height\": 0.001825291896238923,\n                    \"Left\": 0.765178382396698,\n                    \"Top\": 0.4806697368621826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.765178382396698,\n                        \"Y\": 0.4806731343269348\n                    },\n                    {\n                        \"X\": 0.769528329372406,\n                        \"Y\": 0.4806697368621826\n                    },\n                    {\n                        \"X\": 0.7695295810699463,\n                        \"Y\": 0.4824916124343872\n                    },\n                    {\n                        \"X\": 0.7651796340942383,\n                        \"Y\": 0.4824950098991394\n                    }\n                ]\n            },\n            \"Id\": \"dbaa9112-f40e-429e-9253-f1bde96d5055\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4723bf44-24ba-4aae-a9ae-bf3db6906f6d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94271850585938,\n            \"Text\": \"264,849,818\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06836804002523422,\n                    \"Height\": 0.008845213800668716,\n                    \"Left\": 0.8362413048744202,\n                    \"Top\": 0.47665518522262573\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8362413048744202,\n                        \"Y\": 0.4767085909843445\n                    },\n                    {\n                        \"X\": 0.9046027660369873,\n                        \"Y\": 0.47665518522262573\n                    },\n                    {\n                        \"X\": 0.9046093225479126,\n                        \"Y\": 0.485446959733963\n                    },\n                    {\n                        \"X\": 0.8362476825714111,\n                        \"Y\": 0.48550039529800415\n                    }\n                ]\n            },\n            \"Id\": \"4eb6e7cd-1b43-4e64-8dcd-9d7c822509f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"86f85a85-ea72-4282-93fb-4b515246e973\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9412612915039,\n            \"Text\": \"Business partners\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09632739424705505,\n                    \"Height\": 0.009364531375467777,\n                    \"Left\": 0.12867756187915802,\n                    \"Top\": 0.491473525762558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12867756187915802,\n                        \"Y\": 0.4915488660335541\n                    },\n                    {\n                        \"X\": 0.22499997913837433,\n                        \"Y\": 0.491473525762558\n                    },\n                    {\n                        \"X\": 0.22500495612621307,\n                        \"Y\": 0.5007626414299011\n                    },\n                    {\n                        \"X\": 0.1286822408437729,\n                        \"Y\": 0.500838041305542\n                    }\n                ]\n            },\n            \"Id\": \"18d50407-7011-4aec-95ce-99156dda3360\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"579b96ed-2861-483c-81ea-a2982e915620\",\n                        \"bfec6747-b5bd-41b1-a9bb-a4e4259d790f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86595153808594,\n            \"Text\": \"485,349,487\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06843872368335724,\n                    \"Height\": 0.008839272893965244,\n                    \"Left\": 0.4267687499523163,\n                    \"Top\": 0.4910433888435364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4267687499523163,\n                        \"Y\": 0.4910969138145447\n                    },\n                    {\n                        \"X\": 0.49520203471183777,\n                        \"Y\": 0.4910433888435364\n                    },\n                    {\n                        \"X\": 0.4952074885368347,\n                        \"Y\": 0.49982908368110657\n                    },\n                    {\n                        \"X\": 0.4267739951610565,\n                        \"Y\": 0.49988263845443726\n                    }\n                ]\n            },\n            \"Id\": \"d560d004-a207-4fb5-9291-19366c150532\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8438a4c1-7b6f-4993-a635-ec579a31bb24\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.44761657714844,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004592943470925093,\n                    \"Height\": 0.0020125380251556635,\n                    \"Left\": 0.6181437969207764,\n                    \"Top\": 0.49450525641441345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181437969207764,\n                        \"Y\": 0.4945088326931\n                    },\n                    {\n                        \"X\": 0.6227353811264038,\n                        \"Y\": 0.49450525641441345\n                    },\n                    {\n                        \"X\": 0.6227366924285889,\n                        \"Y\": 0.4965142011642456\n                    },\n                    {\n                        \"X\": 0.6181451082229614,\n                        \"Y\": 0.49651777744293213\n                    }\n                ]\n            },\n            \"Id\": \"a3453f97-3218-4cd5-9a98-c40534ec0296\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"eb26f540-a245-4a3b-a714-4467832699db\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86276245117188,\n            \"Text\": \"55,915,981\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061320237815380096,\n                    \"Height\": 0.008949876762926579,\n                    \"Left\": 0.707628071308136,\n                    \"Top\": 0.4907020926475525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.707628071308136,\n                        \"Y\": 0.4907500743865967\n                    },\n                    {\n                        \"X\": 0.7689420580863953,\n                        \"Y\": 0.4907020926475525\n                    },\n                    {\n                        \"X\": 0.7689483165740967,\n                        \"Y\": 0.4996039867401123\n                    },\n                    {\n                        \"X\": 0.7076341509819031,\n                        \"Y\": 0.4996519684791565\n                    }\n                ]\n            },\n            \"Id\": \"e688be64-d452-4ea6-ae50-8fb68820f9cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ea1456c-5c3e-474d-a189-66e0f024ee7a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89598083496094,\n            \"Text\": \"541,265,468\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0684155523777008,\n                    \"Height\": 0.008783255703747272,\n                    \"Left\": 0.8360307812690735,\n                    \"Top\": 0.4905514717102051\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8360307812690735,\n                        \"Y\": 0.490604966878891\n                    },\n                    {\n                        \"X\": 0.9044398069381714,\n                        \"Y\": 0.4905514717102051\n                    },\n                    {\n                        \"X\": 0.9044463038444519,\n                        \"Y\": 0.4992811679840088\n                    },\n                    {\n                        \"X\": 0.8360370993614197,\n                        \"Y\": 0.4993347227573395\n                    }\n                ]\n            },\n            \"Id\": \"39427cf6-1047-466b-ad5c-31ddca786497\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23f06bcd-0b34-4c7a-81f9-76ca2c3a8d41\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94983673095703,\n            \"Text\": \"Public safety\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06915886700153351,\n                    \"Height\": 0.009609398432075977,\n                    \"Left\": 0.12877409160137177,\n                    \"Top\": 0.5049964189529419\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12877409160137177,\n                        \"Y\": 0.505050539970398\n                    },\n                    {\n                        \"X\": 0.19792793691158295,\n                        \"Y\": 0.5049964189529419\n                    },\n                    {\n                        \"X\": 0.19793295860290527,\n                        \"Y\": 0.51455157995224\n                    },\n                    {\n                        \"X\": 0.12877891957759857,\n                        \"Y\": 0.5146058201789856\n                    }\n                ]\n            },\n            \"Id\": \"b2ceb605-0128-411d-86a6-e2319cd70243\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d64d80ce-1916-46e1-a54a-2f109b9b5753\",\n                        \"17c54977-1fff-4bed-9a8f-a4eeb8956bfb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 94.13687896728516,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004658726043999195,\n                    \"Height\": 0.002002031309530139,\n                    \"Left\": 0.4908393323421478,\n                    \"Top\": 0.5082722306251526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4908393323421478,\n                        \"Y\": 0.5082758665084839\n                    },\n                    {\n                        \"X\": 0.49549680948257446,\n                        \"Y\": 0.5082722306251526\n                    },\n                    {\n                        \"X\": 0.49549803137779236,\n                        \"Y\": 0.5102706551551819\n                    },\n                    {\n                        \"X\": 0.4908405542373657,\n                        \"Y\": 0.5102742910385132\n                    }\n                ]\n            },\n            \"Id\": \"3ec74d7e-c067-4bef-b51d-5f88d921a369\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f15401b8-758c-4c38-a4ae-151d17eeba52\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.19110107421875,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004602587316185236,\n                    \"Height\": 0.00203242851421237,\n                    \"Left\": 0.6182270646095276,\n                    \"Top\": 0.5082060098648071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6182270646095276,\n                        \"Y\": 0.5082096457481384\n                    },\n                    {\n                        \"X\": 0.6228283643722534,\n                        \"Y\": 0.5082060098648071\n                    },\n                    {\n                        \"X\": 0.6228296756744385,\n                        \"Y\": 0.5102348327636719\n                    },\n                    {\n                        \"X\": 0.6182284355163574,\n                        \"Y\": 0.5102384686470032\n                    }\n                ]\n            },\n            \"Id\": \"81041b46-31bf-41c5-b866-8ad29159ac05\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7dbca7b-537e-4ac6-a89f-bef97c716dbf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92198944091797,\n            \"Text\": \"23,151,531\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0610460489988327,\n                    \"Height\": 0.008886880241334438,\n                    \"Left\": 0.7079380750656128,\n                    \"Top\": 0.5044271349906921\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7079380750656128,\n                        \"Y\": 0.5044748783111572\n                    },\n                    {\n                        \"X\": 0.7689778804779053,\n                        \"Y\": 0.5044271349906921\n                    },\n                    {\n                        \"X\": 0.7689841389656067,\n                        \"Y\": 0.5132661461830139\n                    },\n                    {\n                        \"X\": 0.7079441547393799,\n                        \"Y\": 0.5133140087127686\n                    }\n                ]\n            },\n            \"Id\": \"7e5614f6-316a-49c9-95e6-9ba2c3091891\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e895d3e9-4360-4e8c-b2e7-b3fca5864a32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90643310546875,\n            \"Text\": \"23,151,531\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06154419854283333,\n                    \"Height\": 0.008872821927070618,\n                    \"Left\": 0.8426851034164429,\n                    \"Top\": 0.5043008923530579\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8426851034164429,\n                        \"Y\": 0.5043490529060364\n                    },\n                    {\n                        \"X\": 0.9042227268218994,\n                        \"Y\": 0.5043008923530579\n                    },\n                    {\n                        \"X\": 0.9042293429374695,\n                        \"Y\": 0.513125479221344\n                    },\n                    {\n                        \"X\": 0.8426915407180786,\n                        \"Y\": 0.5131736993789673\n                    }\n                ]\n            },\n            \"Id\": \"49958196-9292-4f4d-bed9-ddb0b09aeb9c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"05028a26-a695-40d7-961c-18c9206b1956\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91345977783203,\n            \"Text\": \"Debt service\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0671829804778099,\n                    \"Height\": 0.008084743283689022,\n                    \"Left\": 0.12874935567378998,\n                    \"Top\": 0.518745481967926\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12874935567378998,\n                        \"Y\": 0.5187981724739075\n                    },\n                    {\n                        \"X\": 0.19592811167240143,\n                        \"Y\": 0.518745481967926\n                    },\n                    {\n                        \"X\": 0.19593234360218048,\n                        \"Y\": 0.5267775058746338\n                    },\n                    {\n                        \"X\": 0.1287534087896347,\n                        \"Y\": 0.52683025598526\n                    }\n                ]\n            },\n            \"Id\": \"3a24c252-acee-4459-81f7-3008c78fa57a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"62f2f901-62dd-4db2-8b21-55fe54babef8\",\n                        \"105e5b6c-1c54-4abe-b931-0f4fd40c1ccc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95729064941406,\n            \"Text\": \"Principal payments\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10397830605506897,\n                    \"Height\": 0.009705141186714172,\n                    \"Left\": 0.14750982820987701,\n                    \"Top\": 0.532558262348175\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14750982820987701,\n                        \"Y\": 0.5326399207115173\n                    },\n                    {\n                        \"X\": 0.25148290395736694,\n                        \"Y\": 0.532558262348175\n                    },\n                    {\n                        \"X\": 0.2514881491661072,\n                        \"Y\": 0.5421817302703857\n                    },\n                    {\n                        \"X\": 0.14751474559307098,\n                        \"Y\": 0.5422634482383728\n                    }\n                ]\n            },\n            \"Id\": \"c3b9c495-b465-4f14-9721-818c668da28c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8754df0f-7dfe-4ba1-a72a-245f0404d1f4\",\n                        \"e6ebc60c-4dc7-4e1a-a5bb-f09316e92bbd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.12694549560547,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004678323399275541,\n                    \"Height\": 0.0019636971410363913,\n                    \"Left\": 0.4909088611602783,\n                    \"Top\": 0.5359533429145813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4909088611602783,\n                        \"Y\": 0.5359569787979126\n                    },\n                    {\n                        \"X\": 0.49558597803115845,\n                        \"Y\": 0.5359533429145813\n                    },\n                    {\n                        \"X\": 0.49558717012405396,\n                        \"Y\": 0.5379133820533752\n                    },\n                    {\n                        \"X\": 0.49091005325317383,\n                        \"Y\": 0.5379170179367065\n                    }\n                ]\n            },\n            \"Id\": \"4d4717bf-e3b9-45b9-a1f2-414669dfe285\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f5692bec-9973-4fc1-88ab-17b1692e54fc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82039642333984,\n            \"Text\": \"152,862,498\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06813106685876846,\n                    \"Height\": 0.00879221223294735,\n                    \"Left\": 0.554617166519165,\n                    \"Top\": 0.5322033762931824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.554617166519165,\n                        \"Y\": 0.5322568416595459\n                    },\n                    {\n                        \"X\": 0.6227424740791321,\n                        \"Y\": 0.5322033762931824\n                    },\n                    {\n                        \"X\": 0.6227481961250305,\n                        \"Y\": 0.5409420728683472\n                    },\n                    {\n                        \"X\": 0.5546227097511292,\n                        \"Y\": 0.5409955978393555\n                    }\n                ]\n            },\n            \"Id\": \"061971c7-16ec-4d0b-8ee6-41696a4113b4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"75e64636-2f41-4b14-ace5-578dfeb86f2e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84883117675781,\n            \"Text\": \"52,456\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03763004392385483,\n                    \"Height\": 0.008951138705015182,\n                    \"Left\": 0.7319534420967102,\n                    \"Top\": 0.5319281816482544\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7319534420967102,\n                        \"Y\": 0.531957745552063\n                    },\n                    {\n                        \"X\": 0.7695772051811218,\n                        \"Y\": 0.5319281816482544\n                    },\n                    {\n                        \"X\": 0.769583523273468,\n                        \"Y\": 0.5408498048782349\n                    },\n                    {\n                        \"X\": 0.7319596409797668,\n                        \"Y\": 0.5408793091773987\n                    }\n                ]\n            },\n            \"Id\": \"74cd209d-1199-4b5b-9642-0eb74d2b19e1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d3766385-e080-4297-ad02-822aaff18234\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89032745361328,\n            \"Text\": \"152,914,954\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06822884827852249,\n                    \"Height\": 0.008924329653382301,\n                    \"Left\": 0.8366471529006958,\n                    \"Top\": 0.5318296551704407\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366471529006958,\n                        \"Y\": 0.531883180141449\n                    },\n                    {\n                        \"X\": 0.9048693180084229,\n                        \"Y\": 0.5318296551704407\n                    },\n                    {\n                        \"X\": 0.9048759937286377,\n                        \"Y\": 0.540700376033783\n                    },\n                    {\n                        \"X\": 0.8366535902023315,\n                        \"Y\": 0.540753960609436\n                    }\n                ]\n            },\n            \"Id\": \"7b1ca766-7fdf-4c3f-85e4-1dd21ce466ed\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e81f1c5e-9af9-4d0a-b711-d4c6e7272ee5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87956237792969,\n            \"Text\": \"Interest and fiscal charges\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14216572046279907,\n                    \"Height\": 0.009866376407444477,\n                    \"Left\": 0.14759384095668793,\n                    \"Top\": 0.5460771918296814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14759384095668793,\n                        \"Y\": 0.5461888909339905\n                    },\n                    {\n                        \"X\": 0.28975415229797363,\n                        \"Y\": 0.5460771918296814\n                    },\n                    {\n                        \"X\": 0.2897595465183258,\n                        \"Y\": 0.5558317303657532\n                    },\n                    {\n                        \"X\": 0.14759881794452667,\n                        \"Y\": 0.5559435486793518\n                    }\n                ]\n            },\n            \"Id\": \"901c33ab-4589-467b-a92a-4f3c58d97d8c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"88881b82-4d64-4f6a-a528-ecc04e3cbb91\",\n                        \"e6530fbb-2cfa-41c3-92d5-345cadb28acc\",\n                        \"5f017512-1294-4bc5-8dd8-d6d00f8d387a\",\n                        \"3de10125-8fd3-4ac9-85ff-6a8232f8b762\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.39814758300781,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004710737615823746,\n                    \"Height\": 0.0019794453401118517,\n                    \"Left\": 0.49082738161087036,\n                    \"Top\": 0.5499432682991028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49082738161087036,\n                        \"Y\": 0.5499469637870789\n                    },\n                    {\n                        \"X\": 0.4955368936061859,\n                        \"Y\": 0.5499432682991028\n                    },\n                    {\n                        \"X\": 0.4955381155014038,\n                        \"Y\": 0.5519189834594727\n                    },\n                    {\n                        \"X\": 0.49082860350608826,\n                        \"Y\": 0.5519226789474487\n                    }\n                ]\n            },\n            \"Id\": \"f47b5624-32f7-442f-9c57-e3793ad89266\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cdaa3d72-adba-4aa5-8518-6e775198db2b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84561920166016,\n            \"Text\": \"64,056,957\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06233007833361626,\n                    \"Height\": 0.008974812924861908,\n                    \"Left\": 0.5606564283370972,\n                    \"Top\": 0.545887291431427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5606564283370972,\n                        \"Y\": 0.5459362864494324\n                    },\n                    {\n                        \"X\": 0.6229806542396545,\n                        \"Y\": 0.545887291431427\n                    },\n                    {\n                        \"X\": 0.6229864954948425,\n                        \"Y\": 0.5548130869865417\n                    },\n                    {\n                        \"X\": 0.5606621503829956,\n                        \"Y\": 0.5548620820045471\n                    }\n                ]\n            },\n            \"Id\": \"6b0642b2-ebd4-4104-ade9-d5f15daf0ec6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ee6ae529-4277-4ce6-a8bc-44d856ff0d85\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.90275573730469,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004698481876403093,\n                    \"Height\": 0.0021501111332327127,\n                    \"Left\": 0.7650187611579895,\n                    \"Top\": 0.549240231513977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7650187611579895,\n                        \"Y\": 0.5492438673973083\n                    },\n                    {\n                        \"X\": 0.7697157263755798,\n                        \"Y\": 0.549240231513977\n                    },\n                    {\n                        \"X\": 0.7697172164916992,\n                        \"Y\": 0.5513865947723389\n                    },\n                    {\n                        \"X\": 0.7650202512741089,\n                        \"Y\": 0.5513902902603149\n                    }\n                ]\n            },\n            \"Id\": \"36cddcaa-72d8-4f85-ab3c-3f15384eda75\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ef19b0ad-bff6-47fc-9ac2-09e9994c4902\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84479522705078,\n            \"Text\": \"64,056,957\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06195148080587387,\n                    \"Height\": 0.008932403288781643,\n                    \"Left\": 0.8427591919898987,\n                    \"Top\": 0.5455830097198486\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8427591919898987,\n                        \"Y\": 0.5456317067146301\n                    },\n                    {\n                        \"X\": 0.9047040343284607,\n                        \"Y\": 0.5455830097198486\n                    },\n                    {\n                        \"X\": 0.9047107100486755,\n                        \"Y\": 0.5544666647911072\n                    },\n                    {\n                        \"X\": 0.8427656888961792,\n                        \"Y\": 0.5545154213905334\n                    }\n                ]\n            },\n            \"Id\": \"e8bceaf2-9d06-414b-b711-0fd49fff19e6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"72b00a69-e2e2-46e6-83a4-de1a90797867\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91564178466797,\n            \"Text\": \"Capital outlay\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07566459476947784,\n                    \"Height\": 0.009674908593297005,\n                    \"Left\": 0.12857525050640106,\n                    \"Top\": 0.5598471760749817\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12857525050640106,\n                        \"Y\": 0.5599066615104675\n                    },\n                    {\n                        \"X\": 0.2042347490787506,\n                        \"Y\": 0.5598471760749817\n                    },\n                    {\n                        \"X\": 0.2042398303747177,\n                        \"Y\": 0.5694624781608582\n                    },\n                    {\n                        \"X\": 0.12858009338378906,\n                        \"Y\": 0.5695220828056335\n                    }\n                ]\n            },\n            \"Id\": \"e2a7ca83-5fd8-45d9-8f2d-e591de0f96c6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2769e3f0-16b3-4a42-9eb1-db33f698de42\",\n                        \"8e47e19e-f3d7-4d07-9fba-3260cf702f65\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.90352630615234,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004524512216448784,\n                    \"Height\": 0.0017322037601843476,\n                    \"Left\": 0.49107521772384644,\n                    \"Top\": 0.5632777810096741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49107521772384644,\n                        \"Y\": 0.5632813572883606\n                    },\n                    {\n                        \"X\": 0.4955986440181732,\n                        \"Y\": 0.5632777810096741\n                    },\n                    {\n                        \"X\": 0.4955997169017792,\n                        \"Y\": 0.56500643491745\n                    },\n                    {\n                        \"X\": 0.4910762906074524,\n                        \"Y\": 0.5650099515914917\n                    }\n                ]\n            },\n            \"Id\": \"87347277-d439-43d9-9dd3-cedc8732118f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5fb416d1-75aa-4326-a8de-47e63b1eda9d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.98408508300781,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004568031057715416,\n                    \"Height\": 0.0018268185667693615,\n                    \"Left\": 0.6184080839157104,\n                    \"Top\": 0.5630460381507874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6184080839157104,\n                        \"Y\": 0.5630496144294739\n                    },\n                    {\n                        \"X\": 0.6229749321937561,\n                        \"Y\": 0.5630460381507874\n                    },\n                    {\n                        \"X\": 0.6229761242866516,\n                        \"Y\": 0.5648692846298218\n                    },\n                    {\n                        \"X\": 0.6184093356132507,\n                        \"Y\": 0.5648728609085083\n                    }\n                ]\n            },\n            \"Id\": \"e8b04eaa-eafe-4caf-ae28-3342b5fef9f5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"10b1615d-f0d0-4a55-9ee5-cfef973f8ccd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92996215820312,\n            \"Text\": \"329,341,198\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06849025934934616,\n                    \"Height\": 0.00879612099379301,\n                    \"Left\": 0.7012559771537781,\n                    \"Top\": 0.5593421459197998\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7012559771537781,\n                        \"Y\": 0.5593960285186768\n                    },\n                    {\n                        \"X\": 0.7697400450706482,\n                        \"Y\": 0.5593421459197998\n                    },\n                    {\n                        \"X\": 0.7697462439537048,\n                        \"Y\": 0.5680843591690063\n                    },\n                    {\n                        \"X\": 0.7012619376182556,\n                        \"Y\": 0.5681383013725281\n                    }\n                ]\n            },\n            \"Id\": \"332cae12-0fd9-4acc-967f-f903f82dd02c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2bf453c8-19fd-49b5-a3ae-f0cc4cecb4ec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9418716430664,\n            \"Text\": \"329,341,198\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06852379441261292,\n                    \"Height\": 0.008756065741181374,\n                    \"Left\": 0.8364154696464539,\n                    \"Top\": 0.5591722130775452\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8364154696464539,\n                        \"Y\": 0.5592260956764221\n                    },\n                    {\n                        \"X\": 0.9049327373504639,\n                        \"Y\": 0.5591722130775452\n                    },\n                    {\n                        \"X\": 0.9049392342567444,\n                        \"Y\": 0.5678743124008179\n                    },\n                    {\n                        \"X\": 0.8364217877388,\n                        \"Y\": 0.5679282546043396\n                    }\n                ]\n            },\n            \"Id\": \"1a11a955-d7a6-438d-9c1a-a35311987062\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"82faff2f-90d0-4eb5-975b-4dcc35fb913d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89788818359375,\n            \"Text\": \"Total expenditures\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10299599915742874,\n                    \"Height\": 0.009548509493470192,\n                    \"Left\": 0.1562371850013733,\n                    \"Top\": 0.5755028128623962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1562371850013733,\n                        \"Y\": 0.5755839347839355\n                    },\n                    {\n                        \"X\": 0.25922802090644836,\n                        \"Y\": 0.5755028128623962\n                    },\n                    {\n                        \"X\": 0.25923317670822144,\n                        \"Y\": 0.5849701166152954\n                    },\n                    {\n                        \"X\": 0.15624204277992249,\n                        \"Y\": 0.5850512981414795\n                    }\n                ]\n            },\n            \"Id\": \"12d494c0-d9f8-444f-9cc4-1f4e846f65e0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4847107a-d004-4d35-bbb6-9d5fb92258e3\",\n                        \"b4b2ce0c-7dad-487d-a203-5dfa37c406bc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77415466308594,\n            \"Text\": \"1,160,033,454\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07824888080358505,\n                    \"Height\": 0.008868216536939144,\n                    \"Left\": 0.41708803176879883,\n                    \"Top\": 0.5753541588783264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41708803176879883,\n                        \"Y\": 0.5754157900810242\n                    },\n                    {\n                        \"X\": 0.49533146619796753,\n                        \"Y\": 0.5753541588783264\n                    },\n                    {\n                        \"X\": 0.4953369200229645,\n                        \"Y\": 0.5841606855392456\n                    },\n                    {\n                        \"X\": 0.41709327697753906,\n                        \"Y\": 0.5842223763465881\n                    }\n                ]\n            },\n            \"Id\": \"97f482ca-dcde-4767-a862-b15b9878f97d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c097cda2-4231-45f4-b1f0-6c44546f67f4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92903137207031,\n            \"Text\": \"216,919,455\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06788699328899384,\n                    \"Height\": 0.008832118473947048,\n                    \"Left\": 0.5543457865715027,\n                    \"Top\": 0.5750839114189148\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5543457865715027,\n                        \"Y\": 0.5751374363899231\n                    },\n                    {\n                        \"X\": 0.6222269535064697,\n                        \"Y\": 0.5750839114189148\n                    },\n                    {\n                        \"X\": 0.6222327351570129,\n                        \"Y\": 0.5838625431060791\n                    },\n                    {\n                        \"X\": 0.5543513298034668,\n                        \"Y\": 0.5839160680770874\n                    }\n                ]\n            },\n            \"Id\": \"f641f639-b94d-47e2-9b1a-f9fa65886d33\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e66d5d7a-5615-4e8f-aeeb-c0d005069a44\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.58037567138672,\n            \"Text\": \"422,250,829\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0688079297542572,\n                    \"Height\": 0.00893600843846798,\n                    \"Left\": 0.700756311416626,\n                    \"Top\": 0.5749162435531616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.700756311416626,\n                        \"Y\": 0.5749704837799072\n                    },\n                    {\n                        \"X\": 0.7695579528808594,\n                        \"Y\": 0.5749162435531616\n                    },\n                    {\n                        \"X\": 0.7695642113685608,\n                        \"Y\": 0.5837980508804321\n                    },\n                    {\n                        \"X\": 0.7007623910903931,\n                        \"Y\": 0.5838522911071777\n                    }\n                ]\n            },\n            \"Id\": \"6fc695be-690f-4d47-bcc8-a8e3bd214065\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"42347064-f3ba-425f-bbba-b736bafadddd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8251953125,\n            \"Text\": \"1,799,203,738\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07792016118764877,\n                    \"Height\": 0.008888683281838894,\n                    \"Left\": 0.8265875577926636,\n                    \"Top\": 0.5747219920158386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8265875577926636,\n                        \"Y\": 0.5747833251953125\n                    },\n                    {\n                        \"X\": 0.9045011401176453,\n                        \"Y\": 0.5747219920158386\n                    },\n                    {\n                        \"X\": 0.9045076966285706,\n                        \"Y\": 0.5835492610931396\n                    },\n                    {\n                        \"X\": 0.8265939354896545,\n                        \"Y\": 0.5836106538772583\n                    }\n                ]\n            },\n            \"Id\": \"05e30e81-74a2-4575-bcee-241871748045\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b56912f2-8e01-4805-9bcc-95bb50587816\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81503295898438,\n            \"Text\": \"EXCESS (DEFICIENCY) OF REVENUES\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19548934698104858,\n                    \"Height\": 0.009528091177344322,\n                    \"Left\": 0.11029107868671417,\n                    \"Top\": 0.605380654335022\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11029107868671417,\n                        \"Y\": 0.605535089969635\n                    },\n                    {\n                        \"X\": 0.30577516555786133,\n                        \"Y\": 0.605380654335022\n                    },\n                    {\n                        \"X\": 0.30578041076660156,\n                        \"Y\": 0.6147542595863342\n                    },\n                    {\n                        \"X\": 0.11029575765132904,\n                        \"Y\": 0.614908754825592\n                    }\n                ]\n            },\n            \"Id\": \"ef27d9e3-7746-4f5f-8ae6-9b09f714b52a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e09d1292-50e2-4a96-82c0-30f69e263f4d\",\n                        \"271f8b71-28e7-4d22-8457-70089de530c6\",\n                        \"4a5378c6-b8dc-4361-bfac-7b449c8d3a43\",\n                        \"226e4d76-112a-48e5-8ca4-9a6edb7e444b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83628845214844,\n            \"Text\": \"OVER (UNDER) EXPENDITURES\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.167879119515419,\n                    \"Height\": 0.00980012584477663,\n                    \"Left\": 0.1287032514810562,\n                    \"Top\": 0.6185355186462402\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1287032514810562,\n                        \"Y\": 0.618668258190155\n                    },\n                    {\n                        \"X\": 0.29657697677612305,\n                        \"Y\": 0.6185355186462402\n                    },\n                    {\n                        \"X\": 0.2965823709964752,\n                        \"Y\": 0.6282027959823608\n                    },\n                    {\n                        \"X\": 0.1287081241607666,\n                        \"Y\": 0.6283356547355652\n                    }\n                ]\n            },\n            \"Id\": \"5dcf8af9-0926-4cae-b105-7573a0048ddb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"07b45014-a6a9-4f89-88d1-89626ace2c3f\",\n                        \"817091d0-dd61-462c-a070-b48acb7e9e84\",\n                        \"2b44f5cf-3c47-4d9e-a449-ba70bdd07037\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80584716796875,\n            \"Text\": \"77,866,576\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061660297214984894,\n                    \"Height\": 0.00933992862701416,\n                    \"Left\": 0.43401163816452026,\n                    \"Top\": 0.6184494495391846\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43401163816452026,\n                        \"Y\": 0.6184982061386108\n                    },\n                    {\n                        \"X\": 0.49566617608070374,\n                        \"Y\": 0.6184494495391846\n                    },\n                    {\n                        \"X\": 0.49567192792892456,\n                        \"Y\": 0.6277405619621277\n                    },\n                    {\n                        \"X\": 0.43401721119880676,\n                        \"Y\": 0.6277893781661987\n                    }\n                ]\n            },\n            \"Id\": \"ca187859-193d-44eb-b0a9-e388a7be0a3f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f88f50e2-6adf-4446-ba0a-396b3b623d13\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88096618652344,\n            \"Text\": \"99,627,298\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.062184203416109085,\n                    \"Height\": 0.00919939111918211,\n                    \"Left\": 0.5609568357467651,\n                    \"Top\": 0.6184653639793396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5609568357467651,\n                        \"Y\": 0.6185144782066345\n                    },\n                    {\n                        \"X\": 0.623134970664978,\n                        \"Y\": 0.6184653639793396\n                    },\n                    {\n                        \"X\": 0.6231409907341003,\n                        \"Y\": 0.6276155114173889\n                    },\n                    {\n                        \"X\": 0.5609626770019531,\n                        \"Y\": 0.6276647448539734\n                    }\n                ]\n            },\n            \"Id\": \"250216e8-060c-4485-b830-8a2f696795ae\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"03ea395a-4efd-43fa-a75a-54f63a706781\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77257537841797,\n            \"Text\": \"(314,395,400)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07569415867328644,\n                    \"Height\": 0.009908683598041534,\n                    \"Left\": 0.6976261138916016,\n                    \"Top\": 0.6179227828979492\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6976261138916016,\n                        \"Y\": 0.6179826259613037\n                    },\n                    {\n                        \"X\": 0.7733133435249329,\n                        \"Y\": 0.6179227828979492\n                    },\n                    {\n                        \"X\": 0.7733203172683716,\n                        \"Y\": 0.6277715563774109\n                    },\n                    {\n                        \"X\": 0.6976328492164612,\n                        \"Y\": 0.6278314590454102\n                    }\n                ]\n            },\n            \"Id\": \"b5d131ad-afdb-41c4-8f0b-0cc79780ec0e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6cc1a3f-45a6-43e3-bdc6-6ba41813e4b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82840728759766,\n            \"Text\": \"(136,901,526)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07537064701318741,\n                    \"Height\": 0.010072067379951477,\n                    \"Left\": 0.8330255150794983,\n                    \"Top\": 0.617768406867981\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8330255150794983,\n                        \"Y\": 0.6178280115127563\n                    },\n                    {\n                        \"X\": 0.9083886742591858,\n                        \"Y\": 0.617768406867981\n                    },\n                    {\n                        \"X\": 0.9083961844444275,\n                        \"Y\": 0.6277808547019958\n                    },\n                    {\n                        \"X\": 0.8330327868461609,\n                        \"Y\": 0.627840518951416\n                    }\n                ]\n            },\n            \"Id\": \"458f1ce6-93dc-4c0a-9045-1a0e378fdd64\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"206d55c6-1a37-47d6-94a4-4aef9305b2af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90110778808594,\n            \"Text\": \"OTHER FINANCING SOURCES (USES)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19722265005111694,\n                    \"Height\": 0.01028860080987215,\n                    \"Left\": 0.11021508276462555,\n                    \"Top\": 0.647906482219696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11021508276462555,\n                        \"Y\": 0.6480627655982971\n                    },\n                    {\n                        \"X\": 0.30743205547332764,\n                        \"Y\": 0.647906482219696\n                    },\n                    {\n                        \"X\": 0.3074377477169037,\n                        \"Y\": 0.6580386161804199\n                    },\n                    {\n                        \"X\": 0.11022013425827026,\n                        \"Y\": 0.6581950783729553\n                    }\n                ]\n            },\n            \"Id\": \"e1312c01-a100-49c0-9f5e-ffdee9850881\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"95d5fb12-cd67-4596-964d-d01334eec399\",\n                        \"8bb86de0-9ea5-4b6f-8cc9-a4928233926a\",\n                        \"fbb2836c-a752-47ba-bce9-43da42503543\",\n                        \"0fbbe774-e796-43af-b1d5-2acdeb4dc6d0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93385314941406,\n            \"Text\": \"Refunding debt issued\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12068812549114227,\n                    \"Height\": 0.009977439418435097,\n                    \"Left\": 0.12922199070453644,\n                    \"Top\": 0.6621614098548889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12922199070453644,\n                        \"Y\": 0.662257194519043\n                    },\n                    {\n                        \"X\": 0.24990475177764893,\n                        \"Y\": 0.6621614098548889\n                    },\n                    {\n                        \"X\": 0.2499101161956787,\n                        \"Y\": 0.6720430254936218\n                    },\n                    {\n                        \"X\": 0.12922698259353638,\n                        \"Y\": 0.6721388697624207\n                    }\n                ]\n            },\n            \"Id\": \"b8af9ae0-a9c6-4b83-861d-4a40ae3c6182\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab6bd342-bcd1-4e6f-86b4-533c08fcee52\",\n                        \"83d09310-0e33-484d-bf95-ae1919a8051b\",\n                        \"0c2547c8-8052-4e2b-b13b-24fe84e63f86\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.61143493652344,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004619346000254154,\n                    \"Height\": 0.0019192397594451904,\n                    \"Left\": 0.4912736713886261,\n                    \"Top\": 0.6658914685249329\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4912736713886261,\n                        \"Y\": 0.6658951044082642\n                    },\n                    {\n                        \"X\": 0.495891809463501,\n                        \"Y\": 0.6658914685249329\n                    },\n                    {\n                        \"X\": 0.4958930015563965,\n                        \"Y\": 0.6678070425987244\n                    },\n                    {\n                        \"X\": 0.4912748336791992,\n                        \"Y\": 0.6678106784820557\n                    }\n                ]\n            },\n            \"Id\": \"2d93c95c-4a54-41d7-b6c7-3638d42385a7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c4b902cc-3c69-4165-ab5f-22468fde5c35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86824035644531,\n            \"Text\": \"119,135,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06802055239677429,\n                    \"Height\": 0.00887848250567913,\n                    \"Left\": 0.5550267696380615,\n                    \"Top\": 0.6621168255805969\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5550267696380615,\n                        \"Y\": 0.6621707677841187\n                    },\n                    {\n                        \"X\": 0.6230415105819702,\n                        \"Y\": 0.6621168255805969\n                    },\n                    {\n                        \"X\": 0.6230473518371582,\n                        \"Y\": 0.6709412932395935\n                    },\n                    {\n                        \"X\": 0.5550324320793152,\n                        \"Y\": 0.67099529504776\n                    }\n                ]\n            },\n            \"Id\": \"a1c10e87-cda0-4815-aee9-a5e72245c431\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"762ea307-06e1-4a1f-9bef-54106953e5cc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.35078430175781,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004622137174010277,\n                    \"Height\": 0.0018669405253604054,\n                    \"Left\": 0.7653934359550476,\n                    \"Top\": 0.6656370162963867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7653934359550476,\n                        \"Y\": 0.665640652179718\n                    },\n                    {\n                        \"X\": 0.770014226436615,\n                        \"Y\": 0.6656370162963867\n                    },\n                    {\n                        \"X\": 0.7700155973434448,\n                        \"Y\": 0.6675002574920654\n                    },\n                    {\n                        \"X\": 0.7653947472572327,\n                        \"Y\": 0.6675039529800415\n                    }\n                ]\n            },\n            \"Id\": \"73f4b45e-264b-484e-b837-f546c0e7843b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7b749f2-57f9-4595-aeef-7a2f87e13b98\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91325378417969,\n            \"Text\": \"119,135,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06792169064283371,\n                    \"Height\": 0.008924064226448536,\n                    \"Left\": 0.8370379209518433,\n                    \"Top\": 0.6617050170898438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8370379209518433,\n                        \"Y\": 0.6617588996887207\n                    },\n                    {\n                        \"X\": 0.9049530029296875,\n                        \"Y\": 0.6617050170898438\n                    },\n                    {\n                        \"X\": 0.9049596190452576,\n                        \"Y\": 0.6705751419067383\n                    },\n                    {\n                        \"X\": 0.837044358253479,\n                        \"Y\": 0.67062908411026\n                    }\n                ]\n            },\n            \"Id\": \"cd12c146-dfb1-41a0-802f-5f73102f4ecb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dbb6124d-c934-4a89-a4a8-55a276248f47\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91580963134766,\n            \"Text\": \"Premium on debt issuance\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1449364870786667,\n                    \"Height\": 0.007995869033038616,\n                    \"Left\": 0.1289898008108139,\n                    \"Top\": 0.6761761903762817\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1289898008108139,\n                        \"Y\": 0.6762913465499878\n                    },\n                    {\n                        \"X\": 0.2739219665527344,\n                        \"Y\": 0.6761761903762817\n                    },\n                    {\n                        \"X\": 0.2739262878894806,\n                        \"Y\": 0.68405681848526\n                    },\n                    {\n                        \"X\": 0.12899377942085266,\n                        \"Y\": 0.6841720938682556\n                    }\n                ]\n            },\n            \"Id\": \"bc579191-321f-4903-bc2e-160399e34f48\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"537170b5-e808-4012-9401-55afeb9c76c2\",\n                        \"c95f571f-9bd6-4cde-bfef-d6052bdc0577\",\n                        \"1244b417-6dd3-4b6c-af0f-5f04f8eca73e\",\n                        \"d57b1dc2-dbbb-42b5-a089-06c80bc740d8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.64326477050781,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004732851404696703,\n                    \"Height\": 0.0019963649101555347,\n                    \"Left\": 0.49127069115638733,\n                    \"Top\": 0.6796015501022339\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49127069115638733,\n                        \"Y\": 0.6796053051948547\n                    },\n                    {\n                        \"X\": 0.49600231647491455,\n                        \"Y\": 0.6796015501022339\n                    },\n                    {\n                        \"X\": 0.49600353837013245,\n                        \"Y\": 0.6815941333770752\n                    },\n                    {\n                        \"X\": 0.4912719130516052,\n                        \"Y\": 0.6815979480743408\n                    }\n                ]\n            },\n            \"Id\": \"10bd2949-9370-4b50-a088-622e4564d0d3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b29dddff-62fe-448f-a5ef-268fd13bc3ee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69652557373047,\n            \"Text\": \"18,741,611\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06113504245877266,\n                    \"Height\": 0.008746306411921978,\n                    \"Left\": 0.5613898038864136,\n                    \"Top\": 0.6758938431739807\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5613898038864136,\n                        \"Y\": 0.6759424209594727\n                    },\n                    {\n                        \"X\": 0.6225191354751587,\n                        \"Y\": 0.6758938431739807\n                    },\n                    {\n                        \"X\": 0.6225248575210571,\n                        \"Y\": 0.68459153175354\n                    },\n                    {\n                        \"X\": 0.5613953471183777,\n                        \"Y\": 0.6846401691436768\n                    }\n                ]\n            },\n            \"Id\": \"2bea11b3-441d-410c-a811-308e2eccae1e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"74d4ecfe-b7d4-4e1a-9246-7a2f73b41119\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90213775634766,\n            \"Text\": \"20,145,862\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061238326132297516,\n                    \"Height\": 0.008914697915315628,\n                    \"Left\": 0.7081755995750427,\n                    \"Top\": 0.6756188869476318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7081755995750427,\n                        \"Y\": 0.6756675839424133\n                    },\n                    {\n                        \"X\": 0.7694076895713806,\n                        \"Y\": 0.6756188869476318\n                    },\n                    {\n                        \"X\": 0.769413948059082,\n                        \"Y\": 0.6844848990440369\n                    },\n                    {\n                        \"X\": 0.7081816792488098,\n                        \"Y\": 0.6845335960388184\n                    }\n                ]\n            },\n            \"Id\": \"9ac4e53c-bea9-4a20-b421-e7e2a66437ec\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"460720cb-73e6-46b8-b3f0-fde5287cf928\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84237670898438,\n            \"Text\": \"38,887,473\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06187931448221207,\n                    \"Height\": 0.008912961930036545,\n                    \"Left\": 0.8429430723190308,\n                    \"Top\": 0.6754395365715027\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8429430723190308,\n                        \"Y\": 0.6754887104034424\n                    },\n                    {\n                        \"X\": 0.9048157930374146,\n                        \"Y\": 0.6754395365715027\n                    },\n                    {\n                        \"X\": 0.9048224091529846,\n                        \"Y\": 0.6843032836914062\n                    },\n                    {\n                        \"X\": 0.8429495096206665,\n                        \"Y\": 0.6843525171279907\n                    }\n                ]\n            },\n            \"Id\": \"214ebedb-e874-4f21-bb22-51e6b5f70e47\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"da520763-ebc5-44a3-96d3-41eca75610e9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93817901611328,\n            \"Text\": \"Payment to refunding escrow agent\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.195296049118042,\n                    \"Height\": 0.010086779482662678,\n                    \"Left\": 0.12908266484737396,\n                    \"Top\": 0.6895601749420166\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12908266484737396,\n                        \"Y\": 0.6897155046463013\n                    },\n                    {\n                        \"X\": 0.3243730962276459,\n                        \"Y\": 0.6895601749420166\n                    },\n                    {\n                        \"X\": 0.32437869906425476,\n                        \"Y\": 0.6994915008544922\n                    },\n                    {\n                        \"X\": 0.1290876716375351,\n                        \"Y\": 0.6996469497680664\n                    }\n                ]\n            },\n            \"Id\": \"9d95c6d7-00fa-48d3-bae1-6e252044761f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"09264e9d-7e4a-4b54-bf0a-03644c160fa5\",\n                        \"16fecb89-0016-4f89-a6e8-c944c6cc3a1c\",\n                        \"eb312e17-e847-4443-b20f-06a307ab05bf\",\n                        \"fd4eaaee-6287-482f-81b0-74c43cdb0ec6\",\n                        \"f69c3cd4-6998-4768-94ae-71f8af3a0919\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.23162078857422,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004646248649805784,\n                    \"Height\": 0.0019785617478191853,\n                    \"Left\": 0.4913424551486969,\n                    \"Top\": 0.6933125257492065\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4913424551486969,\n                        \"Y\": 0.6933162212371826\n                    },\n                    {\n                        \"X\": 0.49598750472068787,\n                        \"Y\": 0.6933125257492065\n                    },\n                    {\n                        \"X\": 0.49598872661590576,\n                        \"Y\": 0.6952874064445496\n                    },\n                    {\n                        \"X\": 0.4913436770439148,\n                        \"Y\": 0.6952911019325256\n                    }\n                ]\n            },\n            \"Id\": \"a6403439-e8ab-44a0-bb28-8d8f4ddabf92\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e68a2661-1117-4d6a-97ea-62a4a0e720d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85492706298828,\n            \"Text\": \"(136,306,674)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07664759457111359,\n                    \"Height\": 0.00954185426235199,\n                    \"Left\": 0.5502325892448425,\n                    \"Top\": 0.6893131136894226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5502325892448425,\n                        \"Y\": 0.6893740892410278\n                    },\n                    {\n                        \"X\": 0.6268739104270935,\n                        \"Y\": 0.6893131136894226\n                    },\n                    {\n                        \"X\": 0.6268801689147949,\n                        \"Y\": 0.6987940073013306\n                    },\n                    {\n                        \"X\": 0.5502386093139648,\n                        \"Y\": 0.6988549828529358\n                    }\n                ]\n            },\n            \"Id\": \"83e47992-58f5-4d9a-82f3-4d812f5ffedb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3aae17af-3f0e-4c65-a8e1-82e8a99f1d60\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.59664916992188,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004528119694441557,\n                    \"Height\": 0.0019341539591550827,\n                    \"Left\": 0.7654328346252441,\n                    \"Top\": 0.6929760575294495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7654328346252441,\n                        \"Y\": 0.692979633808136\n                    },\n                    {\n                        \"X\": 0.769959568977356,\n                        \"Y\": 0.6929760575294495\n                    },\n                    {\n                        \"X\": 0.7699609398841858,\n                        \"Y\": 0.6949065923690796\n                    },\n                    {\n                        \"X\": 0.765434205532074,\n                        \"Y\": 0.6949101686477661\n                    }\n                ]\n            },\n            \"Id\": \"cf73c4df-48be-4d8a-ab1d-c3ec605df028\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"011f1c86-d104-4e20-8de1-fd0b9e50ffae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82933044433594,\n            \"Text\": \"(136,306,674)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07635623216629028,\n                    \"Height\": 0.00968242809176445,\n                    \"Left\": 0.8328878879547119,\n                    \"Top\": 0.6888683438301086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8328878879547119,\n                        \"Y\": 0.6889290809631348\n                    },\n                    {\n                        \"X\": 0.9092369079589844,\n                        \"Y\": 0.6888683438301086\n                    },\n                    {\n                        \"X\": 0.9092441201210022,\n                        \"Y\": 0.6984899640083313\n                    },\n                    {\n                        \"X\": 0.8328948616981506,\n                        \"Y\": 0.6985507607460022\n                    }\n                ]\n            },\n            \"Id\": \"cde43821-110e-4202-b751-20fb95e11277\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2a8c4606-78de-4454-bc6a-3ee80295f343\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91963958740234,\n            \"Text\": \"General obligation bonds issued\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17503003776073456,\n                    \"Height\": 0.009842963889241219,\n                    \"Left\": 0.12897415459156036,\n                    \"Top\": 0.7035527229309082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12897415459156036,\n                        \"Y\": 0.7036921381950378\n                    },\n                    {\n                        \"X\": 0.30399876832962036,\n                        \"Y\": 0.7035527229309082\n                    },\n                    {\n                        \"X\": 0.3040041923522949,\n                        \"Y\": 0.7132562398910522\n                    },\n                    {\n                        \"X\": 0.12897905707359314,\n                        \"Y\": 0.7133957147598267\n                    }\n                ]\n            },\n            \"Id\": \"deea185e-1cd4-49f3-b6a4-d289cd14c181\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"29a0d003-fbfb-46c5-b737-73bddd58790c\",\n                        \"cd2d36ef-bf33-45c5-87ea-ab3cf3ffef7e\",\n                        \"e96d5f5c-6cf1-4022-b647-1ddfde69df79\",\n                        \"942b782b-b4ee-448b-964f-bac6c1897426\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.63211822509766,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004536264576017857,\n                    \"Height\": 0.001965511590242386,\n                    \"Left\": 0.4913521111011505,\n                    \"Top\": 0.70717853307724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4913521111011505,\n                        \"Y\": 0.7071821093559265\n                    },\n                    {\n                        \"X\": 0.4958871603012085,\n                        \"Y\": 0.70717853307724\n                    },\n                    {\n                        \"X\": 0.4958883821964264,\n                        \"Y\": 0.709140419960022\n                    },\n                    {\n                        \"X\": 0.4913533329963684,\n                        \"Y\": 0.7091439962387085\n                    }\n                ]\n            },\n            \"Id\": \"bc56b7ac-eadc-401f-aebf-bffe03f2eee9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"741ee6f9-f62b-4fce-9945-faf5a63bbb74\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.7508773803711,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004707134794443846,\n                    \"Height\": 0.0019871594849973917,\n                    \"Left\": 0.6187006235122681,\n                    \"Top\": 0.706997811794281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6187006235122681,\n                        \"Y\": 0.7070015668869019\n                    },\n                    {\n                        \"X\": 0.6234064698219299,\n                        \"Y\": 0.706997811794281\n                    },\n                    {\n                        \"X\": 0.623407781124115,\n                        \"Y\": 0.7089812159538269\n                    },\n                    {\n                        \"X\": 0.6187019348144531,\n                        \"Y\": 0.7089849710464478\n                    }\n                ]\n            },\n            \"Id\": \"ce757ca6-0c17-4a1a-a7df-0d3519172aa1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9bb5cbd5-dfde-45fd-bedc-84394fca93e4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85264587402344,\n            \"Text\": \"225,000,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06921282410621643,\n                    \"Height\": 0.009106194600462914,\n                    \"Left\": 0.7007638812065125,\n                    \"Top\": 0.7028923034667969\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7007638812065125,\n                        \"Y\": 0.7029474377632141\n                    },\n                    {\n                        \"X\": 0.7699702978134155,\n                        \"Y\": 0.7028923034667969\n                    },\n                    {\n                        \"X\": 0.7699766755104065,\n                        \"Y\": 0.7119433283805847\n                    },\n                    {\n                        \"X\": 0.7007700204849243,\n                        \"Y\": 0.7119985222816467\n                    }\n                ]\n            },\n            \"Id\": \"b590d7a3-332b-4862-a291-b4c5b058d033\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"43e1c912-6ee6-417e-8a50-8a20ee01ff04\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83792114257812,\n            \"Text\": \"225,000,000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06954780220985413,\n                    \"Height\": 0.00904584489762783,\n                    \"Left\": 0.835911214351654,\n                    \"Top\": 0.7028564214706421\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.835911214351654,\n                        \"Y\": 0.7029117941856384\n                    },\n                    {\n                        \"X\": 0.905452311038971,\n                        \"Y\": 0.7028564214706421\n                    },\n                    {\n                        \"X\": 0.9054590463638306,\n                        \"Y\": 0.7118468880653381\n                    },\n                    {\n                        \"X\": 0.8359177708625793,\n                        \"Y\": 0.7119022607803345\n                    }\n                ]\n            },\n            \"Id\": \"7d4911bd-81c6-466b-b102-3c24641f0dee\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4473ec9f-ad13-4112-a5c6-7f43cad12d44\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89924621582031,\n            \"Text\": \"Sale of capital assets\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11297325789928436,\n                    \"Height\": 0.009781080298125744,\n                    \"Left\": 0.12884560227394104,\n                    \"Top\": 0.7172781825065613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12884560227394104,\n                        \"Y\": 0.7173682451248169\n                    },\n                    {\n                        \"X\": 0.24181362986564636,\n                        \"Y\": 0.7172781825065613\n                    },\n                    {\n                        \"X\": 0.2418188750743866,\n                        \"Y\": 0.7269691824913025\n                    },\n                    {\n                        \"X\": 0.12885050475597382,\n                        \"Y\": 0.7270593047142029\n                    }\n                ]\n            },\n            \"Id\": \"0705b1f9-0164-44b3-a348-1d4c38369448\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15bf248d-6c05-447c-b83c-12a46bb8364c\",\n                        \"a619aafa-fc4b-434d-a4e9-64b4ffbfad77\",\n                        \"a3796b2f-2c7c-4f23-9b5c-b3a7c7c65786\",\n                        \"3fe444e9-081e-4391-bcf9-6552d975480f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94508361816406,\n            \"Text\": \"81,906\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03784645348787308,\n                    \"Height\": 0.008859308436512947,\n                    \"Left\": 0.4580381214618683,\n                    \"Top\": 0.7172836661338806\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4580381214618683,\n                        \"Y\": 0.717313826084137\n                    },\n                    {\n                        \"X\": 0.4958791136741638,\n                        \"Y\": 0.7172836661338806\n                    },\n                    {\n                        \"X\": 0.49588456749916077,\n                        \"Y\": 0.7261127829551697\n                    },\n                    {\n                        \"X\": 0.45804348587989807,\n                        \"Y\": 0.7261430025100708\n                    }\n                ]\n            },\n            \"Id\": \"ee521c3a-4a3d-4c5b-a771-7c717f324692\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5333e7f8-3d38-4cee-9d53-bb3aeae539ab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.05007934570312,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004589381627738476,\n                    \"Height\": 0.0018834933871403337,\n                    \"Left\": 0.6188513040542603,\n                    \"Top\": 0.7208395600318909\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6188513040542603,\n                        \"Y\": 0.7208431959152222\n                    },\n                    {\n                        \"X\": 0.6234394311904907,\n                        \"Y\": 0.7208395600318909\n                    },\n                    {\n                        \"X\": 0.623440682888031,\n                        \"Y\": 0.7227193713188171\n                    },\n                    {\n                        \"X\": 0.6188525557518005,\n                        \"Y\": 0.7227230668067932\n                    }\n                ]\n            },\n            \"Id\": \"0f4a7771-437c-4d3e-9472-336899d5908b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"697d2ba9-a210-4f6b-9765-ca45f8cb3f20\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9298324584961,\n            \"Text\": \"1,256,140\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05464394390583038,\n                    \"Height\": 0.009387792088091373,\n                    \"Left\": 0.7154702544212341,\n                    \"Top\": 0.7167222499847412\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7154702544212341,\n                        \"Y\": 0.716765820980072\n                    },\n                    {\n                        \"X\": 0.7701075673103333,\n                        \"Y\": 0.7167222499847412\n                    },\n                    {\n                        \"X\": 0.7701141834259033,\n                        \"Y\": 0.7260664701461792\n                    },\n                    {\n                        \"X\": 0.7154766321182251,\n                        \"Y\": 0.72611004114151\n                    }\n                ]\n            },\n            \"Id\": \"a78d626d-855b-4789-8964-bfcfafe49d94\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2cccbcf1-e56a-4c22-845a-15521d4cb568\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92472076416016,\n            \"Text\": \"1,338,046\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0545821376144886,\n                    \"Height\": 0.00934099406003952,\n                    \"Left\": 0.8505164384841919,\n                    \"Top\": 0.7165414094924927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8505164384841919,\n                        \"Y\": 0.7165849208831787\n                    },\n                    {\n                        \"X\": 0.9050916433334351,\n                        \"Y\": 0.7165414094924927\n                    },\n                    {\n                        \"X\": 0.9050986170768738,\n                        \"Y\": 0.725838840007782\n                    },\n                    {\n                        \"X\": 0.8505232334136963,\n                        \"Y\": 0.7258824110031128\n                    }\n                ]\n            },\n            \"Id\": \"394c1c86-8301-4c4c-9062-9457230ae968\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bf25dbb3-71b4-42ec-8d5c-8ad3f2dd2e3f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9275894165039,\n            \"Text\": \"Transfers in\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06485242396593094,\n                    \"Height\": 0.00783725455403328,\n                    \"Left\": 0.12824691832065582,\n                    \"Top\": 0.7313904762268066\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12824691832065582,\n                        \"Y\": 0.7314422130584717\n                    },\n                    {\n                        \"X\": 0.19309525191783905,\n                        \"Y\": 0.7313904762268066\n                    },\n                    {\n                        \"X\": 0.19309933483600616,\n                        \"Y\": 0.7391759157180786\n                    },\n                    {\n                        \"X\": 0.1282508373260498,\n                        \"Y\": 0.7392277121543884\n                    }\n                ]\n            },\n            \"Id\": \"17171d80-02ef-4696-8eb1-d5f19610069c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"554ad521-10ff-45c8-a3cd-5d8b271494a6\",\n                        \"a6bdcfc8-272f-48c7-bb52-a78f20fa1a03\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90748596191406,\n            \"Text\": \"282,340\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04453844204545021,\n                    \"Height\": 0.008669781498610973,\n                    \"Left\": 0.45153573155403137,\n                    \"Top\": 0.731176495552063\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45153573155403137,\n                        \"Y\": 0.7312120199203491\n                    },\n                    {\n                        \"X\": 0.4960688352584839,\n                        \"Y\": 0.731176495552063\n                    },\n                    {\n                        \"X\": 0.4960741698741913,\n                        \"Y\": 0.7398107051849365\n                    },\n                    {\n                        \"X\": 0.4515409767627716,\n                        \"Y\": 0.7398462891578674\n                    }\n                ]\n            },\n            \"Id\": \"29052ec0-5841-4801-8a29-ce17c00930cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5ed4c30b-cd68-4337-9af0-8841b51d9288\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.23409271240234,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00472436985000968,\n                    \"Height\": 0.0019565315451472998,\n                    \"Left\": 0.6186733841896057,\n                    \"Top\": 0.7345121502876282\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6186733841896057,\n                        \"Y\": 0.7345159649848938\n                    },\n                    {\n                        \"X\": 0.6233964562416077,\n                        \"Y\": 0.7345121502876282\n                    },\n                    {\n                        \"X\": 0.6233977675437927,\n                        \"Y\": 0.7364649176597595\n                    },\n                    {\n                        \"X\": 0.6186746954917908,\n                        \"Y\": 0.7364686727523804\n                    }\n                ]\n            },\n            \"Id\": \"8f73434a-eb8f-46f5-a2d3-0aa4871de34c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2708f34b-ca17-4f45-83d7-8032cbffa612\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90636444091797,\n            \"Text\": \"133,015,108\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06795250624418259,\n                    \"Height\": 0.008761953562498093,\n                    \"Left\": 0.7020295858383179,\n                    \"Top\": 0.730744481086731\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7020295858383179,\n                        \"Y\": 0.7307986617088318\n                    },\n                    {\n                        \"X\": 0.7699759602546692,\n                        \"Y\": 0.730744481086731\n                    },\n                    {\n                        \"X\": 0.769982099533081,\n                        \"Y\": 0.7394521236419678\n                    },\n                    {\n                        \"X\": 0.7020355463027954,\n                        \"Y\": 0.7395064234733582\n                    }\n                ]\n            },\n            \"Id\": \"f51efa3d-0585-4f8f-8064-3c76a7143022\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab43754c-a26a-41f0-893e-9dad342146c7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55038452148438,\n            \"Text\": \"133,297,448\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06871499121189117,\n                    \"Height\": 0.008813807740807533,\n                    \"Left\": 0.8365285992622375,\n                    \"Top\": 0.7305559515953064\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8365285992622375,\n                        \"Y\": 0.7306108474731445\n                    },\n                    {\n                        \"X\": 0.9052370190620422,\n                        \"Y\": 0.7305559515953064\n                    },\n                    {\n                        \"X\": 0.9052435755729675,\n                        \"Y\": 0.7393149137496948\n                    },\n                    {\n                        \"X\": 0.8365349173545837,\n                        \"Y\": 0.739369809627533\n                    }\n                ]\n            },\n            \"Id\": \"02b15ca4-da2f-45e4-8879-50b623a91bf0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"816dd870-8863-4d46-9458-1929e0ebc9a1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85514068603516,\n            \"Text\": \"Transfers out\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.073408342897892,\n                    \"Height\": 0.008031658828258514,\n                    \"Left\": 0.12822900712490082,\n                    \"Top\": 0.7448409199714661\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12822900712490082,\n                        \"Y\": 0.744899570941925\n                    },\n                    {\n                        \"X\": 0.20163314044475555,\n                        \"Y\": 0.7448409199714661\n                    },\n                    {\n                        \"X\": 0.2016373574733734,\n                        \"Y\": 0.7528138756752014\n                    },\n                    {\n                        \"X\": 0.12823303043842316,\n                        \"Y\": 0.7528725862503052\n                    }\n                ]\n            },\n            \"Id\": \"e403cbd1-0c1c-4724-a255-c00d14c8eb20\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"61edc26f-e78a-46d1-ad38-fcd8ac86dc05\",\n                        \"1d112e59-3821-4514-b84a-f0d1a485cfe3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92243957519531,\n            \"Text\": \"(69,015,108)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06930188834667206,\n                    \"Height\": 0.00969897024333477,\n                    \"Left\": 0.4305821359157562,\n                    \"Top\": 0.7442232966423035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4305821359157562,\n                        \"Y\": 0.7442786693572998\n                    },\n                    {\n                        \"X\": 0.49987804889678955,\n                        \"Y\": 0.7442232966423035\n                    },\n                    {\n                        \"X\": 0.4998840391635895,\n                        \"Y\": 0.7538668513298035\n                    },\n                    {\n                        \"X\": 0.43058791756629944,\n                        \"Y\": 0.7539222836494446\n                    }\n                ]\n            },\n            \"Id\": \"7b8f046b-1c90-404d-8f92-5b957b69b343\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6fd86198-7574-4c76-a9eb-9b922c09f36d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77364349365234,\n            \"Text\": \"(64,000,000)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0692022368311882,\n                    \"Height\": 0.009733819402754307,\n                    \"Left\": 0.5577194690704346,\n                    \"Top\": 0.7440030574798584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5577194690704346,\n                        \"Y\": 0.74405837059021\n                    },\n                    {\n                        \"X\": 0.6269153356552124,\n                        \"Y\": 0.7440030574798584\n                    },\n                    {\n                        \"X\": 0.6269217133522034,\n                        \"Y\": 0.7536815404891968\n                    },\n                    {\n                        \"X\": 0.5577256679534912,\n                        \"Y\": 0.7537369132041931\n                    }\n                ]\n            },\n            \"Id\": \"436bf053-54de-401e-9603-efcd8d50e075\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6034eab9-66ab-4dbd-bafc-e29299fd5cd6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75,\n            \"Text\": \"(275,650)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05227585509419441,\n                    \"Height\": 0.00975680910050869,\n                    \"Left\": 0.7215867042541504,\n                    \"Top\": 0.743804931640625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7215867042541504,\n                        \"Y\": 0.7438467144966125\n                    },\n                    {\n                        \"X\": 0.7738556861877441,\n                        \"Y\": 0.743804931640625\n                    },\n                    {\n                        \"X\": 0.7738625407218933,\n                        \"Y\": 0.7535199522972107\n                    },\n                    {\n                        \"X\": 0.7215933799743652,\n                        \"Y\": 0.7535617351531982\n                    }\n                ]\n            },\n            \"Id\": \"12029377-0c33-4d39-9fd4-ffd62be9478e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6f4c5e0a-8816-4f3a-bc96-f3112955f5e4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7136001586914,\n            \"Text\": \"(133,290,758)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07640068978071213,\n                    \"Height\": 0.009831498377025127,\n                    \"Left\": 0.8326171636581421,\n                    \"Top\": 0.7435756921768188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8326171636581421,\n                        \"Y\": 0.7436367273330688\n                    },\n                    {\n                        \"X\": 0.9090105891227722,\n                        \"Y\": 0.7435756921768188\n                    },\n                    {\n                        \"X\": 0.9090178608894348,\n                        \"Y\": 0.7533460855484009\n                    },\n                    {\n                        \"X\": 0.8326242566108704,\n                        \"Y\": 0.7534071803092957\n                    }\n                ]\n            },\n            \"Id\": \"3ebef668-a872-4176-96fd-edfdce0f6afa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"871b03ab-b081-44e4-b8a3-546276441bd5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95125579833984,\n            \"Text\": \"Total other financing\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11444835364818573,\n                    \"Height\": 0.009710081852972507,\n                    \"Left\": 0.15687699615955353,\n                    \"Top\": 0.7604215741157532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15687699615955353,\n                        \"Y\": 0.760513186454773\n                    },\n                    {\n                        \"X\": 0.27132007479667664,\n                        \"Y\": 0.7604215741157532\n                    },\n                    {\n                        \"X\": 0.27132534980773926,\n                        \"Y\": 0.7700400352478027\n                    },\n                    {\n                        \"X\": 0.1568819284439087,\n                        \"Y\": 0.7701317071914673\n                    }\n                ]\n            },\n            \"Id\": \"cb4dab21-ca3c-4327-9ec3-203b6add4de2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6297ea3-dd40-4b09-a82f-f95322e72d39\",\n                        \"8a244359-a2a2-46b6-a983-49b3e26707bc\",\n                        \"ec26d6e4-df7c-401e-b23b-b1e5996196d6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88060760498047,\n            \"Text\": \"sources (uses)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07722806185483932,\n                    \"Height\": 0.00967386830598116,\n                    \"Left\": 0.16326071321964264,\n                    \"Top\": 0.7761171460151672\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16326071321964264,\n                        \"Y\": 0.7761790156364441\n                    },\n                    {\n                        \"X\": 0.2404835820198059,\n                        \"Y\": 0.7761171460151672\n                    },\n                    {\n                        \"X\": 0.24048876762390137,\n                        \"Y\": 0.7857291102409363\n                    },\n                    {\n                        \"X\": 0.1632656753063202,\n                        \"Y\": 0.7857909798622131\n                    }\n                ]\n            },\n            \"Id\": \"d7e7d63c-b7b0-4241-bbe1-78e19f7a51f5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3de45766-e676-44a3-aabd-3c3df605b735\",\n                        \"824adec7-fe60-4aac-b58a-4ec170689a31\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8495101928711,\n            \"Text\": \"(68,650,862)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06913769990205765,\n                    \"Height\": 0.00964828860014677,\n                    \"Left\": 0.4306480884552002,\n                    \"Top\": 0.7756447196006775\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4306480884552002,\n                        \"Y\": 0.7757000923156738\n                    },\n                    {\n                        \"X\": 0.4997798502445221,\n                        \"Y\": 0.7756447196006775\n                    },\n                    {\n                        \"X\": 0.49978578090667725,\n                        \"Y\": 0.7852375507354736\n                    },\n                    {\n                        \"X\": 0.430653840303421,\n                        \"Y\": 0.7852929830551147\n                    }\n                ]\n            },\n            \"Id\": \"0fb4ee9f-68a9-48e9-905f-85f1bfab3714\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a2e8981-c477-47e6-8857-a93e29ef897a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36604309082031,\n            \"Text\": \"(62,430,063)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06923440098762512,\n                    \"Height\": 0.009507952257990837,\n                    \"Left\": 0.5578378438949585,\n                    \"Top\": 0.7755728363990784\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5578378438949585,\n                        \"Y\": 0.7756282687187195\n                    },\n                    {\n                        \"X\": 0.6270660161972046,\n                        \"Y\": 0.7755728363990784\n                    },\n                    {\n                        \"X\": 0.627072274684906,\n                        \"Y\": 0.7850252389907837\n                    },\n                    {\n                        \"X\": 0.5578438639640808,\n                        \"Y\": 0.7850807309150696\n                    }\n                ]\n            },\n            \"Id\": \"7be966b1-3fc6-4942-a1b3-8a22de715961\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c86912c8-dedc-4b89-a9c3-09aa04dc119e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92601013183594,\n            \"Text\": \"379,141,460\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06861922144889832,\n                    \"Height\": 0.008837568573653698,\n                    \"Left\": 0.7016116380691528,\n                    \"Top\": 0.7756800055503845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7016116380691528,\n                        \"Y\": 0.7757349610328674\n                    },\n                    {\n                        \"X\": 0.7702246904373169,\n                        \"Y\": 0.7756800055503845\n                    },\n                    {\n                        \"X\": 0.7702308893203735,\n                        \"Y\": 0.784462571144104\n                    },\n                    {\n                        \"X\": 0.7016176581382751,\n                        \"Y\": 0.7845175862312317\n                    }\n                ]\n            },\n            \"Id\": \"c6b5c2c0-1a73-433a-a149-d19ef4bf8d5e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"34b4a5fe-f84b-4e6a-ab3a-c89a670fbc90\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.78816223144531,\n            \"Text\": \"248,060,535\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06801906228065491,\n                    \"Height\": 0.008814645931124687,\n                    \"Left\": 0.836759090423584,\n                    \"Top\": 0.7755779027938843\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.836759090423584,\n                        \"Y\": 0.775632381439209\n                    },\n                    {\n                        \"X\": 0.904771625995636,\n                        \"Y\": 0.7755779027938843\n                    },\n                    {\n                        \"X\": 0.9047781229019165,\n                        \"Y\": 0.7843379974365234\n                    },\n                    {\n                        \"X\": 0.836765468120575,\n                        \"Y\": 0.7843925356864929\n                    }\n                ]\n            },\n            \"Id\": \"012cf6fb-8bd4-4739-a599-d9a6e363d7c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"295a6aee-652c-4851-b7f8-0bf02f1484a7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94580841064453,\n            \"Text\": \"NET CHANGE IN FUND BALANCE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1774819791316986,\n                    \"Height\": 0.007853945717215538,\n                    \"Left\": 0.1106562465429306,\n                    \"Top\": 0.8062685132026672\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1106562465429306,\n                        \"Y\": 0.8064110279083252\n                    },\n                    {\n                        \"X\": 0.2881339490413666,\n                        \"Y\": 0.8062685132026672\n                    },\n                    {\n                        \"X\": 0.2881382405757904,\n                        \"Y\": 0.8139798045158386\n                    },\n                    {\n                        \"X\": 0.11066009104251862,\n                        \"Y\": 0.8141224384307861\n                    }\n                ]\n            },\n            \"Id\": \"3f944b26-7c3c-459d-9bfc-02ba4bb7bdde\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d798cb17-4f45-4a20-ad99-417e99bc8f34\",\n                        \"dc2ec9f4-8172-4515-9cad-74f79f5f8ff5\",\n                        \"11dcc07f-976d-440f-a26f-17fd879b4f7f\",\n                        \"462d05a1-b263-42ba-a32e-b1dad63e7318\",\n                        \"4445b0d9-f5cf-404c-a9a2-b79fd1f46ffa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95915222167969,\n            \"Text\": \"9,215,714\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055118367075920105,\n                    \"Height\": 0.008750437758862972,\n                    \"Left\": 0.4411628842353821,\n                    \"Top\": 0.8060364723205566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4411628842353821,\n                        \"Y\": 0.80608069896698\n                    },\n                    {\n                        \"X\": 0.4962758421897888,\n                        \"Y\": 0.8060364723205566\n                    },\n                    {\n                        \"X\": 0.496281236410141,\n                        \"Y\": 0.8147425651550293\n                    },\n                    {\n                        \"X\": 0.4411681294441223,\n                        \"Y\": 0.8147868514060974\n                    }\n                ]\n            },\n            \"Id\": \"db80d8a0-c923-44c7-8f87-5d11084562ff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"47991706-70cb-48c6-968e-9541977060fd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85627746582031,\n            \"Text\": \"37,197,235\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06170543655753136,\n                    \"Height\": 0.008842721581459045,\n                    \"Left\": 0.5612955689430237,\n                    \"Top\": 0.8057863712310791\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5612955689430237,\n                        \"Y\": 0.8058359622955322\n                    },\n                    {\n                        \"X\": 0.6229951977729797,\n                        \"Y\": 0.8057863712310791\n                    },\n                    {\n                        \"X\": 0.6230010390281677,\n                        \"Y\": 0.8145795464515686\n                    },\n                    {\n                        \"X\": 0.5613012313842773,\n                        \"Y\": 0.8146291375160217\n                    }\n                ]\n            },\n            \"Id\": \"d468a6b5-fbb0-4469-8007-25d9e486e14c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d2a9f7c8-1451-43e6-8eac-f06158582224\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75950622558594,\n            \"Text\": \"64,746,060\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06137681007385254,\n                    \"Height\": 0.008817620575428009,\n                    \"Left\": 0.7085086107254028,\n                    \"Top\": 0.8055034279823303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7085086107254028,\n                        \"Y\": 0.8055527210235596\n                    },\n                    {\n                        \"X\": 0.7698792815208435,\n                        \"Y\": 0.8055034279823303\n                    },\n                    {\n                        \"X\": 0.7698854207992554,\n                        \"Y\": 0.8142717480659485\n                    },\n                    {\n                        \"X\": 0.7085146307945251,\n                        \"Y\": 0.8143211007118225\n                    }\n                ]\n            },\n            \"Id\": \"a79276ca-1404-44ac-83e0-0250e536bc15\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4b60061-e2d7-4c58-b0e0-d57e195cd3f3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85675811767578,\n            \"Text\": \"111,159,009\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0680791586637497,\n                    \"Height\": 0.008819321170449257,\n                    \"Left\": 0.8370013236999512,\n                    \"Top\": 0.8054630756378174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8370013236999512,\n                        \"Y\": 0.8055177330970764\n                    },\n                    {\n                        \"X\": 0.9050739407539368,\n                        \"Y\": 0.8054630756378174\n                    },\n                    {\n                        \"X\": 0.9050804972648621,\n                        \"Y\": 0.8142277002334595\n                    },\n                    {\n                        \"X\": 0.8370077013969421,\n                        \"Y\": 0.8142823576927185\n                    }\n                ]\n            },\n            \"Id\": \"3c3ccd6d-694e-4aa7-805d-b1f878e25cf6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"375b3a6f-7fff-4166-b5bc-5b9b89745442\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.90552520751953,\n            \"Text\": \"FUND BALANCE - BEGINNING OF YEAR\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21111878752708435,\n                    \"Height\": 0.007991350255906582,\n                    \"Left\": 0.11068699508905411,\n                    \"Top\": 0.8333377242088318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11068699508905411,\n                        \"Y\": 0.8335076570510864\n                    },\n                    {\n                        \"X\": 0.3218013644218445,\n                        \"Y\": 0.8333377242088318\n                    },\n                    {\n                        \"X\": 0.32180577516555786,\n                        \"Y\": 0.8411589860916138\n                    },\n                    {\n                        \"X\": 0.1106908991932869,\n                        \"Y\": 0.841329038143158\n                    }\n                ]\n            },\n            \"Id\": \"e60b9eb6-9deb-4bb3-8a63-0d28462eee9d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"32fd9834-d493-4031-ab56-44cecb16a60d\",\n                        \"ca780646-fb2e-4ae0-9c12-15f83d544941\",\n                        \"0fbaa03d-082c-4b86-96ed-051597d032f7\",\n                        \"7133a586-eb0e-4db2-adbe-09921d372cde\",\n                        \"d527b58c-2df3-40af-b518-5852b45f30ba\",\n                        \"ccaaeb23-4edf-451e-9680-efde0926fa2d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89606475830078,\n            \"Text\": \"501,382,445\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06822086870670319,\n                    \"Height\": 0.0091427993029356,\n                    \"Left\": 0.4276624023914337,\n                    \"Top\": 0.8330072164535522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4276624023914337,\n                        \"Y\": 0.8330621719360352\n                    },\n                    {\n                        \"X\": 0.49587762355804443,\n                        \"Y\": 0.8330072164535522\n                    },\n                    {\n                        \"X\": 0.4958832561969757,\n                        \"Y\": 0.8420950770378113\n                    },\n                    {\n                        \"X\": 0.4276678264141083,\n                        \"Y\": 0.8421500325202942\n                    }\n                ]\n            },\n            \"Id\": \"4b0b7d57-9cec-4445-9bf7-7f5e9a29d0b8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5f8e49d9-6400-408f-9976-39ec7f436410\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.79568481445312,\n            \"Text\": \"181,812,071\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06749163568019867,\n                    \"Height\": 0.009015947580337524,\n                    \"Left\": 0.5555016398429871,\n                    \"Top\": 0.8329075574874878\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5555016398429871,\n                        \"Y\": 0.832961916923523\n                    },\n                    {\n                        \"X\": 0.6229873299598694,\n                        \"Y\": 0.8329075574874878\n                    },\n                    {\n                        \"X\": 0.6229932308197021,\n                        \"Y\": 0.8418691754341125\n                    },\n                    {\n                        \"X\": 0.5555073618888855,\n                        \"Y\": 0.8419235348701477\n                    }\n                ]\n            },\n            \"Id\": \"da609255-6fc5-4abf-af21-54835d25451d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"24ffdc0f-d47a-4153-bcbb-1adee569ea4d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93037414550781,\n            \"Text\": \"279,127,491\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0678781121969223,\n                    \"Height\": 0.009132921695709229,\n                    \"Left\": 0.7019127607345581,\n                    \"Top\": 0.8326953649520874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7019127607345581,\n                        \"Y\": 0.8327499628067017\n                    },\n                    {\n                        \"X\": 0.7697844505310059,\n                        \"Y\": 0.8326953649520874\n                    },\n                    {\n                        \"X\": 0.7697908282279968,\n                        \"Y\": 0.8417735695838928\n                    },\n                    {\n                        \"X\": 0.7019189596176147,\n                        \"Y\": 0.8418282866477966\n                    }\n                ]\n            },\n            \"Id\": \"77a917ab-cbf2-44c0-a50a-6e2949cd4077\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cf2e9c38-0414-4c93-893b-43038ddb3ea4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5487289428711,\n            \"Text\": \"962,322,007\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06850098818540573,\n                    \"Height\": 0.009004492312669754,\n                    \"Left\": 0.8368273973464966,\n                    \"Top\": 0.8325279951095581\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8368273973464966,\n                        \"Y\": 0.8325831294059753\n                    },\n                    {\n                        \"X\": 0.9053217172622681,\n                        \"Y\": 0.8325279951095581\n                    },\n                    {\n                        \"X\": 0.9053283929824829,\n                        \"Y\": 0.8414772748947144\n                    },\n                    {\n                        \"X\": 0.8368338942527771,\n                        \"Y\": 0.8415324687957764\n                    }\n                ]\n            },\n            \"Id\": \"61ae77d0-1a8f-4c42-9751-503062059e7d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"80fbfc29-ea12-4419-b66c-90460ebb9365\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81513977050781,\n            \"Text\": \"FUND BALANCE END OF YEAR\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17015931010246277,\n                    \"Height\": 0.007900034077465534,\n                    \"Left\": 0.11087887734174728,\n                    \"Top\": 0.8492090106010437\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11087887734174728,\n                        \"Y\": 0.8493461608886719\n                    },\n                    {\n                        \"X\": 0.2810339033603668,\n                        \"Y\": 0.8492090106010437\n                    },\n                    {\n                        \"X\": 0.28103819489479065,\n                        \"Y\": 0.856971800327301\n                    },\n                    {\n                        \"X\": 0.11088275164365768,\n                        \"Y\": 0.8571090698242188\n                    }\n                ]\n            },\n            \"Id\": \"bdb1da12-0e34-4e0c-ad4d-15196e8a9a9a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6a1f79b8-ed21-4b9d-be8f-4ed12131fe58\",\n                        \"5dab3341-ff3e-48fa-8236-c405773df6eb\",\n                        \"179899d8-2d71-4011-b736-cc145b83aeab\",\n                        \"c2a1033a-fce8-4682-b574-44e4dac135fb\",\n                        \"407f5e89-1fd4-40e5-a74f-d02264f4e8e6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96772766113281,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006618712563067675,\n                    \"Height\": 0.009359085932374,\n                    \"Left\": 0.37888869643211365,\n                    \"Top\": 0.8482937812805176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37888869643211365,\n                        \"Y\": 0.8482990860939026\n                    },\n                    {\n                        \"X\": 0.3855019211769104,\n                        \"Y\": 0.8482937812805176\n                    },\n                    {\n                        \"X\": 0.38550740480422974,\n                        \"Y\": 0.8576475381851196\n                    },\n                    {\n                        \"X\": 0.3788941502571106,\n                        \"Y\": 0.8576528429985046\n                    }\n                ]\n            },\n            \"Id\": \"5c6f64fa-7073-430d-a354-7060d840a414\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"25ddaae0-e723-44d5-a6eb-a2fa4790161d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84053039550781,\n            \"Text\": \"510,598,159\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06820309162139893,\n                    \"Height\": 0.00902208499610424,\n                    \"Left\": 0.42781394720077515,\n                    \"Top\": 0.8488984704017639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42781394720077515,\n                        \"Y\": 0.8489534258842468\n                    },\n                    {\n                        \"X\": 0.49601149559020996,\n                        \"Y\": 0.8488984704017639\n                    },\n                    {\n                        \"X\": 0.49601706862449646,\n                        \"Y\": 0.8578655123710632\n                    },\n                    {\n                        \"X\": 0.42781931161880493,\n                        \"Y\": 0.8579205274581909\n                    }\n                ]\n            },\n            \"Id\": \"6153e0fe-cb82-494e-95ed-3c4b75063159\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d0446b00-e52b-49ed-a359-4f7e470f19a7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95152282714844,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006531902588903904,\n                    \"Height\": 0.00925549678504467,\n                    \"Left\": 0.5090503096580505,\n                    \"Top\": 0.8481379151344299\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5090503096580505,\n                        \"Y\": 0.8481432199478149\n                    },\n                    {\n                        \"X\": 0.5155764818191528,\n                        \"Y\": 0.8481379151344299\n                    },\n                    {\n                        \"X\": 0.515582263469696,\n                        \"Y\": 0.8573881387710571\n                    },\n                    {\n                        \"X\": 0.5090560913085938,\n                        \"Y\": 0.8573934435844421\n                    }\n                ]\n            },\n            \"Id\": \"a4824c74-8bc9-4a6d-88b5-91ce18e0da7b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab6823c9-0f22-4926-a098-83ae659dd87c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91375732421875,\n            \"Text\": \"219,009,306\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0684603750705719,\n                    \"Height\": 0.00907265767455101,\n                    \"Left\": 0.5551161170005798,\n                    \"Top\": 0.8487610220909119\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5551161170005798,\n                        \"Y\": 0.8488162159919739\n                    },\n                    {\n                        \"X\": 0.6235705614089966,\n                        \"Y\": 0.8487610220909119\n                    },\n                    {\n                        \"X\": 0.6235765218734741,\n                        \"Y\": 0.8577784299850464\n                    },\n                    {\n                        \"X\": 0.555121898651123,\n                        \"Y\": 0.8578336834907532\n                    }\n                ]\n            },\n            \"Id\": \"ac6cc1c2-fae8-44cc-83cb-1e7e301ca80e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2d8e6b71-08d3-4648-b2a2-081af7f3ce52\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96497344970703,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006785423494875431,\n                    \"Height\": 0.009500393643975258,\n                    \"Left\": 0.6362107992172241,\n                    \"Top\": 0.8478953242301941\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6362107992172241,\n                        \"Y\": 0.8479008078575134\n                    },\n                    {\n                        \"X\": 0.6429898738861084,\n                        \"Y\": 0.8478953242301941\n                    },\n                    {\n                        \"X\": 0.6429961919784546,\n                        \"Y\": 0.857390284538269\n                    },\n                    {\n                        \"X\": 0.6362171173095703,\n                        \"Y\": 0.8573957681655884\n                    }\n                ]\n            },\n            \"Id\": \"60d02e36-8a96-43fb-8e3b-d4ac549c9ed7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"73a551e5-f388-43ea-9725-f79b9df80243\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6942367553711,\n            \"Text\": \"343,873,551\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0682045966386795,\n                    \"Height\": 0.009140944108366966,\n                    \"Left\": 0.7016724944114685,\n                    \"Top\": 0.8481492400169373\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7016724944114685,\n                        \"Y\": 0.8482041954994202\n                    },\n                    {\n                        \"X\": 0.7698706388473511,\n                        \"Y\": 0.8481492400169373\n                    },\n                    {\n                        \"X\": 0.7698770761489868,\n                        \"Y\": 0.8572351336479187\n                    },\n                    {\n                        \"X\": 0.7016786932945251,\n                        \"Y\": 0.8572901487350464\n                    }\n                ]\n            },\n            \"Id\": \"65540e5a-1b1c-43fe-b195-edfc9f04bbd1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f79ff45f-adf5-44b4-84f1-5cb2048a8134\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9753189086914,\n            \"Text\": \"$\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006685756612569094,\n                    \"Height\": 0.009126766584813595,\n                    \"Left\": 0.783098042011261,\n                    \"Top\": 0.8477442860603333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.783098042011261,\n                        \"Y\": 0.8477497100830078\n                    },\n                    {\n                        \"X\": 0.7897772789001465,\n                        \"Y\": 0.8477442860603333\n                    },\n                    {\n                        \"X\": 0.789783775806427,\n                        \"Y\": 0.8568657040596008\n                    },\n                    {\n                        \"X\": 0.7831044793128967,\n                        \"Y\": 0.8568710684776306\n                    }\n                ]\n            },\n            \"Id\": \"58916e6f-b20e-46c3-a4bc-b68cf934cae9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"78487c44-64fe-4d5b-8b31-ec0fa999089d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69205474853516,\n            \"Text\": \"1,073,481,016\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07876347005367279,\n                    \"Height\": 0.00902485754340887,\n                    \"Left\": 0.8272984027862549,\n                    \"Top\": 0.8480549454689026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8272984027862549,\n                        \"Y\": 0.8481184244155884\n                    },\n                    {\n                        \"X\": 0.9060551524162292,\n                        \"Y\": 0.8480549454689026\n                    },\n                    {\n                        \"X\": 0.9060618877410889,\n                        \"Y\": 0.8570162653923035\n                    },\n                    {\n                        \"X\": 0.8273048996925354,\n                        \"Y\": 0.857079803943634\n                    }\n                ]\n            },\n            \"Id\": \"2df931ad-85a4-4e30-a0f9-bb09e87026c4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8fa2cd66-8944-4f53-af9c-f6d3966f09dc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.92642211914062,\n            \"Text\": \"The accompanying notes are an integral part of this statement.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.24917487800121307,\n                    \"Height\": 0.007761439774185419,\n                    \"Left\": 0.3852337598800659,\n                    \"Top\": 0.8939093947410583\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3852337598800659,\n                        \"Y\": 0.8941109776496887\n                    },\n                    {\n                        \"X\": 0.634403645992279,\n                        \"Y\": 0.8939093947410583\n                    },\n                    {\n                        \"X\": 0.6344086527824402,\n                        \"Y\": 0.9014691114425659\n                    },\n                    {\n                        \"X\": 0.3852381706237793,\n                        \"Y\": 0.9016708135604858\n                    }\n                ]\n            },\n            \"Id\": \"39b3b0f4-b1af-4e44-968a-171e169e87fe\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b22b6c4e-eb03-4a7a-8b1c-dc4d38515b7d\",\n                        \"24f02e04-a096-41b3-8a0f-6141adf3d27a\",\n                        \"9b06ddab-43f5-42bc-bc8b-2d2a5eccea22\",\n                        \"fd815b65-077a-42dc-9437-c365f5efe137\",\n                        \"94d9e355-3d8d-469a-896e-3d29ee44d052\",\n                        \"5c66ff74-e003-4106-ad51-066464706678\",\n                        \"dd0afa0d-2fda-4a69-b1ff-be8cc936c39e\",\n                        \"3e671aa5-40fd-4ba9-b2b3-591f185da851\",\n                        \"ca46aead-889c-4c8e-84a6-3b17814c5704\",\n                        \"8a1e059d-c927-4cd5-8bfd-5e13ba7282d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.67340087890625,\n            \"Text\": \"COMPREHENSIVE ANNUAL FINANCIAL REPORT\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3730001449584961,\n                    \"Height\": 0.008613351732492447,\n                    \"Left\": 0.08935679495334625,\n                    \"Top\": 0.946160614490509\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08935679495334625,\n                        \"Y\": 0.9464637041091919\n                    },\n                    {\n                        \"X\": 0.46235188841819763,\n                        \"Y\": 0.946160614490509\n                    },\n                    {\n                        \"X\": 0.46235692501068115,\n                        \"Y\": 0.954470694065094\n                    },\n                    {\n                        \"X\": 0.08936089277267456,\n                        \"Y\": 0.9547739624977112\n                    }\n                ]\n            },\n            \"Id\": \"c36064a4-6086-4674-9ac9-ecd71d4587c0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e8362ef0-91c4-4551-988e-a46b782ca6b7\",\n                        \"a7369f4d-6c56-4b76-b630-55778b49e737\",\n                        \"a4c85dfe-044d-4135-b354-24943a484001\",\n                        \"50894f50-6190-4892-886f-dd676dc4960e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87852478027344,\n            \"Text\": \"17\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012814981862902641,\n                    \"Height\": 0.008152082562446594,\n                    \"Left\": 0.928790271282196,\n                    \"Top\": 0.9467617869377136\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.928790271282196,\n                        \"Y\": 0.9467722177505493\n                    },\n                    {\n                        \"X\": 0.9415991306304932,\n                        \"Y\": 0.9467617869377136\n                    },\n                    {\n                        \"X\": 0.941605269908905,\n                        \"Y\": 0.9549034833908081\n                    },\n                    {\n                        \"X\": 0.9287964701652527,\n                        \"Y\": 0.954913854598999\n                    }\n                ]\n            },\n            \"Id\": \"6e75818f-fb50-49e2-a392-4932958801c6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"842e742b-dae5-48a2-9bee-44c6b66b22ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94066619873047,\n            \"Text\": \"A-4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019717397168278694,\n                    \"Height\": 0.007507956586778164,\n                    \"Left\": 0.4986926317214966,\n                    \"Top\": 0.07198607921600342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4986926317214966,\n                        \"Y\": 0.07200095057487488\n                    },\n                    {\n                        \"X\": 0.5184053182601929,\n                        \"Y\": 0.07198607921600342\n                    },\n                    {\n                        \"X\": 0.5184100270271301,\n                        \"Y\": 0.0794791579246521\n                    },\n                    {\n                        \"X\": 0.49869728088378906,\n                        \"Y\": 0.07949403673410416\n                    }\n                ]\n            },\n            \"Id\": \"da3604c9-bc79-42cb-8cbe-f34c0c338307\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.30661010742188,\n            \"Text\": \"MECKLENBURG\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08467027544975281,\n                    \"Height\": 0.007618884090334177,\n                    \"Left\": 0.3878788352012634,\n                    \"Top\": 0.08579488843679428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3878788352012634,\n                        \"Y\": 0.08585882931947708\n                    },\n                    {\n                        \"X\": 0.47254449129104614,\n                        \"Y\": 0.08579488843679428\n                    },\n                    {\n                        \"X\": 0.47254911065101624,\n                        \"Y\": 0.09334979951381683\n                    },\n                    {\n                        \"X\": 0.3878832757472992,\n                        \"Y\": 0.09341377764940262\n                    }\n                ]\n            },\n            \"Id\": \"915b4836-19a6-43f4-aeef-3deb57c355dd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.21858215332031,\n            \"Text\": \"COUNTY,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05014560744166374,\n                    \"Height\": 0.009232754819095135,\n                    \"Left\": 0.4760793149471283,\n                    \"Top\": 0.08547419309616089\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4760793149471283,\n                        \"Y\": 0.08551204949617386\n                    },\n                    {\n                        \"X\": 0.5262191295623779,\n                        \"Y\": 0.08547419309616089\n                    },\n                    {\n                        \"X\": 0.5262249112129211,\n                        \"Y\": 0.09466905146837234\n                    },\n                    {\n                        \"X\": 0.47608497738838196,\n                        \"Y\": 0.0947069451212883\n                    }\n                ]\n            },\n            \"Id\": \"0694177d-575b-4927-ae3a-d11e55e4b11e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93169403076172,\n            \"Text\": \"NORTH\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03911573439836502,\n                    \"Height\": 0.007628852501511574,\n                    \"Left\": 0.5300036072731018,\n                    \"Top\": 0.08561233431100845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5300036072731018,\n                        \"Y\": 0.08564186841249466\n                    },\n                    {\n                        \"X\": 0.5691145062446594,\n                        \"Y\": 0.08561233431100845\n                    },\n                    {\n                        \"X\": 0.569119393825531,\n                        \"Y\": 0.09321162849664688\n                    },\n                    {\n                        \"X\": 0.5300084352493286,\n                        \"Y\": 0.09324118494987488\n                    }\n                ]\n            },\n            \"Id\": \"b4dbf69b-5fe9-4b2a-b4e5-d9959fbafbe0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87374114990234,\n            \"Text\": \"CAROLINA\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05726964771747589,\n                    \"Height\": 0.007562545128166676,\n                    \"Left\": 0.5728244185447693,\n                    \"Top\": 0.08560780435800552\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5728244185447693,\n                        \"Y\": 0.08565104752779007\n                    },\n                    {\n                        \"X\": 0.6300891041755676,\n                        \"Y\": 0.08560780435800552\n                    },\n                    {\n                        \"X\": 0.630094051361084,\n                        \"Y\": 0.09312707930803299\n                    },\n                    {\n                        \"X\": 0.5728292465209961,\n                        \"Y\": 0.09317035228013992\n                    }\n                ]\n            },\n            \"Id\": \"ccf304fd-5bb0-4b60-a36b-e7b203705eac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95407104492188,\n            \"Text\": \"STATEMENT\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06803057342767715,\n                    \"Height\": 0.0076546804048120975,\n                    \"Left\": 0.29473862051963806,\n                    \"Top\": 0.0996764600276947\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29473862051963806,\n                        \"Y\": 0.09972789138555527\n                    },\n                    {\n                        \"X\": 0.36276480555534363,\n                        \"Y\": 0.0996764600276947\n                    },\n                    {\n                        \"X\": 0.3627691864967346,\n                        \"Y\": 0.10727967321872711\n                    },\n                    {\n                        \"X\": 0.2947428524494171,\n                        \"Y\": 0.10733114182949066\n                    }\n                ]\n            },\n            \"Id\": \"871fb159-93d2-45e7-b1cb-f1844a08994c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98184967041016,\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01507053803652525,\n                    \"Height\": 0.007583041675388813,\n                    \"Left\": 0.36607417464256287,\n                    \"Top\": 0.09958665072917938\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36607417464256287,\n                        \"Y\": 0.09959804266691208\n                    },\n                    {\n                        \"X\": 0.3811402916908264,\n                        \"Y\": 0.09958665072917938\n                    },\n                    {\n                        \"X\": 0.3811447024345398,\n                        \"Y\": 0.10715828835964203\n                    },\n                    {\n                        \"X\": 0.36607855558395386,\n                        \"Y\": 0.10716968774795532\n                    }\n                ]\n            },\n            \"Id\": \"e556bf5b-aac1-4c34-ba89-b38b76482a11\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.40391540527344,\n            \"Text\": \"REVENUES,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06112996116280556,\n                    \"Height\": 0.008767970837652683,\n                    \"Left\": 0.38460302352905273,\n                    \"Top\": 0.09958171844482422\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38460302352905273,\n                        \"Y\": 0.09962793439626694\n                    },\n                    {\n                        \"X\": 0.44572770595550537,\n                        \"Y\": 0.09958171844482422\n                    },\n                    {\n                        \"X\": 0.445732980966568,\n                        \"Y\": 0.10830343514680862\n                    },\n                    {\n                        \"X\": 0.38460811972618103,\n                        \"Y\": 0.10834968835115433\n                    }\n                ]\n            },\n            \"Id\": \"bae5c944-54be-4586-9c39-5d631ba0711a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68983459472656,\n            \"Text\": \"EXPENDITURES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0839260071516037,\n                    \"Height\": 0.00782865472137928,\n                    \"Left\": 0.4487498700618744,\n                    \"Top\": 0.099390409886837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4487498700618744,\n                        \"Y\": 0.09945385903120041\n                    },\n                    {\n                        \"X\": 0.5326709747314453,\n                        \"Y\": 0.099390409886837\n                    },\n                    {\n                        \"X\": 0.5326758623123169,\n                        \"Y\": 0.10715556889772415\n                    },\n                    {\n                        \"X\": 0.44875457882881165,\n                        \"Y\": 0.10721906274557114\n                    }\n                ]\n            },\n            \"Id\": \"55fad0dc-4f08-4e5d-9de5-4380cbe0f76e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9670181274414,\n            \"Text\": \"AND\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025203058496117592,\n                    \"Height\": 0.00747445784509182,\n                    \"Left\": 0.5351628661155701,\n                    \"Top\": 0.09946802258491516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5351628661155701,\n                        \"Y\": 0.0994870737195015\n                    },\n                    {\n                        \"X\": 0.5603611469268799,\n                        \"Y\": 0.09946802258491516\n                    },\n                    {\n                        \"X\": 0.5603659152984619,\n                        \"Y\": 0.1069234162569046\n                    },\n                    {\n                        \"X\": 0.5351675748825073,\n                        \"Y\": 0.10694248229265213\n                    }\n                ]\n            },\n            \"Id\": \"21058087-0d70-4b44-b081-9654d04c1286\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95809936523438,\n            \"Text\": \"CHANGES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054434631019830704,\n                    \"Height\": 0.007687276694923639,\n                    \"Left\": 0.5636300444602966,\n                    \"Top\": 0.09942293167114258\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5636300444602966,\n                        \"Y\": 0.09946408867835999\n                    },\n                    {\n                        \"X\": 0.6180596351623535,\n                        \"Y\": 0.09942293167114258\n                    },\n                    {\n                        \"X\": 0.6180646419525146,\n                        \"Y\": 0.10706903040409088\n                    },\n                    {\n                        \"X\": 0.5636349320411682,\n                        \"Y\": 0.10711020976305008\n                    }\n                ]\n            },\n            \"Id\": \"dfd2cbe4-c97d-4aa3-8b0c-0040b10efee0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96478271484375,\n            \"Text\": \"IN\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011317813768982887,\n                    \"Height\": 0.007489194627851248,\n                    \"Left\": 0.6211128234863281,\n                    \"Top\": 0.09938222914934158\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6211128234863281,\n                        \"Y\": 0.09939078241586685\n                    },\n                    {\n                        \"X\": 0.6324256658554077,\n                        \"Y\": 0.09938222914934158\n                    },\n                    {\n                        \"X\": 0.6324306130409241,\n                        \"Y\": 0.1068628653883934\n                    },\n                    {\n                        \"X\": 0.6211177706718445,\n                        \"Y\": 0.10687141865491867\n                    }\n                ]\n            },\n            \"Id\": \"a2daedf1-3810-4f1a-b175-0c1d87ec51e4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95893096923828,\n            \"Text\": \"FUND\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03150448948144913,\n                    \"Height\": 0.007672307547181845,\n                    \"Left\": 0.6361533403396606,\n                    \"Top\": 0.09925200790166855\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6361533403396606,\n                        \"Y\": 0.09927581995725632\n                    },\n                    {\n                        \"X\": 0.6676527261734009,\n                        \"Y\": 0.09925200790166855\n                    },\n                    {\n                        \"X\": 0.6676578521728516,\n                        \"Y\": 0.10690048336982727\n                    },\n                    {\n                        \"X\": 0.6361584663391113,\n                        \"Y\": 0.10692431032657623\n                    }\n                ]\n            },\n            \"Id\": \"185a53fe-5639-4e8d-9369-8300b1a864db\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93663787841797,\n            \"Text\": \"BALANCE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05128313601016998,\n                    \"Height\": 0.007682036142796278,\n                    \"Left\": 0.6710731983184814,\n                    \"Top\": 0.09915254265069962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6710731983184814,\n                        \"Y\": 0.09919131547212601\n                    },\n                    {\n                        \"X\": 0.72235107421875,\n                        \"Y\": 0.09915254265069962\n                    },\n                    {\n                        \"X\": 0.7223563194274902,\n                        \"Y\": 0.1067957878112793\n                    },\n                    {\n                        \"X\": 0.6710783243179321,\n                        \"Y\": 0.10683458298444748\n                    }\n                ]\n            },\n            \"Id\": \"4ecb0aba-efa4-4246-b797-a7ccd7f03852\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80010986328125,\n            \"Text\": \"GOVERNMENTAL\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09579013288021088,\n                    \"Height\": 0.00787378940731287,\n                    \"Left\": 0.44064101576805115,\n                    \"Top\": 0.11318260431289673\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44064101576805115,\n                        \"Y\": 0.11325511336326599\n                    },\n                    {\n                        \"X\": 0.5364262461662292,\n                        \"Y\": 0.11318260431289673\n                    },\n                    {\n                        \"X\": 0.5364311337471008,\n                        \"Y\": 0.12098383903503418\n                    },\n                    {\n                        \"X\": 0.4406457245349884,\n                        \"Y\": 0.12105639278888702\n                    }\n                ]\n            },\n            \"Id\": \"de9ccc0f-29f9-4247-af1b-68e6f6e67f07\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.929443359375,\n            \"Text\": \"FUNDS\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0376351997256279,\n                    \"Height\": 0.007786326576024294,\n                    \"Left\": 0.5392789840698242,\n                    \"Top\": 0.11311168223619461\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5392789840698242,\n                        \"Y\": 0.11314016580581665\n                    },\n                    {\n                        \"X\": 0.5769091844558716,\n                        \"Y\": 0.11311168223619461\n                    },\n                    {\n                        \"X\": 0.5769141912460327,\n                        \"Y\": 0.12086950242519379\n                    },\n                    {\n                        \"X\": 0.5392838716506958,\n                        \"Y\": 0.12089800834655762\n                    }\n                ]\n            },\n            \"Id\": \"78947068-9338-4552-80ac-fd412f11a0e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96377563476562,\n            \"Text\": \"FOR\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022271133959293365,\n                    \"Height\": 0.007531310897320509,\n                    \"Left\": 0.4077078402042389,\n                    \"Top\": 0.12714411318302155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4077078402042389,\n                        \"Y\": 0.12716099619865417\n                    },\n                    {\n                        \"X\": 0.4299744963645935,\n                        \"Y\": 0.12714411318302155\n                    },\n                    {\n                        \"X\": 0.42997899651527405,\n                        \"Y\": 0.134658545255661\n                    },\n                    {\n                        \"X\": 0.40771231055259705,\n                        \"Y\": 0.13467542827129364\n                    }\n                ]\n            },\n            \"Id\": \"a21d1062-6b2d-4bc0-99cf-8ed506fa1d5a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98053741455078,\n            \"Text\": \"THE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02221083454787731,\n                    \"Height\": 0.007522557862102985,\n                    \"Left\": 0.4324117600917816,\n                    \"Top\": 0.1270529329776764\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4324117600917816,\n                        \"Y\": 0.12706975638866425\n                    },\n                    {\n                        \"X\": 0.45461803674697876,\n                        \"Y\": 0.1270529329776764\n                    },\n                    {\n                        \"X\": 0.4546225965023041,\n                        \"Y\": 0.13455864787101746\n                    },\n                    {\n                        \"X\": 0.43241626024246216,\n                        \"Y\": 0.1345754861831665\n                    }\n                ]\n            },\n            \"Id\": \"0aaa9eb5-d1ac-4fa0-b1df-177fccbb96dc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94985961914062,\n            \"Text\": \"YEAR\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029128316789865494,\n                    \"Height\": 0.007447416428476572,\n                    \"Left\": 0.4572717845439911,\n                    \"Top\": 0.1270046830177307\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4572717845439911,\n                        \"Y\": 0.1270267516374588\n                    },\n                    {\n                        \"X\": 0.4863955080509186,\n                        \"Y\": 0.1270046830177307\n                    },\n                    {\n                        \"X\": 0.4864000976085663,\n                        \"Y\": 0.13443000614643097\n                    },\n                    {\n                        \"X\": 0.45727628469467163,\n                        \"Y\": 0.13445208966732025\n                    }\n                ]\n            },\n            \"Id\": \"ff0674b4-21f8-42e6-9c9c-d7a11ec98905\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88509368896484,\n            \"Text\": \"ENDED\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038168203085660934,\n                    \"Height\": 0.007575958967208862,\n                    \"Left\": 0.48950275778770447,\n                    \"Top\": 0.12689648568630219\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48950275778770447,\n                        \"Y\": 0.12692542374134064\n                    },\n                    {\n                        \"X\": 0.5276662111282349,\n                        \"Y\": 0.12689648568630219\n                    },\n                    {\n                        \"X\": 0.5276709794998169,\n                        \"Y\": 0.1344435065984726\n                    },\n                    {\n                        \"X\": 0.48950743675231934,\n                        \"Y\": 0.13447244465351105\n                    }\n                ]\n            },\n            \"Id\": \"68dc8b0f-5204-404a-8591-55264e9a8e82\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70068359375,\n            \"Text\": \"JUNE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02843393012881279,\n                    \"Height\": 0.007620727177709341,\n                    \"Left\": 0.5307521224021912,\n                    \"Top\": 0.12688958644866943\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5307521224021912,\n                        \"Y\": 0.12691113352775574\n                    },\n                    {\n                        \"X\": 0.5591811537742615,\n                        \"Y\": 0.12688958644866943\n                    },\n                    {\n                        \"X\": 0.5591860413551331,\n                        \"Y\": 0.13448874652385712\n                    },\n                    {\n                        \"X\": 0.5307568907737732,\n                        \"Y\": 0.13451030850410461\n                    }\n                ]\n            },\n            \"Id\": \"973bf735-2707-4a9d-9426-e63f90b2948f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67752838134766,\n            \"Text\": \"30,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016667913645505905,\n                    \"Height\": 0.008876362815499306,\n                    \"Left\": 0.5625041127204895,\n                    \"Top\": 0.12697751820087433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5625041127204895,\n                        \"Y\": 0.12699013948440552\n                    },\n                    {\n                        \"X\": 0.5791662931442261,\n                        \"Y\": 0.12697751820087433\n                    },\n                    {\n                        \"X\": 0.5791720151901245,\n                        \"Y\": 0.1358412355184555\n                    },\n                    {\n                        \"X\": 0.5625097751617432,\n                        \"Y\": 0.13585388660430908\n                    }\n                ]\n            },\n            \"Id\": \"5e5f61e4-5bc8-457a-adcb-5ee0d00b5bcb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9263916015625,\n            \"Text\": \"2018\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02745767869055271,\n                    \"Height\": 0.007738186977803707,\n                    \"Left\": 0.5827001333236694,\n                    \"Top\": 0.126765176653862\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5827001333236694,\n                        \"Y\": 0.1267859786748886\n                    },\n                    {\n                        \"X\": 0.6101527810096741,\n                        \"Y\": 0.126765176653862\n                    },\n                    {\n                        \"X\": 0.61015784740448,\n                        \"Y\": 0.13448253273963928\n                    },\n                    {\n                        \"X\": 0.5827051401138306,\n                        \"Y\": 0.13450336456298828\n                    }\n                ]\n            },\n            \"Id\": \"40a50940-588b-49a9-a56d-5feb2d220526\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98222351074219,\n            \"Text\": \"Debt\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026407741010189056,\n                    \"Height\": 0.007780742831528187,\n                    \"Left\": 0.5522582530975342,\n                    \"Top\": 0.1544410139322281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5522582530975342,\n                        \"Y\": 0.154461070895195\n                    },\n                    {\n                        \"X\": 0.5786609649658203,\n                        \"Y\": 0.1544410139322281\n                    },\n                    {\n                        \"X\": 0.5786659717559814,\n                        \"Y\": 0.1622016876935959\n                    },\n                    {\n                        \"X\": 0.5522632002830505,\n                        \"Y\": 0.162221759557724\n                    }\n                ]\n            },\n            \"Id\": \"730b5ec8-5cca-48e5-a8df-7bedb269d9ec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86443328857422,\n            \"Text\": \"Nonmajor\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05478428304195404,\n                    \"Height\": 0.009102829732000828,\n                    \"Left\": 0.6750528216362,\n                    \"Top\": 0.15432314574718475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6750528216362,\n                        \"Y\": 0.15436476469039917\n                    },\n                    {\n                        \"X\": 0.7298308610916138,\n                        \"Y\": 0.15432314574718475\n                    },\n                    {\n                        \"X\": 0.7298371195793152,\n                        \"Y\": 0.1633843183517456\n                    },\n                    {\n                        \"X\": 0.6750589609146118,\n                        \"Y\": 0.1634259670972824\n                    }\n                ]\n            },\n            \"Id\": \"dc925817-2bc3-4401-ae06-53094e453fac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9231185913086,\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027840306982398033,\n                    \"Height\": 0.00789112038910389,\n                    \"Left\": 0.8289929628372192,\n                    \"Top\": 0.15392592549324036\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8289929628372192,\n                        \"Y\": 0.15394707024097443\n                    },\n                    {\n                        \"X\": 0.8568275570869446,\n                        \"Y\": 0.15392592549324036\n                    },\n                    {\n                        \"X\": 0.856833279132843,\n                        \"Y\": 0.16179588437080383\n                    },\n                    {\n                        \"X\": 0.8289986848831177,\n                        \"Y\": 0.1618170440196991\n                    }\n                ]\n            },\n            \"Id\": \"dc559009-1fbf-4f8c-8d4e-d0756b440a30\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95450592041016,\n            \"Text\": \"General\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04266580566763878,\n                    \"Height\": 0.008151098154485226,\n                    \"Left\": 0.41516509652137756,\n                    \"Top\": 0.16809335350990295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41516509652137756,\n                        \"Y\": 0.16812580823898315\n                    },\n                    {\n                        \"X\": 0.4578259587287903,\n                        \"Y\": 0.16809335350990295\n                    },\n                    {\n                        \"X\": 0.45783087611198425,\n                        \"Y\": 0.17621198296546936\n                    },\n                    {\n                        \"X\": 0.415169894695282,\n                        \"Y\": 0.17624445259571075\n                    }\n                ]\n            },\n            \"Id\": \"baec9f64-9a13-4702-b9fd-fe5a69b7df2a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95771026611328,\n            \"Text\": \"Service\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039159443229436874,\n                    \"Height\": 0.007907518185675144,\n                    \"Left\": 0.545534074306488,\n                    \"Top\": 0.1681336611509323\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.545534074306488,\n                        \"Y\": 0.1681634485721588\n                    },\n                    {\n                        \"X\": 0.5846884250640869,\n                        \"Y\": 0.1681336611509323\n                    },\n                    {\n                        \"X\": 0.5846934914588928,\n                        \"Y\": 0.1760113686323166\n                    },\n                    {\n                        \"X\": 0.5455390810966492,\n                        \"Y\": 0.17604118585586548\n                    }\n                ]\n            },\n            \"Id\": \"f81c4eaf-9d75-442f-8951-74e0a29d9bbf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90296936035156,\n            \"Text\": \"Governmental\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07817747443914413,\n                    \"Height\": 0.00792798213660717,\n                    \"Left\": 0.6629002094268799,\n                    \"Top\": 0.16796426475048065\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6629002094268799,\n                        \"Y\": 0.1680237203836441\n                    },\n                    {\n                        \"X\": 0.7410721778869629,\n                        \"Y\": 0.16796426475048065\n                    },\n                    {\n                        \"X\": 0.7410776615142822,\n                        \"Y\": 0.17583274841308594\n                    },\n                    {\n                        \"X\": 0.6629054546356201,\n                        \"Y\": 0.17589224874973297\n                    }\n                ]\n            },\n            \"Id\": \"488bf395-682f-4b72-ba29-59eab4465c6f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93904113769531,\n            \"Text\": \"Governmental\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07833745330572128,\n                    \"Height\": 0.00798101257532835,\n                    \"Left\": 0.8041697144508362,\n                    \"Top\": 0.16770610213279724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8041697144508362,\n                        \"Y\": 0.16776569187641144\n                    },\n                    {\n                        \"X\": 0.8825013041496277,\n                        \"Y\": 0.16770610213279724\n                    },\n                    {\n                        \"X\": 0.8825071454048157,\n                        \"Y\": 0.17562749981880188\n                    },\n                    {\n                        \"X\": 0.8041753768920898,\n                        \"Y\": 0.17568711936473846\n                    }\n                ]\n            },\n            \"Id\": \"bdb22b16-0656-42bf-ae71-db9de38086f5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98711395263672,\n            \"Text\": \"Fund\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02689930982887745,\n                    \"Height\": 0.007677082438021898,\n                    \"Left\": 0.4231102764606476,\n                    \"Top\": 0.1817322075366974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4231102764606476,\n                        \"Y\": 0.18175269663333893\n                    },\n                    {\n                        \"X\": 0.4500049650669098,\n                        \"Y\": 0.1817322075366974\n                    },\n                    {\n                        \"X\": 0.4500095844268799,\n                        \"Y\": 0.18938879668712616\n                    },\n                    {\n                        \"X\": 0.4231148660182953,\n                        \"Y\": 0.1894092857837677\n                    }\n                ]\n            },\n            \"Id\": \"6cadcdcf-4ebe-495b-b508-85c0279d4f6e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97726440429688,\n            \"Text\": \"Fund\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026872269809246063,\n                    \"Height\": 0.007633550092577934,\n                    \"Left\": 0.5518976449966431,\n                    \"Top\": 0.18163681030273438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5518976449966431,\n                        \"Y\": 0.18165726959705353\n                    },\n                    {\n                        \"X\": 0.5787649750709534,\n                        \"Y\": 0.18163681030273438\n                    },\n                    {\n                        \"X\": 0.5787699222564697,\n                        \"Y\": 0.1892498880624771\n                    },\n                    {\n                        \"X\": 0.5519024729728699,\n                        \"Y\": 0.18927036225795746\n                    }\n                ]\n            },\n            \"Id\": \"e7511087-f58d-4519-82e5-3ee4ffac1b0b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97865295410156,\n            \"Text\": \"Funds\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032226014882326126,\n                    \"Height\": 0.007565352600067854,\n                    \"Left\": 0.6863751411437988,\n                    \"Top\": 0.18149352073669434\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6863751411437988,\n                        \"Y\": 0.1815180629491806\n                    },\n                    {\n                        \"X\": 0.7185959815979004,\n                        \"Y\": 0.18149352073669434\n                    },\n                    {\n                        \"X\": 0.7186011672019958,\n                        \"Y\": 0.1890343278646469\n                    },\n                    {\n                        \"X\": 0.6863802671432495,\n                        \"Y\": 0.18905887007713318\n                    }\n                ]\n            },\n            \"Id\": \"6e9fe541-8352-4c26-834f-e4e8a7d7f7af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98499298095703,\n            \"Text\": \"Funds\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03223782405257225,\n                    \"Height\": 0.007519848179072142,\n                    \"Left\": 0.8273398280143738,\n                    \"Top\": 0.1813504993915558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8273398280143738,\n                        \"Y\": 0.18137504160404205\n                    },\n                    {\n                        \"X\": 0.859572172164917,\n                        \"Y\": 0.1813504993915558\n                    },\n                    {\n                        \"X\": 0.8595776557922363,\n                        \"Y\": 0.18884578347206116\n                    },\n                    {\n                        \"X\": 0.8273452520370483,\n                        \"Y\": 0.18887034058570862\n                    }\n                ]\n            },\n            \"Id\": \"e8315f5d-d0fb-4300-915e-9d5aa359a744\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88338470458984,\n            \"Text\": \"REVENUES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0585334487259388,\n                    \"Height\": 0.00781822856515646,\n                    \"Left\": 0.10902470350265503,\n                    \"Top\": 0.198225200176239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10902470350265503,\n                        \"Y\": 0.19826984405517578\n                    },\n                    {\n                        \"X\": 0.16755414009094238,\n                        \"Y\": 0.198225200176239\n                    },\n                    {\n                        \"X\": 0.16755814850330353,\n                        \"Y\": 0.2059987634420395\n                    },\n                    {\n                        \"X\": 0.10902858525514603,\n                        \"Y\": 0.20604343712329865\n                    }\n                ]\n            },\n            \"Id\": \"e7b432d0-7d23-4c27-a6b0-a39dd54a1aa1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97467041015625,\n            \"Text\": \"Taxes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.031443897634744644,\n                    \"Height\": 0.007601593621075153,\n                    \"Left\": 0.12716929614543915,\n                    \"Top\": 0.21212773025035858\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12716929614543915,\n                        \"Y\": 0.21215173602104187\n                    },\n                    {\n                        \"X\": 0.1586092859506607,\n                        \"Y\": 0.21212773025035858\n                    },\n                    {\n                        \"X\": 0.1586131900548935,\n                        \"Y\": 0.21970529854297638\n                    },\n                    {\n                        \"X\": 0.12717311084270477,\n                        \"Y\": 0.21972931921482086\n                    }\n                ]\n            },\n            \"Id\": \"f91ab119-aa33-46ac-a6ea-57122b662448\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9781723022461,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006562374532222748,\n                    \"Height\": 0.009154515340924263,\n                    \"Left\": 0.3775043487548828,\n                    \"Top\": 0.2110685408115387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3775043487548828,\n                        \"Y\": 0.21107354760169983\n                    },\n                    {\n                        \"X\": 0.38406139612197876,\n                        \"Y\": 0.2110685408115387\n                    },\n                    {\n                        \"X\": 0.38406673073768616,\n                        \"Y\": 0.22021803259849548\n                    },\n                    {\n                        \"X\": 0.3775096833705902,\n                        \"Y\": 0.2202230542898178\n                    }\n                ]\n            },\n            \"Id\": \"b8a5f7bf-43a5-40b5-b261-73ea2de7b4bd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8322525024414,\n            \"Text\": \"992,032,794\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06873741745948792,\n                    \"Height\": 0.008964729495346546,\n                    \"Left\": 0.42624327540397644,\n                    \"Top\": 0.21150241792201996\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42624327540397644,\n                        \"Y\": 0.2115548998117447\n                    },\n                    {\n                        \"X\": 0.49497517943382263,\n                        \"Y\": 0.21150241792201996\n                    },\n                    {\n                        \"X\": 0.49498069286346436,\n                        \"Y\": 0.2204146385192871\n                    },\n                    {\n                        \"X\": 0.42624861001968384,\n                        \"Y\": 0.22046715021133423\n                    }\n                ]\n            },\n            \"Id\": \"fd707d05-aed2-4b83-9821-fa17b5c18c23\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94895935058594,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006880499422550201,\n                    \"Height\": 0.009177850559353828,\n                    \"Left\": 0.507476806640625,\n                    \"Top\": 0.21092019975185394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.507476806640625,\n                        \"Y\": 0.21092544496059418\n                    },\n                    {\n                        \"X\": 0.5143515467643738,\n                        \"Y\": 0.21092019975185394\n                    },\n                    {\n                        \"X\": 0.5143572688102722,\n                        \"Y\": 0.2200928032398224\n                    },\n                    {\n                        \"X\": 0.5074825286865234,\n                        \"Y\": 0.22009804844856262\n                    }\n                ]\n            },\n            \"Id\": \"d8923b92-8ee3-4a78-9fc3-6f1b333ba720\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81076049804688,\n            \"Text\": \"299,653,249\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06831535696983337,\n                    \"Height\": 0.009039408527314663,\n                    \"Left\": 0.553400993347168,\n                    \"Top\": 0.21133048832416534\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.553400993347168,\n                        \"Y\": 0.2113826423883438\n                    },\n                    {\n                        \"X\": 0.6217104196548462,\n                        \"Y\": 0.21133048832416534\n                    },\n                    {\n                        \"X\": 0.6217163801193237,\n                        \"Y\": 0.22031769156455994\n                    },\n                    {\n                        \"X\": 0.5534067153930664,\n                        \"Y\": 0.22036989033222198\n                    }\n                ]\n            },\n            \"Id\": \"ff9e76e4-8608-4695-b8c1-b662340bf7bf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93745422363281,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006740028504282236,\n                    \"Height\": 0.009052942506968975,\n                    \"Left\": 0.6348891258239746,\n                    \"Top\": 0.21082855761051178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6348891258239746,\n                        \"Y\": 0.21083369851112366\n                    },\n                    {\n                        \"X\": 0.6416231393814087,\n                        \"Y\": 0.21082855761051178\n                    },\n                    {\n                        \"X\": 0.641629159450531,\n                        \"Y\": 0.21987634897232056\n                    },\n                    {\n                        \"X\": 0.6348951458930969,\n                        \"Y\": 0.21988148987293243\n                    }\n                ]\n            },\n            \"Id\": \"8c5e3791-64e2-4e8b-9dab-53a973d6f38b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.7583999633789,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004541723057627678,\n                    \"Height\": 0.0021483013406395912,\n                    \"Left\": 0.7644885778427124,\n                    \"Top\": 0.21482795476913452\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7644885778427124,\n                        \"Y\": 0.2148314118385315\n                    },\n                    {\n                        \"X\": 0.7690287828445435,\n                        \"Y\": 0.21482795476913452\n                    },\n                    {\n                        \"X\": 0.7690303325653076,\n                        \"Y\": 0.21697278320789337\n                    },\n                    {\n                        \"X\": 0.7644901275634766,\n                        \"Y\": 0.21697625517845154\n                    }\n                ]\n            },\n            \"Id\": \"a41510d8-f14f-498e-b17d-71e4e8994b7b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93047332763672,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006398484110832214,\n                    \"Height\": 0.009106091223657131,\n                    \"Left\": 0.7818601131439209,\n                    \"Top\": 0.2105858027935028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7818601131439209,\n                        \"Y\": 0.2105906903743744\n                    },\n                    {\n                        \"X\": 0.7882521748542786,\n                        \"Y\": 0.2105858027935028\n                    },\n                    {\n                        \"X\": 0.7882586121559143,\n                        \"Y\": 0.21968701481819153\n                    },\n                    {\n                        \"X\": 0.7818666100502014,\n                        \"Y\": 0.2196919023990631\n                    }\n                ]\n            },\n            \"Id\": \"436c7166-9f4c-4ab4-8840-9423ca23a2d8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72154235839844,\n            \"Text\": \"1,291,686,043\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07829948514699936,\n                    \"Height\": 0.008959641680121422,\n                    \"Left\": 0.8255435228347778,\n                    \"Top\": 0.21098953485488892\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8255435228347778,\n                        \"Y\": 0.21104930341243744\n                    },\n                    {\n                        \"X\": 0.9038363695144653,\n                        \"Y\": 0.21098953485488892\n                    },\n                    {\n                        \"X\": 0.9038430452346802,\n                        \"Y\": 0.2198893427848816\n                    },\n                    {\n                        \"X\": 0.8255499601364136,\n                        \"Y\": 0.2199491709470749\n                    }\n                ]\n            },\n            \"Id\": \"eccb40fa-0a3a-425e-861e-d26c3d58648e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91899871826172,\n            \"Text\": \"Law\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021848436444997787,\n                    \"Height\": 0.007465478032827377,\n                    \"Left\": 0.12782767415046692,\n                    \"Top\": 0.22599442303180695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12782767415046692,\n                        \"Y\": 0.22601112723350525\n                    },\n                    {\n                        \"X\": 0.14967229962348938,\n                        \"Y\": 0.22599442303180695\n                    },\n                    {\n                        \"X\": 0.149676114320755,\n                        \"Y\": 0.23344318568706512\n                    },\n                    {\n                        \"X\": 0.12783142924308777,\n                        \"Y\": 0.23345990478992462\n                    }\n                ]\n            },\n            \"Id\": \"fd55dda4-559e-41e0-a8a0-3bd9dcea7d28\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89949798583984,\n            \"Text\": \"Enforcement\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07103001326322556,\n                    \"Height\": 0.007892956025898457,\n                    \"Left\": 0.1527296006679535,\n                    \"Top\": 0.22566695511341095\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1527296006679535,\n                        \"Y\": 0.22572125494480133\n                    },\n                    {\n                        \"X\": 0.22375541925430298,\n                        \"Y\": 0.22566695511341095\n                    },\n                    {\n                        \"X\": 0.22375960648059845,\n                        \"Y\": 0.23350559175014496\n                    },\n                    {\n                        \"X\": 0.15273362398147583,\n                        \"Y\": 0.23355992138385773\n                    }\n                ]\n            },\n            \"Id\": \"aad8f188-6fe8-4b7d-a8f1-1aeb38a648e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94855499267578,\n            \"Text\": \"Service\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039069388061761856,\n                    \"Height\": 0.007816522382199764,\n                    \"Left\": 0.22659553587436676,\n                    \"Top\": 0.22570908069610596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22659553587436676,\n                        \"Y\": 0.22573894262313843\n                    },\n                    {\n                        \"X\": 0.26566067337989807,\n                        \"Y\": 0.22570908069610596\n                    },\n                    {\n                        \"X\": 0.2656649351119995,\n                        \"Y\": 0.23349571228027344\n                    },\n                    {\n                        \"X\": 0.22659970819950104,\n                        \"Y\": 0.2335256040096283\n                    }\n                ]\n            },\n            \"Id\": \"32bcce36-a711-40d5-9440-949e3ce75e4d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95094299316406,\n            \"Text\": \"District\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03891048580408096,\n                    \"Height\": 0.007759700994938612,\n                    \"Left\": 0.2691456377506256,\n                    \"Top\": 0.2256278395652771\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2691456377506256,\n                        \"Y\": 0.22565758228302002\n                    },\n                    {\n                        \"X\": 0.30805179476737976,\n                        \"Y\": 0.2256278395652771\n                    },\n                    {\n                        \"X\": 0.308056116104126,\n                        \"Y\": 0.23335778713226318\n                    },\n                    {\n                        \"X\": 0.26914986968040466,\n                        \"Y\": 0.2333875447511673\n                    }\n                ]\n            },\n            \"Id\": \"33fedbd4-789d-4260-b778-fc86026cebfb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95562744140625,\n            \"Text\": \"taxes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029083311557769775,\n                    \"Height\": 0.007097461726516485,\n                    \"Left\": 0.3109961450099945,\n                    \"Top\": 0.2262410670518875\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3109961450099945,\n                        \"Y\": 0.22626329958438873\n                    },\n                    {\n                        \"X\": 0.34007540345191956,\n                        \"Y\": 0.2262410670518875\n                    },\n                    {\n                        \"X\": 0.3400794565677643,\n                        \"Y\": 0.23331628739833832\n                    },\n                    {\n                        \"X\": 0.31100010871887207,\n                        \"Y\": 0.23333851993083954\n                    }\n                ]\n            },\n            \"Id\": \"83db5e43-f54f-4e8f-a13a-04bcd7680b17\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.40245819091797,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004689238965511322,\n                    \"Height\": 0.0020164158195257187,\n                    \"Left\": 0.49011528491973877,\n                    \"Top\": 0.22890089452266693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49011528491973877,\n                        \"Y\": 0.22890448570251465\n                    },\n                    {\n                        \"X\": 0.4948032796382904,\n                        \"Y\": 0.22890089452266693\n                    },\n                    {\n                        \"X\": 0.4948045313358307,\n                        \"Y\": 0.23091372847557068\n                    },\n                    {\n                        \"X\": 0.49011653661727905,\n                        \"Y\": 0.2309173047542572\n                    }\n                ]\n            },\n            \"Id\": \"ba6a057f-7d96-4e7e-9b17-e5c1bde06381\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.66303253173828,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004509096033871174,\n                    \"Height\": 0.0020307383965700865,\n                    \"Left\": 0.6175787448883057,\n                    \"Top\": 0.22874383628368378\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6175787448883057,\n                        \"Y\": 0.22874727845191956\n                    },\n                    {\n                        \"X\": 0.6220865249633789,\n                        \"Y\": 0.22874383628368378\n                    },\n                    {\n                        \"X\": 0.622087836265564,\n                        \"Y\": 0.23077112436294556\n                    },\n                    {\n                        \"X\": 0.6175801157951355,\n                        \"Y\": 0.23077458143234253\n                    }\n                ]\n            },\n            \"Id\": \"6fc7dbcd-fe03-44c3-803c-7ebe355fd9bc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94489288330078,\n            \"Text\": \"17,131,106\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061068613082170486,\n                    \"Height\": 0.008669801987707615,\n                    \"Left\": 0.7076337337493896,\n                    \"Top\": 0.22513779997825623\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7076337337493896,\n                        \"Y\": 0.22518448531627655\n                    },\n                    {\n                        \"X\": 0.7686963081359863,\n                        \"Y\": 0.22513779997825623\n                    },\n                    {\n                        \"X\": 0.7687023878097534,\n                        \"Y\": 0.23376089334487915\n                    },\n                    {\n                        \"X\": 0.7076396346092224,\n                        \"Y\": 0.23380760848522186\n                    }\n                ]\n            },\n            \"Id\": \"2c34db33-f16d-486f-941b-22ee31d2f260\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96233367919922,\n            \"Text\": \"17,131,106\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06164123862981796,\n                    \"Height\": 0.008771474473178387,\n                    \"Left\": 0.8424055576324463,\n                    \"Top\": 0.22495795786380768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8424055576324463,\n                        \"Y\": 0.22500507533550262\n                    },\n                    {\n                        \"X\": 0.9040402770042419,\n                        \"Y\": 0.22495795786380768\n                    },\n                    {\n                        \"X\": 0.9040468335151672,\n                        \"Y\": 0.2336822748184204\n                    },\n                    {\n                        \"X\": 0.8424119353294373,\n                        \"Y\": 0.23372943699359894\n                    }\n                ]\n            },\n            \"Id\": \"bfd06762-ca71-4a7f-af66-8271dae79616\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82302856445312,\n            \"Text\": \"Transit\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03849594667553902,\n                    \"Height\": 0.007699816953390837,\n                    \"Left\": 0.1272158920764923,\n                    \"Top\": 0.23962409794330597\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1272158920764923,\n                        \"Y\": 0.2396535724401474\n                    },\n                    {\n                        \"X\": 0.16570788621902466,\n                        \"Y\": 0.23962409794330597\n                    },\n                    {\n                        \"X\": 0.16571183502674103,\n                        \"Y\": 0.24729444086551666\n                    },\n                    {\n                        \"X\": 0.1272197663784027,\n                        \"Y\": 0.2473239153623581\n                    }\n                ]\n            },\n            \"Id\": \"fff0dfa6-cc40-42b0-b76d-3d3a130144d6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58448791503906,\n            \"Text\": \"one-half\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04576127603650093,\n                    \"Height\": 0.007961606606841087,\n                    \"Left\": 0.16920889914035797,\n                    \"Top\": 0.23927758634090424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16920889914035797,\n                        \"Y\": 0.23931261897087097\n                    },\n                    {\n                        \"X\": 0.21496596932411194,\n                        \"Y\": 0.23927758634090424\n                    },\n                    {\n                        \"X\": 0.2149701863527298,\n                        \"Y\": 0.24720415472984314\n                    },\n                    {\n                        \"X\": 0.16921301186084747,\n                        \"Y\": 0.24723920226097107\n                    }\n                ]\n            },\n            \"Id\": \"e3c8f645-a645-40e8-9cfb-56c25dc1fd66\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86772155761719,\n            \"Text\": \"cent\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024078363552689552,\n                    \"Height\": 0.006999919656664133,\n                    \"Left\": 0.21732594072818756,\n                    \"Top\": 0.2401973456144333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21732594072818756,\n                        \"Y\": 0.24021577835083008\n                    },\n                    {\n                        \"X\": 0.24140053987503052,\n                        \"Y\": 0.2401973456144333\n                    },\n                    {\n                        \"X\": 0.24140430986881256,\n                        \"Y\": 0.2471788376569748\n                    },\n                    {\n                        \"X\": 0.21732966601848602,\n                        \"Y\": 0.24719727039337158\n                    }\n                ]\n            },\n            \"Id\": \"e0b1560a-e4db-4549-b1b9-c00ca1b0fe9e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92445373535156,\n            \"Text\": \"sales\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026961540803313255,\n                    \"Height\": 0.007802619598805904,\n                    \"Left\": 0.24435867369174957,\n                    \"Top\": 0.2394045740365982\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24435867369174957,\n                        \"Y\": 0.2394251972436905\n                    },\n                    {\n                        \"X\": 0.27131593227386475,\n                        \"Y\": 0.2394045740365982\n                    },\n                    {\n                        \"X\": 0.2713201940059662,\n                        \"Y\": 0.247186541557312\n                    },\n                    {\n                        \"X\": 0.24436287581920624,\n                        \"Y\": 0.2472071796655655\n                    }\n                ]\n            },\n            \"Id\": \"0f2bb40e-1d21-45e9-86b1-07bb15cf9a0e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9635009765625,\n            \"Text\": \"tax\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01740533672273159,\n                    \"Height\": 0.007188629359006882,\n                    \"Left\": 0.27409833669662476,\n                    \"Top\": 0.23995670676231384\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27409833669662476,\n                        \"Y\": 0.23997001349925995\n                    },\n                    {\n                        \"X\": 0.29149967432022095,\n                        \"Y\": 0.23995670676231384\n                    },\n                    {\n                        \"X\": 0.2915036678314209,\n                        \"Y\": 0.24713200330734253\n                    },\n                    {\n                        \"X\": 0.27410227060317993,\n                        \"Y\": 0.24714532494544983\n                    }\n                ]\n            },\n            \"Id\": \"9738f038-d0da-4558-aad9-e3dbe36e7b6f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.0230484008789,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004562615882605314,\n                    \"Height\": 0.0019182824762538075,\n                    \"Left\": 0.49025142192840576,\n                    \"Top\": 0.2427227944135666\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49025142192840576,\n                        \"Y\": 0.24272629618644714\n                    },\n                    {\n                        \"X\": 0.49481284618377686,\n                        \"Y\": 0.2427227944135666\n                    },\n                    {\n                        \"X\": 0.49481403827667236,\n                        \"Y\": 0.244637593626976\n                    },\n                    {\n                        \"X\": 0.4902525842189789,\n                        \"Y\": 0.24464108049869537\n                    }\n                ]\n            },\n            \"Id\": \"c76c8240-03b6-4956-b32d-f633365353bb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.39881134033203,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004544690251350403,\n                    \"Height\": 0.0019262399291619658,\n                    \"Left\": 0.6175937056541443,\n                    \"Top\": 0.24255026876926422\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6175937056541443,\n                        \"Y\": 0.2425537407398224\n                    },\n                    {\n                        \"X\": 0.6221371293067932,\n                        \"Y\": 0.24255026876926422\n                    },\n                    {\n                        \"X\": 0.6221384406089783,\n                        \"Y\": 0.24447302520275116\n                    },\n                    {\n                        \"X\": 0.6175950169563293,\n                        \"Y\": 0.24447649717330933\n                    }\n                ]\n            },\n            \"Id\": \"76436d98-879d-4248-a553-0ba57c3ea2c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85709381103516,\n            \"Text\": \"55,915,981\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06125115603208542,\n                    \"Height\": 0.00894345436245203,\n                    \"Left\": 0.7072041034698486,\n                    \"Top\": 0.23874236643314362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7072041034698486,\n                        \"Y\": 0.23878924548625946\n                    },\n                    {\n                        \"X\": 0.7684490084648132,\n                        \"Y\": 0.23874236643314362\n                    },\n                    {\n                        \"X\": 0.7684552669525146,\n                        \"Y\": 0.24763891100883484\n                    },\n                    {\n                        \"X\": 0.7072101831436157,\n                        \"Y\": 0.24768581986427307\n                    }\n                ]\n            },\n            \"Id\": \"daba8bc2-64a5-4c3b-8a6f-1e288aea4d39\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85369110107422,\n            \"Text\": \"55,915,981\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06153956055641174,\n                    \"Height\": 0.00892062857747078,\n                    \"Left\": 0.8422829508781433,\n                    \"Top\": 0.23856060206890106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8422829508781433,\n                        \"Y\": 0.23860770463943481\n                    },\n                    {\n                        \"X\": 0.9038158655166626,\n                        \"Y\": 0.23856060206890106\n                    },\n                    {\n                        \"X\": 0.9038224816322327,\n                        \"Y\": 0.2474341094493866\n                    },\n                    {\n                        \"X\": 0.842289388179779,\n                        \"Y\": 0.24748124182224274\n                    }\n                ]\n            },\n            \"Id\": \"1014e2a0-ab26-4fa1-9a35-fee8fcb37c9e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92073822021484,\n            \"Text\": \"Fire\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02026214823126793,\n                    \"Height\": 0.007740446832031012,\n                    \"Left\": 0.1281978189945221,\n                    \"Top\": 0.2533419132232666\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1281978189945221,\n                        \"Y\": 0.2533574402332306\n                    },\n                    {\n                        \"X\": 0.14845600724220276,\n                        \"Y\": 0.2533419132232666\n                    },\n                    {\n                        \"X\": 0.14845995604991913,\n                        \"Y\": 0.26106682419776917\n                    },\n                    {\n                        \"X\": 0.1282017081975937,\n                        \"Y\": 0.26108235120773315\n                    }\n                ]\n            },\n            \"Id\": \"c79c6bbe-98b6-44f2-b88c-517adef52bf4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92935943603516,\n            \"Text\": \"Service\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03947404399514198,\n                    \"Height\": 0.00784699060022831,\n                    \"Left\": 0.15139584243297577,\n                    \"Top\": 0.2532138228416443\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15139584243297577,\n                        \"Y\": 0.2532440721988678\n                    },\n                    {\n                        \"X\": 0.19086578488349915,\n                        \"Y\": 0.2532138228416443\n                    },\n                    {\n                        \"X\": 0.19086988270282745,\n                        \"Y\": 0.26103055477142334\n                    },\n                    {\n                        \"X\": 0.15139983594417572,\n                        \"Y\": 0.26106083393096924\n                    }\n                ]\n            },\n            \"Id\": \"480b9067-3acd-4dcb-afef-5e4150c215a7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9480972290039,\n            \"Text\": \"Districts\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04420562833547592,\n                    \"Height\": 0.007862604223191738,\n                    \"Left\": 0.19438131153583527,\n                    \"Top\": 0.253242164850235\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19438131153583527,\n                        \"Y\": 0.2532760500907898\n                    },\n                    {\n                        \"X\": 0.23858271539211273,\n                        \"Y\": 0.253242164850235\n                    },\n                    {\n                        \"X\": 0.23858694732189178,\n                        \"Y\": 0.2610708773136139\n                    },\n                    {\n                        \"X\": 0.19438542425632477,\n                        \"Y\": 0.2611047923564911\n                    }\n                ]\n            },\n            \"Id\": \"43b20773-d42b-46b6-b98c-3e3a4eddc5f0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97315979003906,\n            \"Text\": \"taxes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029294973239302635,\n                    \"Height\": 0.007668568752706051,\n                    \"Left\": 0.24105289578437805,\n                    \"Top\": 0.25347909331321716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24105289578437805,\n                        \"Y\": 0.2535015642642975\n                    },\n                    {\n                        \"X\": 0.2703436613082886,\n                        \"Y\": 0.25347909331321716\n                    },\n                    {\n                        \"X\": 0.27034786343574524,\n                        \"Y\": 0.26112520694732666\n                    },\n                    {\n                        \"X\": 0.24105702340602875,\n                        \"Y\": 0.261147677898407\n                    }\n                ]\n            },\n            \"Id\": \"1f175a8d-c155-462b-9e87-27bc631e0dab\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.0616683959961,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004468886181712151,\n                    \"Height\": 0.0015493488172069192,\n                    \"Left\": 0.4903559684753418,\n                    \"Top\": 0.2567022740840912\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4903559684753418,\n                        \"Y\": 0.25670570135116577\n                    },\n                    {\n                        \"X\": 0.4948239028453827,\n                        \"Y\": 0.2567022740840912\n                    },\n                    {\n                        \"X\": 0.4948248565196991,\n                        \"Y\": 0.2582481801509857\n                    },\n                    {\n                        \"X\": 0.4903569221496582,\n                        \"Y\": 0.2582516074180603\n                    }\n                ]\n            },\n            \"Id\": \"0ea750ea-92c7-41e1-9070-5fd4b1634bb2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.70974731445312,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004510697443038225,\n                    \"Height\": 0.0020079149398952723,\n                    \"Left\": 0.6176250576972961,\n                    \"Top\": 0.25619426369667053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6176250576972961,\n                        \"Y\": 0.2561977207660675\n                    },\n                    {\n                        \"X\": 0.6221344470977783,\n                        \"Y\": 0.25619426369667053\n                    },\n                    {\n                        \"X\": 0.6221357583999634,\n                        \"Y\": 0.25819870829582214\n                    },\n                    {\n                        \"X\": 0.6176263689994812,\n                        \"Y\": 0.2582021653652191\n                    }\n                ]\n            },\n            \"Id\": \"e9707a59-561f-4970-a234-5e542c5b5075\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95648193359375,\n            \"Text\": \"5,811,871\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05443677306175232,\n                    \"Height\": 0.009041673503816128,\n                    \"Left\": 0.7141618132591248,\n                    \"Top\": 0.2524142861366272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7141618132591248,\n                        \"Y\": 0.25245600938796997\n                    },\n                    {\n                        \"X\": 0.7685922384262085,\n                        \"Y\": 0.2524142861366272\n                    },\n                    {\n                        \"X\": 0.7685985565185547,\n                        \"Y\": 0.26141422986984253\n                    },\n                    {\n                        \"X\": 0.7141680121421814,\n                        \"Y\": 0.2614559531211853\n                    }\n                ]\n            },\n            \"Id\": \"12789a4c-36b5-4038-b4e8-19a4d8ab25b5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9374771118164,\n            \"Text\": \"5,811,871\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05461627617478371,\n                    \"Height\": 0.008885637857019901,\n                    \"Left\": 0.849027693271637,\n                    \"Top\": 0.252370148897171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.849027693271637,\n                        \"Y\": 0.25241199135780334\n                    },\n                    {\n                        \"X\": 0.9036373496055603,\n                        \"Y\": 0.252370148897171\n                    },\n                    {\n                        \"X\": 0.9036439657211304,\n                        \"Y\": 0.26121392846107483\n                    },\n                    {\n                        \"X\": 0.8490341305732727,\n                        \"Y\": 0.26125580072402954\n                    }\n                ]\n            },\n            \"Id\": \"edb0b2fd-7956-407b-9e70-9a08e4283845\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61044311523438,\n            \"Text\": \"Licenses\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045069675892591476,\n                    \"Height\": 0.007778703700751066,\n                    \"Left\": 0.12807676196098328,\n                    \"Top\": 0.26717960834503174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12807676196098328,\n                        \"Y\": 0.26721417903900146\n                    },\n                    {\n                        \"X\": 0.1731424182653427,\n                        \"Y\": 0.26717960834503174\n                    },\n                    {\n                        \"X\": 0.17314642667770386,\n                        \"Y\": 0.274923712015152\n                    },\n                    {\n                        \"X\": 0.12808066606521606,\n                        \"Y\": 0.2749583125114441\n                    }\n                ]\n            },\n            \"Id\": \"23bfd58e-d98c-4a0d-9af7-089fab375dcf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93980407714844,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02047894336283207,\n                    \"Height\": 0.0076847560703754425,\n                    \"Left\": 0.17638856172561646,\n                    \"Top\": 0.26700589060783386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17638856172561646,\n                        \"Y\": 0.2670215964317322\n                    },\n                    {\n                        \"X\": 0.19686347246170044,\n                        \"Y\": 0.26700589060783386\n                    },\n                    {\n                        \"X\": 0.19686749577522278,\n                        \"Y\": 0.2746749222278595\n                    },\n                    {\n                        \"X\": 0.1763925403356552,\n                        \"Y\": 0.2746906578540802\n                    }\n                ]\n            },\n            \"Id\": \"e7751c23-31ea-4ae8-9694-43d75d7386f2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95026397705078,\n            \"Text\": \"permits\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04179241508245468,\n                    \"Height\": 0.009398202411830425,\n                    \"Left\": 0.20037396252155304,\n                    \"Top\": 0.2670595347881317\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20037396252155304,\n                        \"Y\": 0.2670916020870209\n                    },\n                    {\n                        \"X\": 0.2421613186597824,\n                        \"Y\": 0.2670595347881317\n                    },\n                    {\n                        \"X\": 0.24216638505458832,\n                        \"Y\": 0.27642565965652466\n                    },\n                    {\n                        \"X\": 0.2003789097070694,\n                        \"Y\": 0.2764577269554138\n                    }\n                ]\n            },\n            \"Id\": \"6c2f0876-539d-4abd-8e51-c99435ca811a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89471435546875,\n            \"Text\": \"32,691,258\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061325881630182266,\n                    \"Height\": 0.00888114795088768,\n                    \"Left\": 0.43344810605049133,\n                    \"Top\": 0.26668503880500793\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43344810605049133,\n                        \"Y\": 0.2667320668697357\n                    },\n                    {\n                        \"X\": 0.49476850032806396,\n                        \"Y\": 0.26668503880500793\n                    },\n                    {\n                        \"X\": 0.4947739839553833,\n                        \"Y\": 0.27551910281181335\n                    },\n                    {\n                        \"X\": 0.43345341086387634,\n                        \"Y\": 0.2755661904811859\n                    }\n                ]\n            },\n            \"Id\": \"902da998-adf1-4594-ab83-cf2b816bbd9b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.82472229003906,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0046079326421022415,\n                    \"Height\": 0.0018475335091352463,\n                    \"Left\": 0.6176692247390747,\n                    \"Top\": 0.2703271210193634\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6176692247390747,\n                        \"Y\": 0.27033063769340515\n                    },\n                    {\n                        \"X\": 0.6222759485244751,\n                        \"Y\": 0.2703271210193634\n                    },\n                    {\n                        \"X\": 0.6222771406173706,\n                        \"Y\": 0.27217110991477966\n                    },\n                    {\n                        \"X\": 0.6176704168319702,\n                        \"Y\": 0.2721746563911438\n                    }\n                ]\n            },\n            \"Id\": \"b12443c3-1ae3-45e2-a310-4bc43f791c92\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.68876647949219,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004609465133398771,\n                    \"Height\": 0.0018929189536720514,\n                    \"Left\": 0.7645269632339478,\n                    \"Top\": 0.2700575590133667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7645269632339478,\n                        \"Y\": 0.27006110548973083\n                    },\n                    {\n                        \"X\": 0.769135057926178,\n                        \"Y\": 0.2700575590133667\n                    },\n                    {\n                        \"X\": 0.7691364288330078,\n                        \"Y\": 0.2719469368457794\n                    },\n                    {\n                        \"X\": 0.7645282745361328,\n                        \"Y\": 0.27195048332214355\n                    }\n                ]\n            },\n            \"Id\": \"d3494a9b-5930-4022-9ca1-4168bf711b6d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88487243652344,\n            \"Text\": \"32,691,258\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061769451946020126,\n                    \"Height\": 0.00884685292840004,\n                    \"Left\": 0.8422956466674805,\n                    \"Top\": 0.26619529724121094\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8422956466674805,\n                        \"Y\": 0.2662426829338074\n                    },\n                    {\n                        \"X\": 0.904058575630188,\n                        \"Y\": 0.26619529724121094\n                    },\n                    {\n                        \"X\": 0.9040651321411133,\n                        \"Y\": 0.27499473094940186\n                    },\n                    {\n                        \"X\": 0.8423020839691162,\n                        \"Y\": 0.2750421464443207\n                    }\n                ]\n            },\n            \"Id\": \"321596e2-ab0c-49d4-9fa9-66cfca1cb94f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.10432434082031,\n            \"Text\": \"Intergovernmental\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10178467631340027,\n                    \"Height\": 0.009508742019534111,\n                    \"Left\": 0.12841162085533142,\n                    \"Top\": 0.2807319462299347\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12841162085533142,\n                        \"Y\": 0.2808101177215576\n                    },\n                    {\n                        \"X\": 0.23019124567508698,\n                        \"Y\": 0.2807319462299347\n                    },\n                    {\n                        \"X\": 0.2301962971687317,\n                        \"Y\": 0.29016244411468506\n                    },\n                    {\n                        \"X\": 0.12841638922691345,\n                        \"Y\": 0.29024067521095276\n                    }\n                ]\n            },\n            \"Id\": \"5c8f0329-894b-469d-b3b4-469dd304263e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82086944580078,\n            \"Text\": \"128,866,078\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0677429735660553,\n                    \"Height\": 0.008872455917298794,\n                    \"Left\": 0.4271184802055359,\n                    \"Top\": 0.28043514490127563\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4271184802055359,\n                        \"Y\": 0.28048717975616455\n                    },\n                    {\n                        \"X\": 0.49485599994659424,\n                        \"Y\": 0.28043514490127563\n                    },\n                    {\n                        \"X\": 0.4948614537715912,\n                        \"Y\": 0.2892555296421051\n                    },\n                    {\n                        \"X\": 0.4271237552165985,\n                        \"Y\": 0.2893075942993164\n                    }\n                ]\n            },\n            \"Id\": \"3c6e87aa-208f-429c-aeeb-500035779390\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82060241699219,\n            \"Text\": \"12,901,016\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06137319281697273,\n                    \"Height\": 0.008786856196820736,\n                    \"Left\": 0.5609820485115051,\n                    \"Top\": 0.28036269545555115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5609820485115051,\n                        \"Y\": 0.2804098427295685\n                    },\n                    {\n                        \"X\": 0.6223494410514832,\n                        \"Y\": 0.28036269545555115\n                    },\n                    {\n                        \"X\": 0.6223552227020264,\n                        \"Y\": 0.28910237550735474\n                    },\n                    {\n                        \"X\": 0.560987651348114,\n                        \"Y\": 0.28914955258369446\n                    }\n                ]\n            },\n            \"Id\": \"20273c93-750d-4493-b407-ee2856cbb58f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85814666748047,\n            \"Text\": \"5,548,001\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05412396043539047,\n                    \"Height\": 0.008802635595202446,\n                    \"Left\": 0.7144038081169128,\n                    \"Top\": 0.2801433503627777\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7144038081169128,\n                        \"Y\": 0.28018492460250854\n                    },\n                    {\n                        \"X\": 0.7685216069221497,\n                        \"Y\": 0.2801433503627777\n                    },\n                    {\n                        \"X\": 0.7685278058052063,\n                        \"Y\": 0.2889043986797333\n                    },\n                    {\n                        \"X\": 0.7144098877906799,\n                        \"Y\": 0.2889460027217865\n                    }\n                ]\n            },\n            \"Id\": \"892ea0bb-5931-40df-af87-eaea82e6a830\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92918395996094,\n            \"Text\": \"147,315,095\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06803363561630249,\n                    \"Height\": 0.008808976970613003,\n                    \"Left\": 0.8359826803207397,\n                    \"Top\": 0.2799965739250183\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8359826803207397,\n                        \"Y\": 0.28004881739616394\n                    },\n                    {\n                        \"X\": 0.9040097594261169,\n                        \"Y\": 0.2799965739250183\n                    },\n                    {\n                        \"X\": 0.9040163159370422,\n                        \"Y\": 0.2887532711029053\n                    },\n                    {\n                        \"X\": 0.8359889984130859,\n                        \"Y\": 0.2888055443763733\n                    }\n                ]\n            },\n            \"Id\": \"e03d8be1-087d-46d9-ac84-0a4b182699b8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78060913085938,\n            \"Text\": \"Charges\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04362959414720535,\n                    \"Height\": 0.009518833830952644,\n                    \"Left\": 0.12801483273506165,\n                    \"Top\": 0.2944653034210205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12801483273506165,\n                        \"Y\": 0.29449886083602905\n                    },\n                    {\n                        \"X\": 0.17163951694965363,\n                        \"Y\": 0.2944653034210205\n                    },\n                    {\n                        \"X\": 0.1716444194316864,\n                        \"Y\": 0.30395057797431946\n                    },\n                    {\n                        \"X\": 0.12801961600780487,\n                        \"Y\": 0.3039841651916504\n                    }\n                ]\n            },\n            \"Id\": \"b22ec062-f769-49e0-b562-89a99d7fab4e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96086120605469,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01600608229637146,\n                    \"Height\": 0.007940464653074741,\n                    \"Left\": 0.1747640073299408,\n                    \"Top\": 0.29433101415634155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1747640073299408,\n                        \"Y\": 0.29434332251548767\n                    },\n                    {\n                        \"X\": 0.19076593220233917,\n                        \"Y\": 0.29433101415634155\n                    },\n                    {\n                        \"X\": 0.19077008962631226,\n                        \"Y\": 0.3022591471672058\n                    },\n                    {\n                        \"X\": 0.1747681200504303,\n                        \"Y\": 0.3022714853286743\n                    }\n                ]\n            },\n            \"Id\": \"7e7d56a9-8a9c-46c9-b565-ac026ab25642\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8687973022461,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043746765702962875,\n                    \"Height\": 0.007854005321860313,\n                    \"Left\": 0.19350507855415344,\n                    \"Top\": 0.2945634722709656\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19350507855415344,\n                        \"Y\": 0.2945971190929413\n                    },\n                    {\n                        \"X\": 0.23724763095378876,\n                        \"Y\": 0.2945634722709656\n                    },\n                    {\n                        \"X\": 0.23725184798240662,\n                        \"Y\": 0.30238381028175354\n                    },\n                    {\n                        \"X\": 0.19350917637348175,\n                        \"Y\": 0.30241748690605164\n                    }\n                ]\n            },\n            \"Id\": \"528f0483-cc0a-4210-bfe8-65c460220167\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94681549072266,\n            \"Text\": \"63,361,407\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06135309487581253,\n                    \"Height\": 0.009069873951375484,\n                    \"Left\": 0.43350949883461,\n                    \"Top\": 0.2941226065158844\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43350949883461,\n                        \"Y\": 0.2941697835922241\n                    },\n                    {\n                        \"X\": 0.4948570132255554,\n                        \"Y\": 0.2941226065158844\n                    },\n                    {\n                        \"X\": 0.4948625862598419,\n                        \"Y\": 0.30314525961875916\n                    },\n                    {\n                        \"X\": 0.43351492285728455,\n                        \"Y\": 0.30319249629974365\n                    }\n                ]\n            },\n            \"Id\": \"24b669f9-5e7d-408e-aa23-54dae6d1c933\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.06731414794922,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004512490704655647,\n                    \"Height\": 0.0019192253239452839,\n                    \"Left\": 0.6176855564117432,\n                    \"Top\": 0.2976512908935547\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6176855564117432,\n                        \"Y\": 0.29765477776527405\n                    },\n                    {\n                        \"X\": 0.6221967935562134,\n                        \"Y\": 0.2976512908935547\n                    },\n                    {\n                        \"X\": 0.6221980452537537,\n                        \"Y\": 0.2995670437812805\n                    },\n                    {\n                        \"X\": 0.6176868081092834,\n                        \"Y\": 0.2995705306529999\n                    }\n                ]\n            },\n            \"Id\": \"f2864a5e-587a-4639-829d-72b0c6b6dc73\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91148376464844,\n            \"Text\": \"20,559,814\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06176493689417839,\n                    \"Height\": 0.008974834345281124,\n                    \"Left\": 0.7072641849517822,\n                    \"Top\": 0.29386642575263977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7072641849517822,\n                        \"Y\": 0.29391390085220337\n                    },\n                    {\n                        \"X\": 0.7690228223800659,\n                        \"Y\": 0.29386642575263977\n                    },\n                    {\n                        \"X\": 0.7690291404724121,\n                        \"Y\": 0.3027937114238739\n                    },\n                    {\n                        \"X\": 0.7072703242301941,\n                        \"Y\": 0.3028412461280823\n                    }\n                ]\n            },\n            \"Id\": \"8de454c9-3e08-41ac-927e-8dbaf05d7d42\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75704193115234,\n            \"Text\": \"83,921,221\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0613938570022583,\n                    \"Height\": 0.008973551914095879,\n                    \"Left\": 0.8423281311988831,\n                    \"Top\": 0.29363203048706055\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8423281311988831,\n                        \"Y\": 0.29367923736572266\n                    },\n                    {\n                        \"X\": 0.9037153124809265,\n                        \"Y\": 0.29363203048706055\n                    },\n                    {\n                        \"X\": 0.9037219882011414,\n                        \"Y\": 0.3025583326816559\n                    },\n                    {\n                        \"X\": 0.8423346281051636,\n                        \"Y\": 0.30260559916496277\n                    }\n                ]\n            },\n            \"Id\": \"01554a8b-b69d-4a70-b2e8-c497c92ae92b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81158447265625,\n            \"Text\": \"Interest\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.042362477630376816,\n                    \"Height\": 0.007809479255229235,\n                    \"Left\": 0.12832804024219513,\n                    \"Top\": 0.30855369567871094\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12832804024219513,\n                        \"Y\": 0.3085862994194031\n                    },\n                    {\n                        \"X\": 0.1706864982843399,\n                        \"Y\": 0.30855369567871094\n                    },\n                    {\n                        \"X\": 0.17069052159786224,\n                        \"Y\": 0.31633052229881287\n                    },\n                    {\n                        \"X\": 0.1283319741487503,\n                        \"Y\": 0.3163631558418274\n                    }\n                ]\n            },\n            \"Id\": \"032bc09a-35f2-4b78-ac48-0937975955f7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9780044555664,\n            \"Text\": \"earned\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03807971999049187,\n                    \"Height\": 0.007933774963021278,\n                    \"Left\": 0.17406682670116425,\n                    \"Top\": 0.30835282802581787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17406682670116425,\n                        \"Y\": 0.308382123708725\n                    },\n                    {\n                        \"X\": 0.21214234828948975,\n                        \"Y\": 0.30835282802581787\n                    },\n                    {\n                        \"X\": 0.2121465504169464,\n                        \"Y\": 0.3162572681903839\n                    },\n                    {\n                        \"X\": 0.17407093942165375,\n                        \"Y\": 0.3162865936756134\n                    }\n                ]\n            },\n            \"Id\": \"3e3f37f7-b97b-4c78-a962-c144ff599b39\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96792602539062,\n            \"Text\": \"on\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013752229511737823,\n                    \"Height\": 0.0060126567259430885,\n                    \"Left\": 0.21562887728214264,\n                    \"Top\": 0.31016427278518677\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21562887728214264,\n                        \"Y\": 0.3101748526096344\n                    },\n                    {\n                        \"X\": 0.229377880692482,\n                        \"Y\": 0.31016427278518677\n                    },\n                    {\n                        \"X\": 0.22938109934329987,\n                        \"Y\": 0.31616634130477905\n                    },\n                    {\n                        \"X\": 0.21563206613063812,\n                        \"Y\": 0.3161769211292267\n                    }\n                ]\n            },\n            \"Id\": \"6c2c6d0e-675e-4083-849b-52087fe65a50\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86421966552734,\n            \"Text\": \"investments\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06688924878835678,\n                    \"Height\": 0.007840374484658241,\n                    \"Left\": 0.2328885793685913,\n                    \"Top\": 0.30831968784332275\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2328885793685913,\n                        \"Y\": 0.3083711862564087\n                    },\n                    {\n                        \"X\": 0.2997734844684601,\n                        \"Y\": 0.30831968784332275\n                    },\n                    {\n                        \"X\": 0.2997778356075287,\n                        \"Y\": 0.3161085247993469\n                    },\n                    {\n                        \"X\": 0.23289276659488678,\n                        \"Y\": 0.31616005301475525\n                    }\n                ]\n            },\n            \"Id\": \"7971b6bb-092f-4c61-8c9b-ba4c7b6b10f7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55472564697266,\n            \"Text\": \"8,125,273\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054591063410043716,\n                    \"Height\": 0.008879601024091244,\n                    \"Left\": 0.43986064195632935,\n                    \"Top\": 0.30804353952407837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43986064195632935,\n                        \"Y\": 0.308085560798645\n                    },\n                    {\n                        \"X\": 0.4944462478160858,\n                        \"Y\": 0.30804353952407837\n                    },\n                    {\n                        \"X\": 0.49445170164108276,\n                        \"Y\": 0.31688106060028076\n                    },\n                    {\n                        \"X\": 0.43986597657203674,\n                        \"Y\": 0.3169231414794922\n                    }\n                ]\n            },\n            \"Id\": \"f550dd83-1c12-4977-a168-c1e112b79004\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70169067382812,\n            \"Text\": \"874,580\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04483699053525925,\n                    \"Height\": 0.009053070098161697,\n                    \"Left\": 0.577523410320282,\n                    \"Top\": 0.3077024519443512\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.577523410320282,\n                        \"Y\": 0.30773699283599854\n                    },\n                    {\n                        \"X\": 0.6223544478416443,\n                        \"Y\": 0.3077024519443512\n                    },\n                    {\n                        \"X\": 0.622360348701477,\n                        \"Y\": 0.31672099232673645\n                    },\n                    {\n                        \"X\": 0.5775291919708252,\n                        \"Y\": 0.3167555332183838\n                    }\n                ]\n            },\n            \"Id\": \"b9057b1e-1477-4cd3-bd25-6b485fa7e187\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9144515991211,\n            \"Text\": \"625,537\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044605277478694916,\n                    \"Height\": 0.009005846455693245,\n                    \"Left\": 0.7243080735206604,\n                    \"Top\": 0.3076349198818207\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7243080735206604,\n                        \"Y\": 0.3076692521572113\n                    },\n                    {\n                        \"X\": 0.7689070105552673,\n                        \"Y\": 0.3076349198818207\n                    },\n                    {\n                        \"X\": 0.7689133882522583,\n                        \"Y\": 0.31660640239715576\n                    },\n                    {\n                        \"X\": 0.724314272403717,\n                        \"Y\": 0.3166407644748688\n                    }\n                ]\n            },\n            \"Id\": \"630bc400-368b-425c-8baa-4f673c053bec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87960815429688,\n            \"Text\": \"9,625,390\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055313002318143845,\n                    \"Height\": 0.008878913708031178,\n                    \"Left\": 0.8490760326385498,\n                    \"Top\": 0.3075295388698578\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8490760326385498,\n                        \"Y\": 0.3075721263885498\n                    },\n                    {\n                        \"X\": 0.9043824672698975,\n                        \"Y\": 0.3075295388698578\n                    },\n                    {\n                        \"X\": 0.9043890833854675,\n                        \"Y\": 0.3163658380508423\n                    },\n                    {\n                        \"X\": 0.8490825295448303,\n                        \"Y\": 0.3164084553718567\n                    }\n                ]\n            },\n            \"Id\": \"9c9894be-54c8-4783-b2fa-8a67ed5a635a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86922454833984,\n            \"Text\": \"Administrative\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08011619746685028,\n                    \"Height\": 0.007993321865797043,\n                    \"Left\": 0.12787310779094696,\n                    \"Top\": 0.32190030813217163\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12787310779094696,\n                        \"Y\": 0.32196205854415894\n                    },\n                    {\n                        \"X\": 0.20798510313034058,\n                        \"Y\": 0.32190030813217163\n                    },\n                    {\n                        \"X\": 0.20798930525779724,\n                        \"Y\": 0.3298318386077881\n                    },\n                    {\n                        \"X\": 0.1278771013021469,\n                        \"Y\": 0.3298936188220978\n                    }\n                ]\n            },\n            \"Id\": \"27c296c4-2c5e-4a58-8c58-662b816e9c56\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63619995117188,\n            \"Text\": \"charges\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.042057354003190994,\n                    \"Height\": 0.009581330232322216,\n                    \"Left\": 0.21147474646568298,\n                    \"Top\": 0.3219790458679199\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21147474646568298,\n                        \"Y\": 0.32201144099235535\n                    },\n                    {\n                        \"X\": 0.2535269260406494,\n                        \"Y\": 0.3219790458679199\n                    },\n                    {\n                        \"X\": 0.2535321116447449,\n                        \"Y\": 0.3315279185771942\n                    },\n                    {\n                        \"X\": 0.2114798128604889,\n                        \"Y\": 0.3315603733062744\n                    }\n                ]\n            },\n            \"Id\": \"63339557-f8ac-4036-9b5d-26b38940d17d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87234497070312,\n            \"Text\": \"2,498,781\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05470501258969307,\n                    \"Height\": 0.00941397063434124,\n                    \"Left\": 0.4398273527622223,\n                    \"Top\": 0.3215745687484741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4398273527622223,\n                        \"Y\": 0.3216167390346527\n                    },\n                    {\n                        \"X\": 0.49452656507492065,\n                        \"Y\": 0.3215745687484741\n                    },\n                    {\n                        \"X\": 0.49453234672546387,\n                        \"Y\": 0.3309463560581207\n                    },\n                    {\n                        \"X\": 0.43983298540115356,\n                        \"Y\": 0.3309885561466217\n                    }\n                ]\n            },\n            \"Id\": \"1209d34c-e5c2-4059-bc06-f578f1c6ef11\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.67523193359375,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004637779202312231,\n                    \"Height\": 0.0018535447306931019,\n                    \"Left\": 0.6177356839179993,\n                    \"Top\": 0.32536959648132324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6177356839179993,\n                        \"Y\": 0.32537317276000977\n                    },\n                    {\n                        \"X\": 0.6223722696304321,\n                        \"Y\": 0.32536959648132324\n                    },\n                    {\n                        \"X\": 0.6223734617233276,\n                        \"Y\": 0.32721954584121704\n                    },\n                    {\n                        \"X\": 0.6177368760108948,\n                        \"Y\": 0.32722312211990356\n                    }\n                ]\n            },\n            \"Id\": \"0b5d1748-3581-4ee9-80e8-9b6f59618b16\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.31260681152344,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0046035051345825195,\n                    \"Height\": 0.0018718335777521133,\n                    \"Left\": 0.764707624912262,\n                    \"Top\": 0.3251914978027344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.764707624912262,\n                        \"Y\": 0.3251950442790985\n                    },\n                    {\n                        \"X\": 0.7693098187446594,\n                        \"Y\": 0.3251914978027344\n                    },\n                    {\n                        \"X\": 0.7693111300468445,\n                        \"Y\": 0.327059805393219\n                    },\n                    {\n                        \"X\": 0.7647089958190918,\n                        \"Y\": 0.32706335186958313\n                    }\n                ]\n            },\n            \"Id\": \"a797dc1d-3266-4dc3-8fb6-8f570e9c1541\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81986236572266,\n            \"Text\": \"2,498,781\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05486723408102989,\n                    \"Height\": 0.008783090859651566,\n                    \"Left\": 0.8490285873413086,\n                    \"Top\": 0.32126933336257935\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8490285873413086,\n                        \"Y\": 0.3213116228580475\n                    },\n                    {\n                        \"X\": 0.9038892984390259,\n                        \"Y\": 0.32126933336257935\n                    },\n                    {\n                        \"X\": 0.9038957953453064,\n                        \"Y\": 0.3300100862979889\n                    },\n                    {\n                        \"X\": 0.8490349650382996,\n                        \"Y\": 0.3300524055957794\n                    }\n                ]\n            },\n            \"Id\": \"005ab816-8dd1-479b-a3d0-4d01e92f9103\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.975341796875,\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03189919516444206,\n                    \"Height\": 0.007762612774968147,\n                    \"Left\": 0.12811747193336487,\n                    \"Top\": 0.3356834053993225\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12811747193336487,\n                        \"Y\": 0.33570802211761475\n                    },\n                    {\n                        \"X\": 0.16001267731189728,\n                        \"Y\": 0.3356834053993225\n                    },\n                    {\n                        \"X\": 0.16001665592193604,\n                        \"Y\": 0.3434213697910309\n                    },\n                    {\n                        \"X\": 0.12812137603759766,\n                        \"Y\": 0.3434460163116455\n                    }\n                ]\n            },\n            \"Id\": \"765c2d5d-6927-48a9-9d46-ea893b3e337e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80744934082031,\n            \"Text\": \"10,324,439\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06084743142127991,\n                    \"Height\": 0.008785550482571125,\n                    \"Left\": 0.43403488397598267,\n                    \"Top\": 0.33533865213394165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43403488397598267,\n                        \"Y\": 0.33538562059402466\n                    },\n                    {\n                        \"X\": 0.494876891374588,\n                        \"Y\": 0.33533865213394165\n                    },\n                    {\n                        \"X\": 0.4948823153972626,\n                        \"Y\": 0.3440771996974945\n                    },\n                    {\n                        \"X\": 0.4340401291847229,\n                        \"Y\": 0.3441241979598999\n                    }\n                ]\n            },\n            \"Id\": \"b61d66b6-4d34-4e40-b8b4-5477bc30a282\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87232971191406,\n            \"Text\": \"3,117,908\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05488753691315651,\n                    \"Height\": 0.00876093003898859,\n                    \"Left\": 0.5674089193344116,\n                    \"Top\": 0.3352014720439911\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5674089193344116,\n                        \"Y\": 0.335243821144104\n                    },\n                    {\n                        \"X\": 0.6222907304763794,\n                        \"Y\": 0.3352014720439911\n                    },\n                    {\n                        \"X\": 0.6222964525222778,\n                        \"Y\": 0.3439199924468994\n                    },\n                    {\n                        \"X\": 0.5674145221710205,\n                        \"Y\": 0.3439624011516571\n                    }\n                ]\n            },\n            \"Id\": \"4c4a0302-3e5c-49b0-b75d-47589b3f52ba\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88990020751953,\n            \"Text\": \"2,263,119\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05447995662689209,\n                    \"Height\": 0.008794200606644154,\n                    \"Left\": 0.7142983078956604,\n                    \"Top\": 0.3349705636501312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7142983078956604,\n                        \"Y\": 0.3350125849246979\n                    },\n                    {\n                        \"X\": 0.7687721252441406,\n                        \"Y\": 0.3349705636501312\n                    },\n                    {\n                        \"X\": 0.7687782645225525,\n                        \"Y\": 0.3437226712703705\n                    },\n                    {\n                        \"X\": 0.7143043279647827,\n                        \"Y\": 0.3437647521495819\n                    }\n                ]\n            },\n            \"Id\": \"fa81446f-1e01-4221-bd8e-61da15e7e5d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82518768310547,\n            \"Text\": \"15,705,466\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06143975630402565,\n                    \"Height\": 0.008785377256572247,\n                    \"Left\": 0.8427975177764893,\n                    \"Top\": 0.3347721993923187\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8427975177764893,\n                        \"Y\": 0.33481961488723755\n                    },\n                    {\n                        \"X\": 0.9042307734489441,\n                        \"Y\": 0.3347721993923187\n                    },\n                    {\n                        \"X\": 0.9042372703552246,\n                        \"Y\": 0.34351012110710144\n                    },\n                    {\n                        \"X\": 0.8428038954734802,\n                        \"Y\": 0.34355759620666504\n                    }\n                ]\n            },\n            \"Id\": \"089a64e0-62b0-46e7-870f-18754a3bc3e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90685272216797,\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02784527651965618,\n                    \"Height\": 0.007775106932967901,\n                    \"Left\": 0.15596874058246613,\n                    \"Top\": 0.3512449264526367\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15596874058246613,\n                        \"Y\": 0.35126644372940063\n                    },\n                    {\n                        \"X\": 0.18380996584892273,\n                        \"Y\": 0.3512449264526367\n                    },\n                    {\n                        \"X\": 0.18381401896476746,\n                        \"Y\": 0.35899850726127625\n                    },\n                    {\n                        \"X\": 0.15597271919250488,\n                        \"Y\": 0.35902005434036255\n                    }\n                ]\n            },\n            \"Id\": \"83d4abd2-5d28-4548-9dca-36b9b57c4c3d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9439926147461,\n            \"Text\": \"revenues\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049737416207790375,\n                    \"Height\": 0.006150385364890099,\n                    \"Left\": 0.18764442205429077,\n                    \"Top\": 0.3528899848461151\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18764442205429077,\n                        \"Y\": 0.35292842984199524\n                    },\n                    {\n                        \"X\": 0.2373785525560379,\n                        \"Y\": 0.3528899848461151\n                    },\n                    {\n                        \"X\": 0.23738184571266174,\n                        \"Y\": 0.35900190472602844\n                    },\n                    {\n                        \"X\": 0.18764762580394745,\n                        \"Y\": 0.35904037952423096\n                    }\n                ]\n            },\n            \"Id\": \"80053264-1bc9-4177-a642-f95bca898c40\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68649291992188,\n            \"Text\": \"1,237,900,030\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07820996642112732,\n                    \"Height\": 0.009076613001525402,\n                    \"Left\": 0.4169773459434509,\n                    \"Top\": 0.35092562437057495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4169773459434509,\n                        \"Y\": 0.3509860634803772\n                    },\n                    {\n                        \"X\": 0.49518170952796936,\n                        \"Y\": 0.35092562437057495\n                    },\n                    {\n                        \"X\": 0.49518731236457825,\n                        \"Y\": 0.3599417507648468\n                    },\n                    {\n                        \"X\": 0.4169827103614807,\n                        \"Y\": 0.3600022494792938\n                    }\n                ]\n            },\n            \"Id\": \"3b6ae8a1-45d7-41e5-ab5b-af4c236d1db4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87418365478516,\n            \"Text\": \"316,546,753\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06821949779987335,\n                    \"Height\": 0.008987926878035069,\n                    \"Left\": 0.5538623929023743,\n                    \"Top\": 0.35079696774482727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5538623929023743,\n                        \"Y\": 0.3508496880531311\n                    },\n                    {\n                        \"X\": 0.6220760345458984,\n                        \"Y\": 0.35079696774482727\n                    },\n                    {\n                        \"X\": 0.6220819354057312,\n                        \"Y\": 0.35973215103149414\n                    },\n                    {\n                        \"X\": 0.5538681149482727,\n                        \"Y\": 0.35978490114212036\n                    }\n                ]\n            },\n            \"Id\": \"2f641ead-8221-407e-b585-52420e94a671\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8182601928711,\n            \"Text\": \"107,855,429\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06754354387521744,\n                    \"Height\": 0.008973279967904091,\n                    \"Left\": 0.7014420032501221,\n                    \"Top\": 0.35059449076652527\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7014420032501221,\n                        \"Y\": 0.3506466746330261\n                    },\n                    {\n                        \"X\": 0.7689792513847351,\n                        \"Y\": 0.35059449076652527\n                    },\n                    {\n                        \"X\": 0.7689855694770813,\n                        \"Y\": 0.35951554775238037\n                    },\n                    {\n                        \"X\": 0.7014481425285339,\n                        \"Y\": 0.3595677614212036\n                    }\n                ]\n            },\n            \"Id\": \"904b9957-bd58-4d84-81d2-ae7b0d2c78d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76786041259766,\n            \"Text\": \"1,662,302,212\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07833139598369598,\n                    \"Height\": 0.008900357410311699,\n                    \"Left\": 0.8259252309799194,\n                    \"Top\": 0.35045126080513\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8259252309799194,\n                        \"Y\": 0.3505117893218994\n                    },\n                    {\n                        \"X\": 0.9042500257492065,\n                        \"Y\": 0.35045126080513\n                    },\n                    {\n                        \"X\": 0.9042566418647766,\n                        \"Y\": 0.35929104685783386\n                    },\n                    {\n                        \"X\": 0.8259316086769104,\n                        \"Y\": 0.35935160517692566\n                    }\n                ]\n            },\n            \"Id\": \"84b37f9c-3b2d-4f66-acd2-351687188610\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76721954345703,\n            \"Text\": \"EXPENDITURES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08309381455183029,\n                    \"Height\": 0.007508025970309973,\n                    \"Left\": 0.10977599024772644,\n                    \"Top\": 0.3814193308353424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10977599024772644,\n                        \"Y\": 0.3814837336540222\n                    },\n                    {\n                        \"X\": 0.19286589324474335,\n                        \"Y\": 0.3814193308353424\n                    },\n                    {\n                        \"X\": 0.19286979734897614,\n                        \"Y\": 0.3888629376888275\n                    },\n                    {\n                        \"X\": 0.10977970063686371,\n                        \"Y\": 0.3889273703098297\n                    }\n                ]\n            },\n            \"Id\": \"4ccba9da-4850-4837-9e61-ea1be2e3bc76\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94058227539062,\n            \"Text\": \"Customer\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0533972792327404,\n                    \"Height\": 0.007666363846510649,\n                    \"Left\": 0.12806767225265503,\n                    \"Top\": 0.3951541483402252\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12806767225265503,\n                        \"Y\": 0.3951955735683441\n                    },\n                    {\n                        \"X\": 0.18146097660064697,\n                        \"Y\": 0.3951541483402252\n                    },\n                    {\n                        \"X\": 0.18146494030952454,\n                        \"Y\": 0.40277907252311707\n                    },\n                    {\n                        \"X\": 0.12807151675224304,\n                        \"Y\": 0.40282052755355835\n                    }\n                ]\n            },\n            \"Id\": \"4998e6fc-c2dd-44eb-99e8-65f67048298b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64604187011719,\n            \"Text\": \"satisfaction\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06275098025798798,\n                    \"Height\": 0.007969504222273827,\n                    \"Left\": 0.18414314091205597,\n                    \"Top\": 0.39476990699768066\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18414314091205597,\n                        \"Y\": 0.39481857419013977\n                    },\n                    {\n                        \"X\": 0.24688982963562012,\n                        \"Y\": 0.39476990699768066\n                    },\n                    {\n                        \"X\": 0.24689412117004395,\n                        \"Y\": 0.40269070863723755\n                    },\n                    {\n                        \"X\": 0.18414728343486786,\n                        \"Y\": 0.40273940563201904\n                    }\n                ]\n            },\n            \"Id\": \"80ec2a41-d3fd-4de9-b91c-4459467f0301\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9740219116211,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020374733954668045,\n                    \"Height\": 0.007787196896970272,\n                    \"Left\": 0.2501201331615448,\n                    \"Top\": 0.39480340480804443\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2501201331615448,\n                        \"Y\": 0.3948192298412323\n                    },\n                    {\n                        \"X\": 0.2704906165599823,\n                        \"Y\": 0.39480340480804443\n                    },\n                    {\n                        \"X\": 0.27049487829208374,\n                        \"Y\": 0.4025748074054718\n                    },\n                    {\n                        \"X\": 0.25012436509132385,\n                        \"Y\": 0.4025906026363373\n                    }\n                ]\n            },\n            \"Id\": \"f9440d2d-e40c-433c-b3bb-cf227aa0f095\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96574401855469,\n            \"Text\": \"management\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07243134081363678,\n                    \"Height\": 0.008785353973507881,\n                    \"Left\": 0.2741891145706177,\n                    \"Top\": 0.39536425471305847\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2741891145706177,\n                        \"Y\": 0.3954204320907593\n                    },\n                    {\n                        \"X\": 0.3466154634952545,\n                        \"Y\": 0.39536425471305847\n                    },\n                    {\n                        \"X\": 0.34662047028541565,\n                        \"Y\": 0.4040933847427368\n                    },\n                    {\n                        \"X\": 0.2741939425468445,\n                        \"Y\": 0.4041496217250824\n                    }\n                ]\n            },\n            \"Id\": \"7f7e295b-555d-4bd4-bd3d-ba845f0c0147\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7484359741211,\n            \"Text\": \"24,626,613\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06114169582724571,\n                    \"Height\": 0.00902999471873045,\n                    \"Left\": 0.4335375428199768,\n                    \"Top\": 0.39453989267349243\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4335375428199768,\n                        \"Y\": 0.39458730816841125\n                    },\n                    {\n                        \"X\": 0.4946736693382263,\n                        \"Y\": 0.39453989267349243\n                    },\n                    {\n                        \"X\": 0.4946792423725128,\n                        \"Y\": 0.40352240204811096\n                    },\n                    {\n                        \"X\": 0.433542937040329,\n                        \"Y\": 0.40356987714767456\n                    }\n                ]\n            },\n            \"Id\": \"5c0794e2-e7de-4ebd-b891-5c8a688342b1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.0195083618164,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0045825219713151455,\n                    \"Height\": 0.0019714105874300003,\n                    \"Left\": 0.6179372668266296,\n                    \"Top\": 0.3980063796043396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6179372668266296,\n                        \"Y\": 0.39800992608070374\n                    },\n                    {\n                        \"X\": 0.6225185394287109,\n                        \"Y\": 0.3980063796043396\n                    },\n                    {\n                        \"X\": 0.6225197911262512,\n                        \"Y\": 0.3999742269515991\n                    },\n                    {\n                        \"X\": 0.6179385781288147,\n                        \"Y\": 0.39997777342796326\n                    }\n                ]\n            },\n            \"Id\": \"be75689a-403c-4a90-9346-c9bd182b8ce5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.58294677734375,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004617590457201004,\n                    \"Height\": 0.0019673684146255255,\n                    \"Left\": 0.7647848725318909,\n                    \"Top\": 0.3977658152580261\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7647848725318909,\n                        \"Y\": 0.39776939153671265\n                    },\n                    {\n                        \"X\": 0.7694010734558105,\n                        \"Y\": 0.3977658152580261\n                    },\n                    {\n                        \"X\": 0.7694025039672852,\n                        \"Y\": 0.3997296094894409\n                    },\n                    {\n                        \"X\": 0.7647862434387207,\n                        \"Y\": 0.39973318576812744\n                    }\n                ]\n            },\n            \"Id\": \"81f00998-4173-44d7-be90-ae304fe44109\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77699279785156,\n            \"Text\": \"24,626,613\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06161537021398544,\n                    \"Height\": 0.008863551542162895,\n                    \"Left\": 0.8424966931343079,\n                    \"Top\": 0.3940763771533966\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8424966931343079,\n                        \"Y\": 0.3941241502761841\n                    },\n                    {\n                        \"X\": 0.9041054844856262,\n                        \"Y\": 0.3940763771533966\n                    },\n                    {\n                        \"X\": 0.9041120409965515,\n                        \"Y\": 0.4028920829296112\n                    },\n                    {\n                        \"X\": 0.8425030708312988,\n                        \"Y\": 0.40293991565704346\n                    }\n                ]\n            },\n            \"Id\": \"0755c5dc-2557-4717-9702-36c056fe13ae\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84578704833984,\n            \"Text\": \"Administrative\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08039288967847824,\n                    \"Height\": 0.008149406872689724,\n                    \"Left\": 0.12769930064678192,\n                    \"Top\": 0.4085211157798767\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12769930064678192,\n                        \"Y\": 0.40858355164527893\n                    },\n                    {\n                        \"X\": 0.20808790624141693,\n                        \"Y\": 0.4085211157798767\n                    },\n                    {\n                        \"X\": 0.20809219777584076,\n                        \"Y\": 0.4166080355644226\n                    },\n                    {\n                        \"X\": 0.12770338356494904,\n                        \"Y\": 0.4166705310344696\n                    }\n                ]\n            },\n            \"Id\": \"7a7a58b5-a926-4a79-a439-98b7fb99c28c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85408782958984,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043425340205430984,\n                    \"Height\": 0.00782107375562191,\n                    \"Left\": 0.21162571012973785,\n                    \"Top\": 0.40882042050361633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21162571012973785,\n                        \"Y\": 0.4088541567325592\n                    },\n                    {\n                        \"X\": 0.2550468146800995,\n                        \"Y\": 0.40882042050361633\n                    },\n                    {\n                        \"X\": 0.25505104660987854,\n                        \"Y\": 0.41660773754119873\n                    },\n                    {\n                        \"X\": 0.21162985265254974,\n                        \"Y\": 0.416641503572464\n                    }\n                ]\n            },\n            \"Id\": \"08365279-a3c9-4c6c-8dbb-53d20b6b3954\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81387329101562,\n            \"Text\": \"90,355,707\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061193421483039856,\n                    \"Height\": 0.009041042067110538,\n                    \"Left\": 0.43380048871040344,\n                    \"Top\": 0.40831053256988525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43380048871040344,\n                        \"Y\": 0.40835803747177124\n                    },\n                    {\n                        \"X\": 0.494988352060318,\n                        \"Y\": 0.40831053256988525\n                    },\n                    {\n                        \"X\": 0.4949939250946045,\n                        \"Y\": 0.41730400919914246\n                    },\n                    {\n                        \"X\": 0.4338058829307556,\n                        \"Y\": 0.4173515737056732\n                    }\n                ]\n            },\n            \"Id\": \"2ec4a6ab-bf0d-49e6-9725-d2b2c799d066\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.96580505371094,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004493967164307833,\n                    \"Height\": 0.0019724168814718723,\n                    \"Left\": 0.61800217628479,\n                    \"Top\": 0.4117891788482666\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.61800217628479,\n                        \"Y\": 0.41179269552230835\n                    },\n                    {\n                        \"X\": 0.6224948167800903,\n                        \"Y\": 0.4117891788482666\n                    },\n                    {\n                        \"X\": 0.6224961280822754,\n                        \"Y\": 0.41375812888145447\n                    },\n                    {\n                        \"X\": 0.6180034279823303,\n                        \"Y\": 0.41376161575317383\n                    }\n                ]\n            },\n            \"Id\": \"ad6df55d-b5e5-4586-981c-0d8bd665109e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.33776092529297,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00464412709698081,\n                    \"Height\": 0.002042135689407587,\n                    \"Left\": 0.76481032371521,\n                    \"Top\": 0.4115283191204071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.76481032371521,\n                        \"Y\": 0.411531925201416\n                    },\n                    {\n                        \"X\": 0.7694530487060547,\n                        \"Y\": 0.4115283191204071\n                    },\n                    {\n                        \"X\": 0.7694544792175293,\n                        \"Y\": 0.41356685757637024\n                    },\n                    {\n                        \"X\": 0.7648117542266846,\n                        \"Y\": 0.41357046365737915\n                    }\n                ]\n            },\n            \"Id\": \"6f508ed5-fcf6-404e-997e-f12f41c14d87\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74755859375,\n            \"Text\": \"90,355,707\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06174379959702492,\n                    \"Height\": 0.008868054486811161,\n                    \"Left\": 0.8423752188682556,\n                    \"Top\": 0.4078310430049896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8423752188682556,\n                        \"Y\": 0.4078789949417114\n                    },\n                    {\n                        \"X\": 0.9041124582290649,\n                        \"Y\": 0.4078310430049896\n                    },\n                    {\n                        \"X\": 0.9041190147399902,\n                        \"Y\": 0.4166510999202728\n                    },\n                    {\n                        \"X\": 0.8423816561698914,\n                        \"Y\": 0.416699081659317\n                    }\n                ]\n            },\n            \"Id\": \"59b7c8a3-c612-41a8-91d8-b25dead2a34e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80564880371094,\n            \"Text\": \"Financial\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04763242229819298,\n                    \"Height\": 0.007854980416595936,\n                    \"Left\": 0.128530353307724,\n                    \"Top\": 0.42260459065437317\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.128530353307724,\n                        \"Y\": 0.4226416349411011\n                    },\n                    {\n                        \"X\": 0.17615871131420135,\n                        \"Y\": 0.42260459065437317\n                    },\n                    {\n                        \"X\": 0.17616276443004608,\n                        \"Y\": 0.43042251467704773\n                    },\n                    {\n                        \"X\": 0.12853430211544037,\n                        \"Y\": 0.43045955896377563\n                    }\n                ]\n            },\n            \"Id\": \"6a7a7d47-74a5-4970-808b-7b47941a5c51\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81272888183594,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04361516982316971,\n                    \"Height\": 0.007787974551320076,\n                    \"Left\": 0.17962859570980072,\n                    \"Top\": 0.42259395122528076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17962859570980072,\n                        \"Y\": 0.42262786626815796\n                    },\n                    {\n                        \"X\": 0.22323963046073914,\n                        \"Y\": 0.42259395122528076\n                    },\n                    {\n                        \"X\": 0.22324377298355103,\n                        \"Y\": 0.4303479790687561\n                    },\n                    {\n                        \"X\": 0.17963263392448425,\n                        \"Y\": 0.4303819239139557\n                    }\n                ]\n            },\n            \"Id\": \"0f109464-bda9-4401-9c20-67f70e798417\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87774658203125,\n            \"Text\": \"17,458,897\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061142366379499435,\n                    \"Height\": 0.00892188772559166,\n                    \"Left\": 0.4341004490852356,\n                    \"Top\": 0.42210081219673157\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4341004490852356,\n                        \"Y\": 0.42214834690093994\n                    },\n                    {\n                        \"X\": 0.4952372908592224,\n                        \"Y\": 0.42210081219673157\n                    },\n                    {\n                        \"X\": 0.49524280428886414,\n                        \"Y\": 0.4309751093387604\n                    },\n                    {\n                        \"X\": 0.4341057538986206,\n                        \"Y\": 0.4310227036476135\n                    }\n                ]\n            },\n            \"Id\": \"af9af8bf-c0a3-4e12-9fe5-eb0479d1478b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.16438293457031,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004476399626582861,\n                    \"Height\": 0.0019491242710500956,\n                    \"Left\": 0.6181684136390686,\n                    \"Top\": 0.42563140392303467\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181684136390686,\n                        \"Y\": 0.42563486099243164\n                    },\n                    {\n                        \"X\": 0.6226435303688049,\n                        \"Y\": 0.42563140392303467\n                    },\n                    {\n                        \"X\": 0.6226447820663452,\n                        \"Y\": 0.42757704854011536\n                    },\n                    {\n                        \"X\": 0.6181696653366089,\n                        \"Y\": 0.42758050560951233\n                    }\n                ]\n            },\n            \"Id\": \"162d892a-5c10-41ce-8ac7-a37a7fd6098f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.89962005615234,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004534965381026268,\n                    \"Height\": 0.0019054911099374294,\n                    \"Left\": 0.7649404406547546,\n                    \"Top\": 0.4255006015300751\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7649404406547546,\n                        \"Y\": 0.4255041182041168\n                    },\n                    {\n                        \"X\": 0.7694740891456604,\n                        \"Y\": 0.4255006015300751\n                    },\n                    {\n                        \"X\": 0.7694754004478455,\n                        \"Y\": 0.4274025559425354\n                    },\n                    {\n                        \"X\": 0.7649418115615845,\n                        \"Y\": 0.42740610241889954\n                    }\n                ]\n            },\n            \"Id\": \"b4ac4349-d5b3-4ae6-8e49-7ffaf111e58e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84112548828125,\n            \"Text\": \"17,458,897\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06164707988500595,\n                    \"Height\": 0.008840817958116531,\n                    \"Left\": 0.8427942395210266,\n                    \"Top\": 0.4216077923774719\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8427942395210266,\n                        \"Y\": 0.42165571451187134\n                    },\n                    {\n                        \"X\": 0.9044348001480103,\n                        \"Y\": 0.4216077923774719\n                    },\n                    {\n                        \"X\": 0.9044413566589355,\n                        \"Y\": 0.43040063977241516\n                    },\n                    {\n                        \"X\": 0.8428006768226624,\n                        \"Y\": 0.43044862151145935\n                    }\n                ]\n            },\n            \"Id\": \"d68257a0-73be-4bdb-b69b-6b49674ee591\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93541717529297,\n            \"Text\": \"Land\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025916922837495804,\n                    \"Height\": 0.007594522088766098,\n                    \"Left\": 0.12840670347213745,\n                    \"Top\": 0.4363296926021576\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12840670347213745,\n                        \"Y\": 0.4363498389720917\n                    },\n                    {\n                        \"X\": 0.15431974828243256,\n                        \"Y\": 0.4363296926021576\n                    },\n                    {\n                        \"X\": 0.15432363748550415,\n                        \"Y\": 0.44390401244163513\n                    },\n                    {\n                        \"X\": 0.12841053307056427,\n                        \"Y\": 0.4439241886138916\n                    }\n                ]\n            },\n            \"Id\": \"e5bcfe0d-f22b-4649-a2d4-4cdb6c0e65ec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93787384033203,\n            \"Text\": \"use\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018767917528748512,\n                    \"Height\": 0.006079595070332289,\n                    \"Left\": 0.1578175276517868,\n                    \"Top\": 0.43788281083106995\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1578175276517868,\n                        \"Y\": 0.4378974139690399\n                    },\n                    {\n                        \"X\": 0.17658229172229767,\n                        \"Y\": 0.43788281083106995\n                    },\n                    {\n                        \"X\": 0.17658545076847076,\n                        \"Y\": 0.44394779205322266\n                    },\n                    {\n                        \"X\": 0.1578206568956375,\n                        \"Y\": 0.4439623951911926\n                    }\n                ]\n            },\n            \"Id\": \"b1b42bed-e204-41bb-98cf-7bab0d3810e7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9795150756836,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020288357511162758,\n                    \"Height\": 0.007586979307234287,\n                    \"Left\": 0.1798054724931717,\n                    \"Top\": 0.4363018274307251\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1798054724931717,\n                        \"Y\": 0.4363176226615906\n                    },\n                    {\n                        \"X\": 0.20008982717990875,\n                        \"Y\": 0.4363018274307251\n                    },\n                    {\n                        \"X\": 0.2000938206911087,\n                        \"Y\": 0.44387301802635193\n                    },\n                    {\n                        \"X\": 0.17980940639972687,\n                        \"Y\": 0.4438888132572174\n                    }\n                ]\n            },\n            \"Id\": \"ad73f1bc-3ed3-43b6-8de9-4a5f5934767a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86495208740234,\n            \"Text\": \"environmental\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07963784784078598,\n                    \"Height\": 0.007772283628582954,\n                    \"Left\": 0.20384182035923004,\n                    \"Top\": 0.43621230125427246\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20384182035923004,\n                        \"Y\": 0.43627429008483887\n                    },\n                    {\n                        \"X\": 0.283475399017334,\n                        \"Y\": 0.43621230125427246\n                    },\n                    {\n                        \"X\": 0.2834796607494354,\n                        \"Y\": 0.4439225494861603\n                    },\n                    {\n                        \"X\": 0.20384588837623596,\n                        \"Y\": 0.4439845681190491\n                    }\n                ]\n            },\n            \"Id\": \"7a90d169-3d29-444b-99e0-9e1887a6852e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86154174804688,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04342121630907059,\n                    \"Height\": 0.007802991196513176,\n                    \"Left\": 0.2870553731918335,\n                    \"Top\": 0.4361574351787567\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2870553731918335,\n                        \"Y\": 0.43619123101234436\n                    },\n                    {\n                        \"X\": 0.3304721713066101,\n                        \"Y\": 0.4361574351787567\n                    },\n                    {\n                        \"X\": 0.3304765820503235,\n                        \"Y\": 0.443926602602005\n                    },\n                    {\n                        \"X\": 0.2870596647262573,\n                        \"Y\": 0.44396042823791504\n                    }\n                ]\n            },\n            \"Id\": \"e28f3cc7-8d59-48cd-b871-1caf54835798\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89723205566406,\n            \"Text\": \"55,029,706\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061473265290260315,\n                    \"Height\": 0.008966797962784767,\n                    \"Left\": 0.43373212218284607,\n                    \"Top\": 0.43585407733917236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43373212218284607,\n                        \"Y\": 0.4359019100666046\n                    },\n                    {\n                        \"X\": 0.49519985914230347,\n                        \"Y\": 0.43585407733917236\n                    },\n                    {\n                        \"X\": 0.4952053725719452,\n                        \"Y\": 0.44477298855781555\n                    },\n                    {\n                        \"X\": 0.43373745679855347,\n                        \"Y\": 0.4448208808898926\n                    }\n                ]\n            },\n            \"Id\": \"74be80fa-7cd0-44ad-83ff-e0f3be6a4c6e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.99293518066406,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0045215715654194355,\n                    \"Height\": 0.002009761054068804,\n                    \"Left\": 0.618093729019165,\n                    \"Top\": 0.43934503197669983\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.618093729019165,\n                        \"Y\": 0.4393485486507416\n                    },\n                    {\n                        \"X\": 0.6226139664649963,\n                        \"Y\": 0.43934503197669983\n                    },\n                    {\n                        \"X\": 0.6226152777671814,\n                        \"Y\": 0.4413512647151947\n                    },\n                    {\n                        \"X\": 0.6180950403213501,\n                        \"Y\": 0.44135478138923645\n                    }\n                ]\n            },\n            \"Id\": \"8a5aca9c-66b9-45b9-a148-be8c04720c3d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8058853149414,\n            \"Text\": \"13,789,663\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.060799166560173035,\n                    \"Height\": 0.008891575038433075,\n                    \"Left\": 0.7082003355026245,\n                    \"Top\": 0.4355665445327759\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7082003355026245,\n                        \"Y\": 0.43561387062072754\n                    },\n                    {\n                        \"X\": 0.7689932584762573,\n                        \"Y\": 0.4355665445327759\n                    },\n                    {\n                        \"X\": 0.7689995169639587,\n                        \"Y\": 0.4444107711315155\n                    },\n                    {\n                        \"X\": 0.7082064151763916,\n                        \"Y\": 0.44445812702178955\n                    }\n                ]\n            },\n            \"Id\": \"31e289e8-02d3-44fa-8ca8-1d06ae580e32\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8576431274414,\n            \"Text\": \"68,819,369\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06196644529700279,\n                    \"Height\": 0.008771715685725212,\n                    \"Left\": 0.8423805236816406,\n                    \"Top\": 0.4354189336299896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8423805236816406,\n                        \"Y\": 0.4354671835899353\n                    },\n                    {\n                        \"X\": 0.9043404459953308,\n                        \"Y\": 0.4354189336299896\n                    },\n                    {\n                        \"X\": 0.9043469429016113,\n                        \"Y\": 0.4441424012184143\n                    },\n                    {\n                        \"X\": 0.8423869013786316,\n                        \"Y\": 0.44419065117836\n                    }\n                ]\n            },\n            \"Id\": \"4ecfcd3c-fce7-41dc-a7b8-855e3cc8a72a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93533325195312,\n            \"Text\": \"Community\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06379207223653793,\n                    \"Height\": 0.009333841502666473,\n                    \"Left\": 0.12837150692939758,\n                    \"Top\": 0.4502156972885132\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12837150692939758,\n                        \"Y\": 0.45026543736457825\n                    },\n                    {\n                        \"X\": 0.19215871393680573,\n                        \"Y\": 0.4502156972885132\n                    },\n                    {\n                        \"X\": 0.1921635866165161,\n                        \"Y\": 0.4594998061656952\n                    },\n                    {\n                        \"X\": 0.12837620079517365,\n                        \"Y\": 0.45954954624176025\n                    }\n                ]\n            },\n            \"Id\": \"fb63eb83-6ab6-46ca-a228-f8fdf9706c11\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88148498535156,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04353167116641998,\n                    \"Height\": 0.007668641395866871,\n                    \"Left\": 0.19513531029224396,\n                    \"Top\": 0.4502658545970917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19513531029224396,\n                        \"Y\": 0.45029976963996887\n                    },\n                    {\n                        \"X\": 0.23866286873817444,\n                        \"Y\": 0.4502658545970917\n                    },\n                    {\n                        \"X\": 0.23866698145866394,\n                        \"Y\": 0.4579005241394043\n                    },\n                    {\n                        \"X\": 0.1951393187046051,\n                        \"Y\": 0.4579344689846039\n                    }\n                ]\n            },\n            \"Id\": \"9d502d4c-a064-4c81-88fe-bc3c1fed9579\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89038848876953,\n            \"Text\": \"76,945,546\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06143046170473099,\n                    \"Height\": 0.008914277888834476,\n                    \"Left\": 0.43389421701431274,\n                    \"Top\": 0.4497295916080475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43389421701431274,\n                        \"Y\": 0.4497774839401245\n                    },\n                    {\n                        \"X\": 0.4953191876411438,\n                        \"Y\": 0.4497295916080475\n                    },\n                    {\n                        \"X\": 0.49532467126846313,\n                        \"Y\": 0.45859596133232117\n                    },\n                    {\n                        \"X\": 0.43389952182769775,\n                        \"Y\": 0.4586438834667206\n                    }\n                ]\n            },\n            \"Id\": \"4addb878-6a26-48da-bc66-87ce93a58225\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.75738525390625,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0043775043450295925,\n                    \"Height\": 0.002013636752963066,\n                    \"Left\": 0.6181724667549133,\n                    \"Top\": 0.453092485666275\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181724667549133,\n                        \"Y\": 0.4530959129333496\n                    },\n                    {\n                        \"X\": 0.6225486397743225,\n                        \"Y\": 0.453092485666275\n                    },\n                    {\n                        \"X\": 0.6225499510765076,\n                        \"Y\": 0.45510271191596985\n                    },\n                    {\n                        \"X\": 0.6181737780570984,\n                        \"Y\": 0.45510613918304443\n                    }\n                ]\n            },\n            \"Id\": \"042c871f-9aea-49f6-a315-6eaac601f51d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.18665313720703,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0045947302132844925,\n                    \"Height\": 0.0019826083444058895,\n                    \"Left\": 0.7648937106132507,\n                    \"Top\": 0.45294782519340515\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7648937106132507,\n                        \"Y\": 0.4529514014720917\n                    },\n                    {\n                        \"X\": 0.7694870233535767,\n                        \"Y\": 0.45294782519340515\n                    },\n                    {\n                        \"X\": 0.7694884538650513,\n                        \"Y\": 0.45492684841156006\n                    },\n                    {\n                        \"X\": 0.7648950815200806,\n                        \"Y\": 0.4549304246902466\n                    }\n                ]\n            },\n            \"Id\": \"66f0befe-800d-4270-850c-62e7f2f3c5c6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86654663085938,\n            \"Text\": \"76,945,546\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.062085557729005814,\n                    \"Height\": 0.008778293617069721,\n                    \"Left\": 0.8426583409309387,\n                    \"Top\": 0.44930359721183777\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8426583409309387,\n                        \"Y\": 0.449351966381073\n                    },\n                    {\n                        \"X\": 0.9047374129295349,\n                        \"Y\": 0.44930359721183777\n                    },\n                    {\n                        \"X\": 0.9047439098358154,\n                        \"Y\": 0.4580334424972534\n                    },\n                    {\n                        \"X\": 0.8426647186279297,\n                        \"Y\": 0.4580818712711334\n                    }\n                ]\n            },\n            \"Id\": \"23c6c849-08ce-4010-ac20-3fa46c516e68\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91963958740234,\n            \"Text\": \"Detention\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05435986444354057,\n                    \"Height\": 0.007874960079789162,\n                    \"Left\": 0.12861083447933197,\n                    \"Top\": 0.4638839066028595\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12861083447933197,\n                        \"Y\": 0.4639263153076172\n                    },\n                    {\n                        \"X\": 0.18296661972999573,\n                        \"Y\": 0.4638839066028595\n                    },\n                    {\n                        \"X\": 0.18297070264816284,\n                        \"Y\": 0.47171640396118164\n                    },\n                    {\n                        \"X\": 0.12861479818820953,\n                        \"Y\": 0.4717588424682617\n                    }\n                ]\n            },\n            \"Id\": \"c683cda4-26b1-4d8c-8697-e39031f7ec38\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98483276367188,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02007698081433773,\n                    \"Height\": 0.007837329991161823,\n                    \"Left\": 0.18640683591365814,\n                    \"Top\": 0.46374839544296265\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18640683591365814,\n                        \"Y\": 0.4637640714645386\n                    },\n                    {\n                        \"X\": 0.20647966861724854,\n                        \"Y\": 0.46374839544296265\n                    },\n                    {\n                        \"X\": 0.20648381114006042,\n                        \"Y\": 0.47157004475593567\n                    },\n                    {\n                        \"X\": 0.18641091883182526,\n                        \"Y\": 0.4715857207775116\n                    }\n                ]\n            },\n            \"Id\": \"88c6dea5-ce7c-4a69-8947-4c8e28093f63\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96481323242188,\n            \"Text\": \"court\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028852839022874832,\n                    \"Height\": 0.007231510244309902,\n                    \"Left\": 0.21003754436969757,\n                    \"Top\": 0.46447524428367615\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21003754436969757,\n                        \"Y\": 0.46449774503707886\n                    },\n                    {\n                        \"X\": 0.2388864904642105,\n                        \"Y\": 0.46447524428367615\n                    },\n                    {\n                        \"X\": 0.2388903796672821,\n                        \"Y\": 0.47168421745300293\n                    },\n                    {\n                        \"X\": 0.2100413590669632,\n                        \"Y\": 0.471706748008728\n                    }\n                ]\n            },\n            \"Id\": \"ba9385d6-7634-4fc8-a3ca-38ad1bb9acbc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97576904296875,\n            \"Text\": \"support\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04303411394357681,\n                    \"Height\": 0.00890780333429575,\n                    \"Left\": 0.24191512167453766,\n                    \"Top\": 0.46432071924209595\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24191512167453766,\n                        \"Y\": 0.4643543064594269\n                    },\n                    {\n                        \"X\": 0.2849443256855011,\n                        \"Y\": 0.46432071924209595\n                    },\n                    {\n                        \"X\": 0.28494924306869507,\n                        \"Y\": 0.4731949269771576\n                    },\n                    {\n                        \"X\": 0.24191990494728088,\n                        \"Y\": 0.4732285141944885\n                    }\n                ]\n            },\n            \"Id\": \"dfa32872-8fee-4bb9-811c-05e72b614a00\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86082458496094,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043893955647945404,\n                    \"Height\": 0.007840162143111229,\n                    \"Left\": 0.2877417504787445,\n                    \"Top\": 0.46381086111068726\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2877417504787445,\n                        \"Y\": 0.4638451039791107\n                    },\n                    {\n                        \"X\": 0.33163127303123474,\n                        \"Y\": 0.46381086111068726\n                    },\n                    {\n                        \"X\": 0.3316357135772705,\n                        \"Y\": 0.4716167449951172\n                    },\n                    {\n                        \"X\": 0.2877460718154907,\n                        \"Y\": 0.47165101766586304\n                    }\n                ]\n            },\n            \"Id\": \"1972d744-7468-433e-ba70-6a011aab4fe4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87309265136719,\n            \"Text\": \"145,417,680\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06828771531581879,\n                    \"Height\": 0.008872469887137413,\n                    \"Left\": 0.42726999521255493,\n                    \"Top\": 0.4635307788848877\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42726999521255493,\n                        \"Y\": 0.4635840654373169\n                    },\n                    {\n                        \"X\": 0.49555227160453796,\n                        \"Y\": 0.4635307788848877\n                    },\n                    {\n                        \"X\": 0.4955577254295349,\n                        \"Y\": 0.47234994173049927\n                    },\n                    {\n                        \"X\": 0.42727527022361755,\n                        \"Y\": 0.47240325808525085\n                    }\n                ]\n            },\n            \"Id\": \"c5ee6de6-de9d-440d-8054-9dfcb20b8b3e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.73054504394531,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004456529393792152,\n                    \"Height\": 0.0019656759686768055,\n                    \"Left\": 0.6181528568267822,\n                    \"Top\": 0.4668717384338379\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181528568267822,\n                        \"Y\": 0.46687522530555725\n                    },\n                    {\n                        \"X\": 0.6226080656051636,\n                        \"Y\": 0.4668717384338379\n                    },\n                    {\n                        \"X\": 0.6226093769073486,\n                        \"Y\": 0.46883392333984375\n                    },\n                    {\n                        \"X\": 0.6181541681289673,\n                        \"Y\": 0.4688374102115631\n                    }\n                ]\n            },\n            \"Id\": \"7919f587-bef4-4462-b74a-c1852dedbffd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.10711669921875,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004429984837770462,\n                    \"Height\": 0.0016457533929497004,\n                    \"Left\": 0.7651426792144775,\n                    \"Top\": 0.46677637100219727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7651426792144775,\n                        \"Y\": 0.46677982807159424\n                    },\n                    {\n                        \"X\": 0.7695715427398682,\n                        \"Y\": 0.46677637100219727\n                    },\n                    {\n                        \"X\": 0.7695726752281189,\n                        \"Y\": 0.468418687582016\n                    },\n                    {\n                        \"X\": 0.765143871307373,\n                        \"Y\": 0.46842214465141296\n                    }\n                ]\n            },\n            \"Id\": \"6e41a9a4-bb74-46be-9d70-3753d5e850e9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79496002197266,\n            \"Text\": \"145,417,680\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06857027113437653,\n                    \"Height\": 0.008935715071856976,\n                    \"Left\": 0.8363608121871948,\n                    \"Top\": 0.46268966794013977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8363608121871948,\n                        \"Y\": 0.4627431631088257\n                    },\n                    {\n                        \"X\": 0.9049244523048401,\n                        \"Y\": 0.46268966794013977\n                    },\n                    {\n                        \"X\": 0.9049311280250549,\n                        \"Y\": 0.47157183289527893\n                    },\n                    {\n                        \"X\": 0.8363673090934753,\n                        \"Y\": 0.4716253876686096\n                    }\n                ]\n            },\n            \"Id\": \"c5d899d4-ddeb-4c34-a3ba-3d2b96580d22\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97925567626953,\n            \"Text\": \"Health\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035569097846746445,\n                    \"Height\": 0.007854541763663292,\n                    \"Left\": 0.12876568734645844,\n                    \"Top\": 0.4774799644947052\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12876568734645844,\n                        \"Y\": 0.47750774025917053\n                    },\n                    {\n                        \"X\": 0.16433075070381165,\n                        \"Y\": 0.4774799644947052\n                    },\n                    {\n                        \"X\": 0.16433478891849518,\n                        \"Y\": 0.48530668020248413\n                    },\n                    {\n                        \"X\": 0.1287696361541748,\n                        \"Y\": 0.48533448576927185\n                    }\n                ]\n            },\n            \"Id\": \"89325d09-a0ee-4e1d-88db-6322bbe863c0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98529815673828,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020344531163573265,\n                    \"Height\": 0.00775169488042593,\n                    \"Left\": 0.167715921998024,\n                    \"Top\": 0.47746187448501587\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.167715921998024,\n                        \"Y\": 0.4774777591228485\n                    },\n                    {\n                        \"X\": 0.18805640935897827,\n                        \"Y\": 0.47746187448501587\n                    },\n                    {\n                        \"X\": 0.188060462474823,\n                        \"Y\": 0.48519766330718994\n                    },\n                    {\n                        \"X\": 0.16771993041038513,\n                        \"Y\": 0.4852135479450226\n                    }\n                ]\n            },\n            \"Id\": \"b0bf8d55-cef9-4f48-a72e-0c2fde6c3403\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98854064941406,\n            \"Text\": \"human\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038107115775346756,\n                    \"Height\": 0.007839015685021877,\n                    \"Left\": 0.19149816036224365,\n                    \"Top\": 0.47742730379104614\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19149816036224365,\n                        \"Y\": 0.47745707631111145\n                    },\n                    {\n                        \"X\": 0.22960108518600464,\n                        \"Y\": 0.47742730379104614\n                    },\n                    {\n                        \"X\": 0.2296052873134613,\n                        \"Y\": 0.4852365255355835\n                    },\n                    {\n                        \"X\": 0.19150225818157196,\n                        \"Y\": 0.4852662980556488\n                    }\n                ]\n            },\n            \"Id\": \"6d347d54-3501-4d3e-927a-e9488329cf88\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78584289550781,\n            \"Text\": \"services\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043369192630052567,\n                    \"Height\": 0.007773867342621088,\n                    \"Left\": 0.23288066685199738,\n                    \"Top\": 0.47757571935653687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23288066685199738,\n                        \"Y\": 0.4776096045970917\n                    },\n                    {\n                        \"X\": 0.2762455940246582,\n                        \"Y\": 0.47757571935653687\n                    },\n                    {\n                        \"X\": 0.27624985575675964,\n                        \"Y\": 0.4853156805038452\n                    },\n                    {\n                        \"X\": 0.23288482427597046,\n                        \"Y\": 0.4853495657444\n                    }\n                ]\n            },\n            \"Id\": \"1ab7fac3-bb95-4fc5-afa8-28e5a2380fa4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91486358642578,\n            \"Text\": \"264,849,818\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06831524521112442,\n                    \"Height\": 0.008963032625615597,\n                    \"Left\": 0.42701512575149536,\n                    \"Top\": 0.4771457314491272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42701512575149536,\n                        \"Y\": 0.47719910740852356\n                    },\n                    {\n                        \"X\": 0.49532487988471985,\n                        \"Y\": 0.4771457314491272\n                    },\n                    {\n                        \"X\": 0.4953303933143616,\n                        \"Y\": 0.4860553741455078\n                    },\n                    {\n                        \"X\": 0.42702046036720276,\n                        \"Y\": 0.48610877990722656\n                    }\n                ]\n            },\n            \"Id\": \"87f09549-8368-4e8c-a07d-f10f9b6d5091\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.07032012939453,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004467738326638937,\n                    \"Height\": 0.001966870855540037,\n                    \"Left\": 0.6182785034179688,\n                    \"Top\": 0.4807516038417816\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6182785034179688,\n                        \"Y\": 0.480755090713501\n                    },\n                    {\n                        \"X\": 0.6227449774742126,\n                        \"Y\": 0.4807516038417816\n                    },\n                    {\n                        \"X\": 0.6227462887763977,\n                        \"Y\": 0.482714980840683\n                    },\n                    {\n                        \"X\": 0.6182798147201538,\n                        \"Y\": 0.48271846771240234\n                    }\n                ]\n            },\n            \"Id\": \"a7a00a80-e327-4799-989d-e517005643a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.31015014648438,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004351237788796425,\n                    \"Height\": 0.001825291896238923,\n                    \"Left\": 0.765178382396698,\n                    \"Top\": 0.4806697368621826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.765178382396698,\n                        \"Y\": 0.4806731343269348\n                    },\n                    {\n                        \"X\": 0.769528329372406,\n                        \"Y\": 0.4806697368621826\n                    },\n                    {\n                        \"X\": 0.7695295810699463,\n                        \"Y\": 0.4824916124343872\n                    },\n                    {\n                        \"X\": 0.7651796340942383,\n                        \"Y\": 0.4824950098991394\n                    }\n                ]\n            },\n            \"Id\": \"4723bf44-24ba-4aae-a9ae-bf3db6906f6d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94271850585938,\n            \"Text\": \"264,849,818\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06836804002523422,\n                    \"Height\": 0.008845213800668716,\n                    \"Left\": 0.8362413048744202,\n                    \"Top\": 0.47665518522262573\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8362413048744202,\n                        \"Y\": 0.4767085909843445\n                    },\n                    {\n                        \"X\": 0.9046027660369873,\n                        \"Y\": 0.47665518522262573\n                    },\n                    {\n                        \"X\": 0.9046093225479126,\n                        \"Y\": 0.485446959733963\n                    },\n                    {\n                        \"X\": 0.8362476825714111,\n                        \"Y\": 0.48550039529800415\n                    }\n                ]\n            },\n            \"Id\": \"86f85a85-ea72-4282-93fb-4b515246e973\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95916748046875,\n            \"Text\": \"Business\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04670765623450279,\n                    \"Height\": 0.00768398679792881,\n                    \"Left\": 0.12867756187915802,\n                    \"Top\": 0.49151235818862915\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12867756187915802,\n                        \"Y\": 0.4915488660335541\n                    },\n                    {\n                        \"X\": 0.17538124322891235,\n                        \"Y\": 0.49151235818862915\n                    },\n                    {\n                        \"X\": 0.17538520693778992,\n                        \"Y\": 0.4991597831249237\n                    },\n                    {\n                        \"X\": 0.12868142127990723,\n                        \"Y\": 0.499196320772171\n                    }\n                ]\n            },\n            \"Id\": \"579b96ed-2861-483c-81ea-a2982e915620\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92335510253906,\n            \"Text\": \"partners\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0462467335164547,\n                    \"Height\": 0.008736350573599339,\n                    \"Left\": 0.17875821888446808,\n                    \"Top\": 0.492062509059906\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17875821888446808,\n                        \"Y\": 0.49209868907928467\n                    },\n                    {\n                        \"X\": 0.2250002920627594,\n                        \"Y\": 0.492062509059906\n                    },\n                    {\n                        \"X\": 0.22500495612621307,\n                        \"Y\": 0.5007626414299011\n                    },\n                    {\n                        \"X\": 0.178762748837471,\n                        \"Y\": 0.5007988810539246\n                    }\n                ]\n            },\n            \"Id\": \"bfec6747-b5bd-41b1-a9bb-a4e4259d790f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86595153808594,\n            \"Text\": \"485,349,487\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06843872368335724,\n                    \"Height\": 0.008839272893965244,\n                    \"Left\": 0.4267687499523163,\n                    \"Top\": 0.4910433888435364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4267687499523163,\n                        \"Y\": 0.4910969138145447\n                    },\n                    {\n                        \"X\": 0.49520203471183777,\n                        \"Y\": 0.4910433888435364\n                    },\n                    {\n                        \"X\": 0.4952074885368347,\n                        \"Y\": 0.49982908368110657\n                    },\n                    {\n                        \"X\": 0.4267739951610565,\n                        \"Y\": 0.49988263845443726\n                    }\n                ]\n            },\n            \"Id\": \"8438a4c1-7b6f-4993-a635-ec579a31bb24\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.44761657714844,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004592943470925093,\n                    \"Height\": 0.0020125380251556635,\n                    \"Left\": 0.6181437969207764,\n                    \"Top\": 0.49450525641441345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6181437969207764,\n                        \"Y\": 0.4945088326931\n                    },\n                    {\n                        \"X\": 0.6227353811264038,\n                        \"Y\": 0.49450525641441345\n                    },\n                    {\n                        \"X\": 0.6227366924285889,\n                        \"Y\": 0.4965142011642456\n                    },\n                    {\n                        \"X\": 0.6181451082229614,\n                        \"Y\": 0.49651777744293213\n                    }\n                ]\n            },\n            \"Id\": \"eb26f540-a245-4a3b-a714-4467832699db\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86276245117188,\n            \"Text\": \"55,915,981\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061320237815380096,\n                    \"Height\": 0.008949876762926579,\n                    \"Left\": 0.707628071308136,\n                    \"Top\": 0.4907020926475525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.707628071308136,\n                        \"Y\": 0.4907500743865967\n                    },\n                    {\n                        \"X\": 0.7689420580863953,\n                        \"Y\": 0.4907020926475525\n                    },\n                    {\n                        \"X\": 0.7689483165740967,\n                        \"Y\": 0.4996039867401123\n                    },\n                    {\n                        \"X\": 0.7076341509819031,\n                        \"Y\": 0.4996519684791565\n                    }\n                ]\n            },\n            \"Id\": \"0ea1456c-5c3e-474d-a189-66e0f024ee7a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89598083496094,\n            \"Text\": \"541,265,468\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0684155523777008,\n                    \"Height\": 0.008783255703747272,\n                    \"Left\": 0.8360307812690735,\n                    \"Top\": 0.4905514717102051\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8360307812690735,\n                        \"Y\": 0.490604966878891\n                    },\n                    {\n                        \"X\": 0.9044398069381714,\n                        \"Y\": 0.4905514717102051\n                    },\n                    {\n                        \"X\": 0.9044463038444519,\n                        \"Y\": 0.4992811679840088\n                    },\n                    {\n                        \"X\": 0.8360370993614197,\n                        \"Y\": 0.4993347227573395\n                    }\n                ]\n            },\n            \"Id\": \"23f06bcd-0b34-4c7a-81f9-76ca2c3a8d41\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92676544189453,\n            \"Text\": \"Public\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03344493359327316,\n                    \"Height\": 0.008240059949457645,\n                    \"Left\": 0.12877409160137177,\n                    \"Top\": 0.5050243735313416\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12877409160137177,\n                        \"Y\": 0.505050539970398\n                    },\n                    {\n                        \"X\": 0.16221480071544647,\n                        \"Y\": 0.5050243735313416\n                    },\n                    {\n                        \"X\": 0.16221903264522552,\n                        \"Y\": 0.5132381916046143\n                    },\n                    {\n                        \"X\": 0.12877824902534485,\n                        \"Y\": 0.5132644176483154\n                    }\n                ]\n            },\n            \"Id\": \"d64d80ce-1916-46e1-a54a-2f109b9b5753\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.972900390625,\n            \"Text\": \"safety\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03351948410272598,\n                    \"Height\": 0.0095010194927454,\n                    \"Left\": 0.1644134819507599,\n                    \"Top\": 0.5050768256187439\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1644134819507599,\n                        \"Y\": 0.5051031112670898\n                    },\n                    {\n                        \"X\": 0.19792798161506653,\n                        \"Y\": 0.5050768256187439\n                    },\n                    {\n                        \"X\": 0.19793295860290527,\n                        \"Y\": 0.51455157995224\n                    },\n                    {\n                        \"X\": 0.16441836953163147,\n                        \"Y\": 0.5145778656005859\n                    }\n                ]\n            },\n            \"Id\": \"17c54977-1fff-4bed-9a8f-a4eeb8956bfb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.13687896728516,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004658726043999195,\n                    \"Height\": 0.002002031309530139,\n                    \"Left\": 0.4908393323421478,\n                    \"Top\": 0.5082722306251526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4908393323421478,\n                        \"Y\": 0.5082758665084839\n                    },\n                    {\n                        \"X\": 0.49549680948257446,\n                        \"Y\": 0.5082722306251526\n                    },\n                    {\n                        \"X\": 0.49549803137779236,\n                        \"Y\": 0.5102706551551819\n                    },\n                    {\n                        \"X\": 0.4908405542373657,\n                        \"Y\": 0.5102742910385132\n                    }\n                ]\n            },\n            \"Id\": \"f15401b8-758c-4c38-a4ae-151d17eeba52\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.19110107421875,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004602587316185236,\n                    \"Height\": 0.00203242851421237,\n                    \"Left\": 0.6182270646095276,\n                    \"Top\": 0.5082060098648071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6182270646095276,\n                        \"Y\": 0.5082096457481384\n                    },\n                    {\n                        \"X\": 0.6228283643722534,\n                        \"Y\": 0.5082060098648071\n                    },\n                    {\n                        \"X\": 0.6228296756744385,\n                        \"Y\": 0.5102348327636719\n                    },\n                    {\n                        \"X\": 0.6182284355163574,\n                        \"Y\": 0.5102384686470032\n                    }\n                ]\n            },\n            \"Id\": \"a7dbca7b-537e-4ac6-a89f-bef97c716dbf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92198944091797,\n            \"Text\": \"23,151,531\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0610460489988327,\n                    \"Height\": 0.008886880241334438,\n                    \"Left\": 0.7079380750656128,\n                    \"Top\": 0.5044271349906921\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7079380750656128,\n                        \"Y\": 0.5044748783111572\n                    },\n                    {\n                        \"X\": 0.7689778804779053,\n                        \"Y\": 0.5044271349906921\n                    },\n                    {\n                        \"X\": 0.7689841389656067,\n                        \"Y\": 0.5132661461830139\n                    },\n                    {\n                        \"X\": 0.7079441547393799,\n                        \"Y\": 0.5133140087127686\n                    }\n                ]\n            },\n            \"Id\": \"e895d3e9-4360-4e8c-b2e7-b3fca5864a32\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90643310546875,\n            \"Text\": \"23,151,531\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06154419854283333,\n                    \"Height\": 0.008872821927070618,\n                    \"Left\": 0.8426851034164429,\n                    \"Top\": 0.5043008923530579\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8426851034164429,\n                        \"Y\": 0.5043490529060364\n                    },\n                    {\n                        \"X\": 0.9042227268218994,\n                        \"Y\": 0.5043008923530579\n                    },\n                    {\n                        \"X\": 0.9042293429374695,\n                        \"Y\": 0.513125479221344\n                    },\n                    {\n                        \"X\": 0.8426915407180786,\n                        \"Y\": 0.5131736993789673\n                    }\n                ]\n            },\n            \"Id\": \"05028a26-a695-40d7-961c-18c9206b1956\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96430969238281,\n            \"Text\": \"Debt\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0260955560952425,\n                    \"Height\": 0.008052530698478222,\n                    \"Left\": 0.12874935567378998,\n                    \"Top\": 0.5187777280807495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12874935567378998,\n                        \"Y\": 0.5187981724739075\n                    },\n                    {\n                        \"X\": 0.15484079718589783,\n                        \"Y\": 0.5187777280807495\n                    },\n                    {\n                        \"X\": 0.15484490990638733,\n                        \"Y\": 0.5268097519874573\n                    },\n                    {\n                        \"X\": 0.1287534087896347,\n                        \"Y\": 0.52683025598526\n                    }\n                ]\n            },\n            \"Id\": \"62f2f901-62dd-4db2-8b21-55fe54babef8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86260986328125,\n            \"Text\": \"service\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.037824977189302444,\n                    \"Height\": 0.007865085266530514,\n                    \"Left\": 0.15810735523700714,\n                    \"Top\": 0.5189330577850342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15810735523700714,\n                        \"Y\": 0.5189627408981323\n                    },\n                    {\n                        \"X\": 0.19592821598052979,\n                        \"Y\": 0.5189330577850342\n                    },\n                    {\n                        \"X\": 0.1959323287010193,\n                        \"Y\": 0.5267685055732727\n                    },\n                    {\n                        \"X\": 0.15811137855052948,\n                        \"Y\": 0.5267981886863708\n                    }\n                ]\n            },\n            \"Id\": \"105e5b6c-1c54-4abe-b931-0f4fd40c1ccc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94059753417969,\n            \"Text\": \"Principal\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04693857952952385,\n                    \"Height\": 0.0096236951649189,\n                    \"Left\": 0.14750982820987701,\n                    \"Top\": 0.5326030254364014\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14750982820987701,\n                        \"Y\": 0.5326399207115173\n                    },\n                    {\n                        \"X\": 0.19444337487220764,\n                        \"Y\": 0.5326030254364014\n                    },\n                    {\n                        \"X\": 0.19444841146469116,\n                        \"Y\": 0.54218989610672\n                    },\n                    {\n                        \"X\": 0.1475147306919098,\n                        \"Y\": 0.5422267317771912\n                    }\n                ]\n            },\n            \"Id\": \"8754df0f-7dfe-4ba1-a72a-245f0404d1f4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9739761352539,\n            \"Text\": \"payments\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053596604615449905,\n                    \"Height\": 0.008921556174755096,\n                    \"Left\": 0.19789153337478638,\n                    \"Top\": 0.5333023071289062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19789153337478638,\n                        \"Y\": 0.5333443284034729\n                    },\n                    {\n                        \"X\": 0.25148332118988037,\n                        \"Y\": 0.5333023071289062\n                    },\n                    {\n                        \"X\": 0.2514881491661072,\n                        \"Y\": 0.5421817302703857\n                    },\n                    {\n                        \"X\": 0.19789621233940125,\n                        \"Y\": 0.5422238707542419\n                    }\n                ]\n            },\n            \"Id\": \"e6ebc60c-4dc7-4e1a-a5bb-f09316e92bbd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.12694549560547,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004678323399275541,\n                    \"Height\": 0.0019636971410363913,\n                    \"Left\": 0.4909088611602783,\n                    \"Top\": 0.5359533429145813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4909088611602783,\n                        \"Y\": 0.5359569787979126\n                    },\n                    {\n                        \"X\": 0.49558597803115845,\n                        \"Y\": 0.5359533429145813\n                    },\n                    {\n                        \"X\": 0.49558717012405396,\n                        \"Y\": 0.5379133820533752\n                    },\n                    {\n                        \"X\": 0.49091005325317383,\n                        \"Y\": 0.5379170179367065\n                    }\n                ]\n            },\n            \"Id\": \"f5692bec-9973-4fc1-88ab-17b1692e54fc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82039642333984,\n            \"Text\": \"152,862,498\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06813106685876846,\n                    \"Height\": 0.00879221223294735,\n                    \"Left\": 0.554617166519165,\n                    \"Top\": 0.5322033762931824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.554617166519165,\n                        \"Y\": 0.5322568416595459\n                    },\n                    {\n                        \"X\": 0.6227424740791321,\n                        \"Y\": 0.5322033762931824\n                    },\n                    {\n                        \"X\": 0.6227481961250305,\n                        \"Y\": 0.5409420728683472\n                    },\n                    {\n                        \"X\": 0.5546227097511292,\n                        \"Y\": 0.5409955978393555\n                    }\n                ]\n            },\n            \"Id\": \"75e64636-2f41-4b14-ace5-578dfeb86f2e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84883117675781,\n            \"Text\": \"52,456\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03763004392385483,\n                    \"Height\": 0.008951138705015182,\n                    \"Left\": 0.7319534420967102,\n                    \"Top\": 0.5319281816482544\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7319534420967102,\n                        \"Y\": 0.531957745552063\n                    },\n                    {\n                        \"X\": 0.7695772051811218,\n                        \"Y\": 0.5319281816482544\n                    },\n                    {\n                        \"X\": 0.769583523273468,\n                        \"Y\": 0.5408498048782349\n                    },\n                    {\n                        \"X\": 0.7319596409797668,\n                        \"Y\": 0.5408793091773987\n                    }\n                ]\n            },\n            \"Id\": \"d3766385-e080-4297-ad02-822aaff18234\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89032745361328,\n            \"Text\": \"152,914,954\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06822884827852249,\n                    \"Height\": 0.008924329653382301,\n                    \"Left\": 0.8366471529006958,\n                    \"Top\": 0.5318296551704407\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366471529006958,\n                        \"Y\": 0.531883180141449\n                    },\n                    {\n                        \"X\": 0.9048693180084229,\n                        \"Y\": 0.5318296551704407\n                    },\n                    {\n                        \"X\": 0.9048759937286377,\n                        \"Y\": 0.540700376033783\n                    },\n                    {\n                        \"X\": 0.8366535902023315,\n                        \"Y\": 0.540753960609436\n                    }\n                ]\n            },\n            \"Id\": \"e81f1c5e-9af9-4d0a-b711-d4c6e7272ee5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80777740478516,\n            \"Text\": \"Interest\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.042754996567964554,\n                    \"Height\": 0.007749216165393591,\n                    \"Left\": 0.14759404957294464,\n                    \"Top\": 0.5465803146362305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14759404957294464,\n                        \"Y\": 0.546613872051239\n                    },\n                    {\n                        \"X\": 0.19034500420093536,\n                        \"Y\": 0.5465803146362305\n                    },\n                    {\n                        \"X\": 0.1903490424156189,\n                        \"Y\": 0.5542958974838257\n                    },\n                    {\n                        \"X\": 0.147597998380661,\n                        \"Y\": 0.554329514503479\n                    }\n                ]\n            },\n            \"Id\": \"88881b82-4d64-4f6a-a528-ecc04e3cbb91\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9752197265625,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020087122917175293,\n                    \"Height\": 0.007626072503626347,\n                    \"Left\": 0.19342462718486786,\n                    \"Top\": 0.5464689135551453\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19342462718486786,\n                        \"Y\": 0.546484649181366\n                    },\n                    {\n                        \"X\": 0.21350771188735962,\n                        \"Y\": 0.5464689135551453\n                    },\n                    {\n                        \"X\": 0.21351175010204315,\n                        \"Y\": 0.5540791749954224\n                    },\n                    {\n                        \"X\": 0.193428635597229,\n                        \"Y\": 0.5540949702262878\n                    }\n                ]\n            },\n            \"Id\": \"e6530fbb-2cfa-41c3-92d5-345cadb28acc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94831848144531,\n            \"Text\": \"fiscal\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027386069297790527,\n                    \"Height\": 0.008023887872695923,\n                    \"Left\": 0.2168625444173813,\n                    \"Top\": 0.5461129546165466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2168625444173813,\n                        \"Y\": 0.5461344718933105\n                    },\n                    {\n                        \"X\": 0.2442442923784256,\n                        \"Y\": 0.5461129546165466\n                    },\n                    {\n                        \"X\": 0.24424861371517181,\n                        \"Y\": 0.5541152954101562\n                    },\n                    {\n                        \"X\": 0.21686680614948273,\n                        \"Y\": 0.5541368126869202\n                    }\n                ]\n            },\n            \"Id\": \"5f017512-1294-4bc5-8dd8-d6d00f8d387a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78693389892578,\n            \"Text\": \"charges\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0418177992105484,\n                    \"Height\": 0.009572572074830532,\n                    \"Left\": 0.2479417622089386,\n                    \"Top\": 0.5462920665740967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2479417622089386,\n                        \"Y\": 0.5463249087333679\n                    },\n                    {\n                        \"X\": 0.2897542715072632,\n                        \"Y\": 0.5462920665740967\n                    },\n                    {\n                        \"X\": 0.2897595465183258,\n                        \"Y\": 0.5558317303657532\n                    },\n                    {\n                        \"X\": 0.24794693291187286,\n                        \"Y\": 0.5558646321296692\n                    }\n                ]\n            },\n            \"Id\": \"3de10125-8fd3-4ac9-85ff-6a8232f8b762\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.39814758300781,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004710737615823746,\n                    \"Height\": 0.0019794453401118517,\n                    \"Left\": 0.49082738161087036,\n                    \"Top\": 0.5499432682991028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49082738161087036,\n                        \"Y\": 0.5499469637870789\n                    },\n                    {\n                        \"X\": 0.4955368936061859,\n                        \"Y\": 0.5499432682991028\n                    },\n                    {\n                        \"X\": 0.4955381155014038,\n                        \"Y\": 0.5519189834594727\n                    },\n                    {\n                        \"X\": 0.49082860350608826,\n                        \"Y\": 0.5519226789474487\n                    }\n                ]\n            },\n            \"Id\": \"cdaa3d72-adba-4aa5-8518-6e775198db2b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84561920166016,\n            \"Text\": \"64,056,957\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06233007833361626,\n                    \"Height\": 0.008974812924861908,\n                    \"Left\": 0.5606564283370972,\n                    \"Top\": 0.545887291431427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5606564283370972,\n                        \"Y\": 0.5459362864494324\n                    },\n                    {\n                        \"X\": 0.6229806542396545,\n                        \"Y\": 0.545887291431427\n                    },\n                    {\n                        \"X\": 0.6229864954948425,\n                        \"Y\": 0.5548130869865417\n                    },\n                    {\n                        \"X\": 0.5606621503829956,\n                        \"Y\": 0.5548620820045471\n                    }\n                ]\n            },\n            \"Id\": \"ee6ae529-4277-4ce6-a8bc-44d856ff0d85\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.90275573730469,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004698481876403093,\n                    \"Height\": 0.0021501111332327127,\n                    \"Left\": 0.7650187611579895,\n                    \"Top\": 0.549240231513977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7650187611579895,\n                        \"Y\": 0.5492438673973083\n                    },\n                    {\n                        \"X\": 0.7697157263755798,\n                        \"Y\": 0.549240231513977\n                    },\n                    {\n                        \"X\": 0.7697172164916992,\n                        \"Y\": 0.5513865947723389\n                    },\n                    {\n                        \"X\": 0.7650202512741089,\n                        \"Y\": 0.5513902902603149\n                    }\n                ]\n            },\n            \"Id\": \"ef19b0ad-bff6-47fc-9ac2-09e9994c4902\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84479522705078,\n            \"Text\": \"64,056,957\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06195148080587387,\n                    \"Height\": 0.008932403288781643,\n                    \"Left\": 0.8427591919898987,\n                    \"Top\": 0.5455830097198486\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8427591919898987,\n                        \"Y\": 0.5456317067146301\n                    },\n                    {\n                        \"X\": 0.9047040343284607,\n                        \"Y\": 0.5455830097198486\n                    },\n                    {\n                        \"X\": 0.9047107100486755,\n                        \"Y\": 0.5544666647911072\n                    },\n                    {\n                        \"X\": 0.8427656888961792,\n                        \"Y\": 0.5545154213905334\n                    }\n                ]\n            },\n            \"Id\": \"72b00a69-e2e2-46e6-83a4-de1a90797867\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8660659790039,\n            \"Text\": \"Capital\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.037500035017728806,\n                    \"Height\": 0.009485479444265366,\n                    \"Left\": 0.12857525050640106,\n                    \"Top\": 0.5598771572113037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12857525050640106,\n                        \"Y\": 0.5599066615104675\n                    },\n                    {\n                        \"X\": 0.16607040166854858,\n                        \"Y\": 0.5598771572113037\n                    },\n                    {\n                        \"X\": 0.16607527434825897,\n                        \"Y\": 0.5693331360816956\n                    },\n                    {\n                        \"X\": 0.1285800188779831,\n                        \"Y\": 0.5693626403808594\n                    }\n                ]\n            },\n            \"Id\": \"2769e3f0-16b3-4a42-9eb1-db33f698de42\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9652099609375,\n            \"Text\": \"outlay\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03481162339448929,\n                    \"Height\": 0.009459204971790314,\n                    \"Left\": 0.16942821443080902,\n                    \"Top\": 0.5600306987762451\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16942821443080902,\n                        \"Y\": 0.560058057308197\n                    },\n                    {\n                        \"X\": 0.20423485338687897,\n                        \"Y\": 0.5600306987762451\n                    },\n                    {\n                        \"X\": 0.2042398303747177,\n                        \"Y\": 0.5694624781608582\n                    },\n                    {\n                        \"X\": 0.1694330871105194,\n                        \"Y\": 0.5694898962974548\n                    }\n                ]\n            },\n            \"Id\": \"8e47e19e-f3d7-4d07-9fba-3260cf702f65\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.90352630615234,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004524512216448784,\n                    \"Height\": 0.0017322037601843476,\n                    \"Left\": 0.49107521772384644,\n                    \"Top\": 0.5632777810096741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49107521772384644,\n                        \"Y\": 0.5632813572883606\n                    },\n                    {\n                        \"X\": 0.4955986440181732,\n                        \"Y\": 0.5632777810096741\n                    },\n                    {\n                        \"X\": 0.4955997169017792,\n                        \"Y\": 0.56500643491745\n                    },\n                    {\n                        \"X\": 0.4910762906074524,\n                        \"Y\": 0.5650099515914917\n                    }\n                ]\n            },\n            \"Id\": \"5fb416d1-75aa-4326-a8de-47e63b1eda9d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.98408508300781,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004568031057715416,\n                    \"Height\": 0.0018268185667693615,\n                    \"Left\": 0.6184080839157104,\n                    \"Top\": 0.5630460381507874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6184080839157104,\n                        \"Y\": 0.5630496144294739\n                    },\n                    {\n                        \"X\": 0.6229749321937561,\n                        \"Y\": 0.5630460381507874\n                    },\n                    {\n                        \"X\": 0.6229761242866516,\n                        \"Y\": 0.5648692846298218\n                    },\n                    {\n                        \"X\": 0.6184093356132507,\n                        \"Y\": 0.5648728609085083\n                    }\n                ]\n            },\n            \"Id\": \"10b1615d-f0d0-4a55-9ee5-cfef973f8ccd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92996215820312,\n            \"Text\": \"329,341,198\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06849025934934616,\n                    \"Height\": 0.00879612099379301,\n                    \"Left\": 0.7012559771537781,\n                    \"Top\": 0.5593421459197998\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7012559771537781,\n                        \"Y\": 0.5593960285186768\n                    },\n                    {\n                        \"X\": 0.7697400450706482,\n                        \"Y\": 0.5593421459197998\n                    },\n                    {\n                        \"X\": 0.7697462439537048,\n                        \"Y\": 0.5680843591690063\n                    },\n                    {\n                        \"X\": 0.7012619376182556,\n                        \"Y\": 0.5681383013725281\n                    }\n                ]\n            },\n            \"Id\": \"2bf453c8-19fd-49b5-a3ae-f0cc4cecb4ec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9418716430664,\n            \"Text\": \"329,341,198\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06852379441261292,\n                    \"Height\": 0.008756065741181374,\n                    \"Left\": 0.8364154696464539,\n                    \"Top\": 0.5591722130775452\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8364154696464539,\n                        \"Y\": 0.5592260956764221\n                    },\n                    {\n                        \"X\": 0.9049327373504639,\n                        \"Y\": 0.5591722130775452\n                    },\n                    {\n                        \"X\": 0.9049392342567444,\n                        \"Y\": 0.5678743124008179\n                    },\n                    {\n                        \"X\": 0.8364217877388,\n                        \"Y\": 0.5679282546043396\n                    }\n                ]\n            },\n            \"Id\": \"82faff2f-90d0-4eb5-975b-4dcc35fb913d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93208312988281,\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028070513159036636,\n                    \"Height\": 0.007938772439956665,\n                    \"Left\": 0.15623719990253448,\n                    \"Top\": 0.5755897760391235\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15623719990253448,\n                        \"Y\": 0.5756118893623352\n                    },\n                    {\n                        \"X\": 0.18430358171463013,\n                        \"Y\": 0.5755897760391235\n                    },\n                    {\n                        \"X\": 0.18430770933628082,\n                        \"Y\": 0.5835064053535461\n                    },\n                    {\n                        \"X\": 0.1562412679195404,\n                        \"Y\": 0.5835285186767578\n                    }\n                ]\n            },\n            \"Id\": \"4847107a-d004-4d35-bbb6-9d5fb92258e3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86368560791016,\n            \"Text\": \"expenditures\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07135055959224701,\n                    \"Height\": 0.009523559361696243,\n                    \"Left\": 0.18788263201713562,\n                    \"Top\": 0.5755028128623962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18788263201713562,\n                        \"Y\": 0.5755589604377747\n                    },\n                    {\n                        \"X\": 0.25922802090644836,\n                        \"Y\": 0.5755028128623962\n                    },\n                    {\n                        \"X\": 0.25923317670822144,\n                        \"Y\": 0.5849701166152954\n                    },\n                    {\n                        \"X\": 0.18788757920265198,\n                        \"Y\": 0.5850263237953186\n                    }\n                ]\n            },\n            \"Id\": \"b4b2ce0c-7dad-487d-a203-5dfa37c406bc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77415466308594,\n            \"Text\": \"1,160,033,454\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07824888080358505,\n                    \"Height\": 0.008868216536939144,\n                    \"Left\": 0.41708803176879883,\n                    \"Top\": 0.5753541588783264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41708803176879883,\n                        \"Y\": 0.5754157900810242\n                    },\n                    {\n                        \"X\": 0.49533146619796753,\n                        \"Y\": 0.5753541588783264\n                    },\n                    {\n                        \"X\": 0.4953369200229645,\n                        \"Y\": 0.5841606855392456\n                    },\n                    {\n                        \"X\": 0.41709327697753906,\n                        \"Y\": 0.5842223763465881\n                    }\n                ]\n            },\n            \"Id\": \"c097cda2-4231-45f4-b1f0-6c44546f67f4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92903137207031,\n            \"Text\": \"216,919,455\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06788699328899384,\n                    \"Height\": 0.008832118473947048,\n                    \"Left\": 0.5543457865715027,\n                    \"Top\": 0.5750839114189148\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5543457865715027,\n                        \"Y\": 0.5751374363899231\n                    },\n                    {\n                        \"X\": 0.6222269535064697,\n                        \"Y\": 0.5750839114189148\n                    },\n                    {\n                        \"X\": 0.6222327351570129,\n                        \"Y\": 0.5838625431060791\n                    },\n                    {\n                        \"X\": 0.5543513298034668,\n                        \"Y\": 0.5839160680770874\n                    }\n                ]\n            },\n            \"Id\": \"e66d5d7a-5615-4e8f-aeeb-c0d005069a44\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58037567138672,\n            \"Text\": \"422,250,829\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0688079297542572,\n                    \"Height\": 0.00893600843846798,\n                    \"Left\": 0.700756311416626,\n                    \"Top\": 0.5749162435531616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.700756311416626,\n                        \"Y\": 0.5749704837799072\n                    },\n                    {\n                        \"X\": 0.7695579528808594,\n                        \"Y\": 0.5749162435531616\n                    },\n                    {\n                        \"X\": 0.7695642113685608,\n                        \"Y\": 0.5837980508804321\n                    },\n                    {\n                        \"X\": 0.7007623910903931,\n                        \"Y\": 0.5838522911071777\n                    }\n                ]\n            },\n            \"Id\": \"42347064-f3ba-425f-bbba-b736bafadddd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8251953125,\n            \"Text\": \"1,799,203,738\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07792016118764877,\n                    \"Height\": 0.008888683281838894,\n                    \"Left\": 0.8265875577926636,\n                    \"Top\": 0.5747219920158386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8265875577926636,\n                        \"Y\": 0.5747833251953125\n                    },\n                    {\n                        \"X\": 0.9045011401176453,\n                        \"Y\": 0.5747219920158386\n                    },\n                    {\n                        \"X\": 0.9045076966285706,\n                        \"Y\": 0.5835492610931396\n                    },\n                    {\n                        \"X\": 0.8265939354896545,\n                        \"Y\": 0.5836106538772583\n                    }\n                ]\n            },\n            \"Id\": \"b56912f2-8e01-4805-9bcc-95bb50587816\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92192077636719,\n            \"Text\": \"EXCESS\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03960128873586655,\n                    \"Height\": 0.0074763223528862,\n                    \"Left\": 0.11029123514890671,\n                    \"Top\": 0.6058204174041748\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11029123514890671,\n                        \"Y\": 0.6058517098426819\n                    },\n                    {\n                        \"X\": 0.14988872408866882,\n                        \"Y\": 0.6058204174041748\n                    },\n                    {\n                        \"X\": 0.14989252388477325,\n                        \"Y\": 0.6132654547691345\n                    },\n                    {\n                        \"X\": 0.11029495298862457,\n                        \"Y\": 0.6132967472076416\n                    }\n                ]\n            },\n            \"Id\": \"e09d1292-50e2-4a96-82c0-30f69e263f4d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5057601928711,\n            \"Text\": \"(DEFICIENCY)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07184652984142303,\n                    \"Height\": 0.009430412203073502,\n                    \"Left\": 0.15356504917144775,\n                    \"Top\": 0.6054441332817078\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15356504917144775,\n                        \"Y\": 0.6055008769035339\n                    },\n                    {\n                        \"X\": 0.22540655732154846,\n                        \"Y\": 0.6054441332817078\n                    },\n                    {\n                        \"X\": 0.2254115641117096,\n                        \"Y\": 0.6148177981376648\n                    },\n                    {\n                        \"X\": 0.15356984734535217,\n                        \"Y\": 0.614874541759491\n                    }\n                ]\n            },\n            \"Id\": \"271f8b71-28e7-4d22-8457-70089de530c6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97602081298828,\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015064861625432968,\n                    \"Height\": 0.007496388163417578,\n                    \"Left\": 0.22895708680152893,\n                    \"Top\": 0.6056640148162842\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22895708680152893,\n                        \"Y\": 0.6056759357452393\n                    },\n                    {\n                        \"X\": 0.24401789903640747,\n                        \"Y\": 0.6056640148162842\n                    },\n                    {\n                        \"X\": 0.2440219521522522,\n                        \"Y\": 0.6131485104560852\n                    },\n                    {\n                        \"X\": 0.22896109521389008,\n                        \"Y\": 0.6131604313850403\n                    }\n                ]\n            },\n            \"Id\": \"4a5378c6-b8dc-4361-bfac-7b449c8d3a43\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85643005371094,\n            \"Text\": \"REVENUES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05841502547264099,\n                    \"Height\": 0.007712549529969692,\n                    \"Left\": 0.24736455082893372,\n                    \"Top\": 0.6055666208267212\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24736455082893372,\n                        \"Y\": 0.6056127548217773\n                    },\n                    {\n                        \"X\": 0.3057752847671509,\n                        \"Y\": 0.6055666208267212\n                    },\n                    {\n                        \"X\": 0.3057795763015747,\n                        \"Y\": 0.6132329702377319\n                    },\n                    {\n                        \"X\": 0.2473686933517456,\n                        \"Y\": 0.6132791638374329\n                    }\n                ]\n            },\n            \"Id\": \"226e4d76-112a-48e5-8ca4-9a6edb7e444b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95820617675781,\n            \"Text\": \"OVER\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030491812154650688,\n                    \"Height\": 0.007834021933376789,\n                    \"Left\": 0.12870344519615173,\n                    \"Top\": 0.6190439462661743\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12870344519615173,\n                        \"Y\": 0.6190680861473083\n                    },\n                    {\n                        \"X\": 0.15919125080108643,\n                        \"Y\": 0.6190439462661743\n                    },\n                    {\n                        \"X\": 0.15919525921344757,\n                        \"Y\": 0.626853883266449\n                    },\n                    {\n                        \"X\": 0.1287073940038681,\n                        \"Y\": 0.6268779635429382\n                    }\n                ]\n            },\n            \"Id\": \"07b45014-a6a9-4f89-88d1-89626ace2c3f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87945556640625,\n            \"Text\": \"(UNDER)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04707914963364601,\n                    \"Height\": 0.009704590775072575,\n                    \"Left\": 0.1625647246837616,\n                    \"Top\": 0.6186042428016663\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1625647246837616,\n                        \"Y\": 0.6186414957046509\n                    },\n                    {\n                        \"X\": 0.20963875949382782,\n                        \"Y\": 0.6186042428016663\n                    },\n                    {\n                        \"X\": 0.2096438854932785,\n                        \"Y\": 0.6282715797424316\n                    },\n                    {\n                        \"X\": 0.16256971657276154,\n                        \"Y\": 0.6283088326454163\n                    }\n                ]\n            },\n            \"Id\": \"817091d0-dd61-462c-a070-b48acb7e9e84\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67121124267578,\n            \"Text\": \"EXPENDITURES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08327106386423111,\n                    \"Height\": 0.00794911477714777,\n                    \"Left\": 0.21331043541431427,\n                    \"Top\": 0.6187641620635986\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21331043541431427,\n                        \"Y\": 0.6188300251960754\n                    },\n                    {\n                        \"X\": 0.2965770959854126,\n                        \"Y\": 0.6187641620635986\n                    },\n                    {\n                        \"X\": 0.296581506729126,\n                        \"Y\": 0.626647412776947\n                    },\n                    {\n                        \"X\": 0.21331462264060974,\n                        \"Y\": 0.6267132759094238\n                    }\n                ]\n            },\n            \"Id\": \"2b44f5cf-3c47-4d9e-a449-ba70bdd07037\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80584716796875,\n            \"Text\": \"77,866,576\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061660297214984894,\n                    \"Height\": 0.00933992862701416,\n                    \"Left\": 0.43401163816452026,\n                    \"Top\": 0.6184494495391846\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43401163816452026,\n                        \"Y\": 0.6184982061386108\n                    },\n                    {\n                        \"X\": 0.49566617608070374,\n                        \"Y\": 0.6184494495391846\n                    },\n                    {\n                        \"X\": 0.49567192792892456,\n                        \"Y\": 0.6277405619621277\n                    },\n                    {\n                        \"X\": 0.43401721119880676,\n                        \"Y\": 0.6277893781661987\n                    }\n                ]\n            },\n            \"Id\": \"f88f50e2-6adf-4446-ba0a-396b3b623d13\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88096618652344,\n            \"Text\": \"99,627,298\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.062184203416109085,\n                    \"Height\": 0.00919939111918211,\n                    \"Left\": 0.5609568357467651,\n                    \"Top\": 0.6184653639793396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5609568357467651,\n                        \"Y\": 0.6185144782066345\n                    },\n                    {\n                        \"X\": 0.623134970664978,\n                        \"Y\": 0.6184653639793396\n                    },\n                    {\n                        \"X\": 0.6231409907341003,\n                        \"Y\": 0.6276155114173889\n                    },\n                    {\n                        \"X\": 0.5609626770019531,\n                        \"Y\": 0.6276647448539734\n                    }\n                ]\n            },\n            \"Id\": \"03ea395a-4efd-43fa-a75a-54f63a706781\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77257537841797,\n            \"Text\": \"(314,395,400)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07569415867328644,\n                    \"Height\": 0.009908683598041534,\n                    \"Left\": 0.6976261138916016,\n                    \"Top\": 0.6179227828979492\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6976261138916016,\n                        \"Y\": 0.6179826259613037\n                    },\n                    {\n                        \"X\": 0.7733133435249329,\n                        \"Y\": 0.6179227828979492\n                    },\n                    {\n                        \"X\": 0.7733203172683716,\n                        \"Y\": 0.6277715563774109\n                    },\n                    {\n                        \"X\": 0.6976328492164612,\n                        \"Y\": 0.6278314590454102\n                    }\n                ]\n            },\n            \"Id\": \"a6cc1a3f-45a6-43e3-bdc6-6ba41813e4b5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82840728759766,\n            \"Text\": \"(136,901,526)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07537064701318741,\n                    \"Height\": 0.010072067379951477,\n                    \"Left\": 0.8330255150794983,\n                    \"Top\": 0.617768406867981\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8330255150794983,\n                        \"Y\": 0.6178280115127563\n                    },\n                    {\n                        \"X\": 0.9083886742591858,\n                        \"Y\": 0.617768406867981\n                    },\n                    {\n                        \"X\": 0.9083961844444275,\n                        \"Y\": 0.6277808547019958\n                    },\n                    {\n                        \"X\": 0.8330327868461609,\n                        \"Y\": 0.627840518951416\n                    }\n                ]\n            },\n            \"Id\": \"206d55c6-1a37-47d6-94a4-4aef9305b2af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95378875732422,\n            \"Text\": \"OTHER\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03788895532488823,\n                    \"Height\": 0.007872560061514378,\n                    \"Left\": 0.11021546274423599,\n                    \"Top\": 0.6488068103790283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11021546274423599,\n                        \"Y\": 0.6488367915153503\n                    },\n                    {\n                        \"X\": 0.14810042083263397,\n                        \"Y\": 0.6488068103790283\n                    },\n                    {\n                        \"X\": 0.14810442924499512,\n                        \"Y\": 0.6566492915153503\n                    },\n                    {\n                        \"X\": 0.11021938174962997,\n                        \"Y\": 0.6566793322563171\n                    }\n                ]\n            },\n            \"Id\": \"95d5fb12-cd67-4596-964d-d01334eec399\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83663940429688,\n            \"Text\": \"FINANCING\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06243006885051727,\n                    \"Height\": 0.007915018126368523,\n                    \"Left\": 0.1514357626438141,\n                    \"Top\": 0.6487126350402832\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1514357626438141,\n                        \"Y\": 0.6487621665000916\n                    },\n                    {\n                        \"X\": 0.21386165916919708,\n                        \"Y\": 0.6487126350402832\n                    },\n                    {\n                        \"X\": 0.21386583149433136,\n                        \"Y\": 0.6565781831741333\n                    },\n                    {\n                        \"X\": 0.15143978595733643,\n                        \"Y\": 0.6566276550292969\n                    }\n                ]\n            },\n            \"Id\": \"8bb86de0-9ea5-4b6f-8cc9-a4928233926a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89341735839844,\n            \"Text\": \"SOURCES\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051322076469659805,\n                    \"Height\": 0.008015873841941357,\n                    \"Left\": 0.2171781361103058,\n                    \"Top\": 0.6486037969589233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2171781361103058,\n                        \"Y\": 0.6486445069313049\n                    },\n                    {\n                        \"X\": 0.2684958279132843,\n                        \"Y\": 0.6486037969589233\n                    },\n                    {\n                        \"X\": 0.2685002088546753,\n                        \"Y\": 0.6565790176391602\n                    },\n                    {\n                        \"X\": 0.21718238294124603,\n                        \"Y\": 0.656619668006897\n                    }\n                ]\n            },\n            \"Id\": \"fbb2836c-a752-47ba-bce9-43da42503543\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92060089111328,\n            \"Text\": \"(USES)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03556688874959946,\n                    \"Height\": 0.010160357691347599,\n                    \"Left\": 0.27187085151672363,\n                    \"Top\": 0.647906482219696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27187085151672363,\n                        \"Y\": 0.6479346752166748\n                    },\n                    {\n                        \"X\": 0.30743205547332764,\n                        \"Y\": 0.647906482219696\n                    },\n                    {\n                        \"X\": 0.3074377477169037,\n                        \"Y\": 0.6580386161804199\n                    },\n                    {\n                        \"X\": 0.27187642455101013,\n                        \"Y\": 0.6580668091773987\n                    }\n                ]\n            },\n            \"Id\": \"0fbbe774-e796-43af-b1d5-2acdeb4dc6d0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93635559082031,\n            \"Text\": \"Refunding\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055310044437646866,\n                    \"Height\": 0.009663828648626804,\n                    \"Left\": 0.12922212481498718,\n                    \"Top\": 0.662475049495697\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12922212481498718,\n                        \"Y\": 0.6625189185142517\n                    },\n                    {\n                        \"X\": 0.18452714383602142,\n                        \"Y\": 0.662475049495697\n                    },\n                    {\n                        \"X\": 0.18453216552734375,\n                        \"Y\": 0.6720949411392212\n                    },\n                    {\n                        \"X\": 0.12922698259353638,\n                        \"Y\": 0.6721388697624207\n                    }\n                ]\n            },\n            \"Id\": \"ab6bd342-bcd1-4e6f-86b4-533c08fcee52\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90422058105469,\n            \"Text\": \"debt\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025171399116516113,\n                    \"Height\": 0.008172363974153996,\n                    \"Left\": 0.18778768181800842,\n                    \"Top\": 0.6623427271842957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18778768181800842,\n                        \"Y\": 0.6623626947402954\n                    },\n                    {\n                        \"X\": 0.21295474469661713,\n                        \"Y\": 0.6623427271842957\n                    },\n                    {\n                        \"X\": 0.21295908093452454,\n                        \"Y\": 0.6704950928688049\n                    },\n                    {\n                        \"X\": 0.18779194355010986,\n                        \"Y\": 0.6705150604248047\n                    }\n                ]\n            },\n            \"Id\": \"83d09310-0e33-484d-bf95-ae1919a8051b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96096801757812,\n            \"Text\": \"issued\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03396964818239212,\n                    \"Height\": 0.008077623322606087,\n                    \"Left\": 0.2159394770860672,\n                    \"Top\": 0.6621614098548889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2159394770860672,\n                        \"Y\": 0.6621883511543274\n                    },\n                    {\n                        \"X\": 0.24990475177764893,\n                        \"Y\": 0.6621614098548889\n                    },\n                    {\n                        \"X\": 0.24990911781787872,\n                        \"Y\": 0.6702120900154114\n                    },\n                    {\n                        \"X\": 0.21594375371932983,\n                        \"Y\": 0.6702390313148499\n                    }\n                ]\n            },\n            \"Id\": \"0c2547c8-8052-4e2b-b13b-24fe84e63f86\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.61143493652344,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004619346000254154,\n                    \"Height\": 0.0019192397594451904,\n                    \"Left\": 0.4912736713886261,\n                    \"Top\": 0.6658914685249329\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4912736713886261,\n                        \"Y\": 0.6658951044082642\n                    },\n                    {\n                        \"X\": 0.495891809463501,\n                        \"Y\": 0.6658914685249329\n                    },\n                    {\n                        \"X\": 0.4958930015563965,\n                        \"Y\": 0.6678070425987244\n                    },\n                    {\n                        \"X\": 0.4912748336791992,\n                        \"Y\": 0.6678106784820557\n                    }\n                ]\n            },\n            \"Id\": \"c4b902cc-3c69-4165-ab5f-22468fde5c35\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86824035644531,\n            \"Text\": \"119,135,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06802055239677429,\n                    \"Height\": 0.00887848250567913,\n                    \"Left\": 0.5550267696380615,\n                    \"Top\": 0.6621168255805969\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5550267696380615,\n                        \"Y\": 0.6621707677841187\n                    },\n                    {\n                        \"X\": 0.6230415105819702,\n                        \"Y\": 0.6621168255805969\n                    },\n                    {\n                        \"X\": 0.6230473518371582,\n                        \"Y\": 0.6709412932395935\n                    },\n                    {\n                        \"X\": 0.5550324320793152,\n                        \"Y\": 0.67099529504776\n                    }\n                ]\n            },\n            \"Id\": \"762ea307-06e1-4a1f-9bef-54106953e5cc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.35078430175781,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004622137174010277,\n                    \"Height\": 0.0018669405253604054,\n                    \"Left\": 0.7653934359550476,\n                    \"Top\": 0.6656370162963867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7653934359550476,\n                        \"Y\": 0.665640652179718\n                    },\n                    {\n                        \"X\": 0.770014226436615,\n                        \"Y\": 0.6656370162963867\n                    },\n                    {\n                        \"X\": 0.7700155973434448,\n                        \"Y\": 0.6675002574920654\n                    },\n                    {\n                        \"X\": 0.7653947472572327,\n                        \"Y\": 0.6675039529800415\n                    }\n                ]\n            },\n            \"Id\": \"a7b749f2-57f9-4595-aeef-7a2f87e13b98\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91325378417969,\n            \"Text\": \"119,135,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06792169064283371,\n                    \"Height\": 0.008924064226448536,\n                    \"Left\": 0.8370379209518433,\n                    \"Top\": 0.6617050170898438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8370379209518433,\n                        \"Y\": 0.6617588996887207\n                    },\n                    {\n                        \"X\": 0.9049530029296875,\n                        \"Y\": 0.6617050170898438\n                    },\n                    {\n                        \"X\": 0.9049596190452576,\n                        \"Y\": 0.6705751419067383\n                    },\n                    {\n                        \"X\": 0.837044358253479,\n                        \"Y\": 0.67062908411026\n                    }\n                ]\n            },\n            \"Id\": \"dbb6124d-c934-4a89-a4a8-55a276248f47\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85395050048828,\n            \"Text\": \"Premium\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04979540780186653,\n                    \"Height\": 0.007653498090803623,\n                    \"Left\": 0.12898993492126465,\n                    \"Top\": 0.6765185594558716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12898993492126465,\n                        \"Y\": 0.6765581369400024\n                    },\n                    {\n                        \"X\": 0.17878137528896332,\n                        \"Y\": 0.6765185594558716\n                    },\n                    {\n                        \"X\": 0.17878533899784088,\n                        \"Y\": 0.6841325163841248\n                    },\n                    {\n                        \"X\": 0.12899377942085266,\n                        \"Y\": 0.6841720938682556\n                    }\n                ]\n            },\n            \"Id\": \"537170b5-e808-4012-9401-55afeb9c76c2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9495620727539,\n            \"Text\": \"on\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01382707990705967,\n                    \"Height\": 0.005941813811659813,\n                    \"Left\": 0.18220114707946777,\n                    \"Top\": 0.6780434846878052\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18220114707946777,\n                        \"Y\": 0.6780544519424438\n                    },\n                    {\n                        \"X\": 0.19602511823177338,\n                        \"Y\": 0.6780434846878052\n                    },\n                    {\n                        \"X\": 0.1960282325744629,\n                        \"Y\": 0.6839742660522461\n                    },\n                    {\n                        \"X\": 0.1822042465209961,\n                        \"Y\": 0.6839852929115295\n                    }\n                ]\n            },\n            \"Id\": \"c95f571f-9bd6-4cde-bfef-d6052bdc0577\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92306518554688,\n            \"Text\": \"debt\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025203075259923935,\n                    \"Height\": 0.007831454277038574,\n                    \"Left\": 0.19935159385204315,\n                    \"Top\": 0.676215410232544\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19935159385204315,\n                        \"Y\": 0.6762354373931885\n                    },\n                    {\n                        \"X\": 0.2245505005121231,\n                        \"Y\": 0.676215410232544\n                    },\n                    {\n                        \"X\": 0.22455467283725739,\n                        \"Y\": 0.684026837348938\n                    },\n                    {\n                        \"X\": 0.19935570657253265,\n                        \"Y\": 0.6840468645095825\n                    }\n                ]\n            },\n            \"Id\": \"1244b417-6dd3-4b6c-af0f-5f04f8eca73e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93666076660156,\n            \"Text\": \"issuance\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04610927030444145,\n                    \"Height\": 0.007704118266701698,\n                    \"Left\": 0.22781699895858765,\n                    \"Top\": 0.6763530969619751\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22781699895858765,\n                        \"Y\": 0.676389753818512\n                    },\n                    {\n                        \"X\": 0.27392205595970154,\n                        \"Y\": 0.6763530969619751\n                    },\n                    {\n                        \"X\": 0.2739262580871582,\n                        \"Y\": 0.6840205788612366\n                    },\n                    {\n                        \"X\": 0.22782111167907715,\n                        \"Y\": 0.6840572357177734\n                    }\n                ]\n            },\n            \"Id\": \"d57b1dc2-dbbb-42b5-a089-06c80bc740d8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.64326477050781,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004732851404696703,\n                    \"Height\": 0.0019963649101555347,\n                    \"Left\": 0.49127069115638733,\n                    \"Top\": 0.6796015501022339\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49127069115638733,\n                        \"Y\": 0.6796053051948547\n                    },\n                    {\n                        \"X\": 0.49600231647491455,\n                        \"Y\": 0.6796015501022339\n                    },\n                    {\n                        \"X\": 0.49600353837013245,\n                        \"Y\": 0.6815941333770752\n                    },\n                    {\n                        \"X\": 0.4912719130516052,\n                        \"Y\": 0.6815979480743408\n                    }\n                ]\n            },\n            \"Id\": \"b29dddff-62fe-448f-a5ef-268fd13bc3ee\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.69652557373047,\n            \"Text\": \"18,741,611\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06113504245877266,\n                    \"Height\": 0.008746306411921978,\n                    \"Left\": 0.5613898038864136,\n                    \"Top\": 0.6758938431739807\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5613898038864136,\n                        \"Y\": 0.6759424209594727\n                    },\n                    {\n                        \"X\": 0.6225191354751587,\n                        \"Y\": 0.6758938431739807\n                    },\n                    {\n                        \"X\": 0.6225248575210571,\n                        \"Y\": 0.68459153175354\n                    },\n                    {\n                        \"X\": 0.5613953471183777,\n                        \"Y\": 0.6846401691436768\n                    }\n                ]\n            },\n            \"Id\": \"74d4ecfe-b7d4-4e1a-9246-7a2f73b41119\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90213775634766,\n            \"Text\": \"20,145,862\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061238326132297516,\n                    \"Height\": 0.008914697915315628,\n                    \"Left\": 0.7081755995750427,\n                    \"Top\": 0.6756188869476318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7081755995750427,\n                        \"Y\": 0.6756675839424133\n                    },\n                    {\n                        \"X\": 0.7694076895713806,\n                        \"Y\": 0.6756188869476318\n                    },\n                    {\n                        \"X\": 0.769413948059082,\n                        \"Y\": 0.6844848990440369\n                    },\n                    {\n                        \"X\": 0.7081816792488098,\n                        \"Y\": 0.6845335960388184\n                    }\n                ]\n            },\n            \"Id\": \"460720cb-73e6-46b8-b3f0-fde5287cf928\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84237670898438,\n            \"Text\": \"38,887,473\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06187931448221207,\n                    \"Height\": 0.008912961930036545,\n                    \"Left\": 0.8429430723190308,\n                    \"Top\": 0.6754395365715027\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8429430723190308,\n                        \"Y\": 0.6754887104034424\n                    },\n                    {\n                        \"X\": 0.9048157930374146,\n                        \"Y\": 0.6754395365715027\n                    },\n                    {\n                        \"X\": 0.9048224091529846,\n                        \"Y\": 0.6843032836914062\n                    },\n                    {\n                        \"X\": 0.8429495096206665,\n                        \"Y\": 0.6843525171279907\n                    }\n                ]\n            },\n            \"Id\": \"da520763-ebc5-44a3-96d3-41eca75610e9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92497253417969,\n            \"Text\": \"Payment\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048301972448825836,\n                    \"Height\": 0.009220615029335022,\n                    \"Left\": 0.12908300757408142,\n                    \"Top\": 0.6903514266014099\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12908300757408142,\n                        \"Y\": 0.69038987159729\n                    },\n                    {\n                        \"X\": 0.17738020420074463,\n                        \"Y\": 0.6903514266014099\n                    },\n                    {\n                        \"X\": 0.17738497257232666,\n                        \"Y\": 0.6995335817337036\n                    },\n                    {\n                        \"X\": 0.1290876418352127,\n                        \"Y\": 0.6995720267295837\n                    }\n                ]\n            },\n            \"Id\": \"09264e9d-7e4a-4b54-bf0a-03644c160fa5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9703598022461,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01157368067651987,\n                    \"Height\": 0.007249418180435896,\n                    \"Left\": 0.18047663569450378,\n                    \"Top\": 0.6906606554985046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18047663569450378,\n                        \"Y\": 0.6906698346138\n                    },\n                    {\n                        \"X\": 0.19204652309417725,\n                        \"Y\": 0.6906606554985046\n                    },\n                    {\n                        \"X\": 0.19205032289028168,\n                        \"Y\": 0.6979008913040161\n                    },\n                    {\n                        \"X\": 0.18048040568828583,\n                        \"Y\": 0.6979100704193115\n                    }\n                ]\n            },\n            \"Id\": \"16fecb89-0016-4f89-a6e8-c944c6cc3a1c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97429656982422,\n            \"Text\": \"refunding\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05272751674056053,\n                    \"Height\": 0.009973335079848766,\n                    \"Left\": 0.19549190998077393,\n                    \"Top\": 0.6896207332611084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19549190998077393,\n                        \"Y\": 0.6896626949310303\n                    },\n                    {\n                        \"X\": 0.24821403622627258,\n                        \"Y\": 0.6896207332611084\n                    },\n                    {\n                        \"X\": 0.24821943044662476,\n                        \"Y\": 0.6995521187782288\n                    },\n                    {\n                        \"X\": 0.19549712538719177,\n                        \"Y\": 0.6995940804481506\n                    }\n                ]\n            },\n            \"Id\": \"eb312e17-e847-4443-b20f-06a307ab05bf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89112854003906,\n            \"Text\": \"escrow\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03882630541920662,\n                    \"Height\": 0.0061212643049657345,\n                    \"Left\": 0.25161105394363403,\n                    \"Top\": 0.6917684078216553\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25161105394363403,\n                        \"Y\": 0.6917992830276489\n                    },\n                    {\n                        \"X\": 0.29043400287628174,\n                        \"Y\": 0.6917684078216553\n                    },\n                    {\n                        \"X\": 0.29043737053871155,\n                        \"Y\": 0.6978588104248047\n                    },\n                    {\n                        \"X\": 0.25161436200141907,\n                        \"Y\": 0.6978896856307983\n                    }\n                ]\n            },\n            \"Id\": \"fd4eaaee-6287-482f-81b0-74c43cdb0ec6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93013000488281,\n            \"Text\": \"agent\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03097134456038475,\n                    \"Height\": 0.008602532558143139,\n                    \"Left\": 0.29340726137161255,\n                    \"Top\": 0.6907138824462891\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29340726137161255,\n                        \"Y\": 0.6907384991645813\n                    },\n                    {\n                        \"X\": 0.3243737518787384,\n                        \"Y\": 0.6907138824462891\n                    },\n                    {\n                        \"X\": 0.3243785798549652,\n                        \"Y\": 0.6992917656898499\n                    },\n                    {\n                        \"X\": 0.2934120297431946,\n                        \"Y\": 0.6993163824081421\n                    }\n                ]\n            },\n            \"Id\": \"f69c3cd4-6998-4768-94ae-71f8af3a0919\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.23162078857422,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004646248649805784,\n                    \"Height\": 0.0019785617478191853,\n                    \"Left\": 0.4913424551486969,\n                    \"Top\": 0.6933125257492065\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4913424551486969,\n                        \"Y\": 0.6933162212371826\n                    },\n                    {\n                        \"X\": 0.49598750472068787,\n                        \"Y\": 0.6933125257492065\n                    },\n                    {\n                        \"X\": 0.49598872661590576,\n                        \"Y\": 0.6952874064445496\n                    },\n                    {\n                        \"X\": 0.4913436770439148,\n                        \"Y\": 0.6952911019325256\n                    }\n                ]\n            },\n            \"Id\": \"e68a2661-1117-4d6a-97ea-62a4a0e720d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85492706298828,\n            \"Text\": \"(136,306,674)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07664759457111359,\n                    \"Height\": 0.00954185426235199,\n                    \"Left\": 0.5502325892448425,\n                    \"Top\": 0.6893131136894226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5502325892448425,\n                        \"Y\": 0.6893740892410278\n                    },\n                    {\n                        \"X\": 0.6268739104270935,\n                        \"Y\": 0.6893131136894226\n                    },\n                    {\n                        \"X\": 0.6268801689147949,\n                        \"Y\": 0.6987940073013306\n                    },\n                    {\n                        \"X\": 0.5502386093139648,\n                        \"Y\": 0.6988549828529358\n                    }\n                ]\n            },\n            \"Id\": \"3aae17af-3f0e-4c65-a8e1-82e8a99f1d60\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.59664916992188,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004528119694441557,\n                    \"Height\": 0.0019341539591550827,\n                    \"Left\": 0.7654328346252441,\n                    \"Top\": 0.6929760575294495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7654328346252441,\n                        \"Y\": 0.692979633808136\n                    },\n                    {\n                        \"X\": 0.769959568977356,\n                        \"Y\": 0.6929760575294495\n                    },\n                    {\n                        \"X\": 0.7699609398841858,\n                        \"Y\": 0.6949065923690796\n                    },\n                    {\n                        \"X\": 0.765434205532074,\n                        \"Y\": 0.6949101686477661\n                    }\n                ]\n            },\n            \"Id\": \"011f1c86-d104-4e20-8de1-fd0b9e50ffae\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82933044433594,\n            \"Text\": \"(136,306,674)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07635623216629028,\n                    \"Height\": 0.00968242809176445,\n                    \"Left\": 0.8328878879547119,\n                    \"Top\": 0.6888683438301086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8328878879547119,\n                        \"Y\": 0.6889290809631348\n                    },\n                    {\n                        \"X\": 0.9092369079589844,\n                        \"Y\": 0.6888683438301086\n                    },\n                    {\n                        \"X\": 0.9092441201210022,\n                        \"Y\": 0.6984899640083313\n                    },\n                    {\n                        \"X\": 0.8328948616981506,\n                        \"Y\": 0.6985507607460022\n                    }\n                ]\n            },\n            \"Id\": \"2a8c4606-78de-4454-bc6a-3ee80295f343\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94176483154297,\n            \"Text\": \"General\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04296436905860901,\n                    \"Height\": 0.007964394986629486,\n                    \"Left\": 0.1289742887020111,\n                    \"Top\": 0.7039107084274292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1289742887020111,\n                        \"Y\": 0.7039449214935303\n                    },\n                    {\n                        \"X\": 0.17193454504013062,\n                        \"Y\": 0.7039107084274292\n                    },\n                    {\n                        \"X\": 0.17193865776062012,\n                        \"Y\": 0.7118408679962158\n                    },\n                    {\n                        \"X\": 0.12897829711437225,\n                        \"Y\": 0.7118750810623169\n                    }\n                ]\n            },\n            \"Id\": \"29a0d003-fbfb-46c5-b737-73bddd58790c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82752227783203,\n            \"Text\": \"obligation\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054277870804071426,\n                    \"Height\": 0.009639960713684559,\n                    \"Left\": 0.17551501095294952,\n                    \"Top\": 0.7037186622619629\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17551501095294952,\n                        \"Y\": 0.703761875629425\n                    },\n                    {\n                        \"X\": 0.22978773713111877,\n                        \"Y\": 0.7037186622619629\n                    },\n                    {\n                        \"X\": 0.22979287803173065,\n                        \"Y\": 0.7133153676986694\n                    },\n                    {\n                        \"X\": 0.17552000284194946,\n                        \"Y\": 0.7133586406707764\n                    }\n                ]\n            },\n            \"Id\": \"cd2d36ef-bf33-45c5-87ea-ab3cf3ffef7e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96476745605469,\n            \"Text\": \"bonds\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03315654397010803,\n                    \"Height\": 0.008098021149635315,\n                    \"Left\": 0.23341652750968933,\n                    \"Top\": 0.7035825252532959\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23341652750968933,\n                        \"Y\": 0.7036089301109314\n                    },\n                    {\n                        \"X\": 0.266568660736084,\n                        \"Y\": 0.7035825252532959\n                    },\n                    {\n                        \"X\": 0.26657307147979736,\n                        \"Y\": 0.7116541266441345\n                    },\n                    {\n                        \"X\": 0.23342086374759674,\n                        \"Y\": 0.7116805911064148\n                    }\n                ]\n            },\n            \"Id\": \"e96d5f5c-6cf1-4022-b647-1ddfde69df79\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94450378417969,\n            \"Text\": \"issued\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0341179259121418,\n                    \"Height\": 0.007850460708141327,\n                    \"Left\": 0.2698853313922882,\n                    \"Top\": 0.7037351727485657\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2698853313922882,\n                        \"Y\": 0.7037623524665833\n                    },\n                    {\n                        \"X\": 0.3039988875389099,\n                        \"Y\": 0.7037351727485657\n                    },\n                    {\n                        \"X\": 0.3040032684803009,\n                        \"Y\": 0.71155846118927\n                    },\n                    {\n                        \"X\": 0.26988962292671204,\n                        \"Y\": 0.7115856409072876\n                    }\n                ]\n            },\n            \"Id\": \"942b782b-b4ee-448b-964f-bac6c1897426\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.63211822509766,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004536264576017857,\n                    \"Height\": 0.001965511590242386,\n                    \"Left\": 0.4913521111011505,\n                    \"Top\": 0.70717853307724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4913521111011505,\n                        \"Y\": 0.7071821093559265\n                    },\n                    {\n                        \"X\": 0.4958871603012085,\n                        \"Y\": 0.70717853307724\n                    },\n                    {\n                        \"X\": 0.4958883821964264,\n                        \"Y\": 0.709140419960022\n                    },\n                    {\n                        \"X\": 0.4913533329963684,\n                        \"Y\": 0.7091439962387085\n                    }\n                ]\n            },\n            \"Id\": \"741ee6f9-f62b-4fce-9945-faf5a63bbb74\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.7508773803711,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004707134794443846,\n                    \"Height\": 0.0019871594849973917,\n                    \"Left\": 0.6187006235122681,\n                    \"Top\": 0.706997811794281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6187006235122681,\n                        \"Y\": 0.7070015668869019\n                    },\n                    {\n                        \"X\": 0.6234064698219299,\n                        \"Y\": 0.706997811794281\n                    },\n                    {\n                        \"X\": 0.623407781124115,\n                        \"Y\": 0.7089812159538269\n                    },\n                    {\n                        \"X\": 0.6187019348144531,\n                        \"Y\": 0.7089849710464478\n                    }\n                ]\n            },\n            \"Id\": \"9bb5cbd5-dfde-45fd-bedc-84394fca93e4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85264587402344,\n            \"Text\": \"225,000,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06921282410621643,\n                    \"Height\": 0.009106194600462914,\n                    \"Left\": 0.7007638812065125,\n                    \"Top\": 0.7028923034667969\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7007638812065125,\n                        \"Y\": 0.7029474377632141\n                    },\n                    {\n                        \"X\": 0.7699702978134155,\n                        \"Y\": 0.7028923034667969\n                    },\n                    {\n                        \"X\": 0.7699766755104065,\n                        \"Y\": 0.7119433283805847\n                    },\n                    {\n                        \"X\": 0.7007700204849243,\n                        \"Y\": 0.7119985222816467\n                    }\n                ]\n            },\n            \"Id\": \"43e1c912-6ee6-417e-8a50-8a20ee01ff04\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83792114257812,\n            \"Text\": \"225,000,000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06954780220985413,\n                    \"Height\": 0.00904584489762783,\n                    \"Left\": 0.835911214351654,\n                    \"Top\": 0.7028564214706421\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.835911214351654,\n                        \"Y\": 0.7029117941856384\n                    },\n                    {\n                        \"X\": 0.905452311038971,\n                        \"Y\": 0.7028564214706421\n                    },\n                    {\n                        \"X\": 0.9054590463638306,\n                        \"Y\": 0.7118468880653381\n                    },\n                    {\n                        \"X\": 0.8359177708625793,\n                        \"Y\": 0.7119022607803345\n                    }\n                ]\n            },\n            \"Id\": \"4473ec9f-ad13-4112-a5c6-7f43cad12d44\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9190673828125,\n            \"Text\": \"Sale\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022412490099668503,\n                    \"Height\": 0.007930693216621876,\n                    \"Left\": 0.1288456916809082,\n                    \"Top\": 0.7175207138061523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1288456916809082,\n                        \"Y\": 0.717538595199585\n                    },\n                    {\n                        \"X\": 0.15125413239002228,\n                        \"Y\": 0.7175207138061523\n                    },\n                    {\n                        \"X\": 0.151258185505867,\n                        \"Y\": 0.7254335284233093\n                    },\n                    {\n                        \"X\": 0.12884968519210815,\n                        \"Y\": 0.7254514098167419\n                    }\n                ]\n            },\n            \"Id\": \"15bf248d-6c05-447c-b83c-12a46bb8364c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93631744384766,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011751375161111355,\n                    \"Height\": 0.0079947579652071,\n                    \"Left\": 0.1545526385307312,\n                    \"Top\": 0.7173384428024292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1545526385307312,\n                        \"Y\": 0.7173478007316589\n                    },\n                    {\n                        \"X\": 0.16629987955093384,\n                        \"Y\": 0.7173384428024292\n                    },\n                    {\n                        \"X\": 0.16630400717258453,\n                        \"Y\": 0.7253237962722778\n                    },\n                    {\n                        \"X\": 0.1545567363500595,\n                        \"Y\": 0.7253331542015076\n                    }\n                ]\n            },\n            \"Id\": \"a619aafa-fc4b-434d-a4e9-64b4ffbfad77\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78298950195312,\n            \"Text\": \"capital\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036098796874284744,\n                    \"Height\": 0.009539874270558357,\n                    \"Left\": 0.168910413980484,\n                    \"Top\": 0.7174874544143677\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.168910413980484,\n                        \"Y\": 0.7175162434577942\n                    },\n                    {\n                        \"X\": 0.20500418543815613,\n                        \"Y\": 0.7174874544143677\n                    },\n                    {\n                        \"X\": 0.20500920712947845,\n                        \"Y\": 0.726998507976532\n                    },\n                    {\n                        \"X\": 0.16891533136367798,\n                        \"Y\": 0.7270272970199585\n                    }\n                ]\n            },\n            \"Id\": \"a3796b2f-2c7c-4f23-9b5c-b3a7c7c65786\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95861053466797,\n            \"Text\": \"assets\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0333678163588047,\n                    \"Height\": 0.007041200529783964,\n                    \"Left\": 0.2084500789642334,\n                    \"Top\": 0.7181580066680908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2084500789642334,\n                        \"Y\": 0.7181846499443054\n                    },\n                    {\n                        \"X\": 0.24181410670280457,\n                        \"Y\": 0.7181580066680908\n                    },\n                    {\n                        \"X\": 0.2418178915977478,\n                        \"Y\": 0.7251726388931274\n                    },\n                    {\n                        \"X\": 0.20845378935337067,\n                        \"Y\": 0.7251992225646973\n                    }\n                ]\n            },\n            \"Id\": \"3fe444e9-081e-4391-bcf9-6552d975480f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94508361816406,\n            \"Text\": \"81,906\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03784645348787308,\n                    \"Height\": 0.008859308436512947,\n                    \"Left\": 0.4580381214618683,\n                    \"Top\": 0.7172836661338806\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4580381214618683,\n                        \"Y\": 0.717313826084137\n                    },\n                    {\n                        \"X\": 0.4958791136741638,\n                        \"Y\": 0.7172836661338806\n                    },\n                    {\n                        \"X\": 0.49588456749916077,\n                        \"Y\": 0.7261127829551697\n                    },\n                    {\n                        \"X\": 0.45804348587989807,\n                        \"Y\": 0.7261430025100708\n                    }\n                ]\n            },\n            \"Id\": \"5333e7f8-3d38-4cee-9d53-bb3aeae539ab\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.05007934570312,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004589381627738476,\n                    \"Height\": 0.0018834933871403337,\n                    \"Left\": 0.6188513040542603,\n                    \"Top\": 0.7208395600318909\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6188513040542603,\n                        \"Y\": 0.7208431959152222\n                    },\n                    {\n                        \"X\": 0.6234394311904907,\n                        \"Y\": 0.7208395600318909\n                    },\n                    {\n                        \"X\": 0.623440682888031,\n                        \"Y\": 0.7227193713188171\n                    },\n                    {\n                        \"X\": 0.6188525557518005,\n                        \"Y\": 0.7227230668067932\n                    }\n                ]\n            },\n            \"Id\": \"697d2ba9-a210-4f6b-9765-ca45f8cb3f20\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9298324584961,\n            \"Text\": \"1,256,140\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05464394390583038,\n                    \"Height\": 0.009387792088091373,\n                    \"Left\": 0.7154702544212341,\n                    \"Top\": 0.7167222499847412\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7154702544212341,\n                        \"Y\": 0.716765820980072\n                    },\n                    {\n                        \"X\": 0.7701075673103333,\n                        \"Y\": 0.7167222499847412\n                    },\n                    {\n                        \"X\": 0.7701141834259033,\n                        \"Y\": 0.7260664701461792\n                    },\n                    {\n                        \"X\": 0.7154766321182251,\n                        \"Y\": 0.72611004114151\n                    }\n                ]\n            },\n            \"Id\": \"2cccbcf1-e56a-4c22-845a-15521d4cb568\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92472076416016,\n            \"Text\": \"1,338,046\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0545821376144886,\n                    \"Height\": 0.00934099406003952,\n                    \"Left\": 0.8505164384841919,\n                    \"Top\": 0.7165414094924927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8505164384841919,\n                        \"Y\": 0.7165849208831787\n                    },\n                    {\n                        \"X\": 0.9050916433334351,\n                        \"Y\": 0.7165414094924927\n                    },\n                    {\n                        \"X\": 0.9050986170768738,\n                        \"Y\": 0.725838840007782\n                    },\n                    {\n                        \"X\": 0.8505232334136963,\n                        \"Y\": 0.7258824110031128\n                    }\n                ]\n            },\n            \"Id\": \"bf25dbb3-71b4-42ec-8d5c-8ad3f2dd2e3f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89373779296875,\n            \"Text\": \"Transfers\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05182577297091484,\n                    \"Height\": 0.007826857268810272,\n                    \"Left\": 0.12824691832065582,\n                    \"Top\": 0.7314008474349976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12824691832065582,\n                        \"Y\": 0.7314422130584717\n                    },\n                    {\n                        \"X\": 0.18006862699985504,\n                        \"Y\": 0.7314008474349976\n                    },\n                    {\n                        \"X\": 0.18007268011569977,\n                        \"Y\": 0.7391863465309143\n                    },\n                    {\n                        \"X\": 0.1282508373260498,\n                        \"Y\": 0.7392277121543884\n                    }\n                ]\n            },\n            \"Id\": \"554ad521-10ff-45c8-a3cd-5d8b271494a6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96143341064453,\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009639794006943703,\n                    \"Height\": 0.007573975250124931,\n                    \"Left\": 0.18345949053764343,\n                    \"Top\": 0.7315095663070679\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18345949053764343,\n                        \"Y\": 0.7315172553062439\n                    },\n                    {\n                        \"X\": 0.19309531152248383,\n                        \"Y\": 0.7315095663070679\n                    },\n                    {\n                        \"X\": 0.19309929013252258,\n                        \"Y\": 0.7390758395195007\n                    },\n                    {\n                        \"X\": 0.1834634393453598,\n                        \"Y\": 0.7390835285186768\n                    }\n                ]\n            },\n            \"Id\": \"a6bdcfc8-272f-48c7-bb52-a78f20fa1a03\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90748596191406,\n            \"Text\": \"282,340\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04453844204545021,\n                    \"Height\": 0.008669781498610973,\n                    \"Left\": 0.45153573155403137,\n                    \"Top\": 0.731176495552063\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45153573155403137,\n                        \"Y\": 0.7312120199203491\n                    },\n                    {\n                        \"X\": 0.4960688352584839,\n                        \"Y\": 0.731176495552063\n                    },\n                    {\n                        \"X\": 0.4960741698741913,\n                        \"Y\": 0.7398107051849365\n                    },\n                    {\n                        \"X\": 0.4515409767627716,\n                        \"Y\": 0.7398462891578674\n                    }\n                ]\n            },\n            \"Id\": \"5ed4c30b-cd68-4337-9af0-8841b51d9288\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.23409271240234,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00472436985000968,\n                    \"Height\": 0.0019565315451472998,\n                    \"Left\": 0.6186733841896057,\n                    \"Top\": 0.7345121502876282\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6186733841896057,\n                        \"Y\": 0.7345159649848938\n                    },\n                    {\n                        \"X\": 0.6233964562416077,\n                        \"Y\": 0.7345121502876282\n                    },\n                    {\n                        \"X\": 0.6233977675437927,\n                        \"Y\": 0.7364649176597595\n                    },\n                    {\n                        \"X\": 0.6186746954917908,\n                        \"Y\": 0.7364686727523804\n                    }\n                ]\n            },\n            \"Id\": \"2708f34b-ca17-4f45-83d7-8032cbffa612\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90636444091797,\n            \"Text\": \"133,015,108\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06795250624418259,\n                    \"Height\": 0.008761953562498093,\n                    \"Left\": 0.7020295858383179,\n                    \"Top\": 0.730744481086731\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7020295858383179,\n                        \"Y\": 0.7307986617088318\n                    },\n                    {\n                        \"X\": 0.7699759602546692,\n                        \"Y\": 0.730744481086731\n                    },\n                    {\n                        \"X\": 0.769982099533081,\n                        \"Y\": 0.7394521236419678\n                    },\n                    {\n                        \"X\": 0.7020355463027954,\n                        \"Y\": 0.7395064234733582\n                    }\n                ]\n            },\n            \"Id\": \"ab43754c-a26a-41f0-893e-9dad342146c7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55038452148438,\n            \"Text\": \"133,297,448\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06871499121189117,\n                    \"Height\": 0.008813807740807533,\n                    \"Left\": 0.8365285992622375,\n                    \"Top\": 0.7305559515953064\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8365285992622375,\n                        \"Y\": 0.7306108474731445\n                    },\n                    {\n                        \"X\": 0.9052370190620422,\n                        \"Y\": 0.7305559515953064\n                    },\n                    {\n                        \"X\": 0.9052435755729675,\n                        \"Y\": 0.7393149137496948\n                    },\n                    {\n                        \"X\": 0.8365349173545837,\n                        \"Y\": 0.739369809627533\n                    }\n                ]\n            },\n            \"Id\": \"816dd870-8863-4d46-9458-1929e0ebc9a1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76338958740234,\n            \"Text\": \"Transfers\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05155866593122482,\n                    \"Height\": 0.008014199323952198,\n                    \"Left\": 0.12822900712490082,\n                    \"Top\": 0.7448583841323853\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12822900712490082,\n                        \"Y\": 0.744899570941925\n                    },\n                    {\n                        \"X\": 0.17978352308273315,\n                        \"Y\": 0.7448583841323853\n                    },\n                    {\n                        \"X\": 0.17978768050670624,\n                        \"Y\": 0.7528313398361206\n                    },\n                    {\n                        \"X\": 0.12823303043842316,\n                        \"Y\": 0.7528725862503052\n                    }\n                ]\n            },\n            \"Id\": \"61edc26f-e78a-46d1-ad38-fcd8ac86dc05\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94689178466797,\n            \"Text\": \"out\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01843813806772232,\n                    \"Height\": 0.0069564394652843475,\n                    \"Left\": 0.18319915235042572,\n                    \"Top\": 0.7457610368728638\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18319915235042572,\n                        \"Y\": 0.7457757592201233\n                    },\n                    {\n                        \"X\": 0.20163363218307495,\n                        \"Y\": 0.7457610368728638\n                    },\n                    {\n                        \"X\": 0.20163729786872864,\n                        \"Y\": 0.7527027130126953\n                    },\n                    {\n                        \"X\": 0.18320277333259583,\n                        \"Y\": 0.7527174949645996\n                    }\n                ]\n            },\n            \"Id\": \"1d112e59-3821-4514-b84a-f0d1a485cfe3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92243957519531,\n            \"Text\": \"(69,015,108)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06930188834667206,\n                    \"Height\": 0.00969897024333477,\n                    \"Left\": 0.4305821359157562,\n                    \"Top\": 0.7442232966423035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4305821359157562,\n                        \"Y\": 0.7442786693572998\n                    },\n                    {\n                        \"X\": 0.49987804889678955,\n                        \"Y\": 0.7442232966423035\n                    },\n                    {\n                        \"X\": 0.4998840391635895,\n                        \"Y\": 0.7538668513298035\n                    },\n                    {\n                        \"X\": 0.43058791756629944,\n                        \"Y\": 0.7539222836494446\n                    }\n                ]\n            },\n            \"Id\": \"6fd86198-7574-4c76-a9eb-9b922c09f36d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77364349365234,\n            \"Text\": \"(64,000,000)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0692022368311882,\n                    \"Height\": 0.009733819402754307,\n                    \"Left\": 0.5577194690704346,\n                    \"Top\": 0.7440030574798584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5577194690704346,\n                        \"Y\": 0.74405837059021\n                    },\n                    {\n                        \"X\": 0.6269153356552124,\n                        \"Y\": 0.7440030574798584\n                    },\n                    {\n                        \"X\": 0.6269217133522034,\n                        \"Y\": 0.7536815404891968\n                    },\n                    {\n                        \"X\": 0.5577256679534912,\n                        \"Y\": 0.7537369132041931\n                    }\n                ]\n            },\n            \"Id\": \"6034eab9-66ab-4dbd-bafc-e29299fd5cd6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75,\n            \"Text\": \"(275,650)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05227585509419441,\n                    \"Height\": 0.00975680910050869,\n                    \"Left\": 0.7215867042541504,\n                    \"Top\": 0.743804931640625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7215867042541504,\n                        \"Y\": 0.7438467144966125\n                    },\n                    {\n                        \"X\": 0.7738556861877441,\n                        \"Y\": 0.743804931640625\n                    },\n                    {\n                        \"X\": 0.7738625407218933,\n                        \"Y\": 0.7535199522972107\n                    },\n                    {\n                        \"X\": 0.7215933799743652,\n                        \"Y\": 0.7535617351531982\n                    }\n                ]\n            },\n            \"Id\": \"6f4c5e0a-8816-4f3a-bc96-f3112955f5e4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7136001586914,\n            \"Text\": \"(133,290,758)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07640068978071213,\n                    \"Height\": 0.009831498377025127,\n                    \"Left\": 0.8326171636581421,\n                    \"Top\": 0.7435756921768188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8326171636581421,\n                        \"Y\": 0.7436367273330688\n                    },\n                    {\n                        \"X\": 0.9090105891227722,\n                        \"Y\": 0.7435756921768188\n                    },\n                    {\n                        \"X\": 0.9090178608894348,\n                        \"Y\": 0.7533460855484009\n                    },\n                    {\n                        \"X\": 0.8326242566108704,\n                        \"Y\": 0.7534071803092957\n                    }\n                ]\n            },\n            \"Id\": \"871b03ab-b081-44e4-b8a3-546276441bd5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92279815673828,\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0277775339782238,\n                    \"Height\": 0.007742699235677719,\n                    \"Left\": 0.15687716007232666,\n                    \"Top\": 0.7608028650283813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15687716007232666,\n                        \"Y\": 0.7608250975608826\n                    },\n                    {\n                        \"X\": 0.18465065956115723,\n                        \"Y\": 0.7608028650283813\n                    },\n                    {\n                        \"X\": 0.18465468287467957,\n                        \"Y\": 0.7685233354568481\n                    },\n                    {\n                        \"X\": 0.15688112378120422,\n                        \"Y\": 0.7685455679893494\n                    }\n                ]\n            },\n            \"Id\": \"a6297ea3-dd40-4b09-a82f-f95322e72d39\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98410034179688,\n            \"Text\": \"other\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030014026910066605,\n                    \"Height\": 0.008109262213110924,\n                    \"Left\": 0.18806077539920807,\n                    \"Top\": 0.7606691122055054\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18806077539920807,\n                        \"Y\": 0.7606931328773499\n                    },\n                    {\n                        \"X\": 0.21807050704956055,\n                        \"Y\": 0.7606691122055054\n                    },\n                    {\n                        \"X\": 0.21807481348514557,\n                        \"Y\": 0.7687543630599976\n                    },\n                    {\n                        \"X\": 0.18806500732898712,\n                        \"Y\": 0.768778383731842\n                    }\n                ]\n            },\n            \"Id\": \"8a244359-a2a2-46b6-a983-49b3e26707bc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94685363769531,\n            \"Text\": \"financing\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05001520738005638,\n                    \"Height\": 0.009658485651016235,\n                    \"Left\": 0.22131013870239258,\n                    \"Top\": 0.7604215741157532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22131013870239258,\n                        \"Y\": 0.7604616284370422\n                    },\n                    {\n                        \"X\": 0.27132007479667664,\n                        \"Y\": 0.7604215741157532\n                    },\n                    {\n                        \"X\": 0.27132534980773926,\n                        \"Y\": 0.7700400352478027\n                    },\n                    {\n                        \"X\": 0.22131527960300446,\n                        \"Y\": 0.7700800895690918\n                    }\n                ]\n            },\n            \"Id\": \"ec26d6e4-df7c-401e-b23b-b1e5996196d6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92748260498047,\n            \"Text\": \"sources\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04191309213638306,\n                    \"Height\": 0.006101685110479593,\n                    \"Left\": 0.16326174139976501,\n                    \"Top\": 0.7781224846839905\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16326174139976501,\n                        \"Y\": 0.778156042098999\n                    },\n                    {\n                        \"X\": 0.2051716148853302,\n                        \"Y\": 0.7781224846839905\n                    },\n                    {\n                        \"X\": 0.20517481863498688,\n                        \"Y\": 0.7841905951499939\n                    },\n                    {\n                        \"X\": 0.16326485574245453,\n                        \"Y\": 0.7842241525650024\n                    }\n                ]\n            },\n            \"Id\": \"3de45766-e676-44a3-aabd-3c3df605b735\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83372497558594,\n            \"Text\": \"(uses)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03191527724266052,\n                    \"Height\": 0.00963753554970026,\n                    \"Left\": 0.20857349038124084,\n                    \"Top\": 0.7761171460151672\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20857349038124084,\n                        \"Y\": 0.7761427164077759\n                    },\n                    {\n                        \"X\": 0.2404835820198059,\n                        \"Y\": 0.7761171460151672\n                    },\n                    {\n                        \"X\": 0.24048876762390137,\n                        \"Y\": 0.7857291102409363\n                    },\n                    {\n                        \"X\": 0.20857858657836914,\n                        \"Y\": 0.7857546806335449\n                    }\n                ]\n            },\n            \"Id\": \"824adec7-fe60-4aac-b58a-4ec170689a31\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8495101928711,\n            \"Text\": \"(68,650,862)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06913769990205765,\n                    \"Height\": 0.00964828860014677,\n                    \"Left\": 0.4306480884552002,\n                    \"Top\": 0.7756447196006775\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4306480884552002,\n                        \"Y\": 0.7757000923156738\n                    },\n                    {\n                        \"X\": 0.4997798502445221,\n                        \"Y\": 0.7756447196006775\n                    },\n                    {\n                        \"X\": 0.49978578090667725,\n                        \"Y\": 0.7852375507354736\n                    },\n                    {\n                        \"X\": 0.430653840303421,\n                        \"Y\": 0.7852929830551147\n                    }\n                ]\n            },\n            \"Id\": \"0a2e8981-c477-47e6-8857-a93e29ef897a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36604309082031,\n            \"Text\": \"(62,430,063)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06923440098762512,\n                    \"Height\": 0.009507952257990837,\n                    \"Left\": 0.5578378438949585,\n                    \"Top\": 0.7755728363990784\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5578378438949585,\n                        \"Y\": 0.7756282687187195\n                    },\n                    {\n                        \"X\": 0.6270660161972046,\n                        \"Y\": 0.7755728363990784\n                    },\n                    {\n                        \"X\": 0.627072274684906,\n                        \"Y\": 0.7850252389907837\n                    },\n                    {\n                        \"X\": 0.5578438639640808,\n                        \"Y\": 0.7850807309150696\n                    }\n                ]\n            },\n            \"Id\": \"c86912c8-dedc-4b89-a9c3-09aa04dc119e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92601013183594,\n            \"Text\": \"379,141,460\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06861922144889832,\n                    \"Height\": 0.008837568573653698,\n                    \"Left\": 0.7016116380691528,\n                    \"Top\": 0.7756800055503845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7016116380691528,\n                        \"Y\": 0.7757349610328674\n                    },\n                    {\n                        \"X\": 0.7702246904373169,\n                        \"Y\": 0.7756800055503845\n                    },\n                    {\n                        \"X\": 0.7702308893203735,\n                        \"Y\": 0.784462571144104\n                    },\n                    {\n                        \"X\": 0.7016176581382751,\n                        \"Y\": 0.7845175862312317\n                    }\n                ]\n            },\n            \"Id\": \"34b4a5fe-f84b-4e6a-ab3a-c89a670fbc90\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78816223144531,\n            \"Text\": \"248,060,535\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06801906228065491,\n                    \"Height\": 0.008814645931124687,\n                    \"Left\": 0.836759090423584,\n                    \"Top\": 0.7755779027938843\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.836759090423584,\n                        \"Y\": 0.775632381439209\n                    },\n                    {\n                        \"X\": 0.904771625995636,\n                        \"Y\": 0.7755779027938843\n                    },\n                    {\n                        \"X\": 0.9047781229019165,\n                        \"Y\": 0.7843379974365234\n                    },\n                    {\n                        \"X\": 0.836765468120575,\n                        \"Y\": 0.7843925356864929\n                    }\n                ]\n            },\n            \"Id\": \"295a6aee-652c-4851-b7f8-0bf02f1484a7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93731689453125,\n            \"Text\": \"NET\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021935420110821724,\n                    \"Height\": 0.007442953530699015,\n                    \"Left\": 0.11065632104873657,\n                    \"Top\": 0.8065493702888489\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11065632104873657,\n                        \"Y\": 0.8065669536590576\n                    },\n                    {\n                        \"X\": 0.1325879842042923,\n                        \"Y\": 0.8065493702888489\n                    },\n                    {\n                        \"X\": 0.13259173929691315,\n                        \"Y\": 0.8139746785163879\n                    },\n                    {\n                        \"X\": 0.11066003143787384,\n                        \"Y\": 0.8139923214912415\n                    }\n                ]\n            },\n            \"Id\": \"d798cb17-4f45-4a20-ad99-417e99bc8f34\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9594497680664,\n            \"Text\": \"CHANGE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047457773238420486,\n                    \"Height\": 0.0075317504815757275,\n                    \"Left\": 0.1355607509613037,\n                    \"Top\": 0.806485652923584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1355607509613037,\n                        \"Y\": 0.8065237402915955\n                    },\n                    {\n                        \"X\": 0.1830146163702011,\n                        \"Y\": 0.806485652923584\n                    },\n                    {\n                        \"X\": 0.1830185204744339,\n                        \"Y\": 0.8139792680740356\n                    },\n                    {\n                        \"X\": 0.13556455075740814,\n                        \"Y\": 0.8140174150466919\n                    }\n                ]\n            },\n            \"Id\": \"dc2ec9f4-8172-4515-9cad-74f79f5f8ff5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94630432128906,\n            \"Text\": \"IN\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011593278497457504,\n                    \"Height\": 0.007531329989433289,\n                    \"Left\": 0.18647758662700653,\n                    \"Top\": 0.8064470291137695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18647758662700653,\n                        \"Y\": 0.8064563274383545\n                    },\n                    {\n                        \"X\": 0.19806690514087677,\n                        \"Y\": 0.8064470291137695\n                    },\n                    {\n                        \"X\": 0.19807086884975433,\n                        \"Y\": 0.813969075679779\n                    },\n                    {\n                        \"X\": 0.1864815205335617,\n                        \"Y\": 0.813978374004364\n                    }\n                ]\n            },\n            \"Id\": \"11dcc07f-976d-440f-a26f-17fd879b4f7f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94464874267578,\n            \"Text\": \"FUND\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03144259378314018,\n                    \"Height\": 0.007736601401120424,\n                    \"Left\": 0.2018800526857376,\n                    \"Top\": 0.8063125014305115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2018800526857376,\n                        \"Y\": 0.8063377737998962\n                    },\n                    {\n                        \"X\": 0.2333185076713562,\n                        \"Y\": 0.8063125014305115\n                    },\n                    {\n                        \"X\": 0.2333226501941681,\n                        \"Y\": 0.8140238523483276\n                    },\n                    {\n                        \"X\": 0.20188412070274353,\n                        \"Y\": 0.8140491247177124\n                    }\n                ]\n            },\n            \"Id\": \"462d05a1-b263-42ba-a32e-b1dad63e7318\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94129180908203,\n            \"Text\": \"BALANCE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051216550171375275,\n                    \"Height\": 0.007543319370597601,\n                    \"Left\": 0.23692163825035095,\n                    \"Top\": 0.8063932061195374\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23692163825035095,\n                        \"Y\": 0.8064343929290771\n                    },\n                    {\n                        \"X\": 0.28813400864601135,\n                        \"Y\": 0.8063932061195374\n                    },\n                    {\n                        \"X\": 0.28813818097114563,\n                        \"Y\": 0.8138954043388367\n                    },\n                    {\n                        \"X\": 0.23692567646503448,\n                        \"Y\": 0.8139365315437317\n                    }\n                ]\n            },\n            \"Id\": \"4445b0d9-f5cf-404c-a9a2-b79fd1f46ffa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95915222167969,\n            \"Text\": \"9,215,714\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055118367075920105,\n                    \"Height\": 0.008750437758862972,\n                    \"Left\": 0.4411628842353821,\n                    \"Top\": 0.8060364723205566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4411628842353821,\n                        \"Y\": 0.80608069896698\n                    },\n                    {\n                        \"X\": 0.4962758421897888,\n                        \"Y\": 0.8060364723205566\n                    },\n                    {\n                        \"X\": 0.496281236410141,\n                        \"Y\": 0.8147425651550293\n                    },\n                    {\n                        \"X\": 0.4411681294441223,\n                        \"Y\": 0.8147868514060974\n                    }\n                ]\n            },\n            \"Id\": \"47991706-70cb-48c6-968e-9541977060fd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85627746582031,\n            \"Text\": \"37,197,235\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06170543655753136,\n                    \"Height\": 0.008842721581459045,\n                    \"Left\": 0.5612955689430237,\n                    \"Top\": 0.8057863712310791\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5612955689430237,\n                        \"Y\": 0.8058359622955322\n                    },\n                    {\n                        \"X\": 0.6229951977729797,\n                        \"Y\": 0.8057863712310791\n                    },\n                    {\n                        \"X\": 0.6230010390281677,\n                        \"Y\": 0.8145795464515686\n                    },\n                    {\n                        \"X\": 0.5613012313842773,\n                        \"Y\": 0.8146291375160217\n                    }\n                ]\n            },\n            \"Id\": \"d2a9f7c8-1451-43e6-8eac-f06158582224\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75950622558594,\n            \"Text\": \"64,746,060\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06137681007385254,\n                    \"Height\": 0.008817620575428009,\n                    \"Left\": 0.7085086107254028,\n                    \"Top\": 0.8055034279823303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7085086107254028,\n                        \"Y\": 0.8055527210235596\n                    },\n                    {\n                        \"X\": 0.7698792815208435,\n                        \"Y\": 0.8055034279823303\n                    },\n                    {\n                        \"X\": 0.7698854207992554,\n                        \"Y\": 0.8142717480659485\n                    },\n                    {\n                        \"X\": 0.7085146307945251,\n                        \"Y\": 0.8143211007118225\n                    }\n                ]\n            },\n            \"Id\": \"b4b60061-e2d7-4c58-b0e0-d57e195cd3f3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85675811767578,\n            \"Text\": \"111,159,009\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0680791586637497,\n                    \"Height\": 0.008819321170449257,\n                    \"Left\": 0.8370013236999512,\n                    \"Top\": 0.8054630756378174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8370013236999512,\n                        \"Y\": 0.8055177330970764\n                    },\n                    {\n                        \"X\": 0.9050739407539368,\n                        \"Y\": 0.8054630756378174\n                    },\n                    {\n                        \"X\": 0.9050804972648621,\n                        \"Y\": 0.8142277002334595\n                    },\n                    {\n                        \"X\": 0.8370077013969421,\n                        \"Y\": 0.8142823576927185\n                    }\n                ]\n            },\n            \"Id\": \"375b3a6f-7fff-4166-b5bc-5b9b89745442\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93246459960938,\n            \"Text\": \"FUND\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03144270181655884,\n                    \"Height\": 0.007755981292575598,\n                    \"Left\": 0.11068703979253769,\n                    \"Top\": 0.833573043346405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11068703979253769,\n                        \"Y\": 0.8335983753204346\n                    },\n                    {\n                        \"X\": 0.14212580025196075,\n                        \"Y\": 0.833573043346405\n                    },\n                    {\n                        \"X\": 0.14212974905967712,\n                        \"Y\": 0.8413037061691284\n                    },\n                    {\n                        \"X\": 0.1106908991932869,\n                        \"Y\": 0.841329038143158\n                    }\n                ]\n            },\n            \"Id\": \"32fd9834-d493-4031-ab56-44cecb16a60d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73271179199219,\n            \"Text\": \"BALANCE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05116592347621918,\n                    \"Height\": 0.007576340809464455,\n                    \"Left\": 0.14551730453968048,\n                    \"Top\": 0.8336107134819031\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14551730453968048,\n                        \"Y\": 0.8336519002914429\n                    },\n                    {\n                        \"X\": 0.1966792643070221,\n                        \"Y\": 0.8336107134819031\n                    },\n                    {\n                        \"X\": 0.19668322801589966,\n                        \"Y\": 0.8411458730697632\n                    },\n                    {\n                        \"X\": 0.1455211490392685,\n                        \"Y\": 0.841187059879303\n                    }\n                ]\n            },\n            \"Id\": \"ca780646-fb2e-4ae0-9c12-15f83d544941\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.98088836669922,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00449433783069253,\n                    \"Height\": 0.0024405065923929214,\n                    \"Left\": 0.1997922956943512,\n                    \"Top\": 0.8370901346206665\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1997922956943512,\n                        \"Y\": 0.8370937705039978\n                    },\n                    {\n                        \"X\": 0.20428533852100372,\n                        \"Y\": 0.8370901346206665\n                    },\n                    {\n                        \"X\": 0.2042866349220276,\n                        \"Y\": 0.8395270109176636\n                    },\n                    {\n                        \"X\": 0.19979357719421387,\n                        \"Y\": 0.8395306468009949\n                    }\n                ]\n            },\n            \"Id\": \"0fbaa03d-082c-4b86-96ed-051597d032f7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.879150390625,\n            \"Text\": \"BEGINNING\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0636696144938469,\n                    \"Height\": 0.007810284849256277,\n                    \"Left\": 0.2077096700668335,\n                    \"Top\": 0.8333815932273865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2077096700668335,\n                        \"Y\": 0.8334327936172485\n                    },\n                    {\n                        \"X\": 0.27137503027915955,\n                        \"Y\": 0.8333815932273865\n                    },\n                    {\n                        \"X\": 0.271379292011261,\n                        \"Y\": 0.8411405682563782\n                    },\n                    {\n                        \"X\": 0.207713782787323,\n                        \"Y\": 0.841191828250885\n                    }\n                ]\n            },\n            \"Id\": \"7133a586-eb0e-4db2-adbe-09921d372cde\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94367980957031,\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01485587377101183,\n                    \"Height\": 0.0076561421155929565,\n                    \"Left\": 0.2749632000923157,\n                    \"Top\": 0.8333634734153748\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2749632000923157,\n                        \"Y\": 0.8333753943443298\n                    },\n                    {\n                        \"X\": 0.289814829826355,\n                        \"Y\": 0.8333634734153748\n                    },\n                    {\n                        \"X\": 0.28981906175613403,\n                        \"Y\": 0.841007649898529\n                    },\n                    {\n                        \"X\": 0.27496740221977234,\n                        \"Y\": 0.8410195708274841\n                    }\n                ]\n            },\n            \"Id\": \"d527b58c-2df3-40af-b518-5852b45f30ba\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96424865722656,\n            \"Text\": \"YEAR\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02915588766336441,\n                    \"Height\": 0.007566649466753006,\n                    \"Left\": 0.2926498055458069,\n                    \"Top\": 0.8334413170814514\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2926498055458069,\n                        \"Y\": 0.8334648013114929\n                    },\n                    {\n                        \"X\": 0.32180142402648926,\n                        \"Y\": 0.8334413170814514\n                    },\n                    {\n                        \"X\": 0.3218056857585907,\n                        \"Y\": 0.8409844636917114\n                    },\n                    {\n                        \"X\": 0.29265397787094116,\n                        \"Y\": 0.8410079479217529\n                    }\n                ]\n            },\n            \"Id\": \"ccaaeb23-4edf-451e-9680-efde0926fa2d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89606475830078,\n            \"Text\": \"501,382,445\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06822086870670319,\n                    \"Height\": 0.0091427993029356,\n                    \"Left\": 0.4276624023914337,\n                    \"Top\": 0.8330072164535522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4276624023914337,\n                        \"Y\": 0.8330621719360352\n                    },\n                    {\n                        \"X\": 0.49587762355804443,\n                        \"Y\": 0.8330072164535522\n                    },\n                    {\n                        \"X\": 0.4958832561969757,\n                        \"Y\": 0.8420950770378113\n                    },\n                    {\n                        \"X\": 0.4276678264141083,\n                        \"Y\": 0.8421500325202942\n                    }\n                ]\n            },\n            \"Id\": \"5f8e49d9-6400-408f-9976-39ec7f436410\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79568481445312,\n            \"Text\": \"181,812,071\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06749163568019867,\n                    \"Height\": 0.009015947580337524,\n                    \"Left\": 0.5555016398429871,\n                    \"Top\": 0.8329075574874878\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5555016398429871,\n                        \"Y\": 0.832961916923523\n                    },\n                    {\n                        \"X\": 0.6229873299598694,\n                        \"Y\": 0.8329075574874878\n                    },\n                    {\n                        \"X\": 0.6229932308197021,\n                        \"Y\": 0.8418691754341125\n                    },\n                    {\n                        \"X\": 0.5555073618888855,\n                        \"Y\": 0.8419235348701477\n                    }\n                ]\n            },\n            \"Id\": \"24ffdc0f-d47a-4153-bcbb-1adee569ea4d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93037414550781,\n            \"Text\": \"279,127,491\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0678781121969223,\n                    \"Height\": 0.009132921695709229,\n                    \"Left\": 0.7019127607345581,\n                    \"Top\": 0.8326953649520874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7019127607345581,\n                        \"Y\": 0.8327499628067017\n                    },\n                    {\n                        \"X\": 0.7697844505310059,\n                        \"Y\": 0.8326953649520874\n                    },\n                    {\n                        \"X\": 0.7697908282279968,\n                        \"Y\": 0.8417735695838928\n                    },\n                    {\n                        \"X\": 0.7019189596176147,\n                        \"Y\": 0.8418282866477966\n                    }\n                ]\n            },\n            \"Id\": \"cf2e9c38-0414-4c93-893b-43038ddb3ea4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5487289428711,\n            \"Text\": \"962,322,007\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06850098818540573,\n                    \"Height\": 0.009004492312669754,\n                    \"Left\": 0.8368273973464966,\n                    \"Top\": 0.8325279951095581\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8368273973464966,\n                        \"Y\": 0.8325831294059753\n                    },\n                    {\n                        \"X\": 0.9053217172622681,\n                        \"Y\": 0.8325279951095581\n                    },\n                    {\n                        \"X\": 0.9053283929824829,\n                        \"Y\": 0.8414772748947144\n                    },\n                    {\n                        \"X\": 0.8368338942527771,\n                        \"Y\": 0.8415324687957764\n                    }\n                ]\n            },\n            \"Id\": \"80fbfc29-ea12-4419-b66c-90460ebb9365\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92288208007812,\n            \"Text\": \"FUND\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.031040022149682045,\n                    \"Height\": 0.0076232487335801125,\n                    \"Left\": 0.11087893694639206,\n                    \"Top\": 0.8494475483894348\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11087893694639206,\n                        \"Y\": 0.8494725227355957\n                    },\n                    {\n                        \"X\": 0.14191509783267975,\n                        \"Y\": 0.8494475483894348\n                    },\n                    {\n                        \"X\": 0.14191895723342896,\n                        \"Y\": 0.8570457100868225\n                    },\n                    {\n                        \"X\": 0.1108827292919159,\n                        \"Y\": 0.8570707440376282\n                    }\n                ]\n            },\n            \"Id\": \"6a1f79b8-ed21-4b9d-be8f-4ed12131fe58\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76863098144531,\n            \"Text\": \"BALANCE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05039167404174805,\n                    \"Height\": 0.007565912324935198,\n                    \"Left\": 0.14606855809688568,\n                    \"Top\": 0.8495147824287415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14606855809688568,\n                        \"Y\": 0.8495553731918335\n                    },\n                    {\n                        \"X\": 0.19645626842975616,\n                        \"Y\": 0.8495147824287415\n                    },\n                    {\n                        \"X\": 0.19646023213863373,\n                        \"Y\": 0.8570400476455688\n                    },\n                    {\n                        \"X\": 0.1460723876953125,\n                        \"Y\": 0.8570806980133057\n                    }\n                ]\n            },\n            \"Id\": \"5dab3341-ff3e-48fa-8236-c405773df6eb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57374572753906,\n            \"Text\": \"END\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023522721603512764,\n                    \"Height\": 0.007597717456519604,\n                    \"Left\": 0.2074301540851593,\n                    \"Top\": 0.8493821620941162\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2074301540851593,\n                        \"Y\": 0.8494011163711548\n                    },\n                    {\n                        \"X\": 0.230948805809021,\n                        \"Y\": 0.8493821620941162\n                    },\n                    {\n                        \"X\": 0.23095287382602692,\n                        \"Y\": 0.8569608926773071\n                    },\n                    {\n                        \"X\": 0.20743416249752045,\n                        \"Y\": 0.8569798469543457\n                    }\n                ]\n            },\n            \"Id\": \"179899d8-2d71-4011-b736-cc145b83aeab\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88592529296875,\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014923514798283577,\n                    \"Height\": 0.007540662307292223,\n                    \"Left\": 0.23432207107543945,\n                    \"Top\": 0.8493285179138184\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23432207107543945,\n                        \"Y\": 0.8493404984474182\n                    },\n                    {\n                        \"X\": 0.24924151599407196,\n                        \"Y\": 0.8493285179138184\n                    },\n                    {\n                        \"X\": 0.24924559891223907,\n                        \"Y\": 0.8568571209907532\n                    },\n                    {\n                        \"X\": 0.23432612419128418,\n                        \"Y\": 0.8568691611289978\n                    }\n                ]\n            },\n            \"Id\": \"c2a1033a-fce8-4682-b574-44e4dac135fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92449951171875,\n            \"Text\": \"YEAR\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028917059302330017,\n                    \"Height\": 0.007702483795583248,\n                    \"Left\": 0.25212109088897705,\n                    \"Top\": 0.8492090106010437\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25212109088897705,\n                        \"Y\": 0.8492323160171509\n                    },\n                    {\n                        \"X\": 0.2810339033603668,\n                        \"Y\": 0.8492090106010437\n                    },\n                    {\n                        \"X\": 0.2810381352901459,\n                        \"Y\": 0.8568881750106812\n                    },\n                    {\n                        \"X\": 0.25212526321411133,\n                        \"Y\": 0.8569114804267883\n                    }\n                ]\n            },\n            \"Id\": \"407f5e89-1fd4-40e5-a74f-d02264f4e8e6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96772766113281,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006618712563067675,\n                    \"Height\": 0.009359085932374,\n                    \"Left\": 0.37888869643211365,\n                    \"Top\": 0.8482937812805176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37888869643211365,\n                        \"Y\": 0.8482990860939026\n                    },\n                    {\n                        \"X\": 0.3855019211769104,\n                        \"Y\": 0.8482937812805176\n                    },\n                    {\n                        \"X\": 0.38550740480422974,\n                        \"Y\": 0.8576475381851196\n                    },\n                    {\n                        \"X\": 0.3788941502571106,\n                        \"Y\": 0.8576528429985046\n                    }\n                ]\n            },\n            \"Id\": \"25ddaae0-e723-44d5-a6eb-a2fa4790161d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84053039550781,\n            \"Text\": \"510,598,159\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06820309162139893,\n                    \"Height\": 0.00902208499610424,\n                    \"Left\": 0.42781394720077515,\n                    \"Top\": 0.8488984704017639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42781394720077515,\n                        \"Y\": 0.8489534258842468\n                    },\n                    {\n                        \"X\": 0.49601149559020996,\n                        \"Y\": 0.8488984704017639\n                    },\n                    {\n                        \"X\": 0.49601706862449646,\n                        \"Y\": 0.8578655123710632\n                    },\n                    {\n                        \"X\": 0.42781931161880493,\n                        \"Y\": 0.8579205274581909\n                    }\n                ]\n            },\n            \"Id\": \"d0446b00-e52b-49ed-a359-4f7e470f19a7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95152282714844,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006531902588903904,\n                    \"Height\": 0.00925549678504467,\n                    \"Left\": 0.5090503096580505,\n                    \"Top\": 0.8481379151344299\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5090503096580505,\n                        \"Y\": 0.8481432199478149\n                    },\n                    {\n                        \"X\": 0.5155764818191528,\n                        \"Y\": 0.8481379151344299\n                    },\n                    {\n                        \"X\": 0.515582263469696,\n                        \"Y\": 0.8573881387710571\n                    },\n                    {\n                        \"X\": 0.5090560913085938,\n                        \"Y\": 0.8573934435844421\n                    }\n                ]\n            },\n            \"Id\": \"ab6823c9-0f22-4926-a098-83ae659dd87c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91375732421875,\n            \"Text\": \"219,009,306\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0684603750705719,\n                    \"Height\": 0.00907265767455101,\n                    \"Left\": 0.5551161170005798,\n                    \"Top\": 0.8487610220909119\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5551161170005798,\n                        \"Y\": 0.8488162159919739\n                    },\n                    {\n                        \"X\": 0.6235705614089966,\n                        \"Y\": 0.8487610220909119\n                    },\n                    {\n                        \"X\": 0.6235765218734741,\n                        \"Y\": 0.8577784299850464\n                    },\n                    {\n                        \"X\": 0.555121898651123,\n                        \"Y\": 0.8578336834907532\n                    }\n                ]\n            },\n            \"Id\": \"2d8e6b71-08d3-4648-b2a2-081af7f3ce52\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96497344970703,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006785423494875431,\n                    \"Height\": 0.009500393643975258,\n                    \"Left\": 0.6362107992172241,\n                    \"Top\": 0.8478953242301941\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6362107992172241,\n                        \"Y\": 0.8479008078575134\n                    },\n                    {\n                        \"X\": 0.6429898738861084,\n                        \"Y\": 0.8478953242301941\n                    },\n                    {\n                        \"X\": 0.6429961919784546,\n                        \"Y\": 0.857390284538269\n                    },\n                    {\n                        \"X\": 0.6362171173095703,\n                        \"Y\": 0.8573957681655884\n                    }\n                ]\n            },\n            \"Id\": \"73a551e5-f388-43ea-9725-f79b9df80243\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6942367553711,\n            \"Text\": \"343,873,551\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0682045966386795,\n                    \"Height\": 0.009140944108366966,\n                    \"Left\": 0.7016724944114685,\n                    \"Top\": 0.8481492400169373\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7016724944114685,\n                        \"Y\": 0.8482041954994202\n                    },\n                    {\n                        \"X\": 0.7698706388473511,\n                        \"Y\": 0.8481492400169373\n                    },\n                    {\n                        \"X\": 0.7698770761489868,\n                        \"Y\": 0.8572351336479187\n                    },\n                    {\n                        \"X\": 0.7016786932945251,\n                        \"Y\": 0.8572901487350464\n                    }\n                ]\n            },\n            \"Id\": \"f79ff45f-adf5-44b4-84f1-5cb2048a8134\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9753189086914,\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006685756612569094,\n                    \"Height\": 0.009126766584813595,\n                    \"Left\": 0.783098042011261,\n                    \"Top\": 0.8477442860603333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.783098042011261,\n                        \"Y\": 0.8477497100830078\n                    },\n                    {\n                        \"X\": 0.7897772789001465,\n                        \"Y\": 0.8477442860603333\n                    },\n                    {\n                        \"X\": 0.789783775806427,\n                        \"Y\": 0.8568657040596008\n                    },\n                    {\n                        \"X\": 0.7831044793128967,\n                        \"Y\": 0.8568710684776306\n                    }\n                ]\n            },\n            \"Id\": \"78487c44-64fe-4d5b-8b31-ec0fa999089d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.69205474853516,\n            \"Text\": \"1,073,481,016\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07876347005367279,\n                    \"Height\": 0.00902485754340887,\n                    \"Left\": 0.8272984027862549,\n                    \"Top\": 0.8480549454689026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8272984027862549,\n                        \"Y\": 0.8481184244155884\n                    },\n                    {\n                        \"X\": 0.9060551524162292,\n                        \"Y\": 0.8480549454689026\n                    },\n                    {\n                        \"X\": 0.9060618877410889,\n                        \"Y\": 0.8570162653923035\n                    },\n                    {\n                        \"X\": 0.8273048996925354,\n                        \"Y\": 0.857079803943634\n                    }\n                ]\n            },\n            \"Id\": \"8fa2cd66-8944-4f53-af9c-f6d3966f09dc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96913146972656,\n            \"Text\": \"The\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015156673267483711,\n                    \"Height\": 0.005945142358541489,\n                    \"Left\": 0.38523390889167786,\n                    \"Top\": 0.8943399786949158\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38523390889167786,\n                        \"Y\": 0.8943521976470947\n                    },\n                    {\n                        \"X\": 0.40038707852363586,\n                        \"Y\": 0.8943399786949158\n                    },\n                    {\n                        \"X\": 0.4003905653953552,\n                        \"Y\": 0.9002728462219238\n                    },\n                    {\n                        \"X\": 0.38523736596107483,\n                        \"Y\": 0.9002851247787476\n                    }\n                ]\n            },\n            \"Id\": \"b22b6c4e-eb03-4a7a-8b1c-dc4d38515b7d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9319076538086,\n            \"Text\": \"accompanying\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0575624480843544,\n                    \"Height\": 0.007035880349576473,\n                    \"Left\": 0.40260910987854004,\n                    \"Top\": 0.8946208953857422\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40260910987854004,\n                        \"Y\": 0.8946674466133118\n                    },\n                    {\n                        \"X\": 0.4601673185825348,\n                        \"Y\": 0.8946208953857422\n                    },\n                    {\n                        \"X\": 0.46017155051231384,\n                        \"Y\": 0.9016101956367493\n                    },\n                    {\n                        \"X\": 0.40261325240135193,\n                        \"Y\": 0.9016567468643188\n                    }\n                ]\n            },\n            \"Id\": \"24f02e04-a096-41b3-8a0f-6141adf3d27a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95085906982422,\n            \"Text\": \"notes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021987948566675186,\n                    \"Height\": 0.005469623953104019,\n                    \"Left\": 0.4620019793510437,\n                    \"Top\": 0.8948009014129639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4620019793510437,\n                        \"Y\": 0.8948186635971069\n                    },\n                    {\n                        \"X\": 0.4839865565299988,\n                        \"Y\": 0.8948009014129639\n                    },\n                    {\n                        \"X\": 0.4839899241924286,\n                        \"Y\": 0.9002526998519897\n                    },\n                    {\n                        \"X\": 0.46200528740882874,\n                        \"Y\": 0.9002705216407776\n                    }\n                ]\n            },\n            \"Id\": \"9b06ddab-43f5-42bc-bc8b-2d2a5eccea22\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97249603271484,\n            \"Text\": \"are\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013151994906365871,\n                    \"Height\": 0.004529515281319618,\n                    \"Left\": 0.4861593246459961,\n                    \"Top\": 0.8956434726715088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4861593246459961,\n                        \"Y\": 0.8956541419029236\n                    },\n                    {\n                        \"X\": 0.4993084967136383,\n                        \"Y\": 0.8956434726715088\n                    },\n                    {\n                        \"X\": 0.49931129813194275,\n                        \"Y\": 0.9001623392105103\n                    },\n                    {\n                        \"X\": 0.48616209626197815,\n                        \"Y\": 0.900173008441925\n                    }\n                ]\n            },\n            \"Id\": \"fd815b65-077a-42dc-9437-c365f5efe137\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96832275390625,\n            \"Text\": \"an\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009700272232294083,\n                    \"Height\": 0.0045206137001514435,\n                    \"Left\": 0.5013957619667053,\n                    \"Top\": 0.8957497477531433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5013957619667053,\n                        \"Y\": 0.8957576155662537\n                    },\n                    {\n                        \"X\": 0.511093258857727,\n                        \"Y\": 0.8957497477531433\n                    },\n                    {\n                        \"X\": 0.5110960602760315,\n                        \"Y\": 0.9002625346183777\n                    },\n                    {\n                        \"X\": 0.5013985633850098,\n                        \"Y\": 0.9002703428268433\n                    }\n                ]\n            },\n            \"Id\": \"94d9e355-3d8d-469a-896e-3d29ee44d052\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87032318115234,\n            \"Text\": \"integral\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030370036140084267,\n                    \"Height\": 0.007372532971203327,\n                    \"Left\": 0.5135372281074524,\n                    \"Top\": 0.8941120505332947\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5135372281074524,\n                        \"Y\": 0.8941366076469421\n                    },\n                    {\n                        \"X\": 0.543902575969696,\n                        \"Y\": 0.8941120505332947\n                    },\n                    {\n                        \"X\": 0.5439072251319885,\n                        \"Y\": 0.9014599919319153\n                    },\n                    {\n                        \"X\": 0.5135418176651001,\n                        \"Y\": 0.9014845490455627\n                    }\n                ]\n            },\n            \"Id\": \"5c66ff74-e003-4106-ad51-066464706678\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94562530517578,\n            \"Text\": \"part\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016365179792046547,\n                    \"Height\": 0.006762584205716848,\n                    \"Left\": 0.5460124611854553,\n                    \"Top\": 0.8946555852890015\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5460124611854553,\n                        \"Y\": 0.8946688175201416\n                    },\n                    {\n                        \"X\": 0.5623733401298523,\n                        \"Y\": 0.8946555852890015\n                    },\n                    {\n                        \"X\": 0.5623776912689209,\n                        \"Y\": 0.9014049172401428\n                    },\n                    {\n                        \"X\": 0.5460167527198792,\n                        \"Y\": 0.901418149471283\n                    }\n                ]\n            },\n            \"Id\": \"dd0afa0d-2fda-4a69-b1ff-be8cc936c39e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95594787597656,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00846938882023096,\n                    \"Height\": 0.006087325979024172,\n                    \"Left\": 0.5646920800209045,\n                    \"Top\": 0.8939589262008667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5646920800209045,\n                        \"Y\": 0.8939657807350159\n                    },\n                    {\n                        \"X\": 0.573157548904419,\n                        \"Y\": 0.8939589262008667\n                    },\n                    {\n                        \"X\": 0.5731614828109741,\n                        \"Y\": 0.9000394344329834\n                    },\n                    {\n                        \"X\": 0.5646959543228149,\n                        \"Y\": 0.9000462889671326\n                    }\n                ]\n            },\n            \"Id\": \"3e671aa5-40fd-4ba9-b2b3-591f185da851\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98084259033203,\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014896534383296967,\n                    \"Height\": 0.00588070647791028,\n                    \"Left\": 0.5743911266326904,\n                    \"Top\": 0.894203782081604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5743911266326904,\n                        \"Y\": 0.8942158222198486\n                    },\n                    {\n                        \"X\": 0.5892838835716248,\n                        \"Y\": 0.894203782081604\n                    },\n                    {\n                        \"X\": 0.5892876982688904,\n                        \"Y\": 0.900072455406189\n                    },\n                    {\n                        \"X\": 0.574394941329956,\n                        \"Y\": 0.9000844955444336\n                    }\n                ]\n            },\n            \"Id\": \"ca46aead-889c-4c8e-84a6-3b17814c5704\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 89.71881103515625,\n            \"Text\": \"statement.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04324474185705185,\n                    \"Height\": 0.005624563433229923,\n                    \"Left\": 0.5911629796028137,\n                    \"Top\": 0.8944628238677979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5911629796028137,\n                        \"Y\": 0.894497811794281\n                    },\n                    {\n                        \"X\": 0.6344040036201477,\n                        \"Y\": 0.8944628238677979\n                    },\n                    {\n                        \"X\": 0.6344076991081238,\n                        \"Y\": 0.9000523686408997\n                    },\n                    {\n                        \"X\": 0.5911665558815002,\n                        \"Y\": 0.9000874161720276\n                    }\n                ]\n            },\n            \"Id\": \"8a1e059d-c927-4cd5-8bfd-5e13ba7282d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.01716613769531,\n            \"Text\": \"COMPREHENSIVE\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13944756984710693,\n                    \"Height\": 0.008242000825703144,\n                    \"Left\": 0.08935688436031342,\n                    \"Top\": 0.9465320110321045\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08935688436031342,\n                        \"Y\": 0.9466452598571777\n                    },\n                    {\n                        \"X\": 0.22880010306835175,\n                        \"Y\": 0.9465320110321045\n                    },\n                    {\n                        \"X\": 0.22880445420742035,\n                        \"Y\": 0.9546605944633484\n                    },\n                    {\n                        \"X\": 0.08936089277267456,\n                        \"Y\": 0.9547739624977112\n                    }\n                ]\n            },\n            \"Id\": \"e8362ef0-91c4-4551-988e-a46b782ca6b7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94805908203125,\n            \"Text\": \"ANNUAL\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06687792390584946,\n                    \"Height\": 0.008089722134172916,\n                    \"Left\": 0.23376958072185516,\n                    \"Top\": 0.9464473128318787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23376958072185516,\n                        \"Y\": 0.946501612663269\n                    },\n                    {\n                        \"X\": 0.30064302682876587,\n                        \"Y\": 0.9464473128318787\n                    },\n                    {\n                        \"X\": 0.3006475269794464,\n                        \"Y\": 0.9544826745986938\n                    },\n                    {\n                        \"X\": 0.23377390205860138,\n                        \"Y\": 0.954537034034729\n                    }\n                ]\n            },\n            \"Id\": \"a7369f4d-6c56-4b76-b630-55778b49e737\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76405334472656,\n            \"Text\": \"FINANCIAL\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08832341432571411,\n                    \"Height\": 0.008222428150475025,\n                    \"Left\": 0.30592888593673706,\n                    \"Top\": 0.9462922215461731\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30592888593673706,\n                        \"Y\": 0.9463639855384827\n                    },\n                    {\n                        \"X\": 0.39424753189086914,\n                        \"Y\": 0.9462922215461731\n                    },\n                    {\n                        \"X\": 0.39425230026245117,\n                        \"Y\": 0.9544428586959839\n                    },\n                    {\n                        \"X\": 0.30593347549438477,\n                        \"Y\": 0.9545146226882935\n                    }\n                ]\n            },\n            \"Id\": \"a4c85dfe-044d-4135-b354-24943a484001\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9643325805664,\n            \"Text\": \"REPORT\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06280006468296051,\n                    \"Height\": 0.008181327022612095,\n                    \"Left\": 0.3995567560195923,\n                    \"Top\": 0.946160614490509\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3995567560195923,\n                        \"Y\": 0.9462116360664368\n                    },\n                    {\n                        \"X\": 0.46235188841819763,\n                        \"Y\": 0.946160614490509\n                    },\n                    {\n                        \"X\": 0.462356835603714,\n                        \"Y\": 0.9542909264564514\n                    },\n                    {\n                        \"X\": 0.3995615541934967,\n                        \"Y\": 0.9543419480323792\n                    }\n                ]\n            },\n            \"Id\": \"50894f50-6190-4892-886f-dd676dc4960e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87852478027344,\n            \"Text\": \"17\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012814981862902641,\n                    \"Height\": 0.008152082562446594,\n                    \"Left\": 0.928790271282196,\n                    \"Top\": 0.9467617869377136\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.928790271282196,\n                        \"Y\": 0.9467722177505493\n                    },\n                    {\n                        \"X\": 0.9415991306304932,\n                        \"Y\": 0.9467617869377136\n                    },\n                    {\n                        \"X\": 0.941605269908905,\n                        \"Y\": 0.9549034833908081\n                    },\n                    {\n                        \"X\": 0.9287964701652527,\n                        \"Y\": 0.954913854598999\n                    }\n                ]\n            },\n            \"Id\": \"842e742b-dae5-48a2-9bee-44c6b66b22ca\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 100.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.809859037399292,\n                    \"Height\": 0.7154920101165771,\n                    \"Left\": 0.1012827679514885,\n                    \"Top\": 0.14427992701530457\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1012827679514885,\n                        \"Y\": 0.14489425718784332\n                    },\n                    {\n                        \"X\": 0.910606324672699,\n                        \"Y\": 0.14427992701530457\n                    },\n                    {\n                        \"X\": 0.9111418128013611,\n                        \"Y\": 0.8591188788414001\n                    },\n                    {\n                        \"X\": 0.1016375795006752,\n                        \"Y\": 0.8597719073295593\n                    }\n                ]\n            },\n            \"Id\": \"5a6f2731-9bd9-4c24-904e-6cf5f63410eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f890d849-d86e-4ac7-aea9-25baae09b246\",\n                        \"b8e6587e-8a30-439e-83fe-284c4a8f8133\",\n                        \"3fe6ce00-5c7b-449a-b07f-2d6753d8bf8e\",\n                        \"7cd2784c-a5a2-4fed-9869-9f9fbdc38b90\",\n                        \"f534369b-64ff-4eda-a018-b1cc3bcf022e\",\n                        \"4bab52e4-0288-4b68-a6cb-408475635077\",\n                        \"9fab669d-6fcd-4c52-aa0c-03792b637fd3\",\n                        \"fa370ae6-8ec7-4738-bc6a-8c55cc440a3a\",\n                        \"10ce87b9-1442-4855-8f47-38e0181f1ac3\",\n                        \"06bd152f-468f-4307-bb2f-b3eb67d8d288\",\n                        \"a082d809-9fd3-458e-a7a3-f7fd2001e881\",\n                        \"427d5563-4985-4afd-9bd1-9d154d5ba071\",\n                        \"3d59b2e7-00e4-4e46-8010-fd5750ddc36f\",\n                        \"77decde1-142b-4e18-b346-0f41e1130a5d\",\n                        \"87ea362c-a7e3-4540-881a-64102d057f69\",\n                        \"606902cc-97c7-4d13-be33-e85fab393696\",\n                        \"acf0da4f-e290-47a1-b925-91618b0c3ab4\",\n                        \"66a8e927-1f94-4a7e-b8a0-d28fea7c20b4\",\n                        \"5cae045d-d88c-4891-abf9-0ecdf9a7d91f\",\n                        \"234d4117-8f0f-4f68-9490-1b1429a6a593\",\n                        \"79d9903c-5408-4d6d-b0c5-379c59ce1adc\",\n                        \"6a196976-72c5-4b44-8605-ae68cd632189\",\n                        \"da89cd11-41b6-4355-b99e-f5bb66e483c8\",\n                        \"01323df0-c500-42de-807f-f576e8c9cc16\",\n                        \"dbbec880-f2ab-4131-a479-0c8c224c221f\",\n                        \"39f1eb4e-fbd1-4e10-90c3-90f9f0e76c3d\",\n                        \"e9b09728-8444-42b5-ab9e-206d10427b49\",\n                        \"f303b859-93e6-4c05-ad6a-8afed51abc5b\",\n                        \"5b6be2eb-dd4f-42b8-9141-440422e369b7\",\n                        \"a6b85549-ce8b-4663-b6a5-174e2597acf2\",\n                        \"e4cb7276-0e2a-4c69-8064-482c77b62d2b\",\n                        \"0c333bbd-d2a9-457a-a608-f663077ffc3e\",\n                        \"99beffa5-057b-45ef-804f-5accff1963b7\",\n                        \"0966f531-e4ff-4809-9b3b-f64ebaebcfb6\",\n                        \"f72db1ad-d8a5-4236-a91d-f03cab230ac4\",\n                        \"8e402b89-7909-4656-8f11-e95698fdd561\",\n                        \"c352ed33-2b13-4f0a-af1d-511c696715a3\",\n                        \"297ef5f3-5b34-4306-9881-5267bb712193\",\n                        \"bac7346f-2b19-4474-8086-d96ffe724bfd\",\n                        \"bb5f46c6-4e91-4cec-b441-4a0c83e407e7\",\n                        \"e7b94847-980c-46af-9357-de95d46e46f6\",\n                        \"2e4874ff-4c35-4972-86fc-e45029b772b4\",\n                        \"60946fdf-6ac5-4466-8e1e-5ed035e6d785\",\n                        \"51de8ed1-6e3d-477a-bfe8-2e9fc5570044\",\n                        \"fd800b12-c032-4094-a62a-3182f6800a9b\",\n                        \"55a9157f-847d-4999-8486-64043f3e96b2\",\n                        \"99f458ed-189a-41b8-9ffa-24bda5c3f26f\",\n                        \"75048765-4334-490a-80b0-008da217c573\",\n                        \"4ed7f173-0681-4dce-8379-526681e3d8ff\",\n                        \"a566b277-75d4-4e2a-b623-d92517684750\",\n                        \"4212180c-159e-4005-be3a-b56e09e6317b\",\n                        \"c18c956c-ce4d-4439-9c09-47ffa83fc6a9\",\n                        \"e4898244-dc96-4160-a346-5e70748637dc\",\n                        \"a3a93655-678b-4f1e-80d1-521f756ed181\",\n                        \"67bbd26e-23c4-41ab-8b0a-39b93c0b844b\",\n                        \"5a383a59-a448-40e6-9bb2-12eb494bbf39\",\n                        \"6025d134-54ed-4ee6-a770-22c335d893f9\",\n                        \"ea09e671-6a00-4013-b59e-40544d38904d\",\n                        \"a1a9d978-0c7f-4621-ad12-fb9a18252592\",\n                        \"601cfc6c-daec-44ed-95f1-3da710abbf74\",\n                        \"bb522a9c-ca07-4495-89fe-e902eb47a300\",\n                        \"d73ba003-8a0d-4bdc-8cb9-eebae9f28704\",\n                        \"448a7b6c-868c-4d92-b496-746ac7839fae\",\n                        \"4b326bdf-d0b3-463c-888a-98b6d7873c78\",\n                        \"4d843195-e95d-4534-8083-082b43572fc8\",\n                        \"cd9cecdb-1824-4490-9db1-178f8840916d\",\n                        \"030b1aac-4ac0-427a-b244-be9207779b1b\",\n                        \"cc781aa1-2921-4131-9422-44630932eba2\",\n                        \"128a2f63-b51a-4daa-be14-6f8dc9905cdf\",\n                        \"8dc63b6c-45b5-43af-b511-08828197955b\",\n                        \"b699e572-35b6-44ba-8da7-48a098291d51\",\n                        \"760c94a4-0fa1-4ab1-8e18-3ed3e069b7fa\",\n                        \"b777d5ba-4e42-4423-bfa7-bc84c8e694cb\",\n                        \"dce34417-df94-48ec-9b49-52f6979051d8\",\n                        \"52a83854-0460-42d1-8273-e86a086e3dac\",\n                        \"77e9c0c5-a637-4d25-8bc2-8601a6f37110\",\n                        \"a896e929-b4b8-49c5-8ade-7a4f35c88ca9\",\n                        \"0d387fbe-56f3-466e-a4c7-7c0cbf3f215f\",\n                        \"5732df11-9738-482a-be89-2c1f42011ad3\",\n                        \"22c5658e-722f-4afa-b009-1ecdbdaed2c6\",\n                        \"98678752-1c79-49c4-a5b4-28079f4fe284\",\n                        \"31472b9a-a210-47f1-aebb-40661868ad2b\",\n                        \"b0069357-0adc-4050-927a-d387766946e5\",\n                        \"28f49279-5d7b-4aae-9702-cf676698a64c\",\n                        \"aea3a486-6b6f-4648-b23e-1096066ec6f6\",\n                        \"721736ec-fde1-4d69-a2b9-3de5e5fb1d2b\",\n                        \"bbe389bc-91b7-4492-b4cb-f4b209ef4489\",\n                        \"9dd4a917-bfb4-4d28-96f7-65c9b1698478\",\n                        \"bac9fc51-e411-4e40-9c64-5d6641b240fa\",\n                        \"3168dcc0-623d-429e-80c7-0d9bd769601f\",\n                        \"c0e49977-b28c-45b7-918a-9823aa3735d7\",\n                        \"02490977-5c51-4282-8890-3062b25cba7a\",\n                        \"a7935b40-6f4b-4e0e-9d01-681939299f32\",\n                        \"d8c678ba-318f-4255-b90f-04fca16dfd31\",\n                        \"ba88d040-97a3-46ee-8004-4dad5101653c\",\n                        \"c02d6a9c-5d55-4e36-af4a-25aa9f6ee035\",\n                        \"e9353563-a52d-4e71-94df-5b9cd7173ae7\",\n                        \"a5ff6540-6016-4c36-86de-f1d325bfd6cd\",\n                        \"12bc4c2c-f48d-40e1-a452-cc7f14bd5fee\",\n                        \"13197328-9ab1-403b-854e-eb3f62271be2\",\n                        \"fa76885e-7a0f-453c-950d-8242445471ad\",\n                        \"cc3e93c3-69ee-412f-8d5a-e66cf0f619ed\",\n                        \"992028d7-7a84-4ffd-afce-57d23159016f\",\n                        \"43594ae5-04da-436c-8854-e43f73744ea9\",\n                        \"974434f4-f5c4-47e0-b901-4d3dc3d08ee8\",\n                        \"e0f89b33-25a9-445a-b966-a2f07f721f0f\",\n                        \"54ab2811-0759-481d-9cd9-f0ccc7979f7e\",\n                        \"6e68dee5-8cda-4331-b59c-8f76cff753d1\",\n                        \"352459b1-4ad9-4a82-b9b6-152dbe6eb2fe\",\n                        \"7becae33-c2a5-458b-9923-43f4cd3ea04e\",\n                        \"20ab6270-501d-457a-ab59-0b87c4a3c017\",\n                        \"059c2b79-a8ea-433b-a840-50510c2739ac\",\n                        \"e8bcd5bf-1446-4f56-b134-0ad29295b8fe\",\n                        \"37908ef9-6bb3-4a6f-ad8d-0987b0476e86\",\n                        \"42771630-5b61-4a03-a8c3-b31c124d2fca\",\n                        \"1745df40-d50c-45ba-9d72-1dd6bca011f3\",\n                        \"3a338af0-b01e-4fdc-8029-1bf9a6e6f032\",\n                        \"3af16851-3467-43bc-bbe4-bb38335ac439\",\n                        \"cf7c0a62-52a2-49b5-ab62-c15ac42a7a4f\",\n                        \"25686602-754f-43d6-84dd-e970ca3ac30a\",\n                        \"6b247bec-0512-4a91-a69d-19713a8d1f14\",\n                        \"fc15e7b3-024f-4b15-8082-aa29364be9ab\",\n                        \"e12d78a4-c61a-47f1-bff3-af22a124c4d8\",\n                        \"da5d9288-3fd1-4b04-a436-375e4e1f2664\",\n                        \"28e544d8-1487-41b2-89dc-c504bbd44445\",\n                        \"0880bf5e-3584-4a7c-9886-fb9176e42d86\",\n                        \"8f4f58b1-e96e-407b-95bd-d1c6d5bd25b8\",\n                        \"b53bb3a4-59c9-455a-8862-8ad959a973cc\",\n                        \"2472b26e-019c-414c-9731-d5341b764667\",\n                        \"feb47097-0224-4f3c-b1d5-afb4201a69d7\",\n                        \"c395c7cd-9914-40f7-a444-f100fe0e2d61\",\n                        \"ed325be5-d3ea-477b-b023-6dab40681326\",\n                        \"ed5cc602-a4fa-441b-a875-a03579c442c7\",\n                        \"4a4f61cb-07b6-4747-b9f4-124d32656d10\",\n                        \"3548c3cb-4195-4514-9077-205fe6e63028\",\n                        \"7ed9f194-5da2-41ac-b206-0bedf4dd97cb\",\n                        \"67e71c61-d484-4b0c-930a-c7891906fd1b\",\n                        \"36145f48-7b25-4b91-a6f2-9bb08b7069cf\",\n                        \"d5886605-6d13-4684-a4f4-3e8445ec54fc\",\n                        \"79663fa5-110d-4365-9eeb-41696698f742\",\n                        \"5c190359-270c-4c7e-be2a-174ebeb8c502\",\n                        \"a3c950ab-c08b-41e9-800c-1caddbf73473\",\n                        \"8c20d3b9-5dcc-4dc9-bda6-2e5a4e218a09\",\n                        \"bd27a15f-ddd2-400e-be9d-c59fe8700bb6\",\n                        \"5fd60ef7-7332-407c-bdc8-fda92222b95f\",\n                        \"bcddf176-a639-44f4-8f03-0164eefd563a\",\n                        \"c61add70-d98f-493d-8063-1577ac20bc50\",\n                        \"3e3b5bf1-f823-4368-a037-4ac93cb54d80\",\n                        \"fc91926a-4bcb-4b05-9227-c2456579529a\",\n                        \"acc46913-609e-4287-bb22-b9acbe9470c5\",\n                        \"de394f56-9ecd-4e71-9215-ab7f2992b1e3\",\n                        \"7c2eda0e-eff2-4a9d-8a1c-2f962309c01b\",\n                        \"4f1f0511-e974-4b6c-82d8-9ebdcf6c85cf\",\n                        \"cc066bf0-bf82-4a0c-b99f-bf02f9c7fea2\",\n                        \"e4e0fa6a-31e8-4ef3-95b6-3ac3355c8435\",\n                        \"395f250a-6e6c-42ae-b7a8-7325cbcc467a\",\n                        \"350fb5c7-78cc-4c0a-b0cc-0a6acac9a05b\",\n                        \"02e8d5af-1bde-4f6f-834f-19190ba9969f\",\n                        \"d74b94d8-b33c-4a9c-8347-466af7d45b0a\",\n                        \"3d46f345-362a-40ad-bbf2-90e647d204eb\",\n                        \"dd9d1ccd-7b6c-4b74-9c2c-69096214ba9c\",\n                        \"ea1b70a7-0d0a-4a3a-b820-62886bcb74c9\",\n                        \"ea3f10b2-ab66-4e9b-83ba-2297e6a1a485\",\n                        \"27004a94-2ab4-48bb-8f12-2c36cf7f6d35\",\n                        \"90ae500f-fc8e-4478-8c45-4be4fc346348\",\n                        \"93307c2f-519b-4629-8c6d-88ce6b39941f\",\n                        \"4a67de6d-5a9d-4fa4-8db3-8483dd5e719b\",\n                        \"b04b5db5-d665-4f7e-a862-493cd9ba01e5\",\n                        \"2f3516e3-571f-4faa-98a6-e9327e9841c3\",\n                        \"7a6e1d44-6679-4de9-8791-54382bc56efa\",\n                        \"68c3d239-eef1-424d-b675-68bad51fda33\",\n                        \"877fad2a-49c0-41b7-a703-49a15b7b3c45\",\n                        \"093d6c0b-7e48-4dce-bcdd-291cc5ab813a\",\n                        \"308f8633-bf5f-43ac-a837-da9cb23add90\",\n                        \"d6e00685-2eb0-4e54-89d8-50bbb19b7864\",\n                        \"f0fdbabd-3103-4db7-9b71-ea332973e12d\",\n                        \"ea0c977c-3fbf-47ff-a772-e5f8f73d0199\",\n                        \"dee9123b-162f-4d6a-9784-a3adb6d87e1f\",\n                        \"d9f6e5bf-d44d-4349-b0e9-f5fc84c951c3\",\n                        \"b0d9fc30-c848-4172-b197-0293d6f763de\",\n                        \"10f83333-21f7-4b9f-97b2-66874fe5cb6c\",\n                        \"c72d99b6-34e3-49b1-bd43-4398f6bd86b2\",\n                        \"1a8fb33f-5fc4-4831-8466-86a31e4465d9\",\n                        \"2e392263-da6c-4b82-ae13-d84c09ff856e\",\n                        \"4d3468cd-9c96-4769-be52-2859179a942c\",\n                        \"5955dbef-3d16-4ec9-8454-fdce756523fa\",\n                        \"2dd1f2be-e8e0-45f8-852d-c5a9c90443bd\",\n                        \"d92c5233-b6ff-46bc-9e24-5dc361b4b8cb\",\n                        \"5d2025c0-974e-4bd9-aa70-846737c9d421\",\n                        \"fb34a6eb-d540-4202-832d-995137828798\",\n                        \"0474a62b-8531-4b5a-a054-c50a7abb11b4\",\n                        \"ef8d666c-1542-4615-b817-b9797d504dfc\",\n                        \"9302ce3a-00f5-492e-9e4b-44da82b7956a\",\n                        \"1df88b62-2f77-4182-9ce5-4013300ab17b\",\n                        \"768e4e0f-72c5-431c-9e30-85f8b5dca169\",\n                        \"191c11d4-091a-42e1-8f34-8b6a90e67c6f\",\n                        \"32c57ed4-5a92-44fb-8224-998c664f4984\",\n                        \"352241e9-bedd-420b-a0ec-d23d3911221a\",\n                        \"b773959d-487e-40f9-af74-6e58e7bf47fc\",\n                        \"e6a04af4-9f41-4c6e-9f7f-055ee31b83ce\",\n                        \"080b67f1-c172-4b0b-809b-57abcf125181\",\n                        \"c970c9a0-e753-46a5-95ef-49e14669bc8f\",\n                        \"f89e4024-89a0-4821-b10f-5294f21b1035\",\n                        \"70bf65be-23c4-4e7e-b893-9178c4960e76\",\n                        \"6e04f56c-34f4-4811-9b1b-4c7336ead57a\"\n                    ]\n                },\n                {\n                    \"Type\": \"MERGED_CELL\",\n                    \"Ids\": [\n                        \"8bac7b1d-8af7-4f32-bf77-cd189f125385\",\n                        \"8a2571c6-3e4f-4a42-889a-514aa5a09833\",\n                        \"d9aee964-7b2a-41ec-8201-e882930da692\",\n                        \"7b25d4b1-1a00-4da1-aa4a-39e0ef26c5b0\"\n                    ]\n                },\n                {\n                    \"Type\": \"TITLE\",\n                    \"Ids\": [\n                        \"715e10c4-c416-4f0f-bf36-e0e19861aff7\"\n                    ]\n                },\n                {\n                    \"Type\": \"FOOTER\",\n                    \"Ids\": [\n                        \"c211c600-0ca0-445c-b4f3-78d3498d6a81\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"STRUCTURED\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 97.119140625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27142462134361267,\n                    \"Height\": 0.047895219177007675,\n                    \"Left\": 0.1012827679514885,\n                    \"Top\": 0.14468824863433838\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1012827679514885,\n                        \"Y\": 0.14489425718784332\n                    },\n                    {\n                        \"X\": 0.3726796507835388,\n                        \"Y\": 0.14468824863433838\n                    },\n                    {\n                        \"X\": 0.3727073669433594,\n                        \"Y\": 0.19237659871578217\n                    },\n                    {\n                        \"X\": 0.10130643844604492,\n                        \"Y\": 0.19258347153663635\n                    }\n                ]\n            },\n            \"Id\": \"f890d849-d86e-4ac7-aea9-25baae09b246\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.361328125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104280829429626,\n                    \"Height\": 0.04778779298067093,\n                    \"Left\": 0.3726796507835388,\n                    \"Top\": 0.14458879828453064\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3726796507835388,\n                        \"Y\": 0.14468824863433838\n                    },\n                    {\n                        \"X\": 0.5036928057670593,\n                        \"Y\": 0.14458879828453064\n                    },\n                    {\n                        \"X\": 0.5037224888801575,\n                        \"Y\": 0.192276731133461\n                    },\n                    {\n                        \"X\": 0.3727073669433594,\n                        \"Y\": 0.19237659871578217\n                    }\n                ]\n            },\n            \"Id\": \"b8e6587e-8a30-439e-83fe-284c4a8f8133\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"baec9f64-9a13-4702-b9fd-fe5a69b7df2a\",\n                        \"6cadcdcf-4ebe-495b-b508-85c0279d4f6e\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.5078125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692999839782715,\n                    \"Height\": 0.04778425022959709,\n                    \"Left\": 0.5036928057670593,\n                    \"Top\": 0.1444924771785736\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5036928057670593,\n                        \"Y\": 0.14458879828453064\n                    },\n                    {\n                        \"X\": 0.6305912733078003,\n                        \"Y\": 0.1444924771785736\n                    },\n                    {\n                        \"X\": 0.6306228041648865,\n                        \"Y\": 0.19217999279499054\n                    },\n                    {\n                        \"X\": 0.5037224888801575,\n                        \"Y\": 0.192276731133461\n                    }\n                ]\n            },\n            \"Id\": \"3fe6ce00-5c7b-449a-b07f-2d6753d8bf8e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"730b5ec8-5cca-48e5-a8df-7bedb269d9ec\",\n                        \"f81c4eaf-9d75-442f-8951-74e0a29d9bbf\",\n                        \"e7511087-f58d-4519-82e5-3ee4ffac1b0b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 96.142578125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463167667388916,\n                    \"Height\": 0.047798559069633484,\n                    \"Left\": 0.6305912733078003,\n                    \"Top\": 0.14438143372535706\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6305912733078003,\n                        \"Y\": 0.1444924771785736\n                    },\n                    {\n                        \"X\": 0.776874303817749,\n                        \"Y\": 0.14438143372535706\n                    },\n                    {\n                        \"X\": 0.7769080400466919,\n                        \"Y\": 0.19206848740577698\n                    },\n                    {\n                        \"X\": 0.6306228041648865,\n                        \"Y\": 0.19217999279499054\n                    }\n                ]\n            },\n            \"Id\": \"7cd2784c-a5a2-4fed-9869-9f9fbdc38b90\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dc925817-2bc3-4401-ae06-53094e453fac\",\n                        \"488bf395-682f-4b72-ba29-59eab4465c6f\",\n                        \"6e9fe541-8352-4c26-834f-e4e8a7d7f7af\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.849609375,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337677240371704,\n                    \"Height\": 0.04778856411576271,\n                    \"Left\": 0.776874303817749,\n                    \"Top\": 0.14427992701530457\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.776874303817749,\n                        \"Y\": 0.14438143372535706\n                    },\n                    {\n                        \"X\": 0.910606324672699,\n                        \"Y\": 0.14427992701530457\n                    },\n                    {\n                        \"X\": 0.9106420278549194,\n                        \"Y\": 0.19196654856204987\n                    },\n                    {\n                        \"X\": 0.7769080400466919,\n                        \"Y\": 0.19206848740577698\n                    }\n                ]\n            },\n            \"Id\": \"f534369b-64ff-4eda-a018-b1cc3bcf022e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dc559009-1fbf-4f8c-8d4e-d0756b440a30\",\n                        \"bdb22b16-0656-42bf-ae71-db9de38086f5\",\n                        \"e8315f5d-d0fb-4300-915e-9d5aa359a744\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.68359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27144691348075867,\n                    \"Height\": 0.01611142046749592,\n                    \"Left\": 0.10126970708370209,\n                    \"Top\": 0.19237659871578217\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10126970708370209,\n                        \"Y\": 0.19258350133895874\n                    },\n                    {\n                        \"X\": 0.3727073669433594,\n                        \"Y\": 0.19237659871578217\n                    },\n                    {\n                        \"X\": 0.37271660566329956,\n                        \"Y\": 0.20828081667423248\n                    },\n                    {\n                        \"X\": 0.10127759724855423,\n                        \"Y\": 0.20848801732063293\n                    }\n                ]\n            },\n            \"Id\": \"4bab52e4-0288-4b68-a6cb-408475635077\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7b432d0-7d23-4c27-a6b0-a39dd54a1aa1\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.68359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102498650550842,\n                    \"Height\": 0.01600409485399723,\n                    \"Left\": 0.3727073669433594,\n                    \"Top\": 0.192276731133461\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727073669433594,\n                        \"Y\": 0.19237659871578217\n                    },\n                    {\n                        \"X\": 0.5037224888801575,\n                        \"Y\": 0.192276731133461\n                    },\n                    {\n                        \"X\": 0.5037323832511902,\n                        \"Y\": 0.20818081498146057\n                    },\n                    {\n                        \"X\": 0.37271660566329956,\n                        \"Y\": 0.20828081667423248\n                    }\n                ]\n            },\n            \"Id\": \"9fab669d-6fcd-4c52-aa0c-03792b637fd3\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.68359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691085040569305,\n                    \"Height\": 0.016000818461179733,\n                    \"Left\": 0.5037224888801575,\n                    \"Top\": 0.19217999279499054\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037224888801575,\n                        \"Y\": 0.192276731133461\n                    },\n                    {\n                        \"X\": 0.6306228041648865,\n                        \"Y\": 0.19217999279499054\n                    },\n                    {\n                        \"X\": 0.6306333541870117,\n                        \"Y\": 0.20808394253253937\n                    },\n                    {\n                        \"X\": 0.5037323832511902,\n                        \"Y\": 0.20818081498146057\n                    }\n                ]\n            },\n            \"Id\": \"fa370ae6-8ec7-4738-bc6a-8c55cc440a3a\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.68359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14629647135734558,\n                    \"Height\": 0.016015460714697838,\n                    \"Left\": 0.6306228041648865,\n                    \"Top\": 0.19206848740577698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306228041648865,\n                        \"Y\": 0.19217999279499054\n                    },\n                    {\n                        \"X\": 0.7769080400466919,\n                        \"Y\": 0.19206848740577698\n                    },\n                    {\n                        \"X\": 0.7769193053245544,\n                        \"Y\": 0.20797228813171387\n                    },\n                    {\n                        \"X\": 0.6306333541870117,\n                        \"Y\": 0.20808394253253937\n                    }\n                ]\n            },\n            \"Id\": \"10ce87b9-1442-4855-8f47-38e0181f1ac3\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.68359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13395732641220093,\n                    \"Height\": 0.016005897894501686,\n                    \"Left\": 0.7769080400466919,\n                    \"Top\": 0.19196638464927673\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769080400466919,\n                        \"Y\": 0.19206848740577698\n                    },\n                    {\n                        \"X\": 0.9108534455299377,\n                        \"Y\": 0.19196638464927673\n                    },\n                    {\n                        \"X\": 0.9108653664588928,\n                        \"Y\": 0.20787005126476288\n                    },\n                    {\n                        \"X\": 0.7769193053245544,\n                        \"Y\": 0.20797228813171387\n                    }\n                ]\n            },\n            \"Id\": \"06bd152f-468f-4307-bb2f-b3eb67d8d288\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.869140625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714104652404785,\n                    \"Height\": 0.014294154942035675,\n                    \"Left\": 0.10131432861089706,\n                    \"Top\": 0.20828081667423248\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10131432861089706,\n                        \"Y\": 0.20848798751831055\n                    },\n                    {\n                        \"X\": 0.37271660566329956,\n                        \"Y\": 0.20828081667423248\n                    },\n                    {\n                        \"X\": 0.3727248013019562,\n                        \"Y\": 0.2223675549030304\n                    },\n                    {\n                        \"X\": 0.10132131725549698,\n                        \"Y\": 0.22257497906684875\n                    }\n                ]\n            },\n            \"Id\": \"a082d809-9fd3-458e-a7a3-f7fd2001e881\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f91ab119-aa33-46ac-a6ea-57122b662448\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.16015625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102450966835022,\n                    \"Height\": 0.014186739921569824,\n                    \"Left\": 0.37271660566329956,\n                    \"Top\": 0.20818081498146057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37271660566329956,\n                        \"Y\": 0.20828081667423248\n                    },\n                    {\n                        \"X\": 0.5037323832511902,\n                        \"Y\": 0.20818081498146057\n                    },\n                    {\n                        \"X\": 0.5037411451339722,\n                        \"Y\": 0.22226741909980774\n                    },\n                    {\n                        \"X\": 0.3727248013019562,\n                        \"Y\": 0.2223675549030304\n                    }\n                ]\n            },\n            \"Id\": \"427d5563-4985-4afd-9bd1-9d154d5ba071\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b8a5f7bf-43a5-40b5-b261-73ea2de7b4bd\",\n                        \"fd707d05-aed2-4b83-9821-fa17b5c18c23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.306640625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269102841615677,\n                    \"Height\": 0.014183475635945797,\n                    \"Left\": 0.5037323832511902,\n                    \"Top\": 0.20808394253253937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037323832511902,\n                        \"Y\": 0.20818081498146057\n                    },\n                    {\n                        \"X\": 0.6306333541870117,\n                        \"Y\": 0.20808394253253937\n                    },\n                    {\n                        \"X\": 0.6306426525115967,\n                        \"Y\": 0.22217044234275818\n                    },\n                    {\n                        \"X\": 0.5037411451339722,\n                        \"Y\": 0.22226741909980774\n                    }\n                ]\n            },\n            \"Id\": \"3d59b2e7-00e4-4e46-8010-fd5750ddc36f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d8923b92-8ee3-4a78-9fc3-6f1b333ba720\",\n                        \"ff9e76e4-8608-4695-b8c1-b662340bf7bf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.892578125,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14629590511322021,\n                    \"Height\": 0.014198153279721737,\n                    \"Left\": 0.6306333541870117,\n                    \"Top\": 0.20797228813171387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306333541870117,\n                        \"Y\": 0.20808394253253937\n                    },\n                    {\n                        \"X\": 0.7769193053245544,\n                        \"Y\": 0.20797228813171387\n                    },\n                    {\n                        \"X\": 0.7769292593002319,\n                        \"Y\": 0.22205863893032074\n                    },\n                    {\n                        \"X\": 0.6306426525115967,\n                        \"Y\": 0.22217044234275818\n                    }\n                ]\n            },\n            \"Id\": \"77decde1-142b-4e18-b346-0f41e1130a5d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8c5e3791-64e2-4e8b-9dab-53a973d6f38b\",\n                        \"a41510d8-f14f-498e-b17d-71e4e8994b7b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.6484375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337452083826065,\n                    \"Height\": 0.01418843399733305,\n                    \"Left\": 0.7769193053245544,\n                    \"Top\": 0.20787020027637482\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769193053245544,\n                        \"Y\": 0.20797228813171387\n                    },\n                    {\n                        \"X\": 0.9106539487838745,\n                        \"Y\": 0.20787020027637482\n                    },\n                    {\n                        \"X\": 0.9106644988059998,\n                        \"Y\": 0.22195643186569214\n                    },\n                    {\n                        \"X\": 0.7769292593002319,\n                        \"Y\": 0.22205863893032074\n                    }\n                ]\n            },\n            \"Id\": \"87ea362c-a7e3-4540-881a-64102d057f69\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"436c7166-9f4c-4ab4-8840-9423ca23a2d8\",\n                        \"eccb40fa-0a3a-425e-861e-d26c3d58648e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.650390625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.271411657333374,\n                    \"Height\": 0.014294534921646118,\n                    \"Left\": 0.10132131725549698,\n                    \"Top\": 0.2223675549030304\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10132131725549698,\n                        \"Y\": 0.22257497906684875\n                    },\n                    {\n                        \"X\": 0.3727248013019562,\n                        \"Y\": 0.2223675549030304\n                    },\n                    {\n                        \"X\": 0.3727329969406128,\n                        \"Y\": 0.23645441234111786\n                    },\n                    {\n                        \"X\": 0.10132831335067749,\n                        \"Y\": 0.2366620898246765\n                    }\n                ]\n            },\n            \"Id\": \"606902cc-97c7-4d13-be33-e85fab393696\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fd55dda4-559e-41e0-a8a0-3bd9dcea7d28\",\n                        \"aad8f188-6fe8-4b7d-a8f1-1aeb38a648e2\",\n                        \"32bcce36-a711-40d5-9440-949e3ce75e4d\",\n                        \"33fedbd4-789d-4260-b778-fc86026cebfb\",\n                        \"83db5e43-f54f-4e8f-a13a-04bcd7680b17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.990234375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102509081363678,\n                    \"Height\": 0.014186987653374672,\n                    \"Left\": 0.3727248013019562,\n                    \"Top\": 0.22226741909980774\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727248013019562,\n                        \"Y\": 0.2223675549030304\n                    },\n                    {\n                        \"X\": 0.5037411451339722,\n                        \"Y\": 0.22226741909980774\n                    },\n                    {\n                        \"X\": 0.5037499070167542,\n                        \"Y\": 0.23635415732860565\n                    },\n                    {\n                        \"X\": 0.3727329969406128,\n                        \"Y\": 0.23645441234111786\n                    }\n                ]\n            },\n            \"Id\": \"acf0da4f-e290-47a1-b925-91618b0c3ab4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ba6a057f-7d96-4e7e-9b17-e5c1bde06381\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.13671875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691085040569305,\n                    \"Height\": 0.014183719642460346,\n                    \"Left\": 0.5037411451339722,\n                    \"Top\": 0.22217044234275818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037411451339722,\n                        \"Y\": 0.22226741909980774\n                    },\n                    {\n                        \"X\": 0.6306426525115967,\n                        \"Y\": 0.22217044234275818\n                    },\n                    {\n                        \"X\": 0.6306519508361816,\n                        \"Y\": 0.23625706136226654\n                    },\n                    {\n                        \"X\": 0.5037499070167542,\n                        \"Y\": 0.23635415732860565\n                    }\n                ]\n            },\n            \"Id\": \"66a8e927-1f94-4a7e-b8a0-d28fea7c20b4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6fc7dbcd-fe03-44c3-803c-7ebe355fd9bc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.72265625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14629656076431274,\n                    \"Height\": 0.014198414981365204,\n                    \"Left\": 0.6306426525115967,\n                    \"Top\": 0.22205863893032074\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306426525115967,\n                        \"Y\": 0.22217044234275818\n                    },\n                    {\n                        \"X\": 0.7769292593002319,\n                        \"Y\": 0.22205863893032074\n                    },\n                    {\n                        \"X\": 0.7769392132759094,\n                        \"Y\": 0.23614512383937836\n                    },\n                    {\n                        \"X\": 0.6306519508361816,\n                        \"Y\": 0.23625706136226654\n                    }\n                ]\n            },\n            \"Id\": \"5cae045d-d88c-4891-abf9-0ecdf9a7d91f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2c34db33-f16d-486f-941b-22ee31d2f260\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.4296875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374580442905426,\n                    \"Height\": 0.014188684523105621,\n                    \"Left\": 0.7769292593002319,\n                    \"Top\": 0.22195643186569214\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769292593002319,\n                        \"Y\": 0.22205863893032074\n                    },\n                    {\n                        \"X\": 0.9106644988059998,\n                        \"Y\": 0.22195643186569214\n                    },\n                    {\n                        \"X\": 0.910675048828125,\n                        \"Y\": 0.236042782664299\n                    },\n                    {\n                        \"X\": 0.7769392132759094,\n                        \"Y\": 0.23614512383937836\n                    }\n                ]\n            },\n            \"Id\": \"234d4117-8f0f-4f68-9490-1b1429a6a593\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bfd06762-ca71-4a7f-af66-8271dae79616\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.845703125,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27141284942626953,\n                    \"Height\": 0.014294914901256561,\n                    \"Left\": 0.10132831335067749,\n                    \"Top\": 0.23645441234111786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10132831335067749,\n                        \"Y\": 0.2366620898246765\n                    },\n                    {\n                        \"X\": 0.3727329969406128,\n                        \"Y\": 0.23645441234111786\n                    },\n                    {\n                        \"X\": 0.372741162776947,\n                        \"Y\": 0.2505413889884949\n                    },\n                    {\n                        \"X\": 0.1013353019952774,\n                        \"Y\": 0.2507493197917938\n                    }\n                ]\n            },\n            \"Id\": \"79d9903c-5408-4d6d-b0c5-379c59ce1adc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fff0dfa6-cc40-42b0-b76d-3d3a130144d6\",\n                        \"e3c8f645-a645-40e8-9cfb-56c25dc1fd66\",\n                        \"e0b1560a-e4db-4549-b1b9-c00ca1b0fe9e\",\n                        \"0f2bb40e-1d21-45e9-86b1-07bb15cf9a0e\",\n                        \"9738f038-d0da-4558-aad9-e3dbe36e7b6f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.185546875,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102567195892334,\n                    \"Height\": 0.01418723538517952,\n                    \"Left\": 0.3727329969406128,\n                    \"Top\": 0.23635415732860565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727329969406128,\n                        \"Y\": 0.23645441234111786\n                    },\n                    {\n                        \"X\": 0.5037499070167542,\n                        \"Y\": 0.23635415732860565\n                    },\n                    {\n                        \"X\": 0.5037586688995361,\n                        \"Y\": 0.2504410147666931\n                    },\n                    {\n                        \"X\": 0.372741162776947,\n                        \"Y\": 0.2505413889884949\n                    }\n                ]\n            },\n            \"Id\": \"6a196976-72c5-4b44-8605-ae68cd632189\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c76c8240-03b6-4956-b32d-f633365353bb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.283203125,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691140174865723,\n                    \"Height\": 0.01418396271765232,\n                    \"Left\": 0.5037499070167542,\n                    \"Top\": 0.23625706136226654\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037499070167542,\n                        \"Y\": 0.23635415732860565\n                    },\n                    {\n                        \"X\": 0.6306519508361816,\n                        \"Y\": 0.23625706136226654\n                    },\n                    {\n                        \"X\": 0.6306613087654114,\n                        \"Y\": 0.25034379959106445\n                    },\n                    {\n                        \"X\": 0.5037586688995361,\n                        \"Y\": 0.2504410147666931\n                    }\n                ]\n            },\n            \"Id\": \"da89cd11-41b6-4355-b99e-f5bb66e483c8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"76436d98-879d-4248-a553-0ba57c3ea2c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.91796875,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14629720151424408,\n                    \"Height\": 0.01419867668300867,\n                    \"Left\": 0.6306519508361816,\n                    \"Top\": 0.23614512383937836\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306519508361816,\n                        \"Y\": 0.23625706136226654\n                    },\n                    {\n                        \"X\": 0.7769392132759094,\n                        \"Y\": 0.23614512383937836\n                    },\n                    {\n                        \"X\": 0.7769491672515869,\n                        \"Y\": 0.25023171305656433\n                    },\n                    {\n                        \"X\": 0.6306613087654114,\n                        \"Y\": 0.25034379959106445\n                    }\n                ]\n            },\n            \"Id\": \"01323df0-c500-42de-807f-f576e8c9cc16\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"daba8bc2-64a5-4c3b-8a6f-1e288aea4d39\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374638557434082,\n                    \"Height\": 0.014188934117555618,\n                    \"Left\": 0.7769392132759094,\n                    \"Top\": 0.236042782664299\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769392132759094,\n                        \"Y\": 0.23614512383937836\n                    },\n                    {\n                        \"X\": 0.910675048828125,\n                        \"Y\": 0.236042782664299\n                    },\n                    {\n                        \"X\": 0.9106855988502502,\n                        \"Y\": 0.25012925267219543\n                    },\n                    {\n                        \"X\": 0.7769491672515869,\n                        \"Y\": 0.25023171305656433\n                    }\n                ]\n            },\n            \"Id\": \"dbbec880-f2ab-4131-a479-0c8c224c221f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1014e2a0-ab26-4fa1-9a35-fee8fcb37c9e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.041015625,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27141380310058594,\n                    \"Height\": 0.01384086161851883,\n                    \"Left\": 0.1013353019952774,\n                    \"Top\": 0.2505413889884949\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1013353019952774,\n                        \"Y\": 0.2507493197917938\n                    },\n                    {\n                        \"X\": 0.372741162776947,\n                        \"Y\": 0.2505413889884949\n                    },\n                    {\n                        \"X\": 0.37274909019470215,\n                        \"Y\": 0.26417407393455505\n                    },\n                    {\n                        \"X\": 0.10134206712245941,\n                        \"Y\": 0.2643822431564331\n                    }\n                ]\n            },\n            \"Id\": \"39f1eb4e-fbd1-4e10-90c3-90f9f0e76c3d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c79c6bbe-98b6-44f2-b88c-517adef52bf4\",\n                        \"480b9067-3acd-4dcb-afef-5e4150c215a7\",\n                        \"43b20773-d42b-46b6-b98c-3e3a4eddc5f0\",\n                        \"1f175a8d-c155-462b-9e87-27bc631e0dab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.380859375,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102595508098602,\n                    \"Height\": 0.013733058236539364,\n                    \"Left\": 0.372741162776947,\n                    \"Top\": 0.2504410147666931\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.372741162776947,\n                        \"Y\": 0.2505413889884949\n                    },\n                    {\n                        \"X\": 0.5037586688995361,\n                        \"Y\": 0.2504410147666931\n                    },\n                    {\n                        \"X\": 0.5037671327590942,\n                        \"Y\": 0.26407358050346375\n                    },\n                    {\n                        \"X\": 0.37274909019470215,\n                        \"Y\": 0.26417407393455505\n                    }\n                ]\n            },\n            \"Id\": \"e9b09728-8444-42b5-ab9e-206d10427b49\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ea750ea-92c7-41e1-9070-5fd4b1634bb2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.478515625,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691165506839752,\n                    \"Height\": 0.013729785569012165,\n                    \"Left\": 0.5037586688995361,\n                    \"Top\": 0.25034379959106445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037586688995361,\n                        \"Y\": 0.2504410147666931\n                    },\n                    {\n                        \"X\": 0.6306613087654114,\n                        \"Y\": 0.25034379959106445\n                    },\n                    {\n                        \"X\": 0.6306703090667725,\n                        \"Y\": 0.26397624611854553\n                    },\n                    {\n                        \"X\": 0.5037671327590942,\n                        \"Y\": 0.26407358050346375\n                    }\n                ]\n            },\n            \"Id\": \"f303b859-93e6-4c05-ad6a-8afed51abc5b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e9707a59-561f-4970-a234-5e542c5b5075\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.11328125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14629751443862915,\n                    \"Height\": 0.013744521886110306,\n                    \"Left\": 0.6306613087654114,\n                    \"Top\": 0.25023171305656433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306613087654114,\n                        \"Y\": 0.25034379959106445\n                    },\n                    {\n                        \"X\": 0.7769491672515869,\n                        \"Y\": 0.25023171305656433\n                    },\n                    {\n                        \"X\": 0.7769588232040405,\n                        \"Y\": 0.26386404037475586\n                    },\n                    {\n                        \"X\": 0.6306703090667725,\n                        \"Y\": 0.26397624611854553\n                    }\n                ]\n            },\n            \"Id\": \"5b6be2eb-dd4f-42b8-9141-440422e369b7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"12789a4c-36b5-4038-b4e8-19a4d8ab25b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.8203125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374663889408112,\n                    \"Height\": 0.013734771870076656,\n                    \"Left\": 0.7769491672515869,\n                    \"Top\": 0.25012925267219543\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769491672515869,\n                        \"Y\": 0.25023171305656433\n                    },\n                    {\n                        \"X\": 0.9106855988502502,\n                        \"Y\": 0.25012925267219543\n                    },\n                    {\n                        \"X\": 0.9106957912445068,\n                        \"Y\": 0.2637614607810974\n                    },\n                    {\n                        \"X\": 0.7769588232040405,\n                        \"Y\": 0.26386404037475586\n                    }\n                ]\n            },\n            \"Id\": \"a6b85549-ce8b-4663-b6a5-174e2597acf2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"edb0b2fd-7956-407b-9e70-9a08e4283845\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.626953125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27141493558883667,\n                    \"Height\": 0.01384122483432293,\n                    \"Left\": 0.10134206712245941,\n                    \"Top\": 0.26417407393455505\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10134206712245941,\n                        \"Y\": 0.2643822431564331\n                    },\n                    {\n                        \"X\": 0.37274909019470215,\n                        \"Y\": 0.26417407393455505\n                    },\n                    {\n                        \"X\": 0.3727570176124573,\n                        \"Y\": 0.2778068780899048\n                    },\n                    {\n                        \"X\": 0.10134883970022202,\n                        \"Y\": 0.2780153155326843\n                    }\n                ]\n            },\n            \"Id\": \"e4cb7276-0e2a-4c69-8064-482c77b62d2b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23bfd58e-d98c-4a0d-9af7-089fab375dcf\",\n                        \"e7751c23-31ea-4ae8-9694-43d75d7386f2\",\n                        \"6c2f0876-539d-4abd-8e51-c99435ca811a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.91796875,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310265213251114,\n                    \"Height\": 0.013733293861150742,\n                    \"Left\": 0.37274909019470215,\n                    \"Top\": 0.26407358050346375\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37274909019470215,\n                        \"Y\": 0.26417407393455505\n                    },\n                    {\n                        \"X\": 0.5037671327590942,\n                        \"Y\": 0.26407358050346375\n                    },\n                    {\n                        \"X\": 0.5037755966186523,\n                        \"Y\": 0.2777062654495239\n                    },\n                    {\n                        \"X\": 0.3727570176124573,\n                        \"Y\": 0.2778068780899048\n                    }\n                ]\n            },\n            \"Id\": \"0c333bbd-d2a9-457a-a608-f663077ffc3e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"902da998-adf1-4594-ab83-cf2b816bbd9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269122064113617,\n                    \"Height\": 0.013730017468333244,\n                    \"Left\": 0.5037671327590942,\n                    \"Top\": 0.26397624611854553\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037671327590942,\n                        \"Y\": 0.26407358050346375\n                    },\n                    {\n                        \"X\": 0.6306703090667725,\n                        \"Y\": 0.26397624611854553\n                    },\n                    {\n                        \"X\": 0.6306793093681335,\n                        \"Y\": 0.27760881185531616\n                    },\n                    {\n                        \"X\": 0.5037755966186523,\n                        \"Y\": 0.2777062654495239\n                    }\n                ]\n            },\n            \"Id\": \"99beffa5-057b-45ef-804f-5accff1963b7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b12443c3-1ae3-45e2-a310-4bc43f791c92\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.650390625,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1462981402873993,\n                    \"Height\": 0.013744771480560303,\n                    \"Left\": 0.6306703090667725,\n                    \"Top\": 0.26386404037475586\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306703090667725,\n                        \"Y\": 0.26397624611854553\n                    },\n                    {\n                        \"X\": 0.7769588232040405,\n                        \"Y\": 0.26386404037475586\n                    },\n                    {\n                        \"X\": 0.7769684791564941,\n                        \"Y\": 0.27749645709991455\n                    },\n                    {\n                        \"X\": 0.6306793093681335,\n                        \"Y\": 0.27760881185531616\n                    }\n                ]\n            },\n            \"Id\": \"0966f531-e4ff-4809-9b3b-f64ebaebcfb6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d3494a9b-5930-4022-9ca1-4168bf711b6d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.40625,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374720513820648,\n                    \"Height\": 0.013735010288655758,\n                    \"Left\": 0.7769588232040405,\n                    \"Top\": 0.2637614607810974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769588232040405,\n                        \"Y\": 0.26386404037475586\n                    },\n                    {\n                        \"X\": 0.9106957912445068,\n                        \"Y\": 0.2637614607810974\n                    },\n                    {\n                        \"X\": 0.9107060432434082,\n                        \"Y\": 0.27739375829696655\n                    },\n                    {\n                        \"X\": 0.7769684791564941,\n                        \"Y\": 0.27749645709991455\n                    }\n                ]\n            },\n            \"Id\": \"f72db1ad-d8a5-4236-a91d-f03cab230ac4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"321596e2-ab0c-49d4-9fa9-66cfca1cb94f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.236328125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714163661003113,\n                    \"Height\": 0.014296029694378376,\n                    \"Left\": 0.10134883970022202,\n                    \"Top\": 0.2778068780899048\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10134883970022202,\n                        \"Y\": 0.2780153155326843\n                    },\n                    {\n                        \"X\": 0.3727570176124573,\n                        \"Y\": 0.2778068780899048\n                    },\n                    {\n                        \"X\": 0.3727652132511139,\n                        \"Y\": 0.29189422726631165\n                    },\n                    {\n                        \"X\": 0.10135582834482193,\n                        \"Y\": 0.2921029031276703\n                    }\n                ]\n            },\n            \"Id\": \"8e402b89-7909-4656-8f11-e95698fdd561\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5c8f0329-894b-469d-b3b4-469dd304263e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.52734375,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102735579013824,\n                    \"Height\": 0.01418796181678772,\n                    \"Left\": 0.3727570176124573,\n                    \"Top\": 0.2777062654495239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727570176124573,\n                        \"Y\": 0.2778068780899048\n                    },\n                    {\n                        \"X\": 0.5037755966186523,\n                        \"Y\": 0.2777062654495239\n                    },\n                    {\n                        \"X\": 0.5037843585014343,\n                        \"Y\": 0.29179346561431885\n                    },\n                    {\n                        \"X\": 0.3727652132511139,\n                        \"Y\": 0.29189422726631165\n                    }\n                ]\n            },\n            \"Id\": \"c352ed33-2b13-4f0a-af1d-511c696715a3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3c6e87aa-208f-429c-aeeb-500035779390\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.673828125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691304087638855,\n                    \"Height\": 0.014184677973389626,\n                    \"Left\": 0.5037755966186523,\n                    \"Top\": 0.27760881185531616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037755966186523,\n                        \"Y\": 0.2777062654495239\n                    },\n                    {\n                        \"X\": 0.6306793093681335,\n                        \"Y\": 0.27760881185531616\n                    },\n                    {\n                        \"X\": 0.6306886672973633,\n                        \"Y\": 0.29169589281082153\n                    },\n                    {\n                        \"X\": 0.5037843585014343,\n                        \"Y\": 0.29179346561431885\n                    }\n                ]\n            },\n            \"Id\": \"297ef5f3-5b34-4306-9881-5267bb712193\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"20273c93-750d-4493-b407-ee2856cbb58f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.259765625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1462990939617157,\n                    \"Height\": 0.014199445024132729,\n                    \"Left\": 0.6306793093681335,\n                    \"Top\": 0.27749645709991455\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306793093681335,\n                        \"Y\": 0.27760881185531616\n                    },\n                    {\n                        \"X\": 0.7769684791564941,\n                        \"Y\": 0.27749645709991455\n                    },\n                    {\n                        \"X\": 0.7769784331321716,\n                        \"Y\": 0.29158341884613037\n                    },\n                    {\n                        \"X\": 0.6306886672973633,\n                        \"Y\": 0.29169589281082153\n                    }\n                ]\n            },\n            \"Id\": \"bac7346f-2b19-4474-8086-d96ffe724bfd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"892ea0bb-5931-40df-af87-eaea82e6a830\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.015625,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337481141090393,\n                    \"Height\": 0.01418966893106699,\n                    \"Left\": 0.7769684791564941,\n                    \"Top\": 0.27739375829696655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769684791564941,\n                        \"Y\": 0.27749645709991455\n                    },\n                    {\n                        \"X\": 0.9107060432434082,\n                        \"Y\": 0.27739375829696655\n                    },\n                    {\n                        \"X\": 0.9107165932655334,\n                        \"Y\": 0.2914806008338928\n                    },\n                    {\n                        \"X\": 0.7769784331321716,\n                        \"Y\": 0.29158341884613037\n                    }\n                ]\n            },\n            \"Id\": \"bb5f46c6-4e91-4cec-b441-4a0c83e407e7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e03d8be1-087d-46d9-ac84-0a4b182699b8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.138671875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714172899723053,\n                    \"Height\": 0.013841965235769749,\n                    \"Left\": 0.10135582834482193,\n                    \"Top\": 0.29189422726631165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10135582834482193,\n                        \"Y\": 0.2921029031276703\n                    },\n                    {\n                        \"X\": 0.3727652132511139,\n                        \"Y\": 0.29189422726631165\n                    },\n                    {\n                        \"X\": 0.372773140668869,\n                        \"Y\": 0.3055272400379181\n                    },\n                    {\n                        \"X\": 0.10136259347200394,\n                        \"Y\": 0.3057361841201782\n                    }\n                ]\n            },\n            \"Id\": \"e7b94847-980c-46af-9357-de95d46e46f6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b22ec062-f769-49e0-b562-89a99d7fab4e\",\n                        \"7e7d56a9-8a9c-46c9-b565-ac026ab25642\",\n                        \"528f0483-cc0a-4210-bfe8-65c460220167\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.4296875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102765381336212,\n                    \"Height\": 0.013733772560954094,\n                    \"Left\": 0.3727652132511139,\n                    \"Top\": 0.29179346561431885\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727652132511139,\n                        \"Y\": 0.29189422726631165\n                    },\n                    {\n                        \"X\": 0.5037843585014343,\n                        \"Y\": 0.29179346561431885\n                    },\n                    {\n                        \"X\": 0.5037928819656372,\n                        \"Y\": 0.30542638897895813\n                    },\n                    {\n                        \"X\": 0.372773140668869,\n                        \"Y\": 0.3055272400379181\n                    }\n                ]\n            },\n            \"Id\": \"2e4874ff-4c35-4972-86fc-e45029b772b4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"24b669f9-5e7d-408e-aa23-54dae6d1c933\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.576171875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691329419612885,\n                    \"Height\": 0.013730489648878574,\n                    \"Left\": 0.5037843585014343,\n                    \"Top\": 0.29169589281082153\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037843585014343,\n                        \"Y\": 0.29179346561431885\n                    },\n                    {\n                        \"X\": 0.6306886672973633,\n                        \"Y\": 0.29169589281082153\n                    },\n                    {\n                        \"X\": 0.6306976675987244,\n                        \"Y\": 0.30532869696617126\n                    },\n                    {\n                        \"X\": 0.5037928819656372,\n                        \"Y\": 0.30542638897895813\n                    }\n                ]\n            },\n            \"Id\": \"60946fdf-6ac5-4466-8e1e-5ed035e6d785\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2864a5e-587a-4639-829d-72b0c6b6dc73\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.162109375,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14629940688610077,\n                    \"Height\": 0.013745279051363468,\n                    \"Left\": 0.6306886672973633,\n                    \"Top\": 0.29158341884613037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306886672973633,\n                        \"Y\": 0.29169589281082153\n                    },\n                    {\n                        \"X\": 0.7769784331321716,\n                        \"Y\": 0.29158341884613037\n                    },\n                    {\n                        \"X\": 0.7769880890846252,\n                        \"Y\": 0.30521610379219055\n                    },\n                    {\n                        \"X\": 0.6306976675987244,\n                        \"Y\": 0.30532869696617126\n                    }\n                ]\n            },\n            \"Id\": \"51de8ed1-6e3d-477a-bfe8-2e9fc5570044\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8de454c9-3e08-41ac-927e-8dbaf05d7d42\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.91796875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337483674287796,\n                    \"Height\": 0.013735494576394558,\n                    \"Left\": 0.7769784331321716,\n                    \"Top\": 0.2914806008338928\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769784331321716,\n                        \"Y\": 0.29158341884613037\n                    },\n                    {\n                        \"X\": 0.9107165932655334,\n                        \"Y\": 0.2914806008338928\n                    },\n                    {\n                        \"X\": 0.91072678565979,\n                        \"Y\": 0.30511313676834106\n                    },\n                    {\n                        \"X\": 0.7769880890846252,\n                        \"Y\": 0.30521610379219055\n                    }\n                ]\n            },\n            \"Id\": \"fd800b12-c032-4094-a62a-3182f6800a9b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"01554a8b-b69d-4a70-b2e8-c497c92ae92b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.6015625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714184522628784,\n                    \"Height\": 0.013842328451573849,\n                    \"Left\": 0.10136259347200394,\n                    \"Top\": 0.3055272400379181\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10136259347200394,\n                        \"Y\": 0.3057361841201782\n                    },\n                    {\n                        \"X\": 0.372773140668869,\n                        \"Y\": 0.3055272400379181\n                    },\n                    {\n                        \"X\": 0.37278103828430176,\n                        \"Y\": 0.3191604018211365\n                    },\n                    {\n                        \"X\": 0.10136935859918594,\n                        \"Y\": 0.3193695843219757\n                    }\n                ]\n            },\n            \"Id\": \"55a9157f-847d-4999-8486-64043f3e96b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"032bc09a-35f2-4b78-ac48-0937975955f7\",\n                        \"3e3f37f7-b97b-4c78-a962-c144ff599b39\",\n                        \"6c2c6d0e-675e-4083-849b-52087fe65a50\",\n                        \"7971b6bb-092f-4c61-8c9b-ba4c7b6b10f7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.94140625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310282051563263,\n                    \"Height\": 0.013734008185565472,\n                    \"Left\": 0.372773140668869,\n                    \"Top\": 0.30542638897895813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.372773140668869,\n                        \"Y\": 0.3055272400379181\n                    },\n                    {\n                        \"X\": 0.5037928819656372,\n                        \"Y\": 0.30542638897895813\n                    },\n                    {\n                        \"X\": 0.5038013458251953,\n                        \"Y\": 0.31905943155288696\n                    },\n                    {\n                        \"X\": 0.37278103828430176,\n                        \"Y\": 0.3191604018211365\n                    }\n                ]\n            },\n            \"Id\": \"99f458ed-189a-41b8-9ffa-24bda5c3f26f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f550dd83-1c12-4977-a168-c1e112b79004\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.087890625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691384553909302,\n                    \"Height\": 0.013730721548199654,\n                    \"Left\": 0.5037928819656372,\n                    \"Top\": 0.30532869696617126\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037928819656372,\n                        \"Y\": 0.30542638897895813\n                    },\n                    {\n                        \"X\": 0.6306976675987244,\n                        \"Y\": 0.30532869696617126\n                    },\n                    {\n                        \"X\": 0.6307066679000854,\n                        \"Y\": 0.31896162033081055\n                    },\n                    {\n                        \"X\": 0.5038013458251953,\n                        \"Y\": 0.31905943155288696\n                    }\n                ]\n            },\n            \"Id\": \"75048765-4334-490a-80b0-008da217c573\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b9057b1e-1477-4cd3-bd25-6b485fa7e187\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.673828125,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463000327348709,\n                    \"Height\": 0.013745528645813465,\n                    \"Left\": 0.6306976675987244,\n                    \"Top\": 0.30521610379219055\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6306976675987244,\n                        \"Y\": 0.30532869696617126\n                    },\n                    {\n                        \"X\": 0.7769880890846252,\n                        \"Y\": 0.30521610379219055\n                    },\n                    {\n                        \"X\": 0.7769976854324341,\n                        \"Y\": 0.3188488781452179\n                    },\n                    {\n                        \"X\": 0.6307066679000854,\n                        \"Y\": 0.31896162033081055\n                    }\n                ]\n            },\n            \"Id\": \"4ed7f173-0681-4dce-8379-526681e3d8ff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"630bc400-368b-425c-8baa-4f673c053bec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.380859375,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374893367290497,\n                    \"Height\": 0.01373573299497366,\n                    \"Left\": 0.7769880890846252,\n                    \"Top\": 0.30511313676834106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769880890846252,\n                        \"Y\": 0.30521610379219055\n                    },\n                    {\n                        \"X\": 0.91072678565979,\n                        \"Y\": 0.30511313676834106\n                    },\n                    {\n                        \"X\": 0.9107369780540466,\n                        \"Y\": 0.31874579191207886\n                    },\n                    {\n                        \"X\": 0.7769976854324341,\n                        \"Y\": 0.3188488781452179\n                    }\n                ]\n            },\n            \"Id\": \"a566b277-75d4-4e2a-b623-d92517684750\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9c9894be-54c8-4783-b2fa-8a67ed5a635a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.84375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27141961455345154,\n                    \"Height\": 0.013842692598700523,\n                    \"Left\": 0.10136935859918594,\n                    \"Top\": 0.3191604018211365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10136935859918594,\n                        \"Y\": 0.3193695843219757\n                    },\n                    {\n                        \"X\": 0.37278103828430176,\n                        \"Y\": 0.3191604018211365\n                    },\n                    {\n                        \"X\": 0.3727889657020569,\n                        \"Y\": 0.3327936828136444\n                    },\n                    {\n                        \"X\": 0.10137613117694855,\n                        \"Y\": 0.33300310373306274\n                    }\n                ]\n            },\n            \"Id\": \"4212180c-159e-4005-be3a-b56e09e6317b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"27c296c4-2c5e-4a58-8c58-662b816e9c56\",\n                        \"63339557-f8ac-4036-9b5d-26b38940d17d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.18359375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102877140045166,\n                    \"Height\": 0.01373424381017685,\n                    \"Left\": 0.37278103828430176,\n                    \"Top\": 0.31905943155288696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37278103828430176,\n                        \"Y\": 0.3191604018211365\n                    },\n                    {\n                        \"X\": 0.5038013458251953,\n                        \"Y\": 0.31905943155288696\n                    },\n                    {\n                        \"X\": 0.5038098096847534,\n                        \"Y\": 0.33269256353378296\n                    },\n                    {\n                        \"X\": 0.3727889657020569,\n                        \"Y\": 0.3327936828136444\n                    }\n                ]\n            },\n            \"Id\": \"c18c956c-ce4d-4439-9c09-47ffa83fc6a9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1209d34c-e5c2-4059-bc06-f578f1c6ef11\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.330078125,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.126914381980896,\n                    \"Height\": 0.013730953447520733,\n                    \"Left\": 0.5038013458251953,\n                    \"Top\": 0.31896162033081055\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038013458251953,\n                        \"Y\": 0.31905943155288696\n                    },\n                    {\n                        \"X\": 0.6307066679000854,\n                        \"Y\": 0.31896162033081055\n                    },\n                    {\n                        \"X\": 0.6307157278060913,\n                        \"Y\": 0.332594633102417\n                    },\n                    {\n                        \"X\": 0.5038098096847534,\n                        \"Y\": 0.33269256353378296\n                    }\n                ]\n            },\n            \"Id\": \"e4898244-dc96-4160-a346-5e70748637dc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0b5d1748-3581-4ee9-80e8-9b6f59618b16\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.916015625,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630065858364105,\n                    \"Height\": 0.013745778240263462,\n                    \"Left\": 0.6307066679000854,\n                    \"Top\": 0.3188488781452179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307066679000854,\n                        \"Y\": 0.31896162033081055\n                    },\n                    {\n                        \"X\": 0.7769976854324341,\n                        \"Y\": 0.3188488781452179\n                    },\n                    {\n                        \"X\": 0.7770073413848877,\n                        \"Y\": 0.3324817717075348\n                    },\n                    {\n                        \"X\": 0.6307157278060913,\n                        \"Y\": 0.332594633102417\n                    }\n                ]\n            },\n            \"Id\": \"a3a93655-678b-4f1e-80d1-521f756ed181\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a797dc1d-3266-4dc3-8fb6-8f570e9c1541\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.623046875,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374949991703033,\n                    \"Height\": 0.013735970482230186,\n                    \"Left\": 0.7769976854324341,\n                    \"Top\": 0.31874579191207886\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7769976854324341,\n                        \"Y\": 0.3188488781452179\n                    },\n                    {\n                        \"X\": 0.9107369780540466,\n                        \"Y\": 0.31874579191207886\n                    },\n                    {\n                        \"X\": 0.910747230052948,\n                        \"Y\": 0.3323785662651062\n                    },\n                    {\n                        \"X\": 0.7770073413848877,\n                        \"Y\": 0.3324817717075348\n                    }\n                ]\n            },\n            \"Id\": \"67bbd26e-23c4-41ab-8b0a-39b93c0b844b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"005ab816-8dd1-479b-a3d0-4d01e92f9103\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.453125,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27142050862312317,\n                    \"Height\": 0.013388600200414658,\n                    \"Left\": 0.10137613117694855,\n                    \"Top\": 0.3327936828136444\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10137613117694855,\n                        \"Y\": 0.33300310373306274\n                    },\n                    {\n                        \"X\": 0.3727889657020569,\n                        \"Y\": 0.3327936828136444\n                    },\n                    {\n                        \"X\": 0.3727966248989105,\n                        \"Y\": 0.34597259759902954\n                    },\n                    {\n                        \"X\": 0.10138267278671265,\n                        \"Y\": 0.346182256937027\n                    }\n                ]\n            },\n            \"Id\": \"5a383a59-a448-40e6-9bb2-12eb494bbf39\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"765c2d5d-6927-48a9-9d46-ea893b3e337e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.79296875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13102903962135315,\n                    \"Height\": 0.013280031271278858,\n                    \"Left\": 0.3727889657020569,\n                    \"Top\": 0.33269256353378296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727889657020569,\n                        \"Y\": 0.3327936828136444\n                    },\n                    {\n                        \"X\": 0.5038098096847534,\n                        \"Y\": 0.33269256353378296\n                    },\n                    {\n                        \"X\": 0.5038180351257324,\n                        \"Y\": 0.3458713889122009\n                    },\n                    {\n                        \"X\": 0.3727966248989105,\n                        \"Y\": 0.34597259759902954\n                    }\n                ]\n            },\n            \"Id\": \"6025d134-54ed-4ee6-a770-22c335d893f9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b61d66b6-4d34-4e40-b8b4-5477bc30a282\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.939453125,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269146203994751,\n                    \"Height\": 0.013276740908622742,\n                    \"Left\": 0.5038098096847534,\n                    \"Top\": 0.332594633102417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038098096847534,\n                        \"Y\": 0.33269256353378296\n                    },\n                    {\n                        \"X\": 0.6307157278060913,\n                        \"Y\": 0.332594633102417\n                    },\n                    {\n                        \"X\": 0.6307244300842285,\n                        \"Y\": 0.3457733392715454\n                    },\n                    {\n                        \"X\": 0.5038180351257324,\n                        \"Y\": 0.3458713889122009\n                    }\n                ]\n            },\n            \"Id\": \"ea09e671-6a00-4013-b59e-40544d38904d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4c4a0302-3e5c-49b0-b75d-47589b3f52ba\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.525390625,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630095660686493,\n                    \"Height\": 0.013291587121784687,\n                    \"Left\": 0.6307157278060913,\n                    \"Top\": 0.3324817717075348\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307157278060913,\n                        \"Y\": 0.332594633102417\n                    },\n                    {\n                        \"X\": 0.7770073413848877,\n                        \"Y\": 0.3324817717075348\n                    },\n                    {\n                        \"X\": 0.7770166993141174,\n                        \"Y\": 0.34566035866737366\n                    },\n                    {\n                        \"X\": 0.6307244300842285,\n                        \"Y\": 0.3457733392715454\n                    }\n                ]\n            },\n            \"Id\": \"a1a9d978-0c7f-4621-ad12-fb9a18252592\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fa81446f-1e01-4221-bd8e-61da15e7e5d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.28125,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13374973833560944,\n                    \"Height\": 0.013281772844493389,\n                    \"Left\": 0.7770073413848877,\n                    \"Top\": 0.3323785662651062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770073413848877,\n                        \"Y\": 0.3324817717075348\n                    },\n                    {\n                        \"X\": 0.910747230052948,\n                        \"Y\": 0.3323785662651062\n                    },\n                    {\n                        \"X\": 0.9107570648193359,\n                        \"Y\": 0.3455570340156555\n                    },\n                    {\n                        \"X\": 0.7770166993141174,\n                        \"Y\": 0.34566035866737366\n                    }\n                ]\n            },\n            \"Id\": \"601cfc6c-daec-44ed-95f1-3da710abbf74\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"089a64e0-62b0-46e7-870f-18754a3bc3e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.361328125,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27142319083213806,\n                    \"Height\": 0.016115710139274597,\n                    \"Left\": 0.10138267278671265,\n                    \"Top\": 0.34597259759902954\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10138267278671265,\n                        \"Y\": 0.346182256937027\n                    },\n                    {\n                        \"X\": 0.3727966248989105,\n                        \"Y\": 0.34597259759902954\n                    },\n                    {\n                        \"X\": 0.3728058636188507,\n                        \"Y\": 0.361878365278244\n                    },\n                    {\n                        \"X\": 0.10139056295156479,\n                        \"Y\": 0.36208832263946533\n                    }\n                ]\n            },\n            \"Id\": \"bb522a9c-ca07-4495-89fe-e902eb47a300\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"83d4abd2-5d28-4548-9dca-36b9b57c4c3d\",\n                        \"80053264-1bc9-4177-a642-f95bca898c40\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.603515625,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103127479553223,\n                    \"Height\": 0.016006967052817345,\n                    \"Left\": 0.3727966248989105,\n                    \"Top\": 0.3458713889122009\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3727966248989105,\n                        \"Y\": 0.34597259759902954\n                    },\n                    {\n                        \"X\": 0.5038180351257324,\n                        \"Y\": 0.3458713889122009\n                    },\n                    {\n                        \"X\": 0.5038279294967651,\n                        \"Y\": 0.36177700757980347\n                    },\n                    {\n                        \"X\": 0.3728058636188507,\n                        \"Y\": 0.361878365278244\n                    }\n                ]\n            },\n            \"Id\": \"d73ba003-8a0d-4bdc-8cb9-eebae9f28704\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3b6ae8a1-45d7-41e5-ab5b-af4c236d1db4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.75,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691694498062134,\n                    \"Height\": 0.016003649681806564,\n                    \"Left\": 0.5038180351257324,\n                    \"Top\": 0.3457733392715454\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038180351257324,\n                        \"Y\": 0.3458713889122009\n                    },\n                    {\n                        \"X\": 0.6307244300842285,\n                        \"Y\": 0.3457733392715454\n                    },\n                    {\n                        \"X\": 0.6307349801063538,\n                        \"Y\": 0.3616788387298584\n                    },\n                    {\n                        \"X\": 0.5038279294967651,\n                        \"Y\": 0.36177700757980347\n                    }\n                ]\n            },\n            \"Id\": \"448a7b6c-868c-4d92-b496-746ac7839fae\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2f641ead-8221-407e-b585-52420e94a671\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.384765625,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630348980426788,\n                    \"Height\": 0.016018489375710487,\n                    \"Left\": 0.6307244300842285,\n                    \"Top\": 0.34566035866737366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307244300842285,\n                        \"Y\": 0.3457733392715454\n                    },\n                    {\n                        \"X\": 0.7770166993141174,\n                        \"Y\": 0.34566035866737366\n                    },\n                    {\n                        \"X\": 0.7770279049873352,\n                        \"Y\": 0.3615656793117523\n                    },\n                    {\n                        \"X\": 0.6307349801063538,\n                        \"Y\": 0.3616788387298584\n                    }\n                ]\n            },\n            \"Id\": \"4b326bdf-d0b3-463c-888a-98b6d7873c78\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"904b9957-bd58-4d84-81d2-ae7b0d2c78d4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.091796875,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375233113765717,\n                    \"Height\": 0.016008637845516205,\n                    \"Left\": 0.7770166993141174,\n                    \"Top\": 0.3455570340156555\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770166993141174,\n                        \"Y\": 0.34566035866737366\n                    },\n                    {\n                        \"X\": 0.9107570648193359,\n                        \"Y\": 0.3455570340156555\n                    },\n                    {\n                        \"X\": 0.910768985748291,\n                        \"Y\": 0.36146220564842224\n                    },\n                    {\n                        \"X\": 0.7770279049873352,\n                        \"Y\": 0.3615656793117523\n                    }\n                ]\n            },\n            \"Id\": \"4d843195-e95d-4534-8083-082b43572fc8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"84b37f9c-3b2d-4f66-acd2-351687188610\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.830078125,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27146947383880615,\n                    \"Height\": 0.030204666778445244,\n                    \"Left\": 0.10135383158922195,\n                    \"Top\": 0.361878365278244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10135383158922195,\n                        \"Y\": 0.3620883524417877\n                    },\n                    {\n                        \"X\": 0.3728058636188507,\n                        \"Y\": 0.361878365278244\n                    },\n                    {\n                        \"X\": 0.3728232979774475,\n                        \"Y\": 0.39187249541282654\n                    },\n                    {\n                        \"X\": 0.10136871784925461,\n                        \"Y\": 0.3920830190181732\n                    }\n                ]\n            },\n            \"Id\": \"cd9cecdb-1824-4490-9db1-178f8840916d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ccba9da-4850-4837-9e61-ea1be2e3bc76\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.830078125,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104069232940674,\n                    \"Height\": 0.03009549155831337,\n                    \"Left\": 0.3728058636188507,\n                    \"Top\": 0.36177700757980347\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728058636188507,\n                        \"Y\": 0.361878365278244\n                    },\n                    {\n                        \"X\": 0.5038279294967651,\n                        \"Y\": 0.36177700757980347\n                    },\n                    {\n                        \"X\": 0.5038465857505798,\n                        \"Y\": 0.3917708694934845\n                    },\n                    {\n                        \"X\": 0.3728232979774475,\n                        \"Y\": 0.39187249541282654\n                    }\n                ]\n            },\n            \"Id\": \"030b1aac-4ac0-427a-b244-be9207779b1b\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.830078125,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692689895629883,\n                    \"Height\": 0.030092045664787292,\n                    \"Left\": 0.5038279294967651,\n                    \"Top\": 0.3616788387298584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038279294967651,\n                        \"Y\": 0.36177700757980347\n                    },\n                    {\n                        \"X\": 0.6307349801063538,\n                        \"Y\": 0.3616788387298584\n                    },\n                    {\n                        \"X\": 0.630754828453064,\n                        \"Y\": 0.3916724622249603\n                    },\n                    {\n                        \"X\": 0.5038465857505798,\n                        \"Y\": 0.3917708694934845\n                    }\n                ]\n            },\n            \"Id\": \"cc781aa1-2921-4131-9422-44630932eba2\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.830078125,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631417393684387,\n                    \"Height\": 0.030106786638498306,\n                    \"Left\": 0.6307349801063538,\n                    \"Top\": 0.3615656793117523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307349801063538,\n                        \"Y\": 0.3616788387298584\n                    },\n                    {\n                        \"X\": 0.7770279049873352,\n                        \"Y\": 0.3615656793117523\n                    },\n                    {\n                        \"X\": 0.7770491242408752,\n                        \"Y\": 0.39155900478363037\n                    },\n                    {\n                        \"X\": 0.630754828453064,\n                        \"Y\": 0.3916724622249603\n                    }\n                ]\n            },\n            \"Id\": \"128a2f63-b51a-4daa-be14-6f8dc9905cdf\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.830078125,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13397496938705444,\n                    \"Height\": 0.03009694628417492,\n                    \"Left\": 0.7770279049873352,\n                    \"Top\": 0.3614620566368103\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770279049873352,\n                        \"Y\": 0.3615656793117523\n                    },\n                    {\n                        \"X\": 0.9109804034233093,\n                        \"Y\": 0.3614620566368103\n                    },\n                    {\n                        \"X\": 0.9110028743743896,\n                        \"Y\": 0.39145511388778687\n                    },\n                    {\n                        \"X\": 0.7770491242408752,\n                        \"Y\": 0.39155900478363037\n                    }\n                ]\n            },\n            \"Id\": \"8dc63b6c-45b5-43af-b511-08828197955b\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.12890625,\n            \"RowIndex\": 15,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714260518550873,\n                    \"Height\": 0.014299105852842331,\n                    \"Left\": 0.10140544921159744,\n                    \"Top\": 0.39187249541282654\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10140544921159744,\n                        \"Y\": 0.39208298921585083\n                    },\n                    {\n                        \"X\": 0.3728232979774475,\n                        \"Y\": 0.39187249541282654\n                    },\n                    {\n                        \"X\": 0.3728314936161041,\n                        \"Y\": 0.4059608578681946\n                    },\n                    {\n                        \"X\": 0.10141244530677795,\n                        \"Y\": 0.406171590089798\n                    }\n                ]\n            },\n            \"Id\": \"b699e572-35b6-44ba-8da7-48a098291d51\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4998e6fc-c2dd-44eb-99e8-65f67048298b\",\n                        \"80ec2a41-d3fd-4de9-b91c-4459467f0301\",\n                        \"f9440d2d-e40c-433c-b3bb-cf227aa0f095\",\n                        \"7f7e295b-555d-4bd4-bd3d-ba845f0c0147\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 80.615234375,\n            \"RowIndex\": 15,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103201985359192,\n                    \"Height\": 0.014189966022968292,\n                    \"Left\": 0.3728232979774475,\n                    \"Top\": 0.3917708694934845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728232979774475,\n                        \"Y\": 0.39187249541282654\n                    },\n                    {\n                        \"X\": 0.5038465857505798,\n                        \"Y\": 0.3917708694934845\n                    },\n                    {\n                        \"X\": 0.5038553476333618,\n                        \"Y\": 0.405859112739563\n                    },\n                    {\n                        \"X\": 0.3728314936161041,\n                        \"Y\": 0.4059608578681946\n                    }\n                ]\n            },\n            \"Id\": \"760c94a4-0fa1-4ab1-8e18-3ed3e069b7fa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5c0794e2-e7de-4ebd-b891-5c8a688342b1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 80.712890625,\n            \"RowIndex\": 15,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691755592823029,\n                    \"Height\": 0.014186650514602661,\n                    \"Left\": 0.5038465857505798,\n                    \"Top\": 0.3916724622249603\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038465857505798,\n                        \"Y\": 0.3917708694934845\n                    },\n                    {\n                        \"X\": 0.630754828453064,\n                        \"Y\": 0.3916724622249603\n                    },\n                    {\n                        \"X\": 0.6307641267776489,\n                        \"Y\": 0.4057605564594269\n                    },\n                    {\n                        \"X\": 0.5038553476333618,\n                        \"Y\": 0.405859112739563\n                    }\n                ]\n            },\n            \"Id\": \"b777d5ba-4e42-4423-bfa7-bc84c8e694cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"be75689a-403c-4a90-9346-c9bd182b8ce5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.25,\n            \"RowIndex\": 15,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630429446697235,\n                    \"Height\": 0.014201565645635128,\n                    \"Left\": 0.630754828453064,\n                    \"Top\": 0.39155900478363037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.630754828453064,\n                        \"Y\": 0.3916724622249603\n                    },\n                    {\n                        \"X\": 0.7770491242408752,\n                        \"Y\": 0.39155900478363037\n                    },\n                    {\n                        \"X\": 0.7770590782165527,\n                        \"Y\": 0.405646950006485\n                    },\n                    {\n                        \"X\": 0.6307641267776489,\n                        \"Y\": 0.4057605564594269\n                    }\n                ]\n            },\n            \"Id\": \"dce34417-df94-48ec-9b49-52f6979051d8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"81f00998-4173-44d7-be90-ae304fe44109\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.005859375,\n            \"RowIndex\": 15,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375288248062134,\n                    \"Height\": 0.014191693626344204,\n                    \"Left\": 0.7770491242408752,\n                    \"Top\": 0.3914552628993988\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770491242408752,\n                        \"Y\": 0.39155900478363037\n                    },\n                    {\n                        \"X\": 0.9107914566993713,\n                        \"Y\": 0.3914552628993988\n                    },\n                    {\n                        \"X\": 0.9108020067214966,\n                        \"Y\": 0.40554311871528625\n                    },\n                    {\n                        \"X\": 0.7770590782165527,\n                        \"Y\": 0.405646950006485\n                    }\n                ]\n            },\n            \"Id\": \"52a83854-0460-42d1-8273-e86a086e3dac\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0755c5dc-2557-4717-9702-36c056fe13ae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.966796875,\n            \"RowIndex\": 16,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714269757270813,\n                    \"Height\": 0.013845008797943592,\n                    \"Left\": 0.10141244530677795,\n                    \"Top\": 0.4059608578681946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10141244530677795,\n                        \"Y\": 0.406171590089798\n                    },\n                    {\n                        \"X\": 0.3728314936161041,\n                        \"Y\": 0.4059608578681946\n                    },\n                    {\n                        \"X\": 0.37283942103385925,\n                        \"Y\": 0.4195948541164398\n                    },\n                    {\n                        \"X\": 0.10141921043395996,\n                        \"Y\": 0.4198058545589447\n                    }\n                ]\n            },\n            \"Id\": \"77e9c0c5-a637-4d25-8bc2-8601a6f37110\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7a7a58b5-a926-4a79-a439-98b7fb99c28c\",\n                        \"08365279-a3c9-4c6c-8dbb-53d20b6b3954\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.2578125,\n            \"RowIndex\": 16,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310323178768158,\n                    \"Height\": 0.013735744170844555,\n                    \"Left\": 0.3728314936161041,\n                    \"Top\": 0.405859112739563\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728314936161041,\n                        \"Y\": 0.4059608578681946\n                    },\n                    {\n                        \"X\": 0.5038553476333618,\n                        \"Y\": 0.405859112739563\n                    },\n                    {\n                        \"X\": 0.5038638114929199,\n                        \"Y\": 0.4194929897785187\n                    },\n                    {\n                        \"X\": 0.37283942103385925,\n                        \"Y\": 0.4195948541164398\n                    }\n                ]\n            },\n            \"Id\": \"a896e929-b4b8-49c5-8ade-7a4f35c88ca9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2ec4a6ab-bf0d-49e6-9725-d2b2c799d066\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.404296875,\n            \"RowIndex\": 16,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691782414913177,\n                    \"Height\": 0.013732429593801498,\n                    \"Left\": 0.5038553476333618,\n                    \"Top\": 0.4057605564594269\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038553476333618,\n                        \"Y\": 0.405859112739563\n                    },\n                    {\n                        \"X\": 0.6307641267776489,\n                        \"Y\": 0.4057605564594269\n                    },\n                    {\n                        \"X\": 0.63077312707901,\n                        \"Y\": 0.4193943440914154\n                    },\n                    {\n                        \"X\": 0.5038638114929199,\n                        \"Y\": 0.4194929897785187\n                    }\n                ]\n            },\n            \"Id\": \"0d387fbe-56f3-466e-a4c7-7c0cbf3f215f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ad6df55d-b5e5-4586-981c-0d8bd665109e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.990234375,\n            \"RowIndex\": 16,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630462229251862,\n                    \"Height\": 0.013747367076575756,\n                    \"Left\": 0.6307641267776489,\n                    \"Top\": 0.405646950006485\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307641267776489,\n                        \"Y\": 0.4057605564594269\n                    },\n                    {\n                        \"X\": 0.7770590782165527,\n                        \"Y\": 0.405646950006485\n                    },\n                    {\n                        \"X\": 0.7770687341690063,\n                        \"Y\": 0.4192805886268616\n                    },\n                    {\n                        \"X\": 0.63077312707901,\n                        \"Y\": 0.4193943440914154\n                    }\n                ]\n            },\n            \"Id\": \"5732df11-9738-482a-be89-2c1f42011ad3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6f508ed5-fcf6-404e-997e-f12f41c14d87\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.74609375,\n            \"RowIndex\": 16,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375313580036163,\n                    \"Height\": 0.01373748667538166,\n                    \"Left\": 0.7770590782165527,\n                    \"Top\": 0.40554311871528625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770590782165527,\n                        \"Y\": 0.405646950006485\n                    },\n                    {\n                        \"X\": 0.9108020067214966,\n                        \"Y\": 0.40554311871528625\n                    },\n                    {\n                        \"X\": 0.910812258720398,\n                        \"Y\": 0.4191766381263733\n                    },\n                    {\n                        \"X\": 0.7770687341690063,\n                        \"Y\": 0.4192805886268616\n                    }\n                ]\n            },\n            \"Id\": \"22c5658e-722f-4afa-b009-1ecdbdaed2c6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"59b7c8a3-c612-41a8-91d8-b25dead2a34e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.283203125,\n            \"RowIndex\": 17,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27142810821533203,\n                    \"Height\": 0.013845372013747692,\n                    \"Left\": 0.10141921043395996,\n                    \"Top\": 0.4195948541164398\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10141921043395996,\n                        \"Y\": 0.4198058545589447\n                    },\n                    {\n                        \"X\": 0.37283942103385925,\n                        \"Y\": 0.4195948541164398\n                    },\n                    {\n                        \"X\": 0.3728473484516144,\n                        \"Y\": 0.4332289695739746\n                    },\n                    {\n                        \"X\": 0.10142597556114197,\n                        \"Y\": 0.4334402084350586\n                    }\n                ]\n            },\n            \"Id\": \"98678752-1c79-49c4-a5b4-28079f4fe284\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6a7a7d47-74a5-4970-808b-7b47941a5c51\",\n                        \"0f109464-bda9-4401-9c20-67f70e798417\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.623046875,\n            \"RowIndex\": 17,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103288412094116,\n                    \"Height\": 0.013735979795455933,\n                    \"Left\": 0.37283942103385925,\n                    \"Top\": 0.4194929897785187\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37283942103385925,\n                        \"Y\": 0.4195948541164398\n                    },\n                    {\n                        \"X\": 0.5038638114929199,\n                        \"Y\": 0.4194929897785187\n                    },\n                    {\n                        \"X\": 0.503872275352478,\n                        \"Y\": 0.4331269860267639\n                    },\n                    {\n                        \"X\": 0.3728473484516144,\n                        \"Y\": 0.4332289695739746\n                    }\n                ]\n            },\n            \"Id\": \"31472b9a-a210-47f1-aebb-40661868ad2b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"af9af8bf-c0a3-4e12-9fe5-eb0479d1478b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.76953125,\n            \"RowIndex\": 17,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691836059093475,\n                    \"Height\": 0.013732661493122578,\n                    \"Left\": 0.5038638114929199,\n                    \"Top\": 0.4193943440914154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038638114929199,\n                        \"Y\": 0.4194929897785187\n                    },\n                    {\n                        \"X\": 0.63077312707901,\n                        \"Y\": 0.4193943440914154\n                    },\n                    {\n                        \"X\": 0.6307821869850159,\n                        \"Y\": 0.4330282211303711\n                    },\n                    {\n                        \"X\": 0.503872275352478,\n                        \"Y\": 0.4331269860267639\n                    }\n                ]\n            },\n            \"Id\": \"b0069357-0adc-4050-927a-d387766946e5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"162d892a-5c10-41ce-8ac7-a37a7fd6098f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.35546875,\n            \"RowIndex\": 17,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630524814128876,\n                    \"Height\": 0.013747616671025753,\n                    \"Left\": 0.63077312707901,\n                    \"Top\": 0.4192805886268616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.63077312707901,\n                        \"Y\": 0.4193943440914154\n                    },\n                    {\n                        \"X\": 0.7770687341690063,\n                        \"Y\": 0.4192805886268616\n                    },\n                    {\n                        \"X\": 0.77707839012146,\n                        \"Y\": 0.4329143464565277\n                    },\n                    {\n                        \"X\": 0.6307821869850159,\n                        \"Y\": 0.4330282211303711\n                    }\n                ]\n            },\n            \"Id\": \"28f49279-5d7b-4aae-9702-cf676698a64c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4ac4349-d5b3-4ae6-8e49-7ffaf111e58e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.0625,\n            \"RowIndex\": 17,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.133753702044487,\n                    \"Height\": 0.013737725093960762,\n                    \"Left\": 0.7770687341690063,\n                    \"Top\": 0.4191766381263733\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770687341690063,\n                        \"Y\": 0.4192805886268616\n                    },\n                    {\n                        \"X\": 0.910812258720398,\n                        \"Y\": 0.4191766381263733\n                    },\n                    {\n                        \"X\": 0.9108224511146545,\n                        \"Y\": 0.4328102469444275\n                    },\n                    {\n                        \"X\": 0.77707839012146,\n                        \"Y\": 0.4329143464565277\n                    }\n                ]\n            },\n            \"Id\": \"aea3a486-6b6f-4648-b23e-1096066ec6f6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d68257a0-73be-4bdb-b69b-6b49674ee591\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.50390625,\n            \"RowIndex\": 18,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27142953872680664,\n                    \"Height\": 0.014300220645964146,\n                    \"Left\": 0.10142597556114197,\n                    \"Top\": 0.4332289695739746\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10142597556114197,\n                        \"Y\": 0.4334402084350586\n                    },\n                    {\n                        \"X\": 0.3728473484516144,\n                        \"Y\": 0.4332289695739746\n                    },\n                    {\n                        \"X\": 0.3728555142879486,\n                        \"Y\": 0.4473176896572113\n                    },\n                    {\n                        \"X\": 0.10143297165632248,\n                        \"Y\": 0.4475291967391968\n                    }\n                ]\n            },\n            \"Id\": \"721736ec-fde1-4d69-a2b9-3de5e5fb1d2b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e5bcfe0d-f22b-4649-a2d4-4cdb6c0e65ec\",\n                        \"b1b42bed-e204-41bb-98cf-7bab0d3810e7\",\n                        \"ad73f1bc-3ed3-43b6-8de9-4a5f5934767a\",\n                        \"7a90d169-3d29-444b-99e0-9e1887a6852e\",\n                        \"e28f3cc7-8d59-48cd-b871-1caf54835798\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.84375,\n            \"RowIndex\": 18,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103371858596802,\n                    \"Height\": 0.014190692454576492,\n                    \"Left\": 0.3728473484516144,\n                    \"Top\": 0.4331269860267639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728473484516144,\n                        \"Y\": 0.4332289695739746\n                    },\n                    {\n                        \"X\": 0.503872275352478,\n                        \"Y\": 0.4331269860267639\n                    },\n                    {\n                        \"X\": 0.50388103723526,\n                        \"Y\": 0.44721558690071106\n                    },\n                    {\n                        \"X\": 0.3728555142879486,\n                        \"Y\": 0.4473176896572113\n                    }\n                ]\n            },\n            \"Id\": \"bbe389bc-91b7-4492-b4cb-f4b209ef4489\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"74be80fa-7cd0-44ad-83ff-e0f3be6a4c6e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.990234375,\n            \"RowIndex\": 18,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269191950559616,\n                    \"Height\": 0.014187365770339966,\n                    \"Left\": 0.503872275352478,\n                    \"Top\": 0.4330282211303711\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.503872275352478,\n                        \"Y\": 0.4331269860267639\n                    },\n                    {\n                        \"X\": 0.6307821869850159,\n                        \"Y\": 0.4330282211303711\n                    },\n                    {\n                        \"X\": 0.6307914853096008,\n                        \"Y\": 0.4471166729927063\n                    },\n                    {\n                        \"X\": 0.50388103723526,\n                        \"Y\": 0.44721558690071106\n                    }\n                ]\n            },\n            \"Id\": \"9dd4a917-bfb4-4d28-96f7-65c9b1698478\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8a5aca9c-66b9-45b9-a148-be8c04720c3d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.576171875,\n            \"RowIndex\": 18,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630618691444397,\n                    \"Height\": 0.01420233491808176,\n                    \"Left\": 0.6307821869850159,\n                    \"Top\": 0.4329143464565277\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307821869850159,\n                        \"Y\": 0.4330282211303711\n                    },\n                    {\n                        \"X\": 0.77707839012146,\n                        \"Y\": 0.4329143464565277\n                    },\n                    {\n                        \"X\": 0.7770883440971375,\n                        \"Y\": 0.44700267910957336\n                    },\n                    {\n                        \"X\": 0.6307914853096008,\n                        \"Y\": 0.4471166729927063\n                    }\n                ]\n            },\n            \"Id\": \"bac9fc51-e411-4e40-9c64-5d6641b240fa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"31e289e8-02d3-44fa-8ca8-1d06ae580e32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.283203125,\n            \"RowIndex\": 18,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375461101531982,\n                    \"Height\": 0.014192427508533001,\n                    \"Left\": 0.77707839012146,\n                    \"Top\": 0.4328102469444275\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.77707839012146,\n                        \"Y\": 0.4329143464565277\n                    },\n                    {\n                        \"X\": 0.9108224511146545,\n                        \"Y\": 0.4328102469444275\n                    },\n                    {\n                        \"X\": 0.9108330011367798,\n                        \"Y\": 0.4468984603881836\n                    },\n                    {\n                        \"X\": 0.7770883440971375,\n                        \"Y\": 0.44700267910957336\n                    }\n                ]\n            },\n            \"Id\": \"3168dcc0-623d-429e-80c7-0d9bd769601f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ecfcd3c-fce7-41dc-a7b8-855e3cc8a72a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.208984375,\n            \"RowIndex\": 19,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27143046259880066,\n                    \"Height\": 0.013846112415194511,\n                    \"Left\": 0.10143297165632248,\n                    \"Top\": 0.4473176896572113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10143297165632248,\n                        \"Y\": 0.4475291967391968\n                    },\n                    {\n                        \"X\": 0.3728555142879486,\n                        \"Y\": 0.4473176896572113\n                    },\n                    {\n                        \"X\": 0.37286344170570374,\n                        \"Y\": 0.4609520435333252\n                    },\n                    {\n                        \"X\": 0.10143973678350449,\n                        \"Y\": 0.46116378903388977\n                    }\n                ]\n            },\n            \"Id\": \"c0e49977-b28c-45b7-918a-9823aa3735d7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fb63eb83-6ab6-46ca-a228-f8fdf9706c11\",\n                        \"9d502d4c-a064-4c81-88fe-bc3c1fed9579\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.59765625,\n            \"RowIndex\": 19,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310340166091919,\n                    \"Height\": 0.01373645942658186,\n                    \"Left\": 0.3728555142879486,\n                    \"Top\": 0.44721558690071106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728555142879486,\n                        \"Y\": 0.4473176896572113\n                    },\n                    {\n                        \"X\": 0.50388103723526,\n                        \"Y\": 0.44721558690071106\n                    },\n                    {\n                        \"X\": 0.5038895606994629,\n                        \"Y\": 0.4608498215675354\n                    },\n                    {\n                        \"X\": 0.37286344170570374,\n                        \"Y\": 0.4609520435333252\n                    }\n                ]\n            },\n            \"Id\": \"02490977-5c51-4282-8890-3062b25cba7a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4addb878-6a26-48da-bc66-87ce93a58225\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.6953125,\n            \"RowIndex\": 19,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269194632768631,\n                    \"Height\": 0.013733132742345333,\n                    \"Left\": 0.50388103723526,\n                    \"Top\": 0.4471166729927063\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.50388103723526,\n                        \"Y\": 0.44721558690071106\n                    },\n                    {\n                        \"X\": 0.6307914853096008,\n                        \"Y\": 0.4471166729927063\n                    },\n                    {\n                        \"X\": 0.6308004856109619,\n                        \"Y\": 0.4607508182525635\n                    },\n                    {\n                        \"X\": 0.5038895606994629,\n                        \"Y\": 0.4608498215675354\n                    }\n                ]\n            },\n            \"Id\": \"a7935b40-6f4b-4e0e-9d01-681939299f32\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"042c871f-9aea-49f6-a315-6eaac601f51d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.28125,\n            \"RowIndex\": 19,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630651473999023,\n                    \"Height\": 0.013748124241828918,\n                    \"Left\": 0.6307914853096008,\n                    \"Top\": 0.44700267910957336\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6307914853096008,\n                        \"Y\": 0.4471166729927063\n                    },\n                    {\n                        \"X\": 0.7770883440971375,\n                        \"Y\": 0.44700267910957336\n                    },\n                    {\n                        \"X\": 0.7770980000495911,\n                        \"Y\": 0.4606366753578186\n                    },\n                    {\n                        \"X\": 0.6308004856109619,\n                        \"Y\": 0.4607508182525635\n                    }\n                ]\n            },\n            \"Id\": \"d8c678ba-318f-4255-b90f-04fca16dfd31\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"66f0befe-800d-4270-850c-62e7f2f3c5c6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.037109375,\n            \"RowIndex\": 19,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375486433506012,\n                    \"Height\": 0.013738209381699562,\n                    \"Left\": 0.7770883440971375,\n                    \"Top\": 0.4468984603881836\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770883440971375,\n                        \"Y\": 0.44700267910957336\n                    },\n                    {\n                        \"X\": 0.9108330011367798,\n                        \"Y\": 0.4468984603881836\n                    },\n                    {\n                        \"X\": 0.9108431935310364,\n                        \"Y\": 0.4605323374271393\n                    },\n                    {\n                        \"X\": 0.7770980000495911,\n                        \"Y\": 0.4606366753578186\n                    }\n                ]\n            },\n            \"Id\": \"ba88d040-97a3-46ee-8004-4dad5101653c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23c6c849-08ce-4010-ac20-3fa46c516e68\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.015625,\n            \"RowIndex\": 20,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714316248893738,\n                    \"Height\": 0.013846475630998611,\n                    \"Left\": 0.10143973678350449,\n                    \"Top\": 0.4609520435333252\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10143973678350449,\n                        \"Y\": 0.46116378903388977\n                    },\n                    {\n                        \"X\": 0.37286344170570374,\n                        \"Y\": 0.4609520435333252\n                    },\n                    {\n                        \"X\": 0.37287136912345886,\n                        \"Y\": 0.47458651661872864\n                    },\n                    {\n                        \"X\": 0.10144650191068649,\n                        \"Y\": 0.4747985303401947\n                    }\n                ]\n            },\n            \"Id\": \"c02d6a9c-5d55-4e36-af4a-25aa9f6ee035\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c683cda4-26b1-4d8c-8697-e39031f7ec38\",\n                        \"88c6dea5-ce7c-4a69-8947-4c8e28093f63\",\n                        \"ba9385d6-7634-4fc8-a3ca-38ad1bb9acbc\",\n                        \"dfa32872-8fee-4bb9-811c-05e72b614a00\",\n                        \"1972d744-7468-433e-ba70-6a011aab4fe4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.306640625,\n            \"RowIndex\": 20,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103456795215607,\n                    \"Height\": 0.013736695051193237,\n                    \"Left\": 0.37286344170570374,\n                    \"Top\": 0.4608498215675354\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37286344170570374,\n                        \"Y\": 0.4609520435333252\n                    },\n                    {\n                        \"X\": 0.5038895606994629,\n                        \"Y\": 0.4608498215675354\n                    },\n                    {\n                        \"X\": 0.503898024559021,\n                        \"Y\": 0.4744841754436493\n                    },\n                    {\n                        \"X\": 0.37287136912345886,\n                        \"Y\": 0.47458651661872864\n                    }\n                ]\n            },\n            \"Id\": \"e9353563-a52d-4e71-94df-5b9cd7173ae7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5ee6de6-de9d-440d-8054-9dfcb20b8b3e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.453125,\n            \"RowIndex\": 20,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12691999971866608,\n                    \"Height\": 0.013733364641666412,\n                    \"Left\": 0.5038895606994629,\n                    \"Top\": 0.4607508182525635\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5038895606994629,\n                        \"Y\": 0.4608498215675354\n                    },\n                    {\n                        \"X\": 0.6308004856109619,\n                        \"Y\": 0.4607508182525635\n                    },\n                    {\n                        \"X\": 0.6308095455169678,\n                        \"Y\": 0.4743850529193878\n                    },\n                    {\n                        \"X\": 0.503898024559021,\n                        \"Y\": 0.4744841754436493\n                    }\n                ]\n            },\n            \"Id\": \"a5ff6540-6016-4c36-86de-f1d325bfd6cd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7919f587-bef4-4462-b74a-c1852dedbffd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.0390625,\n            \"RowIndex\": 20,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630714058876038,\n                    \"Height\": 0.013748373836278915,\n                    \"Left\": 0.6308004856109619,\n                    \"Top\": 0.4606366753578186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308004856109619,\n                        \"Y\": 0.4607508182525635\n                    },\n                    {\n                        \"X\": 0.7770980000495911,\n                        \"Y\": 0.4606366753578186\n                    },\n                    {\n                        \"X\": 0.7771076560020447,\n                        \"Y\": 0.4742707908153534\n                    },\n                    {\n                        \"X\": 0.6308095455169678,\n                        \"Y\": 0.4743850529193878\n                    }\n                ]\n            },\n            \"Id\": \"12bc4c2c-f48d-40e1-a452-cc7f14bd5fee\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6e41a9a4-bb74-46be-9d70-3753d5e850e9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.794921875,\n            \"RowIndex\": 20,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375543057918549,\n                    \"Height\": 0.013738447800278664,\n                    \"Left\": 0.7770980000495911,\n                    \"Top\": 0.4605323374271393\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7770980000495911,\n                        \"Y\": 0.4606366753578186\n                    },\n                    {\n                        \"X\": 0.9108431935310364,\n                        \"Y\": 0.4605323374271393\n                    },\n                    {\n                        \"X\": 0.9108534455299377,\n                        \"Y\": 0.47416630387306213\n                    },\n                    {\n                        \"X\": 0.7771076560020447,\n                        \"Y\": 0.4742707908153534\n                    }\n                ]\n            },\n            \"Id\": \"13197328-9ab1-403b-854e-eb3f62271be2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5d899d4-ddeb-4c34-a3ba-3d2b96580d22\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.91796875,\n            \"RowIndex\": 21,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714330554008484,\n                    \"Height\": 0.014301336370408535,\n                    \"Left\": 0.10144650191068649,\n                    \"Top\": 0.47458651661872864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10144650191068649,\n                        \"Y\": 0.4747985303401947\n                    },\n                    {\n                        \"X\": 0.37287136912345886,\n                        \"Y\": 0.47458651661872864\n                    },\n                    {\n                        \"X\": 0.3728795647621155,\n                        \"Y\": 0.488675594329834\n                    },\n                    {\n                        \"X\": 0.101453498005867,\n                        \"Y\": 0.48888784646987915\n                    }\n                ]\n            },\n            \"Id\": \"fa76885e-7a0f-453c-950d-8242445471ad\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"89325d09-a0ee-4e1d-88db-6322bbe863c0\",\n                        \"b0bf8d55-cef9-4f48-a72e-0c2fde6c3403\",\n                        \"6d347d54-3501-4d3e-927a-e9488329cf88\",\n                        \"1ab7fac3-bb95-4fc5-afa8-28e5a2380fa4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.208984375,\n            \"RowIndex\": 21,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103540241718292,\n                    \"Height\": 0.014191418886184692,\n                    \"Left\": 0.37287136912345886,\n                    \"Top\": 0.4744841754436493\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37287136912345886,\n                        \"Y\": 0.47458651661872864\n                    },\n                    {\n                        \"X\": 0.503898024559021,\n                        \"Y\": 0.4744841754436493\n                    },\n                    {\n                        \"X\": 0.503906786441803,\n                        \"Y\": 0.4885731339454651\n                    },\n                    {\n                        \"X\": 0.3728795647621155,\n                        \"Y\": 0.488675594329834\n                    }\n                ]\n            },\n            \"Id\": \"cc3e93c3-69ee-412f-8d5a-e66cf0f619ed\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"87f09549-8368-4e8c-a07d-f10f9b6d5091\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.35546875,\n            \"RowIndex\": 21,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692083418369293,\n                    \"Height\": 0.01418808102607727,\n                    \"Left\": 0.503898024559021,\n                    \"Top\": 0.4743850529193878\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.503898024559021,\n                        \"Y\": 0.4744841754436493\n                    },\n                    {\n                        \"X\": 0.6308095455169678,\n                        \"Y\": 0.4743850529193878\n                    },\n                    {\n                        \"X\": 0.6308188438415527,\n                        \"Y\": 0.48847389221191406\n                    },\n                    {\n                        \"X\": 0.503906786441803,\n                        \"Y\": 0.4885731339454651\n                    }\n                ]\n            },\n            \"Id\": \"992028d7-7a84-4ffd-afce-57d23159016f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7a00a80-e327-4799-989d-e517005643a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.94140625,\n            \"RowIndex\": 21,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463080793619156,\n                    \"Height\": 0.014203104190528393,\n                    \"Left\": 0.6308095455169678,\n                    \"Top\": 0.4742707908153534\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308095455169678,\n                        \"Y\": 0.4743850529193878\n                    },\n                    {\n                        \"X\": 0.7771076560020447,\n                        \"Y\": 0.4742707908153534\n                    },\n                    {\n                        \"X\": 0.7771176099777222,\n                        \"Y\": 0.4883594810962677\n                    },\n                    {\n                        \"X\": 0.6308188438415527,\n                        \"Y\": 0.48847389221191406\n                    }\n                ]\n            },\n            \"Id\": \"43594ae5-04da-436c-8854-e43f73744ea9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4723bf44-24ba-4aae-a9ae-bf3db6906f6d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.697265625,\n            \"RowIndex\": 21,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337563395500183,\n                    \"Height\": 0.014193161390721798,\n                    \"Left\": 0.7771076560020447,\n                    \"Top\": 0.47416630387306213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771076560020447,\n                        \"Y\": 0.4742707908153534\n                    },\n                    {\n                        \"X\": 0.9108534455299377,\n                        \"Y\": 0.47416630387306213\n                    },\n                    {\n                        \"X\": 0.910863995552063,\n                        \"Y\": 0.4882548749446869\n                    },\n                    {\n                        \"X\": 0.7771176099777222,\n                        \"Y\": 0.4883594810962677\n                    }\n                ]\n            },\n            \"Id\": \"974434f4-f5c4-47e0-b901-4d3dc3d08ee8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"86f85a85-ea72-4282-93fb-4b515246e973\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.578125,\n            \"RowIndex\": 22,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714339792728424,\n                    \"Height\": 0.01384721603244543,\n                    \"Left\": 0.101453498005867,\n                    \"Top\": 0.488675594329834\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.101453498005867,\n                        \"Y\": 0.48888784646987915\n                    },\n                    {\n                        \"X\": 0.3728795647621155,\n                        \"Y\": 0.488675594329834\n                    },\n                    {\n                        \"X\": 0.3728874623775482,\n                        \"Y\": 0.5023102760314941\n                    },\n                    {\n                        \"X\": 0.10146026313304901,\n                        \"Y\": 0.5025228261947632\n                    }\n                ]\n            },\n            \"Id\": \"e0f89b33-25a9-445a-b966-a2f07f721f0f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"579b96ed-2861-483c-81ea-a2982e915620\",\n                        \"bfec6747-b5bd-41b1-a9bb-a4e4259d790f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.869140625,\n            \"RowIndex\": 22,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310357004404068,\n                    \"Height\": 0.013737174682319164,\n                    \"Left\": 0.3728795647621155,\n                    \"Top\": 0.4885731339454651\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728795647621155,\n                        \"Y\": 0.488675594329834\n                    },\n                    {\n                        \"X\": 0.503906786441803,\n                        \"Y\": 0.4885731339454651\n                    },\n                    {\n                        \"X\": 0.5039152503013611,\n                        \"Y\": 0.5022076964378357\n                    },\n                    {\n                        \"X\": 0.3728874623775482,\n                        \"Y\": 0.5023102760314941\n                    }\n                ]\n            },\n            \"Id\": \"54ab2811-0759-481d-9cd9-f0ccc7979f7e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8438a4c1-7b6f-4993-a635-ec579a31bb24\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.015625,\n            \"RowIndex\": 22,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692110240459442,\n                    \"Height\": 0.013733836822211742,\n                    \"Left\": 0.503906786441803,\n                    \"Top\": 0.48847389221191406\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.503906786441803,\n                        \"Y\": 0.4885731339454651\n                    },\n                    {\n                        \"X\": 0.6308188438415527,\n                        \"Y\": 0.48847389221191406\n                    },\n                    {\n                        \"X\": 0.6308279037475586,\n                        \"Y\": 0.5021083354949951\n                    },\n                    {\n                        \"X\": 0.5039152503013611,\n                        \"Y\": 0.5022076964378357\n                    }\n                ]\n            },\n            \"Id\": \"6e68dee5-8cda-4331-b59c-8f76cff753d1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"eb26f540-a245-4a3b-a714-4467832699db\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.6015625,\n            \"RowIndex\": 22,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630840718746185,\n                    \"Height\": 0.01374888140708208,\n                    \"Left\": 0.6308188438415527,\n                    \"Top\": 0.4883594810962677\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308188438415527,\n                        \"Y\": 0.48847389221191406\n                    },\n                    {\n                        \"X\": 0.7771176099777222,\n                        \"Y\": 0.4883594810962677\n                    },\n                    {\n                        \"X\": 0.7771272659301758,\n                        \"Y\": 0.5019938349723816\n                    },\n                    {\n                        \"X\": 0.6308279037475586,\n                        \"Y\": 0.5021083354949951\n                    }\n                ]\n            },\n            \"Id\": \"352459b1-4ad9-4a82-b9b6-152dbe6eb2fe\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ea1456c-5c3e-474d-a189-66e0f024ee7a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.357421875,\n            \"RowIndex\": 22,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337565928697586,\n                    \"Height\": 0.013738932088017464,\n                    \"Left\": 0.7771176099777222,\n                    \"Top\": 0.4882548749446869\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771176099777222,\n                        \"Y\": 0.4883594810962677\n                    },\n                    {\n                        \"X\": 0.910863995552063,\n                        \"Y\": 0.4882548749446869\n                    },\n                    {\n                        \"X\": 0.9108741879463196,\n                        \"Y\": 0.5018891096115112\n                    },\n                    {\n                        \"X\": 0.7771272659301758,\n                        \"Y\": 0.5019938349723816\n                    }\n                ]\n            },\n            \"Id\": \"7becae33-c2a5-458b-9923-43f4cd3ea04e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23f06bcd-0b34-4c7a-81f9-76ca2c3a8d41\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.751953125,\n            \"RowIndex\": 23,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714356482028961,\n                    \"Height\": 0.014756588265299797,\n                    \"Left\": 0.10146026313304901,\n                    \"Top\": 0.5023102760314941\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10146026313304901,\n                        \"Y\": 0.5025228261947632\n                    },\n                    {\n                        \"X\": 0.3728874623775482,\n                        \"Y\": 0.5023102760314941\n                    },\n                    {\n                        \"X\": 0.3728959262371063,\n                        \"Y\": 0.5168541073799133\n                    },\n                    {\n                        \"X\": 0.10146748274564743,\n                        \"Y\": 0.5170668959617615\n                    }\n                ]\n            },\n            \"Id\": \"20ab6270-501d-457a-ab59-0b87c4a3c017\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d64d80ce-1916-46e1-a54a-2f109b9b5753\",\n                        \"17c54977-1fff-4bed-9a8f-a4eeb8956bfb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.994140625,\n            \"RowIndex\": 23,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103683292865753,\n                    \"Height\": 0.014646402560174465,\n                    \"Left\": 0.3728874623775482,\n                    \"Top\": 0.5022076964378357\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728874623775482,\n                        \"Y\": 0.5023102760314941\n                    },\n                    {\n                        \"X\": 0.5039152503013611,\n                        \"Y\": 0.5022076964378357\n                    },\n                    {\n                        \"X\": 0.5039243102073669,\n                        \"Y\": 0.5167514085769653\n                    },\n                    {\n                        \"X\": 0.3728959262371063,\n                        \"Y\": 0.5168541073799133\n                    }\n                ]\n            },\n            \"Id\": \"059c2b79-a8ea-433b-a840-50510c2739ac\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f15401b8-758c-4c38-a4ae-151d17eeba52\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.140625,\n            \"RowIndex\": 23,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692223489284515,\n                    \"Height\": 0.014643053524196148,\n                    \"Left\": 0.5039152503013611,\n                    \"Top\": 0.5021083354949951\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039152503013611,\n                        \"Y\": 0.5022076964378357\n                    },\n                    {\n                        \"X\": 0.6308279037475586,\n                        \"Y\": 0.5021083354949951\n                    },\n                    {\n                        \"X\": 0.6308375000953674,\n                        \"Y\": 0.5166519284248352\n                    },\n                    {\n                        \"X\": 0.5039243102073669,\n                        \"Y\": 0.5167514085769653\n                    }\n                ]\n            },\n            \"Id\": \"e8bcd5bf-1446-4f56-b134-0ad29295b8fe\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7dbca7b-537e-4ac6-a89f-bef97c716dbf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.7265625,\n            \"RowIndex\": 23,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14630967378616333,\n                    \"Height\": 0.014658108353614807,\n                    \"Left\": 0.6308279037475586,\n                    \"Top\": 0.5019938349723816\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308279037475586,\n                        \"Y\": 0.5021083354949951\n                    },\n                    {\n                        \"X\": 0.7771272659301758,\n                        \"Y\": 0.5019938349723816\n                    },\n                    {\n                        \"X\": 0.7771375179290771,\n                        \"Y\": 0.5165372490882874\n                    },\n                    {\n                        \"X\": 0.6308375000953674,\n                        \"Y\": 0.5166519284248352\n                    }\n                ]\n            },\n            \"Id\": \"37908ef9-6bb3-4a6f-ad8d-0987b0476e86\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e895d3e9-4360-4e8c-b2e7-b3fca5864a32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.482421875,\n            \"RowIndex\": 23,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337578296661377,\n                    \"Height\": 0.014648137614130974,\n                    \"Left\": 0.7771272659301758,\n                    \"Top\": 0.5018891096115112\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771272659301758,\n                        \"Y\": 0.5019938349723816\n                    },\n                    {\n                        \"X\": 0.9108741879463196,\n                        \"Y\": 0.5018891096115112\n                    },\n                    {\n                        \"X\": 0.9108850955963135,\n                        \"Y\": 0.5164324045181274\n                    },\n                    {\n                        \"X\": 0.7771375179290771,\n                        \"Y\": 0.5165372490882874\n                    }\n                ]\n            },\n            \"Id\": \"42771630-5b61-4a03-a8c3-b31c124d2fca\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"05028a26-a695-40d7-961c-18c9206b1956\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 40.3564453125,\n            \"RowIndex\": 24,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714725732803345,\n                    \"Height\": 0.012938980013132095,\n                    \"Left\": 0.1014307513833046,\n                    \"Top\": 0.5168541073799133\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1014307513833046,\n                        \"Y\": 0.5170668959617615\n                    },\n                    {\n                        \"X\": 0.3728959262371063,\n                        \"Y\": 0.5168541073799133\n                    },\n                    {\n                        \"X\": 0.37290331721305847,\n                        \"Y\": 0.5295800566673279\n                    },\n                    {\n                        \"X\": 0.10143706947565079,\n                        \"Y\": 0.5297930836677551\n                    }\n                ]\n            },\n            \"Id\": \"1745df40-d50c-45ba-9d72-1dd6bca011f3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"62f2f901-62dd-4db2-8b21-55fe54babef8\",\n                        \"105e5b6c-1c54-4abe-b931-0f4fd40c1ccc\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 40.3564453125,\n            \"RowIndex\": 24,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103629648685455,\n                    \"Height\": 0.012828661128878593,\n                    \"Left\": 0.3728959262371063,\n                    \"Top\": 0.5167514085769653\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3728959262371063,\n                        \"Y\": 0.5168541073799133\n                    },\n                    {\n                        \"X\": 0.5039243102073669,\n                        \"Y\": 0.5167514085769653\n                    },\n                    {\n                        \"X\": 0.5039322376251221,\n                        \"Y\": 0.5294772386550903\n                    },\n                    {\n                        \"X\": 0.37290331721305847,\n                        \"Y\": 0.5295800566673279\n                    }\n                ]\n            },\n            \"Id\": \"3a338af0-b01e-4fdc-8029-1bf9a6e6f032\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 40.3564453125,\n            \"RowIndex\": 24,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.126921609044075,\n                    \"Height\": 0.012825324200093746,\n                    \"Left\": 0.5039243102073669,\n                    \"Top\": 0.5166519284248352\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039243102073669,\n                        \"Y\": 0.5167514085769653\n                    },\n                    {\n                        \"X\": 0.6308375000953674,\n                        \"Y\": 0.5166519284248352\n                    },\n                    {\n                        \"X\": 0.6308459043502808,\n                        \"Y\": 0.5293776392936707\n                    },\n                    {\n                        \"X\": 0.5039322376251221,\n                        \"Y\": 0.5294772386550903\n                    }\n                ]\n            },\n            \"Id\": \"3af16851-3467-43bc-bbe4-bb38335ac439\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 40.3564453125,\n            \"RowIndex\": 24,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463090479373932,\n                    \"Height\": 0.012840412557125092,\n                    \"Left\": 0.6308375000953674,\n                    \"Top\": 0.5165372490882874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308375000953674,\n                        \"Y\": 0.5166519284248352\n                    },\n                    {\n                        \"X\": 0.7771375179290771,\n                        \"Y\": 0.5165372490882874\n                    },\n                    {\n                        \"X\": 0.7771465182304382,\n                        \"Y\": 0.5292628407478333\n                    },\n                    {\n                        \"X\": 0.6308459043502808,\n                        \"Y\": 0.5293776392936707\n                    }\n                ]\n            },\n            \"Id\": \"cf7c0a62-52a2-49b5-ab62-c15ac42a7a4f\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 40.3564453125,\n            \"RowIndex\": 24,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1339685171842575,\n                    \"Height\": 0.012830614112317562,\n                    \"Left\": 0.7771375179290771,\n                    \"Top\": 0.5164322257041931\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771375179290771,\n                        \"Y\": 0.5165372490882874\n                    },\n                    {\n                        \"X\": 0.9110965132713318,\n                        \"Y\": 0.5164322257041931\n                    },\n                    {\n                        \"X\": 0.9111060500144958,\n                        \"Y\": 0.5291576981544495\n                    },\n                    {\n                        \"X\": 0.7771465182304382,\n                        \"Y\": 0.5292628407478333\n                    }\n                ]\n            },\n            \"Id\": \"25686602-754f-43d6-84dd-e970ca3ac30a\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.576171875,\n            \"RowIndex\": 25,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27143770456314087,\n                    \"Height\": 0.014302819967269897,\n                    \"Left\": 0.10147380083799362,\n                    \"Top\": 0.5295800566673279\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10147380083799362,\n                        \"Y\": 0.5297930836677551\n                    },\n                    {\n                        \"X\": 0.37290331721305847,\n                        \"Y\": 0.5295800566673279\n                    },\n                    {\n                        \"X\": 0.3729115128517151,\n                        \"Y\": 0.5436696410179138\n                    },\n                    {\n                        \"X\": 0.10148079693317413,\n                        \"Y\": 0.5438829064369202\n                    }\n                ]\n            },\n            \"Id\": \"6b247bec-0512-4a91-a69d-19713a8d1f14\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8754df0f-7dfe-4ba1-a72a-245f0404d1f4\",\n                        \"e6ebc60c-4dc7-4e1a-a5bb-f09316e92bbd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.916015625,\n            \"RowIndex\": 25,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310376673936844,\n                    \"Height\": 0.014192385599017143,\n                    \"Left\": 0.37290331721305847,\n                    \"Top\": 0.5294772386550903\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37290331721305847,\n                        \"Y\": 0.5295800566673279\n                    },\n                    {\n                        \"X\": 0.5039322376251221,\n                        \"Y\": 0.5294772386550903\n                    },\n                    {\n                        \"X\": 0.503940999507904,\n                        \"Y\": 0.5435667037963867\n                    },\n                    {\n                        \"X\": 0.3729115128517151,\n                        \"Y\": 0.5436696410179138\n                    }\n                ]\n            },\n            \"Id\": \"fc15e7b3-024f-4b15-8082-aa29364be9ab\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f5692bec-9973-4fc1-88ab-17b1692e54fc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.013671875,\n            \"RowIndex\": 25,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692302465438843,\n                    \"Height\": 0.014189032837748528,\n                    \"Left\": 0.5039322376251221,\n                    \"Top\": 0.5293776392936707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039322376251221,\n                        \"Y\": 0.5294772386550903\n                    },\n                    {\n                        \"X\": 0.6308459043502808,\n                        \"Y\": 0.5293776392936707\n                    },\n                    {\n                        \"X\": 0.6308552622795105,\n                        \"Y\": 0.5434669852256775\n                    },\n                    {\n                        \"X\": 0.503940999507904,\n                        \"Y\": 0.5435667037963867\n                    }\n                ]\n            },\n            \"Id\": \"e12d78a4-c61a-47f1-bff3-af22a124c4d8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"75e64636-2f41-4b14-ace5-578dfeb86f2e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.599609375,\n            \"RowIndex\": 25,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631059765815735,\n                    \"Height\": 0.01420412678271532,\n                    \"Left\": 0.6308459043502808,\n                    \"Top\": 0.5292628407478333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308459043502808,\n                        \"Y\": 0.5293776392936707\n                    },\n                    {\n                        \"X\": 0.7771465182304382,\n                        \"Y\": 0.5292628407478333\n                    },\n                    {\n                        \"X\": 0.7771565318107605,\n                        \"Y\": 0.5433520078659058\n                    },\n                    {\n                        \"X\": 0.6308552622795105,\n                        \"Y\": 0.5434669852256775\n                    }\n                ]\n            },\n            \"Id\": \"da5d9288-3fd1-4b04-a436-375e4e1f2664\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d3766385-e080-4297-ad02-822aaff18234\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.35546875,\n            \"RowIndex\": 25,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375863432884216,\n                    \"Height\": 0.01419413834810257,\n                    \"Left\": 0.7771465182304382,\n                    \"Top\": 0.5291578769683838\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771465182304382,\n                        \"Y\": 0.5292628407478333\n                    },\n                    {\n                        \"X\": 0.9108946323394775,\n                        \"Y\": 0.5291578769683838\n                    },\n                    {\n                        \"X\": 0.9109051823616028,\n                        \"Y\": 0.5432469248771667\n                    },\n                    {\n                        \"X\": 0.7771565318107605,\n                        \"Y\": 0.5433520078659058\n                    }\n                ]\n            },\n            \"Id\": \"28e544d8-1487-41b2-89dc-c504bbd44445\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e81f1c5e-9af9-4d0a-b711-d4c6e7272ee5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.599609375,\n            \"RowIndex\": 26,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714386284351349,\n                    \"Height\": 0.013848683796823025,\n                    \"Left\": 0.10148079693317413,\n                    \"Top\": 0.5436696410179138\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10148079693317413,\n                        \"Y\": 0.5438829064369202\n                    },\n                    {\n                        \"X\": 0.3729115128517151,\n                        \"Y\": 0.5436696410179138\n                    },\n                    {\n                        \"X\": 0.3729194402694702,\n                        \"Y\": 0.5573047995567322\n                    },\n                    {\n                        \"X\": 0.10148756206035614,\n                        \"Y\": 0.5575183033943176\n                    }\n                ]\n            },\n            \"Id\": \"0880bf5e-3584-4a7c-9886-fb9176e42d86\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"88881b82-4d64-4f6a-a528-ecc04e3cbb91\",\n                        \"e6530fbb-2cfa-41c3-92d5-345cadb28acc\",\n                        \"5f017512-1294-4bc5-8dd8-d6d00f8d387a\",\n                        \"3de10125-8fd3-4ac9-85ff-6a8232f8b762\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.939453125,\n            \"RowIndex\": 26,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103795051574707,\n                    \"Height\": 0.013738124631345272,\n                    \"Left\": 0.3729115128517151,\n                    \"Top\": 0.5435667037963867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3729115128517151,\n                        \"Y\": 0.5436696410179138\n                    },\n                    {\n                        \"X\": 0.503940999507904,\n                        \"Y\": 0.5435667037963867\n                    },\n                    {\n                        \"X\": 0.5039494633674622,\n                        \"Y\": 0.5572017431259155\n                    },\n                    {\n                        \"X\": 0.3729194402694702,\n                        \"Y\": 0.5573047995567322\n                    }\n                ]\n            },\n            \"Id\": \"8f4f58b1-e96e-407b-95bd-d1c6d5bd25b8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cdaa3d72-adba-4aa5-8518-6e775198db2b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.0859375,\n            \"RowIndex\": 26,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692327797412872,\n                    \"Height\": 0.013734771870076656,\n                    \"Left\": 0.503940999507904,\n                    \"Top\": 0.5434669852256775\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.503940999507904,\n                        \"Y\": 0.5435667037963867\n                    },\n                    {\n                        \"X\": 0.6308552622795105,\n                        \"Y\": 0.5434669852256775\n                    },\n                    {\n                        \"X\": 0.6308642625808716,\n                        \"Y\": 0.5571019053459167\n                    },\n                    {\n                        \"X\": 0.5039494633674622,\n                        \"Y\": 0.5572017431259155\n                    }\n                ]\n            },\n            \"Id\": \"b53bb3a4-59c9-455a-8862-8ad959a973cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ee6ae529-4277-4ce6-a8bc-44d856ff0d85\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.671875,\n            \"RowIndex\": 26,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631091058254242,\n                    \"Height\": 0.01374988816678524,\n                    \"Left\": 0.6308552622795105,\n                    \"Top\": 0.5433520078659058\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308552622795105,\n                        \"Y\": 0.5434669852256775\n                    },\n                    {\n                        \"X\": 0.7771565318107605,\n                        \"Y\": 0.5433520078659058\n                    },\n                    {\n                        \"X\": 0.7771661281585693,\n                        \"Y\": 0.5569868087768555\n                    },\n                    {\n                        \"X\": 0.6308642625808716,\n                        \"Y\": 0.5571019053459167\n                    }\n                ]\n            },\n            \"Id\": \"2472b26e-019c-414c-9731-d5341b764667\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ef19b0ad-bff6-47fc-9ac2-09e9994c4902\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.37890625,\n            \"RowIndex\": 26,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375888764858246,\n                    \"Height\": 0.013739892281591892,\n                    \"Left\": 0.7771565318107605,\n                    \"Top\": 0.5432469248771667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771565318107605,\n                        \"Y\": 0.5433520078659058\n                    },\n                    {\n                        \"X\": 0.9109051823616028,\n                        \"Y\": 0.5432469248771667\n                    },\n                    {\n                        \"X\": 0.9109153747558594,\n                        \"Y\": 0.5568816065788269\n                    },\n                    {\n                        \"X\": 0.7771661281585693,\n                        \"Y\": 0.5569868087768555\n                    }\n                ]\n            },\n            \"Id\": \"feb47097-0224-4f3c-b1d5-afb4201a69d7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"72b00a69-e2e2-46e6-83a4-de1a90797867\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.548828125,\n            \"RowIndex\": 27,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714395225048065,\n                    \"Height\": 0.01339452713727951,\n                    \"Left\": 0.10148756206035614,\n                    \"Top\": 0.5573047995567322\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10148756206035614,\n                        \"Y\": 0.5575183033943176\n                    },\n                    {\n                        \"X\": 0.3729194402694702,\n                        \"Y\": 0.5573047995567322\n                    },\n                    {\n                        \"X\": 0.37292709946632385,\n                        \"Y\": 0.5704855918884277\n                    },\n                    {\n                        \"X\": 0.10149410367012024,\n                        \"Y\": 0.5706993341445923\n                    }\n                ]\n            },\n            \"Id\": \"c395c7cd-9914-40f7-a444-f100fe0e2d61\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2769e3f0-16b3-4a42-9eb1-db33f698de42\",\n                        \"8e47e19e-f3d7-4d07-9fba-3260cf702f65\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.9375,\n            \"RowIndex\": 27,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13103823363780975,\n                    \"Height\": 0.013283848762512207,\n                    \"Left\": 0.3729194402694702,\n                    \"Top\": 0.5572017431259155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3729194402694702,\n                        \"Y\": 0.5573047995567322\n                    },\n                    {\n                        \"X\": 0.5039494633674622,\n                        \"Y\": 0.5572017431259155\n                    },\n                    {\n                        \"X\": 0.5039576888084412,\n                        \"Y\": 0.5703824162483215\n                    },\n                    {\n                        \"X\": 0.37292709946632385,\n                        \"Y\": 0.5704855918884277\n                    }\n                ]\n            },\n            \"Id\": \"ed325be5-d3ea-477b-b023-6dab40681326\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5fb416d1-75aa-4326-a8de-47e63b1eda9d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.03515625,\n            \"RowIndex\": 27,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692351639270782,\n                    \"Height\": 0.013280496932566166,\n                    \"Left\": 0.5039494633674622,\n                    \"Top\": 0.5571019053459167\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039494633674622,\n                        \"Y\": 0.5572017431259155\n                    },\n                    {\n                        \"X\": 0.6308642625808716,\n                        \"Y\": 0.5571019053459167\n                    },\n                    {\n                        \"X\": 0.6308729648590088,\n                        \"Y\": 0.5702824592590332\n                    },\n                    {\n                        \"X\": 0.5039576888084412,\n                        \"Y\": 0.5703824162483215\n                    }\n                ]\n            },\n            \"Id\": \"ed5cc602-a4fa-441b-a875-a03579c442c7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"10b1615d-f0d0-4a55-9ee5-cfef973f8ccd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.62109375,\n            \"RowIndex\": 27,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463112086057663,\n                    \"Height\": 0.013295634649693966,\n                    \"Left\": 0.6308642625808716,\n                    \"Top\": 0.5569868087768555\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308642625808716,\n                        \"Y\": 0.5571019053459167\n                    },\n                    {\n                        \"X\": 0.7771661281585693,\n                        \"Y\": 0.5569868087768555\n                    },\n                    {\n                        \"X\": 0.7771754860877991,\n                        \"Y\": 0.5701672434806824\n                    },\n                    {\n                        \"X\": 0.6308729648590088,\n                        \"Y\": 0.5702824592590332\n                    }\n                ]\n            },\n            \"Id\": \"4a4f61cb-07b6-4747-b9f4-124d32656d10\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2bf453c8-19fd-49b5-a3ae-f0cc4cecb4ec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.376953125,\n            \"RowIndex\": 27,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13375911116600037,\n                    \"Height\": 0.013285631313920021,\n                    \"Left\": 0.7771661281585693,\n                    \"Top\": 0.5568816065788269\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771661281585693,\n                        \"Y\": 0.5569868087768555\n                    },\n                    {\n                        \"X\": 0.9109153747558594,\n                        \"Y\": 0.5568816065788269\n                    },\n                    {\n                        \"X\": 0.9109252691268921,\n                        \"Y\": 0.5700619220733643\n                    },\n                    {\n                        \"X\": 0.7771754860877991,\n                        \"Y\": 0.5701672434806824\n                    }\n                ]\n            },\n            \"Id\": \"3548c3cb-4195-4514-9077-205fe6e63028\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"82faff2f-90d0-4eb5-975b-4dcc35fb913d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.384765625,\n            \"RowIndex\": 28,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714422345161438,\n                    \"Height\": 0.016122018918395042,\n                    \"Left\": 0.10149410367012024,\n                    \"Top\": 0.5704855918884277\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10149410367012024,\n                        \"Y\": 0.5706993341445923\n                    },\n                    {\n                        \"X\": 0.37292709946632385,\n                        \"Y\": 0.5704855918884277\n                    },\n                    {\n                        \"X\": 0.37293633818626404,\n                        \"Y\": 0.5863935947418213\n                    },\n                    {\n                        \"X\": 0.10150200128555298,\n                        \"Y\": 0.5866076350212097\n                    }\n                ]\n            },\n            \"Id\": \"7ed9f194-5da2-41ac-b206-0bedf4dd97cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4847107a-d004-4d35-bbb6-9d5fb92258e3\",\n                        \"b4b2ce0c-7dad-487d-a203-5dfa37c406bc\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.67578125,\n            \"RowIndex\": 28,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104046881198883,\n                    \"Height\": 0.01601116731762886,\n                    \"Left\": 0.37292709946632385,\n                    \"Top\": 0.5703824162483215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37292709946632385,\n                        \"Y\": 0.5704855918884277\n                    },\n                    {\n                        \"X\": 0.5039576888084412,\n                        \"Y\": 0.5703824162483215\n                    },\n                    {\n                        \"X\": 0.5039675831794739,\n                        \"Y\": 0.5862902402877808\n                    },\n                    {\n                        \"X\": 0.37293633818626404,\n                        \"Y\": 0.5863935947418213\n                    }\n                ]\n            },\n            \"Id\": \"67e71c61-d484-4b0c-930a-c7891906fd1b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c097cda2-4231-45f4-b1f0-6c44546f67f4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.822265625,\n            \"RowIndex\": 28,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692584097385406,\n                    \"Height\": 0.016007786616683006,\n                    \"Left\": 0.5039576888084412,\n                    \"Top\": 0.5702824592590332\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039576888084412,\n                        \"Y\": 0.5703824162483215\n                    },\n                    {\n                        \"X\": 0.6308729648590088,\n                        \"Y\": 0.5702824592590332\n                    },\n                    {\n                        \"X\": 0.630883514881134,\n                        \"Y\": 0.5861901640892029\n                    },\n                    {\n                        \"X\": 0.5039675831794739,\n                        \"Y\": 0.5862902402877808\n                    }\n                ]\n            },\n            \"Id\": \"36145f48-7b25-4b91-a6f2-9bb08b7069cf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e66d5d7a-5615-4e8f-aeeb-c0d005069a44\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.408203125,\n            \"RowIndex\": 28,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631374180316925,\n                    \"Height\": 0.01602291874587536,\n                    \"Left\": 0.6308729648590088,\n                    \"Top\": 0.5701672434806824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6308729648590088,\n                        \"Y\": 0.5702824592590332\n                    },\n                    {\n                        \"X\": 0.7771754860877991,\n                        \"Y\": 0.5701672434806824\n                    },\n                    {\n                        \"X\": 0.7771867513656616,\n                        \"Y\": 0.5860748291015625\n                    },\n                    {\n                        \"X\": 0.630883514881134,\n                        \"Y\": 0.5861901640892029\n                    }\n                ]\n            },\n            \"Id\": \"d5886605-6d13-4684-a4f4-3e8445ec54fc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"42347064-f3ba-425f-bbba-b736bafadddd\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.115234375,\n            \"RowIndex\": 28,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337617039680481,\n                    \"Height\": 0.016012879088521004,\n                    \"Left\": 0.7771754860877991,\n                    \"Top\": 0.5700619220733643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771754860877991,\n                        \"Y\": 0.5701672434806824\n                    },\n                    {\n                        \"X\": 0.9109252691268921,\n                        \"Y\": 0.5700619220733643\n                    },\n                    {\n                        \"X\": 0.9109371900558472,\n                        \"Y\": 0.5859693288803101\n                    },\n                    {\n                        \"X\": 0.7771867513656616,\n                        \"Y\": 0.5860748291015625\n                    }\n                ]\n            },\n            \"Id\": \"79663fa5-110d-4365-9eeb-41696698f742\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b56912f2-8e01-4805-9bcc-95bb50587816\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 96.77734375,\n            \"RowIndex\": 29,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.271459698677063,\n                    \"Height\": 0.04384896904230118,\n                    \"Left\": 0.10150200128555298,\n                    \"Top\": 0.5863935947418213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10150200128555298,\n                        \"Y\": 0.5866076350212097\n                    },\n                    {\n                        \"X\": 0.37293633818626404,\n                        \"Y\": 0.5863935947418213\n                    },\n                    {\n                        \"X\": 0.37296169996261597,\n                        \"Y\": 0.630027711391449\n                    },\n                    {\n                        \"X\": 0.10152365267276764,\n                        \"Y\": 0.6302425265312195\n                    }\n                ]\n            },\n            \"Id\": \"5c190359-270c-4c7e-be2a-174ebeb8c502\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e09d1292-50e2-4a96-82c0-30f69e263f4d\",\n                        \"271f8b71-28e7-4d22-8457-70089de530c6\",\n                        \"4a5378c6-b8dc-4361-bfac-7b449c8d3a43\",\n                        \"226e4d76-112a-48e5-8ca4-9a6edb7e444b\",\n                        \"07b45014-a6a9-4f89-88d1-89626ace2c3f\",\n                        \"817091d0-dd61-462c-a070-b48acb7e9e84\",\n                        \"2b44f5cf-3c47-4d9e-a449-ba70bdd07037\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.970703125,\n            \"RowIndex\": 29,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13105836510658264,\n                    \"Height\": 0.043737463653087616,\n                    \"Left\": 0.37293633818626404,\n                    \"Top\": 0.5862902402877808\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37293633818626404,\n                        \"Y\": 0.5863935947418213\n                    },\n                    {\n                        \"X\": 0.5039675831794739,\n                        \"Y\": 0.5862902402877808\n                    },\n                    {\n                        \"X\": 0.5039947032928467,\n                        \"Y\": 0.6299239993095398\n                    },\n                    {\n                        \"X\": 0.37296169996261597,\n                        \"Y\": 0.630027711391449\n                    }\n                ]\n            },\n            \"Id\": \"a3c950ab-c08b-41e9-800c-1caddbf73473\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f88f50e2-6adf-4446-ba0a-396b3b623d13\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.1171875,\n            \"RowIndex\": 29,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12694482505321503,\n                    \"Height\": 0.043733835220336914,\n                    \"Left\": 0.5039675831794739,\n                    \"Top\": 0.5861901640892029\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039675831794739,\n                        \"Y\": 0.5862902402877808\n                    },\n                    {\n                        \"X\": 0.630883514881134,\n                        \"Y\": 0.5861901640892029\n                    },\n                    {\n                        \"X\": 0.6309123635292053,\n                        \"Y\": 0.6298235654830933\n                    },\n                    {\n                        \"X\": 0.5039947032928467,\n                        \"Y\": 0.6299239993095398\n                    }\n                ]\n            },\n            \"Id\": \"8c20d3b9-5dcc-4dc9-bda6-2e5a4e218a09\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"03ea395a-4efd-43fa-a75a-54f63a706781\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.751953125,\n            \"RowIndex\": 29,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14633408188819885,\n                    \"Height\": 0.043748751282691956,\n                    \"Left\": 0.630883514881134,\n                    \"Top\": 0.5860748291015625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.630883514881134,\n                        \"Y\": 0.5861901640892029\n                    },\n                    {\n                        \"X\": 0.7771867513656616,\n                        \"Y\": 0.5860748291015625\n                    },\n                    {\n                        \"X\": 0.7772175669670105,\n                        \"Y\": 0.6297077536582947\n                    },\n                    {\n                        \"X\": 0.6309123635292053,\n                        \"Y\": 0.6298235654830933\n                    }\n                ]\n            },\n            \"Id\": \"bd27a15f-ddd2-400e-be9d-c59fe8700bb6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6cc1a3f-45a6-43e3-bdc6-6ba41813e4b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.458984375,\n            \"RowIndex\": 29,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13378314673900604,\n                    \"Height\": 0.04373842850327492,\n                    \"Left\": 0.7771867513656616,\n                    \"Top\": 0.5859693288803101\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7771867513656616,\n                        \"Y\": 0.5860748291015625\n                    },\n                    {\n                        \"X\": 0.9109371900558472,\n                        \"Y\": 0.5859693288803101\n                    },\n                    {\n                        \"X\": 0.9109698534011841,\n                        \"Y\": 0.6296018958091736\n                    },\n                    {\n                        \"X\": 0.7772175669670105,\n                        \"Y\": 0.6297077536582947\n                    }\n                ]\n            },\n            \"Id\": \"5fd60ef7-7332-407c-bdc8-fda92222b95f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"206d55c6-1a37-47d6-94a4-4aef9305b2af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.669921875,\n            \"RowIndex\": 30,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27149221301078796,\n                    \"Height\": 0.030214563012123108,\n                    \"Left\": 0.1014869213104248,\n                    \"Top\": 0.630027711391449\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1014869213104248,\n                        \"Y\": 0.6302425861358643\n                    },\n                    {\n                        \"X\": 0.37296169996261597,\n                        \"Y\": 0.630027711391449\n                    },\n                    {\n                        \"X\": 0.37297913432121277,\n                        \"Y\": 0.6600269079208374\n                    },\n                    {\n                        \"X\": 0.10150180757045746,\n                        \"Y\": 0.6602422595024109\n                    }\n                ]\n            },\n            \"Id\": \"bcddf176-a639-44f4-8f03-0164eefd563a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"95d5fb12-cd67-4596-964d-d01334eec399\",\n                        \"8bb86de0-9ea5-4b6f-8cc9-a4928233926a\",\n                        \"fbb2836c-a752-47ba-bce9-43da42503543\",\n                        \"0fbbe774-e796-43af-b1d5-2acdeb4dc6d0\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.669921875,\n            \"RowIndex\": 30,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310516595840454,\n                    \"Height\": 0.030102867633104324,\n                    \"Left\": 0.37296169996261597,\n                    \"Top\": 0.6299239993095398\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37296169996261597,\n                        \"Y\": 0.630027711391449\n                    },\n                    {\n                        \"X\": 0.5039947032928467,\n                        \"Y\": 0.6299239993095398\n                    },\n                    {\n                        \"X\": 0.5040133595466614,\n                        \"Y\": 0.6599228978157043\n                    },\n                    {\n                        \"X\": 0.37297913432121277,\n                        \"Y\": 0.6600269079208374\n                    }\n                ]\n            },\n            \"Id\": \"c61add70-d98f-493d-8063-1577ac20bc50\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.669921875,\n            \"RowIndex\": 30,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12693752348423004,\n                    \"Height\": 0.030099347233772278,\n                    \"Left\": 0.5039947032928467,\n                    \"Top\": 0.6298235654830933\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5039947032928467,\n                        \"Y\": 0.6299239993095398\n                    },\n                    {\n                        \"X\": 0.6309123635292053,\n                        \"Y\": 0.6298235654830933\n                    },\n                    {\n                        \"X\": 0.6309322118759155,\n                        \"Y\": 0.6598222255706787\n                    },\n                    {\n                        \"X\": 0.5040133595466614,\n                        \"Y\": 0.6599228978157043\n                    }\n                ]\n            },\n            \"Id\": \"3e3b5bf1-f823-4368-a037-4ac93cb54d80\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.669921875,\n            \"RowIndex\": 30,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463264375925064,\n                    \"Height\": 0.030114436522126198,\n                    \"Left\": 0.6309123635292053,\n                    \"Top\": 0.6297077536582947\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309123635292053,\n                        \"Y\": 0.6298235654830933\n                    },\n                    {\n                        \"X\": 0.7772175669670105,\n                        \"Y\": 0.6297077536582947\n                    },\n                    {\n                        \"X\": 0.7772387862205505,\n                        \"Y\": 0.6597061157226562\n                    },\n                    {\n                        \"X\": 0.6309322118759155,\n                        \"Y\": 0.6598222255706787\n                    }\n                ]\n            },\n            \"Id\": \"fc91926a-4bcb-4b05-9227-c2456579529a\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.669921875,\n            \"RowIndex\": 30,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1339861899614334,\n                    \"Height\": 0.030104374513030052,\n                    \"Left\": 0.7772175669670105,\n                    \"Top\": 0.629601776599884\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772175669670105,\n                        \"Y\": 0.6297077536582947\n                    },\n                    {\n                        \"X\": 0.9111813306808472,\n                        \"Y\": 0.629601776599884\n                    },\n                    {\n                        \"X\": 0.9112038016319275,\n                        \"Y\": 0.6595998406410217\n                    },\n                    {\n                        \"X\": 0.7772387862205505,\n                        \"Y\": 0.6597061157226562\n                    }\n                ]\n            },\n            \"Id\": \"acc46913-609e-4287-bb22-b9acbe9470c5\",\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 75.0,\n            \"RowIndex\": 31,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714487612247467,\n                    \"Height\": 0.01430633757263422,\n                    \"Left\": 0.10153854638338089,\n                    \"Top\": 0.6600269079208374\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10153854638338089,\n                        \"Y\": 0.6602422595024109\n                    },\n                    {\n                        \"X\": 0.37297913432121277,\n                        \"Y\": 0.6600269079208374\n                    },\n                    {\n                        \"X\": 0.372987300157547,\n                        \"Y\": 0.6741175651550293\n                    },\n                    {\n                        \"X\": 0.1015455424785614,\n                        \"Y\": 0.6743332147598267\n                    }\n                ]\n            },\n            \"Id\": \"de394f56-9ecd-4e71-9215-ab7f2992b1e3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab6bd342-bcd1-4e6f-86b4-533c08fcee52\",\n                        \"83d09310-0e33-484d-bf95-ae1919a8051b\",\n                        \"0c2547c8-8052-4e2b-b13b-24fe84e63f86\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 73.6328125,\n            \"RowIndex\": 31,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104300200939178,\n                    \"Height\": 0.014194677583873272,\n                    \"Left\": 0.37297913432121277,\n                    \"Top\": 0.6599228978157043\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37297913432121277,\n                        \"Y\": 0.6600269079208374\n                    },\n                    {\n                        \"X\": 0.5040133595466614,\n                        \"Y\": 0.6599228978157043\n                    },\n                    {\n                        \"X\": 0.5040221214294434,\n                        \"Y\": 0.6740134954452515\n                    },\n                    {\n                        \"X\": 0.372987300157547,\n                        \"Y\": 0.6741175651550293\n                    }\n                ]\n            },\n            \"Id\": \"7c2eda0e-eff2-4a9d-8a1c-2f962309c01b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c4b902cc-3c69-4165-ab5f-22468fde5c35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 73.73046875,\n            \"RowIndex\": 31,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269281953573227,\n                    \"Height\": 0.014191288501024246,\n                    \"Left\": 0.5040133595466614,\n                    \"Top\": 0.6598222255706787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040133595466614,\n                        \"Y\": 0.6599228978157043\n                    },\n                    {\n                        \"X\": 0.6309322118759155,\n                        \"Y\": 0.6598222255706787\n                    },\n                    {\n                        \"X\": 0.6309415698051453,\n                        \"Y\": 0.6739127039909363\n                    },\n                    {\n                        \"X\": 0.5040221214294434,\n                        \"Y\": 0.6740134954452515\n                    }\n                ]\n            },\n            \"Id\": \"4f1f0511-e974-4b6c-82d8-9ebdcf6c85cf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"762ea307-06e1-4a1f-9bef-54106953e5cc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 74.21875,\n            \"RowIndex\": 31,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463165581226349,\n                    \"Height\": 0.01420655194669962,\n                    \"Left\": 0.6309322118759155,\n                    \"Top\": 0.6597061157226562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309322118759155,\n                        \"Y\": 0.6598222255706787\n                    },\n                    {\n                        \"X\": 0.7772387862205505,\n                        \"Y\": 0.6597061157226562\n                    },\n                    {\n                        \"X\": 0.7772487998008728,\n                        \"Y\": 0.6737964749336243\n                    },\n                    {\n                        \"X\": 0.6309415698051453,\n                        \"Y\": 0.6739127039909363\n                    }\n                ]\n            },\n            \"Id\": \"cc066bf0-bf82-4a0c-b99f-bf02f9c7fea2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7b749f2-57f9-4595-aeef-7a2f87e13b98\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 73.974609375,\n            \"RowIndex\": 31,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337640881538391,\n                    \"Height\": 0.014196453616023064,\n                    \"Left\": 0.7772387862205505,\n                    \"Top\": 0.659600019454956\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772387862205505,\n                        \"Y\": 0.6597061157226562\n                    },\n                    {\n                        \"X\": 0.9109923243522644,\n                        \"Y\": 0.659600019454956\n                    },\n                    {\n                        \"X\": 0.9110028743743896,\n                        \"Y\": 0.6736901998519897\n                    },\n                    {\n                        \"X\": 0.7772487998008728,\n                        \"Y\": 0.6737964749336243\n                    }\n                ]\n            },\n            \"Id\": \"e4e0fa6a-31e8-4ef3-95b6-3ac3355c8435\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dbb6124d-c934-4a89-a4a8-55a276248f47\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.30859375,\n            \"RowIndex\": 32,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714494466781616,\n                    \"Height\": 0.013397611677646637,\n                    \"Left\": 0.1015455424785614,\n                    \"Top\": 0.6741175651550293\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1015455424785614,\n                        \"Y\": 0.6743332147598267\n                    },\n                    {\n                        \"X\": 0.372987300157547,\n                        \"Y\": 0.6741175651550293\n                    },\n                    {\n                        \"X\": 0.37299495935440063,\n                        \"Y\": 0.6872993111610413\n                    },\n                    {\n                        \"X\": 0.1015520840883255,\n                        \"Y\": 0.6875151991844177\n                    }\n                ]\n            },\n            \"Id\": \"395f250a-6e6c-42ae-b7a8-7325cbcc467a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"537170b5-e808-4012-9401-55afeb9c76c2\",\n                        \"c95f571f-9bd6-4cde-bfef-d6052bdc0577\",\n                        \"1244b417-6dd3-4b6c-af0f-5f04f8eca73e\",\n                        \"d57b1dc2-dbbb-42b5-a089-06c80bc740d8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.6484375,\n            \"RowIndex\": 32,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104300200939178,\n                    \"Height\": 0.013285835273563862,\n                    \"Left\": 0.372987300157547,\n                    \"Top\": 0.6740134954452515\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.372987300157547,\n                        \"Y\": 0.6741175651550293\n                    },\n                    {\n                        \"X\": 0.5040221214294434,\n                        \"Y\": 0.6740134954452515\n                    },\n                    {\n                        \"X\": 0.5040303468704224,\n                        \"Y\": 0.6871951222419739\n                    },\n                    {\n                        \"X\": 0.37299495935440063,\n                        \"Y\": 0.6872993111610413\n                    }\n                ]\n            },\n            \"Id\": \"350fb5c7-78cc-4c0a-b0cc-0a6acac9a05b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b29dddff-62fe-448f-a5ef-268fd13bc3ee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.794921875,\n            \"RowIndex\": 32,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269281506538391,\n                    \"Height\": 0.01328245084732771,\n                    \"Left\": 0.5040221214294434,\n                    \"Top\": 0.6739127039909363\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040221214294434,\n                        \"Y\": 0.6740134954452515\n                    },\n                    {\n                        \"X\": 0.6309415698051453,\n                        \"Y\": 0.6739127039909363\n                    },\n                    {\n                        \"X\": 0.6309502720832825,\n                        \"Y\": 0.6870942115783691\n                    },\n                    {\n                        \"X\": 0.5040303468704224,\n                        \"Y\": 0.6871951222419739\n                    }\n                ]\n            },\n            \"Id\": \"02e8d5af-1bde-4f6f-834f-19190ba9969f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"74d4ecfe-b7d4-4e1a-9246-7a2f73b41119\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.380859375,\n            \"RowIndex\": 32,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1463165581226349,\n                    \"Height\": 0.013297740370035172,\n                    \"Left\": 0.6309415698051453,\n                    \"Top\": 0.6737964749336243\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309415698051453,\n                        \"Y\": 0.6739127039909363\n                    },\n                    {\n                        \"X\": 0.7772487998008728,\n                        \"Y\": 0.6737964749336243\n                    },\n                    {\n                        \"X\": 0.7772580981254578,\n                        \"Y\": 0.6869778633117676\n                    },\n                    {\n                        \"X\": 0.6309502720832825,\n                        \"Y\": 0.6870942115783691\n                    }\n                ]\n            },\n            \"Id\": \"d74b94d8-b33c-4a9c-8347-466af7d45b0a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"460720cb-73e6-46b8-b3f0-fde5287cf928\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.087890625,\n            \"RowIndex\": 32,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13376399874687195,\n                    \"Height\": 0.013287639245390892,\n                    \"Left\": 0.7772487998008728,\n                    \"Top\": 0.6736901998519897\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772487998008728,\n                        \"Y\": 0.6737964749336243\n                    },\n                    {\n                        \"X\": 0.9110028743743896,\n                        \"Y\": 0.6736901998519897\n                    },\n                    {\n                        \"X\": 0.9110127687454224,\n                        \"Y\": 0.6868714690208435\n                    },\n                    {\n                        \"X\": 0.7772580981254578,\n                        \"Y\": 0.6869778633117676\n                    }\n                ]\n            },\n            \"Id\": \"3d46f345-362a-40ad-bbf2-90e647d204eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"da520763-ebc5-44a3-96d3-41eca75610e9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.115234375,\n            \"RowIndex\": 33,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27145135402679443,\n                    \"Height\": 0.014761630445718765,\n                    \"Left\": 0.1015520840883255,\n                    \"Top\": 0.6872993111610413\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1015520840883255,\n                        \"Y\": 0.6875151991844177\n                    },\n                    {\n                        \"X\": 0.37299495935440063,\n                        \"Y\": 0.6872993111610413\n                    },\n                    {\n                        \"X\": 0.37300342321395874,\n                        \"Y\": 0.7018448114395142\n                    },\n                    {\n                        \"X\": 0.10155930370092392,\n                        \"Y\": 0.7020609378814697\n                    }\n                ]\n            },\n            \"Id\": \"dd9d1ccd-7b6c-4b74-9c2c-69096214ba9c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"09264e9d-7e4a-4b54-bf0a-03644c160fa5\",\n                        \"16fecb89-0016-4f89-a6e8-c944c6cc3a1c\",\n                        \"eb312e17-e847-4443-b20f-06a307ab05bf\",\n                        \"fd4eaaee-6287-482f-81b0-74c43cdb0ec6\",\n                        \"f69c3cd4-6998-4768-94ae-71f8af3a0919\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.40625,\n            \"RowIndex\": 33,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.131044402718544,\n                    \"Height\": 0.014649705961346626,\n                    \"Left\": 0.37299495935440063,\n                    \"Top\": 0.6871951222419739\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37299495935440063,\n                        \"Y\": 0.6872993111610413\n                    },\n                    {\n                        \"X\": 0.5040303468704224,\n                        \"Y\": 0.6871951222419739\n                    },\n                    {\n                        \"X\": 0.5040393471717834,\n                        \"Y\": 0.7017405033111572\n                    },\n                    {\n                        \"X\": 0.37300342321395874,\n                        \"Y\": 0.7018448114395142\n                    }\n                ]\n            },\n            \"Id\": \"ea1b70a7-0d0a-4a3a-b820-62886bcb74c9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e68a2661-1117-4d6a-97ea-62a4a0e720d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.552734375,\n            \"RowIndex\": 33,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692956626415253,\n                    \"Height\": 0.014646305702626705,\n                    \"Left\": 0.5040303468704224,\n                    \"Top\": 0.6870942115783691\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040303468704224,\n                        \"Y\": 0.6871951222419739\n                    },\n                    {\n                        \"X\": 0.6309502720832825,\n                        \"Y\": 0.6870942115783691\n                    },\n                    {\n                        \"X\": 0.6309598684310913,\n                        \"Y\": 0.7016394138336182\n                    },\n                    {\n                        \"X\": 0.5040393471717834,\n                        \"Y\": 0.7017405033111572\n                    }\n                ]\n            },\n            \"Id\": \"ea3f10b2-ab66-4e9b-83ba-2297e6a1a485\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3aae17af-3f0e-4c65-a8e1-82e8a99f1d60\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.138671875,\n            \"RowIndex\": 33,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631812274456024,\n                    \"Height\": 0.01466159988194704,\n                    \"Left\": 0.6309502720832825,\n                    \"Top\": 0.6869778633117676\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309502720832825,\n                        \"Y\": 0.6870942115783691\n                    },\n                    {\n                        \"X\": 0.7772580981254578,\n                        \"Y\": 0.6869778633117676\n                    },\n                    {\n                        \"X\": 0.7772684097290039,\n                        \"Y\": 0.701522946357727\n                    },\n                    {\n                        \"X\": 0.6309598684310913,\n                        \"Y\": 0.7016394138336182\n                    }\n                ]\n            },\n            \"Id\": \"27004a94-2ab4-48bb-8f12-2c36cf7f6d35\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"011f1c86-d104-4e20-8de1-fd0b9e50ffae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.845703125,\n            \"RowIndex\": 33,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337655633687973,\n                    \"Height\": 0.014651474542915821,\n                    \"Left\": 0.7772580981254578,\n                    \"Top\": 0.6868714690208435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772580981254578,\n                        \"Y\": 0.6869778633117676\n                    },\n                    {\n                        \"X\": 0.9110127687454224,\n                        \"Y\": 0.6868714690208435\n                    },\n                    {\n                        \"X\": 0.9110236763954163,\n                        \"Y\": 0.7014164328575134\n                    },\n                    {\n                        \"X\": 0.7772684097290039,\n                        \"Y\": 0.701522946357727\n                    }\n                ]\n            },\n            \"Id\": \"90ae500f-fc8e-4478-8c45-4be4fc346348\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2a8c4606-78de-4454-bc6a-3ee80295f343\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.72265625,\n            \"RowIndex\": 34,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27145203948020935,\n                    \"Height\": 0.013852904550731182,\n                    \"Left\": 0.10155930370092392,\n                    \"Top\": 0.7018448114395142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10155930370092392,\n                        \"Y\": 0.7020609378814697\n                    },\n                    {\n                        \"X\": 0.37300342321395874,\n                        \"Y\": 0.7018448114395142\n                    },\n                    {\n                        \"X\": 0.37301135063171387,\n                        \"Y\": 0.7154813408851624\n                    },\n                    {\n                        \"X\": 0.10156606882810593,\n                        \"Y\": 0.7156977653503418\n                    }\n                ]\n            },\n            \"Id\": \"93307c2f-519b-4629-8c6d-88ce6b39941f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"29a0d003-fbfb-46c5-b737-73bddd58790c\",\n                        \"cd2d36ef-bf33-45c5-87ea-ab3cf3ffef7e\",\n                        \"e96d5f5c-6cf1-4022-b647-1ddfde69df79\",\n                        \"942b782b-b4ee-448b-964f-bac6c1897426\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.0625,\n            \"RowIndex\": 34,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310444325208664,\n                    \"Height\": 0.013740859925746918,\n                    \"Left\": 0.37300342321395874,\n                    \"Top\": 0.7017405033111572\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37300342321395874,\n                        \"Y\": 0.7018448114395142\n                    },\n                    {\n                        \"X\": 0.5040393471717834,\n                        \"Y\": 0.7017405033111572\n                    },\n                    {\n                        \"X\": 0.5040478706359863,\n                        \"Y\": 0.7153769135475159\n                    },\n                    {\n                        \"X\": 0.37301135063171387,\n                        \"Y\": 0.7154813408851624\n                    }\n                ]\n            },\n            \"Id\": \"4a67de6d-5a9d-4fa4-8db3-8483dd5e719b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"741ee6f9-f62b-4fce-9945-faf5a63bbb74\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.16015625,\n            \"RowIndex\": 34,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12692955136299133,\n                    \"Height\": 0.013737463392317295,\n                    \"Left\": 0.5040393471717834,\n                    \"Top\": 0.7016394138336182\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040393471717834,\n                        \"Y\": 0.7017405033111572\n                    },\n                    {\n                        \"X\": 0.6309598684310913,\n                        \"Y\": 0.7016394138336182\n                    },\n                    {\n                        \"X\": 0.6309689283370972,\n                        \"Y\": 0.7152757048606873\n                    },\n                    {\n                        \"X\": 0.5040478706359863,\n                        \"Y\": 0.7153769135475159\n                    }\n                ]\n            },\n            \"Id\": \"b04b5db5-d665-4f7e-a862-493cd9ba01e5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9bb5cbd5-dfde-45fd-bedc-84394fca93e4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.74609375,\n            \"RowIndex\": 34,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631813764572144,\n                    \"Height\": 0.013752784579992294,\n                    \"Left\": 0.6309598684310913,\n                    \"Top\": 0.701522946357727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309598684310913,\n                        \"Y\": 0.7016394138336182\n                    },\n                    {\n                        \"X\": 0.7772684097290039,\n                        \"Y\": 0.701522946357727\n                    },\n                    {\n                        \"X\": 0.7772780060768127,\n                        \"Y\": 0.7151591181755066\n                    },\n                    {\n                        \"X\": 0.6309689283370972,\n                        \"Y\": 0.7152757048606873\n                    }\n                ]\n            },\n            \"Id\": \"2f3516e3-571f-4faa-98a6-e9327e9841c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"43e1c912-6ee6-417e-8a50-8a20ee01ff04\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.501953125,\n            \"RowIndex\": 34,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13376548886299133,\n                    \"Height\": 0.013742655515670776,\n                    \"Left\": 0.7772684097290039,\n                    \"Top\": 0.7014164328575134\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772684097290039,\n                        \"Y\": 0.701522946357727\n                    },\n                    {\n                        \"X\": 0.9110236763954163,\n                        \"Y\": 0.7014164328575134\n                    },\n                    {\n                        \"X\": 0.9110338687896729,\n                        \"Y\": 0.7150524854660034\n                    },\n                    {\n                        \"X\": 0.7772780060768127,\n                        \"Y\": 0.7151591181755066\n                    }\n                ]\n            },\n            \"Id\": \"7a6e1d44-6679-4de9-8791-54382bc56efa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4473ec9f-ad13-4112-a5c6-7f43cad12d44\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.55078125,\n            \"RowIndex\": 35,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27145320177078247,\n                    \"Height\": 0.013853268697857857,\n                    \"Left\": 0.10156606882810593,\n                    \"Top\": 0.7154813408851624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10156606882810593,\n                        \"Y\": 0.7156977653503418\n                    },\n                    {\n                        \"X\": 0.37301135063171387,\n                        \"Y\": 0.7154813408851624\n                    },\n                    {\n                        \"X\": 0.373019278049469,\n                        \"Y\": 0.7291179895401001\n                    },\n                    {\n                        \"X\": 0.10157283395528793,\n                        \"Y\": 0.7293346524238586\n                    }\n                ]\n            },\n            \"Id\": \"68c3d239-eef1-424d-b675-68bad51fda33\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15bf248d-6c05-447c-b83c-12a46bb8364c\",\n                        \"a619aafa-fc4b-434d-a4e9-64b4ffbfad77\",\n                        \"a3796b2f-2c7c-4f23-9b5c-b3a7c7c65786\",\n                        \"3fe444e9-081e-4391-bcf9-6552d975480f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.890625,\n            \"RowIndex\": 35,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104498386383057,\n                    \"Height\": 0.013741095550358295,\n                    \"Left\": 0.37301135063171387,\n                    \"Top\": 0.7153769135475159\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37301135063171387,\n                        \"Y\": 0.7154813408851624\n                    },\n                    {\n                        \"X\": 0.5040478706359863,\n                        \"Y\": 0.7153769135475159\n                    },\n                    {\n                        \"X\": 0.5040563344955444,\n                        \"Y\": 0.7290134429931641\n                    },\n                    {\n                        \"X\": 0.373019278049469,\n                        \"Y\": 0.7291179895401001\n                    }\n                ]\n            },\n            \"Id\": \"877fad2a-49c0-41b7-a703-49a15b7b3c45\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5333e7f8-3d38-4cee-9d53-bb3aeae539ab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.037109375,\n            \"RowIndex\": 35,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269300878047943,\n                    \"Height\": 0.013737695291638374,\n                    \"Left\": 0.5040478706359863,\n                    \"Top\": 0.7152757048606873\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040478706359863,\n                        \"Y\": 0.7153769135475159\n                    },\n                    {\n                        \"X\": 0.6309689283370972,\n                        \"Y\": 0.7152757048606873\n                    },\n                    {\n                        \"X\": 0.6309779286384583,\n                        \"Y\": 0.7289121150970459\n                    },\n                    {\n                        \"X\": 0.5040563344955444,\n                        \"Y\": 0.7290134429931641\n                    }\n                ]\n            },\n            \"Id\": \"093d6c0b-7e48-4dce-bcdd-291cc5ab813a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"697d2ba9-a210-4f6b-9765-ca45f8cb3f20\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.623046875,\n            \"RowIndex\": 35,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631876349449158,\n                    \"Height\": 0.013753034174442291,\n                    \"Left\": 0.6309689283370972,\n                    \"Top\": 0.7151591181755066\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309689283370972,\n                        \"Y\": 0.7152757048606873\n                    },\n                    {\n                        \"X\": 0.7772780060768127,\n                        \"Y\": 0.7151591181755066\n                    },\n                    {\n                        \"X\": 0.7772876620292664,\n                        \"Y\": 0.7287953495979309\n                    },\n                    {\n                        \"X\": 0.6309779286384583,\n                        \"Y\": 0.7289121150970459\n                    }\n                ]\n            },\n            \"Id\": \"308f8633-bf5f-43ac-a837-da9cb23add90\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2cccbcf1-e56a-4c22-845a-15521d4cb568\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.330078125,\n            \"RowIndex\": 35,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337660551071167,\n                    \"Height\": 0.013742893934249878,\n                    \"Left\": 0.7772780060768127,\n                    \"Top\": 0.7150524854660034\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772780060768127,\n                        \"Y\": 0.7151591181755066\n                    },\n                    {\n                        \"X\": 0.9110338687896729,\n                        \"Y\": 0.7150524854660034\n                    },\n                    {\n                        \"X\": 0.9110441207885742,\n                        \"Y\": 0.7286885976791382\n                    },\n                    {\n                        \"X\": 0.7772876620292664,\n                        \"Y\": 0.7287953495979309\n                    }\n                ]\n            },\n            \"Id\": \"d6e00685-2eb0-4e54-89d8-50bbb19b7864\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bf25dbb3-71b4-42ec-8d5c-8ad3f2dd2e3f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.087890625,\n            \"RowIndex\": 36,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714540958404541,\n                    \"Height\": 0.013399063609540462,\n                    \"Left\": 0.10157283395528793,\n                    \"Top\": 0.7291179895401001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10157283395528793,\n                        \"Y\": 0.7293346524238586\n                    },\n                    {\n                        \"X\": 0.373019278049469,\n                        \"Y\": 0.7291179895401001\n                    },\n                    {\n                        \"X\": 0.37302693724632263,\n                        \"Y\": 0.7423002123832703\n                    },\n                    {\n                        \"X\": 0.10157938301563263,\n                        \"Y\": 0.7425170540809631\n                    }\n                ]\n            },\n            \"Id\": \"f0fdbabd-3103-4db7-9b71-ea332973e12d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"554ad521-10ff-45c8-a3cd-5d8b271494a6\",\n                        \"a6bdcfc8-272f-48c7-bb52-a78f20fa1a03\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.427734375,\n            \"RowIndex\": 36,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13104526698589325,\n                    \"Height\": 0.01328677125275135,\n                    \"Left\": 0.373019278049469,\n                    \"Top\": 0.7290134429931641\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.373019278049469,\n                        \"Y\": 0.7291179895401001\n                    },\n                    {\n                        \"X\": 0.5040563344955444,\n                        \"Y\": 0.7290134429931641\n                    },\n                    {\n                        \"X\": 0.5040645599365234,\n                        \"Y\": 0.7421954870223999\n                    },\n                    {\n                        \"X\": 0.37302693724632263,\n                        \"Y\": 0.7423002123832703\n                    }\n                ]\n            },\n            \"Id\": \"ea0c977c-3fbf-47ff-a772-e5f8f73d0199\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5ed4c30b-cd68-4337-9af0-8841b51d9288\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.57421875,\n            \"RowIndex\": 36,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269303262233734,\n                    \"Height\": 0.01328337099403143,\n                    \"Left\": 0.5040563344955444,\n                    \"Top\": 0.7289121150970459\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040563344955444,\n                        \"Y\": 0.7290134429931641\n                    },\n                    {\n                        \"X\": 0.6309779286384583,\n                        \"Y\": 0.7289121150970459\n                    },\n                    {\n                        \"X\": 0.6309866905212402,\n                        \"Y\": 0.742094099521637\n                    },\n                    {\n                        \"X\": 0.5040645599365234,\n                        \"Y\": 0.7421954870223999\n                    }\n                ]\n            },\n            \"Id\": \"dee9123b-162f-4d6a-9784-a3adb6d87e1f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2708f34b-ca17-4f45-83d7-8032cbffa612\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.16015625,\n            \"RowIndex\": 36,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631906151771545,\n                    \"Height\": 0.013298731297254562,\n                    \"Left\": 0.6309779286384583,\n                    \"Top\": 0.7287953495979309\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309779286384583,\n                        \"Y\": 0.7289121150970459\n                    },\n                    {\n                        \"X\": 0.7772876620292664,\n                        \"Y\": 0.7287953495979309\n                    },\n                    {\n                        \"X\": 0.7772970199584961,\n                        \"Y\": 0.7419772148132324\n                    },\n                    {\n                        \"X\": 0.6309866905212402,\n                        \"Y\": 0.742094099521637\n                    }\n                ]\n            },\n            \"Id\": \"d9f6e5bf-d44d-4349-b0e9-f5fc84c951c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab43754c-a26a-41f0-893e-9dad342146c7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.8671875,\n            \"RowIndex\": 36,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337662935256958,\n                    \"Height\": 0.013288584537804127,\n                    \"Left\": 0.7772876620292664,\n                    \"Top\": 0.7286885976791382\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772876620292664,\n                        \"Y\": 0.7287953495979309\n                    },\n                    {\n                        \"X\": 0.9110441207885742,\n                        \"Y\": 0.7286885976791382\n                    },\n                    {\n                        \"X\": 0.9110539555549622,\n                        \"Y\": 0.7418703436851501\n                    },\n                    {\n                        \"X\": 0.7772970199584961,\n                        \"Y\": 0.7419772148132324\n                    }\n                ]\n            },\n            \"Id\": \"b0d9fc30-c848-4172-b197-0293d6f763de\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"816dd870-8863-4d46-9458-1929e0ebc9a1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.015625,\n            \"RowIndex\": 37,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27145546674728394,\n                    \"Height\": 0.013853984884917736,\n                    \"Left\": 0.10157938301563263,\n                    \"Top\": 0.7423002123832703\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10157938301563263,\n                        \"Y\": 0.7425170540809631\n                    },\n                    {\n                        \"X\": 0.37302693724632263,\n                        \"Y\": 0.7423002123832703\n                    },\n                    {\n                        \"X\": 0.37303486466407776,\n                        \"Y\": 0.7559370398521423\n                    },\n                    {\n                        \"X\": 0.10158614814281464,\n                        \"Y\": 0.7561541795730591\n                    }\n                ]\n            },\n            \"Id\": \"10f83333-21f7-4b9f-97b2-66874fe5cb6c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"61edc26f-e78a-46d1-ad38-fcd8ac86dc05\",\n                        \"1d112e59-3821-4514-b84a-f0d1a485cfe3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.306640625,\n            \"RowIndex\": 37,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310460865497589,\n                    \"Height\": 0.013741559349000454,\n                    \"Left\": 0.37302693724632263,\n                    \"Top\": 0.7421954870223999\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37302693724632263,\n                        \"Y\": 0.7423002123832703\n                    },\n                    {\n                        \"X\": 0.5040645599365234,\n                        \"Y\": 0.7421954870223999\n                    },\n                    {\n                        \"X\": 0.5040730237960815,\n                        \"Y\": 0.7558322548866272\n                    },\n                    {\n                        \"X\": 0.37303486466407776,\n                        \"Y\": 0.7559370398521423\n                    }\n                ]\n            },\n            \"Id\": \"c72d99b6-34e3-49b1-bd43-4398f6bd86b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6fd86198-7574-4c76-a9eb-9b922c09f36d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.453125,\n            \"RowIndex\": 37,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12693114578723907,\n                    \"Height\": 0.013738151639699936,\n                    \"Left\": 0.5040645599365234,\n                    \"Top\": 0.742094099521637\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040645599365234,\n                        \"Y\": 0.7421954870223999\n                    },\n                    {\n                        \"X\": 0.6309866905212402,\n                        \"Y\": 0.742094099521637\n                    },\n                    {\n                        \"X\": 0.6309956908226013,\n                        \"Y\": 0.7557307481765747\n                    },\n                    {\n                        \"X\": 0.5040730237960815,\n                        \"Y\": 0.7558322548866272\n                    }\n                ]\n            },\n            \"Id\": \"1a8fb33f-5fc4-4831-8466-86a31e4465d9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6034eab9-66ab-4dbd-bafc-e29299fd5cd6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.0390625,\n            \"RowIndex\": 37,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14631998538970947,\n                    \"Height\": 0.013753525912761688,\n                    \"Left\": 0.6309866905212402,\n                    \"Top\": 0.7419772148132324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309866905212402,\n                        \"Y\": 0.742094099521637\n                    },\n                    {\n                        \"X\": 0.7772970199584961,\n                        \"Y\": 0.7419772148132324\n                    },\n                    {\n                        \"X\": 0.7773066759109497,\n                        \"Y\": 0.7556136846542358\n                    },\n                    {\n                        \"X\": 0.6309956908226013,\n                        \"Y\": 0.7557307481765747\n                    }\n                ]\n            },\n            \"Id\": \"2e392263-da6c-4b82-ae13-d84c09ff856e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6f4c5e0a-8816-4f3a-bc96-f3112955f5e4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.794921875,\n            \"RowIndex\": 37,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13376717269420624,\n                    \"Height\": 0.01374336238950491,\n                    \"Left\": 0.7772970199584961,\n                    \"Top\": 0.7418703436851501\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7772970199584961,\n                        \"Y\": 0.7419772148132324\n                    },\n                    {\n                        \"X\": 0.9110539555549622,\n                        \"Y\": 0.7418703436851501\n                    },\n                    {\n                        \"X\": 0.9110642075538635,\n                        \"Y\": 0.7555067539215088\n                    },\n                    {\n                        \"X\": 0.7773066759109497,\n                        \"Y\": 0.7556136846542358\n                    }\n                ]\n            },\n            \"Id\": \"4d3468cd-9c96-4769-be52-2859179a942c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"871b03ab-b081-44e4-b8a3-546276441bd5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.45703125,\n            \"RowIndex\": 38,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714666724205017,\n                    \"Height\": 0.03112834505736828,\n                    \"Left\": 0.10158614814281464,\n                    \"Top\": 0.7559370398521423\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10158614814281464,\n                        \"Y\": 0.7561541795730591\n                    },\n                    {\n                        \"X\": 0.37303486466407776,\n                        \"Y\": 0.7559370398521423\n                    },\n                    {\n                        \"X\": 0.37305280566215515,\n                        \"Y\": 0.786847710609436\n                    },\n                    {\n                        \"X\": 0.1016014888882637,\n                        \"Y\": 0.7870653867721558\n                    }\n                ]\n            },\n            \"Id\": \"5955dbef-3d16-4ec9-8454-fdce756523fa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6297ea3-dd40-4b09-a82f-f95322e72d39\",\n                        \"8a244359-a2a2-46b6-a983-49b3e26707bc\",\n                        \"ec26d6e4-df7c-401e-b23b-b1e5996196d6\",\n                        \"3de45766-e676-44a3-aabd-3c3df605b735\",\n                        \"824adec7-fe60-4aac-b58a-4ec170689a31\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.748046875,\n            \"RowIndex\": 38,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13105738162994385,\n                    \"Height\": 0.03101547621190548,\n                    \"Left\": 0.37303486466407776,\n                    \"Top\": 0.7558322548866272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37303486466407776,\n                        \"Y\": 0.7559370398521423\n                    },\n                    {\n                        \"X\": 0.5040730237960815,\n                        \"Y\": 0.7558322548866272\n                    },\n                    {\n                        \"X\": 0.5040922164916992,\n                        \"Y\": 0.786742627620697\n                    },\n                    {\n                        \"X\": 0.37305280566215515,\n                        \"Y\": 0.786847710609436\n                    }\n                ]\n            },\n            \"Id\": \"2dd1f2be-e8e0-45f8-852d-c5a9c90443bd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a2e8981-c477-47e6-8857-a93e29ef897a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.845703125,\n            \"RowIndex\": 38,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12694312632083893,\n                    \"Height\": 0.031011912971735,\n                    \"Left\": 0.5040730237960815,\n                    \"Top\": 0.7557307481765747\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040730237960815,\n                        \"Y\": 0.7558322548866272\n                    },\n                    {\n                        \"X\": 0.6309956908226013,\n                        \"Y\": 0.7557307481765747\n                    },\n                    {\n                        \"X\": 0.6310161352157593,\n                        \"Y\": 0.7866408824920654\n                    },\n                    {\n                        \"X\": 0.5040922164916992,\n                        \"Y\": 0.786742627620697\n                    }\n                ]\n            },\n            \"Id\": \"d92c5233-b6ff-46bc-9e24-5dc361b4b8cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c86912c8-dedc-4b89-a9c3-09aa04dc119e\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.48046875,\n            \"RowIndex\": 38,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14633283019065857,\n                    \"Height\": 0.031027158722281456,\n                    \"Left\": 0.6309956908226013,\n                    \"Top\": 0.7556136846542358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309956908226013,\n                        \"Y\": 0.7557307481765747\n                    },\n                    {\n                        \"X\": 0.7773066759109497,\n                        \"Y\": 0.7556136846542358\n                    },\n                    {\n                        \"X\": 0.7773284912109375,\n                        \"Y\": 0.7865235209465027\n                    },\n                    {\n                        \"X\": 0.6310161352157593,\n                        \"Y\": 0.7866408824920654\n                    }\n                ]\n            },\n            \"Id\": \"5d2025c0-974e-4bd9-aa70-846737c9d421\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"34b4a5fe-f84b-4e6a-ab3a-c89a670fbc90\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.1875,\n            \"RowIndex\": 38,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13378068804740906,\n                    \"Height\": 0.031016815453767776,\n                    \"Left\": 0.7773066759109497,\n                    \"Top\": 0.7555067539215088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7773066759109497,\n                        \"Y\": 0.7556136846542358\n                    },\n                    {\n                        \"X\": 0.9110642075538635,\n                        \"Y\": 0.7555067539215088\n                    },\n                    {\n                        \"X\": 0.9110873341560364,\n                        \"Y\": 0.7864162921905518\n                    },\n                    {\n                        \"X\": 0.7773284912109375,\n                        \"Y\": 0.7865235209465027\n                    }\n                ]\n            },\n            \"Id\": \"fb34a6eb-d540-4202-832d-995137828798\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"295a6aee-652c-4851-b7f8-0bf02f1484a7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.80078125,\n            \"RowIndex\": 39,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27147141098976135,\n                    \"Height\": 0.03476622700691223,\n                    \"Left\": 0.1016014888882637,\n                    \"Top\": 0.786847710609436\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1016014888882637,\n                        \"Y\": 0.7870653867721558\n                    },\n                    {\n                        \"X\": 0.37305280566215515,\n                        \"Y\": 0.786847710609436\n                    },\n                    {\n                        \"X\": 0.37307289242744446,\n                        \"Y\": 0.8213956356048584\n                    },\n                    {\n                        \"X\": 0.10161864012479782,\n                        \"Y\": 0.8216139674186707\n                    }\n                ]\n            },\n            \"Id\": \"0474a62b-8531-4b5a-a054-c50a7abb11b4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d798cb17-4f45-4a20-ad99-417e99bc8f34\",\n                        \"dc2ec9f4-8172-4515-9cad-74f79f5f8ff5\",\n                        \"11dcc07f-976d-440f-a26f-17fd879b4f7f\",\n                        \"462d05a1-b263-42ba-a32e-b1dad63e7318\",\n                        \"4445b0d9-f5cf-404c-a9a2-b79fd1f46ffa\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.04296875,\n            \"RowIndex\": 39,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1310609132051468,\n                    \"Height\": 0.03465300425887108,\n                    \"Left\": 0.37305280566215515,\n                    \"Top\": 0.786742627620697\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37305280566215515,\n                        \"Y\": 0.786847710609436\n                    },\n                    {\n                        \"X\": 0.5040922164916992,\n                        \"Y\": 0.786742627620697\n                    },\n                    {\n                        \"X\": 0.5041137337684631,\n                        \"Y\": 0.8212902545928955\n                    },\n                    {\n                        \"X\": 0.37307289242744446,\n                        \"Y\": 0.8213956356048584\n                    }\n                ]\n            },\n            \"Id\": \"ef8d666c-1542-4615-b817-b9797d504dfc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"47991706-70cb-48c6-968e-9541977060fd\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.189453125,\n            \"RowIndex\": 39,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12694674730300903,\n                    \"Height\": 0.03464939817786217,\n                    \"Left\": 0.5040922164916992,\n                    \"Top\": 0.7866408824920654\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5040922164916992,\n                        \"Y\": 0.786742627620697\n                    },\n                    {\n                        \"X\": 0.6310161352157593,\n                        \"Y\": 0.7866408824920654\n                    },\n                    {\n                        \"X\": 0.6310389637947083,\n                        \"Y\": 0.82118821144104\n                    },\n                    {\n                        \"X\": 0.5041137337684631,\n                        \"Y\": 0.8212902545928955\n                    }\n                ]\n            },\n            \"Id\": \"9302ce3a-00f5-492e-9e4b-44da82b7956a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d2a9f7c8-1451-43e6-8eac-f06158582224\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.775390625,\n            \"RowIndex\": 39,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14633680880069733,\n                    \"Height\": 0.03466465324163437,\n                    \"Left\": 0.6310161352157593,\n                    \"Top\": 0.7865235209465027\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6310161352157593,\n                        \"Y\": 0.7866408824920654\n                    },\n                    {\n                        \"X\": 0.7773284912109375,\n                        \"Y\": 0.7865235209465027\n                    },\n                    {\n                        \"X\": 0.7773529291152954,\n                        \"Y\": 0.8210705518722534\n                    },\n                    {\n                        \"X\": 0.6310389637947083,\n                        \"Y\": 0.82118821144104\n                    }\n                ]\n            },\n            \"Id\": \"1df88b62-2f77-4182-9ce5-4013300ab17b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4b60061-e2d7-4c58-b0e0-d57e195cd3f3\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.53125,\n            \"RowIndex\": 39,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1337847113609314,\n                    \"Height\": 0.034654248505830765,\n                    \"Left\": 0.7773284912109375,\n                    \"Top\": 0.7864162921905518\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7773284912109375,\n                        \"Y\": 0.7865235209465027\n                    },\n                    {\n                        \"X\": 0.9110873341560364,\n                        \"Y\": 0.7864162921905518\n                    },\n                    {\n                        \"X\": 0.9111132025718689,\n                        \"Y\": 0.8209629654884338\n                    },\n                    {\n                        \"X\": 0.7773529291152954,\n                        \"Y\": 0.8210705518722534\n                    }\n                ]\n            },\n            \"Id\": \"768e4e0f-72c5-431c-9e30-85f8b5dca169\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"375b3a6f-7fff-4166-b5bc-5b9b89745442\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.69140625,\n            \"RowIndex\": 40,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2714674770832062,\n                    \"Height\": 0.022948021069169044,\n                    \"Left\": 0.10161864012479782,\n                    \"Top\": 0.8213956356048584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10161864012479782,\n                        \"Y\": 0.8216139674186707\n                    },\n                    {\n                        \"X\": 0.37307289242744446,\n                        \"Y\": 0.8213956356048584\n                    },\n                    {\n                        \"X\": 0.3730860948562622,\n                        \"Y\": 0.844124972820282\n                    },\n                    {\n                        \"X\": 0.10162992030382156,\n                        \"Y\": 0.8443436622619629\n                    }\n                ]\n            },\n            \"Id\": \"191c11d4-091a-42e1-8f34-8b6a90e67c6f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"32fd9834-d493-4031-ab56-44cecb16a60d\",\n                        \"ca780646-fb2e-4ae0-9c12-15f83d544941\",\n                        \"0fbaa03d-082c-4b86-96ed-051597d032f7\",\n                        \"7133a586-eb0e-4db2-adbe-09921d372cde\",\n                        \"d527b58c-2df3-40af-b518-5852b45f30ba\",\n                        \"ccaaeb23-4edf-451e-9680-efde0926fa2d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.177734375,\n            \"RowIndex\": 40,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13105496764183044,\n                    \"Height\": 0.022834686562418938,\n                    \"Left\": 0.37307289242744446,\n                    \"Top\": 0.8212902545928955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37307289242744446,\n                        \"Y\": 0.8213956356048584\n                    },\n                    {\n                        \"X\": 0.5041137337684631,\n                        \"Y\": 0.8212902545928955\n                    },\n                    {\n                        \"X\": 0.5041278600692749,\n                        \"Y\": 0.84401935338974\n                    },\n                    {\n                        \"X\": 0.3730860948562622,\n                        \"Y\": 0.844124972820282\n                    }\n                ]\n            },\n            \"Id\": \"32c57ed4-5a92-44fb-8224-998c664f4984\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5f8e49d9-6400-408f-9976-39ec7f436410\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.275390625,\n            \"RowIndex\": 40,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1269402951002121,\n                    \"Height\": 0.022831177338957787,\n                    \"Left\": 0.5041137337684631,\n                    \"Top\": 0.82118821144104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5041137337684631,\n                        \"Y\": 0.8212902545928955\n                    },\n                    {\n                        \"X\": 0.6310389637947083,\n                        \"Y\": 0.82118821144104\n                    },\n                    {\n                        \"X\": 0.6310540437698364,\n                        \"Y\": 0.8439171314239502\n                    },\n                    {\n                        \"X\": 0.5041278600692749,\n                        \"Y\": 0.84401935338974\n                    }\n                ]\n            },\n            \"Id\": \"352241e9-bedd-420b-a0ec-d23d3911221a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"24ffdc0f-d47a-4153-bcbb-1adee569ea4d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.8125,\n            \"RowIndex\": 40,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14633002877235413,\n                    \"Height\": 0.022846577689051628,\n                    \"Left\": 0.6310389637947083,\n                    \"Top\": 0.8210705518722534\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6310389637947083,\n                        \"Y\": 0.82118821144104\n                    },\n                    {\n                        \"X\": 0.7773529291152954,\n                        \"Y\": 0.8210705518722534\n                    },\n                    {\n                        \"X\": 0.7773690223693848,\n                        \"Y\": 0.8437992334365845\n                    },\n                    {\n                        \"X\": 0.6310540437698364,\n                        \"Y\": 0.8439171314239502\n                    }\n                ]\n            },\n            \"Id\": \"b773959d-487e-40f9-af74-6e58e7bf47fc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cf2e9c38-0414-4c93-893b-43038ddb3ea4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.568359375,\n            \"RowIndex\": 40,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13377729058265686,\n                    \"Height\": 0.02283625863492489,\n                    \"Left\": 0.7773529291152954,\n                    \"Top\": 0.8209629654884338\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7773529291152954,\n                        \"Y\": 0.8210705518722534\n                    },\n                    {\n                        \"X\": 0.9111132025718689,\n                        \"Y\": 0.8209629654884338\n                    },\n                    {\n                        \"X\": 0.9111302495002747,\n                        \"Y\": 0.8436914682388306\n                    },\n                    {\n                        \"X\": 0.7773690223693848,\n                        \"Y\": 0.8437992334365845\n                    }\n                ]\n            },\n            \"Id\": \"e6a04af4-9f41-4c6e-9f7f-055ee31b83ce\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"80fbfc29-ea12-4419-b66c-90460ebb9365\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.166015625,\n            \"RowIndex\": 41,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27146515250205994,\n                    \"Height\": 0.015646973624825478,\n                    \"Left\": 0.10162992030382156,\n                    \"Top\": 0.844124972820282\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10162992030382156,\n                        \"Y\": 0.8443436622619629\n                    },\n                    {\n                        \"X\": 0.3730860948562622,\n                        \"Y\": 0.844124972820282\n                    },\n                    {\n                        \"X\": 0.3730950653553009,\n                        \"Y\": 0.8595529198646545\n                    },\n                    {\n                        \"X\": 0.1016375795006752,\n                        \"Y\": 0.8597719073295593\n                    }\n                ]\n            },\n            \"Id\": \"080b67f1-c172-4b0b-809b-57abcf125181\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6a1f79b8-ed21-4b9d-be8f-4ed12131fe58\",\n                        \"5dab3341-ff3e-48fa-8236-c405773df6eb\",\n                        \"179899d8-2d71-4011-b736-cc145b83aeab\",\n                        \"c2a1033a-fce8-4682-b574-44e4dac135fb\",\n                        \"407f5e89-1fd4-40e5-a74f-d02264f4e8e6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.408203125,\n            \"RowIndex\": 41,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13105136156082153,\n                    \"Height\": 0.015533559024333954,\n                    \"Left\": 0.3730860948562622,\n                    \"Top\": 0.84401935338974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3730860948562622,\n                        \"Y\": 0.844124972820282\n                    },\n                    {\n                        \"X\": 0.5041278600692749,\n                        \"Y\": 0.84401935338974\n                    },\n                    {\n                        \"X\": 0.5041374564170837,\n                        \"Y\": 0.8594472408294678\n                    },\n                    {\n                        \"X\": 0.3730950653553009,\n                        \"Y\": 0.8595529198646545\n                    }\n                ]\n            },\n            \"Id\": \"c970c9a0-e753-46a5-95ef-49e14669bc8f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"25ddaae0-e723-44d5-a6eb-a2fa4790161d\",\n                        \"d0446b00-e52b-49ed-a359-4f7e470f19a7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.5546875,\n            \"RowIndex\": 41,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12693637609481812,\n                    \"Height\": 0.015530107542872429,\n                    \"Left\": 0.5041278600692749,\n                    \"Top\": 0.8439171314239502\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5041278600692749,\n                        \"Y\": 0.84401935338974\n                    },\n                    {\n                        \"X\": 0.6310540437698364,\n                        \"Y\": 0.8439171314239502\n                    },\n                    {\n                        \"X\": 0.631064236164093,\n                        \"Y\": 0.8593448400497437\n                    },\n                    {\n                        \"X\": 0.5041374564170837,\n                        \"Y\": 0.8594472408294678\n                    }\n                ]\n            },\n            \"Id\": \"f89e4024-89a0-4821-b10f-5294f21b1035\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab6823c9-0f22-4926-a098-83ae659dd87c\",\n                        \"2d8e6b71-08d3-4648-b2a2-081af7f3ce52\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.189453125,\n            \"RowIndex\": 41,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14632590115070343,\n                    \"Height\": 0.015545598231256008,\n                    \"Left\": 0.6310540437698364,\n                    \"Top\": 0.8437992334365845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6310540437698364,\n                        \"Y\": 0.8439171314239502\n                    },\n                    {\n                        \"X\": 0.7773690223693848,\n                        \"Y\": 0.8437992334365845\n                    },\n                    {\n                        \"X\": 0.7773799300193787,\n                        \"Y\": 0.8592267632484436\n                    },\n                    {\n                        \"X\": 0.631064236164093,\n                        \"Y\": 0.8593448400497437\n                    }\n                ]\n            },\n            \"Id\": \"70bf65be-23c4-4e7e-b893-9178c4960e76\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"73a551e5-f388-43ea-9725-f79b9df80243\",\n                        \"f79ff45f-adf5-44b4-84f1-5cb2048a8134\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.896484375,\n            \"RowIndex\": 41,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13377277553081512,\n                    \"Height\": 0.015535332262516022,\n                    \"Left\": 0.7773690223693848,\n                    \"Top\": 0.8436914682388306\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7773690223693848,\n                        \"Y\": 0.8437992334365845\n                    },\n                    {\n                        \"X\": 0.9111302495002747,\n                        \"Y\": 0.8436914682388306\n                    },\n                    {\n                        \"X\": 0.9111418128013611,\n                        \"Y\": 0.8591188788414001\n                    },\n                    {\n                        \"X\": 0.7773799300193787,\n                        \"Y\": 0.8592267632484436\n                    }\n                ]\n            },\n            \"Id\": \"6e04f56c-34f4-4811-9b1b-4c7336ead57a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"78487c44-64fe-4d5b-8b31-ec0fa999089d\",\n                        \"8fa2cd66-8944-4f53-af9c-f6d3966f09dc\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SUMMARY\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 75.68359375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8093475103378296,\n                    \"Height\": 0.016521435230970383,\n                    \"Left\": 0.10130643844604492,\n                    \"Top\": 0.19196654856204987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10130643844604492,\n                        \"Y\": 0.19258347153663635\n                    },\n                    {\n                        \"X\": 0.9106420278549194,\n                        \"Y\": 0.19196654856204987\n                    },\n                    {\n                        \"X\": 0.9106539487838745,\n                        \"Y\": 0.20787020027637482\n                    },\n                    {\n                        \"X\": 0.10131432861089706,\n                        \"Y\": 0.20848798751831055\n                    }\n                ]\n            },\n            \"Id\": \"8bac7b1d-8af7-4f32-bf77-cd189f125385\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4bab52e4-0288-4b68-a6cb-408475635077\",\n                        \"9fab669d-6fcd-4c52-aa0c-03792b637fd3\",\n                        \"fa370ae6-8ec7-4738-bc6a-8c55cc440a3a\",\n                        \"10ce87b9-1442-4855-8f47-38e0181f1ac3\",\n                        \"06bd152f-468f-4307-bb2f-b3eb67d8d288\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 75.830078125,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8094009160995483,\n                    \"Height\": 0.03062078356742859,\n                    \"Left\": 0.10139056295156479,\n                    \"Top\": 0.36146220564842224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10139056295156479,\n                        \"Y\": 0.36208832263946533\n                    },\n                    {\n                        \"X\": 0.910768985748291,\n                        \"Y\": 0.36146220564842224\n                    },\n                    {\n                        \"X\": 0.9107914566993713,\n                        \"Y\": 0.3914552628993988\n                    },\n                    {\n                        \"X\": 0.10140544921159744,\n                        \"Y\": 0.39208298921585083\n                    }\n                ]\n            },\n            \"Id\": \"8a2571c6-3e4f-4a42-889a-514aa5a09833\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cd9cecdb-1824-4490-9db1-178f8840916d\",\n                        \"030b1aac-4ac0-427a-b244-be9207779b1b\",\n                        \"cc781aa1-2921-4131-9422-44630932eba2\",\n                        \"128a2f63-b51a-4daa-be14-6f8dc9905cdf\",\n                        \"8dc63b6c-45b5-43af-b511-08828197955b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 40.3564453125,\n            \"RowIndex\": 24,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8094271421432495,\n                    \"Height\": 0.013360677286982536,\n                    \"Left\": 0.10146748274564743,\n                    \"Top\": 0.5164324045181274\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10146748274564743,\n                        \"Y\": 0.5170668959617615\n                    },\n                    {\n                        \"X\": 0.9108850955963135,\n                        \"Y\": 0.5164324045181274\n                    },\n                    {\n                        \"X\": 0.9108946323394775,\n                        \"Y\": 0.5291578769683838\n                    },\n                    {\n                        \"X\": 0.10147380083799362,\n                        \"Y\": 0.5297930836677551\n                    }\n                ]\n            },\n            \"Id\": \"d9aee964-7b2a-41ec-8201-e882930da692\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1745df40-d50c-45ba-9d72-1dd6bca011f3\",\n                        \"3a338af0-b01e-4fdc-8029-1bf9a6e6f032\",\n                        \"3af16851-3467-43bc-bbe4-bb38335ac439\",\n                        \"cf7c0a62-52a2-49b5-ab62-c15ac42a7a4f\",\n                        \"25686602-754f-43d6-84dd-e970ca3ac30a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 61.669921875,\n            \"RowIndex\": 30,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.809468686580658,\n                    \"Height\": 0.030640335753560066,\n                    \"Left\": 0.10152365267276764,\n                    \"Top\": 0.6296018958091736\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10152365267276764,\n                        \"Y\": 0.6302425265312195\n                    },\n                    {\n                        \"X\": 0.9109698534011841,\n                        \"Y\": 0.6296018958091736\n                    },\n                    {\n                        \"X\": 0.9109923243522644,\n                        \"Y\": 0.659600019454956\n                    },\n                    {\n                        \"X\": 0.10153854638338089,\n                        \"Y\": 0.6602422595024109\n                    }\n                ]\n            },\n            \"Id\": \"7b25d4b1-1a00-4da1-aa4a-39e0ef26c5b0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bcddf176-a639-44f4-8f03-0164eefd563a\",\n                        \"c61add70-d98f-493d-8063-1577ac20bc50\",\n                        \"3e3b5bf1-f823-4368-a037-4ac93cb54d80\",\n                        \"fc91926a-4bcb-4b05-9227-c2456579529a\",\n                        \"acc46913-609e-4287-bb22-b9acbe9470c5\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SECTION_TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"TITLE\",\n            \"Confidence\": 99.462890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.42878225445747375,\n                    \"Height\": 0.05961893871426582,\n                    \"Left\": 0.29412010312080383,\n                    \"Top\": 0.07617390900850296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29412010312080383,\n                        \"Y\": 0.0764974057674408\n                    },\n                    {\n                        \"X\": 0.7228614091873169,\n                        \"Y\": 0.07617390900850296\n                    },\n                    {\n                        \"X\": 0.7229023575782776,\n                        \"Y\": 0.13546764850616455\n                    },\n                    {\n                        \"X\": 0.294153094291687,\n                        \"Y\": 0.13579285144805908\n                    }\n                ]\n            },\n            \"Id\": \"715e10c4-c416-4f0f-bf36-e0e19861aff7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"915b4836-19a6-43f4-aeef-3deb57c355dd\",\n                        \"0694177d-575b-4927-ae3a-d11e55e4b11e\",\n                        \"b4dbf69b-5fe9-4b2a-b4e5-d9959fbafbe0\",\n                        \"ccf304fd-5bb0-4b60-a36b-e7b203705eac\",\n                        \"871fb159-93d2-45e7-b1cb-f1844a08994c\",\n                        \"e556bf5b-aac1-4c34-ba89-b38b76482a11\",\n                        \"bae5c944-54be-4586-9c39-5d631ba0711a\",\n                        \"55fad0dc-4f08-4e5d-9de5-4380cbe0f76e\",\n                        \"21058087-0d70-4b44-b081-9654d04c1286\",\n                        \"dfd2cbe4-c97d-4aa3-8b0c-0040b10efee0\",\n                        \"a2daedf1-3810-4f1a-b175-0c1d87ec51e4\",\n                        \"185a53fe-5639-4e8d-9369-8300b1a864db\",\n                        \"4ecb0aba-efa4-4246-b797-a7ccd7f03852\",\n                        \"de9ccc0f-29f9-4247-af1b-68e6f6e67f07\",\n                        \"78947068-9338-4552-80ac-fd412f11a0e2\",\n                        \"a21d1062-6b2d-4bc0-99cf-8ed506fa1d5a\",\n                        \"0aaa9eb5-d1ac-4fa0-b1df-177fccbb96dc\",\n                        \"ff0674b4-21f8-42e6-9c9c-d7a11ec98905\",\n                        \"68dc8b0f-5204-404a-8591-55264e9a8e82\",\n                        \"973bf735-2707-4a9d-9426-e63f90b2948f\",\n                        \"5e5f61e4-5bc8-457a-adcb-5ee0d00b5bcb\",\n                        \"40a50940-588b-49a9-a56d-5feb2d220526\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"FOOTER\",\n            \"Confidence\": 87.841796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2515904903411865,\n                    \"Height\": 0.009889170527458191,\n                    \"Left\": 0.38360103964805603,\n                    \"Top\": 0.8927558660507202\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38360103964805603,\n                        \"Y\": 0.8929593563079834\n                    },\n                    {\n                        \"X\": 0.6351850628852844,\n                        \"Y\": 0.8927558660507202\n                    },\n                    {\n                        \"X\": 0.6351915001869202,\n                        \"Y\": 0.9024413228034973\n                    },\n                    {\n                        \"X\": 0.3836066722869873,\n                        \"Y\": 0.9026449918746948\n                    }\n                ]\n            },\n            \"Id\": \"c211c600-0ca0-445c-b4f3-78d3498d6a81\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b22b6c4e-eb03-4a7a-8b1c-dc4d38515b7d\",\n                        \"24f02e04-a096-41b3-8a0f-6141adf3d27a\",\n                        \"9b06ddab-43f5-42bc-bc8b-2d2a5eccea22\",\n                        \"fd815b65-077a-42dc-9437-c365f5efe137\",\n                        \"94d9e355-3d8d-469a-896e-3d29ee44d052\",\n                        \"5c66ff74-e003-4106-ad51-066464706678\",\n                        \"dd0afa0d-2fda-4a69-b1ff-be8cc936c39e\",\n                        \"3e671aa5-40fd-4ba9-b2b3-591f185da851\",\n                        \"ca46aead-889c-4c8e-84a6-3b17814c5704\",\n                        \"8a1e059d-c927-4cd5-8bfd-5e13ba7282d4\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/analyzeExpenseResponse-multipage.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 2\n  },\n  \"JobStatus\": \"SUCCEEDED\",\n  \"ExpenseDocuments\": [\n    {\n      \"ExpenseIndex\": 1,\n      \"SummaryFields\": [\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS\",\n            \"Confidence\": 97.7169418334961\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Abstractors and Design Co.\\nAttn: Ronald Davis\\nSuite 8\\n611 Maine St\\nSan Francisco CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.25873491168022156,\n                \"Height\": 0.08691704273223877,\n                \"Left\": 0.11603166162967682,\n                \"Top\": 0.22761112451553345\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.1160982996225357,\n                  \"Y\": 0.22761112451553345\n                },\n                {\n                  \"X\": 0.37476658821105957,\n                  \"Y\": 0.22777898609638214\n                },\n                {\n                  \"X\": 0.37470752000808716,\n                  \"Y\": 0.3145281672477722\n                },\n                {\n                  \"X\": 0.11603166162967682,\n                  \"Y\": 0.3143577575683594\n                }\n              ]\n            },\n            \"Confidence\": 97.67825317382812\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STREET\",\n            \"Confidence\": 97.7169418334961\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Suite 8\\n611 Maine St\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.10569437593221664,\n                \"Height\": 0.03037436492741108,\n                \"Left\": 0.11686641722917557,\n                \"Top\": 0.2656420171260834\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11688968539237976,\n                  \"Y\": 0.2656420171260834\n                },\n                {\n                  \"X\": 0.2225607931613922,\n                  \"Y\": 0.2657110393047333\n                },\n                {\n                  \"X\": 0.22253860533237457,\n                  \"Y\": 0.2960163652896881\n                },\n                {\n                  \"X\": 0.11686641722917557,\n                  \"Y\": 0.29594698548316956\n                }\n              ]\n            },\n            \"Confidence\": 99.90399932861328\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CITY\",\n            \"Confidence\": 97.7169418334961\n          },\n          \"ValueDetection\": {\n            \"Text\": \"San Francisco\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.11542925983667374,\n                \"Height\": 0.011718668043613434,\n                \"Left\": 0.11685231328010559,\n                \"Top\": 0.30267250537872314\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.1168612539768219,\n                  \"Y\": 0.30267250537872314\n                },\n                {\n                  \"X\": 0.23228156566619873,\n                  \"Y\": 0.3027483820915222\n                },\n                {\n                  \"X\": 0.23227308690547943,\n                  \"Y\": 0.314391165971756\n                },\n                {\n                  \"X\": 0.11685231328010559,\n                  \"Y\": 0.3143151104450226\n                }\n              ]\n            },\n            \"Confidence\": 99.99272155761719\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE\",\n            \"Confidence\": 97.7169418334961\n          },\n          \"ValueDetection\": {\n            \"Text\": \"CA\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.025618890300393105,\n                \"Height\": 0.011494538746774197,\n                \"Left\": 0.23696444928646088,\n                \"Top\": 0.30275145173072815\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.23697280883789062,\n                  \"Y\": 0.30275145173072815\n                },\n                {\n                  \"X\": 0.26258334517478943,\n                  \"Y\": 0.3027682900428772\n                },\n                {\n                  \"X\": 0.26257508993148804,\n                  \"Y\": 0.3142459988594055\n                },\n                {\n                  \"X\": 0.23696444928646088,\n                  \"Y\": 0.3142291307449341\n                }\n              ]\n            },\n            \"Confidence\": 99.96987915039062\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ZIP_CODE\",\n            \"Confidence\": 97.7169418334961\n          },\n          \"ValueDetection\": {\n            \"Text\": \"94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.050349507480859756,\n                \"Height\": 0.01171915978193283,\n                \"Left\": 0.26599186658859253,\n                \"Top\": 0.30277055501937866\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.26600027084350586,\n                  \"Y\": 0.30277055501937866\n                },\n                {\n                  \"X\": 0.316341370344162,\n                  \"Y\": 0.302803635597229\n                },\n                {\n                  \"X\": 0.31633320450782776,\n                  \"Y\": 0.3144897222518921\n                },\n                {\n                  \"X\": 0.26599186658859253,\n                  \"Y\": 0.3144565522670746\n                }\n              ]\n            },\n            \"Confidence\": 99.87808227539062\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"NAME\",\n            \"Confidence\": 99.15642547607422\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Attn:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.037363000214099884,\n                \"Height\": 0.012156840413808823,\n                \"Left\": 0.11631828546524048,\n                \"Top\": 0.24730366468429565\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11632760614156723,\n                  \"Y\": 0.24730366468429565\n                },\n                {\n                  \"X\": 0.15368129312992096,\n                  \"Y\": 0.247327983379364\n                },\n                {\n                  \"X\": 0.15367212891578674,\n                  \"Y\": 0.2594605088233948\n                },\n                {\n                  \"X\": 0.11631828546524048,\n                  \"Y\": 0.25943613052368164\n                }\n              ]\n            },\n            \"Confidence\": 99.90801239013672\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Ronald Davis\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.10718771815299988,\n                \"Height\": 0.012181884609162807,\n                \"Left\": 0.15893396735191345,\n                \"Top\": 0.24732045829296112\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.15894310176372528,\n                  \"Y\": 0.24732045829296112\n                },\n                {\n                  \"X\": 0.26612168550491333,\n                  \"Y\": 0.2473902404308319\n                },\n                {\n                  \"X\": 0.2661129832267761,\n                  \"Y\": 0.2595023512840271\n                },\n                {\n                  \"X\": 0.15893396735191345,\n                  \"Y\": 0.2594324052333832\n                }\n              ]\n            },\n            \"Confidence\": 99.89175415039062\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"NAME\",\n            \"Confidence\": 99.15642547607422\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Abstractors and Design Co.\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.2581551969051361,\n                \"Height\": 0.01602000743150711,\n                \"Left\": 0.11661133170127869,\n                \"Top\": 0.2276933789253235\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11662350594997406,\n                  \"Y\": 0.2276933789253235\n                },\n                {\n                  \"X\": 0.3747665286064148,\n                  \"Y\": 0.22786089777946472\n                },\n                {\n                  \"X\": 0.37475574016571045,\n                  \"Y\": 0.2437133938074112\n                },\n                {\n                  \"X\": 0.11661133170127869,\n                  \"Y\": 0.24354541301727295\n                }\n              ]\n            },\n            \"Confidence\": 99.13238525390625\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS_BLOCK\",\n            \"Confidence\": 99.15642547607422\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Suite 8\\n611 Maine St\\nSan Francisco CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.19951504468917847,\n                \"Height\": 0.04884770140051842,\n                \"Left\": 0.1168522760272026,\n                \"Top\": 0.2656420171260834\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11688968539237976,\n                  \"Y\": 0.2656420171260834\n                },\n                {\n                  \"X\": 0.31636732816696167,\n                  \"Y\": 0.2657723128795624\n                },\n                {\n                  \"X\": 0.31633320450782776,\n                  \"Y\": 0.3144897222518921\n                },\n                {\n                  \"X\": 0.1168522760272026,\n                  \"Y\": 0.31435829401016235\n                }\n              ]\n            },\n            \"Confidence\": 99.93840789794922\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"RECEIVER\"\n              ],\n              \"Id\": \"9aa04478-fdf3-4223-8856-37821152c28e\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.47881078720092773,\n                \"Height\": 0.015623201616108418,\n                \"Left\": 0.4037061929702759,\n                \"Top\": 0.9245316982269287\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40371644496917725,\n                  \"Y\": 0.9245316982269287\n                },\n                {\n                  \"X\": 0.8825169801712036,\n                  \"Y\": 0.9248805046081543\n                },\n                {\n                  \"X\": 0.882509171962738,\n                  \"Y\": 0.9401549100875854\n                },\n                {\n                  \"X\": 0.4037061929702759,\n                  \"Y\": 0.9398052096366882\n                }\n              ]\n            },\n            \"Confidence\": 99.45198059082031\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"659de08f-ac2d-4977-bb0e-4d97d9c75ac7\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STREET\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero,\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.23905691504478455,\n                \"Height\": 0.01510106772184372,\n                \"Left\": 0.4037064015865326,\n                \"Top\": 0.9245316982269287\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40371644496917725,\n                  \"Y\": 0.9245316982269287\n                },\n                {\n                  \"X\": 0.6427633166313171,\n                  \"Y\": 0.9247058629989624\n                },\n                {\n                  \"X\": 0.6427544951438904,\n                  \"Y\": 0.939632773399353\n                },\n                {\n                  \"X\": 0.4037064015865326,\n                  \"Y\": 0.9394581913948059\n                }\n              ]\n            },\n            \"Confidence\": 99.98677825927734\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"659de08f-ac2d-4977-bb0e-4d97d9c75ac7\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CITY\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"San Francisco,\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.12992499768733978,\n                \"Height\": 0.014913909137248993,\n                \"Left\": 0.6540127396583557,\n                \"Top\": 0.9247140288352966\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6540214419364929,\n                  \"Y\": 0.9247140288352966\n                },\n                {\n                  \"X\": 0.7839377522468567,\n                  \"Y\": 0.9248086810112\n                },\n                {\n                  \"X\": 0.783929705619812,\n                  \"Y\": 0.9396279454231262\n                },\n                {\n                  \"X\": 0.6540127396583557,\n                  \"Y\": 0.9395331144332886\n                }\n              ]\n            },\n            \"Confidence\": 99.99069213867188\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"659de08f-ac2d-4977-bb0e-4d97d9c75ac7\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"CA\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.02766791731119156,\n                \"Height\": 0.012800600379705429,\n                \"Left\": 0.7951929569244385,\n                \"Top\": 0.924816906452179\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7951998710632324,\n                  \"Y\": 0.924816906452179\n                },\n                {\n                  \"X\": 0.8228608965873718,\n                  \"Y\": 0.924837052822113\n                },\n                {\n                  \"X\": 0.8228541016578674,\n                  \"Y\": 0.9376174807548523\n                },\n                {\n                  \"X\": 0.7951929569244385,\n                  \"Y\": 0.9375973343849182\n                }\n              ]\n            },\n            \"Confidence\": 96.63768768310547\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"659de08f-ac2d-4977-bb0e-4d97d9c75ac7\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ZIP_CODE\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05446493625640869,\n                \"Height\": 0.012996147386729717,\n                \"Left\": 0.827234148979187,\n                \"Top\": 0.9248402714729309\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8272410035133362,\n                  \"Y\": 0.9248402714729309\n                },\n                {\n                  \"X\": 0.8816990852355957,\n                  \"Y\": 0.9248799085617065\n                },\n                {\n                  \"X\": 0.8816924691200256,\n                  \"Y\": 0.9378364086151123\n                },\n                {\n                  \"X\": 0.827234148979187,\n                  \"Y\": 0.9377966523170471\n                }\n              ]\n            },\n            \"Confidence\": 99.63778686523438\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"659de08f-ac2d-4977-bb0e-4d97d9c75ac7\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS_BLOCK\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.4779926538467407,\n                \"Height\": 0.015275554731488228,\n                \"Left\": 0.4037064015865326,\n                \"Top\": 0.9245316982269287\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40371644496917725,\n                  \"Y\": 0.9245316982269287\n                },\n                {\n                  \"X\": 0.8816990852355957,\n                  \"Y\": 0.9248799085617065\n                },\n                {\n                  \"X\": 0.8816914558410645,\n                  \"Y\": 0.9398072361946106\n                },\n                {\n                  \"X\": 0.4037064015865326,\n                  \"Y\": 0.9394581913948059\n                }\n              ]\n            },\n            \"Confidence\": 99.45286560058594\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"659de08f-ac2d-4977-bb0e-4d97d9c75ac7\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"NAME\",\n            \"Confidence\": 72.24369049072266\n          },\n          \"ValueDetection\": {\n            \"Text\": \"META\\n-\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.209763303399086,\n                \"Height\": 0.030050022527575493,\n                \"Left\": 0.1156095489859581,\n                \"Top\": 0.12190443277359009\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11563253402709961,\n                  \"Y\": 0.12190443277359009\n                },\n                {\n                  \"X\": 0.3253728449344635,\n                  \"Y\": 0.12203799933195114\n                },\n                {\n                  \"X\": 0.3253519833087921,\n                  \"Y\": 0.15195445716381073\n                },\n                {\n                  \"X\": 0.1156095489859581,\n                  \"Y\": 0.15182016789913177\n                }\n              ]\n            },\n            \"Confidence\": 59.82245635986328\n          },\n          \"PageNumber\": 1,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"12805fca-955d-45b5-8e97-33dff10a5f5b\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"INVOICE_RECEIPT_DATE\",\n            \"Confidence\": 99.99707794189453\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Invoice Date:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.12102054059505463,\n                \"Height\": 0.013128170743584633,\n                \"Left\": 0.6029287576675415,\n                \"Top\": 0.1340809464454651\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6029366254806519,\n                  \"Y\": 0.1340809464454651\n                },\n                {\n                  \"X\": 0.7239493131637573,\n                  \"Y\": 0.1341581791639328\n                },\n                {\n                  \"X\": 0.7239419221878052,\n                  \"Y\": 0.14720912277698517\n                },\n                {\n                  \"X\": 0.6029287576675415,\n                  \"Y\": 0.14713171124458313\n                }\n              ]\n            },\n            \"Confidence\": 99.99309539794922\n          },\n          \"ValueDetection\": {\n            \"Text\": \"12 March 2020\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.13000057637691498,\n                \"Height\": 0.013157326728105545,\n                \"Left\": 0.7892299294471741,\n                \"Top\": 0.1339855194091797\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7892370223999023,\n                  \"Y\": 0.1339855194091797\n                },\n                {\n                  \"X\": 0.9192305207252502,\n                  \"Y\": 0.13406847417354584\n                },\n                {\n                  \"X\": 0.9192240238189697,\n                  \"Y\": 0.14714284241199493\n                },\n                {\n                  \"X\": 0.7892299294471741,\n                  \"Y\": 0.14705969393253326\n                }\n              ]\n            },\n            \"Confidence\": 99.91886901855469\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"INVOICE_RECEIPT_ID\",\n            \"Confidence\": 99.9910888671875\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Invoice No:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.10469169169664383,\n                \"Height\": 0.012963218614459038,\n                \"Left\": 0.6190723180770874,\n                \"Top\": 0.11649968475103378\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6190800666809082,\n                  \"Y\": 0.11649968475103378\n                },\n                {\n                  \"X\": 0.7237640023231506,\n                  \"Y\": 0.11656627804040909\n                },\n                {\n                  \"X\": 0.7237567901611328,\n                  \"Y\": 0.12946289777755737\n                },\n                {\n                  \"X\": 0.6190723180770874,\n                  \"Y\": 0.12939614057540894\n                }\n              ]\n            },\n            \"Confidence\": 99.98213958740234\n          },\n          \"ValueDetection\": {\n            \"Text\": \"00000135\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.08807412534952164,\n                \"Height\": 0.012687820941209793,\n                \"Left\": 0.8312568664550781,\n                \"Top\": 0.1167328730225563\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.831263542175293,\n                  \"Y\": 0.1167328730225563\n                },\n                {\n                  \"X\": 0.9193310141563416,\n                  \"Y\": 0.11678889393806458\n                },\n                {\n                  \"X\": 0.9193246960639954,\n                  \"Y\": 0.1294206976890564\n                },\n                {\n                  \"X\": 0.8312568664550781,\n                  \"Y\": 0.12936453521251678\n                }\n              ]\n            },\n            \"Confidence\": 99.98479461669922\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"PO_NUMBER\",\n            \"Confidence\": 99.98260498046875\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Purchase Order:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.15250234305858612,\n                \"Height\": 0.013370147906243801,\n                \"Left\": 0.5713683366775513,\n                \"Top\": 0.15105405449867249\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.5713765025138855,\n                  \"Y\": 0.15105405449867249\n                },\n                {\n                  \"X\": 0.7238706946372986,\n                  \"Y\": 0.15115167200565338\n                },\n                {\n                  \"X\": 0.7238632440567017,\n                  \"Y\": 0.16442419588565826\n                },\n                {\n                  \"X\": 0.5713683366775513,\n                  \"Y\": 0.16432635486125946\n                }\n              ]\n            },\n            \"Confidence\": 99.97782135009766\n          },\n          \"ValueDetection\": {\n            \"Text\": \"F0016\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05558145418763161,\n                \"Height\": 0.01315066497772932,\n                \"Left\": 0.8636952042579651,\n                \"Top\": 0.15126115083694458\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8637019991874695,\n                  \"Y\": 0.15126115083694458\n                },\n                {\n                  \"X\": 0.9192766547203064,\n                  \"Y\": 0.1512967199087143\n                },\n                {\n                  \"X\": 0.9192701578140259,\n                  \"Y\": 0.16441181302070618\n                },\n                {\n                  \"X\": 0.8636952042579651,\n                  \"Y\": 0.1643761545419693\n                }\n              ]\n            },\n            \"Confidence\": 99.97445678710938\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"RECEIVER_ADDRESS\",\n            \"Confidence\": 97.7169418334961\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Abstractors and Design Co.\\nAttn: Ronald Davis\\nSuite 8\\n611 Maine St\\nSan Francisco CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.25873491168022156,\n                \"Height\": 0.08691704273223877,\n                \"Left\": 0.11603166162967682,\n                \"Top\": 0.22761112451553345\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.1160982996225357,\n                  \"Y\": 0.22761112451553345\n                },\n                {\n                  \"X\": 0.37476658821105957,\n                  \"Y\": 0.22777898609638214\n                },\n                {\n                  \"X\": 0.37470752000808716,\n                  \"Y\": 0.3145281672477722\n                },\n                {\n                  \"X\": 0.11603166162967682,\n                  \"Y\": 0.3143577575683594\n                }\n              ]\n            },\n            \"Confidence\": 97.67825317382812\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"RECEIVER_NAME\",\n            \"Confidence\": 99.91658782958984\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Attn:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.037363000214099884,\n                \"Height\": 0.012156840413808823,\n                \"Left\": 0.11631828546524048,\n                \"Top\": 0.24730366468429565\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11632760614156723,\n                  \"Y\": 0.24730366468429565\n                },\n                {\n                  \"X\": 0.15368129312992096,\n                  \"Y\": 0.247327983379364\n                },\n                {\n                  \"X\": 0.15367212891578674,\n                  \"Y\": 0.2594605088233948\n                },\n                {\n                  \"X\": 0.11631828546524048,\n                  \"Y\": 0.25943613052368164\n                }\n              ]\n            },\n            \"Confidence\": 99.90801239013672\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Ronald Davis\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.10718771815299988,\n                \"Height\": 0.012181884609162807,\n                \"Left\": 0.15893396735191345,\n                \"Top\": 0.24732045829296112\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.15894310176372528,\n                  \"Y\": 0.24732045829296112\n                },\n                {\n                  \"X\": 0.26612168550491333,\n                  \"Y\": 0.2473902404308319\n                },\n                {\n                  \"X\": 0.2661129832267761,\n                  \"Y\": 0.2595023512840271\n                },\n                {\n                  \"X\": 0.15893396735191345,\n                  \"Y\": 0.2594324052333832\n                }\n              ]\n            },\n            \"Confidence\": 99.89175415039062\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"RECEIVER_NAME\",\n            \"Confidence\": 99.15642547607422\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Abstractors and Design Co.\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.2581551969051361,\n                \"Height\": 0.01602000743150711,\n                \"Left\": 0.11661133170127869,\n                \"Top\": 0.2276933789253235\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11662350594997406,\n                  \"Y\": 0.2276933789253235\n                },\n                {\n                  \"X\": 0.3747665286064148,\n                  \"Y\": 0.22786089777946472\n                },\n                {\n                  \"X\": 0.37475574016571045,\n                  \"Y\": 0.2437133938074112\n                },\n                {\n                  \"X\": 0.11661133170127869,\n                  \"Y\": 0.24354541301727295\n                }\n              ]\n            },\n            \"Confidence\": 99.13238525390625\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VENDOR_ADDRESS\",\n            \"Confidence\": 99.99887084960938\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.47881078720092773,\n                \"Height\": 0.015623201616108418,\n                \"Left\": 0.4037061929702759,\n                \"Top\": 0.9245316982269287\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40371644496917725,\n                  \"Y\": 0.9245316982269287\n                },\n                {\n                  \"X\": 0.8825169801712036,\n                  \"Y\": 0.9248805046081543\n                },\n                {\n                  \"X\": 0.882509171962738,\n                  \"Y\": 0.9401549100875854\n                },\n                {\n                  \"X\": 0.4037061929702759,\n                  \"Y\": 0.9398052096366882\n                }\n              ]\n            },\n            \"Confidence\": 99.45198059082031\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VENDOR_NAME\",\n            \"Confidence\": 72.24369049072266\n          },\n          \"ValueDetection\": {\n            \"Text\": \"META\\n-\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.209763303399086,\n                \"Height\": 0.030050022527575493,\n                \"Left\": 0.1156095489859581,\n                \"Top\": 0.12190443277359009\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11563253402709961,\n                  \"Y\": 0.12190443277359009\n                },\n                {\n                  \"X\": 0.3253728449344635,\n                  \"Y\": 0.12203799933195114\n                },\n                {\n                  \"X\": 0.3253519833087921,\n                  \"Y\": 0.15195445716381073\n                },\n                {\n                  \"X\": 0.1156095489859581,\n                  \"Y\": 0.15182016789913177\n                }\n              ]\n            },\n            \"Confidence\": 59.82245635986328\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VENDOR_PHONE\",\n            \"Confidence\": 99.859619140625\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Tel:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.030727313831448555,\n                \"Height\": 0.013133129104971886,\n                \"Left\": 0.35880035161972046,\n                \"Top\": 0.9451169371604919\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.35880935192108154,\n                  \"Y\": 0.9451169371604919\n                },\n                {\n                  \"X\": 0.38952764868736267,\n                  \"Y\": 0.9451394081115723\n                },\n                {\n                  \"X\": 0.3895187973976135,\n                  \"Y\": 0.958250105381012\n                },\n                {\n                  \"X\": 0.35880035161972046,\n                  \"Y\": 0.9582275748252869\n                }\n              ]\n            },\n            \"Confidence\": 99.84706115722656\n          },\n          \"ValueDetection\": {\n            \"Text\": \"(1) 555-123-1234\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.15180890262126923,\n                \"Height\": 0.0160183347761631,\n                \"Left\": 0.3952496647834778,\n                \"Top\": 0.9449253082275391\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.39526036381721497,\n                  \"Y\": 0.9449253082275391\n                },\n                {\n                  \"X\": 0.5470585823059082,\n                  \"Y\": 0.9450362920761108\n                },\n                {\n                  \"X\": 0.5470486879348755,\n                  \"Y\": 0.9609436988830566\n                },\n                {\n                  \"X\": 0.3952496647834778,\n                  \"Y\": 0.960832417011261\n                }\n              ]\n            },\n            \"Confidence\": 99.6691665649414\n          },\n          \"PageNumber\": 1\n        },\n        {\n          \"Type\": {\n            \"Text\": \"OTHER\",\n            \"Confidence\": 99.99868774414062\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Email:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05345715209841728,\n                \"Height\": 0.01292853057384491,\n                \"Left\": 0.5579206347465515,\n                \"Top\": 0.9452667832374573\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.5579286217689514,\n                  \"Y\": 0.9452667832374573\n                },\n                {\n                  \"X\": 0.6113778352737427,\n                  \"Y\": 0.9453058242797852\n                },\n                {\n                  \"X\": 0.6113700866699219,\n                  \"Y\": 0.9581953287124634\n                },\n                {\n                  \"X\": 0.5579206347465515,\n                  \"Y\": 0.958156168460846\n                }\n              ]\n            },\n            \"Confidence\": 99.99297332763672\n          },\n          \"ValueDetection\": {\n            \"Text\": \"admin@metalegalfinance.com\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.2669501006603241,\n                \"Height\": 0.015584216453135014,\n                \"Left\": 0.616767942905426,\n                \"Top\": 0.9449571371078491\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6167771816253662,\n                  \"Y\": 0.9449571371078491\n                },\n                {\n                  \"X\": 0.8837180733680725,\n                  \"Y\": 0.945152223110199\n                },\n                {\n                  \"X\": 0.8837102651596069,\n                  \"Y\": 0.9605413675308228\n                },\n                {\n                  \"X\": 0.616767942905426,\n                  \"Y\": 0.9603457450866699\n                }\n              ]\n            },\n            \"Confidence\": 99.98981475830078\n          },\n          \"PageNumber\": 1\n        }\n      ],\n      \"LineItemGroups\": [\n        {\n          \"LineItemGroupIndex\": 1,\n          \"LineItems\": [\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03281388059258461,\n                        \"Height\": 0.015644459053874016,\n                        \"Left\": 0.1549258530139923,\n                        \"Top\": 0.37161529064178467\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15493763983249664,\n                          \"Y\": 0.37161529064178467\n                        },\n                        {\n                          \"X\": 0.18773972988128662,\n                          \"Y\": 0.37163710594177246\n                        },\n                        {\n                          \"X\": 0.18772810697555542,\n                          \"Y\": 0.38725975155830383\n                        },\n                        {\n                          \"X\": 0.1549258530139923,\n                          \"Y\": 0.38723787665367126\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9972152709961\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"3\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.01754632033407688,\n                        \"Height\": 0.011799994856119156,\n                        \"Left\": 0.16166721284389496,\n                        \"Top\": 0.42049503326416016\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1616760939359665,\n                          \"Y\": 0.42049503326416016\n                        },\n                        {\n                          \"X\": 0.1792135387659073,\n                          \"Y\": 0.4205068051815033\n                        },\n                        {\n                          \"X\": 0.17920473217964172,\n                          \"Y\": 0.432295024394989\n                        },\n                        {\n                          \"X\": 0.16166721284389496,\n                          \"Y\": 0.4322832226753235\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.79084014892578\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.039787571877241135,\n                        \"Height\": 0.012277547270059586,\n                        \"Left\": 0.2399795949459076,\n                        \"Top\": 0.37186166644096375\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23998849093914032,\n                          \"Y\": 0.37186166644096375\n                        },\n                        {\n                          \"X\": 0.27976715564727783,\n                          \"Y\": 0.371888130903244\n                        },\n                        {\n                          \"X\": 0.27975842356681824,\n                          \"Y\": 0.38413920998573303\n                        },\n                        {\n                          \"X\": 0.2399795949459076,\n                          \"Y\": 0.384112685918808\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99822235107422\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP101 Accounting Package\\nAnnual Subscription to Premier Version with Tax,\\nInventory and Payroll Plugins\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.38758087158203125,\n                        \"Height\": 0.0518101342022419,\n                        \"Left\": 0.2383541315793991,\n                        \"Top\": 0.4201779067516327\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23839160799980164,\n                          \"Y\": 0.4201779067516327\n                        },\n                        {\n                          \"X\": 0.6259350180625916,\n                          \"Y\": 0.42043793201446533\n                        },\n                        {\n                          \"X\": 0.6259042620658875,\n                          \"Y\": 0.4719880521297455\n                        },\n                        {\n                          \"X\": 0.2383541315793991,\n                          \"Y\": 0.4717257618904114\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98635864257812\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07608060538768768,\n                        \"Height\": 0.01261931098997593,\n                        \"Left\": 0.8199252486228943,\n                        \"Top\": 0.3717232644557953\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8199319243431091,\n                          \"Y\": 0.3717232644557953\n                        },\n                        {\n                          \"X\": 0.8960058689117432,\n                          \"Y\": 0.3717738687992096\n                        },\n                        {\n                          \"X\": 0.8959994912147522,\n                          \"Y\": 0.3843425512313843\n                        },\n                        {\n                          \"X\": 0.8199252486228943,\n                          \"Y\": 0.3842918276786804\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.98067474365234\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$1,350.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.08045238256454468,\n                        \"Height\": 0.01454595010727644,\n                        \"Left\": 0.8144153356552124,\n                        \"Top\": 0.4198299050331116\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8144230842590332,\n                          \"Y\": 0.4198299050331116\n                        },\n                        {\n                          \"X\": 0.8948677182197571,\n                          \"Y\": 0.4198838472366333\n                        },\n                        {\n                          \"X\": 0.8948603868484497,\n                          \"Y\": 0.4343758523464203\n                        },\n                        {\n                          \"X\": 0.8144153356552124,\n                          \"Y\": 0.43432173132896423\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.9853515625\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"3 ACP101 Accounting Package $1,350.00\\nAnnual Subscription to Premier Version with Tax,\\nInventory and Payroll Plugins\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7332302331924438,\n                        \"Height\": 0.05291682481765747,\n                        \"Left\": 0.16163745522499084,\n                        \"Top\": 0.41939201951026917\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.16167692840099335,\n                          \"Y\": 0.41939201951026917\n                        },\n                        {\n                          \"X\": 0.8948677182197571,\n                          \"Y\": 0.4198838472366333\n                        },\n                        {\n                          \"X\": 0.8948412537574768,\n                          \"Y\": 0.47230884432792664\n                        },\n                        {\n                          \"X\": 0.16163745522499084,\n                          \"Y\": 0.47181257605552673\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.97380065917969\n                  },\n                  \"PageNumber\": 1\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03281388059258461,\n                        \"Height\": 0.015644459053874016,\n                        \"Left\": 0.1549258530139923,\n                        \"Top\": 0.37161529064178467\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15493763983249664,\n                          \"Y\": 0.37161529064178467\n                        },\n                        {\n                          \"X\": 0.18773972988128662,\n                          \"Y\": 0.37163710594177246\n                        },\n                        {\n                          \"X\": 0.18772810697555542,\n                          \"Y\": 0.38725975155830383\n                        },\n                        {\n                          \"X\": 0.1549258530139923,\n                          \"Y\": 0.38723787665367126\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9972152709961\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"4.5\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03337376192212105,\n                        \"Height\": 0.011842204257845879,\n                        \"Left\": 0.15359334647655487,\n                        \"Top\": 0.5117288827896118\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15360227227210999,\n                          \"Y\": 0.5117288827896118\n                        },\n                        {\n                          \"X\": 0.18696710467338562,\n                          \"Y\": 0.511751651763916\n                        },\n                        {\n                          \"X\": 0.18695831298828125,\n                          \"Y\": 0.5235710740089417\n                        },\n                        {\n                          \"X\": 0.15359334647655487,\n                          \"Y\": 0.5235483050346375\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.97879791259766\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.039787571877241135,\n                        \"Height\": 0.012277547270059586,\n                        \"Left\": 0.2399795949459076,\n                        \"Top\": 0.37186166644096375\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23998849093914032,\n                          \"Y\": 0.37186166644096375\n                        },\n                        {\n                          \"X\": 0.27976715564727783,\n                          \"Y\": 0.371888130903244\n                        },\n                        {\n                          \"X\": 0.27975842356681824,\n                          \"Y\": 0.38413920998573303\n                        },\n                        {\n                          \"X\": 0.2399795949459076,\n                          \"Y\": 0.384112685918808\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99822235107422\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP101T Online Training\\nHours of Training in Premier Version Interactive\\n-\\nDemos with Q&A Sessions\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.3898497223854065,\n                        \"Height\": 0.049275584518909454,\n                        \"Left\": 0.23778638243675232,\n                        \"Top\": 0.5114524364471436\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.2378220111131668,\n                          \"Y\": 0.5114524364471436\n                        },\n                        {\n                          \"X\": 0.6276360750198364,\n                          \"Y\": 0.5117180347442627\n                        },\n                        {\n                          \"X\": 0.6276069283485413,\n                          \"Y\": 0.5607280731201172\n                        },\n                        {\n                          \"X\": 0.23778638243675232,\n                          \"Y\": 0.5604602694511414\n                        }\n                      ]\n                    },\n                    \"Confidence\": 98.64976501464844\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07608060538768768,\n                        \"Height\": 0.01261931098997593,\n                        \"Left\": 0.8199252486228943,\n                        \"Top\": 0.3717232644557953\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8199319243431091,\n                          \"Y\": 0.3717232644557953\n                        },\n                        {\n                          \"X\": 0.8960058689117432,\n                          \"Y\": 0.3717738687992096\n                        },\n                        {\n                          \"X\": 0.8959994912147522,\n                          \"Y\": 0.3843425512313843\n                        },\n                        {\n                          \"X\": 0.8199252486228943,\n                          \"Y\": 0.3842918276786804\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.98067474365234\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$495.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.06546706706285477,\n                        \"Height\": 0.01363349985331297,\n                        \"Left\": 0.8294253945350647,\n                        \"Top\": 0.5111500024795532\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8294325470924377,\n                          \"Y\": 0.5111500024795532\n                        },\n                        {\n                          \"X\": 0.8948924541473389,\n                          \"Y\": 0.5111945867538452\n                        },\n                        {\n                          \"X\": 0.8948855996131897,\n                          \"Y\": 0.5247834920883179\n                        },\n                        {\n                          \"X\": 0.8294253945350647,\n                          \"Y\": 0.5247387886047363\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99821472167969\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"4.5 ACP101T Online Training $495.00\\nHours of Training in Premier Version Interactive\\n-\\nDemos with Q&A Sessions\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7413269877433777,\n                        \"Height\": 0.05022208020091057,\n                        \"Left\": 0.15356551110744476,\n                        \"Top\": 0.5106895565986633\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15360306203365326,\n                          \"Y\": 0.5106895565986633\n                        },\n                        {\n                          \"X\": 0.8948924541473389,\n                          \"Y\": 0.5111945867538452\n                        },\n                        {\n                          \"X\": 0.8948673605918884,\n                          \"Y\": 0.5609116554260254\n                        },\n                        {\n                          \"X\": 0.15356551110744476,\n                          \"Y\": 0.5604023933410645\n                        }\n                      ]\n                    },\n                    \"Confidence\": 98.80520629882812\n                  },\n                  \"PageNumber\": 1\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03281388059258461,\n                        \"Height\": 0.015644459053874016,\n                        \"Left\": 0.1549258530139923,\n                        \"Top\": 0.37161529064178467\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15493763983249664,\n                          \"Y\": 0.37161529064178467\n                        },\n                        {\n                          \"X\": 0.18773972988128662,\n                          \"Y\": 0.37163710594177246\n                        },\n                        {\n                          \"X\": 0.18772810697555542,\n                          \"Y\": 0.38725975155830383\n                        },\n                        {\n                          \"X\": 0.1549258530139923,\n                          \"Y\": 0.38723787665367126\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9972152709961\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"10\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.026442063972353935,\n                        \"Height\": 0.011881335638463497,\n                        \"Left\": 0.15756644308567047,\n                        \"Top\": 0.6027518510818481\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15757539868354797,\n                          \"Y\": 0.6027518510818481\n                        },\n                        {\n                          \"X\": 0.18400850892066956,\n                          \"Y\": 0.6027701497077942\n                        },\n                        {\n                          \"X\": 0.1839996725320816,\n                          \"Y\": 0.6146332025527954\n                        },\n                        {\n                          \"X\": 0.15756644308567047,\n                          \"Y\": 0.6146148443222046\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.86740112304688\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.039787571877241135,\n                        \"Height\": 0.012277547270059586,\n                        \"Left\": 0.2399795949459076,\n                        \"Top\": 0.37186166644096375\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23998849093914032,\n                          \"Y\": 0.37186166644096375\n                        },\n                        {\n                          \"X\": 0.27976715564727783,\n                          \"Y\": 0.371888130903244\n                        },\n                        {\n                          \"X\": 0.27975842356681824,\n                          \"Y\": 0.38413920998573303\n                        },\n                        {\n                          \"X\": 0.2399795949459076,\n                          \"Y\": 0.384112685918808\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99822235107422\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP101S Standard Support\\nInitial Hours allocated for access to email and phone\\nsupport for Premier Version\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.4174041748046875,\n                        \"Height\": 0.05197407305240631,\n                        \"Left\": 0.2387194186449051,\n                        \"Top\": 0.6023309826850891\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.2387569695711136,\n                          \"Y\": 0.6023309826850891\n                        },\n                        {\n                          \"X\": 0.6561235785484314,\n                          \"Y\": 0.6026196479797363\n                        },\n                        {\n                          \"X\": 0.6560932993888855,\n                          \"Y\": 0.6543050408363342\n                        },\n                        {\n                          \"X\": 0.2387194186449051,\n                          \"Y\": 0.6540138721466064\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98875427246094\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07608060538768768,\n                        \"Height\": 0.01261931098997593,\n                        \"Left\": 0.8199252486228943,\n                        \"Top\": 0.3717232644557953\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8199319243431091,\n                          \"Y\": 0.3717232644557953\n                        },\n                        {\n                          \"X\": 0.8960058689117432,\n                          \"Y\": 0.3717738687992096\n                        },\n                        {\n                          \"X\": 0.8959994912147522,\n                          \"Y\": 0.3843425512313843\n                        },\n                        {\n                          \"X\": 0.8199252486228943,\n                          \"Y\": 0.3842918276786804\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.98067474365234\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$1,100.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.08079606294631958,\n                        \"Height\": 0.014143606647849083,\n                        \"Left\": 0.8142834901809692,\n                        \"Top\": 0.6022771000862122\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8142910003662109,\n                          \"Y\": 0.6022771000862122\n                        },\n                        {\n                          \"X\": 0.8950795531272888,\n                          \"Y\": 0.6023329496383667\n                        },\n                        {\n                          \"X\": 0.8950724601745605,\n                          \"Y\": 0.6164206862449646\n                        },\n                        {\n                          \"X\": 0.8142834901809692,\n                          \"Y\": 0.6163646578788757\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99317169189453\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"10 ACP101S Standard Support $1,100.00\\nInitial Hours allocated for access to email and phone\\nsupport for Premier Version\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7375428080558777,\n                        \"Height\": 0.052648916840553284,\n                        \"Left\": 0.15753677487373352,\n                        \"Top\": 0.6018228530883789\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15757609903812408,\n                          \"Y\": 0.6018228530883789\n                        },\n                        {\n                          \"X\": 0.8950795531272888,\n                          \"Y\": 0.6023329496383667\n                        },\n                        {\n                          \"X\": 0.8950532078742981,\n                          \"Y\": 0.654471755027771\n                        },\n                        {\n                          \"X\": 0.15753677487373352,\n                          \"Y\": 0.6539572477340698\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98185729980469\n                  },\n                  \"PageNumber\": 1\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03281388059258461,\n                        \"Height\": 0.015644459053874016,\n                        \"Left\": 0.1549258530139923,\n                        \"Top\": 0.37161529064178467\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15493763983249664,\n                          \"Y\": 0.37161529064178467\n                        },\n                        {\n                          \"X\": 0.18773972988128662,\n                          \"Y\": 0.37163710594177246\n                        },\n                        {\n                          \"X\": 0.18772810697555542,\n                          \"Y\": 0.38725975155830383\n                        },\n                        {\n                          \"X\": 0.1549258530139923,\n                          \"Y\": 0.38723787665367126\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9972152709961\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"6\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.017519567161798477,\n                        \"Height\": 0.011804548092186451,\n                        \"Left\": 0.16181431710720062,\n                        \"Top\": 0.6937642097473145\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.16182319819927216,\n                          \"Y\": 0.6937642097473145\n                        },\n                        {\n                          \"X\": 0.17933389544487,\n                          \"Y\": 0.6937764883041382\n                        },\n                        {\n                          \"X\": 0.17932508885860443,\n                          \"Y\": 0.7055687308311462\n                        },\n                        {\n                          \"X\": 0.16181431710720062,\n                          \"Y\": 0.7055564522743225\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.93382263183594\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.039787571877241135,\n                        \"Height\": 0.012277547270059586,\n                        \"Left\": 0.2399795949459076,\n                        \"Top\": 0.37186166644096375\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23998849093914032,\n                          \"Y\": 0.37186166644096375\n                        },\n                        {\n                          \"X\": 0.27976715564727783,\n                          \"Y\": 0.371888130903244\n                        },\n                        {\n                          \"X\": 0.27975842356681824,\n                          \"Y\": 0.38413920998573303\n                        },\n                        {\n                          \"X\": 0.2399795949459076,\n                          \"Y\": 0.384112685918808\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99822235107422\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP101C Screen Customization\\nHours spent customizing screens in Premier Version\\nfor client requirements\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.4171142876148224,\n                        \"Height\": 0.05220067873597145,\n                        \"Left\": 0.2386014461517334,\n                        \"Top\": 0.6931358575820923\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23863916099071503,\n                          \"Y\": 0.6931358575820923\n                        },\n                        {\n                          \"X\": 0.6557157039642334,\n                          \"Y\": 0.6934286952018738\n                        },\n                        {\n                          \"X\": 0.655685305595398,\n                          \"Y\": 0.7453365325927734\n                        },\n                        {\n                          \"X\": 0.2386014461517334,\n                          \"Y\": 0.7450411915779114\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98426818847656\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07608060538768768,\n                        \"Height\": 0.01261931098997593,\n                        \"Left\": 0.8199252486228943,\n                        \"Top\": 0.3717232644557953\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8199319243431091,\n                          \"Y\": 0.3717232644557953\n                        },\n                        {\n                          \"X\": 0.8960058689117432,\n                          \"Y\": 0.3717738687992096\n                        },\n                        {\n                          \"X\": 0.8959994912147522,\n                          \"Y\": 0.3843425512313843\n                        },\n                        {\n                          \"X\": 0.8199252486228943,\n                          \"Y\": 0.3842918276786804\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.98067474365234\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$660.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.06562894582748413,\n                        \"Height\": 0.013918912038207054,\n                        \"Left\": 0.8293584585189819,\n                        \"Top\": 0.6930725574493408\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8293657302856445,\n                          \"Y\": 0.6930725574493408\n                        },\n                        {\n                          \"X\": 0.8949874043464661,\n                          \"Y\": 0.6931186318397522\n                        },\n                        {\n                          \"X\": 0.8949803709983826,\n                          \"Y\": 0.7069914937019348\n                        },\n                        {\n                          \"X\": 0.8293584585189819,\n                          \"Y\": 0.7069453001022339\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99779510498047\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"6 ACP101C Screen Customization $660.00\\nHours spent customizing screens in Premier Version\\nfor client requirements\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7332027554512024,\n                        \"Height\": 0.05290205404162407,\n                        \"Left\": 0.16178464889526367,\n                        \"Top\": 0.6926038861274719\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1618240773677826,\n                          \"Y\": 0.6926038861274719\n                        },\n                        {\n                          \"X\": 0.8949874043464661,\n                          \"Y\": 0.6931186318397522\n                        },\n                        {\n                          \"X\": 0.8949609398841858,\n                          \"Y\": 0.7455059289932251\n                        },\n                        {\n                          \"X\": 0.16178464889526367,\n                          \"Y\": 0.7449868321418762\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98143005371094\n                  },\n                  \"PageNumber\": 1\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03281388059258461,\n                        \"Height\": 0.015644459053874016,\n                        \"Left\": 0.1549258530139923,\n                        \"Top\": 0.37161529064178467\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15493763983249664,\n                          \"Y\": 0.37161529064178467\n                        },\n                        {\n                          \"X\": 0.18773972988128662,\n                          \"Y\": 0.37163710594177246\n                        },\n                        {\n                          \"X\": 0.18772810697555542,\n                          \"Y\": 0.38725975155830383\n                        },\n                        {\n                          \"X\": 0.1549258530139923,\n                          \"Y\": 0.38723787665367126\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9972152709961\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"4.5\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03353703022003174,\n                        \"Height\": 0.011652931571006775,\n                        \"Left\": 0.15358859300613403,\n                        \"Top\": 0.7851806879043579\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1535973697900772,\n                          \"Y\": 0.7851806879043579\n                        },\n                        {\n                          \"X\": 0.18712562322616577,\n                          \"Y\": 0.7852045893669128\n                        },\n                        {\n                          \"X\": 0.18711696565151215,\n                          \"Y\": 0.7968336343765259\n                        },\n                        {\n                          \"X\": 0.15358859300613403,\n                          \"Y\": 0.7968096733093262\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.92630767822266\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.039787571877241135,\n                        \"Height\": 0.012277547270059586,\n                        \"Left\": 0.2399795949459076,\n                        \"Top\": 0.37186166644096375\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23998849093914032,\n                          \"Y\": 0.37186166644096375\n                        },\n                        {\n                          \"X\": 0.27976715564727783,\n                          \"Y\": 0.371888130903244\n                        },\n                        {\n                          \"X\": 0.27975842356681824,\n                          \"Y\": 0.38413920998573303\n                        },\n                        {\n                          \"X\": 0.2399795949459076,\n                          \"Y\": 0.384112685918808\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99822235107422\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP101R Report Customization\\nHours spent customizing reports in Premier Version\\nfor client requirements\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.41029995679855347,\n                        \"Height\": 0.051339007914066315,\n                        \"Left\": 0.23858721554279327,\n                        \"Top\": 0.7848888039588928\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23862430453300476,\n                          \"Y\": 0.7848888039588928\n                        },\n                        {\n                          \"X\": 0.6488871574401855,\n                          \"Y\": 0.7851811051368713\n                        },\n                        {\n                          \"X\": 0.6488571166992188,\n                          \"Y\": 0.8362277746200562\n                        },\n                        {\n                          \"X\": 0.23858721554279327,\n                          \"Y\": 0.8359330296516418\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98683166503906\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07608060538768768,\n                        \"Height\": 0.01261931098997593,\n                        \"Left\": 0.8199252486228943,\n                        \"Top\": 0.3717232644557953\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8199319243431091,\n                          \"Y\": 0.3717232644557953\n                        },\n                        {\n                          \"X\": 0.8960058689117432,\n                          \"Y\": 0.3717738687992096\n                        },\n                        {\n                          \"X\": 0.8959994912147522,\n                          \"Y\": 0.3843425512313843\n                        },\n                        {\n                          \"X\": 0.8199252486228943,\n                          \"Y\": 0.3842918276786804\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.98067474365234\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$495.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.0656159445643425,\n                        \"Height\": 0.01362689770758152,\n                        \"Left\": 0.829310417175293,\n                        \"Top\": 0.7844467163085938\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.829317569732666,\n                          \"Y\": 0.7844467163085938\n                        },\n                        {\n                          \"X\": 0.8949263691902161,\n                          \"Y\": 0.7844934463500977\n                        },\n                        {\n                          \"X\": 0.8949195146560669,\n                          \"Y\": 0.7980735898017883\n                        },\n                        {\n                          \"X\": 0.829310417175293,\n                          \"Y\": 0.7980267405509949\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99845123291016\n                  },\n                  \"PageNumber\": 1\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"4.5 ACP101R Report Customization $495.00\\nHours spent customizing reports in Premier Version\\nfor client requirements\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7413672804832458,\n                        \"Height\": 0.05243931710720062,\n                        \"Left\": 0.15355907380580902,\n                        \"Top\": 0.7839652299880981\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15359829366207123,\n                          \"Y\": 0.7839652299880981\n                        },\n                        {\n                          \"X\": 0.8949263691902161,\n                          \"Y\": 0.7844934463500977\n                        },\n                        {\n                          \"X\": 0.8949001431465149,\n                          \"Y\": 0.83640456199646\n                        },\n                        {\n                          \"X\": 0.15355907380580902,\n                          \"Y\": 0.8358719348907471\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98279571533203\n                  },\n                  \"PageNumber\": 1\n                }\n              ]\n            }\n          ]\n        }\n      ],\n      \"Blocks\": [\n        {\n          \"BlockType\": \"PAGE\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 1,\n              \"Height\": 1,\n              \"Left\": 0,\n              \"Top\": 0\n            },\n            \"Polygon\": [\n              {\n                \"X\": 5.02915156630479e-7,\n                \"Y\": 0\n              },\n              {\n                \"X\": 1,\n                \"Y\": 5.58835665742663e-7\n              },\n              {\n                \"X\": 1,\n                \"Y\": 1\n              },\n              {\n                \"X\": 0,\n                \"Y\": 1\n              }\n            ]\n          },\n          \"Id\": \"a9623ad2-c969-43b0-8355-670254d809d0\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"aada2e1c-80a7-4af3-b78e-39e5e3a3229e\",\n                \"88bda968-0628-4b6d-9783-3e69d688f206\",\n                \"6e485b10-41a1-49f5-8a1e-50c2c63bf636\",\n                \"0ccfd232-ceb2-4a35-b475-a8d4d2d64b0b\",\n                \"ec0c7f52-d809-49bf-b208-bdc26f1ad099\",\n                \"d2d70797-fff5-49c3-ad1f-8b0f4e973f18\",\n                \"1ac1c170-2e30-4474-9db9-014926dc8702\",\n                \"0bc5c183-5796-4920-a722-bdc8f48e4a94\",\n                \"38c25521-620a-48a6-82f3-a5d235a74dc3\",\n                \"2731ca97-3f16-42ce-82c1-83556df53c6f\",\n                \"5cf16578-2e7b-44f5-9e34-04db135aeaf7\",\n                \"85836de3-51ea-4f55-a0b5-0e626721c7d0\",\n                \"e5304b5e-13b6-45d8-90ff-224bd723a016\",\n                \"b1fbb89d-d213-4363-96bc-d0765b7ed198\",\n                \"d655ce8a-7253-4f10-83ed-294f504db547\",\n                \"32604ffa-00ab-4a06-938a-4fc9c60053af\",\n                \"e21dac7b-7cc6-4a32-a3a4-7762f3776f5b\",\n                \"57700489-ee87-42bf-be0e-6971f21a5fc6\",\n                \"2bf9b104-52c9-4a04-943d-30fc63f6d1da\",\n                \"92d343ce-696a-40ce-9ba8-777848f9491e\",\n                \"6c88d39f-a42b-4a34-b524-e0c6fd830393\",\n                \"3b511aea-0a9b-4582-ae4c-626232f78e76\",\n                \"0af654d4-4be0-411c-a609-1fc4449630d2\",\n                \"02146205-75fb-4673-b9fe-535a1e87f48d\",\n                \"004f971d-bc0a-4ec6-afa4-52eba2f1d745\",\n                \"37eeb041-05ed-454e-b519-3ab642121ecf\",\n                \"28cd58d9-d67d-48e6-a952-b3af150ff439\",\n                \"86e6026e-a3f0-4558-b571-2837102aafa4\",\n                \"f2f88c19-f719-47c4-a602-c09994007aa8\",\n                \"fea1628e-81e1-4ac5-be40-9468fb177dad\",\n                \"aa55e163-ce99-485e-85d0-4f5ab9efc489\",\n                \"e301abcf-655c-4694-a6f9-803fc770f183\",\n                \"544454c2-5fde-44b4-9869-d75ee6b433e4\",\n                \"38d52af3-b061-42d7-8c7b-c1c0e1d350bb\",\n                \"58764d87-bfc8-48ad-bf4c-f9b87266d1c9\",\n                \"7c241cc5-94cc-434e-a252-0b3893a245e5\",\n                \"8b47c411-48f8-40da-aed9-60a23d411e36\",\n                \"818e3ba5-93cb-4343-b681-85affdae1527\",\n                \"6bf297cf-8646-4131-a4c3-9ff4b10dd19f\",\n                \"d171a57d-e73f-4a9c-9cf6-96090b1aeaeb\",\n                \"9622b5e6-7ca8-40f3-8f94-26b496cb1a32\",\n                \"2ac795e4-9bd5-4bf2-b143-33ddc69d7d84\",\n                \"0ca74d47-cd9d-41aa-9ec4-61ab4493f5b2\",\n                \"e9702eb3-4944-480f-94c0-bcb9723f7d26\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.90374755859375,\n          \"Text\": \"INVOICE\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1989263892173767,\n              \"Height\": 0.02941027469933033,\n              \"Left\": 0.7197741270065308,\n              \"Top\": 0.042905043810606\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7197906374931335,\n                \"Y\": 0.042905043810606\n              },\n              {\n                \"X\": 0.9187005162239075,\n                \"Y\": 0.04302991181612015\n              },\n              {\n                \"X\": 0.9186859130859375,\n                \"Y\": 0.07231532037258148\n              },\n              {\n                \"X\": 0.7197741270065308,\n                \"Y\": 0.07218978554010391\n              }\n            ]\n          },\n          \"Id\": \"aada2e1c-80a7-4af3-b78e-39e5e3a3229e\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"8838d5cb-3e5f-4569-a035-6e9bb0e48fdf\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.86285400390625,\n          \"Text\": \"Invoice No:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.10446161031723022,\n              \"Height\": 0.012266382575035095,\n              \"Left\": 0.6193020343780518,\n              \"Top\": 0.11719651520252228\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6193093061447144,\n                \"Y\": 0.11719651520252228\n              },\n              {\n                \"X\": 0.723763644695282,\n                \"Y\": 0.11726297438144684\n              },\n              {\n                \"X\": 0.7237567901611328,\n                \"Y\": 0.12946289777755737\n              },\n              {\n                \"X\": 0.6193020343780518,\n                \"Y\": 0.12939628958702087\n              }\n            ]\n          },\n          \"Id\": \"88bda968-0628-4b6d-9783-3e69d688f206\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"16edb53a-ae6c-4e06-a049-726f6b88b1c6\",\n                \"9cc55678-288a-4f9d-8b08-b04a10bb8ba2\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.91712951660156,\n          \"Text\": \"00000135\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08731484413146973,\n              \"Height\": 0.012107961811125278,\n              \"Left\": 0.8319916725158691,\n              \"Top\": 0.1173127144575119\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8319980502128601,\n                \"Y\": 0.1173127144575119\n              },\n              {\n                \"X\": 0.9193065166473389,\n                \"Y\": 0.11736826598644257\n              },\n              {\n                \"X\": 0.9193005561828613,\n                \"Y\": 0.129420667886734\n              },\n              {\n                \"X\": 0.8319916725158691,\n                \"Y\": 0.1293649971485138\n              }\n            ]\n          },\n          \"Id\": \"6e485b10-41a1-49f5-8a1e-50c2c63bf636\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"370ec58f-2996-4997-9648-ef98e8105e3d\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 95.48932647705078,\n          \"Text\": \"- META -\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.2380291223526001,\n              \"Height\": 0.030068030580878258,\n              \"Left\": 0.08988016843795776,\n              \"Top\": 0.12188804894685745\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08990341424942017,\n                \"Y\": 0.12188804894685745\n              },\n              {\n                \"X\": 0.32790929079055786,\n                \"Y\": 0.12203961610794067\n              },\n              {\n                \"X\": 0.32788845896720886,\n                \"Y\": 0.15195608139038086\n              },\n              {\n                \"X\": 0.08988016843795776,\n                \"Y\": 0.15180368721485138\n              }\n            ]\n          },\n          \"Id\": \"0ccfd232-ceb2-4a35-b475-a8d4d2d64b0b\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"8572eaff-7665-4ab9-857f-128051d2732e\",\n                \"b5fce951-9a62-4a3f-8188-6887cd58175a\",\n                \"be82b304-079d-4e97-8698-5ea73a11c2ff\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.87596893310547,\n          \"Text\": \"Invoice Date:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12055817246437073,\n              \"Height\": 0.012343768030405045,\n              \"Left\": 0.6033906936645508,\n              \"Top\": 0.13486535847187042\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6033980846405029,\n                \"Y\": 0.13486535847187042\n              },\n              {\n                \"X\": 0.7239488363265991,\n                \"Y\": 0.13494229316711426\n              },\n              {\n                \"X\": 0.7239419221878052,\n                \"Y\": 0.14720912277698517\n              },\n              {\n                \"X\": 0.6033906936645508,\n                \"Y\": 0.147132009267807\n              }\n            ]\n          },\n          \"Id\": \"ec0c7f52-d809-49bf-b208-bdc26f1ad099\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"f30e82fe-c63b-46da-af1c-122ba20738c3\",\n                \"43bfab25-699f-4800-8fb3-635c70b520a7\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.96173858642578,\n          \"Text\": \"12 March 2020\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12896636128425598,\n              \"Height\": 0.012333818711340427,\n              \"Left\": 0.7902637124061584,\n              \"Top\": 0.13480901718139648\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7902703285217285,\n                \"Y\": 0.13480901718139648\n              },\n              {\n                \"X\": 0.9192301034927368,\n                \"Y\": 0.1348913311958313\n              },\n              {\n                \"X\": 0.9192240238189697,\n                \"Y\": 0.14714284241199493\n              },\n              {\n                \"X\": 0.7902637124061584,\n                \"Y\": 0.1470603495836258\n              }\n            ]\n          },\n          \"Id\": \"d2d70797-fff5-49c3-ad1f-8b0f4e973f18\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"fce34782-152d-460d-bc21-93c2b53bf18d\",\n                \"ca4ff87e-77d5-44d0-b305-b161e4fa366e\",\n                \"5a18ddf5-2dd5-4922-b786-b080500b1246\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.8463134765625,\n          \"Text\": \"Purchase Order:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.15207690000534058,\n              \"Height\": 0.012625813484191895,\n              \"Left\": 0.5717933773994446,\n              \"Top\": 0.15179838240146637\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5718010663986206,\n                \"Y\": 0.15179838240146637\n              },\n              {\n                \"X\": 0.7238702774047852,\n                \"Y\": 0.15189574658870697\n              },\n              {\n                \"X\": 0.7238632440567017,\n                \"Y\": 0.16442419588565826\n              },\n              {\n                \"X\": 0.5717933773994446,\n                \"Y\": 0.16432662308216095\n              }\n            ]\n          },\n          \"Id\": \"1ac1c170-2e30-4474-9db9-014926dc8702\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"0ddf6304-345c-437d-95e1-6808cf69d80c\",\n                \"3ff46835-28b2-488f-abe5-01704bca7f21\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.9725112915039,\n          \"Text\": \"F0016\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05468818545341492,\n              \"Height\": 0.01245699729770422,\n              \"Left\": 0.8645881414413452,\n              \"Top\": 0.15195481479167938\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.864594578742981,\n                \"Y\": 0.15195481479167938\n              },\n              {\n                \"X\": 0.9192763566970825,\n                \"Y\": 0.15198983252048492\n              },\n              {\n                \"X\": 0.9192701578140259,\n                \"Y\": 0.16441181302070618\n              },\n              {\n                \"X\": 0.8645881414413452,\n                \"Y\": 0.16437673568725586\n              }\n            ]\n          },\n          \"Id\": \"0bc5c183-5796-4920-a722-bdc8f48e4a94\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"2c7676ff-4f8d-4f2c-bff5-be3eaaabee95\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.77435302734375,\n          \"Text\": \"LEGAL & FINANCE\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.23838172852993011,\n              \"Height\": 0.017352944239974022,\n              \"Left\": 0.08945202082395554,\n              \"Top\": 0.1610974818468094\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08946538716554642,\n                \"Y\": 0.1610974818468094\n              },\n              {\n                \"X\": 0.32783374190330505,\n                \"Y\": 0.16125035285949707\n              },\n              {\n                \"X\": 0.3278217613697052,\n                \"Y\": 0.17845043540000916\n              },\n              {\n                \"X\": 0.08945202082395554,\n                \"Y\": 0.17829708755016327\n              }\n            ]\n          },\n          \"Id\": \"38c25521-620a-48a6-82f3-a5d235a74dc3\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ed2a89d4-2931-4927-941b-3a86b29ce0d9\",\n                \"03e1d591-d340-4c26-b64e-c3f323828b10\",\n                \"94439263-6460-4a18-a7c3-4c57b1933467\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.93474578857422,\n          \"Text\": \"Abstractors and Design Co.\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.2578474283218384,\n              \"Height\": 0.015925968065857887,\n              \"Left\": 0.11691901832818985,\n              \"Top\": 0.22778742015361786\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11693111807107925,\n                \"Y\": 0.22778742015361786\n              },\n              {\n                \"X\": 0.37476646900177,\n                \"Y\": 0.22795474529266357\n              },\n              {\n                \"X\": 0.37475574016571045,\n                \"Y\": 0.2437133938074112\n              },\n              {\n                \"X\": 0.11691901832818985,\n                \"Y\": 0.24354560673236847\n              }\n            ]\n          },\n          \"Id\": \"2731ca97-3f16-42ce-82c1-83556df53c6f\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"16a000ae-0abb-4037-88e9-754ecce0b2cf\",\n                \"5b65de2a-2917-41f0-bff2-7b4747a8d4f6\",\n                \"0e91bea6-87bc-40f4-913b-bccf90f7f7cb\",\n                \"0bdaccfa-15bf-4ecd-aef0-1bd4c9ec9fd7\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.91099548339844,\n          \"Text\": \"Attn: Ronald Davis\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.14922209084033966,\n              \"Height\": 0.01147810835391283,\n              \"Left\": 0.1168990507721901,\n              \"Top\": 0.24805577099323273\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11690779030323029,\n                \"Y\": 0.24805577099323273\n              },\n              {\n                \"X\": 0.26612114906311035,\n                \"Y\": 0.2481529414653778\n              },\n              {\n                \"X\": 0.2661129832267761,\n                \"Y\": 0.2595338821411133\n              },\n              {\n                \"X\": 0.1168990507721901,\n                \"Y\": 0.2594365179538727\n              }\n            ]\n          },\n          \"Id\": \"5cf16578-2e7b-44f5-9e34-04db135aeaf7\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"9698f91f-9db8-4ca6-922d-f4549e479c52\",\n                \"4c870836-828e-4ad6-9fb5-7d36f4ecf5eb\",\n                \"27b0c437-07e0-45c1-9ee7-2d7b85f79dec\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.9114990234375,\n          \"Text\": \"Suite 8\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05528220161795616,\n              \"Height\": 0.011445529758930206,\n              \"Left\": 0.11773268133401871,\n              \"Top\": 0.2663102447986603\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11774144321680069,\n                \"Y\": 0.2663102447986603\n              },\n              {\n                \"X\": 0.17301487922668457,\n                \"Y\": 0.2663463354110718\n              },\n              {\n                \"X\": 0.1730063408613205,\n                \"Y\": 0.2777557671070099\n              },\n              {\n                \"X\": 0.11773268133401871,\n                \"Y\": 0.2777195870876312\n              }\n            ]\n          },\n          \"Id\": \"85836de3-51ea-4f55-a0b5-0e626721c7d0\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"84ea1795-ec0f-4150-966b-bda337aa9829\",\n                \"5b1a0b59-e217-46f4-8eb3-e1c537342034\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.94638061523438,\n          \"Text\": \"611 Maine St\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1051846370100975,\n              \"Height\": 0.011651469394564629,\n              \"Left\": 0.11736243963241577,\n              \"Top\": 0.2843649089336395\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1173713356256485,\n                \"Y\": 0.2843649089336395\n              },\n              {\n                \"X\": 0.22254708409309387,\n                \"Y\": 0.28443384170532227\n              },\n              {\n                \"X\": 0.22253860533237457,\n                \"Y\": 0.2960163652896881\n              },\n              {\n                \"X\": 0.11736243963241577,\n                \"Y\": 0.2959473133087158\n              }\n            ]\n          },\n          \"Id\": \"e5304b5e-13b6-45d8-90ff-224bd723a016\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"8332af4e-6393-43f3-9201-925f6a811323\",\n                \"d918b526-2cf6-4a16-8607-f05dcc4b485a\",\n                \"a4f26a98-047c-4de1-8a11-e05ba1b33dd4\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.81410217285156,\n          \"Text\": \"San Francisco CA 94105\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.19887492060661316,\n              \"Height\": 0.011736081913113594,\n              \"Left\": 0.11746640503406525,\n              \"Top\": 0.30275362730026245\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11747531592845917,\n                \"Y\": 0.30275362730026245\n              },\n              {\n                \"X\": 0.3163413107395172,\n                \"Y\": 0.30288437008857727\n              },\n              {\n                \"X\": 0.31633320450782776,\n                \"Y\": 0.3144897222518921\n              },\n              {\n                \"X\": 0.11746640503406525,\n                \"Y\": 0.3143586814403534\n              }\n            ]\n          },\n          \"Id\": \"b1fbb89d-d213-4363-96bc-d0765b7ed198\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"f2f58c9f-4d73-4951-aaa7-50adee419c5c\",\n                \"4b71a1b0-15b1-4172-92bb-d3ee8c304354\",\n                \"052ead98-3280-4897-9c90-e2599afdcc44\",\n                \"c3400fdc-b0d8-4b0f-8692-170e562a070a\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.98637390136719,\n          \"Text\": \"Qty\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03281388059258461,\n              \"Height\": 0.015644459053874016,\n              \"Left\": 0.1549258530139923,\n              \"Top\": 0.37161529064178467\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15493763983249664,\n                \"Y\": 0.37161529064178467\n              },\n              {\n                \"X\": 0.18773972988128662,\n                \"Y\": 0.37163710594177246\n              },\n              {\n                \"X\": 0.18772810697555542,\n                \"Y\": 0.38725975155830383\n              },\n              {\n                \"X\": 0.1549258530139923,\n                \"Y\": 0.38723787665367126\n              }\n            ]\n          },\n          \"Id\": \"d655ce8a-7253-4f10-83ed-294f504db547\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ec6cff2d-d25a-42fc-bafa-5bb566a15380\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.8298568725586,\n          \"Text\": \"Item\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.039787571877241135,\n              \"Height\": 0.012277547270059586,\n              \"Left\": 0.2399795949459076,\n              \"Top\": 0.37186166644096375\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23998849093914032,\n                \"Y\": 0.37186166644096375\n              },\n              {\n                \"X\": 0.27976715564727783,\n                \"Y\": 0.371888130903244\n              },\n              {\n                \"X\": 0.27975842356681824,\n                \"Y\": 0.38413920998573303\n              },\n              {\n                \"X\": 0.2399795949459076,\n                \"Y\": 0.384112685918808\n              }\n            ]\n          },\n          \"Id\": \"32604ffa-00ab-4a06-938a-4fc9c60053af\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"854af125-140e-4582-86fc-994e83d4e00d\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.98870849609375,\n          \"Text\": \"Amount\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07608060538768768,\n              \"Height\": 0.01261931098997593,\n              \"Left\": 0.8199252486228943,\n              \"Top\": 0.3717232644557953\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8199319243431091,\n                \"Y\": 0.3717232644557953\n              },\n              {\n                \"X\": 0.8960058689117432,\n                \"Y\": 0.3717738687992096\n              },\n              {\n                \"X\": 0.8959994912147522,\n                \"Y\": 0.3843425512313843\n              },\n              {\n                \"X\": 0.8199252486228943,\n                \"Y\": 0.3842918276786804\n              }\n            ]\n          },\n          \"Id\": \"e21dac7b-7cc6-4a32-a3a4-7762f3776f5b\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"2035c28b-a4e6-4ee4-aa83-e2a1af3be601\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.93639373779297,\n          \"Text\": \"3\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.010034209117293358,\n              \"Height\": 0.01134193129837513,\n              \"Left\": 0.16582044959068298,\n              \"Top\": 0.42095082998275757\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16582895815372467,\n                \"Y\": 0.42095082998275757\n              },\n              {\n                \"X\": 0.1758546531200409,\n                \"Y\": 0.4209575653076172\n              },\n              {\n                \"X\": 0.1758461743593216,\n                \"Y\": 0.43229275941848755\n              },\n              {\n                \"X\": 0.16582044959068298,\n                \"Y\": 0.43228602409362793\n              }\n            ]\n          },\n          \"Id\": \"57700489-ee87-42bf-be0e-6971f21a5fc6\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"55de5158-eda0-48b2-bc93-7372d2bdf611\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.89471435546875,\n          \"Text\": \"ACP101 Accounting Package\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.24941721558570862,\n              \"Height\": 0.014004932716488838,\n              \"Left\": 0.23906610906124115,\n              \"Top\": 0.4209240972995758\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2390761524438858,\n                \"Y\": 0.4209240972995758\n              },\n              {\n                \"X\": 0.4884833097457886,\n                \"Y\": 0.4210914671421051\n              },\n              {\n                \"X\": 0.48847442865371704,\n                \"Y\": 0.4349290430545807\n              },\n              {\n                \"X\": 0.23906610906124115,\n                \"Y\": 0.43476128578186035\n              }\n            ]\n          },\n          \"Id\": \"2bf9b104-52c9-4a04-943d-30fc63f6d1da\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"3396f8a4-e0fc-4954-ae77-3e4799e062f2\",\n                \"ee6a64a7-935b-4399-8d10-d30014a52866\",\n                \"410ec60c-bd42-406c-9510-b13d56461379\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.99143981933594,\n          \"Text\": \"$1,350.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07951543480157852,\n              \"Height\": 0.013869076035916805,\n              \"Left\": 0.8153519630432129,\n              \"Top\": 0.4205067753791809\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8153592944145203,\n                \"Y\": 0.4205067753791809\n              },\n              {\n                \"X\": 0.8948673605918884,\n                \"Y\": 0.4205601215362549\n              },\n              {\n                \"X\": 0.8948603868484497,\n                \"Y\": 0.4343758523464203\n              },\n              {\n                \"X\": 0.8153519630432129,\n                \"Y\": 0.43432238698005676\n              }\n            ]\n          },\n          \"Id\": \"92d343ce-696a-40ce-9ba8-777848f9491e\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"5e3c2b4c-9697-4286-81a2-581a264875a2\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.90880584716797,\n          \"Text\": \"Annual Subscription to Premier Version with Tax,\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.38693365454673767,\n              \"Height\": 0.014245763421058655,\n              \"Left\": 0.23899006843566895,\n              \"Top\": 0.43912774324417114\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23900023102760315,\n                \"Y\": 0.43912774324417114\n              },\n              {\n                \"X\": 0.6259236931800842,\n                \"Y\": 0.4393881559371948\n              },\n              {\n                \"X\": 0.6259154081344604,\n                \"Y\": 0.4533734917640686\n              },\n              {\n                \"X\": 0.23899006843566895,\n                \"Y\": 0.4531124532222748\n              }\n            ]\n          },\n          \"Id\": \"6c88d39f-a42b-4a34-b524-e0c6fd830393\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"c567b318-5a29-4263-bf15-9ee5a37c6258\",\n                \"d6d69b00-d81d-4761-bb30-21f663c122d7\",\n                \"ff7b1565-a06c-435a-a792-0961a8f1be9c\",\n                \"6677af3c-c620-4e8b-836e-378bd189765d\",\n                \"9774e5ff-830e-443d-8073-837e9ab52f0c\",\n                \"59b9dbf2-b90b-4fd3-9737-c297f310809b\",\n                \"3e118a4f-5284-4895-8ea4-840e5150886d\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.85891723632812,\n          \"Text\": \"Inventory and Payroll Plugins\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.23203153908252716,\n              \"Height\": 0.01463694404810667,\n              \"Left\": 0.24031198024749756,\n              \"Top\": 0.45724716782569885\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24032250046730042,\n                \"Y\": 0.45724716782569885\n              },\n              {\n                \"X\": 0.4723435342311859,\n                \"Y\": 0.4574038088321686\n              },\n              {\n                \"X\": 0.4723341464996338,\n                \"Y\": 0.4718841016292572\n              },\n              {\n                \"X\": 0.24031198024749756,\n                \"Y\": 0.47172707319259644\n              }\n            ]\n          },\n          \"Id\": \"3b511aea-0a9b-4582-ae4c-626232f78e76\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"35ba6ffc-7d41-47a8-a0e7-7832379998d6\",\n                \"55ddd792-31b9-4dd0-a354-10c73da6c913\",\n                \"08e2bfd2-e128-451b-ae87-e0d60692132e\",\n                \"c51b2188-31f4-402c-8b51-c53d41931447\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.97169494628906,\n          \"Text\": \"4.5\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0256289504468441,\n              \"Height\": 0.0116430027410388,\n              \"Left\": 0.15772324800491333,\n              \"Top\": 0.5119256377220154\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1577320247888565,\n                \"Y\": 0.5119256377220154\n              },\n              {\n                \"X\": 0.18335220217704773,\n                \"Y\": 0.5119431018829346\n              },\n              {\n                \"X\": 0.1833435297012329,\n                \"Y\": 0.5235686302185059\n              },\n              {\n                \"X\": 0.15772324800491333,\n                \"Y\": 0.5235511660575867\n              }\n            ]\n          },\n          \"Id\": \"0af654d4-4be0-411c-a609-1fc4449630d2\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"7847bb53-250d-471c-826b-1bed62d87de0\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.87677001953125,\n          \"Text\": \"ACP101T Online Training\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.21511738002300262,\n              \"Height\": 0.014607898890972137,\n              \"Left\": 0.23879054188728333,\n              \"Top\": 0.5117902755737305\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.238801047205925,\n                \"Y\": 0.5117902755737305\n              },\n              {\n                \"X\": 0.45390793681144714,\n                \"Y\": 0.5119368433952332\n              },\n              {\n                \"X\": 0.45389845967292786,\n                \"Y\": 0.5263981223106384\n              },\n              {\n                \"X\": 0.23879054188728333,\n                \"Y\": 0.5262511968612671\n              }\n            ]\n          },\n          \"Id\": \"02146205-75fb-4673-b9fe-535a1e87f48d\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"7aacf005-c63a-45ca-aa58-14e31f9317b3\",\n                \"c7d8475b-8765-4b67-875e-b3fcebf56e69\",\n                \"f899c2f0-a242-45d3-b9f7-2f951b2d96e6\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.99320983886719,\n          \"Text\": \"$495.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06478570401668549,\n              \"Height\": 0.013104738667607307,\n              \"Left\": 0.8301064968109131,\n              \"Top\": 0.5116787552833557\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.830113410949707,\n                \"Y\": 0.5116787552833557\n              },\n              {\n                \"X\": 0.8948922157287598,\n                \"Y\": 0.5117228627204895\n              },\n              {\n                \"X\": 0.8948855996131897,\n                \"Y\": 0.5247834920883179\n              },\n              {\n                \"X\": 0.8301064968109131,\n                \"Y\": 0.5247392654418945\n              }\n            ]\n          },\n          \"Id\": \"004f971d-bc0a-4ec6-afa4-52eba2f1d745\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"9ae14143-3d4d-4441-96e4-17e5306d055a\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.36654663085938,\n          \"Text\": \"Hours of Training in Premier Version - Interactive\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.38727179169654846,\n              \"Height\": 0.014265420846641064,\n              \"Left\": 0.24035319685935974,\n              \"Top\": 0.5300871729850769\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24036337435245514,\n                \"Y\": 0.5300871729850769\n              },\n              {\n                \"X\": 0.6276249885559082,\n                \"Y\": 0.5303518772125244\n              },\n              {\n                \"X\": 0.6276166439056396,\n                \"Y\": 0.5443525910377502\n              },\n              {\n                \"X\": 0.24035319685935974,\n                \"Y\": 0.544087290763855\n              }\n            ]\n          },\n          \"Id\": \"37eeb041-05ed-454e-b519-3ab642121ecf\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"c2b5b132-ad6f-4e24-bedf-7ce9b025d652\",\n                \"6766eb77-46bc-446d-b3a8-54999742aea6\",\n                \"c44b6750-ddbb-4116-913b-21e4b7f7e478\",\n                \"98b9290d-a362-43b2-a16d-2132a4557dae\",\n                \"d256e257-2a16-47c9-bf98-382e19632930\",\n                \"207762ef-d4af-45bf-a2bd-fa987a95cc08\",\n                \"a52daa05-1604-4063-9a9c-d839ff3b826c\",\n                \"274f8653-179d-4c34-8cbc-4fa61c7524f0\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.8955307006836,\n          \"Text\": \"Demos with Q&A Sessions\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.21310274302959442,\n              \"Height\": 0.012004791758954525,\n              \"Left\": 0.24006398022174835,\n              \"Top\": 0.5486034154891968\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2400725930929184,\n                \"Y\": 0.5486034154891968\n              },\n              {\n                \"X\": 0.4531667232513428,\n                \"Y\": 0.5487495064735413\n              },\n              {\n                \"X\": 0.4531589448451996,\n                \"Y\": 0.5606082081794739\n              },\n              {\n                \"X\": 0.24006398022174835,\n                \"Y\": 0.5604618191719055\n              }\n            ]\n          },\n          \"Id\": \"28cd58d9-d67d-48e6-a952-b3af150ff439\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"2defc145-5dc9-4aaf-8f5b-b2f616e43bbb\",\n                \"44117ade-6575-40e5-88b8-7a92e1f388e3\",\n                \"7021b201-6664-4d66-963e-ea98d1091f13\",\n                \"366c3ba7-10f6-4fa4-8fa9-8ffcddd2fa55\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.95976257324219,\n          \"Text\": \"10\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.019318439066410065,\n              \"Height\": 0.011217135936021805,\n              \"Left\": 0.16154086589813232,\n              \"Top\": 0.6033152937889099\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16154929995536804,\n                \"Y\": 0.6033152937889099\n              },\n              {\n                \"X\": 0.18085931241512299,\n                \"Y\": 0.6033286452293396\n              },\n              {\n                \"X\": 0.18085095286369324,\n                \"Y\": 0.6145324110984802\n              },\n              {\n                \"X\": 0.16154086589813232,\n                \"Y\": 0.6145190000534058\n              }\n            ]\n          },\n          \"Id\": \"86e6026e-a3f0-4558-b571-2837102aafa4\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ee155b70-1b98-47b1-986c-a6ce0f8fa5a6\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.80998992919922,\n          \"Text\": \"ACP101S Standard Support\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.23767195641994476,\n              \"Height\": 0.01448625884950161,\n              \"Left\": 0.2389129400253296,\n              \"Top\": 0.6029172539710999\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2389233410358429,\n                \"Y\": 0.6029172539710999\n              },\n              {\n                \"X\": 0.47658488154411316,\n                \"Y\": 0.6030816435813904\n              },\n              {\n                \"X\": 0.476575642824173,\n                \"Y\": 0.617403507232666\n              },\n              {\n                \"X\": 0.2389129400253296,\n                \"Y\": 0.6172387003898621\n              }\n            ]\n          },\n          \"Id\": \"f2f88c19-f719-47c4-a602-c09994007aa8\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"a08d3538-a263-4f16-84c0-cb2276dca617\",\n                \"a5808a86-e5df-48ca-976e-a832c61fea55\",\n                \"7027c896-e579-469e-840b-5e17d0e7eaa1\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.98339080810547,\n          \"Text\": \"$1,100.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08015961945056915,\n              \"Height\": 0.013679257594048977,\n              \"Left\": 0.8149197101593018,\n              \"Top\": 0.6027414202690125\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8149269819259644,\n                \"Y\": 0.6027414202690125\n              },\n              {\n                \"X\": 0.8950793147087097,\n                \"Y\": 0.6027968525886536\n              },\n              {\n                \"X\": 0.8950724601745605,\n                \"Y\": 0.6164206862449646\n              },\n              {\n                \"X\": 0.8149197101593018,\n                \"Y\": 0.6163651347160339\n              }\n            ]\n          },\n          \"Id\": \"fea1628e-81e1-4ac5-be40-9468fb177dad\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"32437e7d-b18a-4438-b684-6804dd877d97\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.94576263427734,\n          \"Text\": \"Initial Hours allocated for access to email and phone\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.41569557785987854,\n              \"Height\": 0.014368177391588688,\n              \"Left\": 0.24041692912578583,\n              \"Top\": 0.6212414503097534\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2404271513223648,\n                \"Y\": 0.6212414503097534\n              },\n              {\n                \"X\": 0.6561124920845032,\n                \"Y\": 0.6215298771858215\n              },\n              {\n                \"X\": 0.6561042666435242,\n                \"Y\": 0.6356096267700195\n              },\n              {\n                \"X\": 0.24041692912578583,\n                \"Y\": 0.6353204846382141\n              }\n            ]\n          },\n          \"Id\": \"aa55e163-ce99-485e-85d0-4f5ab9efc489\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"d8c885f8-a73a-43c3-b774-0ac225548623\",\n                \"0aaa07e0-b85f-47b3-8bb1-0c4334319583\",\n                \"df452a19-1ff8-494f-a5a1-908692e8eba7\",\n                \"a74d3660-006b-4cea-8db1-587f6795613d\",\n                \"c2818833-aa68-48ab-b893-377d38420cdb\",\n                \"2b440931-5208-4706-a5a8-0f1ea587b6ed\",\n                \"6686e258-f4ee-4515-8184-b00b9e4f3349\",\n                \"844dac97-3031-4d97-9224-715f460b899a\",\n                \"8b5d851c-4d12-41a5-b448-8e219096c651\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.915771484375,\n          \"Text\": \"support for Premier Version\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.21830399334430695,\n              \"Height\": 0.01404577773064375,\n              \"Left\": 0.23966796696186066,\n              \"Top\": 0.6399272084236145\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23967806994915009,\n                \"Y\": 0.6399272084236145\n              },\n              {\n                \"X\": 0.4579719603061676,\n                \"Y\": 0.6400792002677917\n              },\n              {\n                \"X\": 0.45796290040016174,\n                \"Y\": 0.6539729833602905\n              },\n              {\n                \"X\": 0.23966796696186066,\n                \"Y\": 0.6538206934928894\n              }\n            ]\n          },\n          \"Id\": \"e301abcf-655c-4694-a6f9-803fc770f183\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"de23c795-6519-49b4-835c-1f13712b455d\",\n                \"0549f723-6239-4b23-8eb1-ea178a13e96d\",\n                \"6c6dd566-7a63-4854-82a3-2eb253951451\",\n                \"bed36ece-c445-404c-8c94-176a6ebaca79\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.9618148803711,\n          \"Text\": \"6\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.00981068518012762,\n              \"Height\": 0.011098627932369709,\n              \"Left\": 0.1660795658826828,\n              \"Top\": 0.6944677233695984\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16608789563179016,\n                \"Y\": 0.6944677233695984\n              },\n              {\n                \"X\": 0.175890251994133,\n                \"Y\": 0.6944745779037476\n              },\n              {\n                \"X\": 0.17588195204734802,\n                \"Y\": 0.7055663466453552\n              },\n              {\n                \"X\": 0.1660795658826828,\n                \"Y\": 0.7055594325065613\n              }\n            ]\n          },\n          \"Id\": \"544454c2-5fde-44b4-9869-d75ee6b433e4\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"eb3820b3-9f6e-4124-a5ca-1e0c1677dd54\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.86803436279297,\n          \"Text\": \"ACP101C Screen Customization\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.27497386932373047,\n              \"Height\": 0.011662726290524006,\n              \"Left\": 0.238702192902565,\n              \"Top\": 0.6940218210220337\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23871052265167236,\n                \"Y\": 0.6940218210220337\n              },\n              {\n                \"X\": 0.5136760473251343,\n                \"Y\": 0.6942148804664612\n              },\n              {\n                \"X\": 0.5136687755584717,\n                \"Y\": 0.7056845426559448\n              },\n              {\n                \"X\": 0.238702192902565,\n                \"Y\": 0.7054910659790039\n              }\n            ]\n          },\n          \"Id\": \"38d52af3-b061-42d7-8c7b-c1c0e1d350bb\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"de2c5a25-152c-41eb-a416-76dbebcabb11\",\n                \"dd8c8dac-b20b-4d8c-9861-c994c0200163\",\n                \"42d854ee-fd8a-461b-9748-bff7a2ed19fc\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.99396514892578,\n          \"Text\": \"$660.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06514985859394073,\n              \"Height\": 0.013421064242720604,\n              \"Left\": 0.8298372626304626,\n              \"Top\": 0.6935704350471497\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8298443555831909,\n                \"Y\": 0.6935704350471497\n              },\n              {\n                \"X\": 0.894987165927887,\n                \"Y\": 0.6936161518096924\n              },\n              {\n                \"X\": 0.8949803709983826,\n                \"Y\": 0.7069914937019348\n              },\n              {\n                \"X\": 0.8298372626304626,\n                \"Y\": 0.7069456577301025\n              }\n            ]\n          },\n          \"Id\": \"58764d87-bfc8-48ad-bf4c-f9b87266d1c9\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ba615356-573e-488e-a398-7598f55e95c4\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.91158294677734,\n          \"Text\": \"Hours spent customizing screens in Premier Version\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.4154156744480133,\n              \"Height\": 0.01453967485576868,\n              \"Left\": 0.24028874933719635,\n              \"Top\": 0.7123892307281494\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24029910564422607,\n                \"Y\": 0.7123892307281494\n              },\n              {\n                \"X\": 0.6557044386863708,\n                \"Y\": 0.712681770324707\n              },\n              {\n                \"X\": 0.6556960940361023,\n                \"Y\": 0.7269288897514343\n              },\n              {\n                \"X\": 0.24028874933719635,\n                \"Y\": 0.7266356348991394\n              }\n            ]\n          },\n          \"Id\": \"7c241cc5-94cc-434e-a252-0b3893a245e5\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"165f0aba-c51c-4a91-b109-10cf81000a30\",\n                \"6407ab50-8196-4194-ad5c-a4e125713020\",\n                \"5d220224-9ac5-4b58-917b-200a1e452c42\",\n                \"36e4a268-64d9-46ab-97e4-0ba9a88d7769\",\n                \"e9e8ef05-091b-4914-a836-479a3cd159e2\",\n                \"bece6721-d92a-4368-a6f3-d19adae9d890\",\n                \"289ae421-fd14-4a46-900c-0e98c658b4c6\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.91747283935547,\n          \"Text\": \"for client requirements\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.17779771983623505,\n              \"Height\": 0.013947827741503716,\n              \"Left\": 0.23928876221179962,\n              \"Top\": 0.7308141589164734\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23929880559444427,\n                \"Y\": 0.7308141589164734\n              },\n              {\n                \"X\": 0.41708648204803467,\n                \"Y\": 0.7309397459030151\n              },\n              {\n                \"X\": 0.41707727313041687,\n                \"Y\": 0.7447620034217834\n              },\n              {\n                \"X\": 0.23928876221179962,\n                \"Y\": 0.7446361184120178\n              }\n            ]\n          },\n          \"Id\": \"8b47c411-48f8-40da-aed9-60a23d411e36\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"c4ec419a-ea93-471d-bea4-425cfea18cfe\",\n                \"f71c4911-246e-43d1-b43e-f0605cb9266d\",\n                \"0e70b4fc-d75a-459d-8748-747beae09675\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.96521759033203,\n          \"Text\": \"4.5\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.025181347504258156,\n              \"Height\": 0.01092371717095375,\n              \"Left\": 0.15819896757602692,\n              \"Top\": 0.7858032584190369\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15820717811584473,\n                \"Y\": 0.7858032584190369\n              },\n              {\n                \"X\": 0.18338030576705933,\n                \"Y\": 0.7858211994171143\n              },\n              {\n                \"X\": 0.18337218463420868,\n                \"Y\": 0.7967269420623779\n              },\n              {\n                \"X\": 0.15819896757602692,\n                \"Y\": 0.7967090010643005\n              }\n            ]\n          },\n          \"Id\": \"818e3ba5-93cb-4343-b681-85affdae1527\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"911073e7-5ec5-4d11-854c-c934172d0809\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.89070892333984,\n          \"Text\": \"ACP101R Report Customization\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.2732229232788086,\n              \"Height\": 0.013896524906158447,\n              \"Left\": 0.23861660063266754,\n              \"Top\": 0.7853992581367493\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23862655460834503,\n                \"Y\": 0.7853992581367493\n              },\n              {\n                \"X\": 0.5118395090103149,\n                \"Y\": 0.7855939269065857\n              },\n              {\n                \"X\": 0.5118308067321777,\n                \"Y\": 0.7992957830429077\n              },\n              {\n                \"X\": 0.23861660063266754,\n                \"Y\": 0.7991006374359131\n              }\n            ]\n          },\n          \"Id\": \"6bf297cf-8646-4131-a4c3-9ff4b10dd19f\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"4e48c8c6-e938-4292-a354-54ce2ea9eef6\",\n                \"1f151877-63de-4ed2-a46c-00382e4d0495\",\n                \"e33357f1-a7cf-4c31-bb0e-7f19f605b240\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.98919677734375,\n          \"Text\": \"$495.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06511831283569336,\n              \"Height\": 0.013228698633611202,\n              \"Left\": 0.8298078179359436,\n              \"Top\": 0.7848448753356934\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8298147916793823,\n                \"Y\": 0.7848448753356934\n              },\n              {\n                \"X\": 0.894926130771637,\n                \"Y\": 0.7848913073539734\n              },\n              {\n                \"X\": 0.8949195146560669,\n                \"Y\": 0.7980735898017883\n              },\n              {\n                \"X\": 0.8298078179359436,\n                \"Y\": 0.7980270981788635\n              }\n            ]\n          },\n          \"Id\": \"d171a57d-e73f-4a9c-9cf6-96090b1aeaeb\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"d19fcc8e-0103-4cb1-a022-c12dc442dd65\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.91858673095703,\n          \"Text\": \"Hours spent customizing reports in Premier Version\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.40855100750923157,\n              \"Height\": 0.014578895643353462,\n              \"Left\": 0.24032533168792725,\n              \"Top\": 0.803278923034668\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24033571779727936,\n                \"Y\": 0.803278923034668\n              },\n              {\n                \"X\": 0.6488763689994812,\n                \"Y\": 0.8035709261894226\n              },\n              {\n                \"X\": 0.6488679647445679,\n                \"Y\": 0.8178578019142151\n              },\n              {\n                \"X\": 0.24032533168792725,\n                \"Y\": 0.8175651431083679\n              }\n            ]\n          },\n          \"Id\": \"9622b5e6-7ca8-40f3-8f94-26b496cb1a32\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"074f6bc1-0c4d-49f9-8d9c-31c5ce1107ca\",\n                \"d71c251c-23b7-4b85-8e60-2cf96ead0c42\",\n                \"e4cd2613-480f-4996-bae4-f71c80f254d6\",\n                \"20c7a3d1-810b-4557-942f-efd6df6b350b\",\n                \"b75e8c97-a565-44fc-9520-4c4801807f3f\",\n                \"32a79aee-7aa3-4d2e-9d52-8ba8922224a7\",\n                \"34bcc5a2-1826-465f-af03-416bd16c6e4a\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.86492919921875,\n          \"Text\": \"for client requirements\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.17754018306732178,\n              \"Height\": 0.014136201702058315,\n              \"Left\": 0.23931577801704407,\n              \"Top\": 0.8219249248504639\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23932595551013947,\n                \"Y\": 0.8219249248504639\n              },\n              {\n                \"X\": 0.41685596108436584,\n                \"Y\": 0.8220521807670593\n              },\n              {\n                \"X\": 0.4168466031551361,\n                \"Y\": 0.8360611200332642\n              },\n              {\n                \"X\": 0.23931577801704407,\n                \"Y\": 0.8359335660934448\n              }\n            ]\n          },\n          \"Id\": \"2ac795e4-9bd5-4bf2-b143-33ddc69d7d84\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"abb00017-a0e0-4e1e-b481-9195c44fdce6\",\n                \"98cbd5e7-4122-4259-8023-6ca0fa69b947\",\n                \"3bf01adb-dfcf-4446-b61d-cdafdfacbfc7\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 98.32766723632812,\n          \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.47699499130249023,\n              \"Height\": 0.014730450697243214,\n              \"Left\": 0.4047037959098816,\n              \"Top\": 0.9250767827033997\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4047134518623352,\n                \"Y\": 0.9250767827033997\n              },\n              {\n                \"X\": 0.8816987872123718,\n                \"Y\": 0.925424337387085\n              },\n              {\n                \"X\": 0.8816914558410645,\n                \"Y\": 0.9398072361946106\n              },\n              {\n                \"X\": 0.4047037959098816,\n                \"Y\": 0.9394589066505432\n              }\n            ]\n          },\n          \"Id\": \"0ca74d47-cd9d-41aa-9ec4-61ab4493f5b2\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"fb1dad8b-fb88-4b44-80ae-26bb65565bf5\",\n                \"9be34e13-88c3-4918-876c-a68befdf6f9f\",\n                \"cfc87da1-d83d-4b6e-add5-80814ae61eb3\",\n                \"85b734b9-89fc-40a8-a1ef-33ce72fc26cc\",\n                \"9f1e76fa-67c5-4b98-9c67-aa6d90e4cb1b\",\n                \"f58028d9-ef26-4cbe-a682-2ee4228a4759\",\n                \"8794e35b-5cc5-45e8-8638-c114174d64ab\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.45098114013672,\n          \"Text\": \"Tel: (1) 555-123-1234 Email: admin@metalegalfinance.com\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.5245195627212524,\n              \"Height\": 0.01577821746468544,\n              \"Left\": 0.3591981828212738,\n              \"Top\": 0.9454120993614197\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.35920873284339905,\n                \"Y\": 0.9454120993614197\n              },\n              {\n                \"X\": 0.8837177157402039,\n                \"Y\": 0.9457955360412598\n              },\n              {\n                \"X\": 0.8837099075317383,\n                \"Y\": 0.9611903429031372\n              },\n              {\n                \"X\": 0.3591981828212738,\n                \"Y\": 0.9608060121536255\n              }\n            ]\n          },\n          \"Id\": \"e9702eb3-4944-480f-94c0-bcb9723f7d26\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"6a57441f-1e85-4fa9-afec-3d8a586fc334\",\n                \"d36fe508-739a-4d28-bf77-ba0457226bb4\",\n                \"174c9f79-d8cd-4b52-bef6-5298283a89d9\",\n                \"e9a92b04-e28c-47f7-a5f5-b5863ca2e38f\",\n                \"87ea4181-1a97-4ad4-a784-6697268bd7f4\"\n              ]\n            }\n          ],\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.90374755859375,\n          \"Text\": \"INVOICE\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1989263892173767,\n              \"Height\": 0.02941027469933033,\n              \"Left\": 0.7197741270065308,\n              \"Top\": 0.042905043810606\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7197906374931335,\n                \"Y\": 0.042905043810606\n              },\n              {\n                \"X\": 0.9187005162239075,\n                \"Y\": 0.04302991181612015\n              },\n              {\n                \"X\": 0.9186859130859375,\n                \"Y\": 0.07231532037258148\n              },\n              {\n                \"X\": 0.7197741270065308,\n                \"Y\": 0.07218978554010391\n              }\n            ]\n          },\n          \"Id\": \"8838d5cb-3e5f-4569-a035-6e9bb0e48fdf\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.86622619628906,\n          \"Text\": \"Invoice\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06741070747375488,\n              \"Height\": 0.012139149941504002,\n              \"Left\": 0.6193020939826965,\n              \"Top\": 0.1172158420085907\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6193093061447144,\n                \"Y\": 0.1172158420085907\n              },\n              {\n                \"X\": 0.6867128014564514,\n                \"Y\": 0.11725872755050659\n              },\n              {\n                \"X\": 0.6867058277130127,\n                \"Y\": 0.12935498356819153\n              },\n              {\n                \"X\": 0.6193020939826965,\n                \"Y\": 0.12931200861930847\n              }\n            ]\n          },\n          \"Id\": \"16edb53a-ae6c-4e06-a049-726f6b88b1c6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8594970703125,\n          \"Text\": \"No:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03112545609474182,\n              \"Height\": 0.01221972145140171,\n              \"Left\": 0.6926381587982178,\n              \"Top\": 0.11724317818880081\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6926451921463013,\n                \"Y\": 0.11724317818880081\n              },\n              {\n                \"X\": 0.723763644695282,\n                \"Y\": 0.11726297438144684\n              },\n              {\n                \"X\": 0.7237567901611328,\n                \"Y\": 0.12946289777755737\n              },\n              {\n                \"X\": 0.6926381587982178,\n                \"Y\": 0.12944306433200836\n              }\n            ]\n          },\n          \"Id\": \"9cc55678-288a-4f9d-8b08-b04a10bb8ba2\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.91712951660156,\n          \"Text\": \"00000135\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08731484413146973,\n              \"Height\": 0.012107961811125278,\n              \"Left\": 0.8319916725158691,\n              \"Top\": 0.1173127144575119\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8319980502128601,\n                \"Y\": 0.1173127144575119\n              },\n              {\n                \"X\": 0.9193065166473389,\n                \"Y\": 0.11736826598644257\n              },\n              {\n                \"X\": 0.9193005561828613,\n                \"Y\": 0.129420667886734\n              },\n              {\n                \"X\": 0.8319916725158691,\n                \"Y\": 0.1293649971485138\n              }\n            ]\n          },\n          \"Id\": \"370ec58f-2996-4997-9648-ef98e8105e3d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 94.7787094116211,\n          \"Text\": \"-\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.019197482615709305,\n              \"Height\": 0.0038760420866310596,\n              \"Left\": 0.08988632261753082,\n              \"Top\": 0.14002327620983124\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08988932520151138,\n                \"Y\": 0.14002327620983124\n              },\n              {\n                \"X\": 0.10908380150794983,\n                \"Y\": 0.14003553986549377\n              },\n              {\n                \"X\": 0.10908082872629166,\n                \"Y\": 0.1438993215560913\n              },\n              {\n                \"X\": 0.08988632261753082,\n                \"Y\": 0.14388704299926758\n              }\n            ]\n          },\n          \"Id\": \"8572eaff-7665-4ab9-857f-128051d2732e\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.6714859008789,\n          \"Text\": \"META\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.186829075217247,\n              \"Height\": 0.030035337433218956,\n              \"Left\": 0.1156095489859581,\n              \"Top\": 0.12190443277359009\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11563253402709961,\n                \"Y\": 0.12190443277359009\n              },\n              {\n                \"X\": 0.3024386167526245,\n                \"Y\": 0.12202339619398117\n              },\n              {\n                \"X\": 0.302417516708374,\n                \"Y\": 0.1519397646188736\n              },\n              {\n                \"X\": 0.1156095489859581,\n                \"Y\": 0.15182016789913177\n              }\n            ]\n          },\n          \"Id\": \"b5fce951-9a62-4a3f-8188-6887cd58175a\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 92.01777648925781,\n          \"Text\": \"-\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.01953793317079544,\n              \"Height\": 0.0035582571290433407,\n              \"Left\": 0.30835863947868347,\n              \"Top\": 0.14030084013938904\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30836111307144165,\n                \"Y\": 0.14030084013938904\n              },\n              {\n                \"X\": 0.3278965651988983,\n                \"Y\": 0.14031332731246948\n              },\n              {\n                \"X\": 0.32789409160614014,\n                \"Y\": 0.1438591033220291\n              },\n              {\n                \"X\": 0.30835863947868347,\n                \"Y\": 0.14384661614894867\n              }\n            ]\n          },\n          \"Id\": \"be82b304-079d-4e97-8698-5ea73a11c2ff\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93807983398438,\n          \"Text\": \"Invoice\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0670323297381401,\n              \"Height\": 0.01194730494171381,\n              \"Left\": 0.6033908128738403,\n              \"Top\": 0.13503187894821167\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6033979654312134,\n                \"Y\": 0.13503187894821167\n              },\n              {\n                \"X\": 0.670423150062561,\n                \"Y\": 0.1350746601819992\n              },\n              {\n                \"X\": 0.6704162359237671,\n                \"Y\": 0.1469791829586029\n              },\n              {\n                \"X\": 0.6033908128738403,\n                \"Y\": 0.1469363123178482\n              }\n            ]\n          },\n          \"Id\": \"f30e82fe-c63b-46da-af1c-122ba20738c3\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.81385803222656,\n          \"Text\": \"Date:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04755213484168053,\n              \"Height\": 0.012297170236706734,\n              \"Left\": 0.6763967275619507,\n              \"Top\": 0.13491195440292358\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.676403820514679,\n                \"Y\": 0.13491195440292358\n              },\n              {\n                \"X\": 0.7239488363265991,\n                \"Y\": 0.13494229316711426\n              },\n              {\n                \"X\": 0.7239419221878052,\n                \"Y\": 0.14720912277698517\n              },\n              {\n                \"X\": 0.6763967275619507,\n                \"Y\": 0.14717870950698853\n              }\n            ]\n          },\n          \"Id\": \"43bfab25-699f-4800-8fb3-635c70b520a7\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9361572265625,\n          \"Text\": \"12\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.020098207518458366,\n              \"Height\": 0.012145462445914745,\n              \"Left\": 0.7902637720108032,\n              \"Top\": 0.13486358523368835\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7902703285217285,\n                \"Y\": 0.13486358523368835\n              },\n              {\n                \"X\": 0.8103619813919067,\n                \"Y\": 0.13487640023231506\n              },\n              {\n                \"X\": 0.8103554844856262,\n                \"Y\": 0.14700904488563538\n              },\n              {\n                \"X\": 0.7902637720108032,\n                \"Y\": 0.14699618518352509\n              }\n            ]\n          },\n          \"Id\": \"fce34782-152d-460d-bc21-93c2b53bf18d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98164367675781,\n          \"Text\": \"March\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05373597890138626,\n              \"Height\": 0.012201029807329178,\n              \"Left\": 0.8166238069534302,\n              \"Top\": 0.13491055369377136\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8166302442550659,\n                \"Y\": 0.13491055369377136\n              },\n              {\n                \"X\": 0.8703597784042358,\n                \"Y\": 0.1349448412656784\n              },\n              {\n                \"X\": 0.8703535199165344,\n                \"Y\": 0.14711157977581024\n              },\n              {\n                \"X\": 0.8166238069534302,\n                \"Y\": 0.14707721769809723\n              }\n            ]\n          },\n          \"Id\": \"ca4ff87e-77d5-44d0-b305-b161e4fa366e\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96741485595703,\n          \"Text\": \"2020\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.043656378984451294,\n              \"Height\": 0.012278004549443722,\n              \"Left\": 0.8755736947059631,\n              \"Top\": 0.1348634660243988\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8755800127983093,\n                \"Y\": 0.1348634660243988\n              },\n              {\n                \"X\": 0.9192301034927368,\n                \"Y\": 0.1348913311958313\n              },\n              {\n                \"X\": 0.9192240238189697,\n                \"Y\": 0.1471414715051651\n              },\n              {\n                \"X\": 0.8755736947059631,\n                \"Y\": 0.14711356163024902\n              }\n            ]\n          },\n          \"Id\": \"5a18ddf5-2dd5-4922-b786-b080500b1246\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93778228759766,\n          \"Text\": \"Purchase\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08761021494865417,\n              \"Height\": 0.01234877947717905,\n              \"Left\": 0.5717933773994446,\n              \"Top\": 0.15203405916690826\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.571800947189331,\n                \"Y\": 0.15203405916690826\n              },\n              {\n                \"X\": 0.6594035625457764,\n                \"Y\": 0.1520901471376419\n              },\n              {\n                \"X\": 0.6593964099884033,\n                \"Y\": 0.16438283026218414\n              },\n              {\n                \"X\": 0.5717933773994446,\n                \"Y\": 0.16432662308216095\n              }\n            ]\n          },\n          \"Id\": \"0ddf6304-345c-437d-95e1-6808cf69d80c\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.75484466552734,\n          \"Text\": \"Order:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.059272389858961105,\n              \"Height\": 0.012497413903474808,\n              \"Left\": 0.6645978689193726,\n              \"Top\": 0.15185780823230743\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6646051406860352,\n                \"Y\": 0.15185780823230743\n              },\n              {\n                \"X\": 0.7238702774047852,\n                \"Y\": 0.15189574658870697\n              },\n              {\n                \"X\": 0.7238632440567017,\n                \"Y\": 0.16435521841049194\n              },\n              {\n                \"X\": 0.6645978689193726,\n                \"Y\": 0.16431719064712524\n              }\n            ]\n          },\n          \"Id\": \"3ff46835-28b2-488f-abe5-01704bca7f21\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9725112915039,\n          \"Text\": \"F0016\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05468818545341492,\n              \"Height\": 0.01245699729770422,\n              \"Left\": 0.8645881414413452,\n              \"Top\": 0.15195481479167938\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.864594578742981,\n                \"Y\": 0.15195481479167938\n              },\n              {\n                \"X\": 0.9192763566970825,\n                \"Y\": 0.15198983252048492\n              },\n              {\n                \"X\": 0.9192701578140259,\n                \"Y\": 0.16441181302070618\n              },\n              {\n                \"X\": 0.8645881414413452,\n                \"Y\": 0.16437673568725586\n              }\n            ]\n          },\n          \"Id\": \"2c7676ff-4f8d-4f2c-bff5-be3eaaabee95\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93102264404297,\n          \"Text\": \"LEGAL\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08510342240333557,\n              \"Height\": 0.017254343256354332,\n              \"Left\": 0.08945202082395554,\n              \"Top\": 0.1610974818468094\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08946538716554642,\n                \"Y\": 0.1610974818468094\n              },\n              {\n                \"X\": 0.1745554506778717,\n                \"Y\": 0.16115204989910126\n              },\n              {\n                \"X\": 0.17454257607460022,\n                \"Y\": 0.17835183441638947\n              },\n              {\n                \"X\": 0.08945202082395554,\n                \"Y\": 0.17829708755016327\n              }\n            ]\n          },\n          \"Id\": \"ed2a89d4-2931-4927-941b-3a86b29ce0d9\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.58208465576172,\n          \"Text\": \"&\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.018786918371915817,\n              \"Height\": 0.01648387871682644,\n              \"Left\": 0.18089915812015533,\n              \"Top\": 0.16162779927253723\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.18091145157814026,\n                \"Y\": 0.16162779927253723\n              },\n              {\n                \"X\": 0.19968606531620026,\n                \"Y\": 0.16163983941078186\n              },\n              {\n                \"X\": 0.1996738761663437,\n                \"Y\": 0.17811167240142822\n              },\n              {\n                \"X\": 0.18089915812015533,\n                \"Y\": 0.1780996024608612\n              }\n            ]\n          },\n          \"Id\": \"03e1d591-d340-4c26-b64e-c3f323828b10\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.80995178222656,\n          \"Text\": \"FINANCE\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12120642513036728,\n              \"Height\": 0.017144547775387764,\n              \"Left\": 0.20662730932235718,\n              \"Top\": 0.1611817181110382\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.20663990080356598,\n                \"Y\": 0.1611817181110382\n              },\n              {\n                \"X\": 0.32783374190330505,\n                \"Y\": 0.16125944256782532\n              },\n              {\n                \"X\": 0.32782185077667236,\n                \"Y\": 0.17832626402378082\n              },\n              {\n                \"X\": 0.20662730932235718,\n                \"Y\": 0.1782483160495758\n              }\n            ]\n          },\n          \"Id\": \"94439263-6460-4a18-a7c3-4c57b1933467\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.90451049804688,\n          \"Text\": \"Abstractors\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1101149320602417,\n              \"Height\": 0.013196686282753944,\n              \"Left\": 0.11692103743553162,\n              \"Top\": 0.22778742015361786\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11693111807107925,\n                \"Y\": 0.22778742015361786\n              },\n              {\n                \"X\": 0.22703596949577332,\n                \"Y\": 0.22785887122154236\n              },\n              {\n                \"X\": 0.22702638804912567,\n                \"Y\": 0.24098411202430725\n              },\n              {\n                \"X\": 0.11692103743553162,\n                \"Y\": 0.24091249704360962\n              }\n            ]\n          },\n          \"Id\": \"16a000ae-0abb-4037-88e9-754ecce0b2cf\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99134826660156,\n          \"Text\": \"and\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.034636784344911575,\n              \"Height\": 0.012362590990960598,\n              \"Left\": 0.23262828588485718,\n              \"Top\": 0.22846314311027527\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23263727128505707,\n                \"Y\": 0.22846314311027527\n              },\n              {\n                \"X\": 0.26726508140563965,\n                \"Y\": 0.22848562896251678\n              },\n              {\n                \"X\": 0.2672562301158905,\n                \"Y\": 0.24082574248313904\n              },\n              {\n                \"X\": 0.23262828588485718,\n                \"Y\": 0.24080321192741394\n              }\n            ]\n          },\n          \"Id\": \"5b65de2a-2917-41f0-bff2-7b4747a8d4f6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98104095458984,\n          \"Text\": \"Design\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06400865316390991,\n              \"Height\": 0.015420353040099144,\n              \"Left\": 0.2739528715610504,\n              \"Top\": 0.2282690852880478\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2739638686180115,\n                \"Y\": 0.2282690852880478\n              },\n              {\n                \"X\": 0.3379615247249603,\n                \"Y\": 0.22831061482429504\n              },\n              {\n                \"X\": 0.3379508852958679,\n                \"Y\": 0.24368944764137268\n              },\n              {\n                \"X\": 0.2739528715610504,\n                \"Y\": 0.24364779889583588\n              }\n            ]\n          },\n          \"Id\": \"0e91bea6-87bc-40f4-913b-bccf90f7f7cb\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.86209106445312,\n          \"Text\": \"Co.\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03069133311510086,\n              \"Height\": 0.012405017390847206,\n              \"Left\": 0.3440748453140259,\n              \"Top\": 0.22834765911102295\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.34408339858055115,\n                \"Y\": 0.22834765911102295\n              },\n              {\n                \"X\": 0.37476617097854614,\n                \"Y\": 0.22836758196353912\n              },\n              {\n                \"X\": 0.3747577369213104,\n                \"Y\": 0.2407526820898056\n              },\n              {\n                \"X\": 0.3440748453140259,\n                \"Y\": 0.24073272943496704\n              }\n            ]\n          },\n          \"Id\": \"0bdaccfa-15bf-4ecd-aef0-1bd4c9ec9fd7\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.84959411621094,\n          \"Text\": \"Attn:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03678147867321968,\n              \"Height\": 0.011149912141263485,\n              \"Left\": 0.1168990507721901,\n              \"Top\": 0.24831059575080872\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11690759658813477,\n                \"Y\": 0.24831059575080872\n              },\n              {\n                \"X\": 0.15368053317070007,\n                \"Y\": 0.24833454191684723\n              },\n              {\n                \"X\": 0.15367212891578674,\n                \"Y\": 0.2594605088233948\n              },\n              {\n                \"X\": 0.1168990507721901,\n                \"Y\": 0.2594365179538727\n              }\n            ]\n          },\n          \"Id\": \"9698f91f-9db8-4ca6-922d-f4549e479c52\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96822357177734,\n          \"Text\": \"Ronald\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.056034281849861145,\n              \"Height\": 0.011375978589057922,\n              \"Left\": 0.15997308492660522,\n              \"Top\": 0.24808382987976074\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1599816232919693,\n                \"Y\": 0.24808382987976074\n              },\n              {\n                \"X\": 0.21600736677646637,\n                \"Y\": 0.24812030792236328\n              },\n              {\n                \"X\": 0.215999037027359,\n                \"Y\": 0.25945979356765747\n              },\n              {\n                \"X\": 0.15997308492660522,\n                \"Y\": 0.25942325592041016\n              }\n            ]\n          },\n          \"Id\": \"4c870836-828e-4ad6-9fb5-7d36f4ecf5eb\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.91516876220703,\n          \"Text\": \"Davis\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04433494061231613,\n              \"Height\": 0.011300621554255486,\n              \"Left\": 0.22178614139556885,\n              \"Top\": 0.24820171296596527\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.22179439663887024,\n                \"Y\": 0.24820171296596527\n              },\n              {\n                \"X\": 0.2661210894584656,\n                \"Y\": 0.24823059141635895\n              },\n              {\n                \"X\": 0.2661129832267761,\n                \"Y\": 0.2595023512840271\n              },\n              {\n                \"X\": 0.22178614139556885,\n                \"Y\": 0.25947341322898865\n              }\n            ]\n          },\n          \"Id\": \"27b0c437-07e0-45c1-9ee7-2d7b85f79dec\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9027328491211,\n          \"Text\": \"Suite\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04005178436636925,\n              \"Height\": 0.011435559019446373,\n              \"Left\": 0.11773268133401871,\n              \"Top\": 0.2663102447986603\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11774144321680069,\n                \"Y\": 0.2663102447986603\n              },\n              {\n                \"X\": 0.15778447687625885,\n                \"Y\": 0.2663364112377167\n              },\n              {\n                \"X\": 0.1577758640050888,\n                \"Y\": 0.27774578332901\n              },\n              {\n                \"X\": 0.11773268133401871,\n                \"Y\": 0.2777195870876312\n              }\n            ]\n          },\n          \"Id\": \"84ea1795-ec0f-4150-966b-bda337aa9829\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92027282714844,\n          \"Text\": \"8\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.009387608617544174,\n              \"Height\": 0.010974998585879803,\n              \"Left\": 0.16362705826759338,\n              \"Top\": 0.2666212320327759\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16363531351089478,\n                \"Y\": 0.2666212320327759\n              },\n              {\n                \"X\": 0.17301467061042786,\n                \"Y\": 0.26662737131118774\n              },\n              {\n                \"X\": 0.17300646007061005,\n                \"Y\": 0.27759623527526855\n              },\n              {\n                \"X\": 0.16362705826759338,\n                \"Y\": 0.2775900959968567\n              }\n            ]\n          },\n          \"Id\": \"5b1a0b59-e217-46f4-8eb3-e1c537342034\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97650146484375,\n          \"Text\": \"611\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.026633193716406822,\n              \"Height\": 0.011363889090716839,\n              \"Left\": 0.11736243963241577,\n              \"Top\": 0.2846008837223053\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11737115681171417,\n                \"Y\": 0.2846008837223053\n              },\n              {\n                \"X\": 0.14399564266204834,\n                \"Y\": 0.2846183478832245\n              },\n              {\n                \"X\": 0.1439870297908783,\n                \"Y\": 0.295964777469635\n              },\n              {\n                \"X\": 0.11736243963241577,\n                \"Y\": 0.2959473133087158\n              }\n            ]\n          },\n          \"Id\": \"8332af4e-6393-43f3-9201-925f6a811323\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93978118896484,\n          \"Text\": \"Maine\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04906465858221054,\n              \"Height\": 0.011372249573469162,\n              \"Left\": 0.15103018283843994,\n              \"Top\": 0.2845882177352905\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1510387659072876,\n                \"Y\": 0.2845882177352905\n              },\n              {\n                \"X\": 0.20009484887123108,\n                \"Y\": 0.28462037444114685\n              },\n              {\n                \"X\": 0.20008645951747894,\n                \"Y\": 0.2959604859352112\n              },\n              {\n                \"X\": 0.15103018283843994,\n                \"Y\": 0.2959282696247101\n              }\n            ]\n          },\n          \"Id\": \"d918b526-2cf6-4a16-8607-f05dcc4b485a\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9228515625,\n          \"Text\": \"St\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.01717844046652317,\n              \"Height\": 0.011519020423293114,\n              \"Left\": 0.20536863803863525,\n              \"Top\": 0.2844225764274597\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.20537713170051575,\n                \"Y\": 0.2844225764274597\n              },\n              {\n                \"X\": 0.22254708409309387,\n                \"Y\": 0.28443384170532227\n              },\n              {\n                \"X\": 0.22253865003585815,\n                \"Y\": 0.2959415912628174\n              },\n              {\n                \"X\": 0.20536863803863525,\n                \"Y\": 0.29593032598495483\n              }\n            ]\n          },\n          \"Id\": \"a4f26a98-047c-4de1-8a11-e05ba1b33dd4\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98027801513672,\n          \"Text\": \"San\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03153488039970398,\n              \"Height\": 0.01141123566776514,\n              \"Left\": 0.11746649444103241,\n              \"Top\": 0.30285221338272095\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1174752339720726,\n                \"Y\": 0.30285221338272095\n              },\n              {\n                \"X\": 0.1490013748407364,\n                \"Y\": 0.3028729557991028\n              },\n              {\n                \"X\": 0.14899274706840515,\n                \"Y\": 0.3142634630203247\n              },\n              {\n                \"X\": 0.11746649444103241,\n                \"Y\": 0.3142426908016205\n              }\n            ]\n          },\n          \"Id\": \"f2f58c9f-4d73-4951-aaa7-50adee419c5c\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.46975708007812,\n          \"Text\": \"Francisco\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07734169811010361,\n              \"Height\": 0.011405178345739841,\n              \"Left\": 0.154939666390419,\n              \"Top\": 0.3029859960079193\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15494823455810547,\n                \"Y\": 0.3029859960079193\n              },\n              {\n                \"X\": 0.23228135704994202,\n                \"Y\": 0.3030368387699127\n              },\n              {\n                \"X\": 0.23227308690547943,\n                \"Y\": 0.314391165971756\n              },\n              {\n                \"X\": 0.154939666390419,\n                \"Y\": 0.314340204000473\n              }\n            ]\n          },\n          \"Id\": \"4b71a1b0-15b1-4172-92bb-d3ee8c304354\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8388442993164,\n          \"Text\": \"CA\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.025118840858340263,\n              \"Height\": 0.011367722414433956,\n              \"Left\": 0.23746441304683685,\n              \"Top\": 0.3028782904148102\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23747266829013824,\n                \"Y\": 0.3028782904148102\n              },\n              {\n                \"X\": 0.26258325576782227,\n                \"Y\": 0.30289480090141296\n              },\n              {\n                \"X\": 0.26257508993148804,\n                \"Y\": 0.3142459988594055\n              },\n              {\n                \"X\": 0.23746441304683685,\n                \"Y\": 0.31422945857048035\n              }\n            ]\n          },\n          \"Id\": \"052ead98-3280-4897-9c90-e2599afdcc44\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96754455566406,\n          \"Text\": \"94105\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05017592012882233,\n              \"Height\": 0.011638311669230461,\n              \"Left\": 0.2661654055118561,\n              \"Top\": 0.3028514087200165\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.26617372035980225,\n                \"Y\": 0.3028514087200165\n              },\n              {\n                \"X\": 0.3163413107395172,\n                \"Y\": 0.30288437008857727\n              },\n              {\n                \"X\": 0.31633320450782776,\n                \"Y\": 0.3144897222518921\n              },\n              {\n                \"X\": 0.2661654055118561,\n                \"Y\": 0.31445667147636414\n              }\n            ]\n          },\n          \"Id\": \"c3400fdc-b0d8-4b0f-8692-170e562a070a\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98637390136719,\n          \"Text\": \"Qty\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03281388059258461,\n              \"Height\": 0.015644459053874016,\n              \"Left\": 0.1549258530139923,\n              \"Top\": 0.37161529064178467\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15493763983249664,\n                \"Y\": 0.37161529064178467\n              },\n              {\n                \"X\": 0.18773972988128662,\n                \"Y\": 0.37163710594177246\n              },\n              {\n                \"X\": 0.18772810697555542,\n                \"Y\": 0.38725975155830383\n              },\n              {\n                \"X\": 0.1549258530139923,\n                \"Y\": 0.38723787665367126\n              }\n            ]\n          },\n          \"Id\": \"ec6cff2d-d25a-42fc-bafa-5bb566a15380\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8298568725586,\n          \"Text\": \"Item\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.039787571877241135,\n              \"Height\": 0.012277547270059586,\n              \"Left\": 0.2399795949459076,\n              \"Top\": 0.37186166644096375\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23998849093914032,\n                \"Y\": 0.37186166644096375\n              },\n              {\n                \"X\": 0.27976715564727783,\n                \"Y\": 0.371888130903244\n              },\n              {\n                \"X\": 0.27975842356681824,\n                \"Y\": 0.38413920998573303\n              },\n              {\n                \"X\": 0.2399795949459076,\n                \"Y\": 0.384112685918808\n              }\n            ]\n          },\n          \"Id\": \"854af125-140e-4582-86fc-994e83d4e00d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98870849609375,\n          \"Text\": \"Amount\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07608060538768768,\n              \"Height\": 0.01261931098997593,\n              \"Left\": 0.8199252486228943,\n              \"Top\": 0.3717232644557953\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8199319243431091,\n                \"Y\": 0.3717232644557953\n              },\n              {\n                \"X\": 0.8960058689117432,\n                \"Y\": 0.3717738687992096\n              },\n              {\n                \"X\": 0.8959994912147522,\n                \"Y\": 0.3843425512313843\n              },\n              {\n                \"X\": 0.8199252486228943,\n                \"Y\": 0.3842918276786804\n              }\n            ]\n          },\n          \"Id\": \"2035c28b-a4e6-4ee4-aa83-e2a1af3be601\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93639373779297,\n          \"Text\": \"3\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.010034209117293358,\n              \"Height\": 0.01134193129837513,\n              \"Left\": 0.16582044959068298,\n              \"Top\": 0.42095082998275757\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16582895815372467,\n                \"Y\": 0.42095082998275757\n              },\n              {\n                \"X\": 0.1758546531200409,\n                \"Y\": 0.4209575653076172\n              },\n              {\n                \"X\": 0.1758461743593216,\n                \"Y\": 0.43229275941848755\n              },\n              {\n                \"X\": 0.16582044959068298,\n                \"Y\": 0.43228602409362793\n              }\n            ]\n          },\n          \"Id\": \"55de5158-eda0-48b2-bc93-7372d2bdf611\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.80290222167969,\n          \"Text\": \"ACP101\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06653942912817001,\n              \"Height\": 0.011192215606570244,\n              \"Left\": 0.23906806111335754,\n              \"Top\": 0.4209240972995758\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2390761524438858,\n                \"Y\": 0.4209240972995758\n              },\n              {\n                \"X\": 0.30560749769210815,\n                \"Y\": 0.4209687411785126\n              },\n              {\n                \"X\": 0.3055996298789978,\n                \"Y\": 0.4321163296699524\n              },\n              {\n                \"X\": 0.23906806111335754,\n                \"Y\": 0.43207159638404846\n              }\n            ]\n          },\n          \"Id\": \"3396f8a4-e0fc-4954-ae77-3e4799e062f2\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9754638671875,\n          \"Text\": \"Accounting\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.09927808493375778,\n              \"Height\": 0.013889770023524761,\n              \"Left\": 0.31111496686935425,\n              \"Top\": 0.42098674178123474\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.31112468242645264,\n                \"Y\": 0.42098674178123474\n              },\n              {\n                \"X\": 0.4103930592536926,\n                \"Y\": 0.42105334997177124\n              },\n              {\n                \"X\": 0.41038382053375244,\n                \"Y\": 0.4348765015602112\n              },\n              {\n                \"X\": 0.31111496686935425,\n                \"Y\": 0.43480974435806274\n              }\n            ]\n          },\n          \"Id\": \"ee6a64a7-935b-4399-8d10-d30014a52866\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.90577697753906,\n          \"Text\": \"Package\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07239621877670288,\n              \"Height\": 0.013764696195721626,\n              \"Left\": 0.4160870909690857,\n              \"Top\": 0.42104899883270264\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4160962402820587,\n                \"Y\": 0.42104899883270264\n              },\n              {\n                \"X\": 0.4884833097457886,\n                \"Y\": 0.4210975766181946\n              },\n              {\n                \"X\": 0.4884744882583618,\n                \"Y\": 0.4348136782646179\n              },\n              {\n                \"X\": 0.4160870909690857,\n                \"Y\": 0.4347650110721588\n              }\n            ]\n          },\n          \"Id\": \"410ec60c-bd42-406c-9510-b13d56461379\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99143981933594,\n          \"Text\": \"$1,350.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07951543480157852,\n              \"Height\": 0.013869076035916805,\n              \"Left\": 0.8153519630432129,\n              \"Top\": 0.4205067753791809\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8153592944145203,\n                \"Y\": 0.4205067753791809\n              },\n              {\n                \"X\": 0.8948673605918884,\n                \"Y\": 0.4205601215362549\n              },\n              {\n                \"X\": 0.8948603868484497,\n                \"Y\": 0.4343758523464203\n              },\n              {\n                \"X\": 0.8153519630432129,\n                \"Y\": 0.43432238698005676\n              }\n            ]\n          },\n          \"Id\": \"5e3c2b4c-9697-4286-81a2-581a264875a2\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98843383789062,\n          \"Text\": \"Annual\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05627225339412689,\n              \"Height\": 0.011346002109348774,\n              \"Left\": 0.23899179697036743,\n              \"Top\": 0.4394198954105377\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23900002241134644,\n                \"Y\": 0.4394198954105377\n              },\n              {\n                \"X\": 0.2952640652656555,\n                \"Y\": 0.4394577443599701\n              },\n              {\n                \"X\": 0.2952560484409332,\n                \"Y\": 0.4507658779621124\n              },\n              {\n                \"X\": 0.23899179697036743,\n                \"Y\": 0.4507279396057129\n              }\n            ]\n          },\n          \"Id\": \"c567b318-5a29-4263-bf15-9ee5a37c6258\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8752212524414,\n          \"Text\": \"Subscription\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.09870747476816177,\n              \"Height\": 0.013874148949980736,\n              \"Left\": 0.30063724517822266,\n              \"Top\": 0.4393464922904968\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30064699053764343,\n                \"Y\": 0.4393464922904968\n              },\n              {\n                \"X\": 0.3993447422981262,\n                \"Y\": 0.439412921667099\n              },\n              {\n                \"X\": 0.39933544397354126,\n                \"Y\": 0.4532206356525421\n              },\n              {\n                \"X\": 0.30063724517822266,\n                \"Y\": 0.4531540274620056\n              }\n            ]\n          },\n          \"Id\": \"d6d69b00-d81d-4761-bb30-21f663c122d7\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98941040039062,\n          \"Text\": \"to\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.015414108522236347,\n              \"Height\": 0.010791501961648464,\n              \"Left\": 0.4039425551891327,\n              \"Top\": 0.4399215877056122\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4039497673511505,\n                \"Y\": 0.4399215877056122\n              },\n              {\n                \"X\": 0.41935664415359497,\n                \"Y\": 0.4399319589138031\n              },\n              {\n                \"X\": 0.41934946179389954,\n                \"Y\": 0.4507130980491638\n              },\n              {\n                \"X\": 0.4039425551891327,\n                \"Y\": 0.4507026970386505\n              }\n            ]\n          },\n          \"Id\": \"ff7b1565-a06c-435a-a792-0961a8f1be9c\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.78269958496094,\n          \"Text\": \"Premier\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06332413107156754,\n              \"Height\": 0.011596922762691975,\n              \"Left\": 0.4247075915336609,\n              \"Top\": 0.43925273418426514\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4247152507305145,\n                \"Y\": 0.43925273418426514\n              },\n              {\n                \"X\": 0.4880317151546478,\n                \"Y\": 0.43929535150527954\n              },\n              {\n                \"X\": 0.4880242943763733,\n                \"Y\": 0.45084965229034424\n              },\n              {\n                \"X\": 0.4247075915336609,\n                \"Y\": 0.45080697536468506\n              }\n            ]\n          },\n          \"Id\": \"6677af3c-c620-4e8b-836e-378bd189765d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.84125518798828,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.059950366616249084,\n              \"Height\": 0.011463708244264126,\n              \"Left\": 0.4919329285621643,\n              \"Top\": 0.4393865466117859\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4919402599334717,\n                \"Y\": 0.4393865466117859\n              },\n              {\n                \"X\": 0.5518832802772522,\n                \"Y\": 0.43942686915397644\n              },\n              {\n                \"X\": 0.5518761873245239,\n                \"Y\": 0.450850248336792\n              },\n              {\n                \"X\": 0.4919329285621643,\n                \"Y\": 0.4508098065853119\n              }\n            ]\n          },\n          \"Id\": \"9774e5ff-830e-443d-8073-837e9ab52f0c\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99008178710938,\n          \"Text\": \"with\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0322282575070858,\n              \"Height\": 0.01122535765171051,\n              \"Left\": 0.5565418004989624,\n              \"Top\": 0.439471572637558\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5565487742424011,\n                \"Y\": 0.439471572637558\n              },\n              {\n                \"X\": 0.5887700915336609,\n                \"Y\": 0.4394932687282562\n              },\n              {\n                \"X\": 0.5887632369995117,\n                \"Y\": 0.4506969153881073\n              },\n              {\n                \"X\": 0.5565418004989624,\n                \"Y\": 0.45067518949508667\n              }\n            ]\n          },\n          \"Id\": \"59b9dbf2-b90b-4fd3-9737-c297f310809b\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.89453887939453,\n          \"Text\": \"Tax,\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03242282196879387,\n              \"Height\": 0.013097838498651981,\n              \"Left\": 0.5935008525848389,\n              \"Top\": 0.43942755460739136\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.593508780002594,\n                \"Y\": 0.43942755460739136\n              },\n              {\n                \"X\": 0.6259236931800842,\n                \"Y\": 0.43944939970970154\n              },\n              {\n                \"X\": 0.6259158849716187,\n                \"Y\": 0.45252540707588196\n              },\n              {\n                \"X\": 0.5935008525848389,\n                \"Y\": 0.4525035321712494\n              }\n            ]\n          },\n          \"Id\": \"3e118a4f-5284-4895-8ea4-840e5150886d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.76936340332031,\n          \"Text\": \"Inventory\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07342972606420517,\n              \"Height\": 0.013924975879490376,\n              \"Left\": 0.2403121143579483,\n              \"Top\": 0.4576702117919922\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24032218754291534,\n                \"Y\": 0.4576702117919922\n              },\n              {\n                \"X\": 0.3137418329715729,\n                \"Y\": 0.4577198028564453\n              },\n              {\n                \"X\": 0.3137321174144745,\n                \"Y\": 0.4715951979160309\n              },\n              {\n                \"X\": 0.2403121143579483,\n                \"Y\": 0.4715455174446106\n              }\n            ]\n          },\n          \"Id\": \"35ba6ffc-7d41-47a8-a0e7-7832379998d6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98859405517578,\n          \"Text\": \"and\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.029652724042534828,\n              \"Height\": 0.011408427730202675,\n              \"Left\": 0.3185513913631439,\n              \"Top\": 0.45756977796554565\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.31855934858322144,\n                \"Y\": 0.45756977796554565\n              },\n              {\n                \"X\": 0.348204106092453,\n                \"Y\": 0.4575898051261902\n              },\n              {\n                \"X\": 0.34819626808166504,\n                \"Y\": 0.46897822618484497\n              },\n              {\n                \"X\": 0.3185513913631439,\n                \"Y\": 0.46895816922187805\n              }\n            ]\n          },\n          \"Id\": \"55ddd792-31b9-4dd0-a354-10c73da6c913\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.94218444824219,\n          \"Text\": \"Payroll\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05426076427102089,\n              \"Height\": 0.014217165298759937,\n              \"Left\": 0.35405290126800537,\n              \"Top\": 0.4574160873889923\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.35406267642974854,\n                \"Y\": 0.4574160873889923\n              },\n              {\n                \"X\": 0.40831366181373596,\n                \"Y\": 0.4574527144432068\n              },\n              {\n                \"X\": 0.4083041846752167,\n                \"Y\": 0.47163325548171997\n              },\n              {\n                \"X\": 0.35405290126800537,\n                \"Y\": 0.47159653902053833\n              }\n            ]\n          },\n          \"Id\": \"08e2bfd2-e128-451b-ae87-e0d60692132e\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.73553466796875,\n          \"Text\": \"Plugins\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05825227499008179,\n              \"Height\": 0.014519616961479187,\n              \"Left\": 0.4140912592411041,\n              \"Top\": 0.4573644995689392\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.41410091519355774,\n                \"Y\": 0.4573644995689392\n              },\n              {\n                \"X\": 0.4723435342311859,\n                \"Y\": 0.4574038088321686\n              },\n              {\n                \"X\": 0.4723341464996338,\n                \"Y\": 0.4718841016292572\n              },\n              {\n                \"X\": 0.4140912592411041,\n                \"Y\": 0.47184470295906067\n              }\n            ]\n          },\n          \"Id\": \"c51b2188-31f4-402c-8b51-c53d41931447\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97169494628906,\n          \"Text\": \"4.5\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0256289504468441,\n              \"Height\": 0.0116430027410388,\n              \"Left\": 0.15772324800491333,\n              \"Top\": 0.5119256377220154\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1577320247888565,\n                \"Y\": 0.5119256377220154\n              },\n              {\n                \"X\": 0.18335220217704773,\n                \"Y\": 0.5119431018829346\n              },\n              {\n                \"X\": 0.1833435297012329,\n                \"Y\": 0.5235686302185059\n              },\n              {\n                \"X\": 0.15772324800491333,\n                \"Y\": 0.5235511660575867\n              }\n            ]\n          },\n          \"Id\": \"7847bb53-250d-471c-826b-1bed62d87de0\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.76802825927734,\n          \"Text\": \"ACP101T\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08018021285533905,\n              \"Height\": 0.011556940153241158,\n              \"Left\": 0.2387925684452057,\n              \"Top\": 0.5119614601135254\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23880092799663544,\n                \"Y\": 0.5119614601135254\n              },\n              {\n                \"X\": 0.31897279620170593,\n                \"Y\": 0.5120161175727844\n              },\n              {\n                \"X\": 0.31896474957466125,\n                \"Y\": 0.523518443107605\n              },\n              {\n                \"X\": 0.2387925684452057,\n                \"Y\": 0.5234636664390564\n              }\n            ]\n          },\n          \"Id\": \"7aacf005-c63a-45ca-aa58-14e31f9317b3\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9084701538086,\n          \"Text\": \"Online\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05569439008831978,\n              \"Height\": 0.011532677337527275,\n              \"Left\": 0.3237510025501251,\n              \"Top\": 0.5119858980178833\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3237590491771698,\n                \"Y\": 0.5119858980178833\n              },\n              {\n                \"X\": 0.3794454038143158,\n                \"Y\": 0.5120238661766052\n              },\n              {\n                \"X\": 0.3794375956058502,\n                \"Y\": 0.5235185623168945\n              },\n              {\n                \"X\": 0.3237510025501251,\n                \"Y\": 0.5234805345535278\n              }\n            ]\n          },\n          \"Id\": \"c7d8475b-8765-4b67-875e-b3fcebf56e69\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.95381164550781,\n          \"Text\": \"Training\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06980778276920319,\n              \"Height\": 0.014508886262774467,\n              \"Left\": 0.38410013914108276,\n              \"Top\": 0.5118892788887024\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3841099441051483,\n                \"Y\": 0.5118892788887024\n              },\n              {\n                \"X\": 0.45390793681144714,\n                \"Y\": 0.5119368433952332\n              },\n              {\n                \"X\": 0.45389845967292786,\n                \"Y\": 0.5263981223106384\n              },\n              {\n                \"X\": 0.38410013914108276,\n                \"Y\": 0.5263504981994629\n              }\n            ]\n          },\n          \"Id\": \"f899c2f0-a242-45d3-b9f7-2f951b2d96e6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99320983886719,\n          \"Text\": \"$495.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06478570401668549,\n              \"Height\": 0.013104738667607307,\n              \"Left\": 0.8301064968109131,\n              \"Top\": 0.5116787552833557\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.830113410949707,\n                \"Y\": 0.5116787552833557\n              },\n              {\n                \"X\": 0.8948922157287598,\n                \"Y\": 0.5117228627204895\n              },\n              {\n                \"X\": 0.8948855996131897,\n                \"Y\": 0.5247834920883179\n              },\n              {\n                \"X\": 0.8301064968109131,\n                \"Y\": 0.5247392654418945\n              }\n            ]\n          },\n          \"Id\": \"9ae14143-3d4d-4441-96e4-17e5306d055a\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96113586425781,\n          \"Text\": \"Hours\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04701060801744461,\n              \"Height\": 0.011327581480145454,\n              \"Left\": 0.24035492539405823,\n              \"Top\": 0.5304096937179565\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24036313593387604,\n                \"Y\": 0.5304096937179565\n              },\n              {\n                \"X\": 0.28736552596092224,\n                \"Y\": 0.5304418206214905\n              },\n              {\n                \"X\": 0.28735750913619995,\n                \"Y\": 0.5417372584342957\n              },\n              {\n                \"X\": 0.24035492539405823,\n                \"Y\": 0.5417050719261169\n              }\n            ]\n          },\n          \"Id\": \"c2b5b132-ad6f-4e24-bedf-7ce9b025d652\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98809051513672,\n          \"Text\": \"of\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.016010411083698273,\n              \"Height\": 0.011272652074694633,\n              \"Left\": 0.29252636432647705,\n              \"Top\": 0.5303207635879517\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.29253435134887695,\n                \"Y\": 0.5303207635879517\n              },\n              {\n                \"X\": 0.3085367679595947,\n                \"Y\": 0.5303317308425903\n              },\n              {\n                \"X\": 0.308528870344162,\n                \"Y\": 0.5415934324264526\n              },\n              {\n                \"X\": 0.29252636432647705,\n                \"Y\": 0.541582465171814\n              }\n            ]\n          },\n          \"Id\": \"6766eb77-46bc-446d-b3a8-54999742aea6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92916870117188,\n          \"Text\": \"Training\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06370681524276733,\n              \"Height\": 0.013934462331235409,\n              \"Left\": 0.31227582693099976,\n              \"Top\": 0.5302457809448242\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.31228557229042053,\n                \"Y\": 0.5302457809448242\n              },\n              {\n                \"X\": 0.3759826421737671,\n                \"Y\": 0.5302892923355103\n              },\n              {\n                \"X\": 0.3759731948375702,\n                \"Y\": 0.5441802144050598\n              },\n              {\n                \"X\": 0.31227582693099976,\n                \"Y\": 0.5441365838050842\n              }\n            ]\n          },\n          \"Id\": \"c44b6750-ddbb-4116-913b-21e4b7f7e478\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98381042480469,\n          \"Text\": \"in\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.013431846164166927,\n              \"Height\": 0.011037852615118027,\n              \"Left\": 0.3816022574901581,\n              \"Top\": 0.5304242968559265\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3816097676753998,\n                \"Y\": 0.5304242968559265\n              },\n              {\n                \"X\": 0.3950341045856476,\n                \"Y\": 0.5304334759712219\n              },\n              {\n                \"X\": 0.39502668380737305,\n                \"Y\": 0.5414621233940125\n              },\n              {\n                \"X\": 0.3816022574901581,\n                \"Y\": 0.541452944278717\n              }\n            ]\n          },\n          \"Id\": \"98b9290d-a362-43b2-a16d-2132a4557dae\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.7357177734375,\n          \"Text\": \"Premier\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06305485963821411,\n              \"Height\": 0.011583085171878338,\n              \"Left\": 0.4009794592857361,\n              \"Top\": 0.5301969647407532\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4009872078895569,\n                \"Y\": 0.5301969647407532\n              },\n              {\n                \"X\": 0.4640343189239502,\n                \"Y\": 0.5302400588989258\n              },\n              {\n                \"X\": 0.4640268087387085,\n                \"Y\": 0.5417800545692444\n              },\n              {\n                \"X\": 0.4009794592857361,\n                \"Y\": 0.541736900806427\n              }\n            ]\n          },\n          \"Id\": \"d256e257-2a16-47c9-bf98-382e19632930\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.79000091552734,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.060201652348041534,\n              \"Height\": 0.011556169018149376,\n              \"Left\": 0.46770426630973816,\n              \"Top\": 0.5302591323852539\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.46771174669265747,\n                \"Y\": 0.5302591323852539\n              },\n              {\n                \"X\": 0.5279058814048767,\n                \"Y\": 0.5303002595901489\n              },\n              {\n                \"X\": 0.5278986692428589,\n                \"Y\": 0.5418152809143066\n              },\n              {\n                \"X\": 0.46770426630973816,\n                \"Y\": 0.5417740941047668\n              }\n            ]\n          },\n          \"Id\": \"207762ef-d4af-45bf-a2bd-fa987a95cc08\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 96.0571517944336,\n          \"Text\": \"-\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.006541911978274584,\n              \"Height\": 0.002431523520499468,\n              \"Left\": 0.532932698726654,\n              \"Top\": 0.5359998941421509\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5329342484474182,\n                \"Y\": 0.5359998941421509\n              },\n              {\n                \"X\": 0.539474606513977,\n                \"Y\": 0.536004364490509\n              },\n              {\n                \"X\": 0.5394731163978577,\n                \"Y\": 0.5384314060211182\n              },\n              {\n                \"X\": 0.532932698726654,\n                \"Y\": 0.53842693567276\n              }\n            ]\n          },\n          \"Id\": \"a52daa05-1604-4063-9a9c-d839ff3b826c\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.48728942871094,\n          \"Text\": \"Interactive\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08263871818780899,\n              \"Height\": 0.010656172409653664,\n              \"Left\": 0.544985830783844,\n              \"Top\": 0.5310046076774597\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5449924468994141,\n                \"Y\": 0.5310046076774597\n              },\n              {\n                \"X\": 0.6276245713233948,\n                \"Y\": 0.531061053276062\n              },\n              {\n                \"X\": 0.6276182532310486,\n                \"Y\": 0.5416607856750488\n              },\n              {\n                \"X\": 0.544985830783844,\n                \"Y\": 0.5416041612625122\n              }\n            ]\n          },\n          \"Id\": \"274f8653-179d-4c34-8cbc-4fa61c7524f0\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.79515838623047,\n          \"Text\": \"Demos\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05643260478973389,\n              \"Height\": 0.011225864291191101,\n              \"Left\": 0.24006430804729462,\n              \"Top\": 0.5488222241401672\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24007242918014526,\n                \"Y\": 0.5488222241401672\n              },\n              {\n                \"X\": 0.2964969277381897,\n                \"Y\": 0.5488609075546265\n              },\n              {\n                \"X\": 0.29648900032043457,\n                \"Y\": 0.5600481033325195\n              },\n              {\n                \"X\": 0.24006430804729462,\n                \"Y\": 0.5600093603134155\n              }\n            ]\n          },\n          \"Id\": \"2defc145-5dc9-4aaf-8f5b-b2f616e43bbb\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9926528930664,\n          \"Text\": \"with\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03208602964878082,\n              \"Height\": 0.011231048963963985,\n              \"Left\": 0.3009420931339264,\n              \"Top\": 0.5486825704574585\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30094999074935913,\n                \"Y\": 0.5486825704574585\n              },\n              {\n                \"X\": 0.333028107881546,\n                \"Y\": 0.5487045645713806\n              },\n              {\n                \"X\": 0.33302032947540283,\n                \"Y\": 0.5599135756492615\n              },\n              {\n                \"X\": 0.3009420931339264,\n                \"Y\": 0.5598915815353394\n              }\n            ]\n          },\n          \"Id\": \"44117ade-6575-40e5-88b8-7a92e1f388e3\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.956298828125,\n          \"Text\": \"Q&A\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03836037218570709,\n              \"Height\": 0.011884884908795357,\n              \"Left\": 0.33854940533638,\n              \"Top\": 0.5486709475517273\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.338557630777359,\n                \"Y\": 0.5486709475517273\n              },\n              {\n                \"X\": 0.3769097924232483,\n                \"Y\": 0.5486972332000732\n              },\n              {\n                \"X\": 0.3769017159938812,\n                \"Y\": 0.5605558156967163\n              },\n              {\n                \"X\": 0.33854940533638,\n                \"Y\": 0.5605294704437256\n              }\n            ]\n          },\n          \"Id\": \"7021b201-6664-4d66-963e-ea98d1091f13\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.83800506591797,\n          \"Text\": \"Sessions\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0721982792019844,\n              \"Height\": 0.01140811201184988,\n              \"Left\": 0.3809684216976166,\n              \"Top\": 0.5487340688705444\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.380976140499115,\n                \"Y\": 0.5487340688705444\n              },\n              {\n                \"X\": 0.4531666934490204,\n                \"Y\": 0.548783540725708\n              },\n              {\n                \"X\": 0.45315927267074585,\n                \"Y\": 0.5601421594619751\n              },\n              {\n                \"X\": 0.3809684216976166,\n                \"Y\": 0.560092568397522\n              }\n            ]\n          },\n          \"Id\": \"366c3ba7-10f6-4fa4-8fa9-8ffcddd2fa55\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.95976257324219,\n          \"Text\": \"10\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.019318439066410065,\n              \"Height\": 0.011217135936021805,\n              \"Left\": 0.16154086589813232,\n              \"Top\": 0.6033152937889099\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16154929995536804,\n                \"Y\": 0.6033152937889099\n              },\n              {\n                \"X\": 0.18085931241512299,\n                \"Y\": 0.6033286452293396\n              },\n              {\n                \"X\": 0.18085095286369324,\n                \"Y\": 0.6145324110984802\n              },\n              {\n                \"X\": 0.16154086589813232,\n                \"Y\": 0.6145190000534058\n              }\n            ]\n          },\n          \"Id\": \"ee155b70-1b98-47b1-986c-a6ce0f8fa5a6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.50428771972656,\n          \"Text\": \"ACP101S\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08162281662225723,\n              \"Height\": 0.012135986238718033,\n              \"Left\": 0.23891444504261017,\n              \"Top\": 0.6030959486961365\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23892322182655334,\n                \"Y\": 0.6030959486961365\n              },\n              {\n                \"X\": 0.320537269115448,\n                \"Y\": 0.6031523942947388\n              },\n              {\n                \"X\": 0.3205288052558899,\n                \"Y\": 0.6152319312095642\n              },\n              {\n                \"X\": 0.23891444504261017,\n                \"Y\": 0.6151753664016724\n              }\n            ]\n          },\n          \"Id\": \"a08d3538-a263-4f16-84c0-cb2276dca617\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.94400787353516,\n          \"Text\": \"Standard\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07782316207885742,\n              \"Height\": 0.011736229062080383,\n              \"Left\": 0.32437923550605774,\n              \"Top\": 0.602976381778717\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.32438740134239197,\n                \"Y\": 0.602976381778717\n              },\n              {\n                \"X\": 0.40220239758491516,\n                \"Y\": 0.6030302047729492\n              },\n              {\n                \"X\": 0.4021945595741272,\n                \"Y\": 0.6147125959396362\n              },\n              {\n                \"X\": 0.32437923550605774,\n                \"Y\": 0.6146586537361145\n              }\n            ]\n          },\n          \"Id\": \"a5808a86-e5df-48ca-976e-a832c61fea55\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.981689453125,\n          \"Text\": \"Support\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06893546134233475,\n              \"Height\": 0.014159462414681911,\n              \"Left\": 0.40764927864074707,\n              \"Top\": 0.6032440066337585\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.40765875577926636,\n                \"Y\": 0.6032440066337585\n              },\n              {\n                \"X\": 0.4765847623348236,\n                \"Y\": 0.6032916903495789\n              },\n              {\n                \"X\": 0.476575642824173,\n                \"Y\": 0.617403507232666\n              },\n              {\n                \"X\": 0.40764927864074707,\n                \"Y\": 0.6173557043075562\n              }\n            ]\n          },\n          \"Id\": \"7027c896-e579-469e-840b-5e17d0e7eaa1\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98339080810547,\n          \"Text\": \"$1,100.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08015961945056915,\n              \"Height\": 0.013679257594048977,\n              \"Left\": 0.8149197101593018,\n              \"Top\": 0.6027414202690125\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8149269819259644,\n                \"Y\": 0.6027414202690125\n              },\n              {\n                \"X\": 0.8950793147087097,\n                \"Y\": 0.6027968525886536\n              },\n              {\n                \"X\": 0.8950724601745605,\n                \"Y\": 0.6164206862449646\n              },\n              {\n                \"X\": 0.8149197101593018,\n                \"Y\": 0.6163651347160339\n              }\n            ]\n          },\n          \"Id\": \"32437e7d-b18a-4438-b684-6804dd877d97\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.69170379638672,\n          \"Text\": \"Initial\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.041069455444812775,\n              \"Height\": 0.011471603065729141,\n              \"Left\": 0.2404186725616455,\n              \"Top\": 0.6214707493782043\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24042698740959167,\n                \"Y\": 0.6214707493782043\n              },\n              {\n                \"X\": 0.2814881205558777,\n                \"Y\": 0.621499240398407\n              },\n              {\n                \"X\": 0.28147998452186584,\n                \"Y\": 0.6329423785209656\n              },\n              {\n                \"X\": 0.2404186725616455,\n                \"Y\": 0.6329138278961182\n              }\n            ]\n          },\n          \"Id\": \"d8c885f8-a73a-43c3-b774-0ac225548623\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96852111816406,\n          \"Text\": \"Hours\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04731297492980957,\n              \"Height\": 0.01132708229124546,\n              \"Left\": 0.2869776785373688,\n              \"Top\": 0.621573269367218\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.28698569536209106,\n                \"Y\": 0.621573269367218\n              },\n              {\n                \"X\": 0.33429065346717834,\n                \"Y\": 0.6216061115264893\n              },\n              {\n                \"X\": 0.3342828154563904,\n                \"Y\": 0.6329003572463989\n              },\n              {\n                \"X\": 0.2869776785373688,\n                \"Y\": 0.6328675150871277\n              }\n            ]\n          },\n          \"Id\": \"0aaa07e0-b85f-47b3-8bb1-0c4334319583\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98675537109375,\n          \"Text\": \"allocated\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07178949564695358,\n              \"Height\": 0.01162918284535408,\n              \"Left\": 0.3393349051475525,\n              \"Top\": 0.6213881969451904\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3393429219722748,\n                \"Y\": 0.6213881969451904\n              },\n              {\n                \"X\": 0.41112440824508667,\n                \"Y\": 0.6214380264282227\n              },\n              {\n                \"X\": 0.41111665964126587,\n                \"Y\": 0.633017361164093\n              },\n              {\n                \"X\": 0.3393349051475525,\n                \"Y\": 0.632967472076416\n              }\n            ]\n          },\n          \"Id\": \"df452a19-1ff8-494f-a5a1-908692e8eba7\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99266052246094,\n          \"Text\": \"for\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02208935096859932,\n              \"Height\": 0.011529595591127872,\n              \"Left\": 0.41579559445381165,\n              \"Top\": 0.62136310338974\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4158032536506653,\n                \"Y\": 0.62136310338974\n              },\n              {\n                \"X\": 0.4378849267959595,\n                \"Y\": 0.6213784217834473\n              },\n              {\n                \"X\": 0.4378773272037506,\n                \"Y\": 0.6328927278518677\n              },\n              {\n                \"X\": 0.41579559445381165,\n                \"Y\": 0.6328773498535156\n              }\n            ]\n          },\n          \"Id\": \"a74d3660-006b-4cea-8db1-587f6795613d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.95999145507812,\n          \"Text\": \"access\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05614727735519409,\n              \"Height\": 0.009446973912417889,\n              \"Left\": 0.44209057092666626,\n              \"Top\": 0.6236684322357178\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4420967698097229,\n                \"Y\": 0.6236684322357178\n              },\n              {\n                \"X\": 0.49823784828186035,\n                \"Y\": 0.6237073540687561\n              },\n              {\n                \"X\": 0.49823182821273804,\n                \"Y\": 0.6331153512001038\n              },\n              {\n                \"X\": 0.44209057092666626,\n                \"Y\": 0.6330763697624207\n              }\n            ]\n          },\n          \"Id\": \"c2818833-aa68-48ab-b893-377d38420cdb\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99079132080078,\n          \"Text\": \"to\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.015942221507430077,\n              \"Height\": 0.010802965611219406,\n              \"Left\": 0.502533495426178,\n              \"Top\": 0.6221020221710205\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5025404095649719,\n                \"Y\": 0.6221020221710205\n              },\n              {\n                \"X\": 0.5184757113456726,\n                \"Y\": 0.6221131086349487\n              },\n              {\n                \"X\": 0.5184689164161682,\n                \"Y\": 0.6329050064086914\n              },\n              {\n                \"X\": 0.502533495426178,\n                \"Y\": 0.6328939199447632\n              }\n            ]\n          },\n          \"Id\": \"2b440931-5208-4706-a5a8-0f1ea587b6ed\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9557876586914,\n          \"Text\": \"email\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.042811065912246704,\n              \"Height\": 0.01155648659914732,\n              \"Left\": 0.5231685042381287,\n              \"Top\": 0.6214946508407593\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5231757760047913,\n                \"Y\": 0.6214946508407593\n              },\n              {\n                \"X\": 0.5659795999526978,\n                \"Y\": 0.6215243339538574\n              },\n              {\n                \"X\": 0.5659724473953247,\n                \"Y\": 0.6330511569976807\n              },\n              {\n                \"X\": 0.5231685042381287,\n                \"Y\": 0.6330214142799377\n              }\n            ]\n          },\n          \"Id\": \"6686e258-f4ee-4515-8184-b00b9e4f3349\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.990966796875,\n          \"Text\": \"and\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02983246184885502,\n              \"Height\": 0.011372325010597706,\n              \"Left\": 0.5711823105812073,\n              \"Top\": 0.6215564608573914\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.571189284324646,\n                \"Y\": 0.6215564608573914\n              },\n              {\n                \"X\": 0.6010147929191589,\n                \"Y\": 0.6215771436691284\n              },\n              {\n                \"X\": 0.6010079383850098,\n                \"Y\": 0.6329287886619568\n              },\n              {\n                \"X\": 0.5711823105812073,\n                \"Y\": 0.632908046245575\n              }\n            ]\n          },\n          \"Id\": \"844dac97-3031-4d97-9224-715f460b899a\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9746322631836,\n          \"Text\": \"phone\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.049936022609472275,\n              \"Height\": 0.014072542078793049,\n              \"Left\": 0.6061764359474182,\n              \"Top\": 0.6215370893478394\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6061848998069763,\n                \"Y\": 0.6215370893478394\n              },\n              {\n                \"X\": 0.6561124920845032,\n                \"Y\": 0.6215717196464539\n              },\n              {\n                \"X\": 0.6561042666435242,\n                \"Y\": 0.6356096267700195\n              },\n              {\n                \"X\": 0.6061764359474182,\n                \"Y\": 0.6355748772621155\n              }\n            ]\n          },\n          \"Id\": \"8b5d851c-4d12-41a5-b448-8e219096c651\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97848510742188,\n          \"Text\": \"support\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06049259752035141,\n              \"Height\": 0.01349530927836895,\n              \"Left\": 0.23966796696186066,\n              \"Top\": 0.6403676271438599\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23967774212360382,\n                \"Y\": 0.6403676271438599\n              },\n              {\n                \"X\": 0.30016055703163147,\n                \"Y\": 0.6404097080230713\n              },\n              {\n                \"X\": 0.3001510798931122,\n                \"Y\": 0.6538628935813904\n              },\n              {\n                \"X\": 0.23966796696186066,\n                \"Y\": 0.6538206934928894\n              }\n            ]\n          },\n          \"Id\": \"de23c795-6519-49b4-835c-1f13712b455d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99378967285156,\n          \"Text\": \"for\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.022051766514778137,\n              \"Height\": 0.011320115067064762,\n              \"Left\": 0.3040245473384857,\n              \"Top\": 0.6399762630462646\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30403250455856323,\n                \"Y\": 0.6399762630462646\n              },\n              {\n                \"X\": 0.32607629895210266,\n                \"Y\": 0.6399915814399719\n              },\n              {\n                \"X\": 0.3260684311389923,\n                \"Y\": 0.6512963771820068\n              },\n              {\n                \"X\": 0.3040245473384857,\n                \"Y\": 0.6512809991836548\n              }\n            ]\n          },\n          \"Id\": \"0549f723-6239-4b23-8eb1-ea178a13e96d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8329849243164,\n          \"Text\": \"Premier\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06278526782989502,\n              \"Height\": 0.011442775838077068,\n              \"Left\": 0.33104345202445984,\n              \"Top\": 0.6399914622306824\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.33105137944221497,\n                \"Y\": 0.6399914622306824\n              },\n              {\n                \"X\": 0.39382871985435486,\n                \"Y\": 0.6400351524353027\n              },\n              {\n                \"X\": 0.39382103085517883,\n                \"Y\": 0.6514342427253723\n              },\n              {\n                \"X\": 0.33104345202445984,\n                \"Y\": 0.6513904333114624\n              }\n            ]\n          },\n          \"Id\": \"6c6dd566-7a63-4854-82a3-2eb253951451\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.85783386230469,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.060193054378032684,\n              \"Height\": 0.01138312928378582,\n              \"Left\": 0.3977789282798767,\n              \"Top\": 0.6400372982025146\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.39778655767440796,\n                \"Y\": 0.6400372982025146\n              },\n              {\n                \"X\": 0.4579719603061676,\n                \"Y\": 0.6400792002677917\n              },\n              {\n                \"X\": 0.45796456933021545,\n                \"Y\": 0.6514204144477844\n              },\n              {\n                \"X\": 0.3977789282798767,\n                \"Y\": 0.6513784527778625\n              }\n            ]\n          },\n          \"Id\": \"bed36ece-c445-404c-8c94-176a6ebaca79\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9618148803711,\n          \"Text\": \"6\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.00981068518012762,\n              \"Height\": 0.011098627932369709,\n              \"Left\": 0.1660795658826828,\n              \"Top\": 0.6944677233695984\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.16608789563179016,\n                \"Y\": 0.6944677233695984\n              },\n              {\n                \"X\": 0.175890251994133,\n                \"Y\": 0.6944745779037476\n              },\n              {\n                \"X\": 0.17588195204734802,\n                \"Y\": 0.7055663466453552\n              },\n              {\n                \"X\": 0.1660795658826828,\n                \"Y\": 0.7055594325065613\n              }\n            ]\n          },\n          \"Id\": \"eb3820b3-9f6e-4124-a5ca-1e0c1677dd54\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8177490234375,\n          \"Text\": \"ACP101C\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08129535615444183,\n              \"Height\": 0.01150471344590187,\n              \"Left\": 0.238702192902565,\n              \"Top\": 0.6940435767173767\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23871050775051117,\n                \"Y\": 0.6940435767173767\n              },\n              {\n                \"X\": 0.31999754905700684,\n                \"Y\": 0.6941006183624268\n              },\n              {\n                \"X\": 0.31998953223228455,\n                \"Y\": 0.7055482864379883\n              },\n              {\n                \"X\": 0.238702192902565,\n                \"Y\": 0.7054910659790039\n              }\n            ]\n          },\n          \"Id\": \"de2c5a25-152c-41eb-a416-76dbebcabb11\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96916961669922,\n          \"Text\": \"Screen\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05971701443195343,\n              \"Height\": 0.01138967927545309,\n              \"Left\": 0.32531043887138367,\n              \"Top\": 0.6941524744033813\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3253183364868164,\n                \"Y\": 0.6941524744033813\n              },\n              {\n                \"X\": 0.3850274384021759,\n                \"Y\": 0.6941943764686584\n              },\n              {\n                \"X\": 0.3850197494029999,\n                \"Y\": 0.7055421471595764\n              },\n              {\n                \"X\": 0.32531043887138367,\n                \"Y\": 0.7055001258850098\n              }\n            ]\n          },\n          \"Id\": \"dd8c8dac-b20b-4d8c-9861-c994c0200163\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.81718444824219,\n          \"Text\": \"Customization\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12294472008943558,\n              \"Height\": 0.01137322187423706,\n              \"Left\": 0.3907313346862793,\n              \"Top\": 0.6941285729408264\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.39073896408081055,\n                \"Y\": 0.6941285729408264\n              },\n              {\n                \"X\": 0.5136760473251343,\n                \"Y\": 0.6942148804664612\n              },\n              {\n                \"X\": 0.5136688947677612,\n                \"Y\": 0.7055017948150635\n              },\n              {\n                \"X\": 0.3907313346862793,\n                \"Y\": 0.7054153084754944\n              }\n            ]\n          },\n          \"Id\": \"42d854ee-fd8a-461b-9748-bff7a2ed19fc\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99396514892578,\n          \"Text\": \"$660.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06514985859394073,\n              \"Height\": 0.013421064242720604,\n              \"Left\": 0.8298372626304626,\n              \"Top\": 0.6935704350471497\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8298443555831909,\n                \"Y\": 0.6935704350471497\n              },\n              {\n                \"X\": 0.894987165927887,\n                \"Y\": 0.6936161518096924\n              },\n              {\n                \"X\": 0.8949803709983826,\n                \"Y\": 0.7069914937019348\n              },\n              {\n                \"X\": 0.8298372626304626,\n                \"Y\": 0.7069456577301025\n              }\n            ]\n          },\n          \"Id\": \"ba615356-573e-488e-a398-7598f55e95c4\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9681396484375,\n          \"Text\": \"Hours\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0472293384373188,\n              \"Height\": 0.011385100893676281,\n              \"Left\": 0.2402905970811844,\n              \"Top\": 0.712755560874939\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24029883742332458,\n                \"Y\": 0.712755560874939\n              },\n              {\n                \"X\": 0.2875199317932129,\n                \"Y\": 0.7127888202667236\n              },\n              {\n                \"X\": 0.2875118553638458,\n                \"Y\": 0.7241407036781311\n              },\n              {\n                \"X\": 0.2402905970811844,\n                \"Y\": 0.7241073846817017\n              }\n            ]\n          },\n          \"Id\": \"165f0aba-c51c-4a91-b109-10cf81000a30\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96037292480469,\n          \"Text\": \"spent\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.044510163366794586,\n              \"Height\": 0.013445430435240269,\n              \"Left\": 0.29244309663772583,\n              \"Top\": 0.7130910754203796\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2924526035785675,\n                \"Y\": 0.7130910754203796\n              },\n              {\n                \"X\": 0.3369532525539398,\n                \"Y\": 0.7131224274635315\n              },\n              {\n                \"X\": 0.33694395422935486,\n                \"Y\": 0.7265365123748779\n              },\n              {\n                \"X\": 0.29244309663772583,\n                \"Y\": 0.7265051007270813\n              }\n            ]\n          },\n          \"Id\": \"6407ab50-8196-4194-ad5c-a4e125713020\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.91529083251953,\n          \"Text\": \"customizing\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0945596694946289,\n              \"Height\": 0.01411632914096117,\n              \"Left\": 0.34161829948425293,\n              \"Top\": 0.7126575708389282\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3416280150413513,\n                \"Y\": 0.7126575708389282\n              },\n              {\n                \"X\": 0.43617796897888184,\n                \"Y\": 0.7127241492271423\n              },\n              {\n                \"X\": 0.43616870045661926,\n                \"Y\": 0.7267739176750183\n              },\n              {\n                \"X\": 0.34161829948425293,\n                \"Y\": 0.7267071604728699\n              }\n            ]\n          },\n          \"Id\": \"5d220224-9ac5-4b58-917b-200a1e452c42\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93186950683594,\n          \"Text\": \"screens\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0627717524766922,\n              \"Height\": 0.009054931811988354,\n              \"Left\": 0.44128483533859253,\n              \"Top\": 0.7150458097457886\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4412907660007477,\n                \"Y\": 0.7150458097457886\n              },\n              {\n                \"X\": 0.5040565729141235,\n                \"Y\": 0.7150900363922119\n              },\n              {\n                \"X\": 0.5040508508682251,\n                \"Y\": 0.7241007089614868\n              },\n              {\n                \"X\": 0.44128483533859253,\n                \"Y\": 0.7240564227104187\n              }\n            ]\n          },\n          \"Id\": \"36e4a268-64d9-46ab-97e4-0ba9a88d7769\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98064422607422,\n          \"Text\": \"in\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.01348728034645319,\n              \"Height\": 0.011072645895183086,\n              \"Left\": 0.5093383193016052,\n              \"Top\": 0.7127336859703064\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5093453526496887,\n                \"Y\": 0.7127336859703064\n              },\n              {\n                \"X\": 0.5228255987167358,\n                \"Y\": 0.7127431631088257\n              },\n              {\n                \"X\": 0.5228186249732971,\n                \"Y\": 0.7238063216209412\n              },\n              {\n                \"X\": 0.5093383193016052,\n                \"Y\": 0.7237967848777771\n              }\n            ]\n          },\n          \"Id\": \"e9e8ef05-091b-4914-a836-479a3cd159e2\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.78271484375,\n          \"Text\": \"Premier\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0628935918211937,\n              \"Height\": 0.011667350307106972,\n              \"Left\": 0.5287185311317444,\n              \"Top\": 0.712592363357544\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5287258625030518,\n                \"Y\": 0.712592363357544\n              },\n              {\n                \"X\": 0.5916121602058411,\n                \"Y\": 0.7126366496086121\n              },\n              {\n                \"X\": 0.5916050672531128,\n                \"Y\": 0.7242596745491028\n              },\n              {\n                \"X\": 0.5287185311317444,\n                \"Y\": 0.7242153286933899\n              }\n            ]\n          },\n          \"Id\": \"bece6721-d92a-4368-a6f3-d19adae9d890\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8420181274414,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.060077160596847534,\n              \"Height\": 0.011436015367507935,\n              \"Left\": 0.5956272482872009,\n              \"Top\": 0.7126709222793579\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5956341624259949,\n                \"Y\": 0.7126709222793579\n              },\n              {\n                \"X\": 0.6557044386863708,\n                \"Y\": 0.7127132415771484\n              },\n              {\n                \"X\": 0.655697762966156,\n                \"Y\": 0.7241069674491882\n              },\n              {\n                \"X\": 0.5956272482872009,\n                \"Y\": 0.7240645289421082\n              }\n            ]\n          },\n          \"Id\": \"289ae421-fd14-4a46-900c-0e98c658b4c6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9936752319336,\n          \"Text\": \"for\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.021735340356826782,\n              \"Height\": 0.011408437043428421,\n              \"Left\": 0.2392905354499817,\n              \"Top\": 0.7308141589164734\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23929880559444427,\n                \"Y\": 0.7308141589164734\n              },\n              {\n                \"X\": 0.26102587580680847,\n                \"Y\": 0.7308294773101807\n              },\n              {\n                \"X\": 0.26101768016815186,\n                \"Y\": 0.7422226071357727\n              },\n              {\n                \"X\": 0.2392905354499817,\n                \"Y\": 0.7422072291374207\n              }\n            ]\n          },\n          \"Id\": \"c4ec419a-ea93-471d-bea4-425cfea18cfe\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.83750915527344,\n          \"Text\": \"client\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04263976588845253,\n              \"Height\": 0.011554031632840633,\n              \"Left\": 0.26538875699043274,\n              \"Top\": 0.7308452725410461\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.26539701223373413,\n                \"Y\": 0.7308452725410461\n              },\n              {\n                \"X\": 0.30802851915359497,\n                \"Y\": 0.7308754324913025\n              },\n              {\n                \"X\": 0.3080204129219055,\n                \"Y\": 0.7423993349075317\n              },\n              {\n                \"X\": 0.26538875699043274,\n                \"Y\": 0.7423691749572754\n              }\n            ]\n          },\n          \"Id\": \"f71c4911-246e-43d1-b43e-f0605cb9266d\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92121887207031,\n          \"Text\": \"requirements\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.10459789633750916,\n              \"Height\": 0.0137312151491642,\n              \"Left\": 0.31248849630355835,\n              \"Top\": 0.7310307621955872\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3124980628490448,\n                \"Y\": 0.7310307621955872\n              },\n              {\n                \"X\": 0.4170863926410675,\n                \"Y\": 0.7311046719551086\n              },\n              {\n                \"X\": 0.41707727313041687,\n                \"Y\": 0.7447620034217834\n              },\n              {\n                \"X\": 0.31248849630355835,\n                \"Y\": 0.7446879148483276\n              }\n            ]\n          },\n          \"Id\": \"0e70b4fc-d75a-459d-8748-747beae09675\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96521759033203,\n          \"Text\": \"4.5\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.025181347504258156,\n              \"Height\": 0.01092371717095375,\n              \"Left\": 0.15819896757602692,\n              \"Top\": 0.7858032584190369\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15820717811584473,\n                \"Y\": 0.7858032584190369\n              },\n              {\n                \"X\": 0.18338030576705933,\n                \"Y\": 0.7858211994171143\n              },\n              {\n                \"X\": 0.18337218463420868,\n                \"Y\": 0.7967269420623779\n              },\n              {\n                \"X\": 0.15819896757602692,\n                \"Y\": 0.7967090010643005\n              }\n            ]\n          },\n          \"Id\": \"911073e7-5ec5-4d11-854c-c934172d0809\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.84050750732422,\n          \"Text\": \"ACP101R\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08213838934898376,\n              \"Height\": 0.011549646034836769,\n              \"Left\": 0.23861820995807648,\n              \"Top\": 0.7853992581367493\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23862655460834503,\n                \"Y\": 0.7853992581367493\n              },\n              {\n                \"X\": 0.32075658440589905,\n                \"Y\": 0.7854577898979187\n              },\n              {\n                \"X\": 0.32074856758117676,\n                \"Y\": 0.7969488501548767\n              },\n              {\n                \"X\": 0.23861820995807648,\n                \"Y\": 0.7968902587890625\n              }\n            ]\n          },\n          \"Id\": \"4e48c8c6-e938-4292-a354-54ce2ea9eef6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98737335205078,\n          \"Text\": \"Report\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.058019429445266724,\n              \"Height\": 0.013586602173745632,\n              \"Left\": 0.3257780075073242,\n              \"Top\": 0.7856177091598511\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3257874548435211,\n                \"Y\": 0.7856177091598511\n              },\n              {\n                \"X\": 0.38379743695259094,\n                \"Y\": 0.7856590747833252\n              },\n              {\n                \"X\": 0.38378825783729553,\n                \"Y\": 0.7992042899131775\n              },\n              {\n                \"X\": 0.3257780075073242,\n                \"Y\": 0.7991628646850586\n              }\n            ]\n          },\n          \"Id\": \"1f151877-63de-4ed2-a46c-00382e4d0495\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.84423828125,\n          \"Text\": \"Customization\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12311653047800064,\n              \"Height\": 0.011515467427670956,\n              \"Left\": 0.3887229859828949,\n              \"Top\": 0.785541296005249\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3887307047843933,\n                \"Y\": 0.785541296005249\n              },\n              {\n                \"X\": 0.5118395090103149,\n                \"Y\": 0.7856290340423584\n              },\n              {\n                \"X\": 0.5118322372436523,\n                \"Y\": 0.7970567941665649\n              },\n              {\n                \"X\": 0.3887229859828949,\n                \"Y\": 0.7969688773155212\n              }\n            ]\n          },\n          \"Id\": \"e33357f1-a7cf-4c31-bb0e-7f19f605b240\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98919677734375,\n          \"Text\": \"$495.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06511831283569336,\n              \"Height\": 0.013228698633611202,\n              \"Left\": 0.8298078179359436,\n              \"Top\": 0.7848448753356934\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8298147916793823,\n                \"Y\": 0.7848448753356934\n              },\n              {\n                \"X\": 0.894926130771637,\n                \"Y\": 0.7848913073539734\n              },\n              {\n                \"X\": 0.8949195146560669,\n                \"Y\": 0.7980735898017883\n              },\n              {\n                \"X\": 0.8298078179359436,\n                \"Y\": 0.7980270981788635\n              }\n            ]\n          },\n          \"Id\": \"d19fcc8e-0103-4cb1-a022-c12dc442dd65\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96481323242188,\n          \"Text\": \"Hours\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.047019198536872864,\n              \"Height\": 0.01119181327521801,\n              \"Left\": 0.24032726883888245,\n              \"Top\": 0.8037441372871399\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2403353750705719,\n                \"Y\": 0.8037441372871399\n              },\n              {\n                \"X\": 0.2873464822769165,\n                \"Y\": 0.8037777543067932\n              },\n              {\n                \"X\": 0.2873385548591614,\n                \"Y\": 0.8149359822273254\n              },\n              {\n                \"X\": 0.24032726883888245,\n                \"Y\": 0.8149023056030273\n              }\n            ]\n          },\n          \"Id\": \"074f6bc1-0c4d-49f9-8d9c-31c5ce1107ca\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.94371795654297,\n          \"Text\": \"spent\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04435770586133003,\n              \"Height\": 0.01330679003149271,\n              \"Left\": 0.29247575998306274,\n              \"Top\": 0.8040584325790405\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.29248514771461487,\n                \"Y\": 0.8040584325790405\n              },\n              {\n                \"X\": 0.33683347702026367,\n                \"Y\": 0.804090142250061\n              },\n              {\n                \"X\": 0.3368242681026459,\n                \"Y\": 0.8173652291297913\n              },\n              {\n                \"X\": 0.29247575998306274,\n                \"Y\": 0.817333459854126\n              }\n            ]\n          },\n          \"Id\": \"d71c251c-23b7-4b85-8e60-2cf96ead0c42\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92570495605469,\n          \"Text\": \"customizing\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.09476503729820251,\n              \"Height\": 0.01412981003522873,\n              \"Left\": 0.3413864076137543,\n              \"Top\": 0.8035756349563599\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.34139615297317505,\n                \"Y\": 0.8035756349563599\n              },\n              {\n                \"X\": 0.4361514449119568,\n                \"Y\": 0.8036433458328247\n              },\n              {\n                \"X\": 0.4361421763896942,\n                \"Y\": 0.8177054524421692\n              },\n              {\n                \"X\": 0.3413864076137543,\n                \"Y\": 0.81763756275177\n              }\n            ]\n          },\n          \"Id\": \"e4cd2613-480f-4996-bae4-f71c80f254d6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98694610595703,\n          \"Text\": \"reports\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.056104205548763275,\n              \"Height\": 0.013638252392411232,\n              \"Left\": 0.44124117493629456,\n              \"Top\": 0.803989827632904\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.44125011563301086,\n                \"Y\": 0.803989827632904\n              },\n              {\n                \"X\": 0.4973453879356384,\n                \"Y\": 0.8040299415588379\n              },\n              {\n                \"X\": 0.4973366856575012,\n                \"Y\": 0.8176280856132507\n              },\n              {\n                \"X\": 0.44124117493629456,\n                \"Y\": 0.8175879120826721\n              }\n            ]\n          },\n          \"Id\": \"20c7a3d1-810b-4557-942f-efd6df6b350b\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97576141357422,\n          \"Text\": \"in\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.013809426687657833,\n              \"Height\": 0.011198108084499836,\n              \"Left\": 0.5021917223930359,\n              \"Top\": 0.8036998510360718\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5021988153457642,\n                \"Y\": 0.8036998510360718\n              },\n              {\n                \"X\": 0.5160011053085327,\n                \"Y\": 0.8037096858024597\n              },\n              {\n                \"X\": 0.5159940719604492,\n                \"Y\": 0.8148979544639587\n              },\n              {\n                \"X\": 0.5021917223930359,\n                \"Y\": 0.814888060092926\n              }\n            ]\n          },\n          \"Id\": \"b75e8c97-a565-44fc-9520-4c4801807f3f\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.78929138183594,\n          \"Text\": \"Premier\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06300702691078186,\n              \"Height\": 0.011537930928170681,\n              \"Left\": 0.5217251777648926,\n              \"Top\": 0.8034979701042175\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5217324495315552,\n                \"Y\": 0.8034979701042175\n              },\n              {\n                \"X\": 0.5847322344779968,\n                \"Y\": 0.803542971611023\n              },\n              {\n                \"X\": 0.5847252011299133,\n                \"Y\": 0.815035879611969\n              },\n              {\n                \"X\": 0.5217251777648926,\n                \"Y\": 0.814990758895874\n              }\n            ]\n          },\n          \"Id\": \"32a79aee-7aa3-4d2e-9d52-8ba8922224a7\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8438720703125,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06013134866952896,\n              \"Height\": 0.011492693796753883,\n              \"Left\": 0.5887449979782104,\n              \"Top\": 0.8035279512405396\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5887519717216492,\n                \"Y\": 0.8035279512405396\n              },\n              {\n                \"X\": 0.6488763689994812,\n                \"Y\": 0.8035709261894226\n              },\n              {\n                \"X\": 0.6488696336746216,\n                \"Y\": 0.8150206208229065\n              },\n              {\n                \"X\": 0.5887449979782104,\n                \"Y\": 0.8149775862693787\n              }\n            ]\n          },\n          \"Id\": \"34bcc5a2-1826-465f-af03-416bd16c6e4a\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9920654296875,\n          \"Text\": \"for\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.021671079099178314,\n              \"Height\": 0.011185741983354092,\n              \"Left\": 0.23931770026683807,\n              \"Top\": 0.8221032619476318\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23932582139968872,\n                \"Y\": 0.8221032619476318\n              },\n              {\n                \"X\": 0.2609887719154358,\n                \"Y\": 0.8221187591552734\n              },\n              {\n                \"X\": 0.2609807550907135,\n                \"Y\": 0.8332889676094055\n              },\n              {\n                \"X\": 0.23931770026683807,\n                \"Y\": 0.8332734107971191\n              }\n            ]\n          },\n          \"Id\": \"abb00017-a0e0-4e1e-b481-9195c44fdce6\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.6740951538086,\n          \"Text\": \"client\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04279230162501335,\n              \"Height\": 0.011600025929510593,\n              \"Left\": 0.26532015204429626,\n              \"Top\": 0.8219435214996338\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.26532843708992004,\n                \"Y\": 0.8219435214996338\n              },\n              {\n                \"X\": 0.3081124424934387,\n                \"Y\": 0.8219742178916931\n              },\n              {\n                \"X\": 0.3081043064594269,\n                \"Y\": 0.8335435390472412\n              },\n              {\n                \"X\": 0.26532015204429626,\n                \"Y\": 0.8335128426551819\n              }\n            ]\n          },\n          \"Id\": \"98cbd5e7-4122-4259-8023-6ca0fa69b947\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92862701416016,\n          \"Text\": \"requirements\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.10453791916370392,\n              \"Height\": 0.013993510976433754,\n              \"Left\": 0.31231796741485596,\n              \"Top\": 0.8220675587654114\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3123277425765991,\n                \"Y\": 0.8220675587654114\n              },\n              {\n                \"X\": 0.41685590147972107,\n                \"Y\": 0.8221425414085388\n              },\n              {\n                \"X\": 0.4168466031551361,\n                \"Y\": 0.8360611200332642\n              },\n              {\n                \"X\": 0.31231796741485596,\n                \"Y\": 0.8359860181808472\n              }\n            ]\n          },\n          \"Id\": \"3bf01adb-dfcf-4446-b61d-cdafdfacbfc7\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9566421508789,\n          \"Text\": \"154-164\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0712456926703453,\n              \"Height\": 0.012939110398292542,\n              \"Left\": 0.4047048091888428,\n              \"Top\": 0.9250767827033997\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4047134518623352,\n                \"Y\": 0.9250767827033997\n              },\n              {\n                \"X\": 0.4759505093097687,\n                \"Y\": 0.925128698348999\n              },\n              {\n                \"X\": 0.4759421646595001,\n                \"Y\": 0.938015878200531\n              },\n              {\n                \"X\": 0.4047048091888428,\n                \"Y\": 0.9379639029502869\n              }\n            ]\n          },\n          \"Id\": \"fb1dad8b-fb88-4b44-80ae-26bb65565bf5\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99382781982422,\n          \"Text\": \"The\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.033758435398340225,\n              \"Height\": 0.01227014884352684,\n              \"Left\": 0.4808526337146759,\n              \"Top\": 0.9254621267318726\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.48086053133010864,\n                \"Y\": 0.9254621267318726\n              },\n              {\n                \"X\": 0.5146110653877258,\n                \"Y\": 0.9254867434501648\n              },\n              {\n                \"X\": 0.514603316783905,\n                \"Y\": 0.9377322793006897\n              },\n              {\n                \"X\": 0.4808526337146759,\n                \"Y\": 0.9377076625823975\n              }\n            ]\n          },\n          \"Id\": \"9be34e13-88c3-4918-876c-a68befdf6f9f\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 94.14142608642578,\n          \"Text\": \"Embarcadero,\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12180937826633453,\n              \"Height\": 0.014279361814260483,\n              \"Left\": 0.5209535360336304,\n              \"Top\": 0.9253534078598022\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5209624767303467,\n                \"Y\": 0.9253534078598022\n              },\n              {\n                \"X\": 0.6427628993988037,\n                \"Y\": 0.9254421591758728\n              },\n              {\n                \"X\": 0.6427544951438904,\n                \"Y\": 0.939632773399353\n              },\n              {\n                \"X\": 0.5209535360336304,\n                \"Y\": 0.9395437836647034\n              }\n            ]\n          },\n          \"Id\": \"cfc87da1-d83d-4b6e-add5-80814ae61eb3\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98162841796875,\n          \"Text\": \"San\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03409044072031975,\n              \"Height\": 0.012545249424874783,\n              \"Left\": 0.654495894908905,\n              \"Top\": 0.9253990650177002\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6545032858848572,\n                \"Y\": 0.9253990650177002\n              },\n              {\n                \"X\": 0.6885863542556763,\n                \"Y\": 0.9254238605499268\n              },\n              {\n                \"X\": 0.6885791420936584,\n                \"Y\": 0.9379442930221558\n              },\n              {\n                \"X\": 0.654495894908905,\n                \"Y\": 0.9379193782806396\n              }\n            ]\n          },\n          \"Id\": \"85b734b9-89fc-40a8-a1ef-33ce72fc26cc\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 95.03530883789062,\n          \"Text\": \"Francisco,\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0889551192522049,\n              \"Height\": 0.014221670106053352,\n              \"Left\": 0.6949822902679443,\n              \"Top\": 0.925406277179718\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6949903964996338,\n                \"Y\": 0.925406277179718\n              },\n              {\n                \"X\": 0.783937394618988,\n                \"Y\": 0.9254711270332336\n              },\n              {\n                \"X\": 0.783929705619812,\n                \"Y\": 0.9396279454231262\n              },\n              {\n                \"X\": 0.6949822902679443,\n                \"Y\": 0.9395630359649658\n              }\n            ]\n          },\n          \"Id\": \"9f1e76fa-67c5-4b98-9c67-aa6d90e4cb1b\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.26129913330078,\n          \"Text\": \"CA\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02668818086385727,\n              \"Height\": 0.012047281488776207,\n              \"Left\": 0.7961723208427429,\n              \"Top\": 0.9255702495574951\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7961788177490234,\n                \"Y\": 0.9255702495574951\n              },\n              {\n                \"X\": 0.8228604793548584,\n                \"Y\": 0.9255896806716919\n              },\n              {\n                \"X\": 0.8228541016578674,\n                \"Y\": 0.9376174807548523\n              },\n              {\n                \"X\": 0.7961723208427429,\n                \"Y\": 0.9375980496406555\n              }\n            ]\n          },\n          \"Id\": \"f58028d9-ef26-4cbe-a682-2ee4228a4759\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92351531982422,\n          \"Text\": \"94105\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.054447561502456665,\n              \"Height\": 0.012242304161190987,\n              \"Left\": 0.827251136302948,\n              \"Top\": 0.9255940914154053\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8272575736045837,\n                \"Y\": 0.9255940914154053\n              },\n              {\n                \"X\": 0.8816986680030823,\n                \"Y\": 0.9256337881088257\n              },\n              {\n                \"X\": 0.8816924691200256,\n                \"Y\": 0.9378364086151123\n              },\n              {\n                \"X\": 0.827251136302948,\n                \"Y\": 0.9377966523170471\n              }\n            ]\n          },\n          \"Id\": \"8794e35b-5cc5-45e8-8638-c114174d64ab\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.72677612304688,\n          \"Text\": \"Tel:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03032725490629673,\n              \"Height\": 0.012450487352907658,\n              \"Left\": 0.3591999411582947,\n              \"Top\": 0.9457995891571045\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.35920846462249756,\n                \"Y\": 0.9457995891571045\n              },\n              {\n                \"X\": 0.38952720165252686,\n                \"Y\": 0.9458217620849609\n              },\n              {\n                \"X\": 0.3895187973976135,\n                \"Y\": 0.958250105381012\n              },\n              {\n                \"X\": 0.3591999411582947,\n                \"Y\": 0.9582278728485107\n              }\n            ]\n          },\n          \"Id\": \"6a57441f-1e85-4fa9-afec-3d8a586fc334\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.83373260498047,\n          \"Text\": \"(1)\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.023984160274267197,\n              \"Height\": 0.015178483910858631,\n              \"Left\": 0.3959326148033142,\n              \"Top\": 0.9456720352172852\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3959428071975708,\n                \"Y\": 0.9456720352172852\n              },\n              {\n                \"X\": 0.4199167788028717,\n                \"Y\": 0.9456895589828491\n              },\n              {\n                \"X\": 0.4199066758155823,\n                \"Y\": 0.9608505368232727\n              },\n              {\n                \"X\": 0.3959326148033142,\n                \"Y\": 0.960832953453064\n              }\n            ]\n          },\n          \"Id\": \"d36fe508-739a-4d28-bf77-ba0457226bb4\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.94538879394531,\n          \"Text\": \"555-123-1234\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12138938158750534,\n              \"Height\": 0.012691177427768707,\n              \"Left\": 0.42566853761672974,\n              \"Top\": 0.9459871053695679\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4256768822669983,\n                \"Y\": 0.9459871053695679\n              },\n              {\n                \"X\": 0.5470579266548157,\n                \"Y\": 0.9460758566856384\n              },\n              {\n                \"X\": 0.5470500588417053,\n                \"Y\": 0.9586783051490784\n              },\n              {\n                \"X\": 0.42566853761672974,\n                \"Y\": 0.9585893750190735\n              }\n            ]\n          },\n          \"Id\": \"174c9f79-d8cd-4b52-bef6-5298283a89d9\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8170394897461,\n          \"Text\": \"Email:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05266037583351135,\n              \"Height\": 0.012518789619207382,\n              \"Left\": 0.5587171912193298,\n              \"Top\": 0.9456765055656433\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5587248802185059,\n                \"Y\": 0.9456765055656433\n              },\n              {\n                \"X\": 0.6113775372505188,\n                \"Y\": 0.9457150101661682\n              },\n              {\n                \"X\": 0.6113700866699219,\n                \"Y\": 0.9581953287124634\n              },\n              {\n                \"X\": 0.5587171912193298,\n                \"Y\": 0.9581567645072937\n              }\n            ]\n          },\n          \"Id\": \"e9a92b04-e28c-47f7-a5f5-b5863ca2e38f\",\n          \"Page\": 1\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 97.93196105957031,\n          \"Text\": \"admin@metalegalfinance.com\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.2668634355068207,\n              \"Height\": 0.01494088675826788,\n              \"Left\": 0.6168543100357056,\n              \"Top\": 0.9456004500389099\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6168631315231323,\n                \"Y\": 0.9456004500389099\n              },\n              {\n                \"X\": 0.8837177157402039,\n                \"Y\": 0.9457955360412598\n              },\n              {\n                \"X\": 0.8837102651596069,\n                \"Y\": 0.9605413675308228\n              },\n              {\n                \"X\": 0.6168543100357056,\n                \"Y\": 0.9603458642959595\n              }\n            ]\n          },\n          \"Id\": \"87ea4181-1a97-4ad4-a784-6697268bd7f4\",\n          \"Page\": 1\n        }\n      ]\n    },\n    {\n      \"ExpenseIndex\": 2,\n      \"SummaryFields\": [\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.47731104493141174,\n                \"Height\": 0.015591159462928772,\n                \"Left\": 0.40385276079177856,\n                \"Top\": 0.924708366394043\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40385857224464417,\n                  \"Y\": 0.924708366394043\n                },\n                {\n                  \"X\": 0.8811638355255127,\n                  \"Y\": 0.9252867102622986\n                },\n                {\n                  \"X\": 0.8811596035957336,\n                  \"Y\": 0.9402995109558105\n                },\n                {\n                  \"X\": 0.40385276079177856,\n                  \"Y\": 0.9397193789482117\n                }\n              ]\n            },\n            \"Confidence\": 99.89494323730469\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"f30e99e1-6426-437a-b3e9-d5f0c338d7ee\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STREET\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero,\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.23862241208553314,\n                \"Height\": 0.014837655238807201,\n                \"Left\": 0.4038529396057129,\n                \"Top\": 0.924708366394043\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40385857224464417,\n                  \"Y\": 0.924708366394043\n                },\n                {\n                  \"X\": 0.6424753665924072,\n                  \"Y\": 0.9249975085258484\n                },\n                {\n                  \"X\": 0.6424705386161804,\n                  \"Y\": 0.9395460486412048\n                },\n                {\n                  \"X\": 0.4038529396057129,\n                  \"Y\": 0.9392560124397278\n                }\n              ]\n            },\n            \"Confidence\": 99.99285888671875\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"f30e99e1-6426-437a-b3e9-d5f0c338d7ee\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"CITY\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"San Francisco,\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.12939459085464478,\n                \"Height\": 0.014608833938837051,\n                \"Left\": 0.6540799736976624,\n                \"Top\": 0.9250115752220154\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6540847420692444,\n                  \"Y\": 0.9250115752220154\n                },\n                {\n                  \"X\": 0.7834745645523071,\n                  \"Y\": 0.9251683354377747\n                },\n                {\n                  \"X\": 0.7834701538085938,\n                  \"Y\": 0.9396203756332397\n                },\n                {\n                  \"X\": 0.6540799736976624,\n                  \"Y\": 0.9394631385803223\n                }\n              ]\n            },\n            \"Confidence\": 99.99420928955078\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"f30e99e1-6426-437a-b3e9-d5f0c338d7ee\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"STATE\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"CA\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.02730408124625683,\n                \"Height\": 0.012328277342021465,\n                \"Left\": 0.7952229380607605,\n                \"Top\": 0.925182580947876\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7952266335487366,\n                  \"Y\": 0.925182580947876\n                },\n                {\n                  \"X\": 0.8225269913673401,\n                  \"Y\": 0.9252156615257263\n                },\n                {\n                  \"X\": 0.8225234150886536,\n                  \"Y\": 0.9375108480453491\n                },\n                {\n                  \"X\": 0.7952229380607605,\n                  \"Y\": 0.9374776482582092\n                }\n              ]\n            },\n            \"Confidence\": 99.40957641601562\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"f30e99e1-6426-437a-b3e9-d5f0c338d7ee\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ZIP_CODE\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05490832030773163,\n                \"Height\": 0.012490794062614441,\n                \"Left\": 0.8262555003166199,\n                \"Top\": 0.9252201914787292\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8262591361999512,\n                  \"Y\": 0.9252201914787292\n                },\n                {\n                  \"X\": 0.8811638355255127,\n                  \"Y\": 0.9252867102622986\n                },\n                {\n                  \"X\": 0.881160318851471,\n                  \"Y\": 0.9377109408378601\n                },\n                {\n                  \"X\": 0.8262555003166199,\n                  \"Y\": 0.9376442432403564\n                }\n              ]\n            },\n            \"Confidence\": 99.89138793945312\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"f30e99e1-6426-437a-b3e9-d5f0c338d7ee\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"ADDRESS_BLOCK\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.4773108661174774,\n                \"Height\": 0.01512775756418705,\n                \"Left\": 0.4038529396057129,\n                \"Top\": 0.924708366394043\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40385857224464417,\n                  \"Y\": 0.924708366394043\n                },\n                {\n                  \"X\": 0.8811638355255127,\n                  \"Y\": 0.9252867102622986\n                },\n                {\n                  \"X\": 0.8811597228050232,\n                  \"Y\": 0.9398361444473267\n                },\n                {\n                  \"X\": 0.4038529396057129,\n                  \"Y\": 0.9392560124397278\n                }\n              ]\n            },\n            \"Confidence\": 99.8951187133789\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"f30e99e1-6426-437a-b3e9-d5f0c338d7ee\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"NAME\",\n            \"Confidence\": 83.04756164550781\n          },\n          \"ValueDetection\": {\n            \"Text\": \"META\\n-\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.21098507940769196,\n                \"Height\": 0.029922278597950935,\n                \"Left\": 0.11531416326761246,\n                \"Top\": 0.12173674255609512\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11532751470804214,\n                  \"Y\": 0.12173674255609512\n                },\n                {\n                  \"X\": 0.326299250125885,\n                  \"Y\": 0.12194867432117462\n                },\n                {\n                  \"X\": 0.32628726959228516,\n                  \"Y\": 0.1516590267419815\n                },\n                {\n                  \"X\": 0.11531416326761246,\n                  \"Y\": 0.15144546329975128\n                }\n              ]\n            },\n            \"Confidence\": 72.02928924560547\n          },\n          \"PageNumber\": 2,\n          \"GroupProperties\": [\n            {\n              \"Types\": [\n                \"VENDOR\"\n              ],\n              \"Id\": \"2212cbb5-decb-45aa-a803-c5c27302cd53\"\n            }\n          ]\n        },\n        {\n          \"Type\": {\n            \"Text\": \"DUE_DATE\",\n            \"Confidence\": 97.55121612548828\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Payment Due By:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.11474771797657013,\n                \"Height\": 0.01229471992701292,\n                \"Left\": 0.3654220402240753,\n                \"Top\": 0.6191478967666626\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.36542683839797974,\n                  \"Y\": 0.6191478967666626\n                },\n                {\n                  \"X\": 0.48016974329948425,\n                  \"Y\": 0.619277834892273\n                },\n                {\n                  \"X\": 0.4801652729511261,\n                  \"Y\": 0.6314426064491272\n                },\n                {\n                  \"X\": 0.3654220402240753,\n                  \"Y\": 0.6313122510910034\n                }\n              ]\n            },\n            \"Confidence\": 97.53668212890625\n          },\n          \"ValueDetection\": {\n            \"Text\": \"Thursday, 26 March 2020\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.16737298667430878,\n                \"Height\": 0.012581068091094494,\n                \"Left\": 0.4869585335254669,\n                \"Top\": 0.6190444827079773\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.48696309328079224,\n                  \"Y\": 0.6190444827079773\n                },\n                {\n                  \"X\": 0.6543315052986145,\n                  \"Y\": 0.619234025478363\n                },\n                {\n                  \"X\": 0.654327392578125,\n                  \"Y\": 0.6316255331039429\n                },\n                {\n                  \"X\": 0.4869585335254669,\n                  \"Y\": 0.6314353942871094\n                }\n              ]\n            },\n            \"Confidence\": 97.55306243896484\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"INVOICE_RECEIPT_DATE\",\n            \"Confidence\": 99.9967041015625\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Invoice Date:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.12067784368991852,\n                \"Height\": 0.012906893156468868,\n                \"Left\": 0.6029326319694519,\n                \"Top\": 0.13418669998645782\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6029370427131653,\n                  \"Y\": 0.13418669998645782\n                },\n                {\n                  \"X\": 0.723610520362854,\n                  \"Y\": 0.13430829346179962\n                },\n                {\n                  \"X\": 0.7236064672470093,\n                  \"Y\": 0.14709359407424927\n                },\n                {\n                  \"X\": 0.6029326319694519,\n                  \"Y\": 0.14697159826755524\n                }\n              ]\n            },\n            \"Confidence\": 99.99530029296875\n          },\n          \"ValueDetection\": {\n            \"Text\": \"12 March 2020\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.1297394037246704,\n                \"Height\": 0.012715782038867474,\n                \"Left\": 0.7891069650650024,\n                \"Top\": 0.13432849943637848\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.7891107201576233,\n                  \"Y\": 0.13432849943637848\n                },\n                {\n                  \"X\": 0.9188463687896729,\n                  \"Y\": 0.1344592273235321\n                },\n                {\n                  \"X\": 0.9188429117202759,\n                  \"Y\": 0.14704428613185883\n                },\n                {\n                  \"X\": 0.7891069650650024,\n                  \"Y\": 0.14691314101219177\n                }\n              ]\n            },\n            \"Confidence\": 99.97051239013672\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"INVOICE_RECEIPT_ID\",\n            \"Confidence\": 99.99066162109375\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Invoice No:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.10433614253997803,\n                \"Height\": 0.012852628715336323,\n                \"Left\": 0.6190892457962036,\n                \"Top\": 0.11653067171573639\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6190935373306274,\n                  \"Y\": 0.11653067171573639\n                },\n                {\n                  \"X\": 0.7234253883361816,\n                  \"Y\": 0.11663532257080078\n                },\n                {\n                  \"X\": 0.7234213948249817,\n                  \"Y\": 0.12938329577445984\n                },\n                {\n                  \"X\": 0.6190892457962036,\n                  \"Y\": 0.129278302192688\n                }\n              ]\n            },\n            \"Confidence\": 99.98758697509766\n          },\n          \"ValueDetection\": {\n            \"Text\": \"00000135\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.0877908319234848,\n                \"Height\": 0.012525677680969238,\n                \"Left\": 0.8312494158744812,\n                \"Top\": 0.11682751029729843\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8312530517578125,\n                  \"Y\": 0.11682751029729843\n                },\n                {\n                  \"X\": 0.9190402626991272,\n                  \"Y\": 0.11691556870937347\n                },\n                {\n                  \"X\": 0.919036865234375,\n                  \"Y\": 0.12935318052768707\n                },\n                {\n                  \"X\": 0.8312494158744812,\n                  \"Y\": 0.12926484644412994\n                }\n              ]\n            },\n            \"Confidence\": 99.9875259399414\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"PO_NUMBER\",\n            \"Confidence\": 99.97358703613281\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Purchase Order:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.1523059457540512,\n                \"Height\": 0.013245180249214172,\n                \"Left\": 0.5712507963180542,\n                \"Top\": 0.15114465355873108\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.5712553858757019,\n                  \"Y\": 0.15114465355873108\n                },\n                {\n                  \"X\": 0.7235567569732666,\n                  \"Y\": 0.15129879117012024\n                },\n                {\n                  \"X\": 0.7235526442527771,\n                  \"Y\": 0.16438983380794525\n                },\n                {\n                  \"X\": 0.5712507963180542,\n                  \"Y\": 0.1642351895570755\n                }\n              ]\n            },\n            \"Confidence\": 99.97161865234375\n          },\n          \"ValueDetection\": {\n            \"Text\": \"F0016\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.055136650800704956,\n                \"Height\": 0.012973587960004807,\n                \"Left\": 0.8637326955795288,\n                \"Top\": 0.15132877230644226\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8637363910675049,\n                  \"Y\": 0.15132877230644226\n                },\n                {\n                  \"X\": 0.9188693761825562,\n                  \"Y\": 0.15138456225395203\n                },\n                {\n                  \"X\": 0.9188657999038696,\n                  \"Y\": 0.16430236399173737\n                },\n                {\n                  \"X\": 0.8637326955795288,\n                  \"Y\": 0.16424638032913208\n                }\n              ]\n            },\n            \"Confidence\": 99.97154235839844\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"PAYMENT_TERMS\",\n            \"Confidence\": 99.23876953125\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Payment Terms:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.10585100203752518,\n                \"Height\": 0.012270401231944561,\n                \"Left\": 0.4287773072719574,\n                \"Top\": 0.5963796377182007\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.4287819266319275,\n                  \"Y\": 0.5963796377182007\n                },\n                {\n                  \"X\": 0.5346283316612244,\n                  \"Y\": 0.5964989066123962\n                },\n                {\n                  \"X\": 0.5346239805221558,\n                  \"Y\": 0.6086500287055969\n                },\n                {\n                  \"X\": 0.4287773072719574,\n                  \"Y\": 0.6085304617881775\n                }\n              ]\n            },\n            \"Confidence\": 99.2369155883789\n          },\n          \"ValueDetection\": {\n            \"Text\": \"14 days\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05110791698098183,\n                \"Height\": 0.012317639775574207,\n                \"Left\": 0.5394554138183594,\n                \"Top\": 0.5963326096534729\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.539459764957428,\n                  \"Y\": 0.5963326096534729\n                },\n                {\n                  \"X\": 0.5905632972717285,\n                  \"Y\": 0.5963901877403259\n                },\n                {\n                  \"X\": 0.5905590653419495,\n                  \"Y\": 0.6086502075195312\n                },\n                {\n                  \"X\": 0.5394554138183594,\n                  \"Y\": 0.6085924506187439\n                }\n              ]\n            },\n            \"Confidence\": 99.2193374633789\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"TOTAL\",\n            \"Confidence\": 99.99994659423828\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Total:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05081896111369133,\n                \"Height\": 0.01282317005097866,\n                \"Left\": 0.6223077774047852,\n                \"Top\": 0.555309534072876\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.622312068939209,\n                  \"Y\": 0.555309534072876\n                },\n                {\n                  \"X\": 0.673126757144928,\n                  \"Y\": 0.5553662776947021\n                },\n                {\n                  \"X\": 0.6731225848197937,\n                  \"Y\": 0.5681326985359192\n                },\n                {\n                  \"X\": 0.6223077774047852,\n                  \"Y\": 0.5680758357048035\n                }\n              ]\n            },\n            \"Confidence\": 99.99469757080078\n          },\n          \"ValueDetection\": {\n            \"Text\": \"$5,715.00\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.0799158364534378,\n                \"Height\": 0.014054176397621632,\n                \"Left\": 0.8144210577011108,\n                \"Top\": 0.5554145574569702\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.8144252300262451,\n                  \"Y\": 0.5554145574569702\n                },\n                {\n                  \"X\": 0.8943369388580322,\n                  \"Y\": 0.555503785610199\n                },\n                {\n                  \"X\": 0.894333004951477,\n                  \"Y\": 0.5694687366485596\n                },\n                {\n                  \"X\": 0.8144210577011108,\n                  \"Y\": 0.5693792700767517\n                }\n              ]\n            },\n            \"Confidence\": 99.99443817138672\n          },\n          \"PageNumber\": 2,\n          \"Currency\": {\n            \"Code\": \"USD\"\n          }\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VENDOR_ADDRESS\",\n            \"Confidence\": 99.99949645996094\n          },\n          \"ValueDetection\": {\n            \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.47731104493141174,\n                \"Height\": 0.015591159462928772,\n                \"Left\": 0.40385276079177856,\n                \"Top\": 0.924708366394043\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.40385857224464417,\n                  \"Y\": 0.924708366394043\n                },\n                {\n                  \"X\": 0.8811638355255127,\n                  \"Y\": 0.9252867102622986\n                },\n                {\n                  \"X\": 0.8811596035957336,\n                  \"Y\": 0.9402995109558105\n                },\n                {\n                  \"X\": 0.40385276079177856,\n                  \"Y\": 0.9397193789482117\n                }\n              ]\n            },\n            \"Confidence\": 99.89494323730469\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VENDOR_NAME\",\n            \"Confidence\": 83.04756164550781\n          },\n          \"ValueDetection\": {\n            \"Text\": \"META\\n-\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.21098507940769196,\n                \"Height\": 0.029922278597950935,\n                \"Left\": 0.11531416326761246,\n                \"Top\": 0.12173674255609512\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.11532751470804214,\n                  \"Y\": 0.12173674255609512\n                },\n                {\n                  \"X\": 0.326299250125885,\n                  \"Y\": 0.12194867432117462\n                },\n                {\n                  \"X\": 0.32628726959228516,\n                  \"Y\": 0.1516590267419815\n                },\n                {\n                  \"X\": 0.11531416326761246,\n                  \"Y\": 0.15144546329975128\n                }\n              ]\n            },\n            \"Confidence\": 72.02928924560547\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"VENDOR_PHONE\",\n            \"Confidence\": 99.78143310546875\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Tel:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.03069857880473137,\n                \"Height\": 0.012974386103451252,\n                \"Left\": 0.35878679156303406,\n                \"Top\": 0.9451965689659119\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.35879191756248474,\n                  \"Y\": 0.9451965689659119\n                },\n                {\n                  \"X\": 0.3894853889942169,\n                  \"Y\": 0.945233941078186\n                },\n                {\n                  \"X\": 0.3894803524017334,\n                  \"Y\": 0.9581709504127502\n                },\n                {\n                  \"X\": 0.35878679156303406,\n                  \"Y\": 0.9581335186958313\n                }\n              ]\n            },\n            \"Confidence\": 99.7760009765625\n          },\n          \"ValueDetection\": {\n            \"Text\": \"(1) 555-123-1234\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.15166957676410675,\n                \"Height\": 0.016124999150633812,\n                \"Left\": 0.3951610028743744,\n                \"Top\": 0.9449460506439209\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.39516717195510864,\n                  \"Y\": 0.9449460506439209\n                },\n                {\n                  \"X\": 0.5468305945396423,\n                  \"Y\": 0.9451305866241455\n                },\n                {\n                  \"X\": 0.5468249320983887,\n                  \"Y\": 0.9610710740089417\n                },\n                {\n                  \"X\": 0.3951610028743744,\n                  \"Y\": 0.9608858823776245\n                }\n              ]\n            },\n            \"Confidence\": 99.50308227539062\n          },\n          \"PageNumber\": 2\n        },\n        {\n          \"Type\": {\n            \"Text\": \"OTHER\",\n            \"Confidence\": 99.98799133300781\n          },\n          \"LabelDetection\": {\n            \"Text\": \"Email:\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.05308467149734497,\n                \"Height\": 0.012921862304210663,\n                \"Left\": 0.5581963062286377,\n                \"Top\": 0.9452351927757263\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.5582008361816406,\n                  \"Y\": 0.9452351927757263\n                },\n                {\n                  \"X\": 0.6112809777259827,\n                  \"Y\": 0.9452998042106628\n                },\n                {\n                  \"X\": 0.6112766265869141,\n                  \"Y\": 0.9581570625305176\n                },\n                {\n                  \"X\": 0.5581963062286377,\n                  \"Y\": 0.9580922722816467\n                }\n              ]\n            },\n            \"Confidence\": 99.98399353027344\n          },\n          \"ValueDetection\": {\n            \"Text\": \"admin@metalegalfinance.com\",\n            \"Geometry\": {\n              \"BoundingBox\": {\n                \"Width\": 0.26577430963516235,\n                \"Height\": 0.015891434624791145,\n                \"Left\": 0.6170353889465332,\n                \"Top\": 0.9450221061706543\n              },\n              \"Polygon\": [\n                {\n                  \"X\": 0.6170406341552734,\n                  \"Y\": 0.9450221061706543\n                },\n                {\n                  \"X\": 0.8828096389770508,\n                  \"Y\": 0.9453455209732056\n                },\n                {\n                  \"X\": 0.8828052878379822,\n                  \"Y\": 0.9609135389328003\n                },\n                {\n                  \"X\": 0.6170353889465332,\n                  \"Y\": 0.9605891108512878\n                }\n              ]\n            },\n            \"Confidence\": 99.97858428955078\n          },\n          \"PageNumber\": 2\n        }\n      ],\n      \"LineItemGroups\": [\n        {\n          \"LineItemGroupIndex\": 1,\n          \"LineItems\": [\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.0326448492705822,\n                        \"Height\": 0.015670139342546463,\n                        \"Left\": 0.15485623478889465,\n                        \"Top\": 0.22190509736537933\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1548631191253662,\n                          \"Y\": 0.22190509736537933\n                        },\n                        {\n                          \"X\": 0.18750108778476715,\n                          \"Y\": 0.22193871438503265\n                        },\n                        {\n                          \"X\": 0.18749430775642395,\n                          \"Y\": 0.2375752329826355\n                        },\n                        {\n                          \"X\": 0.15485623478889465,\n                          \"Y\": 0.23754146695137024\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99881744384766\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"2\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.017908509820699692,\n                        \"Height\": 0.011899321340024471,\n                        \"Left\": 0.161594420671463,\n                        \"Top\": 0.2705061137676239\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.16159963607788086,\n                          \"Y\": 0.2705061137676239\n                        },\n                        {\n                          \"X\": 0.1795029193162918,\n                          \"Y\": 0.2705247700214386\n                        },\n                        {\n                          \"X\": 0.17949774861335754,\n                          \"Y\": 0.28240543603897095\n                        },\n                        {\n                          \"X\": 0.161594420671463,\n                          \"Y\": 0.2823866903781891\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.9685287475586\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03947500139474869,\n                        \"Height\": 0.012383867055177689,\n                        \"Left\": 0.2399406135082245,\n                        \"Top\": 0.22199757397174835\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23994582891464233,\n                          \"Y\": 0.22199757397174835\n                        },\n                        {\n                          \"X\": 0.27941563725471497,\n                          \"Y\": 0.22203823924064636\n                        },\n                        {\n                          \"X\": 0.2794105112552643,\n                          \"Y\": 0.23438143730163574\n                        },\n                        {\n                          \"X\": 0.2399406135082245,\n                          \"Y\": 0.234340637922287\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9989242553711\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP101I System Imports\\nHours spent importing customer records into Premier\\nVersion\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.42267045378685,\n                        \"Height\": 0.04900055006146431,\n                        \"Left\": 0.238670215010643,\n                        \"Top\": 0.270522803068161\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23869071900844574,\n                          \"Y\": 0.270522803068161\n                        },\n                        {\n                          \"X\": 0.6613406538963318,\n                          \"Y\": 0.270963579416275\n                        },\n                        {\n                          \"X\": 0.661324679851532,\n                          \"Y\": 0.31952333450317383\n                        },\n                        {\n                          \"X\": 0.238670215010643,\n                          \"Y\": 0.3190772533416748\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98906707763672\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07555849850177765,\n                        \"Height\": 0.01248389482498169,\n                        \"Left\": 0.8195800185203552,\n                        \"Top\": 0.2220223993062973\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8195836544036865,\n                          \"Y\": 0.2220223993062973\n                        },\n                        {\n                          \"X\": 0.8951385021209717,\n                          \"Y\": 0.22210024297237396\n                        },\n                        {\n                          \"X\": 0.8951350450515747,\n                          \"Y\": 0.234506294131279\n                        },\n                        {\n                          \"X\": 0.8195800185203552,\n                          \"Y\": 0.23442822694778442\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99642181396484\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$220.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.06492743641138077,\n                        \"Height\": 0.013865170069038868,\n                        \"Left\": 0.8294500112533569,\n                        \"Top\": 0.2698284089565277\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8294540047645569,\n                          \"Y\": 0.2698284089565277\n                        },\n                        {\n                          \"X\": 0.8943774104118347,\n                          \"Y\": 0.26989609003067017\n                        },\n                        {\n                          \"X\": 0.8943735957145691,\n                          \"Y\": 0.2836935818195343\n                        },\n                        {\n                          \"X\": 0.8294500112533569,\n                          \"Y\": 0.28362566232681274\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99897766113281\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"2 ACP101I System Imports $220.00\\nHours spent importing customer records into Premier\\nVersion\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.732973575592041,\n                        \"Height\": 0.0506373755633831,\n                        \"Left\": 0.16157834231853485,\n                        \"Top\": 0.2691321074962616\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1616002321243286,\n                          \"Y\": 0.2691321074962616\n                        },\n                        {\n                          \"X\": 0.8945519328117371,\n                          \"Y\": 0.2698962688446045\n                        },\n                        {\n                          \"X\": 0.8945380449295044,\n                          \"Y\": 0.3197695016860962\n                        },\n                        {\n                          \"X\": 0.16157834231853485,\n                          \"Y\": 0.3189958930015564\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.98765563964844\n                  },\n                  \"PageNumber\": 2\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.0326448492705822,\n                        \"Height\": 0.015670139342546463,\n                        \"Left\": 0.15485623478889465,\n                        \"Top\": 0.22190509736537933\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1548631191253662,\n                          \"Y\": 0.22190509736537933\n                        },\n                        {\n                          \"X\": 0.18750108778476715,\n                          \"Y\": 0.22193871438503265\n                        },\n                        {\n                          \"X\": 0.18749430775642395,\n                          \"Y\": 0.2375752329826355\n                        },\n                        {\n                          \"X\": 0.15485623478889465,\n                          \"Y\": 0.23754146695137024\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99881744384766\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"3\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.01641463302075863,\n                        \"Height\": 0.011678988113999367,\n                        \"Left\": 0.16223947703838348,\n                        \"Top\": 0.361622154712677\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.16224458813667297,\n                          \"Y\": 0.361622154712677\n                        },\n                        {\n                          \"X\": 0.17865410447120667,\n                          \"Y\": 0.3616396486759186\n                        },\n                        {\n                          \"X\": 0.17864902317523956,\n                          \"Y\": 0.37330111861228943\n                        },\n                        {\n                          \"X\": 0.16223947703838348,\n                          \"Y\": 0.37328359484672546\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.95164489746094\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03947500139474869,\n                        \"Height\": 0.012383867055177689,\n                        \"Left\": 0.2399406135082245,\n                        \"Top\": 0.22199757397174835\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23994582891464233,\n                          \"Y\": 0.22199757397174835\n                        },\n                        {\n                          \"X\": 0.27941563725471497,\n                          \"Y\": 0.22203823924064636\n                        },\n                        {\n                          \"X\": 0.2794105112552643,\n                          \"Y\": 0.23438143730163574\n                        },\n                        {\n                          \"X\": 0.2399406135082245,\n                          \"Y\": 0.234340637922287\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9989242553711\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP100 Accounting Package\\nAnnual Subscription to Standard Version of Accounts\\nSystem\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.4215278625488281,\n                        \"Height\": 0.052267346531152725,\n                        \"Left\": 0.23841166496276855,\n                        \"Top\": 0.36126789450645447\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23843353986740112,\n                          \"Y\": 0.36126789450645447\n                        },\n                        {\n                          \"X\": 0.6599395275115967,\n                          \"Y\": 0.3617173433303833\n                        },\n                        {\n                          \"X\": 0.6599224209785461,\n                          \"Y\": 0.4135352373123169\n                        },\n                        {\n                          \"X\": 0.23841166496276855,\n                          \"Y\": 0.4130801260471344\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99455261230469\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07555849850177765,\n                        \"Height\": 0.01248389482498169,\n                        \"Left\": 0.8195800185203552,\n                        \"Top\": 0.2220223993062973\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8195836544036865,\n                          \"Y\": 0.2220223993062973\n                        },\n                        {\n                          \"X\": 0.8951385021209717,\n                          \"Y\": 0.22210024297237396\n                        },\n                        {\n                          \"X\": 0.8951350450515747,\n                          \"Y\": 0.234506294131279\n                        },\n                        {\n                          \"X\": 0.8195800185203552,\n                          \"Y\": 0.23442822694778442\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99642181396484\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$900.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.06493724882602692,\n                        \"Height\": 0.014055410400032997,\n                        \"Left\": 0.8294233083724976,\n                        \"Top\": 0.36089393496513367\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8294273614883423,\n                          \"Y\": 0.36089393496513367\n                        },\n                        {\n                          \"X\": 0.8943605422973633,\n                          \"Y\": 0.3609631657600403\n                        },\n                        {\n                          \"X\": 0.8943566679954529,\n                          \"Y\": 0.3749493658542633\n                        },\n                        {\n                          \"X\": 0.8294233083724976,\n                          \"Y\": 0.3748798966407776\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99949645996094\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"3 ACP100 Accounting Package $900.00\\nAnnual Subscription to Standard Version of Accounts\\nSystem\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7321385145187378,\n                        \"Height\": 0.05360565334558487,\n                        \"Left\": 0.16222204267978668,\n                        \"Top\": 0.3601827025413513\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1622452288866043,\n                          \"Y\": 0.3601827025413513\n                        },\n                        {\n                          \"X\": 0.8943605422973633,\n                          \"Y\": 0.3609631657600403\n                        },\n                        {\n                          \"X\": 0.8943458199501038,\n                          \"Y\": 0.4137883484363556\n                        },\n                        {\n                          \"X\": 0.16222204267978668,\n                          \"Y\": 0.41299787163734436\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99166870117188\n                  },\n                  \"PageNumber\": 2\n                }\n              ]\n            },\n            {\n              \"LineItemExpenseFields\": [\n                {\n                  \"Type\": {\n                    \"Text\": \"QUANTITY\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Qty\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.0326448492705822,\n                        \"Height\": 0.015670139342546463,\n                        \"Left\": 0.15485623478889465,\n                        \"Top\": 0.22190509736537933\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.1548631191253662,\n                          \"Y\": 0.22190509736537933\n                        },\n                        {\n                          \"X\": 0.18750108778476715,\n                          \"Y\": 0.22193871438503265\n                        },\n                        {\n                          \"X\": 0.18749430775642395,\n                          \"Y\": 0.2375752329826355\n                        },\n                        {\n                          \"X\": 0.15485623478889465,\n                          \"Y\": 0.23754146695137024\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99881744384766\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"4.5\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.033454205840826035,\n                        \"Height\": 0.011873765848577023,\n                        \"Left\": 0.15348424017429352,\n                        \"Top\": 0.4527316391468048\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15348945558071136,\n                          \"Y\": 0.4527316391468048\n                        },\n                        {\n                          \"X\": 0.18693844974040985,\n                          \"Y\": 0.45276811718940735\n                        },\n                        {\n                          \"X\": 0.18693330883979797,\n                          \"Y\": 0.4646054208278656\n                        },\n                        {\n                          \"X\": 0.15348424017429352,\n                          \"Y\": 0.4645688533782959\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.9897689819336\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"ITEM\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Item\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.03947500139474869,\n                        \"Height\": 0.012383867055177689,\n                        \"Left\": 0.2399406135082245,\n                        \"Top\": 0.22199757397174835\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23994582891464233,\n                          \"Y\": 0.22199757397174835\n                        },\n                        {\n                          \"X\": 0.27941563725471497,\n                          \"Y\": 0.22203823924064636\n                        },\n                        {\n                          \"X\": 0.2794105112552643,\n                          \"Y\": 0.23438143730163574\n                        },\n                        {\n                          \"X\": 0.2399406135082245,\n                          \"Y\": 0.234340637922287\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.9989242553711\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"ACP100T Online Training\\nHours of Training in Standard Version Interactive\\n-\\nDemos with Q&A Sessions\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.39885854721069336,\n                        \"Height\": 0.04915529116988182,\n                        \"Left\": 0.23790499567985535,\n                        \"Top\": 0.45254868268966675\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.23792557418346405,\n                          \"Y\": 0.45254868268966675\n                        },\n                        {\n                          \"X\": 0.6367635130882263,\n                          \"Y\": 0.4529833495616913\n                        },\n                        {\n                          \"X\": 0.6367472410202026,\n                          \"Y\": 0.5017039775848389\n                        },\n                        {\n                          \"X\": 0.23790499567985535,\n                          \"Y\": 0.5012642741203308\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.34391784667969\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"PRICE\",\n                    \"Confidence\": 70\n                  },\n                  \"LabelDetection\": {\n                    \"Text\": \"Amount\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.07555849850177765,\n                        \"Height\": 0.01248389482498169,\n                        \"Left\": 0.8195800185203552,\n                        \"Top\": 0.2220223993062973\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8195836544036865,\n                          \"Y\": 0.2220223993062973\n                        },\n                        {\n                          \"X\": 0.8951385021209717,\n                          \"Y\": 0.22210024297237396\n                        },\n                        {\n                          \"X\": 0.8951350450515747,\n                          \"Y\": 0.234506294131279\n                        },\n                        {\n                          \"X\": 0.8195800185203552,\n                          \"Y\": 0.23442822694778442\n                        }\n                      ]\n                    },\n                    \"Confidence\": 79.99642181396484\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"$495.00\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.06503520905971527,\n                        \"Height\": 0.013720866292715073,\n                        \"Left\": 0.829396665096283,\n                        \"Top\": 0.45229899883270264\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.8294006586074829,\n                          \"Y\": 0.45229899883270264\n                        },\n                        {\n                          \"X\": 0.8944318890571594,\n                          \"Y\": 0.4523698687553406\n                        },\n                        {\n                          \"X\": 0.8944280743598938,\n                          \"Y\": 0.466019868850708\n                        },\n                        {\n                          \"X\": 0.829396665096283,\n                          \"Y\": 0.46594879031181335\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.99887084960938\n                  },\n                  \"PageNumber\": 2\n                },\n                {\n                  \"Type\": {\n                    \"Text\": \"EXPENSE_ROW\",\n                    \"Confidence\": 70\n                  },\n                  \"ValueDetection\": {\n                    \"Text\": \"4.5 ACP100T Online Training $495.00\\nHours of Training in Standard Version Interactive\\n-\\nDemos with Q&A Sessions\",\n                    \"Geometry\": {\n                      \"BoundingBox\": {\n                        \"Width\": 0.7409637570381165,\n                        \"Height\": 0.05042553320527077,\n                        \"Left\": 0.15346810221672058,\n                        \"Top\": 0.4515624940395355\n                      },\n                      \"Polygon\": [\n                        {\n                          \"X\": 0.15348997712135315,\n                          \"Y\": 0.4515624940395355\n                        },\n                        {\n                          \"X\": 0.8944318890571594,\n                          \"Y\": 0.4523698687553406\n                        },\n                        {\n                          \"X\": 0.8944180607795715,\n                          \"Y\": 0.5019880533218384\n                        },\n                        {\n                          \"X\": 0.15346810221672058,\n                          \"Y\": 0.5011711716651917\n                        }\n                      ]\n                    },\n                    \"Confidence\": 99.4202880859375\n                  },\n                  \"PageNumber\": 2\n                }\n              ]\n            }\n          ]\n        }\n      ],\n      \"Blocks\": [\n        {\n          \"BlockType\": \"PAGE\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 1,\n              \"Height\": 1,\n              \"Left\": 0,\n              \"Top\": 0\n            },\n            \"Polygon\": [\n              {\n                \"X\": 5.146495141161722e-7,\n                \"Y\": 0\n              },\n              {\n                \"X\": 1,\n                \"Y\": 5.38740039246477e-7\n              },\n              {\n                \"X\": 1,\n                \"Y\": 1\n              },\n              {\n                \"X\": 0,\n                \"Y\": 1\n              }\n            ]\n          },\n          \"Id\": \"768d8dc1-b48c-4815-b0f4-ce00ec86f7ea\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"e33519bf-b7f6-40d1-96de-25fa9a42bd33\",\n                \"2aab4857-947c-46c8-91c3-317a49ac8368\",\n                \"162d5694-5d45-4bcc-9496-b4ba8889fd48\",\n                \"d32d2d45-8282-41bc-840b-c365c6c555cf\",\n                \"c60cfe4b-ab64-4137-8d11-fb489df39757\",\n                \"d1862163-5722-4bb6-81af-15928d6128e8\",\n                \"6addfdbc-1f88-4f64-9a92-cdc6fc183747\",\n                \"ce8f39e0-6628-41f7-ba76-65fddd56bbf5\",\n                \"a1877fe5-1bc1-45fa-a243-8e89563d5708\",\n                \"549d843c-ac3e-4401-b774-8600062f45fa\",\n                \"614abeee-aeca-4f26-a922-e4c61eb95976\",\n                \"3b5b6a63-a46d-41a9-a529-d0d99968204c\",\n                \"77af71c7-1812-4d33-8e9d-0f82efd0e91d\",\n                \"4b126fe8-1ec3-4916-85a1-c6a6e57745d8\",\n                \"85156451-39e7-4bb6-90bf-18cf46e31ec9\",\n                \"eb90360f-b259-4647-b555-52d324955d43\",\n                \"84e6d2f1-82b3-49d3-b177-3fe5e1a5ff0d\",\n                \"ad2fcab4-e950-4876-a0c0-a67ef8cfd92d\",\n                \"ce0cd7ef-6d95-43e4-ba41-3660e3b94e47\",\n                \"96f838ed-0101-4925-8abc-d2c6322b6279\",\n                \"30732e47-2b2c-4904-9555-ede2bb271cd4\",\n                \"71814a29-4c94-43ec-8c27-4c53f215ed44\",\n                \"6caa302b-50a4-4900-8ef2-3fa692053a11\",\n                \"46876955-05db-4578-a1d0-4b1a492bc728\",\n                \"b105d524-f9ad-4206-9725-110c96278be5\",\n                \"8b7befcf-37bd-49f1-a538-9559ce0209ac\",\n                \"f23b2f91-2c9c-4100-903f-35303971220a\",\n                \"b98e9b1b-0727-4688-979b-1012d22631cd\",\n                \"39316636-081f-43b1-8722-74db502b7aec\",\n                \"b00c35a3-1fc8-486a-a980-589b74b62ad4\",\n                \"2ff6a8de-c157-4445-9692-a275b5a64337\",\n                \"3d2f443b-c8db-4e7b-b163-49223234b6da\",\n                \"0a77332e-893c-40af-ab12-90fa90066a95\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.87846374511719,\n          \"Text\": \"INVOICE\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1985362023115158,\n              \"Height\": 0.029558880254626274,\n              \"Left\": 0.7193580269813538,\n              \"Top\": 0.042854975908994675\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7193673253059387,\n                \"Y\": 0.042854975908994675\n              },\n              {\n                \"X\": 0.917894184589386,\n                \"Y\": 0.043050333857536316\n              },\n              {\n                \"X\": 0.9178861975669861,\n                \"Y\": 0.0724138543009758\n              },\n              {\n                \"X\": 0.7193580269813538,\n                \"Y\": 0.07221698760986328\n              }\n            ]\n          },\n          \"Id\": \"e33519bf-b7f6-40d1-96de-25fa9a42bd33\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"cf9cbaf8-c086-41e8-b350-5de2edda366c\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.85514068603516,\n          \"Text\": \"Invoice No:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.10430268198251724,\n              \"Height\": 0.012162992730736732,\n              \"Left\": 0.6191225051879883,\n              \"Top\": 0.11722031235694885\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.619126558303833,\n                \"Y\": 0.11722031235694885\n              },\n              {\n                \"X\": 0.7234251499176025,\n                \"Y\": 0.11732494831085205\n              },\n              {\n                \"X\": 0.7234213948249817,\n                \"Y\": 0.12938329577445984\n              },\n              {\n                \"X\": 0.6191225051879883,\n                \"Y\": 0.12927833199501038\n              }\n            ]\n          },\n          \"Id\": \"2aab4857-947c-46c8-91c3-317a49ac8368\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"3d4d6ef1-47c1-4c39-968a-7db79a3a7ac9\",\n                \"5a9aaf57-eb42-4b60-b39c-4634323deeea\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.88139343261719,\n          \"Text\": \"00000135\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08689989894628525,\n              \"Height\": 0.012003323994576931,\n              \"Left\": 0.831807553768158,\n              \"Top\": 0.1173495277762413\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8318110108375549,\n                \"Y\": 0.1173495277762413\n              },\n              {\n                \"X\": 0.9187074303627014,\n                \"Y\": 0.11743670701980591\n              },\n              {\n                \"X\": 0.9187042117118835,\n                \"Y\": 0.1293528527021408\n              },\n              {\n                \"X\": 0.831807553768158,\n                \"Y\": 0.1292654126882553\n              }\n            ]\n          },\n          \"Id\": \"162d5694-5d45-4bcc-9496-b4ba8889fd48\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ddd304af-f699-4d6c-aca3-386e6e293e95\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 96.23667907714844,\n          \"Text\": \"- META -\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.23776616156101227,\n              \"Height\": 0.029438525438308716,\n              \"Left\": 0.0899757593870163,\n              \"Top\": 0.12222195416688919\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08998904377222061,\n                \"Y\": 0.12222195416688919\n              },\n              {\n                \"X\": 0.32774192094802856,\n                \"Y\": 0.12246081978082657\n              },\n              {\n                \"X\": 0.3277301788330078,\n                \"Y\": 0.1516604870557785\n              },\n              {\n                \"X\": 0.0899757593870163,\n                \"Y\": 0.15141981840133667\n              }\n            ]\n          },\n          \"Id\": \"d32d2d45-8282-41bc-840b-c365c6c555cf\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"f2bd419e-9fa7-464e-b840-5fee3994ec76\",\n                \"b2e887c7-0997-4cf8-9621-3b6948bc6e61\",\n                \"816713e1-21ff-4d8d-82ee-a78a4d5180dc\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.88982391357422,\n          \"Text\": \"Invoice Date:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12026602774858475,\n              \"Height\": 0.012126868590712547,\n              \"Left\": 0.603238046169281,\n              \"Top\": 0.13496661186218262\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6032421588897705,\n                \"Y\": 0.13496661186218262\n              },\n              {\n                \"X\": 0.7235040664672852,\n                \"Y\": 0.13508781790733337\n              },\n              {\n                \"X\": 0.7235003113746643,\n                \"Y\": 0.1470934897661209\n              },\n              {\n                \"X\": 0.603238046169281,\n                \"Y\": 0.1469719111919403\n              }\n            ]\n          },\n          \"Id\": \"c60cfe4b-ab64-4137-8d11-fb489df39757\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"e60ffef5-1bd5-4dbe-8d7c-cc72572e3976\",\n                \"3b5f6df1-78c9-4f25-b898-05f9063d5620\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.97671508789062,\n          \"Text\": \"12 March 2020\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12868426740169525,\n              \"Height\": 0.012112337164580822,\n              \"Left\": 0.7900840044021606,\n              \"Top\": 0.13493186235427856\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7900875806808472,\n                \"Y\": 0.13493186235427856\n              },\n              {\n                \"X\": 0.9187682867050171,\n                \"Y\": 0.13506154716014862\n              },\n              {\n                \"X\": 0.9187650084495544,\n                \"Y\": 0.14704419672489166\n              },\n              {\n                \"X\": 0.7900840044021606,\n                \"Y\": 0.14691412448883057\n              }\n            ]\n          },\n          \"Id\": \"d1862163-5722-4bb6-81af-15928d6128e8\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"8150cc25-a0b3-4660-8051-97d8b0e32e27\",\n                \"5d02de23-afea-4fd6-aa1b-7f72c56a6173\",\n                \"934f3919-1db4-4cd2-8baa-2adb8484c2a5\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.88607025146484,\n          \"Text\": \"Purchase Order:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.15189503133296967,\n              \"Height\": 0.012424925342202187,\n              \"Left\": 0.5716614723205566,\n              \"Top\": 0.1519649177789688\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5716657638549805,\n                \"Y\": 0.1519649177789688\n              },\n              {\n                \"X\": 0.7235565185546875,\n                \"Y\": 0.15211866796016693\n              },\n              {\n                \"X\": 0.7235526442527771,\n                \"Y\": 0.16438983380794525\n              },\n              {\n                \"X\": 0.5716614723205566,\n                \"Y\": 0.16423560678958893\n              }\n            ]\n          },\n          \"Id\": \"6addfdbc-1f88-4f64-9a92-cdc6fc183747\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"2683a7df-d497-48fa-9365-057b6f395335\",\n                \"01f0b34b-b1c1-4211-a7c0-dfde4d46108f\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.96484375,\n          \"Text\": \"F0016\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0546136237680912,\n              \"Height\": 0.012259256094694138,\n              \"Left\": 0.8642489910125732,\n              \"Top\": 0.15204310417175293\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8642524480819702,\n                \"Y\": 0.15204310417175293\n              },\n              {\n                \"X\": 0.9188625812530518,\n                \"Y\": 0.1520983725786209\n              },\n              {\n                \"X\": 0.9188592433929443,\n                \"Y\": 0.16430234909057617\n              },\n              {\n                \"X\": 0.8642489910125732,\n                \"Y\": 0.16424690186977386\n              }\n            ]\n          },\n          \"Id\": \"ce8f39e0-6628-41f7-ba76-65fddd56bbf5\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ac73fe32-adf3-46cd-a9d6-b1a91a6b7c72\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.84397888183594,\n          \"Text\": \"LEGAL & FINANCE\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.23769579827785492,\n              \"Height\": 0.01728363148868084,\n              \"Left\": 0.08955059200525284,\n              \"Top\": 0.16099804639816284\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08955834805965424,\n                \"Y\": 0.16099804639816284\n              },\n              {\n                \"X\": 0.32724639773368835,\n                \"Y\": 0.16123922169208527\n              },\n              {\n                \"X\": 0.3272395133972168,\n                \"Y\": 0.17828167974948883\n              },\n              {\n                \"X\": 0.08955059200525284,\n                \"Y\": 0.17803946137428284\n              }\n            ]\n          },\n          \"Id\": \"a1877fe5-1bc1-45fa-a243-8e89563d5708\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"9a2d0aff-4d5a-4444-9fae-b34c96154704\",\n                \"1441d3ea-cffa-42a9-89c2-9833610da363\",\n                \"187558f2-f9b3-4e9b-a507-84b0f0040e39\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.98758697509766,\n          \"Text\": \"Qty\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0326448492705822,\n              \"Height\": 0.015670139342546463,\n              \"Left\": 0.15485623478889465,\n              \"Top\": 0.22190509736537933\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1548631191253662,\n                \"Y\": 0.22190509736537933\n              },\n              {\n                \"X\": 0.18750108778476715,\n                \"Y\": 0.22193871438503265\n              },\n              {\n                \"X\": 0.18749430775642395,\n                \"Y\": 0.2375752329826355\n              },\n              {\n                \"X\": 0.15485623478889465,\n                \"Y\": 0.23754146695137024\n              }\n            ]\n          },\n          \"Id\": \"549d843c-ac3e-4401-b774-8600062f45fa\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"d25b76ed-c8e1-44a4-8760-118077f846cc\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.81791687011719,\n          \"Text\": \"Item\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03947500139474869,\n              \"Height\": 0.012383867055177689,\n              \"Left\": 0.2399406135082245,\n              \"Top\": 0.22199757397174835\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23994582891464233,\n                \"Y\": 0.22199757397174835\n              },\n              {\n                \"X\": 0.27941563725471497,\n                \"Y\": 0.22203823924064636\n              },\n              {\n                \"X\": 0.2794105112552643,\n                \"Y\": 0.23438143730163574\n              },\n              {\n                \"X\": 0.2399406135082245,\n                \"Y\": 0.234340637922287\n              }\n            ]\n          },\n          \"Id\": \"614abeee-aeca-4f26-a922-e4c61eb95976\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"aca0fd2a-8c42-4e0d-bd42-eecaca2cd211\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.99183654785156,\n          \"Text\": \"Amount\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07555849850177765,\n              \"Height\": 0.01248389482498169,\n              \"Left\": 0.8195800185203552,\n              \"Top\": 0.2220223993062973\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8195836544036865,\n                \"Y\": 0.2220223993062973\n              },\n              {\n                \"X\": 0.8951385021209717,\n                \"Y\": 0.22210024297237396\n              },\n              {\n                \"X\": 0.8951350450515747,\n                \"Y\": 0.234506294131279\n              },\n              {\n                \"X\": 0.8195800185203552,\n                \"Y\": 0.23442822694778442\n              }\n            ]\n          },\n          \"Id\": \"3b5b6a63-a46d-41a9-a529-d0d99968204c\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"37c451ab-aea2-4cc1-b77b-be8ee612f10f\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.97688293457031,\n          \"Text\": \"2\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.010233607143163681,\n              \"Height\": 0.010846034623682499,\n              \"Left\": 0.16559232771396637,\n              \"Top\": 0.27136802673339844\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1655970811843872,\n                \"Y\": 0.27136802673339844\n              },\n              {\n                \"X\": 0.17582593858242035,\n                \"Y\": 0.27137869596481323\n              },\n              {\n                \"X\": 0.1758212000131607,\n                \"Y\": 0.28221404552459717\n              },\n              {\n                \"X\": 0.16559232771396637,\n                \"Y\": 0.28220334649086\n              }\n            ]\n          },\n          \"Id\": \"77af71c7-1812-4d33-8e9d-0f82efd0e91d\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"c05ab57e-513c-4e18-a315-84b0009f9f07\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 87.52317810058594,\n          \"Text\": \"ACP101I System Imports\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.21268419921398163,\n              \"Height\": 0.014528012834489346,\n              \"Left\": 0.23918171226978302,\n              \"Top\": 0.2708645462989807\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23918774724006653,\n                \"Y\": 0.2708645462989807\n              },\n              {\n                \"X\": 0.45186591148376465,\n                \"Y\": 0.27108636498451233\n              },\n              {\n                \"X\": 0.4518605172634125,\n                \"Y\": 0.2853925824165344\n              },\n              {\n                \"X\": 0.23918171226978302,\n                \"Y\": 0.28516995906829834\n              }\n            ]\n          },\n          \"Id\": \"4b126fe8-1ec3-4916-85a1-c6a6e57745d8\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"1d702b54-aa46-46fc-9408-3e3230704157\",\n                \"bd219d13-2283-4847-8c9e-e93fdcd54722\",\n                \"587c4333-8b97-44e7-a7ed-f170c9570646\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.99576568603516,\n          \"Text\": \"$220.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0644533708691597,\n              \"Height\": 0.013039728626608849,\n              \"Left\": 0.8299078941345215,\n              \"Top\": 0.2706538140773773\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8299117088317871,\n                \"Y\": 0.2706538140773773\n              },\n              {\n                \"X\": 0.8943612575531006,\n                \"Y\": 0.2707210183143616\n              },\n              {\n                \"X\": 0.8943576812744141,\n                \"Y\": 0.2836935520172119\n              },\n              {\n                \"X\": 0.8299078941345215,\n                \"Y\": 0.28362613916397095\n              }\n            ]\n          },\n          \"Id\": \"85156451-39e7-4bb6-90bf-18cf46e31ec9\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"3ea95cd6-d7d0-49c2-939d-c3e6d38bdda5\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.9272689819336,\n          \"Text\": \"Hours spent importing customer records into Premier\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.4209941029548645,\n              \"Height\": 0.014895357191562653,\n              \"Left\": 0.2403404861688614,\n              \"Top\": 0.2890194058418274\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24034658074378967,\n                \"Y\": 0.2890194058418274\n              },\n              {\n                \"X\": 0.6613345742225647,\n                \"Y\": 0.2894604504108429\n              },\n              {\n                \"X\": 0.6613298058509827,\n                \"Y\": 0.30391475558280945\n              },\n              {\n                \"X\": 0.2403404861688614,\n                \"Y\": 0.3034721314907074\n              }\n            ]\n          },\n          \"Id\": \"eb90360f-b259-4647-b555-52d324955d43\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"00b83b88-2c61-4827-b6b1-39956b27793a\",\n                \"dedd239d-2539-4955-990b-b2b8ec00d515\",\n                \"7536918f-7979-4766-8e05-34df4ca1b15f\",\n                \"d65f05f9-45c0-4fd0-88d4-03ffaab883fa\",\n                \"e9129d3d-788b-4622-82ae-d5e61e78d778\",\n                \"0e731114-0e46-4752-945e-6f92554c5ee1\",\n                \"612a8b6e-997a-40e4-a293-e4433a8a0b7a\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.80933380126953,\n          \"Text\": \"Version\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.059623636305332184,\n              \"Height\": 0.011360088363289833,\n              \"Left\": 0.23919619619846344,\n              \"Top\": 0.3077806532382965\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23920096457004547,\n                \"Y\": 0.3077806532382965\n              },\n              {\n                \"X\": 0.2988198399543762,\n                \"Y\": 0.3078433871269226\n              },\n              {\n                \"X\": 0.29881522059440613,\n                \"Y\": 0.3191407322883606\n              },\n              {\n                \"X\": 0.23919619619846344,\n                \"Y\": 0.31907781958580017\n              }\n            ]\n          },\n          \"Id\": \"84e6d2f1-82b3-49d3-b177-3fe5e1a5ff0d\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"a0b79548-6a7f-4046-8758-73dc3bc9db60\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.9677963256836,\n          \"Text\": \"3\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.009651975706219673,\n              \"Height\": 0.01107051782310009,\n              \"Left\": 0.1660134345293045,\n              \"Top\": 0.3622274100780487\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1660182923078537,\n                \"Y\": 0.3622274100780487\n              },\n              {\n                \"X\": 0.17566542327404022,\n                \"Y\": 0.36223769187927246\n              },\n              {\n                \"X\": 0.17566059529781342,\n                \"Y\": 0.37329792976379395\n              },\n              {\n                \"X\": 0.1660134345293045,\n                \"Y\": 0.3732876181602478\n              }\n            ]\n          },\n          \"Id\": \"ad2fcab4-e950-4876-a0c0-a67ef8cfd92d\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"1ac053fc-ef9a-403e-b3ab-f1fbc79cb1c7\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.90630340576172,\n          \"Text\": \"ACP100 Accounting Package\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.2491021752357483,\n              \"Height\": 0.014955691993236542,\n              \"Left\": 0.2390301525592804,\n              \"Top\": 0.3616413474082947\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23903635144233704,\n                \"Y\": 0.3616413474082947\n              },\n              {\n                \"X\": 0.4881323277950287,\n                \"Y\": 0.3619069755077362\n              },\n              {\n                \"X\": 0.4881269335746765,\n                \"Y\": 0.3765970468521118\n              },\n              {\n                \"X\": 0.2390301525592804,\n                \"Y\": 0.3763304650783539\n              }\n            ]\n          },\n          \"Id\": \"ce0cd7ef-6d95-43e4-ba41-3660e3b94e47\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"494a72c3-9b31-42fb-b17f-d89d0bfa6c65\",\n                \"29f3d652-c17b-4a2a-82a9-3bcbe3d6b78d\",\n                \"83e6123d-c106-441d-939a-8b0ab1d23e02\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.9918212890625,\n          \"Text\": \"$900.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06432899087667465,\n              \"Height\": 0.013404691591858864,\n              \"Left\": 0.8300313949584961,\n              \"Top\": 0.361544668674469\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8300352692604065,\n                \"Y\": 0.361544668674469\n              },\n              {\n                \"X\": 0.894360363483429,\n                \"Y\": 0.3616132438182831\n              },\n              {\n                \"X\": 0.8943566679954529,\n                \"Y\": 0.3749493658542633\n              },\n              {\n                \"X\": 0.8300313949584961,\n                \"Y\": 0.3748805522918701\n              }\n            ]\n          },\n          \"Id\": \"96f838ed-0101-4925-8abc-d2c6322b6279\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"65004765-127f-4de5-8fd9-8f214762f1de\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.92662811279297,\n          \"Text\": \"Annual Subscription to Standard Version of Accounts\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.4208723306655884,\n              \"Height\": 0.014635185711085796,\n              \"Left\": 0.23906098306179047,\n              \"Top\": 0.3801057040691376\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2390669733285904,\n                \"Y\": 0.3801057040691376\n              },\n              {\n                \"X\": 0.65993332862854,\n                \"Y\": 0.38055652379989624\n              },\n              {\n                \"X\": 0.6599286198616028,\n                \"Y\": 0.39474090933799744\n              },\n              {\n                \"X\": 0.23906098306179047,\n                \"Y\": 0.3942885398864746\n              }\n            ]\n          },\n          \"Id\": \"30732e47-2b2c-4904-9555-ede2bb271cd4\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"e2938e65-ccd5-4cef-bb50-a40949e903b4\",\n                \"496c6ecb-c3a8-4a16-9a43-7549fe497de4\",\n                \"8d29ab27-cd22-4253-8ebb-c98982761e7a\",\n                \"2ae70f5d-f99f-460a-9a36-88da7de439ff\",\n                \"d10e31c9-1fa4-476c-8c37-9a27d03c9d74\",\n                \"0b620391-5c51-41d7-b9dc-0ecedba50447\",\n                \"157f574b-1fe0-47c5-819e-f0214c51ecfb\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.97480773925781,\n          \"Text\": \"System\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.059237781912088394,\n              \"Height\": 0.01451123971492052,\n              \"Left\": 0.23994314670562744,\n              \"Top\": 0.39863449335098267\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23994924128055573,\n                \"Y\": 0.39863449335098267\n              },\n              {\n                \"X\": 0.29918092489242554,\n                \"Y\": 0.39869824051856995\n              },\n              {\n                \"X\": 0.2991750240325928,\n                \"Y\": 0.4131457507610321\n              },\n              {\n                \"X\": 0.23994314670562744,\n                \"Y\": 0.4130817949771881\n              }\n            ]\n          },\n          \"Id\": \"71814a29-4c94-43ec-8c27-4c53f215ed44\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"5fbc7cd4-f426-41f4-96e0-93ab5c77fc6d\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.97392272949219,\n          \"Text\": \"4.5\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.025361496955156326,\n              \"Height\": 0.010997232049703598,\n              \"Left\": 0.1579974740743637,\n              \"Top\": 0.4535379111766815\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15800230205059052,\n                \"Y\": 0.4535379111766815\n              },\n              {\n                \"X\": 0.18335896730422974,\n                \"Y\": 0.4535655677318573\n              },\n              {\n                \"X\": 0.1833541989326477,\n                \"Y\": 0.4645351469516754\n              },\n              {\n                \"X\": 0.1579974740743637,\n                \"Y\": 0.46450743079185486\n              }\n            ]\n          },\n          \"Id\": \"6caa302b-50a4-4900-8ef2-3fa692053a11\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"83c25a15-f3f0-4c26-a279-a3912c4a2c05\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.90676879882812,\n          \"Text\": \"ACP100T Online Training\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.21474365890026093,\n              \"Height\": 0.014397794380784035,\n              \"Left\": 0.23890331387519836,\n              \"Top\": 0.45308253169059753\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2389092892408371,\n                \"Y\": 0.45308253169059753\n              },\n              {\n                \"X\": 0.4536469876766205,\n                \"Y\": 0.4533165991306305\n              },\n              {\n                \"X\": 0.4536416530609131,\n                \"Y\": 0.467480331659317\n              },\n              {\n                \"X\": 0.23890331387519836,\n                \"Y\": 0.467245489358902\n              }\n            ]\n          },\n          \"Id\": \"46876955-05db-4578-a1d0-4b1a492bc728\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"b15b7a75-548d-4443-aeaf-0ed2c202ea52\",\n                \"21f2df3c-3b4c-478f-957e-d19f921c917f\",\n                \"e6a90a92-762a-47c5-a170-3c23d5e540f9\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.99088287353516,\n          \"Text\": \"$495.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06470318138599396,\n              \"Height\": 0.013239453546702862,\n              \"Left\": 0.8297285437583923,\n              \"Top\": 0.45278042554855347\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8297324180603027,\n                \"Y\": 0.45278042554855347\n              },\n              {\n                \"X\": 0.8944317102432251,\n                \"Y\": 0.45285093784332275\n              },\n              {\n                \"X\": 0.8944280743598938,\n                \"Y\": 0.466019868850708\n              },\n              {\n                \"X\": 0.8297285437583923,\n                \"Y\": 0.465949147939682\n              }\n            ]\n          },\n          \"Id\": \"b105d524-f9ad-4206-9725-110c96278be5\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"8d63e05f-5bf1-4141-998e-20d92e183bc2\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.62663269042969,\n          \"Text\": \"Hours of Training in Standard Version - Interactive\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.3962501287460327,\n              \"Height\": 0.01440617348998785,\n              \"Left\": 0.2405070662498474,\n              \"Top\": 0.47152814269065857\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24051295220851898,\n                \"Y\": 0.47152814269065857\n              },\n              {\n                \"X\": 0.6367571949958801,\n                \"Y\": 0.47196194529533386\n              },\n              {\n                \"X\": 0.6367524862289429,\n                \"Y\": 0.485934317111969\n              },\n              {\n                \"X\": 0.2405070662498474,\n                \"Y\": 0.4854990839958191\n              }\n            ]\n          },\n          \"Id\": \"8b7befcf-37bd-49f1-a538-9559ce0209ac\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"756b86f0-d9c4-402b-9e9d-7009ff905e16\",\n                \"3919dc2d-f391-4dc4-b2d1-488db114b4c5\",\n                \"0ded4791-c254-4f72-b4ff-16ed40aac0e1\",\n                \"c6578f82-48be-48c3-be46-66342135ff5e\",\n                \"5c3cbfbf-60e5-4d32-8219-e56e54a9e7a9\",\n                \"28c16abd-fee9-491a-a929-504de3c70aaf\",\n                \"c23191b3-bf68-4d04-8bf5-f9e58f003eb1\",\n                \"8e4e3f98-202b-4488-b492-a7ad1b26bde2\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.90450286865234,\n          \"Text\": \"Demos with Q&A Sessions\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.21283568441867828,\n              \"Height\": 0.011507423594594002,\n              \"Left\": 0.24013230204582214,\n              \"Top\": 0.4899939298629761\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24013705551624298,\n                \"Y\": 0.4899939298629761\n              },\n              {\n                \"X\": 0.45296797156333923,\n                \"Y\": 0.49022793769836426\n              },\n              {\n                \"X\": 0.4529637396335602,\n                \"Y\": 0.5015013813972473\n              },\n              {\n                \"X\": 0.24013230204582214,\n                \"Y\": 0.5012667179107666\n              }\n            ]\n          },\n          \"Id\": \"f23b2f91-2c9c-4100-903f-35303971220a\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"ac91eaff-73b7-40c0-a91b-791fccca293a\",\n                \"374a4784-373b-4553-9d52-db348dfb456f\",\n                \"52f3bfe0-c31d-4733-a72b-eed538a8a608\",\n                \"996a5713-691f-4219-94de-c8440d5b0f94\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 98.9775390625,\n          \"Text\": \"Total:\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05064837634563446,\n              \"Height\": 0.012283685617148876,\n              \"Left\": 0.622478187084198,\n              \"Top\": 0.555849015712738\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6224822998046875,\n                \"Y\": 0.555849015712738\n              },\n              {\n                \"X\": 0.6731265783309937,\n                \"Y\": 0.5559055805206299\n              },\n              {\n                \"X\": 0.6731225848197937,\n                \"Y\": 0.5681326985359192\n              },\n              {\n                \"X\": 0.622478187084198,\n                \"Y\": 0.5680760145187378\n              }\n            ]\n          },\n          \"Id\": \"b98e9b1b-0727-4688-979b-1012d22631cd\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"a7778b70-4fe0-47eb-9c8a-7e8ef9cbb372\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.98596954345703,\n          \"Text\": \"$5,715.00\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07974683493375778,\n              \"Height\": 0.01337936520576477,\n              \"Left\": 0.8145899176597595,\n              \"Top\": 0.5560894012451172\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8145938515663147,\n                \"Y\": 0.5560894012451172\n              },\n              {\n                \"X\": 0.8943367004394531,\n                \"Y\": 0.5561783909797668\n              },\n              {\n                \"X\": 0.894333004951477,\n                \"Y\": 0.5694687366485596\n              },\n              {\n                \"X\": 0.8145899176597595,\n                \"Y\": 0.569379448890686\n              }\n            ]\n          },\n          \"Id\": \"39316636-081f-43b1-8722-74db502b7aec\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"977774f1-134f-4c6d-a86e-b81cfd42eeae\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.95156860351562,\n          \"Text\": \"Payment Terms: 14 days\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1609325259923935,\n              \"Height\": 0.011808295734226704,\n              \"Left\": 0.4296305477619171,\n              \"Top\": 0.596904993057251\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4296349585056305,\n                \"Y\": 0.596904993057251\n              },\n              {\n                \"X\": 0.5905630588531494,\n                \"Y\": 0.5970863699913025\n              },\n              {\n                \"X\": 0.5905590653419495,\n                \"Y\": 0.6087132692337036\n              },\n              {\n                \"X\": 0.4296305477619171,\n                \"Y\": 0.6085314154624939\n              }\n            ]\n          },\n          \"Id\": \"b00c35a3-1fc8-486a-a980-589b74b62ad4\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"b8066aa4-d3cb-4b0f-95bd-21aa4dea00f1\",\n                \"3306b35a-0d7b-4f93-814b-a98f2f5234e4\",\n                \"2591ddae-a3fb-4436-9d43-77ab8599c6a5\",\n                \"80d9b18b-2100-4b6a-a957-b15f3b844f7f\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.91766357421875,\n          \"Text\": \"Payment Due By: Thursday, 26 March 2020\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.288174569606781,\n              \"Height\": 0.012121232226490974,\n              \"Left\": 0.36594143509864807,\n              \"Top\": 0.6195189356803894\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.36594608426094055,\n                \"Y\": 0.6195189356803894\n              },\n              {\n                \"X\": 0.6541159749031067,\n                \"Y\": 0.619845449924469\n              },\n              {\n                \"X\": 0.6541121006011963,\n                \"Y\": 0.6316401958465576\n              },\n              {\n                \"X\": 0.36594143509864807,\n                \"Y\": 0.6313128471374512\n              }\n            ]\n          },\n          \"Id\": \"2ff6a8de-c157-4445-9692-a275b5a64337\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"231bf539-ab2e-4fac-9d89-5d95b2b9c26d\",\n                \"64ca3533-85f8-4571-a6d6-9d1dc0800bdc\",\n                \"0cd302de-7cb9-4a8d-9b0b-a33d5cc2cf23\",\n                \"ff47e9ab-dd39-4b16-b1b7-2a99de3fc964\",\n                \"d29a9857-017e-43aa-87c3-b1a00b8f3ce4\",\n                \"6103e1f9-83e4-48ef-9db6-2a2b06cfaa9b\",\n                \"8e46d335-0e77-4286-bad9-eb2a7df0f03e\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 98.31090545654297,\n          \"Text\": \"154-164 The Embarcadero, San Francisco, CA 94105\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.47682642936706543,\n              \"Height\": 0.014790069311857224,\n              \"Left\": 0.4043372869491577,\n              \"Top\": 0.9250460267066956\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.40434277057647705,\n                \"Y\": 0.9250460267066956\n              },\n              {\n                \"X\": 0.8811637163162231,\n                \"Y\": 0.9256238341331482\n              },\n              {\n                \"X\": 0.8811597228050232,\n                \"Y\": 0.9398361444473267\n              },\n              {\n                \"X\": 0.4043372869491577,\n                \"Y\": 0.9392566084861755\n              }\n            ]\n          },\n          \"Id\": \"3d2f443b-c8db-4e7b-b163-49223234b6da\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"24fe7483-9139-4349-ad81-852e4fd5027c\",\n                \"e7e9e719-04cd-4ef3-9e71-1b13761f6aa9\",\n                \"0684b5ff-2f0a-4ae3-9f91-b30ffe0a0f7c\",\n                \"311b9a8f-b098-4478-b251-976fb6be2332\",\n                \"790e2633-ba9c-4da7-a604-661fb57f030e\",\n                \"c3a729df-3e49-46ca-8adb-a0525bd2786d\",\n                \"56a3cb82-3fcd-47b4-831d-4f7726154ab0\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"LINE\",\n          \"Confidence\": 99.1307373046875,\n          \"Text\": \"Tel: (1) 555-123-1234 Email: admin@metalegalfinance.com\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.5237683653831482,\n              \"Height\": 0.016192158684134483,\n              \"Left\": 0.35904115438461304,\n              \"Top\": 0.945289134979248\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3590472936630249,\n                \"Y\": 0.945289134979248\n              },\n              {\n                \"X\": 0.8828095197677612,\n                \"Y\": 0.9459265470504761\n              },\n              {\n                \"X\": 0.8828051090240479,\n                \"Y\": 0.9614812731742859\n              },\n              {\n                \"X\": 0.35904115438461304,\n                \"Y\": 0.9608417749404907\n              }\n            ]\n          },\n          \"Id\": \"0a77332e-893c-40af-ab12-90fa90066a95\",\n          \"Relationships\": [\n            {\n              \"Type\": \"CHILD\",\n              \"Ids\": [\n                \"33c7f592-bb06-4e9e-8fab-197ff37721ed\",\n                \"ad38b933-3ecf-4873-acfd-f3c6287fb63b\",\n                \"58bfc389-4fb7-462b-b4c9-1732f5cdc8be\",\n                \"ca2f9f35-e265-478f-aabe-179089e3af08\",\n                \"ae2161f8-f99f-4a8c-8095-407a5f38049c\"\n              ]\n            }\n          ],\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.87846374511719,\n          \"Text\": \"INVOICE\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.1985362023115158,\n              \"Height\": 0.029558880254626274,\n              \"Left\": 0.7193580269813538,\n              \"Top\": 0.042854975908994675\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7193673253059387,\n                \"Y\": 0.042854975908994675\n              },\n              {\n                \"X\": 0.917894184589386,\n                \"Y\": 0.043050333857536316\n              },\n              {\n                \"X\": 0.9178861975669861,\n                \"Y\": 0.0724138543009758\n              },\n              {\n                \"X\": 0.7193580269813538,\n                \"Y\": 0.07221698760986328\n              }\n            ]\n          },\n          \"Id\": \"cf9cbaf8-c086-41e8-b350-5de2edda366c\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.81959533691406,\n          \"Text\": \"Invoice\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06719273328781128,\n              \"Height\": 0.012057237327098846,\n              \"Left\": 0.6191225051879883,\n              \"Top\": 0.11722428351640701\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.619126558303833,\n                \"Y\": 0.11722428351640701\n              },\n              {\n                \"X\": 0.6863152384757996,\n                \"Y\": 0.11729168891906738\n              },\n              {\n                \"X\": 0.6863113641738892,\n                \"Y\": 0.12928152084350586\n              },\n              {\n                \"X\": 0.6191225051879883,\n                \"Y\": 0.12921389937400818\n              }\n            ]\n          },\n          \"Id\": \"3d4d6ef1-47c1-4c39-968a-7db79a3a7ac9\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.89069366455078,\n          \"Text\": \"No:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03085559792816639,\n              \"Height\": 0.012089306488633156,\n              \"Left\": 0.6925695538520813,\n              \"Top\": 0.11729399859905243\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6925734877586365,\n                \"Y\": 0.11729399859905243\n              },\n              {\n                \"X\": 0.7234251499176025,\n                \"Y\": 0.11732494831085205\n              },\n              {\n                \"X\": 0.7234213948249817,\n                \"Y\": 0.12938329577445984\n              },\n              {\n                \"X\": 0.6925695538520813,\n                \"Y\": 0.12935225665569305\n              }\n            ]\n          },\n          \"Id\": \"5a9aaf57-eb42-4b60-b39c-4634323deeea\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.88139343261719,\n          \"Text\": \"00000135\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08689989894628525,\n              \"Height\": 0.012003323994576931,\n              \"Left\": 0.831807553768158,\n              \"Top\": 0.1173495277762413\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8318110108375549,\n                \"Y\": 0.1173495277762413\n              },\n              {\n                \"X\": 0.9187074303627014,\n                \"Y\": 0.11743670701980591\n              },\n              {\n                \"X\": 0.9187042117118835,\n                \"Y\": 0.1293528527021408\n              },\n              {\n                \"X\": 0.831807553768158,\n                \"Y\": 0.1292654126882553\n              }\n            ]\n          },\n          \"Id\": \"ddd304af-f699-4d6c-aca3-386e6e293e95\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 94.92518615722656,\n          \"Text\": \"-\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.01909729279577732,\n              \"Height\": 0.0037894826382398605,\n              \"Left\": 0.08997924625873566,\n              \"Top\": 0.13998819887638092\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08998095989227295,\n                \"Y\": 0.13998819887638092\n              },\n              {\n                \"X\": 0.10907653719186783,\n                \"Y\": 0.14000748097896576\n              },\n              {\n                \"X\": 0.10907483845949173,\n                \"Y\": 0.14377768337726593\n              },\n              {\n                \"X\": 0.08997924625873566,\n                \"Y\": 0.1437584012746811\n              }\n            ]\n          },\n          \"Id\": \"f2bd419e-9fa7-464e-b840-5fee3994ec76\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.75775146484375,\n          \"Text\": \"META\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.18531519174575806,\n              \"Height\": 0.029385624453425407,\n              \"Left\": 0.11531416326761246,\n              \"Top\": 0.12224741280078888\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.11532728374004364,\n                \"Y\": 0.12224741280078888\n              },\n              {\n                \"X\": 0.3006293475627899,\n                \"Y\": 0.12243358045816422\n              },\n              {\n                \"X\": 0.30061742663383484,\n                \"Y\": 0.15163303911685944\n              },\n              {\n                \"X\": 0.11531416326761246,\n                \"Y\": 0.15144546329975128\n              }\n            ]\n          },\n          \"Id\": \"b2e887c7-0997-4cf8-9621-3b6948bc6e61\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 94.02710723876953,\n          \"Text\": \"-\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.019208425655961037,\n              \"Height\": 0.003464945126324892,\n              \"Left\": 0.30852630734443665,\n              \"Top\": 0.14027871191501617\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30852770805358887,\n                \"Y\": 0.14027871191501617\n              },\n              {\n                \"X\": 0.32773473858833313,\n                \"Y\": 0.14029809832572937\n              },\n              {\n                \"X\": 0.3277333676815033,\n                \"Y\": 0.14374364912509918\n              },\n              {\n                \"X\": 0.30852630734443665,\n                \"Y\": 0.1437242478132248\n              }\n            ]\n          },\n          \"Id\": \"816713e1-21ff-4d8d-82ee-a78a4d5180dc\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.88262176513672,\n          \"Text\": \"Invoice\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06684353202581406,\n              \"Height\": 0.011861708015203476,\n              \"Left\": 0.6032381057739258,\n              \"Top\": 0.135050967335701\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6032420992851257,\n                \"Y\": 0.135050967335701\n              },\n              {\n                \"X\": 0.670081615447998,\n                \"Y\": 0.13511833548545837\n              },\n              {\n                \"X\": 0.6700777411460876,\n                \"Y\": 0.14691266417503357\n              },\n              {\n                \"X\": 0.6032381057739258,\n                \"Y\": 0.14684510231018066\n              }\n            ]\n          },\n          \"Id\": \"e60ffef5-1bd5-4dbe-8d7c-cc72572e3976\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.89701843261719,\n          \"Text\": \"Date:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.047140300273895264,\n              \"Height\": 0.0120531702414155,\n              \"Left\": 0.6763637661933899,\n              \"Top\": 0.1350403130054474\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6763677000999451,\n                \"Y\": 0.1350403130054474\n              },\n              {\n                \"X\": 0.7235040664672852,\n                \"Y\": 0.13508781790733337\n              },\n              {\n                \"X\": 0.7235003113746643,\n                \"Y\": 0.1470934897661209\n              },\n              {\n                \"X\": 0.6763637661933899,\n                \"Y\": 0.14704583585262299\n              }\n            ]\n          },\n          \"Id\": \"3b5f6df1-78c9-4f25-b898-05f9063d5620\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9633560180664,\n          \"Text\": \"12\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.01984146423637867,\n              \"Height\": 0.01193210668861866,\n              \"Left\": 0.7900840044021606,\n              \"Top\": 0.13495877385139465\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7900875806808472,\n                \"Y\": 0.13495877385139465\n              },\n              {\n                \"X\": 0.8099254965782166,\n                \"Y\": 0.1349787712097168\n              },\n              {\n                \"X\": 0.80992192029953,\n                \"Y\": 0.14689087867736816\n              },\n              {\n                \"X\": 0.7900840044021606,\n                \"Y\": 0.14687083661556244\n              }\n            ]\n          },\n          \"Id\": \"8150cc25-a0b3-4660-8051-97d8b0e32e27\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98501586914062,\n          \"Text\": \"March\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.053356848657131195,\n              \"Height\": 0.011931394226849079,\n              \"Left\": 0.8164606094360352,\n              \"Top\": 0.1350633203983307\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8164641261100769,\n                \"Y\": 0.1350633203983307\n              },\n              {\n                \"X\": 0.8698174357414246,\n                \"Y\": 0.13511709868907928\n              },\n              {\n                \"X\": 0.8698140978813171,\n                \"Y\": 0.1469947248697281\n              },\n              {\n                \"X\": 0.8164606094360352,\n                \"Y\": 0.14694078266620636\n              }\n            ]\n          },\n          \"Id\": \"5d02de23-afea-4fd6-aa1b-7f72c56a6173\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98177337646484,\n          \"Text\": \"2020\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.043290842324495316,\n              \"Height\": 0.012017764151096344,\n              \"Left\": 0.8754774332046509,\n              \"Top\": 0.13501793146133423\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8754808306694031,\n                \"Y\": 0.13501793146133423\n              },\n              {\n                \"X\": 0.9187682867050171,\n                \"Y\": 0.13506154716014862\n              },\n              {\n                \"X\": 0.9187650084495544,\n                \"Y\": 0.14703568816184998\n              },\n              {\n                \"X\": 0.8754774332046509,\n                \"Y\": 0.14699192345142365\n              }\n            ]\n          },\n          \"Id\": \"934f3919-1db4-4cd2-8baa-2adb8484c2a5\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.91798400878906,\n          \"Text\": \"Purchase\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08731170743703842,\n              \"Height\": 0.012211928144097328,\n              \"Left\": 0.5716614723205566,\n              \"Top\": 0.15211233496665955\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5716657042503357,\n                \"Y\": 0.15211233496665955\n              },\n              {\n                \"X\": 0.658973217010498,\n                \"Y\": 0.15220071375370026\n              },\n              {\n                \"X\": 0.6589691638946533,\n                \"Y\": 0.16432426869869232\n              },\n              {\n                \"X\": 0.5716614723205566,\n                \"Y\": 0.16423560678958893\n              }\n            ]\n          },\n          \"Id\": \"2683a7df-d497-48fa-9365-057b6f395335\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.85415649414062,\n          \"Text\": \"Order:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05878813564777374,\n              \"Height\": 0.012265508063137531,\n              \"Left\": 0.664768397808075,\n              \"Top\": 0.1520591676235199\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6647723913192749,\n                \"Y\": 0.1520591676235199\n              },\n              {\n                \"X\": 0.7235565185546875,\n                \"Y\": 0.15211866796016693\n              },\n              {\n                \"X\": 0.7235526442527771,\n                \"Y\": 0.16432467103004456\n              },\n              {\n                \"X\": 0.664768397808075,\n                \"Y\": 0.164264976978302\n              }\n            ]\n          },\n          \"Id\": \"01f0b34b-b1c1-4211-a7c0-dfde4d46108f\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96484375,\n          \"Text\": \"F0016\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0546136237680912,\n              \"Height\": 0.012259256094694138,\n              \"Left\": 0.8642489910125732,\n              \"Top\": 0.15204310417175293\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8642524480819702,\n                \"Y\": 0.15204310417175293\n              },\n              {\n                \"X\": 0.9188625812530518,\n                \"Y\": 0.1520983725786209\n              },\n              {\n                \"X\": 0.9188592433929443,\n                \"Y\": 0.16430234909057617\n              },\n              {\n                \"X\": 0.8642489910125732,\n                \"Y\": 0.16424690186977386\n              }\n            ]\n          },\n          \"Id\": \"ac73fe32-adf3-46cd-a9d6-b1a91a6b7c72\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.88648986816406,\n          \"Text\": \"LEGAL\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08483010530471802,\n              \"Height\": 0.016997842118144035,\n              \"Left\": 0.08955059200525284,\n              \"Top\": 0.16112805902957916\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.08955828845500946,\n                \"Y\": 0.16112805902957916\n              },\n              {\n                \"X\": 0.17438068985939026,\n                \"Y\": 0.16121412813663483\n              },\n              {\n                \"X\": 0.1743733137845993,\n                \"Y\": 0.17812590301036835\n              },\n              {\n                \"X\": 0.08955059200525284,\n                \"Y\": 0.17803946137428284\n              }\n            ]\n          },\n          \"Id\": \"9a2d0aff-4d5a-4444-9fae-b34c96154704\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.893798828125,\n          \"Text\": \"&\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.018551921471953392,\n              \"Height\": 0.016238996759057045,\n              \"Left\": 0.1809442788362503,\n              \"Top\": 0.1617119163274765\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1809513419866562,\n                \"Y\": 0.1617119163274765\n              },\n              {\n                \"X\": 0.19949620962142944,\n                \"Y\": 0.16173073649406433\n              },\n              {\n                \"X\": 0.19948922097682953,\n                \"Y\": 0.1779509037733078\n              },\n              {\n                \"X\": 0.1809442788362503,\n                \"Y\": 0.177932009100914\n              }\n            ]\n          },\n          \"Id\": \"1441d3ea-cffa-42a9-89c2-9833610da363\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.75164794921875,\n          \"Text\": \"FINANCE\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.11994729191064835,\n              \"Height\": 0.01698591187596321,\n              \"Left\": 0.2072990983724594,\n              \"Top\": 0.1611175239086151\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.20730634033679962,\n                \"Y\": 0.1611175239086151\n              },\n              {\n                \"X\": 0.32724639773368835,\n                \"Y\": 0.16123922169208527\n              },\n              {\n                \"X\": 0.32723960280418396,\n                \"Y\": 0.17810343205928802\n              },\n              {\n                \"X\": 0.2072990983724594,\n                \"Y\": 0.1779812127351761\n              }\n            ]\n          },\n          \"Id\": \"187558f2-f9b3-4e9b-a507-84b0f0040e39\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98758697509766,\n          \"Text\": \"Qty\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0326448492705822,\n              \"Height\": 0.015670139342546463,\n              \"Left\": 0.15485623478889465,\n              \"Top\": 0.22190509736537933\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1548631191253662,\n                \"Y\": 0.22190509736537933\n              },\n              {\n                \"X\": 0.18750108778476715,\n                \"Y\": 0.22193871438503265\n              },\n              {\n                \"X\": 0.18749430775642395,\n                \"Y\": 0.2375752329826355\n              },\n              {\n                \"X\": 0.15485623478889465,\n                \"Y\": 0.23754146695137024\n              }\n            ]\n          },\n          \"Id\": \"d25b76ed-c8e1-44a4-8760-118077f846cc\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.81791687011719,\n          \"Text\": \"Item\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03947500139474869,\n              \"Height\": 0.012383867055177689,\n              \"Left\": 0.2399406135082245,\n              \"Top\": 0.22199757397174835\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23994582891464233,\n                \"Y\": 0.22199757397174835\n              },\n              {\n                \"X\": 0.27941563725471497,\n                \"Y\": 0.22203823924064636\n              },\n              {\n                \"X\": 0.2794105112552643,\n                \"Y\": 0.23438143730163574\n              },\n              {\n                \"X\": 0.2399406135082245,\n                \"Y\": 0.234340637922287\n              }\n            ]\n          },\n          \"Id\": \"aca0fd2a-8c42-4e0d-bd42-eecaca2cd211\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99183654785156,\n          \"Text\": \"Amount\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07555849850177765,\n              \"Height\": 0.01248389482498169,\n              \"Left\": 0.8195800185203552,\n              \"Top\": 0.2220223993062973\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8195836544036865,\n                \"Y\": 0.2220223993062973\n              },\n              {\n                \"X\": 0.8951385021209717,\n                \"Y\": 0.22210024297237396\n              },\n              {\n                \"X\": 0.8951350450515747,\n                \"Y\": 0.234506294131279\n              },\n              {\n                \"X\": 0.8195800185203552,\n                \"Y\": 0.23442822694778442\n              }\n            ]\n          },\n          \"Id\": \"37c451ab-aea2-4cc1-b77b-be8ee612f10f\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97688293457031,\n          \"Text\": \"2\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.010233607143163681,\n              \"Height\": 0.010846034623682499,\n              \"Left\": 0.16559232771396637,\n              \"Top\": 0.27136802673339844\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1655970811843872,\n                \"Y\": 0.27136802673339844\n              },\n              {\n                \"X\": 0.17582593858242035,\n                \"Y\": 0.27137869596481323\n              },\n              {\n                \"X\": 0.1758212000131607,\n                \"Y\": 0.28221404552459717\n              },\n              {\n                \"X\": 0.16559232771396637,\n                \"Y\": 0.28220334649086\n              }\n            ]\n          },\n          \"Id\": \"c05ab57e-513c-4e18-a315-84b0009f9f07\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 62.893409729003906,\n          \"Text\": \"ACP101I\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07237324863672256,\n              \"Height\": 0.011267483234405518,\n              \"Left\": 0.23918287456035614,\n              \"Top\": 0.2712259590625763\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2391875982284546,\n                \"Y\": 0.2712259590625763\n              },\n              {\n                \"X\": 0.3115561306476593,\n                \"Y\": 0.2713014483451843\n              },\n              {\n                \"X\": 0.311551570892334,\n                \"Y\": 0.2824934422969818\n              },\n              {\n                \"X\": 0.23918287456035614,\n                \"Y\": 0.28241774439811707\n              }\n            ]\n          },\n          \"Id\": \"1d702b54-aa46-46fc-9408-3e3230704157\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93936157226562,\n          \"Text\": \"System\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06276765465736389,\n              \"Height\": 0.014371387660503387,\n              \"Left\": 0.31794771552085876,\n              \"Top\": 0.2709467113018036\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.317953497171402,\n                \"Y\": 0.2709467113018036\n              },\n              {\n                \"X\": 0.38071537017822266,\n                \"Y\": 0.27101215720176697\n              },\n              {\n                \"X\": 0.38070976734161377,\n                \"Y\": 0.2853181064128876\n              },\n              {\n                \"X\": 0.31794771552085876,\n                \"Y\": 0.2852523922920227\n              }\n            ]\n          },\n          \"Id\": \"bd219d13-2283-4847-8c9e-e93fdcd54722\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.73677062988281,\n          \"Text\": \"Imports\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06508830934762955,\n              \"Height\": 0.014046696946024895,\n              \"Left\": 0.38677749037742615,\n              \"Top\": 0.27126049995422363\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3867829442024231,\n                \"Y\": 0.27126049995422363\n              },\n              {\n                \"X\": 0.4518658220767975,\n                \"Y\": 0.2713283896446228\n              },\n              {\n                \"X\": 0.45186057686805725,\n                \"Y\": 0.2853071987628937\n              },\n              {\n                \"X\": 0.38677749037742615,\n                \"Y\": 0.2852390706539154\n              }\n            ]\n          },\n          \"Id\": \"587c4333-8b97-44e7-a7ed-f170c9570646\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99576568603516,\n          \"Text\": \"$220.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0644533708691597,\n              \"Height\": 0.013039728626608849,\n              \"Left\": 0.8299078941345215,\n              \"Top\": 0.2706538140773773\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8299117088317871,\n                \"Y\": 0.2706538140773773\n              },\n              {\n                \"X\": 0.8943612575531006,\n                \"Y\": 0.2707210183143616\n              },\n              {\n                \"X\": 0.8943576812744141,\n                \"Y\": 0.2836935520172119\n              },\n              {\n                \"X\": 0.8299078941345215,\n                \"Y\": 0.28362613916397095\n              }\n            ]\n          },\n          \"Id\": \"3ea95cd6-d7d0-49c2-939d-c3e6d38bdda5\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96827697753906,\n          \"Text\": \"Hours\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04693587124347687,\n              \"Height\": 0.011083723045885563,\n              \"Left\": 0.2403416633605957,\n              \"Top\": 0.28966236114501953\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24034631252288818,\n                \"Y\": 0.28966236114501953\n              },\n              {\n                \"X\": 0.2872775197029114,\n                \"Y\": 0.28971153497695923\n              },\n              {\n                \"X\": 0.28727298974990845,\n                \"Y\": 0.3007460832595825\n              },\n              {\n                \"X\": 0.2403416633605957,\n                \"Y\": 0.3006967604160309\n              }\n            ]\n          },\n          \"Id\": \"00b83b88-2c61-4827-b6b1-39956b27793a\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96755981445312,\n          \"Text\": \"spent\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.044129692018032074,\n              \"Height\": 0.013150460086762905,\n              \"Left\": 0.2926352918148041,\n              \"Top\": 0.2899518311023712\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.29264065623283386,\n                \"Y\": 0.2899518311023712\n              },\n              {\n                \"X\": 0.33676496148109436,\n                \"Y\": 0.28999805450439453\n              },\n              {\n                \"X\": 0.3367597162723541,\n                \"Y\": 0.3031022846698761\n              },\n              {\n                \"X\": 0.2926352918148041,\n                \"Y\": 0.30305591225624084\n              }\n            ]\n          },\n          \"Id\": \"dedd239d-2539-4955-990b-b2b8ec00d515\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.95771789550781,\n          \"Text\": \"importing\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07329026609659195,\n              \"Height\": 0.014240369200706482,\n              \"Left\": 0.3414759039878845,\n              \"Top\": 0.2894151508808136\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3414815664291382,\n                \"Y\": 0.2894151508808136\n              },\n              {\n                \"X\": 0.41476619243621826,\n                \"Y\": 0.2894919216632843\n              },\n              {\n                \"X\": 0.4147607684135437,\n                \"Y\": 0.3036555051803589\n              },\n              {\n                \"X\": 0.3414759039878845,\n                \"Y\": 0.3035784661769867\n              }\n            ]\n          },\n          \"Id\": \"7536918f-7979-4766-8e05-34df4ca1b15f\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9680404663086,\n          \"Text\": \"customer\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07448548823595047,\n              \"Height\": 0.010929160751402378,\n              \"Left\": 0.4203927218914032,\n              \"Top\": 0.28991544246673584\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4203968644142151,\n                \"Y\": 0.28991544246673584\n              },\n              {\n                \"X\": 0.49487820267677307,\n                \"Y\": 0.2899934947490692\n              },\n              {\n                \"X\": 0.4948742389678955,\n                \"Y\": 0.30084460973739624\n              },\n              {\n                \"X\": 0.4203927218914032,\n                \"Y\": 0.30076634883880615\n              }\n            ]\n          },\n          \"Id\": \"d65f05f9-45c0-4fd0-88d4-03ffaab883fa\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9735336303711,\n          \"Text\": \"records\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05967342108488083,\n              \"Height\": 0.011271902360022068,\n              \"Left\": 0.4993143677711487,\n              \"Top\": 0.2895251214504242\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4993184506893158,\n                \"Y\": 0.2895251214504242\n              },\n              {\n                \"X\": 0.5589877963066101,\n                \"Y\": 0.2895876467227936\n              },\n              {\n                \"X\": 0.5589838027954102,\n                \"Y\": 0.3007970154285431\n              },\n              {\n                \"X\": 0.4993143677711487,\n                \"Y\": 0.30073434114456177\n              }\n            ]\n          },\n          \"Id\": \"e9129d3d-788b-4622-82ae-d5e61e78d778\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97946166992188,\n          \"Text\": \"into\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.028682513162493706,\n              \"Height\": 0.011159422807395458,\n              \"Left\": 0.5641202330589294,\n              \"Top\": 0.2895474135875702\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5641241073608398,\n                \"Y\": 0.2895474135875702\n              },\n              {\n                \"X\": 0.5928027629852295,\n                \"Y\": 0.289577454328537\n              },\n              {\n                \"X\": 0.5927988886833191,\n                \"Y\": 0.3007068336009979\n              },\n              {\n                \"X\": 0.5641202330589294,\n                \"Y\": 0.30067670345306396\n              }\n            ]\n          },\n          \"Id\": \"0e731114-0e46-4752-945e-6f92554c5ee1\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.67630004882812,\n          \"Text\": \"Premier\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06288981437683105,\n              \"Height\": 0.011373579502105713,\n              \"Left\": 0.5984447598457336,\n              \"Top\": 0.2893945872783661\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.598448634147644,\n                \"Y\": 0.2893945872783661\n              },\n              {\n                \"X\": 0.6613345742225647,\n                \"Y\": 0.2894604504108429\n              },\n              {\n                \"X\": 0.6613308787345886,\n                \"Y\": 0.3007681667804718\n              },\n              {\n                \"X\": 0.5984447598457336,\n                \"Y\": 0.3007020950317383\n              }\n            ]\n          },\n          \"Id\": \"612a8b6e-997a-40e4-a293-e4433a8a0b7a\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.80933380126953,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.059623636305332184,\n              \"Height\": 0.011360088363289833,\n              \"Left\": 0.23919619619846344,\n              \"Top\": 0.3077806532382965\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23920096457004547,\n                \"Y\": 0.3077806532382965\n              },\n              {\n                \"X\": 0.2988198399543762,\n                \"Y\": 0.3078433871269226\n              },\n              {\n                \"X\": 0.29881522059440613,\n                \"Y\": 0.3191407322883606\n              },\n              {\n                \"X\": 0.23919619619846344,\n                \"Y\": 0.31907781958580017\n              }\n            ]\n          },\n          \"Id\": \"a0b79548-6a7f-4046-8758-73dc3bc9db60\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9677963256836,\n          \"Text\": \"3\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.009651975706219673,\n              \"Height\": 0.01107051782310009,\n              \"Left\": 0.1660134345293045,\n              \"Top\": 0.3622274100780487\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.1660182923078537,\n                \"Y\": 0.3622274100780487\n              },\n              {\n                \"X\": 0.17566542327404022,\n                \"Y\": 0.36223769187927246\n              },\n              {\n                \"X\": 0.17566059529781342,\n                \"Y\": 0.37329792976379395\n              },\n              {\n                \"X\": 0.1660134345293045,\n                \"Y\": 0.3732876181602478\n              }\n            ]\n          },\n          \"Id\": \"1ac053fc-ef9a-403e-b3ab-f1fbc79cb1c7\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.81148529052734,\n          \"Text\": \"ACP100\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0682867169380188,\n              \"Height\": 0.011204445734620094,\n              \"Left\": 0.23903146386146545,\n              \"Top\": 0.3620936870574951\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23903615772724152,\n                \"Y\": 0.3620936870574951\n              },\n              {\n                \"X\": 0.30731818079948425,\n                \"Y\": 0.36216649413108826\n              },\n              {\n                \"X\": 0.3073136508464813,\n                \"Y\": 0.37329810857772827\n              },\n              {\n                \"X\": 0.23903146386146545,\n                \"Y\": 0.3732250928878784\n              }\n            ]\n          },\n          \"Id\": \"494a72c3-9b31-42fb-b17f-d89d0bfa6c65\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97704315185547,\n          \"Text\": \"Accounting\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.09912838041782379,\n              \"Height\": 0.014795462600886822,\n              \"Left\": 0.31120800971984863,\n              \"Top\": 0.3617183268070221\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.31121397018432617,\n                \"Y\": 0.3617183268070221\n              },\n              {\n                \"X\": 0.41033637523651123,\n                \"Y\": 0.36182403564453125\n              },\n              {\n                \"X\": 0.41033074259757996,\n                \"Y\": 0.3765137791633606\n              },\n              {\n                \"X\": 0.31120800971984863,\n                \"Y\": 0.3764076828956604\n              }\n            ]\n          },\n          \"Id\": \"29f3d652-c17b-4a2a-82a9-3bcbe3d6b78d\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93038177490234,\n          \"Text\": \"Package\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0720803439617157,\n              \"Height\": 0.014046735130250454,\n              \"Left\": 0.41605183482170105,\n              \"Top\": 0.3622393310070038\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.41605716943740845,\n                \"Y\": 0.3622393310070038\n              },\n              {\n                \"X\": 0.48813217878341675,\n                \"Y\": 0.36231619119644165\n              },\n              {\n                \"X\": 0.4881270229816437,\n                \"Y\": 0.3762860596179962\n              },\n              {\n                \"X\": 0.41605183482170105,\n                \"Y\": 0.37620893120765686\n              }\n            ]\n          },\n          \"Id\": \"83e6123d-c106-441d-939a-8b0ab1d23e02\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9918212890625,\n          \"Text\": \"$900.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06432899087667465,\n              \"Height\": 0.013404691591858864,\n              \"Left\": 0.8300313949584961,\n              \"Top\": 0.361544668674469\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8300352692604065,\n                \"Y\": 0.361544668674469\n              },\n              {\n                \"X\": 0.894360363483429,\n                \"Y\": 0.3616132438182831\n              },\n              {\n                \"X\": 0.8943566679954529,\n                \"Y\": 0.3749493658542633\n              },\n              {\n                \"X\": 0.8300313949584961,\n                \"Y\": 0.3748805522918701\n              }\n            ]\n          },\n          \"Id\": \"65004765-127f-4de5-8fd9-8f214762f1de\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99138641357422,\n          \"Text\": \"Annual\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05586998537182808,\n              \"Height\": 0.01123308576643467,\n              \"Left\": 0.23906201124191284,\n              \"Top\": 0.38068875670433044\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2390667349100113,\n                \"Y\": 0.38068875670433044\n              },\n              {\n                \"X\": 0.2949320077896118,\n                \"Y\": 0.38074859976768494\n              },\n              {\n                \"X\": 0.2949274182319641,\n                \"Y\": 0.39192184805870056\n              },\n              {\n                \"X\": 0.23906201124191284,\n                \"Y\": 0.39186182618141174\n              }\n            ]\n          },\n          \"Id\": \"e2938e65-ccd5-4cef-bb50-a40949e903b4\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.88290405273438,\n          \"Text\": \"Subscription\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.09812180697917938,\n              \"Height\": 0.013889008201658726,\n              \"Left\": 0.30076631903648376,\n              \"Top\": 0.38057130575180054\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30077195167541504,\n                \"Y\": 0.38057130575180054\n              },\n              {\n                \"X\": 0.39888814091682434,\n                \"Y\": 0.38067641854286194\n              },\n              {\n                \"X\": 0.39888280630111694,\n                \"Y\": 0.3944603204727173\n              },\n              {\n                \"X\": 0.30076631903648376,\n                \"Y\": 0.39435485005378723\n              }\n            ]\n          },\n          \"Id\": \"496c6ecb-c3a8-4a16-9a43-7549fe497de4\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99053192138672,\n          \"Text\": \"to\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.01536031998693943,\n              \"Height\": 0.010714545845985413,\n              \"Left\": 0.4038650393486023,\n              \"Top\": 0.38118332624435425\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4038691818714142,\n                \"Y\": 0.38118332624435425\n              },\n              {\n                \"X\": 0.4192253649234772,\n                \"Y\": 0.38119977712631226\n              },\n              {\n                \"X\": 0.41922128200531006,\n                \"Y\": 0.39189788699150085\n              },\n              {\n                \"X\": 0.4038650393486023,\n                \"Y\": 0.39188137650489807\n              }\n            ]\n          },\n          \"Id\": \"8d29ab27-cd22-4253-8ebb-c98982761e7a\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.922607421875,\n          \"Text\": \"Standard\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07227645814418793,\n              \"Height\": 0.011433986015617847,\n              \"Left\": 0.4244684875011444,\n              \"Top\": 0.38058602809906006\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4244728088378906,\n                \"Y\": 0.38058602809906006\n              },\n              {\n                \"X\": 0.49674496054649353,\n                \"Y\": 0.3806634545326233\n              },\n              {\n                \"X\": 0.49674078822135925,\n                \"Y\": 0.39202001690864563\n              },\n              {\n                \"X\": 0.4244684875011444,\n                \"Y\": 0.3919423818588257\n              }\n            ]\n          },\n          \"Id\": \"2ae70f5d-f99f-460a-9a36-88da7de439ff\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.76029205322266,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05995458737015724,\n              \"Height\": 0.011322409845888615,\n              \"Left\": 0.5016401410102844,\n              \"Top\": 0.3806973099708557\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5016441941261292,\n                \"Y\": 0.3806973099708557\n              },\n              {\n                \"X\": 0.5615947246551514,\n                \"Y\": 0.3807615339756012\n              },\n              {\n                \"X\": 0.5615907311439514,\n                \"Y\": 0.39201971888542175\n              },\n              {\n                \"X\": 0.5016401410102844,\n                \"Y\": 0.39195531606674194\n              }\n            ]\n          },\n          \"Id\": \"d10e31c9-1fa4-476c-8c37-9a27d03c9d74\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98048400878906,\n          \"Text\": \"of\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.016116544604301453,\n              \"Height\": 0.011287365108728409,\n              \"Left\": 0.5668080449104309,\n              \"Top\": 0.3804567754268646\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5668119788169861,\n                \"Y\": 0.3804567754268646\n              },\n              {\n                \"X\": 0.5829245448112488,\n                \"Y\": 0.3804740309715271\n              },\n              {\n                \"X\": 0.5829206705093384,\n                \"Y\": 0.39174413681030273\n              },\n              {\n                \"X\": 0.5668080449104309,\n                \"Y\": 0.39172685146331787\n              }\n            ]\n          },\n          \"Id\": \"0b620391-5c51-41d7-b9dc-0ecedba50447\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.95816802978516,\n          \"Text\": \"Accounts\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07414880394935608,\n              \"Height\": 0.01122193317860365,\n              \"Left\": 0.585784375667572,\n              \"Top\": 0.38084396719932556\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5857882499694824,\n                \"Y\": 0.38084396719932556\n              },\n              {\n                \"X\": 0.6599332094192505,\n                \"Y\": 0.38092339038848877\n              },\n              {\n                \"X\": 0.6599295139312744,\n                \"Y\": 0.3920658826828003\n              },\n              {\n                \"X\": 0.585784375667572,\n                \"Y\": 0.39198625087738037\n              }\n            ]\n          },\n          \"Id\": \"157f574b-1fe0-47c5-819e-f0214c51ecfb\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97480773925781,\n          \"Text\": \"System\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.059237781912088394,\n              \"Height\": 0.01451123971492052,\n              \"Left\": 0.23994314670562744,\n              \"Top\": 0.39863449335098267\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23994924128055573,\n                \"Y\": 0.39863449335098267\n              },\n              {\n                \"X\": 0.29918092489242554,\n                \"Y\": 0.39869824051856995\n              },\n              {\n                \"X\": 0.2991750240325928,\n                \"Y\": 0.4131457507610321\n              },\n              {\n                \"X\": 0.23994314670562744,\n                \"Y\": 0.4130817949771881\n              }\n            ]\n          },\n          \"Id\": \"5fbc7cd4-f426-41f4-96e0-93ab5c77fc6d\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97392272949219,\n          \"Text\": \"4.5\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.025361496955156326,\n              \"Height\": 0.010997232049703598,\n              \"Left\": 0.1579974740743637,\n              \"Top\": 0.4535379111766815\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.15800230205059052,\n                \"Y\": 0.4535379111766815\n              },\n              {\n                \"X\": 0.18335896730422974,\n                \"Y\": 0.4535655677318573\n              },\n              {\n                \"X\": 0.1833541989326477,\n                \"Y\": 0.4645351469516754\n              },\n              {\n                \"X\": 0.1579974740743637,\n                \"Y\": 0.46450743079185486\n              }\n            ]\n          },\n          \"Id\": \"83c25a15-f3f0-4c26-a279-a3912c4a2c05\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.82219696044922,\n          \"Text\": \"ACP100T\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.079755999147892,\n              \"Height\": 0.011231093667447567,\n              \"Left\": 0.23890452086925507,\n              \"Top\": 0.4532477855682373\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.23890922963619232,\n                \"Y\": 0.4532477855682373\n              },\n              {\n                \"X\": 0.31866052746772766,\n                \"Y\": 0.4533347189426422\n              },\n              {\n                \"X\": 0.31865599751472473,\n                \"Y\": 0.46447888016700745\n              },\n              {\n                \"X\": 0.23890452086925507,\n                \"Y\": 0.4643917381763458\n              }\n            ]\n          },\n          \"Id\": \"b15b7a75-548d-4443-aeaf-0ed2c202ea52\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.94219207763672,\n          \"Text\": \"Online\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0554199181497097,\n              \"Height\": 0.011368701234459877,\n              \"Left\": 0.32360249757766724,\n              \"Top\": 0.4531913697719574\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.32360705733299255,\n                \"Y\": 0.4531913697719574\n              },\n              {\n                \"X\": 0.37902241945266724,\n                \"Y\": 0.45325174927711487\n              },\n              {\n                \"X\": 0.37901797890663147,\n                \"Y\": 0.46456006169319153\n              },\n              {\n                \"X\": 0.32360249757766724,\n                \"Y\": 0.46449950337409973\n              }\n            ]\n          },\n          \"Id\": \"21f2df3c-3b4c-478f-957e-d19f921c917f\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.95592498779297,\n          \"Text\": \"Training\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06942711770534515,\n              \"Height\": 0.014239397831261158,\n              \"Left\": 0.38421985507011414,\n              \"Top\": 0.45324093103408813\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.38422536849975586,\n                \"Y\": 0.45324093103408813\n              },\n              {\n                \"X\": 0.4536469876766205,\n                \"Y\": 0.4533165991306305\n              },\n              {\n                \"X\": 0.4536416530609131,\n                \"Y\": 0.467480331659317\n              },\n              {\n                \"X\": 0.38421985507011414,\n                \"Y\": 0.46740439534187317\n              }\n            ]\n          },\n          \"Id\": \"e6a90a92-762a-47c5-a170-3c23d5e540f9\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99088287353516,\n          \"Text\": \"$495.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06470318138599396,\n              \"Height\": 0.013239453546702862,\n              \"Left\": 0.8297285437583923,\n              \"Top\": 0.45278042554855347\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8297324180603027,\n                \"Y\": 0.45278042554855347\n              },\n              {\n                \"X\": 0.8944317102432251,\n                \"Y\": 0.45285093784332275\n              },\n              {\n                \"X\": 0.8944280743598938,\n                \"Y\": 0.466019868850708\n              },\n              {\n                \"X\": 0.8297285437583923,\n                \"Y\": 0.465949147939682\n              }\n            ]\n          },\n          \"Id\": \"8d63e05f-5bf1-4141-998e-20d92e183bc2\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97586059570312,\n          \"Text\": \"Hours\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04672930762171745,\n              \"Height\": 0.011133468709886074,\n              \"Left\": 0.2405080646276474,\n              \"Top\": 0.4720635414123535\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.24051272869110107,\n                \"Y\": 0.4720635414123535\n              },\n              {\n                \"X\": 0.28723737597465515,\n                \"Y\": 0.4721146821975708\n              },\n              {\n                \"X\": 0.28723281621932983,\n                \"Y\": 0.48319700360298157\n              },\n              {\n                \"X\": 0.2405080646276474,\n                \"Y\": 0.48314571380615234\n              }\n            ]\n          },\n          \"Id\": \"756b86f0-d9c4-402b-9e9d-7009ff905e16\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99221801757812,\n          \"Text\": \"of\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.015898121520876884,\n              \"Height\": 0.011221763677895069,\n              \"Left\": 0.29256337881088257,\n              \"Top\": 0.4718097448348999\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.2925679683685303,\n                \"Y\": 0.4718097448348999\n              },\n              {\n                \"X\": 0.3084614872932434,\n                \"Y\": 0.4718271493911743\n              },\n              {\n                \"X\": 0.3084569275379181,\n                \"Y\": 0.4830315113067627\n              },\n              {\n                \"X\": 0.29256337881088257,\n                \"Y\": 0.4830140769481659\n              }\n            ]\n          },\n          \"Id\": \"3919dc2d-f391-4dc4-b2d1-488db114b4c5\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93922424316406,\n          \"Text\": \"Training\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06381069868803024,\n              \"Height\": 0.013884293846786022,\n              \"Left\": 0.31204670667648315,\n              \"Top\": 0.4717634618282318\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.31205233931541443,\n                \"Y\": 0.4717634618282318\n              },\n              {\n                \"X\": 0.375857412815094,\n                \"Y\": 0.47183331847190857\n              },\n              {\n                \"X\": 0.37585198879241943,\n                \"Y\": 0.4856477379798889\n              },\n              {\n                \"X\": 0.31204670667648315,\n                \"Y\": 0.48557767271995544\n              }\n            ]\n          },\n          \"Id\": \"0ded4791-c254-4f72-b4ff-16ed40aac0e1\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98189544677734,\n          \"Text\": \"in\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.013098089024424553,\n              \"Height\": 0.010857603512704372,\n              \"Left\": 0.381501704454422,\n              \"Top\": 0.47202545404434204\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.38150593638420105,\n                \"Y\": 0.47202545404434204\n              },\n              {\n                \"X\": 0.3945997953414917,\n                \"Y\": 0.4720397889614105\n              },\n              {\n                \"X\": 0.39459559321403503,\n                \"Y\": 0.4828830659389496\n              },\n              {\n                \"X\": 0.381501704454422,\n                \"Y\": 0.4828687012195587\n              }\n            ]\n          },\n          \"Id\": \"c6578f82-48be-48c3-be46-66342135ff5e\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9267349243164,\n          \"Text\": \"Standard\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07208716869354248,\n              \"Height\": 0.011456034146249294,\n              \"Left\": 0.4006217122077942,\n              \"Top\": 0.4717395603656769\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.40062612295150757,\n                \"Y\": 0.4717395603656769\n              },\n              {\n                \"X\": 0.47270888090133667,\n                \"Y\": 0.4718184769153595\n              },\n              {\n                \"X\": 0.4727046489715576,\n                \"Y\": 0.48319560289382935\n              },\n              {\n                \"X\": 0.4006217122077942,\n                \"Y\": 0.48311647772789\n              }\n            ]\n          },\n          \"Id\": \"5c3cbfbf-60e5-4d32-8219-e56e54a9e7a9\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.78950500488281,\n          \"Text\": \"Version\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05993374064564705,\n              \"Height\": 0.011320835910737514,\n              \"Left\": 0.4775737226009369,\n              \"Top\": 0.4718025028705597\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4775778651237488,\n                \"Y\": 0.4718025028705597\n              },\n              {\n                \"X\": 0.5375074744224548,\n                \"Y\": 0.471868097782135\n              },\n              {\n                \"X\": 0.5375034213066101,\n                \"Y\": 0.4831233322620392\n              },\n              {\n                \"X\": 0.4775737226009369,\n                \"Y\": 0.48305755853652954\n              }\n            ]\n          },\n          \"Id\": \"28c16abd-fee9-491a-a929-504de3c70aaf\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 97.79762268066406,\n          \"Text\": \"-\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.006187605671584606,\n              \"Height\": 0.0022005673963576555,\n              \"Left\": 0.5430592894554138,\n              \"Top\": 0.47757402062416077\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5430600643157959,\n                \"Y\": 0.47757402062416077\n              },\n              {\n                \"X\": 0.5492469072341919,\n                \"Y\": 0.4775807857513428\n              },\n              {\n                \"X\": 0.5492461323738098,\n                \"Y\": 0.4797745943069458\n              },\n              {\n                \"X\": 0.5430592894554138,\n                \"Y\": 0.4797677993774414\n              }\n            ]\n          },\n          \"Id\": \"c23191b3-bf68-4d04-8bf5-f9e58f003eb1\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.61000061035156,\n          \"Text\": \"Interactive\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08204805850982666,\n              \"Height\": 0.01128290593624115,\n              \"Left\": 0.5547091364860535,\n              \"Top\": 0.47187212109565735\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5547130703926086,\n                \"Y\": 0.47187212109565735\n              },\n              {\n                \"X\": 0.6367571949958801,\n                \"Y\": 0.47196194529533386\n              },\n              {\n                \"X\": 0.6367534399032593,\n                \"Y\": 0.4831550121307373\n              },\n              {\n                \"X\": 0.5547091364860535,\n                \"Y\": 0.4830649793148041\n              }\n            ]\n          },\n          \"Id\": \"8e4e3f98-202b-4488-b492-a7ad1b26bde2\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.78712463378906,\n          \"Text\": \"Demos\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0560770183801651,\n              \"Height\": 0.011142449453473091,\n              \"Left\": 0.24013230204582214,\n              \"Top\": 0.49018609523773193\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.240136981010437,\n                \"Y\": 0.49018609523773193\n              },\n              {\n                \"X\": 0.29620930552482605,\n                \"Y\": 0.4902477562427521\n              },\n              {\n                \"X\": 0.2962047755718231,\n                \"Y\": 0.5013285279273987\n              },\n              {\n                \"X\": 0.24013230204582214,\n                \"Y\": 0.5012667179107666\n              }\n            ]\n          },\n          \"Id\": \"ac91eaff-73b7-40c0-a91b-791fccca293a\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.99524688720703,\n          \"Text\": \"with\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.031876422464847565,\n              \"Height\": 0.011005926877260208,\n              \"Left\": 0.3009801208972931,\n              \"Top\": 0.49019527435302734\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.30098459124565125,\n                \"Y\": 0.49019527435302734\n              },\n              {\n                \"X\": 0.33285653591156006,\n                \"Y\": 0.4902303218841553\n              },\n              {\n                \"X\": 0.3328521251678467,\n                \"Y\": 0.5012012124061584\n              },\n              {\n                \"X\": 0.3009801208972931,\n                \"Y\": 0.501166045665741\n              }\n            ]\n          },\n          \"Id\": \"374a4784-373b-4553-9d52-db348dfb456f\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96786499023438,\n          \"Text\": \"Q&A\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.038150910288095474,\n              \"Height\": 0.011226058006286621,\n              \"Left\": 0.3384910821914673,\n              \"Top\": 0.4901658594608307\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3384955823421478,\n                \"Y\": 0.4901658594608307\n              },\n              {\n                \"X\": 0.37664201855659485,\n                \"Y\": 0.4902077913284302\n              },\n              {\n                \"X\": 0.37663760781288147,\n                \"Y\": 0.5013918876647949\n              },\n              {\n                \"X\": 0.3384910821914673,\n                \"Y\": 0.5013498663902283\n              }\n            ]\n          },\n          \"Id\": \"52f3bfe0-c31d-4733-a72b-eed538a8a608\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8677749633789,\n          \"Text\": \"Sessions\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07204977422952652,\n              \"Height\": 0.011180424131453037,\n              \"Left\": 0.3809182047843933,\n              \"Top\": 0.49014872312545776\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3809225559234619,\n                \"Y\": 0.49014872312545776\n              },\n              {\n                \"X\": 0.45296797156333923,\n                \"Y\": 0.49022793769836426\n              },\n              {\n                \"X\": 0.45296379923820496,\n                \"Y\": 0.5013291835784912\n              },\n              {\n                \"X\": 0.3809182047843933,\n                \"Y\": 0.5012497305870056\n              }\n            ]\n          },\n          \"Id\": \"996a5713-691f-4219-94de-c8440d5b0f94\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 98.9775390625,\n          \"Text\": \"Total:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05064837634563446,\n              \"Height\": 0.012283685617148876,\n              \"Left\": 0.622478187084198,\n              \"Top\": 0.555849015712738\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6224822998046875,\n                \"Y\": 0.555849015712738\n              },\n              {\n                \"X\": 0.6731265783309937,\n                \"Y\": 0.5559055805206299\n              },\n              {\n                \"X\": 0.6731225848197937,\n                \"Y\": 0.5681326985359192\n              },\n              {\n                \"X\": 0.622478187084198,\n                \"Y\": 0.5680760145187378\n              }\n            ]\n          },\n          \"Id\": \"a7778b70-4fe0-47eb-9c8a-7e8ef9cbb372\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98596954345703,\n          \"Text\": \"$5,715.00\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.07974683493375778,\n              \"Height\": 0.01337936520576477,\n              \"Left\": 0.8145899176597595,\n              \"Top\": 0.5560894012451172\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8145938515663147,\n                \"Y\": 0.5560894012451172\n              },\n              {\n                \"X\": 0.8943367004394531,\n                \"Y\": 0.5561783909797668\n              },\n              {\n                \"X\": 0.894333004951477,\n                \"Y\": 0.5694687366485596\n              },\n              {\n                \"X\": 0.8145899176597595,\n                \"Y\": 0.569379448890686\n              }\n            ]\n          },\n          \"Id\": \"977774f1-134f-4c6d-a86e-b81cfd42eeae\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.9569320678711,\n          \"Text\": \"Payment\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.057923443615436554,\n              \"Height\": 0.011503299698233604,\n              \"Left\": 0.4296305477619171,\n              \"Top\": 0.5970935821533203\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4296348989009857,\n                \"Y\": 0.5970935821533203\n              },\n              {\n                \"X\": 0.48755398392677307,\n                \"Y\": 0.5971588492393494\n              },\n              {\n                \"X\": 0.4875497817993164,\n                \"Y\": 0.6085968613624573\n              },\n              {\n                \"X\": 0.4296305477619171,\n                \"Y\": 0.6085314154624939\n              }\n            ]\n          },\n          \"Id\": \"b8066aa4-d3cb-4b0f-95bd-21aa4dea00f1\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.8935775756836,\n          \"Text\": \"Terms:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.04386100172996521,\n              \"Height\": 0.00953566376119852,\n              \"Left\": 0.49076712131500244,\n              \"Top\": 0.5969738960266113\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4907706081867218,\n                \"Y\": 0.5969738960266113\n              },\n              {\n                \"X\": 0.5346280932426453,\n                \"Y\": 0.5970233082771301\n              },\n              {\n                \"X\": 0.5346247553825378,\n                \"Y\": 0.6065095067024231\n              },\n              {\n                \"X\": 0.49076712131500244,\n                \"Y\": 0.6064599752426147\n              }\n            ]\n          },\n          \"Id\": \"3306b35a-0d7b-4f93-814b-a98f2f5234e4\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97399139404297,\n          \"Text\": \"14\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.015291334129869938,\n              \"Height\": 0.009242424741387367,\n              \"Left\": 0.5400751829147339,\n              \"Top\": 0.5971773862838745\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5400784611701965,\n                \"Y\": 0.5971773862838745\n              },\n              {\n                \"X\": 0.5553665161132812,\n                \"Y\": 0.5971946120262146\n              },\n              {\n                \"X\": 0.5553632378578186,\n                \"Y\": 0.6064198613166809\n              },\n              {\n                \"X\": 0.5400751829147339,\n                \"Y\": 0.606402575969696\n              }\n            ]\n          },\n          \"Id\": \"2591ddae-a3fb-4436-9d43-77ab8599c6a5\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98175811767578,\n          \"Text\": \"days\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.031242623925209045,\n              \"Height\": 0.011555562727153301,\n              \"Left\": 0.5593204498291016,\n              \"Top\": 0.5970946550369263\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5593245029449463,\n                \"Y\": 0.5970946550369263\n              },\n              {\n                \"X\": 0.5905630588531494,\n                \"Y\": 0.5971298813819885\n              },\n              {\n                \"X\": 0.5905590653419495,\n                \"Y\": 0.6086502075195312\n              },\n              {\n                \"X\": 0.5593204498291016,\n                \"Y\": 0.6086149215698242\n              }\n            ]\n          },\n          \"Id\": \"80d9b18b-2100-4b6a-a957-b15f3b844f7f\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.94391632080078,\n          \"Text\": \"Payment\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0579552948474884,\n              \"Height\": 0.011417947709560394,\n              \"Left\": 0.36594143509864807,\n              \"Top\": 0.6199056506156921\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3659459352493286,\n                \"Y\": 0.6199056506156921\n              },\n              {\n                \"X\": 0.4238967299461365,\n                \"Y\": 0.6199712753295898\n              },\n              {\n                \"X\": 0.42389240860939026,\n                \"Y\": 0.6313235759735107\n              },\n              {\n                \"X\": 0.36594143509864807,\n                \"Y\": 0.6312577724456787\n              }\n            ]\n          },\n          \"Id\": \"231bf539-ab2e-4fac-9d89-5d95b2b9c26d\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.92800903320312,\n          \"Text\": \"Due\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02642866037786007,\n              \"Height\": 0.009280494414269924,\n              \"Left\": 0.4279889762401581,\n              \"Top\": 0.6198777556419373\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.42799249291419983,\n                \"Y\": 0.6198777556419373\n              },\n              {\n                \"X\": 0.4544176161289215,\n                \"Y\": 0.6199076771736145\n              },\n              {\n                \"X\": 0.45441415905952454,\n                \"Y\": 0.6291582584381104\n              },\n              {\n                \"X\": 0.4279889762401581,\n                \"Y\": 0.6291282773017883\n              }\n            ]\n          },\n          \"Id\": \"64ca3533-85f8-4571-a6d6-9d1dc0800bdc\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.82774353027344,\n          \"Text\": \"By:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02042500674724579,\n              \"Height\": 0.011667442508041859,\n              \"Left\": 0.45908477902412415,\n              \"Top\": 0.6197744011878967\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.45908913016319275,\n                \"Y\": 0.6197744011878967\n              },\n              {\n                \"X\": 0.47950977087020874,\n                \"Y\": 0.6197975277900696\n              },\n              {\n                \"X\": 0.4795054793357849,\n                \"Y\": 0.6314418315887451\n              },\n              {\n                \"X\": 0.45908477902412415,\n                \"Y\": 0.6314186453819275\n              }\n            ]\n          },\n          \"Id\": \"0cd302de-7cb9-4a8d-9b0b-a33d5cc2cf23\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.91241455078125,\n          \"Text\": \"Thursday,\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.06423255056142807,\n              \"Height\": 0.011852297931909561,\n              \"Left\": 0.48731735348701477,\n              \"Top\": 0.6196564435958862\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.487321674823761,\n                \"Y\": 0.6196564435958862\n              },\n              {\n                \"X\": 0.5515499114990234,\n                \"Y\": 0.619729220867157\n              },\n              {\n                \"X\": 0.5515457391738892,\n                \"Y\": 0.6315087676048279\n              },\n              {\n                \"X\": 0.48731735348701477,\n                \"Y\": 0.6314358115196228\n              }\n            ]\n          },\n          \"Id\": \"ff47e9ab-dd39-4b16-b1b7-2a99de3fc964\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93505859375,\n          \"Text\": \"26\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.016426293179392815,\n              \"Height\": 0.009168297983705997,\n              \"Left\": 0.5559098124504089,\n              \"Top\": 0.6199640035629272\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5559130311012268,\n                \"Y\": 0.6199640035629272\n              },\n              {\n                \"X\": 0.5723361372947693,\n                \"Y\": 0.6199826002120972\n              },\n              {\n                \"X\": 0.5723329186439514,\n                \"Y\": 0.6291322708129883\n              },\n              {\n                \"X\": 0.5559098124504089,\n                \"Y\": 0.6291136145591736\n              }\n            ]\n          },\n          \"Id\": \"d29a9857-017e-43aa-87c3-b1a00b8f3ce4\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97681427001953,\n          \"Text\": \"March\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.040463052690029144,\n              \"Height\": 0.009403877891600132,\n              \"Left\": 0.576850950717926,\n              \"Top\": 0.6197980046272278\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5768542289733887,\n                \"Y\": 0.6197980046272278\n              },\n              {\n                \"X\": 0.6173139810562134,\n                \"Y\": 0.6198438405990601\n              },\n              {\n                \"X\": 0.6173108220100403,\n                \"Y\": 0.6292018890380859\n              },\n              {\n                \"X\": 0.576850950717926,\n                \"Y\": 0.6291559338569641\n              }\n            ]\n          },\n          \"Id\": \"6103e1f9-83e4-48ef-9db6-2a2b06cfaa9b\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.89966583251953,\n          \"Text\": \"2020\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.0327666811645031,\n              \"Height\": 0.009285420179367065,\n              \"Left\": 0.6213492751121521,\n              \"Top\": 0.6198769211769104\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6213524341583252,\n                \"Y\": 0.6198769211769104\n              },\n              {\n                \"X\": 0.6541159749031067,\n                \"Y\": 0.6199139952659607\n              },\n              {\n                \"X\": 0.6541129350662231,\n                \"Y\": 0.6291623115539551\n              },\n              {\n                \"X\": 0.6213492751121521,\n                \"Y\": 0.6291251182556152\n              }\n            ]\n          },\n          \"Id\": \"8e46d335-0e77-4286-bad9-eb2a7df0f03e\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.97369384765625,\n          \"Text\": \"154-164\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.071389339864254,\n              \"Height\": 0.011960849165916443,\n              \"Left\": 0.40433797240257263,\n              \"Top\": 0.9256157875061035\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.40434253215789795,\n                \"Y\": 0.9256157875061035\n              },\n              {\n                \"X\": 0.47572728991508484,\n                \"Y\": 0.9257023334503174\n              },\n              {\n                \"X\": 0.47572290897369385,\n                \"Y\": 0.9375766515731812\n              },\n              {\n                \"X\": 0.40433797240257263,\n                \"Y\": 0.937489926815033\n              }\n            ]\n          },\n          \"Id\": \"24fe7483-9139-4349-ad81-852e4fd5027c\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98919677734375,\n          \"Text\": \"The\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03360738605260849,\n              \"Height\": 0.01215637568384409,\n              \"Left\": 0.48070216178894043,\n              \"Top\": 0.9255297780036926\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.4807066321372986,\n                \"Y\": 0.9255297780036926\n              },\n              {\n                \"X\": 0.5143095254898071,\n                \"Y\": 0.9255704879760742\n              },\n              {\n                \"X\": 0.5143051743507385,\n                \"Y\": 0.9376861453056335\n              },\n              {\n                \"X\": 0.48070216178894043,\n                \"Y\": 0.9376453161239624\n              }\n            ]\n          },\n          \"Id\": \"e7e9e719-04cd-4ef3-9e71-1b13761f6aa9\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 94.74392700195312,\n          \"Text\": \"Embarcadero,\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.12152963131666183,\n              \"Height\": 0.014111686497926712,\n              \"Left\": 0.5209455490112305,\n              \"Top\": 0.9254343509674072\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5209505558013916,\n                \"Y\": 0.9254343509674072\n              },\n              {\n                \"X\": 0.6424751877784729,\n                \"Y\": 0.9255815744400024\n              },\n              {\n                \"X\": 0.6424705386161804,\n                \"Y\": 0.9395460486412048\n              },\n              {\n                \"X\": 0.5209455490112305,\n                \"Y\": 0.9393983483314514\n              }\n            ]\n          },\n          \"Id\": \"0684b5ff-2f0a-4ae3-9f91-b30ffe0a0f7c\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.98912811279297,\n          \"Text\": \"San\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03370856121182442,\n              \"Height\": 0.012364906258881092,\n              \"Left\": 0.6544749736785889,\n              \"Top\": 0.9254574179649353\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6544790863990784,\n                \"Y\": 0.9254574179649353\n              },\n              {\n                \"X\": 0.6881835460662842,\n                \"Y\": 0.9254982471466064\n              },\n              {\n                \"X\": 0.6881795525550842,\n                \"Y\": 0.9378222823143005\n              },\n              {\n                \"X\": 0.6544749736785889,\n                \"Y\": 0.9377813339233398\n              }\n            ]\n          },\n          \"Id\": \"311b9a8f-b098-4478-b251-976fb6be2332\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 93.71857452392578,\n          \"Text\": \"Francisco,\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.08849701285362244,\n              \"Height\": 0.014178624376654625,\n              \"Left\": 0.6949774026870728,\n              \"Top\": 0.9254417419433594\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6949819326400757,\n                \"Y\": 0.9254417419433594\n              },\n              {\n                \"X\": 0.7834744453430176,\n                \"Y\": 0.9255489706993103\n              },\n              {\n                \"X\": 0.7834701538085938,\n                \"Y\": 0.9396203756332397\n              },\n              {\n                \"X\": 0.6949774026870728,\n                \"Y\": 0.9395128488540649\n              }\n            ]\n          },\n          \"Id\": \"790e2633-ba9c-4da7-a604-661fb57f030e\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.79402923583984,\n          \"Text\": \"CA\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02642715349793434,\n              \"Height\": 0.011990079656243324,\n              \"Left\": 0.7960997819900513,\n              \"Top\": 0.9255207777023315\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.7961033582687378,\n                \"Y\": 0.9255207777023315\n              },\n              {\n                \"X\": 0.8225269317626953,\n                \"Y\": 0.9255527853965759\n              },\n              {\n                \"X\": 0.8225234150886536,\n                \"Y\": 0.9375108480453491\n              },\n              {\n                \"X\": 0.7960997819900513,\n                \"Y\": 0.9374787211418152\n              }\n            ]\n          },\n          \"Id\": \"c3a729df-3e49-46ca-8adb-a0525bd2786d\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.96778106689453,\n          \"Text\": \"94105\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.05393526330590248,\n              \"Height\": 0.012009574100375175,\n              \"Left\": 0.8272284269332886,\n              \"Top\": 0.925701379776001\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.8272318840026855,\n                \"Y\": 0.925701379776001\n              },\n              {\n                \"X\": 0.8811636567115784,\n                \"Y\": 0.9257667660713196\n              },\n              {\n                \"X\": 0.881160318851471,\n                \"Y\": 0.9377109408378601\n              },\n              {\n                \"X\": 0.8272284269332886,\n                \"Y\": 0.937645435333252\n              }\n            ]\n          },\n          \"Id\": \"56a3cb82-3fcd-47b4-831d-4f7726154ab0\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.69587707519531,\n          \"Text\": \"Tel:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.03044295124709606,\n              \"Height\": 0.01241439487785101,\n              \"Left\": 0.359042227268219,\n              \"Top\": 0.9457565546035767\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.3590471148490906,\n                \"Y\": 0.9457565546035767\n              },\n              {\n                \"X\": 0.3894851803779602,\n                \"Y\": 0.945793628692627\n              },\n              {\n                \"X\": 0.3894803524017334,\n                \"Y\": 0.9581709504127502\n              },\n              {\n                \"X\": 0.359042227268219,\n                \"Y\": 0.9581338167190552\n              }\n            ]\n          },\n          \"Id\": \"33c7f592-bb06-4e9e-8fab-197ff37721ed\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.74925231933594,\n          \"Text\": \"(1)\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.02307441085577011,\n              \"Height\": 0.01503786351531744,\n              \"Left\": 0.3960929811000824,\n              \"Top\": 0.9458773136138916\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.396098792552948,\n                \"Y\": 0.9458773136138916\n              },\n              {\n                \"X\": 0.4191673994064331,\n                \"Y\": 0.9459053874015808\n              },\n              {\n                \"X\": 0.4191616475582123,\n                \"Y\": 0.960915207862854\n              },\n              {\n                \"X\": 0.3960929811000824,\n                \"Y\": 0.9608870148658752\n              }\n            ]\n          },\n          \"Id\": \"ad38b933-3ecf-4873-acfd-f3c6287fb63b\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.93244171142578,\n          \"Text\": \"555-123-1234\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.121487557888031,\n              \"Height\": 0.012810113839805126,\n              \"Left\": 0.42497098445892334,\n              \"Top\": 0.9459604024887085\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.42497581243515015,\n                \"Y\": 0.9459604024887085\n              },\n              {\n                \"X\": 0.5464585423469543,\n                \"Y\": 0.9461082816123962\n              },\n              {\n                \"X\": 0.5464540719985962,\n                \"Y\": 0.9587705135345459\n              },\n              {\n                \"X\": 0.42497098445892334,\n                \"Y\": 0.9586222767829895\n              }\n            ]\n          },\n          \"Id\": \"58bfc389-4fb7-462b-b4c9-1732f5cdc8be\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 99.77940368652344,\n          \"Text\": \"Email:\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.052829209715127945,\n              \"Height\": 0.012457424774765968,\n              \"Left\": 0.5584515929222107,\n              \"Top\": 0.9456996321678162\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.5584559440612793,\n                \"Y\": 0.9456996321678162\n              },\n              {\n                \"X\": 0.6112807989120483,\n                \"Y\": 0.9457639455795288\n              },\n              {\n                \"X\": 0.6112766265869141,\n                \"Y\": 0.9581570625305176\n              },\n              {\n                \"X\": 0.5584515929222107,\n                \"Y\": 0.9580926299095154\n              }\n            ]\n          },\n          \"Id\": \"ca2f9f35-e265-478f-aabe-179089e3af08\",\n          \"Page\": 2\n        },\n        {\n          \"BlockType\": \"WORD\",\n          \"Confidence\": 96.4967041015625,\n          \"Text\": \"admin@metalegalfinance.com\",\n          \"TextType\": \"PRINTED\",\n          \"Geometry\": {\n            \"BoundingBox\": {\n              \"Width\": 0.2652501165866852,\n              \"Height\": 0.015309835784137249,\n              \"Left\": 0.6175593733787537,\n              \"Top\": 0.9456037282943726\n            },\n            \"Polygon\": [\n              {\n                \"X\": 0.6175644397735596,\n                \"Y\": 0.9456037282943726\n              },\n              {\n                \"X\": 0.8828095197677612,\n                \"Y\": 0.9459265470504761\n              },\n              {\n                \"X\": 0.8828052878379822,\n                \"Y\": 0.9609135389328003\n              },\n              {\n                \"X\": 0.6175593733787537,\n                \"Y\": 0.9605897665023804\n              }\n            ]\n          },\n          \"Id\": \"ae2161f8-f99f-4a8c-8095-407a5f38049c\",\n          \"Page\": 2\n        }\n      ]\n    }\n  ],\n  \"AnalyzeExpenseModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-python/tests/data/bounding_box_issue.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1.0,\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 3.9670800333624356e-07\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 1.4808846344749327e-06,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"c4255022-6c2b-4087-a2a8-b5a9973f7ed9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7ca47c7c-4594-499b-b87e-c55af3ed5760\",\n                        \"845dabbf-fcc2-4652-9331-d32136697b72\",\n                        \"4017cba7-ffd7-4013-ad3e-e361fba52f7b\",\n                        \"6ac1fe0b-5cbb-48c8-8be9-8137392b4276\",\n                        \"fe2ebdd2-c862-49cf-9d36-20e52b7d6522\",\n                        \"55145ca8-47df-4531-bbcd-97252d242cb1\",\n                        \"c999f203-0ac7-40dc-b3fd-be9ffce8bbb4\",\n                        \"779d9725-83b2-4481-8560-7ad3f8d4f9c0\",\n                        \"f5e28deb-85bc-4af6-9134-1774aa3b41b8\",\n                        \"196a3616-937d-4a1e-bb8a-4a0bd559adf5\",\n                        \"f8661c59-d859-4cee-8fc2-be89dca7009c\",\n                        \"c18ae14f-cdc4-4480-871c-3b98434a9c13\",\n                        \"2b0c339d-f168-40bf-b8aa-b10eedf0fcea\",\n                        \"dc7ef9a1-1b31-4bc9-b55b-314c1638e569\",\n                        \"fc62474a-8421-453b-b88a-fffe5a05b3aa\",\n                        \"3373a3ab-1c31-4389-bba3-8e2ba7b3a67f\",\n                        \"f9c483ac-3c9d-48fd-9fff-d99b6d01a8fc\",\n                        \"333da04d-d64f-4948-bf73-73a87fc16d67\",\n                        \"db452251-c1da-40bd-8e59-6244f91e9ee1\",\n                        \"bf8ff441-3f05-4796-a7b4-e0eb0d93249d\",\n                        \"4d6c048c-e471-4458-b853-00e4d2cc0d78\",\n                        \"b76f881a-5179-470a-95ff-d440a7dbb62f\",\n                        \"83c3d593-0862-4ec2-a684-358b6f58d328\",\n                        \"acbdeb2f-b02d-42cf-ab47-14d342290208\",\n                        \"83dd3959-a1ee-4fa9-bd76-5cd5beca7be5\",\n                        \"91b5076b-59f9-45b7-99cf-daa818ffe816\",\n                        \"020d011d-82b6-4f4d-bf8a-bb576ddb80f0\",\n                        \"8c6320cb-d2ad-4cd2-a80b-97918d61eddf\",\n                        \"d70570fa-345c-4e70-bdbf-a7522d760352\",\n                        \"2337a425-0e00-4e42-9c8e-c7fc6a76b65d\",\n                        \"2d94c810-bbe3-497e-bf2f-714051e3270b\",\n                        \"213cce30-3bed-4371-93ee-32438d27a39f\",\n                        \"d2a91b52-d6ea-4388-afe1-c2bdc6e56eaf\",\n                        \"a81a4188-b654-4cde-8902-9c0bec408401\",\n                        \"a5459d05-d821-4b41-8fc4-9d3f62fe7b25\",\n                        \"a9101977-9ea1-4dec-9854-6605ddb57fd6\",\n                        \"2995c266-fd9a-4a96-80cf-caa7fb1c5196\",\n                        \"6e6c013e-4f6c-4d91-b007-566b594fc9d9\",\n                        \"4cb16992-7d12-40c5-a11c-ac22ba31847c\",\n                        \"8c8199c7-f6e2-459a-bf5d-aebf53ab4c8e\",\n                        \"a740ca04-9695-4de6-b16b-d672754b1f98\",\n                        \"c851ca0e-14d4-4533-a7bd-dde7132f36cb\",\n                        \"ff1f38b9-5a0f-4fac-b337-bb3ea195f05f\",\n                        \"af19db5f-ef7c-487a-bdea-a1a1a4997520\",\n                        \"3b625096-0ea4-4da5-a1fb-d6d96958b2cc\",\n                        \"571ec6a7-f621-4018-b934-b10da4239149\",\n                        \"9add169f-7019-4dfb-b993-2f0904ef42c3\",\n                        \"85339464-4d38-4074-ba90-c1241bec9873\",\n                        \"5e320188-72cc-4228-9de2-bf6d5c722805\",\n                        \"4180f9ce-1616-4fa7-b7c8-38603fc5ed58\",\n                        \"2ddba349-5b98-4b60-9bba-fa1ca946b4eb\",\n                        \"0d928485-a10d-4c57-a9c6-51feaec8705e\",\n                        \"06bfe7af-e82b-4d23-9969-4e192b866d39\",\n                        \"62b89fb7-14ae-488d-b1af-429b4a225606\",\n                        \"2c19db57-eeb3-49f8-aea7-53899a0bd6dd\",\n                        \"896a0152-7fcd-4053-bd4a-08f4146b3e2c\",\n                        \"26a868ce-490b-4906-a8ae-0222557a41bb\",\n                        \"0184c280-53e5-4a8c-991f-8ef4eba559a7\",\n                        \"7d9312b3-47ad-4efa-9505-366a17f40cdd\",\n                        \"517c9a59-4add-478f-8b1c-a18fa2cc55c5\",\n                        \"3518ce40-51b0-4613-ae5f-e8906824addc\",\n                        \"37358f19-1952-485b-96a5-51d005372b23\",\n                        \"6458221d-b2c6-4ef1-9445-899a35c8fbb3\",\n                        \"387fd35f-40ca-43fc-ab1a-39e4d53c7531\",\n                        \"f23d3539-00d7-44e6-872e-624bc4ce8f05\",\n                        \"2b7a67c0-74a6-4c99-90ff-34532b96ed9a\",\n                        \"bbd55ce8-8f95-440f-ae1f-9873611d7855\",\n                        \"6044ba54-10b3-482d-8dd0-87658e7034ad\",\n                        \"9b08dbd7-e384-4753-9348-c6629c24d147\",\n                        \"787fe5a9-8e88-4fdf-81d8-71e09a5cb95e\",\n                        \"087bfc91-42d7-454d-a865-a9675ddf7b7e\",\n                        \"c39dd0dc-bd7a-4ba4-98c3-8162af612f03\",\n                        \"7623af91-e23f-4052-8682-0c5538023c2c\",\n                        \"fe1a5ecb-75f1-4ee5-ae67-2d793a9202f8\",\n                        \"d3adff48-f4b7-4dc4-b1aa-a5f6861aeb2a\",\n                        \"88574ef0-a805-478e-8877-17d34db00a7c\",\n                        \"179cbd6b-f8d2-4e4b-a7b9-939760eb5dff\",\n                        \"32350cea-49dc-4405-9ec3-83c9e1370230\",\n                        \"f69d17bc-e000-461a-8a84-301a16dd54d1\",\n                        \"4ed568b5-f127-4a40-8174-3dc78632548c\",\n                        \"fbdf1dda-45d2-410a-8f0c-c3bc219605dd\",\n                        \"05924c12-0c6b-4440-97d7-50eef22f55f4\",\n                        \"e74e091d-79a0-45a7-bed7-90941c5efdaa\",\n                        \"742a12fc-8a73-4aed-b217-3752647424c4\",\n                        \"597b69c8-e1d6-4b21-94f9-9fcbaff3968e\",\n                        \"5c860e58-deb4-4c24-8282-2394a2c535c0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95110321044922,\n            \"Text\": \"a Employee's social security number\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20594865083694458,\n                    \"Height\": 0.018970519304275513,\n                    \"Left\": 0.2390556037425995,\n                    \"Top\": 0.03171789273619652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2390556037425995,\n                        \"Y\": 0.03180507943034172\n                    },\n                    {\n                        \"X\": 0.4449843764305115,\n                        \"Y\": 0.03171789273619652\n                    },\n                    {\n                        \"X\": 0.44500425457954407,\n                        \"Y\": 0.050601664930582047\n                    },\n                    {\n                        \"X\": 0.23907440900802612,\n                        \"Y\": 0.05068841204047203\n                    }\n                ]\n            },\n            \"Id\": \"7ca47c7c-4594-499b-b87e-c55af3ed5760\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b592ed40-3aad-4ddc-9861-ba0ba333941d\",\n                        \"07a03c9c-ca68-4435-8871-ada806d1025d\",\n                        \"02283f00-40fa-4ecf-805f-bcebef675274\",\n                        \"7ff5667d-aa23-4e30-9d87-612be2934bd6\",\n                        \"37406464-c5a5-4c69-9fbc-27d0740ca0c6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77874755859375,\n            \"Text\": \"2222-2222-2222\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11555629968643188,\n                    \"Height\": 0.018789883702993393,\n                    \"Left\": 0.31066638231277466,\n                    \"Top\": 0.0594559907913208\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31066638231277466,\n                        \"Y\": 0.05950454622507095\n                    },\n                    {\n                        \"X\": 0.42620304226875305,\n                        \"Y\": 0.0594559907913208\n                    },\n                    {\n                        \"X\": 0.42622268199920654,\n                        \"Y\": 0.07819756120443344\n                    },\n                    {\n                        \"X\": 0.3106854259967804,\n                        \"Y\": 0.07824587821960449\n                    }\n                ]\n            },\n            \"Id\": \"845dabbf-fcc2-4652-9331-d32136697b72\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4e56f6e-acb6-4c22-9742-1ddba0b9410c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88455963134766,\n            \"Text\": \"OMB No. 1545-0008\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11428142338991165,\n                    \"Height\": 0.015435800887644291,\n                    \"Left\": 0.46987608075141907,\n                    \"Top\": 0.060206592082977295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46987608075141907,\n                        \"Y\": 0.06025460362434387\n                    },\n                    {\n                        \"X\": 0.5841407179832458,\n                        \"Y\": 0.060206592082977295\n                    },\n                    {\n                        \"X\": 0.5841574668884277,\n                        \"Y\": 0.07559458166360855\n                    },\n                    {\n                        \"X\": 0.46989238262176514,\n                        \"Y\": 0.07564239203929901\n                    }\n                ]\n            },\n            \"Id\": \"4017cba7-ffd7-4013-ad3e-e361fba52f7b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"16c752c0-1c5c-49d1-b494-b5429be0ffc2\",\n                        \"b56a6e28-8bb9-4602-a8f0-4341a97e9f77\",\n                        \"0ad715e6-9365-4ded-af8e-9f096cc17989\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88668823242188,\n            \"Text\": \"b Employer identification number (EIN)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2148652821779251,\n                    \"Height\": 0.018738875165581703,\n                    \"Left\": 0.0369596965610981,\n                    \"Top\": 0.0937529057264328\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0369596965610981,\n                        \"Y\": 0.09384236484766006\n                    },\n                    {\n                        \"X\": 0.2518063485622406,\n                        \"Y\": 0.0937529057264328\n                    },\n                    {\n                        \"X\": 0.2518249750137329,\n                        \"Y\": 0.1124027669429779\n                    },\n                    {\n                        \"X\": 0.036977216601371765,\n                        \"Y\": 0.11249177902936935\n                    }\n                ]\n            },\n            \"Id\": \"6ac1fe0b-5cbb-48c8-8be9-8137392b4276\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"71d0398f-800c-46a5-a32b-b2d5cf0ed14c\",\n                        \"66b81e6c-05fd-4a92-8a01-2a66e0fb053d\",\n                        \"6adeb781-48ae-48bd-8403-1cb43d0db184\",\n                        \"cc359c90-c9e3-48c4-82e2-dc4dcb07241e\",\n                        \"49301fd4-7bcf-4d7e-8181-647d8d9bdb37\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75132751464844,\n            \"Text\": \"1 Wages, tips, other compensation\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1825590878725052,\n                    \"Height\": 0.018224481493234634,\n                    \"Left\": 0.5576383471488953,\n                    \"Top\": 0.09413457661867142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5576383471488953,\n                        \"Y\": 0.09421057254076004\n                    },\n                    {\n                        \"X\": 0.740176796913147,\n                        \"Y\": 0.09413457661867142\n                    },\n                    {\n                        \"X\": 0.7401974201202393,\n                        \"Y\": 0.11228343099355698\n                    },\n                    {\n                        \"X\": 0.5576580166816711,\n                        \"Y\": 0.11235905438661575\n                    }\n                ]\n            },\n            \"Id\": \"fe2ebdd2-c862-49cf-9d36-20e52b7d6522\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8a2e0a51-7089-42f9-b2c4-dca21db03918\",\n                        \"852183e4-64bb-4345-a0e3-ea7f172518a0\",\n                        \"4925c956-82ca-4dcb-909a-46317b168e53\",\n                        \"05c3abe7-ff18-4fe5-8bec-c104b17a26e9\",\n                        \"30359833-aeb0-4016-9e6e-dd9449c258a2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81079864501953,\n            \"Text\": \"2 VI income tax withheld\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1415257304906845,\n                    \"Height\": 0.015330611728131771,\n                    \"Left\": 0.7721653580665588,\n                    \"Top\": 0.09390366822481155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7721653580665588,\n                        \"Y\": 0.09396258741617203\n                    },\n                    {\n                        \"X\": 0.9136730432510376,\n                        \"Y\": 0.09390366822481155\n                    },\n                    {\n                        \"X\": 0.9136911034584045,\n                        \"Y\": 0.10917560756206512\n                    },\n                    {\n                        \"X\": 0.772182822227478,\n                        \"Y\": 0.1092342808842659\n                    }\n                ]\n            },\n            \"Id\": \"55145ca8-47df-4531-bbcd-97252d242cb1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bdc1958f-896e-4c01-85a3-1f165c981b8a\",\n                        \"26eaa694-f52e-40ff-99c4-56f60310662f\",\n                        \"5247173e-c1d2-476a-8732-17401ef2b486\",\n                        \"a315ec51-7126-4510-9bbc-51218f326920\",\n                        \"7972729c-31eb-4113-904c-098f6da9f428\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91834259033203,\n            \"Text\": \"333333333333\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0820305272936821,\n                    \"Height\": 0.015171004459261894,\n                    \"Left\": 0.25816723704338074,\n                    \"Top\": 0.1209290623664856\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25816723704338074,\n                        \"Y\": 0.1209629625082016\n                    },\n                    {\n                        \"X\": 0.34018227458000183,\n                        \"Y\": 0.1209290623664856\n                    },\n                    {\n                        \"X\": 0.34019777178764343,\n                        \"Y\": 0.13606630265712738\n                    },\n                    {\n                        \"X\": 0.2581824064254761,\n                        \"Y\": 0.13610006868839264\n                    }\n                ]\n            },\n            \"Id\": \"c999f203-0ac7-40dc-b3fd-be9ffce8bbb4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a65396ab-952f-4fbf-9d84-172666cd5139\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 89.95465850830078,\n            \"Text\": \"$5,00.000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054881032556295395,\n                    \"Height\": 0.01813175529241562,\n                    \"Left\": 0.6387309432029724,\n                    \"Top\": 0.12367390096187592\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6387309432029724,\n                        \"Y\": 0.12369655817747116\n                    },\n                    {\n                        \"X\": 0.6935916543006897,\n                        \"Y\": 0.12367390096187592\n                    },\n                    {\n                        \"X\": 0.6936119794845581,\n                        \"Y\": 0.14178310334682465\n                    },\n                    {\n                        \"X\": 0.6387510299682617,\n                        \"Y\": 0.14180564880371094\n                    }\n                ]\n            },\n            \"Id\": \"779d9725-83b2-4481-8560-7ad3f8d4f9c0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2820ffb8-57be-42f1-952e-12fe8531a83b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 79.06787109375,\n            \"Text\": \"$5,00.000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05478348210453987,\n                    \"Height\": 0.018087362870573997,\n                    \"Left\": 0.8375629186630249,\n                    \"Top\": 0.12173359096050262\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8375629186630249,\n                        \"Y\": 0.12175621837377548\n                    },\n                    {\n                        \"X\": 0.8923251032829285,\n                        \"Y\": 0.12173359096050262\n                    },\n                    {\n                        \"X\": 0.8923463821411133,\n                        \"Y\": 0.13979843258857727\n                    },\n                    {\n                        \"X\": 0.8375838994979858,\n                        \"Y\": 0.13982094824314117\n                    }\n                ]\n            },\n            \"Id\": \"f5e28deb-85bc-4af6-9134-1774aa3b41b8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e5c221f1-b7c0-434f-bde1-23c9cc4bd9d6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.04056549072266,\n            \"Text\": \"c Employer's name, address, and ZIP code\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2412308156490326,\n                    \"Height\": 0.01859581470489502,\n                    \"Left\": 0.03690856322646141,\n                    \"Top\": 0.15585820376873016\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03690856322646141,\n                        \"Y\": 0.1559569537639618\n                    },\n                    {\n                        \"X\": 0.278120756149292,\n                        \"Y\": 0.15585820376873016\n                    },\n                    {\n                        \"X\": 0.2781393826007843,\n                        \"Y\": 0.17435577511787415\n                    },\n                    {\n                        \"X\": 0.036925941705703735,\n                        \"Y\": 0.17445401847362518\n                    }\n                ]\n            },\n            \"Id\": \"196a3616-937d-4a1e-bb8a-4a0bd559adf5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"709a6de4-be0a-43c1-8719-1424af9418ec\",\n                        \"4b78d56a-a94e-46f6-91e7-61fc813efed1\",\n                        \"53a6f4b7-5755-415b-9145-3f7fc0074913\",\n                        \"26fe5348-16a7-4403-8233-747648f0d519\",\n                        \"c35e1377-86d4-4b6f-b917-09928c26227b\",\n                        \"90199fd1-0daf-42fb-ba5b-56e75e6aca5a\",\n                        \"c19241c9-73b2-48a5-a787-d50cd75c0d48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92634582519531,\n            \"Text\": \"3 Social security wages\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13686805963516235,\n                    \"Height\": 0.01872955821454525,\n                    \"Left\": 0.557341992855072,\n                    \"Top\": 0.15589481592178345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.557341992855072,\n                        \"Y\": 0.15595084428787231\n                    },\n                    {\n                        \"X\": 0.6941890716552734,\n                        \"Y\": 0.15589481592178345\n                    },\n                    {\n                        \"X\": 0.6942100524902344,\n                        \"Y\": 0.17456863820552826\n                    },\n                    {\n                        \"X\": 0.5573621988296509,\n                        \"Y\": 0.17462436854839325\n                    }\n                ]\n            },\n            \"Id\": \"f8661c59-d859-4cee-8fc2-be89dca7009c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f380da0e-ffcd-4565-a1df-aaecca1fb76e\",\n                        \"7c03ed98-4f68-4d61-ad7c-303069e66003\",\n                        \"ecf8dcf8-e9f7-477b-a334-0791d481e78e\",\n                        \"e013732e-b125-46c8-ad13-e28074eb4c4a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95802307128906,\n            \"Text\": \"4 Social security tax withheld\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16753306984901428,\n                    \"Height\": 0.018643207848072052,\n                    \"Left\": 0.7719838619232178,\n                    \"Top\": 0.15577787160873413\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7719838619232178,\n                        \"Y\": 0.15584644675254822\n                    },\n                    {\n                        \"X\": 0.939494788646698,\n                        \"Y\": 0.15577787160873413\n                    },\n                    {\n                        \"X\": 0.9395169019699097,\n                        \"Y\": 0.17435285449028015\n                    },\n                    {\n                        \"X\": 0.7720050811767578,\n                        \"Y\": 0.17442108690738678\n                    }\n                ]\n            },\n            \"Id\": \"c18ae14f-cdc4-4480-871c-3b98434a9c13\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"41e31918-9b77-4eda-b5db-df458bbabd98\",\n                        \"f4c509c4-accc-4e77-bc15-03c9b257bf1f\",\n                        \"fa58e2b7-b1f6-470c-aa7e-e333b1a36f21\",\n                        \"b463a5cb-a01f-4dda-ad98-818d946f4dbb\",\n                        \"4f561504-de72-4407-9c91-b1af25e24b4f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.8019027709961,\n            \"Text\": \"$7,00.0000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07848916202783585,\n                    \"Height\": 0.022453732788562775,\n                    \"Left\": 0.6318721771240234,\n                    \"Top\": 0.18349480628967285\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6318721771240234,\n                        \"Y\": 0.1835266798734665\n                    },\n                    {\n                        \"X\": 0.7103360891342163,\n                        \"Y\": 0.18349480628967285\n                    },\n                    {\n                        \"X\": 0.7103613615036011,\n                        \"Y\": 0.2059168666601181\n                    },\n                    {\n                        \"X\": 0.63189697265625,\n                        \"Y\": 0.20594854652881622\n                    }\n                ]\n            },\n            \"Id\": \"2b0c339d-f168-40bf-b8aa-b10eedf0fcea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"aed76a43-e65a-4daa-b95c-a94c72ed3589\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 89.64093017578125,\n            \"Text\": \"$5,00.000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05515044555068016,\n                    \"Height\": 0.01825891248881817,\n                    \"Left\": 0.8397581577301025,\n                    \"Top\": 0.18015848100185394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8397581577301025,\n                        \"Y\": 0.1801808923482895\n                    },\n                    {\n                        \"X\": 0.8948871493339539,\n                        \"Y\": 0.18015848100185394\n                    },\n                    {\n                        \"X\": 0.894908607006073,\n                        \"Y\": 0.19839508831501007\n                    },\n                    {\n                        \"X\": 0.8397793769836426,\n                        \"Y\": 0.19841739535331726\n                    }\n                ]\n            },\n            \"Id\": \"dc7ef9a1-1b31-4bc9-b55b-314c1638e569\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"32f0e783-e7cc-4a74-8f74-ef3b7745d503\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55911254882812,\n            \"Text\": \"100 Main Street, Anytown, USA 63000001\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2685392498970032,\n                    \"Height\": 0.0208757221698761,\n                    \"Left\": 0.08053677529096603,\n                    \"Top\": 0.20183522999286652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08053677529096603,\n                        \"Y\": 0.2019437700510025\n                    },\n                    {\n                        \"X\": 0.3490546941757202,\n                        \"Y\": 0.20183522999286652\n                    },\n                    {\n                        \"X\": 0.3490760028362274,\n                        \"Y\": 0.22260303795337677\n                    },\n                    {\n                        \"X\": 0.08055654168128967,\n                        \"Y\": 0.22271095216274261\n                    }\n                ]\n            },\n            \"Id\": \"fc62474a-8421-453b-b88a-fffe5a05b3aa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ec8bdcfd-9c28-4d48-8bf3-69bdb56441b0\",\n                        \"29c97c26-3eb4-4640-852d-4d7b29d20469\",\n                        \"c53c53d5-737c-44d1-a757-ce35b68da198\",\n                        \"ad580d11-5141-4c0a-a53a-8b1b6c45ccf7\",\n                        \"1910d7b5-6d8d-493e-9e1b-c59b8688c1e0\",\n                        \"657c8c31-d5eb-46b4-b1be-cd54c6a494a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9640884399414,\n            \"Text\": \"5 Medicare wages and tips\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15545900166034698,\n                    \"Height\": 0.018444523215293884,\n                    \"Left\": 0.557316780090332,\n                    \"Top\": 0.21811415255069733\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.557316780090332,\n                        \"Y\": 0.2181766927242279\n                    },\n                    {\n                        \"X\": 0.712755024433136,\n                        \"Y\": 0.21811415255069733\n                    },\n                    {\n                        \"X\": 0.7127757668495178,\n                        \"Y\": 0.2364964485168457\n                    },\n                    {\n                        \"X\": 0.557336688041687,\n                        \"Y\": 0.2365586757659912\n                    }\n                ]\n            },\n            \"Id\": \"3373a3ab-1c31-4389-bba3-8e2ba7b3a67f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"479053e3-3c93-4b99-9420-7d817fb87bda\",\n                        \"d04acb93-3128-4f47-8d74-f14ec19577c0\",\n                        \"cd4087af-ee11-4523-b421-c5b1cb450f28\",\n                        \"6e51a603-fcf5-4c59-902c-9533354739f0\",\n                        \"c6ca9ad9-f857-49e7-97e9-ca4e20f0d1de\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96514129638672,\n            \"Text\": \"6 Medicare tax withheld\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13836252689361572,\n                    \"Height\": 0.015520169399678707,\n                    \"Left\": 0.7721938490867615,\n                    \"Top\": 0.21780279278755188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7721938490867615,\n                        \"Y\": 0.2178584635257721\n                    },\n                    {\n                        \"X\": 0.9105380773544312,\n                        \"Y\": 0.21780279278755188\n                    },\n                    {\n                        \"X\": 0.9105563759803772,\n                        \"Y\": 0.23326753079891205\n                    },\n                    {\n                        \"X\": 0.7722115516662598,\n                        \"Y\": 0.23332296311855316\n                    }\n                ]\n            },\n            \"Id\": \"f9c483ac-3c9d-48fd-9fff-d99b6d01a8fc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ff466e92-b38a-41fe-8201-85bc2e822f40\",\n                        \"0357e2e8-6d95-4e26-b3d2-86a761ae028a\",\n                        \"2c7e95b2-7bf1-44ef-913a-bef2facc422a\",\n                        \"84eb79e5-7015-4c4e-af3b-d72a95c8365a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.9689712524414,\n            \"Text\": \"$3,00.000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054877687245607376,\n                    \"Height\": 0.018221914768218994,\n                    \"Left\": 0.6451579928398132,\n                    \"Top\": 0.24676747620105743\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6451579928398132,\n                        \"Y\": 0.2467893660068512\n                    },\n                    {\n                        \"X\": 0.7000152468681335,\n                        \"Y\": 0.24676747620105743\n                    },\n                    {\n                        \"X\": 0.7000356912612915,\n                        \"Y\": 0.26496759057044983\n                    },\n                    {\n                        \"X\": 0.6451781392097473,\n                        \"Y\": 0.26498937606811523\n                    }\n                ]\n            },\n            \"Id\": \"333da04d-d64f-4948-bf73-73a87fc16d67\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e777867e-5eb4-425c-9ab9-330c249a4859\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.9110336303711,\n            \"Text\": \"$5,00.000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05484149977564812,\n                    \"Height\": 0.018175270408391953,\n                    \"Left\": 0.8458554744720459,\n                    \"Top\": 0.24969416856765747\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8458554744720459,\n                        \"Y\": 0.24971602857112885\n                    },\n                    {\n                        \"X\": 0.9006755948066711,\n                        \"Y\": 0.24969416856765747\n                    },\n                    {\n                        \"X\": 0.9006969928741455,\n                        \"Y\": 0.2678476870059967\n                    },\n                    {\n                        \"X\": 0.8458766341209412,\n                        \"Y\": 0.2678694427013397\n                    }\n                ]\n            },\n            \"Id\": \"db452251-c1da-40bd-8e59-6244f91e9ee1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5386ff4a-09bf-4767-9e28-4b7f779bcc09\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96868133544922,\n            \"Text\": \"7 Social security tips\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12101976573467255,\n                    \"Height\": 0.01872258260846138,\n                    \"Left\": 0.5573380589485168,\n                    \"Top\": 0.2797236442565918\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5573380589485168,\n                        \"Y\": 0.27977150678634644\n                    },\n                    {\n                        \"X\": 0.6783369779586792,\n                        \"Y\": 0.2797236442565918\n                    },\n                    {\n                        \"X\": 0.6783578395843506,\n                        \"Y\": 0.2983986437320709\n                    },\n                    {\n                        \"X\": 0.5573583245277405,\n                        \"Y\": 0.2984462380409241\n                    }\n                ]\n            },\n            \"Id\": \"bf8ff441-3f05-4796-a7b4-e0eb0d93249d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3b0859fa-9240-47c1-aa4c-2b62e96143e9\",\n                        \"70c10ae3-74db-443e-b266-1e6903fcd3fb\",\n                        \"cdf54096-c570-4376-97ab-1bacf58d1bff\",\n                        \"7ebe5dbb-8826-4b2b-8541-f98d7a31ae0a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96430206298828,\n            \"Text\": \"8\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007487934548407793,\n                    \"Height\": 0.01472847256809473,\n                    \"Left\": 0.77223801612854,\n                    \"Top\": 0.2803439497947693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.77223801612854,\n                        \"Y\": 0.28034690022468567\n                    },\n                    {\n                        \"X\": 0.7797090411186218,\n                        \"Y\": 0.2803439497947693\n                    },\n                    {\n                        \"X\": 0.7797259092330933,\n                        \"Y\": 0.29506948590278625\n                    },\n                    {\n                        \"X\": 0.7722548246383667,\n                        \"Y\": 0.29507243633270264\n                    }\n                ]\n            },\n            \"Id\": \"4d6c048c-e471-4458-b853-00e4d2cc0d78\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f1665cf3-e412-491d-8fb3-e5507814352b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 87.98246765136719,\n            \"Text\": \"$5,00.000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07024688273668289,\n                    \"Height\": 0.022498516365885735,\n                    \"Left\": 0.6423125863075256,\n                    \"Top\": 0.3068864345550537\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6423125863075256,\n                        \"Y\": 0.30691400170326233\n                    },\n                    {\n                        \"X\": 0.7125341296195984,\n                        \"Y\": 0.3068864345550537\n                    },\n                    {\n                        \"X\": 0.7125594615936279,\n                        \"Y\": 0.3293575942516327\n                    },\n                    {\n                        \"X\": 0.6423375010490417,\n                        \"Y\": 0.3293849527835846\n                    }\n                ]\n            },\n            \"Id\": \"b76f881a-5179-470a-95ff-d440a7dbb62f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"654f0f85-0256-44f6-b02e-54894ee45e0a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86483764648438,\n            \"Text\": \"d Control number\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10085517913103104,\n                    \"Height\": 0.015529208816587925,\n                    \"Left\": 0.03699848800897598,\n                    \"Top\": 0.34163686633110046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03699848800897598,\n                        \"Y\": 0.3416760563850403\n                    },\n                    {\n                        \"X\": 0.137838676571846,\n                        \"Y\": 0.34163686633110046\n                    },\n                    {\n                        \"X\": 0.13785366714000702,\n                        \"Y\": 0.3571271002292633\n                    },\n                    {\n                        \"X\": 0.037013038992881775,\n                        \"Y\": 0.3571660816669464\n                    }\n                ]\n            },\n            \"Id\": \"83c3d593-0862-4ec2-a684-358b6f58d328\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f18e45ac-53a9-469e-90be-7a2a52417d64\",\n                        \"61365f94-73b4-45b6-a4d7-f69fcde435b4\",\n                        \"92edcd95-bdb8-4b54-9753-9a7d53e3e1f1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97282409667969,\n            \"Text\": \"9\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007296142168343067,\n                    \"Height\": 0.014726119115948677,\n                    \"Left\": 0.5574319958686829,\n                    \"Top\": 0.3422553241252899\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5574319958686829,\n                        \"Y\": 0.34225815534591675\n                    },\n                    {\n                        \"X\": 0.5647121071815491,\n                        \"Y\": 0.3422553241252899\n                    },\n                    {\n                        \"X\": 0.5647281408309937,\n                        \"Y\": 0.3569786250591278\n                    },\n                    {\n                        \"X\": 0.5574479103088379,\n                        \"Y\": 0.35698145627975464\n                    }\n                ]\n            },\n            \"Id\": \"acbdeb2f-b02d-42cf-ab47-14d342290208\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a73d2ee7-2d3c-49bd-8cec-187cf1c14ee8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97865295410156,\n            \"Text\": \"10\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013738553039729595,\n                    \"Height\": 0.014912810176610947,\n                    \"Left\": 0.7666483521461487,\n                    \"Top\": 0.3419516980648041\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666483521461487,\n                        \"Y\": 0.3419570326805115\n                    },\n                    {\n                        \"X\": 0.7803698182106018,\n                        \"Y\": 0.3419516980648041\n                    },\n                    {\n                        \"X\": 0.7803868651390076,\n                        \"Y\": 0.3568592071533203\n                    },\n                    {\n                        \"X\": 0.7666653394699097,\n                        \"Y\": 0.3568645119667053\n                    }\n                ]\n            },\n            \"Id\": \"83dd3959-a1ee-4fa9-bd76-5cd5beca7be5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3b2ad437-c51a-45e3-8870-a8d9250032a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.85709381103516,\n            \"Text\": \"777777777777\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08425814658403397,\n                    \"Height\": 0.015468552708625793,\n                    \"Left\": 0.20640580356121063,\n                    \"Top\": 0.36167389154434204\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20640580356121063,\n                        \"Y\": 0.361706405878067\n                    },\n                    {\n                        \"X\": 0.29064837098121643,\n                        \"Y\": 0.36167389154434204\n                    },\n                    {\n                        \"X\": 0.2906639575958252,\n                        \"Y\": 0.3771100342273712\n                    },\n                    {\n                        \"X\": 0.20642103254795074,\n                        \"Y\": 0.37714242935180664\n                    }\n                ]\n            },\n            \"Id\": \"91b5076b-59f9-45b7-99cf-daa818ffe816\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cf1170eb-8848-421c-8612-461cb46cecd6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92626190185547,\n            \"Text\": \"e Employee's first name and initial\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19142262637615204,\n                    \"Height\": 0.01896706223487854,\n                    \"Left\": 0.03682185709476471,\n                    \"Top\": 0.40340983867645264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03682185709476471,\n                        \"Y\": 0.4034828543663025\n                    },\n                    {\n                        \"X\": 0.2282257378101349,\n                        \"Y\": 0.40340983867645264\n                    },\n                    {\n                        \"X\": 0.22824448347091675,\n                        \"Y\": 0.42230427265167236\n                    },\n                    {\n                        \"X\": 0.03683960810303688,\n                        \"Y\": 0.4223769009113312\n                    }\n                ]\n            },\n            \"Id\": \"020d011d-82b6-4f4d-bf8a-bb576ddb80f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ae5a4be7-fdc8-4fed-b472-37d5aa38ed62\",\n                        \"78a0437c-4966-45f1-b250-7f23f3f7d7c3\",\n                        \"6de58347-8dcd-4162-8059-1a20e744c03c\",\n                        \"6098a9fb-dd22-4276-8daf-fc5e50cdfd35\",\n                        \"5c5fba6d-eeef-459d-8a93-cf7da65f48c5\",\n                        \"2743bcaf-4dc5-49ac-81ac-e692e0392add\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96407318115234,\n            \"Text\": \"Last name\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05766979977488518,\n                    \"Height\": 0.015282006934285164,\n                    \"Left\": 0.2734757363796234,\n                    \"Top\": 0.4038502275943756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2734757363796234,\n                        \"Y\": 0.40387222170829773\n                    },\n                    {\n                        \"X\": 0.33112993836402893,\n                        \"Y\": 0.4038502275943756\n                    },\n                    {\n                        \"X\": 0.3311455249786377,\n                        \"Y\": 0.41911032795906067\n                    },\n                    {\n                        \"X\": 0.2734910547733307,\n                        \"Y\": 0.4191322326660156\n                    }\n                ]\n            },\n            \"Id\": \"8c6320cb-d2ad-4cd2-a80b-97918d61eddf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ca847e03-8743-413d-b9c0-7b0b72b0eca0\",\n                        \"b4df7f42-871d-48a7-9230-60e291bcc720\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.62039947509766,\n            \"Text\": \"Suff.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02544434927403927,\n                    \"Height\": 0.015869012102484703,\n                    \"Left\": 0.512493908405304,\n                    \"Top\": 0.40344032645225525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.512493908405304,\n                        \"Y\": 0.40345001220703125\n                    },\n                    {\n                        \"X\": 0.537921130657196,\n                        \"Y\": 0.40344032645225525\n                    },\n                    {\n                        \"X\": 0.5379382371902466,\n                        \"Y\": 0.4192996919155121\n                    },\n                    {\n                        \"X\": 0.5125108957290649,\n                        \"Y\": 0.4193093478679657\n                    }\n                ]\n            },\n            \"Id\": \"d70570fa-345c-4e70-bdbf-a7522d760352\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cc2a558e-d982-4fce-8899-b233ef4c57a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91309356689453,\n            \"Text\": \"11 Nonqualified plans\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12567321956157684,\n                    \"Height\": 0.018839186057448387,\n                    \"Left\": 0.5519353151321411,\n                    \"Top\": 0.40354642271995544\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5519353151321411,\n                        \"Y\": 0.40359437465667725\n                    },\n                    {\n                        \"X\": 0.6775875091552734,\n                        \"Y\": 0.40354642271995544\n                    },\n                    {\n                        \"X\": 0.6776084899902344,\n                        \"Y\": 0.42233794927597046\n                    },\n                    {\n                        \"X\": 0.5519556403160095,\n                        \"Y\": 0.42238563299179077\n                    }\n                ]\n            },\n            \"Id\": \"2337a425-0e00-4e42-9c8e-c7fc6a76b65d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8ee681f7-13ee-4b2f-8362-956a209570be\",\n                        \"62b6494f-72e0-4aa3-9fa6-8adcbeee84bd\",\n                        \"9491af7d-c266-4f9b-9133-7b314c7a626d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92637634277344,\n            \"Text\": \"12a See instructions for box 12\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17499415576457977,\n                    \"Height\": 0.015405305661261082,\n                    \"Left\": 0.7666311860084534,\n                    \"Top\": 0.4036925733089447\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666311860084534,\n                        \"Y\": 0.40375933051109314\n                    },\n                    {\n                        \"X\": 0.9416070580482483,\n                        \"Y\": 0.4036925733089447\n                    },\n                    {\n                        \"X\": 0.9416253566741943,\n                        \"Y\": 0.41903144121170044\n                    },\n                    {\n                        \"X\": 0.7666487097740173,\n                        \"Y\": 0.419097900390625\n                    }\n                ]\n            },\n            \"Id\": \"2d94c810-bbe3-497e-bf2f-714051e3270b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9ac7874a-342d-48aa-9209-d3847490647c\",\n                        \"a8196fea-40f1-4c7f-a3dc-ee7c23fdd36b\",\n                        \"3f050ef9-653c-4e20-899a-2adaa7c0acd4\",\n                        \"ab9ca988-8e92-4e9c-ae2e-d083392cb1d8\",\n                        \"0c8ba55f-3980-4ee1-8224-bd1b14b683d1\",\n                        \"0e5e838c-cfff-4ede-b9fe-07e96cf26c01\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 60.44139862060547,\n            \"Text\": \"C\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005417278502136469,\n                    \"Height\": 0.009012531489133835,\n                    \"Left\": 0.766934871673584,\n                    \"Top\": 0.4203919768333435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.766934871673584,\n                        \"Y\": 0.42039400339126587\n                    },\n                    {\n                        \"X\": 0.7723418474197388,\n                        \"Y\": 0.4203919768333435\n                    },\n                    {\n                        \"X\": 0.7723521590232849,\n                        \"Y\": 0.4294024407863617\n                    },\n                    {\n                        \"X\": 0.7669451832771301,\n                        \"Y\": 0.42940449714660645\n                    }\n                ]\n            },\n            \"Id\": \"213cce30-3bed-4371-93ee-32438d27a39f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"97734947-a7c3-417f-b87d-c72da07ab79d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90850067138672,\n            \"Text\": \"Ana\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025670362636446953,\n                    \"Height\": 0.016813525930047035,\n                    \"Left\": 0.06970708072185516,\n                    \"Top\": 0.4394836127758026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06970708072185516,\n                        \"Y\": 0.4394932985305786\n                    },\n                    {\n                        \"X\": 0.0953613817691803,\n                        \"Y\": 0.4394836127758026\n                    },\n                    {\n                        \"X\": 0.09537743777036667,\n                        \"Y\": 0.45628753304481506\n                    },\n                    {\n                        \"X\": 0.06972301751375198,\n                        \"Y\": 0.4562971591949463\n                    }\n                ]\n            },\n            \"Id\": \"d2a91b52-d6ea-4388-afe1-c2bdc6e56eaf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6dbdbf97-1641-4901-8eea-4f3ea373fb46\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77665710449219,\n            \"Text\": \"Carolina\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.052424851804971695,\n                    \"Height\": 0.017252570018172264,\n                    \"Left\": 0.27415600419044495,\n                    \"Top\": 0.43060988187789917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27415600419044495,\n                        \"Y\": 0.4306297302246094\n                    },\n                    {\n                        \"X\": 0.3265632688999176,\n                        \"Y\": 0.43060988187789917\n                    },\n                    {\n                        \"X\": 0.32658085227012634,\n                        \"Y\": 0.44784271717071533\n                    },\n                    {\n                        \"X\": 0.2741733193397522,\n                        \"Y\": 0.447862446308136\n                    }\n                ]\n            },\n            \"Id\": \"a81a4188-b654-4cde-8902-9c0bec408401\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e49e8c6b-902f-490c-a7bf-d9f6f1a5cbec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.66773986816406,\n            \"Text\": \"Silva\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029934683814644814,\n                    \"Height\": 0.017165053635835648,\n                    \"Left\": 0.5063032507896423,\n                    \"Top\": 0.433064728975296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5063032507896423,\n                        \"Y\": 0.43307605385780334\n                    },\n                    {\n                        \"X\": 0.5362194180488586,\n                        \"Y\": 0.433064728975296\n                    },\n                    {\n                        \"X\": 0.5362379550933838,\n                        \"Y\": 0.45021852850914\n                    },\n                    {\n                        \"X\": 0.5063216090202332,\n                        \"Y\": 0.45022979378700256\n                    }\n                ]\n            },\n            \"Id\": \"a5459d05-d821-4b41-8fc4-9d3f62fe7b25\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ce77d4a-c622-4f66-98c8-6989009cb6d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 57.9937744140625,\n            \"Text\": \"or\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0050363377667963505,\n                    \"Height\": 0.01153473649173975,\n                    \"Left\": 0.767175555229187,\n                    \"Top\": 0.4306279122829437\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.767175555229187,\n                        \"Y\": 0.43062981963157654\n                    },\n                    {\n                        \"X\": 0.7721986770629883,\n                        \"Y\": 0.4306279122829437\n                    },\n                    {\n                        \"X\": 0.7722119092941284,\n                        \"Y\": 0.4421607553958893\n                    },\n                    {\n                        \"X\": 0.7671887278556824,\n                        \"Y\": 0.4421626627445221\n                    }\n                ]\n            },\n            \"Id\": \"a9101977-9ea1-4dec-9854-6605ddb57fd6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bc41be80-acad-4892-a763-3c2c87ea800f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 88.9371337890625,\n            \"Text\": \"d\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005433898419141769,\n                    \"Height\": 0.011059749871492386,\n                    \"Left\": 0.7672072052955627,\n                    \"Top\": 0.4380500912666321\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7672072052955627,\n                        \"Y\": 0.43805211782455444\n                    },\n                    {\n                        \"X\": 0.7726284265518188,\n                        \"Y\": 0.4380500912666321\n                    },\n                    {\n                        \"X\": 0.772641122341156,\n                        \"Y\": 0.4491077959537506\n                    },\n                    {\n                        \"X\": 0.7672198414802551,\n                        \"Y\": 0.449109822511673\n                    }\n                ]\n            },\n            \"Id\": \"2995c266-fd9a-4a96-80cf-caa7fb1c5196\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a38e2883-da41-46e5-8152-fe033572964d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 89.37638854980469,\n            \"Text\": \"e\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004386779386550188,\n                    \"Height\": 0.007140372414141893,\n                    \"Left\": 0.7673512101173401,\n                    \"Top\": 0.4483763575553894\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7673512101173401,\n                        \"Y\": 0.4483779966831207\n                    },\n                    {\n                        \"X\": 0.7717298269271851,\n                        \"Y\": 0.4483763575553894\n                    },\n                    {\n                        \"X\": 0.7717379927635193,\n                        \"Y\": 0.455515056848526\n                    },\n                    {\n                        \"X\": 0.7673593759536743,\n                        \"Y\": 0.4555167257785797\n                    }\n                ]\n            },\n            \"Id\": \"6e6c013e-4f6c-4d91-b007-566b594fc9d9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"769e2ca0-57d2-4e40-8fa7-004fe1dcac53\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93563842773438,\n            \"Text\": \"DD\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013091810047626495,\n                    \"Height\": 0.011558471247553825,\n                    \"Left\": 0.7918670177459717,\n                    \"Top\": 0.44087350368499756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7918670177459717,\n                        \"Y\": 0.4408784508705139\n                    },\n                    {\n                        \"X\": 0.8049454689025879,\n                        \"Y\": 0.44087350368499756\n                    },\n                    {\n                        \"X\": 0.8049588203430176,\n                        \"Y\": 0.45242705941200256\n                    },\n                    {\n                        \"X\": 0.7918803095817566,\n                        \"Y\": 0.45243197679519653\n                    }\n                ]\n            },\n            \"Id\": \"4cb16992-7d12-40c5-a11c-ac22ba31847c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"317b0f44-3ab6-4043-b1f5-f3634539a62f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.4698486328125,\n            \"Text\": \"$50,00.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03989092633128166,\n                    \"Height\": 0.012933160178363323,\n                    \"Left\": 0.9196081161499023,\n                    \"Top\": 0.43373438715934753\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9196081161499023,\n                        \"Y\": 0.4337494671344757\n                    },\n                    {\n                        \"X\": 0.9594835638999939,\n                        \"Y\": 0.43373438715934753\n                    },\n                    {\n                        \"X\": 0.9594990015029907,\n                        \"Y\": 0.44665253162384033\n                    },\n                    {\n                        \"X\": 0.9196233749389648,\n                        \"Y\": 0.44666755199432373\n                    }\n                ]\n            },\n            \"Id\": \"8c8199c7-f6e2-459a-bf5d-aebf53ab4c8e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"323992a0-cca5-4215-aec5-2bca35c3f2e7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94312286376953,\n            \"Text\": \"13 Statutory\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06019406020641327,\n                    \"Height\": 0.01756720058619976,\n                    \"Left\": 0.5518091917037964,\n                    \"Top\": 0.4631705582141876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5518091917037964,\n                        \"Y\": 0.4631930887699127\n                    },\n                    {\n                        \"X\": 0.6119839549064636,\n                        \"Y\": 0.4631705582141876\n                    },\n                    {\n                        \"X\": 0.6120032668113708,\n                        \"Y\": 0.4807153046131134\n                    },\n                    {\n                        \"X\": 0.551828145980835,\n                        \"Y\": 0.48073774576187134\n                    }\n                ]\n            },\n            \"Id\": \"a740ca04-9695-4de6-b16b-d672754b1f98\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"59dcf07a-71f6-4e64-997e-5a2184eaf39c\",\n                        \"17e2d61f-774c-4e47-999d-3d503446446d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85848236083984,\n            \"Text\": \"Retirement\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0431063175201416,\n                    \"Height\": 0.011804879643023014,\n                    \"Left\": 0.6381962895393372,\n                    \"Top\": 0.4628724455833435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6381962895393372,\n                        \"Y\": 0.46288859844207764\n                    },\n                    {\n                        \"X\": 0.6812893748283386,\n                        \"Y\": 0.4628724455833435\n                    },\n                    {\n                        \"X\": 0.6813026070594788,\n                        \"Y\": 0.4746612310409546\n                    },\n                    {\n                        \"X\": 0.6382092833518982,\n                        \"Y\": 0.47467732429504395\n                    }\n                ]\n            },\n            \"Id\": \"c851ca0e-14d4-4533-a7bd-dde7132f36cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3995effe-d6a2-49e1-a32d-72e8138f6d0b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82073211669922,\n            \"Text\": \"Third-party\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04454663395881653,\n                    \"Height\": 0.013868805021047592,\n                    \"Left\": 0.7006963491439819,\n                    \"Top\": 0.46304717659950256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7006963491439819,\n                        \"Y\": 0.4630638659000397\n                    },\n                    {\n                        \"X\": 0.7452272772789001,\n                        \"Y\": 0.46304717659950256\n                    },\n                    {\n                        \"X\": 0.7452430129051208,\n                        \"Y\": 0.4768993556499481\n                    },\n                    {\n                        \"X\": 0.7007119655609131,\n                        \"Y\": 0.47691598534584045\n                    }\n                ]\n            },\n            \"Id\": \"ff1f38b9-5a0f-4fac-b337-bb3ea195f05f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5d450fe8-d4d5-4f09-ae92-6ea0da1d65dc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91339111328125,\n            \"Text\": \"12b\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020835544914007187,\n                    \"Height\": 0.014520741067826748,\n                    \"Left\": 0.7666906118392944,\n                    \"Top\": 0.46599987149238586\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666906118392944,\n                        \"Y\": 0.46600767970085144\n                    },\n                    {\n                        \"X\": 0.7875095009803772,\n                        \"Y\": 0.46599987149238586\n                    },\n                    {\n                        \"X\": 0.7875261306762695,\n                        \"Y\": 0.4805128574371338\n                    },\n                    {\n                        \"X\": 0.766707181930542,\n                        \"Y\": 0.4805206060409546\n                    }\n                ]\n            },\n            \"Id\": \"af19db5f-ef7c-487a-bdea-a1a1a4997520\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"89e6b2bd-46e9-4a99-9dcc-2a016e014a48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80390167236328,\n            \"Text\": \"employee\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03848724812269211,\n                    \"Height\": 0.01366924587637186,\n                    \"Left\": 0.5748069286346436,\n                    \"Top\": 0.47615841031074524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5748069286346436,\n                        \"Y\": 0.4761727750301361\n                    },\n                    {\n                        \"X\": 0.6132791638374329,\n                        \"Y\": 0.47615841031074524\n                    },\n                    {\n                        \"X\": 0.6132941842079163,\n                        \"Y\": 0.48981335759162903\n                    },\n                    {\n                        \"X\": 0.5748217701911926,\n                        \"Y\": 0.4898276627063751\n                    }\n                ]\n            },\n            \"Id\": \"3b625096-0ea4-4da5-a1fb-d6d96958b2cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"93931132-7791-4d38-b94c-09665dfecab5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76746368408203,\n            \"Text\": \"plan\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017147431150078773,\n                    \"Height\": 0.013692923821508884,\n                    \"Left\": 0.6379137635231018,\n                    \"Top\": 0.4760226309299469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6379137635231018,\n                        \"Y\": 0.47602900862693787\n                    },\n                    {\n                        \"X\": 0.6550459861755371,\n                        \"Y\": 0.4760226309299469\n                    },\n                    {\n                        \"X\": 0.6550611853599548,\n                        \"Y\": 0.48970916867256165\n                    },\n                    {\n                        \"X\": 0.6379289031028748,\n                        \"Y\": 0.4897155463695526\n                    }\n                ]\n            },\n            \"Id\": \"571ec6a7-f621-4018-b934-b10da4239149\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1f7768b7-ba22-4832-a843-8c76ecdbd10e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54612731933594,\n            \"Text\": \"sick pay\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03286094591021538,\n                    \"Height\": 0.013616357930004597,\n                    \"Left\": 0.7010155916213989,\n                    \"Top\": 0.47650831937789917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7010155916213989,\n                        \"Y\": 0.4765205681324005\n                    },\n                    {\n                        \"X\": 0.7338610887527466,\n                        \"Y\": 0.47650831937789917\n                    },\n                    {\n                        \"X\": 0.7338765263557434,\n                        \"Y\": 0.49011245369911194\n                    },\n                    {\n                        \"X\": 0.7010308504104614,\n                        \"Y\": 0.4901246726512909\n                    }\n                ]\n            },\n            \"Id\": \"9add169f-7019-4dfb-b993-2f0904ef42c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8406eecd-bfb0-4390-9a11-ebe8f3af2621\",\n                        \"f8b8b9cc-5d98-469e-b1c9-621d0d68549a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 60.657936096191406,\n            \"Text\": \"c\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005260384175926447,\n                    \"Height\": 0.00872254092246294,\n                    \"Left\": 0.7672716379165649,\n                    \"Top\": 0.48147717118263245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7672716379165649,\n                        \"Y\": 0.48147910833358765\n                    },\n                    {\n                        \"X\": 0.7725220322608948,\n                        \"Y\": 0.48147717118263245\n                    },\n                    {\n                        \"X\": 0.7725319862365723,\n                        \"Y\": 0.4901977479457855\n                    },\n                    {\n                        \"X\": 0.7672815918922424,\n                        \"Y\": 0.4901997148990631\n                    }\n                ]\n            },\n            \"Id\": \"85339464-4d38-4074-ba90-c1241bec9873\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3a919642-7fd1-45c3-8635-f11c12080ff6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 25.764583587646484,\n            \"Text\": \":\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004702799487859011,\n                    \"Height\": 0.013762795366346836,\n                    \"Left\": 0.7674204707145691,\n                    \"Top\": 0.493724524974823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674204707145691,\n                        \"Y\": 0.4937262535095215\n                    },\n                    {\n                        \"X\": 0.7721075415611267,\n                        \"Y\": 0.493724524974823\n                    },\n                    {\n                        \"X\": 0.7721232771873474,\n                        \"Y\": 0.507485568523407\n                    },\n                    {\n                        \"X\": 0.7674362063407898,\n                        \"Y\": 0.5074872970581055\n                    }\n                ]\n            },\n            \"Id\": \"5e320188-72cc-4228-9de2-bf6d5c722805\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"67896390-34ed-4216-b4e5-59373cd8864e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 66.27688598632812,\n            \"Text\": \"o\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0048255594447255135,\n                    \"Height\": 0.006267215590924025,\n                    \"Left\": 0.7675355672836304,\n                    \"Top\": 0.49333953857421875\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7675355672836304,\n                        \"Y\": 0.493341326713562\n                    },\n                    {\n                        \"X\": 0.7723539471626282,\n                        \"Y\": 0.49333953857421875\n                    },\n                    {\n                        \"X\": 0.7723610997200012,\n                        \"Y\": 0.4996049702167511\n                    },\n                    {\n                        \"X\": 0.7675427198410034,\n                        \"Y\": 0.49960675835609436\n                    }\n                ]\n            },\n            \"Id\": \"4180f9ce-1616-4fa7-b7c8-38603fc5ed58\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1cf577ad-a71e-4c5b-8189-80bbf5baa9ac\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70028686523438,\n            \"Text\": \"D\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006718861870467663,\n                    \"Height\": 0.011715544387698174,\n                    \"Left\": 0.7930107712745667,\n                    \"Top\": 0.4933594763278961\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7930107712745667,\n                        \"Y\": 0.4933619499206543\n                    },\n                    {\n                        \"X\": 0.7997161746025085,\n                        \"Y\": 0.4933594763278961\n                    },\n                    {\n                        \"X\": 0.7997296452522278,\n                        \"Y\": 0.5050725340843201\n                    },\n                    {\n                        \"X\": 0.7930242419242859,\n                        \"Y\": 0.5050749778747559\n                    }\n                ]\n            },\n            \"Id\": \"2ddba349-5b98-4b60-9bba-fa1ca946b4eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"35aa77fe-7c3e-4bcc-abb1-b0decdc54be9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76848602294922,\n            \"Text\": \"$3,50.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03511464595794678,\n                    \"Height\": 0.014004451222717762,\n                    \"Left\": 0.918915867805481,\n                    \"Top\": 0.49362701177597046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.918915867805481,\n                        \"Y\": 0.4936400353908539\n                    },\n                    {\n                        \"X\": 0.9540137648582458,\n                        \"Y\": 0.49362701177597046\n                    },\n                    {\n                        \"X\": 0.9540305137634277,\n                        \"Y\": 0.5076184868812561\n                    },\n                    {\n                        \"X\": 0.9189324378967285,\n                        \"Y\": 0.5076314806938171\n                    }\n                ]\n            },\n            \"Id\": \"0d928485-a10d-4c57-a9c6-51feaec8705e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3cf669b6-be6e-4c84-a3a8-b8305b95ae01\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 58.52725601196289,\n            \"Text\": \"e\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0044685606844723225,\n                    \"Height\": 0.005878887604922056,\n                    \"Left\": 0.7675004601478577,\n                    \"Top\": 0.5113871693611145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7675004601478577,\n                        \"Y\": 0.5113887786865234\n                    },\n                    {\n                        \"X\": 0.7719623446464539,\n                        \"Y\": 0.5113871693611145\n                    },\n                    {\n                        \"X\": 0.7719690799713135,\n                        \"Y\": 0.5172643661499023\n                    },\n                    {\n                        \"X\": 0.7675071954727173,\n                        \"Y\": 0.517266035079956\n                    }\n                ]\n            },\n            \"Id\": \"06bfe7af-e82b-4d23-9969-4e192b866d39\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2fe45fe5-f4dd-40bb-b953-b62e78a9816c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96900177001953,\n            \"Text\": \"14 Other\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051637452095746994,\n                    \"Height\": 0.015325307846069336,\n                    \"Left\": 0.5517812371253967,\n                    \"Top\": 0.527644693851471\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5517812371253967,\n                        \"Y\": 0.5276637077331543\n                    },\n                    {\n                        \"X\": 0.6034018993377686,\n                        \"Y\": 0.527644693851471\n                    },\n                    {\n                        \"X\": 0.6034186482429504,\n                        \"Y\": 0.5429511666297913\n                    },\n                    {\n                        \"X\": 0.5517978072166443,\n                        \"Y\": 0.5429700016975403\n                    }\n                ]\n            },\n            \"Id\": \"62b89fb7-14ae-488d-b1af-429b4a225606\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"37fef1d7-f0b8-4786-bcd1-7ba78b210a1e\",\n                        \"e3bd5bc4-f53f-4e2d-9c31-43aaa761a706\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89034271240234,\n            \"Text\": \"12c\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020626498386263847,\n                    \"Height\": 0.014925727620720863,\n                    \"Left\": 0.7664973735809326,\n                    \"Top\": 0.5281139016151428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7664973735809326,\n                        \"Y\": 0.5281214714050293\n                    },\n                    {\n                        \"X\": 0.7871067523956299,\n                        \"Y\": 0.5281139016151428\n                    },\n                    {\n                        \"X\": 0.7871238589286804,\n                        \"Y\": 0.5430321097373962\n                    },\n                    {\n                        \"X\": 0.7665144205093384,\n                        \"Y\": 0.5430396199226379\n                    }\n                ]\n            },\n            \"Id\": \"2c19db57-eeb3-49f8-aea7-53899a0bd6dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1295536b-d2fa-4181-9dcf-b5eb983d006e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 61.561500549316406,\n            \"Text\": \"c\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0052590337581932545,\n                    \"Height\": 0.007732087280601263,\n                    \"Left\": 0.7671750783920288,\n                    \"Top\": 0.5438441038131714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7671750783920288,\n                        \"Y\": 0.5438460111618042\n                    },\n                    {\n                        \"X\": 0.7724252939224243,\n                        \"Y\": 0.5438441038131714\n                    },\n                    {\n                        \"X\": 0.7724341154098511,\n                        \"Y\": 0.5515742897987366\n                    },\n                    {\n                        \"X\": 0.7671838998794556,\n                        \"Y\": 0.5515761971473694\n                    }\n                ]\n            },\n            \"Id\": \"896a0152-7fcd-4053-bd4a-08f4146b3e2c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6d69ceca-3fc8-44b4-882b-50bc1f6e289c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 47.079891204833984,\n            \"Text\": \"o\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005300495307892561,\n                    \"Height\": 0.0036320327781140804,\n                    \"Left\": 0.7666311264038086,\n                    \"Top\": 0.5547060966491699\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666311264038086,\n                        \"Y\": 0.5547080039978027\n                    },\n                    {\n                        \"X\": 0.7719274759292603,\n                        \"Y\": 0.5547060966491699\n                    },\n                    {\n                        \"X\": 0.7719316482543945,\n                        \"Y\": 0.5583361983299255\n                    },\n                    {\n                        \"X\": 0.7666352987289429,\n                        \"Y\": 0.5583381056785583\n                    }\n                ]\n            },\n            \"Id\": \"26a868ce-490b-4906-a8ae-0222557a41bb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"83ac3b47-8f34-4fa8-bce2-270dd9d91db5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 69.24235534667969,\n            \"Text\": \"o\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004964668303728104,\n                    \"Height\": 0.004026889335364103,\n                    \"Left\": 0.7674016952514648,\n                    \"Top\": 0.5565674901008606\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674016952514648,\n                        \"Y\": 0.5565692782402039\n                    },\n                    {\n                        \"X\": 0.7723617553710938,\n                        \"Y\": 0.5565674901008606\n                    },\n                    {\n                        \"X\": 0.7723663449287415,\n                        \"Y\": 0.560592532157898\n                    },\n                    {\n                        \"X\": 0.7674062848091125,\n                        \"Y\": 0.5605943202972412\n                    }\n                ]\n            },\n            \"Id\": \"0184c280-53e5-4a8c-991f-8ef4eba559a7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"35883cdb-d890-4704-958d-458e09d289b6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 56.717891693115234,\n            \"Text\": \"a\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005804695654660463,\n                    \"Height\": 0.014635392464697361,\n                    \"Left\": 0.7667160630226135,\n                    \"Top\": 0.5582278370857239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7667160630226135,\n                        \"Y\": 0.558229923248291\n                    },\n                    {\n                        \"X\": 0.7725040316581726,\n                        \"Y\": 0.5582278370857239\n                    },\n                    {\n                        \"X\": 0.7725207805633545,\n                        \"Y\": 0.5728610754013062\n                    },\n                    {\n                        \"X\": 0.7667327523231506,\n                        \"Y\": 0.5728632211685181\n                    }\n                ]\n            },\n            \"Id\": \"7d9312b3-47ad-4efa-9505-366a17f40cdd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"31413759-bc32-49c2-bdac-67f6ab48851e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 56.171531677246094,\n            \"Text\": \"or\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00466790609061718,\n                    \"Height\": 0.01151252817362547,\n                    \"Left\": 0.76741623878479,\n                    \"Top\": 0.5539354085922241\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.76741623878479,\n                        \"Y\": 0.5539371371269226\n                    },\n                    {\n                        \"X\": 0.7720709443092346,\n                        \"Y\": 0.5539354085922241\n                    },\n                    {\n                        \"X\": 0.77208411693573,\n                        \"Y\": 0.5654462575912476\n                    },\n                    {\n                        \"X\": 0.7674293518066406,\n                        \"Y\": 0.565447986125946\n                    }\n                ]\n            },\n            \"Id\": \"517c9a59-4add-478f-8b1c-a18fa2cc55c5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bf3889ba-6d78-447b-ae55-864a0bdda61d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70996856689453,\n            \"Text\": \"PP\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012562302872538567,\n                    \"Height\": 0.011371378786861897,\n                    \"Left\": 0.7976850867271423,\n                    \"Top\": 0.5584377646446228\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7976850867271423,\n                        \"Y\": 0.5584423542022705\n                    },\n                    {\n                        \"X\": 0.8102342486381531,\n                        \"Y\": 0.5584377646446228\n                    },\n                    {\n                        \"X\": 0.8102473616600037,\n                        \"Y\": 0.5698046088218689\n                    },\n                    {\n                        \"X\": 0.7976981401443481,\n                        \"Y\": 0.5698091983795166\n                    }\n                ]\n            },\n            \"Id\": \"3518ce40-51b0-4613-ae5f-e8906824addc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"802c3432-1375-4919-b0fa-e61f30b12037\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 61.7142333984375,\n            \"Text\": \"$4.00.0000\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044388704001903534,\n                    \"Height\": 0.01374780386686325,\n                    \"Left\": 0.915840744972229,\n                    \"Top\": 0.5538350939750671\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.915840744972229,\n                        \"Y\": 0.5538512468338013\n                    },\n                    {\n                        \"X\": 0.9602130651473999,\n                        \"Y\": 0.5538350939750671\n                    },\n                    {\n                        \"X\": 0.9602294564247131,\n                        \"Y\": 0.5675667524337769\n                    },\n                    {\n                        \"X\": 0.9158570170402527,\n                        \"Y\": 0.5675828456878662\n                    }\n                ]\n            },\n            \"Id\": \"37358f19-1952-485b-96a5-51d005372b23\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"561adeae-ff05-4398-820a-b486e7fc40cb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 78.75779724121094,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.003909958992153406,\n                    \"Height\": 0.003809145884588361,\n                    \"Left\": 0.7678936123847961,\n                    \"Top\": 0.5666854977607727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7678936123847961,\n                        \"Y\": 0.5666869282722473\n                    },\n                    {\n                        \"X\": 0.7717992067337036,\n                        \"Y\": 0.5666854977607727\n                    },\n                    {\n                        \"X\": 0.7718035578727722,\n                        \"Y\": 0.570493221282959\n                    },\n                    {\n                        \"X\": 0.7678979635238647,\n                        \"Y\": 0.5704946517944336\n                    }\n                ]\n            },\n            \"Id\": \"6458221d-b2c6-4ef1-9445-899a35c8fbb3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e17da224-1afd-47e0-a593-a69f786790c5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96720123291016,\n            \"Text\": \"NA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021972406655550003,\n                    \"Height\": 0.01858423464000225,\n                    \"Left\": 0.6452856063842773,\n                    \"Top\": 0.5711943507194519\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6452856063842773,\n                        \"Y\": 0.5712023377418518\n                    },\n                    {\n                        \"X\": 0.6672372817993164,\n                        \"Y\": 0.5711943507194519\n                    },\n                    {\n                        \"X\": 0.6672580242156982,\n                        \"Y\": 0.5897706747055054\n                    },\n                    {\n                        \"X\": 0.6453061699867249,\n                        \"Y\": 0.5897786021232605\n                    }\n                ]\n            },\n            \"Id\": \"387fd35f-40ca-43fc-ab1a-39e4d53c7531\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b10b7d68-e3d2-4a8f-b95a-7e13be93ca56\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 35.85706329345703,\n            \"Text\": \"a\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004384074360132217,\n                    \"Height\": 0.006884552538394928,\n                    \"Left\": 0.7674356698989868,\n                    \"Top\": 0.5724544525146484\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674356698989868,\n                        \"Y\": 0.5724560618400574\n                    },\n                    {\n                        \"X\": 0.7718119025230408,\n                        \"Y\": 0.5724544525146484\n                    },\n                    {\n                        \"X\": 0.7718197703361511,\n                        \"Y\": 0.5793374180793762\n                    },\n                    {\n                        \"X\": 0.7674435377120972,\n                        \"Y\": 0.5793390274047852\n                    }\n                ]\n            },\n            \"Id\": \"f23d3539-00d7-44e6-872e-624bc4ce8f05\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b9603cac-8f6b-4e96-97db-2ea627d6a808\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89900970458984,\n            \"Text\": \"123 Any Street, Any Town, USA 63000001\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2770756781101227,\n                    \"Height\": 0.02551625669002533,\n                    \"Left\": 0.07035933434963226,\n                    \"Top\": 0.5797131657600403\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07035933434963226,\n                        \"Y\": 0.5798133611679077\n                    },\n                    {\n                        \"X\": 0.3474089503288269,\n                        \"Y\": 0.5797131657600403\n                    },\n                    {\n                        \"X\": 0.34743502736091614,\n                        \"Y\": 0.6051300168037415\n                    },\n                    {\n                        \"X\": 0.0703834518790245,\n                        \"Y\": 0.6052294373512268\n                    }\n                ]\n            },\n            \"Id\": \"2b7a67c0-74a6-4c99-90ff-34532b96ed9a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e9068078-3f28-402a-a5a0-6f4c9918f196\",\n                        \"1a1c2fd0-6e67-48a5-8718-e3acb80f33bc\",\n                        \"41a28a38-5136-4bea-8614-224168226bf9\",\n                        \"6240c76f-a7eb-42dd-8a40-573a3470243e\",\n                        \"4ded9c45-bdad-4b46-97e4-05342418c595\",\n                        \"13d06a96-f489-455c-a59f-a7095a35bfca\",\n                        \"27313f9b-8309-4899-8a67-37873eeb36de\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93169403076172,\n            \"Text\": \"12d\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02098938450217247,\n                    \"Height\": 0.014655557461082935,\n                    \"Left\": 0.7664605379104614,\n                    \"Top\": 0.5899423956871033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7664605379104614,\n                        \"Y\": 0.589949905872345\n                    },\n                    {\n                        \"X\": 0.7874331474304199,\n                        \"Y\": 0.5899423956871033\n                    },\n                    {\n                        \"X\": 0.7874499559402466,\n                        \"Y\": 0.6045904159545898\n                    },\n                    {\n                        \"X\": 0.7664772868156433,\n                        \"Y\": 0.6045979261398315\n                    }\n                ]\n            },\n            \"Id\": \"bbd55ce8-8f95-440f-ae1f-9873611d7855\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c33ff9df-0736-43a9-b6cd-f37a7c47f58e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 67.9662094116211,\n            \"Text\": \"c\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006792542990297079,\n                    \"Height\": 0.008566316217184067,\n                    \"Left\": 0.7663037180900574,\n                    \"Top\": 0.6054821610450745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7663037180900574,\n                        \"Y\": 0.6054846048355103\n                    },\n                    {\n                        \"X\": 0.773086428642273,\n                        \"Y\": 0.6054821610450745\n                    },\n                    {\n                        \"X\": 0.7730962634086609,\n                        \"Y\": 0.6140460968017578\n                    },\n                    {\n                        \"X\": 0.7663134932518005,\n                        \"Y\": 0.6140484809875488\n                    }\n                ]\n            },\n            \"Id\": \"6044ba54-10b3-482d-8dd0-87658e7034ad\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ee5865b8-8e29-4de3-8c91-852ce3335e43\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90470123291016,\n            \"Text\": \"f Employee's address and ZIP code\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20047791302204132,\n                    \"Height\": 0.018848003819584846,\n                    \"Left\": 0.03626881539821625,\n                    \"Top\": 0.6202921271324158\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03626881539821625,\n                        \"Y\": 0.620363712310791\n                    },\n                    {\n                        \"X\": 0.23672804236412048,\n                        \"Y\": 0.6202921271324158\n                    },\n                    {\n                        \"X\": 0.23674672842025757,\n                        \"Y\": 0.6390689611434937\n                    },\n                    {\n                        \"X\": 0.036286450922489166,\n                        \"Y\": 0.6391401290893555\n                    }\n                ]\n            },\n            \"Id\": \"9b08dbd7-e384-4753-9348-c6629c24d147\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"240461f0-b23e-4901-8626-6050b5d41ca7\",\n                        \"6fc21fa3-38f9-40a6-9a6e-d9dd0d2c2228\",\n                        \"ab423889-7d6d-4d40-beed-414c739ff661\",\n                        \"f051568e-072e-4992-bf83-b1191250f2d9\",\n                        \"18924fd2-4da0-40e4-acb6-657dd263c136\",\n                        \"51131670-a67f-4d20-ac23-4a48e0ab09d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.50084686279297,\n            \"Text\": \"$5,00.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0345078706741333,\n                    \"Height\": 0.013941507786512375,\n                    \"Left\": 0.9128311276435852,\n                    \"Top\": 0.6144120693206787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9128311276435852,\n                        \"Y\": 0.6144244074821472\n                    },\n                    {\n                        \"X\": 0.9473223686218262,\n                        \"Y\": 0.6144120693206787\n                    },\n                    {\n                        \"X\": 0.9473389983177185,\n                        \"Y\": 0.6283413171768188\n                    },\n                    {\n                        \"X\": 0.9128475785255432,\n                        \"Y\": 0.6283535957336426\n                    }\n                ]\n            },\n            \"Id\": \"787fe5a9-8e88-4fdf-81d8-71e09a5cb95e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"17057879-0d90-49ec-8561-c19eee7f0f79\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.56095886230469,\n            \"Text\": \"P\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006362179759889841,\n                    \"Height\": 0.011387757025659084,\n                    \"Left\": 0.8031980395317078,\n                    \"Top\": 0.6229707598686218\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8031980395317078,\n                        \"Y\": 0.6229730248451233\n                    },\n                    {\n                        \"X\": 0.8095470666885376,\n                        \"Y\": 0.6229707598686218\n                    },\n                    {\n                        \"X\": 0.8095601797103882,\n                        \"Y\": 0.6343562602996826\n                    },\n                    {\n                        \"X\": 0.8032111525535583,\n                        \"Y\": 0.6343585252761841\n                    }\n                ]\n            },\n            \"Id\": \"087bfc91-42d7-454d-a865-a9675ddf7b7e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cf959fa1-2cac-421d-a545-bf8d9aa9e82c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 48.652042388916016,\n            \"Text\": \"0\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004940434359014034,\n                    \"Height\": 0.007665056735277176,\n                    \"Left\": 0.7674310207366943,\n                    \"Top\": 0.6346644163131714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674310207366943,\n                        \"Y\": 0.6346661448478699\n                    },\n                    {\n                        \"X\": 0.7723627090454102,\n                        \"Y\": 0.6346644163131714\n                    },\n                    {\n                        \"X\": 0.7723714709281921,\n                        \"Y\": 0.6423277258872986\n                    },\n                    {\n                        \"X\": 0.7674397826194763,\n                        \"Y\": 0.6423294544219971\n                    }\n                ]\n            },\n            \"Id\": \"c39dd0dc-bd7a-4ba4-98c3-8162af612f03\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"974702c7-8f57-4863-bc09-c55cc1a0f3b6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.85425567626953,\n            \"Text\": \"W-2VI\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10347168892621994,\n                    \"Height\": 0.04659004881978035,\n                    \"Left\": 0.06289125978946686,\n                    \"Top\": 0.8137222528457642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06289125978946686,\n                        \"Y\": 0.8137569427490234\n                    },\n                    {\n                        \"X\": 0.16631753742694855,\n                        \"Y\": 0.8137222528457642\n                    },\n                    {\n                        \"X\": 0.1663629561662674,\n                        \"Y\": 0.8602781891822815\n                    },\n                    {\n                        \"X\": 0.06293532997369766,\n                        \"Y\": 0.8603123426437378\n                    }\n                ]\n            },\n            \"Id\": \"7623af91-e23f-4052-8682-0c5538023c2c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b925fb90-15b9-4d7d-8ff0-89098e489823\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85761260986328,\n            \"Text\": \"U.S. Virgin Islands\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15838623046875,\n                    \"Height\": 0.02703697234392166,\n                    \"Left\": 0.19075576961040497,\n                    \"Top\": 0.8110271692276001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19075576961040497,\n                        \"Y\": 0.811080276966095\n                    },\n                    {\n                        \"X\": 0.3491142988204956,\n                        \"Y\": 0.8110271692276001\n                    },\n                    {\n                        \"X\": 0.3491419851779938,\n                        \"Y\": 0.8380114436149597\n                    },\n                    {\n                        \"X\": 0.19078226387500763,\n                        \"Y\": 0.8380641341209412\n                    }\n                ]\n            },\n            \"Id\": \"fe1a5ecb-75f1-4ee5-ae67-2d793a9202f8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8e20f759-8614-41fb-b039-7b294342e762\",\n                        \"3c232ec9-e5bc-48ac-a9e1-6232e3b5a95d\",\n                        \"73fcb11a-20fc-4c54-a6b1-57806dd0aa05\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97819519042969,\n            \"Text\": \"Form\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030512629076838493,\n                    \"Height\": 0.015068397857248783,\n                    \"Left\": 0.026790868490934372,\n                    \"Top\": 0.8453946113586426\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026790868490934372,\n                        \"Y\": 0.8454046845436096\n                    },\n                    {\n                        \"X\": 0.05728926882147789,\n                        \"Y\": 0.8453946113586426\n                    },\n                    {\n                        \"X\": 0.057303499430418015,\n                        \"Y\": 0.8604528903961182\n                    },\n                    {\n                        \"X\": 0.02680497244000435,\n                        \"Y\": 0.8604629635810852\n                    }\n                ]\n            },\n            \"Id\": \"d3adff48-f4b7-4dc4-b1aa-a5f6861aeb2a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e2bf9073-8933-4204-bf6e-398addb2b376\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96912384033203,\n            \"Text\": \"Wage and Tax Statement\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2209763526916504,\n                    \"Height\": 0.026415089145302773,\n                    \"Left\": 0.19046145677566528,\n                    \"Top\": 0.8388699293136597\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19046145677566528,\n                        \"Y\": 0.8389434218406677\n                    },\n                    {\n                        \"X\": 0.4114103317260742,\n                        \"Y\": 0.8388699293136597\n                    },\n                    {\n                        \"X\": 0.4114378094673157,\n                        \"Y\": 0.8652122616767883\n                    },\n                    {\n                        \"X\": 0.1904873251914978,\n                        \"Y\": 0.8652850389480591\n                    }\n                ]\n            },\n            \"Id\": \"88574ef0-a805-478e-8877-17d34db00a7c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5ffdc353-c75c-49c5-b728-2b78e3a628d5\",\n                        \"d0089345-ba15-4570-86f4-109d4815d903\",\n                        \"b66e35bd-eaa5-430a-ab9e-6479d3047d53\",\n                        \"96f2f06e-7f7d-4dd3-8af8-a4d77ddf8777\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.99073791503906,\n            \"Text\": \"2021\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11506436765193939,\n                    \"Height\": 0.052215345203876495,\n                    \"Left\": 0.4716554284095764,\n                    \"Top\": 0.8095809817314148\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4716554284095764,\n                        \"Y\": 0.8096196055412292\n                    },\n                    {\n                        \"X\": 0.5866628289222717,\n                        \"Y\": 0.8095809817314148\n                    },\n                    {\n                        \"X\": 0.586719810962677,\n                        \"Y\": 0.8617583513259888\n                    },\n                    {\n                        \"X\": 0.471710741519928,\n                        \"Y\": 0.8617963194847107\n                    }\n                ]\n            },\n            \"Id\": \"179cbd6b-f8d2-4e4b-a7b9-939760eb5dff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5a1465a6-79fe-49ab-89cc-41d1a40e84dc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.75955200195312,\n            \"Text\": \"Department of the Treasury-Internal - Revenue Service\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2994612455368042,\n                    \"Height\": 0.01893613487482071,\n                    \"Left\": 0.6748896241188049,\n                    \"Top\": 0.816477358341217\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6748896241188049,\n                        \"Y\": 0.816577672958374\n                    },\n                    {\n                        \"X\": 0.9743282794952393,\n                        \"Y\": 0.816477358341217\n                    },\n                    {\n                        \"X\": 0.9743508696556091,\n                        \"Y\": 0.8353138566017151\n                    },\n                    {\n                        \"X\": 0.6749106645584106,\n                        \"Y\": 0.8354135155677795\n                    }\n                ]\n            },\n            \"Id\": \"32350cea-49dc-4405-9ec3-83c9e1370230\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9327123b-1dce-47d2-a629-7642d76b03e6\",\n                        \"4ab20708-1c99-4a2b-8535-789fcb38a83b\",\n                        \"408e0012-78b5-4015-8159-24001b9c254d\",\n                        \"c2fcf635-bff6-45f0-89a7-ed7650029932\",\n                        \"4c5e83b1-be00-4058-bc9d-30d7db26f572\",\n                        \"8f2d1265-ce44-4761-ab6a-014b04b49d08\",\n                        \"199a2503-5c07-479a-a385-76c423ff9a00\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9476547241211,\n            \"Text\": \"This information is being furnished to the\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.24063730239868164,\n                    \"Height\": 0.01886776089668274,\n                    \"Left\": 0.7334398627281189,\n                    \"Top\": 0.8498373627662659\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7334398627281189,\n                        \"Y\": 0.8499170541763306\n                    },\n                    {\n                        \"X\": 0.9740546345710754,\n                        \"Y\": 0.8498373627662659\n                    },\n                    {\n                        \"X\": 0.9740771651268005,\n                        \"Y\": 0.8686259388923645\n                    },\n                    {\n                        \"X\": 0.7334611415863037,\n                        \"Y\": 0.868705153465271\n                    }\n                ]\n            },\n            \"Id\": \"f69d17bc-e000-461a-8a84-301a16dd54d1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e3777c8d-5cb6-45f2-9846-1aea680029bf\",\n                        \"0798f2f8-14c3-4346-83b6-25c049ffb591\",\n                        \"efa18034-4f31-4a1a-bd8a-cec4ba7c333b\",\n                        \"c6ceeb92-6937-4db6-990c-5094b3c21234\",\n                        \"5acd13cb-c701-4a65-bf1d-ba1ae0c80dde\",\n                        \"6e5f121e-c5bf-4bc7-80fd-75cdabac1146\",\n                        \"d3f4eedf-7330-47f0-8be9-c0e8ab1b4e40\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.27159118652344,\n            \"Text\": \"Copy C-For - EMPLOYEE'S RECORDS\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2548321783542633,\n                    \"Height\": 0.021290328353643417,\n                    \"Left\": 0.02667216584086418,\n                    \"Top\": 0.8766648173332214\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02667216584086418,\n                        \"Y\": 0.8767484426498413\n                    },\n                    {\n                        \"X\": 0.281482994556427,\n                        \"Y\": 0.8766648173332214\n                    },\n                    {\n                        \"X\": 0.2815043330192566,\n                        \"Y\": 0.8978721499443054\n                    },\n                    {\n                        \"X\": 0.02669202722609043,\n                        \"Y\": 0.8979551196098328\n                    }\n                ]\n            },\n            \"Id\": \"4ed568b5-f127-4a40-8174-3dc78632548c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"18140348-cbbc-437e-b484-1570ec1f88fa\",\n                        \"76a54ed1-e286-46a5-8543-fd5579ee3a5c\",\n                        \"c7da2336-5b2a-4045-8e3c-dc88ff95fe98\",\n                        \"00523fc6-9e17-4b8f-81d6-8e9626bcf737\",\n                        \"0fba1435-17c3-4a8d-8501-dfe2f0bbdede\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.24195098876953,\n            \"Text\": \"V.I. Bureau of Internal Revenue.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18468676507472992,\n                    \"Height\": 0.015483555383980274,\n                    \"Left\": 0.7890822887420654,\n                    \"Top\": 0.8707535266876221\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7890822887420654,\n                        \"Y\": 0.8708142638206482\n                    },\n                    {\n                        \"X\": 0.9737505912780762,\n                        \"Y\": 0.8707535266876221\n                    },\n                    {\n                        \"X\": 0.9737690687179565,\n                        \"Y\": 0.8861766457557678\n                    },\n                    {\n                        \"X\": 0.7890999913215637,\n                        \"Y\": 0.8862370848655701\n                    }\n                ]\n            },\n            \"Id\": \"fbdf1dda-45d2-410a-8f0c-c3bc219605dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4f7cfc06-bf81-4837-b650-3de6dfbdfbcb\",\n                        \"18bed61b-1c68-41ab-9ea8-dc9c44518f56\",\n                        \"fe72c60b-2d71-417e-9752-d8bb1991b8d7\",\n                        \"0778e174-e18c-4120-b7b5-d53a5cd8f53d\",\n                        \"054e3848-c860-431c-9584-b39050429baf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91568756103516,\n            \"Text\": \"(See Notice to Employee on the back of Copy B.)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3073972761631012,\n                    \"Height\": 0.02127937786281109,\n                    \"Left\": 0.026640957221388817,\n                    \"Top\": 0.9018016457557678\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026640957221388817,\n                        \"Y\": 0.9019016623497009\n                    },\n                    {\n                        \"X\": 0.3340165913105011,\n                        \"Y\": 0.9018016457557678\n                    },\n                    {\n                        \"X\": 0.33403822779655457,\n                        \"Y\": 0.9229817390441895\n                    },\n                    {\n                        \"X\": 0.026660790666937828,\n                        \"Y\": 0.9230809807777405\n                    }\n                ]\n            },\n            \"Id\": \"05924c12-0c6b-4440-97d7-50eef22f55f4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"30c1b3e3-f732-45d5-8fdf-42485b7ad15d\",\n                        \"9b89aaf6-e1ed-484a-a0d9-38d49f4d2ecc\",\n                        \"3777291e-9313-47bf-b6d6-9e38527188ed\",\n                        \"5594c7bf-504b-40d8-bf6b-178fa772fcf2\",\n                        \"2ea30502-b6d3-4c28-844c-e2197d4ae4aa\",\n                        \"51b445b6-518e-4a16-975a-4ba4653070c9\",\n                        \"de030f9c-357b-429b-9761-190feebc27cc\",\n                        \"aa687778-7ec9-4119-832e-4150ee805282\",\n                        \"b4015376-abd7-40a8-b571-0a5501f3c681\",\n                        \"fb9a64c7-4bfd-447d-8947-c5c1b4f33e58\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96290588378906,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007396991364657879,\n                    \"Height\": 0.011567722074687481,\n                    \"Left\": 0.23905935883522034,\n                    \"Top\": 0.0355641134083271\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23905935883522034,\n                        \"Y\": 0.03556723892688751\n                    },\n                    {\n                        \"X\": 0.24644480645656586,\n                        \"Y\": 0.0355641134083271\n                    },\n                    {\n                        \"X\": 0.2464563399553299,\n                        \"Y\": 0.047128722071647644\n                    },\n                    {\n                        \"X\": 0.239070862531662,\n                        \"Y\": 0.04713183641433716\n                    }\n                ]\n            },\n            \"Id\": \"b592ed40-3aad-4ddc-9861-ba0ba333941d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9553451538086,\n            \"Text\": \"Employee's\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06437654793262482,\n                    \"Height\": 0.018910609185695648,\n                    \"Left\": 0.2527373731136322,\n                    \"Top\": 0.03177203983068466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2527373731136322,\n                        \"Y\": 0.03179928660392761\n                    },\n                    {\n                        \"X\": 0.31709471344947815,\n                        \"Y\": 0.03177203983068466\n                    },\n                    {\n                        \"X\": 0.3171139359474182,\n                        \"Y\": 0.050655536353588104\n                    },\n                    {\n                        \"X\": 0.252756267786026,\n                        \"Y\": 0.05068264901638031\n                    }\n                ]\n            },\n            \"Id\": \"07a03c9c-ca68-4435-8871-ada806d1025d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88821411132812,\n            \"Text\": \"social\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03229084238409996,\n                    \"Height\": 0.015327892266213894,\n                    \"Left\": 0.32023191452026367,\n                    \"Top\": 0.03198089450597763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32023191452026367,\n                        \"Y\": 0.03199455887079239\n                    },\n                    {\n                        \"X\": 0.3525070250034332,\n                        \"Y\": 0.03198089450597763\n                    },\n                    {\n                        \"X\": 0.35252276062965393,\n                        \"Y\": 0.04729517921805382\n                    },\n                    {\n                        \"X\": 0.3202475309371948,\n                        \"Y\": 0.0473087839782238\n                    }\n                ]\n            },\n            \"Id\": \"02283f00-40fa-4ecf-805f-bcebef675274\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9751968383789,\n            \"Text\": \"security\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04381552338600159,\n                    \"Height\": 0.018170099705457687,\n                    \"Left\": 0.35535725951194763,\n                    \"Top\": 0.03226521611213684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35535725951194763,\n                        \"Y\": 0.03228375315666199\n                    },\n                    {\n                        \"X\": 0.3991538882255554,\n                        \"Y\": 0.03226521611213684\n                    },\n                    {\n                        \"X\": 0.3991727828979492,\n                        \"Y\": 0.050416864454746246\n                    },\n                    {\n                        \"X\": 0.35537591576576233,\n                        \"Y\": 0.05043531581759453\n                    }\n                ]\n            },\n            \"Id\": \"7ff5667d-aa23-4e30-9d87-612be2934bd6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97386169433594,\n            \"Text\": \"number\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043167710304260254,\n                    \"Height\": 0.014962701126933098,\n                    \"Left\": 0.4018329977989197,\n                    \"Top\": 0.032279014587402344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4018329977989197,\n                        \"Y\": 0.0322972796857357\n                    },\n                    {\n                        \"X\": 0.44498497247695923,\n                        \"Y\": 0.032279014587402344\n                    },\n                    {\n                        \"X\": 0.44500070810317993,\n                        \"Y\": 0.047223519533872604\n                    },\n                    {\n                        \"X\": 0.40184855461120605,\n                        \"Y\": 0.04724171385169029\n                    }\n                ]\n            },\n            \"Id\": \"37406464-c5a5-4c69-9fbc-27d0740ca0c6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77874755859375,\n            \"Text\": \"2222-2222-2222\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11555629968643188,\n                    \"Height\": 0.018789883702993393,\n                    \"Left\": 0.31066638231277466,\n                    \"Top\": 0.0594559907913208\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31066638231277466,\n                        \"Y\": 0.05950454622507095\n                    },\n                    {\n                        \"X\": 0.42620304226875305,\n                        \"Y\": 0.0594559907913208\n                    },\n                    {\n                        \"X\": 0.42622268199920654,\n                        \"Y\": 0.07819756120443344\n                    },\n                    {\n                        \"X\": 0.3106854259967804,\n                        \"Y\": 0.07824587821960449\n                    }\n                ]\n            },\n            \"Id\": \"b4e56f6e-acb6-4c22-9742-1ddba0b9410c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94091796875,\n            \"Text\": \"OMB\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028610048815608025,\n                    \"Height\": 0.015216492116451263,\n                    \"Left\": 0.46987608075141907,\n                    \"Top\": 0.06024258956313133\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46987608075141907,\n                        \"Y\": 0.06025460362434387\n                    },\n                    {\n                        \"X\": 0.49846988916397095,\n                        \"Y\": 0.06024258956313133\n                    },\n                    {\n                        \"X\": 0.49848613142967224,\n                        \"Y\": 0.07544711232185364\n                    },\n                    {\n                        \"X\": 0.4698921740055084,\n                        \"Y\": 0.0754590779542923\n                    }\n                ]\n            },\n            \"Id\": \"16c752c0-1c5c-49d1-b494-b5429be0ffc2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8190689086914,\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018995756283402443,\n                    \"Height\": 0.015114756301045418,\n                    \"Left\": 0.501986563205719,\n                    \"Top\": 0.060488712042570114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.501986563205719,\n                        \"Y\": 0.06049668416380882\n                    },\n                    {\n                        \"X\": 0.520966112613678,\n                        \"Y\": 0.060488712042570114\n                    },\n                    {\n                        \"X\": 0.5209823250770569,\n                        \"Y\": 0.07559552788734436\n                    },\n                    {\n                        \"X\": 0.5020027160644531,\n                        \"Y\": 0.07560347020626068\n                    }\n                ]\n            },\n            \"Id\": \"b56a6e28-8bb9-4602-a8f0-4341a97e9f77\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89366912841797,\n            \"Text\": \"1545-0008\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.059195298701524734,\n                    \"Height\": 0.014855367131531239,\n                    \"Left\": 0.5249621868133545,\n                    \"Top\": 0.06076397746801376\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5249621868133545,\n                        \"Y\": 0.0607888363301754\n                    },\n                    {\n                        \"X\": 0.5841413140296936,\n                        \"Y\": 0.06076397746801376\n                    },\n                    {\n                        \"X\": 0.5841574668884277,\n                        \"Y\": 0.07559458166360855\n                    },\n                    {\n                        \"X\": 0.5249781608581543,\n                        \"Y\": 0.07561934739351273\n                    }\n                ]\n            },\n            \"Id\": \"0ad715e6-9365-4ded-af8e-9f096cc17989\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87263488769531,\n            \"Text\": \"b\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007655039429664612,\n                    \"Height\": 0.014592104591429234,\n                    \"Left\": 0.03696010634303093,\n                    \"Top\": 0.09427449107170105\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03696010634303093,\n                        \"Y\": 0.09427767246961594\n                    },\n                    {\n                        \"X\": 0.044601406902074814,\n                        \"Y\": 0.09427449107170105\n                    },\n                    {\n                        \"X\": 0.04461514577269554,\n                        \"Y\": 0.10886342078447342\n                    },\n                    {\n                        \"X\": 0.03697381168603897,\n                        \"Y\": 0.10886659473180771\n                    }\n                ]\n            },\n            \"Id\": \"71d0398f-800c-46a5-a32b-b2d5cf0ed14c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92806243896484,\n            \"Text\": \"Employer\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0523703470826149,\n                    \"Height\": 0.018671244382858276,\n                    \"Left\": 0.05144961550831795,\n                    \"Top\": 0.09381453692913055\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05144961550831795,\n                        \"Y\": 0.09383632987737656\n                    },\n                    {\n                        \"X\": 0.10380209237337112,\n                        \"Y\": 0.09381453692913055\n                    },\n                    {\n                        \"X\": 0.10381995886564255,\n                        \"Y\": 0.11246408522129059\n                    },\n                    {\n                        \"X\": 0.05146721005439758,\n                        \"Y\": 0.11248577386140823\n                    }\n                ]\n            },\n            \"Id\": \"66b81e6c-05fd-4a92-8a01-2a66e0fb053d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82937622070312,\n            \"Text\": \"identification\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07024690508842468,\n                    \"Height\": 0.015485255979001522,\n                    \"Left\": 0.10655481368303299,\n                    \"Top\": 0.09393706917762756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10655481368303299,\n                        \"Y\": 0.09396631270647049\n                    },\n                    {\n                        \"X\": 0.1767866015434265,\n                        \"Y\": 0.09393706917762756\n                    },\n                    {\n                        \"X\": 0.17680172622203827,\n                        \"Y\": 0.10939320176839828\n                    },\n                    {\n                        \"X\": 0.10656964033842087,\n                        \"Y\": 0.10942232608795166\n                    }\n                ]\n            },\n            \"Id\": \"6adeb781-48ae-48bd-8403-1cb43d0db184\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90804290771484,\n            \"Text\": \"number\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04280750826001167,\n                    \"Height\": 0.014699048362672329,\n                    \"Left\": 0.18008634448051453,\n                    \"Top\": 0.09451694041490555\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18008634448051453,\n                        \"Y\": 0.09453475475311279\n                    },\n                    {\n                        \"X\": 0.2228792905807495,\n                        \"Y\": 0.09451694041490555\n                    },\n                    {\n                        \"X\": 0.2228938490152359,\n                        \"Y\": 0.10919824242591858\n                    },\n                    {\n                        \"X\": 0.1801007241010666,\n                        \"Y\": 0.10921598970890045\n                    }\n                ]\n            },\n            \"Id\": \"cc359c90-c9e3-48c4-82e2-dc4dcb07241e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89529418945312,\n            \"Text\": \"(EIN)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026098748669028282,\n                    \"Height\": 0.01813141442835331,\n                    \"Left\": 0.2257259041070938,\n                    \"Top\": 0.09395076334476471\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2257259041070938,\n                        \"Y\": 0.09396162629127502\n                    },\n                    {\n                        \"X\": 0.2518065273761749,\n                        \"Y\": 0.09395076334476471\n                    },\n                    {\n                        \"X\": 0.25182464718818665,\n                        \"Y\": 0.11207137256860733\n                    },\n                    {\n                        \"X\": 0.2257438749074936,\n                        \"Y\": 0.11208217591047287\n                    }\n                ]\n            },\n            \"Id\": \"49301fd4-7bcf-4d7e-8181-647d8d9bdb37\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89920043945312,\n            \"Text\": \"1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00549092423170805,\n                    \"Height\": 0.014187289401888847,\n                    \"Left\": 0.5576387047767639,\n                    \"Top\": 0.09455863386392593\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5576387047767639,\n                        \"Y\": 0.09456091374158859\n                    },\n                    {\n                        \"X\": 0.5631142258644104,\n                        \"Y\": 0.09455863386392593\n                    },\n                    {\n                        \"X\": 0.5631296634674072,\n                        \"Y\": 0.10874365270137787\n                    },\n                    {\n                        \"X\": 0.557654082775116,\n                        \"Y\": 0.10874592512845993\n                    }\n                ]\n            },\n            \"Id\": \"8a2e0a51-7089-42f9-b2c4-dca21db03918\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.13490295410156,\n            \"Text\": \"Wages,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03863709419965744,\n                    \"Height\": 0.018042683601379395,\n                    \"Left\": 0.5725311636924744,\n                    \"Top\": 0.0943102017045021\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5725311636924744,\n                        \"Y\": 0.09432628005743027\n                    },\n                    {\n                        \"X\": 0.611148476600647,\n                        \"Y\": 0.0943102017045021\n                    },\n                    {\n                        \"X\": 0.6111682653427124,\n                        \"Y\": 0.1123368889093399\n                    },\n                    {\n                        \"X\": 0.5725507736206055,\n                        \"Y\": 0.1123528853058815\n                    }\n                ]\n            },\n            \"Id\": \"852183e4-64bb-4345-a0e3-ea7f172518a0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83831024169922,\n            \"Text\": \"tips,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021468233317136765,\n                    \"Height\": 0.01766851730644703,\n                    \"Left\": 0.6141494512557983,\n                    \"Top\": 0.09432444721460342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6141494512557983,\n                        \"Y\": 0.09433337301015854\n                    },\n                    {\n                        \"X\": 0.6355981826782227,\n                        \"Y\": 0.09432444721460342\n                    },\n                    {\n                        \"X\": 0.635617733001709,\n                        \"Y\": 0.11198407411575317\n                    },\n                    {\n                        \"X\": 0.6141688823699951,\n                        \"Y\": 0.1119929626584053\n                    }\n                ]\n            },\n            \"Id\": \"4925c956-82ca-4dcb-909a-46317b168e53\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97940826416016,\n            \"Text\": \"other\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02699459157884121,\n                    \"Height\": 0.014454626478254795,\n                    \"Left\": 0.6389362215995789,\n                    \"Top\": 0.09459494054317474\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6389362215995789,\n                        \"Y\": 0.09460616856813431\n                    },\n                    {\n                        \"X\": 0.6659147143363953,\n                        \"Y\": 0.09459494054317474\n                    },\n                    {\n                        \"X\": 0.6659308075904846,\n                        \"Y\": 0.10903838276863098\n                    },\n                    {\n                        \"X\": 0.6389521956443787,\n                        \"Y\": 0.10904956609010696\n                    }\n                ]\n            },\n            \"Id\": \"05c3abe7-ff18-4fe5-8bec-c104b17a26e9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90483856201172,\n            \"Text\": \"compensation\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07182537764310837,\n                    \"Height\": 0.01798674464225769,\n                    \"Left\": 0.6683717966079712,\n                    \"Top\": 0.09413457661867142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6683717966079712,\n                        \"Y\": 0.09416446834802628\n                    },\n                    {\n                        \"X\": 0.740176796913147,\n                        \"Y\": 0.09413457661867142\n                    },\n                    {\n                        \"X\": 0.7401971817016602,\n                        \"Y\": 0.11209157109260559\n                    },\n                    {\n                        \"X\": 0.6683918237686157,\n                        \"Y\": 0.11212132126092911\n                    }\n                ]\n            },\n            \"Id\": \"30359833-aeb0-4016-9e6e-dd9449c258a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93971252441406,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00756388483569026,\n                    \"Height\": 0.0139803821220994,\n                    \"Left\": 0.77216637134552,\n                    \"Top\": 0.0948617085814476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.77216637134552,\n                        \"Y\": 0.0948648527264595\n                    },\n                    {\n                        \"X\": 0.7797142267227173,\n                        \"Y\": 0.0948617085814476\n                    },\n                    {\n                        \"X\": 0.7797302603721619,\n                        \"Y\": 0.10883896052837372\n                    },\n                    {\n                        \"X\": 0.7721823453903198,\n                        \"Y\": 0.10884208977222443\n                    }\n                ]\n            },\n            \"Id\": \"bdc1958f-896e-4c01-85a3-1f165c981b8a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.25851440429688,\n            \"Text\": \"VI\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01096197310835123,\n                    \"Height\": 0.014780212193727493,\n                    \"Left\": 0.7889760732650757,\n                    \"Top\": 0.0939510315656662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7889760732650757,\n                        \"Y\": 0.09395558387041092\n                    },\n                    {\n                        \"X\": 0.7999210357666016,\n                        \"Y\": 0.0939510315656662\n                    },\n                    {\n                        \"X\": 0.7999380230903625,\n                        \"Y\": 0.10872670263051987\n                    },\n                    {\n                        \"X\": 0.7889930605888367,\n                        \"Y\": 0.1087312400341034\n                    }\n                ]\n            },\n            \"Id\": \"26eaa694-f52e-40ff-99c4-56f60310662f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95108795166016,\n            \"Text\": \"income\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040533099323511124,\n                    \"Height\": 0.014885458163917065,\n                    \"Left\": 0.8034635782241821,\n                    \"Top\": 0.09419234842061996\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8034635782241821,\n                        \"Y\": 0.0942092165350914\n                    },\n                    {\n                        \"X\": 0.8439793586730957,\n                        \"Y\": 0.09419234842061996\n                    },\n                    {\n                        \"X\": 0.8439966440200806,\n                        \"Y\": 0.10906101018190384\n                    },\n                    {\n                        \"X\": 0.8034806847572327,\n                        \"Y\": 0.1090778112411499\n                    }\n                ]\n            },\n            \"Id\": \"5247173e-c1d2-476a-8732-17401ef2b486\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9355239868164,\n            \"Text\": \"tax\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017686130478978157,\n                    \"Height\": 0.014345049858093262,\n                    \"Left\": 0.8467995524406433,\n                    \"Top\": 0.09471142292022705\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8467995524406433,\n                        \"Y\": 0.09471877664327621\n                    },\n                    {\n                        \"X\": 0.8644689321517944,\n                        \"Y\": 0.09471142292022705\n                    },\n                    {\n                        \"X\": 0.8644856810569763,\n                        \"Y\": 0.10904914885759354\n                    },\n                    {\n                        \"X\": 0.8468162417411804,\n                        \"Y\": 0.10905647277832031\n                    }\n                ]\n            },\n            \"Id\": \"a315ec51-7126-4510-9bbc-51218f326920\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96916198730469,\n            \"Text\": \"withheld\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046456195414066315,\n                    \"Height\": 0.015256952494382858,\n                    \"Left\": 0.8672348856925964,\n                    \"Top\": 0.09393791109323502\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8672348856925964,\n                        \"Y\": 0.09395724534988403\n                    },\n                    {\n                        \"X\": 0.9136730432510376,\n                        \"Y\": 0.09393791109323502\n                    },\n                    {\n                        \"X\": 0.9136911034584045,\n                        \"Y\": 0.10917560756206512\n                    },\n                    {\n                        \"X\": 0.8672527074813843,\n                        \"Y\": 0.10919485986232758\n                    }\n                ]\n            },\n            \"Id\": \"7972729c-31eb-4113-904c-098f6da9f428\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91834259033203,\n            \"Text\": \"333333333333\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0820305272936821,\n                    \"Height\": 0.015171004459261894,\n                    \"Left\": 0.25816723704338074,\n                    \"Top\": 0.1209290623664856\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25816723704338074,\n                        \"Y\": 0.1209629625082016\n                    },\n                    {\n                        \"X\": 0.34018227458000183,\n                        \"Y\": 0.1209290623664856\n                    },\n                    {\n                        \"X\": 0.34019777178764343,\n                        \"Y\": 0.13606630265712738\n                    },\n                    {\n                        \"X\": 0.2581824064254761,\n                        \"Y\": 0.13610006868839264\n                    }\n                ]\n            },\n            \"Id\": \"a65396ab-952f-4fbf-9d84-172666cd5139\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 89.95465850830078,\n            \"Text\": \"$5,00.000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054881032556295395,\n                    \"Height\": 0.01813175529241562,\n                    \"Left\": 0.6387309432029724,\n                    \"Top\": 0.12367390096187592\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6387309432029724,\n                        \"Y\": 0.12369655817747116\n                    },\n                    {\n                        \"X\": 0.6935916543006897,\n                        \"Y\": 0.12367390096187592\n                    },\n                    {\n                        \"X\": 0.6936119794845581,\n                        \"Y\": 0.14178310334682465\n                    },\n                    {\n                        \"X\": 0.6387510299682617,\n                        \"Y\": 0.14180564880371094\n                    }\n                ]\n            },\n            \"Id\": \"2820ffb8-57be-42f1-952e-12fe8531a83b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 79.06787109375,\n            \"Text\": \"$5,00.000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05478348210453987,\n                    \"Height\": 0.018087362870573997,\n                    \"Left\": 0.8375629186630249,\n                    \"Top\": 0.12173359096050262\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8375629186630249,\n                        \"Y\": 0.12175621837377548\n                    },\n                    {\n                        \"X\": 0.8923251032829285,\n                        \"Y\": 0.12173359096050262\n                    },\n                    {\n                        \"X\": 0.8923463821411133,\n                        \"Y\": 0.13979843258857727\n                    },\n                    {\n                        \"X\": 0.8375838994979858,\n                        \"Y\": 0.13982094824314117\n                    }\n                ]\n            },\n            \"Id\": \"e5c221f1-b7c0-434f-bde1-23c9cc4bd9d6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.44338989257812,\n            \"Text\": \"c\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007511070463806391,\n                    \"Height\": 0.01146696601063013,\n                    \"Left\": 0.03691190481185913,\n                    \"Top\": 0.15951143205165863\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03691190481185913,\n                        \"Y\": 0.15951448678970337\n                    },\n                    {\n                        \"X\": 0.04441218078136444,\n                        \"Y\": 0.15951143205165863\n                    },\n                    {\n                        \"X\": 0.044422976672649384,\n                        \"Y\": 0.17097532749176025\n                    },\n                    {\n                        \"X\": 0.03692267835140228,\n                        \"Y\": 0.1709783971309662\n                    }\n                ]\n            },\n            \"Id\": \"709a6de4-be0a-43c1-8719-1424af9418ec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93362426757812,\n            \"Text\": \"Employer's\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.061739154160022736,\n                    \"Height\": 0.018390672281384468,\n                    \"Left\": 0.05086691305041313,\n                    \"Top\": 0.156057670712471\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05086691305041313,\n                        \"Y\": 0.15608292818069458\n                    },\n                    {\n                        \"X\": 0.11258842796087265,\n                        \"Y\": 0.156057670712471\n                    },\n                    {\n                        \"X\": 0.11260606348514557,\n                        \"Y\": 0.1744232028722763\n                    },\n                    {\n                        \"X\": 0.05088423937559128,\n                        \"Y\": 0.17444834113121033\n                    }\n                ]\n            },\n            \"Id\": \"4b78d56a-a94e-46f6-91e7-61fc813efed1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89724731445312,\n            \"Text\": \"name,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033444296568632126,\n                    \"Height\": 0.01449244562536478,\n                    \"Left\": 0.11591646075248718,\n                    \"Top\": 0.1591958850622177\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11591646075248718,\n                        \"Y\": 0.15920956432819366\n                    },\n                    {\n                        \"X\": 0.1493467092514038,\n                        \"Y\": 0.1591958850622177\n                    },\n                    {\n                        \"X\": 0.1493607610464096,\n                        \"Y\": 0.17367471754550934\n                    },\n                    {\n                        \"X\": 0.11593037843704224,\n                        \"Y\": 0.17368833720684052\n                    }\n                ]\n            },\n            \"Id\": \"53a6f4b7-5755-415b-9145-3f7fc0074913\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.08809661865234,\n            \"Text\": \"address,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04751484468579292,\n                    \"Height\": 0.017004942521452904,\n                    \"Left\": 0.1528179943561554,\n                    \"Top\": 0.15633736550807953\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1528179943561554,\n                        \"Y\": 0.1563568115234375\n                    },\n                    {\n                        \"X\": 0.20031610131263733,\n                        \"Y\": 0.15633736550807953\n                    },\n                    {\n                        \"X\": 0.20033283531665802,\n                        \"Y\": 0.17332296073436737\n                    },\n                    {\n                        \"X\": 0.15283448994159698,\n                        \"Y\": 0.17334230244159698\n                    }\n                ]\n            },\n            \"Id\": \"26fe5348-16a7-4403-8233-747648f0d519\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99441528320312,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020975230261683464,\n                    \"Height\": 0.014949154108762741,\n                    \"Left\": 0.20388570427894592,\n                    \"Top\": 0.15624845027923584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20388570427894592,\n                        \"Y\": 0.1562570184469223\n                    },\n                    {\n                        \"X\": 0.22484610974788666,\n                        \"Y\": 0.15624845027923584\n                    },\n                    {\n                        \"X\": 0.22486093640327454,\n                        \"Y\": 0.1711890548467636\n                    },\n                    {\n                        \"X\": 0.20390042662620544,\n                        \"Y\": 0.17119759321212769\n                    }\n                ]\n            },\n            \"Id\": \"c35e1377-86d4-4b6f-b917-09928c26227b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9503173828125,\n            \"Text\": \"ZIP\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01913474313914776,\n                    \"Height\": 0.015291381627321243,\n                    \"Left\": 0.2277170866727829,\n                    \"Top\": 0.15587101876735687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2277170866727829,\n                        \"Y\": 0.15587884187698364\n                    },\n                    {\n                        \"X\": 0.2468365728855133,\n                        \"Y\": 0.15587101876735687\n                    },\n                    {\n                        \"X\": 0.2468518316745758,\n                        \"Y\": 0.17115460336208344\n                    },\n                    {\n                        \"X\": 0.22773225605487823,\n                        \"Y\": 0.17116239666938782\n                    }\n                ]\n            },\n            \"Id\": \"90199fd1-0daf-42fb-ba5b-56e75e6aca5a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97685241699219,\n            \"Text\": \"code\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02791590429842472,\n                    \"Height\": 0.015060401521623135,\n                    \"Left\": 0.2502204179763794,\n                    \"Top\": 0.15627025067806244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2502204179763794,\n                        \"Y\": 0.15628167986869812\n                    },\n                    {\n                        \"X\": 0.2781211733818054,\n                        \"Y\": 0.15627025067806244\n                    },\n                    {\n                        \"X\": 0.27813631296157837,\n                        \"Y\": 0.17131929099559784\n                    },\n                    {\n                        \"X\": 0.2502354383468628,\n                        \"Y\": 0.17133066058158875\n                    }\n                ]\n            },\n            \"Id\": \"c19241c9-73b2-48a5-a787-d50cd75c0d48\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89219665527344,\n            \"Text\": \"3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007423470262438059,\n                    \"Height\": 0.014232627116143703,\n                    \"Left\": 0.5573426485061646,\n                    \"Top\": 0.15653963387012482\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5573426485061646,\n                        \"Y\": 0.15654267370700836\n                    },\n                    {\n                        \"X\": 0.564750611782074,\n                        \"Y\": 0.15653963387012482\n                    },\n                    {\n                        \"X\": 0.5647661089897156,\n                        \"Y\": 0.17076924443244934\n                    },\n                    {\n                        \"X\": 0.5573580265045166,\n                        \"Y\": 0.1707722544670105\n                    }\n                ]\n            },\n            \"Id\": \"f380da0e-ffcd-4565-a1df-aaecca1fb76e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8941650390625,\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03368143364787102,\n                    \"Height\": 0.015551743097603321,\n                    \"Left\": 0.5746787190437317,\n                    \"Top\": 0.15592996776103973\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5746787190437317,\n                        \"Y\": 0.15594373643398285\n                    },\n                    {\n                        \"X\": 0.6083430647850037,\n                        \"Y\": 0.15592996776103973\n                    },\n                    {\n                        \"X\": 0.6083601713180542,\n                        \"Y\": 0.17146797478199005\n                    },\n                    {\n                        \"X\": 0.5746956467628479,\n                        \"Y\": 0.17148169875144958\n                    }\n                ]\n            },\n            \"Id\": \"7c03ed98-4f68-4d61-ad7c-303069e66003\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98090362548828,\n            \"Text\": \"security\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04357582703232765,\n                    \"Height\": 0.01819290593266487,\n                    \"Left\": 0.6115464568138123,\n                    \"Top\": 0.15640054643154144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6115464568138123,\n                        \"Y\": 0.15641836822032928\n                    },\n                    {\n                        \"X\": 0.6551020741462708,\n                        \"Y\": 0.15640054643154144\n                    },\n                    {\n                        \"X\": 0.6551222801208496,\n                        \"Y\": 0.17457571625709534\n                    },\n                    {\n                        \"X\": 0.611566424369812,\n                        \"Y\": 0.17459344863891602\n                    }\n                ]\n            },\n            \"Id\": \"ecf8dcf8-e9f7-477b-a334-0791d481e78e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93812561035156,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03635532781481743,\n                    \"Height\": 0.014967132359743118,\n                    \"Left\": 0.6578547358512878,\n                    \"Top\": 0.15961630642414093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6578547358512878,\n                        \"Y\": 0.1596311628818512\n                    },\n                    {\n                        \"X\": 0.6941932439804077,\n                        \"Y\": 0.15961630642414093\n                    },\n                    {\n                        \"X\": 0.6942100524902344,\n                        \"Y\": 0.17456863820552826\n                    },\n                    {\n                        \"X\": 0.6578713655471802,\n                        \"Y\": 0.17458343505859375\n                    }\n                ]\n            },\n            \"Id\": \"e013732e-b125-46c8-ad13-e28074eb4c4a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96517944335938,\n            \"Text\": \"4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007637071423232555,\n                    \"Height\": 0.0145772285759449,\n                    \"Left\": 0.7719845175743103,\n                    \"Top\": 0.15641307830810547\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7719845175743103,\n                        \"Y\": 0.15641620755195618\n                    },\n                    {\n                        \"X\": 0.7796048521995544,\n                        \"Y\": 0.15641307830810547\n                    },\n                    {\n                        \"X\": 0.7796216011047363,\n                        \"Y\": 0.17098720371723175\n                    },\n                    {\n                        \"X\": 0.7720011472702026,\n                        \"Y\": 0.17099031805992126\n                    }\n                ]\n            },\n            \"Id\": \"41e31918-9b77-4eda-b5db-df458bbabd98\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92665100097656,\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03376328572630882,\n                    \"Height\": 0.015596456825733185,\n                    \"Left\": 0.7894103527069092,\n                    \"Top\": 0.15582551062107086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7894103527069092,\n                        \"Y\": 0.15583932399749756\n                    },\n                    {\n                        \"X\": 0.8231555819511414,\n                        \"Y\": 0.15582551062107086\n                    },\n                    {\n                        \"X\": 0.8231736421585083,\n                        \"Y\": 0.17140820622444153\n                    },\n                    {\n                        \"X\": 0.7894282341003418,\n                        \"Y\": 0.17142195999622345\n                    }\n                ]\n            },\n            \"Id\": \"f4c509c4-accc-4e77-bc15-03c9b257bf1f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98451232910156,\n            \"Text\": \"security\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04298072308301926,\n                    \"Height\": 0.018314529210329056,\n                    \"Left\": 0.826677680015564,\n                    \"Top\": 0.15608428418636322\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.826677680015564,\n                        \"Y\": 0.15610186755657196\n                    },\n                    {\n                        \"X\": 0.8696369528770447,\n                        \"Y\": 0.15608428418636322\n                    },\n                    {\n                        \"X\": 0.8696584105491638,\n                        \"Y\": 0.1743813157081604\n                    },\n                    {\n                        \"X\": 0.826698899269104,\n                        \"Y\": 0.17439880967140198\n                    }\n                ]\n            },\n            \"Id\": \"fa58e2b7-b1f6-470c-aa7e-e333b1a36f21\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97142028808594,\n            \"Text\": \"tax\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017625633627176285,\n                    \"Height\": 0.014467724598944187,\n                    \"Left\": 0.8725597262382507,\n                    \"Top\": 0.15672965347766876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8725597262382507,\n                        \"Y\": 0.1567368507385254\n                    },\n                    {\n                        \"X\": 0.8901683688163757,\n                        \"Y\": 0.15672965347766876\n                    },\n                    {\n                        \"X\": 0.8901853561401367,\n                        \"Y\": 0.17119020223617554\n                    },\n                    {\n                        \"X\": 0.8725767135620117,\n                        \"Y\": 0.17119736969470978\n                    }\n                ]\n            },\n            \"Id\": \"b463a5cb-a01f-4dda-ad98-818d946f4dbb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94234466552734,\n            \"Text\": \"withheld\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04670892655849457,\n                    \"Height\": 0.015408678911626339,\n                    \"Left\": 0.8928043246269226,\n                    \"Top\": 0.15588504076004028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8928043246269226,\n                        \"Y\": 0.1559041440486908\n                    },\n                    {\n                        \"X\": 0.9394949078559875,\n                        \"Y\": 0.15588504076004028\n                    },\n                    {\n                        \"X\": 0.9395132660865784,\n                        \"Y\": 0.17127467691898346\n                    },\n                    {\n                        \"X\": 0.8928224444389343,\n                        \"Y\": 0.171293705701828\n                    }\n                ]\n            },\n            \"Id\": \"4f561504-de72-4407-9c91-b1af25e24b4f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.8019027709961,\n            \"Text\": \"$7,00.0000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07848916202783585,\n                    \"Height\": 0.022453732788562775,\n                    \"Left\": 0.6318721771240234,\n                    \"Top\": 0.18349480628967285\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6318721771240234,\n                        \"Y\": 0.1835266798734665\n                    },\n                    {\n                        \"X\": 0.7103360891342163,\n                        \"Y\": 0.18349480628967285\n                    },\n                    {\n                        \"X\": 0.7103613615036011,\n                        \"Y\": 0.2059168666601181\n                    },\n                    {\n                        \"X\": 0.63189697265625,\n                        \"Y\": 0.20594854652881622\n                    }\n                ]\n            },\n            \"Id\": \"aed76a43-e65a-4daa-b95c-a94c72ed3589\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 89.64093017578125,\n            \"Text\": \"$5,00.000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05515044555068016,\n                    \"Height\": 0.01825891248881817,\n                    \"Left\": 0.8397581577301025,\n                    \"Top\": 0.18015848100185394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8397581577301025,\n                        \"Y\": 0.1801808923482895\n                    },\n                    {\n                        \"X\": 0.8948871493339539,\n                        \"Y\": 0.18015848100185394\n                    },\n                    {\n                        \"X\": 0.894908607006073,\n                        \"Y\": 0.19839508831501007\n                    },\n                    {\n                        \"X\": 0.8397793769836426,\n                        \"Y\": 0.19841739535331726\n                    }\n                ]\n            },\n            \"Id\": \"32f0e783-e7cc-4a74-8f74-ef3b7745d503\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98252868652344,\n            \"Text\": \"100\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022717468440532684,\n                    \"Height\": 0.01666111685335636,\n                    \"Left\": 0.08053712546825409,\n                    \"Top\": 0.20230050384998322\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08053712546825409,\n                        \"Y\": 0.20230968296527863\n                    },\n                    {\n                        \"X\": 0.10323864221572876,\n                        \"Y\": 0.20230050384998322\n                    },\n                    {\n                        \"X\": 0.10325459390878677,\n                        \"Y\": 0.2189524918794632\n                    },\n                    {\n                        \"X\": 0.08055297285318375,\n                        \"Y\": 0.21896162629127502\n                    }\n                ]\n            },\n            \"Id\": \"ec8bdcfd-9c28-4d48-8bf3-69bdb56441b0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98880767822266,\n            \"Text\": \"Main\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03012373298406601,\n                    \"Height\": 0.016700003296136856,\n                    \"Left\": 0.10740987211465836,\n                    \"Top\": 0.20221860706806183\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10740987211465836,\n                        \"Y\": 0.2022307813167572\n                    },\n                    {\n                        \"X\": 0.13751745223999023,\n                        \"Y\": 0.20221860706806183\n                    },\n                    {\n                        \"X\": 0.13753360509872437,\n                        \"Y\": 0.2189064919948578\n                    },\n                    {\n                        \"X\": 0.10742587596178055,\n                        \"Y\": 0.2189186066389084\n                    }\n                ]\n            },\n            \"Id\": \"29c97c26-3eb4-4640-852d-4d7b29d20469\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.11075592041016,\n            \"Text\": \"Street,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040813252329826355,\n                    \"Height\": 0.019878577440977097,\n                    \"Left\": 0.14155735075473785,\n                    \"Top\": 0.2019026130437851\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14155735075473785,\n                        \"Y\": 0.20191910862922668\n                    },\n                    {\n                        \"X\": 0.18235114216804504,\n                        \"Y\": 0.2019026130437851\n                    },\n                    {\n                        \"X\": 0.1823706030845642,\n                        \"Y\": 0.22176480293273926\n                    },\n                    {\n                        \"X\": 0.1415765881538391,\n                        \"Y\": 0.2217811942100525\n                    }\n                ]\n            },\n            \"Id\": \"c53c53d5-737c-44d1-a757-ce35b68da198\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.46862030029297,\n            \"Text\": \"Anytown,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05759595334529877,\n                    \"Height\": 0.02041027694940567,\n                    \"Left\": 0.18607769906520844,\n                    \"Top\": 0.20225825905799866\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18607769906520844,\n                        \"Y\": 0.20228153467178345\n                    },\n                    {\n                        \"X\": 0.2436533272266388,\n                        \"Y\": 0.20225825905799866\n                    },\n                    {\n                        \"X\": 0.2436736524105072,\n                        \"Y\": 0.22264540195465088\n                    },\n                    {\n                        \"X\": 0.18609769642353058,\n                        \"Y\": 0.22266854345798492\n                    }\n                ]\n            },\n            \"Id\": \"ad580d11-5141-4c0a-a53a-8b1b6c45ccf7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90259552001953,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0292188860476017,\n                    \"Height\": 0.0169159397482872,\n                    \"Left\": 0.24843542277812958,\n                    \"Top\": 0.20208458602428436\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24843542277812958,\n                        \"Y\": 0.2020963877439499\n                    },\n                    {\n                        \"X\": 0.2776373028755188,\n                        \"Y\": 0.20208458602428436\n                    },\n                    {\n                        \"X\": 0.2776543200016022,\n                        \"Y\": 0.2189887911081314\n                    },\n                    {\n                        \"X\": 0.248452290892601,\n                        \"Y\": 0.21900053322315216\n                    }\n                ]\n            },\n            \"Id\": \"1910d7b5-6d8d-493e-9e1b-c59b8688c1e0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90135192871094,\n            \"Text\": \"63000001\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05374928191304207,\n                    \"Height\": 0.015345296822488308,\n                    \"Left\": 0.2953225374221802,\n                    \"Top\": 0.203187495470047\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2953225374221802,\n                        \"Y\": 0.20320922136306763\n                    },\n                    {\n                        \"X\": 0.34905609488487244,\n                        \"Y\": 0.203187495470047\n                    },\n                    {\n                        \"X\": 0.34907183051109314,\n                        \"Y\": 0.2185111790895462\n                    },\n                    {\n                        \"X\": 0.2953380346298218,\n                        \"Y\": 0.21853280067443848\n                    }\n                ]\n            },\n            \"Id\": \"657c8c31-d5eb-46b4-b1be-cd54c6a494a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9320297241211,\n            \"Text\": \"5\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007435739506036043,\n                    \"Height\": 0.01465285662561655,\n                    \"Left\": 0.5573168396949768,\n                    \"Top\": 0.2182289958000183\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5573168396949768,\n                        \"Y\": 0.21823199093341827\n                    },\n                    {\n                        \"X\": 0.5647366642951965,\n                        \"Y\": 0.2182289958000183\n                    },\n                    {\n                        \"X\": 0.5647525787353516,\n                        \"Y\": 0.2328788787126541\n                    },\n                    {\n                        \"X\": 0.5573326945304871,\n                        \"Y\": 0.23288185894489288\n                    }\n                ]\n            },\n            \"Id\": \"479053e3-3c93-4b99-9420-7d817fb87bda\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95278930664062,\n            \"Text\": \"Medicare\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.050964415073394775,\n                    \"Height\": 0.01512136310338974,\n                    \"Left\": 0.5749150514602661,\n                    \"Top\": 0.21815690398216248\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5749150514602661,\n                        \"Y\": 0.2181774079799652\n                    },\n                    {\n                        \"X\": 0.6258628368377686,\n                        \"Y\": 0.21815690398216248\n                    },\n                    {\n                        \"X\": 0.6258794665336609,\n                        \"Y\": 0.23325784504413605\n                    },\n                    {\n                        \"X\": 0.5749315023422241,\n                        \"Y\": 0.23327825963497162\n                    }\n                ]\n            },\n            \"Id\": \"d04acb93-3128-4f47-8d74-f14ec19577c0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96631622314453,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03593861684203148,\n                    \"Height\": 0.01547368336468935,\n                    \"Left\": 0.6290172934532166,\n                    \"Top\": 0.2209734320640564\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6290172934532166,\n                        \"Y\": 0.22098787128925323\n                    },\n                    {\n                        \"X\": 0.6649386882781982,\n                        \"Y\": 0.2209734320640564\n                    },\n                    {\n                        \"X\": 0.6649559140205383,\n                        \"Y\": 0.2364327311515808\n                    },\n                    {\n                        \"X\": 0.6290343403816223,\n                        \"Y\": 0.23644711077213287\n                    }\n                ]\n            },\n            \"Id\": \"cd4087af-ee11-4523-b421-c5b1cb450f28\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99442291259766,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020754380151629448,\n                    \"Height\": 0.015031677670776844,\n                    \"Left\": 0.6683645844459534,\n                    \"Top\": 0.21829243004322052\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6683645844459534,\n                        \"Y\": 0.21830077469348907\n                    },\n                    {\n                        \"X\": 0.6891021132469177,\n                        \"Y\": 0.21829243004322052\n                    },\n                    {\n                        \"X\": 0.6891189217567444,\n                        \"Y\": 0.23331581056118011\n                    },\n                    {\n                        \"X\": 0.6683813333511353,\n                        \"Y\": 0.2333241105079651\n                    }\n                ]\n            },\n            \"Id\": \"6e51a603-fcf5-4c59-902c-9533354739f0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97486114501953,\n            \"Text\": \"tips\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0204885583370924,\n                    \"Height\": 0.01839049533009529,\n                    \"Left\": 0.6922872066497803,\n                    \"Top\": 0.21811415255069733\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6922872066497803,\n                        \"Y\": 0.21812237799167633\n                    },\n                    {\n                        \"X\": 0.712755024433136,\n                        \"Y\": 0.21811415255069733\n                    },\n                    {\n                        \"X\": 0.7127757668495178,\n                        \"Y\": 0.2364964485168457\n                    },\n                    {\n                        \"X\": 0.6923078298568726,\n                        \"Y\": 0.23650464415550232\n                    }\n                ]\n            },\n            \"Id\": \"c6ca9ad9-f857-49e7-97e9-ca4e20f0d1de\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96233367919922,\n            \"Text\": \"6\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00731046125292778,\n                    \"Height\": 0.014735755510628223,\n                    \"Left\": 0.7721942663192749,\n                    \"Top\": 0.21820589900016785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7721942663192749,\n                        \"Y\": 0.21820883452892303\n                    },\n                    {\n                        \"X\": 0.7794878482818604,\n                        \"Y\": 0.21820589900016785\n                    },\n                    {\n                        \"X\": 0.7795047163963318,\n                        \"Y\": 0.2329387366771698\n                    },\n                    {\n                        \"X\": 0.7722110748291016,\n                        \"Y\": 0.2329416573047638\n                    }\n                ]\n            },\n            \"Id\": \"ff466e92-b38a-41fe-8201-85bc2e822f40\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95142364501953,\n            \"Text\": \"Medicare\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051417868584394455,\n                    \"Height\": 0.015326155349612236,\n                    \"Left\": 0.78990238904953,\n                    \"Top\": 0.2179897129535675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.78990238904953,\n                        \"Y\": 0.21801039576530457\n                    },\n                    {\n                        \"X\": 0.8413024544715881,\n                        \"Y\": 0.2179897129535675\n                    },\n                    {\n                        \"X\": 0.841320276260376,\n                        \"Y\": 0.233295276761055\n                    },\n                    {\n                        \"X\": 0.7899199724197388,\n                        \"Y\": 0.2333158701658249\n                    }\n                ]\n            },\n            \"Id\": \"0357e2e8-6d95-4e26-b3d2-86a761ae028a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98109436035156,\n            \"Text\": \"tax\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017597010359168053,\n                    \"Height\": 0.014520225115120411,\n                    \"Left\": 0.8437151312828064,\n                    \"Top\": 0.21865439414978027\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8437151312828064,\n                        \"Y\": 0.21866147220134735\n                    },\n                    {\n                        \"X\": 0.8612951636314392,\n                        \"Y\": 0.21865439414978027\n                    },\n                    {\n                        \"X\": 0.8613121509552002,\n                        \"Y\": 0.23316757380962372\n                    },\n                    {\n                        \"X\": 0.8437319993972778,\n                        \"Y\": 0.2331746220588684\n                    }\n                ]\n            },\n            \"Id\": \"2c7e95b2-7bf1-44ef-913a-bef2facc422a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9657211303711,\n            \"Text\": \"withheld\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046487271785736084,\n                    \"Height\": 0.015430666506290436,\n                    \"Left\": 0.8640690445899963,\n                    \"Top\": 0.21780279278755188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8640690445899963,\n                        \"Y\": 0.21782149374485016\n                    },\n                    {\n                        \"X\": 0.9105380773544312,\n                        \"Y\": 0.21780279278755188\n                    },\n                    {\n                        \"X\": 0.9105563163757324,\n                        \"Y\": 0.2332148402929306\n                    },\n                    {\n                        \"X\": 0.8640870451927185,\n                        \"Y\": 0.2332334667444229\n                    }\n                ]\n            },\n            \"Id\": \"84eb79e5-7015-4c4e-af3b-d72a95c8365a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 90.9689712524414,\n            \"Text\": \"$3,00.000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054877687245607376,\n                    \"Height\": 0.018221914768218994,\n                    \"Left\": 0.6451579928398132,\n                    \"Top\": 0.24676747620105743\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6451579928398132,\n                        \"Y\": 0.2467893660068512\n                    },\n                    {\n                        \"X\": 0.7000152468681335,\n                        \"Y\": 0.24676747620105743\n                    },\n                    {\n                        \"X\": 0.7000356912612915,\n                        \"Y\": 0.26496759057044983\n                    },\n                    {\n                        \"X\": 0.6451781392097473,\n                        \"Y\": 0.26498937606811523\n                    }\n                ]\n            },\n            \"Id\": \"e777867e-5eb4-425c-9ab9-330c249a4859\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 90.9110336303711,\n            \"Text\": \"$5,00.000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05484149977564812,\n                    \"Height\": 0.018175270408391953,\n                    \"Left\": 0.8458554744720459,\n                    \"Top\": 0.24969416856765747\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8458554744720459,\n                        \"Y\": 0.24971602857112885\n                    },\n                    {\n                        \"X\": 0.9006755948066711,\n                        \"Y\": 0.24969416856765747\n                    },\n                    {\n                        \"X\": 0.9006969928741455,\n                        \"Y\": 0.2678476870059967\n                    },\n                    {\n                        \"X\": 0.8458766341209412,\n                        \"Y\": 0.2678694427013397\n                    }\n                ]\n            },\n            \"Id\": \"5386ff4a-09bf-4767-9e28-4b7f779bcc09\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95148468017578,\n            \"Text\": \"7\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007284394931048155,\n                    \"Height\": 0.014880510978400707,\n                    \"Left\": 0.5573384165763855,\n                    \"Top\": 0.28008833527565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5573384165763855,\n                        \"Y\": 0.28009119629859924\n                    },\n                    {\n                        \"X\": 0.5646066665649414,\n                        \"Y\": 0.28008833527565\n                    },\n                    {\n                        \"X\": 0.5646228194236755,\n                        \"Y\": 0.2949659824371338\n                    },\n                    {\n                        \"X\": 0.5573545694351196,\n                        \"Y\": 0.294968843460083\n                    }\n                ]\n            },\n            \"Id\": \"3b0859fa-9240-47c1-aa4c-2b62e96143e9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96153259277344,\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033701300621032715,\n                    \"Height\": 0.015317550860345364,\n                    \"Left\": 0.5747053027153015,\n                    \"Top\": 0.27986687421798706\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5747053027153015,\n                        \"Y\": 0.27988019585609436\n                    },\n                    {\n                        \"X\": 0.6083897948265076,\n                        \"Y\": 0.27986687421798706\n                    },\n                    {\n                        \"X\": 0.6084066033363342,\n                        \"Y\": 0.29517117142677307\n                    },\n                    {\n                        \"X\": 0.5747219324111938,\n                        \"Y\": 0.2951844334602356\n                    }\n                ]\n            },\n            \"Id\": \"70c10ae3-74db-443e-b266-1e6903fcd3fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98709869384766,\n            \"Text\": \"security\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043298035860061646,\n                    \"Height\": 0.018155479803681374,\n                    \"Left\": 0.6116259694099426,\n                    \"Top\": 0.28026941418647766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6116259694099426,\n                        \"Y\": 0.2802865207195282\n                    },\n                    {\n                        \"X\": 0.6549038290977478,\n                        \"Y\": 0.28026941418647766\n                    },\n                    {\n                        \"X\": 0.6549239754676819,\n                        \"Y\": 0.2984078526496887\n                    },\n                    {\n                        \"X\": 0.6116459369659424,\n                        \"Y\": 0.2984248697757721\n                    }\n                ]\n            },\n            \"Id\": \"cdf54096-c570-4376-97ab-1bacf58d1bff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97460174560547,\n            \"Text\": \"tips\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020462384447455406,\n                    \"Height\": 0.018622128292918205,\n                    \"Left\": 0.6578953862190247,\n                    \"Top\": 0.2797236442565918\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6578953862190247,\n                        \"Y\": 0.27973175048828125\n                    },\n                    {\n                        \"X\": 0.6783369779586792,\n                        \"Y\": 0.2797236442565918\n                    },\n                    {\n                        \"X\": 0.6783577799797058,\n                        \"Y\": 0.2983377277851105\n                    },\n                    {\n                        \"X\": 0.6579161286354065,\n                        \"Y\": 0.29834577441215515\n                    }\n                ]\n            },\n            \"Id\": \"7ebe5dbb-8826-4b2b-8541-f98d7a31ae0a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96430206298828,\n            \"Text\": \"8\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007487934548407793,\n                    \"Height\": 0.01472847256809473,\n                    \"Left\": 0.77223801612854,\n                    \"Top\": 0.2803439497947693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.77223801612854,\n                        \"Y\": 0.28034690022468567\n                    },\n                    {\n                        \"X\": 0.7797090411186218,\n                        \"Y\": 0.2803439497947693\n                    },\n                    {\n                        \"X\": 0.7797259092330933,\n                        \"Y\": 0.29506948590278625\n                    },\n                    {\n                        \"X\": 0.7722548246383667,\n                        \"Y\": 0.29507243633270264\n                    }\n                ]\n            },\n            \"Id\": \"f1665cf3-e412-491d-8fb3-e5507814352b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.98246765136719,\n            \"Text\": \"$5,00.000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07024688273668289,\n                    \"Height\": 0.022498516365885735,\n                    \"Left\": 0.6423125863075256,\n                    \"Top\": 0.3068864345550537\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6423125863075256,\n                        \"Y\": 0.30691400170326233\n                    },\n                    {\n                        \"X\": 0.7125341296195984,\n                        \"Y\": 0.3068864345550537\n                    },\n                    {\n                        \"X\": 0.7125594615936279,\n                        \"Y\": 0.3293575942516327\n                    },\n                    {\n                        \"X\": 0.6423375010490417,\n                        \"Y\": 0.3293849527835846\n                    }\n                ]\n            },\n            \"Id\": \"654f0f85-0256-44f6-b02e-54894ee45e0a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79325103759766,\n            \"Text\": \"d\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007971677929162979,\n                    \"Height\": 0.01458628848195076,\n                    \"Left\": 0.03699895739555359,\n                    \"Top\": 0.3421744704246521\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03699895739555359,\n                        \"Y\": 0.3421775698661804\n                    },\n                    {\n                        \"X\": 0.04495690390467644,\n                        \"Y\": 0.3421744704246521\n                    },\n                    {\n                        \"X\": 0.04497063532471657,\n                        \"Y\": 0.3567577004432678\n                    },\n                    {\n                        \"X\": 0.03701265901327133,\n                        \"Y\": 0.35676077008247375\n                    }\n                ]\n            },\n            \"Id\": \"f18e45ac-53a9-469e-90be-7a2a52417d64\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83450317382812,\n            \"Text\": \"Control\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04080512374639511,\n                    \"Height\": 0.015462438575923443,\n                    \"Left\": 0.05125121772289276,\n                    \"Top\": 0.3416546583175659\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05125121772289276,\n                        \"Y\": 0.34167051315307617\n                    },\n                    {\n                        \"X\": 0.09204158931970596,\n                        \"Y\": 0.3416546583175659\n                    },\n                    {\n                        \"X\": 0.09205634146928787,\n                        \"Y\": 0.35710132122039795\n                    },\n                    {\n                        \"X\": 0.051265791058540344,\n                        \"Y\": 0.3571171164512634\n                    }\n                ]\n            },\n            \"Id\": \"61365f94-73b4-45b6-a4d7-f69fcde435b4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96674346923828,\n            \"Text\": \"number\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04250945895910263,\n                    \"Height\": 0.014972892589867115,\n                    \"Left\": 0.09534420818090439,\n                    \"Top\": 0.3421706259250641\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09534420818090439,\n                        \"Y\": 0.34218713641166687\n                    },\n                    {\n                        \"X\": 0.1378391981124878,\n                        \"Y\": 0.3421706259250641\n                    },\n                    {\n                        \"X\": 0.13785366714000702,\n                        \"Y\": 0.3571271002292633\n                    },\n                    {\n                        \"X\": 0.09535850584506989,\n                        \"Y\": 0.3571435213088989\n                    }\n                ]\n            },\n            \"Id\": \"92edcd95-bdb8-4b54-9753-9a7d53e3e1f1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97282409667969,\n            \"Text\": \"9\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007296142168343067,\n                    \"Height\": 0.014726119115948677,\n                    \"Left\": 0.5574319958686829,\n                    \"Top\": 0.3422553241252899\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5574319958686829,\n                        \"Y\": 0.34225815534591675\n                    },\n                    {\n                        \"X\": 0.5647121071815491,\n                        \"Y\": 0.3422553241252899\n                    },\n                    {\n                        \"X\": 0.5647281408309937,\n                        \"Y\": 0.3569786250591278\n                    },\n                    {\n                        \"X\": 0.5574479103088379,\n                        \"Y\": 0.35698145627975464\n                    }\n                ]\n            },\n            \"Id\": \"a73d2ee7-2d3c-49bd-8cec-187cf1c14ee8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97865295410156,\n            \"Text\": \"10\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013738553039729595,\n                    \"Height\": 0.014912810176610947,\n                    \"Left\": 0.7666483521461487,\n                    \"Top\": 0.3419516980648041\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666483521461487,\n                        \"Y\": 0.3419570326805115\n                    },\n                    {\n                        \"X\": 0.7803698182106018,\n                        \"Y\": 0.3419516980648041\n                    },\n                    {\n                        \"X\": 0.7803868651390076,\n                        \"Y\": 0.3568592071533203\n                    },\n                    {\n                        \"X\": 0.7666653394699097,\n                        \"Y\": 0.3568645119667053\n                    }\n                ]\n            },\n            \"Id\": \"3b2ad437-c51a-45e3-8870-a8d9250032a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.85709381103516,\n            \"Text\": \"777777777777\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08425814658403397,\n                    \"Height\": 0.015468552708625793,\n                    \"Left\": 0.20640580356121063,\n                    \"Top\": 0.36167389154434204\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20640580356121063,\n                        \"Y\": 0.361706405878067\n                    },\n                    {\n                        \"X\": 0.29064837098121643,\n                        \"Y\": 0.36167389154434204\n                    },\n                    {\n                        \"X\": 0.2906639575958252,\n                        \"Y\": 0.3771100342273712\n                    },\n                    {\n                        \"X\": 0.20642103254795074,\n                        \"Y\": 0.37714242935180664\n                    }\n                ]\n            },\n            \"Id\": \"cf1170eb-8848-421c-8612-461cb46cecd6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72438049316406,\n            \"Text\": \"e\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007555682212114334,\n                    \"Height\": 0.011481105349957943,\n                    \"Left\": 0.03682537004351616,\n                    \"Top\": 0.40721797943115234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03682537004351616,\n                        \"Y\": 0.40722084045410156\n                    },\n                    {\n                        \"X\": 0.04437024146318436,\n                        \"Y\": 0.40721797943115234\n                    },\n                    {\n                        \"X\": 0.044381048530340195,\n                        \"Y\": 0.41869622468948364\n                    },\n                    {\n                        \"X\": 0.03683615103363991,\n                        \"Y\": 0.41869908571243286\n                    }\n                ]\n            },\n            \"Id\": \"ae5a4be7-fdc8-4fed-b472-37d5aa38ed62\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96543884277344,\n            \"Text\": \"Employee's\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06435580551624298,\n                    \"Height\": 0.01884876936674118,\n                    \"Left\": 0.050752345472574234,\n                    \"Top\": 0.4035228490829468\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.050752345472574234,\n                        \"Y\": 0.40354740619659424\n                    },\n                    {\n                        \"X\": 0.11509005725383759,\n                        \"Y\": 0.4035228490829468\n                    },\n                    {\n                        \"X\": 0.11510815471410751,\n                        \"Y\": 0.42234721779823303\n                    },\n                    {\n                        \"X\": 0.050770103931427,\n                        \"Y\": 0.42237162590026855\n                    }\n                ]\n            },\n            \"Id\": \"78a0437c-4966-45f1-b250-7f23f3f7d7c3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94316101074219,\n            \"Text\": \"first\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021413184702396393,\n                    \"Height\": 0.015516078099608421,\n                    \"Left\": 0.11787088215351105,\n                    \"Top\": 0.4034437835216522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11787088215351105,\n                        \"Y\": 0.40345194935798645\n                    },\n                    {\n                        \"X\": 0.13926905393600464,\n                        \"Y\": 0.4034437835216522\n                    },\n                    {\n                        \"X\": 0.13928405940532684,\n                        \"Y\": 0.41895171999931335\n                    },\n                    {\n                        \"X\": 0.11788579821586609,\n                        \"Y\": 0.4189598560333252\n                    }\n                ]\n            },\n            \"Id\": \"6de58347-8dcd-4162-8059-1a20e744c03c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97750091552734,\n            \"Text\": \"name\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03074605204164982,\n                    \"Height\": 0.011995780281722546,\n                    \"Left\": 0.1422172337770462,\n                    \"Top\": 0.40670955181121826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1422172337770462,\n                        \"Y\": 0.406721293926239\n                    },\n                    {\n                        \"X\": 0.1729515790939331,\n                        \"Y\": 0.40670955181121826\n                    },\n                    {\n                        \"X\": 0.17296329140663147,\n                        \"Y\": 0.4186936616897583\n                    },\n                    {\n                        \"X\": 0.1422288417816162,\n                        \"Y\": 0.4187053442001343\n                    }\n                ]\n            },\n            \"Id\": \"6098a9fb-dd22-4276-8daf-fc5e50cdfd35\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99193572998047,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020785437896847725,\n                    \"Height\": 0.014830099418759346,\n                    \"Left\": 0.17589271068572998,\n                    \"Top\": 0.4040069878101349\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17589271068572998,\n                        \"Y\": 0.4040148854255676\n                    },\n                    {\n                        \"X\": 0.19666357338428497,\n                        \"Y\": 0.4040069878101349\n                    },\n                    {\n                        \"X\": 0.19667814671993256,\n                        \"Y\": 0.41882917284965515\n                    },\n                    {\n                        \"X\": 0.1759072095155716,\n                        \"Y\": 0.4188370704650879\n                    }\n                ]\n            },\n            \"Id\": \"5c5fba6d-eeef-459d-8a93-cf7da65f48c5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95518493652344,\n            \"Text\": \"initial\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02831428125500679,\n                    \"Height\": 0.015235628001391888,\n                    \"Left\": 0.1999269425868988,\n                    \"Top\": 0.40378686785697937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1999269425868988,\n                        \"Y\": 0.4037976562976837\n                    },\n                    {\n                        \"X\": 0.22822611033916473,\n                        \"Y\": 0.40378686785697937\n                    },\n                    {\n                        \"X\": 0.2282412201166153,\n                        \"Y\": 0.4190117418766022\n                    },\n                    {\n                        \"X\": 0.19994193315505981,\n                        \"Y\": 0.41902250051498413\n                    }\n                ]\n            },\n            \"Id\": \"2743bcaf-4dc5-49ac-81ac-e692e0392add\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96458435058594,\n            \"Text\": \"Last\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02401508390903473,\n                    \"Height\": 0.015257357619702816,\n                    \"Left\": 0.2734757363796234,\n                    \"Top\": 0.4038630425930023\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2734757363796234,\n                        \"Y\": 0.40387222170829773\n                    },\n                    {\n                        \"X\": 0.2974753975868225,\n                        \"Y\": 0.4038630425930023\n                    },\n                    {\n                        \"X\": 0.29749080538749695,\n                        \"Y\": 0.41911131143569946\n                    },\n                    {\n                        \"X\": 0.2734910547733307,\n                        \"Y\": 0.4191204011440277\n                    }\n                ]\n            },\n            \"Id\": \"ca847e03-8743-413d-b9c0-7b0b72b0eca0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96356964111328,\n            \"Text\": \"name\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03086451068520546,\n                    \"Height\": 0.011967286467552185,\n                    \"Left\": 0.30028101801872253,\n                    \"Top\": 0.40715476870536804\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30028101801872253,\n                        \"Y\": 0.4071665108203888\n                    },\n                    {\n                        \"X\": 0.33113330602645874,\n                        \"Y\": 0.40715476870536804\n                    },\n                    {\n                        \"X\": 0.3311455249786377,\n                        \"Y\": 0.41911032795906067\n                    },\n                    {\n                        \"X\": 0.30029311776161194,\n                        \"Y\": 0.41912204027175903\n                    }\n                ]\n            },\n            \"Id\": \"b4df7f42-871d-48a7-9230-60e291bcc720\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62039947509766,\n            \"Text\": \"Suff.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02544434927403927,\n                    \"Height\": 0.015869012102484703,\n                    \"Left\": 0.512493908405304,\n                    \"Top\": 0.40344032645225525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.512493908405304,\n                        \"Y\": 0.40345001220703125\n                    },\n                    {\n                        \"X\": 0.537921130657196,\n                        \"Y\": 0.40344032645225525\n                    },\n                    {\n                        \"X\": 0.5379382371902466,\n                        \"Y\": 0.4192996919155121\n                    },\n                    {\n                        \"X\": 0.5125108957290649,\n                        \"Y\": 0.4193093478679657\n                    }\n                ]\n            },\n            \"Id\": \"cc2a558e-d982-4fce-8899-b233ef4c57a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94829559326172,\n            \"Text\": \"11\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012175770476460457,\n                    \"Height\": 0.014973174780607224,\n                    \"Left\": 0.551935613155365,\n                    \"Top\": 0.40391361713409424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.551935613155365,\n                        \"Y\": 0.40391823649406433\n                    },\n                    {\n                        \"X\": 0.564095139503479,\n                        \"Y\": 0.40391361713409424\n                    },\n                    {\n                        \"X\": 0.5641114115715027,\n                        \"Y\": 0.4188821613788605\n                    },\n                    {\n                        \"X\": 0.5519518256187439,\n                        \"Y\": 0.41888678073883057\n                    }\n                ]\n            },\n            \"Id\": \"8ee681f7-13ee-4b2f-8362-956a209570be\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8708267211914,\n            \"Text\": \"Nonqualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06859482824802399,\n                    \"Height\": 0.018817462027072906,\n                    \"Left\": 0.5760086178779602,\n                    \"Top\": 0.40355902910232544\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5760086178779602,\n                        \"Y\": 0.40358519554138184\n                    },\n                    {\n                        \"X\": 0.6445826292037964,\n                        \"Y\": 0.40355902910232544\n                    },\n                    {\n                        \"X\": 0.644603431224823,\n                        \"Y\": 0.4223504662513733\n                    },\n                    {\n                        \"X\": 0.5760290622711182,\n                        \"Y\": 0.42237648367881775\n                    }\n                ]\n            },\n            \"Id\": \"62b6494f-72e0-4aa3-9fa6-8adcbeee84bd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92015075683594,\n            \"Text\": \"plans\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029216350987553596,\n                    \"Height\": 0.018231051042675972,\n                    \"Left\": 0.648391604423523,\n                    \"Top\": 0.40362077951431274\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.648391604423523,\n                        \"Y\": 0.40363192558288574\n                    },\n                    {\n                        \"X\": 0.677587628364563,\n                        \"Y\": 0.40362077951431274\n                    },\n                    {\n                        \"X\": 0.6776079535484314,\n                        \"Y\": 0.42184075713157654\n                    },\n                    {\n                        \"X\": 0.6484118103981018,\n                        \"Y\": 0.4218518137931824\n                    }\n                ]\n            },\n            \"Id\": \"9491af7d-c266-4f9b-9133-7b314c7a626d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84303283691406,\n            \"Text\": \"12a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020496776327490807,\n                    \"Height\": 0.014709693379700184,\n                    \"Left\": 0.7666317224502563,\n                    \"Top\": 0.40421023964881897\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666317224502563,\n                        \"Y\": 0.40421804785728455\n                    },\n                    {\n                        \"X\": 0.7871115803718567,\n                        \"Y\": 0.40421023964881897\n                    },\n                    {\n                        \"X\": 0.7871284484863281,\n                        \"Y\": 0.4189121425151825\n                    },\n                    {\n                        \"X\": 0.7666484713554382,\n                        \"Y\": 0.4189199209213257\n                    }\n                ]\n            },\n            \"Id\": \"9ac7874a-342d-48aa-9209-d3847490647c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96846008300781,\n            \"Text\": \"See\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02150210738182068,\n                    \"Height\": 0.015304462052881718,\n                    \"Left\": 0.7937414050102234,\n                    \"Top\": 0.4037831425666809\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7937414050102234,\n                        \"Y\": 0.4037913382053375\n                    },\n                    {\n                        \"X\": 0.8152258396148682,\n                        \"Y\": 0.4037831425666809\n                    },\n                    {\n                        \"X\": 0.8152435421943665,\n                        \"Y\": 0.419079452753067\n                    },\n                    {\n                        \"X\": 0.7937589883804321,\n                        \"Y\": 0.41908758878707886\n                    }\n                ]\n            },\n            \"Id\": \"a8196fea-40f1-4c7f-a3dc-ee7c23fdd36b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95568084716797,\n            \"Text\": \"instructions\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06402896344661713,\n                    \"Height\": 0.015321707352995872,\n                    \"Left\": 0.8183167576789856,\n                    \"Top\": 0.40371519327163696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8183167576789856,\n                        \"Y\": 0.4037396311759949\n                    },\n                    {\n                        \"X\": 0.8823277354240417,\n                        \"Y\": 0.40371519327163696\n                    },\n                    {\n                        \"X\": 0.8823456764221191,\n                        \"Y\": 0.4190126061439514\n                    },\n                    {\n                        \"X\": 0.8183344602584839,\n                        \"Y\": 0.4190368950366974\n                    }\n                ]\n            },\n            \"Id\": \"3f050ef9-653c-4e20-899a-2adaa7c0acd4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94973754882812,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016285119578242302,\n                    \"Height\": 0.015005039051175117,\n                    \"Left\": 0.884800136089325,\n                    \"Top\": 0.40373653173446655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.884800136089325,\n                        \"Y\": 0.4037427604198456\n                    },\n                    {\n                        \"X\": 0.9010675549507141,\n                        \"Y\": 0.40373653173446655\n                    },\n                    {\n                        \"X\": 0.9010852575302124,\n                        \"Y\": 0.41873541474342346\n                    },\n                    {\n                        \"X\": 0.8848177790641785,\n                        \"Y\": 0.4187415838241577\n                    }\n                ]\n            },\n            \"Id\": \"ab9ca988-8e92-4e9c-ae2e-d083392cb1d8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88739776611328,\n            \"Text\": \"box\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021415511146187782,\n                    \"Height\": 0.015100992284715176,\n                    \"Left\": 0.9034228324890137,\n                    \"Top\": 0.40383195877075195\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9034228324890137,\n                        \"Y\": 0.4038401246070862\n                    },\n                    {\n                        \"X\": 0.9248204827308655,\n                        \"Y\": 0.40383195877075195\n                    },\n                    {\n                        \"X\": 0.9248383641242981,\n                        \"Y\": 0.41892483830451965\n                    },\n                    {\n                        \"X\": 0.9034406542778015,\n                        \"Y\": 0.4189329743385315\n                    }\n                ]\n            },\n            \"Id\": \"0c8ba55f-3980-4ee1-8224-bd1b14b683d1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95394134521484,\n            \"Text\": \"12\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013303705491125584,\n                    \"Height\": 0.015077336691319942,\n                    \"Left\": 0.9283215999603271,\n                    \"Top\": 0.40393292903900146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9283215999603271,\n                        \"Y\": 0.4039379954338074\n                    },\n                    {\n                        \"X\": 0.9416073560714722,\n                        \"Y\": 0.40393292903900146\n                    },\n                    {\n                        \"X\": 0.9416252970695496,\n                        \"Y\": 0.41900521516799927\n                    },\n                    {\n                        \"X\": 0.9283394813537598,\n                        \"Y\": 0.4190102815628052\n                    }\n                ]\n            },\n            \"Id\": \"0e5e838c-cfff-4ede-b9fe-07e96cf26c01\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 60.44139862060547,\n            \"Text\": \"C\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005417278502136469,\n                    \"Height\": 0.009012531489133835,\n                    \"Left\": 0.766934871673584,\n                    \"Top\": 0.4203919768333435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.766934871673584,\n                        \"Y\": 0.42039400339126587\n                    },\n                    {\n                        \"X\": 0.7723418474197388,\n                        \"Y\": 0.4203919768333435\n                    },\n                    {\n                        \"X\": 0.7723521590232849,\n                        \"Y\": 0.4294024407863617\n                    },\n                    {\n                        \"X\": 0.7669451832771301,\n                        \"Y\": 0.42940449714660645\n                    }\n                ]\n            },\n            \"Id\": \"97734947-a7c3-417f-b87d-c72da07ab79d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90850067138672,\n            \"Text\": \"Ana\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025670362636446953,\n                    \"Height\": 0.016813525930047035,\n                    \"Left\": 0.06970708072185516,\n                    \"Top\": 0.4394836127758026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06970708072185516,\n                        \"Y\": 0.4394932985305786\n                    },\n                    {\n                        \"X\": 0.0953613817691803,\n                        \"Y\": 0.4394836127758026\n                    },\n                    {\n                        \"X\": 0.09537743777036667,\n                        \"Y\": 0.45628753304481506\n                    },\n                    {\n                        \"X\": 0.06972301751375198,\n                        \"Y\": 0.4562971591949463\n                    }\n                ]\n            },\n            \"Id\": \"6dbdbf97-1641-4901-8eea-4f3ea373fb46\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77665710449219,\n            \"Text\": \"Carolina\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.052424851804971695,\n                    \"Height\": 0.017252570018172264,\n                    \"Left\": 0.27415600419044495,\n                    \"Top\": 0.43060988187789917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27415600419044495,\n                        \"Y\": 0.4306297302246094\n                    },\n                    {\n                        \"X\": 0.3265632688999176,\n                        \"Y\": 0.43060988187789917\n                    },\n                    {\n                        \"X\": 0.32658085227012634,\n                        \"Y\": 0.44784271717071533\n                    },\n                    {\n                        \"X\": 0.2741733193397522,\n                        \"Y\": 0.447862446308136\n                    }\n                ]\n            },\n            \"Id\": \"e49e8c6b-902f-490c-a7bf-d9f6f1a5cbec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66773986816406,\n            \"Text\": \"Silva\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029934683814644814,\n                    \"Height\": 0.017165053635835648,\n                    \"Left\": 0.5063032507896423,\n                    \"Top\": 0.433064728975296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5063032507896423,\n                        \"Y\": 0.43307605385780334\n                    },\n                    {\n                        \"X\": 0.5362194180488586,\n                        \"Y\": 0.433064728975296\n                    },\n                    {\n                        \"X\": 0.5362379550933838,\n                        \"Y\": 0.45021852850914\n                    },\n                    {\n                        \"X\": 0.5063216090202332,\n                        \"Y\": 0.45022979378700256\n                    }\n                ]\n            },\n            \"Id\": \"0ce77d4a-c622-4f66-98c8-6989009cb6d7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 57.9937744140625,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0050363377667963505,\n                    \"Height\": 0.01153473649173975,\n                    \"Left\": 0.767175555229187,\n                    \"Top\": 0.4306279122829437\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.767175555229187,\n                        \"Y\": 0.43062981963157654\n                    },\n                    {\n                        \"X\": 0.7721986770629883,\n                        \"Y\": 0.4306279122829437\n                    },\n                    {\n                        \"X\": 0.7722119092941284,\n                        \"Y\": 0.4421607553958893\n                    },\n                    {\n                        \"X\": 0.7671887278556824,\n                        \"Y\": 0.4421626627445221\n                    }\n                ]\n            },\n            \"Id\": \"bc41be80-acad-4892-a763-3c2c87ea800f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.9371337890625,\n            \"Text\": \"d\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005433898419141769,\n                    \"Height\": 0.011059749871492386,\n                    \"Left\": 0.7672072052955627,\n                    \"Top\": 0.4380500912666321\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7672072052955627,\n                        \"Y\": 0.43805211782455444\n                    },\n                    {\n                        \"X\": 0.7726284265518188,\n                        \"Y\": 0.4380500912666321\n                    },\n                    {\n                        \"X\": 0.772641122341156,\n                        \"Y\": 0.4491077959537506\n                    },\n                    {\n                        \"X\": 0.7672198414802551,\n                        \"Y\": 0.449109822511673\n                    }\n                ]\n            },\n            \"Id\": \"a38e2883-da41-46e5-8152-fe033572964d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 89.37638854980469,\n            \"Text\": \"e\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004386779386550188,\n                    \"Height\": 0.007140372414141893,\n                    \"Left\": 0.7673512101173401,\n                    \"Top\": 0.4483763575553894\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7673512101173401,\n                        \"Y\": 0.4483779966831207\n                    },\n                    {\n                        \"X\": 0.7717298269271851,\n                        \"Y\": 0.4483763575553894\n                    },\n                    {\n                        \"X\": 0.7717379927635193,\n                        \"Y\": 0.455515056848526\n                    },\n                    {\n                        \"X\": 0.7673593759536743,\n                        \"Y\": 0.4555167257785797\n                    }\n                ]\n            },\n            \"Id\": \"769e2ca0-57d2-4e40-8fa7-004fe1dcac53\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93563842773438,\n            \"Text\": \"DD\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013091810047626495,\n                    \"Height\": 0.011558471247553825,\n                    \"Left\": 0.7918670177459717,\n                    \"Top\": 0.44087350368499756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7918670177459717,\n                        \"Y\": 0.4408784508705139\n                    },\n                    {\n                        \"X\": 0.8049454689025879,\n                        \"Y\": 0.44087350368499756\n                    },\n                    {\n                        \"X\": 0.8049588203430176,\n                        \"Y\": 0.45242705941200256\n                    },\n                    {\n                        \"X\": 0.7918803095817566,\n                        \"Y\": 0.45243197679519653\n                    }\n                ]\n            },\n            \"Id\": \"317b0f44-3ab6-4043-b1f5-f3634539a62f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.4698486328125,\n            \"Text\": \"$50,00.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03989092633128166,\n                    \"Height\": 0.012933160178363323,\n                    \"Left\": 0.9196081161499023,\n                    \"Top\": 0.43373438715934753\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9196081161499023,\n                        \"Y\": 0.4337494671344757\n                    },\n                    {\n                        \"X\": 0.9594835638999939,\n                        \"Y\": 0.43373438715934753\n                    },\n                    {\n                        \"X\": 0.9594990015029907,\n                        \"Y\": 0.44665253162384033\n                    },\n                    {\n                        \"X\": 0.9196233749389648,\n                        \"Y\": 0.44666755199432373\n                    }\n                ]\n            },\n            \"Id\": \"323992a0-cca5-4215-aec5-2bca35c3f2e7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96216583251953,\n            \"Text\": \"13\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013637889176607132,\n                    \"Height\": 0.014974378980696201,\n                    \"Left\": 0.5518119931221008,\n                    \"Top\": 0.4657633602619171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5518119931221008,\n                        \"Y\": 0.4657684564590454\n                    },\n                    {\n                        \"X\": 0.5654336214065552,\n                        \"Y\": 0.4657633602619171\n                    },\n                    {\n                        \"X\": 0.5654498338699341,\n                        \"Y\": 0.48073267936706543\n                    },\n                    {\n                        \"X\": 0.551828145980835,\n                        \"Y\": 0.48073774576187134\n                    }\n                ]\n            },\n            \"Id\": \"59dcf07a-71f6-4e64-997e-5a2184eaf39c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9240951538086,\n            \"Text\": \"Statutory\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03716812655329704,\n                    \"Height\": 0.014630156569182873,\n                    \"Left\": 0.5748319029808044,\n                    \"Top\": 0.4631705582141876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5748319029808044,\n                        \"Y\": 0.4631844758987427\n                    },\n                    {\n                        \"X\": 0.6119839549064636,\n                        \"Y\": 0.4631705582141876\n                    },\n                    {\n                        \"X\": 0.612000048160553,\n                        \"Y\": 0.4777868390083313\n                    },\n                    {\n                        \"X\": 0.5748478174209595,\n                        \"Y\": 0.4778006970882416\n                    }\n                ]\n            },\n            \"Id\": \"17e2d61f-774c-4e47-999d-3d503446446d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85848236083984,\n            \"Text\": \"Retirement\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0431063175201416,\n                    \"Height\": 0.011804879643023014,\n                    \"Left\": 0.6381962895393372,\n                    \"Top\": 0.4628724455833435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6381962895393372,\n                        \"Y\": 0.46288859844207764\n                    },\n                    {\n                        \"X\": 0.6812893748283386,\n                        \"Y\": 0.4628724455833435\n                    },\n                    {\n                        \"X\": 0.6813026070594788,\n                        \"Y\": 0.4746612310409546\n                    },\n                    {\n                        \"X\": 0.6382092833518982,\n                        \"Y\": 0.47467732429504395\n                    }\n                ]\n            },\n            \"Id\": \"3995effe-d6a2-49e1-a32d-72e8138f6d0b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82073211669922,\n            \"Text\": \"Third-party\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04454663395881653,\n                    \"Height\": 0.013868805021047592,\n                    \"Left\": 0.7006963491439819,\n                    \"Top\": 0.46304717659950256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7006963491439819,\n                        \"Y\": 0.4630638659000397\n                    },\n                    {\n                        \"X\": 0.7452272772789001,\n                        \"Y\": 0.46304717659950256\n                    },\n                    {\n                        \"X\": 0.7452430129051208,\n                        \"Y\": 0.4768993556499481\n                    },\n                    {\n                        \"X\": 0.7007119655609131,\n                        \"Y\": 0.47691598534584045\n                    }\n                ]\n            },\n            \"Id\": \"5d450fe8-d4d5-4f09-ae92-6ea0da1d65dc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91339111328125,\n            \"Text\": \"12b\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020835544914007187,\n                    \"Height\": 0.014520741067826748,\n                    \"Left\": 0.7666906118392944,\n                    \"Top\": 0.46599987149238586\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666906118392944,\n                        \"Y\": 0.46600767970085144\n                    },\n                    {\n                        \"X\": 0.7875095009803772,\n                        \"Y\": 0.46599987149238586\n                    },\n                    {\n                        \"X\": 0.7875261306762695,\n                        \"Y\": 0.4805128574371338\n                    },\n                    {\n                        \"X\": 0.766707181930542,\n                        \"Y\": 0.4805206060409546\n                    }\n                ]\n            },\n            \"Id\": \"89e6b2bd-46e9-4a99-9dcc-2a016e014a48\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80390167236328,\n            \"Text\": \"employee\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03848724812269211,\n                    \"Height\": 0.01366924587637186,\n                    \"Left\": 0.5748069286346436,\n                    \"Top\": 0.47615841031074524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5748069286346436,\n                        \"Y\": 0.4761727750301361\n                    },\n                    {\n                        \"X\": 0.6132791638374329,\n                        \"Y\": 0.47615841031074524\n                    },\n                    {\n                        \"X\": 0.6132941842079163,\n                        \"Y\": 0.48981335759162903\n                    },\n                    {\n                        \"X\": 0.5748217701911926,\n                        \"Y\": 0.4898276627063751\n                    }\n                ]\n            },\n            \"Id\": \"93931132-7791-4d38-b94c-09665dfecab5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76746368408203,\n            \"Text\": \"plan\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017147431150078773,\n                    \"Height\": 0.013692923821508884,\n                    \"Left\": 0.6379137635231018,\n                    \"Top\": 0.4760226309299469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6379137635231018,\n                        \"Y\": 0.47602900862693787\n                    },\n                    {\n                        \"X\": 0.6550459861755371,\n                        \"Y\": 0.4760226309299469\n                    },\n                    {\n                        \"X\": 0.6550611853599548,\n                        \"Y\": 0.48970916867256165\n                    },\n                    {\n                        \"X\": 0.6379289031028748,\n                        \"Y\": 0.4897155463695526\n                    }\n                ]\n            },\n            \"Id\": \"1f7768b7-ba22-4832-a843-8c76ecdbd10e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61215209960938,\n            \"Text\": \"sick\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01706099323928356,\n                    \"Height\": 0.011527255177497864,\n                    \"Left\": 0.7010155916213989,\n                    \"Top\": 0.47651422023773193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7010155916213989,\n                        \"Y\": 0.4765205681324005\n                    },\n                    {\n                        \"X\": 0.7180635333061218,\n                        \"Y\": 0.47651422023773193\n                    },\n                    {\n                        \"X\": 0.7180765867233276,\n                        \"Y\": 0.4880351126194\n                    },\n                    {\n                        \"X\": 0.7010285258293152,\n                        \"Y\": 0.4880414605140686\n                    }\n                ]\n            },\n            \"Id\": \"8406eecd-bfb0-4390-9a11-ebe8f3af2621\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48011016845703,\n            \"Text\": \"pay\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014482312835752964,\n                    \"Height\": 0.01182467583566904,\n                    \"Left\": 0.7193942070007324,\n                    \"Top\": 0.47829315066337585\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7193942070007324,\n                        \"Y\": 0.478298544883728\n                    },\n                    {\n                        \"X\": 0.733863115310669,\n                        \"Y\": 0.47829315066337585\n                    },\n                    {\n                        \"X\": 0.7338765263557434,\n                        \"Y\": 0.49011245369911194\n                    },\n                    {\n                        \"X\": 0.7194075584411621,\n                        \"Y\": 0.4901178479194641\n                    }\n                ]\n            },\n            \"Id\": \"f8b8b9cc-5d98-469e-b1c9-621d0d68549a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 60.657936096191406,\n            \"Text\": \"c\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005260384175926447,\n                    \"Height\": 0.00872254092246294,\n                    \"Left\": 0.7672716379165649,\n                    \"Top\": 0.48147717118263245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7672716379165649,\n                        \"Y\": 0.48147910833358765\n                    },\n                    {\n                        \"X\": 0.7725220322608948,\n                        \"Y\": 0.48147717118263245\n                    },\n                    {\n                        \"X\": 0.7725319862365723,\n                        \"Y\": 0.4901977479457855\n                    },\n                    {\n                        \"X\": 0.7672815918922424,\n                        \"Y\": 0.4901997148990631\n                    }\n                ]\n            },\n            \"Id\": \"3a919642-7fd1-45c3-8635-f11c12080ff6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 25.764583587646484,\n            \"Text\": \":\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004702799487859011,\n                    \"Height\": 0.013762795366346836,\n                    \"Left\": 0.7674204707145691,\n                    \"Top\": 0.493724524974823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674204707145691,\n                        \"Y\": 0.4937262535095215\n                    },\n                    {\n                        \"X\": 0.7721075415611267,\n                        \"Y\": 0.493724524974823\n                    },\n                    {\n                        \"X\": 0.7721232771873474,\n                        \"Y\": 0.507485568523407\n                    },\n                    {\n                        \"X\": 0.7674362063407898,\n                        \"Y\": 0.5074872970581055\n                    }\n                ]\n            },\n            \"Id\": \"67896390-34ed-4216-b4e5-59373cd8864e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 66.27688598632812,\n            \"Text\": \"o\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0048255594447255135,\n                    \"Height\": 0.006267215590924025,\n                    \"Left\": 0.7675355672836304,\n                    \"Top\": 0.49333953857421875\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7675355672836304,\n                        \"Y\": 0.493341326713562\n                    },\n                    {\n                        \"X\": 0.7723539471626282,\n                        \"Y\": 0.49333953857421875\n                    },\n                    {\n                        \"X\": 0.7723610997200012,\n                        \"Y\": 0.4996049702167511\n                    },\n                    {\n                        \"X\": 0.7675427198410034,\n                        \"Y\": 0.49960675835609436\n                    }\n                ]\n            },\n            \"Id\": \"1cf577ad-a71e-4c5b-8189-80bbf5baa9ac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70028686523438,\n            \"Text\": \"D\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006718861870467663,\n                    \"Height\": 0.011715544387698174,\n                    \"Left\": 0.7930107712745667,\n                    \"Top\": 0.4933594763278961\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7930107712745667,\n                        \"Y\": 0.4933619499206543\n                    },\n                    {\n                        \"X\": 0.7997161746025085,\n                        \"Y\": 0.4933594763278961\n                    },\n                    {\n                        \"X\": 0.7997296452522278,\n                        \"Y\": 0.5050725340843201\n                    },\n                    {\n                        \"X\": 0.7930242419242859,\n                        \"Y\": 0.5050749778747559\n                    }\n                ]\n            },\n            \"Id\": \"35aa77fe-7c3e-4bcc-abb1-b0decdc54be9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76848602294922,\n            \"Text\": \"$3,50.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03511464595794678,\n                    \"Height\": 0.014004451222717762,\n                    \"Left\": 0.918915867805481,\n                    \"Top\": 0.49362701177597046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.918915867805481,\n                        \"Y\": 0.4936400353908539\n                    },\n                    {\n                        \"X\": 0.9540137648582458,\n                        \"Y\": 0.49362701177597046\n                    },\n                    {\n                        \"X\": 0.9540305137634277,\n                        \"Y\": 0.5076184868812561\n                    },\n                    {\n                        \"X\": 0.9189324378967285,\n                        \"Y\": 0.5076314806938171\n                    }\n                ]\n            },\n            \"Id\": \"3cf669b6-be6e-4c84-a3a8-b8305b95ae01\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 58.52725601196289,\n            \"Text\": \"e\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0044685606844723225,\n                    \"Height\": 0.005878887604922056,\n                    \"Left\": 0.7675004601478577,\n                    \"Top\": 0.5113871693611145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7675004601478577,\n                        \"Y\": 0.5113887786865234\n                    },\n                    {\n                        \"X\": 0.7719623446464539,\n                        \"Y\": 0.5113871693611145\n                    },\n                    {\n                        \"X\": 0.7719690799713135,\n                        \"Y\": 0.5172643661499023\n                    },\n                    {\n                        \"X\": 0.7675071954727173,\n                        \"Y\": 0.517266035079956\n                    }\n                ]\n            },\n            \"Id\": \"2fe45fe5-f4dd-40bb-b953-b62e78a9816c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97244262695312,\n            \"Text\": \"14\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014049825258553028,\n                    \"Height\": 0.01495706383138895,\n                    \"Left\": 0.5517815351486206,\n                    \"Top\": 0.5279245972633362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5517815351486206,\n                        \"Y\": 0.5279297232627869\n                    },\n                    {\n                        \"X\": 0.5658150911331177,\n                        \"Y\": 0.5279245972633362\n                    },\n                    {\n                        \"X\": 0.5658313035964966,\n                        \"Y\": 0.5428764820098877\n                    },\n                    {\n                        \"X\": 0.5517976880073547,\n                        \"Y\": 0.5428816676139832\n                    }\n                ]\n            },\n            \"Id\": \"37fef1d7-f0b8-4786-bcd1-7ba78b210a1e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96554565429688,\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03155423328280449,\n                    \"Height\": 0.015317961573600769,\n                    \"Left\": 0.5718644261360168,\n                    \"Top\": 0.527644693851471\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5718644261360168,\n                        \"Y\": 0.5276563167572021\n                    },\n                    {\n                        \"X\": 0.6034018993377686,\n                        \"Y\": 0.527644693851471\n                    },\n                    {\n                        \"X\": 0.6034186482429504,\n                        \"Y\": 0.5429511666297913\n                    },\n                    {\n                        \"X\": 0.571881115436554,\n                        \"Y\": 0.5429626703262329\n                    }\n                ]\n            },\n            \"Id\": \"e3bd5bc4-f53f-4e2d-9c31-43aaa761a706\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89034271240234,\n            \"Text\": \"12c\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020626498386263847,\n                    \"Height\": 0.014925727620720863,\n                    \"Left\": 0.7664973735809326,\n                    \"Top\": 0.5281139016151428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7664973735809326,\n                        \"Y\": 0.5281214714050293\n                    },\n                    {\n                        \"X\": 0.7871067523956299,\n                        \"Y\": 0.5281139016151428\n                    },\n                    {\n                        \"X\": 0.7871238589286804,\n                        \"Y\": 0.5430321097373962\n                    },\n                    {\n                        \"X\": 0.7665144205093384,\n                        \"Y\": 0.5430396199226379\n                    }\n                ]\n            },\n            \"Id\": \"1295536b-d2fa-4181-9dcf-b5eb983d006e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 61.561500549316406,\n            \"Text\": \"c\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0052590337581932545,\n                    \"Height\": 0.007732087280601263,\n                    \"Left\": 0.7671750783920288,\n                    \"Top\": 0.5438441038131714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7671750783920288,\n                        \"Y\": 0.5438460111618042\n                    },\n                    {\n                        \"X\": 0.7724252939224243,\n                        \"Y\": 0.5438441038131714\n                    },\n                    {\n                        \"X\": 0.7724341154098511,\n                        \"Y\": 0.5515742897987366\n                    },\n                    {\n                        \"X\": 0.7671838998794556,\n                        \"Y\": 0.5515761971473694\n                    }\n                ]\n            },\n            \"Id\": \"6d69ceca-3fc8-44b4-882b-50bc1f6e289c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 47.079891204833984,\n            \"Text\": \"o\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005300495307892561,\n                    \"Height\": 0.0036320327781140804,\n                    \"Left\": 0.7666311264038086,\n                    \"Top\": 0.5547060966491699\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7666311264038086,\n                        \"Y\": 0.5547080039978027\n                    },\n                    {\n                        \"X\": 0.7719274759292603,\n                        \"Y\": 0.5547060966491699\n                    },\n                    {\n                        \"X\": 0.7719316482543945,\n                        \"Y\": 0.5583361983299255\n                    },\n                    {\n                        \"X\": 0.7666352987289429,\n                        \"Y\": 0.5583381056785583\n                    }\n                ]\n            },\n            \"Id\": \"83ac3b47-8f34-4fa8-bce2-270dd9d91db5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 69.24235534667969,\n            \"Text\": \"o\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004964668303728104,\n                    \"Height\": 0.004026889335364103,\n                    \"Left\": 0.7674016952514648,\n                    \"Top\": 0.5565674901008606\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674016952514648,\n                        \"Y\": 0.5565692782402039\n                    },\n                    {\n                        \"X\": 0.7723617553710938,\n                        \"Y\": 0.5565674901008606\n                    },\n                    {\n                        \"X\": 0.7723663449287415,\n                        \"Y\": 0.560592532157898\n                    },\n                    {\n                        \"X\": 0.7674062848091125,\n                        \"Y\": 0.5605943202972412\n                    }\n                ]\n            },\n            \"Id\": \"35883cdb-d890-4704-958d-458e09d289b6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 56.717891693115234,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.005804695654660463,\n                    \"Height\": 0.014635392464697361,\n                    \"Left\": 0.7667160630226135,\n                    \"Top\": 0.5582278370857239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7667160630226135,\n                        \"Y\": 0.558229923248291\n                    },\n                    {\n                        \"X\": 0.7725040316581726,\n                        \"Y\": 0.5582278370857239\n                    },\n                    {\n                        \"X\": 0.7725207805633545,\n                        \"Y\": 0.5728610754013062\n                    },\n                    {\n                        \"X\": 0.7667327523231506,\n                        \"Y\": 0.5728632211685181\n                    }\n                ]\n            },\n            \"Id\": \"31413759-bc32-49c2-bdac-67f6ab48851e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 56.171531677246094,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00466790609061718,\n                    \"Height\": 0.01151252817362547,\n                    \"Left\": 0.76741623878479,\n                    \"Top\": 0.5539354085922241\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.76741623878479,\n                        \"Y\": 0.5539371371269226\n                    },\n                    {\n                        \"X\": 0.7720709443092346,\n                        \"Y\": 0.5539354085922241\n                    },\n                    {\n                        \"X\": 0.77208411693573,\n                        \"Y\": 0.5654462575912476\n                    },\n                    {\n                        \"X\": 0.7674293518066406,\n                        \"Y\": 0.565447986125946\n                    }\n                ]\n            },\n            \"Id\": \"bf3889ba-6d78-447b-ae55-864a0bdda61d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70996856689453,\n            \"Text\": \"PP\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012562302872538567,\n                    \"Height\": 0.011371378786861897,\n                    \"Left\": 0.7976850867271423,\n                    \"Top\": 0.5584377646446228\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7976850867271423,\n                        \"Y\": 0.5584423542022705\n                    },\n                    {\n                        \"X\": 0.8102342486381531,\n                        \"Y\": 0.5584377646446228\n                    },\n                    {\n                        \"X\": 0.8102473616600037,\n                        \"Y\": 0.5698046088218689\n                    },\n                    {\n                        \"X\": 0.7976981401443481,\n                        \"Y\": 0.5698091983795166\n                    }\n                ]\n            },\n            \"Id\": \"802c3432-1375-4919-b0fa-e61f30b12037\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 61.7142333984375,\n            \"Text\": \"$4.00.0000\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044388704001903534,\n                    \"Height\": 0.01374780386686325,\n                    \"Left\": 0.915840744972229,\n                    \"Top\": 0.5538350939750671\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.915840744972229,\n                        \"Y\": 0.5538512468338013\n                    },\n                    {\n                        \"X\": 0.9602130651473999,\n                        \"Y\": 0.5538350939750671\n                    },\n                    {\n                        \"X\": 0.9602294564247131,\n                        \"Y\": 0.5675667524337769\n                    },\n                    {\n                        \"X\": 0.9158570170402527,\n                        \"Y\": 0.5675828456878662\n                    }\n                ]\n            },\n            \"Id\": \"561adeae-ff05-4398-820a-b486e7fc40cb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 78.75779724121094,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.003909958992153406,\n                    \"Height\": 0.003809145884588361,\n                    \"Left\": 0.7678936123847961,\n                    \"Top\": 0.5666854977607727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7678936123847961,\n                        \"Y\": 0.5666869282722473\n                    },\n                    {\n                        \"X\": 0.7717992067337036,\n                        \"Y\": 0.5666854977607727\n                    },\n                    {\n                        \"X\": 0.7718035578727722,\n                        \"Y\": 0.570493221282959\n                    },\n                    {\n                        \"X\": 0.7678979635238647,\n                        \"Y\": 0.5704946517944336\n                    }\n                ]\n            },\n            \"Id\": \"e17da224-1afd-47e0-a593-a69f786790c5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96720123291016,\n            \"Text\": \"NA\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021972406655550003,\n                    \"Height\": 0.01858423464000225,\n                    \"Left\": 0.6452856063842773,\n                    \"Top\": 0.5711943507194519\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6452856063842773,\n                        \"Y\": 0.5712023377418518\n                    },\n                    {\n                        \"X\": 0.6672372817993164,\n                        \"Y\": 0.5711943507194519\n                    },\n                    {\n                        \"X\": 0.6672580242156982,\n                        \"Y\": 0.5897706747055054\n                    },\n                    {\n                        \"X\": 0.6453061699867249,\n                        \"Y\": 0.5897786021232605\n                    }\n                ]\n            },\n            \"Id\": \"b10b7d68-e3d2-4a8f-b95a-7e13be93ca56\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 35.85706329345703,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004384074360132217,\n                    \"Height\": 0.006884552538394928,\n                    \"Left\": 0.7674356698989868,\n                    \"Top\": 0.5724544525146484\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674356698989868,\n                        \"Y\": 0.5724560618400574\n                    },\n                    {\n                        \"X\": 0.7718119025230408,\n                        \"Y\": 0.5724544525146484\n                    },\n                    {\n                        \"X\": 0.7718197703361511,\n                        \"Y\": 0.5793374180793762\n                    },\n                    {\n                        \"X\": 0.7674435377120972,\n                        \"Y\": 0.5793390274047852\n                    }\n                ]\n            },\n            \"Id\": \"b9603cac-8f6b-4e96-97db-2ea627d6a808\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95365905761719,\n            \"Text\": \"123\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022709805518388748,\n                    \"Height\": 0.01668342761695385,\n                    \"Left\": 0.07036378979682922,\n                    \"Top\": 0.5844967365264893\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07036378979682922,\n                        \"Y\": 0.5845049023628235\n                    },\n                    {\n                        \"X\": 0.09305766969919205,\n                        \"Y\": 0.5844967365264893\n                    },\n                    {\n                        \"X\": 0.09307359158992767,\n                        \"Y\": 0.6011719703674316\n                    },\n                    {\n                        \"X\": 0.07037960737943649,\n                        \"Y\": 0.6011801362037659\n                    }\n                ]\n            },\n            \"Id\": \"e9068078-3f28-402a-a5a0-6f4c9918f196\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97791290283203,\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025182947516441345,\n                    \"Height\": 0.020714303478598595,\n                    \"Left\": 0.09640046954154968,\n                    \"Top\": 0.5845057964324951\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09640046954154968,\n                        \"Y\": 0.584514856338501\n                    },\n                    {\n                        \"X\": 0.12156347930431366,\n                        \"Y\": 0.5845057964324951\n                    },\n                    {\n                        \"X\": 0.12158341705799103,\n                        \"Y\": 0.605211079120636\n                    },\n                    {\n                        \"X\": 0.09642026573419571,\n                        \"Y\": 0.6052200794219971\n                    }\n                ]\n            },\n            \"Id\": \"1a1c2fd0-6e67-48a5-8718-e3acb80f33bc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60731506347656,\n            \"Text\": \"Street,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040349848568439484,\n                    \"Height\": 0.019970234483480453,\n                    \"Left\": 0.12537997961044312,\n                    \"Top\": 0.5840862989425659\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12537997961044312,\n                        \"Y\": 0.5841009020805359\n                    },\n                    {\n                        \"X\": 0.16571037471294403,\n                        \"Y\": 0.5840862989425659\n                    },\n                    {\n                        \"X\": 0.1657298356294632,\n                        \"Y\": 0.6040420532226562\n                    },\n                    {\n                        \"X\": 0.12539921700954437,\n                        \"Y\": 0.6040565371513367\n                    }\n                ]\n            },\n            \"Id\": \"41a28a38-5136-4bea-8614-224168226bf9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97879791259766,\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02551114186644554,\n                    \"Height\": 0.020535115152597427,\n                    \"Left\": 0.16948561370372772,\n                    \"Top\": 0.5846028327941895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16948561370372772,\n                        \"Y\": 0.5846120119094849\n                    },\n                    {\n                        \"X\": 0.1949765682220459,\n                        \"Y\": 0.5846028327941895\n                    },\n                    {\n                        \"X\": 0.19499675929546356,\n                        \"Y\": 0.6051287651062012\n                    },\n                    {\n                        \"X\": 0.16950565576553345,\n                        \"Y\": 0.6051379442214966\n                    }\n                ]\n            },\n            \"Id\": \"6240c76f-a7eb-42dd-8a40-573a3470243e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9154052734375,\n            \"Text\": \"Town,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03787523880600929,\n                    \"Height\": 0.01954692229628563,\n                    \"Left\": 0.19803887605667114,\n                    \"Top\": 0.5843644142150879\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19803887605667114,\n                        \"Y\": 0.5843780636787415\n                    },\n                    {\n                        \"X\": 0.23589468002319336,\n                        \"Y\": 0.5843644142150879\n                    },\n                    {\n                        \"X\": 0.23591411113739014,\n                        \"Y\": 0.603897750377655\n                    },\n                    {\n                        \"X\": 0.1980580985546112,\n                        \"Y\": 0.6039113402366638\n                    }\n                ]\n            },\n            \"Id\": \"4ded9c45-bdad-4b46-97e4-05342418c595\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93028259277344,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029133297502994537,\n                    \"Height\": 0.017556292936205864,\n                    \"Left\": 0.2405637502670288,\n                    \"Top\": 0.5840754508972168\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2405637502670288,\n                        \"Y\": 0.5840859413146973\n                    },\n                    {\n                        \"X\": 0.2696794271469116,\n                        \"Y\": 0.5840754508972168\n                    },\n                    {\n                        \"X\": 0.26969704031944275,\n                        \"Y\": 0.6016212701797485\n                    },\n                    {\n                        \"X\": 0.2405812293291092,\n                        \"Y\": 0.601631760597229\n                    }\n                ]\n            },\n            \"Id\": \"13d06a96-f489-455c-a59f-a7095a35bfca\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92972564697266,\n            \"Text\": \"63000001\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06887084245681763,\n                    \"Height\": 0.01942702755331993,\n                    \"Left\": 0.27855801582336426,\n                    \"Top\": 0.5797131657600403\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27855801582336426,\n                        \"Y\": 0.5797380805015564\n                    },\n                    {\n                        \"X\": 0.3474089503288269,\n                        \"Y\": 0.5797131657600403\n                    },\n                    {\n                        \"X\": 0.3474288582801819,\n                        \"Y\": 0.5991154313087463\n                    },\n                    {\n                        \"X\": 0.2785775363445282,\n                        \"Y\": 0.5991401672363281\n                    }\n                ]\n            },\n            \"Id\": \"27313f9b-8309-4899-8a67-37873eeb36de\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93169403076172,\n            \"Text\": \"12d\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02098938450217247,\n                    \"Height\": 0.014655557461082935,\n                    \"Left\": 0.7664605379104614,\n                    \"Top\": 0.5899423956871033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7664605379104614,\n                        \"Y\": 0.589949905872345\n                    },\n                    {\n                        \"X\": 0.7874331474304199,\n                        \"Y\": 0.5899423956871033\n                    },\n                    {\n                        \"X\": 0.7874499559402466,\n                        \"Y\": 0.6045904159545898\n                    },\n                    {\n                        \"X\": 0.7664772868156433,\n                        \"Y\": 0.6045979261398315\n                    }\n                ]\n            },\n            \"Id\": \"c33ff9df-0736-43a9-b6cd-f37a7c47f58e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 67.9662094116211,\n            \"Text\": \"c\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006792542990297079,\n                    \"Height\": 0.008566316217184067,\n                    \"Left\": 0.7663037180900574,\n                    \"Top\": 0.6054821610450745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7663037180900574,\n                        \"Y\": 0.6054846048355103\n                    },\n                    {\n                        \"X\": 0.773086428642273,\n                        \"Y\": 0.6054821610450745\n                    },\n                    {\n                        \"X\": 0.7730962634086609,\n                        \"Y\": 0.6140460968017578\n                    },\n                    {\n                        \"X\": 0.7663134932518005,\n                        \"Y\": 0.6140484809875488\n                    }\n                ]\n            },\n            \"Id\": \"ee5865b8-8e29-4de3-8c91-852ce3335e43\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.59996795654297,\n            \"Text\": \"f\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0058206720277667046,\n                    \"Height\": 0.015134831890463829,\n                    \"Left\": 0.03626903146505356,\n                    \"Top\": 0.62059086561203\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03626903146505356,\n                        \"Y\": 0.6205929517745972\n                    },\n                    {\n                        \"X\": 0.042075466364622116,\n                        \"Y\": 0.62059086561203\n                    },\n                    {\n                        \"X\": 0.04208970442414284,\n                        \"Y\": 0.6357236504554749\n                    },\n                    {\n                        \"X\": 0.03628324344754219,\n                        \"Y\": 0.6357256770133972\n                    }\n                ]\n            },\n            \"Id\": \"240461f0-b23e-4901-8626-6050b5d41ca7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96949768066406,\n            \"Text\": \"Employee's\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06427120417356491,\n                    \"Height\": 0.018799390643835068,\n                    \"Left\": 0.04794864356517792,\n                    \"Top\": 0.6203365921974182\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04794864356517792,\n                        \"Y\": 0.6203595399856567\n                    },\n                    {\n                        \"X\": 0.11220181733369827,\n                        \"Y\": 0.6203365921974182\n                    },\n                    {\n                        \"X\": 0.11221984773874283,\n                        \"Y\": 0.639113187789917\n                    },\n                    {\n                        \"X\": 0.04796633869409561,\n                        \"Y\": 0.6391359567642212\n                    }\n                ]\n            },\n            \"Id\": \"6fc21fa3-38f9-40a6-9a6e-d9dd0d2c2228\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98127746582031,\n            \"Text\": \"address\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04424792900681496,\n                    \"Height\": 0.015047512948513031,\n                    \"Left\": 0.11538726091384888,\n                    \"Top\": 0.6207244396209717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11538726091384888,\n                        \"Y\": 0.6207402348518372\n                    },\n                    {\n                        \"X\": 0.15962055325508118,\n                        \"Y\": 0.6207244396209717\n                    },\n                    {\n                        \"X\": 0.15963518619537354,\n                        \"Y\": 0.6357561945915222\n                    },\n                    {\n                        \"X\": 0.11540170758962631,\n                        \"Y\": 0.6357719302177429\n                    }\n                ]\n            },\n            \"Id\": \"ab423889-7d6d-4d40-beed-414c739ff661\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99221801757812,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02084079012274742,\n                    \"Height\": 0.014869943261146545,\n                    \"Left\": 0.1626991629600525,\n                    \"Top\": 0.620764970779419\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1626991629600525,\n                        \"Y\": 0.6207723617553711\n                    },\n                    {\n                        \"X\": 0.18352538347244263,\n                        \"Y\": 0.620764970779419\n                    },\n                    {\n                        \"X\": 0.18353994190692902,\n                        \"Y\": 0.6356275081634521\n                    },\n                    {\n                        \"X\": 0.16271363198757172,\n                        \"Y\": 0.6356348991394043\n                    }\n                ]\n            },\n            \"Id\": \"f051568e-072e-4992-bf83-b1191250f2d9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95953369140625,\n            \"Text\": \"ZIP\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01875278167426586,\n                    \"Height\": 0.015362245962023735,\n                    \"Left\": 0.18685588240623474,\n                    \"Top\": 0.6203300356864929\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18685588240623474,\n                        \"Y\": 0.6203367114067078\n                    },\n                    {\n                        \"X\": 0.2055935114622116,\n                        \"Y\": 0.6203300356864929\n                    },\n                    {\n                        \"X\": 0.20560866594314575,\n                        \"Y\": 0.6356856226921082\n                    },\n                    {\n                        \"X\": 0.18687094748020172,\n                        \"Y\": 0.6356922388076782\n                    }\n                ]\n            },\n            \"Id\": \"18924fd2-4da0-40e4-acb6-657dd263c136\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92570495605469,\n            \"Text\": \"code\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027933727949857712,\n                    \"Height\": 0.014992712065577507,\n                    \"Left\": 0.2088097333908081,\n                    \"Top\": 0.6208109855651855\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2088097333908081,\n                        \"Y\": 0.6208209991455078\n                    },\n                    {\n                        \"X\": 0.23672856390476227,\n                        \"Y\": 0.6208109855651855\n                    },\n                    {\n                        \"X\": 0.23674346506595612,\n                        \"Y\": 0.6357938051223755\n                    },\n                    {\n                        \"X\": 0.2088245302438736,\n                        \"Y\": 0.6358036994934082\n                    }\n                ]\n            },\n            \"Id\": \"51131670-a67f-4d20-ac23-4a48e0ab09d7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.50084686279297,\n            \"Text\": \"$5,00.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0345078706741333,\n                    \"Height\": 0.013941507786512375,\n                    \"Left\": 0.9128311276435852,\n                    \"Top\": 0.6144120693206787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9128311276435852,\n                        \"Y\": 0.6144244074821472\n                    },\n                    {\n                        \"X\": 0.9473223686218262,\n                        \"Y\": 0.6144120693206787\n                    },\n                    {\n                        \"X\": 0.9473389983177185,\n                        \"Y\": 0.6283413171768188\n                    },\n                    {\n                        \"X\": 0.9128475785255432,\n                        \"Y\": 0.6283535957336426\n                    }\n                ]\n            },\n            \"Id\": \"17057879-0d90-49ec-8561-c19eee7f0f79\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56095886230469,\n            \"Text\": \"P\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006362179759889841,\n                    \"Height\": 0.011387757025659084,\n                    \"Left\": 0.8031980395317078,\n                    \"Top\": 0.6229707598686218\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8031980395317078,\n                        \"Y\": 0.6229730248451233\n                    },\n                    {\n                        \"X\": 0.8095470666885376,\n                        \"Y\": 0.6229707598686218\n                    },\n                    {\n                        \"X\": 0.8095601797103882,\n                        \"Y\": 0.6343562602996826\n                    },\n                    {\n                        \"X\": 0.8032111525535583,\n                        \"Y\": 0.6343585252761841\n                    }\n                ]\n            },\n            \"Id\": \"cf959fa1-2cac-421d-a545-bf8d9aa9e82c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 48.652042388916016,\n            \"Text\": \"0\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.004940434359014034,\n                    \"Height\": 0.007665056735277176,\n                    \"Left\": 0.7674310207366943,\n                    \"Top\": 0.6346644163131714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7674310207366943,\n                        \"Y\": 0.6346661448478699\n                    },\n                    {\n                        \"X\": 0.7723627090454102,\n                        \"Y\": 0.6346644163131714\n                    },\n                    {\n                        \"X\": 0.7723714709281921,\n                        \"Y\": 0.6423277258872986\n                    },\n                    {\n                        \"X\": 0.7674397826194763,\n                        \"Y\": 0.6423294544219971\n                    }\n                ]\n            },\n            \"Id\": \"974702c7-8f57-4863-bc09-c55cc1a0f3b6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.85425567626953,\n            \"Text\": \"W-2VI\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10347168892621994,\n                    \"Height\": 0.04659004881978035,\n                    \"Left\": 0.06289125978946686,\n                    \"Top\": 0.8137222528457642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06289125978946686,\n                        \"Y\": 0.8137569427490234\n                    },\n                    {\n                        \"X\": 0.16631753742694855,\n                        \"Y\": 0.8137222528457642\n                    },\n                    {\n                        \"X\": 0.1663629561662674,\n                        \"Y\": 0.8602781891822815\n                    },\n                    {\n                        \"X\": 0.06293532997369766,\n                        \"Y\": 0.8603123426437378\n                    }\n                ]\n            },\n            \"Id\": \"b925fb90-15b9-4d7d-8ff0-89098e489823\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88134765625,\n            \"Text\": \"U.S.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03527749329805374,\n                    \"Height\": 0.021767377853393555,\n                    \"Left\": 0.19075648486614227,\n                    \"Top\": 0.811797022819519\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19075648486614227,\n                        \"Y\": 0.8118088841438293\n                    },\n                    {\n                        \"X\": 0.22601239383220673,\n                        \"Y\": 0.811797022819519\n                    },\n                    {\n                        \"X\": 0.22603397071361542,\n                        \"Y\": 0.8335526585578918\n                    },\n                    {\n                        \"X\": 0.19077783823013306,\n                        \"Y\": 0.8335644006729126\n                    }\n                ]\n            },\n            \"Id\": \"8e20f759-8614-41fb-b039-7b294342e762\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87752532958984,\n            \"Text\": \"Virgin\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05001350864768028,\n                    \"Height\": 0.026866592466831207,\n                    \"Left\": 0.2319575399160385,\n                    \"Top\": 0.8111838102340698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2319575399160385,\n                        \"Y\": 0.8112006187438965\n                    },\n                    {\n                        \"X\": 0.28194400668144226,\n                        \"Y\": 0.8111838102340698\n                    },\n                    {\n                        \"X\": 0.2819710671901703,\n                        \"Y\": 0.8380337953567505\n                    },\n                    {\n                        \"X\": 0.2319842278957367,\n                        \"Y\": 0.8380504250526428\n                    }\n                ]\n            },\n            \"Id\": \"3c232ec9-e5bc-48ac-a9e1-6232e3b5a95d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81396484375,\n            \"Text\": \"Islands\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06151242554187775,\n                    \"Height\": 0.022513149306178093,\n                    \"Left\": 0.28762495517730713,\n                    \"Top\": 0.8110271692276001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28762495517730713,\n                        \"Y\": 0.8110477924346924\n                    },\n                    {\n                        \"X\": 0.3491142988204956,\n                        \"Y\": 0.8110271692276001\n                    },\n                    {\n                        \"X\": 0.34913739562034607,\n                        \"Y\": 0.8335198163986206\n                    },\n                    {\n                        \"X\": 0.28764766454696655,\n                        \"Y\": 0.8335403203964233\n                    }\n                ]\n            },\n            \"Id\": \"73fcb11a-20fc-4c54-a6b1-57806dd0aa05\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97819519042969,\n            \"Text\": \"Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030512629076838493,\n                    \"Height\": 0.015068397857248783,\n                    \"Left\": 0.026790868490934372,\n                    \"Top\": 0.8453946113586426\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026790868490934372,\n                        \"Y\": 0.8454046845436096\n                    },\n                    {\n                        \"X\": 0.05728926882147789,\n                        \"Y\": 0.8453946113586426\n                    },\n                    {\n                        \"X\": 0.057303499430418015,\n                        \"Y\": 0.8604528903961182\n                    },\n                    {\n                        \"X\": 0.02680497244000435,\n                        \"Y\": 0.8604629635810852\n                    }\n                ]\n            },\n            \"Id\": \"e2bf9073-8933-4204-bf6e-398addb2b376\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97331237792969,\n            \"Text\": \"Wage\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049483396112918854,\n                    \"Height\": 0.026358075439929962,\n                    \"Left\": 0.19046145677566528,\n                    \"Top\": 0.8389269709587097\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19046145677566528,\n                        \"Y\": 0.8389434218406677\n                    },\n                    {\n                        \"X\": 0.23991861939430237,\n                        \"Y\": 0.8389269709587097\n                    },\n                    {\n                        \"X\": 0.23994484543800354,\n                        \"Y\": 0.8652687668800354\n                    },\n                    {\n                        \"X\": 0.1904873251914978,\n                        \"Y\": 0.8652850389480591\n                    }\n                ]\n            },\n            \"Id\": \"5ffdc353-c75c-49c5-b728-2b78e3a628d5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98878479003906,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.031399182975292206,\n                    \"Height\": 0.02098984830081463,\n                    \"Left\": 0.2455359250307083,\n                    \"Top\": 0.8396270275115967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2455359250307083,\n                        \"Y\": 0.8396374583244324\n                    },\n                    {\n                        \"X\": 0.27691400051116943,\n                        \"Y\": 0.8396270275115967\n                    },\n                    {\n                        \"X\": 0.2769351005554199,\n                        \"Y\": 0.8606064915657043\n                    },\n                    {\n                        \"X\": 0.24555684626102448,\n                        \"Y\": 0.8606168627738953\n                    }\n                ]\n            },\n            \"Id\": \"d0089345-ba15-4570-86f4-109d4815d903\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95066833496094,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0319608710706234,\n                    \"Height\": 0.021246623247861862,\n                    \"Left\": 0.2821339964866638,\n                    \"Top\": 0.8394260406494141\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2821339964866638,\n                        \"Y\": 0.8394366502761841\n                    },\n                    {\n                        \"X\": 0.3140732944011688,\n                        \"Y\": 0.8394260406494141\n                    },\n                    {\n                        \"X\": 0.3140948712825775,\n                        \"Y\": 0.8606621026992798\n                    },\n                    {\n                        \"X\": 0.2821553945541382,\n                        \"Y\": 0.860672652721405\n                    }\n                ]\n            },\n            \"Id\": \"b66e35bd-eaa5-430a-ab9e-6479d3047d53\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96372985839844,\n            \"Text\": \"Statement\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09179258346557617,\n                    \"Height\": 0.02190038561820984,\n                    \"Left\": 0.31964054703712463,\n                    \"Top\": 0.8388713598251343\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31964054703712463,\n                        \"Y\": 0.8389018774032593\n                    },\n                    {\n                        \"X\": 0.4114103317260742,\n                        \"Y\": 0.8388713598251343\n                    },\n                    {\n                        \"X\": 0.4114331305027008,\n                        \"Y\": 0.8607414960861206\n                    },\n                    {\n                        \"X\": 0.31966280937194824,\n                        \"Y\": 0.8607717752456665\n                    }\n                ]\n            },\n            \"Id\": \"96f2f06e-7f7d-4dd3-8af8-a4d77ddf8777\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99073791503906,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11506436765193939,\n                    \"Height\": 0.052215345203876495,\n                    \"Left\": 0.4716554284095764,\n                    \"Top\": 0.8095809817314148\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4716554284095764,\n                        \"Y\": 0.8096196055412292\n                    },\n                    {\n                        \"X\": 0.5866628289222717,\n                        \"Y\": 0.8095809817314148\n                    },\n                    {\n                        \"X\": 0.586719810962677,\n                        \"Y\": 0.8617583513259888\n                    },\n                    {\n                        \"X\": 0.471710741519928,\n                        \"Y\": 0.8617963194847107\n                    }\n                ]\n            },\n            \"Id\": \"5a1465a6-79fe-49ab-89cc-41d1a40e84dc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96228790283203,\n            \"Text\": \"Department\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06542479246854782,\n                    \"Height\": 0.018346834927797318,\n                    \"Left\": 0.6748900413513184,\n                    \"Top\": 0.816926121711731\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6748900413513184,\n                        \"Y\": 0.8169479966163635\n                    },\n                    {\n                        \"X\": 0.7402940392494202,\n                        \"Y\": 0.816926121711731\n                    },\n                    {\n                        \"X\": 0.740314781665802,\n                        \"Y\": 0.8352511525154114\n                    },\n                    {\n                        \"X\": 0.6749104857444763,\n                        \"Y\": 0.8352729678153992\n                    }\n                ]\n            },\n            \"Id\": \"9327123b-1dce-47d2-a629-7642d76b03e6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9778060913086,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011900716461241245,\n                    \"Height\": 0.015240030363202095,\n                    \"Left\": 0.7428931593894958,\n                    \"Top\": 0.8165509104728699\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7428931593894958,\n                        \"Y\": 0.8165549039840698\n                    },\n                    {\n                        \"X\": 0.7547765374183655,\n                        \"Y\": 0.8165509104728699\n                    },\n                    {\n                        \"X\": 0.7547938823699951,\n                        \"Y\": 0.8317869901657104\n                    },\n                    {\n                        \"X\": 0.7429105043411255,\n                        \"Y\": 0.8317909240722656\n                    }\n                ]\n            },\n            \"Id\": \"4ab20708-1c99-4a2b-8535-789fcb38a83b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98210144042969,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017862489446997643,\n                    \"Height\": 0.01478851679712534,\n                    \"Left\": 0.756882905960083,\n                    \"Top\": 0.8171489834785461\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.756882905960083,\n                        \"Y\": 0.8171549439430237\n                    },\n                    {\n                        \"X\": 0.7747284770011902,\n                        \"Y\": 0.8171489834785461\n                    },\n                    {\n                        \"X\": 0.7747454047203064,\n                        \"Y\": 0.8319315314292908\n                    },\n                    {\n                        \"X\": 0.7568997144699097,\n                        \"Y\": 0.8319374918937683\n                    }\n                ]\n            },\n            \"Id\": \"408e0012-78b5-4015-8159-24001b9c254d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.06944274902344,\n            \"Text\": \"Treasury-Internal\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09680284559726715,\n                    \"Height\": 0.018603729084134102,\n                    \"Left\": 0.7786787748336792,\n                    \"Top\": 0.8167752027511597\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7786787748336792,\n                        \"Y\": 0.8168076276779175\n                    },\n                    {\n                        \"X\": 0.8754598498344421,\n                        \"Y\": 0.8167752027511597\n                    },\n                    {\n                        \"X\": 0.8754816055297852,\n                        \"Y\": 0.8353467583656311\n                    },\n                    {\n                        \"X\": 0.778700053691864,\n                        \"Y\": 0.8353789448738098\n                    }\n                ]\n            },\n            \"Id\": \"c2fcf635-bff6-45f0-89a7-ed7650029932\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 84.3917236328125,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009638231247663498,\n                    \"Height\": 0.004609893541783094,\n                    \"Left\": 0.8267359733581543,\n                    \"Top\": 0.8232868909835815\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8267359733581543,\n                        \"Y\": 0.8232901096343994\n                    },\n                    {\n                        \"X\": 0.8363688588142395,\n                        \"Y\": 0.8232868909835815\n                    },\n                    {\n                        \"X\": 0.8363742232322693,\n                        \"Y\": 0.8278936147689819\n                    },\n                    {\n                        \"X\": 0.8267413377761841,\n                        \"Y\": 0.827896773815155\n                    }\n                ]\n            },\n            \"Id\": \"4c5e83b1-be00-4058-bc9d-30d7db26f572\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.974853515625,\n            \"Text\": \"Revenue\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04805406183004379,\n                    \"Height\": 0.01510638277977705,\n                    \"Left\": 0.8822747468948364,\n                    \"Top\": 0.8170411586761475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8822747468948364,\n                        \"Y\": 0.8170572519302368\n                    },\n                    {\n                        \"X\": 0.9303109049797058,\n                        \"Y\": 0.8170411586761475\n                    },\n                    {\n                        \"X\": 0.9303288459777832,\n                        \"Y\": 0.8321315050125122\n                    },\n                    {\n                        \"X\": 0.8822924494743347,\n                        \"Y\": 0.8321475386619568\n                    }\n                ]\n            },\n            \"Id\": \"8f2d1265-ce44-4761-ab6a-014b04b49d08\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9586181640625,\n            \"Text\": \"Service\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04111143946647644,\n                    \"Height\": 0.015326840803027153,\n                    \"Left\": 0.9332355260848999,\n                    \"Top\": 0.8167753219604492\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9332355260848999,\n                        \"Y\": 0.8167890906333923\n                    },\n                    {\n                        \"X\": 0.9743286371231079,\n                        \"Y\": 0.8167753219604492\n                    },\n                    {\n                        \"X\": 0.9743469953536987,\n                        \"Y\": 0.8320884704589844\n                    },\n                    {\n                        \"X\": 0.9332537651062012,\n                        \"Y\": 0.8321021795272827\n                    }\n                ]\n            },\n            \"Id\": \"199a2503-5c07-479a-a385-76c423ff9a00\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9256362915039,\n            \"Text\": \"This\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025198444724082947,\n                    \"Height\": 0.015431872569024563,\n                    \"Left\": 0.7334398627281189,\n                    \"Top\": 0.849908709526062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7334398627281189,\n                        \"Y\": 0.8499170541763306\n                    },\n                    {\n                        \"X\": 0.7586207389831543,\n                        \"Y\": 0.849908709526062\n                    },\n                    {\n                        \"X\": 0.758638322353363,\n                        \"Y\": 0.865332305431366\n                    },\n                    {\n                        \"X\": 0.7334573268890381,\n                        \"Y\": 0.8653405904769897\n                    }\n                ]\n            },\n            \"Id\": \"e3777c8d-5cb6-45f2-9846-1aea680029bf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93168640136719,\n            \"Text\": \"information\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0672822818160057,\n                    \"Height\": 0.015332171693444252,\n                    \"Left\": 0.7618306279182434,\n                    \"Top\": 0.8502160906791687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7618306279182434,\n                        \"Y\": 0.8502383828163147\n                    },\n                    {\n                        \"X\": 0.829095184803009,\n                        \"Y\": 0.8502160906791687\n                    },\n                    {\n                        \"X\": 0.8291129469871521,\n                        \"Y\": 0.8655261397361755\n                    },\n                    {\n                        \"X\": 0.7618480920791626,\n                        \"Y\": 0.865548312664032\n                    }\n                ]\n            },\n            \"Id\": \"0798f2f8-14c3-4346-83b6-25c049ffb591\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97030639648438,\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009721798822283745,\n                    \"Height\": 0.014668237417936325,\n                    \"Left\": 0.832605242729187,\n                    \"Top\": 0.8505736589431763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.832605242729187,\n                        \"Y\": 0.8505768775939941\n                    },\n                    {\n                        \"X\": 0.8423099517822266,\n                        \"Y\": 0.8505736589431763\n                    },\n                    {\n                        \"X\": 0.8423269987106323,\n                        \"Y\": 0.8652386665344238\n                    },\n                    {\n                        \"X\": 0.832622230052948,\n                        \"Y\": 0.8652418851852417\n                    }\n                ]\n            },\n            \"Id\": \"efa18034-4f31-4a1a-bd8a-cec4ba7c333b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98456573486328,\n            \"Text\": \"being\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03249058127403259,\n                    \"Height\": 0.018282625824213028,\n                    \"Left\": 0.8457841277122498,\n                    \"Top\": 0.8503855466842651\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8457841277122498,\n                        \"Y\": 0.8503962755203247\n                    },\n                    {\n                        \"X\": 0.8782532811164856,\n                        \"Y\": 0.8503855466842651\n                    },\n                    {\n                        \"X\": 0.87827467918396,\n                        \"Y\": 0.8686574697494507\n                    },\n                    {\n                        \"X\": 0.8458054065704346,\n                        \"Y\": 0.8686681985855103\n                    }\n                ]\n            },\n            \"Id\": \"c6ceeb92-6937-4db6-990c-5094b3c21234\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95183563232422,\n            \"Text\": \"furnished\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05562303960323334,\n                    \"Height\": 0.015304661355912685,\n                    \"Left\": 0.8815416097640991,\n                    \"Top\": 0.8502136468887329\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8815416097640991,\n                        \"Y\": 0.8502320647239685\n                    },\n                    {\n                        \"X\": 0.9371464848518372,\n                        \"Y\": 0.8502136468887329\n                    },\n                    {\n                        \"X\": 0.9371646642684937,\n                        \"Y\": 0.8654999732971191\n                    },\n                    {\n                        \"X\": 0.8815595507621765,\n                        \"Y\": 0.8655182719230652\n                    }\n                ]\n            },\n            \"Id\": \"5acd13cb-c701-4a65-bf1d-ba1ae0c80dde\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91290283203125,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012124797329306602,\n                    \"Height\": 0.01403251476585865,\n                    \"Left\": 0.939917802810669,\n                    \"Top\": 0.8513694405555725\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.939917802810669,\n                        \"Y\": 0.8513734936714172\n                    },\n                    {\n                        \"X\": 0.952025830745697,\n                        \"Y\": 0.8513694405555725\n                    },\n                    {\n                        \"X\": 0.9520425796508789,\n                        \"Y\": 0.8653979897499084\n                    },\n                    {\n                        \"X\": 0.939934492111206,\n                        \"Y\": 0.8654019832611084\n                    }\n                ]\n            },\n            \"Id\": \"6e5f121e-c5bf-4bc7-80fd-75cdabac1146\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9566421508789,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01918211579322815,\n                    \"Height\": 0.014809570275247097,\n                    \"Left\": 0.9548908472061157,\n                    \"Top\": 0.8503473401069641\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9548908472061157,\n                        \"Y\": 0.8503536581993103\n                    },\n                    {\n                        \"X\": 0.9740552306175232,\n                        \"Y\": 0.8503473401069641\n                    },\n                    {\n                        \"X\": 0.9740729928016663,\n                        \"Y\": 0.8651505708694458\n                    },\n                    {\n                        \"X\": 0.954908549785614,\n                        \"Y\": 0.865156888961792\n                    }\n                ]\n            },\n            \"Id\": \"d3f4eedf-7330-47f0-8be9-c0e8ab1b4e40\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90390014648438,\n            \"Text\": \"Copy\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035243306308984756,\n                    \"Height\": 0.02062041498720646,\n                    \"Left\": 0.0266727264970541,\n                    \"Top\": 0.877334713935852\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0266727264970541,\n                        \"Y\": 0.8773462772369385\n                    },\n                    {\n                        \"X\": 0.06189652904868126,\n                        \"Y\": 0.877334713935852\n                    },\n                    {\n                        \"X\": 0.06191603094339371,\n                        \"Y\": 0.8979436755180359\n                    },\n                    {\n                        \"X\": 0.02669202722609043,\n                        \"Y\": 0.8979551196098328\n                    }\n                ]\n            },\n            \"Id\": \"18140348-cbbc-437e-b484-1570ec1f88fa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.98655700683594,\n            \"Text\": \"C-For\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04832104220986366,\n                    \"Height\": 0.01732688397169113,\n                    \"Left\": 0.06458064168691635,\n                    \"Top\": 0.876720130443573\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06458064168691635,\n                        \"Y\": 0.8767359852790833\n                    },\n                    {\n                        \"X\": 0.11288505792617798,\n                        \"Y\": 0.876720130443573\n                    },\n                    {\n                        \"X\": 0.11290168017148972,\n                        \"Y\": 0.894031286239624\n                    },\n                    {\n                        \"X\": 0.06459703296422958,\n                        \"Y\": 0.8940470218658447\n                    }\n                ]\n            },\n            \"Id\": \"76a54ed1-e286-46a5-8543-fd5579ee3a5c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 84.6099624633789,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011571496725082397,\n                    \"Height\": 0.005235551856458187,\n                    \"Left\": 0.07667006552219391,\n                    \"Top\": 0.8842835426330566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07667006552219391,\n                        \"Y\": 0.8842872977256775\n                    },\n                    {\n                        \"X\": 0.08823657035827637,\n                        \"Y\": 0.8842835426330566\n                    },\n                    {\n                        \"X\": 0.0882415622472763,\n                        \"Y\": 0.8895152807235718\n                    },\n                    {\n                        \"X\": 0.07667503505945206,\n                        \"Y\": 0.8895190954208374\n                    }\n                ]\n            },\n            \"Id\": \"c7da2336-5b2a-4045-8e3c-dc88ff95fe98\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8914566040039,\n            \"Text\": \"EMPLOYEE'S\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.090937040746212,\n                    \"Height\": 0.016862915828824043,\n                    \"Left\": 0.11614033579826355,\n                    \"Top\": 0.8773626685142517\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11614033579826355,\n                        \"Y\": 0.8773924708366394\n                    },\n                    {\n                        \"X\": 0.207060769200325,\n                        \"Y\": 0.8773626685142517\n                    },\n                    {\n                        \"X\": 0.20707738399505615,\n                        \"Y\": 0.8941959142684937\n                    },\n                    {\n                        \"X\": 0.11615651845932007,\n                        \"Y\": 0.8942255973815918\n                    }\n                ]\n            },\n            \"Id\": \"00523fc6-9e17-4b8f-81d6-8e9626bcf737\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96607208251953,\n            \"Text\": \"RECORDS\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0701969787478447,\n                    \"Height\": 0.016754383221268654,\n                    \"Left\": 0.21130365133285522,\n                    \"Top\": 0.8774500489234924\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21130365133285522,\n                        \"Y\": 0.8774730563163757\n                    },\n                    {\n                        \"X\": 0.2814837694168091,\n                        \"Y\": 0.8774500489234924\n                    },\n                    {\n                        \"X\": 0.2815006375312805,\n                        \"Y\": 0.894181489944458\n                    },\n                    {\n                        \"X\": 0.2113201767206192,\n                        \"Y\": 0.8942044377326965\n                    }\n                ]\n            },\n            \"Id\": \"0fba1435-17c3-4a8d-8501-dfe2f0bbdede\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.57179260253906,\n            \"Text\": \"V.I.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018600860610604286,\n                    \"Height\": 0.014964589849114418,\n                    \"Left\": 0.7890825271606445,\n                    \"Top\": 0.8709777593612671\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7890825271606445,\n                        \"Y\": 0.870983898639679\n                    },\n                    {\n                        \"X\": 0.8076661229133606,\n                        \"Y\": 0.8709777593612671\n                    },\n                    {\n                        \"X\": 0.8076833486557007,\n                        \"Y\": 0.8859362602233887\n                    },\n                    {\n                        \"X\": 0.7890996932983398,\n                        \"Y\": 0.8859423398971558\n                    }\n                ]\n            },\n            \"Id\": \"4f7cfc06-bf81-4837-b650-3de6dfbdfbcb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93156433105469,\n            \"Text\": \"Bureau\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.041767485439777374,\n                    \"Height\": 0.014902793802320957,\n                    \"Left\": 0.8115182518959045,\n                    \"Top\": 0.871231734752655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8115182518959045,\n                        \"Y\": 0.8712455034255981\n                    },\n                    {\n                        \"X\": 0.8532683849334717,\n                        \"Y\": 0.871231734752655\n                    },\n                    {\n                        \"X\": 0.8532857298851013,\n                        \"Y\": 0.8861209154129028\n                    },\n                    {\n                        \"X\": 0.8115354180335999,\n                        \"Y\": 0.8861345648765564\n                    }\n                ]\n            },\n            \"Id\": \"18bed61b-1c68-41ab-9ea8-dc9c44518f56\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96117401123047,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012312551960349083,\n                    \"Height\": 0.015024540014564991,\n                    \"Left\": 0.856713593006134,\n                    \"Top\": 0.8710895776748657\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.856713593006134,\n                        \"Y\": 0.8710936307907104\n                    },\n                    {\n                        \"X\": 0.8690085411071777,\n                        \"Y\": 0.8710895776748657\n                    },\n                    {\n                        \"X\": 0.8690261244773865,\n                        \"Y\": 0.8861100673675537\n                    },\n                    {\n                        \"X\": 0.856731116771698,\n                        \"Y\": 0.8861141204833984\n                    }\n                ]\n            },\n            \"Id\": \"fe72c60b-2d71-417e-9752-d8bb1991b8d7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92317199707031,\n            \"Text\": \"Internal\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044530466198921204,\n                    \"Height\": 0.01533939316868782,\n                    \"Left\": 0.8717599511146545,\n                    \"Top\": 0.8707724213600159\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8717599511146545,\n                        \"Y\": 0.8707870841026306\n                    },\n                    {\n                        \"X\": 0.9162722826004028,\n                        \"Y\": 0.8707724213600159\n                    },\n                    {\n                        \"X\": 0.9162904024124146,\n                        \"Y\": 0.886097252368927\n                    },\n                    {\n                        \"X\": 0.8717778921127319,\n                        \"Y\": 0.8861117959022522\n                    }\n                ]\n            },\n            \"Id\": \"0778e174-e18c-4120-b7b5-d53a5cd8f53d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.82207489013672,\n            \"Text\": \"Revenue.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05413943529129028,\n                    \"Height\": 0.014960038475692272,\n                    \"Left\": 0.9196296334266663,\n                    \"Top\": 0.8712343573570251\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9196296334266663,\n                        \"Y\": 0.8712521195411682\n                    },\n                    {\n                        \"X\": 0.9737511277198792,\n                        \"Y\": 0.8712343573570251\n                    },\n                    {\n                        \"X\": 0.9737690687179565,\n                        \"Y\": 0.8861766457557678\n                    },\n                    {\n                        \"X\": 0.9196473360061646,\n                        \"Y\": 0.8861943483352661\n                    }\n                ]\n            },\n            \"Id\": \"054e3848-c860-431c-9584-b39050429baf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94702911376953,\n            \"Text\": \"(See\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027932720258831978,\n                    \"Height\": 0.020362472161650658,\n                    \"Left\": 0.026641149073839188,\n                    \"Top\": 0.9020983576774597\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026641149073839188,\n                        \"Y\": 0.9021074175834656\n                    },\n                    {\n                        \"X\": 0.05455465242266655,\n                        \"Y\": 0.9020983576774597\n                    },\n                    {\n                        \"X\": 0.054573871195316315,\n                        \"Y\": 0.9224517941474915\n                    },\n                    {\n                        \"X\": 0.026660209521651268,\n                        \"Y\": 0.9224607944488525\n                    }\n                ]\n            },\n            \"Id\": \"30c1b3e3-f732-45d5-8fdf-42485b7ad15d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86953735351562,\n            \"Text\": \"Notice\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0406375490128994,\n                    \"Height\": 0.017046310007572174,\n                    \"Left\": 0.05823181942105293,\n                    \"Top\": 0.9022361040115356\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05823181942105293,\n                        \"Y\": 0.9022493362426758\n                    },\n                    {\n                        \"X\": 0.09885307401418686,\n                        \"Y\": 0.9022361040115356\n                    },\n                    {\n                        \"X\": 0.09886936843395233,\n                        \"Y\": 0.9192692637443542\n                    },\n                    {\n                        \"X\": 0.058247920125722885,\n                        \"Y\": 0.9192824363708496\n                    }\n                ]\n            },\n            \"Id\": \"9b89aaf6-e1ed-484a-a0d9-38d49f4d2ecc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9703140258789,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012505310587584972,\n                    \"Height\": 0.01608671247959137,\n                    \"Left\": 0.10274671763181686,\n                    \"Top\": 0.9030476808547974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10274671763181686,\n                        \"Y\": 0.9030517339706421\n                    },\n                    {\n                        \"X\": 0.11523657292127609,\n                        \"Y\": 0.9030476808547974\n                    },\n                    {\n                        \"X\": 0.11525202542543411,\n                        \"Y\": 0.9191303849220276\n                    },\n                    {\n                        \"X\": 0.1027621179819107,\n                        \"Y\": 0.9191343784332275\n                    }\n                ]\n            },\n            \"Id\": \"3777291e-9313-47bf-b6d6-9e38527188ed\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.967529296875,\n            \"Text\": \"Employee\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.062216322869062424,\n                    \"Height\": 0.02115498296916485,\n                    \"Left\": 0.11899077147245407,\n                    \"Top\": 0.9018688797950745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11899077147245407,\n                        \"Y\": 0.9018890857696533\n                    },\n                    {\n                        \"X\": 0.18118639290332794,\n                        \"Y\": 0.9018688797950745\n                    },\n                    {\n                        \"X\": 0.1812071055173874,\n                        \"Y\": 0.9230037331581116\n                    },\n                    {\n                        \"X\": 0.11901111155748367,\n                        \"Y\": 0.9230238199234009\n                    }\n                ]\n            },\n            \"Id\": \"5594c7bf-504b-40d8-bf6b-178fa772fcf2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97870635986328,\n            \"Text\": \"on\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016162700951099396,\n                    \"Height\": 0.012900663539767265,\n                    \"Left\": 0.18510845303535461,\n                    \"Top\": 0.9057534337043762\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18510845303535461,\n                        \"Y\": 0.9057586789131165\n                    },\n                    {\n                        \"X\": 0.20125845074653625,\n                        \"Y\": 0.9057534337043762\n                    },\n                    {\n                        \"X\": 0.2012711614370346,\n                        \"Y\": 0.9186488389968872\n                    },\n                    {\n                        \"X\": 0.1851211041212082,\n                        \"Y\": 0.9186540842056274\n                    }\n                ]\n            },\n            \"Id\": \"2ea30502-b6d3-4c28-844c-e2197d4ae4aa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99192810058594,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020393237471580505,\n                    \"Height\": 0.016522761434316635,\n                    \"Left\": 0.2046046406030655,\n                    \"Top\": 0.9025499820709229\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2046046406030655,\n                        \"Y\": 0.9025566577911377\n                    },\n                    {\n                        \"X\": 0.22498150169849396,\n                        \"Y\": 0.9025499820709229\n                    },\n                    {\n                        \"X\": 0.224997878074646,\n                        \"Y\": 0.9190661907196045\n                    },\n                    {\n                        \"X\": 0.20462092757225037,\n                        \"Y\": 0.9190727472305298\n                    }\n                ]\n            },\n            \"Id\": \"51b445b6-518e-4a16-975a-4ba4653070c9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95332336425781,\n            \"Text\": \"back\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03110295534133911,\n                    \"Height\": 0.017042627558112144,\n                    \"Left\": 0.22865799069404602,\n                    \"Top\": 0.9020963907241821\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22865799069404602,\n                        \"Y\": 0.902106523513794\n                    },\n                    {\n                        \"X\": 0.25974389910697937,\n                        \"Y\": 0.9020963907241821\n                    },\n                    {\n                        \"X\": 0.25976094603538513,\n                        \"Y\": 0.9191290140151978\n                    },\n                    {\n                        \"X\": 0.22867488861083984,\n                        \"Y\": 0.91913902759552\n                    }\n                ]\n            },\n            \"Id\": \"de030f9c-357b-429b-9761-190feebc27cc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98094177246094,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01305202767252922,\n                    \"Height\": 0.017001189291477203,\n                    \"Left\": 0.2631588280200958,\n                    \"Top\": 0.9020370841026306\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2631588280200958,\n                        \"Y\": 0.9020413160324097\n                    },\n                    {\n                        \"X\": 0.276193767786026,\n                        \"Y\": 0.9020370841026306\n                    },\n                    {\n                        \"X\": 0.27621084451675415,\n                        \"Y\": 0.9190340638160706\n                    },\n                    {\n                        \"X\": 0.2631758749485016,\n                        \"Y\": 0.9190382957458496\n                    }\n                ]\n            },\n            \"Id\": \"aa687778-7ec9-4119-832e-4150ee805282\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.927001953125,\n            \"Text\": \"Copy\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03364909440279007,\n                    \"Height\": 0.020934851840138435,\n                    \"Left\": 0.27918875217437744,\n                    \"Top\": 0.9020146131515503\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27918875217437744,\n                        \"Y\": 0.9020255208015442\n                    },\n                    {\n                        \"X\": 0.3128165900707245,\n                        \"Y\": 0.9020146131515503\n                    },\n                    {\n                        \"X\": 0.3128378391265869,\n                        \"Y\": 0.9229385852813721\n                    },\n                    {\n                        \"X\": 0.27920982241630554,\n                        \"Y\": 0.9229494333267212\n                    }\n                ]\n            },\n            \"Id\": \"b4015376-abd7-40a8-b571-0a5501f3c681\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57060241699219,\n            \"Text\": \"B.)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017093956470489502,\n                    \"Height\": 0.021185612305998802,\n                    \"Left\": 0.31694427132606506,\n                    \"Top\": 0.9018016457557678\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31694427132606506,\n                        \"Y\": 0.9018071889877319\n                    },\n                    {\n                        \"X\": 0.3340165913105011,\n                        \"Y\": 0.9018016457557678\n                    },\n                    {\n                        \"X\": 0.33403822779655457,\n                        \"Y\": 0.9229817390441895\n                    },\n                    {\n                        \"X\": 0.31696581840515137,\n                        \"Y\": 0.9229872226715088\n                    }\n                ]\n            },\n            \"Id\": \"fb9a64c7-4bfd-447d-8947-c5c1b4f33e58\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"e74e091d-79a0-45a7-bed7-90941c5efdaa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"ANSWER\",\n                    \"Ids\": [\n                        \"742a12fc-8a73-4aed-b217-3752647424c4\"\n                    ]\n                }\n            ],\n            \"Query\": {\n                \"Text\": \"What is the address?\",\n                \"Alias\": \"ADDRESS\"\n            }\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 83.0,\n            \"Text\": \"123 Any Street, Any Town, USA 63000001\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27715566754341125,\n                    \"Height\": 0.026067906990647316,\n                    \"Left\": 0.07014772295951843,\n                    \"Top\": 0.5784803032875061\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07014772295951843,\n                        \"Y\": 0.5785805583000183\n                    },\n                    {\n                        \"X\": 0.3472767770290375,\n                        \"Y\": 0.5784803032875061\n                    },\n                    {\n                        \"X\": 0.3473033905029297,\n                        \"Y\": 0.6044487357139587\n                    },\n                    {\n                        \"X\": 0.07017235457897186,\n                        \"Y\": 0.6045482158660889\n                    }\n                ]\n            },\n            \"Id\": \"742a12fc-8a73-4aed-b217-3752647424c4\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"597b69c8-e1d6-4b21-94f9-9fcbaff3968e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"ANSWER\",\n                    \"Ids\": [\n                        \"5c860e58-deb4-4c24-8282-2394a2c535c0\"\n                    ]\n                }\n            ],\n            \"Query\": {\n                \"Text\": \"What is the name?\",\n                \"Alias\": \"NAME\"\n            }\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 98.0,\n            \"Text\": \"Ana Carolina\",\n            \"Id\": \"5c860e58-deb4-4c24-8282-2394a2c535c0\"\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"ResponseMetadata\": {\n        \"RequestId\": \"76a38cd9-dbb8-4d3e-9809-57b0aca0e2ff\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"x-amzn-requestid\": \"76a38cd9-dbb8-4d3e-9809-57b0aca0e2ff\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"144670\",\n            \"date\": \"Thu, 01 Jun 2023 22:46:28 GMT\"\n        },\n        \"MaxAttemptsReached\": true,\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/tests/data/employment-application.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1.0,\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 9.33321120033382e-17,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.6069064689339292e-16\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"31ce6ec7-2d33-4d48-8968-922bdf8b6c46\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"29113848-195a-46ed-a7f6-25def6b40265\",\n                        \"d128e03e-4124-449d-8ecf-f906b0414605\",\n                        \"279b5f59-aa9a-4172-b873-14167384c7cc\",\n                        \"2c1bc83f-b787-4ace-b664-8c335bec6353\",\n                        \"60f968e4-fdc0-4a39-a911-e1121a817a1a\",\n                        \"dc86061c-4dad-46bc-a19f-9425f91bf323\",\n                        \"3f51c3da-a231-488f-bb21-ba4cb34d1081\",\n                        \"3f6166d0-00b4-4332-ab84-af4116fc7f46\",\n                        \"e59b80e0-9af9-4fec-88ed-2db3d5082400\",\n                        \"e8cb3592-869d-4f83-9ffa-41c17c58e609\",\n                        \"4b614849-ede1-476f-b3c6-28446c91bc2b\",\n                        \"42b4296d-61b5-4031-9ad3-545d92f611cd\",\n                        \"545aed6a-7b13-48c0-baa1-6e0d62f44c46\",\n                        \"05e57f5d-83d1-4447-ae96-a5183f94dca7\",\n                        \"e1400d06-c84b-4666-bc31-eec24daa021c\",\n                        \"ee646957-19f9-4d3d-98b0-825cdcce3923\",\n                        \"e0a77883-1215-4d3e-bae3-c01bef158fcd\",\n                        \"5fa1eea4-eec4-4516-9d1b-65f394fb87b5\",\n                        \"21cac5f4-de34-41fa-9384-aadd2c3a6919\",\n                        \"2e5ed7b8-04e2-4f4f-8c52-9bc2980dc287\",\n                        \"5ff46696-e06e-4577-ac3f-32a1ffde3290\",\n                        \"1aa12b00-731f-430b-ad8d-fa7fd14399f9\",\n                        \"239c6be3-9ada-4b1b-9395-8456b0d90c3b\",\n                        \"ab3b699e-983e-4a55-a7c7-6f105cbf3ea7\",\n                        \"b3303288-16af-41b6-916b-239f0771259a\",\n                        \"88417093-1b52-43e9-a5bd-e0860979f89c\",\n                        \"2bfb4ebe-0607-4b94-b882-87772bb868c4\",\n                        \"3ca591ba-edfc-4dac-a705-ac4dae2f8086\",\n                        \"b022e532-7b26-4d79-b761-bed1977dc959\",\n                        \"a3dc5504-391b-4087-ba8c-6f5d6b7f3866\",\n                        \"a9647a29-5d01-44c0-b9ea-7db41344cc54\",\n                        \"d73589e2-d3b9-4d5a-86cc-93ba7ea888f0\",\n                        \"f3b99d71-f3d0-49d7-9b69-945819f98913\",\n                        \"b36e437d-64d6-402b-a744-583801d18b44\",\n                        \"cb2d4069-0d89-493e-8048-22c871ea5dd4\",\n                        \"b0bbecca-bf27-40d0-809c-9b42c1494d8d\",\n                        \"36dd8beb-2ed7-438f-8beb-ac4a8441a9d0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90126037597656,\n            \"Text\": \"Employment Application\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.32550400495529175,\n                    \"Height\": 0.03890947997570038,\n                    \"Left\": 0.28054946660995483,\n                    \"Top\": 0.16848231852054596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28054946660995483,\n                        \"Y\": 0.16848231852054596\n                    },\n                    {\n                        \"X\": 0.6060534715652466,\n                        \"Y\": 0.16848231852054596\n                    },\n                    {\n                        \"X\": 0.6060534715652466,\n                        \"Y\": 0.20739179849624634\n                    },\n                    {\n                        \"X\": 0.28054946660995483,\n                        \"Y\": 0.20739179849624634\n                    }\n                ]\n            },\n            \"Id\": \"29113848-195a-46ed-a7f6-25def6b40265\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"857d669a-b655-4003-8fdc-27e18fa223e5\",\n                        \"d73ac52b-d48b-474a-8687-c6383dad4a1b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.57406616210938,\n            \"Text\": \"Applicant Information\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22908994555473328,\n                    \"Height\": 0.031159400939941406,\n                    \"Left\": 0.07345423102378845,\n                    \"Top\": 0.24377861618995667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07345423102378845,\n                        \"Y\": 0.24377861618995667\n                    },\n                    {\n                        \"X\": 0.30254417657852173,\n                        \"Y\": 0.24377861618995667\n                    },\n                    {\n                        \"X\": 0.30254417657852173,\n                        \"Y\": 0.27493801712989807\n                    },\n                    {\n                        \"X\": 0.07345423102378845,\n                        \"Y\": 0.27493801712989807\n                    }\n                ]\n            },\n            \"Id\": \"d128e03e-4124-449d-8ecf-f906b0414605\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ec0aea7e-0f71-4cda-8659-4491e27cd6cd\",\n                        \"430f3e24-15c5-4889-b45b-100b1e37b28c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69449615478516,\n            \"Text\": \"Full Name: Jane Doe\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18137098848819733,\n                    \"Height\": 0.02248752862215042,\n                    \"Left\": 0.07476355135440826,\n                    \"Top\": 0.3128688931465149\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07476355135440826,\n                        \"Y\": 0.3128688931465149\n                    },\n                    {\n                        \"X\": 0.2561345398426056,\n                        \"Y\": 0.3128688931465149\n                    },\n                    {\n                        \"X\": 0.2561345398426056,\n                        \"Y\": 0.3353564143180847\n                    },\n                    {\n                        \"X\": 0.07476355135440826,\n                        \"Y\": 0.3353564143180847\n                    }\n                ]\n            },\n            \"Id\": \"279b5f59-aa9a-4172-b873-14167384c7cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bae5b0fa-2257-401f-96d3-751cbe2ae3b6\",\n                        \"89fd4053-abb5-4ea2-8052-a7ac17ca96f4\",\n                        \"02de8ab9-045d-418b-a912-6ad702f7d0c0\",\n                        \"e183378d-793d-4a9b-883d-2389e9a22560\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.44634246826172,\n            \"Text\": \"Phone Number: 555-0100\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22759996354579926,\n                    \"Height\": 0.02531754970550537,\n                    \"Left\": 0.07484839111566544,\n                    \"Top\": 0.37515419721603394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07484839111566544,\n                        \"Y\": 0.37515419721603394\n                    },\n                    {\n                        \"X\": 0.3024483621120453,\n                        \"Y\": 0.37515419721603394\n                    },\n                    {\n                        \"X\": 0.3024483621120453,\n                        \"Y\": 0.4004717469215393\n                    },\n                    {\n                        \"X\": 0.07484839111566544,\n                        \"Y\": 0.4004717469215393\n                    }\n                ]\n            },\n            \"Id\": \"2c1bc83f-b787-4ace-b664-8c335bec6353\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2bc89775-4d28-41e7-8399-5a4ef919f000\",\n                        \"76e47797-a128-4fe7-b169-3bc4ec68f473\",\n                        \"f4fd9a25-223f-4cfa-be2a-89f0600d4bc1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.79651641845703,\n            \"Text\": \"Home Address: 123 Any Street, Any Town, USA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.42288628220558167,\n                    \"Height\": 0.026836972683668137,\n                    \"Left\": 0.07488469034433365,\n                    \"Top\": 0.43991395831108093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07488469034433365,\n                        \"Y\": 0.43991395831108093\n                    },\n                    {\n                        \"X\": 0.4977709650993347,\n                        \"Y\": 0.43991395831108093\n                    },\n                    {\n                        \"X\": 0.4977709650993347,\n                        \"Y\": 0.4667509198188782\n                    },\n                    {\n                        \"X\": 0.07488469034433365,\n                        \"Y\": 0.4667509198188782\n                    }\n                ]\n            },\n            \"Id\": \"60f968e4-fdc0-4a39-a911-e1121a817a1a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"136375e2-a1c4-4fb6-9774-84d9652e8eb0\",\n                        \"caa21fc2-834c-463e-a668-bb94722f3fe3\",\n                        \"12b082bb-c99e-4833-9c27-1058593fe4d3\",\n                        \"10eb6619-9cec-40f2-a0e3-503661f41459\",\n                        \"e75e9384-e1a7-498a-9c38-2420b60f5bab\",\n                        \"80d2461e-6b91-4795-ad79-0e41ea48ec66\",\n                        \"ba9b97f7-ce62-4ca0-aaa3-e8ba2caa49bd\",\n                        \"9b90412b-069d-4b75-995e-4e070eb7bfec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8390884399414,\n            \"Text\": \"Mailing Address: same as home address\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3576335608959198,\n                    \"Height\": 0.027664247900247574,\n                    \"Left\": 0.07483323663473129,\n                    \"Top\": 0.5025233626365662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07483323663473129,\n                        \"Y\": 0.5025233626365662\n                    },\n                    {\n                        \"X\": 0.4324668049812317,\n                        \"Y\": 0.5025233626365662\n                    },\n                    {\n                        \"X\": 0.4324668049812317,\n                        \"Y\": 0.5301876068115234\n                    },\n                    {\n                        \"X\": 0.07483323663473129,\n                        \"Y\": 0.5301876068115234\n                    }\n                ]\n            },\n            \"Id\": \"dc86061c-4dad-46bc-a19f-9425f91bf323\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fa48fecb-8d39-4630-8e07-f27d5b632e48\",\n                        \"e4f31e86-dff7-4d3c-9387-33d8e35be803\",\n                        \"9030ba88-92f5-46e3-a2cb-d181eaec40ce\",\n                        \"efffafaf-ec36-455a-92bd-3e12633a7574\",\n                        \"c9c84ce7-53a5-414f-bd0c-952d5e30a6b4\",\n                        \"7e7c00c6-eb62-4da5-995b-1b07a53d9e63\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.78767395019531,\n            \"Text\": \"Previous Employment History\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3052908182144165,\n                    \"Height\": 0.03159540891647339,\n                    \"Left\": 0.30723094940185547,\n                    \"Top\": 0.598618745803833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30723094940185547,\n                        \"Y\": 0.598618745803833\n                    },\n                    {\n                        \"X\": 0.612521767616272,\n                        \"Y\": 0.598618745803833\n                    },\n                    {\n                        \"X\": 0.612521767616272,\n                        \"Y\": 0.6302141547203064\n                    },\n                    {\n                        \"X\": 0.30723094940185547,\n                        \"Y\": 0.6302141547203064\n                    }\n                ]\n            },\n            \"Id\": \"3f51c3da-a231-488f-bb21-ba4cb34d1081\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"22adc3e4-8289-4734-9b2c-0173b2152812\",\n                        \"b8dbf86c-71ab-47a9-82be-cc9bd5b7e3c8\",\n                        \"a7289c78-c2f4-4820-acb3-56de38f5c3a2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5822982788086,\n            \"Text\": \"Start Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09591716527938843,\n                    \"Height\": 0.022017240524291992,\n                    \"Left\": 0.07416463643312454,\n                    \"Top\": 0.6557980179786682\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07416463643312454,\n                        \"Y\": 0.6557980179786682\n                    },\n                    {\n                        \"X\": 0.17008180916309357,\n                        \"Y\": 0.6557980179786682\n                    },\n                    {\n                        \"X\": 0.17008180916309357,\n                        \"Y\": 0.6778152585029602\n                    },\n                    {\n                        \"X\": 0.07416463643312454,\n                        \"Y\": 0.6778152585029602\n                    }\n                ]\n            },\n            \"Id\": \"3f6166d0-00b4-4332-ab84-af4116fc7f46\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7c85b9bb-8449-4838-9f8f-b3a3816aad7e\",\n                        \"c0d2211c-634b-46be-a152-6404bf98ef23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.62313079833984,\n            \"Text\": \"End Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08422452211380005,\n                    \"Height\": 0.022735774517059326,\n                    \"Left\": 0.19170773029327393,\n                    \"Top\": 0.6550583243370056\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19170773029327393,\n                        \"Y\": 0.6550583243370056\n                    },\n                    {\n                        \"X\": 0.275932252407074,\n                        \"Y\": 0.6550583243370056\n                    },\n                    {\n                        \"X\": 0.275932252407074,\n                        \"Y\": 0.6777940988540649\n                    },\n                    {\n                        \"X\": 0.19170773029327393,\n                        \"Y\": 0.6777940988540649\n                    }\n                ]\n            },\n            \"Id\": \"e59b80e0-9af9-4fec-88ed-2db3d5082400\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f9cf8c9a-c0fc-4d44-878b-275d290e8cd3\",\n                        \"22ffa348-1bb3-4cbb-b1fc-ba4a90706cb7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89241027832031,\n            \"Text\": \"Employer Name\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15050503611564636,\n                    \"Height\": 0.027742087841033936,\n                    \"Left\": 0.3053176999092102,\n                    \"Top\": 0.6550468802452087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3053176999092102,\n                        \"Y\": 0.6550468802452087\n                    },\n                    {\n                        \"X\": 0.45582273602485657,\n                        \"Y\": 0.6550468802452087\n                    },\n                    {\n                        \"X\": 0.45582273602485657,\n                        \"Y\": 0.6827889680862427\n                    },\n                    {\n                        \"X\": 0.3053176999092102,\n                        \"Y\": 0.6827889680862427\n                    }\n                ]\n            },\n            \"Id\": \"e8cb3592-869d-4f83-9ffa-41c17c58e609\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4c69935-9f24-461f-a357-4fc8dcc69a6e\",\n                        \"37722e26-b192-4aba-9c5c-d5b6326ba103\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.49966430664062,\n            \"Text\": \"Position Held\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12431547045707703,\n                    \"Height\": 0.023170022293925285,\n                    \"Left\": 0.49208903312683105,\n                    \"Top\": 0.6549334526062012\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49208903312683105,\n                        \"Y\": 0.6549334526062012\n                    },\n                    {\n                        \"X\": 0.6164044737815857,\n                        \"Y\": 0.6549334526062012\n                    },\n                    {\n                        \"X\": 0.6164044737815857,\n                        \"Y\": 0.6781034469604492\n                    },\n                    {\n                        \"X\": 0.49208903312683105,\n                        \"Y\": 0.6781034469604492\n                    }\n                ]\n            },\n            \"Id\": \"4b614849-ede1-476f-b3c6-28446c91bc2b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2e3e3fc4-dab4-4067-bd2e-f7c8646c798b\",\n                        \"dea84c48-3018-4a5b-b100-d9c9b98b1f07\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94905090332031,\n            \"Text\": \"Reason for leaving\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17343108355998993,\n                    \"Height\": 0.027783723548054695,\n                    \"Left\": 0.6555624604225159,\n                    \"Top\": 0.6545379757881165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555624604225159,\n                        \"Y\": 0.6545379757881165\n                    },\n                    {\n                        \"X\": 0.828993558883667,\n                        \"Y\": 0.6545379757881165\n                    },\n                    {\n                        \"X\": 0.828993558883667,\n                        \"Y\": 0.6823217272758484\n                    },\n                    {\n                        \"X\": 0.6555624604225159,\n                        \"Y\": 0.6823217272758484\n                    }\n                ]\n            },\n            \"Id\": \"42b4296d-61b5-4031-9ad3-545d92f611cd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"88406d50-46b5-490c-8368-abee9bfec9b7\",\n                        \"4c004580-9739-4e76-8322-969a8002e55a\",\n                        \"2df14d5d-d20c-4361-a00a-0a87a990abee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.60453796386719,\n            \"Text\": \"1/15/2009\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0968286320567131,\n                    \"Height\": 0.0268438458442688,\n                    \"Left\": 0.07532799988985062,\n                    \"Top\": 0.7083258628845215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07532799988985062,\n                        \"Y\": 0.7083258628845215\n                    },\n                    {\n                        \"X\": 0.17215663194656372,\n                        \"Y\": 0.7083258628845215\n                    },\n                    {\n                        \"X\": 0.17215663194656372,\n                        \"Y\": 0.7351697087287903\n                    },\n                    {\n                        \"X\": 0.07532799988985062,\n                        \"Y\": 0.7351697087287903\n                    }\n                ]\n            },\n            \"Id\": \"545aed6a-7b13-48c0-baa1-6e0d62f44c46\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6e38f5df-8885-4baf-b8c0-b262b7bf783e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.56900024414062,\n            \"Text\": \"6/30/2011\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09772054851055145,\n                    \"Height\": 0.026978135108947754,\n                    \"Left\": 0.19010485708713531,\n                    \"Top\": 0.7083016633987427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19010485708713531,\n                        \"Y\": 0.7083016633987427\n                    },\n                    {\n                        \"X\": 0.28782540559768677,\n                        \"Y\": 0.7083016633987427\n                    },\n                    {\n                        \"X\": 0.28782540559768677,\n                        \"Y\": 0.7352797985076904\n                    },\n                    {\n                        \"X\": 0.19010485708713531,\n                        \"Y\": 0.7352797985076904\n                    }\n                ]\n            },\n            \"Id\": \"05e57f5d-83d1-4447-ae96-a5183f94dca7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8a2496f3-ccff-42f9-afc4-cd6b4e3f78cd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71903228759766,\n            \"Text\": \"Any Company\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12857750058174133,\n                    \"Height\": 0.026797575876116753,\n                    \"Left\": 0.30455324053764343,\n                    \"Top\": 0.7101057171821594\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30455324053764343,\n                        \"Y\": 0.7101057171821594\n                    },\n                    {\n                        \"X\": 0.43313074111938477,\n                        \"Y\": 0.7101057171821594\n                    },\n                    {\n                        \"X\": 0.43313074111938477,\n                        \"Y\": 0.7369032502174377\n                    },\n                    {\n                        \"X\": 0.30455324053764343,\n                        \"Y\": 0.7369032502174377\n                    }\n                ]\n            },\n            \"Id\": \"e1400d06-c84b-4666-bc31-eec24daa021c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ddb89e68-9dd0-462e-8051-5adf136dc499\",\n                        \"57134506-6abf-4472-81a9-fb3d3ef24976\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.40178680419922,\n            \"Text\": \"Assistant Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14129234850406647,\n                    \"Height\": 0.02259773015975952,\n                    \"Left\": 0.491060733795166,\n                    \"Top\": 0.709382951259613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.491060733795166,\n                        \"Y\": 0.709382951259613\n                    },\n                    {\n                        \"X\": 0.6323530673980713,\n                        \"Y\": 0.709382951259613\n                    },\n                    {\n                        \"X\": 0.6323530673980713,\n                        \"Y\": 0.7319806814193726\n                    },\n                    {\n                        \"X\": 0.491060733795166,\n                        \"Y\": 0.7319806814193726\n                    }\n                ]\n            },\n            \"Id\": \"ee646957-19f9-4d3d-98b0-825cdcce3923\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"49d934bb-5e75-4658-b944-8af3b3c82377\",\n                        \"e32f6936-3158-42ff-ab5d-cffc47118846\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95004272460938,\n            \"Text\": \"Family relocated\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15156562626361847,\n                    \"Height\": 0.027614783495664597,\n                    \"Left\": 0.6555473208427429,\n                    \"Top\": 0.7087563872337341\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555473208427429,\n                        \"Y\": 0.7087563872337341\n                    },\n                    {\n                        \"X\": 0.8071129322052002,\n                        \"Y\": 0.7087563872337341\n                    },\n                    {\n                        \"X\": 0.8071129322052002,\n                        \"Y\": 0.7363711595535278\n                    },\n                    {\n                        \"X\": 0.6555473208427429,\n                        \"Y\": 0.7363711595535278\n                    }\n                ]\n            },\n            \"Id\": \"e0a77883-1215-4d3e-bae3-c01bef158fcd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a152a5e9-5527-4112-b994-5f4b92d16589\",\n                        \"32abddd7-b551-4ec3-8b65-3850abd4b288\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.79296875,\n            \"Text\": \"7/1/2011\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08606299012899399,\n                    \"Height\": 0.02660048007965088,\n                    \"Left\": 0.07446355372667313,\n                    \"Top\": 0.7624131441116333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07446355372667313,\n                        \"Y\": 0.7624131441116333\n                    },\n                    {\n                        \"X\": 0.16052654385566711,\n                        \"Y\": 0.7624131441116333\n                    },\n                    {\n                        \"X\": 0.16052654385566711,\n                        \"Y\": 0.7890136241912842\n                    },\n                    {\n                        \"X\": 0.07446355372667313,\n                        \"Y\": 0.7890136241912842\n                    }\n                ]\n            },\n            \"Id\": \"5fa1eea4-eec4-4516-9d1b-65f394fb87b5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5d812c9b-ecb2-4cc5-8f78-34f9215ebd38\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.67514038085938,\n            \"Text\": \"8/10/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09801380336284637,\n                    \"Height\": 0.02662259340286255,\n                    \"Left\": 0.19032429158687592,\n                    \"Top\": 0.7625806331634521\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19032429158687592,\n                        \"Y\": 0.7625806331634521\n                    },\n                    {\n                        \"X\": 0.2883380949497223,\n                        \"Y\": 0.7625806331634521\n                    },\n                    {\n                        \"X\": 0.2883380949497223,\n                        \"Y\": 0.7892032265663147\n                    },\n                    {\n                        \"X\": 0.19032429158687592,\n                        \"Y\": 0.7892032265663147\n                    }\n                ]\n            },\n            \"Id\": \"21cac5f4-de34-41fa-9384-aadd2c3a6919\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6769d929-9fb9-41e5-a05f-f9bf21187e91\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54069519042969,\n            \"Text\": \"Best Corp.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09383978694677353,\n                    \"Height\": 0.02675175666809082,\n                    \"Left\": 0.3057495653629303,\n                    \"Top\": 0.7636430859565735\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3057495653629303,\n                        \"Y\": 0.7636430859565735\n                    },\n                    {\n                        \"X\": 0.3995893597602844,\n                        \"Y\": 0.7636430859565735\n                    },\n                    {\n                        \"X\": 0.3995893597602844,\n                        \"Y\": 0.7903948426246643\n                    },\n                    {\n                        \"X\": 0.3057495653629303,\n                        \"Y\": 0.7903948426246643\n                    }\n                ]\n            },\n            \"Id\": \"2e5ed7b8-04e2-4f4f-8c52-9bc2980dc287\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1339b700-b020-4757-a622-fb1fe096b779\",\n                        \"85e0bd45-cd8b-45be-8c4f-1bd90a6a1335\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.607177734375,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05254417657852173,\n                    \"Height\": 0.023151874542236328,\n                    \"Left\": 0.4920831322669983,\n                    \"Top\": 0.7629870772361755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4920831322669983,\n                        \"Y\": 0.7629870772361755\n                    },\n                    {\n                        \"X\": 0.54462730884552,\n                        \"Y\": 0.7629870772361755\n                    },\n                    {\n                        \"X\": 0.54462730884552,\n                        \"Y\": 0.7861389517784119\n                    },\n                    {\n                        \"X\": 0.4920831322669983,\n                        \"Y\": 0.7861389517784119\n                    }\n                ]\n            },\n            \"Id\": \"5ff46696-e06e-4577-ac3f-32a1ffde3290\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b59dc77a-01ad-45b0-adf5-5bb5689547c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95084381103516,\n            \"Text\": \"Better opportunity\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1728830635547638,\n                    \"Height\": 0.02621150016784668,\n                    \"Left\": 0.6555969715118408,\n                    \"Top\": 0.7639016509056091\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555969715118408,\n                        \"Y\": 0.7639016509056091\n                    },\n                    {\n                        \"X\": 0.828480064868927,\n                        \"Y\": 0.7639016509056091\n                    },\n                    {\n                        \"X\": 0.828480064868927,\n                        \"Y\": 0.7901131510734558\n                    },\n                    {\n                        \"X\": 0.6555969715118408,\n                        \"Y\": 0.7901131510734558\n                    }\n                ]\n            },\n            \"Id\": \"1aa12b00-731f-430b-ad8d-fa7fd14399f9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8c3132e2-3aff-4acb-b684-a955bcb2bc5c\",\n                        \"71bc4443-1eb2-4d4c-85d1-3ec1cf2c5535\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.74268341064453,\n            \"Text\": \"8/15/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.096932053565979,\n                    \"Height\": 0.02708899974822998,\n                    \"Left\": 0.0747559666633606,\n                    \"Top\": 0.8139497637748718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0747559666633606,\n                        \"Y\": 0.8139497637748718\n                    },\n                    {\n                        \"X\": 0.1716880202293396,\n                        \"Y\": 0.8139497637748718\n                    },\n                    {\n                        \"X\": 0.1716880202293396,\n                        \"Y\": 0.8410387635231018\n                    },\n                    {\n                        \"X\": 0.0747559666633606,\n                        \"Y\": 0.8410387635231018\n                    }\n                ]\n            },\n            \"Id\": \"239c6be3-9ada-4b1b-9395-8456b0d90c3b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"daf8aac5-34a2-4ffa-b468-00b1d29eba45\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9533462524414,\n            \"Text\": \"present\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07096850872039795,\n                    \"Height\": 0.024416863918304443,\n                    \"Left\": 0.19085320830345154,\n                    \"Top\": 0.8176923394203186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19085320830345154,\n                        \"Y\": 0.8176923394203186\n                    },\n                    {\n                        \"X\": 0.2618217170238495,\n                        \"Y\": 0.8176923394203186\n                    },\n                    {\n                        \"X\": 0.2618217170238495,\n                        \"Y\": 0.842109203338623\n                    },\n                    {\n                        \"X\": 0.19085320830345154,\n                        \"Y\": 0.842109203338623\n                    }\n                ]\n            },\n            \"Id\": \"ab3b699e-983e-4a55-a7c7-6f105cbf3ea7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"457b8545-1487-46ea-aec9-01269e0cd2c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.48316192626953,\n            \"Text\": \"Example Corp.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1315254271030426,\n                    \"Height\": 0.02712029218673706,\n                    \"Left\": 0.3059176802635193,\n                    \"Top\": 0.8153413534164429\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3059176802635193,\n                        \"Y\": 0.8153413534164429\n                    },\n                    {\n                        \"X\": 0.4374431073665619,\n                        \"Y\": 0.8153413534164429\n                    },\n                    {\n                        \"X\": 0.4374431073665619,\n                        \"Y\": 0.8424616456031799\n                    },\n                    {\n                        \"X\": 0.3059176802635193,\n                        \"Y\": 0.8424616456031799\n                    }\n                ]\n            },\n            \"Id\": \"b3303288-16af-41b6-916b-239f0771259a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5050bbea-2ae5-44a8-9b8d-cf68c23a03c4\",\n                        \"11496aab-553e-4814-8182-7fc27412c65e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70124816894531,\n            \"Text\": \"Head Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10576499253511429,\n                    \"Height\": 0.022487998008728027,\n                    \"Left\": 0.4926374554634094,\n                    \"Top\": 0.8152825832366943\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4926374554634094,\n                        \"Y\": 0.8152825832366943\n                    },\n                    {\n                        \"X\": 0.5984024405479431,\n                        \"Y\": 0.8152825832366943\n                    },\n                    {\n                        \"X\": 0.5984024405479431,\n                        \"Y\": 0.8377705812454224\n                    },\n                    {\n                        \"X\": 0.4926374554634094,\n                        \"Y\": 0.8377705812454224\n                    }\n                ]\n            },\n            \"Id\": \"88417093-1b52-43e9-a5bd-e0860979f89c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"984091aa-00e7-43b2-b0e2-f2f0bf423253\",\n                        \"565b13c6-6555-488e-9953-520b36cbdc12\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.43244171142578,\n            \"Text\": \"N/A, current\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11536978930234909,\n                    \"Height\": 0.026958346366882324,\n                    \"Left\": 0.6552858352661133,\n                    \"Top\": 0.8146923184394836\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6552858352661133,\n                        \"Y\": 0.8146923184394836\n                    },\n                    {\n                        \"X\": 0.770655632019043,\n                        \"Y\": 0.8146923184394836\n                    },\n                    {\n                        \"X\": 0.770655632019043,\n                        \"Y\": 0.841650664806366\n                    },\n                    {\n                        \"X\": 0.6552858352661133,\n                        \"Y\": 0.841650664806366\n                    }\n                ]\n            },\n            \"Id\": \"2bfb4ebe-0607-4b94-b882-87772bb868c4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e249f533-fb96-47b5-8140-e08b24514847\",\n                        \"1db249b2-ae31-4bc6-8510-19b8b9674bf0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95295715332031,\n            \"Text\": \"employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08871650695800781,\n                    \"Height\": 0.027792751789093018,\n                    \"Left\": 0.6545867919921875,\n                    \"Top\": 0.8517507314682007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6545867919921875,\n                        \"Y\": 0.8517507314682007\n                    },\n                    {\n                        \"X\": 0.7433032989501953,\n                        \"Y\": 0.8517507314682007\n                    },\n                    {\n                        \"X\": 0.7433032989501953,\n                        \"Y\": 0.8795434832572937\n                    },\n                    {\n                        \"X\": 0.6545867919921875,\n                        \"Y\": 0.8795434832572937\n                    }\n                ]\n            },\n            \"Id\": \"3ca591ba-edfc-4dac-a705-ac4dae2f8086\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"12ffc54f-7d00-4f12-a013-8062ffef9377\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89954376220703,\n            \"Text\": \"Employment\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16838330030441284,\n                    \"Height\": 0.03837485983967781,\n                    \"Left\": 0.28054946660995483,\n                    \"Top\": 0.1688857227563858\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28054946660995483,\n                        \"Y\": 0.1688857227563858\n                    },\n                    {\n                        \"X\": 0.4489327669143677,\n                        \"Y\": 0.1688857227563858\n                    },\n                    {\n                        \"X\": 0.4489327669143677,\n                        \"Y\": 0.20726057887077332\n                    },\n                    {\n                        \"X\": 0.28054946660995483,\n                        \"Y\": 0.20726057887077332\n                    }\n                ]\n            },\n            \"Id\": \"857d669a-b655-4003-8fdc-27e18fa223e5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9029769897461,\n            \"Text\": \"Application\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15013369917869568,\n                    \"Height\": 0.038909461349248886,\n                    \"Left\": 0.4559198319911957,\n                    \"Top\": 0.16848231852054596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4559198319911957,\n                        \"Y\": 0.16848231852054596\n                    },\n                    {\n                        \"X\": 0.6060535311698914,\n                        \"Y\": 0.16848231852054596\n                    },\n                    {\n                        \"X\": 0.6060535311698914,\n                        \"Y\": 0.20739178359508514\n                    },\n                    {\n                        \"X\": 0.4559198319911957,\n                        \"Y\": 0.20739178359508514\n                    }\n                ]\n            },\n            \"Id\": \"d73ac52b-d48b-474a-8687-c6383dad4a1b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81241607666016,\n            \"Text\": \"Applicant\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10103903710842133,\n                    \"Height\": 0.031159399077296257,\n                    \"Left\": 0.07345423102378845,\n                    \"Top\": 0.24377861618995667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07345423102378845,\n                        \"Y\": 0.24377861618995667\n                    },\n                    {\n                        \"X\": 0.17449326813220978,\n                        \"Y\": 0.24377861618995667\n                    },\n                    {\n                        \"X\": 0.17449326813220978,\n                        \"Y\": 0.27493801712989807\n                    },\n                    {\n                        \"X\": 0.07345423102378845,\n                        \"Y\": 0.27493801712989807\n                    }\n                ]\n            },\n            \"Id\": \"ec0aea7e-0f71-4cda-8659-4491e27cd6cd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.33570861816406,\n            \"Text\": \"Information\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12425550818443298,\n                    \"Height\": 0.02585737034678459,\n                    \"Left\": 0.17828866839408875,\n                    \"Top\": 0.24393458664417267\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17828866839408875,\n                        \"Y\": 0.24393458664417267\n                    },\n                    {\n                        \"X\": 0.30254417657852173,\n                        \"Y\": 0.24393458664417267\n                    },\n                    {\n                        \"X\": 0.30254417657852173,\n                        \"Y\": 0.26979196071624756\n                    },\n                    {\n                        \"X\": 0.17828866839408875,\n                        \"Y\": 0.26979196071624756\n                    }\n                ]\n            },\n            \"Id\": \"430f3e24-15c5-4889-b45b-100b1e37b28c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83560180664062,\n            \"Text\": \"Full\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03129151836037636,\n                    \"Height\": 0.02196980081498623,\n                    \"Left\": 0.07476355135440826,\n                    \"Top\": 0.31310969591140747\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07476355135440826,\n                        \"Y\": 0.31310969591140747\n                    },\n                    {\n                        \"X\": 0.10605507344007492,\n                        \"Y\": 0.31310969591140747\n                    },\n                    {\n                        \"X\": 0.10605507344007492,\n                        \"Y\": 0.33507949113845825\n                    },\n                    {\n                        \"X\": 0.07476355135440826,\n                        \"Y\": 0.33507949113845825\n                    }\n                ]\n            },\n            \"Id\": \"bae5b0fa-2257-401f-96d3-751cbe2ae3b6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.53668212890625,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05734119936823845,\n                    \"Height\": 0.021426500752568245,\n                    \"Left\": 0.10984016954898834,\n                    \"Top\": 0.31392988562583923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10984016954898834,\n                        \"Y\": 0.31392988562583923\n                    },\n                    {\n                        \"X\": 0.1671813726425171,\n                        \"Y\": 0.31392988562583923\n                    },\n                    {\n                        \"X\": 0.1671813726425171,\n                        \"Y\": 0.3353564143180847\n                    },\n                    {\n                        \"X\": 0.10984016954898834,\n                        \"Y\": 0.3353564143180847\n                    }\n                ]\n            },\n            \"Id\": \"89fd4053-abb5-4ea2-8052-a7ac17ca96f4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52113342285156,\n            \"Text\": \"Jane\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04195956885814667,\n                    \"Height\": 0.02230696938931942,\n                    \"Left\": 0.17184381186962128,\n                    \"Top\": 0.3128688931465149\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17184381186962128,\n                        \"Y\": 0.3128688931465149\n                    },\n                    {\n                        \"X\": 0.21380338072776794,\n                        \"Y\": 0.3128688931465149\n                    },\n                    {\n                        \"X\": 0.21380338072776794,\n                        \"Y\": 0.33517587184906006\n                    },\n                    {\n                        \"X\": 0.17184381186962128,\n                        \"Y\": 0.33517587184906006\n                    }\n                ]\n            },\n            \"Id\": \"02de8ab9-045d-418b-a912-6ad702f7d0c0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88456726074219,\n            \"Text\": \"Doe\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03706403076648712,\n                    \"Height\": 0.021904800087213516,\n                    \"Left\": 0.21907050907611847,\n                    \"Top\": 0.31317970156669617\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21907050907611847,\n                        \"Y\": 0.31317970156669617\n                    },\n                    {\n                        \"X\": 0.2561345398426056,\n                        \"Y\": 0.31317970156669617\n                    },\n                    {\n                        \"X\": 0.2561345398426056,\n                        \"Y\": 0.3350844979286194\n                    },\n                    {\n                        \"X\": 0.21907050907611847,\n                        \"Y\": 0.3350844979286194\n                    }\n                ]\n            },\n            \"Id\": \"e183378d-793d-4a9b-883d-2389e9a22560\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3232650756836,\n            \"Text\": \"Phone\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054771509021520615,\n                    \"Height\": 0.0219953004270792,\n                    \"Left\": 0.07484839111566544,\n                    \"Top\": 0.3768545985221863\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07484839111566544,\n                        \"Y\": 0.3768545985221863\n                    },\n                    {\n                        \"X\": 0.12961989641189575,\n                        \"Y\": 0.3768545985221863\n                    },\n                    {\n                        \"X\": 0.12961989641189575,\n                        \"Y\": 0.3988499045372009\n                    },\n                    {\n                        \"X\": 0.07484839111566544,\n                        \"Y\": 0.3988499045372009\n                    }\n                ]\n            },\n            \"Id\": \"2bc89775-4d28-41e7-8399-5a4ef919f000\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78343200683594,\n            \"Text\": \"Number:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07595472037792206,\n                    \"Height\": 0.021886629983782768,\n                    \"Left\": 0.13361184298992157,\n                    \"Top\": 0.3769722878932953\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13361184298992157,\n                        \"Y\": 0.3769722878932953\n                    },\n                    {\n                        \"X\": 0.20956656336784363,\n                        \"Y\": 0.3769722878932953\n                    },\n                    {\n                        \"X\": 0.20956656336784363,\n                        \"Y\": 0.3988589346408844\n                    },\n                    {\n                        \"X\": 0.13361184298992157,\n                        \"Y\": 0.3988589346408844\n                    }\n                ]\n            },\n            \"Id\": \"76e47797-a128-4fe7-b169-3bc4ec68f473\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.23233032226562,\n            \"Text\": \"555-0100\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0870468020439148,\n                    \"Height\": 0.02531754970550537,\n                    \"Left\": 0.2154015600681305,\n                    \"Top\": 0.37515419721603394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2154015600681305,\n                        \"Y\": 0.37515419721603394\n                    },\n                    {\n                        \"X\": 0.3024483621120453,\n                        \"Y\": 0.37515419721603394\n                    },\n                    {\n                        \"X\": 0.3024483621120453,\n                        \"Y\": 0.4004717469215393\n                    },\n                    {\n                        \"X\": 0.2154015600681305,\n                        \"Y\": 0.4004717469215393\n                    }\n                ]\n            },\n            \"Id\": \"f4fd9a25-223f-4cfa-be2a-89f0600d4bc1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57723999023438,\n            \"Text\": \"Home\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051403529942035675,\n                    \"Height\": 0.020814809948205948,\n                    \"Left\": 0.07488469034433365,\n                    \"Top\": 0.4414433538913727\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07488469034433365,\n                        \"Y\": 0.4414433538913727\n                    },\n                    {\n                        \"X\": 0.12628822028636932,\n                        \"Y\": 0.4414433538913727\n                    },\n                    {\n                        \"X\": 0.12628822028636932,\n                        \"Y\": 0.46225816011428833\n                    },\n                    {\n                        \"X\": 0.07488469034433365,\n                        \"Y\": 0.46225816011428833\n                    }\n                ]\n            },\n            \"Id\": \"136375e2-a1c4-4fb6-9774-84d9652e8eb0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63672637939453,\n            \"Text\": \"Address:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07557927072048187,\n                    \"Height\": 0.021476300433278084,\n                    \"Left\": 0.12994901835918427,\n                    \"Top\": 0.44067901372909546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12994901835918427,\n                        \"Y\": 0.44067901372909546\n                    },\n                    {\n                        \"X\": 0.20552828907966614,\n                        \"Y\": 0.44067901372909546\n                    },\n                    {\n                        \"X\": 0.20552828907966614,\n                        \"Y\": 0.4621553122997284\n                    },\n                    {\n                        \"X\": 0.12994901835918427,\n                        \"Y\": 0.4621553122997284\n                    }\n                ]\n            },\n            \"Id\": \"caa21fc2-834c-463e-a668-bb94722f3fe3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86543273925781,\n            \"Text\": \"123\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033011648803949356,\n                    \"Height\": 0.021568570286035538,\n                    \"Left\": 0.21101944148540497,\n                    \"Top\": 0.43997859954833984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21101944148540497,\n                        \"Y\": 0.43997859954833984\n                    },\n                    {\n                        \"X\": 0.24403108656406403,\n                        \"Y\": 0.43997859954833984\n                    },\n                    {\n                        \"X\": 0.24403108656406403,\n                        \"Y\": 0.4615471661090851\n                    },\n                    {\n                        \"X\": 0.21101944148540497,\n                        \"Y\": 0.4615471661090851\n                    }\n                ]\n            },\n            \"Id\": \"12b082bb-c99e-4833-9c27-1058593fe4d3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89830780029297,\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036656081676483154,\n                    \"Height\": 0.02609935961663723,\n                    \"Left\": 0.24908901751041412,\n                    \"Top\": 0.44051048159599304\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24908901751041412,\n                        \"Y\": 0.44051048159599304\n                    },\n                    {\n                        \"X\": 0.28574511408805847,\n                        \"Y\": 0.44051048159599304\n                    },\n                    {\n                        \"X\": 0.28574511408805847,\n                        \"Y\": 0.4666098356246948\n                    },\n                    {\n                        \"X\": 0.24908901751041412,\n                        \"Y\": 0.4666098356246948\n                    }\n                ]\n            },\n            \"Id\": \"10eb6619-9cec-40f2-a0e3-503661f41459\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74813079833984,\n            \"Text\": \"Street,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06156117096543312,\n                    \"Height\": 0.02553444914519787,\n                    \"Left\": 0.28976327180862427,\n                    \"Top\": 0.4407695531845093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28976327180862427,\n                        \"Y\": 0.4407695531845093\n                    },\n                    {\n                        \"X\": 0.3513244390487671,\n                        \"Y\": 0.4407695531845093\n                    },\n                    {\n                        \"X\": 0.3513244390487671,\n                        \"Y\": 0.4663040041923523\n                    },\n                    {\n                        \"X\": 0.28976327180862427,\n                        \"Y\": 0.4663040041923523\n                    }\n                ]\n            },\n            \"Id\": \"e75e9384-e1a7-498a-9c38-2420b60f5bab\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88127136230469,\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03632399067282677,\n                    \"Height\": 0.02626691944897175,\n                    \"Left\": 0.35636916756629944,\n                    \"Top\": 0.4404839873313904\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35636916756629944,\n                        \"Y\": 0.4404839873313904\n                    },\n                    {\n                        \"X\": 0.3926931619644165,\n                        \"Y\": 0.4404839873313904\n                    },\n                    {\n                        \"X\": 0.3926931619644165,\n                        \"Y\": 0.4667509198188782\n                    },\n                    {\n                        \"X\": 0.35636916756629944,\n                        \"Y\": 0.4667509198188782\n                    }\n                ]\n            },\n            \"Id\": \"80d2461e-6b91-4795-ad79-0e41ea48ec66\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94439697265625,\n            \"Text\": \"Town,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05762648954987526,\n                    \"Height\": 0.025816230103373528,\n                    \"Left\": 0.3966578543186188,\n                    \"Top\": 0.4405229389667511\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3966578543186188,\n                        \"Y\": 0.4405229389667511\n                    },\n                    {\n                        \"X\": 0.45428434014320374,\n                        \"Y\": 0.4405229389667511\n                    },\n                    {\n                        \"X\": 0.45428434014320374,\n                        \"Y\": 0.4663391709327698\n                    },\n                    {\n                        \"X\": 0.3966578543186188,\n                        \"Y\": 0.4663391709327698\n                    }\n                ]\n            },\n            \"Id\": \"ba9b97f7-ce62-4ca0-aaa3-e8ba2caa49bd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82061767578125,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03830087184906006,\n                    \"Height\": 0.022066259756684303,\n                    \"Left\": 0.45947009325027466,\n                    \"Top\": 0.43991395831108093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45947009325027466,\n                        \"Y\": 0.43991395831108093\n                    },\n                    {\n                        \"X\": 0.4977709650993347,\n                        \"Y\": 0.43991395831108093\n                    },\n                    {\n                        \"X\": 0.4977709650993347,\n                        \"Y\": 0.4619802236557007\n                    },\n                    {\n                        \"X\": 0.45947009325027466,\n                        \"Y\": 0.4619802236557007\n                    }\n                ]\n            },\n            \"Id\": \"9b90412b-069d-4b75-995e-4e070eb7bfec\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86315155029297,\n            \"Text\": \"Mailing\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06527712196111679,\n                    \"Height\": 0.02558033913373947,\n                    \"Left\": 0.07483323663473129,\n                    \"Top\": 0.5046072602272034\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07483323663473129,\n                        \"Y\": 0.5046072602272034\n                    },\n                    {\n                        \"X\": 0.14011035859584808,\n                        \"Y\": 0.5046072602272034\n                    },\n                    {\n                        \"X\": 0.14011035859584808,\n                        \"Y\": 0.5301876068115234\n                    },\n                    {\n                        \"X\": 0.07483323663473129,\n                        \"Y\": 0.5301876068115234\n                    }\n                ]\n            },\n            \"Id\": \"fa48fecb-8d39-4630-8e07-f27d5b632e48\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5790023803711,\n            \"Text\": \"Address:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0757967084646225,\n                    \"Height\": 0.022036630660295486,\n                    \"Left\": 0.1424836367368698,\n                    \"Top\": 0.5040034651756287\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1424836367368698,\n                        \"Y\": 0.5040034651756287\n                    },\n                    {\n                        \"X\": 0.2182803452014923,\n                        \"Y\": 0.5040034651756287\n                    },\n                    {\n                        \"X\": 0.2182803452014923,\n                        \"Y\": 0.5260400772094727\n                    },\n                    {\n                        \"X\": 0.1424836367368698,\n                        \"Y\": 0.5260400772094727\n                    }\n                ]\n            },\n            \"Id\": \"e4f31e86-dff7-4d3c-9387-33d8e35be803\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95246887207031,\n            \"Text\": \"same\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04880687966942787,\n                    \"Height\": 0.01762245036661625,\n                    \"Left\": 0.22315484285354614,\n                    \"Top\": 0.5080132484436035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22315484285354614,\n                        \"Y\": 0.5080132484436035\n                    },\n                    {\n                        \"X\": 0.2719617187976837,\n                        \"Y\": 0.5080132484436035\n                    },\n                    {\n                        \"X\": 0.2719617187976837,\n                        \"Y\": 0.5256357192993164\n                    },\n                    {\n                        \"X\": 0.22315484285354614,\n                        \"Y\": 0.5256357192993164\n                    }\n                ]\n            },\n            \"Id\": \"9030ba88-92f5-46e3-a2cb-d181eaec40ce\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71688079833984,\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019262369722127914,\n                    \"Height\": 0.01676180027425289,\n                    \"Left\": 0.27775469422340393,\n                    \"Top\": 0.5088306069374084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27775469422340393,\n                        \"Y\": 0.5088306069374084\n                    },\n                    {\n                        \"X\": 0.29701706767082214,\n                        \"Y\": 0.5088306069374084\n                    },\n                    {\n                        \"X\": 0.29701706767082214,\n                        \"Y\": 0.5255923867225647\n                    },\n                    {\n                        \"X\": 0.27775469422340393,\n                        \"Y\": 0.5255923867225647\n                    }\n                ]\n            },\n            \"Id\": \"efffafaf-ec36-455a-92bd-3e12633a7574\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96449279785156,\n            \"Text\": \"home\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0523163303732872,\n                    \"Height\": 0.02247539907693863,\n                    \"Left\": 0.30285748839378357,\n                    \"Top\": 0.5028979778289795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30285748839378357,\n                        \"Y\": 0.5028979778289795\n                    },\n                    {\n                        \"X\": 0.35517382621765137,\n                        \"Y\": 0.5028979778289795\n                    },\n                    {\n                        \"X\": 0.35517382621765137,\n                        \"Y\": 0.5253733992576599\n                    },\n                    {\n                        \"X\": 0.30285748839378357,\n                        \"Y\": 0.5253733992576599\n                    }\n                ]\n            },\n            \"Id\": \"c9c84ce7-53a5-414f-bd0c-952d5e30a6b4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95855712890625,\n            \"Text\": \"address\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07197657227516174,\n                    \"Height\": 0.023286540061235428,\n                    \"Left\": 0.36049023270606995,\n                    \"Top\": 0.5025233626365662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36049023270606995,\n                        \"Y\": 0.5025233626365662\n                    },\n                    {\n                        \"X\": 0.4324668049812317,\n                        \"Y\": 0.5025233626365662\n                    },\n                    {\n                        \"X\": 0.4324668049812317,\n                        \"Y\": 0.5258098840713501\n                    },\n                    {\n                        \"X\": 0.36049023270606995,\n                        \"Y\": 0.5258098840713501\n                    }\n                ]\n            },\n            \"Id\": \"7e7c00c6-eb62-4da5-995b-1b07a53d9e63\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57333374023438,\n            \"Text\": \"Previous\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08931855112314224,\n                    \"Height\": 0.024376099929213524,\n                    \"Left\": 0.30723094940185547,\n                    \"Top\": 0.5995923280715942\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30723094940185547,\n                        \"Y\": 0.5995923280715942\n                    },\n                    {\n                        \"X\": 0.3965494930744171,\n                        \"Y\": 0.5995923280715942\n                    },\n                    {\n                        \"X\": 0.3965494930744171,\n                        \"Y\": 0.6239684224128723\n                    },\n                    {\n                        \"X\": 0.30723094940185547,\n                        \"Y\": 0.6239684224128723\n                    }\n                ]\n            },\n            \"Id\": \"22adc3e4-8289-4734-9b2c-0173b2152812\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87650299072266,\n            \"Text\": \"Employment\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1312887966632843,\n                    \"Height\": 0.03159540146589279,\n                    \"Left\": 0.4023631513118744,\n                    \"Top\": 0.598618745803833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4023631513118744,\n                        \"Y\": 0.598618745803833\n                    },\n                    {\n                        \"X\": 0.5336519479751587,\n                        \"Y\": 0.598618745803833\n                    },\n                    {\n                        \"X\": 0.5336519479751587,\n                        \"Y\": 0.6302141547203064\n                    },\n                    {\n                        \"X\": 0.4023631513118744,\n                        \"Y\": 0.6302141547203064\n                    }\n                ]\n            },\n            \"Id\": \"b8dbf86c-71ab-47a9-82be-cc9bd5b7e3c8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91316986083984,\n            \"Text\": \"History\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07424932718276978,\n                    \"Height\": 0.0307006798684597,\n                    \"Left\": 0.5382724404335022,\n                    \"Top\": 0.5992337465286255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5382724404335022,\n                        \"Y\": 0.5992337465286255\n                    },\n                    {\n                        \"X\": 0.612521767616272,\n                        \"Y\": 0.5992337465286255\n                    },\n                    {\n                        \"X\": 0.612521767616272,\n                        \"Y\": 0.6299344301223755\n                    },\n                    {\n                        \"X\": 0.5382724404335022,\n                        \"Y\": 0.6299344301223755\n                    }\n                ]\n            },\n            \"Id\": \"a7289c78-c2f4-4820-acb3-56de38f5c3a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68086242675781,\n            \"Text\": \"Start\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04646176099777222,\n                    \"Height\": 0.02201719954609871,\n                    \"Left\": 0.07416463643312454,\n                    \"Top\": 0.6557980179786682\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07416463643312454,\n                        \"Y\": 0.6557980179786682\n                    },\n                    {\n                        \"X\": 0.12062639743089676,\n                        \"Y\": 0.6557980179786682\n                    },\n                    {\n                        \"X\": 0.12062639743089676,\n                        \"Y\": 0.6778151988983154\n                    },\n                    {\n                        \"X\": 0.07416463643312454,\n                        \"Y\": 0.6778151988983154\n                    }\n                ]\n            },\n            \"Id\": \"7c85b9bb-8449-4838-9f8f-b3a3816aad7e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48371887207031,\n            \"Text\": \"Date\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044250089675188065,\n                    \"Height\": 0.021391799673438072,\n                    \"Left\": 0.1258317232131958,\n                    \"Top\": 0.6560804843902588\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1258317232131958,\n                        \"Y\": 0.6560804843902588\n                    },\n                    {\n                        \"X\": 0.17008180916309357,\n                        \"Y\": 0.6560804843902588\n                    },\n                    {\n                        \"X\": 0.17008180916309357,\n                        \"Y\": 0.6774722933769226\n                    },\n                    {\n                        \"X\": 0.1258317232131958,\n                        \"Y\": 0.6774722933769226\n                    }\n                ]\n            },\n            \"Id\": \"c0d2211c-634b-46be-a152-6404bf98ef23\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68376922607422,\n            \"Text\": \"End\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0342256985604763,\n                    \"Height\": 0.022735800594091415,\n                    \"Left\": 0.19170773029327393,\n                    \"Top\": 0.6550583243370056\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19170773029327393,\n                        \"Y\": 0.6550583243370056\n                    },\n                    {\n                        \"X\": 0.22593343257904053,\n                        \"Y\": 0.6550583243370056\n                    },\n                    {\n                        \"X\": 0.22593343257904053,\n                        \"Y\": 0.6777940988540649\n                    },\n                    {\n                        \"X\": 0.19170773029327393,\n                        \"Y\": 0.6777940988540649\n                    }\n                ]\n            },\n            \"Id\": \"f9cf8c9a-c0fc-4d44-878b-275d290e8cd3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56249237060547,\n            \"Text\": \"Date\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04447554051876068,\n                    \"Height\": 0.021418530493974686,\n                    \"Left\": 0.2314567118883133,\n                    \"Top\": 0.6560686230659485\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2314567118883133,\n                        \"Y\": 0.6560686230659485\n                    },\n                    {\n                        \"X\": 0.275932252407074,\n                        \"Y\": 0.6560686230659485\n                    },\n                    {\n                        \"X\": 0.275932252407074,\n                        \"Y\": 0.6774871349334717\n                    },\n                    {\n                        \"X\": 0.2314567118883133,\n                        \"Y\": 0.6774871349334717\n                    }\n                ]\n            },\n            \"Id\": \"22ffa348-1bb3-4cbb-b1fc-ba4a90706cb7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96017456054688,\n            \"Text\": \"Employer\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09051617980003357,\n                    \"Height\": 0.027742069214582443,\n                    \"Left\": 0.3053176999092102,\n                    \"Top\": 0.6550468802452087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3053176999092102,\n                        \"Y\": 0.6550468802452087\n                    },\n                    {\n                        \"X\": 0.3958338797092438,\n                        \"Y\": 0.6550468802452087\n                    },\n                    {\n                        \"X\": 0.3958338797092438,\n                        \"Y\": 0.6827889680862427\n                    },\n                    {\n                        \"X\": 0.3053176999092102,\n                        \"Y\": 0.6827889680862427\n                    }\n                ]\n            },\n            \"Id\": \"b4c69935-9f24-461f-a357-4fc8dcc69a6e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82466125488281,\n            \"Text\": \"Name\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.056233201175928116,\n                    \"Height\": 0.022057749330997467,\n                    \"Left\": 0.39958953857421875,\n                    \"Top\": 0.6561035513877869\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39958953857421875,\n                        \"Y\": 0.6561035513877869\n                    },\n                    {\n                        \"X\": 0.45582273602485657,\n                        \"Y\": 0.6561035513877869\n                    },\n                    {\n                        \"X\": 0.45582273602485657,\n                        \"Y\": 0.6781613230705261\n                    },\n                    {\n                        \"X\": 0.39958953857421875,\n                        \"Y\": 0.6781613230705261\n                    }\n                ]\n            },\n            \"Id\": \"37722e26-b192-4aba-9c5c-d5b6326ba103\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27780151367188,\n            \"Text\": \"Position\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07563997060060501,\n                    \"Height\": 0.022476650774478912,\n                    \"Left\": 0.49208903312683105,\n                    \"Top\": 0.6556267738342285\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49208903312683105,\n                        \"Y\": 0.6556267738342285\n                    },\n                    {\n                        \"X\": 0.5677289962768555,\n                        \"Y\": 0.6556267738342285\n                    },\n                    {\n                        \"X\": 0.5677289962768555,\n                        \"Y\": 0.6781034469604492\n                    },\n                    {\n                        \"X\": 0.49208903312683105,\n                        \"Y\": 0.6781034469604492\n                    }\n                ]\n            },\n            \"Id\": \"2e3e3fc4-dab4-4067-bd2e-f7c8646c798b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72151184082031,\n            \"Text\": \"Held\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0423973985016346,\n                    \"Height\": 0.022484010085463524,\n                    \"Left\": 0.574006974697113,\n                    \"Top\": 0.6549334526062012\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.574006974697113,\n                        \"Y\": 0.6549334526062012\n                    },\n                    {\n                        \"X\": 0.6164044141769409,\n                        \"Y\": 0.6549334526062012\n                    },\n                    {\n                        \"X\": 0.6164044141769409,\n                        \"Y\": 0.6774174571037292\n                    },\n                    {\n                        \"X\": 0.574006974697113,\n                        \"Y\": 0.6774174571037292\n                    }\n                ]\n            },\n            \"Id\": \"dea84c48-3018-4a5b-b100-d9c9b98b1f07\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95236206054688,\n            \"Text\": \"Reason\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06763160228729248,\n                    \"Height\": 0.022222699597477913,\n                    \"Left\": 0.6555624604225159,\n                    \"Top\": 0.6559627056121826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555624604225159,\n                        \"Y\": 0.6559627056121826\n                    },\n                    {\n                        \"X\": 0.7231940627098083,\n                        \"Y\": 0.6559627056121826\n                    },\n                    {\n                        \"X\": 0.7231940627098083,\n                        \"Y\": 0.6781854033470154\n                    },\n                    {\n                        \"X\": 0.6555624604225159,\n                        \"Y\": 0.6781854033470154\n                    }\n                ]\n            },\n            \"Id\": \"88406d50-46b5-490c-8368-abee9bfec9b7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93626403808594,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028742730617523193,\n                    \"Height\": 0.023298099637031555,\n                    \"Left\": 0.7279129028320312,\n                    \"Top\": 0.6545379757881165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7279129028320312,\n                        \"Y\": 0.6545379757881165\n                    },\n                    {\n                        \"X\": 0.7566556334495544,\n                        \"Y\": 0.6545379757881165\n                    },\n                    {\n                        \"X\": 0.7566556334495544,\n                        \"Y\": 0.6778361201286316\n                    },\n                    {\n                        \"X\": 0.7279129028320312,\n                        \"Y\": 0.6778361201286316\n                    }\n                ]\n            },\n            \"Id\": \"4c004580-9739-4e76-8322-969a8002e55a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9585189819336,\n            \"Text\": \"leaving\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06796076148748398,\n                    \"Height\": 0.02744124084711075,\n                    \"Left\": 0.7610328197479248,\n                    \"Top\": 0.6548804640769958\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7610328197479248,\n                        \"Y\": 0.6548804640769958\n                    },\n                    {\n                        \"X\": 0.828993558883667,\n                        \"Y\": 0.6548804640769958\n                    },\n                    {\n                        \"X\": 0.828993558883667,\n                        \"Y\": 0.6823217272758484\n                    },\n                    {\n                        \"X\": 0.7610328197479248,\n                        \"Y\": 0.6823217272758484\n                    }\n                ]\n            },\n            \"Id\": \"2df14d5d-d20c-4361-a00a-0a87a990abee\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60453796386719,\n            \"Text\": \"1/15/2009\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0968286320567131,\n                    \"Height\": 0.02684384025633335,\n                    \"Left\": 0.07532799988985062,\n                    \"Top\": 0.7083258628845215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07532799988985062,\n                        \"Y\": 0.7083258628845215\n                    },\n                    {\n                        \"X\": 0.17215663194656372,\n                        \"Y\": 0.7083258628845215\n                    },\n                    {\n                        \"X\": 0.17215663194656372,\n                        \"Y\": 0.7351697087287903\n                    },\n                    {\n                        \"X\": 0.07532799988985062,\n                        \"Y\": 0.7351697087287903\n                    }\n                ]\n            },\n            \"Id\": \"6e38f5df-8885-4baf-b8c0-b262b7bf783e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56900024414062,\n            \"Text\": \"6/30/2011\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09772054105997086,\n                    \"Height\": 0.026978079229593277,\n                    \"Left\": 0.19010485708713531,\n                    \"Top\": 0.7083016633987427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19010485708713531,\n                        \"Y\": 0.7083016633987427\n                    },\n                    {\n                        \"X\": 0.28782540559768677,\n                        \"Y\": 0.7083016633987427\n                    },\n                    {\n                        \"X\": 0.28782540559768677,\n                        \"Y\": 0.7352797389030457\n                    },\n                    {\n                        \"X\": 0.19010485708713531,\n                        \"Y\": 0.7352797389030457\n                    }\n                ]\n            },\n            \"Id\": \"8a2496f3-ccff-42f9-afc4-cd6b4e3f78cd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8681411743164,\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03632916137576103,\n                    \"Height\": 0.0264370609074831,\n                    \"Left\": 0.30455324053764343,\n                    \"Top\": 0.7101057171821594\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30455324053764343,\n                        \"Y\": 0.7101057171821594\n                    },\n                    {\n                        \"X\": 0.34088239073753357,\n                        \"Y\": 0.7101057171821594\n                    },\n                    {\n                        \"X\": 0.34088239073753357,\n                        \"Y\": 0.7365427613258362\n                    },\n                    {\n                        \"X\": 0.30455324053764343,\n                        \"Y\": 0.7365427613258362\n                    }\n                ]\n            },\n            \"Id\": \"ddb89e68-9dd0-462e-8051-5adf136dc499\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5699234008789,\n            \"Text\": \"Company\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08713548630475998,\n                    \"Height\": 0.02666435018181801,\n                    \"Left\": 0.3459952473640442,\n                    \"Top\": 0.7102388739585876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3459952473640442,\n                        \"Y\": 0.7102388739585876\n                    },\n                    {\n                        \"X\": 0.43313074111938477,\n                        \"Y\": 0.7102388739585876\n                    },\n                    {\n                        \"X\": 0.43313074111938477,\n                        \"Y\": 0.7369032502174377\n                    },\n                    {\n                        \"X\": 0.3459952473640442,\n                        \"Y\": 0.7369032502174377\n                    }\n                ]\n            },\n            \"Id\": \"57134506-6abf-4472-81a9-fb3d3ef24976\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.25328826904297,\n            \"Text\": \"Assistant\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08357957005500793,\n                    \"Height\": 0.022597650066018105,\n                    \"Left\": 0.491060733795166,\n                    \"Top\": 0.709382951259613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.491060733795166,\n                        \"Y\": 0.709382951259613\n                    },\n                    {\n                        \"X\": 0.5746402740478516,\n                        \"Y\": 0.709382951259613\n                    },\n                    {\n                        \"X\": 0.5746402740478516,\n                        \"Y\": 0.7319806218147278\n                    },\n                    {\n                        \"X\": 0.491060733795166,\n                        \"Y\": 0.7319806218147278\n                    }\n                ]\n            },\n            \"Id\": \"49d934bb-5e75-4658-b944-8af3b3c82377\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55028533935547,\n            \"Text\": \"Baker\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05192546918988228,\n                    \"Height\": 0.022166239097714424,\n                    \"Left\": 0.5804275870323181,\n                    \"Top\": 0.709467887878418\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5804275870323181,\n                        \"Y\": 0.709467887878418\n                    },\n                    {\n                        \"X\": 0.6323530673980713,\n                        \"Y\": 0.709467887878418\n                    },\n                    {\n                        \"X\": 0.6323530673980713,\n                        \"Y\": 0.7316341400146484\n                    },\n                    {\n                        \"X\": 0.5804275870323181,\n                        \"Y\": 0.7316341400146484\n                    }\n                ]\n            },\n            \"Id\": \"e32f6936-3158-42ff-ab5d-cffc47118846\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93040466308594,\n            \"Text\": \"Family\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05969469994306564,\n                    \"Height\": 0.026808060705661774,\n                    \"Left\": 0.6555473208427429,\n                    \"Top\": 0.7095630764961243\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555473208427429,\n                        \"Y\": 0.7095630764961243\n                    },\n                    {\n                        \"X\": 0.7152420282363892,\n                        \"Y\": 0.7095630764961243\n                    },\n                    {\n                        \"X\": 0.7152420282363892,\n                        \"Y\": 0.7363711595535278\n                    },\n                    {\n                        \"X\": 0.6555473208427429,\n                        \"Y\": 0.7363711595535278\n                    }\n                ]\n            },\n            \"Id\": \"a152a5e9-5527-4112-b994-5f4b92d16589\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96968078613281,\n            \"Text\": \"relocated\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0869346335530281,\n                    \"Height\": 0.02341330051422119,\n                    \"Left\": 0.7201783061027527,\n                    \"Top\": 0.7087563872337341\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7201783061027527,\n                        \"Y\": 0.7087563872337341\n                    },\n                    {\n                        \"X\": 0.8071129322052002,\n                        \"Y\": 0.7087563872337341\n                    },\n                    {\n                        \"X\": 0.8071129322052002,\n                        \"Y\": 0.7321696877479553\n                    },\n                    {\n                        \"X\": 0.7201783061027527,\n                        \"Y\": 0.7321696877479553\n                    }\n                ]\n            },\n            \"Id\": \"32abddd7-b551-4ec3-8b65-3850abd4b288\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79296875,\n            \"Text\": \"7/1/2011\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08606298267841339,\n                    \"Height\": 0.026600459590554237,\n                    \"Left\": 0.07446355372667313,\n                    \"Top\": 0.7624131441116333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07446355372667313,\n                        \"Y\": 0.7624131441116333\n                    },\n                    {\n                        \"X\": 0.16052654385566711,\n                        \"Y\": 0.7624131441116333\n                    },\n                    {\n                        \"X\": 0.16052654385566711,\n                        \"Y\": 0.7890136241912842\n                    },\n                    {\n                        \"X\": 0.07446355372667313,\n                        \"Y\": 0.7890136241912842\n                    }\n                ]\n            },\n            \"Id\": \"5d812c9b-ecb2-4cc5-8f78-34f9215ebd38\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67514038085938,\n            \"Text\": \"8/10/2013\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09801381081342697,\n                    \"Height\": 0.026622669771313667,\n                    \"Left\": 0.19032429158687592,\n                    \"Top\": 0.7625806331634521\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19032429158687592,\n                        \"Y\": 0.7625806331634521\n                    },\n                    {\n                        \"X\": 0.2883380949497223,\n                        \"Y\": 0.7625806331634521\n                    },\n                    {\n                        \"X\": 0.2883380949497223,\n                        \"Y\": 0.7892032861709595\n                    },\n                    {\n                        \"X\": 0.19032429158687592,\n                        \"Y\": 0.7892032861709595\n                    }\n                ]\n            },\n            \"Id\": \"6769d929-9fb9-41e5-a05f-f9bf21187e91\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87751770019531,\n            \"Text\": \"Best\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04032528027892113,\n                    \"Height\": 0.022052040323615074,\n                    \"Left\": 0.3057495653629303,\n                    \"Top\": 0.7641252875328064\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3057495653629303,\n                        \"Y\": 0.7641252875328064\n                    },\n                    {\n                        \"X\": 0.3460748493671417,\n                        \"Y\": 0.7641252875328064\n                    },\n                    {\n                        \"X\": 0.3460748493671417,\n                        \"Y\": 0.7861773371696472\n                    },\n                    {\n                        \"X\": 0.3057495653629303,\n                        \"Y\": 0.7861773371696472\n                    }\n                ]\n            },\n            \"Id\": \"1339b700-b020-4757-a622-fb1fe096b779\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.20387268066406,\n            \"Text\": \"Corp.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04907358065247536,\n                    \"Height\": 0.026751700788736343,\n                    \"Left\": 0.35051578283309937,\n                    \"Top\": 0.7636430859565735\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35051578283309937,\n                        \"Y\": 0.7636430859565735\n                    },\n                    {\n                        \"X\": 0.3995893597602844,\n                        \"Y\": 0.7636430859565735\n                    },\n                    {\n                        \"X\": 0.3995893597602844,\n                        \"Y\": 0.7903947830200195\n                    },\n                    {\n                        \"X\": 0.35051578283309937,\n                        \"Y\": 0.7903947830200195\n                    }\n                ]\n            },\n            \"Id\": \"85e0bd45-cd8b-45be-8c4f-1bd90a6a1335\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.607177734375,\n            \"Text\": \"Baker\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05254416912794113,\n                    \"Height\": 0.023151850327849388,\n                    \"Left\": 0.4920831322669983,\n                    \"Top\": 0.7629870772361755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4920831322669983,\n                        \"Y\": 0.7629870772361755\n                    },\n                    {\n                        \"X\": 0.54462730884552,\n                        \"Y\": 0.7629870772361755\n                    },\n                    {\n                        \"X\": 0.54462730884552,\n                        \"Y\": 0.7861389517784119\n                    },\n                    {\n                        \"X\": 0.4920831322669983,\n                        \"Y\": 0.7861389517784119\n                    }\n                ]\n            },\n            \"Id\": \"b59dc77a-01ad-45b0-adf5-5bb5689547c2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92717742919922,\n            \"Text\": \"Better\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.057003699243068695,\n                    \"Height\": 0.021318310871720314,\n                    \"Left\": 0.6555969715118408,\n                    \"Top\": 0.7641827464103699\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555969715118408,\n                        \"Y\": 0.7641827464103699\n                    },\n                    {\n                        \"X\": 0.7126007080078125,\n                        \"Y\": 0.7641827464103699\n                    },\n                    {\n                        \"X\": 0.7126007080078125,\n                        \"Y\": 0.7855010628700256\n                    },\n                    {\n                        \"X\": 0.6555969715118408,\n                        \"Y\": 0.7855010628700256\n                    }\n                ]\n            },\n            \"Id\": \"8c3132e2-3aff-4acb-b684-a955bcb2bc5c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97451782226562,\n            \"Text\": \"opportunity\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1114296019077301,\n                    \"Height\": 0.02621150016784668,\n                    \"Left\": 0.7170504927635193,\n                    \"Top\": 0.7639016509056091\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7170504927635193,\n                        \"Y\": 0.7639016509056091\n                    },\n                    {\n                        \"X\": 0.8284801244735718,\n                        \"Y\": 0.7639016509056091\n                    },\n                    {\n                        \"X\": 0.8284801244735718,\n                        \"Y\": 0.7901131510734558\n                    },\n                    {\n                        \"X\": 0.7170504927635193,\n                        \"Y\": 0.7901131510734558\n                    }\n                ]\n            },\n            \"Id\": \"71bc4443-1eb2-4d4c-85d1-3ec1cf2c5535\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74268341064453,\n            \"Text\": \"8/15/2013\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.096932053565979,\n                    \"Height\": 0.027089040726423264,\n                    \"Left\": 0.0747559666633606,\n                    \"Top\": 0.8139497637748718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0747559666633606,\n                        \"Y\": 0.8139497637748718\n                    },\n                    {\n                        \"X\": 0.1716880202293396,\n                        \"Y\": 0.8139497637748718\n                    },\n                    {\n                        \"X\": 0.1716880202293396,\n                        \"Y\": 0.8410388231277466\n                    },\n                    {\n                        \"X\": 0.0747559666633606,\n                        \"Y\": 0.8410388231277466\n                    }\n                ]\n            },\n            \"Id\": \"daf8aac5-34a2-4ffa-b468-00b1d29eba45\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9533462524414,\n            \"Text\": \"present\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07096850872039795,\n                    \"Height\": 0.024416860193014145,\n                    \"Left\": 0.19085320830345154,\n                    \"Top\": 0.8176923394203186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19085320830345154,\n                        \"Y\": 0.8176923394203186\n                    },\n                    {\n                        \"X\": 0.2618217170238495,\n                        \"Y\": 0.8176923394203186\n                    },\n                    {\n                        \"X\": 0.2618217170238495,\n                        \"Y\": 0.842109203338623\n                    },\n                    {\n                        \"X\": 0.19085320830345154,\n                        \"Y\": 0.842109203338623\n                    }\n                ]\n            },\n            \"Id\": \"457b8545-1487-46ea-aec9-01269e0cd2c2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64788818359375,\n            \"Text\": \"Example\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0779692530632019,\n                    \"Height\": 0.027120349928736687,\n                    \"Left\": 0.3059176802635193,\n                    \"Top\": 0.8153413534164429\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3059176802635193,\n                        \"Y\": 0.8153413534164429\n                    },\n                    {\n                        \"X\": 0.3838869333267212,\n                        \"Y\": 0.8153413534164429\n                    },\n                    {\n                        \"X\": 0.3838869333267212,\n                        \"Y\": 0.8424617052078247\n                    },\n                    {\n                        \"X\": 0.3059176802635193,\n                        \"Y\": 0.8424617052078247\n                    }\n                ]\n            },\n            \"Id\": \"5050bbea-2ae5-44a8-9b8d-cf68c23a03c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.31843566894531,\n            \"Text\": \"Corp.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04892212152481079,\n                    \"Height\": 0.025796860456466675,\n                    \"Left\": 0.3885209560394287,\n                    \"Top\": 0.8160580396652222\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3885209560394287,\n                        \"Y\": 0.8160580396652222\n                    },\n                    {\n                        \"X\": 0.4374430775642395,\n                        \"Y\": 0.8160580396652222\n                    },\n                    {\n                        \"X\": 0.4374430775642395,\n                        \"Y\": 0.8418548703193665\n                    },\n                    {\n                        \"X\": 0.3885209560394287,\n                        \"Y\": 0.8418548703193665\n                    }\n                ]\n            },\n            \"Id\": \"11496aab-553e-4814-8182-7fc27412c65e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90103912353516,\n            \"Text\": \"Head\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04649949073791504,\n                    \"Height\": 0.022304410114884377,\n                    \"Left\": 0.4926374554634094,\n                    \"Top\": 0.8153996467590332\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4926374554634094,\n                        \"Y\": 0.8153996467590332\n                    },\n                    {\n                        \"X\": 0.5391369462013245,\n                        \"Y\": 0.8153996467590332\n                    },\n                    {\n                        \"X\": 0.5391369462013245,\n                        \"Y\": 0.837704062461853\n                    },\n                    {\n                        \"X\": 0.4926374554634094,\n                        \"Y\": 0.837704062461853\n                    }\n                ]\n            },\n            \"Id\": \"984091aa-00e7-43b2-b0e2-f2f0bf423253\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.50145721435547,\n            \"Text\": \"Baker\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0525815412402153,\n                    \"Height\": 0.022487999871373177,\n                    \"Left\": 0.5458208918571472,\n                    \"Top\": 0.8152825832366943\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5458208918571472,\n                        \"Y\": 0.8152825832366943\n                    },\n                    {\n                        \"X\": 0.5984024405479431,\n                        \"Y\": 0.8152825832366943\n                    },\n                    {\n                        \"X\": 0.5984024405479431,\n                        \"Y\": 0.8377705812454224\n                    },\n                    {\n                        \"X\": 0.5458208918571472,\n                        \"Y\": 0.8377705812454224\n                    }\n                ]\n            },\n            \"Id\": \"565b13c6-6555-488e-9953-520b36cbdc12\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.900634765625,\n            \"Text\": \"N/A,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04067891091108322,\n                    \"Height\": 0.026958400383591652,\n                    \"Left\": 0.6552858352661133,\n                    \"Top\": 0.8146923184394836\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6552858352661133,\n                        \"Y\": 0.8146923184394836\n                    },\n                    {\n                        \"X\": 0.6959647536277771,\n                        \"Y\": 0.8146923184394836\n                    },\n                    {\n                        \"X\": 0.6959647536277771,\n                        \"Y\": 0.8416507244110107\n                    },\n                    {\n                        \"X\": 0.6552858352661133,\n                        \"Y\": 0.8416507244110107\n                    }\n                ]\n            },\n            \"Id\": \"e249f533-fb96-47b5-8140-e08b24514847\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96424865722656,\n            \"Text\": \"current\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06921392679214478,\n                    \"Height\": 0.020735619589686394,\n                    \"Left\": 0.7014417052268982,\n                    \"Top\": 0.8175691366195679\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7014417052268982,\n                        \"Y\": 0.8175691366195679\n                    },\n                    {\n                        \"X\": 0.770655632019043,\n                        \"Y\": 0.8175691366195679\n                    },\n                    {\n                        \"X\": 0.770655632019043,\n                        \"Y\": 0.8383047580718994\n                    },\n                    {\n                        \"X\": 0.7014417052268982,\n                        \"Y\": 0.8383047580718994\n                    }\n                ]\n            },\n            \"Id\": \"1db249b2-ae31-4bc6-8510-19b8b9674bf0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95295715332031,\n            \"Text\": \"employer\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08871655911207199,\n                    \"Height\": 0.02779277041554451,\n                    \"Left\": 0.6545867919921875,\n                    \"Top\": 0.8517507314682007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6545867919921875,\n                        \"Y\": 0.8517507314682007\n                    },\n                    {\n                        \"X\": 0.7433033585548401,\n                        \"Y\": 0.8517507314682007\n                    },\n                    {\n                        \"X\": 0.7433033585548401,\n                        \"Y\": 0.8795434832572937\n                    },\n                    {\n                        \"X\": 0.6545867919921875,\n                        \"Y\": 0.8795434832572937\n                    }\n                ]\n            },\n            \"Id\": \"12ffc54f-7d00-4f12-a013-8062ffef9377\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.792236328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.784700334072113,\n                    \"Height\": 0.2542036771774292,\n                    \"Left\": 0.0679328441619873,\n                    \"Top\": 0.6264013648033142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.8806049823760986\n                    },\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.8806049823760986\n                    }\n                ]\n            },\n            \"Id\": \"b022e532-7b26-4d79-b761-bed1977dc959\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b0281cb5-bb05-43af-bac5-b7a43e4d6509\",\n                        \"6923d9ef-e28e-4c25-824a-57b00996a980\",\n                        \"51443ad7-944c-4312-b533-dd7ff96406db\",\n                        \"f11ff1a8-3594-4c37-bd5d-ad2f4fc0af99\",\n                        \"bc572255-3005-4202-aae5-aec0c4bfe810\",\n                        \"312d59d0-dbed-4dde-9e54-cd7f89fbc541\",\n                        \"0a721e8b-eb1c-46b1-ad32-a235d438688b\",\n                        \"d505c3ac-f794-4003-b727-7bbdab35dff4\",\n                        \"875013ed-b6bf-499b-a21c-fab8a3a03534\",\n                        \"76159832-8d34-4f62-833d-71d584d94c62\",\n                        \"7a2a9b0e-582b-4852-98bb-8e067e0b4703\",\n                        \"65503cf1-be68-4949-8a56-625502fc3dcf\",\n                        \"e75931bf-c0cf-4959-9eb9-23c6353d4016\",\n                        \"ebaf5329-25f1-4177-b9bd-926d955714cd\",\n                        \"5188b196-be0b-487b-b622-aa3b1c03e87a\",\n                        \"b82240f0-ebae-4ec9-828d-abdc80049067\",\n                        \"8fc6a823-d8d4-448b-8b1d-141ae323f6b6\",\n                        \"244fcbe5-0a38-41cb-bf02-b60dc2350b6f\",\n                        \"0db22df1-d678-4e76-90a4-b4072406b88e\",\n                        \"5b4e42f4-42c6-4cc4-9503-fcaa0c7e27ee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.86009216308594,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11369767040014267,\n                    \"Height\": 0.06066224351525307,\n                    \"Left\": 0.0679328441619873,\n                    \"Top\": 0.6264013648033142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.6870636343955994\n                    },\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.6870636343955994\n                    }\n                ]\n            },\n            \"Id\": \"b0281cb5-bb05-43af-bac5-b7a43e4d6509\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7c85b9bb-8449-4838-9f8f-b3a3816aad7e\",\n                        \"c0d2211c-634b-46be-a152-6404bf98ef23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.96438598632812,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11742547899484634,\n                    \"Height\": 0.06066224351525307,\n                    \"Left\": 0.18163052201271057,\n                    \"Top\": 0.6264013648033142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.6870636343955994\n                    },\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.6870636343955994\n                    }\n                ]\n            },\n            \"Id\": \"6923d9ef-e28e-4c25-824a-57b00996a980\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f9cf8c9a-c0fc-4d44-878b-275d290e8cd3\",\n                        \"22ffa348-1bb3-4cbb-b1fc-ba4a90706cb7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.63192749023438,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18638966977596283,\n                    \"Height\": 0.06066224351525307,\n                    \"Left\": 0.2990559935569763,\n                    \"Top\": 0.6264013648033142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.6870636343955994\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.6870636343955994\n                    }\n                ]\n            },\n            \"Id\": \"51443ad7-944c-4312-b533-dd7ff96406db\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4c69935-9f24-461f-a357-4fc8dcc69a6e\",\n                        \"37722e26-b192-4aba-9c5c-d5b6326ba103\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.302978515625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16029508411884308,\n                    \"Height\": 0.06066224351525307,\n                    \"Left\": 0.48544567823410034,\n                    \"Top\": 0.6264013648033142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.6870636343955994\n                    },\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.6870636343955994\n                    }\n                ]\n            },\n            \"Id\": \"f11ff1a8-3594-4c37-bd5d-ad2f4fc0af99\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2e3e3fc4-dab4-4067-bd2e-f7c8646c798b\",\n                        \"dea84c48-3018-4a5b-b100-d9c9b98b1f07\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 95.1846694946289,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20689241588115692,\n                    \"Height\": 0.06066224351525307,\n                    \"Left\": 0.6457407474517822,\n                    \"Top\": 0.6264013648033142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.6264013648033142\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.6870636343955994\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.6870636343955994\n                    }\n                ]\n            },\n            \"Id\": \"bc572255-3005-4202-aae5-aec0c4bfe810\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"88406d50-46b5-490c-8368-abee9bfec9b7\",\n                        \"4c004580-9739-4e76-8322-969a8002e55a\",\n                        \"2df14d5d-d20c-4361-a00a-0a87a990abee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.2625503540039,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11369767040014267,\n                    \"Height\": 0.05295911058783531,\n                    \"Left\": 0.0679328441619873,\n                    \"Top\": 0.6870635747909546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.7400226593017578\n                    },\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.7400226593017578\n                    }\n                ]\n            },\n            \"Id\": \"312d59d0-dbed-4dde-9e54-cd7f89fbc541\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6e38f5df-8885-4baf-b8c0-b262b7bf783e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.29927825927734,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11742547899484634,\n                    \"Height\": 0.05295911058783531,\n                    \"Left\": 0.18163052201271057,\n                    \"Top\": 0.6870635747909546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7400226593017578\n                    },\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.7400226593017578\n                    }\n                ]\n            },\n            \"Id\": \"0a721e8b-eb1c-46b1-ad32-a235d438688b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8a2496f3-ccff-42f9-afc4-cd6b4e3f78cd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.2264404296875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18638966977596283,\n                    \"Height\": 0.05295911058783531,\n                    \"Left\": 0.2990559935569763,\n                    \"Top\": 0.6870635747909546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.7400226593017578\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7400226593017578\n                    }\n                ]\n            },\n            \"Id\": \"d505c3ac-f794-4003-b727-7bbdab35dff4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ddb89e68-9dd0-462e-8051-5adf136dc499\",\n                        \"57134506-6abf-4472-81a9-fb3d3ef24976\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.13949584960938,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16029508411884308,\n                    \"Height\": 0.05295911058783531,\n                    \"Left\": 0.48544567823410034,\n                    \"Top\": 0.6870635747909546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7400226593017578\n                    },\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.7400226593017578\n                    }\n                ]\n            },\n            \"Id\": \"875013ed-b6bf-499b-a21c-fab8a3a03534\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"49d934bb-5e75-4658-b944-8af3b3c82377\",\n                        \"e32f6936-3158-42ff-ab5d-cffc47118846\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.8720703125,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20689241588115692,\n                    \"Height\": 0.05295911058783531,\n                    \"Left\": 0.6457407474517822,\n                    \"Top\": 0.6870635747909546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.6870635747909546\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.7400226593017578\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7400226593017578\n                    }\n                ]\n            },\n            \"Id\": \"76159832-8d34-4f62-833d-71d584d94c62\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a152a5e9-5527-4112-b994-5f4b92d16589\",\n                        \"32abddd7-b551-4ec3-8b65-3850abd4b288\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.45135498046875,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11369767040014267,\n                    \"Height\": 0.05103332921862602,\n                    \"Left\": 0.0679328441619873,\n                    \"Top\": 0.7400227189064026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.7910560369491577\n                    }\n                ]\n            },\n            \"Id\": \"7a2a9b0e-582b-4852-98bb-8e067e0b4703\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5d812c9b-ecb2-4cc5-8f78-34f9215ebd38\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.54178619384766,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11742547899484634,\n                    \"Height\": 0.05103332921862602,\n                    \"Left\": 0.18163052201271057,\n                    \"Top\": 0.7400227189064026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.7910560369491577\n                    }\n                ]\n            },\n            \"Id\": \"65503cf1-be68-4949-8a56-625502fc3dcf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6769d929-9fb9-41e5-a05f-f9bf21187e91\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.52877044677734,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18638966977596283,\n                    \"Height\": 0.05103332921862602,\n                    \"Left\": 0.2990559935569763,\n                    \"Top\": 0.7400227189064026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7910560369491577\n                    }\n                ]\n            },\n            \"Id\": \"e75931bf-c0cf-4959-9eb9-23c6353d4016\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1339b700-b020-4757-a622-fb1fe096b779\",\n                        \"85e0bd45-cd8b-45be-8c4f-1bd90a6a1335\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.54946899414062,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16029508411884308,\n                    \"Height\": 0.05103332921862602,\n                    \"Left\": 0.48544567823410034,\n                    \"Top\": 0.7400227189064026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.7910560369491577\n                    }\n                ]\n            },\n            \"Id\": \"ebaf5329-25f1-4177-b9bd-926d955714cd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b59dc77a-01ad-45b0-adf5-5bb5689547c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.10440826416016,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20689241588115692,\n                    \"Height\": 0.05103332921862602,\n                    \"Left\": 0.6457407474517822,\n                    \"Top\": 0.7400227189064026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.7400227189064026\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7910560369491577\n                    }\n                ]\n            },\n            \"Id\": \"5188b196-be0b-487b-b622-aa3b1c03e87a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8c3132e2-3aff-4acb-b684-a955bcb2bc5c\",\n                        \"71bc4443-1eb2-4d4c-85d1-3ec1cf2c5535\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.63121795654297,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11369767040014267,\n                    \"Height\": 0.0895489826798439,\n                    \"Left\": 0.0679328441619873,\n                    \"Top\": 0.7910560369491577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.18163050711154938,\n                        \"Y\": 0.8806050419807434\n                    },\n                    {\n                        \"X\": 0.0679328441619873,\n                        \"Y\": 0.8806050419807434\n                    }\n                ]\n            },\n            \"Id\": \"b82240f0-ebae-4ec9-828d-abdc80049067\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"daf8aac5-34a2-4ffa-b468-00b1d29eba45\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.51615142822266,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11742547899484634,\n                    \"Height\": 0.0895489826798439,\n                    \"Left\": 0.18163052201271057,\n                    \"Top\": 0.7910560369491577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.8806050419807434\n                    },\n                    {\n                        \"X\": 0.18163052201271057,\n                        \"Y\": 0.8806050419807434\n                    }\n                ]\n            },\n            \"Id\": \"8fc6a823-d8d4-448b-8b1d-141ae323f6b6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"457b8545-1487-46ea-aec9-01269e0cd2c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.46415710449219,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18638966977596283,\n                    \"Height\": 0.0895489826798439,\n                    \"Left\": 0.2990559935569763,\n                    \"Top\": 0.7910560369491577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.48544564843177795,\n                        \"Y\": 0.8806050419807434\n                    },\n                    {\n                        \"X\": 0.2990559935569763,\n                        \"Y\": 0.8806050419807434\n                    }\n                ]\n            },\n            \"Id\": \"244fcbe5-0a38-41cb-bf02-b60dc2350b6f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5050bbea-2ae5-44a8-9b8d-cf68c23a03c4\",\n                        \"11496aab-553e-4814-8182-7fc27412c65e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.77433013916016,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16029508411884308,\n                    \"Height\": 0.0895489826798439,\n                    \"Left\": 0.48544567823410034,\n                    \"Top\": 0.7910560369491577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.8806050419807434\n                    },\n                    {\n                        \"X\": 0.48544567823410034,\n                        \"Y\": 0.8806050419807434\n                    }\n                ]\n            },\n            \"Id\": \"0db22df1-d678-4e76-90a4-b4072406b88e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"984091aa-00e7-43b2-b0e2-f2f0bf423253\",\n                        \"565b13c6-6555-488e-9953-520b36cbdc12\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.79830169677734,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.20689241588115692,\n                    \"Height\": 0.0895489826798439,\n                    \"Left\": 0.6457407474517822,\n                    \"Top\": 0.7910560369491577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.7910560369491577\n                    },\n                    {\n                        \"X\": 0.8526331782341003,\n                        \"Y\": 0.8806050419807434\n                    },\n                    {\n                        \"X\": 0.6457407474517822,\n                        \"Y\": 0.8806050419807434\n                    }\n                ]\n            },\n            \"Id\": \"5b4e42f4-42c6-4cc4-9503-fcaa0c7e27ee\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e249f533-fb96-47b5-8140-e08b24514847\",\n                        \"1db249b2-ae31-4bc6-8510-19b8b9674bf0\",\n                        \"12ffc54f-7d00-4f12-a013-8062ffef9377\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12922188639640808,\n                    \"Height\": 0.020582959055900574,\n                    \"Left\": 0.07581180334091187,\n                    \"Top\": 0.4411558210849762\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07581180334091187,\n                        \"Y\": 0.4411558210849762\n                    },\n                    {\n                        \"X\": 0.20503368973731995,\n                        \"Y\": 0.4411558210849762\n                    },\n                    {\n                        \"X\": 0.20503368973731995,\n                        \"Y\": 0.4617387652397156\n                    },\n                    {\n                        \"X\": 0.07581180334091187,\n                        \"Y\": 0.4617387652397156\n                    }\n                ]\n            },\n            \"Id\": \"a3dc5504-391b-4087-ba8c-6f5d6b7f3866\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"a9647a29-5d01-44c0-b9ea-7db41344cc54\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"136375e2-a1c4-4fb6-9774-84d9652e8eb0\",\n                        \"caa21fc2-834c-463e-a668-bb94722f3fe3\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.28441953659057617,\n                    \"Height\": 0.02717478573322296,\n                    \"Left\": 0.21197548508644104,\n                    \"Top\": 0.4401225745677948\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21197548508644104,\n                        \"Y\": 0.4401225745677948\n                    },\n                    {\n                        \"X\": 0.4963950216770172,\n                        \"Y\": 0.4401225745677948\n                    },\n                    {\n                        \"X\": 0.4963950216770172,\n                        \"Y\": 0.46729734539985657\n                    },\n                    {\n                        \"X\": 0.21197548508644104,\n                        \"Y\": 0.46729734539985657\n                    }\n                ]\n            },\n            \"Id\": \"a9647a29-5d01-44c0-b9ea-7db41344cc54\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"12b082bb-c99e-4833-9c27-1058593fe4d3\",\n                        \"10eb6619-9cec-40f2-a0e3-503661f41459\",\n                        \"e75e9384-e1a7-498a-9c38-2420b60f5bab\",\n                        \"80d2461e-6b91-4795-ad79-0e41ea48ec66\",\n                        \"ba9b97f7-ce62-4ca0-aaa3-e8ba2caa49bd\",\n                        \"9b90412b-069d-4b75-995e-4e070eb7bfec\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14188456535339355,\n                    \"Height\": 0.025821516290307045,\n                    \"Left\": 0.07508094608783722,\n                    \"Top\": 0.5045744776725769\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07508094608783722,\n                        \"Y\": 0.5045744776725769\n                    },\n                    {\n                        \"X\": 0.21696551144123077,\n                        \"Y\": 0.5045744776725769\n                    },\n                    {\n                        \"X\": 0.21696551144123077,\n                        \"Y\": 0.5303959846496582\n                    },\n                    {\n                        \"X\": 0.07508094608783722,\n                        \"Y\": 0.5303959846496582\n                    }\n                ]\n            },\n            \"Id\": \"d73589e2-d3b9-4d5a-86cc-93ba7ea888f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"f3b99d71-f3d0-49d7-9b69-945819f98913\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fa48fecb-8d39-4630-8e07-f27d5b632e48\",\n                        \"e4f31e86-dff7-4d3c-9387-33d8e35be803\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21606117486953735,\n                    \"Height\": 0.022998904809355736,\n                    \"Left\": 0.21648040413856506,\n                    \"Top\": 0.5032126903533936\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21648040413856506,\n                        \"Y\": 0.5032126903533936\n                    },\n                    {\n                        \"X\": 0.4325415790081024,\n                        \"Y\": 0.5032126903533936\n                    },\n                    {\n                        \"X\": 0.4325415790081024,\n                        \"Y\": 0.5262116193771362\n                    },\n                    {\n                        \"X\": 0.21648040413856506,\n                        \"Y\": 0.5262116193771362\n                    }\n                ]\n            },\n            \"Id\": \"f3b99d71-f3d0-49d7-9b69-945819f98913\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9030ba88-92f5-46e3-a2cb-d181eaec40ce\",\n                        \"efffafaf-ec36-455a-92bd-3e12633a7574\",\n                        \"c9c84ce7-53a5-414f-bd0c-952d5e30a6b4\",\n                        \"7e7c00c6-eb62-4da5-995b-1b07a53d9e63\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13339018821716309,\n                    \"Height\": 0.02033335156738758,\n                    \"Left\": 0.07588017731904984,\n                    \"Top\": 0.3779498338699341\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07588017731904984,\n                        \"Y\": 0.3779498338699341\n                    },\n                    {\n                        \"X\": 0.20927037298679352,\n                        \"Y\": 0.3779498338699341\n                    },\n                    {\n                        \"X\": 0.20927037298679352,\n                        \"Y\": 0.3982831835746765\n                    },\n                    {\n                        \"X\": 0.07588017731904984,\n                        \"Y\": 0.3982831835746765\n                    }\n                ]\n            },\n            \"Id\": \"b36e437d-64d6-402b-a744-583801d18b44\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"cb2d4069-0d89-493e-8048-22c871ea5dd4\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2bc89775-4d28-41e7-8399-5a4ef919f000\",\n                        \"76e47797-a128-4fe7-b169-3bc4ec68f473\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0886676162481308,\n                    \"Height\": 0.0283527709543705,\n                    \"Left\": 0.21544329822063446,\n                    \"Top\": 0.3748914897441864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21544329822063446,\n                        \"Y\": 0.3748914897441864\n                    },\n                    {\n                        \"X\": 0.30411091446876526,\n                        \"Y\": 0.3748914897441864\n                    },\n                    {\n                        \"X\": 0.30411091446876526,\n                        \"Y\": 0.4032442569732666\n                    },\n                    {\n                        \"X\": 0.21544329822063446,\n                        \"Y\": 0.4032442569732666\n                    }\n                ]\n            },\n            \"Id\": \"cb2d4069-0d89-493e-8048-22c871ea5dd4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f4fd9a25-223f-4cfa-be2a-89f0600d4bc1\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09123743325471878,\n                    \"Height\": 0.020755216479301453,\n                    \"Left\": 0.075957290828228,\n                    \"Top\": 0.31413623690605164\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.075957290828228,\n                        \"Y\": 0.31413623690605164\n                    },\n                    {\n                        \"X\": 0.16719472408294678,\n                        \"Y\": 0.31413623690605164\n                    },\n                    {\n                        \"X\": 0.16719472408294678,\n                        \"Y\": 0.3348914682865143\n                    },\n                    {\n                        \"X\": 0.075957290828228,\n                        \"Y\": 0.3348914682865143\n                    }\n                ]\n            },\n            \"Id\": \"b0bbecca-bf27-40d0-809c-9b42c1494d8d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"36dd8beb-2ed7-438f-8beb-ac4a8441a9d0\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bae5b0fa-2257-401f-96d3-751cbe2ae3b6\",\n                        \"89fd4053-abb5-4ea2-8052-a7ac17ca96f4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08178497850894928,\n                    \"Height\": 0.02141937054693699,\n                    \"Left\": 0.17387504875659943,\n                    \"Top\": 0.3134089708328247\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17387504875659943,\n                        \"Y\": 0.3134089708328247\n                    },\n                    {\n                        \"X\": 0.2556600272655487,\n                        \"Y\": 0.3134089708328247\n                    },\n                    {\n                        \"X\": 0.2556600272655487,\n                        \"Y\": 0.33482834696769714\n                    },\n                    {\n                        \"X\": 0.17387504875659943,\n                        \"Y\": 0.33482834696769714\n                    }\n                ]\n            },\n            \"Id\": \"36dd8beb-2ed7-438f-8beb-ac4a8441a9d0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"02de8ab9-045d-418b-a912-6ad702f7d0c0\",\n                        \"e183378d-793d-4a9b-883d-2389e9a22560\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"ResponseMetadata\": {\n        \"RequestId\": \"59c09df1-498b-4a32-8d8f-c92368c2e98b\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"x-amzn-requestid\": \"59c09df1-498b-4a32-8d8f-c92368c2e98b\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"66991\",\n            \"date\": \"Thu, 05 Aug 2021 18:08:25 GMT\"\n        },\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/tests/data/gib.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"JobStatus\": \"SUCCEEDED\",\n    \"NextToken\": \"OJQgPDJLZcJpwsujYY3LALPKtIdx80DkSjYz8R+C4COVGovPEQDVwU35/EbyxiigtaMDuRc7sdz3bz4eVSoxubNij7cSLFVm6oKHQru1cOzBHbx6iQ==\",\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1,\n                    \"Height\": 1,\n                    \"Left\": 0,\n                    \"Top\": 0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 1.73299076420408e-16,\n                        \"Y\": 0\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 8.654170694555159e-17\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 1\n                    },\n                    {\n                        \"X\": 0,\n                        \"Y\": 1\n                    }\n                ]\n            },\n            \"Id\": \"f2546f05-421b-4689-b0d1-4d6c22e0fb5e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f045adf0-ea21-4f0f-aa99-1e1af435d781\",\n                        \"dcade28f-a712-40eb-b61f-720731b5bad6\",\n                        \"3cc7a046-2271-4bc0-b892-bd4d92c5fe30\",\n                        \"6f6cdf2b-b1f7-47e7-bc5d-8c7260a0e4bc\",\n                        \"6e6eebcb-4c91-49a7-be7d-e18bed037e1f\",\n                        \"27a63bc9-a376-4647-933f-1e6d47601943\",\n                        \"acf24932-297a-403a-b2bc-1096870e2b0f\",\n                        \"40f566bd-c084-439c-a021-d919662fdea7\",\n                        \"a62efae3-5c35-4f76-b731-7f62290d6b8a\",\n                        \"3bf8fcfb-8827-4c74-ba8b-2bc0c33a7fc1\",\n                        \"261dcddb-36e1-47f4-b5e9-ff38a6abddff\",\n                        \"acb664cc-f0a1-4767-8a44-756f67da4d81\",\n                        \"e3b4b3e7-e8c3-4ffb-a5b3-ebb6e47a203d\",\n                        \"0d14779a-a73f-4ccb-b793-27ea7f755f9a\",\n                        \"b917e376-c15c-4cc9-9059-0c7866e4d223\",\n                        \"d777d595-9e06-4c1c-ad16-fdae1c04ac46\",\n                        \"a3eee1af-7a9b-4407-811c-f74009a591c3\",\n                        \"a5f73272-4c77-49f5-aefa-673ebd7e5943\",\n                        \"78a0173c-93a9-49e5-bfc5-eb79dbbc5096\",\n                        \"e7c8bb7c-cb43-41a7-bfde-7981a4438c56\",\n                        \"2e3c1bed-f40c-4782-9e29-757ef9d2827b\",\n                        \"545ced6c-9d5a-43d0-8660-bf692f9042da\",\n                        \"b37d604e-63b2-425c-9a5c-bd135195c758\",\n                        \"7a6c3b66-f62c-45b9-b1f9-9d2055e7c180\",\n                        \"25e62731-7d65-4251-a9f6-dea96b35404b\",\n                        \"69c8c26b-bd5a-4880-acae-2450a7d6360c\",\n                        \"a701d3ec-ba2f-4f5f-84c2-52cd6b9c808c\",\n                        \"fcb6b4c3-d9f3-460e-8e90-85b62f25929c\",\n                        \"f86e5c2c-4a89-40d4-89bb-1e008e92db79\",\n                        \"d6848bfe-3755-40d4-a57a-9c576563dd9c\",\n                        \"1a4b1b5c-d292-4a70-b8e7-f3e44ad8420f\",\n                        \"521e03a6-e8f7-41fb-a2ad-434c468c3b87\",\n                        \"ea420163-58dc-4e4c-958b-aa7bf08b6c4a\",\n                        \"c1cf718f-7d85-498a-b028-b173ad0729a3\",\n                        \"308e2d7e-563f-464f-ad1f-fcdba4c713b2\",\n                        \"346d3e14-1e92-4a95-b305-e063fbfe86d2\",\n                        \"50537930-1746-408c-bc83-93dca5276600\",\n                        \"36f2e1ed-73ed-4c9d-b4a7-c537a3ea6984\",\n                        \"afc60ce9-fd4d-49a8-b24a-81e586861cd8\",\n                        \"306a0b5c-5197-46cd-82e2-a5d92baafbf8\",\n                        \"efcd176b-dd56-43b1-839c-0fdbfea0fca2\",\n                        \"5821a87f-c3f9-45cf-b578-ea94fa4fe3b2\",\n                        \"bab61869-d097-4e53-87bc-4c3648c85cd1\",\n                        \"dc8e3ff6-615d-4f07-b466-44b2f8934473\",\n                        \"fadba1a2-fa35-4ecd-906c-ee5759c6e365\",\n                        \"51778739-2fdb-437f-b05a-6dc7f898c7a1\",\n                        \"05e98f5d-7e8e-4eed-ae31-ded5455b202c\",\n                        \"a4acfff0-0f0e-43ea-8d40-892b2cfbae0b\",\n                        \"fc768765-8877-43e4-be8b-cd6de55614c8\",\n                        \"a6617bce-cf0a-418b-a452-c40da805b9c6\",\n                        \"61b84ff0-7ff2-4938-9183-616b87baaf94\",\n                        \"5576430c-6338-4261-a3bc-d4a8b816369a\",\n                        \"57b350c6-89bf-4dbb-bd54-4a6d106e21e0\",\n                        \"ab7a6ea0-a6af-4e81-b3a9-a83cd16b6273\",\n                        \"a7fc62df-7f60-4bb0-b403-77f9d11b0019\",\n                        \"59633a32-8e9f-430a-ad99-5e99d5b74556\",\n                        \"39c06663-927e-4173-a0a2-ef6c102e6501\",\n                        \"32721c67-36e1-4be5-8be2-32606cb72993\",\n                        \"df0cc45f-d8a0-4d8d-a7bf-314a14e44fc8\",\n                        \"67a23e16-f9b8-4832-a0f2-3b8cf52f5665\",\n                        \"c0195caa-81b2-4844-8c4e-fc5590a34e0a\",\n                        \"aba0e893-9277-4eb2-b577-a640d1635b32\",\n                        \"cbc793ff-74be-4a53-9c98-fc66c144a2c6\",\n                        \"94e5646d-cd79-4332-a53f-7fbaf0791ed3\",\n                        \"4403bd71-13f8-4d0c-882d-dbf497ca1701\",\n                        \"ed1df829-f3f8-438b-b71c-9ce61bcc1849\",\n                        \"2da79d01-62e7-4af8-9b6b-93019a3abf35\",\n                        \"0e83a895-2b8d-478d-837c-35c8baefabff\",\n                        \"b8f5079a-ee2f-48d8-bb68-40c6debb2dc1\",\n                        \"458a9301-8a9d-4eb2-9469-70302c62622e\",\n                        \"26409bb4-902c-45ed-915e-4e0d63fbde7a\",\n                        \"803f2f38-c2f9-4d41-98b6-2854d43426d8\",\n                        \"e4a1b7f6-4110-4291-8e0b-561019f71a0b\",\n                        \"7f50874d-ca5d-4f4f-a37d-3616893f3b29\",\n                        \"b7ab27ca-0404-4ff7-9ca8-c8ae4dd33dad\",\n                        \"80578246-a93f-42e6-9c6c-701b305db3f0\",\n                        \"b561080b-f7b4-45bc-b198-02c0e8a6fa53\",\n                        \"0f648bc8-e9e6-4bb4-a933-c17bcc991b29\",\n                        \"c44a70c7-916a-41bc-a202-9041e44a0f2b\",\n                        \"e38cf76e-b676-434c-84a9-f82c8747ccc9\",\n                        \"f236067d-16b7-4f8f-97f4-1edc8dd798a3\",\n                        \"e6ec8586-09d7-4dd7-b7b8-ab3efce7dd99\",\n                        \"1315cf98-62f5-421a-9a54-f4b228e8aa50\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.14612579345703,\n            \"Text\": \"Date: 2020-03-27\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13967332243919373,\n                    \"Height\": 0.010916125029325485,\n                    \"Left\": 0.7542068362236023,\n                    \"Top\": 0.03331288322806358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7542068362236023,\n                        \"Y\": 0.03331288322806358\n                    },\n                    {\n                        \"X\": 0.8938801884651184,\n                        \"Y\": 0.03331288322806358\n                    },\n                    {\n                        \"X\": 0.8938801884651184,\n                        \"Y\": 0.04422900825738907\n                    },\n                    {\n                        \"X\": 0.7542068362236023,\n                        \"Y\": 0.04422900825738907\n                    }\n                ]\n            },\n            \"Id\": \"f045adf0-ea21-4f0f-aa99-1e1af435d781\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5c0db6d-136e-48bd-bd3d-51b3eb66cbff\",\n                        \"9698fe86-3b26-4320-ae95-6bf357d8a20c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.53825378417969,\n            \"Text\": \"Name: SomeName\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15057514607906342,\n                    \"Height\": 0.0105624720454216,\n                    \"Left\": 0.08570101112127304,\n                    \"Top\": 0.060842134058475494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08570101112127304,\n                        \"Y\": 0.060842134058475494\n                    },\n                    {\n                        \"X\": 0.23627614974975586,\n                        \"Y\": 0.060842134058475494\n                    },\n                    {\n                        \"X\": 0.23627614974975586,\n                        \"Y\": 0.0714046061038971\n                    },\n                    {\n                        \"X\": 0.08570101112127304,\n                        \"Y\": 0.0714046061038971\n                    }\n                ]\n            },\n            \"Id\": \"dcade28f-a712-40eb-b61f-720731b5bad6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5e433305-2585-455c-b8f0-3b7afae91e2c\",\n                        \"37278ca4-ae2d-4b26-840a-9faa31beb9b8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70161437988281,\n            \"Text\": \"Key1: value1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10150674730539322,\n                    \"Height\": 0.01322206761687994,\n                    \"Left\": 0.7581079006195068,\n                    \"Top\": 0.08769001066684723\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7581079006195068,\n                        \"Y\": 0.08769001066684723\n                    },\n                    {\n                        \"X\": 0.8596146702766418,\n                        \"Y\": 0.08769001066684723\n                    },\n                    {\n                        \"X\": 0.8596146702766418,\n                        \"Y\": 0.10091207921504974\n                    },\n                    {\n                        \"X\": 0.7581079006195068,\n                        \"Y\": 0.10091207921504974\n                    }\n                ]\n            },\n            \"Id\": \"3cc7a046-2271-4bc0-b892-bd4d92c5fe30\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4096d8d9-c7d7-4136-84a7-64baa8928609\",\n                        \"262feb10-ecc6-420e-aa55-33adc2f8c6c0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.33039093017578,\n            \"Text\": \"Key2:value2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10219025611877441,\n                    \"Height\": 0.013424985110759735,\n                    \"Left\": 0.757502019405365,\n                    \"Top\": 0.11186148971319199\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.757502019405365,\n                        \"Y\": 0.11186148971319199\n                    },\n                    {\n                        \"X\": 0.8596922755241394,\n                        \"Y\": 0.11186148971319199\n                    },\n                    {\n                        \"X\": 0.8596922755241394,\n                        \"Y\": 0.12528647482395172\n                    },\n                    {\n                        \"X\": 0.757502019405365,\n                        \"Y\": 0.12528647482395172\n                    }\n                ]\n            },\n            \"Id\": \"6f6cdf2b-b1f7-47e7-bc5d-8c7260a0e4bc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"25b54fea-ae51-4f79-adf0-c144c026b248\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.29039001464844,\n            \"Text\": \"Value 1.1.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09044439345598221,\n                    \"Height\": 0.010462656617164612,\n                    \"Left\": 0.10996533930301666,\n                    \"Top\": 0.15750041604042053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10996533930301666,\n                        \"Y\": 0.15750041604042053\n                    },\n                    {\n                        \"X\": 0.20040972530841827,\n                        \"Y\": 0.15750041604042053\n                    },\n                    {\n                        \"X\": 0.20040972530841827,\n                        \"Y\": 0.16796307265758514\n                    },\n                    {\n                        \"X\": 0.10996533930301666,\n                        \"Y\": 0.16796307265758514\n                    }\n                ]\n            },\n            \"Id\": \"6e6eebcb-4c91-49a7-be7d-e18bed037e1f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"693718a3-d8d9-4ea2-9439-cfa7afb4fdae\",\n                        \"20477be6-5cdb-4f57-a4b8-56b82dd30f4f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.53871154785156,\n            \"Text\": \"Value 1.1.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0902898982167244,\n                    \"Height\": 0.010304495692253113,\n                    \"Left\": 0.21957671642303467,\n                    \"Top\": 0.1575348675251007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21957671642303467,\n                        \"Y\": 0.1575348675251007\n                    },\n                    {\n                        \"X\": 0.30986660718917847,\n                        \"Y\": 0.1575348675251007\n                    },\n                    {\n                        \"X\": 0.30986660718917847,\n                        \"Y\": 0.16783936321735382\n                    },\n                    {\n                        \"X\": 0.21957671642303467,\n                        \"Y\": 0.16783936321735382\n                    }\n                ]\n            },\n            \"Id\": \"27a63bc9-a376-4647-933f-1e6d47601943\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"de3490e5-06c8-4b5e-a2ed-9d71fbd61669\",\n                        \"769bc278-3759-4d7c-b766-4dd648fff7c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4444580078125,\n            \"Text\": \"Value 1.1.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08968809247016907,\n                    \"Height\": 0.010384619235992432,\n                    \"Left\": 0.3296671509742737,\n                    \"Top\": 0.15744420886039734\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3296671509742737,\n                        \"Y\": 0.15744420886039734\n                    },\n                    {\n                        \"X\": 0.41935524344444275,\n                        \"Y\": 0.15744420886039734\n                    },\n                    {\n                        \"X\": 0.41935524344444275,\n                        \"Y\": 0.16782882809638977\n                    },\n                    {\n                        \"X\": 0.3296671509742737,\n                        \"Y\": 0.16782882809638977\n                    }\n                ]\n            },\n            \"Id\": \"acf24932-297a-403a-b2bc-1096870e2b0f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a2add06a-d7e5-4f51-be46-00ffcb8f062e\",\n                        \"bbf1f43e-b02a-4b0b-8bb9-e776a740dd29\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4854507446289,\n            \"Text\": \"Value 1.2.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08987818658351898,\n                    \"Height\": 0.010315137915313244,\n                    \"Left\": 0.10996827483177185,\n                    \"Top\": 0.17520037293434143\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10996827483177185,\n                        \"Y\": 0.17520037293434143\n                    },\n                    {\n                        \"X\": 0.19984646141529083,\n                        \"Y\": 0.17520037293434143\n                    },\n                    {\n                        \"X\": 0.19984646141529083,\n                        \"Y\": 0.18551550805568695\n                    },\n                    {\n                        \"X\": 0.10996827483177185,\n                        \"Y\": 0.18551550805568695\n                    }\n                ]\n            },\n            \"Id\": \"40f566bd-c084-439c-a021-d919662fdea7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"62f193ef-e7b5-4c13-b7a0-ecbe1a03649a\",\n                        \"5d5b7d86-c4e2-4d80-aab1-eb46edbb80ed\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.60028839111328,\n            \"Text\": \"Value 1.2.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09052038192749023,\n                    \"Height\": 0.010159865021705627,\n                    \"Left\": 0.21950756013393402,\n                    \"Top\": 0.1752668023109436\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21950756013393402,\n                        \"Y\": 0.1752668023109436\n                    },\n                    {\n                        \"X\": 0.31002792716026306,\n                        \"Y\": 0.1752668023109436\n                    },\n                    {\n                        \"X\": 0.31002792716026306,\n                        \"Y\": 0.18542666733264923\n                    },\n                    {\n                        \"X\": 0.21950756013393402,\n                        \"Y\": 0.18542666733264923\n                    }\n                ]\n            },\n            \"Id\": \"a62efae3-5c35-4f76-b731-7f62290d6b8a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a9fdd78a-ab2d-4c9f-afb6-97b323d1619b\",\n                        \"bcef7e2f-b821-496e-8416-b76afc942fd2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3526840209961,\n            \"Text\": \"Value 1.2.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09013134241104126,\n                    \"Height\": 0.010190678760409355,\n                    \"Left\": 0.3293275237083435,\n                    \"Top\": 0.1752515435218811\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3293275237083435,\n                        \"Y\": 0.1752515435218811\n                    },\n                    {\n                        \"X\": 0.41945886611938477,\n                        \"Y\": 0.1752515435218811\n                    },\n                    {\n                        \"X\": 0.41945886611938477,\n                        \"Y\": 0.1854422241449356\n                    },\n                    {\n                        \"X\": 0.3293275237083435,\n                        \"Y\": 0.1854422241449356\n                    }\n                ]\n            },\n            \"Id\": \"3bf8fcfb-8827-4c74-ba8b-2bc0c33a7fc1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7eb4e511-3091-4b79-afc3-b2730b6b9fca\",\n                        \"17fc7483-8c94-4585-b517-85e567a8c4e7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.20941925048828,\n            \"Text\": \"Value 1.3.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0901036337018013,\n                    \"Height\": 0.010295148007571697,\n                    \"Left\": 0.11013281345367432,\n                    \"Top\": 0.19289986789226532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11013281345367432,\n                        \"Y\": 0.19289986789226532\n                    },\n                    {\n                        \"X\": 0.20023643970489502,\n                        \"Y\": 0.19289986789226532\n                    },\n                    {\n                        \"X\": 0.20023643970489502,\n                        \"Y\": 0.2031950205564499\n                    },\n                    {\n                        \"X\": 0.11013281345367432,\n                        \"Y\": 0.2031950205564499\n                    }\n                ]\n            },\n            \"Id\": \"261dcddb-36e1-47f4-b5e9-ff38a6abddff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a55b010-3182-402f-97d1-66b1c1c0d1a7\",\n                        \"943bbaad-f70d-4b4e-a68f-3a3af8463a0b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.40666198730469,\n            \"Text\": \"Value 1.3.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09008145332336426,\n                    \"Height\": 0.010228514671325684,\n                    \"Left\": 0.21970826387405396,\n                    \"Top\": 0.19291900098323822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21970826387405396,\n                        \"Y\": 0.19291900098323822\n                    },\n                    {\n                        \"X\": 0.3097897171974182,\n                        \"Y\": 0.19291900098323822\n                    },\n                    {\n                        \"X\": 0.3097897171974182,\n                        \"Y\": 0.2031475156545639\n                    },\n                    {\n                        \"X\": 0.21970826387405396,\n                        \"Y\": 0.2031475156545639\n                    }\n                ]\n            },\n            \"Id\": \"acb664cc-f0a1-4767-8a44-756f67da4d81\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b3d78e15-4124-4ec6-b39a-8ad528e3d54d\",\n                        \"7598e24c-3b6b-4b02-b842-981d2a9457a2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55914306640625,\n            \"Text\": \"Value 1.3.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08966375142335892,\n                    \"Height\": 0.010327053256332874,\n                    \"Left\": 0.3294762074947357,\n                    \"Top\": 0.19291351735591888\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3294762074947357,\n                        \"Y\": 0.19291351735591888\n                    },\n                    {\n                        \"X\": 0.41913995146751404,\n                        \"Y\": 0.19291351735591888\n                    },\n                    {\n                        \"X\": 0.41913995146751404,\n                        \"Y\": 0.20324057340621948\n                    },\n                    {\n                        \"X\": 0.3294762074947357,\n                        \"Y\": 0.20324057340621948\n                    }\n                ]\n            },\n            \"Id\": \"e3b4b3e7-e8c3-4ffb-a5b3-ebb6e47a203d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"280a2f4f-d07c-4221-b384-787044a31bbc\",\n                        \"60654585-6a37-46a1-8f95-36a4f2ad9fb1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.01704406738281,\n            \"Text\": \"Value 2.1.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10589480400085449,\n                    \"Height\": 0.011909380555152893,\n                    \"Left\": 0.3488728404045105,\n                    \"Top\": 0.23571865260601044\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3488728404045105,\n                        \"Y\": 0.23571865260601044\n                    },\n                    {\n                        \"X\": 0.454767644405365,\n                        \"Y\": 0.23571865260601044\n                    },\n                    {\n                        \"X\": 0.454767644405365,\n                        \"Y\": 0.24762803316116333\n                    },\n                    {\n                        \"X\": 0.3488728404045105,\n                        \"Y\": 0.24762803316116333\n                    }\n                ]\n            },\n            \"Id\": \"0d14779a-a73f-4ccb-b793-27ea7f755f9a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b1d0740a-5ef7-4226-91df-e18c10a29a58\",\n                        \"5ad4f3f8-c688-46f9-b3c6-7a500af8030b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54840087890625,\n            \"Text\": \"Value 2.1.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1056557297706604,\n                    \"Height\": 0.01207609474658966,\n                    \"Left\": 0.47313034534454346,\n                    \"Top\": 0.23562827706336975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47313034534454346,\n                        \"Y\": 0.23562827706336975\n                    },\n                    {\n                        \"X\": 0.5787860751152039,\n                        \"Y\": 0.23562827706336975\n                    },\n                    {\n                        \"X\": 0.5787860751152039,\n                        \"Y\": 0.2477043718099594\n                    },\n                    {\n                        \"X\": 0.47313034534454346,\n                        \"Y\": 0.2477043718099594\n                    }\n                ]\n            },\n            \"Id\": \"b917e376-c15c-4cc9-9059-0c7866e4d223\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"057fce31-3320-4aad-8a81-59596d5b1dcb\",\n                        \"68f04b27-586d-4630-9d41-6a07c0100b51\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.52290344238281,\n            \"Text\": \"Value 2.1.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10536134243011475,\n                    \"Height\": 0.012077540159225464,\n                    \"Left\": 0.597499668598175,\n                    \"Top\": 0.23563411831855774\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.597499668598175,\n                        \"Y\": 0.23563411831855774\n                    },\n                    {\n                        \"X\": 0.7028610110282898,\n                        \"Y\": 0.23563411831855774\n                    },\n                    {\n                        \"X\": 0.7028610110282898,\n                        \"Y\": 0.2477116584777832\n                    },\n                    {\n                        \"X\": 0.597499668598175,\n                        \"Y\": 0.2477116584777832\n                    }\n                ]\n            },\n            \"Id\": \"d777d595-9e06-4c1c-ad16-fdae1c04ac46\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"334f895e-30c6-4df5-aacb-0cf231b620af\",\n                        \"6291ad39-03aa-4ab6-a8e4-63b5b6b26f94\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.61541748046875,\n            \"Text\": \"Value 2.1.4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10620392113924026,\n                    \"Height\": 0.012122049927711487,\n                    \"Left\": 0.7210274338722229,\n                    \"Top\": 0.23564797639846802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7210274338722229,\n                        \"Y\": 0.23564797639846802\n                    },\n                    {\n                        \"X\": 0.8272313475608826,\n                        \"Y\": 0.23564797639846802\n                    },\n                    {\n                        \"X\": 0.8272313475608826,\n                        \"Y\": 0.2477700263261795\n                    },\n                    {\n                        \"X\": 0.7210274338722229,\n                        \"Y\": 0.2477700263261795\n                    }\n                ]\n            },\n            \"Id\": \"a3eee1af-7a9b-4407-811c-f74009a591c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fd763da3-32a8-461a-92bd-174ad0e030fb\",\n                        \"022a6e3a-d0d5-491f-bd07-c7a9f672ccae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.59114074707031,\n            \"Text\": \"Value 2.1.5\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10580858588218689,\n                    \"Height\": 0.012114566750824451,\n                    \"Left\": 0.8453003168106079,\n                    \"Top\": 0.23561464250087738\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8453003168106079,\n                        \"Y\": 0.23561464250087738\n                    },\n                    {\n                        \"X\": 0.9511088728904724,\n                        \"Y\": 0.23561464250087738\n                    },\n                    {\n                        \"X\": 0.9511088728904724,\n                        \"Y\": 0.24772921204566956\n                    },\n                    {\n                        \"X\": 0.8453003168106079,\n                        \"Y\": 0.24772921204566956\n                    }\n                ]\n            },\n            \"Id\": \"a5f73272-4c77-49f5-aefa-673ebd7e5943\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2f2d8ba1-da3d-47ae-ad9a-40037c9ab97f\",\n                        \"991f2310-4c94-4cfe-9fce-3f0197eaa5f0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.48802947998047,\n            \"Text\": \"Value 2.2.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10512411594390869,\n                    \"Height\": 0.012048542499542236,\n                    \"Left\": 0.3493971824645996,\n                    \"Top\": 0.2560810446739197\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3493971824645996,\n                        \"Y\": 0.2560810446739197\n                    },\n                    {\n                        \"X\": 0.4545212984085083,\n                        \"Y\": 0.2560810446739197\n                    },\n                    {\n                        \"X\": 0.4545212984085083,\n                        \"Y\": 0.2681295871734619\n                    },\n                    {\n                        \"X\": 0.3493971824645996,\n                        \"Y\": 0.2681295871734619\n                    }\n                ]\n            },\n            \"Id\": \"78a0173c-93a9-49e5-bfc5-eb79dbbc5096\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"262a77db-ae01-43ee-98b9-a5d30be484fc\",\n                        \"ec9df24b-4223-4ea9-afd9-1e8dd7f7316a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.16780853271484,\n            \"Text\": \"Value 2.2.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10523536056280136,\n                    \"Height\": 0.012222647666931152,\n                    \"Left\": 0.4734887182712555,\n                    \"Top\": 0.25603875517845154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4734887182712555,\n                        \"Y\": 0.25603875517845154\n                    },\n                    {\n                        \"X\": 0.5787240862846375,\n                        \"Y\": 0.25603875517845154\n                    },\n                    {\n                        \"X\": 0.5787240862846375,\n                        \"Y\": 0.2682614028453827\n                    },\n                    {\n                        \"X\": 0.4734887182712555,\n                        \"Y\": 0.2682614028453827\n                    }\n                ]\n            },\n            \"Id\": \"e7c8bb7c-cb43-41a7-bfde-7981a4438c56\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b7fe7a4-79fc-44d0-9f0c-14e17763c159\",\n                        \"4d745dee-7ebf-47ba-8a82-f1206d9ba19c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3677749633789,\n            \"Text\": \"Value 2.2.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10457426309585571,\n                    \"Height\": 0.012213140726089478,\n                    \"Left\": 0.5980994701385498,\n                    \"Top\": 0.2560027837753296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5980994701385498,\n                        \"Y\": 0.2560027837753296\n                    },\n                    {\n                        \"X\": 0.7026737332344055,\n                        \"Y\": 0.2560027837753296\n                    },\n                    {\n                        \"X\": 0.7026737332344055,\n                        \"Y\": 0.26821592450141907\n                    },\n                    {\n                        \"X\": 0.5980994701385498,\n                        \"Y\": 0.26821592450141907\n                    }\n                ]\n            },\n            \"Id\": \"2e3c1bed-f40c-4782-9e29-757ef9d2827b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b69f145b-e997-42c1-800b-17519d3e32ef\",\n                        \"c300452e-f3cd-46b2-8151-07a7974d9326\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.57331085205078,\n            \"Text\": \"Value 2.2.4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10609090328216553,\n                    \"Height\": 0.012152343988418579,\n                    \"Left\": 0.7213287949562073,\n                    \"Top\": 0.256034255027771\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7213287949562073,\n                        \"Y\": 0.256034255027771\n                    },\n                    {\n                        \"X\": 0.8274196982383728,\n                        \"Y\": 0.256034255027771\n                    },\n                    {\n                        \"X\": 0.8274196982383728,\n                        \"Y\": 0.2681865990161896\n                    },\n                    {\n                        \"X\": 0.7213287949562073,\n                        \"Y\": 0.2681865990161896\n                    }\n                ]\n            },\n            \"Id\": \"545ced6c-9d5a-43d0-8660-bf692f9042da\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a704e76f-ff9b-46eb-9a6b-35542a6b8c43\",\n                        \"23e7eac0-e92d-40cd-8026-3e2dccb5a334\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.38717651367188,\n            \"Text\": \"Value 2.2.5\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10549802333116531,\n                    \"Height\": 0.012320488691329956,\n                    \"Left\": 0.8453077077865601,\n                    \"Top\": 0.25595200061798096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8453077077865601,\n                        \"Y\": 0.25595200061798096\n                    },\n                    {\n                        \"X\": 0.9508057236671448,\n                        \"Y\": 0.25595200061798096\n                    },\n                    {\n                        \"X\": 0.9508057236671448,\n                        \"Y\": 0.2682724893093109\n                    },\n                    {\n                        \"X\": 0.8453077077865601,\n                        \"Y\": 0.2682724893093109\n                    }\n                ]\n            },\n            \"Id\": \"b37d604e-63b2-425c-9a5c-bd135195c758\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"334606a6-3b2c-40fe-9d1d-d80103d3387b\",\n                        \"393bb537-f983-4800-b0db-8db2812eae45\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.43102264404297,\n            \"Text\": \"Value 2.3.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10497700423002243,\n                    \"Height\": 0.01213371753692627,\n                    \"Left\": 0.3494780361652374,\n                    \"Top\": 0.27675092220306396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3494780361652374,\n                        \"Y\": 0.27675092220306396\n                    },\n                    {\n                        \"X\": 0.45445504784584045,\n                        \"Y\": 0.27675092220306396\n                    },\n                    {\n                        \"X\": 0.45445504784584045,\n                        \"Y\": 0.28888463973999023\n                    },\n                    {\n                        \"X\": 0.3494780361652374,\n                        \"Y\": 0.28888463973999023\n                    }\n                ]\n            },\n            \"Id\": \"7a6c3b66-f62c-45b9-b1f9-9d2055e7c180\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"260d17c0-3af7-428a-be93-012e693ccb1c\",\n                        \"00b2a930-9567-4573-aff3-59046874707d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.65238189697266,\n            \"Text\": \"Value 2.3.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10473453998565674,\n                    \"Height\": 0.012254446744918823,\n                    \"Left\": 0.4735710918903351,\n                    \"Top\": 0.27651697397232056\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4735710918903351,\n                        \"Y\": 0.27651697397232056\n                    },\n                    {\n                        \"X\": 0.5783056616783142,\n                        \"Y\": 0.27651697397232056\n                    },\n                    {\n                        \"X\": 0.5783056616783142,\n                        \"Y\": 0.2887714207172394\n                    },\n                    {\n                        \"X\": 0.4735710918903351,\n                        \"Y\": 0.2887714207172394\n                    }\n                ]\n            },\n            \"Id\": \"25e62731-7d65-4251-a9f6-dea96b35404b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4c7e8481-9358-4784-9847-83077be11d16\",\n                        \"d4437c1d-c937-4857-b18b-b1ea50706bab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.59590148925781,\n            \"Text\": \"Value 2.3.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1043810099363327,\n                    \"Height\": 0.012204557657241821,\n                    \"Left\": 0.5982868671417236,\n                    \"Top\": 0.27671492099761963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5982868671417236,\n                        \"Y\": 0.27671492099761963\n                    },\n                    {\n                        \"X\": 0.7026678919792175,\n                        \"Y\": 0.27671492099761963\n                    },\n                    {\n                        \"X\": 0.7026678919792175,\n                        \"Y\": 0.28891947865486145\n                    },\n                    {\n                        \"X\": 0.5982868671417236,\n                        \"Y\": 0.28891947865486145\n                    }\n                ]\n            },\n            \"Id\": \"69c8c26b-bd5a-4880-acae-2450a7d6360c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fc1aa1b0-a0c7-472b-9c00-a798d8cc435f\",\n                        \"3d6e6e99-0fd5-4cce-94bd-91d8fdb4cd4e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.59210205078125,\n            \"Text\": \"Value 2.3.4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10551386326551437,\n                    \"Height\": 0.012276619672775269,\n                    \"Left\": 0.7216104865074158,\n                    \"Top\": 0.2766041159629822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7216104865074158,\n                        \"Y\": 0.2766041159629822\n                    },\n                    {\n                        \"X\": 0.8271243572235107,\n                        \"Y\": 0.2766041159629822\n                    },\n                    {\n                        \"X\": 0.8271243572235107,\n                        \"Y\": 0.28888073563575745\n                    },\n                    {\n                        \"X\": 0.7216104865074158,\n                        \"Y\": 0.28888073563575745\n                    }\n                ]\n            },\n            \"Id\": \"a701d3ec-ba2f-4f5f-84c2-52cd6b9c808c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f930b397-6dca-4b1f-9a6c-7b1c00f4f1ff\",\n                        \"813364e2-cdb5-4635-82c2-cc90a5c0bcba\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.19638061523438,\n            \"Text\": \"Value 2.3.5\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10407808423042297,\n                    \"Height\": 0.012329012155532837,\n                    \"Left\": 0.8464338183403015,\n                    \"Top\": 0.2766174376010895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8464338183403015,\n                        \"Y\": 0.2766174376010895\n                    },\n                    {\n                        \"X\": 0.9505118727684021,\n                        \"Y\": 0.2766174376010895\n                    },\n                    {\n                        \"X\": 0.9505118727684021,\n                        \"Y\": 0.2889464497566223\n                    },\n                    {\n                        \"X\": 0.8464338183403015,\n                        \"Y\": 0.2889464497566223\n                    }\n                ]\n            },\n            \"Id\": \"fcb6b4c3-d9f3-460e-8e90-85b62f25929c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"403d255b-f24e-4e0c-88fa-9136eacf58f6\",\n                        \"f89b635b-7a29-4df9-8765-5b671c46fdb9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70833587646484,\n            \"Text\": \"Value 2.4.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10477267950773239,\n                    \"Height\": 0.011971056461334229,\n                    \"Left\": 0.34942883253097534,\n                    \"Top\": 0.29721662402153015\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34942883253097534,\n                        \"Y\": 0.29721662402153015\n                    },\n                    {\n                        \"X\": 0.45420151948928833,\n                        \"Y\": 0.29721662402153015\n                    },\n                    {\n                        \"X\": 0.45420151948928833,\n                        \"Y\": 0.3091876804828644\n                    },\n                    {\n                        \"X\": 0.34942883253097534,\n                        \"Y\": 0.3091876804828644\n                    }\n                ]\n            },\n            \"Id\": \"f86e5c2c-4a89-40d4-89bb-1e008e92db79\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c3c838e8-b89f-4cd7-a4f0-c4b61c9f4788\",\n                        \"b8ed9993-b4e2-4fdf-a5ed-ac587754215a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.65218353271484,\n            \"Text\": \"Value 2.4.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10472890734672546,\n                    \"Height\": 0.011928647756576538,\n                    \"Left\": 0.4736648499965668,\n                    \"Top\": 0.29723668098449707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4736648499965668,\n                        \"Y\": 0.29723668098449707\n                    },\n                    {\n                        \"X\": 0.5783937573432922,\n                        \"Y\": 0.29723668098449707\n                    },\n                    {\n                        \"X\": 0.5783937573432922,\n                        \"Y\": 0.3091653287410736\n                    },\n                    {\n                        \"X\": 0.4736648499965668,\n                        \"Y\": 0.3091653287410736\n                    }\n                ]\n            },\n            \"Id\": \"d6848bfe-3755-40d4-a57a-9c576563dd9c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a572e77-aa31-49eb-8fe6-6cf110182f16\",\n                        \"50c7e6da-a99a-49c5-bb8a-4e53dc1c2416\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.59903717041016,\n            \"Text\": \"Value 2.4.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10440092533826828,\n                    \"Height\": 0.012054800987243652,\n                    \"Left\": 0.5981996655464172,\n                    \"Top\": 0.2971394956111908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5981996655464172,\n                        \"Y\": 0.2971394956111908\n                    },\n                    {\n                        \"X\": 0.7026005983352661,\n                        \"Y\": 0.2971394956111908\n                    },\n                    {\n                        \"X\": 0.7026005983352661,\n                        \"Y\": 0.30919429659843445\n                    },\n                    {\n                        \"X\": 0.5981996655464172,\n                        \"Y\": 0.30919429659843445\n                    }\n                ]\n            },\n            \"Id\": \"1a4b1b5c-d292-4a70-b8e7-f3e44ad8420f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5a89f920-31c1-439a-aec7-680585b25796\",\n                        \"e7ba092f-65d9-42c9-bc93-5d88ff8d8a21\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.68186950683594,\n            \"Text\": \"Value 2.4.4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10529942065477371,\n                    \"Height\": 0.011855721473693848,\n                    \"Left\": 0.7216416001319885,\n                    \"Top\": 0.29727259278297424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7216416001319885,\n                        \"Y\": 0.29727259278297424\n                    },\n                    {\n                        \"X\": 0.8269410133361816,\n                        \"Y\": 0.29727259278297424\n                    },\n                    {\n                        \"X\": 0.8269410133361816,\n                        \"Y\": 0.3091283142566681\n                    },\n                    {\n                        \"X\": 0.7216416001319885,\n                        \"Y\": 0.3091283142566681\n                    }\n                ]\n            },\n            \"Id\": \"521e03a6-e8f7-41fb-a2ad-434c468c3b87\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"89a0b628-38d0-4d70-af44-a248e9e189bb\",\n                        \"9e2d3f64-7681-4b6b-ab67-56cae96a26fe\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6616439819336,\n            \"Text\": \"Value 2.4.5\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10461419820785522,\n                    \"Height\": 0.011920955032110214,\n                    \"Left\": 0.8457906246185303,\n                    \"Top\": 0.29730719327926636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8457906246185303,\n                        \"Y\": 0.29730719327926636\n                    },\n                    {\n                        \"X\": 0.9504048228263855,\n                        \"Y\": 0.29730719327926636\n                    },\n                    {\n                        \"X\": 0.9504048228263855,\n                        \"Y\": 0.30922815203666687\n                    },\n                    {\n                        \"X\": 0.8457906246185303,\n                        \"Y\": 0.30922815203666687\n                    }\n                ]\n            },\n            \"Id\": \"ea420163-58dc-4e4c-958b-aa7bf08b6c4a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8d738af2-8336-4fe7-a9db-9a2094e47c45\",\n                        \"e0b70770-4816-4fa0-98be-167ef2cf3f23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.13426971435547,\n            \"Text\": \"Value 2.5.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10511550307273865,\n                    \"Height\": 0.0119723379611969,\n                    \"Left\": 0.3493768572807312,\n                    \"Top\": 0.31771886348724365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3493768572807312,\n                        \"Y\": 0.31771886348724365\n                    },\n                    {\n                        \"X\": 0.45449236035346985,\n                        \"Y\": 0.31771886348724365\n                    },\n                    {\n                        \"X\": 0.45449236035346985,\n                        \"Y\": 0.32969120144844055\n                    },\n                    {\n                        \"X\": 0.3493768572807312,\n                        \"Y\": 0.32969120144844055\n                    }\n                ]\n            },\n            \"Id\": \"c1cf718f-7d85-498a-b028-b173ad0729a3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2c926ffd-0deb-41fb-99e3-f10cfce41297\",\n                        \"9e6f5012-92dd-44a4-bc27-241158503f6e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.65831756591797,\n            \"Text\": \"Value 2.5.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1051875576376915,\n                    \"Height\": 0.012064596638083458,\n                    \"Left\": 0.47331732511520386,\n                    \"Top\": 0.31766098737716675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47331732511520386,\n                        \"Y\": 0.31766098737716675\n                    },\n                    {\n                        \"X\": 0.5785048604011536,\n                        \"Y\": 0.31766098737716675\n                    },\n                    {\n                        \"X\": 0.5785048604011536,\n                        \"Y\": 0.32972559332847595\n                    },\n                    {\n                        \"X\": 0.47331732511520386,\n                        \"Y\": 0.32972559332847595\n                    }\n                ]\n            },\n            \"Id\": \"308e2d7e-563f-464f-ad1f-fcdba4c713b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4b4e476b-a4e9-4664-bf7f-701af4ca7955\",\n                        \"99985721-7815-4138-9be0-6b2a9273efb3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69383239746094,\n            \"Text\": \"Value 2.5.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10450313985347748,\n                    \"Height\": 0.012088063172996044,\n                    \"Left\": 0.5980262160301208,\n                    \"Top\": 0.317635178565979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5980262160301208,\n                        \"Y\": 0.317635178565979\n                    },\n                    {\n                        \"X\": 0.7025293111801147,\n                        \"Y\": 0.317635178565979\n                    },\n                    {\n                        \"X\": 0.7025293111801147,\n                        \"Y\": 0.3297232389450073\n                    },\n                    {\n                        \"X\": 0.5980262160301208,\n                        \"Y\": 0.3297232389450073\n                    }\n                ]\n            },\n            \"Id\": \"346d3e14-1e92-4a95-b305-e063fbfe86d2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"51006c26-86d7-4d59-a810-d492e03d33c0\",\n                        \"21985db3-e896-470a-8279-23ddd60abba9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71204376220703,\n            \"Text\": \"Value 2.5.4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10604234784841537,\n                    \"Height\": 0.01207891758531332,\n                    \"Left\": 0.7212172150611877,\n                    \"Top\": 0.31766656041145325\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7212172150611877,\n                        \"Y\": 0.31766656041145325\n                    },\n                    {\n                        \"X\": 0.8272595405578613,\n                        \"Y\": 0.31766656041145325\n                    },\n                    {\n                        \"X\": 0.8272595405578613,\n                        \"Y\": 0.32974547147750854\n                    },\n                    {\n                        \"X\": 0.7212172150611877,\n                        \"Y\": 0.32974547147750854\n                    }\n                ]\n            },\n            \"Id\": \"50537930-1746-408c-bc83-93dca5276600\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"53e96019-5be1-457e-a1a6-612bc148e736\",\n                        \"40851039-70b0-41a0-8065-c92ce33647c7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73115539550781,\n            \"Text\": \"Value 2.5.5\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10478361696004868,\n                    \"Height\": 0.01199720986187458,\n                    \"Left\": 0.8459871411323547,\n                    \"Top\": 0.3178301751613617\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8459871411323547,\n                        \"Y\": 0.3178301751613617\n                    },\n                    {\n                        \"X\": 0.9507707357406616,\n                        \"Y\": 0.3178301751613617\n                    },\n                    {\n                        \"X\": 0.9507707357406616,\n                        \"Y\": 0.3298273980617523\n                    },\n                    {\n                        \"X\": 0.8459871411323547,\n                        \"Y\": 0.3298273980617523\n                    }\n                ]\n            },\n            \"Id\": \"36f2e1ed-73ed-4c9d-b4a7-c537a3ea6984\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"96589d36-e02e-40bb-b3ee-204f33971e8b\",\n                        \"f203337b-46f6-42b1-9c20-2ac033d36a48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76348876953125,\n            \"Text\": \"NO: not-checked\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13520775735378265,\n                    \"Height\": 0.011138562113046646,\n                    \"Left\": 0.07998548448085785,\n                    \"Top\": 0.3912815749645233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07998548448085785,\n                        \"Y\": 0.3912815749645233\n                    },\n                    {\n                        \"X\": 0.2151932418346405,\n                        \"Y\": 0.3912815749645233\n                    },\n                    {\n                        \"X\": 0.2151932418346405,\n                        \"Y\": 0.40242013335227966\n                    },\n                    {\n                        \"X\": 0.07998548448085785,\n                        \"Y\": 0.40242013335227966\n                    }\n                ]\n            },\n            \"Id\": \"afc60ce9-fd4d-49a8-b24a-81e586861cd8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d7d615ec-2e6a-4cc2-842a-f3be9d57d0a5\",\n                        \"92735371-3cb9-4032-80ae-34ed74beb59b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5317611694336,\n            \"Text\": \"Value 3.1.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09013909101486206,\n                    \"Height\": 0.010468622669577599,\n                    \"Left\": 0.5007233023643494,\n                    \"Top\": 0.4104907214641571\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5007233023643494,\n                        \"Y\": 0.4104907214641571\n                    },\n                    {\n                        \"X\": 0.5908623933792114,\n                        \"Y\": 0.4104907214641571\n                    },\n                    {\n                        \"X\": 0.5908623933792114,\n                        \"Y\": 0.42095935344696045\n                    },\n                    {\n                        \"X\": 0.5007233023643494,\n                        \"Y\": 0.42095935344696045\n                    }\n                ]\n            },\n            \"Id\": \"306a0b5c-5197-46cd-82e2-a5d92baafbf8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5713b7af-14a7-4a24-b444-5459fe0a8823\",\n                        \"b05e2149-603a-420d-bd6d-5989b0272992\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51280975341797,\n            \"Text\": \"Value 3.1.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09039019048213959,\n                    \"Height\": 0.010664224624633789,\n                    \"Left\": 0.6450337171554565,\n                    \"Top\": 0.41035497188568115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6450337171554565,\n                        \"Y\": 0.41035497188568115\n                    },\n                    {\n                        \"X\": 0.7354239225387573,\n                        \"Y\": 0.41035497188568115\n                    },\n                    {\n                        \"X\": 0.7354239225387573,\n                        \"Y\": 0.42101919651031494\n                    },\n                    {\n                        \"X\": 0.6450337171554565,\n                        \"Y\": 0.42101919651031494\n                    }\n                ]\n            },\n            \"Id\": \"efcd176b-dd56-43b1-839c-0fdbfea0fca2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46c5d8c3-6659-4c0c-a8ee-d03a5d34c197\",\n                        \"2690c80e-290a-4b7b-9318-f23a48a9ede6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.46669006347656,\n            \"Text\": \"Value 3.1.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09046337008476257,\n                    \"Height\": 0.010652952827513218,\n                    \"Left\": 0.7884987592697144,\n                    \"Top\": 0.4103996157646179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7884987592697144,\n                        \"Y\": 0.4103996157646179\n                    },\n                    {\n                        \"X\": 0.8789621591567993,\n                        \"Y\": 0.4103996157646179\n                    },\n                    {\n                        \"X\": 0.8789621591567993,\n                        \"Y\": 0.42105257511138916\n                    },\n                    {\n                        \"X\": 0.7884987592697144,\n                        \"Y\": 0.42105257511138916\n                    }\n                ]\n            },\n            \"Id\": \"5821a87f-c3f9-45cf-b578-ea94fa4fe3b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9f8730f7-9295-47b6-ac30-9bc3bc302a99\",\n                        \"f139dc87-0c9b-4684-9f9c-33e9c85349b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.63385009765625,\n            \"Text\": \"YES: checked\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1050170287489891,\n                    \"Height\": 0.011043429374694824,\n                    \"Left\": 0.07574430853128433,\n                    \"Top\": 0.41770753264427185\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07574430853128433,\n                        \"Y\": 0.41770753264427185\n                    },\n                    {\n                        \"X\": 0.18076133728027344,\n                        \"Y\": 0.41770753264427185\n                    },\n                    {\n                        \"X\": 0.18076133728027344,\n                        \"Y\": 0.4287509620189667\n                    },\n                    {\n                        \"X\": 0.07574430853128433,\n                        \"Y\": 0.4287509620189667\n                    }\n                ]\n            },\n            \"Id\": \"bab61869-d097-4e53-87bc-4c3648c85cd1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2ec3e7d2-9cf4-4827-a853-402693c7d693\",\n                        \"f5362839-b43d-4d9a-89e0-b9d4d56b8496\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51519012451172,\n            \"Text\": \"Value 3.2.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08981361240148544,\n                    \"Height\": 0.010491222143173218,\n                    \"Left\": 0.5009772181510925,\n                    \"Top\": 0.4280807673931122\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009772181510925,\n                        \"Y\": 0.4280807673931122\n                    },\n                    {\n                        \"X\": 0.5907908082008362,\n                        \"Y\": 0.4280807673931122\n                    },\n                    {\n                        \"X\": 0.5907908082008362,\n                        \"Y\": 0.4385719895362854\n                    },\n                    {\n                        \"X\": 0.5009772181510925,\n                        \"Y\": 0.4385719895362854\n                    }\n                ]\n            },\n            \"Id\": \"dc8e3ff6-615d-4f07-b466-44b2f8934473\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"027f1edc-dd86-4a80-8c6e-96dbed287849\",\n                        \"b1352d68-95b8-47d4-883c-6e1db31a11ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.39588165283203,\n            \"Text\": \"Value 3.2.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09034757316112518,\n                    \"Height\": 0.010606974363327026,\n                    \"Left\": 0.6449447274208069,\n                    \"Top\": 0.4280215799808502\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6449447274208069,\n                        \"Y\": 0.4280215799808502\n                    },\n                    {\n                        \"X\": 0.7352922558784485,\n                        \"Y\": 0.4280215799808502\n                    },\n                    {\n                        \"X\": 0.7352922558784485,\n                        \"Y\": 0.43862855434417725\n                    },\n                    {\n                        \"X\": 0.6449447274208069,\n                        \"Y\": 0.43862855434417725\n                    }\n                ]\n            },\n            \"Id\": \"fadba1a2-fa35-4ecd-906c-ee5759c6e365\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f0e80c74-65b8-4eac-9093-37a3e9fe3075\",\n                        \"3ac127d9-a3d8-4e84-9d9c-ba8526ac1f1e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.37115478515625,\n            \"Text\": \"Value 3.2.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09048449248075485,\n                    \"Height\": 0.010620594024658203,\n                    \"Left\": 0.7887248396873474,\n                    \"Top\": 0.4280050992965698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7887248396873474,\n                        \"Y\": 0.4280050992965698\n                    },\n                    {\n                        \"X\": 0.8792093396186829,\n                        \"Y\": 0.4280050992965698\n                    },\n                    {\n                        \"X\": 0.8792093396186829,\n                        \"Y\": 0.438625693321228\n                    },\n                    {\n                        \"X\": 0.7887248396873474,\n                        \"Y\": 0.438625693321228\n                    }\n                ]\n            },\n            \"Id\": \"51778739-2fdb-437f-b05a-6dc7f898c7a1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6aa513d3-de6b-4ee8-9058-8cba7d4e9c4a\",\n                        \"b48d8334-b7aa-4193-bd49-afb7472a12d3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.43274688720703,\n            \"Text\": \"Value 3.3.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08987481892108917,\n                    \"Height\": 0.010449796915054321,\n                    \"Left\": 0.5009778141975403,\n                    \"Top\": 0.4457988142967224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009778141975403,\n                        \"Y\": 0.4457988142967224\n                    },\n                    {\n                        \"X\": 0.5908526182174683,\n                        \"Y\": 0.4457988142967224\n                    },\n                    {\n                        \"X\": 0.5908526182174683,\n                        \"Y\": 0.45624861121177673\n                    },\n                    {\n                        \"X\": 0.5009778141975403,\n                        \"Y\": 0.45624861121177673\n                    }\n                ]\n            },\n            \"Id\": \"05e98f5d-7e8e-4eed-ae31-ded5455b202c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13c810b3-dea3-47df-a779-b8825721cc97\",\n                        \"36bb668d-14c1-4cdf-9963-cf99e18c1ea3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.23455810546875,\n            \"Text\": \"Value 3.3.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09044109284877777,\n                    \"Height\": 0.010748535394668579,\n                    \"Left\": 0.6449540853500366,\n                    \"Top\": 0.44567692279815674\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6449540853500366,\n                        \"Y\": 0.44567692279815674\n                    },\n                    {\n                        \"X\": 0.7353951930999756,\n                        \"Y\": 0.44567692279815674\n                    },\n                    {\n                        \"X\": 0.7353951930999756,\n                        \"Y\": 0.4564254581928253\n                    },\n                    {\n                        \"X\": 0.6449540853500366,\n                        \"Y\": 0.4564254581928253\n                    }\n                ]\n            },\n            \"Id\": \"a4acfff0-0f0e-43ea-8d40-892b2cfbae0b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9892ddda-cfd9-4778-8392-48ec28248bc7\",\n                        \"e25e09e0-604e-4f80-b784-3c681fbf0aaf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.31925201416016,\n            \"Text\": \"Value 3.3.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09017989039421082,\n                    \"Height\": 0.010652720928192139,\n                    \"Left\": 0.7886477708816528,\n                    \"Top\": 0.44567546248435974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7886477708816528,\n                        \"Y\": 0.44567546248435974\n                    },\n                    {\n                        \"X\": 0.878827691078186,\n                        \"Y\": 0.44567546248435974\n                    },\n                    {\n                        \"X\": 0.878827691078186,\n                        \"Y\": 0.4563281834125519\n                    },\n                    {\n                        \"X\": 0.7886477708816528,\n                        \"Y\": 0.4563281834125519\n                    }\n                ]\n            },\n            \"Id\": \"fc768765-8877-43e4-be8b-cd6de55614c8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ec8ad23f-fa13-487e-a2f1-db7e226a1ac6\",\n                        \"04908b68-f914-49e3-bc2d-76eab2881c77\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71339416503906,\n            \"Text\": \"Value 3.4.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08957617729902267,\n                    \"Height\": 0.010553747415542603,\n                    \"Left\": 0.5010496377944946,\n                    \"Top\": 0.4634309411048889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5010496377944946,\n                        \"Y\": 0.4634309411048889\n                    },\n                    {\n                        \"X\": 0.5906258225440979,\n                        \"Y\": 0.4634309411048889\n                    },\n                    {\n                        \"X\": 0.5906258225440979,\n                        \"Y\": 0.4739846885204315\n                    },\n                    {\n                        \"X\": 0.5010496377944946,\n                        \"Y\": 0.4739846885204315\n                    }\n                ]\n            },\n            \"Id\": \"a6617bce-cf0a-418b-a452-c40da805b9c6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ea83c926-94ee-4ca9-b15b-49bbc085084c\",\n                        \"daf3395a-919f-4b84-87da-17e6d36779bb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.22984313964844,\n            \"Text\": \"Value 3.4.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0904318243265152,\n                    \"Height\": 0.010744273662567139,\n                    \"Left\": 0.6448435187339783,\n                    \"Top\": 0.4633525013923645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6448435187339783,\n                        \"Y\": 0.4633525013923645\n                    },\n                    {\n                        \"X\": 0.7352753281593323,\n                        \"Y\": 0.4633525013923645\n                    },\n                    {\n                        \"X\": 0.7352753281593323,\n                        \"Y\": 0.47409677505493164\n                    },\n                    {\n                        \"X\": 0.6448435187339783,\n                        \"Y\": 0.47409677505493164\n                    }\n                ]\n            },\n            \"Id\": \"61b84ff0-7ff2-4938-9183-616b87baaf94\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"600c1159-1eb5-4e4c-b069-319b2340b11a\",\n                        \"04174e7e-8be3-42a9-99c9-90e97b5da4f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.87337493896484,\n            \"Text\": \"Value 3.4.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09011298418045044,\n                    \"Height\": 0.010590910911560059,\n                    \"Left\": 0.7890411615371704,\n                    \"Top\": 0.4634063243865967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7890411615371704,\n                        \"Y\": 0.4634063243865967\n                    },\n                    {\n                        \"X\": 0.8791541457176208,\n                        \"Y\": 0.4634063243865967\n                    },\n                    {\n                        \"X\": 0.8791541457176208,\n                        \"Y\": 0.47399723529815674\n                    },\n                    {\n                        \"X\": 0.7890411615371704,\n                        \"Y\": 0.47399723529815674\n                    }\n                ]\n            },\n            \"Id\": \"5576430c-6338-4261-a3bc-d4a8b816369a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a34cd6f-eaca-438e-b9e2-21f8b20097d5\",\n                        \"9c680bd0-2ff3-425b-9b65-081504162922\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7052001953125,\n            \"Text\": \"Value 3.5.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08972048759460449,\n                    \"Height\": 0.010436839424073696,\n                    \"Left\": 0.5009509325027466,\n                    \"Top\": 0.48116788268089294\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009509325027466,\n                        \"Y\": 0.48116788268089294\n                    },\n                    {\n                        \"X\": 0.5906714200973511,\n                        \"Y\": 0.48116788268089294\n                    },\n                    {\n                        \"X\": 0.5906714200973511,\n                        \"Y\": 0.4916047155857086\n                    },\n                    {\n                        \"X\": 0.5009509325027466,\n                        \"Y\": 0.4916047155857086\n                    }\n                ]\n            },\n            \"Id\": \"57b350c6-89bf-4dbb-bd54-4a6d106e21e0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6ebf778b-6584-4ffe-b62c-e00a1cf863e1\",\n                        \"dcb79a5a-68d0-4baf-b899-031f5e46bf77\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.42252349853516,\n            \"Text\": \"Value 3.5.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09022399038076401,\n                    \"Height\": 0.010816812515258789,\n                    \"Left\": 0.6450666189193726,\n                    \"Top\": 0.4810165464878082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6450666189193726,\n                        \"Y\": 0.4810165464878082\n                    },\n                    {\n                        \"X\": 0.7352905869483948,\n                        \"Y\": 0.4810165464878082\n                    },\n                    {\n                        \"X\": 0.7352905869483948,\n                        \"Y\": 0.491833359003067\n                    },\n                    {\n                        \"X\": 0.6450666189193726,\n                        \"Y\": 0.491833359003067\n                    }\n                ]\n            },\n            \"Id\": \"ab7a6ea0-a6af-4e81-b3a9-a83cd16b6273\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ecc7cc6e-d73b-4d87-870c-c3a0dfb7b083\",\n                        \"3d82e70c-ae89-4038-ba31-8195121c3a51\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.53278350830078,\n            \"Text\": \"Value 3.5.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08964388817548752,\n                    \"Height\": 0.010581731796264648,\n                    \"Left\": 0.7890627980232239,\n                    \"Top\": 0.481067955493927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7890627980232239,\n                        \"Y\": 0.481067955493927\n                    },\n                    {\n                        \"X\": 0.878706693649292,\n                        \"Y\": 0.481067955493927\n                    },\n                    {\n                        \"X\": 0.878706693649292,\n                        \"Y\": 0.49164968729019165\n                    },\n                    {\n                        \"X\": 0.7890627980232239,\n                        \"Y\": 0.49164968729019165\n                    }\n                ]\n            },\n            \"Id\": \"a7fc62df-7f60-4bb0-b403-77f9d11b0019\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f30525f3-fd4f-49d3-928d-3c53832ed66e\",\n                        \"75468cab-5593-4a7b-a064-8b22a2f9cb17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.613525390625,\n            \"Text\": \"Value 3.6.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08948711305856705,\n                    \"Height\": 0.010437995195388794,\n                    \"Left\": 0.5010533928871155,\n                    \"Top\": 0.4987580478191376\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5010533928871155,\n                        \"Y\": 0.4987580478191376\n                    },\n                    {\n                        \"X\": 0.5905405282974243,\n                        \"Y\": 0.4987580478191376\n                    },\n                    {\n                        \"X\": 0.5905405282974243,\n                        \"Y\": 0.5091960430145264\n                    },\n                    {\n                        \"X\": 0.5010533928871155,\n                        \"Y\": 0.5091960430145264\n                    }\n                ]\n            },\n            \"Id\": \"59633a32-8e9f-430a-ad99-5e99d5b74556\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"276d4a02-dd28-4cf2-8f6c-72c936f4503d\",\n                        \"99d44d82-b035-4f42-9a50-87075e54bd26\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.31123352050781,\n            \"Text\": \"Value 3.6.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09031175822019577,\n                    \"Height\": 0.010628283023834229,\n                    \"Left\": 0.6449441909790039,\n                    \"Top\": 0.4986632466316223\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6449441909790039,\n                        \"Y\": 0.4986632466316223\n                    },\n                    {\n                        \"X\": 0.7352559566497803,\n                        \"Y\": 0.4986632466316223\n                    },\n                    {\n                        \"X\": 0.7352559566497803,\n                        \"Y\": 0.5092915296554565\n                    },\n                    {\n                        \"X\": 0.6449441909790039,\n                        \"Y\": 0.5092915296554565\n                    }\n                ]\n            },\n            \"Id\": \"39c06663-927e-4173-a0a2-ef6c102e6501\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f9624f28-97f2-429b-9b83-b06d22eb62fb\",\n                        \"e5b1741a-afc1-4938-a551-03a1ecf563bc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.17884826660156,\n            \"Text\": \"Value 3.6.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09000393003225327,\n                    \"Height\": 0.01059106457978487,\n                    \"Left\": 0.7889751195907593,\n                    \"Top\": 0.4986734092235565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7889751195907593,\n                        \"Y\": 0.4986734092235565\n                    },\n                    {\n                        \"X\": 0.8789790272712708,\n                        \"Y\": 0.4986734092235565\n                    },\n                    {\n                        \"X\": 0.8789790272712708,\n                        \"Y\": 0.5092644691467285\n                    },\n                    {\n                        \"X\": 0.7889751195907593,\n                        \"Y\": 0.5092644691467285\n                    }\n                ]\n            },\n            \"Id\": \"32721c67-36e1-4be5-8be2-32606cb72993\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f76ebd64-3e67-47d8-a338-261c293d666a\",\n                        \"6c57f761-5373-435f-b756-185c5959561d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.52881622314453,\n            \"Text\": \"Value 3.7.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08997130393981934,\n                    \"Height\": 0.010337297804653645,\n                    \"Left\": 0.5009969472885132,\n                    \"Top\": 0.516635537147522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009969472885132,\n                        \"Y\": 0.516635537147522\n                    },\n                    {\n                        \"X\": 0.5909682512283325,\n                        \"Y\": 0.516635537147522\n                    },\n                    {\n                        \"X\": 0.5909682512283325,\n                        \"Y\": 0.5269728302955627\n                    },\n                    {\n                        \"X\": 0.5009969472885132,\n                        \"Y\": 0.5269728302955627\n                    }\n                ]\n            },\n            \"Id\": \"df0cc45f-d8a0-4d8d-a7bf-314a14e44fc8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5650beb3-91cd-49df-9749-ac4ba1822b5f\",\n                        \"98491252-8cfc-4a02-a882-8c160f1e0e2a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.42794799804688,\n            \"Text\": \"Value 3.7.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09020774811506271,\n                    \"Height\": 0.010550592094659805,\n                    \"Left\": 0.6451640725135803,\n                    \"Top\": 0.516469419002533\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6451640725135803,\n                        \"Y\": 0.516469419002533\n                    },\n                    {\n                        \"X\": 0.7353718280792236,\n                        \"Y\": 0.516469419002533\n                    },\n                    {\n                        \"X\": 0.7353718280792236,\n                        \"Y\": 0.5270199775695801\n                    },\n                    {\n                        \"X\": 0.6451640725135803,\n                        \"Y\": 0.5270199775695801\n                    }\n                ]\n            },\n            \"Id\": \"67a23e16-f9b8-4832-a0f2-3b8cf52f5665\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5020f8fe-82fd-4551-9f80-f53a1fe5e0d4\",\n                        \"749e3c4f-8847-4d90-b837-2fa48d0b2784\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.47469329833984,\n            \"Text\": \"Value 3.7.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0899261012673378,\n                    \"Height\": 0.010457530617713928,\n                    \"Left\": 0.78884357213974,\n                    \"Top\": 0.5165274143218994\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.78884357213974,\n                        \"Y\": 0.5165274143218994\n                    },\n                    {\n                        \"X\": 0.8787696957588196,\n                        \"Y\": 0.5165274143218994\n                    },\n                    {\n                        \"X\": 0.8787696957588196,\n                        \"Y\": 0.5269849300384521\n                    },\n                    {\n                        \"X\": 0.78884357213974,\n                        \"Y\": 0.5269849300384521\n                    }\n                ]\n            },\n            \"Id\": \"c0195caa-81b2-4844-8c4e-fc5590a34e0a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2995096-1132-48d3-980a-894f7d1f6561\",\n                        \"242b7d0b-69cb-4c5c-bc82-53c34476ed9e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.67028045654297,\n            \"Text\": \"Value 3.8.1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08949312567710876,\n                    \"Height\": 0.010331332683563232,\n                    \"Left\": 0.5010542869567871,\n                    \"Top\": 0.5341706275939941\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5010542869567871,\n                        \"Y\": 0.5341706275939941\n                    },\n                    {\n                        \"X\": 0.5905474424362183,\n                        \"Y\": 0.5341706275939941\n                    },\n                    {\n                        \"X\": 0.5905474424362183,\n                        \"Y\": 0.5445019602775574\n                    },\n                    {\n                        \"X\": 0.5010542869567871,\n                        \"Y\": 0.5445019602775574\n                    }\n                ]\n            },\n            \"Id\": \"aba0e893-9277-4eb2-b577-a640d1635b32\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"02a046db-40b9-4fb0-ad53-e32754db8771\",\n                        \"eea99159-5c3e-456c-ae0f-9d8b3e19587e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.57122802734375,\n            \"Text\": \"Value 3.8.2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09018313884735107,\n                    \"Height\": 0.010514641180634499,\n                    \"Left\": 0.6451624631881714,\n                    \"Top\": 0.5340661406517029\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6451624631881714,\n                        \"Y\": 0.5340661406517029\n                    },\n                    {\n                        \"X\": 0.7353456020355225,\n                        \"Y\": 0.5340661406517029\n                    },\n                    {\n                        \"X\": 0.7353456020355225,\n                        \"Y\": 0.5445807576179504\n                    },\n                    {\n                        \"X\": 0.6451624631881714,\n                        \"Y\": 0.5445807576179504\n                    }\n                ]\n            },\n            \"Id\": \"cbc793ff-74be-4a53-9c98-fc66c144a2c6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"37ee624a-71a6-410c-8f26-1aae5de76465\",\n                        \"868a32c9-84a1-4a58-922a-dd7428858bac\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55706024169922,\n            \"Text\": \"Value 3.8.3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08995514363050461,\n                    \"Height\": 0.010519489645957947,\n                    \"Left\": 0.7889222502708435,\n                    \"Top\": 0.5341439843177795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7889222502708435,\n                        \"Y\": 0.5341439843177795\n                    },\n                    {\n                        \"X\": 0.8788774013519287,\n                        \"Y\": 0.5341439843177795\n                    },\n                    {\n                        \"X\": 0.8788774013519287,\n                        \"Y\": 0.5446634888648987\n                    },\n                    {\n                        \"X\": 0.7889222502708435,\n                        \"Y\": 0.5446634888648987\n                    }\n                ]\n            },\n            \"Id\": \"94e5646d-cd79-4332-a53f-7fbaf0791ed3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"86d46545-1bde-4f87-926d-8f53979689f3\",\n                        \"0161dc75-cb31-417f-a341-ce9e6ff58dcb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6238021850586,\n            \"Text\": \"YES: checked\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10528641194105148,\n                    \"Height\": 0.011195693165063858,\n                    \"Left\": 0.07708633691072464,\n                    \"Top\": 0.5485238432884216\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07708633691072464,\n                        \"Y\": 0.5485238432884216\n                    },\n                    {\n                        \"X\": 0.18237274885177612,\n                        \"Y\": 0.5485238432884216\n                    },\n                    {\n                        \"X\": 0.18237274885177612,\n                        \"Y\": 0.5597195625305176\n                    },\n                    {\n                        \"X\": 0.07708633691072464,\n                        \"Y\": 0.5597195625305176\n                    }\n                ]\n            },\n            \"Id\": \"4403bd71-13f8-4d0c-882d-dbf497ca1701\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ec65266-a74f-4682-86d3-1090f187c674\",\n                        \"bf5c7ac8-def7-4dc0-8ae8-90fb53ba952b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84101867675781,\n            \"Text\": \"NO: not-checked\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13445790112018585,\n                    \"Height\": 0.010898172855377197,\n                    \"Left\": 0.07648774236440659,\n                    \"Top\": 0.5649036169052124\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07648774236440659,\n                        \"Y\": 0.5649036169052124\n                    },\n                    {\n                        \"X\": 0.21094563603401184,\n                        \"Y\": 0.5649036169052124\n                    },\n                    {\n                        \"X\": 0.21094563603401184,\n                        \"Y\": 0.5758017897605896\n                    },\n                    {\n                        \"X\": 0.07648774236440659,\n                        \"Y\": 0.5758017897605896\n                    }\n                ]\n            },\n            \"Id\": \"ed1df829-f3f8-438b-b71c-9ce61bcc1849\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a87dccf8-8e8e-4a51-842f-d6a62725ba8f\",\n                        \"e0f5935c-17ae-440e-b618-2c5f7e8700da\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.49506378173828,\n            \"Text\": \"Date:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.042376160621643066,\n                    \"Height\": 0.010916126891970634,\n                    \"Left\": 0.7542068362236023,\n                    \"Top\": 0.03331288322806358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7542068362236023,\n                        \"Y\": 0.03331288322806358\n                    },\n                    {\n                        \"X\": 0.7965829968452454,\n                        \"Y\": 0.03331288322806358\n                    },\n                    {\n                        \"X\": 0.7965829968452454,\n                        \"Y\": 0.04422900825738907\n                    },\n                    {\n                        \"X\": 0.7542068362236023,\n                        \"Y\": 0.04422900825738907\n                    }\n                ]\n            },\n            \"Id\": \"c5c0db6d-136e-48bd-bd3d-51b3eb66cbff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.79719543457031,\n            \"Text\": \"2020-03-27\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09217820316553116,\n                    \"Height\": 0.010629097931087017,\n                    \"Left\": 0.8017020225524902,\n                    \"Top\": 0.033448249101638794\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8017020225524902,\n                        \"Y\": 0.033448249101638794\n                    },\n                    {\n                        \"X\": 0.8938801884651184,\n                        \"Y\": 0.033448249101638794\n                    },\n                    {\n                        \"X\": 0.8938801884651184,\n                        \"Y\": 0.044077347964048386\n                    },\n                    {\n                        \"X\": 0.8017020225524902,\n                        \"Y\": 0.044077347964048386\n                    }\n                ]\n            },\n            \"Id\": \"9698fe86-3b26-4320-ae95-6bf357d8a20c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.42241668701172,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05245928093791008,\n                    \"Height\": 0.010426528751850128,\n                    \"Left\": 0.08570101112127304,\n                    \"Top\": 0.06095510721206665\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08570101112127304,\n                        \"Y\": 0.06095510721206665\n                    },\n                    {\n                        \"X\": 0.13816028833389282,\n                        \"Y\": 0.06095510721206665\n                    },\n                    {\n                        \"X\": 0.13816028833389282,\n                        \"Y\": 0.07138163596391678\n                    },\n                    {\n                        \"X\": 0.08570101112127304,\n                        \"Y\": 0.07138163596391678\n                    }\n                ]\n            },\n            \"Id\": \"5e433305-2585-455c-b8f0-3b7afae91e2c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65409088134766,\n            \"Text\": \"SomeName\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09435348212718964,\n                    \"Height\": 0.0105624720454216,\n                    \"Left\": 0.14192268252372742,\n                    \"Top\": 0.060842134058475494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14192268252372742,\n                        \"Y\": 0.060842134058475494\n                    },\n                    {\n                        \"X\": 0.23627616465091705,\n                        \"Y\": 0.060842134058475494\n                    },\n                    {\n                        \"X\": 0.23627616465091705,\n                        \"Y\": 0.0714046061038971\n                    },\n                    {\n                        \"X\": 0.14192268252372742,\n                        \"Y\": 0.0714046061038971\n                    }\n                ]\n            },\n            \"Id\": \"37278ca4-ae2d-4b26-840a-9faa31beb9b8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90027618408203,\n            \"Text\": \"Key1:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043158598244190216,\n                    \"Height\": 0.013060489669442177,\n                    \"Left\": 0.7581079006195068,\n                    \"Top\": 0.08785159140825272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7581079006195068,\n                        \"Y\": 0.08785159140825272\n                    },\n                    {\n                        \"X\": 0.8012664914131165,\n                        \"Y\": 0.08785159140825272\n                    },\n                    {\n                        \"X\": 0.8012664914131165,\n                        \"Y\": 0.10091207921504974\n                    },\n                    {\n                        \"X\": 0.7581079006195068,\n                        \"Y\": 0.10091207921504974\n                    }\n                ]\n            },\n            \"Id\": \"4096d8d9-c7d7-4136-84a7-64baa8928609\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5029525756836,\n            \"Text\": \"value1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05468013137578964,\n                    \"Height\": 0.010883876122534275,\n                    \"Left\": 0.8049346208572388,\n                    \"Top\": 0.08769001066684723\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8049346208572388,\n                        \"Y\": 0.08769001066684723\n                    },\n                    {\n                        \"X\": 0.8596147298812866,\n                        \"Y\": 0.08769001066684723\n                    },\n                    {\n                        \"X\": 0.8596147298812866,\n                        \"Y\": 0.09857388585805893\n                    },\n                    {\n                        \"X\": 0.8049346208572388,\n                        \"Y\": 0.09857388585805893\n                    }\n                ]\n            },\n            \"Id\": \"262feb10-ecc6-420e-aa55-33adc2f8c6c0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 90.33039093017578,\n            \"Text\": \"Key2:value2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.102190300822258,\n                    \"Height\": 0.013424980454146862,\n                    \"Left\": 0.757502019405365,\n                    \"Top\": 0.11186148971319199\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.757502019405365,\n                        \"Y\": 0.11186148971319199\n                    },\n                    {\n                        \"X\": 0.8596922755241394,\n                        \"Y\": 0.11186148971319199\n                    },\n                    {\n                        \"X\": 0.8596922755241394,\n                        \"Y\": 0.12528647482395172\n                    },\n                    {\n                        \"X\": 0.757502019405365,\n                        \"Y\": 0.12528647482395172\n                    }\n                ]\n            },\n            \"Id\": \"25b54fea-ae51-4f79-adf0-c144c026b248\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71378326416016,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04604412987828255,\n                    \"Height\": 0.01046265009790659,\n                    \"Left\": 0.10996533930301666,\n                    \"Top\": 0.15750041604042053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10996533930301666,\n                        \"Y\": 0.15750041604042053\n                    },\n                    {\n                        \"X\": 0.1560094654560089,\n                        \"Y\": 0.15750041604042053\n                    },\n                    {\n                        \"X\": 0.1560094654560089,\n                        \"Y\": 0.16796307265758514\n                    },\n                    {\n                        \"X\": 0.10996533930301666,\n                        \"Y\": 0.16796307265758514\n                    }\n                ]\n            },\n            \"Id\": \"693718a3-d8d9-4ea2-9439-cfa7afb4fdae\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.86699676513672,\n            \"Text\": \"1.1.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03863447904586792,\n                    \"Height\": 0.009942100383341312,\n                    \"Left\": 0.16177524626255035,\n                    \"Top\": 0.1578865498304367\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16177524626255035,\n                        \"Y\": 0.1578865498304367\n                    },\n                    {\n                        \"X\": 0.20040972530841827,\n                        \"Y\": 0.1578865498304367\n                    },\n                    {\n                        \"X\": 0.20040972530841827,\n                        \"Y\": 0.16782864928245544\n                    },\n                    {\n                        \"X\": 0.16177524626255035,\n                        \"Y\": 0.16782864928245544\n                    }\n                ]\n            },\n            \"Id\": \"20477be6-5cdb-4f57-a4b8-56b82dd30f4f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68464660644531,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046376701444387436,\n                    \"Height\": 0.010304490104317665,\n                    \"Left\": 0.21957671642303467,\n                    \"Top\": 0.1575348675251007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21957671642303467,\n                        \"Y\": 0.1575348675251007\n                    },\n                    {\n                        \"X\": 0.2659534215927124,\n                        \"Y\": 0.1575348675251007\n                    },\n                    {\n                        \"X\": 0.2659534215927124,\n                        \"Y\": 0.16783936321735382\n                    },\n                    {\n                        \"X\": 0.21957671642303467,\n                        \"Y\": 0.16783936321735382\n                    }\n                ]\n            },\n            \"Id\": \"de3490e5-06c8-4b5e-a2ed-9d71fbd61669\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.39278411865234,\n            \"Text\": \"1.1.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03856068104505539,\n                    \"Height\": 0.010068920440971851,\n                    \"Left\": 0.2713058888912201,\n                    \"Top\": 0.15771366655826569\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2713058888912201,\n                        \"Y\": 0.15771366655826569\n                    },\n                    {\n                        \"X\": 0.3098665773868561,\n                        \"Y\": 0.15771366655826569\n                    },\n                    {\n                        \"X\": 0.3098665773868561,\n                        \"Y\": 0.16778258979320526\n                    },\n                    {\n                        \"X\": 0.2713058888912201,\n                        \"Y\": 0.16778258979320526\n                    }\n                ]\n            },\n            \"Id\": \"769bc278-3759-4d7c-b766-4dd648fff7c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56538391113281,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04571335017681122,\n                    \"Height\": 0.01008445955812931,\n                    \"Left\": 0.3296671509742737,\n                    \"Top\": 0.15744420886039734\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3296671509742737,\n                        \"Y\": 0.15744420886039734\n                    },\n                    {\n                        \"X\": 0.3753804862499237,\n                        \"Y\": 0.15744420886039734\n                    },\n                    {\n                        \"X\": 0.3753804862499237,\n                        \"Y\": 0.1675286740064621\n                    },\n                    {\n                        \"X\": 0.3296671509742737,\n                        \"Y\": 0.1675286740064621\n                    }\n                ]\n            },\n            \"Id\": \"a2add06a-d7e5-4f51-be46-00ffcb8f062e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.32353973388672,\n            \"Text\": \"1.1.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0382918082177639,\n                    \"Height\": 0.009975399821996689,\n                    \"Left\": 0.38106343150138855,\n                    \"Top\": 0.15785343945026398\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38106343150138855,\n                        \"Y\": 0.15785343945026398\n                    },\n                    {\n                        \"X\": 0.41935524344444275,\n                        \"Y\": 0.15785343945026398\n                    },\n                    {\n                        \"X\": 0.41935524344444275,\n                        \"Y\": 0.16782884299755096\n                    },\n                    {\n                        \"X\": 0.38106343150138855,\n                        \"Y\": 0.16782884299755096\n                    }\n                ]\n            },\n            \"Id\": \"bbf1f43e-b02a-4b0b-8bb9-e776a740dd29\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78055572509766,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045779574662446976,\n                    \"Height\": 0.010181560181081295,\n                    \"Left\": 0.10996827483177185,\n                    \"Top\": 0.17520037293434143\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10996827483177185,\n                        \"Y\": 0.17520037293434143\n                    },\n                    {\n                        \"X\": 0.15574784576892853,\n                        \"Y\": 0.17520037293434143\n                    },\n                    {\n                        \"X\": 0.15574784576892853,\n                        \"Y\": 0.1853819340467453\n                    },\n                    {\n                        \"X\": 0.10996827483177185,\n                        \"Y\": 0.1853819340467453\n                    }\n                ]\n            },\n            \"Id\": \"62f193ef-e7b5-4c13-b7a0-ecbe1a03649a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.19034576416016,\n            \"Text\": \"1.2.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03842192888259888,\n                    \"Height\": 0.010137559846043587,\n                    \"Left\": 0.16142453253269196,\n                    \"Top\": 0.1753779500722885\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16142453253269196,\n                        \"Y\": 0.1753779500722885\n                    },\n                    {\n                        \"X\": 0.19984646141529083,\n                        \"Y\": 0.1753779500722885\n                    },\n                    {\n                        \"X\": 0.19984646141529083,\n                        \"Y\": 0.18551550805568695\n                    },\n                    {\n                        \"X\": 0.16142453253269196,\n                        \"Y\": 0.18551550805568695\n                    }\n                ]\n            },\n            \"Id\": \"5d5b7d86-c4e2-4d80-aab1-eb46edbb80ed\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77498626708984,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046515341848134995,\n                    \"Height\": 0.010159879922866821,\n                    \"Left\": 0.21950756013393402,\n                    \"Top\": 0.1752668023109436\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21950756013393402,\n                        \"Y\": 0.1752668023109436\n                    },\n                    {\n                        \"X\": 0.2660228908061981,\n                        \"Y\": 0.1752668023109436\n                    },\n                    {\n                        \"X\": 0.2660228908061981,\n                        \"Y\": 0.18542668223381042\n                    },\n                    {\n                        \"X\": 0.21950756013393402,\n                        \"Y\": 0.18542668223381042\n                    }\n                ]\n            },\n            \"Id\": \"a9fdd78a-ab2d-4c9f-afb6-97b323d1619b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.42559814453125,\n            \"Text\": \"1.2.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03884410113096237,\n                    \"Height\": 0.009789139963686466,\n                    \"Left\": 0.2711837887763977,\n                    \"Top\": 0.1754995584487915\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2711837887763977,\n                        \"Y\": 0.1754995584487915\n                    },\n                    {\n                        \"X\": 0.3100278973579407,\n                        \"Y\": 0.1754995584487915\n                    },\n                    {\n                        \"X\": 0.3100278973579407,\n                        \"Y\": 0.1852886974811554\n                    },\n                    {\n                        \"X\": 0.2711837887763977,\n                        \"Y\": 0.1852886974811554\n                    }\n                ]\n            },\n            \"Id\": \"bcef7e2f-b821-496e-8416-b76afc942fd2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6119384765625,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045936740934848785,\n                    \"Height\": 0.01012708991765976,\n                    \"Left\": 0.3293275237083435,\n                    \"Top\": 0.1752515435218811\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3293275237083435,\n                        \"Y\": 0.1752515435218811\n                    },\n                    {\n                        \"X\": 0.3752642571926117,\n                        \"Y\": 0.1752515435218811\n                    },\n                    {\n                        \"X\": 0.3752642571926117,\n                        \"Y\": 0.18537862598896027\n                    },\n                    {\n                        \"X\": 0.3293275237083435,\n                        \"Y\": 0.18537862598896027\n                    }\n                ]\n            },\n            \"Id\": \"7eb4e511-3091-4b79-afc3-b2730b6b9fca\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.09342193603516,\n            \"Text\": \"1.2.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038963768631219864,\n                    \"Height\": 0.010046900250017643,\n                    \"Left\": 0.3804951012134552,\n                    \"Top\": 0.17539532482624054\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3804951012134552,\n                        \"Y\": 0.17539532482624054\n                    },\n                    {\n                        \"X\": 0.41945886611938477,\n                        \"Y\": 0.17539532482624054\n                    },\n                    {\n                        \"X\": 0.41945886611938477,\n                        \"Y\": 0.1854422241449356\n                    },\n                    {\n                        \"X\": 0.3804951012134552,\n                        \"Y\": 0.1854422241449356\n                    }\n                ]\n            },\n            \"Id\": \"17fc7483-8c94-4585-b517-85e567a8c4e7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78971862792969,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04569195955991745,\n                    \"Height\": 0.010246570222079754,\n                    \"Left\": 0.11013281345367432,\n                    \"Top\": 0.19289986789226532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11013281345367432,\n                        \"Y\": 0.19289986789226532\n                    },\n                    {\n                        \"X\": 0.15582476556301117,\n                        \"Y\": 0.19289986789226532\n                    },\n                    {\n                        \"X\": 0.15582476556301117,\n                        \"Y\": 0.20314644277095795\n                    },\n                    {\n                        \"X\": 0.11013281345367432,\n                        \"Y\": 0.20314644277095795\n                    }\n                ]\n            },\n            \"Id\": \"0a55b010-3182-402f-97d1-66b1c1c0d1a7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.62911224365234,\n            \"Text\": \"1.3.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03864271938800812,\n                    \"Height\": 0.010178189724683762,\n                    \"Left\": 0.1615937203168869,\n                    \"Top\": 0.19301681220531464\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1615937203168869,\n                        \"Y\": 0.19301681220531464\n                    },\n                    {\n                        \"X\": 0.20023643970489502,\n                        \"Y\": 0.19301681220531464\n                    },\n                    {\n                        \"X\": 0.20023643970489502,\n                        \"Y\": 0.2031950056552887\n                    },\n                    {\n                        \"X\": 0.1615937203168869,\n                        \"Y\": 0.2031950056552887\n                    }\n                ]\n            },\n            \"Id\": \"943bbaad-f70d-4b4e-a68f-3a3af8463a0b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76148223876953,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045995041728019714,\n                    \"Height\": 0.010228520259261131,\n                    \"Left\": 0.21970826387405396,\n                    \"Top\": 0.19291900098323822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21970826387405396,\n                        \"Y\": 0.19291900098323822\n                    },\n                    {\n                        \"X\": 0.2657032907009125,\n                        \"Y\": 0.19291900098323822\n                    },\n                    {\n                        \"X\": 0.2657032907009125,\n                        \"Y\": 0.2031475156545639\n                    },\n                    {\n                        \"X\": 0.21970826387405396,\n                        \"Y\": 0.2031475156545639\n                    }\n                ]\n            },\n            \"Id\": \"b3d78e15-4124-4ec6-b39a-8ad528e3d54d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.05184173583984,\n            \"Text\": \"1.3.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03854794055223465,\n                    \"Height\": 0.009979460388422012,\n                    \"Left\": 0.27124178409576416,\n                    \"Top\": 0.19313256442546844\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27124178409576416,\n                        \"Y\": 0.19313256442546844\n                    },\n                    {\n                        \"X\": 0.3097897171974182,\n                        \"Y\": 0.19313256442546844\n                    },\n                    {\n                        \"X\": 0.3097897171974182,\n                        \"Y\": 0.20311202108860016\n                    },\n                    {\n                        \"X\": 0.27124178409576416,\n                        \"Y\": 0.20311202108860016\n                    }\n                ]\n            },\n            \"Id\": \"7598e24c-3b6b-4b02-b842-981d2a9457a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62776947021484,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045773960649967194,\n                    \"Height\": 0.01024817954748869,\n                    \"Left\": 0.3294762074947357,\n                    \"Top\": 0.19291351735591888\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3294762074947357,\n                        \"Y\": 0.19291351735591888\n                    },\n                    {\n                        \"X\": 0.3752501606941223,\n                        \"Y\": 0.19291351735591888\n                    },\n                    {\n                        \"X\": 0.3752501606941223,\n                        \"Y\": 0.20316170156002045\n                    },\n                    {\n                        \"X\": 0.3294762074947357,\n                        \"Y\": 0.20316170156002045\n                    }\n                ]\n            },\n            \"Id\": \"280a2f4f-d07c-4221-b384-787044a31bbc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.49051666259766,\n            \"Text\": \"1.3.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03818526864051819,\n                    \"Height\": 0.010222669690847397,\n                    \"Left\": 0.38095465302467346,\n                    \"Top\": 0.1930178999900818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38095465302467346,\n                        \"Y\": 0.1930178999900818\n                    },\n                    {\n                        \"X\": 0.41913992166519165,\n                        \"Y\": 0.1930178999900818\n                    },\n                    {\n                        \"X\": 0.41913992166519165,\n                        \"Y\": 0.20324057340621948\n                    },\n                    {\n                        \"X\": 0.38095465302467346,\n                        \"Y\": 0.20324057340621948\n                    }\n                ]\n            },\n            \"Id\": \"60654585-6a37-46a1-8f95-36a4f2ad9fb1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82653045654297,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053796958178281784,\n                    \"Height\": 0.011909379623830318,\n                    \"Left\": 0.3488728404045105,\n                    \"Top\": 0.23571865260601044\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3488728404045105,\n                        \"Y\": 0.23571865260601044\n                    },\n                    {\n                        \"X\": 0.4026697874069214,\n                        \"Y\": 0.23571865260601044\n                    },\n                    {\n                        \"X\": 0.4026697874069214,\n                        \"Y\": 0.24762803316116333\n                    },\n                    {\n                        \"X\": 0.3488728404045105,\n                        \"Y\": 0.24762803316116333\n                    }\n                ]\n            },\n            \"Id\": \"b1d0740a-5ef7-4226-91df-e18c10a29a58\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.2075424194336,\n            \"Text\": \"2.1.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04628150910139084,\n                    \"Height\": 0.011547350324690342,\n                    \"Left\": 0.40848612785339355,\n                    \"Top\": 0.2360585331916809\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40848612785339355,\n                        \"Y\": 0.2360585331916809\n                    },\n                    {\n                        \"X\": 0.454767644405365,\n                        \"Y\": 0.2360585331916809\n                    },\n                    {\n                        \"X\": 0.454767644405365,\n                        \"Y\": 0.24760587513446808\n                    },\n                    {\n                        \"X\": 0.40848612785339355,\n                        \"Y\": 0.24760587513446808\n                    }\n                ]\n            },\n            \"Id\": \"5ad4f3f8-c688-46f9-b3c6-7a500af8030b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80813598632812,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0540800504386425,\n                    \"Height\": 0.012076090089976788,\n                    \"Left\": 0.47313034534454346,\n                    \"Top\": 0.23562827706336975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47313034534454346,\n                        \"Y\": 0.23562827706336975\n                    },\n                    {\n                        \"X\": 0.5272104144096375,\n                        \"Y\": 0.23562827706336975\n                    },\n                    {\n                        \"X\": 0.5272104144096375,\n                        \"Y\": 0.2477043718099594\n                    },\n                    {\n                        \"X\": 0.47313034534454346,\n                        \"Y\": 0.2477043718099594\n                    }\n                ]\n            },\n            \"Id\": \"057fce31-3320-4aad-8a81-59596d5b1dcb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.28865814208984,\n            \"Text\": \"2.1.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04634924978017807,\n                    \"Height\": 0.01157405972480774,\n                    \"Left\": 0.5324368476867676,\n                    \"Top\": 0.23596081137657166\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5324368476867676,\n                        \"Y\": 0.23596081137657166\n                    },\n                    {\n                        \"X\": 0.5787860751152039,\n                        \"Y\": 0.23596081137657166\n                    },\n                    {\n                        \"X\": 0.5787860751152039,\n                        \"Y\": 0.2475348711013794\n                    },\n                    {\n                        \"X\": 0.5324368476867676,\n                        \"Y\": 0.2475348711013794\n                    }\n                ]\n            },\n            \"Id\": \"68f04b27-586d-4630-9d41-6a07c0100b51\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79203033447266,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05396723002195358,\n                    \"Height\": 0.012077519670128822,\n                    \"Left\": 0.597499668598175,\n                    \"Top\": 0.23563411831855774\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.597499668598175,\n                        \"Y\": 0.23563411831855774\n                    },\n                    {\n                        \"X\": 0.6514669060707092,\n                        \"Y\": 0.23563411831855774\n                    },\n                    {\n                        \"X\": 0.6514669060707092,\n                        \"Y\": 0.247711643576622\n                    },\n                    {\n                        \"X\": 0.597499668598175,\n                        \"Y\": 0.247711643576622\n                    }\n                ]\n            },\n            \"Id\": \"334f895e-30c6-4df5-aacb-0cf231b620af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2537612915039,\n            \"Text\": \"2.1.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045667439699172974,\n                    \"Height\": 0.011661339551210403,\n                    \"Left\": 0.657193660736084,\n                    \"Top\": 0.23603498935699463\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.657193660736084,\n                        \"Y\": 0.23603498935699463\n                    },\n                    {\n                        \"X\": 0.7028610706329346,\n                        \"Y\": 0.23603498935699463\n                    },\n                    {\n                        \"X\": 0.7028610706329346,\n                        \"Y\": 0.24769632518291473\n                    },\n                    {\n                        \"X\": 0.657193660736084,\n                        \"Y\": 0.24769632518291473\n                    }\n                ]\n            },\n            \"Id\": \"6291ad39-03aa-4ab6-a8e4-63b5b6b26f94\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.760009765625,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05447776988148689,\n                    \"Height\": 0.012122049927711487,\n                    \"Left\": 0.7210274338722229,\n                    \"Top\": 0.23564797639846802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7210274338722229,\n                        \"Y\": 0.23564797639846802\n                    },\n                    {\n                        \"X\": 0.7755051851272583,\n                        \"Y\": 0.23564797639846802\n                    },\n                    {\n                        \"X\": 0.7755051851272583,\n                        \"Y\": 0.2477700263261795\n                    },\n                    {\n                        \"X\": 0.7210274338722229,\n                        \"Y\": 0.2477700263261795\n                    }\n                ]\n            },\n            \"Id\": \"fd763da3-32a8-461a-92bd-174ad0e030fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.47083282470703,\n            \"Text\": \"2.1.4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04653400182723999,\n                    \"Height\": 0.011756939813494682,\n                    \"Left\": 0.7806973457336426,\n                    \"Top\": 0.235946387052536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7806973457336426,\n                        \"Y\": 0.235946387052536\n                    },\n                    {\n                        \"X\": 0.8272313475608826,\n                        \"Y\": 0.235946387052536\n                    },\n                    {\n                        \"X\": 0.8272313475608826,\n                        \"Y\": 0.24770332872867584\n                    },\n                    {\n                        \"X\": 0.7806973457336426,\n                        \"Y\": 0.24770332872867584\n                    }\n                ]\n            },\n            \"Id\": \"022a6e3a-d0d5-491f-bd07-c7a9f672ccae\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79320526123047,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054405100643634796,\n                    \"Height\": 0.012087649665772915,\n                    \"Left\": 0.8453003168106079,\n                    \"Top\": 0.23561464250087738\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8453003168106079,\n                        \"Y\": 0.23561464250087738\n                    },\n                    {\n                        \"X\": 0.8997054100036621,\n                        \"Y\": 0.23561464250087738\n                    },\n                    {\n                        \"X\": 0.8997054100036621,\n                        \"Y\": 0.24770228564739227\n                    },\n                    {\n                        \"X\": 0.8453003168106079,\n                        \"Y\": 0.24770228564739227\n                    }\n                ]\n            },\n            \"Id\": \"2f2d8ba1-da3d-47ae-ad9a-40037c9ab97f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.38909149169922,\n            \"Text\": \"2.1.5\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04580039903521538,\n                    \"Height\": 0.01184805016964674,\n                    \"Left\": 0.9053084850311279,\n                    \"Top\": 0.23588116466999054\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9053084850311279,\n                        \"Y\": 0.23588116466999054\n                    },\n                    {\n                        \"X\": 0.9511088728904724,\n                        \"Y\": 0.23588116466999054\n                    },\n                    {\n                        \"X\": 0.9511088728904724,\n                        \"Y\": 0.24772921204566956\n                    },\n                    {\n                        \"X\": 0.9053084850311279,\n                        \"Y\": 0.24772921204566956\n                    }\n                ]\n            },\n            \"Id\": \"991f2310-4c94-4cfe-9fce-3f0197eaa5f0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89319610595703,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053253378719091415,\n                    \"Height\": 0.012048560194671154,\n                    \"Left\": 0.3493971824645996,\n                    \"Top\": 0.2560810446739197\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3493971824645996,\n                        \"Y\": 0.2560810446739197\n                    },\n                    {\n                        \"X\": 0.4026505649089813,\n                        \"Y\": 0.2560810446739197\n                    },\n                    {\n                        \"X\": 0.4026505649089813,\n                        \"Y\": 0.2681295871734619\n                    },\n                    {\n                        \"X\": 0.3493971824645996,\n                        \"Y\": 0.2681295871734619\n                    }\n                ]\n            },\n            \"Id\": \"262a77db-ae01-43ee-98b9-a5d30be484fc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.08287048339844,\n            \"Text\": \"2.2.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045830581337213516,\n                    \"Height\": 0.011588499881327152,\n                    \"Left\": 0.4086907207965851,\n                    \"Top\": 0.2564401924610138\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4086907207965851,\n                        \"Y\": 0.2564401924610138\n                    },\n                    {\n                        \"X\": 0.4545212984085083,\n                        \"Y\": 0.2564401924610138\n                    },\n                    {\n                        \"X\": 0.4545212984085083,\n                        \"Y\": 0.26802870631217957\n                    },\n                    {\n                        \"X\": 0.4086907207965851,\n                        \"Y\": 0.26802870631217957\n                    }\n                ]\n            },\n            \"Id\": \"ec9df24b-4223-4ea9-afd9-1e8dd7f7316a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76856994628906,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054104678332805634,\n                    \"Height\": 0.012222640216350555,\n                    \"Left\": 0.4734887182712555,\n                    \"Top\": 0.25603875517845154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4734887182712555,\n                        \"Y\": 0.25603875517845154\n                    },\n                    {\n                        \"X\": 0.5275933742523193,\n                        \"Y\": 0.25603875517845154\n                    },\n                    {\n                        \"X\": 0.5275933742523193,\n                        \"Y\": 0.2682614028453827\n                    },\n                    {\n                        \"X\": 0.4734887182712555,\n                        \"Y\": 0.2682614028453827\n                    }\n                ]\n            },\n            \"Id\": \"7b7fe7a4-79fc-44d0-9f0c-14e17763c159\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.56704711914062,\n            \"Text\": \"2.2.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04635901004076004,\n                    \"Height\": 0.011695380322635174,\n                    \"Left\": 0.5323651432991028,\n                    \"Top\": 0.256294846534729\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5323651432991028,\n                        \"Y\": 0.256294846534729\n                    },\n                    {\n                        \"X\": 0.5787241458892822,\n                        \"Y\": 0.256294846534729\n                    },\n                    {\n                        \"X\": 0.5787241458892822,\n                        \"Y\": 0.26799023151397705\n                    },\n                    {\n                        \"X\": 0.5323651432991028,\n                        \"Y\": 0.26799023151397705\n                    }\n                ]\n            },\n            \"Id\": \"4d745dee-7ebf-47ba-8a82-f1206d9ba19c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80119323730469,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05330276861786842,\n                    \"Height\": 0.01221316959708929,\n                    \"Left\": 0.5980994701385498,\n                    \"Top\": 0.2560027837753296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5980994701385498,\n                        \"Y\": 0.2560027837753296\n                    },\n                    {\n                        \"X\": 0.6514022350311279,\n                        \"Y\": 0.2560027837753296\n                    },\n                    {\n                        \"X\": 0.6514022350311279,\n                        \"Y\": 0.26821595430374146\n                    },\n                    {\n                        \"X\": 0.5980994701385498,\n                        \"Y\": 0.26821595430374146\n                    }\n                ]\n            },\n            \"Id\": \"b69f145b-e997-42c1-800b-17519d3e32ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.9343490600586,\n            \"Text\": \"2.2.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045561131089925766,\n                    \"Height\": 0.011669670231640339,\n                    \"Left\": 0.6571125984191895,\n                    \"Top\": 0.2564736008644104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6571125984191895,\n                        \"Y\": 0.2564736008644104\n                    },\n                    {\n                        \"X\": 0.7026737332344055,\n                        \"Y\": 0.2564736008644104\n                    },\n                    {\n                        \"X\": 0.7026737332344055,\n                        \"Y\": 0.26814326643943787\n                    },\n                    {\n                        \"X\": 0.6571125984191895,\n                        \"Y\": 0.26814326643943787\n                    }\n                ]\n            },\n            \"Id\": \"c300452e-f3cd-46b2-8151-07a7974d9326\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75062561035156,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05403130128979683,\n                    \"Height\": 0.01215234026312828,\n                    \"Left\": 0.7213287949562073,\n                    \"Top\": 0.256034255027771\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7213287949562073,\n                        \"Y\": 0.256034255027771\n                    },\n                    {\n                        \"X\": 0.775360107421875,\n                        \"Y\": 0.256034255027771\n                    },\n                    {\n                        \"X\": 0.775360107421875,\n                        \"Y\": 0.2681865990161896\n                    },\n                    {\n                        \"X\": 0.7213287949562073,\n                        \"Y\": 0.2681865990161896\n                    }\n                ]\n            },\n            \"Id\": \"a704e76f-ff9b-46eb-9a6b-35542a6b8c43\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.39600372314453,\n            \"Text\": \"2.2.4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04704599827528,\n                    \"Height\": 0.01181378960609436,\n                    \"Left\": 0.7803736925125122,\n                    \"Top\": 0.2563624680042267\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7803736925125122,\n                        \"Y\": 0.2563624680042267\n                    },\n                    {\n                        \"X\": 0.8274196982383728,\n                        \"Y\": 0.2563624680042267\n                    },\n                    {\n                        \"X\": 0.8274196982383728,\n                        \"Y\": 0.26817625761032104\n                    },\n                    {\n                        \"X\": 0.7803736925125122,\n                        \"Y\": 0.26817625761032104\n                    }\n                ]\n            },\n            \"Id\": \"23e7eac0-e92d-40cd-8026-3e2dccb5a334\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.45052337646484,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054278500378131866,\n                    \"Height\": 0.012320499867200851,\n                    \"Left\": 0.8453077077865601,\n                    \"Top\": 0.25595200061798096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8453077077865601,\n                        \"Y\": 0.25595200061798096\n                    },\n                    {\n                        \"X\": 0.8995862007141113,\n                        \"Y\": 0.25595200061798096\n                    },\n                    {\n                        \"X\": 0.8995862007141113,\n                        \"Y\": 0.2682724893093109\n                    },\n                    {\n                        \"X\": 0.8453077077865601,\n                        \"Y\": 0.2682724893093109\n                    }\n                ]\n            },\n            \"Id\": \"334606a6-3b2c-40fe-9d1d-d80103d3387b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3238296508789,\n            \"Text\": \"2.2.5\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04569945111870766,\n                    \"Height\": 0.012012509629130363,\n                    \"Left\": 0.905106246471405,\n                    \"Top\": 0.2562149167060852\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.905106246471405,\n                        \"Y\": 0.2562149167060852\n                    },\n                    {\n                        \"X\": 0.9508057236671448,\n                        \"Y\": 0.2562149167060852\n                    },\n                    {\n                        \"X\": 0.9508057236671448,\n                        \"Y\": 0.2682274281978607\n                    },\n                    {\n                        \"X\": 0.905106246471405,\n                        \"Y\": 0.2682274281978607\n                    }\n                ]\n            },\n            \"Id\": \"393bb537-f983-4800-b0db-8db2812eae45\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84343719482422,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053184859454631805,\n                    \"Height\": 0.012133720330893993,\n                    \"Left\": 0.3494780361652374,\n                    \"Top\": 0.27675092220306396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3494780361652374,\n                        \"Y\": 0.27675092220306396\n                    },\n                    {\n                        \"X\": 0.40266290307044983,\n                        \"Y\": 0.27675092220306396\n                    },\n                    {\n                        \"X\": 0.40266290307044983,\n                        \"Y\": 0.28888463973999023\n                    },\n                    {\n                        \"X\": 0.3494780361652374,\n                        \"Y\": 0.28888463973999023\n                    }\n                ]\n            },\n            \"Id\": \"260d17c0-3af7-428a-be93-012e693ccb1c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.01860809326172,\n            \"Text\": \"2.3.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045321621000766754,\n                    \"Height\": 0.011539939790964127,\n                    \"Left\": 0.4091334342956543,\n                    \"Top\": 0.27703404426574707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4091334342956543,\n                        \"Y\": 0.27703404426574707\n                    },\n                    {\n                        \"X\": 0.45445504784584045,\n                        \"Y\": 0.27703404426574707\n                    },\n                    {\n                        \"X\": 0.45445504784584045,\n                        \"Y\": 0.2885739803314209\n                    },\n                    {\n                        \"X\": 0.4091334342956543,\n                        \"Y\": 0.2885739803314209\n                    }\n                ]\n            },\n            \"Id\": \"00b2a930-9567-4573-aff3-59046874707d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82861328125,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054128970950841904,\n                    \"Height\": 0.01225448027253151,\n                    \"Left\": 0.4735710918903351,\n                    \"Top\": 0.27651697397232056\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4735710918903351,\n                        \"Y\": 0.27651697397232056\n                    },\n                    {\n                        \"X\": 0.5277000665664673,\n                        \"Y\": 0.27651697397232056\n                    },\n                    {\n                        \"X\": 0.5277000665664673,\n                        \"Y\": 0.28877145051956177\n                    },\n                    {\n                        \"X\": 0.4735710918903351,\n                        \"Y\": 0.28877145051956177\n                    }\n                ]\n            },\n            \"Id\": \"4c7e8481-9358-4784-9847-83077be11d16\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.47615051269531,\n            \"Text\": \"2.3.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045267898589372635,\n                    \"Height\": 0.011813079938292503,\n                    \"Left\": 0.5330377221107483,\n                    \"Top\": 0.2768526077270508\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5330377221107483,\n                        \"Y\": 0.2768526077270508\n                    },\n                    {\n                        \"X\": 0.5783056020736694,\n                        \"Y\": 0.2768526077270508\n                    },\n                    {\n                        \"X\": 0.5783056020736694,\n                        \"Y\": 0.28866568207740784\n                    },\n                    {\n                        \"X\": 0.5330377221107483,\n                        \"Y\": 0.28866568207740784\n                    }\n                ]\n            },\n            \"Id\": \"d4437c1d-c937-4857-b18b-b1ea50706bab\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80863189697266,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053186528384685516,\n                    \"Height\": 0.012204560451209545,\n                    \"Left\": 0.5982868671417236,\n                    \"Top\": 0.27671492099761963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5982868671417236,\n                        \"Y\": 0.27671492099761963\n                    },\n                    {\n                        \"X\": 0.6514734029769897,\n                        \"Y\": 0.27671492099761963\n                    },\n                    {\n                        \"X\": 0.6514734029769897,\n                        \"Y\": 0.28891947865486145\n                    },\n                    {\n                        \"X\": 0.5982868671417236,\n                        \"Y\": 0.28891947865486145\n                    }\n                ]\n            },\n            \"Id\": \"fc1aa1b0-a0c7-472b-9c00-a798d8cc435f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3831558227539,\n            \"Text\": \"2.3.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04516829922795296,\n                    \"Height\": 0.011717350222170353,\n                    \"Left\": 0.6574996113777161,\n                    \"Top\": 0.27700290083885193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6574996113777161,\n                        \"Y\": 0.27700290083885193\n                    },\n                    {\n                        \"X\": 0.7026678919792175,\n                        \"Y\": 0.27700290083885193\n                    },\n                    {\n                        \"X\": 0.7026678919792175,\n                        \"Y\": 0.2887202501296997\n                    },\n                    {\n                        \"X\": 0.6574996113777161,\n                        \"Y\": 0.2887202501296997\n                    }\n                ]\n            },\n            \"Id\": \"3d6e6e99-0fd5-4cce-94bd-91d8fdb4cd4e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73535919189453,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05356600135564804,\n                    \"Height\": 0.01227657962590456,\n                    \"Left\": 0.7216104865074158,\n                    \"Top\": 0.2766041159629822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7216104865074158,\n                        \"Y\": 0.2766041159629822\n                    },\n                    {\n                        \"X\": 0.7751765251159668,\n                        \"Y\": 0.2766041159629822\n                    },\n                    {\n                        \"X\": 0.7751765251159668,\n                        \"Y\": 0.28888070583343506\n                    },\n                    {\n                        \"X\": 0.7216104865074158,\n                        \"Y\": 0.28888070583343506\n                    }\n                ]\n            },\n            \"Id\": \"f930b397-6dca-4b1f-9a6c-7b1c00f4f1ff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.44884490966797,\n            \"Text\": \"2.3.4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04608350992202759,\n                    \"Height\": 0.012029260396957397,\n                    \"Left\": 0.7810408473014832,\n                    \"Top\": 0.2768484354019165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7810408473014832,\n                        \"Y\": 0.2768484354019165\n                    },\n                    {\n                        \"X\": 0.8271243572235107,\n                        \"Y\": 0.2768484354019165\n                    },\n                    {\n                        \"X\": 0.8271243572235107,\n                        \"Y\": 0.2888776957988739\n                    },\n                    {\n                        \"X\": 0.7810408473014832,\n                        \"Y\": 0.2888776957988739\n                    }\n                ]\n            },\n            \"Id\": \"813364e2-cdb5-4635-82c2-cc90a5c0bcba\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.01492309570312,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.052793338894844055,\n                    \"Height\": 0.012328979559242725,\n                    \"Left\": 0.8464338183403015,\n                    \"Top\": 0.2766174376010895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8464338183403015,\n                        \"Y\": 0.2766174376010895\n                    },\n                    {\n                        \"X\": 0.8992271423339844,\n                        \"Y\": 0.2766174376010895\n                    },\n                    {\n                        \"X\": 0.8992271423339844,\n                        \"Y\": 0.2889464199542999\n                    },\n                    {\n                        \"X\": 0.8464338183403015,\n                        \"Y\": 0.2889464199542999\n                    }\n                ]\n            },\n            \"Id\": \"403d255b-f24e-4e0c-88fa-9136eacf58f6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.37783813476562,\n            \"Text\": \"2.3.5\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04505309835076332,\n                    \"Height\": 0.01188065018504858,\n                    \"Left\": 0.9054586887359619,\n                    \"Top\": 0.27690210938453674\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9054586887359619,\n                        \"Y\": 0.27690210938453674\n                    },\n                    {\n                        \"X\": 0.9505118131637573,\n                        \"Y\": 0.27690210938453674\n                    },\n                    {\n                        \"X\": 0.9505118131637573,\n                        \"Y\": 0.2887827455997467\n                    },\n                    {\n                        \"X\": 0.9054586887359619,\n                        \"Y\": 0.2887827455997467\n                    }\n                ]\n            },\n            \"Id\": \"f89b635b-7a29-4df9-8765-5b671c46fdb9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84051513671875,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05324823036789894,\n                    \"Height\": 0.01197103038430214,\n                    \"Left\": 0.34942883253097534,\n                    \"Top\": 0.29721662402153015\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34942883253097534,\n                        \"Y\": 0.29721662402153015\n                    },\n                    {\n                        \"X\": 0.402677059173584,\n                        \"Y\": 0.29721662402153015\n                    },\n                    {\n                        \"X\": 0.402677059173584,\n                        \"Y\": 0.309187650680542\n                    },\n                    {\n                        \"X\": 0.34942883253097534,\n                        \"Y\": 0.309187650680542\n                    }\n                ]\n            },\n            \"Id\": \"c3c838e8-b89f-4cd7-a4f0-c4b61c9f4788\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57615661621094,\n            \"Text\": \"2.4.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04509260132908821,\n                    \"Height\": 0.011362879537045956,\n                    \"Left\": 0.4091089069843292,\n                    \"Top\": 0.29758426547050476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4091089069843292,\n                        \"Y\": 0.29758426547050476\n                    },\n                    {\n                        \"X\": 0.45420148968696594,\n                        \"Y\": 0.29758426547050476\n                    },\n                    {\n                        \"X\": 0.45420148968696594,\n                        \"Y\": 0.3089471459388733\n                    },\n                    {\n                        \"X\": 0.4091089069843292,\n                        \"Y\": 0.3089471459388733\n                    }\n                ]\n            },\n            \"Id\": \"b8ed9993-b4e2-4fdf-a5ed-ac587754215a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83200073242188,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053363848477602005,\n                    \"Height\": 0.01192868035286665,\n                    \"Left\": 0.4736648499965668,\n                    \"Top\": 0.29723668098449707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4736648499965668,\n                        \"Y\": 0.29723668098449707\n                    },\n                    {\n                        \"X\": 0.5270286798477173,\n                        \"Y\": 0.29723668098449707\n                    },\n                    {\n                        \"X\": 0.5270286798477173,\n                        \"Y\": 0.309165358543396\n                    },\n                    {\n                        \"X\": 0.4736648499965668,\n                        \"Y\": 0.309165358543396\n                    }\n                ]\n            },\n            \"Id\": \"0a572e77-aa31-49eb-8fe6-6cf110182f16\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.47236633300781,\n            \"Text\": \"2.4.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04526710882782936,\n                    \"Height\": 0.01157561969012022,\n                    \"Left\": 0.5331266522407532,\n                    \"Top\": 0.29745107889175415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5331266522407532,\n                        \"Y\": 0.29745107889175415\n                    },\n                    {\n                        \"X\": 0.5783937573432922,\n                        \"Y\": 0.29745107889175415\n                    },\n                    {\n                        \"X\": 0.5783937573432922,\n                        \"Y\": 0.30902668833732605\n                    },\n                    {\n                        \"X\": 0.5331266522407532,\n                        \"Y\": 0.30902668833732605\n                    }\n                ]\n            },\n            \"Id\": \"50c7e6da-a99a-49c5-bb8a-4e53dc1c2416\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79336547851562,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05337870121002197,\n                    \"Height\": 0.012054800055921078,\n                    \"Left\": 0.5981996655464172,\n                    \"Top\": 0.2971394956111908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5981996655464172,\n                        \"Y\": 0.2971394956111908\n                    },\n                    {\n                        \"X\": 0.6515783667564392,\n                        \"Y\": 0.2971394956111908\n                    },\n                    {\n                        \"X\": 0.6515783667564392,\n                        \"Y\": 0.30919429659843445\n                    },\n                    {\n                        \"X\": 0.5981996655464172,\n                        \"Y\": 0.30919429659843445\n                    }\n                ]\n            },\n            \"Id\": \"5a89f920-31c1-439a-aec7-680585b25796\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.40470886230469,\n            \"Text\": \"2.4.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04558200016617775,\n                    \"Height\": 0.011569860391318798,\n                    \"Left\": 0.6570185422897339,\n                    \"Top\": 0.29758137464523315\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6570185422897339,\n                        \"Y\": 0.29758137464523315\n                    },\n                    {\n                        \"X\": 0.7026005387306213,\n                        \"Y\": 0.29758137464523315\n                    },\n                    {\n                        \"X\": 0.7026005387306213,\n                        \"Y\": 0.30915123224258423\n                    },\n                    {\n                        \"X\": 0.6570185422897339,\n                        \"Y\": 0.30915123224258423\n                    }\n                ]\n            },\n            \"Id\": \"e7ba092f-65d9-42c9-bc93-5d88ff8d8a21\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78384399414062,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0533175989985466,\n                    \"Height\": 0.01185567956417799,\n                    \"Left\": 0.7216416001319885,\n                    \"Top\": 0.29727259278297424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7216416001319885,\n                        \"Y\": 0.29727259278297424\n                    },\n                    {\n                        \"X\": 0.7749592065811157,\n                        \"Y\": 0.29727259278297424\n                    },\n                    {\n                        \"X\": 0.7749592065811157,\n                        \"Y\": 0.3091282844543457\n                    },\n                    {\n                        \"X\": 0.7216416001319885,\n                        \"Y\": 0.3091282844543457\n                    }\n                ]\n            },\n            \"Id\": \"89a0b628-38d0-4d70-af44-a248e9e189bb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57990264892578,\n            \"Text\": \"2.4.4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046270951628685,\n                    \"Height\": 0.01173368003219366,\n                    \"Left\": 0.7806700468063354,\n                    \"Top\": 0.2973509430885315\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7806700468063354,\n                        \"Y\": 0.2973509430885315\n                    },\n                    {\n                        \"X\": 0.8269410133361816,\n                        \"Y\": 0.2973509430885315\n                    },\n                    {\n                        \"X\": 0.8269410133361816,\n                        \"Y\": 0.30908462405204773\n                    },\n                    {\n                        \"X\": 0.7806700468063354,\n                        \"Y\": 0.30908462405204773\n                    }\n                ]\n            },\n            \"Id\": \"9e2d3f64-7681-4b6b-ab67-56cae96a26fe\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81639862060547,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053484801203012466,\n                    \"Height\": 0.011811939999461174,\n                    \"Left\": 0.8457906246185303,\n                    \"Top\": 0.29730719327926636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8457906246185303,\n                        \"Y\": 0.29730719327926636\n                    },\n                    {\n                        \"X\": 0.8992754220962524,\n                        \"Y\": 0.29730719327926636\n                    },\n                    {\n                        \"X\": 0.8992754220962524,\n                        \"Y\": 0.3091191351413727\n                    },\n                    {\n                        \"X\": 0.8457906246185303,\n                        \"Y\": 0.3091191351413727\n                    }\n                ]\n            },\n            \"Id\": \"8d738af2-8336-4fe7-a9db-9a2094e47c45\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.50688171386719,\n            \"Text\": \"2.4.5\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04499650001525879,\n                    \"Height\": 0.011799450032413006,\n                    \"Left\": 0.9054083228111267,\n                    \"Top\": 0.2974287271499634\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9054083228111267,\n                        \"Y\": 0.2974287271499634\n                    },\n                    {\n                        \"X\": 0.9504048228263855,\n                        \"Y\": 0.2974287271499634\n                    },\n                    {\n                        \"X\": 0.9504048228263855,\n                        \"Y\": 0.30922818183898926\n                    },\n                    {\n                        \"X\": 0.9054083228111267,\n                        \"Y\": 0.30922818183898926\n                    }\n                ]\n            },\n            \"Id\": \"e0b70770-4816-4fa0-98be-167ef2cf3f23\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84648895263672,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053405068814754486,\n                    \"Height\": 0.011972339823842049,\n                    \"Left\": 0.3493768572807312,\n                    \"Top\": 0.31771886348724365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3493768572807312,\n                        \"Y\": 0.31771886348724365\n                    },\n                    {\n                        \"X\": 0.4027819335460663,\n                        \"Y\": 0.31771886348724365\n                    },\n                    {\n                        \"X\": 0.4027819335460663,\n                        \"Y\": 0.32969120144844055\n                    },\n                    {\n                        \"X\": 0.3493768572807312,\n                        \"Y\": 0.32969120144844055\n                    }\n                ]\n            },\n            \"Id\": \"2c926ffd-0deb-41fb-99e3-f10cfce41297\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.42204284667969,\n            \"Text\": \"2.5.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045637428760528564,\n                    \"Height\": 0.01162004005163908,\n                    \"Left\": 0.4088549315929413,\n                    \"Top\": 0.31803473830223083\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4088549315929413,\n                        \"Y\": 0.31803473830223083\n                    },\n                    {\n                        \"X\": 0.45449236035346985,\n                        \"Y\": 0.31803473830223083\n                    },\n                    {\n                        \"X\": 0.45449236035346985,\n                        \"Y\": 0.3296547830104828\n                    },\n                    {\n                        \"X\": 0.4088549315929413,\n                        \"Y\": 0.3296547830104828\n                    }\n                ]\n            },\n            \"Id\": \"9e6f5012-92dd-44a4-bc27-241158503f6e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80496215820312,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053806841373443604,\n                    \"Height\": 0.012018759734928608,\n                    \"Left\": 0.47331732511520386,\n                    \"Top\": 0.31766098737716675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47331732511520386,\n                        \"Y\": 0.31766098737716675\n                    },\n                    {\n                        \"X\": 0.5271241664886475,\n                        \"Y\": 0.31766098737716675\n                    },\n                    {\n                        \"X\": 0.5271241664886475,\n                        \"Y\": 0.3296797573566437\n                    },\n                    {\n                        \"X\": 0.47331732511520386,\n                        \"Y\": 0.3296797573566437\n                    }\n                ]\n            },\n            \"Id\": \"4b4e476b-a4e9-4664-bf7f-701af4ca7955\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.51167297363281,\n            \"Text\": \"2.5.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04543576017022133,\n                    \"Height\": 0.011876019649207592,\n                    \"Left\": 0.5330690741539001,\n                    \"Top\": 0.3178495764732361\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5330690741539001,\n                        \"Y\": 0.3178495764732361\n                    },\n                    {\n                        \"X\": 0.5785048604011536,\n                        \"Y\": 0.3178495764732361\n                    },\n                    {\n                        \"X\": 0.5785048604011536,\n                        \"Y\": 0.32972559332847595\n                    },\n                    {\n                        \"X\": 0.5330690741539001,\n                        \"Y\": 0.32972559332847595\n                    }\n                ]\n            },\n            \"Id\": \"99985721-7815-4138-9be0-6b2a9273efb3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84737396240234,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05330564081668854,\n                    \"Height\": 0.01205477025359869,\n                    \"Left\": 0.5980262160301208,\n                    \"Top\": 0.317635178565979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5980262160301208,\n                        \"Y\": 0.317635178565979\n                    },\n                    {\n                        \"X\": 0.6513318419456482,\n                        \"Y\": 0.317635178565979\n                    },\n                    {\n                        \"X\": 0.6513318419456482,\n                        \"Y\": 0.32968994975090027\n                    },\n                    {\n                        \"X\": 0.5980262160301208,\n                        \"Y\": 0.32968994975090027\n                    }\n                ]\n            },\n            \"Id\": \"51006c26-86d7-4d59-a810-d492e03d33c0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54029083251953,\n            \"Text\": \"2.5.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04503915086388588,\n                    \"Height\": 0.01179370004683733,\n                    \"Left\": 0.657490074634552,\n                    \"Top\": 0.31792953610420227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.657490074634552,\n                        \"Y\": 0.31792953610420227\n                    },\n                    {\n                        \"X\": 0.70252925157547,\n                        \"Y\": 0.31792953610420227\n                    },\n                    {\n                        \"X\": 0.70252925157547,\n                        \"Y\": 0.3297232389450073\n                    },\n                    {\n                        \"X\": 0.657490074634552,\n                        \"Y\": 0.3297232389450073\n                    }\n                ]\n            },\n            \"Id\": \"21985db3-e896-470a-8279-23ddd60abba9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79503631591797,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05391779914498329,\n                    \"Height\": 0.0119707603007555,\n                    \"Left\": 0.7212172150611877,\n                    \"Top\": 0.31766656041145325\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7212172150611877,\n                        \"Y\": 0.31766656041145325\n                    },\n                    {\n                        \"X\": 0.7751349806785583,\n                        \"Y\": 0.31766656041145325\n                    },\n                    {\n                        \"X\": 0.7751349806785583,\n                        \"Y\": 0.3296373188495636\n                    },\n                    {\n                        \"X\": 0.7212172150611877,\n                        \"Y\": 0.3296373188495636\n                    }\n                ]\n            },\n            \"Id\": \"53e96019-5be1-457e-a1a6-612bc148e736\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6290512084961,\n            \"Text\": \"2.5.4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04623420163989067,\n                    \"Height\": 0.011899969540536404,\n                    \"Left\": 0.7810252904891968,\n                    \"Top\": 0.31784549355506897\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7810252904891968,\n                        \"Y\": 0.31784549355506897\n                    },\n                    {\n                        \"X\": 0.8272594809532166,\n                        \"Y\": 0.31784549355506897\n                    },\n                    {\n                        \"X\": 0.8272594809532166,\n                        \"Y\": 0.32974547147750854\n                    },\n                    {\n                        \"X\": 0.7810252904891968,\n                        \"Y\": 0.32974547147750854\n                    }\n                ]\n            },\n            \"Id\": \"40851039-70b0-41a0-8065-c92ce33647c7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8897933959961,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05319511890411377,\n                    \"Height\": 0.011783150024712086,\n                    \"Left\": 0.8459871411323547,\n                    \"Top\": 0.3178301751613617\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8459871411323547,\n                        \"Y\": 0.3178301751613617\n                    },\n                    {\n                        \"X\": 0.8991822600364685,\n                        \"Y\": 0.3178301751613617\n                    },\n                    {\n                        \"X\": 0.8991822600364685,\n                        \"Y\": 0.3296133279800415\n                    },\n                    {\n                        \"X\": 0.8459871411323547,\n                        \"Y\": 0.3296133279800415\n                    }\n                ]\n            },\n            \"Id\": \"96589d36-e02e-40bb-b3ee-204f33971e8b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57251739501953,\n            \"Text\": \"2.5.5\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04553084075450897,\n                    \"Height\": 0.0118605000898242,\n                    \"Left\": 0.9052398800849915,\n                    \"Top\": 0.31796690821647644\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9052398800849915,\n                        \"Y\": 0.31796690821647644\n                    },\n                    {\n                        \"X\": 0.9507707357406616,\n                        \"Y\": 0.31796690821647644\n                    },\n                    {\n                        \"X\": 0.9507707357406616,\n                        \"Y\": 0.3298273980617523\n                    },\n                    {\n                        \"X\": 0.9052398800849915,\n                        \"Y\": 0.3298273980617523\n                    }\n                ]\n            },\n            \"Id\": \"f203337b-46f6-42b1-9c20-2ac033d36a48\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61636352539062,\n            \"Text\": \"NO:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03015887551009655,\n                    \"Height\": 0.010800329968333244,\n                    \"Left\": 0.07998548448085785,\n                    \"Top\": 0.39161980152130127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07998548448085785,\n                        \"Y\": 0.39161980152130127\n                    },\n                    {\n                        \"X\": 0.11014436185359955,\n                        \"Y\": 0.39161980152130127\n                    },\n                    {\n                        \"X\": 0.11014436185359955,\n                        \"Y\": 0.40242013335227966\n                    },\n                    {\n                        \"X\": 0.07998548448085785,\n                        \"Y\": 0.40242013335227966\n                    }\n                ]\n            },\n            \"Id\": \"d7d615ec-2e6a-4cc2-842a-f3be9d57d0a5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91061401367188,\n            \"Text\": \"not-checked\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10007776319980621,\n                    \"Height\": 0.010960079729557037,\n                    \"Left\": 0.11511547118425369,\n                    \"Top\": 0.3912815749645233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11511547118425369,\n                        \"Y\": 0.3912815749645233\n                    },\n                    {\n                        \"X\": 0.2151932269334793,\n                        \"Y\": 0.3912815749645233\n                    },\n                    {\n                        \"X\": 0.2151932269334793,\n                        \"Y\": 0.40224164724349976\n                    },\n                    {\n                        \"X\": 0.11511547118425369,\n                        \"Y\": 0.40224164724349976\n                    }\n                ]\n            },\n            \"Id\": \"92735371-3cb9-4032-80ae-34ed74beb59b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76884460449219,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0465085506439209,\n                    \"Height\": 0.010392550379037857,\n                    \"Left\": 0.5007233023643494,\n                    \"Top\": 0.4104907214641571\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5007233023643494,\n                        \"Y\": 0.4104907214641571\n                    },\n                    {\n                        \"X\": 0.5472318530082703,\n                        \"Y\": 0.4104907214641571\n                    },\n                    {\n                        \"X\": 0.5472318530082703,\n                        \"Y\": 0.42088326811790466\n                    },\n                    {\n                        \"X\": 0.5007233023643494,\n                        \"Y\": 0.42088326811790466\n                    }\n                ]\n            },\n            \"Id\": \"5713b7af-14a7-4a24-b444-5459fe0a8823\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.294677734375,\n            \"Text\": \"3.1.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038750600069761276,\n                    \"Height\": 0.010267949663102627,\n                    \"Left\": 0.552111804485321,\n                    \"Top\": 0.41069141030311584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.552111804485321,\n                        \"Y\": 0.41069141030311584\n                    },\n                    {\n                        \"X\": 0.5908623933792114,\n                        \"Y\": 0.41069141030311584\n                    },\n                    {\n                        \"X\": 0.5908623933792114,\n                        \"Y\": 0.42095935344696045\n                    },\n                    {\n                        \"X\": 0.552111804485321,\n                        \"Y\": 0.42095935344696045\n                    }\n                ]\n            },\n            \"Id\": \"b05e2149-603a-420d-bd6d-5989b0272992\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76094818115234,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04608483985066414,\n                    \"Height\": 0.010664230212569237,\n                    \"Left\": 0.6450337171554565,\n                    \"Top\": 0.41035497188568115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6450337171554565,\n                        \"Y\": 0.41035497188568115\n                    },\n                    {\n                        \"X\": 0.6911185383796692,\n                        \"Y\": 0.41035497188568115\n                    },\n                    {\n                        \"X\": 0.6911185383796692,\n                        \"Y\": 0.42101919651031494\n                    },\n                    {\n                        \"X\": 0.6450337171554565,\n                        \"Y\": 0.42101919651031494\n                    }\n                ]\n            },\n            \"Id\": \"46c5d8c3-6659-4c0c-a8ee-d03a5d34c197\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2646713256836,\n            \"Text\": \"3.1.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039361901581287384,\n                    \"Height\": 0.010258070193231106,\n                    \"Left\": 0.6960620284080505,\n                    \"Top\": 0.4106603264808655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6960620284080505,\n                        \"Y\": 0.4106603264808655\n                    },\n                    {\n                        \"X\": 0.7354239225387573,\n                        \"Y\": 0.4106603264808655\n                    },\n                    {\n                        \"X\": 0.7354239225387573,\n                        \"Y\": 0.42091840505599976\n                    },\n                    {\n                        \"X\": 0.6960620284080505,\n                        \"Y\": 0.42091840505599976\n                    }\n                ]\n            },\n            \"Id\": \"2690c80e-290a-4b7b-9318-f23a48a9ede6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65657806396484,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04653728008270264,\n                    \"Height\": 0.010551719926297665,\n                    \"Left\": 0.7884987592697144,\n                    \"Top\": 0.4103996157646179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7884987592697144,\n                        \"Y\": 0.4103996157646179\n                    },\n                    {\n                        \"X\": 0.835036039352417,\n                        \"Y\": 0.4103996157646179\n                    },\n                    {\n                        \"X\": 0.835036039352417,\n                        \"Y\": 0.42095133662223816\n                    },\n                    {\n                        \"X\": 0.7884987592697144,\n                        \"Y\": 0.42095133662223816\n                    }\n                ]\n            },\n            \"Id\": \"9f8730f7-9295-47b6-ac30-9bc3bc302a99\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27680206298828,\n            \"Text\": \"3.1.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03893705829977989,\n                    \"Height\": 0.010562010109424591,\n                    \"Left\": 0.8400251269340515,\n                    \"Top\": 0.41049057245254517\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8400251269340515,\n                        \"Y\": 0.41049057245254517\n                    },\n                    {\n                        \"X\": 0.8789621591567993,\n                        \"Y\": 0.41049057245254517\n                    },\n                    {\n                        \"X\": 0.8789621591567993,\n                        \"Y\": 0.42105257511138916\n                    },\n                    {\n                        \"X\": 0.8400251269340515,\n                        \"Y\": 0.42105257511138916\n                    }\n                ]\n            },\n            \"Id\": \"f139dc87-0c9b-4684-9f9c-33e9c85349b5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.29712677001953,\n            \"Text\": \"YES:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03390800952911377,\n                    \"Height\": 0.010396639816462994,\n                    \"Left\": 0.07574430853128433,\n                    \"Top\": 0.41825735569000244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07574430853128433,\n                        \"Y\": 0.41825735569000244\n                    },\n                    {\n                        \"X\": 0.1096523180603981,\n                        \"Y\": 0.41825735569000244\n                    },\n                    {\n                        \"X\": 0.1096523180603981,\n                        \"Y\": 0.4286539852619171\n                    },\n                    {\n                        \"X\": 0.07574430853128433,\n                        \"Y\": 0.4286539852619171\n                    }\n                ]\n            },\n            \"Id\": \"2ec3e7d2-9cf4-4827-a853-402693c7d693\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97057342529297,\n            \"Text\": \"checked\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06650205701589584,\n                    \"Height\": 0.011043399572372437,\n                    \"Left\": 0.1142592802643776,\n                    \"Top\": 0.41770753264427185\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1142592802643776,\n                        \"Y\": 0.41770753264427185\n                    },\n                    {\n                        \"X\": 0.18076133728027344,\n                        \"Y\": 0.41770753264427185\n                    },\n                    {\n                        \"X\": 0.18076133728027344,\n                        \"Y\": 0.4287509322166443\n                    },\n                    {\n                        \"X\": 0.1142592802643776,\n                        \"Y\": 0.4287509322166443\n                    }\n                ]\n            },\n            \"Id\": \"f5362839-b43d-4d9a-89e0-b9d4d56b8496\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83618927001953,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0464308001101017,\n                    \"Height\": 0.010491229593753815,\n                    \"Left\": 0.5009772181510925,\n                    \"Top\": 0.4280807673931122\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009772181510925,\n                        \"Y\": 0.4280807673931122\n                    },\n                    {\n                        \"X\": 0.5474079847335815,\n                        \"Y\": 0.4280807673931122\n                    },\n                    {\n                        \"X\": 0.5474079847335815,\n                        \"Y\": 0.4385719895362854\n                    },\n                    {\n                        \"X\": 0.5009772181510925,\n                        \"Y\": 0.4385719895362854\n                    }\n                ]\n            },\n            \"Id\": \"027f1edc-dd86-4a80-8c6e-96dbed287849\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.19418334960938,\n            \"Text\": \"3.2.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03884385898709297,\n                    \"Height\": 0.01019052043557167,\n                    \"Left\": 0.5519469380378723,\n                    \"Top\": 0.4282960295677185\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5519469380378723,\n                        \"Y\": 0.4282960295677185\n                    },\n                    {\n                        \"X\": 0.5907908082008362,\n                        \"Y\": 0.4282960295677185\n                    },\n                    {\n                        \"X\": 0.5907908082008362,\n                        \"Y\": 0.4384865462779999\n                    },\n                    {\n                        \"X\": 0.5519469380378723,\n                        \"Y\": 0.4384865462779999\n                    }\n                ]\n            },\n            \"Id\": \"b1352d68-95b8-47d4-883c-6e1db31a11ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68849182128906,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04676195979118347,\n                    \"Height\": 0.010606969706714153,\n                    \"Left\": 0.6449447274208069,\n                    \"Top\": 0.4280215799808502\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6449447274208069,\n                        \"Y\": 0.4280215799808502\n                    },\n                    {\n                        \"X\": 0.691706657409668,\n                        \"Y\": 0.4280215799808502\n                    },\n                    {\n                        \"X\": 0.691706657409668,\n                        \"Y\": 0.43862855434417725\n                    },\n                    {\n                        \"X\": 0.6449447274208069,\n                        \"Y\": 0.43862855434417725\n                    }\n                ]\n            },\n            \"Id\": \"f0e80c74-65b8-4eac-9093-37a3e9fe3075\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.10327911376953,\n            \"Text\": \"3.2.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0391724593937397,\n                    \"Height\": 0.01036727987229824,\n                    \"Left\": 0.6961197853088379,\n                    \"Top\": 0.4282173216342926\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6961197853088379,\n                        \"Y\": 0.4282173216342926\n                    },\n                    {\n                        \"X\": 0.7352922558784485,\n                        \"Y\": 0.4282173216342926\n                    },\n                    {\n                        \"X\": 0.7352922558784485,\n                        \"Y\": 0.4385845959186554\n                    },\n                    {\n                        \"X\": 0.6961197853088379,\n                        \"Y\": 0.4385845959186554\n                    }\n                ]\n            },\n            \"Id\": \"3ac127d9-a3d8-4e84-9d9c-ba8526ac1f1e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73990631103516,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04633506014943123,\n                    \"Height\": 0.01062059961259365,\n                    \"Left\": 0.7887248396873474,\n                    \"Top\": 0.4280050992965698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7887248396873474,\n                        \"Y\": 0.4280050992965698\n                    },\n                    {\n                        \"X\": 0.8350598812103271,\n                        \"Y\": 0.4280050992965698\n                    },\n                    {\n                        \"X\": 0.8350598812103271,\n                        \"Y\": 0.438625693321228\n                    },\n                    {\n                        \"X\": 0.7887248396873474,\n                        \"Y\": 0.438625693321228\n                    }\n                ]\n            },\n            \"Id\": \"6aa513d3-de6b-4ee8-9058-8cba7d4e9c4a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.00238800048828,\n            \"Text\": \"3.2.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039105501025915146,\n                    \"Height\": 0.01038902997970581,\n                    \"Left\": 0.840103805065155,\n                    \"Top\": 0.4281856417655945\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.840103805065155,\n                        \"Y\": 0.4281856417655945\n                    },\n                    {\n                        \"X\": 0.8792092800140381,\n                        \"Y\": 0.4281856417655945\n                    },\n                    {\n                        \"X\": 0.8792092800140381,\n                        \"Y\": 0.4385746717453003\n                    },\n                    {\n                        \"X\": 0.840103805065155,\n                        \"Y\": 0.4385746717453003\n                    }\n                ]\n            },\n            \"Id\": \"b48d8334-b7aa-4193-bd49-afb7472a12d3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7641830444336,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04616440087556839,\n                    \"Height\": 0.010449799709022045,\n                    \"Left\": 0.5009778141975403,\n                    \"Top\": 0.4457988142967224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009778141975403,\n                        \"Y\": 0.4457988142967224\n                    },\n                    {\n                        \"X\": 0.5471422076225281,\n                        \"Y\": 0.4457988142967224\n                    },\n                    {\n                        \"X\": 0.5471422076225281,\n                        \"Y\": 0.45624861121177673\n                    },\n                    {\n                        \"X\": 0.5009778141975403,\n                        \"Y\": 0.45624861121177673\n                    }\n                ]\n            },\n            \"Id\": \"13c810b3-dea3-47df-a779-b8825721cc97\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.101318359375,\n            \"Text\": \"3.3.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03881416842341423,\n                    \"Height\": 0.010220919735729694,\n                    \"Left\": 0.5520384311676025,\n                    \"Top\": 0.4459860324859619\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5520384311676025,\n                        \"Y\": 0.4459860324859619\n                    },\n                    {\n                        \"X\": 0.5908526182174683,\n                        \"Y\": 0.4459860324859619\n                    },\n                    {\n                        \"X\": 0.5908526182174683,\n                        \"Y\": 0.45620694756507874\n                    },\n                    {\n                        \"X\": 0.5520384311676025,\n                        \"Y\": 0.45620694756507874\n                    }\n                ]\n            },\n            \"Id\": \"36bb668d-14c1-4cdf-9963-cf99e18c1ea3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60806274414062,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04616175964474678,\n                    \"Height\": 0.010748540051281452,\n                    \"Left\": 0.6449540853500366,\n                    \"Top\": 0.44567692279815674\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6449540853500366,\n                        \"Y\": 0.44567692279815674\n                    },\n                    {\n                        \"X\": 0.6911158561706543,\n                        \"Y\": 0.44567692279815674\n                    },\n                    {\n                        \"X\": 0.6911158561706543,\n                        \"Y\": 0.4564254581928253\n                    },\n                    {\n                        \"X\": 0.6449540853500366,\n                        \"Y\": 0.4564254581928253\n                    }\n                ]\n            },\n            \"Id\": \"9892ddda-cfd9-4778-8392-48ec28248bc7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.86105346679688,\n            \"Text\": \"3.3.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03947265073657036,\n                    \"Height\": 0.010179439559578896,\n                    \"Left\": 0.6959225535392761,\n                    \"Top\": 0.44603055715560913\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6959225535392761,\n                        \"Y\": 0.44603055715560913\n                    },\n                    {\n                        \"X\": 0.7353951930999756,\n                        \"Y\": 0.44603055715560913\n                    },\n                    {\n                        \"X\": 0.7353951930999756,\n                        \"Y\": 0.4562099874019623\n                    },\n                    {\n                        \"X\": 0.6959225535392761,\n                        \"Y\": 0.4562099874019623\n                    }\n                ]\n            },\n            \"Id\": \"e25e09e0-604e-4f80-b784-3c681fbf0aaf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5584945678711,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04624669998884201,\n                    \"Height\": 0.010652690194547176,\n                    \"Left\": 0.7886477708816528,\n                    \"Top\": 0.44567546248435974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7886477708816528,\n                        \"Y\": 0.44567546248435974\n                    },\n                    {\n                        \"X\": 0.8348944783210754,\n                        \"Y\": 0.44567546248435974\n                    },\n                    {\n                        \"X\": 0.8348944783210754,\n                        \"Y\": 0.4563281536102295\n                    },\n                    {\n                        \"X\": 0.7886477708816528,\n                        \"Y\": 0.4563281536102295\n                    }\n                ]\n            },\n            \"Id\": \"ec8ad23f-fa13-487e-a2f1-db7e226a1ac6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.08001708984375,\n            \"Text\": \"3.3.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03899455815553665,\n                    \"Height\": 0.010382619686424732,\n                    \"Left\": 0.83983314037323,\n                    \"Top\": 0.4459022581577301\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.83983314037323,\n                        \"Y\": 0.4459022581577301\n                    },\n                    {\n                        \"X\": 0.878827691078186,\n                        \"Y\": 0.4459022581577301\n                    },\n                    {\n                        \"X\": 0.878827691078186,\n                        \"Y\": 0.45628488063812256\n                    },\n                    {\n                        \"X\": 0.83983314037323,\n                        \"Y\": 0.45628488063812256\n                    }\n                ]\n            },\n            \"Id\": \"04908b68-f914-49e3-bc2d-76eab2881c77\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78792572021484,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04605206102132797,\n                    \"Height\": 0.010553760454058647,\n                    \"Left\": 0.5010496377944946,\n                    \"Top\": 0.4634309411048889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5010496377944946,\n                        \"Y\": 0.4634309411048889\n                    },\n                    {\n                        \"X\": 0.5471016764640808,\n                        \"Y\": 0.4634309411048889\n                    },\n                    {\n                        \"X\": 0.5471016764640808,\n                        \"Y\": 0.4739846885204315\n                    },\n                    {\n                        \"X\": 0.5010496377944946,\n                        \"Y\": 0.4739846885204315\n                    }\n                ]\n            },\n            \"Id\": \"ea83c926-94ee-4ca9-b15b-49bbc085084c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63887023925781,\n            \"Text\": \"3.4.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03873680159449577,\n                    \"Height\": 0.01009851973503828,\n                    \"Left\": 0.5518890023231506,\n                    \"Top\": 0.46368885040283203\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5518890023231506,\n                        \"Y\": 0.46368885040283203\n                    },\n                    {\n                        \"X\": 0.5906258225440979,\n                        \"Y\": 0.46368885040283203\n                    },\n                    {\n                        \"X\": 0.5906258225440979,\n                        \"Y\": 0.4737873673439026\n                    },\n                    {\n                        \"X\": 0.5518890023231506,\n                        \"Y\": 0.4737873673439026\n                    }\n                ]\n            },\n            \"Id\": \"daf3395a-919f-4b84-87da-17e6d36779bb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.49437713623047,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04642494022846222,\n                    \"Height\": 0.010744280181825161,\n                    \"Left\": 0.6448435187339783,\n                    \"Top\": 0.4633525013923645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6448435187339783,\n                        \"Y\": 0.4633525013923645\n                    },\n                    {\n                        \"X\": 0.6912684440612793,\n                        \"Y\": 0.4633525013923645\n                    },\n                    {\n                        \"X\": 0.6912684440612793,\n                        \"Y\": 0.47409677505493164\n                    },\n                    {\n                        \"X\": 0.6448435187339783,\n                        \"Y\": 0.47409677505493164\n                    }\n                ]\n            },\n            \"Id\": \"600c1159-1eb5-4e4c-b069-319b2340b11a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.96530151367188,\n            \"Text\": \"3.4.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03944585099816322,\n                    \"Height\": 0.01012710016220808,\n                    \"Left\": 0.695829451084137,\n                    \"Top\": 0.4637643098831177\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.695829451084137,\n                        \"Y\": 0.4637643098831177\n                    },\n                    {\n                        \"X\": 0.7352753281593323,\n                        \"Y\": 0.4637643098831177\n                    },\n                    {\n                        \"X\": 0.7352753281593323,\n                        \"Y\": 0.47389140725135803\n                    },\n                    {\n                        \"X\": 0.695829451084137,\n                        \"Y\": 0.47389140725135803\n                    }\n                ]\n            },\n            \"Id\": \"04174e7e-8be3-42a9-99c9-90e97b5da4f9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.21798706054688,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045922741293907166,\n                    \"Height\": 0.010590920224785805,\n                    \"Left\": 0.7890411615371704,\n                    \"Top\": 0.4634063243865967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7890411615371704,\n                        \"Y\": 0.4634063243865967\n                    },\n                    {\n                        \"X\": 0.8349639177322388,\n                        \"Y\": 0.4634063243865967\n                    },\n                    {\n                        \"X\": 0.8349639177322388,\n                        \"Y\": 0.47399723529815674\n                    },\n                    {\n                        \"X\": 0.7890411615371704,\n                        \"Y\": 0.47399723529815674\n                    }\n                ]\n            },\n            \"Id\": \"0a34cd6f-eaca-438e-b9e2-21f8b20097d5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.52876281738281,\n            \"Text\": \"3.4.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03942650929093361,\n                    \"Height\": 0.010376330465078354,\n                    \"Left\": 0.8397276401519775,\n                    \"Top\": 0.4635598957538605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8397276401519775,\n                        \"Y\": 0.4635598957538605\n                    },\n                    {\n                        \"X\": 0.8791541457176208,\n                        \"Y\": 0.4635598957538605\n                    },\n                    {\n                        \"X\": 0.8791541457176208,\n                        \"Y\": 0.4739362299442291\n                    },\n                    {\n                        \"X\": 0.8397276401519775,\n                        \"Y\": 0.4739362299442291\n                    }\n                ]\n            },\n            \"Id\": \"9c680bd0-2ff3-425b-9b65-081504162922\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79914855957031,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04602866992354393,\n                    \"Height\": 0.010432220064103603,\n                    \"Left\": 0.5009509325027466,\n                    \"Top\": 0.48116788268089294\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009509325027466,\n                        \"Y\": 0.48116788268089294\n                    },\n                    {\n                        \"X\": 0.5469796061515808,\n                        \"Y\": 0.48116788268089294\n                    },\n                    {\n                        \"X\": 0.5469796061515808,\n                        \"Y\": 0.4916000962257385\n                    },\n                    {\n                        \"X\": 0.5009509325027466,\n                        \"Y\": 0.4916000962257385\n                    }\n                ]\n            },\n            \"Id\": \"6ebf778b-6584-4ffe-b62c-e00a1cf863e1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61125183105469,\n            \"Text\": \"3.5.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038435500115156174,\n                    \"Height\": 0.010295730084180832,\n                    \"Left\": 0.5522359013557434,\n                    \"Top\": 0.4813089668750763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5522359013557434,\n                        \"Y\": 0.4813089668750763\n                    },\n                    {\n                        \"X\": 0.5906714200973511,\n                        \"Y\": 0.4813089668750763\n                    },\n                    {\n                        \"X\": 0.5906714200973511,\n                        \"Y\": 0.49160468578338623\n                    },\n                    {\n                        \"X\": 0.5522359013557434,\n                        \"Y\": 0.49160468578338623\n                    }\n                ]\n            },\n            \"Id\": \"dcb79a5a-68d0-4baf-b899-031f5e46bf77\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56863403320312,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04598952829837799,\n                    \"Height\": 0.010816849768161774,\n                    \"Left\": 0.6450666189193726,\n                    \"Top\": 0.4810165464878082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6450666189193726,\n                        \"Y\": 0.4810165464878082\n                    },\n                    {\n                        \"X\": 0.6910561323165894,\n                        \"Y\": 0.4810165464878082\n                    },\n                    {\n                        \"X\": 0.6910561323165894,\n                        \"Y\": 0.4918333888053894\n                    },\n                    {\n                        \"X\": 0.6450666189193726,\n                        \"Y\": 0.4918333888053894\n                    }\n                ]\n            },\n            \"Id\": \"ecc7cc6e-d73b-4d87-870c-c3a0dfb7b083\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27642059326172,\n            \"Text\": \"3.5.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039059828966856,\n                    \"Height\": 0.01026070024818182,\n                    \"Left\": 0.6962307691574097,\n                    \"Top\": 0.4813242256641388\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6962307691574097,\n                        \"Y\": 0.4813242256641388\n                    },\n                    {\n                        \"X\": 0.7352905869483948,\n                        \"Y\": 0.4813242256641388\n                    },\n                    {\n                        \"X\": 0.7352905869483948,\n                        \"Y\": 0.4915849268436432\n                    },\n                    {\n                        \"X\": 0.6962307691574097,\n                        \"Y\": 0.4915849268436432\n                    }\n                ]\n            },\n            \"Id\": \"3d82e70c-ae89-4038-ba31-8195121c3a51\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65473175048828,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04591614007949829,\n                    \"Height\": 0.01058174017816782,\n                    \"Left\": 0.7890627980232239,\n                    \"Top\": 0.481067955493927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7890627980232239,\n                        \"Y\": 0.481067955493927\n                    },\n                    {\n                        \"X\": 0.8349789381027222,\n                        \"Y\": 0.481067955493927\n                    },\n                    {\n                        \"X\": 0.8349789381027222,\n                        \"Y\": 0.49164968729019165\n                    },\n                    {\n                        \"X\": 0.7890627980232239,\n                        \"Y\": 0.49164968729019165\n                    }\n                ]\n            },\n            \"Id\": \"f30525f3-fd4f-49d3-928d-3c53832ed66e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.41083526611328,\n            \"Text\": \"3.5.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039071448147296906,\n                    \"Height\": 0.010445769876241684,\n                    \"Left\": 0.8396352529525757,\n                    \"Top\": 0.48116666078567505\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8396352529525757,\n                        \"Y\": 0.48116666078567505\n                    },\n                    {\n                        \"X\": 0.878706693649292,\n                        \"Y\": 0.48116666078567505\n                    },\n                    {\n                        \"X\": 0.878706693649292,\n                        \"Y\": 0.49161243438720703\n                    },\n                    {\n                        \"X\": 0.8396352529525757,\n                        \"Y\": 0.49161243438720703\n                    }\n                ]\n            },\n            \"Id\": \"75468cab-5593-4a7b-a064-8b22a2f9cb17\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80416870117188,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04600739851593971,\n                    \"Height\": 0.010437989607453346,\n                    \"Left\": 0.5010533928871155,\n                    \"Top\": 0.4987580478191376\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5010533928871155,\n                        \"Y\": 0.4987580478191376\n                    },\n                    {\n                        \"X\": 0.5470607876777649,\n                        \"Y\": 0.4987580478191376\n                    },\n                    {\n                        \"X\": 0.5470607876777649,\n                        \"Y\": 0.5091960430145264\n                    },\n                    {\n                        \"X\": 0.5010533928871155,\n                        \"Y\": 0.5091960430145264\n                    }\n                ]\n            },\n            \"Id\": \"276d4a02-dd28-4cf2-8f6c-72c936f4503d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4228744506836,\n            \"Text\": \"3.6.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038502201437950134,\n                    \"Height\": 0.010156399570405483,\n                    \"Left\": 0.552038311958313,\n                    \"Top\": 0.49895238876342773\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.552038311958313,\n                        \"Y\": 0.49895238876342773\n                    },\n                    {\n                        \"X\": 0.5905405282974243,\n                        \"Y\": 0.49895238876342773\n                    },\n                    {\n                        \"X\": 0.5905405282974243,\n                        \"Y\": 0.5091087818145752\n                    },\n                    {\n                        \"X\": 0.552038311958313,\n                        \"Y\": 0.5091087818145752\n                    }\n                ]\n            },\n            \"Id\": \"99d44d82-b035-4f42-9a50-87075e54bd26\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7200698852539,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046372100710868835,\n                    \"Height\": 0.010628250427544117,\n                    \"Left\": 0.6449441909790039,\n                    \"Top\": 0.4986632466316223\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6449441909790039,\n                        \"Y\": 0.4986632466316223\n                    },\n                    {\n                        \"X\": 0.6913163065910339,\n                        \"Y\": 0.4986632466316223\n                    },\n                    {\n                        \"X\": 0.6913163065910339,\n                        \"Y\": 0.5092915296554565\n                    },\n                    {\n                        \"X\": 0.6449441909790039,\n                        \"Y\": 0.5092915296554565\n                    }\n                ]\n            },\n            \"Id\": \"f9624f28-97f2-429b-9b83-b06d22eb62fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.90239715576172,\n            \"Text\": \"3.6.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03927439823746681,\n                    \"Height\": 0.010327690280973911,\n                    \"Left\": 0.6959815621376038,\n                    \"Top\": 0.4989481568336487\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6959815621376038,\n                        \"Y\": 0.4989481568336487\n                    },\n                    {\n                        \"X\": 0.7352559566497803,\n                        \"Y\": 0.4989481568336487\n                    },\n                    {\n                        \"X\": 0.7352559566497803,\n                        \"Y\": 0.5092758536338806\n                    },\n                    {\n                        \"X\": 0.6959815621376038,\n                        \"Y\": 0.5092758536338806\n                    }\n                ]\n            },\n            \"Id\": \"e5b1741a-afc1-4938-a551-03a1ecf563bc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66333770751953,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045976098626852036,\n                    \"Height\": 0.010515299625694752,\n                    \"Left\": 0.7889751195907593,\n                    \"Top\": 0.4986734092235565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7889751195907593,\n                        \"Y\": 0.4986734092235565\n                    },\n                    {\n                        \"X\": 0.8349512219429016,\n                        \"Y\": 0.4986734092235565\n                    },\n                    {\n                        \"X\": 0.8349512219429016,\n                        \"Y\": 0.509188711643219\n                    },\n                    {\n                        \"X\": 0.7889751195907593,\n                        \"Y\": 0.509188711643219\n                    }\n                ]\n            },\n            \"Id\": \"f76ebd64-3e67-47d8-a338-261c293d666a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.69435119628906,\n            \"Text\": \"3.6.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039179060608148575,\n                    \"Height\": 0.010481719858944416,\n                    \"Left\": 0.8397999405860901,\n                    \"Top\": 0.498782753944397\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8397999405860901,\n                        \"Y\": 0.498782753944397\n                    },\n                    {\n                        \"X\": 0.8789790272712708,\n                        \"Y\": 0.498782753944397\n                    },\n                    {\n                        \"X\": 0.8789790272712708,\n                        \"Y\": 0.5092644691467285\n                    },\n                    {\n                        \"X\": 0.8397999405860901,\n                        \"Y\": 0.5092644691467285\n                    }\n                ]\n            },\n            \"Id\": \"6c57f761-5373-435f-b756-185c5959561d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78399658203125,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046147581189870834,\n                    \"Height\": 0.010301959700882435,\n                    \"Left\": 0.5009969472885132,\n                    \"Top\": 0.516635537147522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5009969472885132,\n                        \"Y\": 0.516635537147522\n                    },\n                    {\n                        \"X\": 0.5471445322036743,\n                        \"Y\": 0.516635537147522\n                    },\n                    {\n                        \"X\": 0.5471445322036743,\n                        \"Y\": 0.5269374847412109\n                    },\n                    {\n                        \"X\": 0.5009969472885132,\n                        \"Y\": 0.5269374847412109\n                    }\n                ]\n            },\n            \"Id\": \"5650beb3-91cd-49df-9749-ac4ba1822b5f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27363586425781,\n            \"Text\": \"3.7.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038772281259298325,\n                    \"Height\": 0.010261230170726776,\n                    \"Left\": 0.5521959662437439,\n                    \"Top\": 0.5167115926742554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5521959662437439,\n                        \"Y\": 0.5167115926742554\n                    },\n                    {\n                        \"X\": 0.5909682512283325,\n                        \"Y\": 0.5167115926742554\n                    },\n                    {\n                        \"X\": 0.5909682512283325,\n                        \"Y\": 0.5269728302955627\n                    },\n                    {\n                        \"X\": 0.5521959662437439,\n                        \"Y\": 0.5269728302955627\n                    }\n                ]\n            },\n            \"Id\": \"98491252-8cfc-4a02-a882-8c160f1e0e2a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8040771484375,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04639163985848427,\n                    \"Height\": 0.01052009966224432,\n                    \"Left\": 0.6451640725135803,\n                    \"Top\": 0.516469419002533\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6451640725135803,\n                        \"Y\": 0.516469419002533\n                    },\n                    {\n                        \"X\": 0.6915557384490967,\n                        \"Y\": 0.516469419002533\n                    },\n                    {\n                        \"X\": 0.6915557384490967,\n                        \"Y\": 0.5269895195960999\n                    },\n                    {\n                        \"X\": 0.6451640725135803,\n                        \"Y\": 0.5269895195960999\n                    }\n                ]\n            },\n            \"Id\": \"5020f8fe-82fd-4551-9f80-f53a1fe5e0d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.05181121826172,\n            \"Text\": \"3.7.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03925979882478714,\n                    \"Height\": 0.010331300087273121,\n                    \"Left\": 0.6961119771003723,\n                    \"Top\": 0.5166885852813721\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6961119771003723,\n                        \"Y\": 0.5166885852813721\n                    },\n                    {\n                        \"X\": 0.7353718280792236,\n                        \"Y\": 0.5166885852813721\n                    },\n                    {\n                        \"X\": 0.7353718280792236,\n                        \"Y\": 0.5270199179649353\n                    },\n                    {\n                        \"X\": 0.6961119771003723,\n                        \"Y\": 0.5270199179649353\n                    }\n                ]\n            },\n            \"Id\": \"749e3c4f-8847-4d90-b837-2fa48d0b2784\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76313781738281,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04601475968956947,\n                    \"Height\": 0.010421469807624817,\n                    \"Left\": 0.78884357213974,\n                    \"Top\": 0.5165274143218994\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.78884357213974,\n                        \"Y\": 0.5165274143218994\n                    },\n                    {\n                        \"X\": 0.8348583579063416,\n                        \"Y\": 0.5165274143218994\n                    },\n                    {\n                        \"X\": 0.8348583579063416,\n                        \"Y\": 0.526948869228363\n                    },\n                    {\n                        \"X\": 0.78884357213974,\n                        \"Y\": 0.526948869228363\n                    }\n                ]\n            },\n            \"Id\": \"f2995096-1132-48d3-980a-894f7d1f6561\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.18624877929688,\n            \"Text\": \"3.7.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03892039880156517,\n                    \"Height\": 0.010308980010449886,\n                    \"Left\": 0.8398492932319641,\n                    \"Top\": 0.5166759490966797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8398492932319641,\n                        \"Y\": 0.5166759490966797\n                    },\n                    {\n                        \"X\": 0.8787696957588196,\n                        \"Y\": 0.5166759490966797\n                    },\n                    {\n                        \"X\": 0.8787696957588196,\n                        \"Y\": 0.5269849300384521\n                    },\n                    {\n                        \"X\": 0.8398492932319641,\n                        \"Y\": 0.5269849300384521\n                    }\n                ]\n            },\n            \"Id\": \"242b7d0b-69cb-4c5c-bc82-53c34476ed9e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79412841796875,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04590839892625809,\n                    \"Height\": 0.010331359691917896,\n                    \"Left\": 0.5010542869567871,\n                    \"Top\": 0.5341706275939941\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5010542869567871,\n                        \"Y\": 0.5341706275939941\n                    },\n                    {\n                        \"X\": 0.5469626784324646,\n                        \"Y\": 0.5341706275939941\n                    },\n                    {\n                        \"X\": 0.5469626784324646,\n                        \"Y\": 0.5445019602775574\n                    },\n                    {\n                        \"X\": 0.5010542869567871,\n                        \"Y\": 0.5445019602775574\n                    }\n                ]\n            },\n            \"Id\": \"02a046db-40b9-4fb0-ad53-e32754db8771\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54642486572266,\n            \"Text\": \"3.8.1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03879084065556526,\n                    \"Height\": 0.010024200193583965,\n                    \"Left\": 0.5517566204071045,\n                    \"Top\": 0.5344215035438538\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5517566204071045,\n                        \"Y\": 0.5344215035438538\n                    },\n                    {\n                        \"X\": 0.5905474424362183,\n                        \"Y\": 0.5344215035438538\n                    },\n                    {\n                        \"X\": 0.5905474424362183,\n                        \"Y\": 0.5444456934928894\n                    },\n                    {\n                        \"X\": 0.5517566204071045,\n                        \"Y\": 0.5444456934928894\n                    }\n                ]\n            },\n            \"Id\": \"eea99159-5c3e-456c-ae0f-9d8b3e19587e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84144592285156,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04577649012207985,\n                    \"Height\": 0.01051125954836607,\n                    \"Left\": 0.6451624631881714,\n                    \"Top\": 0.5340661406517029\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6451624631881714,\n                        \"Y\": 0.5340661406517029\n                    },\n                    {\n                        \"X\": 0.6909389495849609,\n                        \"Y\": 0.5340661406517029\n                    },\n                    {\n                        \"X\": 0.6909389495849609,\n                        \"Y\": 0.544577419757843\n                    },\n                    {\n                        \"X\": 0.6451624631881714,\n                        \"Y\": 0.544577419757843\n                    }\n                ]\n            },\n            \"Id\": \"37ee624a-71a6-410c-8f26-1aae5de76465\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.30101776123047,\n            \"Text\": \"3.8.2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03946495056152344,\n                    \"Height\": 0.010128060355782509,\n                    \"Left\": 0.695880651473999,\n                    \"Top\": 0.5344526767730713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.695880651473999,\n                        \"Y\": 0.5344526767730713\n                    },\n                    {\n                        \"X\": 0.7353456020355225,\n                        \"Y\": 0.5344526767730713\n                    },\n                    {\n                        \"X\": 0.7353456020355225,\n                        \"Y\": 0.5445807576179504\n                    },\n                    {\n                        \"X\": 0.695880651473999,\n                        \"Y\": 0.5445807576179504\n                    }\n                ]\n            },\n            \"Id\": \"868a32c9-84a1-4a58-922a-dd7428858bac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83431243896484,\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04561829939484596,\n                    \"Height\": 0.010323869995772839,\n                    \"Left\": 0.7889222502708435,\n                    \"Top\": 0.5341439843177795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7889222502708435,\n                        \"Y\": 0.5341439843177795\n                    },\n                    {\n                        \"X\": 0.8345405459403992,\n                        \"Y\": 0.5341439843177795\n                    },\n                    {\n                        \"X\": 0.8345405459403992,\n                        \"Y\": 0.5444678664207458\n                    },\n                    {\n                        \"X\": 0.7889222502708435,\n                        \"Y\": 0.5444678664207458\n                    }\n                ]\n            },\n            \"Id\": \"86d46545-1bde-4f87-926d-8f53979689f3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27980041503906,\n            \"Text\": \"3.8.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03899217024445534,\n                    \"Height\": 0.010417650453746319,\n                    \"Left\": 0.8398852348327637,\n                    \"Top\": 0.5342458486557007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8398852348327637,\n                        \"Y\": 0.5342458486557007\n                    },\n                    {\n                        \"X\": 0.8788774013519287,\n                        \"Y\": 0.5342458486557007\n                    },\n                    {\n                        \"X\": 0.8788774013519287,\n                        \"Y\": 0.5446634888648987\n                    },\n                    {\n                        \"X\": 0.8398852348327637,\n                        \"Y\": 0.5446634888648987\n                    }\n                ]\n            },\n            \"Id\": \"0161dc75-cb31-417f-a341-ce9e6ff58dcb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.26962280273438,\n            \"Text\": \"YES:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03389924019575119,\n                    \"Height\": 0.010735359974205494,\n                    \"Left\": 0.07708633691072464,\n                    \"Top\": 0.5489842295646667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07708633691072464,\n                        \"Y\": 0.5489842295646667\n                    },\n                    {\n                        \"X\": 0.11098557710647583,\n                        \"Y\": 0.5489842295646667\n                    },\n                    {\n                        \"X\": 0.11098557710647583,\n                        \"Y\": 0.5597195625305176\n                    },\n                    {\n                        \"X\": 0.07708633691072464,\n                        \"Y\": 0.5597195625305176\n                    }\n                ]\n            },\n            \"Id\": \"4ec65266-a74f-4682-86d3-1090f187c674\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97799682617188,\n            \"Text\": \"checked\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06702036410570145,\n                    \"Height\": 0.011127710342407227,\n                    \"Left\": 0.11535238474607468,\n                    \"Top\": 0.5485238432884216\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11535238474607468,\n                        \"Y\": 0.5485238432884216\n                    },\n                    {\n                        \"X\": 0.18237274885177612,\n                        \"Y\": 0.5485238432884216\n                    },\n                    {\n                        \"X\": 0.18237274885177612,\n                        \"Y\": 0.5596515536308289\n                    },\n                    {\n                        \"X\": 0.11535238474607468,\n                        \"Y\": 0.5596515536308289\n                    }\n                ]\n            },\n            \"Id\": \"bf5c7ac8-def7-4dc0-8ae8-90fb53ba952b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75070190429688,\n            \"Text\": \"NO:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02999950386583805,\n                    \"Height\": 0.010455260053277016,\n                    \"Left\": 0.07648774236440659,\n                    \"Top\": 0.5653372406959534\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07648774236440659,\n                        \"Y\": 0.5653372406959534\n                    },\n                    {\n                        \"X\": 0.10648724436759949,\n                        \"Y\": 0.5653372406959534\n                    },\n                    {\n                        \"X\": 0.10648724436759949,\n                        \"Y\": 0.5757924914360046\n                    },\n                    {\n                        \"X\": 0.07648774236440659,\n                        \"Y\": 0.5757924914360046\n                    }\n                ]\n            },\n            \"Id\": \"a87dccf8-8e8e-4a51-842f-d6a62725ba8f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93132781982422,\n            \"Text\": \"not-checked\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09877899289131165,\n                    \"Height\": 0.010898199863731861,\n                    \"Left\": 0.11216665804386139,\n                    \"Top\": 0.5649036169052124\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11216665804386139,\n                        \"Y\": 0.5649036169052124\n                    },\n                    {\n                        \"X\": 0.21094565093517303,\n                        \"Y\": 0.5649036169052124\n                    },\n                    {\n                        \"X\": 0.21094565093517303,\n                        \"Y\": 0.5758017897605896\n                    },\n                    {\n                        \"X\": 0.11216665804386139,\n                        \"Y\": 0.5758017897605896\n                    }\n                ]\n            },\n            \"Id\": \"e0f5935c-17ae-440e-b618-2c5f7e8700da\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.9892349243164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4326760768890381,\n                    \"Height\": 0.14271113276481628,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.4064836800098419\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.5491948127746582\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.5491948127746582\n                    }\n                ]\n            },\n            \"Id\": \"2da79d01-62e7-4af8-9b6b-93019a3abf35\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"319afe13-f1b4-4f91-8740-14eb192e7f67\",\n                        \"f0faf3c7-7e79-452a-8fe3-df6befe1fe08\",\n                        \"6df8d271-d398-4b52-b381-dddf84773272\",\n                        \"de9e3eee-f49a-4b8f-8cfb-109b44ca7f8a\",\n                        \"26298dd8-214c-4454-927c-8008432d2392\",\n                        \"04ddbbf8-c004-43a5-a8f1-ab6d61f192b9\",\n                        \"9c38dac9-9314-49fa-8a07-034f7ea0dce7\",\n                        \"83332bb1-32fa-4145-8c26-d1f48d03e160\",\n                        \"55137207-0bf6-4aca-95b5-aac90d87d270\",\n                        \"6ab798a4-5c8a-4f11-92e4-e31b72f434bc\",\n                        \"9e4386cc-820d-4b37-a341-0ebe7be50168\",\n                        \"5c78d730-506b-474f-977e-8347020b1ab5\",\n                        \"86e304d0-87af-4078-a155-a33d3c2b80b7\",\n                        \"28694ef4-d785-4b07-b64b-df40d9da6cb8\",\n                        \"558a8360-c480-4d30-899c-9d25366022d2\",\n                        \"9b8280df-92d0-4be2-9c56-1ea8490e005c\",\n                        \"6fc46bc9-9c20-4639-a148-6153d0befeec\",\n                        \"e58d9754-c51c-4b10-90e2-f570f93f9717\",\n                        \"0efa6d39-585b-4768-ae0d-9a2381b0803f\",\n                        \"a87f0b84-579c-45f5-8ee6-bfbb38667ded\",\n                        \"cc9e77d0-d37d-4f82-aa99-d9619b5e0d56\",\n                        \"4803b67b-743a-47c2-9596-b2d531af6074\",\n                        \"75d4d683-91c9-41d6-ae53-6fe032a43835\",\n                        \"e97425d7-ca56-4dea-a75a-e3576129e484\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.4064836800098419\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.42418134212493896\n                    }\n                ]\n            },\n            \"Id\": \"319afe13-f1b4-4f91-8740-14eb192e7f67\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5713b7af-14a7-4a24-b444-5459fe0a8823\",\n                        \"b05e2149-603a-420d-bd6d-5989b0272992\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.4064836800098419\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.42418134212493896\n                    }\n                ]\n            },\n            \"Id\": \"f0faf3c7-7e79-452a-8fe3-df6befe1fe08\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46c5d8c3-6659-4c0c-a8ee-d03a5d34c197\",\n                        \"2690c80e-290a-4b7b-9318-f23a48a9ede6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.4064836800098419\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.4064836800098419\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.42418134212493896\n                    }\n                ]\n            },\n            \"Id\": \"6df8d271-d398-4b52-b381-dddf84773272\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9f8730f7-9295-47b6-ac30-9bc3bc302a99\",\n                        \"f139dc87-0c9b-4684-9f9c-33e9c85349b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.018074259161949158,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.42418134212493896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.44225558638572693\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.44225558638572693\n                    }\n                ]\n            },\n            \"Id\": \"de9e3eee-f49a-4b8f-8cfb-109b44ca7f8a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"027f1edc-dd86-4a80-8c6e-96dbed287849\",\n                        \"b1352d68-95b8-47d4-883c-6e1db31a11ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.018074259161949158,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.42418134212493896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.44225558638572693\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.44225558638572693\n                    }\n                ]\n            },\n            \"Id\": \"26298dd8-214c-4454-927c-8008432d2392\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f0e80c74-65b8-4eac-9093-37a3e9fe3075\",\n                        \"3ac127d9-a3d8-4e84-9d9c-ba8526ac1f1e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.018074259161949158,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.42418134212493896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.42418134212493896\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.44225558638572693\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.44225558638572693\n                    }\n                ]\n            },\n            \"Id\": \"04ddbbf8-c004-43a5-a8f1-ab6d61f192b9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6aa513d3-de6b-4ee8-9058-8cba7d4e9c4a\",\n                        \"b48d8334-b7aa-4193-bd49-afb7472a12d3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.4422556161880493\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.4422556161880493\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4422556161880493\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.45995327830314636\n                    }\n                ]\n            },\n            \"Id\": \"9c38dac9-9314-49fa-8a07-034f7ea0dce7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13c810b3-dea3-47df-a779-b8825721cc97\",\n                        \"36bb668d-14c1-4cdf-9963-cf99e18c1ea3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.4422556161880493\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4422556161880493\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.4422556161880493\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.45995327830314636\n                    }\n                ]\n            },\n            \"Id\": \"83332bb1-32fa-4145-8c26-d1f48d03e160\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9892ddda-cfd9-4778-8392-48ec28248bc7\",\n                        \"e25e09e0-604e-4f80-b784-3c681fbf0aaf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.4422556161880493\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.4422556161880493\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.4422556161880493\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.45995327830314636\n                    }\n                ]\n            },\n            \"Id\": \"55137207-0bf6-4aca-95b5-aac90d87d270\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ec8ad23f-fa13-487e-a2f1-db7e226a1ac6\",\n                        \"04908b68-f914-49e3-bc2d-76eab2881c77\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.45995327830314636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4776509404182434\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.4776509404182434\n                    }\n                ]\n            },\n            \"Id\": \"6ab798a4-5c8a-4f11-92e4-e31b72f434bc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ea83c926-94ee-4ca9-b15b-49bbc085084c\",\n                        \"daf3395a-919f-4b84-87da-17e6d36779bb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.45995327830314636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.4776509404182434\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4776509404182434\n                    }\n                ]\n            },\n            \"Id\": \"9e4386cc-820d-4b37-a341-0ebe7be50168\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"600c1159-1eb5-4e4c-b069-319b2340b11a\",\n                        \"04174e7e-8be3-42a9-99c9-90e97b5da4f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.45995327830314636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.45995327830314636\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.4776509404182434\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.4776509404182434\n                    }\n                ]\n            },\n            \"Id\": \"5c78d730-506b-474f-977e-8347020b1ab5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a34cd6f-eaca-438e-b9e2-21f8b20097d5\",\n                        \"9c680bd0-2ff3-425b-9b65-081504162922\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697710543870926,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.4776509702205658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.4776509702205658\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4776509702205658\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4953486919403076\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.4953486919403076\n                    }\n                ]\n            },\n            \"Id\": \"86e304d0-87af-4078-a155-a33d3c2b80b7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6ebf778b-6584-4ffe-b62c-e00a1cf863e1\",\n                        \"dcb79a5a-68d0-4baf-b899-031f5e46bf77\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.017697710543870926,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.4776509702205658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4776509702205658\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.4776509702205658\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.4953486919403076\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.4953486919403076\n                    }\n                ]\n            },\n            \"Id\": \"28694ef4-d785-4b07-b64b-df40d9da6cb8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ecc7cc6e-d73b-4d87-870c-c3a0dfb7b083\",\n                        \"3d82e70c-ae89-4038-ba31-8195121c3a51\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697710543870926,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.4776509702205658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.4776509702205658\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.4776509702205658\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.4953486919403076\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.4953486919403076\n                    }\n                ]\n            },\n            \"Id\": \"558a8360-c480-4d30-899c-9d25366022d2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f30525f3-fd4f-49d3-928d-3c53832ed66e\",\n                        \"75468cab-5593-4a7b-a064-8b22a2f9cb17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.49534866213798523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.49534866213798523\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.49534866213798523\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.5130463242530823\n                    }\n                ]\n            },\n            \"Id\": \"9b8280df-92d0-4be2-9c56-1ea8490e005c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"276d4a02-dd28-4cf2-8f6c-72c936f4503d\",\n                        \"99d44d82-b035-4f42-9a50-87075e54bd26\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.49534866213798523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.49534866213798523\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.49534866213798523\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5130463242530823\n                    }\n                ]\n            },\n            \"Id\": \"6fc46bc9-9c20-4639-a148-6153d0befeec\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f9624f28-97f2-429b-9b83-b06d22eb62fb\",\n                        \"e5b1741a-afc1-4938-a551-03a1ecf563bc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697669565677643,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.49534866213798523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.49534866213798523\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.49534866213798523\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.5130463242530823\n                    }\n                ]\n            },\n            \"Id\": \"e58d9754-c51c-4b10-90e2-f570f93f9717\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f76ebd64-3e67-47d8-a338-261c293d666a\",\n                        \"6c57f761-5373-435f-b756-185c5959561d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697710543870926,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.5130463242530823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5307440161705017\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.5307440161705017\n                    }\n                ]\n            },\n            \"Id\": \"0efa6d39-585b-4768-ae0d-9a2381b0803f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5650beb3-91cd-49df-9749-ac4ba1822b5f\",\n                        \"98491252-8cfc-4a02-a882-8c160f1e0e2a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.017697710543870926,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.5130463242530823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.5307440161705017\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5307440161705017\n                    }\n                ]\n            },\n            \"Id\": \"a87f0b84-579c-45f5-8ee6-bfbb38667ded\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5020f8fe-82fd-4551-9f80-f53a1fe5e0d4\",\n                        \"749e3c4f-8847-4d90-b837-2fa48d0b2784\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.017697710543870926,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.5130463242530823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.5130463242530823\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.5307440161705017\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.5307440161705017\n                    }\n                ]\n            },\n            \"Id\": \"cc9e77d0-d37d-4f82-aa99-d9619b5e0d56\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2995096-1132-48d3-980a-894f7d1f6561\",\n                        \"242b7d0b-69cb-4c5c-bc82-53c34476ed9e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.01845075935125351,\n                    \"Left\": 0.492632657289505,\n                    \"Top\": 0.5307440757751465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.5307440757751465\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5307440757751465\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5491948127746582\n                    },\n                    {\n                        \"X\": 0.492632657289505,\n                        \"Y\": 0.5491948127746582\n                    }\n                ]\n            },\n            \"Id\": \"4803b67b-743a-47c2-9596-b2d531af6074\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"02a046db-40b9-4fb0-ad53-e32754db8771\",\n                        \"eea99159-5c3e-456c-ae0f-9d8b3e19587e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1442253291606903,\n                    \"Height\": 0.01845075935125351,\n                    \"Left\": 0.6368580460548401,\n                    \"Top\": 0.5307440757751465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5307440757751465\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.5307440757751465\n                    },\n                    {\n                        \"X\": 0.7810834050178528,\n                        \"Y\": 0.5491948127746582\n                    },\n                    {\n                        \"X\": 0.6368580460548401,\n                        \"Y\": 0.5491948127746582\n                    }\n                ]\n            },\n            \"Id\": \"75d4d683-91c9-41d6-ae53-6fe032a43835\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"37ee624a-71a6-410c-8f26-1aae5de76465\",\n                        \"868a32c9-84a1-4a58-922a-dd7428858bac\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.9892349243164,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14422538876533508,\n                    \"Height\": 0.01845075935125351,\n                    \"Left\": 0.781083345413208,\n                    \"Top\": 0.5307440757751465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.5307440757751465\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.5307440757751465\n                    },\n                    {\n                        \"X\": 0.9253087639808655,\n                        \"Y\": 0.5491948127746582\n                    },\n                    {\n                        \"X\": 0.781083345413208,\n                        \"Y\": 0.5491948127746582\n                    }\n                ]\n            },\n            \"Id\": \"e97425d7-ca56-4dea-a75a-e3576129e484\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"86d46545-1bde-4f87-926d-8f53979689f3\",\n                        \"0161dc75-cb31-417f-a341-ce9e6ff58dcb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.926025390625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6219512820243835,\n                    \"Height\": 0.10281327366828918,\n                    \"Left\": 0.34136828780174255,\n                    \"Top\": 0.2312764972448349\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34136828780174255,\n                        \"Y\": 0.2312764972448349\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.2312764972448349\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.3340897560119629\n                    },\n                    {\n                        \"X\": 0.34136828780174255,\n                        \"Y\": 0.3340897560119629\n                    }\n                ]\n            },\n            \"Id\": \"0e83a895-2b8d-478d-837c-35c8baefabff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b362bfc2-4ed4-4582-9893-62796f32b76b\",\n                        \"3edf4be8-8725-4d30-a447-309df1bcbe81\",\n                        \"f28abd74-e8f3-4ca7-89a8-13da1b3c2c5f\",\n                        \"39461c81-2e0a-4398-ba7e-bab131ad42b2\",\n                        \"d0cf6a50-4183-4e4b-b361-a0de23b48a50\",\n                        \"b612f605-0877-4b05-9852-b077f9b61835\",\n                        \"e3395a8e-7651-4096-b409-5bf2db8e9c2e\",\n                        \"1501cfae-4a0c-4c8f-8420-d8b71abdae0d\",\n                        \"21fad7bd-73d2-4421-8b03-9b617170f0eb\",\n                        \"b0b459a1-b5c9-4d17-8fc5-7249e4c375b4\",\n                        \"cc177dd4-56ed-46ee-8d9a-ed7ceec6e832\",\n                        \"30094539-df1c-497b-9164-1da7eece7c3b\",\n                        \"e5124d27-9bf2-41eb-a696-efbc626e197f\",\n                        \"2b7b79d7-5001-4856-881c-4c46b2726c8c\",\n                        \"354ad379-3f8d-477d-a549-2ae3638e9549\",\n                        \"52c73b5a-7f13-45bb-8748-0508d3184be6\",\n                        \"0d780cde-0a5f-46ad-9948-7afe98d1382c\",\n                        \"ec8496df-d7a6-4d9e-b9b4-ee4485893a38\",\n                        \"27c83f0e-7e31-40a9-9c41-0bec12dc0403\",\n                        \"b8c60e82-b5ed-4306-80f1-c53c86a30141\",\n                        \"fd4a7daa-3c9e-4116-8aa3-7223e4d0275f\",\n                        \"d112800d-e01a-4441-b3c4-5c5d23f7eb96\",\n                        \"de94fe4f-e51b-4c32-aba9-d4f99e859fc5\",\n                        \"b97a2963-bd17-4e5d-aff0-01d8dd638bba\",\n                        \"4e4fa4c6-3c92-42cb-a1b8-1f37b8b1797e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340301275253296,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.34136831760406494,\n                    \"Top\": 0.2312764823436737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.25157293677330017\n                    },\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.25157293677330017\n                    }\n                ]\n            },\n            \"Id\": \"b362bfc2-4ed4-4582-9893-62796f32b76b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b1d0740a-5ef7-4226-91df-e18c10a29a58\",\n                        \"5ad4f3f8-c688-46f9-b3c6-7a500af8030b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12504836916923523,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.4647713005542755,\n                    \"Top\": 0.2312764823436737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.25157293677330017\n                    },\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.25157293677330017\n                    }\n                ]\n            },\n            \"Id\": \"3edf4be8-8725-4d30-a447-309df1bcbe81\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"057fce31-3320-4aad-8a81-59596d5b1dcb\",\n                        \"68f04b27-586d-4630-9d41-6a07c0100b51\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.5898196697235107,\n                    \"Top\": 0.2312764823436737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.25157293677330017\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.25157293677330017\n                    }\n                ]\n            },\n            \"Id\": \"f28abd74-e8f3-4ca7-89a8-13da1b3c2c5f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"334f895e-30c6-4df5-aacb-0cf231b620af\",\n                        \"6291ad39-03aa-4ab6-a8e4-63b5b6b26f94\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.7132227420806885,\n                    \"Top\": 0.2312764823436737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.25157293677330017\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.25157293677330017\n                    }\n                ]\n            },\n            \"Id\": \"39461c81-2e0a-4398-ba7e-bab131ad42b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fd763da3-32a8-461a-92bd-174ad0e030fb\",\n                        \"022a6e3a-d0d5-491f-bd07-c7a9f672ccae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12669378519058228,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.8366258144378662,\n                    \"Top\": 0.2312764823436737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.2312764823436737\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.25157293677330017\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.25157293677330017\n                    }\n                ]\n            },\n            \"Id\": \"d0cf6a50-4183-4e4b-b361-a0de23b48a50\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2f2d8ba1-da3d-47ae-ad9a-40037c9ab97f\",\n                        \"991f2310-4c94-4cfe-9fce-3f0197eaa5f0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340301275253296,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.34136831760406494,\n                    \"Top\": 0.25157296657562256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.27253490686416626\n                    },\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.27253490686416626\n                    }\n                ]\n            },\n            \"Id\": \"b612f605-0877-4b05-9852-b077f9b61835\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"262a77db-ae01-43ee-98b9-a5d30be484fc\",\n                        \"ec9df24b-4223-4ea9-afd9-1e8dd7f7316a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12504836916923523,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.4647713005542755,\n                    \"Top\": 0.25157296657562256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.27253490686416626\n                    },\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.27253490686416626\n                    }\n                ]\n            },\n            \"Id\": \"e3395a8e-7651-4096-b409-5bf2db8e9c2e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b7fe7a4-79fc-44d0-9f0c-14e17763c159\",\n                        \"4d745dee-7ebf-47ba-8a82-f1206d9ba19c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.5898196697235107,\n                    \"Top\": 0.25157296657562256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.27253490686416626\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.27253490686416626\n                    }\n                ]\n            },\n            \"Id\": \"1501cfae-4a0c-4c8f-8420-d8b71abdae0d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b69f145b-e997-42c1-800b-17519d3e32ef\",\n                        \"c300452e-f3cd-46b2-8151-07a7974d9326\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.7132227420806885,\n                    \"Top\": 0.25157296657562256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.27253490686416626\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.27253490686416626\n                    }\n                ]\n            },\n            \"Id\": \"21fad7bd-73d2-4421-8b03-9b617170f0eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a704e76f-ff9b-46eb-9a6b-35542a6b8c43\",\n                        \"23e7eac0-e92d-40cd-8026-3e2dccb5a334\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12669378519058228,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.8366258144378662,\n                    \"Top\": 0.25157296657562256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.25157296657562256\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.27253490686416626\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.27253490686416626\n                    }\n                ]\n            },\n            \"Id\": \"b0b459a1-b5c9-4d17-8fc5-7249e4c375b4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"334606a6-3b2c-40fe-9d1d-d80103d3387b\",\n                        \"393bb537-f983-4800-b0db-8db2812eae45\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340301275253296,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.34136831760406494,\n                    \"Top\": 0.27253487706184387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.2928313612937927\n                    }\n                ]\n            },\n            \"Id\": \"cc177dd4-56ed-46ee-8d9a-ed7ceec6e832\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"260d17c0-3af7-428a-be93-012e693ccb1c\",\n                        \"00b2a930-9567-4573-aff3-59046874707d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12504836916923523,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.4647713005542755,\n                    \"Top\": 0.27253487706184387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.2928313612937927\n                    }\n                ]\n            },\n            \"Id\": \"30094539-df1c-497b-9164-1da7eece7c3b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4c7e8481-9358-4784-9847-83077be11d16\",\n                        \"d4437c1d-c937-4857-b18b-b1ea50706bab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.5898196697235107,\n                    \"Top\": 0.27253487706184387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.2928313612937927\n                    }\n                ]\n            },\n            \"Id\": \"e5124d27-9bf2-41eb-a696-efbc626e197f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fc1aa1b0-a0c7-472b-9c00-a798d8cc435f\",\n                        \"3d6e6e99-0fd5-4cce-94bd-91d8fdb4cd4e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.7132227420806885,\n                    \"Top\": 0.27253487706184387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.2928313612937927\n                    }\n                ]\n            },\n            \"Id\": \"2b7b79d7-5001-4856-881c-4c46b2726c8c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f930b397-6dca-4b1f-9a6c-7b1c00f4f1ff\",\n                        \"813364e2-cdb5-4635-82c2-cc90a5c0bcba\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12669378519058228,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.8366258144378662,\n                    \"Top\": 0.27253487706184387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.27253487706184387\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.2928313612937927\n                    }\n                ]\n            },\n            \"Id\": \"354ad379-3f8d-477d-a549-2ae3638e9549\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"403d255b-f24e-4e0c-88fa-9136eacf58f6\",\n                        \"f89b635b-7a29-4df9-8765-5b671c46fdb9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340301275253296,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.34136831760406494,\n                    \"Top\": 0.2928313612937927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.3137933015823364\n                    }\n                ]\n            },\n            \"Id\": \"52c73b5a-7f13-45bb-8748-0508d3184be6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c3c838e8-b89f-4cd7-a4f0-c4b61c9f4788\",\n                        \"b8ed9993-b4e2-4fdf-a5ed-ac587754215a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12504836916923523,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.4647713005542755,\n                    \"Top\": 0.2928313612937927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.3137933015823364\n                    }\n                ]\n            },\n            \"Id\": \"0d780cde-0a5f-46ad-9948-7afe98d1382c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a572e77-aa31-49eb-8fe6-6cf110182f16\",\n                        \"50c7e6da-a99a-49c5-bb8a-4e53dc1c2416\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.5898196697235107,\n                    \"Top\": 0.2928313612937927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.3137933015823364\n                    }\n                ]\n            },\n            \"Id\": \"ec8496df-d7a6-4d9e-b9b4-ee4485893a38\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5a89f920-31c1-439a-aec7-680585b25796\",\n                        \"e7ba092f-65d9-42c9-bc93-5d88ff8d8a21\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.7132227420806885,\n                    \"Top\": 0.2928313612937927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.3137933015823364\n                    }\n                ]\n            },\n            \"Id\": \"27c83f0e-7e31-40a9-9c41-0bec12dc0403\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"89a0b628-38d0-4d70-af44-a248e9e189bb\",\n                        \"9e2d3f64-7681-4b6b-ab67-56cae96a26fe\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12669378519058228,\n                    \"Height\": 0.020961929112672806,\n                    \"Left\": 0.8366258144378662,\n                    \"Top\": 0.2928313612937927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.2928313612937927\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.3137933015823364\n                    }\n                ]\n            },\n            \"Id\": \"b8c60e82-b5ed-4306-80f1-c53c86a30141\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8d738af2-8336-4fe7-a9db-9a2094e47c45\",\n                        \"e0b70770-4816-4fa0-98be-167ef2cf3f23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340301275253296,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.34136831760406494,\n                    \"Top\": 0.3137933015823364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.4647713303565979,\n                        \"Y\": 0.3340897560119629\n                    },\n                    {\n                        \"X\": 0.34136831760406494,\n                        \"Y\": 0.3340897560119629\n                    }\n                ]\n            },\n            \"Id\": \"fd4a7daa-3c9e-4116-8aa3-7223e4d0275f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2c926ffd-0deb-41fb-99e3-f10cfce41297\",\n                        \"9e6f5012-92dd-44a4-bc27-241158503f6e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12504836916923523,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.4647713005542755,\n                    \"Top\": 0.3137933015823364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.3340897560119629\n                    },\n                    {\n                        \"X\": 0.4647713005542755,\n                        \"Y\": 0.3340897560119629\n                    }\n                ]\n            },\n            \"Id\": \"d112800d-e01a-4441-b3c4-5c5d23f7eb96\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4b4e476b-a4e9-4664-bf7f-701af4ca7955\",\n                        \"99985721-7815-4138-9be0-6b2a9273efb3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.5898196697235107,\n                    \"Top\": 0.3137933015823364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.3340897560119629\n                    },\n                    {\n                        \"X\": 0.5898196697235107,\n                        \"Y\": 0.3340897560119629\n                    }\n                ]\n            },\n            \"Id\": \"de94fe4f-e51b-4c32-aba9-d4f99e859fc5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"51006c26-86d7-4d59-a810-d492e03d33c0\",\n                        \"21985db3-e896-470a-8279-23ddd60abba9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12340305745601654,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.7132227420806885,\n                    \"Top\": 0.3137933015823364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.3340897560119629\n                    },\n                    {\n                        \"X\": 0.7132227420806885,\n                        \"Y\": 0.3340897560119629\n                    }\n                ]\n            },\n            \"Id\": \"b97a2963-bd17-4e5d-aff0-01d8dd638bba\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"53e96019-5be1-457e-a1a6-612bc148e736\",\n                        \"40851039-70b0-41a0-8065-c92ce33647c7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.926025390625,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12669378519058228,\n                    \"Height\": 0.02029646933078766,\n                    \"Left\": 0.8366258144378662,\n                    \"Top\": 0.3137933015823364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.3137933015823364\n                    },\n                    {\n                        \"X\": 0.9633195996284485,\n                        \"Y\": 0.3340897560119629\n                    },\n                    {\n                        \"X\": 0.8366258144378662,\n                        \"Y\": 0.3340897560119629\n                    }\n                ]\n            },\n            \"Id\": \"4e4fa4c6-3c92-42cb-a1b8-1f37b8b1797e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"96589d36-e02e-40bb-b3ee-204f33971e8b\",\n                        \"f203337b-46f6-42b1-9c20-2ac033d36a48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.516357421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3301241397857666,\n                    \"Height\": 0.05376400053501129,\n                    \"Left\": 0.10114516317844391,\n                    \"Top\": 0.15318438410758972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.206948384642601\n                    },\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.206948384642601\n                    }\n                ]\n            },\n            \"Id\": \"b8f5079a-ee2f-48d8-bb68-40c6debb2dc1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c0320c73-ed42-4812-a8d4-25f8e7a89efa\",\n                        \"1ef65afc-20a5-4068-8eff-3ce3ca9e0702\",\n                        \"3bc37fc0-0c24-4d01-8779-b79a589248a1\",\n                        \"92d2c869-7204-46b4-acd8-5bdba25a28e9\",\n                        \"0eb28fe8-dcee-4b3a-b26e-7fe1b9c63917\",\n                        \"e1b9cbdb-0839-4af6-a5d2-430539b29903\",\n                        \"93179c2a-3cfa-4ff6-b3f6-37a5505bfb82\",\n                        \"03ed9d28-d525-4da2-b48b-a2b9101a252a\",\n                        \"c2eb2ff6-40fc-4e42-9f92-9289d0979ea1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11177431046962738,\n                    \"Height\": 0.017921319231390953,\n                    \"Left\": 0.10114516317844391,\n                    \"Top\": 0.15318438410758972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.17110569775104523\n                    },\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.17110569775104523\n                    }\n                ]\n            },\n            \"Id\": \"c0320c73-ed42-4812-a8d4-25f8e7a89efa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"693718a3-d8d9-4ea2-9439-cfa7afb4fdae\",\n                        \"20477be6-5cdb-4f57-a4b8-56b82dd30f4f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11004135012626648,\n                    \"Height\": 0.017921319231390953,\n                    \"Left\": 0.2129194736480713,\n                    \"Top\": 0.15318438410758972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.17110569775104523\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.17110569775104523\n                    }\n                ]\n            },\n            \"Id\": \"1ef65afc-20a5-4068-8eff-3ce3ca9e0702\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"de3490e5-06c8-4b5e-a2ed-9d71fbd61669\",\n                        \"769bc278-3759-4d7c-b766-4dd648fff7c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10830847173929214,\n                    \"Height\": 0.017921319231390953,\n                    \"Left\": 0.32296082377433777,\n                    \"Top\": 0.15318438410758972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.15318438410758972\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.17110569775104523\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.17110569775104523\n                    }\n                ]\n            },\n            \"Id\": \"3bc37fc0-0c24-4d01-8779-b79a589248a1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a2add06a-d7e5-4f51-be46-00ffcb8f062e\",\n                        \"bbf1f43e-b02a-4b0b-8bb9-e776a740dd29\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11177431046962738,\n                    \"Height\": 0.018253209069371223,\n                    \"Left\": 0.10114516317844391,\n                    \"Top\": 0.17110571265220642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.17110571265220642\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.17110571265220642\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.1893589198589325\n                    },\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.1893589198589325\n                    }\n                ]\n            },\n            \"Id\": \"92d2c869-7204-46b4-acd8-5bdba25a28e9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"62f193ef-e7b5-4c13-b7a0-ecbe1a03649a\",\n                        \"5d5b7d86-c4e2-4d80-aab1-eb46edbb80ed\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11004135012626648,\n                    \"Height\": 0.018253209069371223,\n                    \"Left\": 0.2129194736480713,\n                    \"Top\": 0.17110571265220642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.17110571265220642\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.17110571265220642\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.1893589198589325\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.1893589198589325\n                    }\n                ]\n            },\n            \"Id\": \"0eb28fe8-dcee-4b3a-b26e-7fe1b9c63917\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a9fdd78a-ab2d-4c9f-afb6-97b323d1619b\",\n                        \"bcef7e2f-b821-496e-8416-b76afc942fd2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10830847173929214,\n                    \"Height\": 0.018253209069371223,\n                    \"Left\": 0.32296082377433777,\n                    \"Top\": 0.17110571265220642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.17110571265220642\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.17110571265220642\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.1893589198589325\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.1893589198589325\n                    }\n                ]\n            },\n            \"Id\": \"e1b9cbdb-0839-4af6-a5d2-430539b29903\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7eb4e511-3091-4b79-afc3-b2730b6b9fca\",\n                        \"17fc7483-8c94-4585-b517-85e567a8c4e7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11177431046962738,\n                    \"Height\": 0.01758945919573307,\n                    \"Left\": 0.10114516317844391,\n                    \"Top\": 0.1893589347600937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.1893589347600937\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.1893589347600937\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.206948384642601\n                    },\n                    {\n                        \"X\": 0.10114516317844391,\n                        \"Y\": 0.206948384642601\n                    }\n                ]\n            },\n            \"Id\": \"93179c2a-3cfa-4ff6-b3f6-37a5505bfb82\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a55b010-3182-402f-97d1-66b1c1c0d1a7\",\n                        \"943bbaad-f70d-4b4e-a68f-3a3af8463a0b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11004135012626648,\n                    \"Height\": 0.01758945919573307,\n                    \"Left\": 0.2129194736480713,\n                    \"Top\": 0.1893589347600937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.1893589347600937\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.1893589347600937\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.206948384642601\n                    },\n                    {\n                        \"X\": 0.2129194736480713,\n                        \"Y\": 0.206948384642601\n                    }\n                ]\n            },\n            \"Id\": \"03ed9d28-d525-4da2-b48b-a2b9101a252a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b3d78e15-4124-4ec6-b39a-8ad528e3d54d\",\n                        \"7598e24c-3b6b-4b02-b842-981d2a9457a2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.516357421875,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10830847173929214,\n                    \"Height\": 0.01758945919573307,\n                    \"Left\": 0.32296082377433777,\n                    \"Top\": 0.1893589347600937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.1893589347600937\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.1893589347600937\n                    },\n                    {\n                        \"X\": 0.4312692880630493,\n                        \"Y\": 0.206948384642601\n                    },\n                    {\n                        \"X\": 0.32296082377433777,\n                        \"Y\": 0.206948384642601\n                    }\n                ]\n            },\n            \"Id\": \"c2eb2ff6-40fc-4e42-9f92-9289d0979ea1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"280a2f4f-d07c-4221-b384-787044a31bbc\",\n                        \"60654585-6a37-46a1-8f95-36a4f2ad9fb1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043333061039447784,\n                    \"Height\": 0.010898925364017487,\n                    \"Left\": 0.7540833353996277,\n                    \"Top\": 0.03360270708799362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7540833353996277,\n                        \"Y\": 0.03360270708799362\n                    },\n                    {\n                        \"X\": 0.7974163889884949,\n                        \"Y\": 0.03360270708799362\n                    },\n                    {\n                        \"X\": 0.7974163889884949,\n                        \"Y\": 0.04450163245201111\n                    },\n                    {\n                        \"X\": 0.7540833353996277,\n                        \"Y\": 0.04450163245201111\n                    }\n                ]\n            },\n            \"Id\": \"458a9301-8a9d-4eb2-9469-70302c62622e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"26409bb4-902c-45ed-915e-4e0d63fbde7a\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5c0db6d-136e-48bd-bd3d-51b3eb66cbff\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09237521141767502,\n                    \"Height\": 0.010876830667257309,\n                    \"Left\": 0.801909863948822,\n                    \"Top\": 0.033592019230127335\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.801909863948822,\n                        \"Y\": 0.033592019230127335\n                    },\n                    {\n                        \"X\": 0.8942850828170776,\n                        \"Y\": 0.033592019230127335\n                    },\n                    {\n                        \"X\": 0.8942850828170776,\n                        \"Y\": 0.044468849897384644\n                    },\n                    {\n                        \"X\": 0.801909863948822,\n                        \"Y\": 0.044468849897384644\n                    }\n                ]\n            },\n            \"Id\": \"26409bb4-902c-45ed-915e-4e0d63fbde7a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9698fe86-3b26-4320-ae95-6bf357d8a20c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04205852001905441,\n                    \"Height\": 0.013164469040930271,\n                    \"Left\": 0.7578019499778748,\n                    \"Top\": 0.08801469951868057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7578019499778748,\n                        \"Y\": 0.08801469951868057\n                    },\n                    {\n                        \"X\": 0.7998604774475098,\n                        \"Y\": 0.08801469951868057\n                    },\n                    {\n                        \"X\": 0.7998604774475098,\n                        \"Y\": 0.10117916762828827\n                    },\n                    {\n                        \"X\": 0.7578019499778748,\n                        \"Y\": 0.10117916762828827\n                    }\n                ]\n            },\n            \"Id\": \"803f2f38-c2f9-4d41-98b6-2854d43426d8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"e4a1b7f6-4110-4291-8e0b-561019f71a0b\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4096d8d9-c7d7-4136-84a7-64baa8928609\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055733561515808105,\n                    \"Height\": 0.011011667549610138,\n                    \"Left\": 0.8036167025566101,\n                    \"Top\": 0.08796775341033936\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8036167025566101,\n                        \"Y\": 0.08796775341033936\n                    },\n                    {\n                        \"X\": 0.8593502640724182,\n                        \"Y\": 0.08796775341033936\n                    },\n                    {\n                        \"X\": 0.8593502640724182,\n                        \"Y\": 0.0989794209599495\n                    },\n                    {\n                        \"X\": 0.8036167025566101,\n                        \"Y\": 0.0989794209599495\n                    }\n                ]\n            },\n            \"Id\": \"e4a1b7f6-4110-4291-8e0b-561019f71a0b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"262feb10-ecc6-420e-aa55-33adc2f8c6c0\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04262833669781685,\n                    \"Height\": 0.01308541838079691,\n                    \"Left\": 0.7580611109733582,\n                    \"Top\": 0.11237998306751251\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7580611109733582,\n                        \"Y\": 0.11237998306751251\n                    },\n                    {\n                        \"X\": 0.8006894588470459,\n                        \"Y\": 0.11237998306751251\n                    },\n                    {\n                        \"X\": 0.8006894588470459,\n                        \"Y\": 0.12546540796756744\n                    },\n                    {\n                        \"X\": 0.7580611109733582,\n                        \"Y\": 0.12546540796756744\n                    }\n                ]\n            },\n            \"Id\": \"7f50874d-ca5d-4f4f-a37d-3616893f3b29\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"b7ab27ca-0404-4ff7-9ca8-c8ae4dd33dad\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05655166506767273,\n                    \"Height\": 0.010811899788677692,\n                    \"Left\": 0.8038789629936218,\n                    \"Top\": 0.1123320534825325\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8038789629936218,\n                        \"Y\": 0.1123320534825325\n                    },\n                    {\n                        \"X\": 0.8604305982589722,\n                        \"Y\": 0.1123320534825325\n                    },\n                    {\n                        \"X\": 0.8604305982589722,\n                        \"Y\": 0.12314394861459732\n                    },\n                    {\n                        \"X\": 0.8038789629936218,\n                        \"Y\": 0.12314394861459732\n                    }\n                ]\n            },\n            \"Id\": \"b7ab27ca-0404-4ff7-9ca8-c8ae4dd33dad\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"25b54fea-ae51-4f79-adf0-c144c026b248\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 85.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03423896059393883,\n                    \"Height\": 0.010701701045036316,\n                    \"Left\": 0.0769645944237709,\n                    \"Top\": 0.5494946837425232\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0769645944237709,\n                        \"Y\": 0.5494946837425232\n                    },\n                    {\n                        \"X\": 0.11120355874300003,\n                        \"Y\": 0.5494946837425232\n                    },\n                    {\n                        \"X\": 0.11120355874300003,\n                        \"Y\": 0.5601963996887207\n                    },\n                    {\n                        \"X\": 0.0769645944237709,\n                        \"Y\": 0.5601963996887207\n                    }\n                ]\n            },\n            \"Id\": \"80578246-a93f-42e6-9c6c-701b305db3f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"b561080b-f7b4-45bc-b198-02c0e8a6fa53\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ec65266-a74f-4682-86d3-1090f187c674\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 85.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06966643780469894,\n                    \"Height\": 0.011228515766561031,\n                    \"Left\": 0.11314452439546585,\n                    \"Top\": 0.5491240620613098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11314452439546585,\n                        \"Y\": 0.5491240620613098\n                    },\n                    {\n                        \"X\": 0.1828109622001648,\n                        \"Y\": 0.5491240620613098\n                    },\n                    {\n                        \"X\": 0.1828109622001648,\n                        \"Y\": 0.5603525638580322\n                    },\n                    {\n                        \"X\": 0.11314452439546585,\n                        \"Y\": 0.5603525638580322\n                    }\n                ]\n            },\n            \"Id\": \"b561080b-f7b4-45bc-b198-02c0e8a6fa53\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bf5c7ac8-def7-4dc0-8ae8-90fb53ba952b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 84.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03049684874713421,\n                    \"Height\": 0.011006265878677368,\n                    \"Left\": 0.0764058530330658,\n                    \"Top\": 0.5654353499412537\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0764058530330658,\n                        \"Y\": 0.5654353499412537\n                    },\n                    {\n                        \"X\": 0.10690270364284515,\n                        \"Y\": 0.5654353499412537\n                    },\n                    {\n                        \"X\": 0.10690270364284515,\n                        \"Y\": 0.5764415860176086\n                    },\n                    {\n                        \"X\": 0.0764058530330658,\n                        \"Y\": 0.5764415860176086\n                    }\n                ]\n            },\n            \"Id\": \"0f648bc8-e9e6-4bb4-a933-c17bcc991b29\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c44a70c7-916a-41bc-a202-9041e44a0f2b\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a87dccf8-8e8e-4a51-842f-d6a62725ba8f\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 84.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10356873273849487,\n                    \"Height\": 0.01076163724064827,\n                    \"Left\": 0.10911894589662552,\n                    \"Top\": 0.5656524896621704\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10911894589662552,\n                        \"Y\": 0.5656524896621704\n                    },\n                    {\n                        \"X\": 0.212687686085701,\n                        \"Y\": 0.5656524896621704\n                    },\n                    {\n                        \"X\": 0.212687686085701,\n                        \"Y\": 0.5764141082763672\n                    },\n                    {\n                        \"X\": 0.10911894589662552,\n                        \"Y\": 0.5764141082763672\n                    }\n                ]\n            },\n            \"Id\": \"c44a70c7-916a-41bc-a202-9041e44a0f2b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e0f5935c-17ae-440e-b618-2c5f7e8700da\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 58,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034566547721624374,\n                    \"Height\": 0.010777872987091541,\n                    \"Left\": 0.07601422816514969,\n                    \"Top\": 0.41859760880470276\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07601422816514969,\n                        \"Y\": 0.41859760880470276\n                    },\n                    {\n                        \"X\": 0.11058077216148376,\n                        \"Y\": 0.41859760880470276\n                    },\n                    {\n                        \"X\": 0.11058077216148376,\n                        \"Y\": 0.4293754994869232\n                    },\n                    {\n                        \"X\": 0.07601422816514969,\n                        \"Y\": 0.4293754994869232\n                    }\n                ]\n            },\n            \"Id\": \"e38cf76e-b676-434c-84a9-f82c8747ccc9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"f236067d-16b7-4f8f-97f4-1edc8dd798a3\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2ec3e7d2-9cf4-4827-a853-402693c7d693\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 58,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06554920971393585,\n                    \"Height\": 0.011397827416658401,\n                    \"Left\": 0.11412835866212845,\n                    \"Top\": 0.41789090633392334\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11412835866212845,\n                        \"Y\": 0.41789090633392334\n                    },\n                    {\n                        \"X\": 0.1796775609254837,\n                        \"Y\": 0.41789090633392334\n                    },\n                    {\n                        \"X\": 0.1796775609254837,\n                        \"Y\": 0.42928874492645264\n                    },\n                    {\n                        \"X\": 0.11412835866212845,\n                        \"Y\": 0.42928874492645264\n                    }\n                ]\n            },\n            \"Id\": \"f236067d-16b7-4f8f-97f4-1edc8dd798a3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f5362839-b43d-4d9a-89e0-b9d4d56b8496\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 56.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05229628086090088,\n                    \"Height\": 0.010794362053275108,\n                    \"Left\": 0.08516786247491837,\n                    \"Top\": 0.060895562171936035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08516786247491837,\n                        \"Y\": 0.060895562171936035\n                    },\n                    {\n                        \"X\": 0.13746413588523865,\n                        \"Y\": 0.060895562171936035\n                    },\n                    {\n                        \"X\": 0.13746413588523865,\n                        \"Y\": 0.07168992608785629\n                    },\n                    {\n                        \"X\": 0.08516786247491837,\n                        \"Y\": 0.07168992608785629\n                    }\n                ]\n            },\n            \"Id\": \"e6ec8586-09d7-4dd7-b7b8-ab3efce7dd99\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"1315cf98-62f5-421a-9a54-f4b228e8aa50\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5e433305-2585-455c-b8f0-3b7afae91e2c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 56.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09697497636079788,\n                    \"Height\": 0.010682733729481697,\n                    \"Left\": 0.13983367383480072,\n                    \"Top\": 0.06091514229774475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13983367383480072,\n                        \"Y\": 0.06091514229774475\n                    },\n                    {\n                        \"X\": 0.236808642745018,\n                        \"Y\": 0.06091514229774475\n                    },\n                    {\n                        \"X\": 0.236808642745018,\n                        \"Y\": 0.0715978741645813\n                    },\n                    {\n                        \"X\": 0.13983367383480072,\n                        \"Y\": 0.0715978741645813\n                    }\n                ]\n            },\n            \"Id\": \"1315cf98-62f5-421a-9a54-f4b228e8aa50\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"37278ca4-ae2d-4b26-840a-9faa31beb9b8\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"ResponseMetadata\": {\n        \"RequestId\": \"12345678-1234-1234-1234-1234567890\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"x-amzn-requestid\": \"12345678-1234-1234-1234-1234567890\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"151806\",\n            \"date\": \"Tue, 20 Apr 2021 04:05:42 GMT\"\n        },\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/tests/data/gib1.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 1.73299076420408e-16,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 8.654170694555159e-17\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"f2546f05-421b-4689-b0d1-4d6c22e0fb5e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f045adf0-ea21-4f0f-aa99-1e1af435d781\",\n            \"dcade28f-a712-40eb-b61f-720731b5bad6\",\n            \"3cc7a046-2271-4bc0-b892-bd4d92c5fe30\",\n            \"6f6cdf2b-b1f7-47e7-bc5d-8c7260a0e4bc\",\n            \"6e6eebcb-4c91-49a7-be7d-e18bed037e1f\",\n            \"27a63bc9-a376-4647-933f-1e6d47601943\",\n            \"acf24932-297a-403a-b2bc-1096870e2b0f\",\n            \"40f566bd-c084-439c-a021-d919662fdea7\",\n            \"a62efae3-5c35-4f76-b731-7f62290d6b8a\",\n            \"3bf8fcfb-8827-4c74-ba8b-2bc0c33a7fc1\",\n            \"261dcddb-36e1-47f4-b5e9-ff38a6abddff\",\n            \"acb664cc-f0a1-4767-8a44-756f67da4d81\",\n            \"e3b4b3e7-e8c3-4ffb-a5b3-ebb6e47a203d\",\n            \"0d14779a-a73f-4ccb-b793-27ea7f755f9a\",\n            \"b917e376-c15c-4cc9-9059-0c7866e4d223\",\n            \"d777d595-9e06-4c1c-ad16-fdae1c04ac46\",\n            \"a3eee1af-7a9b-4407-811c-f74009a591c3\",\n            \"a5f73272-4c77-49f5-aefa-673ebd7e5943\",\n            \"78a0173c-93a9-49e5-bfc5-eb79dbbc5096\",\n            \"e7c8bb7c-cb43-41a7-bfde-7981a4438c56\",\n            \"2e3c1bed-f40c-4782-9e29-757ef9d2827b\",\n            \"545ced6c-9d5a-43d0-8660-bf692f9042da\",\n            \"b37d604e-63b2-425c-9a5c-bd135195c758\",\n            \"7a6c3b66-f62c-45b9-b1f9-9d2055e7c180\",\n            \"25e62731-7d65-4251-a9f6-dea96b35404b\",\n            \"69c8c26b-bd5a-4880-acae-2450a7d6360c\",\n            \"a701d3ec-ba2f-4f5f-84c2-52cd6b9c808c\",\n            \"fcb6b4c3-d9f3-460e-8e90-85b62f25929c\",\n            \"f86e5c2c-4a89-40d4-89bb-1e008e92db79\",\n            \"d6848bfe-3755-40d4-a57a-9c576563dd9c\",\n            \"1a4b1b5c-d292-4a70-b8e7-f3e44ad8420f\",\n            \"521e03a6-e8f7-41fb-a2ad-434c468c3b87\",\n            \"ea420163-58dc-4e4c-958b-aa7bf08b6c4a\",\n            \"c1cf718f-7d85-498a-b028-b173ad0729a3\",\n            \"308e2d7e-563f-464f-ad1f-fcdba4c713b2\",\n            \"346d3e14-1e92-4a95-b305-e063fbfe86d2\",\n            \"50537930-1746-408c-bc83-93dca5276600\",\n            \"36f2e1ed-73ed-4c9d-b4a7-c537a3ea6984\",\n            \"afc60ce9-fd4d-49a8-b24a-81e586861cd8\",\n            \"306a0b5c-5197-46cd-82e2-a5d92baafbf8\",\n            \"efcd176b-dd56-43b1-839c-0fdbfea0fca2\",\n            \"5821a87f-c3f9-45cf-b578-ea94fa4fe3b2\",\n            \"bab61869-d097-4e53-87bc-4c3648c85cd1\",\n            \"dc8e3ff6-615d-4f07-b466-44b2f8934473\",\n            \"fadba1a2-fa35-4ecd-906c-ee5759c6e365\",\n            \"51778739-2fdb-437f-b05a-6dc7f898c7a1\",\n            \"05e98f5d-7e8e-4eed-ae31-ded5455b202c\",\n            \"a4acfff0-0f0e-43ea-8d40-892b2cfbae0b\",\n            \"fc768765-8877-43e4-be8b-cd6de55614c8\",\n            \"a6617bce-cf0a-418b-a452-c40da805b9c6\",\n            \"61b84ff0-7ff2-4938-9183-616b87baaf94\",\n            \"5576430c-6338-4261-a3bc-d4a8b816369a\",\n            \"57b350c6-89bf-4dbb-bd54-4a6d106e21e0\",\n            \"ab7a6ea0-a6af-4e81-b3a9-a83cd16b6273\",\n            \"a7fc62df-7f60-4bb0-b403-77f9d11b0019\",\n            \"59633a32-8e9f-430a-ad99-5e99d5b74556\",\n            \"39c06663-927e-4173-a0a2-ef6c102e6501\",\n            \"32721c67-36e1-4be5-8be2-32606cb72993\",\n            \"df0cc45f-d8a0-4d8d-a7bf-314a14e44fc8\",\n            \"67a23e16-f9b8-4832-a0f2-3b8cf52f5665\",\n            \"c0195caa-81b2-4844-8c4e-fc5590a34e0a\",\n            \"aba0e893-9277-4eb2-b577-a640d1635b32\",\n            \"cbc793ff-74be-4a53-9c98-fc66c144a2c6\",\n            \"94e5646d-cd79-4332-a53f-7fbaf0791ed3\",\n            \"4403bd71-13f8-4d0c-882d-dbf497ca1701\",\n            \"ed1df829-f3f8-438b-b71c-9ce61bcc1849\",\n            \"2da79d01-62e7-4af8-9b6b-93019a3abf35\",\n            \"0e83a895-2b8d-478d-837c-35c8baefabff\",\n            \"b8f5079a-ee2f-48d8-bb68-40c6debb2dc1\",\n            \"458a9301-8a9d-4eb2-9469-70302c62622e\",\n            \"26409bb4-902c-45ed-915e-4e0d63fbde7a\",\n            \"803f2f38-c2f9-4d41-98b6-2854d43426d8\",\n            \"e4a1b7f6-4110-4291-8e0b-561019f71a0b\",\n            \"7f50874d-ca5d-4f4f-a37d-3616893f3b29\",\n            \"b7ab27ca-0404-4ff7-9ca8-c8ae4dd33dad\",\n            \"80578246-a93f-42e6-9c6c-701b305db3f0\",\n            \"b561080b-f7b4-45bc-b198-02c0e8a6fa53\",\n            \"0f648bc8-e9e6-4bb4-a933-c17bcc991b29\",\n            \"c44a70c7-916a-41bc-a202-9041e44a0f2b\",\n            \"e38cf76e-b676-434c-84a9-f82c8747ccc9\",\n            \"f236067d-16b7-4f8f-97f4-1edc8dd798a3\",\n            \"e6ec8586-09d7-4dd7-b7b8-ab3efce7dd99\",\n            \"1315cf98-62f5-421a-9a54-f4b228e8aa50\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.14612579345703,\n      \"Text\": \"Date: 2020-03-27\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13967332243919373,\n          \"Height\": 0.010916125029325485,\n          \"Left\": 0.7542068362236023,\n          \"Top\": 0.03331288322806358\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7542068362236023,\n            \"Y\": 0.03331288322806358\n          },\n          {\n            \"X\": 0.8938801884651184,\n            \"Y\": 0.03331288322806358\n          },\n          {\n            \"X\": 0.8938801884651184,\n            \"Y\": 0.04422900825738907\n          },\n          {\n            \"X\": 0.7542068362236023,\n            \"Y\": 0.04422900825738907\n          }\n        ]\n      },\n      \"Id\": \"f045adf0-ea21-4f0f-aa99-1e1af435d781\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5c0db6d-136e-48bd-bd3d-51b3eb66cbff\",\n            \"9698fe86-3b26-4320-ae95-6bf357d8a20c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.53825378417969,\n      \"Text\": \"Name: SomeName\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15057514607906342,\n          \"Height\": 0.0105624720454216,\n          \"Left\": 0.08570101112127304,\n          \"Top\": 0.060842134058475494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08570101112127304,\n            \"Y\": 0.060842134058475494\n          },\n          {\n            \"X\": 0.23627614974975586,\n            \"Y\": 0.060842134058475494\n          },\n          {\n            \"X\": 0.23627614974975586,\n            \"Y\": 0.0714046061038971\n          },\n          {\n            \"X\": 0.08570101112127304,\n            \"Y\": 0.0714046061038971\n          }\n        ]\n      },\n      \"Id\": \"dcade28f-a712-40eb-b61f-720731b5bad6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e433305-2585-455c-b8f0-3b7afae91e2c\",\n            \"37278ca4-ae2d-4b26-840a-9faa31beb9b8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70161437988281,\n      \"Text\": \"Key1: value1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10150674730539322,\n          \"Height\": 0.01322206761687994,\n          \"Left\": 0.7581079006195068,\n          \"Top\": 0.08769001066684723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7581079006195068,\n            \"Y\": 0.08769001066684723\n          },\n          {\n            \"X\": 0.8596146702766418,\n            \"Y\": 0.08769001066684723\n          },\n          {\n            \"X\": 0.8596146702766418,\n            \"Y\": 0.10091207921504974\n          },\n          {\n            \"X\": 0.7581079006195068,\n            \"Y\": 0.10091207921504974\n          }\n        ]\n      },\n      \"Id\": \"3cc7a046-2271-4bc0-b892-bd4d92c5fe30\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4096d8d9-c7d7-4136-84a7-64baa8928609\",\n            \"262feb10-ecc6-420e-aa55-33adc2f8c6c0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.33039093017578,\n      \"Text\": \"Key2:value2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10219025611877441,\n          \"Height\": 0.013424985110759735,\n          \"Left\": 0.757502019405365,\n          \"Top\": 0.11186148971319199\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.757502019405365,\n            \"Y\": 0.11186148971319199\n          },\n          {\n            \"X\": 0.8596922755241394,\n            \"Y\": 0.11186148971319199\n          },\n          {\n            \"X\": 0.8596922755241394,\n            \"Y\": 0.12528647482395172\n          },\n          {\n            \"X\": 0.757502019405365,\n            \"Y\": 0.12528647482395172\n          }\n        ]\n      },\n      \"Id\": \"6f6cdf2b-b1f7-47e7-bc5d-8c7260a0e4bc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"25b54fea-ae51-4f79-adf0-c144c026b248\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.29039001464844,\n      \"Text\": \"Value 1.1.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09044439345598221,\n          \"Height\": 0.010462656617164612,\n          \"Left\": 0.10996533930301666,\n          \"Top\": 0.15750041604042053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10996533930301666,\n            \"Y\": 0.15750041604042053\n          },\n          {\n            \"X\": 0.20040972530841827,\n            \"Y\": 0.15750041604042053\n          },\n          {\n            \"X\": 0.20040972530841827,\n            \"Y\": 0.16796307265758514\n          },\n          {\n            \"X\": 0.10996533930301666,\n            \"Y\": 0.16796307265758514\n          }\n        ]\n      },\n      \"Id\": \"6e6eebcb-4c91-49a7-be7d-e18bed037e1f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"693718a3-d8d9-4ea2-9439-cfa7afb4fdae\",\n            \"20477be6-5cdb-4f57-a4b8-56b82dd30f4f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.53871154785156,\n      \"Text\": \"Value 1.1.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0902898982167244,\n          \"Height\": 0.010304495692253113,\n          \"Left\": 0.21957671642303467,\n          \"Top\": 0.1575348675251007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21957671642303467,\n            \"Y\": 0.1575348675251007\n          },\n          {\n            \"X\": 0.30986660718917847,\n            \"Y\": 0.1575348675251007\n          },\n          {\n            \"X\": 0.30986660718917847,\n            \"Y\": 0.16783936321735382\n          },\n          {\n            \"X\": 0.21957671642303467,\n            \"Y\": 0.16783936321735382\n          }\n        ]\n      },\n      \"Id\": \"27a63bc9-a376-4647-933f-1e6d47601943\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de3490e5-06c8-4b5e-a2ed-9d71fbd61669\",\n            \"769bc278-3759-4d7c-b766-4dd648fff7c4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4444580078125,\n      \"Text\": \"Value 1.1.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08968809247016907,\n          \"Height\": 0.010384619235992432,\n          \"Left\": 0.3296671509742737,\n          \"Top\": 0.15744420886039734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3296671509742737,\n            \"Y\": 0.15744420886039734\n          },\n          {\n            \"X\": 0.41935524344444275,\n            \"Y\": 0.15744420886039734\n          },\n          {\n            \"X\": 0.41935524344444275,\n            \"Y\": 0.16782882809638977\n          },\n          {\n            \"X\": 0.3296671509742737,\n            \"Y\": 0.16782882809638977\n          }\n        ]\n      },\n      \"Id\": \"acf24932-297a-403a-b2bc-1096870e2b0f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a2add06a-d7e5-4f51-be46-00ffcb8f062e\",\n            \"bbf1f43e-b02a-4b0b-8bb9-e776a740dd29\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4854507446289,\n      \"Text\": \"Value 1.2.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08987818658351898,\n          \"Height\": 0.010315137915313244,\n          \"Left\": 0.10996827483177185,\n          \"Top\": 0.17520037293434143\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10996827483177185,\n            \"Y\": 0.17520037293434143\n          },\n          {\n            \"X\": 0.19984646141529083,\n            \"Y\": 0.17520037293434143\n          },\n          {\n            \"X\": 0.19984646141529083,\n            \"Y\": 0.18551550805568695\n          },\n          {\n            \"X\": 0.10996827483177185,\n            \"Y\": 0.18551550805568695\n          }\n        ]\n      },\n      \"Id\": \"40f566bd-c084-439c-a021-d919662fdea7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62f193ef-e7b5-4c13-b7a0-ecbe1a03649a\",\n            \"5d5b7d86-c4e2-4d80-aab1-eb46edbb80ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.60028839111328,\n      \"Text\": \"Value 1.2.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09052038192749023,\n          \"Height\": 0.010159865021705627,\n          \"Left\": 0.21950756013393402,\n          \"Top\": 0.1752668023109436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21950756013393402,\n            \"Y\": 0.1752668023109436\n          },\n          {\n            \"X\": 0.31002792716026306,\n            \"Y\": 0.1752668023109436\n          },\n          {\n            \"X\": 0.31002792716026306,\n            \"Y\": 0.18542666733264923\n          },\n          {\n            \"X\": 0.21950756013393402,\n            \"Y\": 0.18542666733264923\n          }\n        ]\n      },\n      \"Id\": \"a62efae3-5c35-4f76-b731-7f62290d6b8a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a9fdd78a-ab2d-4c9f-afb6-97b323d1619b\",\n            \"bcef7e2f-b821-496e-8416-b76afc942fd2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.3526840209961,\n      \"Text\": \"Value 1.2.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09013134241104126,\n          \"Height\": 0.010190678760409355,\n          \"Left\": 0.3293275237083435,\n          \"Top\": 0.1752515435218811\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3293275237083435,\n            \"Y\": 0.1752515435218811\n          },\n          {\n            \"X\": 0.41945886611938477,\n            \"Y\": 0.1752515435218811\n          },\n          {\n            \"X\": 0.41945886611938477,\n            \"Y\": 0.1854422241449356\n          },\n          {\n            \"X\": 0.3293275237083435,\n            \"Y\": 0.1854422241449356\n          }\n        ]\n      },\n      \"Id\": \"3bf8fcfb-8827-4c74-ba8b-2bc0c33a7fc1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7eb4e511-3091-4b79-afc3-b2730b6b9fca\",\n            \"17fc7483-8c94-4585-b517-85e567a8c4e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.20941925048828,\n      \"Text\": \"Value 1.3.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0901036337018013,\n          \"Height\": 0.010295148007571697,\n          \"Left\": 0.11013281345367432,\n          \"Top\": 0.19289986789226532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11013281345367432,\n            \"Y\": 0.19289986789226532\n          },\n          {\n            \"X\": 0.20023643970489502,\n            \"Y\": 0.19289986789226532\n          },\n          {\n            \"X\": 0.20023643970489502,\n            \"Y\": 0.2031950205564499\n          },\n          {\n            \"X\": 0.11013281345367432,\n            \"Y\": 0.2031950205564499\n          }\n        ]\n      },\n      \"Id\": \"261dcddb-36e1-47f4-b5e9-ff38a6abddff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a55b010-3182-402f-97d1-66b1c1c0d1a7\",\n            \"943bbaad-f70d-4b4e-a68f-3a3af8463a0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.40666198730469,\n      \"Text\": \"Value 1.3.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09008145332336426,\n          \"Height\": 0.010228514671325684,\n          \"Left\": 0.21970826387405396,\n          \"Top\": 0.19291900098323822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21970826387405396,\n            \"Y\": 0.19291900098323822\n          },\n          {\n            \"X\": 0.3097897171974182,\n            \"Y\": 0.19291900098323822\n          },\n          {\n            \"X\": 0.3097897171974182,\n            \"Y\": 0.2031475156545639\n          },\n          {\n            \"X\": 0.21970826387405396,\n            \"Y\": 0.2031475156545639\n          }\n        ]\n      },\n      \"Id\": \"acb664cc-f0a1-4767-8a44-756f67da4d81\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3d78e15-4124-4ec6-b39a-8ad528e3d54d\",\n            \"7598e24c-3b6b-4b02-b842-981d2a9457a2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.55914306640625,\n      \"Text\": \"Value 1.3.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08966375142335892,\n          \"Height\": 0.010327053256332874,\n          \"Left\": 0.3294762074947357,\n          \"Top\": 0.19291351735591888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3294762074947357,\n            \"Y\": 0.19291351735591888\n          },\n          {\n            \"X\": 0.41913995146751404,\n            \"Y\": 0.19291351735591888\n          },\n          {\n            \"X\": 0.41913995146751404,\n            \"Y\": 0.20324057340621948\n          },\n          {\n            \"X\": 0.3294762074947357,\n            \"Y\": 0.20324057340621948\n          }\n        ]\n      },\n      \"Id\": \"e3b4b3e7-e8c3-4ffb-a5b3-ebb6e47a203d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"280a2f4f-d07c-4221-b384-787044a31bbc\",\n            \"60654585-6a37-46a1-8f95-36a4f2ad9fb1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.01704406738281,\n      \"Text\": \"Value 2.1.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10589480400085449,\n          \"Height\": 0.011909380555152893,\n          \"Left\": 0.3488728404045105,\n          \"Top\": 0.23571865260601044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3488728404045105,\n            \"Y\": 0.23571865260601044\n          },\n          {\n            \"X\": 0.454767644405365,\n            \"Y\": 0.23571865260601044\n          },\n          {\n            \"X\": 0.454767644405365,\n            \"Y\": 0.24762803316116333\n          },\n          {\n            \"X\": 0.3488728404045105,\n            \"Y\": 0.24762803316116333\n          }\n        ]\n      },\n      \"Id\": \"0d14779a-a73f-4ccb-b793-27ea7f755f9a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b1d0740a-5ef7-4226-91df-e18c10a29a58\",\n            \"5ad4f3f8-c688-46f9-b3c6-7a500af8030b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54840087890625,\n      \"Text\": \"Value 2.1.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1056557297706604,\n          \"Height\": 0.01207609474658966,\n          \"Left\": 0.47313034534454346,\n          \"Top\": 0.23562827706336975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47313034534454346,\n            \"Y\": 0.23562827706336975\n          },\n          {\n            \"X\": 0.5787860751152039,\n            \"Y\": 0.23562827706336975\n          },\n          {\n            \"X\": 0.5787860751152039,\n            \"Y\": 0.2477043718099594\n          },\n          {\n            \"X\": 0.47313034534454346,\n            \"Y\": 0.2477043718099594\n          }\n        ]\n      },\n      \"Id\": \"b917e376-c15c-4cc9-9059-0c7866e4d223\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"057fce31-3320-4aad-8a81-59596d5b1dcb\",\n            \"68f04b27-586d-4630-9d41-6a07c0100b51\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52290344238281,\n      \"Text\": \"Value 2.1.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10536134243011475,\n          \"Height\": 0.012077540159225464,\n          \"Left\": 0.597499668598175,\n          \"Top\": 0.23563411831855774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.597499668598175,\n            \"Y\": 0.23563411831855774\n          },\n          {\n            \"X\": 0.7028610110282898,\n            \"Y\": 0.23563411831855774\n          },\n          {\n            \"X\": 0.7028610110282898,\n            \"Y\": 0.2477116584777832\n          },\n          {\n            \"X\": 0.597499668598175,\n            \"Y\": 0.2477116584777832\n          }\n        ]\n      },\n      \"Id\": \"d777d595-9e06-4c1c-ad16-fdae1c04ac46\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"334f895e-30c6-4df5-aacb-0cf231b620af\",\n            \"6291ad39-03aa-4ab6-a8e4-63b5b6b26f94\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.61541748046875,\n      \"Text\": \"Value 2.1.4\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10620392113924026,\n          \"Height\": 0.012122049927711487,\n          \"Left\": 0.7210274338722229,\n          \"Top\": 0.23564797639846802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7210274338722229,\n            \"Y\": 0.23564797639846802\n          },\n          {\n            \"X\": 0.8272313475608826,\n            \"Y\": 0.23564797639846802\n          },\n          {\n            \"X\": 0.8272313475608826,\n            \"Y\": 0.2477700263261795\n          },\n          {\n            \"X\": 0.7210274338722229,\n            \"Y\": 0.2477700263261795\n          }\n        ]\n      },\n      \"Id\": \"a3eee1af-7a9b-4407-811c-f74009a591c3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fd763da3-32a8-461a-92bd-174ad0e030fb\",\n            \"022a6e3a-d0d5-491f-bd07-c7a9f672ccae\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59114074707031,\n      \"Text\": \"Value 2.1.5\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10580858588218689,\n          \"Height\": 0.012114566750824451,\n          \"Left\": 0.8453003168106079,\n          \"Top\": 0.23561464250087738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8453003168106079,\n            \"Y\": 0.23561464250087738\n          },\n          {\n            \"X\": 0.9511088728904724,\n            \"Y\": 0.23561464250087738\n          },\n          {\n            \"X\": 0.9511088728904724,\n            \"Y\": 0.24772921204566956\n          },\n          {\n            \"X\": 0.8453003168106079,\n            \"Y\": 0.24772921204566956\n          }\n        ]\n      },\n      \"Id\": \"a5f73272-4c77-49f5-aefa-673ebd7e5943\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f2d8ba1-da3d-47ae-ad9a-40037c9ab97f\",\n            \"991f2310-4c94-4cfe-9fce-3f0197eaa5f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.48802947998047,\n      \"Text\": \"Value 2.2.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10512411594390869,\n          \"Height\": 0.012048542499542236,\n          \"Left\": 0.3493971824645996,\n          \"Top\": 0.2560810446739197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493971824645996,\n            \"Y\": 0.2560810446739197\n          },\n          {\n            \"X\": 0.4545212984085083,\n            \"Y\": 0.2560810446739197\n          },\n          {\n            \"X\": 0.4545212984085083,\n            \"Y\": 0.2681295871734619\n          },\n          {\n            \"X\": 0.3493971824645996,\n            \"Y\": 0.2681295871734619\n          }\n        ]\n      },\n      \"Id\": \"78a0173c-93a9-49e5-bfc5-eb79dbbc5096\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"262a77db-ae01-43ee-98b9-a5d30be484fc\",\n            \"ec9df24b-4223-4ea9-afd9-1e8dd7f7316a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.16780853271484,\n      \"Text\": \"Value 2.2.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10523536056280136,\n          \"Height\": 0.012222647666931152,\n          \"Left\": 0.4734887182712555,\n          \"Top\": 0.25603875517845154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4734887182712555,\n            \"Y\": 0.25603875517845154\n          },\n          {\n            \"X\": 0.5787240862846375,\n            \"Y\": 0.25603875517845154\n          },\n          {\n            \"X\": 0.5787240862846375,\n            \"Y\": 0.2682614028453827\n          },\n          {\n            \"X\": 0.4734887182712555,\n            \"Y\": 0.2682614028453827\n          }\n        ]\n      },\n      \"Id\": \"e7c8bb7c-cb43-41a7-bfde-7981a4438c56\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7b7fe7a4-79fc-44d0-9f0c-14e17763c159\",\n            \"4d745dee-7ebf-47ba-8a82-f1206d9ba19c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.3677749633789,\n      \"Text\": \"Value 2.2.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10457426309585571,\n          \"Height\": 0.012213140726089478,\n          \"Left\": 0.5980994701385498,\n          \"Top\": 0.2560027837753296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5980994701385498,\n            \"Y\": 0.2560027837753296\n          },\n          {\n            \"X\": 0.7026737332344055,\n            \"Y\": 0.2560027837753296\n          },\n          {\n            \"X\": 0.7026737332344055,\n            \"Y\": 0.26821592450141907\n          },\n          {\n            \"X\": 0.5980994701385498,\n            \"Y\": 0.26821592450141907\n          }\n        ]\n      },\n      \"Id\": \"2e3c1bed-f40c-4782-9e29-757ef9d2827b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b69f145b-e997-42c1-800b-17519d3e32ef\",\n            \"c300452e-f3cd-46b2-8151-07a7974d9326\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57331085205078,\n      \"Text\": \"Value 2.2.4\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10609090328216553,\n          \"Height\": 0.012152343988418579,\n          \"Left\": 0.7213287949562073,\n          \"Top\": 0.256034255027771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7213287949562073,\n            \"Y\": 0.256034255027771\n          },\n          {\n            \"X\": 0.8274196982383728,\n            \"Y\": 0.256034255027771\n          },\n          {\n            \"X\": 0.8274196982383728,\n            \"Y\": 0.2681865990161896\n          },\n          {\n            \"X\": 0.7213287949562073,\n            \"Y\": 0.2681865990161896\n          }\n        ]\n      },\n      \"Id\": \"545ced6c-9d5a-43d0-8660-bf692f9042da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a704e76f-ff9b-46eb-9a6b-35542a6b8c43\",\n            \"23e7eac0-e92d-40cd-8026-3e2dccb5a334\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.38717651367188,\n      \"Text\": \"Value 2.2.5\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10549802333116531,\n          \"Height\": 0.012320488691329956,\n          \"Left\": 0.8453077077865601,\n          \"Top\": 0.25595200061798096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8453077077865601,\n            \"Y\": 0.25595200061798096\n          },\n          {\n            \"X\": 0.9508057236671448,\n            \"Y\": 0.25595200061798096\n          },\n          {\n            \"X\": 0.9508057236671448,\n            \"Y\": 0.2682724893093109\n          },\n          {\n            \"X\": 0.8453077077865601,\n            \"Y\": 0.2682724893093109\n          }\n        ]\n      },\n      \"Id\": \"b37d604e-63b2-425c-9a5c-bd135195c758\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"334606a6-3b2c-40fe-9d1d-d80103d3387b\",\n            \"393bb537-f983-4800-b0db-8db2812eae45\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.43102264404297,\n      \"Text\": \"Value 2.3.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10497700423002243,\n          \"Height\": 0.01213371753692627,\n          \"Left\": 0.3494780361652374,\n          \"Top\": 0.27675092220306396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3494780361652374,\n            \"Y\": 0.27675092220306396\n          },\n          {\n            \"X\": 0.45445504784584045,\n            \"Y\": 0.27675092220306396\n          },\n          {\n            \"X\": 0.45445504784584045,\n            \"Y\": 0.28888463973999023\n          },\n          {\n            \"X\": 0.3494780361652374,\n            \"Y\": 0.28888463973999023\n          }\n        ]\n      },\n      \"Id\": \"7a6c3b66-f62c-45b9-b1f9-9d2055e7c180\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"260d17c0-3af7-428a-be93-012e693ccb1c\",\n            \"00b2a930-9567-4573-aff3-59046874707d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65238189697266,\n      \"Text\": \"Value 2.3.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10473453998565674,\n          \"Height\": 0.012254446744918823,\n          \"Left\": 0.4735710918903351,\n          \"Top\": 0.27651697397232056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4735710918903351,\n            \"Y\": 0.27651697397232056\n          },\n          {\n            \"X\": 0.5783056616783142,\n            \"Y\": 0.27651697397232056\n          },\n          {\n            \"X\": 0.5783056616783142,\n            \"Y\": 0.2887714207172394\n          },\n          {\n            \"X\": 0.4735710918903351,\n            \"Y\": 0.2887714207172394\n          }\n        ]\n      },\n      \"Id\": \"25e62731-7d65-4251-a9f6-dea96b35404b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c7e8481-9358-4784-9847-83077be11d16\",\n            \"d4437c1d-c937-4857-b18b-b1ea50706bab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59590148925781,\n      \"Text\": \"Value 2.3.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1043810099363327,\n          \"Height\": 0.012204557657241821,\n          \"Left\": 0.5982868671417236,\n          \"Top\": 0.27671492099761963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5982868671417236,\n            \"Y\": 0.27671492099761963\n          },\n          {\n            \"X\": 0.7026678919792175,\n            \"Y\": 0.27671492099761963\n          },\n          {\n            \"X\": 0.7026678919792175,\n            \"Y\": 0.28891947865486145\n          },\n          {\n            \"X\": 0.5982868671417236,\n            \"Y\": 0.28891947865486145\n          }\n        ]\n      },\n      \"Id\": \"69c8c26b-bd5a-4880-acae-2450a7d6360c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc1aa1b0-a0c7-472b-9c00-a798d8cc435f\",\n            \"3d6e6e99-0fd5-4cce-94bd-91d8fdb4cd4e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59210205078125,\n      \"Text\": \"Value 2.3.4\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10551386326551437,\n          \"Height\": 0.012276619672775269,\n          \"Left\": 0.7216104865074158,\n          \"Top\": 0.2766041159629822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7216104865074158,\n            \"Y\": 0.2766041159629822\n          },\n          {\n            \"X\": 0.8271243572235107,\n            \"Y\": 0.2766041159629822\n          },\n          {\n            \"X\": 0.8271243572235107,\n            \"Y\": 0.28888073563575745\n          },\n          {\n            \"X\": 0.7216104865074158,\n            \"Y\": 0.28888073563575745\n          }\n        ]\n      },\n      \"Id\": \"a701d3ec-ba2f-4f5f-84c2-52cd6b9c808c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f930b397-6dca-4b1f-9a6c-7b1c00f4f1ff\",\n            \"813364e2-cdb5-4635-82c2-cc90a5c0bcba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.19638061523438,\n      \"Text\": \"Value 2.3.5\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10407808423042297,\n          \"Height\": 0.012329012155532837,\n          \"Left\": 0.8464338183403015,\n          \"Top\": 0.2766174376010895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8464338183403015,\n            \"Y\": 0.2766174376010895\n          },\n          {\n            \"X\": 0.9505118727684021,\n            \"Y\": 0.2766174376010895\n          },\n          {\n            \"X\": 0.9505118727684021,\n            \"Y\": 0.2889464497566223\n          },\n          {\n            \"X\": 0.8464338183403015,\n            \"Y\": 0.2889464497566223\n          }\n        ]\n      },\n      \"Id\": \"fcb6b4c3-d9f3-460e-8e90-85b62f25929c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"403d255b-f24e-4e0c-88fa-9136eacf58f6\",\n            \"f89b635b-7a29-4df9-8765-5b671c46fdb9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70833587646484,\n      \"Text\": \"Value 2.4.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10477267950773239,\n          \"Height\": 0.011971056461334229,\n          \"Left\": 0.34942883253097534,\n          \"Top\": 0.29721662402153015\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34942883253097534,\n            \"Y\": 0.29721662402153015\n          },\n          {\n            \"X\": 0.45420151948928833,\n            \"Y\": 0.29721662402153015\n          },\n          {\n            \"X\": 0.45420151948928833,\n            \"Y\": 0.3091876804828644\n          },\n          {\n            \"X\": 0.34942883253097534,\n            \"Y\": 0.3091876804828644\n          }\n        ]\n      },\n      \"Id\": \"f86e5c2c-4a89-40d4-89bb-1e008e92db79\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c3c838e8-b89f-4cd7-a4f0-c4b61c9f4788\",\n            \"b8ed9993-b4e2-4fdf-a5ed-ac587754215a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65218353271484,\n      \"Text\": \"Value 2.4.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10472890734672546,\n          \"Height\": 0.011928647756576538,\n          \"Left\": 0.4736648499965668,\n          \"Top\": 0.29723668098449707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4736648499965668,\n            \"Y\": 0.29723668098449707\n          },\n          {\n            \"X\": 0.5783937573432922,\n            \"Y\": 0.29723668098449707\n          },\n          {\n            \"X\": 0.5783937573432922,\n            \"Y\": 0.3091653287410736\n          },\n          {\n            \"X\": 0.4736648499965668,\n            \"Y\": 0.3091653287410736\n          }\n        ]\n      },\n      \"Id\": \"d6848bfe-3755-40d4-a57a-9c576563dd9c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a572e77-aa31-49eb-8fe6-6cf110182f16\",\n            \"50c7e6da-a99a-49c5-bb8a-4e53dc1c2416\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59903717041016,\n      \"Text\": \"Value 2.4.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10440092533826828,\n          \"Height\": 0.012054800987243652,\n          \"Left\": 0.5981996655464172,\n          \"Top\": 0.2971394956111908\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5981996655464172,\n            \"Y\": 0.2971394956111908\n          },\n          {\n            \"X\": 0.7026005983352661,\n            \"Y\": 0.2971394956111908\n          },\n          {\n            \"X\": 0.7026005983352661,\n            \"Y\": 0.30919429659843445\n          },\n          {\n            \"X\": 0.5981996655464172,\n            \"Y\": 0.30919429659843445\n          }\n        ]\n      },\n      \"Id\": \"1a4b1b5c-d292-4a70-b8e7-f3e44ad8420f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5a89f920-31c1-439a-aec7-680585b25796\",\n            \"e7ba092f-65d9-42c9-bc93-5d88ff8d8a21\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68186950683594,\n      \"Text\": \"Value 2.4.4\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10529942065477371,\n          \"Height\": 0.011855721473693848,\n          \"Left\": 0.7216416001319885,\n          \"Top\": 0.29727259278297424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7216416001319885,\n            \"Y\": 0.29727259278297424\n          },\n          {\n            \"X\": 0.8269410133361816,\n            \"Y\": 0.29727259278297424\n          },\n          {\n            \"X\": 0.8269410133361816,\n            \"Y\": 0.3091283142566681\n          },\n          {\n            \"X\": 0.7216416001319885,\n            \"Y\": 0.3091283142566681\n          }\n        ]\n      },\n      \"Id\": \"521e03a6-e8f7-41fb-a2ad-434c468c3b87\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89a0b628-38d0-4d70-af44-a248e9e189bb\",\n            \"9e2d3f64-7681-4b6b-ab67-56cae96a26fe\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6616439819336,\n      \"Text\": \"Value 2.4.5\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10461419820785522,\n          \"Height\": 0.011920955032110214,\n          \"Left\": 0.8457906246185303,\n          \"Top\": 0.29730719327926636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8457906246185303,\n            \"Y\": 0.29730719327926636\n          },\n          {\n            \"X\": 0.9504048228263855,\n            \"Y\": 0.29730719327926636\n          },\n          {\n            \"X\": 0.9504048228263855,\n            \"Y\": 0.30922815203666687\n          },\n          {\n            \"X\": 0.8457906246185303,\n            \"Y\": 0.30922815203666687\n          }\n        ]\n      },\n      \"Id\": \"ea420163-58dc-4e4c-958b-aa7bf08b6c4a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d738af2-8336-4fe7-a9db-9a2094e47c45\",\n            \"e0b70770-4816-4fa0-98be-167ef2cf3f23\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.13426971435547,\n      \"Text\": \"Value 2.5.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10511550307273865,\n          \"Height\": 0.0119723379611969,\n          \"Left\": 0.3493768572807312,\n          \"Top\": 0.31771886348724365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493768572807312,\n            \"Y\": 0.31771886348724365\n          },\n          {\n            \"X\": 0.45449236035346985,\n            \"Y\": 0.31771886348724365\n          },\n          {\n            \"X\": 0.45449236035346985,\n            \"Y\": 0.32969120144844055\n          },\n          {\n            \"X\": 0.3493768572807312,\n            \"Y\": 0.32969120144844055\n          }\n        ]\n      },\n      \"Id\": \"c1cf718f-7d85-498a-b028-b173ad0729a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2c926ffd-0deb-41fb-99e3-f10cfce41297\",\n            \"9e6f5012-92dd-44a4-bc27-241158503f6e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65831756591797,\n      \"Text\": \"Value 2.5.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1051875576376915,\n          \"Height\": 0.012064596638083458,\n          \"Left\": 0.47331732511520386,\n          \"Top\": 0.31766098737716675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47331732511520386,\n            \"Y\": 0.31766098737716675\n          },\n          {\n            \"X\": 0.5785048604011536,\n            \"Y\": 0.31766098737716675\n          },\n          {\n            \"X\": 0.5785048604011536,\n            \"Y\": 0.32972559332847595\n          },\n          {\n            \"X\": 0.47331732511520386,\n            \"Y\": 0.32972559332847595\n          }\n        ]\n      },\n      \"Id\": \"308e2d7e-563f-464f-ad1f-fcdba4c713b2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4b4e476b-a4e9-4664-bf7f-701af4ca7955\",\n            \"99985721-7815-4138-9be0-6b2a9273efb3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.69383239746094,\n      \"Text\": \"Value 2.5.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10450313985347748,\n          \"Height\": 0.012088063172996044,\n          \"Left\": 0.5980262160301208,\n          \"Top\": 0.317635178565979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5980262160301208,\n            \"Y\": 0.317635178565979\n          },\n          {\n            \"X\": 0.7025293111801147,\n            \"Y\": 0.317635178565979\n          },\n          {\n            \"X\": 0.7025293111801147,\n            \"Y\": 0.3297232389450073\n          },\n          {\n            \"X\": 0.5980262160301208,\n            \"Y\": 0.3297232389450073\n          }\n        ]\n      },\n      \"Id\": \"346d3e14-1e92-4a95-b305-e063fbfe86d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51006c26-86d7-4d59-a810-d492e03d33c0\",\n            \"21985db3-e896-470a-8279-23ddd60abba9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71204376220703,\n      \"Text\": \"Value 2.5.4\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10604234784841537,\n          \"Height\": 0.01207891758531332,\n          \"Left\": 0.7212172150611877,\n          \"Top\": 0.31766656041145325\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7212172150611877,\n            \"Y\": 0.31766656041145325\n          },\n          {\n            \"X\": 0.8272595405578613,\n            \"Y\": 0.31766656041145325\n          },\n          {\n            \"X\": 0.8272595405578613,\n            \"Y\": 0.32974547147750854\n          },\n          {\n            \"X\": 0.7212172150611877,\n            \"Y\": 0.32974547147750854\n          }\n        ]\n      },\n      \"Id\": \"50537930-1746-408c-bc83-93dca5276600\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"53e96019-5be1-457e-a1a6-612bc148e736\",\n            \"40851039-70b0-41a0-8065-c92ce33647c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73115539550781,\n      \"Text\": \"Value 2.5.5\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10478361696004868,\n          \"Height\": 0.01199720986187458,\n          \"Left\": 0.8459871411323547,\n          \"Top\": 0.3178301751613617\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8459871411323547,\n            \"Y\": 0.3178301751613617\n          },\n          {\n            \"X\": 0.9507707357406616,\n            \"Y\": 0.3178301751613617\n          },\n          {\n            \"X\": 0.9507707357406616,\n            \"Y\": 0.3298273980617523\n          },\n          {\n            \"X\": 0.8459871411323547,\n            \"Y\": 0.3298273980617523\n          }\n        ]\n      },\n      \"Id\": \"36f2e1ed-73ed-4c9d-b4a7-c537a3ea6984\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96589d36-e02e-40bb-b3ee-204f33971e8b\",\n            \"f203337b-46f6-42b1-9c20-2ac033d36a48\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76348876953125,\n      \"Text\": \"NO: not-checked\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13520775735378265,\n          \"Height\": 0.011138562113046646,\n          \"Left\": 0.07998548448085785,\n          \"Top\": 0.3912815749645233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07998548448085785,\n            \"Y\": 0.3912815749645233\n          },\n          {\n            \"X\": 0.2151932418346405,\n            \"Y\": 0.3912815749645233\n          },\n          {\n            \"X\": 0.2151932418346405,\n            \"Y\": 0.40242013335227966\n          },\n          {\n            \"X\": 0.07998548448085785,\n            \"Y\": 0.40242013335227966\n          }\n        ]\n      },\n      \"Id\": \"afc60ce9-fd4d-49a8-b24a-81e586861cd8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d7d615ec-2e6a-4cc2-842a-f3be9d57d0a5\",\n            \"92735371-3cb9-4032-80ae-34ed74beb59b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5317611694336,\n      \"Text\": \"Value 3.1.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09013909101486206,\n          \"Height\": 0.010468622669577599,\n          \"Left\": 0.5007233023643494,\n          \"Top\": 0.4104907214641571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5007233023643494,\n            \"Y\": 0.4104907214641571\n          },\n          {\n            \"X\": 0.5908623933792114,\n            \"Y\": 0.4104907214641571\n          },\n          {\n            \"X\": 0.5908623933792114,\n            \"Y\": 0.42095935344696045\n          },\n          {\n            \"X\": 0.5007233023643494,\n            \"Y\": 0.42095935344696045\n          }\n        ]\n      },\n      \"Id\": \"306a0b5c-5197-46cd-82e2-a5d92baafbf8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5713b7af-14a7-4a24-b444-5459fe0a8823\",\n            \"b05e2149-603a-420d-bd6d-5989b0272992\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.51280975341797,\n      \"Text\": \"Value 3.1.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09039019048213959,\n          \"Height\": 0.010664224624633789,\n          \"Left\": 0.6450337171554565,\n          \"Top\": 0.41035497188568115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6450337171554565,\n            \"Y\": 0.41035497188568115\n          },\n          {\n            \"X\": 0.7354239225387573,\n            \"Y\": 0.41035497188568115\n          },\n          {\n            \"X\": 0.7354239225387573,\n            \"Y\": 0.42101919651031494\n          },\n          {\n            \"X\": 0.6450337171554565,\n            \"Y\": 0.42101919651031494\n          }\n        ]\n      },\n      \"Id\": \"efcd176b-dd56-43b1-839c-0fdbfea0fca2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46c5d8c3-6659-4c0c-a8ee-d03a5d34c197\",\n            \"2690c80e-290a-4b7b-9318-f23a48a9ede6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.46669006347656,\n      \"Text\": \"Value 3.1.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09046337008476257,\n          \"Height\": 0.010652952827513218,\n          \"Left\": 0.7884987592697144,\n          \"Top\": 0.4103996157646179\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7884987592697144,\n            \"Y\": 0.4103996157646179\n          },\n          {\n            \"X\": 0.8789621591567993,\n            \"Y\": 0.4103996157646179\n          },\n          {\n            \"X\": 0.8789621591567993,\n            \"Y\": 0.42105257511138916\n          },\n          {\n            \"X\": 0.7884987592697144,\n            \"Y\": 0.42105257511138916\n          }\n        ]\n      },\n      \"Id\": \"5821a87f-c3f9-45cf-b578-ea94fa4fe3b2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9f8730f7-9295-47b6-ac30-9bc3bc302a99\",\n            \"f139dc87-0c9b-4684-9f9c-33e9c85349b5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.63385009765625,\n      \"Text\": \"YES: checked\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1050170287489891,\n          \"Height\": 0.011043429374694824,\n          \"Left\": 0.07574430853128433,\n          \"Top\": 0.41770753264427185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07574430853128433,\n            \"Y\": 0.41770753264427185\n          },\n          {\n            \"X\": 0.18076133728027344,\n            \"Y\": 0.41770753264427185\n          },\n          {\n            \"X\": 0.18076133728027344,\n            \"Y\": 0.4287509620189667\n          },\n          {\n            \"X\": 0.07574430853128433,\n            \"Y\": 0.4287509620189667\n          }\n        ]\n      },\n      \"Id\": \"bab61869-d097-4e53-87bc-4c3648c85cd1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2ec3e7d2-9cf4-4827-a853-402693c7d693\",\n            \"f5362839-b43d-4d9a-89e0-b9d4d56b8496\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.51519012451172,\n      \"Text\": \"Value 3.2.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08981361240148544,\n          \"Height\": 0.010491222143173218,\n          \"Left\": 0.5009772181510925,\n          \"Top\": 0.4280807673931122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009772181510925,\n            \"Y\": 0.4280807673931122\n          },\n          {\n            \"X\": 0.5907908082008362,\n            \"Y\": 0.4280807673931122\n          },\n          {\n            \"X\": 0.5907908082008362,\n            \"Y\": 0.4385719895362854\n          },\n          {\n            \"X\": 0.5009772181510925,\n            \"Y\": 0.4385719895362854\n          }\n        ]\n      },\n      \"Id\": \"dc8e3ff6-615d-4f07-b466-44b2f8934473\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"027f1edc-dd86-4a80-8c6e-96dbed287849\",\n            \"b1352d68-95b8-47d4-883c-6e1db31a11ef\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.39588165283203,\n      \"Text\": \"Value 3.2.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09034757316112518,\n          \"Height\": 0.010606974363327026,\n          \"Left\": 0.6449447274208069,\n          \"Top\": 0.4280215799808502\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6449447274208069,\n            \"Y\": 0.4280215799808502\n          },\n          {\n            \"X\": 0.7352922558784485,\n            \"Y\": 0.4280215799808502\n          },\n          {\n            \"X\": 0.7352922558784485,\n            \"Y\": 0.43862855434417725\n          },\n          {\n            \"X\": 0.6449447274208069,\n            \"Y\": 0.43862855434417725\n          }\n        ]\n      },\n      \"Id\": \"fadba1a2-fa35-4ecd-906c-ee5759c6e365\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f0e80c74-65b8-4eac-9093-37a3e9fe3075\",\n            \"3ac127d9-a3d8-4e84-9d9c-ba8526ac1f1e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.37115478515625,\n      \"Text\": \"Value 3.2.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09048449248075485,\n          \"Height\": 0.010620594024658203,\n          \"Left\": 0.7887248396873474,\n          \"Top\": 0.4280050992965698\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7887248396873474,\n            \"Y\": 0.4280050992965698\n          },\n          {\n            \"X\": 0.8792093396186829,\n            \"Y\": 0.4280050992965698\n          },\n          {\n            \"X\": 0.8792093396186829,\n            \"Y\": 0.438625693321228\n          },\n          {\n            \"X\": 0.7887248396873474,\n            \"Y\": 0.438625693321228\n          }\n        ]\n      },\n      \"Id\": \"51778739-2fdb-437f-b05a-6dc7f898c7a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6aa513d3-de6b-4ee8-9058-8cba7d4e9c4a\",\n            \"b48d8334-b7aa-4193-bd49-afb7472a12d3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.43274688720703,\n      \"Text\": \"Value 3.3.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08987481892108917,\n          \"Height\": 0.010449796915054321,\n          \"Left\": 0.5009778141975403,\n          \"Top\": 0.4457988142967224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009778141975403,\n            \"Y\": 0.4457988142967224\n          },\n          {\n            \"X\": 0.5908526182174683,\n            \"Y\": 0.4457988142967224\n          },\n          {\n            \"X\": 0.5908526182174683,\n            \"Y\": 0.45624861121177673\n          },\n          {\n            \"X\": 0.5009778141975403,\n            \"Y\": 0.45624861121177673\n          }\n        ]\n      },\n      \"Id\": \"05e98f5d-7e8e-4eed-ae31-ded5455b202c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13c810b3-dea3-47df-a779-b8825721cc97\",\n            \"36bb668d-14c1-4cdf-9963-cf99e18c1ea3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.23455810546875,\n      \"Text\": \"Value 3.3.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09044109284877777,\n          \"Height\": 0.010748535394668579,\n          \"Left\": 0.6449540853500366,\n          \"Top\": 0.44567692279815674\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6449540853500366,\n            \"Y\": 0.44567692279815674\n          },\n          {\n            \"X\": 0.7353951930999756,\n            \"Y\": 0.44567692279815674\n          },\n          {\n            \"X\": 0.7353951930999756,\n            \"Y\": 0.4564254581928253\n          },\n          {\n            \"X\": 0.6449540853500366,\n            \"Y\": 0.4564254581928253\n          }\n        ]\n      },\n      \"Id\": \"a4acfff0-0f0e-43ea-8d40-892b2cfbae0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9892ddda-cfd9-4778-8392-48ec28248bc7\",\n            \"e25e09e0-604e-4f80-b784-3c681fbf0aaf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.31925201416016,\n      \"Text\": \"Value 3.3.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09017989039421082,\n          \"Height\": 0.010652720928192139,\n          \"Left\": 0.7886477708816528,\n          \"Top\": 0.44567546248435974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7886477708816528,\n            \"Y\": 0.44567546248435974\n          },\n          {\n            \"X\": 0.878827691078186,\n            \"Y\": 0.44567546248435974\n          },\n          {\n            \"X\": 0.878827691078186,\n            \"Y\": 0.4563281834125519\n          },\n          {\n            \"X\": 0.7886477708816528,\n            \"Y\": 0.4563281834125519\n          }\n        ]\n      },\n      \"Id\": \"fc768765-8877-43e4-be8b-cd6de55614c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ec8ad23f-fa13-487e-a2f1-db7e226a1ac6\",\n            \"04908b68-f914-49e3-bc2d-76eab2881c77\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71339416503906,\n      \"Text\": \"Value 3.4.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08957617729902267,\n          \"Height\": 0.010553747415542603,\n          \"Left\": 0.5010496377944946,\n          \"Top\": 0.4634309411048889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5010496377944946,\n            \"Y\": 0.4634309411048889\n          },\n          {\n            \"X\": 0.5906258225440979,\n            \"Y\": 0.4634309411048889\n          },\n          {\n            \"X\": 0.5906258225440979,\n            \"Y\": 0.4739846885204315\n          },\n          {\n            \"X\": 0.5010496377944946,\n            \"Y\": 0.4739846885204315\n          }\n        ]\n      },\n      \"Id\": \"a6617bce-cf0a-418b-a452-c40da805b9c6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ea83c926-94ee-4ca9-b15b-49bbc085084c\",\n            \"daf3395a-919f-4b84-87da-17e6d36779bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.22984313964844,\n      \"Text\": \"Value 3.4.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0904318243265152,\n          \"Height\": 0.010744273662567139,\n          \"Left\": 0.6448435187339783,\n          \"Top\": 0.4633525013923645\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6448435187339783,\n            \"Y\": 0.4633525013923645\n          },\n          {\n            \"X\": 0.7352753281593323,\n            \"Y\": 0.4633525013923645\n          },\n          {\n            \"X\": 0.7352753281593323,\n            \"Y\": 0.47409677505493164\n          },\n          {\n            \"X\": 0.6448435187339783,\n            \"Y\": 0.47409677505493164\n          }\n        ]\n      },\n      \"Id\": \"61b84ff0-7ff2-4938-9183-616b87baaf94\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"600c1159-1eb5-4e4c-b069-319b2340b11a\",\n            \"04174e7e-8be3-42a9-99c9-90e97b5da4f9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.87337493896484,\n      \"Text\": \"Value 3.4.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09011298418045044,\n          \"Height\": 0.010590910911560059,\n          \"Left\": 0.7890411615371704,\n          \"Top\": 0.4634063243865967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7890411615371704,\n            \"Y\": 0.4634063243865967\n          },\n          {\n            \"X\": 0.8791541457176208,\n            \"Y\": 0.4634063243865967\n          },\n          {\n            \"X\": 0.8791541457176208,\n            \"Y\": 0.47399723529815674\n          },\n          {\n            \"X\": 0.7890411615371704,\n            \"Y\": 0.47399723529815674\n          }\n        ]\n      },\n      \"Id\": \"5576430c-6338-4261-a3bc-d4a8b816369a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a34cd6f-eaca-438e-b9e2-21f8b20097d5\",\n            \"9c680bd0-2ff3-425b-9b65-081504162922\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7052001953125,\n      \"Text\": \"Value 3.5.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08972048759460449,\n          \"Height\": 0.010436839424073696,\n          \"Left\": 0.5009509325027466,\n          \"Top\": 0.48116788268089294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009509325027466,\n            \"Y\": 0.48116788268089294\n          },\n          {\n            \"X\": 0.5906714200973511,\n            \"Y\": 0.48116788268089294\n          },\n          {\n            \"X\": 0.5906714200973511,\n            \"Y\": 0.4916047155857086\n          },\n          {\n            \"X\": 0.5009509325027466,\n            \"Y\": 0.4916047155857086\n          }\n        ]\n      },\n      \"Id\": \"57b350c6-89bf-4dbb-bd54-4a6d106e21e0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ebf778b-6584-4ffe-b62c-e00a1cf863e1\",\n            \"dcb79a5a-68d0-4baf-b899-031f5e46bf77\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.42252349853516,\n      \"Text\": \"Value 3.5.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09022399038076401,\n          \"Height\": 0.010816812515258789,\n          \"Left\": 0.6450666189193726,\n          \"Top\": 0.4810165464878082\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6450666189193726,\n            \"Y\": 0.4810165464878082\n          },\n          {\n            \"X\": 0.7352905869483948,\n            \"Y\": 0.4810165464878082\n          },\n          {\n            \"X\": 0.7352905869483948,\n            \"Y\": 0.491833359003067\n          },\n          {\n            \"X\": 0.6450666189193726,\n            \"Y\": 0.491833359003067\n          }\n        ]\n      },\n      \"Id\": \"ab7a6ea0-a6af-4e81-b3a9-a83cd16b6273\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ecc7cc6e-d73b-4d87-870c-c3a0dfb7b083\",\n            \"3d82e70c-ae89-4038-ba31-8195121c3a51\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.53278350830078,\n      \"Text\": \"Value 3.5.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08964388817548752,\n          \"Height\": 0.010581731796264648,\n          \"Left\": 0.7890627980232239,\n          \"Top\": 0.481067955493927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7890627980232239,\n            \"Y\": 0.481067955493927\n          },\n          {\n            \"X\": 0.878706693649292,\n            \"Y\": 0.481067955493927\n          },\n          {\n            \"X\": 0.878706693649292,\n            \"Y\": 0.49164968729019165\n          },\n          {\n            \"X\": 0.7890627980232239,\n            \"Y\": 0.49164968729019165\n          }\n        ]\n      },\n      \"Id\": \"a7fc62df-7f60-4bb0-b403-77f9d11b0019\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f30525f3-fd4f-49d3-928d-3c53832ed66e\",\n            \"75468cab-5593-4a7b-a064-8b22a2f9cb17\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.613525390625,\n      \"Text\": \"Value 3.6.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08948711305856705,\n          \"Height\": 0.010437995195388794,\n          \"Left\": 0.5010533928871155,\n          \"Top\": 0.4987580478191376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5010533928871155,\n            \"Y\": 0.4987580478191376\n          },\n          {\n            \"X\": 0.5905405282974243,\n            \"Y\": 0.4987580478191376\n          },\n          {\n            \"X\": 0.5905405282974243,\n            \"Y\": 0.5091960430145264\n          },\n          {\n            \"X\": 0.5010533928871155,\n            \"Y\": 0.5091960430145264\n          }\n        ]\n      },\n      \"Id\": \"59633a32-8e9f-430a-ad99-5e99d5b74556\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"276d4a02-dd28-4cf2-8f6c-72c936f4503d\",\n            \"99d44d82-b035-4f42-9a50-87075e54bd26\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.31123352050781,\n      \"Text\": \"Value 3.6.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09031175822019577,\n          \"Height\": 0.010628283023834229,\n          \"Left\": 0.6449441909790039,\n          \"Top\": 0.4986632466316223\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6449441909790039,\n            \"Y\": 0.4986632466316223\n          },\n          {\n            \"X\": 0.7352559566497803,\n            \"Y\": 0.4986632466316223\n          },\n          {\n            \"X\": 0.7352559566497803,\n            \"Y\": 0.5092915296554565\n          },\n          {\n            \"X\": 0.6449441909790039,\n            \"Y\": 0.5092915296554565\n          }\n        ]\n      },\n      \"Id\": \"39c06663-927e-4173-a0a2-ef6c102e6501\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f9624f28-97f2-429b-9b83-b06d22eb62fb\",\n            \"e5b1741a-afc1-4938-a551-03a1ecf563bc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.17884826660156,\n      \"Text\": \"Value 3.6.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09000393003225327,\n          \"Height\": 0.01059106457978487,\n          \"Left\": 0.7889751195907593,\n          \"Top\": 0.4986734092235565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7889751195907593,\n            \"Y\": 0.4986734092235565\n          },\n          {\n            \"X\": 0.8789790272712708,\n            \"Y\": 0.4986734092235565\n          },\n          {\n            \"X\": 0.8789790272712708,\n            \"Y\": 0.5092644691467285\n          },\n          {\n            \"X\": 0.7889751195907593,\n            \"Y\": 0.5092644691467285\n          }\n        ]\n      },\n      \"Id\": \"32721c67-36e1-4be5-8be2-32606cb72993\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f76ebd64-3e67-47d8-a338-261c293d666a\",\n            \"6c57f761-5373-435f-b756-185c5959561d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52881622314453,\n      \"Text\": \"Value 3.7.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08997130393981934,\n          \"Height\": 0.010337297804653645,\n          \"Left\": 0.5009969472885132,\n          \"Top\": 0.516635537147522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009969472885132,\n            \"Y\": 0.516635537147522\n          },\n          {\n            \"X\": 0.5909682512283325,\n            \"Y\": 0.516635537147522\n          },\n          {\n            \"X\": 0.5909682512283325,\n            \"Y\": 0.5269728302955627\n          },\n          {\n            \"X\": 0.5009969472885132,\n            \"Y\": 0.5269728302955627\n          }\n        ]\n      },\n      \"Id\": \"df0cc45f-d8a0-4d8d-a7bf-314a14e44fc8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5650beb3-91cd-49df-9749-ac4ba1822b5f\",\n            \"98491252-8cfc-4a02-a882-8c160f1e0e2a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.42794799804688,\n      \"Text\": \"Value 3.7.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09020774811506271,\n          \"Height\": 0.010550592094659805,\n          \"Left\": 0.6451640725135803,\n          \"Top\": 0.516469419002533\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6451640725135803,\n            \"Y\": 0.516469419002533\n          },\n          {\n            \"X\": 0.7353718280792236,\n            \"Y\": 0.516469419002533\n          },\n          {\n            \"X\": 0.7353718280792236,\n            \"Y\": 0.5270199775695801\n          },\n          {\n            \"X\": 0.6451640725135803,\n            \"Y\": 0.5270199775695801\n          }\n        ]\n      },\n      \"Id\": \"67a23e16-f9b8-4832-a0f2-3b8cf52f5665\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5020f8fe-82fd-4551-9f80-f53a1fe5e0d4\",\n            \"749e3c4f-8847-4d90-b837-2fa48d0b2784\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.47469329833984,\n      \"Text\": \"Value 3.7.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0899261012673378,\n          \"Height\": 0.010457530617713928,\n          \"Left\": 0.78884357213974,\n          \"Top\": 0.5165274143218994\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.78884357213974,\n            \"Y\": 0.5165274143218994\n          },\n          {\n            \"X\": 0.8787696957588196,\n            \"Y\": 0.5165274143218994\n          },\n          {\n            \"X\": 0.8787696957588196,\n            \"Y\": 0.5269849300384521\n          },\n          {\n            \"X\": 0.78884357213974,\n            \"Y\": 0.5269849300384521\n          }\n        ]\n      },\n      \"Id\": \"c0195caa-81b2-4844-8c4e-fc5590a34e0a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f2995096-1132-48d3-980a-894f7d1f6561\",\n            \"242b7d0b-69cb-4c5c-bc82-53c34476ed9e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.67028045654297,\n      \"Text\": \"Value 3.8.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08949312567710876,\n          \"Height\": 0.010331332683563232,\n          \"Left\": 0.5010542869567871,\n          \"Top\": 0.5341706275939941\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5010542869567871,\n            \"Y\": 0.5341706275939941\n          },\n          {\n            \"X\": 0.5905474424362183,\n            \"Y\": 0.5341706275939941\n          },\n          {\n            \"X\": 0.5905474424362183,\n            \"Y\": 0.5445019602775574\n          },\n          {\n            \"X\": 0.5010542869567871,\n            \"Y\": 0.5445019602775574\n          }\n        ]\n      },\n      \"Id\": \"aba0e893-9277-4eb2-b577-a640d1635b32\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"02a046db-40b9-4fb0-ad53-e32754db8771\",\n            \"eea99159-5c3e-456c-ae0f-9d8b3e19587e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57122802734375,\n      \"Text\": \"Value 3.8.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09018313884735107,\n          \"Height\": 0.010514641180634499,\n          \"Left\": 0.6451624631881714,\n          \"Top\": 0.5340661406517029\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6451624631881714,\n            \"Y\": 0.5340661406517029\n          },\n          {\n            \"X\": 0.7353456020355225,\n            \"Y\": 0.5340661406517029\n          },\n          {\n            \"X\": 0.7353456020355225,\n            \"Y\": 0.5445807576179504\n          },\n          {\n            \"X\": 0.6451624631881714,\n            \"Y\": 0.5445807576179504\n          }\n        ]\n      },\n      \"Id\": \"cbc793ff-74be-4a53-9c98-fc66c144a2c6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37ee624a-71a6-410c-8f26-1aae5de76465\",\n            \"868a32c9-84a1-4a58-922a-dd7428858bac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.55706024169922,\n      \"Text\": \"Value 3.8.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08995514363050461,\n          \"Height\": 0.010519489645957947,\n          \"Left\": 0.7889222502708435,\n          \"Top\": 0.5341439843177795\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7889222502708435,\n            \"Y\": 0.5341439843177795\n          },\n          {\n            \"X\": 0.8788774013519287,\n            \"Y\": 0.5341439843177795\n          },\n          {\n            \"X\": 0.8788774013519287,\n            \"Y\": 0.5446634888648987\n          },\n          {\n            \"X\": 0.7889222502708435,\n            \"Y\": 0.5446634888648987\n          }\n        ]\n      },\n      \"Id\": \"94e5646d-cd79-4332-a53f-7fbaf0791ed3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"86d46545-1bde-4f87-926d-8f53979689f3\",\n            \"0161dc75-cb31-417f-a341-ce9e6ff58dcb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6238021850586,\n      \"Text\": \"YES: checked\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10528641194105148,\n          \"Height\": 0.011195693165063858,\n          \"Left\": 0.07708633691072464,\n          \"Top\": 0.5485238432884216\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07708633691072464,\n            \"Y\": 0.5485238432884216\n          },\n          {\n            \"X\": 0.18237274885177612,\n            \"Y\": 0.5485238432884216\n          },\n          {\n            \"X\": 0.18237274885177612,\n            \"Y\": 0.5597195625305176\n          },\n          {\n            \"X\": 0.07708633691072464,\n            \"Y\": 0.5597195625305176\n          }\n        ]\n      },\n      \"Id\": \"4403bd71-13f8-4d0c-882d-dbf497ca1701\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ec65266-a74f-4682-86d3-1090f187c674\",\n            \"bf5c7ac8-def7-4dc0-8ae8-90fb53ba952b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84101867675781,\n      \"Text\": \"NO: not-checked\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13445790112018585,\n          \"Height\": 0.010898172855377197,\n          \"Left\": 0.07648774236440659,\n          \"Top\": 0.5649036169052124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07648774236440659,\n            \"Y\": 0.5649036169052124\n          },\n          {\n            \"X\": 0.21094563603401184,\n            \"Y\": 0.5649036169052124\n          },\n          {\n            \"X\": 0.21094563603401184,\n            \"Y\": 0.5758017897605896\n          },\n          {\n            \"X\": 0.07648774236440659,\n            \"Y\": 0.5758017897605896\n          }\n        ]\n      },\n      \"Id\": \"ed1df829-f3f8-438b-b71c-9ce61bcc1849\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a87dccf8-8e8e-4a51-842f-d6a62725ba8f\",\n            \"e0f5935c-17ae-440e-b618-2c5f7e8700da\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49506378173828,\n      \"Text\": \"Date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042376160621643066,\n          \"Height\": 0.010916126891970634,\n          \"Left\": 0.7542068362236023,\n          \"Top\": 0.03331288322806358\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7542068362236023,\n            \"Y\": 0.03331288322806358\n          },\n          {\n            \"X\": 0.7965829968452454,\n            \"Y\": 0.03331288322806358\n          },\n          {\n            \"X\": 0.7965829968452454,\n            \"Y\": 0.04422900825738907\n          },\n          {\n            \"X\": 0.7542068362236023,\n            \"Y\": 0.04422900825738907\n          }\n        ]\n      },\n      \"Id\": \"c5c0db6d-136e-48bd-bd3d-51b3eb66cbff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.79719543457031,\n      \"Text\": \"2020-03-27\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09217820316553116,\n          \"Height\": 0.010629097931087017,\n          \"Left\": 0.8017020225524902,\n          \"Top\": 0.033448249101638794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8017020225524902,\n            \"Y\": 0.033448249101638794\n          },\n          {\n            \"X\": 0.8938801884651184,\n            \"Y\": 0.033448249101638794\n          },\n          {\n            \"X\": 0.8938801884651184,\n            \"Y\": 0.044077347964048386\n          },\n          {\n            \"X\": 0.8017020225524902,\n            \"Y\": 0.044077347964048386\n          }\n        ]\n      },\n      \"Id\": \"9698fe86-3b26-4320-ae95-6bf357d8a20c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42241668701172,\n      \"Text\": \"Name:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05245928093791008,\n          \"Height\": 0.010426528751850128,\n          \"Left\": 0.08570101112127304,\n          \"Top\": 0.06095510721206665\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08570101112127304,\n            \"Y\": 0.06095510721206665\n          },\n          {\n            \"X\": 0.13816028833389282,\n            \"Y\": 0.06095510721206665\n          },\n          {\n            \"X\": 0.13816028833389282,\n            \"Y\": 0.07138163596391678\n          },\n          {\n            \"X\": 0.08570101112127304,\n            \"Y\": 0.07138163596391678\n          }\n        ]\n      },\n      \"Id\": \"5e433305-2585-455c-b8f0-3b7afae91e2c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65409088134766,\n      \"Text\": \"SomeName\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09435348212718964,\n          \"Height\": 0.0105624720454216,\n          \"Left\": 0.14192268252372742,\n          \"Top\": 0.060842134058475494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14192268252372742,\n            \"Y\": 0.060842134058475494\n          },\n          {\n            \"X\": 0.23627616465091705,\n            \"Y\": 0.060842134058475494\n          },\n          {\n            \"X\": 0.23627616465091705,\n            \"Y\": 0.0714046061038971\n          },\n          {\n            \"X\": 0.14192268252372742,\n            \"Y\": 0.0714046061038971\n          }\n        ]\n      },\n      \"Id\": \"37278ca4-ae2d-4b26-840a-9faa31beb9b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90027618408203,\n      \"Text\": \"Key1:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043158598244190216,\n          \"Height\": 0.013060489669442177,\n          \"Left\": 0.7581079006195068,\n          \"Top\": 0.08785159140825272\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7581079006195068,\n            \"Y\": 0.08785159140825272\n          },\n          {\n            \"X\": 0.8012664914131165,\n            \"Y\": 0.08785159140825272\n          },\n          {\n            \"X\": 0.8012664914131165,\n            \"Y\": 0.10091207921504974\n          },\n          {\n            \"X\": 0.7581079006195068,\n            \"Y\": 0.10091207921504974\n          }\n        ]\n      },\n      \"Id\": \"4096d8d9-c7d7-4136-84a7-64baa8928609\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5029525756836,\n      \"Text\": \"value1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05468013137578964,\n          \"Height\": 0.010883876122534275,\n          \"Left\": 0.8049346208572388,\n          \"Top\": 0.08769001066684723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8049346208572388,\n            \"Y\": 0.08769001066684723\n          },\n          {\n            \"X\": 0.8596147298812866,\n            \"Y\": 0.08769001066684723\n          },\n          {\n            \"X\": 0.8596147298812866,\n            \"Y\": 0.09857388585805893\n          },\n          {\n            \"X\": 0.8049346208572388,\n            \"Y\": 0.09857388585805893\n          }\n        ]\n      },\n      \"Id\": \"262feb10-ecc6-420e-aa55-33adc2f8c6c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.33039093017578,\n      \"Text\": \"Key2:value2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.102190300822258,\n          \"Height\": 0.013424980454146862,\n          \"Left\": 0.757502019405365,\n          \"Top\": 0.11186148971319199\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.757502019405365,\n            \"Y\": 0.11186148971319199\n          },\n          {\n            \"X\": 0.8596922755241394,\n            \"Y\": 0.11186148971319199\n          },\n          {\n            \"X\": 0.8596922755241394,\n            \"Y\": 0.12528647482395172\n          },\n          {\n            \"X\": 0.757502019405365,\n            \"Y\": 0.12528647482395172\n          }\n        ]\n      },\n      \"Id\": \"25b54fea-ae51-4f79-adf0-c144c026b248\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71378326416016,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04604412987828255,\n          \"Height\": 0.01046265009790659,\n          \"Left\": 0.10996533930301666,\n          \"Top\": 0.15750041604042053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10996533930301666,\n            \"Y\": 0.15750041604042053\n          },\n          {\n            \"X\": 0.1560094654560089,\n            \"Y\": 0.15750041604042053\n          },\n          {\n            \"X\": 0.1560094654560089,\n            \"Y\": 0.16796307265758514\n          },\n          {\n            \"X\": 0.10996533930301666,\n            \"Y\": 0.16796307265758514\n          }\n        ]\n      },\n      \"Id\": \"693718a3-d8d9-4ea2-9439-cfa7afb4fdae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.86699676513672,\n      \"Text\": \"1.1.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03863447904586792,\n          \"Height\": 0.009942100383341312,\n          \"Left\": 0.16177524626255035,\n          \"Top\": 0.1578865498304367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16177524626255035,\n            \"Y\": 0.1578865498304367\n          },\n          {\n            \"X\": 0.20040972530841827,\n            \"Y\": 0.1578865498304367\n          },\n          {\n            \"X\": 0.20040972530841827,\n            \"Y\": 0.16782864928245544\n          },\n          {\n            \"X\": 0.16177524626255035,\n            \"Y\": 0.16782864928245544\n          }\n        ]\n      },\n      \"Id\": \"20477be6-5cdb-4f57-a4b8-56b82dd30f4f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68464660644531,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046376701444387436,\n          \"Height\": 0.010304490104317665,\n          \"Left\": 0.21957671642303467,\n          \"Top\": 0.1575348675251007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21957671642303467,\n            \"Y\": 0.1575348675251007\n          },\n          {\n            \"X\": 0.2659534215927124,\n            \"Y\": 0.1575348675251007\n          },\n          {\n            \"X\": 0.2659534215927124,\n            \"Y\": 0.16783936321735382\n          },\n          {\n            \"X\": 0.21957671642303467,\n            \"Y\": 0.16783936321735382\n          }\n        ]\n      },\n      \"Id\": \"de3490e5-06c8-4b5e-a2ed-9d71fbd61669\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.39278411865234,\n      \"Text\": \"1.1.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03856068104505539,\n          \"Height\": 0.010068920440971851,\n          \"Left\": 0.2713058888912201,\n          \"Top\": 0.15771366655826569\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2713058888912201,\n            \"Y\": 0.15771366655826569\n          },\n          {\n            \"X\": 0.3098665773868561,\n            \"Y\": 0.15771366655826569\n          },\n          {\n            \"X\": 0.3098665773868561,\n            \"Y\": 0.16778258979320526\n          },\n          {\n            \"X\": 0.2713058888912201,\n            \"Y\": 0.16778258979320526\n          }\n        ]\n      },\n      \"Id\": \"769bc278-3759-4d7c-b766-4dd648fff7c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56538391113281,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04571335017681122,\n          \"Height\": 0.01008445955812931,\n          \"Left\": 0.3296671509742737,\n          \"Top\": 0.15744420886039734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3296671509742737,\n            \"Y\": 0.15744420886039734\n          },\n          {\n            \"X\": 0.3753804862499237,\n            \"Y\": 0.15744420886039734\n          },\n          {\n            \"X\": 0.3753804862499237,\n            \"Y\": 0.1675286740064621\n          },\n          {\n            \"X\": 0.3296671509742737,\n            \"Y\": 0.1675286740064621\n          }\n        ]\n      },\n      \"Id\": \"a2add06a-d7e5-4f51-be46-00ffcb8f062e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.32353973388672,\n      \"Text\": \"1.1.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0382918082177639,\n          \"Height\": 0.009975399821996689,\n          \"Left\": 0.38106343150138855,\n          \"Top\": 0.15785343945026398\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38106343150138855,\n            \"Y\": 0.15785343945026398\n          },\n          {\n            \"X\": 0.41935524344444275,\n            \"Y\": 0.15785343945026398\n          },\n          {\n            \"X\": 0.41935524344444275,\n            \"Y\": 0.16782884299755096\n          },\n          {\n            \"X\": 0.38106343150138855,\n            \"Y\": 0.16782884299755096\n          }\n        ]\n      },\n      \"Id\": \"bbf1f43e-b02a-4b0b-8bb9-e776a740dd29\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78055572509766,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045779574662446976,\n          \"Height\": 0.010181560181081295,\n          \"Left\": 0.10996827483177185,\n          \"Top\": 0.17520037293434143\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10996827483177185,\n            \"Y\": 0.17520037293434143\n          },\n          {\n            \"X\": 0.15574784576892853,\n            \"Y\": 0.17520037293434143\n          },\n          {\n            \"X\": 0.15574784576892853,\n            \"Y\": 0.1853819340467453\n          },\n          {\n            \"X\": 0.10996827483177185,\n            \"Y\": 0.1853819340467453\n          }\n        ]\n      },\n      \"Id\": \"62f193ef-e7b5-4c13-b7a0-ecbe1a03649a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.19034576416016,\n      \"Text\": \"1.2.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03842192888259888,\n          \"Height\": 0.010137559846043587,\n          \"Left\": 0.16142453253269196,\n          \"Top\": 0.1753779500722885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16142453253269196,\n            \"Y\": 0.1753779500722885\n          },\n          {\n            \"X\": 0.19984646141529083,\n            \"Y\": 0.1753779500722885\n          },\n          {\n            \"X\": 0.19984646141529083,\n            \"Y\": 0.18551550805568695\n          },\n          {\n            \"X\": 0.16142453253269196,\n            \"Y\": 0.18551550805568695\n          }\n        ]\n      },\n      \"Id\": \"5d5b7d86-c4e2-4d80-aab1-eb46edbb80ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77498626708984,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046515341848134995,\n          \"Height\": 0.010159879922866821,\n          \"Left\": 0.21950756013393402,\n          \"Top\": 0.1752668023109436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21950756013393402,\n            \"Y\": 0.1752668023109436\n          },\n          {\n            \"X\": 0.2660228908061981,\n            \"Y\": 0.1752668023109436\n          },\n          {\n            \"X\": 0.2660228908061981,\n            \"Y\": 0.18542668223381042\n          },\n          {\n            \"X\": 0.21950756013393402,\n            \"Y\": 0.18542668223381042\n          }\n        ]\n      },\n      \"Id\": \"a9fdd78a-ab2d-4c9f-afb6-97b323d1619b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42559814453125,\n      \"Text\": \"1.2.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03884410113096237,\n          \"Height\": 0.009789139963686466,\n          \"Left\": 0.2711837887763977,\n          \"Top\": 0.1754995584487915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2711837887763977,\n            \"Y\": 0.1754995584487915\n          },\n          {\n            \"X\": 0.3100278973579407,\n            \"Y\": 0.1754995584487915\n          },\n          {\n            \"X\": 0.3100278973579407,\n            \"Y\": 0.1852886974811554\n          },\n          {\n            \"X\": 0.2711837887763977,\n            \"Y\": 0.1852886974811554\n          }\n        ]\n      },\n      \"Id\": \"bcef7e2f-b821-496e-8416-b76afc942fd2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6119384765625,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045936740934848785,\n          \"Height\": 0.01012708991765976,\n          \"Left\": 0.3293275237083435,\n          \"Top\": 0.1752515435218811\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3293275237083435,\n            \"Y\": 0.1752515435218811\n          },\n          {\n            \"X\": 0.3752642571926117,\n            \"Y\": 0.1752515435218811\n          },\n          {\n            \"X\": 0.3752642571926117,\n            \"Y\": 0.18537862598896027\n          },\n          {\n            \"X\": 0.3293275237083435,\n            \"Y\": 0.18537862598896027\n          }\n        ]\n      },\n      \"Id\": \"7eb4e511-3091-4b79-afc3-b2730b6b9fca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.09342193603516,\n      \"Text\": \"1.2.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038963768631219864,\n          \"Height\": 0.010046900250017643,\n          \"Left\": 0.3804951012134552,\n          \"Top\": 0.17539532482624054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3804951012134552,\n            \"Y\": 0.17539532482624054\n          },\n          {\n            \"X\": 0.41945886611938477,\n            \"Y\": 0.17539532482624054\n          },\n          {\n            \"X\": 0.41945886611938477,\n            \"Y\": 0.1854422241449356\n          },\n          {\n            \"X\": 0.3804951012134552,\n            \"Y\": 0.1854422241449356\n          }\n        ]\n      },\n      \"Id\": \"17fc7483-8c94-4585-b517-85e567a8c4e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78971862792969,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04569195955991745,\n          \"Height\": 0.010246570222079754,\n          \"Left\": 0.11013281345367432,\n          \"Top\": 0.19289986789226532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11013281345367432,\n            \"Y\": 0.19289986789226532\n          },\n          {\n            \"X\": 0.15582476556301117,\n            \"Y\": 0.19289986789226532\n          },\n          {\n            \"X\": 0.15582476556301117,\n            \"Y\": 0.20314644277095795\n          },\n          {\n            \"X\": 0.11013281345367432,\n            \"Y\": 0.20314644277095795\n          }\n        ]\n      },\n      \"Id\": \"0a55b010-3182-402f-97d1-66b1c1c0d1a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.62911224365234,\n      \"Text\": \"1.3.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03864271938800812,\n          \"Height\": 0.010178189724683762,\n          \"Left\": 0.1615937203168869,\n          \"Top\": 0.19301681220531464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1615937203168869,\n            \"Y\": 0.19301681220531464\n          },\n          {\n            \"X\": 0.20023643970489502,\n            \"Y\": 0.19301681220531464\n          },\n          {\n            \"X\": 0.20023643970489502,\n            \"Y\": 0.2031950056552887\n          },\n          {\n            \"X\": 0.1615937203168869,\n            \"Y\": 0.2031950056552887\n          }\n        ]\n      },\n      \"Id\": \"943bbaad-f70d-4b4e-a68f-3a3af8463a0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76148223876953,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045995041728019714,\n          \"Height\": 0.010228520259261131,\n          \"Left\": 0.21970826387405396,\n          \"Top\": 0.19291900098323822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21970826387405396,\n            \"Y\": 0.19291900098323822\n          },\n          {\n            \"X\": 0.2657032907009125,\n            \"Y\": 0.19291900098323822\n          },\n          {\n            \"X\": 0.2657032907009125,\n            \"Y\": 0.2031475156545639\n          },\n          {\n            \"X\": 0.21970826387405396,\n            \"Y\": 0.2031475156545639\n          }\n        ]\n      },\n      \"Id\": \"b3d78e15-4124-4ec6-b39a-8ad528e3d54d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.05184173583984,\n      \"Text\": \"1.3.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03854794055223465,\n          \"Height\": 0.009979460388422012,\n          \"Left\": 0.27124178409576416,\n          \"Top\": 0.19313256442546844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27124178409576416,\n            \"Y\": 0.19313256442546844\n          },\n          {\n            \"X\": 0.3097897171974182,\n            \"Y\": 0.19313256442546844\n          },\n          {\n            \"X\": 0.3097897171974182,\n            \"Y\": 0.20311202108860016\n          },\n          {\n            \"X\": 0.27124178409576416,\n            \"Y\": 0.20311202108860016\n          }\n        ]\n      },\n      \"Id\": \"7598e24c-3b6b-4b02-b842-981d2a9457a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62776947021484,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045773960649967194,\n          \"Height\": 0.01024817954748869,\n          \"Left\": 0.3294762074947357,\n          \"Top\": 0.19291351735591888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3294762074947357,\n            \"Y\": 0.19291351735591888\n          },\n          {\n            \"X\": 0.3752501606941223,\n            \"Y\": 0.19291351735591888\n          },\n          {\n            \"X\": 0.3752501606941223,\n            \"Y\": 0.20316170156002045\n          },\n          {\n            \"X\": 0.3294762074947357,\n            \"Y\": 0.20316170156002045\n          }\n        ]\n      },\n      \"Id\": \"280a2f4f-d07c-4221-b384-787044a31bbc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49051666259766,\n      \"Text\": \"1.3.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03818526864051819,\n          \"Height\": 0.010222669690847397,\n          \"Left\": 0.38095465302467346,\n          \"Top\": 0.1930178999900818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38095465302467346,\n            \"Y\": 0.1930178999900818\n          },\n          {\n            \"X\": 0.41913992166519165,\n            \"Y\": 0.1930178999900818\n          },\n          {\n            \"X\": 0.41913992166519165,\n            \"Y\": 0.20324057340621948\n          },\n          {\n            \"X\": 0.38095465302467346,\n            \"Y\": 0.20324057340621948\n          }\n        ]\n      },\n      \"Id\": \"60654585-6a37-46a1-8f95-36a4f2ad9fb1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82653045654297,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053796958178281784,\n          \"Height\": 0.011909379623830318,\n          \"Left\": 0.3488728404045105,\n          \"Top\": 0.23571865260601044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3488728404045105,\n            \"Y\": 0.23571865260601044\n          },\n          {\n            \"X\": 0.4026697874069214,\n            \"Y\": 0.23571865260601044\n          },\n          {\n            \"X\": 0.4026697874069214,\n            \"Y\": 0.24762803316116333\n          },\n          {\n            \"X\": 0.3488728404045105,\n            \"Y\": 0.24762803316116333\n          }\n        ]\n      },\n      \"Id\": \"b1d0740a-5ef7-4226-91df-e18c10a29a58\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.2075424194336,\n      \"Text\": \"2.1.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04628150910139084,\n          \"Height\": 0.011547350324690342,\n          \"Left\": 0.40848612785339355,\n          \"Top\": 0.2360585331916809\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40848612785339355,\n            \"Y\": 0.2360585331916809\n          },\n          {\n            \"X\": 0.454767644405365,\n            \"Y\": 0.2360585331916809\n          },\n          {\n            \"X\": 0.454767644405365,\n            \"Y\": 0.24760587513446808\n          },\n          {\n            \"X\": 0.40848612785339355,\n            \"Y\": 0.24760587513446808\n          }\n        ]\n      },\n      \"Id\": \"5ad4f3f8-c688-46f9-b3c6-7a500af8030b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80813598632812,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0540800504386425,\n          \"Height\": 0.012076090089976788,\n          \"Left\": 0.47313034534454346,\n          \"Top\": 0.23562827706336975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47313034534454346,\n            \"Y\": 0.23562827706336975\n          },\n          {\n            \"X\": 0.5272104144096375,\n            \"Y\": 0.23562827706336975\n          },\n          {\n            \"X\": 0.5272104144096375,\n            \"Y\": 0.2477043718099594\n          },\n          {\n            \"X\": 0.47313034534454346,\n            \"Y\": 0.2477043718099594\n          }\n        ]\n      },\n      \"Id\": \"057fce31-3320-4aad-8a81-59596d5b1dcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.28865814208984,\n      \"Text\": \"2.1.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04634924978017807,\n          \"Height\": 0.01157405972480774,\n          \"Left\": 0.5324368476867676,\n          \"Top\": 0.23596081137657166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5324368476867676,\n            \"Y\": 0.23596081137657166\n          },\n          {\n            \"X\": 0.5787860751152039,\n            \"Y\": 0.23596081137657166\n          },\n          {\n            \"X\": 0.5787860751152039,\n            \"Y\": 0.2475348711013794\n          },\n          {\n            \"X\": 0.5324368476867676,\n            \"Y\": 0.2475348711013794\n          }\n        ]\n      },\n      \"Id\": \"68f04b27-586d-4630-9d41-6a07c0100b51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79203033447266,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05396723002195358,\n          \"Height\": 0.012077519670128822,\n          \"Left\": 0.597499668598175,\n          \"Top\": 0.23563411831855774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.597499668598175,\n            \"Y\": 0.23563411831855774\n          },\n          {\n            \"X\": 0.6514669060707092,\n            \"Y\": 0.23563411831855774\n          },\n          {\n            \"X\": 0.6514669060707092,\n            \"Y\": 0.247711643576622\n          },\n          {\n            \"X\": 0.597499668598175,\n            \"Y\": 0.247711643576622\n          }\n        ]\n      },\n      \"Id\": \"334f895e-30c6-4df5-aacb-0cf231b620af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.2537612915039,\n      \"Text\": \"2.1.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045667439699172974,\n          \"Height\": 0.011661339551210403,\n          \"Left\": 0.657193660736084,\n          \"Top\": 0.23603498935699463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.657193660736084,\n            \"Y\": 0.23603498935699463\n          },\n          {\n            \"X\": 0.7028610706329346,\n            \"Y\": 0.23603498935699463\n          },\n          {\n            \"X\": 0.7028610706329346,\n            \"Y\": 0.24769632518291473\n          },\n          {\n            \"X\": 0.657193660736084,\n            \"Y\": 0.24769632518291473\n          }\n        ]\n      },\n      \"Id\": \"6291ad39-03aa-4ab6-a8e4-63b5b6b26f94\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.760009765625,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05447776988148689,\n          \"Height\": 0.012122049927711487,\n          \"Left\": 0.7210274338722229,\n          \"Top\": 0.23564797639846802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7210274338722229,\n            \"Y\": 0.23564797639846802\n          },\n          {\n            \"X\": 0.7755051851272583,\n            \"Y\": 0.23564797639846802\n          },\n          {\n            \"X\": 0.7755051851272583,\n            \"Y\": 0.2477700263261795\n          },\n          {\n            \"X\": 0.7210274338722229,\n            \"Y\": 0.2477700263261795\n          }\n        ]\n      },\n      \"Id\": \"fd763da3-32a8-461a-92bd-174ad0e030fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47083282470703,\n      \"Text\": \"2.1.4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04653400182723999,\n          \"Height\": 0.011756939813494682,\n          \"Left\": 0.7806973457336426,\n          \"Top\": 0.235946387052536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7806973457336426,\n            \"Y\": 0.235946387052536\n          },\n          {\n            \"X\": 0.8272313475608826,\n            \"Y\": 0.235946387052536\n          },\n          {\n            \"X\": 0.8272313475608826,\n            \"Y\": 0.24770332872867584\n          },\n          {\n            \"X\": 0.7806973457336426,\n            \"Y\": 0.24770332872867584\n          }\n        ]\n      },\n      \"Id\": \"022a6e3a-d0d5-491f-bd07-c7a9f672ccae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79320526123047,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054405100643634796,\n          \"Height\": 0.012087649665772915,\n          \"Left\": 0.8453003168106079,\n          \"Top\": 0.23561464250087738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8453003168106079,\n            \"Y\": 0.23561464250087738\n          },\n          {\n            \"X\": 0.8997054100036621,\n            \"Y\": 0.23561464250087738\n          },\n          {\n            \"X\": 0.8997054100036621,\n            \"Y\": 0.24770228564739227\n          },\n          {\n            \"X\": 0.8453003168106079,\n            \"Y\": 0.24770228564739227\n          }\n        ]\n      },\n      \"Id\": \"2f2d8ba1-da3d-47ae-ad9a-40037c9ab97f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.38909149169922,\n      \"Text\": \"2.1.5\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04580039903521538,\n          \"Height\": 0.01184805016964674,\n          \"Left\": 0.9053084850311279,\n          \"Top\": 0.23588116466999054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9053084850311279,\n            \"Y\": 0.23588116466999054\n          },\n          {\n            \"X\": 0.9511088728904724,\n            \"Y\": 0.23588116466999054\n          },\n          {\n            \"X\": 0.9511088728904724,\n            \"Y\": 0.24772921204566956\n          },\n          {\n            \"X\": 0.9053084850311279,\n            \"Y\": 0.24772921204566956\n          }\n        ]\n      },\n      \"Id\": \"991f2310-4c94-4cfe-9fce-3f0197eaa5f0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89319610595703,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053253378719091415,\n          \"Height\": 0.012048560194671154,\n          \"Left\": 0.3493971824645996,\n          \"Top\": 0.2560810446739197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493971824645996,\n            \"Y\": 0.2560810446739197\n          },\n          {\n            \"X\": 0.4026505649089813,\n            \"Y\": 0.2560810446739197\n          },\n          {\n            \"X\": 0.4026505649089813,\n            \"Y\": 0.2681295871734619\n          },\n          {\n            \"X\": 0.3493971824645996,\n            \"Y\": 0.2681295871734619\n          }\n        ]\n      },\n      \"Id\": \"262a77db-ae01-43ee-98b9-a5d30be484fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.08287048339844,\n      \"Text\": \"2.2.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045830581337213516,\n          \"Height\": 0.011588499881327152,\n          \"Left\": 0.4086907207965851,\n          \"Top\": 0.2564401924610138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4086907207965851,\n            \"Y\": 0.2564401924610138\n          },\n          {\n            \"X\": 0.4545212984085083,\n            \"Y\": 0.2564401924610138\n          },\n          {\n            \"X\": 0.4545212984085083,\n            \"Y\": 0.26802870631217957\n          },\n          {\n            \"X\": 0.4086907207965851,\n            \"Y\": 0.26802870631217957\n          }\n        ]\n      },\n      \"Id\": \"ec9df24b-4223-4ea9-afd9-1e8dd7f7316a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76856994628906,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054104678332805634,\n          \"Height\": 0.012222640216350555,\n          \"Left\": 0.4734887182712555,\n          \"Top\": 0.25603875517845154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4734887182712555,\n            \"Y\": 0.25603875517845154\n          },\n          {\n            \"X\": 0.5275933742523193,\n            \"Y\": 0.25603875517845154\n          },\n          {\n            \"X\": 0.5275933742523193,\n            \"Y\": 0.2682614028453827\n          },\n          {\n            \"X\": 0.4734887182712555,\n            \"Y\": 0.2682614028453827\n          }\n        ]\n      },\n      \"Id\": \"7b7fe7a4-79fc-44d0-9f0c-14e17763c159\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.56704711914062,\n      \"Text\": \"2.2.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04635901004076004,\n          \"Height\": 0.011695380322635174,\n          \"Left\": 0.5323651432991028,\n          \"Top\": 0.256294846534729\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5323651432991028,\n            \"Y\": 0.256294846534729\n          },\n          {\n            \"X\": 0.5787241458892822,\n            \"Y\": 0.256294846534729\n          },\n          {\n            \"X\": 0.5787241458892822,\n            \"Y\": 0.26799023151397705\n          },\n          {\n            \"X\": 0.5323651432991028,\n            \"Y\": 0.26799023151397705\n          }\n        ]\n      },\n      \"Id\": \"4d745dee-7ebf-47ba-8a82-f1206d9ba19c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80119323730469,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05330276861786842,\n          \"Height\": 0.01221316959708929,\n          \"Left\": 0.5980994701385498,\n          \"Top\": 0.2560027837753296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5980994701385498,\n            \"Y\": 0.2560027837753296\n          },\n          {\n            \"X\": 0.6514022350311279,\n            \"Y\": 0.2560027837753296\n          },\n          {\n            \"X\": 0.6514022350311279,\n            \"Y\": 0.26821595430374146\n          },\n          {\n            \"X\": 0.5980994701385498,\n            \"Y\": 0.26821595430374146\n          }\n        ]\n      },\n      \"Id\": \"b69f145b-e997-42c1-800b-17519d3e32ef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9343490600586,\n      \"Text\": \"2.2.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045561131089925766,\n          \"Height\": 0.011669670231640339,\n          \"Left\": 0.6571125984191895,\n          \"Top\": 0.2564736008644104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6571125984191895,\n            \"Y\": 0.2564736008644104\n          },\n          {\n            \"X\": 0.7026737332344055,\n            \"Y\": 0.2564736008644104\n          },\n          {\n            \"X\": 0.7026737332344055,\n            \"Y\": 0.26814326643943787\n          },\n          {\n            \"X\": 0.6571125984191895,\n            \"Y\": 0.26814326643943787\n          }\n        ]\n      },\n      \"Id\": \"c300452e-f3cd-46b2-8151-07a7974d9326\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75062561035156,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05403130128979683,\n          \"Height\": 0.01215234026312828,\n          \"Left\": 0.7213287949562073,\n          \"Top\": 0.256034255027771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7213287949562073,\n            \"Y\": 0.256034255027771\n          },\n          {\n            \"X\": 0.775360107421875,\n            \"Y\": 0.256034255027771\n          },\n          {\n            \"X\": 0.775360107421875,\n            \"Y\": 0.2681865990161896\n          },\n          {\n            \"X\": 0.7213287949562073,\n            \"Y\": 0.2681865990161896\n          }\n        ]\n      },\n      \"Id\": \"a704e76f-ff9b-46eb-9a6b-35542a6b8c43\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.39600372314453,\n      \"Text\": \"2.2.4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04704599827528,\n          \"Height\": 0.01181378960609436,\n          \"Left\": 0.7803736925125122,\n          \"Top\": 0.2563624680042267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7803736925125122,\n            \"Y\": 0.2563624680042267\n          },\n          {\n            \"X\": 0.8274196982383728,\n            \"Y\": 0.2563624680042267\n          },\n          {\n            \"X\": 0.8274196982383728,\n            \"Y\": 0.26817625761032104\n          },\n          {\n            \"X\": 0.7803736925125122,\n            \"Y\": 0.26817625761032104\n          }\n        ]\n      },\n      \"Id\": \"23e7eac0-e92d-40cd-8026-3e2dccb5a334\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45052337646484,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054278500378131866,\n          \"Height\": 0.012320499867200851,\n          \"Left\": 0.8453077077865601,\n          \"Top\": 0.25595200061798096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8453077077865601,\n            \"Y\": 0.25595200061798096\n          },\n          {\n            \"X\": 0.8995862007141113,\n            \"Y\": 0.25595200061798096\n          },\n          {\n            \"X\": 0.8995862007141113,\n            \"Y\": 0.2682724893093109\n          },\n          {\n            \"X\": 0.8453077077865601,\n            \"Y\": 0.2682724893093109\n          }\n        ]\n      },\n      \"Id\": \"334606a6-3b2c-40fe-9d1d-d80103d3387b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3238296508789,\n      \"Text\": \"2.2.5\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04569945111870766,\n          \"Height\": 0.012012509629130363,\n          \"Left\": 0.905106246471405,\n          \"Top\": 0.2562149167060852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.905106246471405,\n            \"Y\": 0.2562149167060852\n          },\n          {\n            \"X\": 0.9508057236671448,\n            \"Y\": 0.2562149167060852\n          },\n          {\n            \"X\": 0.9508057236671448,\n            \"Y\": 0.2682274281978607\n          },\n          {\n            \"X\": 0.905106246471405,\n            \"Y\": 0.2682274281978607\n          }\n        ]\n      },\n      \"Id\": \"393bb537-f983-4800-b0db-8db2812eae45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84343719482422,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053184859454631805,\n          \"Height\": 0.012133720330893993,\n          \"Left\": 0.3494780361652374,\n          \"Top\": 0.27675092220306396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3494780361652374,\n            \"Y\": 0.27675092220306396\n          },\n          {\n            \"X\": 0.40266290307044983,\n            \"Y\": 0.27675092220306396\n          },\n          {\n            \"X\": 0.40266290307044983,\n            \"Y\": 0.28888463973999023\n          },\n          {\n            \"X\": 0.3494780361652374,\n            \"Y\": 0.28888463973999023\n          }\n        ]\n      },\n      \"Id\": \"260d17c0-3af7-428a-be93-012e693ccb1c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.01860809326172,\n      \"Text\": \"2.3.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045321621000766754,\n          \"Height\": 0.011539939790964127,\n          \"Left\": 0.4091334342956543,\n          \"Top\": 0.27703404426574707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4091334342956543,\n            \"Y\": 0.27703404426574707\n          },\n          {\n            \"X\": 0.45445504784584045,\n            \"Y\": 0.27703404426574707\n          },\n          {\n            \"X\": 0.45445504784584045,\n            \"Y\": 0.2885739803314209\n          },\n          {\n            \"X\": 0.4091334342956543,\n            \"Y\": 0.2885739803314209\n          }\n        ]\n      },\n      \"Id\": \"00b2a930-9567-4573-aff3-59046874707d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82861328125,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054128970950841904,\n          \"Height\": 0.01225448027253151,\n          \"Left\": 0.4735710918903351,\n          \"Top\": 0.27651697397232056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4735710918903351,\n            \"Y\": 0.27651697397232056\n          },\n          {\n            \"X\": 0.5277000665664673,\n            \"Y\": 0.27651697397232056\n          },\n          {\n            \"X\": 0.5277000665664673,\n            \"Y\": 0.28877145051956177\n          },\n          {\n            \"X\": 0.4735710918903351,\n            \"Y\": 0.28877145051956177\n          }\n        ]\n      },\n      \"Id\": \"4c7e8481-9358-4784-9847-83077be11d16\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47615051269531,\n      \"Text\": \"2.3.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045267898589372635,\n          \"Height\": 0.011813079938292503,\n          \"Left\": 0.5330377221107483,\n          \"Top\": 0.2768526077270508\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5330377221107483,\n            \"Y\": 0.2768526077270508\n          },\n          {\n            \"X\": 0.5783056020736694,\n            \"Y\": 0.2768526077270508\n          },\n          {\n            \"X\": 0.5783056020736694,\n            \"Y\": 0.28866568207740784\n          },\n          {\n            \"X\": 0.5330377221107483,\n            \"Y\": 0.28866568207740784\n          }\n        ]\n      },\n      \"Id\": \"d4437c1d-c937-4857-b18b-b1ea50706bab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80863189697266,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053186528384685516,\n          \"Height\": 0.012204560451209545,\n          \"Left\": 0.5982868671417236,\n          \"Top\": 0.27671492099761963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5982868671417236,\n            \"Y\": 0.27671492099761963\n          },\n          {\n            \"X\": 0.6514734029769897,\n            \"Y\": 0.27671492099761963\n          },\n          {\n            \"X\": 0.6514734029769897,\n            \"Y\": 0.28891947865486145\n          },\n          {\n            \"X\": 0.5982868671417236,\n            \"Y\": 0.28891947865486145\n          }\n        ]\n      },\n      \"Id\": \"fc1aa1b0-a0c7-472b-9c00-a798d8cc435f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3831558227539,\n      \"Text\": \"2.3.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04516829922795296,\n          \"Height\": 0.011717350222170353,\n          \"Left\": 0.6574996113777161,\n          \"Top\": 0.27700290083885193\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6574996113777161,\n            \"Y\": 0.27700290083885193\n          },\n          {\n            \"X\": 0.7026678919792175,\n            \"Y\": 0.27700290083885193\n          },\n          {\n            \"X\": 0.7026678919792175,\n            \"Y\": 0.2887202501296997\n          },\n          {\n            \"X\": 0.6574996113777161,\n            \"Y\": 0.2887202501296997\n          }\n        ]\n      },\n      \"Id\": \"3d6e6e99-0fd5-4cce-94bd-91d8fdb4cd4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73535919189453,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05356600135564804,\n          \"Height\": 0.01227657962590456,\n          \"Left\": 0.7216104865074158,\n          \"Top\": 0.2766041159629822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7216104865074158,\n            \"Y\": 0.2766041159629822\n          },\n          {\n            \"X\": 0.7751765251159668,\n            \"Y\": 0.2766041159629822\n          },\n          {\n            \"X\": 0.7751765251159668,\n            \"Y\": 0.28888070583343506\n          },\n          {\n            \"X\": 0.7216104865074158,\n            \"Y\": 0.28888070583343506\n          }\n        ]\n      },\n      \"Id\": \"f930b397-6dca-4b1f-9a6c-7b1c00f4f1ff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.44884490966797,\n      \"Text\": \"2.3.4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04608350992202759,\n          \"Height\": 0.012029260396957397,\n          \"Left\": 0.7810408473014832,\n          \"Top\": 0.2768484354019165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7810408473014832,\n            \"Y\": 0.2768484354019165\n          },\n          {\n            \"X\": 0.8271243572235107,\n            \"Y\": 0.2768484354019165\n          },\n          {\n            \"X\": 0.8271243572235107,\n            \"Y\": 0.2888776957988739\n          },\n          {\n            \"X\": 0.7810408473014832,\n            \"Y\": 0.2888776957988739\n          }\n        ]\n      },\n      \"Id\": \"813364e2-cdb5-4635-82c2-cc90a5c0bcba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.01492309570312,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052793338894844055,\n          \"Height\": 0.012328979559242725,\n          \"Left\": 0.8464338183403015,\n          \"Top\": 0.2766174376010895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8464338183403015,\n            \"Y\": 0.2766174376010895\n          },\n          {\n            \"X\": 0.8992271423339844,\n            \"Y\": 0.2766174376010895\n          },\n          {\n            \"X\": 0.8992271423339844,\n            \"Y\": 0.2889464199542999\n          },\n          {\n            \"X\": 0.8464338183403015,\n            \"Y\": 0.2889464199542999\n          }\n        ]\n      },\n      \"Id\": \"403d255b-f24e-4e0c-88fa-9136eacf58f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.37783813476562,\n      \"Text\": \"2.3.5\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04505309835076332,\n          \"Height\": 0.01188065018504858,\n          \"Left\": 0.9054586887359619,\n          \"Top\": 0.27690210938453674\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054586887359619,\n            \"Y\": 0.27690210938453674\n          },\n          {\n            \"X\": 0.9505118131637573,\n            \"Y\": 0.27690210938453674\n          },\n          {\n            \"X\": 0.9505118131637573,\n            \"Y\": 0.2887827455997467\n          },\n          {\n            \"X\": 0.9054586887359619,\n            \"Y\": 0.2887827455997467\n          }\n        ]\n      },\n      \"Id\": \"f89b635b-7a29-4df9-8765-5b671c46fdb9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84051513671875,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05324823036789894,\n          \"Height\": 0.01197103038430214,\n          \"Left\": 0.34942883253097534,\n          \"Top\": 0.29721662402153015\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34942883253097534,\n            \"Y\": 0.29721662402153015\n          },\n          {\n            \"X\": 0.402677059173584,\n            \"Y\": 0.29721662402153015\n          },\n          {\n            \"X\": 0.402677059173584,\n            \"Y\": 0.309187650680542\n          },\n          {\n            \"X\": 0.34942883253097534,\n            \"Y\": 0.309187650680542\n          }\n        ]\n      },\n      \"Id\": \"c3c838e8-b89f-4cd7-a4f0-c4b61c9f4788\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57615661621094,\n      \"Text\": \"2.4.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04509260132908821,\n          \"Height\": 0.011362879537045956,\n          \"Left\": 0.4091089069843292,\n          \"Top\": 0.29758426547050476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4091089069843292,\n            \"Y\": 0.29758426547050476\n          },\n          {\n            \"X\": 0.45420148968696594,\n            \"Y\": 0.29758426547050476\n          },\n          {\n            \"X\": 0.45420148968696594,\n            \"Y\": 0.3089471459388733\n          },\n          {\n            \"X\": 0.4091089069843292,\n            \"Y\": 0.3089471459388733\n          }\n        ]\n      },\n      \"Id\": \"b8ed9993-b4e2-4fdf-a5ed-ac587754215a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83200073242188,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053363848477602005,\n          \"Height\": 0.01192868035286665,\n          \"Left\": 0.4736648499965668,\n          \"Top\": 0.29723668098449707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4736648499965668,\n            \"Y\": 0.29723668098449707\n          },\n          {\n            \"X\": 0.5270286798477173,\n            \"Y\": 0.29723668098449707\n          },\n          {\n            \"X\": 0.5270286798477173,\n            \"Y\": 0.309165358543396\n          },\n          {\n            \"X\": 0.4736648499965668,\n            \"Y\": 0.309165358543396\n          }\n        ]\n      },\n      \"Id\": \"0a572e77-aa31-49eb-8fe6-6cf110182f16\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47236633300781,\n      \"Text\": \"2.4.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04526710882782936,\n          \"Height\": 0.01157561969012022,\n          \"Left\": 0.5331266522407532,\n          \"Top\": 0.29745107889175415\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5331266522407532,\n            \"Y\": 0.29745107889175415\n          },\n          {\n            \"X\": 0.5783937573432922,\n            \"Y\": 0.29745107889175415\n          },\n          {\n            \"X\": 0.5783937573432922,\n            \"Y\": 0.30902668833732605\n          },\n          {\n            \"X\": 0.5331266522407532,\n            \"Y\": 0.30902668833732605\n          }\n        ]\n      },\n      \"Id\": \"50c7e6da-a99a-49c5-bb8a-4e53dc1c2416\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79336547851562,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05337870121002197,\n          \"Height\": 0.012054800055921078,\n          \"Left\": 0.5981996655464172,\n          \"Top\": 0.2971394956111908\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5981996655464172,\n            \"Y\": 0.2971394956111908\n          },\n          {\n            \"X\": 0.6515783667564392,\n            \"Y\": 0.2971394956111908\n          },\n          {\n            \"X\": 0.6515783667564392,\n            \"Y\": 0.30919429659843445\n          },\n          {\n            \"X\": 0.5981996655464172,\n            \"Y\": 0.30919429659843445\n          }\n        ]\n      },\n      \"Id\": \"5a89f920-31c1-439a-aec7-680585b25796\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.40470886230469,\n      \"Text\": \"2.4.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04558200016617775,\n          \"Height\": 0.011569860391318798,\n          \"Left\": 0.6570185422897339,\n          \"Top\": 0.29758137464523315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6570185422897339,\n            \"Y\": 0.29758137464523315\n          },\n          {\n            \"X\": 0.7026005387306213,\n            \"Y\": 0.29758137464523315\n          },\n          {\n            \"X\": 0.7026005387306213,\n            \"Y\": 0.30915123224258423\n          },\n          {\n            \"X\": 0.6570185422897339,\n            \"Y\": 0.30915123224258423\n          }\n        ]\n      },\n      \"Id\": \"e7ba092f-65d9-42c9-bc93-5d88ff8d8a21\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78384399414062,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0533175989985466,\n          \"Height\": 0.01185567956417799,\n          \"Left\": 0.7216416001319885,\n          \"Top\": 0.29727259278297424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7216416001319885,\n            \"Y\": 0.29727259278297424\n          },\n          {\n            \"X\": 0.7749592065811157,\n            \"Y\": 0.29727259278297424\n          },\n          {\n            \"X\": 0.7749592065811157,\n            \"Y\": 0.3091282844543457\n          },\n          {\n            \"X\": 0.7216416001319885,\n            \"Y\": 0.3091282844543457\n          }\n        ]\n      },\n      \"Id\": \"89a0b628-38d0-4d70-af44-a248e9e189bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57990264892578,\n      \"Text\": \"2.4.4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046270951628685,\n          \"Height\": 0.01173368003219366,\n          \"Left\": 0.7806700468063354,\n          \"Top\": 0.2973509430885315\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7806700468063354,\n            \"Y\": 0.2973509430885315\n          },\n          {\n            \"X\": 0.8269410133361816,\n            \"Y\": 0.2973509430885315\n          },\n          {\n            \"X\": 0.8269410133361816,\n            \"Y\": 0.30908462405204773\n          },\n          {\n            \"X\": 0.7806700468063354,\n            \"Y\": 0.30908462405204773\n          }\n        ]\n      },\n      \"Id\": \"9e2d3f64-7681-4b6b-ab67-56cae96a26fe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81639862060547,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053484801203012466,\n          \"Height\": 0.011811939999461174,\n          \"Left\": 0.8457906246185303,\n          \"Top\": 0.29730719327926636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8457906246185303,\n            \"Y\": 0.29730719327926636\n          },\n          {\n            \"X\": 0.8992754220962524,\n            \"Y\": 0.29730719327926636\n          },\n          {\n            \"X\": 0.8992754220962524,\n            \"Y\": 0.3091191351413727\n          },\n          {\n            \"X\": 0.8457906246185303,\n            \"Y\": 0.3091191351413727\n          }\n        ]\n      },\n      \"Id\": \"8d738af2-8336-4fe7-a9db-9a2094e47c45\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50688171386719,\n      \"Text\": \"2.4.5\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04499650001525879,\n          \"Height\": 0.011799450032413006,\n          \"Left\": 0.9054083228111267,\n          \"Top\": 0.2974287271499634\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054083228111267,\n            \"Y\": 0.2974287271499634\n          },\n          {\n            \"X\": 0.9504048228263855,\n            \"Y\": 0.2974287271499634\n          },\n          {\n            \"X\": 0.9504048228263855,\n            \"Y\": 0.30922818183898926\n          },\n          {\n            \"X\": 0.9054083228111267,\n            \"Y\": 0.30922818183898926\n          }\n        ]\n      },\n      \"Id\": \"e0b70770-4816-4fa0-98be-167ef2cf3f23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84648895263672,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053405068814754486,\n          \"Height\": 0.011972339823842049,\n          \"Left\": 0.3493768572807312,\n          \"Top\": 0.31771886348724365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3493768572807312,\n            \"Y\": 0.31771886348724365\n          },\n          {\n            \"X\": 0.4027819335460663,\n            \"Y\": 0.31771886348724365\n          },\n          {\n            \"X\": 0.4027819335460663,\n            \"Y\": 0.32969120144844055\n          },\n          {\n            \"X\": 0.3493768572807312,\n            \"Y\": 0.32969120144844055\n          }\n        ]\n      },\n      \"Id\": \"2c926ffd-0deb-41fb-99e3-f10cfce41297\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.42204284667969,\n      \"Text\": \"2.5.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045637428760528564,\n          \"Height\": 0.01162004005163908,\n          \"Left\": 0.4088549315929413,\n          \"Top\": 0.31803473830223083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4088549315929413,\n            \"Y\": 0.31803473830223083\n          },\n          {\n            \"X\": 0.45449236035346985,\n            \"Y\": 0.31803473830223083\n          },\n          {\n            \"X\": 0.45449236035346985,\n            \"Y\": 0.3296547830104828\n          },\n          {\n            \"X\": 0.4088549315929413,\n            \"Y\": 0.3296547830104828\n          }\n        ]\n      },\n      \"Id\": \"9e6f5012-92dd-44a4-bc27-241158503f6e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80496215820312,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053806841373443604,\n          \"Height\": 0.012018759734928608,\n          \"Left\": 0.47331732511520386,\n          \"Top\": 0.31766098737716675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47331732511520386,\n            \"Y\": 0.31766098737716675\n          },\n          {\n            \"X\": 0.5271241664886475,\n            \"Y\": 0.31766098737716675\n          },\n          {\n            \"X\": 0.5271241664886475,\n            \"Y\": 0.3296797573566437\n          },\n          {\n            \"X\": 0.47331732511520386,\n            \"Y\": 0.3296797573566437\n          }\n        ]\n      },\n      \"Id\": \"4b4e476b-a4e9-4664-bf7f-701af4ca7955\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.51167297363281,\n      \"Text\": \"2.5.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04543576017022133,\n          \"Height\": 0.011876019649207592,\n          \"Left\": 0.5330690741539001,\n          \"Top\": 0.3178495764732361\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5330690741539001,\n            \"Y\": 0.3178495764732361\n          },\n          {\n            \"X\": 0.5785048604011536,\n            \"Y\": 0.3178495764732361\n          },\n          {\n            \"X\": 0.5785048604011536,\n            \"Y\": 0.32972559332847595\n          },\n          {\n            \"X\": 0.5330690741539001,\n            \"Y\": 0.32972559332847595\n          }\n        ]\n      },\n      \"Id\": \"99985721-7815-4138-9be0-6b2a9273efb3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84737396240234,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05330564081668854,\n          \"Height\": 0.01205477025359869,\n          \"Left\": 0.5980262160301208,\n          \"Top\": 0.317635178565979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5980262160301208,\n            \"Y\": 0.317635178565979\n          },\n          {\n            \"X\": 0.6513318419456482,\n            \"Y\": 0.317635178565979\n          },\n          {\n            \"X\": 0.6513318419456482,\n            \"Y\": 0.32968994975090027\n          },\n          {\n            \"X\": 0.5980262160301208,\n            \"Y\": 0.32968994975090027\n          }\n        ]\n      },\n      \"Id\": \"51006c26-86d7-4d59-a810-d492e03d33c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54029083251953,\n      \"Text\": \"2.5.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04503915086388588,\n          \"Height\": 0.01179370004683733,\n          \"Left\": 0.657490074634552,\n          \"Top\": 0.31792953610420227\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.657490074634552,\n            \"Y\": 0.31792953610420227\n          },\n          {\n            \"X\": 0.70252925157547,\n            \"Y\": 0.31792953610420227\n          },\n          {\n            \"X\": 0.70252925157547,\n            \"Y\": 0.3297232389450073\n          },\n          {\n            \"X\": 0.657490074634552,\n            \"Y\": 0.3297232389450073\n          }\n        ]\n      },\n      \"Id\": \"21985db3-e896-470a-8279-23ddd60abba9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79503631591797,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05391779914498329,\n          \"Height\": 0.0119707603007555,\n          \"Left\": 0.7212172150611877,\n          \"Top\": 0.31766656041145325\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7212172150611877,\n            \"Y\": 0.31766656041145325\n          },\n          {\n            \"X\": 0.7751349806785583,\n            \"Y\": 0.31766656041145325\n          },\n          {\n            \"X\": 0.7751349806785583,\n            \"Y\": 0.3296373188495636\n          },\n          {\n            \"X\": 0.7212172150611877,\n            \"Y\": 0.3296373188495636\n          }\n        ]\n      },\n      \"Id\": \"53e96019-5be1-457e-a1a6-612bc148e736\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6290512084961,\n      \"Text\": \"2.5.4\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04623420163989067,\n          \"Height\": 0.011899969540536404,\n          \"Left\": 0.7810252904891968,\n          \"Top\": 0.31784549355506897\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7810252904891968,\n            \"Y\": 0.31784549355506897\n          },\n          {\n            \"X\": 0.8272594809532166,\n            \"Y\": 0.31784549355506897\n          },\n          {\n            \"X\": 0.8272594809532166,\n            \"Y\": 0.32974547147750854\n          },\n          {\n            \"X\": 0.7810252904891968,\n            \"Y\": 0.32974547147750854\n          }\n        ]\n      },\n      \"Id\": \"40851039-70b0-41a0-8065-c92ce33647c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8897933959961,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05319511890411377,\n          \"Height\": 0.011783150024712086,\n          \"Left\": 0.8459871411323547,\n          \"Top\": 0.3178301751613617\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8459871411323547,\n            \"Y\": 0.3178301751613617\n          },\n          {\n            \"X\": 0.8991822600364685,\n            \"Y\": 0.3178301751613617\n          },\n          {\n            \"X\": 0.8991822600364685,\n            \"Y\": 0.3296133279800415\n          },\n          {\n            \"X\": 0.8459871411323547,\n            \"Y\": 0.3296133279800415\n          }\n        ]\n      },\n      \"Id\": \"96589d36-e02e-40bb-b3ee-204f33971e8b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57251739501953,\n      \"Text\": \"2.5.5\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04553084075450897,\n          \"Height\": 0.0118605000898242,\n          \"Left\": 0.9052398800849915,\n          \"Top\": 0.31796690821647644\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9052398800849915,\n            \"Y\": 0.31796690821647644\n          },\n          {\n            \"X\": 0.9507707357406616,\n            \"Y\": 0.31796690821647644\n          },\n          {\n            \"X\": 0.9507707357406616,\n            \"Y\": 0.3298273980617523\n          },\n          {\n            \"X\": 0.9052398800849915,\n            \"Y\": 0.3298273980617523\n          }\n        ]\n      },\n      \"Id\": \"f203337b-46f6-42b1-9c20-2ac033d36a48\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61636352539062,\n      \"Text\": \"NO:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03015887551009655,\n          \"Height\": 0.010800329968333244,\n          \"Left\": 0.07998548448085785,\n          \"Top\": 0.39161980152130127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07998548448085785,\n            \"Y\": 0.39161980152130127\n          },\n          {\n            \"X\": 0.11014436185359955,\n            \"Y\": 0.39161980152130127\n          },\n          {\n            \"X\": 0.11014436185359955,\n            \"Y\": 0.40242013335227966\n          },\n          {\n            \"X\": 0.07998548448085785,\n            \"Y\": 0.40242013335227966\n          }\n        ]\n      },\n      \"Id\": \"d7d615ec-2e6a-4cc2-842a-f3be9d57d0a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91061401367188,\n      \"Text\": \"not-checked\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10007776319980621,\n          \"Height\": 0.010960079729557037,\n          \"Left\": 0.11511547118425369,\n          \"Top\": 0.3912815749645233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11511547118425369,\n            \"Y\": 0.3912815749645233\n          },\n          {\n            \"X\": 0.2151932269334793,\n            \"Y\": 0.3912815749645233\n          },\n          {\n            \"X\": 0.2151932269334793,\n            \"Y\": 0.40224164724349976\n          },\n          {\n            \"X\": 0.11511547118425369,\n            \"Y\": 0.40224164724349976\n          }\n        ]\n      },\n      \"Id\": \"92735371-3cb9-4032-80ae-34ed74beb59b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76884460449219,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0465085506439209,\n          \"Height\": 0.010392550379037857,\n          \"Left\": 0.5007233023643494,\n          \"Top\": 0.4104907214641571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5007233023643494,\n            \"Y\": 0.4104907214641571\n          },\n          {\n            \"X\": 0.5472318530082703,\n            \"Y\": 0.4104907214641571\n          },\n          {\n            \"X\": 0.5472318530082703,\n            \"Y\": 0.42088326811790466\n          },\n          {\n            \"X\": 0.5007233023643494,\n            \"Y\": 0.42088326811790466\n          }\n        ]\n      },\n      \"Id\": \"5713b7af-14a7-4a24-b444-5459fe0a8823\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.294677734375,\n      \"Text\": \"3.1.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038750600069761276,\n          \"Height\": 0.010267949663102627,\n          \"Left\": 0.552111804485321,\n          \"Top\": 0.41069141030311584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.552111804485321,\n            \"Y\": 0.41069141030311584\n          },\n          {\n            \"X\": 0.5908623933792114,\n            \"Y\": 0.41069141030311584\n          },\n          {\n            \"X\": 0.5908623933792114,\n            \"Y\": 0.42095935344696045\n          },\n          {\n            \"X\": 0.552111804485321,\n            \"Y\": 0.42095935344696045\n          }\n        ]\n      },\n      \"Id\": \"b05e2149-603a-420d-bd6d-5989b0272992\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76094818115234,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04608483985066414,\n          \"Height\": 0.010664230212569237,\n          \"Left\": 0.6450337171554565,\n          \"Top\": 0.41035497188568115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6450337171554565,\n            \"Y\": 0.41035497188568115\n          },\n          {\n            \"X\": 0.6911185383796692,\n            \"Y\": 0.41035497188568115\n          },\n          {\n            \"X\": 0.6911185383796692,\n            \"Y\": 0.42101919651031494\n          },\n          {\n            \"X\": 0.6450337171554565,\n            \"Y\": 0.42101919651031494\n          }\n        ]\n      },\n      \"Id\": \"46c5d8c3-6659-4c0c-a8ee-d03a5d34c197\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.2646713256836,\n      \"Text\": \"3.1.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039361901581287384,\n          \"Height\": 0.010258070193231106,\n          \"Left\": 0.6960620284080505,\n          \"Top\": 0.4106603264808655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6960620284080505,\n            \"Y\": 0.4106603264808655\n          },\n          {\n            \"X\": 0.7354239225387573,\n            \"Y\": 0.4106603264808655\n          },\n          {\n            \"X\": 0.7354239225387573,\n            \"Y\": 0.42091840505599976\n          },\n          {\n            \"X\": 0.6960620284080505,\n            \"Y\": 0.42091840505599976\n          }\n        ]\n      },\n      \"Id\": \"2690c80e-290a-4b7b-9318-f23a48a9ede6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65657806396484,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04653728008270264,\n          \"Height\": 0.010551719926297665,\n          \"Left\": 0.7884987592697144,\n          \"Top\": 0.4103996157646179\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7884987592697144,\n            \"Y\": 0.4103996157646179\n          },\n          {\n            \"X\": 0.835036039352417,\n            \"Y\": 0.4103996157646179\n          },\n          {\n            \"X\": 0.835036039352417,\n            \"Y\": 0.42095133662223816\n          },\n          {\n            \"X\": 0.7884987592697144,\n            \"Y\": 0.42095133662223816\n          }\n        ]\n      },\n      \"Id\": \"9f8730f7-9295-47b6-ac30-9bc3bc302a99\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27680206298828,\n      \"Text\": \"3.1.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03893705829977989,\n          \"Height\": 0.010562010109424591,\n          \"Left\": 0.8400251269340515,\n          \"Top\": 0.41049057245254517\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8400251269340515,\n            \"Y\": 0.41049057245254517\n          },\n          {\n            \"X\": 0.8789621591567993,\n            \"Y\": 0.41049057245254517\n          },\n          {\n            \"X\": 0.8789621591567993,\n            \"Y\": 0.42105257511138916\n          },\n          {\n            \"X\": 0.8400251269340515,\n            \"Y\": 0.42105257511138916\n          }\n        ]\n      },\n      \"Id\": \"f139dc87-0c9b-4684-9f9c-33e9c85349b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.29712677001953,\n      \"Text\": \"YES:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03390800952911377,\n          \"Height\": 0.010396639816462994,\n          \"Left\": 0.07574430853128433,\n          \"Top\": 0.41825735569000244\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07574430853128433,\n            \"Y\": 0.41825735569000244\n          },\n          {\n            \"X\": 0.1096523180603981,\n            \"Y\": 0.41825735569000244\n          },\n          {\n            \"X\": 0.1096523180603981,\n            \"Y\": 0.4286539852619171\n          },\n          {\n            \"X\": 0.07574430853128433,\n            \"Y\": 0.4286539852619171\n          }\n        ]\n      },\n      \"Id\": \"2ec3e7d2-9cf4-4827-a853-402693c7d693\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97057342529297,\n      \"Text\": \"checked\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06650205701589584,\n          \"Height\": 0.011043399572372437,\n          \"Left\": 0.1142592802643776,\n          \"Top\": 0.41770753264427185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1142592802643776,\n            \"Y\": 0.41770753264427185\n          },\n          {\n            \"X\": 0.18076133728027344,\n            \"Y\": 0.41770753264427185\n          },\n          {\n            \"X\": 0.18076133728027344,\n            \"Y\": 0.4287509322166443\n          },\n          {\n            \"X\": 0.1142592802643776,\n            \"Y\": 0.4287509322166443\n          }\n        ]\n      },\n      \"Id\": \"f5362839-b43d-4d9a-89e0-b9d4d56b8496\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83618927001953,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0464308001101017,\n          \"Height\": 0.010491229593753815,\n          \"Left\": 0.5009772181510925,\n          \"Top\": 0.4280807673931122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009772181510925,\n            \"Y\": 0.4280807673931122\n          },\n          {\n            \"X\": 0.5474079847335815,\n            \"Y\": 0.4280807673931122\n          },\n          {\n            \"X\": 0.5474079847335815,\n            \"Y\": 0.4385719895362854\n          },\n          {\n            \"X\": 0.5009772181510925,\n            \"Y\": 0.4385719895362854\n          }\n        ]\n      },\n      \"Id\": \"027f1edc-dd86-4a80-8c6e-96dbed287849\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.19418334960938,\n      \"Text\": \"3.2.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03884385898709297,\n          \"Height\": 0.01019052043557167,\n          \"Left\": 0.5519469380378723,\n          \"Top\": 0.4282960295677185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5519469380378723,\n            \"Y\": 0.4282960295677185\n          },\n          {\n            \"X\": 0.5907908082008362,\n            \"Y\": 0.4282960295677185\n          },\n          {\n            \"X\": 0.5907908082008362,\n            \"Y\": 0.4384865462779999\n          },\n          {\n            \"X\": 0.5519469380378723,\n            \"Y\": 0.4384865462779999\n          }\n        ]\n      },\n      \"Id\": \"b1352d68-95b8-47d4-883c-6e1db31a11ef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68849182128906,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04676195979118347,\n          \"Height\": 0.010606969706714153,\n          \"Left\": 0.6449447274208069,\n          \"Top\": 0.4280215799808502\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6449447274208069,\n            \"Y\": 0.4280215799808502\n          },\n          {\n            \"X\": 0.691706657409668,\n            \"Y\": 0.4280215799808502\n          },\n          {\n            \"X\": 0.691706657409668,\n            \"Y\": 0.43862855434417725\n          },\n          {\n            \"X\": 0.6449447274208069,\n            \"Y\": 0.43862855434417725\n          }\n        ]\n      },\n      \"Id\": \"f0e80c74-65b8-4eac-9093-37a3e9fe3075\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.10327911376953,\n      \"Text\": \"3.2.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0391724593937397,\n          \"Height\": 0.01036727987229824,\n          \"Left\": 0.6961197853088379,\n          \"Top\": 0.4282173216342926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6961197853088379,\n            \"Y\": 0.4282173216342926\n          },\n          {\n            \"X\": 0.7352922558784485,\n            \"Y\": 0.4282173216342926\n          },\n          {\n            \"X\": 0.7352922558784485,\n            \"Y\": 0.4385845959186554\n          },\n          {\n            \"X\": 0.6961197853088379,\n            \"Y\": 0.4385845959186554\n          }\n        ]\n      },\n      \"Id\": \"3ac127d9-a3d8-4e84-9d9c-ba8526ac1f1e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73990631103516,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04633506014943123,\n          \"Height\": 0.01062059961259365,\n          \"Left\": 0.7887248396873474,\n          \"Top\": 0.4280050992965698\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7887248396873474,\n            \"Y\": 0.4280050992965698\n          },\n          {\n            \"X\": 0.8350598812103271,\n            \"Y\": 0.4280050992965698\n          },\n          {\n            \"X\": 0.8350598812103271,\n            \"Y\": 0.438625693321228\n          },\n          {\n            \"X\": 0.7887248396873474,\n            \"Y\": 0.438625693321228\n          }\n        ]\n      },\n      \"Id\": \"6aa513d3-de6b-4ee8-9058-8cba7d4e9c4a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.00238800048828,\n      \"Text\": \"3.2.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039105501025915146,\n          \"Height\": 0.01038902997970581,\n          \"Left\": 0.840103805065155,\n          \"Top\": 0.4281856417655945\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.840103805065155,\n            \"Y\": 0.4281856417655945\n          },\n          {\n            \"X\": 0.8792092800140381,\n            \"Y\": 0.4281856417655945\n          },\n          {\n            \"X\": 0.8792092800140381,\n            \"Y\": 0.4385746717453003\n          },\n          {\n            \"X\": 0.840103805065155,\n            \"Y\": 0.4385746717453003\n          }\n        ]\n      },\n      \"Id\": \"b48d8334-b7aa-4193-bd49-afb7472a12d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7641830444336,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04616440087556839,\n          \"Height\": 0.010449799709022045,\n          \"Left\": 0.5009778141975403,\n          \"Top\": 0.4457988142967224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009778141975403,\n            \"Y\": 0.4457988142967224\n          },\n          {\n            \"X\": 0.5471422076225281,\n            \"Y\": 0.4457988142967224\n          },\n          {\n            \"X\": 0.5471422076225281,\n            \"Y\": 0.45624861121177673\n          },\n          {\n            \"X\": 0.5009778141975403,\n            \"Y\": 0.45624861121177673\n          }\n        ]\n      },\n      \"Id\": \"13c810b3-dea3-47df-a779-b8825721cc97\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.101318359375,\n      \"Text\": \"3.3.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03881416842341423,\n          \"Height\": 0.010220919735729694,\n          \"Left\": 0.5520384311676025,\n          \"Top\": 0.4459860324859619\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5520384311676025,\n            \"Y\": 0.4459860324859619\n          },\n          {\n            \"X\": 0.5908526182174683,\n            \"Y\": 0.4459860324859619\n          },\n          {\n            \"X\": 0.5908526182174683,\n            \"Y\": 0.45620694756507874\n          },\n          {\n            \"X\": 0.5520384311676025,\n            \"Y\": 0.45620694756507874\n          }\n        ]\n      },\n      \"Id\": \"36bb668d-14c1-4cdf-9963-cf99e18c1ea3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60806274414062,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04616175964474678,\n          \"Height\": 0.010748540051281452,\n          \"Left\": 0.6449540853500366,\n          \"Top\": 0.44567692279815674\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6449540853500366,\n            \"Y\": 0.44567692279815674\n          },\n          {\n            \"X\": 0.6911158561706543,\n            \"Y\": 0.44567692279815674\n          },\n          {\n            \"X\": 0.6911158561706543,\n            \"Y\": 0.4564254581928253\n          },\n          {\n            \"X\": 0.6449540853500366,\n            \"Y\": 0.4564254581928253\n          }\n        ]\n      },\n      \"Id\": \"9892ddda-cfd9-4778-8392-48ec28248bc7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.86105346679688,\n      \"Text\": \"3.3.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03947265073657036,\n          \"Height\": 0.010179439559578896,\n          \"Left\": 0.6959225535392761,\n          \"Top\": 0.44603055715560913\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6959225535392761,\n            \"Y\": 0.44603055715560913\n          },\n          {\n            \"X\": 0.7353951930999756,\n            \"Y\": 0.44603055715560913\n          },\n          {\n            \"X\": 0.7353951930999756,\n            \"Y\": 0.4562099874019623\n          },\n          {\n            \"X\": 0.6959225535392761,\n            \"Y\": 0.4562099874019623\n          }\n        ]\n      },\n      \"Id\": \"e25e09e0-604e-4f80-b784-3c681fbf0aaf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5584945678711,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04624669998884201,\n          \"Height\": 0.010652690194547176,\n          \"Left\": 0.7886477708816528,\n          \"Top\": 0.44567546248435974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7886477708816528,\n            \"Y\": 0.44567546248435974\n          },\n          {\n            \"X\": 0.8348944783210754,\n            \"Y\": 0.44567546248435974\n          },\n          {\n            \"X\": 0.8348944783210754,\n            \"Y\": 0.4563281536102295\n          },\n          {\n            \"X\": 0.7886477708816528,\n            \"Y\": 0.4563281536102295\n          }\n        ]\n      },\n      \"Id\": \"ec8ad23f-fa13-487e-a2f1-db7e226a1ac6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.08001708984375,\n      \"Text\": \"3.3.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03899455815553665,\n          \"Height\": 0.010382619686424732,\n          \"Left\": 0.83983314037323,\n          \"Top\": 0.4459022581577301\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.83983314037323,\n            \"Y\": 0.4459022581577301\n          },\n          {\n            \"X\": 0.878827691078186,\n            \"Y\": 0.4459022581577301\n          },\n          {\n            \"X\": 0.878827691078186,\n            \"Y\": 0.45628488063812256\n          },\n          {\n            \"X\": 0.83983314037323,\n            \"Y\": 0.45628488063812256\n          }\n        ]\n      },\n      \"Id\": \"04908b68-f914-49e3-bc2d-76eab2881c77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78792572021484,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04605206102132797,\n          \"Height\": 0.010553760454058647,\n          \"Left\": 0.5010496377944946,\n          \"Top\": 0.4634309411048889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5010496377944946,\n            \"Y\": 0.4634309411048889\n          },\n          {\n            \"X\": 0.5471016764640808,\n            \"Y\": 0.4634309411048889\n          },\n          {\n            \"X\": 0.5471016764640808,\n            \"Y\": 0.4739846885204315\n          },\n          {\n            \"X\": 0.5010496377944946,\n            \"Y\": 0.4739846885204315\n          }\n        ]\n      },\n      \"Id\": \"ea83c926-94ee-4ca9-b15b-49bbc085084c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63887023925781,\n      \"Text\": \"3.4.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03873680159449577,\n          \"Height\": 0.01009851973503828,\n          \"Left\": 0.5518890023231506,\n          \"Top\": 0.46368885040283203\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5518890023231506,\n            \"Y\": 0.46368885040283203\n          },\n          {\n            \"X\": 0.5906258225440979,\n            \"Y\": 0.46368885040283203\n          },\n          {\n            \"X\": 0.5906258225440979,\n            \"Y\": 0.4737873673439026\n          },\n          {\n            \"X\": 0.5518890023231506,\n            \"Y\": 0.4737873673439026\n          }\n        ]\n      },\n      \"Id\": \"daf3395a-919f-4b84-87da-17e6d36779bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49437713623047,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04642494022846222,\n          \"Height\": 0.010744280181825161,\n          \"Left\": 0.6448435187339783,\n          \"Top\": 0.4633525013923645\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6448435187339783,\n            \"Y\": 0.4633525013923645\n          },\n          {\n            \"X\": 0.6912684440612793,\n            \"Y\": 0.4633525013923645\n          },\n          {\n            \"X\": 0.6912684440612793,\n            \"Y\": 0.47409677505493164\n          },\n          {\n            \"X\": 0.6448435187339783,\n            \"Y\": 0.47409677505493164\n          }\n        ]\n      },\n      \"Id\": \"600c1159-1eb5-4e4c-b069-319b2340b11a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.96530151367188,\n      \"Text\": \"3.4.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03944585099816322,\n          \"Height\": 0.01012710016220808,\n          \"Left\": 0.695829451084137,\n          \"Top\": 0.4637643098831177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.695829451084137,\n            \"Y\": 0.4637643098831177\n          },\n          {\n            \"X\": 0.7352753281593323,\n            \"Y\": 0.4637643098831177\n          },\n          {\n            \"X\": 0.7352753281593323,\n            \"Y\": 0.47389140725135803\n          },\n          {\n            \"X\": 0.695829451084137,\n            \"Y\": 0.47389140725135803\n          }\n        ]\n      },\n      \"Id\": \"04174e7e-8be3-42a9-99c9-90e97b5da4f9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.21798706054688,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045922741293907166,\n          \"Height\": 0.010590920224785805,\n          \"Left\": 0.7890411615371704,\n          \"Top\": 0.4634063243865967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7890411615371704,\n            \"Y\": 0.4634063243865967\n          },\n          {\n            \"X\": 0.8349639177322388,\n            \"Y\": 0.4634063243865967\n          },\n          {\n            \"X\": 0.8349639177322388,\n            \"Y\": 0.47399723529815674\n          },\n          {\n            \"X\": 0.7890411615371704,\n            \"Y\": 0.47399723529815674\n          }\n        ]\n      },\n      \"Id\": \"0a34cd6f-eaca-438e-b9e2-21f8b20097d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.52876281738281,\n      \"Text\": \"3.4.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03942650929093361,\n          \"Height\": 0.010376330465078354,\n          \"Left\": 0.8397276401519775,\n          \"Top\": 0.4635598957538605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8397276401519775,\n            \"Y\": 0.4635598957538605\n          },\n          {\n            \"X\": 0.8791541457176208,\n            \"Y\": 0.4635598957538605\n          },\n          {\n            \"X\": 0.8791541457176208,\n            \"Y\": 0.4739362299442291\n          },\n          {\n            \"X\": 0.8397276401519775,\n            \"Y\": 0.4739362299442291\n          }\n        ]\n      },\n      \"Id\": \"9c680bd0-2ff3-425b-9b65-081504162922\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79914855957031,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04602866992354393,\n          \"Height\": 0.010432220064103603,\n          \"Left\": 0.5009509325027466,\n          \"Top\": 0.48116788268089294\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009509325027466,\n            \"Y\": 0.48116788268089294\n          },\n          {\n            \"X\": 0.5469796061515808,\n            \"Y\": 0.48116788268089294\n          },\n          {\n            \"X\": 0.5469796061515808,\n            \"Y\": 0.4916000962257385\n          },\n          {\n            \"X\": 0.5009509325027466,\n            \"Y\": 0.4916000962257385\n          }\n        ]\n      },\n      \"Id\": \"6ebf778b-6584-4ffe-b62c-e00a1cf863e1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61125183105469,\n      \"Text\": \"3.5.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038435500115156174,\n          \"Height\": 0.010295730084180832,\n          \"Left\": 0.5522359013557434,\n          \"Top\": 0.4813089668750763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5522359013557434,\n            \"Y\": 0.4813089668750763\n          },\n          {\n            \"X\": 0.5906714200973511,\n            \"Y\": 0.4813089668750763\n          },\n          {\n            \"X\": 0.5906714200973511,\n            \"Y\": 0.49160468578338623\n          },\n          {\n            \"X\": 0.5522359013557434,\n            \"Y\": 0.49160468578338623\n          }\n        ]\n      },\n      \"Id\": \"dcb79a5a-68d0-4baf-b899-031f5e46bf77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.56863403320312,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04598952829837799,\n          \"Height\": 0.010816849768161774,\n          \"Left\": 0.6450666189193726,\n          \"Top\": 0.4810165464878082\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6450666189193726,\n            \"Y\": 0.4810165464878082\n          },\n          {\n            \"X\": 0.6910561323165894,\n            \"Y\": 0.4810165464878082\n          },\n          {\n            \"X\": 0.6910561323165894,\n            \"Y\": 0.4918333888053894\n          },\n          {\n            \"X\": 0.6450666189193726,\n            \"Y\": 0.4918333888053894\n          }\n        ]\n      },\n      \"Id\": \"ecc7cc6e-d73b-4d87-870c-c3a0dfb7b083\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27642059326172,\n      \"Text\": \"3.5.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039059828966856,\n          \"Height\": 0.01026070024818182,\n          \"Left\": 0.6962307691574097,\n          \"Top\": 0.4813242256641388\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6962307691574097,\n            \"Y\": 0.4813242256641388\n          },\n          {\n            \"X\": 0.7352905869483948,\n            \"Y\": 0.4813242256641388\n          },\n          {\n            \"X\": 0.7352905869483948,\n            \"Y\": 0.4915849268436432\n          },\n          {\n            \"X\": 0.6962307691574097,\n            \"Y\": 0.4915849268436432\n          }\n        ]\n      },\n      \"Id\": \"3d82e70c-ae89-4038-ba31-8195121c3a51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65473175048828,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04591614007949829,\n          \"Height\": 0.01058174017816782,\n          \"Left\": 0.7890627980232239,\n          \"Top\": 0.481067955493927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7890627980232239,\n            \"Y\": 0.481067955493927\n          },\n          {\n            \"X\": 0.8349789381027222,\n            \"Y\": 0.481067955493927\n          },\n          {\n            \"X\": 0.8349789381027222,\n            \"Y\": 0.49164968729019165\n          },\n          {\n            \"X\": 0.7890627980232239,\n            \"Y\": 0.49164968729019165\n          }\n        ]\n      },\n      \"Id\": \"f30525f3-fd4f-49d3-928d-3c53832ed66e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.41083526611328,\n      \"Text\": \"3.5.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039071448147296906,\n          \"Height\": 0.010445769876241684,\n          \"Left\": 0.8396352529525757,\n          \"Top\": 0.48116666078567505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8396352529525757,\n            \"Y\": 0.48116666078567505\n          },\n          {\n            \"X\": 0.878706693649292,\n            \"Y\": 0.48116666078567505\n          },\n          {\n            \"X\": 0.878706693649292,\n            \"Y\": 0.49161243438720703\n          },\n          {\n            \"X\": 0.8396352529525757,\n            \"Y\": 0.49161243438720703\n          }\n        ]\n      },\n      \"Id\": \"75468cab-5593-4a7b-a064-8b22a2f9cb17\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80416870117188,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04600739851593971,\n          \"Height\": 0.010437989607453346,\n          \"Left\": 0.5010533928871155,\n          \"Top\": 0.4987580478191376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5010533928871155,\n            \"Y\": 0.4987580478191376\n          },\n          {\n            \"X\": 0.5470607876777649,\n            \"Y\": 0.4987580478191376\n          },\n          {\n            \"X\": 0.5470607876777649,\n            \"Y\": 0.5091960430145264\n          },\n          {\n            \"X\": 0.5010533928871155,\n            \"Y\": 0.5091960430145264\n          }\n        ]\n      },\n      \"Id\": \"276d4a02-dd28-4cf2-8f6c-72c936f4503d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4228744506836,\n      \"Text\": \"3.6.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038502201437950134,\n          \"Height\": 0.010156399570405483,\n          \"Left\": 0.552038311958313,\n          \"Top\": 0.49895238876342773\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.552038311958313,\n            \"Y\": 0.49895238876342773\n          },\n          {\n            \"X\": 0.5905405282974243,\n            \"Y\": 0.49895238876342773\n          },\n          {\n            \"X\": 0.5905405282974243,\n            \"Y\": 0.5091087818145752\n          },\n          {\n            \"X\": 0.552038311958313,\n            \"Y\": 0.5091087818145752\n          }\n        ]\n      },\n      \"Id\": \"99d44d82-b035-4f42-9a50-87075e54bd26\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7200698852539,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046372100710868835,\n          \"Height\": 0.010628250427544117,\n          \"Left\": 0.6449441909790039,\n          \"Top\": 0.4986632466316223\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6449441909790039,\n            \"Y\": 0.4986632466316223\n          },\n          {\n            \"X\": 0.6913163065910339,\n            \"Y\": 0.4986632466316223\n          },\n          {\n            \"X\": 0.6913163065910339,\n            \"Y\": 0.5092915296554565\n          },\n          {\n            \"X\": 0.6449441909790039,\n            \"Y\": 0.5092915296554565\n          }\n        ]\n      },\n      \"Id\": \"f9624f28-97f2-429b-9b83-b06d22eb62fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.90239715576172,\n      \"Text\": \"3.6.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03927439823746681,\n          \"Height\": 0.010327690280973911,\n          \"Left\": 0.6959815621376038,\n          \"Top\": 0.4989481568336487\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6959815621376038,\n            \"Y\": 0.4989481568336487\n          },\n          {\n            \"X\": 0.7352559566497803,\n            \"Y\": 0.4989481568336487\n          },\n          {\n            \"X\": 0.7352559566497803,\n            \"Y\": 0.5092758536338806\n          },\n          {\n            \"X\": 0.6959815621376038,\n            \"Y\": 0.5092758536338806\n          }\n        ]\n      },\n      \"Id\": \"e5b1741a-afc1-4938-a551-03a1ecf563bc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.66333770751953,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045976098626852036,\n          \"Height\": 0.010515299625694752,\n          \"Left\": 0.7889751195907593,\n          \"Top\": 0.4986734092235565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7889751195907593,\n            \"Y\": 0.4986734092235565\n          },\n          {\n            \"X\": 0.8349512219429016,\n            \"Y\": 0.4986734092235565\n          },\n          {\n            \"X\": 0.8349512219429016,\n            \"Y\": 0.509188711643219\n          },\n          {\n            \"X\": 0.7889751195907593,\n            \"Y\": 0.509188711643219\n          }\n        ]\n      },\n      \"Id\": \"f76ebd64-3e67-47d8-a338-261c293d666a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.69435119628906,\n      \"Text\": \"3.6.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039179060608148575,\n          \"Height\": 0.010481719858944416,\n          \"Left\": 0.8397999405860901,\n          \"Top\": 0.498782753944397\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8397999405860901,\n            \"Y\": 0.498782753944397\n          },\n          {\n            \"X\": 0.8789790272712708,\n            \"Y\": 0.498782753944397\n          },\n          {\n            \"X\": 0.8789790272712708,\n            \"Y\": 0.5092644691467285\n          },\n          {\n            \"X\": 0.8397999405860901,\n            \"Y\": 0.5092644691467285\n          }\n        ]\n      },\n      \"Id\": \"6c57f761-5373-435f-b756-185c5959561d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78399658203125,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046147581189870834,\n          \"Height\": 0.010301959700882435,\n          \"Left\": 0.5009969472885132,\n          \"Top\": 0.516635537147522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5009969472885132,\n            \"Y\": 0.516635537147522\n          },\n          {\n            \"X\": 0.5471445322036743,\n            \"Y\": 0.516635537147522\n          },\n          {\n            \"X\": 0.5471445322036743,\n            \"Y\": 0.5269374847412109\n          },\n          {\n            \"X\": 0.5009969472885132,\n            \"Y\": 0.5269374847412109\n          }\n        ]\n      },\n      \"Id\": \"5650beb3-91cd-49df-9749-ac4ba1822b5f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27363586425781,\n      \"Text\": \"3.7.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038772281259298325,\n          \"Height\": 0.010261230170726776,\n          \"Left\": 0.5521959662437439,\n          \"Top\": 0.5167115926742554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5521959662437439,\n            \"Y\": 0.5167115926742554\n          },\n          {\n            \"X\": 0.5909682512283325,\n            \"Y\": 0.5167115926742554\n          },\n          {\n            \"X\": 0.5909682512283325,\n            \"Y\": 0.5269728302955627\n          },\n          {\n            \"X\": 0.5521959662437439,\n            \"Y\": 0.5269728302955627\n          }\n        ]\n      },\n      \"Id\": \"98491252-8cfc-4a02-a882-8c160f1e0e2a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8040771484375,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04639163985848427,\n          \"Height\": 0.01052009966224432,\n          \"Left\": 0.6451640725135803,\n          \"Top\": 0.516469419002533\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6451640725135803,\n            \"Y\": 0.516469419002533\n          },\n          {\n            \"X\": 0.6915557384490967,\n            \"Y\": 0.516469419002533\n          },\n          {\n            \"X\": 0.6915557384490967,\n            \"Y\": 0.5269895195960999\n          },\n          {\n            \"X\": 0.6451640725135803,\n            \"Y\": 0.5269895195960999\n          }\n        ]\n      },\n      \"Id\": \"5020f8fe-82fd-4551-9f80-f53a1fe5e0d4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.05181121826172,\n      \"Text\": \"3.7.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03925979882478714,\n          \"Height\": 0.010331300087273121,\n          \"Left\": 0.6961119771003723,\n          \"Top\": 0.5166885852813721\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6961119771003723,\n            \"Y\": 0.5166885852813721\n          },\n          {\n            \"X\": 0.7353718280792236,\n            \"Y\": 0.5166885852813721\n          },\n          {\n            \"X\": 0.7353718280792236,\n            \"Y\": 0.5270199179649353\n          },\n          {\n            \"X\": 0.6961119771003723,\n            \"Y\": 0.5270199179649353\n          }\n        ]\n      },\n      \"Id\": \"749e3c4f-8847-4d90-b837-2fa48d0b2784\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76313781738281,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04601475968956947,\n          \"Height\": 0.010421469807624817,\n          \"Left\": 0.78884357213974,\n          \"Top\": 0.5165274143218994\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.78884357213974,\n            \"Y\": 0.5165274143218994\n          },\n          {\n            \"X\": 0.8348583579063416,\n            \"Y\": 0.5165274143218994\n          },\n          {\n            \"X\": 0.8348583579063416,\n            \"Y\": 0.526948869228363\n          },\n          {\n            \"X\": 0.78884357213974,\n            \"Y\": 0.526948869228363\n          }\n        ]\n      },\n      \"Id\": \"f2995096-1132-48d3-980a-894f7d1f6561\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.18624877929688,\n      \"Text\": \"3.7.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03892039880156517,\n          \"Height\": 0.010308980010449886,\n          \"Left\": 0.8398492932319641,\n          \"Top\": 0.5166759490966797\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8398492932319641,\n            \"Y\": 0.5166759490966797\n          },\n          {\n            \"X\": 0.8787696957588196,\n            \"Y\": 0.5166759490966797\n          },\n          {\n            \"X\": 0.8787696957588196,\n            \"Y\": 0.5269849300384521\n          },\n          {\n            \"X\": 0.8398492932319641,\n            \"Y\": 0.5269849300384521\n          }\n        ]\n      },\n      \"Id\": \"242b7d0b-69cb-4c5c-bc82-53c34476ed9e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79412841796875,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04590839892625809,\n          \"Height\": 0.010331359691917896,\n          \"Left\": 0.5010542869567871,\n          \"Top\": 0.5341706275939941\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5010542869567871,\n            \"Y\": 0.5341706275939941\n          },\n          {\n            \"X\": 0.5469626784324646,\n            \"Y\": 0.5341706275939941\n          },\n          {\n            \"X\": 0.5469626784324646,\n            \"Y\": 0.5445019602775574\n          },\n          {\n            \"X\": 0.5010542869567871,\n            \"Y\": 0.5445019602775574\n          }\n        ]\n      },\n      \"Id\": \"02a046db-40b9-4fb0-ad53-e32754db8771\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54642486572266,\n      \"Text\": \"3.8.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03879084065556526,\n          \"Height\": 0.010024200193583965,\n          \"Left\": 0.5517566204071045,\n          \"Top\": 0.5344215035438538\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5517566204071045,\n            \"Y\": 0.5344215035438538\n          },\n          {\n            \"X\": 0.5905474424362183,\n            \"Y\": 0.5344215035438538\n          },\n          {\n            \"X\": 0.5905474424362183,\n            \"Y\": 0.5444456934928894\n          },\n          {\n            \"X\": 0.5517566204071045,\n            \"Y\": 0.5444456934928894\n          }\n        ]\n      },\n      \"Id\": \"eea99159-5c3e-456c-ae0f-9d8b3e19587e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84144592285156,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04577649012207985,\n          \"Height\": 0.01051125954836607,\n          \"Left\": 0.6451624631881714,\n          \"Top\": 0.5340661406517029\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6451624631881714,\n            \"Y\": 0.5340661406517029\n          },\n          {\n            \"X\": 0.6909389495849609,\n            \"Y\": 0.5340661406517029\n          },\n          {\n            \"X\": 0.6909389495849609,\n            \"Y\": 0.544577419757843\n          },\n          {\n            \"X\": 0.6451624631881714,\n            \"Y\": 0.544577419757843\n          }\n        ]\n      },\n      \"Id\": \"37ee624a-71a6-410c-8f26-1aae5de76465\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.30101776123047,\n      \"Text\": \"3.8.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03946495056152344,\n          \"Height\": 0.010128060355782509,\n          \"Left\": 0.695880651473999,\n          \"Top\": 0.5344526767730713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.695880651473999,\n            \"Y\": 0.5344526767730713\n          },\n          {\n            \"X\": 0.7353456020355225,\n            \"Y\": 0.5344526767730713\n          },\n          {\n            \"X\": 0.7353456020355225,\n            \"Y\": 0.5445807576179504\n          },\n          {\n            \"X\": 0.695880651473999,\n            \"Y\": 0.5445807576179504\n          }\n        ]\n      },\n      \"Id\": \"868a32c9-84a1-4a58-922a-dd7428858bac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83431243896484,\n      \"Text\": \"Value\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04561829939484596,\n          \"Height\": 0.010323869995772839,\n          \"Left\": 0.7889222502708435,\n          \"Top\": 0.5341439843177795\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7889222502708435,\n            \"Y\": 0.5341439843177795\n          },\n          {\n            \"X\": 0.8345405459403992,\n            \"Y\": 0.5341439843177795\n          },\n          {\n            \"X\": 0.8345405459403992,\n            \"Y\": 0.5444678664207458\n          },\n          {\n            \"X\": 0.7889222502708435,\n            \"Y\": 0.5444678664207458\n          }\n        ]\n      },\n      \"Id\": \"86d46545-1bde-4f87-926d-8f53979689f3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27980041503906,\n      \"Text\": \"3.8.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03899217024445534,\n          \"Height\": 0.010417650453746319,\n          \"Left\": 0.8398852348327637,\n          \"Top\": 0.5342458486557007\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8398852348327637,\n            \"Y\": 0.5342458486557007\n          },\n          {\n            \"X\": 0.8788774013519287,\n            \"Y\": 0.5342458486557007\n          },\n          {\n            \"X\": 0.8788774013519287,\n            \"Y\": 0.5446634888648987\n          },\n          {\n            \"X\": 0.8398852348327637,\n            \"Y\": 0.5446634888648987\n          }\n        ]\n      },\n      \"Id\": \"0161dc75-cb31-417f-a341-ce9e6ff58dcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26962280273438,\n      \"Text\": \"YES:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03389924019575119,\n          \"Height\": 0.010735359974205494,\n          \"Left\": 0.07708633691072464,\n          \"Top\": 0.5489842295646667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07708633691072464,\n            \"Y\": 0.5489842295646667\n          },\n          {\n            \"X\": 0.11098557710647583,\n            \"Y\": 0.5489842295646667\n          },\n          {\n            \"X\": 0.11098557710647583,\n            \"Y\": 0.5597195625305176\n          },\n          {\n            \"X\": 0.07708633691072464,\n            \"Y\": 0.5597195625305176\n          }\n        ]\n      },\n      \"Id\": \"4ec65266-a74f-4682-86d3-1090f187c674\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97799682617188,\n      \"Text\": \"checked\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06702036410570145,\n          \"Height\": 0.011127710342407227,\n          \"Left\": 0.11535238474607468,\n          \"Top\": 0.5485238432884216\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11535238474607468,\n            \"Y\": 0.5485238432884216\n          },\n          {\n            \"X\": 0.18237274885177612,\n            \"Y\": 0.5485238432884216\n          },\n          {\n            \"X\": 0.18237274885177612,\n            \"Y\": 0.5596515536308289\n          },\n          {\n            \"X\": 0.11535238474607468,\n            \"Y\": 0.5596515536308289\n          }\n        ]\n      },\n      \"Id\": \"bf5c7ac8-def7-4dc0-8ae8-90fb53ba952b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75070190429688,\n      \"Text\": \"NO:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02999950386583805,\n          \"Height\": 0.010455260053277016,\n          \"Left\": 0.07648774236440659,\n          \"Top\": 0.5653372406959534\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07648774236440659,\n            \"Y\": 0.5653372406959534\n          },\n          {\n            \"X\": 0.10648724436759949,\n            \"Y\": 0.5653372406959534\n          },\n          {\n            \"X\": 0.10648724436759949,\n            \"Y\": 0.5757924914360046\n          },\n          {\n            \"X\": 0.07648774236440659,\n            \"Y\": 0.5757924914360046\n          }\n        ]\n      },\n      \"Id\": \"a87dccf8-8e8e-4a51-842f-d6a62725ba8f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93132781982422,\n      \"Text\": \"not-checked\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09877899289131165,\n          \"Height\": 0.010898199863731861,\n          \"Left\": 0.11216665804386139,\n          \"Top\": 0.5649036169052124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11216665804386139,\n            \"Y\": 0.5649036169052124\n          },\n          {\n            \"X\": 0.21094565093517303,\n            \"Y\": 0.5649036169052124\n          },\n          {\n            \"X\": 0.21094565093517303,\n            \"Y\": 0.5758017897605896\n          },\n          {\n            \"X\": 0.11216665804386139,\n            \"Y\": 0.5758017897605896\n          }\n        ]\n      },\n      \"Id\": \"e0f5935c-17ae-440e-b618-2c5f7e8700da\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.9892349243164,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4326760768890381,\n          \"Height\": 0.14271113276481628,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.4064836800098419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.5491948127746582\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.5491948127746582\n          }\n        ]\n      },\n      \"Id\": \"2da79d01-62e7-4af8-9b6b-93019a3abf35\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"319afe13-f1b4-4f91-8740-14eb192e7f67\",\n            \"f0faf3c7-7e79-452a-8fe3-df6befe1fe08\",\n            \"6df8d271-d398-4b52-b381-dddf84773272\",\n            \"de9e3eee-f49a-4b8f-8cfb-109b44ca7f8a\",\n            \"26298dd8-214c-4454-927c-8008432d2392\",\n            \"04ddbbf8-c004-43a5-a8f1-ab6d61f192b9\",\n            \"9c38dac9-9314-49fa-8a07-034f7ea0dce7\",\n            \"83332bb1-32fa-4145-8c26-d1f48d03e160\",\n            \"55137207-0bf6-4aca-95b5-aac90d87d270\",\n            \"6ab798a4-5c8a-4f11-92e4-e31b72f434bc\",\n            \"9e4386cc-820d-4b37-a341-0ebe7be50168\",\n            \"5c78d730-506b-474f-977e-8347020b1ab5\",\n            \"86e304d0-87af-4078-a155-a33d3c2b80b7\",\n            \"28694ef4-d785-4b07-b64b-df40d9da6cb8\",\n            \"558a8360-c480-4d30-899c-9d25366022d2\",\n            \"9b8280df-92d0-4be2-9c56-1ea8490e005c\",\n            \"6fc46bc9-9c20-4639-a148-6153d0befeec\",\n            \"e58d9754-c51c-4b10-90e2-f570f93f9717\",\n            \"0efa6d39-585b-4768-ae0d-9a2381b0803f\",\n            \"a87f0b84-579c-45f5-8ee6-bfbb38667ded\",\n            \"cc9e77d0-d37d-4f82-aa99-d9619b5e0d56\",\n            \"4803b67b-743a-47c2-9596-b2d531af6074\",\n            \"75d4d683-91c9-41d6-ae53-6fe032a43835\",\n            \"e97425d7-ca56-4dea-a75a-e3576129e484\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.4064836800098419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.42418134212493896\n          }\n        ]\n      },\n      \"Id\": \"319afe13-f1b4-4f91-8740-14eb192e7f67\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5713b7af-14a7-4a24-b444-5459fe0a8823\",\n            \"b05e2149-603a-420d-bd6d-5989b0272992\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.4064836800098419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.42418134212493896\n          }\n        ]\n      },\n      \"Id\": \"f0faf3c7-7e79-452a-8fe3-df6befe1fe08\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46c5d8c3-6659-4c0c-a8ee-d03a5d34c197\",\n            \"2690c80e-290a-4b7b-9318-f23a48a9ede6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.4064836800098419\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.4064836800098419\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.42418134212493896\n          }\n        ]\n      },\n      \"Id\": \"6df8d271-d398-4b52-b381-dddf84773272\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9f8730f7-9295-47b6-ac30-9bc3bc302a99\",\n            \"f139dc87-0c9b-4684-9f9c-33e9c85349b5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.018074259161949158,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.42418134212493896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.44225558638572693\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.44225558638572693\n          }\n        ]\n      },\n      \"Id\": \"de9e3eee-f49a-4b8f-8cfb-109b44ca7f8a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"027f1edc-dd86-4a80-8c6e-96dbed287849\",\n            \"b1352d68-95b8-47d4-883c-6e1db31a11ef\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.018074259161949158,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.42418134212493896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.44225558638572693\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.44225558638572693\n          }\n        ]\n      },\n      \"Id\": \"26298dd8-214c-4454-927c-8008432d2392\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f0e80c74-65b8-4eac-9093-37a3e9fe3075\",\n            \"3ac127d9-a3d8-4e84-9d9c-ba8526ac1f1e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.018074259161949158,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.42418134212493896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.42418134212493896\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.44225558638572693\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.44225558638572693\n          }\n        ]\n      },\n      \"Id\": \"04ddbbf8-c004-43a5-a8f1-ab6d61f192b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6aa513d3-de6b-4ee8-9058-8cba7d4e9c4a\",\n            \"b48d8334-b7aa-4193-bd49-afb7472a12d3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.4422556161880493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.4422556161880493\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4422556161880493\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.45995327830314636\n          }\n        ]\n      },\n      \"Id\": \"9c38dac9-9314-49fa-8a07-034f7ea0dce7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13c810b3-dea3-47df-a779-b8825721cc97\",\n            \"36bb668d-14c1-4cdf-9963-cf99e18c1ea3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.4422556161880493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4422556161880493\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.4422556161880493\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.45995327830314636\n          }\n        ]\n      },\n      \"Id\": \"83332bb1-32fa-4145-8c26-d1f48d03e160\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9892ddda-cfd9-4778-8392-48ec28248bc7\",\n            \"e25e09e0-604e-4f80-b784-3c681fbf0aaf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.4422556161880493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.4422556161880493\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.4422556161880493\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.45995327830314636\n          }\n        ]\n      },\n      \"Id\": \"55137207-0bf6-4aca-95b5-aac90d87d270\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ec8ad23f-fa13-487e-a2f1-db7e226a1ac6\",\n            \"04908b68-f914-49e3-bc2d-76eab2881c77\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.45995327830314636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4776509404182434\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.4776509404182434\n          }\n        ]\n      },\n      \"Id\": \"6ab798a4-5c8a-4f11-92e4-e31b72f434bc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ea83c926-94ee-4ca9-b15b-49bbc085084c\",\n            \"daf3395a-919f-4b84-87da-17e6d36779bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.45995327830314636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.4776509404182434\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4776509404182434\n          }\n        ]\n      },\n      \"Id\": \"9e4386cc-820d-4b37-a341-0ebe7be50168\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"600c1159-1eb5-4e4c-b069-319b2340b11a\",\n            \"04174e7e-8be3-42a9-99c9-90e97b5da4f9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.45995327830314636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.45995327830314636\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.4776509404182434\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.4776509404182434\n          }\n        ]\n      },\n      \"Id\": \"5c78d730-506b-474f-977e-8347020b1ab5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a34cd6f-eaca-438e-b9e2-21f8b20097d5\",\n            \"9c680bd0-2ff3-425b-9b65-081504162922\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697710543870926,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.4776509702205658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.4776509702205658\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4776509702205658\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4953486919403076\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.4953486919403076\n          }\n        ]\n      },\n      \"Id\": \"86e304d0-87af-4078-a155-a33d3c2b80b7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6ebf778b-6584-4ffe-b62c-e00a1cf863e1\",\n            \"dcb79a5a-68d0-4baf-b899-031f5e46bf77\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.017697710543870926,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.4776509702205658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4776509702205658\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.4776509702205658\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.4953486919403076\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.4953486919403076\n          }\n        ]\n      },\n      \"Id\": \"28694ef4-d785-4b07-b64b-df40d9da6cb8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ecc7cc6e-d73b-4d87-870c-c3a0dfb7b083\",\n            \"3d82e70c-ae89-4038-ba31-8195121c3a51\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697710543870926,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.4776509702205658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.4776509702205658\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.4776509702205658\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.4953486919403076\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.4953486919403076\n          }\n        ]\n      },\n      \"Id\": \"558a8360-c480-4d30-899c-9d25366022d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f30525f3-fd4f-49d3-928d-3c53832ed66e\",\n            \"75468cab-5593-4a7b-a064-8b22a2f9cb17\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.49534866213798523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.49534866213798523\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.49534866213798523\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.5130463242530823\n          }\n        ]\n      },\n      \"Id\": \"9b8280df-92d0-4be2-9c56-1ea8490e005c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"276d4a02-dd28-4cf2-8f6c-72c936f4503d\",\n            \"99d44d82-b035-4f42-9a50-87075e54bd26\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.49534866213798523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.49534866213798523\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.49534866213798523\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5130463242530823\n          }\n        ]\n      },\n      \"Id\": \"6fc46bc9-9c20-4639-a148-6153d0befeec\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f9624f28-97f2-429b-9b83-b06d22eb62fb\",\n            \"e5b1741a-afc1-4938-a551-03a1ecf563bc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697669565677643,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.49534866213798523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.49534866213798523\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.49534866213798523\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.5130463242530823\n          }\n        ]\n      },\n      \"Id\": \"e58d9754-c51c-4b10-90e2-f570f93f9717\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f76ebd64-3e67-47d8-a338-261c293d666a\",\n            \"6c57f761-5373-435f-b756-185c5959561d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697710543870926,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.5130463242530823\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5307440161705017\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.5307440161705017\n          }\n        ]\n      },\n      \"Id\": \"0efa6d39-585b-4768-ae0d-9a2381b0803f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5650beb3-91cd-49df-9749-ac4ba1822b5f\",\n            \"98491252-8cfc-4a02-a882-8c160f1e0e2a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.017697710543870926,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.5130463242530823\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.5307440161705017\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5307440161705017\n          }\n        ]\n      },\n      \"Id\": \"a87f0b84-579c-45f5-8ee6-bfbb38667ded\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5020f8fe-82fd-4551-9f80-f53a1fe5e0d4\",\n            \"749e3c4f-8847-4d90-b837-2fa48d0b2784\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.017697710543870926,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.5130463242530823\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.5130463242530823\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.5307440161705017\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.5307440161705017\n          }\n        ]\n      },\n      \"Id\": \"cc9e77d0-d37d-4f82-aa99-d9619b5e0d56\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f2995096-1132-48d3-980a-894f7d1f6561\",\n            \"242b7d0b-69cb-4c5c-bc82-53c34476ed9e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.01845075935125351,\n          \"Left\": 0.492632657289505,\n          \"Top\": 0.5307440757751465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.5307440757751465\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5307440757751465\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5491948127746582\n          },\n          {\n            \"X\": 0.492632657289505,\n            \"Y\": 0.5491948127746582\n          }\n        ]\n      },\n      \"Id\": \"4803b67b-743a-47c2-9596-b2d531af6074\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"02a046db-40b9-4fb0-ad53-e32754db8771\",\n            \"eea99159-5c3e-456c-ae0f-9d8b3e19587e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1442253291606903,\n          \"Height\": 0.01845075935125351,\n          \"Left\": 0.6368580460548401,\n          \"Top\": 0.5307440757751465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5307440757751465\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.5307440757751465\n          },\n          {\n            \"X\": 0.7810834050178528,\n            \"Y\": 0.5491948127746582\n          },\n          {\n            \"X\": 0.6368580460548401,\n            \"Y\": 0.5491948127746582\n          }\n        ]\n      },\n      \"Id\": \"75d4d683-91c9-41d6-ae53-6fe032a43835\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37ee624a-71a6-410c-8f26-1aae5de76465\",\n            \"868a32c9-84a1-4a58-922a-dd7428858bac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.9892349243164,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14422538876533508,\n          \"Height\": 0.01845075935125351,\n          \"Left\": 0.781083345413208,\n          \"Top\": 0.5307440757751465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.5307440757751465\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.5307440757751465\n          },\n          {\n            \"X\": 0.9253087639808655,\n            \"Y\": 0.5491948127746582\n          },\n          {\n            \"X\": 0.781083345413208,\n            \"Y\": 0.5491948127746582\n          }\n        ]\n      },\n      \"Id\": \"e97425d7-ca56-4dea-a75a-e3576129e484\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"86d46545-1bde-4f87-926d-8f53979689f3\",\n            \"0161dc75-cb31-417f-a341-ce9e6ff58dcb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.926025390625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6219512820243835,\n          \"Height\": 0.10281327366828918,\n          \"Left\": 0.34136828780174255,\n          \"Top\": 0.2312764972448349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34136828780174255,\n            \"Y\": 0.2312764972448349\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.2312764972448349\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.3340897560119629\n          },\n          {\n            \"X\": 0.34136828780174255,\n            \"Y\": 0.3340897560119629\n          }\n        ]\n      },\n      \"Id\": \"0e83a895-2b8d-478d-837c-35c8baefabff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b362bfc2-4ed4-4582-9893-62796f32b76b\",\n            \"3edf4be8-8725-4d30-a447-309df1bcbe81\",\n            \"f28abd74-e8f3-4ca7-89a8-13da1b3c2c5f\",\n            \"39461c81-2e0a-4398-ba7e-bab131ad42b2\",\n            \"d0cf6a50-4183-4e4b-b361-a0de23b48a50\",\n            \"b612f605-0877-4b05-9852-b077f9b61835\",\n            \"e3395a8e-7651-4096-b409-5bf2db8e9c2e\",\n            \"1501cfae-4a0c-4c8f-8420-d8b71abdae0d\",\n            \"21fad7bd-73d2-4421-8b03-9b617170f0eb\",\n            \"b0b459a1-b5c9-4d17-8fc5-7249e4c375b4\",\n            \"cc177dd4-56ed-46ee-8d9a-ed7ceec6e832\",\n            \"30094539-df1c-497b-9164-1da7eece7c3b\",\n            \"e5124d27-9bf2-41eb-a696-efbc626e197f\",\n            \"2b7b79d7-5001-4856-881c-4c46b2726c8c\",\n            \"354ad379-3f8d-477d-a549-2ae3638e9549\",\n            \"52c73b5a-7f13-45bb-8748-0508d3184be6\",\n            \"0d780cde-0a5f-46ad-9948-7afe98d1382c\",\n            \"ec8496df-d7a6-4d9e-b9b4-ee4485893a38\",\n            \"27c83f0e-7e31-40a9-9c41-0bec12dc0403\",\n            \"b8c60e82-b5ed-4306-80f1-c53c86a30141\",\n            \"fd4a7daa-3c9e-4116-8aa3-7223e4d0275f\",\n            \"d112800d-e01a-4441-b3c4-5c5d23f7eb96\",\n            \"de94fe4f-e51b-4c32-aba9-d4f99e859fc5\",\n            \"b97a2963-bd17-4e5d-aff0-01d8dd638bba\",\n            \"4e4fa4c6-3c92-42cb-a1b8-1f37b8b1797e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340301275253296,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.34136831760406494,\n          \"Top\": 0.2312764823436737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.25157293677330017\n          },\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.25157293677330017\n          }\n        ]\n      },\n      \"Id\": \"b362bfc2-4ed4-4582-9893-62796f32b76b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b1d0740a-5ef7-4226-91df-e18c10a29a58\",\n            \"5ad4f3f8-c688-46f9-b3c6-7a500af8030b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12504836916923523,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.4647713005542755,\n          \"Top\": 0.2312764823436737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.25157293677330017\n          },\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.25157293677330017\n          }\n        ]\n      },\n      \"Id\": \"3edf4be8-8725-4d30-a447-309df1bcbe81\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"057fce31-3320-4aad-8a81-59596d5b1dcb\",\n            \"68f04b27-586d-4630-9d41-6a07c0100b51\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.5898196697235107,\n          \"Top\": 0.2312764823436737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.25157293677330017\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.25157293677330017\n          }\n        ]\n      },\n      \"Id\": \"f28abd74-e8f3-4ca7-89a8-13da1b3c2c5f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"334f895e-30c6-4df5-aacb-0cf231b620af\",\n            \"6291ad39-03aa-4ab6-a8e4-63b5b6b26f94\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.7132227420806885,\n          \"Top\": 0.2312764823436737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.25157293677330017\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.25157293677330017\n          }\n        ]\n      },\n      \"Id\": \"39461c81-2e0a-4398-ba7e-bab131ad42b2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fd763da3-32a8-461a-92bd-174ad0e030fb\",\n            \"022a6e3a-d0d5-491f-bd07-c7a9f672ccae\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12669378519058228,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.8366258144378662,\n          \"Top\": 0.2312764823436737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.2312764823436737\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.25157293677330017\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.25157293677330017\n          }\n        ]\n      },\n      \"Id\": \"d0cf6a50-4183-4e4b-b361-a0de23b48a50\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f2d8ba1-da3d-47ae-ad9a-40037c9ab97f\",\n            \"991f2310-4c94-4cfe-9fce-3f0197eaa5f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340301275253296,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.34136831760406494,\n          \"Top\": 0.25157296657562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.27253490686416626\n          },\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.27253490686416626\n          }\n        ]\n      },\n      \"Id\": \"b612f605-0877-4b05-9852-b077f9b61835\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"262a77db-ae01-43ee-98b9-a5d30be484fc\",\n            \"ec9df24b-4223-4ea9-afd9-1e8dd7f7316a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12504836916923523,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.4647713005542755,\n          \"Top\": 0.25157296657562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.27253490686416626\n          },\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.27253490686416626\n          }\n        ]\n      },\n      \"Id\": \"e3395a8e-7651-4096-b409-5bf2db8e9c2e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7b7fe7a4-79fc-44d0-9f0c-14e17763c159\",\n            \"4d745dee-7ebf-47ba-8a82-f1206d9ba19c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.5898196697235107,\n          \"Top\": 0.25157296657562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.27253490686416626\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.27253490686416626\n          }\n        ]\n      },\n      \"Id\": \"1501cfae-4a0c-4c8f-8420-d8b71abdae0d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b69f145b-e997-42c1-800b-17519d3e32ef\",\n            \"c300452e-f3cd-46b2-8151-07a7974d9326\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.7132227420806885,\n          \"Top\": 0.25157296657562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.27253490686416626\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.27253490686416626\n          }\n        ]\n      },\n      \"Id\": \"21fad7bd-73d2-4421-8b03-9b617170f0eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a704e76f-ff9b-46eb-9a6b-35542a6b8c43\",\n            \"23e7eac0-e92d-40cd-8026-3e2dccb5a334\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12669378519058228,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.8366258144378662,\n          \"Top\": 0.25157296657562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.25157296657562256\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.27253490686416626\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.27253490686416626\n          }\n        ]\n      },\n      \"Id\": \"b0b459a1-b5c9-4d17-8fc5-7249e4c375b4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"334606a6-3b2c-40fe-9d1d-d80103d3387b\",\n            \"393bb537-f983-4800-b0db-8db2812eae45\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340301275253296,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.34136831760406494,\n          \"Top\": 0.27253487706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.2928313612937927\n          }\n        ]\n      },\n      \"Id\": \"cc177dd4-56ed-46ee-8d9a-ed7ceec6e832\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"260d17c0-3af7-428a-be93-012e693ccb1c\",\n            \"00b2a930-9567-4573-aff3-59046874707d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12504836916923523,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.4647713005542755,\n          \"Top\": 0.27253487706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.2928313612937927\n          }\n        ]\n      },\n      \"Id\": \"30094539-df1c-497b-9164-1da7eece7c3b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4c7e8481-9358-4784-9847-83077be11d16\",\n            \"d4437c1d-c937-4857-b18b-b1ea50706bab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.5898196697235107,\n          \"Top\": 0.27253487706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.2928313612937927\n          }\n        ]\n      },\n      \"Id\": \"e5124d27-9bf2-41eb-a696-efbc626e197f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc1aa1b0-a0c7-472b-9c00-a798d8cc435f\",\n            \"3d6e6e99-0fd5-4cce-94bd-91d8fdb4cd4e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.7132227420806885,\n          \"Top\": 0.27253487706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.2928313612937927\n          }\n        ]\n      },\n      \"Id\": \"2b7b79d7-5001-4856-881c-4c46b2726c8c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f930b397-6dca-4b1f-9a6c-7b1c00f4f1ff\",\n            \"813364e2-cdb5-4635-82c2-cc90a5c0bcba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12669378519058228,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.8366258144378662,\n          \"Top\": 0.27253487706184387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.27253487706184387\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.2928313612937927\n          }\n        ]\n      },\n      \"Id\": \"354ad379-3f8d-477d-a549-2ae3638e9549\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"403d255b-f24e-4e0c-88fa-9136eacf58f6\",\n            \"f89b635b-7a29-4df9-8765-5b671c46fdb9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340301275253296,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.34136831760406494,\n          \"Top\": 0.2928313612937927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.3137933015823364\n          }\n        ]\n      },\n      \"Id\": \"52c73b5a-7f13-45bb-8748-0508d3184be6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c3c838e8-b89f-4cd7-a4f0-c4b61c9f4788\",\n            \"b8ed9993-b4e2-4fdf-a5ed-ac587754215a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12504836916923523,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.4647713005542755,\n          \"Top\": 0.2928313612937927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.3137933015823364\n          }\n        ]\n      },\n      \"Id\": \"0d780cde-0a5f-46ad-9948-7afe98d1382c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a572e77-aa31-49eb-8fe6-6cf110182f16\",\n            \"50c7e6da-a99a-49c5-bb8a-4e53dc1c2416\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.5898196697235107,\n          \"Top\": 0.2928313612937927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.3137933015823364\n          }\n        ]\n      },\n      \"Id\": \"ec8496df-d7a6-4d9e-b9b4-ee4485893a38\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5a89f920-31c1-439a-aec7-680585b25796\",\n            \"e7ba092f-65d9-42c9-bc93-5d88ff8d8a21\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.7132227420806885,\n          \"Top\": 0.2928313612937927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.3137933015823364\n          }\n        ]\n      },\n      \"Id\": \"27c83f0e-7e31-40a9-9c41-0bec12dc0403\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89a0b628-38d0-4d70-af44-a248e9e189bb\",\n            \"9e2d3f64-7681-4b6b-ab67-56cae96a26fe\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12669378519058228,\n          \"Height\": 0.020961929112672806,\n          \"Left\": 0.8366258144378662,\n          \"Top\": 0.2928313612937927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.2928313612937927\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.3137933015823364\n          }\n        ]\n      },\n      \"Id\": \"b8c60e82-b5ed-4306-80f1-c53c86a30141\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d738af2-8336-4fe7-a9db-9a2094e47c45\",\n            \"e0b70770-4816-4fa0-98be-167ef2cf3f23\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340301275253296,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.34136831760406494,\n          \"Top\": 0.3137933015823364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.4647713303565979,\n            \"Y\": 0.3340897560119629\n          },\n          {\n            \"X\": 0.34136831760406494,\n            \"Y\": 0.3340897560119629\n          }\n        ]\n      },\n      \"Id\": \"fd4a7daa-3c9e-4116-8aa3-7223e4d0275f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2c926ffd-0deb-41fb-99e3-f10cfce41297\",\n            \"9e6f5012-92dd-44a4-bc27-241158503f6e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12504836916923523,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.4647713005542755,\n          \"Top\": 0.3137933015823364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.3340897560119629\n          },\n          {\n            \"X\": 0.4647713005542755,\n            \"Y\": 0.3340897560119629\n          }\n        ]\n      },\n      \"Id\": \"d112800d-e01a-4441-b3c4-5c5d23f7eb96\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4b4e476b-a4e9-4664-bf7f-701af4ca7955\",\n            \"99985721-7815-4138-9be0-6b2a9273efb3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.5898196697235107,\n          \"Top\": 0.3137933015823364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.3340897560119629\n          },\n          {\n            \"X\": 0.5898196697235107,\n            \"Y\": 0.3340897560119629\n          }\n        ]\n      },\n      \"Id\": \"de94fe4f-e51b-4c32-aba9-d4f99e859fc5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51006c26-86d7-4d59-a810-d492e03d33c0\",\n            \"21985db3-e896-470a-8279-23ddd60abba9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12340305745601654,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.7132227420806885,\n          \"Top\": 0.3137933015823364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.3340897560119629\n          },\n          {\n            \"X\": 0.7132227420806885,\n            \"Y\": 0.3340897560119629\n          }\n        ]\n      },\n      \"Id\": \"b97a2963-bd17-4e5d-aff0-01d8dd638bba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"53e96019-5be1-457e-a1a6-612bc148e736\",\n            \"40851039-70b0-41a0-8065-c92ce33647c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.926025390625,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12669378519058228,\n          \"Height\": 0.02029646933078766,\n          \"Left\": 0.8366258144378662,\n          \"Top\": 0.3137933015823364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.3137933015823364\n          },\n          {\n            \"X\": 0.9633195996284485,\n            \"Y\": 0.3340897560119629\n          },\n          {\n            \"X\": 0.8366258144378662,\n            \"Y\": 0.3340897560119629\n          }\n        ]\n      },\n      \"Id\": \"4e4fa4c6-3c92-42cb-a1b8-1f37b8b1797e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96589d36-e02e-40bb-b3ee-204f33971e8b\",\n            \"f203337b-46f6-42b1-9c20-2ac033d36a48\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.516357421875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3301241397857666,\n          \"Height\": 0.05376400053501129,\n          \"Left\": 0.10114516317844391,\n          \"Top\": 0.15318438410758972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.206948384642601\n          },\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.206948384642601\n          }\n        ]\n      },\n      \"Id\": \"b8f5079a-ee2f-48d8-bb68-40c6debb2dc1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c0320c73-ed42-4812-a8d4-25f8e7a89efa\",\n            \"1ef65afc-20a5-4068-8eff-3ce3ca9e0702\",\n            \"3bc37fc0-0c24-4d01-8779-b79a589248a1\",\n            \"92d2c869-7204-46b4-acd8-5bdba25a28e9\",\n            \"0eb28fe8-dcee-4b3a-b26e-7fe1b9c63917\",\n            \"e1b9cbdb-0839-4af6-a5d2-430539b29903\",\n            \"93179c2a-3cfa-4ff6-b3f6-37a5505bfb82\",\n            \"03ed9d28-d525-4da2-b48b-a2b9101a252a\",\n            \"c2eb2ff6-40fc-4e42-9f92-9289d0979ea1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11177431046962738,\n          \"Height\": 0.017921319231390953,\n          \"Left\": 0.10114516317844391,\n          \"Top\": 0.15318438410758972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.17110569775104523\n          },\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.17110569775104523\n          }\n        ]\n      },\n      \"Id\": \"c0320c73-ed42-4812-a8d4-25f8e7a89efa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"693718a3-d8d9-4ea2-9439-cfa7afb4fdae\",\n            \"20477be6-5cdb-4f57-a4b8-56b82dd30f4f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11004135012626648,\n          \"Height\": 0.017921319231390953,\n          \"Left\": 0.2129194736480713,\n          \"Top\": 0.15318438410758972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.17110569775104523\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.17110569775104523\n          }\n        ]\n      },\n      \"Id\": \"1ef65afc-20a5-4068-8eff-3ce3ca9e0702\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"de3490e5-06c8-4b5e-a2ed-9d71fbd61669\",\n            \"769bc278-3759-4d7c-b766-4dd648fff7c4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10830847173929214,\n          \"Height\": 0.017921319231390953,\n          \"Left\": 0.32296082377433777,\n          \"Top\": 0.15318438410758972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.15318438410758972\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.17110569775104523\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.17110569775104523\n          }\n        ]\n      },\n      \"Id\": \"3bc37fc0-0c24-4d01-8779-b79a589248a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a2add06a-d7e5-4f51-be46-00ffcb8f062e\",\n            \"bbf1f43e-b02a-4b0b-8bb9-e776a740dd29\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11177431046962738,\n          \"Height\": 0.018253209069371223,\n          \"Left\": 0.10114516317844391,\n          \"Top\": 0.17110571265220642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.17110571265220642\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.17110571265220642\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.1893589198589325\n          },\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.1893589198589325\n          }\n        ]\n      },\n      \"Id\": \"92d2c869-7204-46b4-acd8-5bdba25a28e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"62f193ef-e7b5-4c13-b7a0-ecbe1a03649a\",\n            \"5d5b7d86-c4e2-4d80-aab1-eb46edbb80ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11004135012626648,\n          \"Height\": 0.018253209069371223,\n          \"Left\": 0.2129194736480713,\n          \"Top\": 0.17110571265220642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.17110571265220642\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.17110571265220642\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.1893589198589325\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.1893589198589325\n          }\n        ]\n      },\n      \"Id\": \"0eb28fe8-dcee-4b3a-b26e-7fe1b9c63917\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a9fdd78a-ab2d-4c9f-afb6-97b323d1619b\",\n            \"bcef7e2f-b821-496e-8416-b76afc942fd2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10830847173929214,\n          \"Height\": 0.018253209069371223,\n          \"Left\": 0.32296082377433777,\n          \"Top\": 0.17110571265220642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.17110571265220642\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.17110571265220642\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.1893589198589325\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.1893589198589325\n          }\n        ]\n      },\n      \"Id\": \"e1b9cbdb-0839-4af6-a5d2-430539b29903\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7eb4e511-3091-4b79-afc3-b2730b6b9fca\",\n            \"17fc7483-8c94-4585-b517-85e567a8c4e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11177431046962738,\n          \"Height\": 0.01758945919573307,\n          \"Left\": 0.10114516317844391,\n          \"Top\": 0.1893589347600937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.1893589347600937\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.1893589347600937\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.206948384642601\n          },\n          {\n            \"X\": 0.10114516317844391,\n            \"Y\": 0.206948384642601\n          }\n        ]\n      },\n      \"Id\": \"93179c2a-3cfa-4ff6-b3f6-37a5505bfb82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0a55b010-3182-402f-97d1-66b1c1c0d1a7\",\n            \"943bbaad-f70d-4b4e-a68f-3a3af8463a0b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11004135012626648,\n          \"Height\": 0.01758945919573307,\n          \"Left\": 0.2129194736480713,\n          \"Top\": 0.1893589347600937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.1893589347600937\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.1893589347600937\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.206948384642601\n          },\n          {\n            \"X\": 0.2129194736480713,\n            \"Y\": 0.206948384642601\n          }\n        ]\n      },\n      \"Id\": \"03ed9d28-d525-4da2-b48b-a2b9101a252a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3d78e15-4124-4ec6-b39a-8ad528e3d54d\",\n            \"7598e24c-3b6b-4b02-b842-981d2a9457a2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 99.516357421875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10830847173929214,\n          \"Height\": 0.01758945919573307,\n          \"Left\": 0.32296082377433777,\n          \"Top\": 0.1893589347600937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.1893589347600937\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.1893589347600937\n          },\n          {\n            \"X\": 0.4312692880630493,\n            \"Y\": 0.206948384642601\n          },\n          {\n            \"X\": 0.32296082377433777,\n            \"Y\": 0.206948384642601\n          }\n        ]\n      },\n      \"Id\": \"c2eb2ff6-40fc-4e42-9f92-9289d0979ea1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"280a2f4f-d07c-4221-b384-787044a31bbc\",\n            \"60654585-6a37-46a1-8f95-36a4f2ad9fb1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043333061039447784,\n          \"Height\": 0.010898925364017487,\n          \"Left\": 0.7540833353996277,\n          \"Top\": 0.03360270708799362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7540833353996277,\n            \"Y\": 0.03360270708799362\n          },\n          {\n            \"X\": 0.7974163889884949,\n            \"Y\": 0.03360270708799362\n          },\n          {\n            \"X\": 0.7974163889884949,\n            \"Y\": 0.04450163245201111\n          },\n          {\n            \"X\": 0.7540833353996277,\n            \"Y\": 0.04450163245201111\n          }\n        ]\n      },\n      \"Id\": \"458a9301-8a9d-4eb2-9469-70302c62622e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"26409bb4-902c-45ed-915e-4e0d63fbde7a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5c0db6d-136e-48bd-bd3d-51b3eb66cbff\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09237521141767502,\n          \"Height\": 0.010876830667257309,\n          \"Left\": 0.801909863948822,\n          \"Top\": 0.033592019230127335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.801909863948822,\n            \"Y\": 0.033592019230127335\n          },\n          {\n            \"X\": 0.8942850828170776,\n            \"Y\": 0.033592019230127335\n          },\n          {\n            \"X\": 0.8942850828170776,\n            \"Y\": 0.044468849897384644\n          },\n          {\n            \"X\": 0.801909863948822,\n            \"Y\": 0.044468849897384644\n          }\n        ]\n      },\n      \"Id\": \"26409bb4-902c-45ed-915e-4e0d63fbde7a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9698fe86-3b26-4320-ae95-6bf357d8a20c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 93.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04205852001905441,\n          \"Height\": 0.013164469040930271,\n          \"Left\": 0.7578019499778748,\n          \"Top\": 0.08801469951868057\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7578019499778748,\n            \"Y\": 0.08801469951868057\n          },\n          {\n            \"X\": 0.7998604774475098,\n            \"Y\": 0.08801469951868057\n          },\n          {\n            \"X\": 0.7998604774475098,\n            \"Y\": 0.10117916762828827\n          },\n          {\n            \"X\": 0.7578019499778748,\n            \"Y\": 0.10117916762828827\n          }\n        ]\n      },\n      \"Id\": \"803f2f38-c2f9-4d41-98b6-2854d43426d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e4a1b7f6-4110-4291-8e0b-561019f71a0b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4096d8d9-c7d7-4136-84a7-64baa8928609\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 93.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055733561515808105,\n          \"Height\": 0.011011667549610138,\n          \"Left\": 0.8036167025566101,\n          \"Top\": 0.08796775341033936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8036167025566101,\n            \"Y\": 0.08796775341033936\n          },\n          {\n            \"X\": 0.8593502640724182,\n            \"Y\": 0.08796775341033936\n          },\n          {\n            \"X\": 0.8593502640724182,\n            \"Y\": 0.0989794209599495\n          },\n          {\n            \"X\": 0.8036167025566101,\n            \"Y\": 0.0989794209599495\n          }\n        ]\n      },\n      \"Id\": \"e4a1b7f6-4110-4291-8e0b-561019f71a0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"262feb10-ecc6-420e-aa55-33adc2f8c6c0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 93,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04262833669781685,\n          \"Height\": 0.01308541838079691,\n          \"Left\": 0.7580611109733582,\n          \"Top\": 0.11237998306751251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7580611109733582,\n            \"Y\": 0.11237998306751251\n          },\n          {\n            \"X\": 0.8006894588470459,\n            \"Y\": 0.11237998306751251\n          },\n          {\n            \"X\": 0.8006894588470459,\n            \"Y\": 0.12546540796756744\n          },\n          {\n            \"X\": 0.7580611109733582,\n            \"Y\": 0.12546540796756744\n          }\n        ]\n      },\n      \"Id\": \"7f50874d-ca5d-4f4f-a37d-3616893f3b29\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b7ab27ca-0404-4ff7-9ca8-c8ae4dd33dad\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 93,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05655166506767273,\n          \"Height\": 0.010811899788677692,\n          \"Left\": 0.8038789629936218,\n          \"Top\": 0.1123320534825325\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8038789629936218,\n            \"Y\": 0.1123320534825325\n          },\n          {\n            \"X\": 0.8604305982589722,\n            \"Y\": 0.1123320534825325\n          },\n          {\n            \"X\": 0.8604305982589722,\n            \"Y\": 0.12314394861459732\n          },\n          {\n            \"X\": 0.8038789629936218,\n            \"Y\": 0.12314394861459732\n          }\n        ]\n      },\n      \"Id\": \"b7ab27ca-0404-4ff7-9ca8-c8ae4dd33dad\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"25b54fea-ae51-4f79-adf0-c144c026b248\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03423896059393883,\n          \"Height\": 0.010701701045036316,\n          \"Left\": 0.0769645944237709,\n          \"Top\": 0.5494946837425232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0769645944237709,\n            \"Y\": 0.5494946837425232\n          },\n          {\n            \"X\": 0.11120355874300003,\n            \"Y\": 0.5494946837425232\n          },\n          {\n            \"X\": 0.11120355874300003,\n            \"Y\": 0.5601963996887207\n          },\n          {\n            \"X\": 0.0769645944237709,\n            \"Y\": 0.5601963996887207\n          }\n        ]\n      },\n      \"Id\": \"80578246-a93f-42e6-9c6c-701b305db3f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b561080b-f7b4-45bc-b198-02c0e8a6fa53\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ec65266-a74f-4682-86d3-1090f187c674\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06966643780469894,\n          \"Height\": 0.011228515766561031,\n          \"Left\": 0.11314452439546585,\n          \"Top\": 0.5491240620613098\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11314452439546585,\n            \"Y\": 0.5491240620613098\n          },\n          {\n            \"X\": 0.1828109622001648,\n            \"Y\": 0.5491240620613098\n          },\n          {\n            \"X\": 0.1828109622001648,\n            \"Y\": 0.5603525638580322\n          },\n          {\n            \"X\": 0.11314452439546585,\n            \"Y\": 0.5603525638580322\n          }\n        ]\n      },\n      \"Id\": \"b561080b-f7b4-45bc-b198-02c0e8a6fa53\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bf5c7ac8-def7-4dc0-8ae8-90fb53ba952b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03049684874713421,\n          \"Height\": 0.011006265878677368,\n          \"Left\": 0.0764058530330658,\n          \"Top\": 0.5654353499412537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0764058530330658,\n            \"Y\": 0.5654353499412537\n          },\n          {\n            \"X\": 0.10690270364284515,\n            \"Y\": 0.5654353499412537\n          },\n          {\n            \"X\": 0.10690270364284515,\n            \"Y\": 0.5764415860176086\n          },\n          {\n            \"X\": 0.0764058530330658,\n            \"Y\": 0.5764415860176086\n          }\n        ]\n      },\n      \"Id\": \"0f648bc8-e9e6-4bb4-a933-c17bcc991b29\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"c44a70c7-916a-41bc-a202-9041e44a0f2b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a87dccf8-8e8e-4a51-842f-d6a62725ba8f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10356873273849487,\n          \"Height\": 0.01076163724064827,\n          \"Left\": 0.10911894589662552,\n          \"Top\": 0.5656524896621704\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10911894589662552,\n            \"Y\": 0.5656524896621704\n          },\n          {\n            \"X\": 0.212687686085701,\n            \"Y\": 0.5656524896621704\n          },\n          {\n            \"X\": 0.212687686085701,\n            \"Y\": 0.5764141082763672\n          },\n          {\n            \"X\": 0.10911894589662552,\n            \"Y\": 0.5764141082763672\n          }\n        ]\n      },\n      \"Id\": \"c44a70c7-916a-41bc-a202-9041e44a0f2b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e0f5935c-17ae-440e-b618-2c5f7e8700da\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 58,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034566547721624374,\n          \"Height\": 0.010777872987091541,\n          \"Left\": 0.07601422816514969,\n          \"Top\": 0.41859760880470276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07601422816514969,\n            \"Y\": 0.41859760880470276\n          },\n          {\n            \"X\": 0.11058077216148376,\n            \"Y\": 0.41859760880470276\n          },\n          {\n            \"X\": 0.11058077216148376,\n            \"Y\": 0.4293754994869232\n          },\n          {\n            \"X\": 0.07601422816514969,\n            \"Y\": 0.4293754994869232\n          }\n        ]\n      },\n      \"Id\": \"e38cf76e-b676-434c-84a9-f82c8747ccc9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f236067d-16b7-4f8f-97f4-1edc8dd798a3\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2ec3e7d2-9cf4-4827-a853-402693c7d693\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 58,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06554920971393585,\n          \"Height\": 0.011397827416658401,\n          \"Left\": 0.11412835866212845,\n          \"Top\": 0.41789090633392334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11412835866212845,\n            \"Y\": 0.41789090633392334\n          },\n          {\n            \"X\": 0.1796775609254837,\n            \"Y\": 0.41789090633392334\n          },\n          {\n            \"X\": 0.1796775609254837,\n            \"Y\": 0.42928874492645264\n          },\n          {\n            \"X\": 0.11412835866212845,\n            \"Y\": 0.42928874492645264\n          }\n        ]\n      },\n      \"Id\": \"f236067d-16b7-4f8f-97f4-1edc8dd798a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5362839-b43d-4d9a-89e0-b9d4d56b8496\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 56.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05229628086090088,\n          \"Height\": 0.010794362053275108,\n          \"Left\": 0.08516786247491837,\n          \"Top\": 0.060895562171936035\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08516786247491837,\n            \"Y\": 0.060895562171936035\n          },\n          {\n            \"X\": 0.13746413588523865,\n            \"Y\": 0.060895562171936035\n          },\n          {\n            \"X\": 0.13746413588523865,\n            \"Y\": 0.07168992608785629\n          },\n          {\n            \"X\": 0.08516786247491837,\n            \"Y\": 0.07168992608785629\n          }\n        ]\n      },\n      \"Id\": \"e6ec8586-09d7-4dd7-b7b8-ab3efce7dd99\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1315cf98-62f5-421a-9a54-f4b228e8aa50\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e433305-2585-455c-b8f0-3b7afae91e2c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 56.5,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09697497636079788,\n          \"Height\": 0.010682733729481697,\n          \"Left\": 0.13983367383480072,\n          \"Top\": 0.06091514229774475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13983367383480072,\n            \"Y\": 0.06091514229774475\n          },\n          {\n            \"X\": 0.236808642745018,\n            \"Y\": 0.06091514229774475\n          },\n          {\n            \"X\": 0.236808642745018,\n            \"Y\": 0.0715978741645813\n          },\n          {\n            \"X\": 0.13983367383480072,\n            \"Y\": 0.0715978741645813\n          }\n        ]\n      },\n      \"Id\": \"1315cf98-62f5-421a-9a54-f4b228e8aa50\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37278ca4-ae2d-4b26-840a-9faa31beb9b8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\",\n  \"ResponseMetadata\": {\n    \"RequestId\": \"12345678-1234-1234-1234-1234567890\",\n    \"HTTPStatusCode\": 200,\n    \"HTTPHeaders\": {\n      \"x-amzn-requestid\": \"12345678-1234-1234-1234-1234567890\",\n      \"content-type\": \"application/x-amz-json-1.1\",\n      \"content-length\": \"151806\",\n      \"date\": \"Tue, 20 Apr 2021 04:05:42 GMT\"\n    },\n    \"RetryAttempts\": 0\n  }\n}\n"
  },
  {
    "path": "src-python/tests/data/gib_10_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 0.9774828553199768, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.1001499593257904, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.03051116317510605}, {\"X\": 1.0, \"Y\": 0.9774828553199768}, {\"X\": 0.0, \"Y\": 0.8342821002006531}]}, \"Id\": \"3a51f145-7790-4f0b-91dc-d798cdbb43df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"05a696b6-66fd-4cdd-ac45-ec428eb07560\", \"afeb7335-db16-4071-9e67-e6cef052554a\", \"f866916c-54b3-4783-b360-ebaf702b9351\", \"3f6712f5-5a06-408a-ac7f-d5cae38dfcde\", \"67fc0037-0295-49b7-86a6-7df2f8e7bad3\", \"cbff8f97-436c-4451-94fd-9f645faf9ac6\", \"d46aa559-53d7-4651-b4c2-c9435440597d\", \"d2b05e36-b8e0-431f-81b4-6fab409279c0\", \"b06213d5-7691-4d5d-83b0-a62ceba03ca3\", \"80288c63-0984-4b6b-b173-ebaf88da141f\", \"6a0d92a6-4723-4b8a-84ea-a0d17dc267d0\", \"bd323984-c5be-4035-99bd-1865542d673a\", \"860b1885-372f-490f-b64a-93f8ccd56493\", \"8bd6b6e9-acd9-442c-bb25-9d31ed1c7661\", \"0265384f-73e1-4987-aff2-d6f4ad4b60f4\", \"3856cbab-3cbf-4935-9aa8-8256c20efcc2\", \"519a8813-ca3e-455c-a12a-be57b96c12c6\", \"debbbec6-166d-4622-b924-0f0a34a66111\", \"253a9f03-e12a-4048-8080-029c3c752976\", \"68ac3891-8c84-4749-9f8d-882439aeb374\", \"59ca5b3f-d4af-4bc4-b0d1-2c2898148e60\", \"2d98d1ff-800a-4d46-88e7-8a69fea0fea7\", \"143cfa46-e8b4-4d07-85e0-9aed96e11e4d\", \"487f64a5-b382-4f76-ad55-20db3bd90ed0\", \"3ff932df-194c-49f8-a0a6-dece78a2ef32\", \"fc132645-65e5-4898-b926-cfd69d04506d\", \"6728bfe4-0ec4-446a-a224-8d38ca49620c\", \"74571297-4e1f-4b81-96d2-0f9672d38268\", \"09911776-0eeb-4b5d-8d50-3a3ad2f92851\", \"46c92ebe-857f-4159-9ad0-b5957b804ae7\", \"a37e8475-6145-4e05-98a9-088f626e6801\", \"77fb1cde-e56c-42c4-9d6e-9371c47487d2\", \"aed95ba7-4904-474c-bb43-ddd829f28d03\", \"bf7abb5e-5914-403e-ac2e-6e3120cd193b\", \"5c8f94fc-2603-4e9a-89b9-239bd6108c8a\", \"682d1ec3-974e-41fa-80b0-29e6044c5adf\", \"bac46b4e-032c-4751-8f93-49fe87b88457\", \"7e300d86-4ca6-4deb-9bbe-08a40c860dc9\", \"7a2a96f9-1f82-47b7-a246-8c3dda700c6b\", \"a8f0016a-53ae-444b-86f0-a8d7c54d9125\", \"b789e8f4-e080-4487-8083-d0fbf236d740\", \"97081add-42b3-4c9c-9cea-72790d7d103f\", \"b57f8631-aadf-40c0-9dff-7abaeb537808\", \"34427db8-4d95-4904-9a76-cb3b18d45d3e\", \"ae5b36d0-89b5-4ecf-8674-4f5802c3d278\", \"9f414093-4abf-471c-a2c5-b8c4efa45bbe\", \"297ce1cf-7b59-4fe1-ab1a-be827ee100a2\", \"c09abe37-d8bb-48a7-b99e-c51a2bed03a5\", \"72e4dc74-f86d-4f1f-9c06-5674193ba6e6\", \"eac5878e-bd55-4f2c-a8d9-d6eddb116e4d\", \"6b37cade-5196-479d-a83a-f7995a4a0785\", \"5742d35a-8b92-4906-b05a-0109dcb43881\", \"601c78de-78b1-413f-a737-8f5c074f700c\", \"cf3a4f14-0533-4ad5-8a88-2df7ffa91ead\", \"432bd30a-eac4-4907-af64-3afa6c7986bf\", \"1dd0e774-73ef-4ac4-9479-b1db0a53bfd0\", \"bf03f0bb-53cd-47f6-830a-e56da8c7e74b\", \"d1522245-e318-4688-8f3d-d55d5e5d8ddb\", \"1aac89ea-8bff-495e-80f4-e8941995a3e9\", \"c246e647-a987-4a10-9b79-d135554a7b4c\", \"2c8835ce-bf00-46d0-abd6-f5d838cbbedd\", \"1b93c089-5415-499a-b13d-ac257a73777e\", \"b1dd28b7-da0b-46d6-935d-063316d5e851\", \"df5fe424-6f9f-4ea3-99fb-547eaee5c664\", \"346da833-18b7-4d38-aeb6-9448cd386e26\", \"f06388fa-988b-4231-af67-f7654874f20d\", \"ba5b9150-9e64-42c3-a342-5c5cc99d3e1a\", \"b450bdf1-fcd7-41bf-babe-8d24bf36f9ca\", \"93f8d762-c270-437e-af9e-ed377fa95254\", \"d49b8b01-9790-490a-8940-d5dae1addddd\", \"bc04910e-5d76-49b3-872a-6eb547436be6\", \"3d2762d5-eb28-415f-ab1f-8b4ebac1d436\", \"d9658b0f-d95b-4ff3-aec5-c405c7208f8c\", \"c7509c58-cca8-47b1-934d-a61b6db374e3\", \"691f5fee-71ac-4f18-9247-2dbfda69ef7c\", \"4972e0e8-4ba0-479b-bf28-844c4d0d9467\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 88.00714874267578, \"Text\": \"Date: 2020-0\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09861831367015839, \"Height\": 0.023096155375242233, \"Left\": 0.9013816714286804, \"Top\": 0.11616679280996323}, \"Polygon\": [{\"X\": 0.9040814638137817, \"Y\": 0.11616679280996323}, {\"X\": 1.0, \"Y\": 0.128499835729599}, {\"X\": 0.9998401403427124, \"Y\": 0.13926294445991516}, {\"X\": 0.9013816714286804, \"Y\": 0.12692992389202118}]}, \"Id\": \"05a696b6-66fd-4cdd-ac45-ec428eb07560\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cbb3c354-2014-4e03-a4f8-14132692c2e8\", \"64ff3184-1859-44c6-8caa-28b1f8926724\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5155258178711, \"Text\": \"Name: SomeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15022391080856323, \"Height\": 0.028958534821867943, \"Left\": 0.23685982823371887, \"Top\": 0.061276186257600784}, \"Polygon\": [{\"X\": 0.23948614299297333, \"Y\": 0.061276186257600784}, {\"X\": 0.3870837390422821, \"Y\": 0.07976444810628891}, {\"X\": 0.38445743918418884, \"Y\": 0.09023471921682358}, {\"X\": 0.23685982823371887, \"Y\": 0.07174646109342575}]}, \"Id\": \"afeb7335-db16-4071-9e67-e6cef052554a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d317707-2377-430e-816c-bd746ad78933\", \"3d14e955-502c-43c7-8e49-234911bf2c4c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.35050964355469, \"Text\": \"Key1: value1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10215896368026733, \"Height\": 0.025302961468696594, \"Left\": 0.8907472491264343, \"Top\": 0.1701030135154724}, \"Polygon\": [{\"X\": 0.8939860463142395, \"Y\": 0.1701030135154724}, {\"X\": 0.9929062128067017, \"Y\": 0.1824938803911209}, {\"X\": 0.9896674156188965, \"Y\": 0.195405974984169}, {\"X\": 0.8907472491264343, \"Y\": 0.1830151081085205}]}, \"Id\": \"f866916c-54b3-4783-b360-ebaf702b9351\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e6fa0691-f830-46d4-99ac-1718c7cc5876\", \"58c4bff9-5fd3-412b-85f4-3d1da90c0a6f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7015380859375, \"Text\": \"Key2: value2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10264690965414047, \"Height\": 0.025305362418293953, \"Left\": 0.885246992111206, \"Top\": 0.1939390003681183}, \"Polygon\": [{\"X\": 0.8884705901145935, \"Y\": 0.1939390003681183}, {\"X\": 0.9878938794136047, \"Y\": 0.20639289915561676}, {\"X\": 0.9846703410148621, \"Y\": 0.2192443609237671}, {\"X\": 0.885246992111206, \"Y\": 0.2067904770374298}]}, \"Id\": \"3f6712f5-5a06-408a-ac7f-d5cae38dfcde\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"65197cab-51e5-48a2-9b6a-bbdc19566ab1\", \"d5f9d3a4-66c0-4f43-a70a-186433cdb75e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42963409423828, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09165231883525848, \"Height\": 0.021811338141560555, \"Left\": 0.2365850806236267, \"Top\": 0.15924955904483795}, \"Polygon\": [{\"X\": 0.2392604798078537, \"Y\": 0.15924955904483795}, {\"X\": 0.328237384557724, \"Y\": 0.1703949123620987}, {\"X\": 0.3255620002746582, \"Y\": 0.18106089532375336}, {\"X\": 0.2365850806236267, \"Y\": 0.16991554200649261}]}, \"Id\": \"67fc0037-0295-49b7-86a6-7df2f8e7bad3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f48bdec-5af1-4890-a8d1-266ae7807858\", \"a220b192-e02b-4961-af1f-15f5c5c6f44c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60467529296875, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09165673702955246, \"Height\": 0.021667886525392532, \"Left\": 0.34439927339553833, \"Top\": 0.172691211104393}, \"Polygon\": [{\"X\": 0.3470373749732971, \"Y\": 0.172691211104393}, {\"X\": 0.4360560178756714, \"Y\": 0.1838417947292328}, {\"X\": 0.4334179162979126, \"Y\": 0.19435909390449524}, {\"X\": 0.34439927339553833, \"Y\": 0.18320851027965546}]}, \"Id\": \"cbff8f97-436c-4451-94fd-9f645faf9ac6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"092c2c6c-2c67-4184-9b5e-5cc4115c2334\", \"d1b86344-a832-4453-af1b-1281ab89fd89\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59930419921875, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09115751832723618, \"Height\": 0.021505150943994522, \"Left\": 0.4525691270828247, \"Top\": 0.18625476956367493}, \"Polygon\": [{\"X\": 0.4551812708377838, \"Y\": 0.18625476956367493}, {\"X\": 0.5437266230583191, \"Y\": 0.1973460614681244}, {\"X\": 0.5411145091056824, \"Y\": 0.20775991678237915}, {\"X\": 0.4525691270828247, \"Y\": 0.1966686099767685}]}, \"Id\": \"d46aa559-53d7-4651-b4c2-c9435440597d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9717af92-6c00-45b0-a170-2fd2de6df43c\", \"86bbc69e-0b65-4b6c-ab90-06a1dc905798\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50817108154297, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09121409803628922, \"Height\": 0.021528145298361778, \"Left\": 0.23237892985343933, \"Top\": 0.17665593326091766}, \"Polygon\": [{\"X\": 0.23499520123004913, \"Y\": 0.17665593326091766}, {\"X\": 0.32359302043914795, \"Y\": 0.1877538114786148}, {\"X\": 0.32097676396369934, \"Y\": 0.198184072971344}, {\"X\": 0.23237892985343933, \"Y\": 0.18708620965480804}]}, \"Id\": \"d2b05e36-b8e0-431f-81b4-6fab409279c0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c4b5a96-765b-403e-9826-01c08ad6fc44\", \"746c998c-2e89-4a81-a5c6-dcc39d50d0c4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64727020263672, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09133320301771164, \"Height\": 0.02144422009587288, \"Left\": 0.34027987718582153, \"Top\": 0.1901080161333084}, \"Polygon\": [{\"X\": 0.3428705632686615, \"Y\": 0.1901080161333084}, {\"X\": 0.43161308765411377, \"Y\": 0.20122401416301727}, {\"X\": 0.4290224015712738, \"Y\": 0.211552232503891}, {\"X\": 0.34027987718582153, \"Y\": 0.20043623447418213}]}, \"Id\": \"b06213d5-7691-4d5d-83b0-a62ceba03ca3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c5b4791f-505b-443c-a565-d29e8afa4fdd\", \"aef419a3-5726-4207-84fb-fae403bfd964\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57296752929688, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09103643149137497, \"Height\": 0.02135768160223961, \"Left\": 0.44844722747802734, \"Top\": 0.20360612869262695}, \"Polygon\": [{\"X\": 0.4510250985622406, \"Y\": 0.20360612869262695}, {\"X\": 0.5394836664199829, \"Y\": 0.2146865576505661}, {\"X\": 0.5369057655334473, \"Y\": 0.22496381402015686}, {\"X\": 0.44844722747802734, \"Y\": 0.2138833850622177}]}, \"Id\": \"80288c63-0984-4b6b-b173-ebaf88da141f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"77eeac22-26de-4376-9bcc-057eb42f15ff\", \"b7c23c96-5d8f-400d-935e-17a5d35ae684\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41507720947266, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09152840077877045, \"Height\": 0.02134757675230503, \"Left\": 0.22824923694133759, \"Top\": 0.1943676918745041}, \"Polygon\": [{\"X\": 0.2308085560798645, \"Y\": 0.1943676918745041}, {\"X\": 0.31977763772010803, \"Y\": 0.20551206171512604}, {\"X\": 0.3172183334827423, \"Y\": 0.21571525931358337}, {\"X\": 0.22824923694133759, \"Y\": 0.20457088947296143}]}, \"Id\": \"6a0d92a6-4723-4b8a-84ea-a0d17dc267d0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9e72fa9-26af-4fdf-b9b6-4babf3bd4eeb\", \"37f7846d-cc57-4ada-ba77-a6c90505e1ba\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56834411621094, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0915420725941658, \"Height\": 0.02132151648402214, \"Left\": 0.33615389466285706, \"Top\": 0.20779980719089508}, \"Polygon\": [{\"X\": 0.33870601654052734, \"Y\": 0.20779980719089508}, {\"X\": 0.42769598960876465, \"Y\": 0.21894679963588715}, {\"X\": 0.42514386773109436, \"Y\": 0.22912132740020752}, {\"X\": 0.33615389466285706, \"Y\": 0.21797433495521545}]}, \"Id\": \"bd323984-c5be-4035-99bd-1865542d673a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b8a74317-5cf5-4575-b87e-d9079cd62221\", \"2354d721-8b1d-48d6-8deb-a963c4b6fb25\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65399169921875, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0909753367304802, \"Height\": 0.02140762284398079, \"Left\": 0.4443313777446747, \"Top\": 0.22125715017318726}, \"Polygon\": [{\"X\": 0.4469241797924042, \"Y\": 0.22125715017318726}, {\"X\": 0.5353066921234131, \"Y\": 0.23232805728912354}, {\"X\": 0.5327138900756836, \"Y\": 0.24266476929187775}, {\"X\": 0.4443313777446747, \"Y\": 0.23159386217594147}]}, \"Id\": \"860b1885-372f-490f-b64a-93f8ccd56493\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"373a73e9-933a-4729-a293-e8a49517a3ef\", \"d790a25d-8bbb-4562-af20-596f2a68e3a4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.611328125, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10607936978340149, \"Height\": 0.024759791791439056, \"Left\": 0.45300593972206116, \"Top\": 0.26580432057380676}, \"Polygon\": [{\"X\": 0.4559769034385681, \"Y\": 0.26580432057380676}, {\"X\": 0.5590853095054626, \"Y\": 0.27871981263160706}, {\"X\": 0.5561143755912781, \"Y\": 0.2905641198158264}, {\"X\": 0.45300593972206116, \"Y\": 0.2776486277580261}]}, \"Id\": \"8bd6b6e9-acd9-442c-bb25-9d31ed1c7661\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1c7f27a-59ec-46c5-8dda-597763a2f7e9\", \"4bcd797c-a8bb-4f60-bc3c-70717538b4c2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51656341552734, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10630092769861221, \"Height\": 0.024895107373595238, \"Left\": 0.5753546953201294, \"Top\": 0.2810039222240448}, \"Polygon\": [{\"X\": 0.5783535242080688, \"Y\": 0.2810039222240448}, {\"X\": 0.6816556453704834, \"Y\": 0.2939436733722687}, {\"X\": 0.678656816482544, \"Y\": 0.3058990240097046}, {\"X\": 0.5753546953201294, \"Y\": 0.2929592728614807}]}, \"Id\": \"0265384f-73e1-4987-aff2-d6f4ad4b60f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0190eeb4-2346-401a-9f57-e913463265f3\", \"95dc8994-d73f-46db-a510-4e838fce696b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60704040527344, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10638498514890671, \"Height\": 0.024902986362576485, \"Left\": 0.6970701813697815, \"Top\": 0.2961287498474121}, \"Polygon\": [{\"X\": 0.7000682950019836, \"Y\": 0.2961287498474121}, {\"X\": 0.8034551739692688, \"Y\": 0.309079110622406}, {\"X\": 0.8004570603370667, \"Y\": 0.32103171944618225}, {\"X\": 0.6970701813697815, \"Y\": 0.30808135867118835}]}, \"Id\": \"3856cbab-3cbf-4935-9aa8-8256c20efcc2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ebabc69-c494-443f-bfe8-aafaca8876d0\", \"3526d21e-54fe-4c19-b7ef-7b5945862693\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62620544433594, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10767379403114319, \"Height\": 0.025091376155614853, \"Left\": 0.8187446594238281, \"Top\": 0.31135132908821106}, \"Polygon\": [{\"X\": 0.821749746799469, \"Y\": 0.31135132908821106}, {\"X\": 0.9264184236526489, \"Y\": 0.32446226477622986}, {\"X\": 0.9234133362770081, \"Y\": 0.3364427089691162}, {\"X\": 0.8187446594238281, \"Y\": 0.3233317732810974}]}, \"Id\": \"519a8813-ca3e-455c-a12a-be57b96c12c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"45717906-5a8b-43c1-8fe5-18cd0a9036fb\", \"5bba3a13-5ff7-4590-8692-4ada49301817\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87040710449219, \"Text\": \"Value\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05573355406522751, \"Height\": 0.01833811216056347, \"Left\": 0.9414255619049072, \"Top\": 0.32679933309555054}, \"Polygon\": [{\"X\": 0.9443666934967041, \"Y\": 0.32679933309555054}, {\"X\": 0.9971591234207153, \"Y\": 0.33341220021247864}, {\"X\": 0.9942180514335632, \"Y\": 0.34513744711875916}, {\"X\": 0.9414255619049072, \"Y\": 0.33852460980415344}]}, \"Id\": \"debbbec6-166d-4622-b924-0f0a34a66111\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d4f5966-86b2-4746-8b65-7369079d9dec\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49527740478516, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1064312607049942, \"Height\": 0.024812016636133194, \"Left\": 0.447523832321167, \"Top\": 0.28599852323532104}, \"Polygon\": [{\"X\": 0.4504969120025635, \"Y\": 0.28599852323532104}, {\"X\": 0.553955078125, \"Y\": 0.29895782470703125}, {\"X\": 0.5509820580482483, \"Y\": 0.31081053614616394}, {\"X\": 0.447523832321167, \"Y\": 0.29785123467445374}]}, \"Id\": \"253a9f03-e12a-4048-8080-029c3c752976\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c85a4612-215e-459a-a652-385ac4a72548\", \"bd9035b3-3ef1-44a4-ba59-0cb9894d76ba\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43872833251953, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10699180513620377, \"Height\": 0.024903278797864914, \"Left\": 0.5699805617332458, \"Top\": 0.30123332142829895}, \"Polygon\": [{\"X\": 0.5729590654373169, \"Y\": 0.30123332142829895}, {\"X\": 0.6769723296165466, \"Y\": 0.31426215171813965}, {\"X\": 0.6739938259124756, \"Y\": 0.32613661885261536}, {\"X\": 0.5699805617332458, \"Y\": 0.31310778856277466}]}, \"Id\": \"68ac3891-8c84-4749-9f8d-882439aeb374\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5738a9e4-d8ed-4bcc-a54a-7953d03081c1\", \"96dc9489-f835-4eec-b1d9-04734ee96c3c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59479522705078, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10631616413593292, \"Height\": 0.02474801428616047, \"Left\": 0.6920949816703796, \"Top\": 0.31645467877388}, \"Polygon\": [{\"X\": 0.6950552463531494, \"Y\": 0.31645467877388}, {\"X\": 0.7984111905097961, \"Y\": 0.3294011652469635}, {\"X\": 0.7954509258270264, \"Y\": 0.3412027060985565}, {\"X\": 0.6920949816703796, \"Y\": 0.32825618982315063}]}, \"Id\": \"59ca5b3f-d4af-4bc4-b0d1-2c2898148e60\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c1ec31df-1d0a-425f-ac76-7864b8b07e3d\", \"9ce0f745-2b69-467f-96db-a33db2561fa0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70576477050781, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10763934999704361, \"Height\": 0.025052044540643692, \"Left\": 0.8138556480407715, \"Top\": 0.33152398467063904}, \"Polygon\": [{\"X\": 0.8168516755104065, \"Y\": 0.33152398467063904}, {\"X\": 0.9214949607849121, \"Y\": 0.34463173151016235}, {\"X\": 0.9184989333152771, \"Y\": 0.35657602548599243}, {\"X\": 0.8138556480407715, \"Y\": 0.3434682786464691}]}, \"Id\": \"2d98d1ff-800a-4d46-88e7-8a69fea0fea7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d32427a8-60b0-4f48-8875-55d9e1d940e8\", \"4b1e5fa5-43d6-4e2b-9d8a-0f548a08bfdb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74417877197266, \"Text\": \"Value\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056986112147569656, \"Height\": 0.01876729540526867, \"Left\": 0.9359301328659058, \"Top\": 0.3468143939971924}, \"Polygon\": [{\"X\": 0.9389417171478271, \"Y\": 0.3468143939971924}, {\"X\": 0.9929162263870239, \"Y\": 0.35357531905174255}, {\"X\": 0.9899046421051025, \"Y\": 0.3655816912651062}, {\"X\": 0.9359301328659058, \"Y\": 0.35882076621055603}]}, \"Id\": \"143cfa46-e8b4-4d07-85e0-9aed96e11e4d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b893ac5d-64bb-4a42-950f-545183915b68\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55970001220703, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10669372230768204, \"Height\": 0.025095362216234207, \"Left\": 0.4424666166305542, \"Top\": 0.3060016930103302}, \"Polygon\": [{\"X\": 0.4455045461654663, \"Y\": 0.3060016930103302}, {\"X\": 0.5491603016853333, \"Y\": 0.3189857602119446}, {\"X\": 0.5461223721504211, \"Y\": 0.3310970664024353}, {\"X\": 0.4424666166305542, \"Y\": 0.3181129992008209}]}, \"Id\": \"487f64a5-b382-4f76-ad55-20db3bd90ed0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"026bb8f2-3cfb-4737-a765-eab5cd50ac9c\", \"0f9d693d-0f4d-4294-9e9f-99f770440dd4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52619934082031, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10706597566604614, \"Height\": 0.025084014981985092, \"Left\": 0.5649439692497253, \"Top\": 0.32126182317733765}, \"Polygon\": [{\"X\": 0.567966878414154, \"Y\": 0.32126182317733765}, {\"X\": 0.6720099449157715, \"Y\": 0.3342943787574768}, {\"X\": 0.6689870357513428, \"Y\": 0.34634584188461304}, {\"X\": 0.5649439692497253, \"Y\": 0.3333132863044739}]}, \"Id\": \"3ff932df-194c-49f8-a0a6-dece78a2ef32\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c5c123e2-d31f-4795-a930-d9c2a4d8ae01\", \"fbe012f8-6711-47a4-bbd1-918c5958a842\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62793731689453, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10618564486503601, \"Height\": 0.024780455976724625, \"Left\": 0.687202513217926, \"Top\": 0.3366488516330719}, \"Polygon\": [{\"X\": 0.6901753544807434, \"Y\": 0.3366488516330719}, {\"X\": 0.7933881282806396, \"Y\": 0.3495774269104004}, {\"X\": 0.7904152870178223, \"Y\": 0.3614293038845062}, {\"X\": 0.687202513217926, \"Y\": 0.3485007584095001}]}, \"Id\": \"fc132645-65e5-4898-b926-cfd69d04506d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"877f03a7-190e-4d49-8580-3f06a5b90d48\", \"4ee4735b-42e4-430b-a917-200f3824dd46\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75453186035156, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10738948732614517, \"Height\": 0.025033868849277496, \"Left\": 0.8089954853057861, \"Top\": 0.35168856382369995}, \"Polygon\": [{\"X\": 0.8119949102401733, \"Y\": 0.35168856382369995}, {\"X\": 0.9163849949836731, \"Y\": 0.36476457118988037}, {\"X\": 0.9133855104446411, \"Y\": 0.37672242522239685}, {\"X\": 0.8089954853057861, \"Y\": 0.36364638805389404}]}, \"Id\": \"6728bfe4-0ec4-446a-a224-8d38ca49620c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca0c5bc4-bfad-4aec-b327-baa79049ecb9\", \"b0c780ba-a54a-4a04-8b92-1f3dc1b19aec\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.42427062988281, \"Text\": \"Value 2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06951037049293518, \"Height\": 0.02080807089805603, \"Left\": 0.9304895997047424, \"Top\": 0.36691758036613464}, \"Polygon\": [{\"X\": 0.9334943294525146, \"Y\": 0.36691758036613464}, {\"X\": 1.0, \"Y\": 0.37574687600135803}, {\"X\": 1.0, \"Y\": 0.3877256512641907}, {\"X\": 0.9304895997047424, \"Y\": 0.3788963556289673}]}, \"Id\": \"74571297-4e1f-4b81-96d2-0f9672d38268\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c915b178-1acc-4470-8f83-2dab9f0585d4\", \"31db4a71-b003-4604-887d-db9c27a944cb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71672821044922, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10636983811855316, \"Height\": 0.02497902140021324, \"Left\": 0.43772655725479126, \"Top\": 0.3263011872768402}, \"Polygon\": [{\"X\": 0.44074487686157227, \"Y\": 0.3263011872768402}, {\"X\": 0.5440964102745056, \"Y\": 0.3392471373081207}, {\"X\": 0.5410780906677246, \"Y\": 0.35128021240234375}, {\"X\": 0.43772655725479126, \"Y\": 0.33833426237106323}]}, \"Id\": \"09911776-0eeb-4b5d-8d50-3a3ad2f92851\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a4e961b9-6ca8-4eb1-ab3a-f3d273e2f19c\", \"4ea13854-79e0-464e-808a-fbb4a0dc8fd1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68927764892578, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10632634907960892, \"Height\": 0.024767465889453888, \"Left\": 0.5602638125419617, \"Top\": 0.3417244553565979}, \"Polygon\": [{\"X\": 0.5632287263870239, \"Y\": 0.3417244553565979}, {\"X\": 0.66659015417099, \"Y\": 0.3546716272830963}, {\"X\": 0.6636252403259277, \"Y\": 0.3664919137954712}, {\"X\": 0.5602638125419617, \"Y\": 0.3535447418689728}]}, \"Id\": \"46c92ebe-857f-4159-9ad0-b5957b804ae7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e969e0-b0bc-417a-9a65-9e83643d1b61\", \"16a655e0-6f11-4c82-8e5a-fed345217634\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39886474609375, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10609619319438934, \"Height\": 0.024763209745287895, \"Left\": 0.6824914216995239, \"Top\": 0.35693982243537903}, \"Polygon\": [{\"X\": 0.6854627132415771, \"Y\": 0.35693982243537903}, {\"X\": 0.7885876297950745, \"Y\": 0.3698573708534241}, {\"X\": 0.7856163382530212, \"Y\": 0.38170304894447327}, {\"X\": 0.6824914216995239, \"Y\": 0.3687855005264282}]}, \"Id\": \"a37e8475-6145-4e05-98a9-088f626e6801\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2a21e6d-5bac-4120-980a-e0de6712d4c3\", \"4c184695-73ec-45a2-956c-e587d7df4592\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7313232421875, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10740307718515396, \"Height\": 0.024832388386130333, \"Left\": 0.8039003610610962, \"Top\": 0.3721083700656891}, \"Polygon\": [{\"X\": 0.8068471550941467, \"Y\": 0.3721083700656891}, {\"X\": 0.9113034009933472, \"Y\": 0.3851926922798157}, {\"X\": 0.9083566069602966, \"Y\": 0.3969407379627228}, {\"X\": 0.8039003610610962, \"Y\": 0.3838564157485962}]}, \"Id\": \"77fb1cde-e56c-42c4-9d6e-9371c47487d2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ff8b9553-96e2-49ea-83c3-3b6c676f0173\", \"cd1dd4d0-5390-457f-9c9d-02692204018c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.45243072509766, \"Text\": \"Value 2.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07388035207986832, \"Height\": 0.02114991843700409, \"Left\": 0.9261196255683899, \"Top\": 0.38720691204071045}, \"Polygon\": [{\"X\": 0.9291393756866455, \"Y\": 0.38720691204071045}, {\"X\": 1.0, \"Y\": 0.3963180482387543}, {\"X\": 0.998856782913208, \"Y\": 0.40835681557655334}, {\"X\": 0.9261196255683899, \"Y\": 0.3992456793785095}]}, \"Id\": \"aed95ba7-4904-474c-bb43-ddd829f28d03\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b94349b1-b8d5-424f-adfc-08c5300d5968\", \"879908af-5359-4674-b617-0e629eb54579\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6803970336914, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10575222969055176, \"Height\": 0.024512214586138725, \"Left\": 0.4329840838909149, \"Top\": 0.3467041552066803}, \"Polygon\": [{\"X\": 0.43590155243873596, \"Y\": 0.3467041552066803}, {\"X\": 0.5387362837791443, \"Y\": 0.35958534479141235}, {\"X\": 0.535818874835968, \"Y\": 0.371216356754303}, {\"X\": 0.4329840838909149, \"Y\": 0.35833513736724854}]}, \"Id\": \"bf7abb5e-5914-403e-ac2e-6e3120cd193b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8bc1b852-4c10-44bd-b2a9-858acecde358\", \"535af8e0-d39d-49f5-b402-a32b37b25106\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65815734863281, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1061197966337204, \"Height\": 0.02457473985850811, \"Left\": 0.5552605986595154, \"Top\": 0.3619561791419983}, \"Polygon\": [{\"X\": 0.5581822991371155, \"Y\": 0.3619561791419983}, {\"X\": 0.661380410194397, \"Y\": 0.37488290667533875}, {\"X\": 0.6584586501121521, \"Y\": 0.38653090596199036}, {\"X\": 0.5552605986595154, \"Y\": 0.3736042082309723}]}, \"Id\": \"5c8f94fc-2603-4e9a-89b9-239bd6108c8a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"381081ed-6870-4928-b566-c03fa8e29d79\", \"f0455c82-e9b6-410d-b695-05b196ada611\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49356079101562, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10598941892385483, \"Height\": 0.024776892736554146, \"Left\": 0.6773269772529602, \"Top\": 0.3770209550857544}, \"Polygon\": [{\"X\": 0.6803053021430969, \"Y\": 0.3770209550857544}, {\"X\": 0.7833163738250732, \"Y\": 0.3899242579936981}, {\"X\": 0.7803381085395813, \"Y\": 0.4017978608608246}, {\"X\": 0.6773269772529602, \"Y\": 0.38889455795288086}]}, \"Id\": \"682d1ec3-974e-41fa-80b0-29e6044c5adf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"45e34e48-5d9c-4f6c-871b-eee907f9b8f4\", \"65575a8d-9dc2-4a59-826b-c4d3a2f4b606\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77436828613281, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10737843811511993, \"Height\": 0.024956874549388885, \"Left\": 0.7990797758102417, \"Top\": 0.39216095209121704}, \"Polygon\": [{\"X\": 0.8020596504211426, \"Y\": 0.39216095209121704}, {\"X\": 0.9064581990242004, \"Y\": 0.4052380323410034}, {\"X\": 0.9034783840179443, \"Y\": 0.41711780428886414}, {\"X\": 0.7990797758102417, \"Y\": 0.40404072403907776}]}, \"Id\": \"bac46b4e-032c-4751-8f93-49fe87b88457\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f842e2d-03b3-4b87-9705-58f9e4e1021a\", \"6b25b34e-7aee-4605-a6cb-16570ddbf948\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35359954833984, \"Text\": \"Value 2.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07828933745622635, \"Height\": 0.021415622904896736, \"Left\": 0.9212360382080078, \"Top\": 0.4074684977531433}, \"Polygon\": [{\"X\": 0.9242424368858337, \"Y\": 0.4074684977531433}, {\"X\": 0.9995253682136536, \"Y\": 0.4168985188007355}, {\"X\": 0.9965189695358276, \"Y\": 0.4288841187953949}, {\"X\": 0.9212360382080078, \"Y\": 0.41945406794548035}]}, \"Id\": \"7e300d86-4ca6-4deb-9bbe-08a40c860dc9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8b227ac3-597f-411d-8f9c-369447ca78a8\", \"dd6e70ca-e469-4858-b64e-7804eff7169e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.0611801147461, \"Text\": \"NO: not-checked -\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13557346165180206, \"Height\": 0.027596792206168175, \"Left\": 0.1500152051448822, \"Top\": 0.38607797026634216}, \"Polygon\": [{\"X\": 0.15276409685611725, \"Y\": 0.38607797026634216}, {\"X\": 0.28558865189552307, \"Y\": 0.4027157127857208}, {\"X\": 0.28283974528312683, \"Y\": 0.4136747419834137}, {\"X\": 0.1500152051448822, \"Y\": 0.39703696966171265}]}, \"Id\": \"7a2a96f9-1f82-47b7-a246-8c3dda700c6b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f90510f-ff9f-43da-b5a1-f330f272e607\", \"44097656-ea40-4aa0-b47d-043218722b44\", \"4cae0bd0-e0c9-40e9-b9f9-3bc9d187933d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63105010986328, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0910312682390213, \"Height\": 0.021443573758006096, \"Left\": 0.559565007686615, \"Top\": 0.4564683139324188}, \"Polygon\": [{\"X\": 0.5621653199195862, \"Y\": 0.4564683139324188}, {\"X\": 0.6505962610244751, \"Y\": 0.4675453007221222}, {\"X\": 0.6479959487915039, \"Y\": 0.47791188955307007}, {\"X\": 0.559565007686615, \"Y\": 0.4668349325656891}]}, \"Id\": \"a8f0016a-53ae-444b-86f0-a8d7c54d9125\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4871509a-17b0-41c2-bf9f-0798a0b4b018\", \"ec970be8-7d91-4055-b498-6912bf7673e1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5682601928711, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0917273610830307, \"Height\": 0.02151726558804512, \"Left\": 0.7014313340187073, \"Top\": 0.47416451573371887}, \"Polygon\": [{\"X\": 0.7040281891822815, \"Y\": 0.47416451573371887}, {\"X\": 0.7931587100028992, \"Y\": 0.48532912135124207}, {\"X\": 0.7905619144439697, \"Y\": 0.4956817626953125}, {\"X\": 0.7014313340187073, \"Y\": 0.4845171570777893}]}, \"Id\": \"b789e8f4-e080-4487-8083-d0fbf236d740\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bfd03d12-819e-4570-9f52-00dc62863d83\", \"5a5da91d-4746-4e75-ba34-eba14b3bb20d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46123504638672, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0912407785654068, \"Height\": 0.021312421187758446, \"Left\": 0.8427841067314148, \"Top\": 0.49191850423812866}, \"Polygon\": [{\"X\": 0.8453436493873596, \"Y\": 0.49191850423812866}, {\"X\": 0.9340248703956604, \"Y\": 0.5030268430709839}, {\"X\": 0.9314653277397156, \"Y\": 0.5132309198379517}, {\"X\": 0.8427841067314148, \"Y\": 0.5021225810050964}]}, \"Id\": \"97081add-42b3-4c9c-9cea-72790d7d103f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"828d2862-7889-4451-94c1-9cb786777bcd\", \"bfbe1097-6226-45c4-8ccd-28b762256431\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60647583007812, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10542291402816772, \"Height\": 0.023506198078393936, \"Left\": 0.13934065401554108, \"Top\": 0.41168662905693054}, \"Polygon\": [{\"X\": 0.14200825989246368, \"Y\": 0.41168662905693054}, {\"X\": 0.2447635680437088, \"Y\": 0.4245578944683075}, {\"X\": 0.242095947265625, \"Y\": 0.4351928234100342}, {\"X\": 0.13934065401554108, \"Y\": 0.4223215579986572}]}, \"Id\": \"b57f8631-aadf-40c0-9dff-7abaeb537808\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5b7c841-5151-49b8-a456-7edddf89f55f\", \"a8ba0666-fa39-41a1-9569-3d8b4832d8d0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51417541503906, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09073829650878906, \"Height\": 0.021349746733903885, \"Left\": 0.5554133057594299, \"Top\": 0.4739399552345276}, \"Polygon\": [{\"X\": 0.557998776435852, \"Y\": 0.4739399552345276}, {\"X\": 0.646151602268219, \"Y\": 0.48498207330703735}, {\"X\": 0.6435660719871521, \"Y\": 0.49528971314430237}, {\"X\": 0.5554133057594299, \"Y\": 0.4842475652694702}]}, \"Id\": \"34427db8-4d95-4904-9a76-cb3b18d45d3e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"46f9adf1-a1f3-41d0-8f71-ee0203d7639a\", \"0aef65de-c92f-4951-b764-d9167332c2ac\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56767272949219, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09143609553575516, \"Height\": 0.021432016044855118, \"Left\": 0.6973470449447632, \"Top\": 0.491657555103302}, \"Polygon\": [{\"X\": 0.6999312043190002, \"Y\": 0.491657555103302}, {\"X\": 0.7887831330299377, \"Y\": 0.5027872920036316}, {\"X\": 0.7861989736557007, \"Y\": 0.5130895972251892}, {\"X\": 0.6973470449447632, \"Y\": 0.5019598603248596}]}, \"Id\": \"ae5b36d0-89b5-4ecf-8674-4f5802c3d278\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af8812a7-1e37-4d5f-baad-94911a8fa288\", \"4645df6b-2e77-4356-abe1-6a9254f0e97d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5699234008789, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09127961099147797, \"Height\": 0.02139965258538723, \"Left\": 0.8387045860290527, \"Top\": 0.509328305721283}, \"Polygon\": [{\"X\": 0.8412854075431824, \"Y\": 0.509328305721283}, {\"X\": 0.9299841523170471, \"Y\": 0.5204388499259949}, {\"X\": 0.9274032711982727, \"Y\": 0.5307279825210571}, {\"X\": 0.8387045860290527, \"Y\": 0.5196174383163452}]}, \"Id\": \"9f414093-4abf-471c-a2c5-b8c4efa45bbe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f499d5f7-879c-4b59-a1b9-3febc5f9b139\", \"bae6fe45-7b34-4fee-bbeb-1ee68a6b0ec6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65238189697266, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09105285257101059, \"Height\": 0.021255314350128174, \"Left\": 0.5507992506027222, \"Top\": 0.49147239327430725}, \"Polygon\": [{\"X\": 0.5533500909805298, \"Y\": 0.49147239327430725}, {\"X\": 0.641852080821991, \"Y\": 0.5025582909584045}, {\"X\": 0.6393012404441833, \"Y\": 0.512727677822113}, {\"X\": 0.5507992506027222, \"Y\": 0.5016418099403381}]}, \"Id\": \"297ce1cf-7b59-4fe1-ab1a-be827ee100a2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"be81fad9-0a30-4267-904b-654bd12fbc88\", \"c9a97d47-2de2-4984-8d7d-22898945519d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63468933105469, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09138494729995728, \"Height\": 0.021334417164325714, \"Left\": 0.6928452849388123, \"Top\": 0.509116530418396}, \"Polygon\": [{\"X\": 0.6954058408737183, \"Y\": 0.509116530418396}, {\"X\": 0.7842302322387695, \"Y\": 0.5202428102493286}, {\"X\": 0.7816696763038635, \"Y\": 0.5304509401321411}, {\"X\": 0.6928452849388123, \"Y\": 0.5193247199058533}]}, \"Id\": \"c09abe37-d8bb-48a7-b99e-c51a2bed03a5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f008029-5f8e-4802-a14f-a6feea06b9e3\", \"34d047bd-e4ad-4083-a73d-f6452a24df4b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.33431243896484, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0913177952170372, \"Height\": 0.02124306932091713, \"Left\": 0.8338845372200012, \"Top\": 0.5268027782440186}, \"Polygon\": [{\"X\": 0.8364236354827881, \"Y\": 0.5268027782440186}, {\"X\": 0.9252023100852966, \"Y\": 0.5379233360290527}, {\"X\": 0.9226632714271545, \"Y\": 0.5480458736419678}, {\"X\": 0.8338845372200012, \"Y\": 0.5369253158569336}]}, \"Id\": \"72e4dc74-f86d-4f1f-9c06-5674193ba6e6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d74f97e8-43f8-41dd-b3ae-92e1de1ca4bd\", \"5cfbcfce-5b58-4db4-84e1-ac815ef5e4c1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6798095703125, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09064528346061707, \"Height\": 0.021252207458019257, \"Left\": 0.5468153357505798, \"Top\": 0.5087769627571106}, \"Polygon\": [{\"X\": 0.5493786334991455, \"Y\": 0.5087769627571106}, {\"X\": 0.6374606490135193, \"Y\": 0.5198102593421936}, {\"X\": 0.6348973512649536, \"Y\": 0.5300291776657104}, {\"X\": 0.5468153357505798, \"Y\": 0.5189959406852722}]}, \"Id\": \"eac5878e-bd55-4f2c-a8d9-d6eddb116e4d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"111e2f0e-2db2-46a5-9050-a7996149cce4\", \"70243060-6497-4bef-a1ba-f1a50dc94336\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63186645507812, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09155810624361038, \"Height\": 0.021360868588089943, \"Left\": 0.6884196996688843, \"Top\": 0.5264736413955688}, \"Polygon\": [{\"X\": 0.6909815073013306, \"Y\": 0.5264736413955688}, {\"X\": 0.7799778580665588, \"Y\": 0.5376214385032654}, {\"X\": 0.7774160504341125, \"Y\": 0.5478345155715942}, {\"X\": 0.6884196996688843, \"Y\": 0.5366867184638977}]}, \"Id\": \"6b37cade-5196-479d-a83a-f7995a4a0785\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8946f352-fe57-4ef6-b6c9-5d1911290fe5\", \"812f6035-c7af-427e-ad13-edace1d5805d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46218872070312, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09113804250955582, \"Height\": 0.02117234282195568, \"Left\": 0.8298013210296631, \"Top\": 0.5441845655441284}, \"Polygon\": [{\"X\": 0.8323279023170471, \"Y\": 0.5441845655441284}, {\"X\": 0.9209393262863159, \"Y\": 0.5552841424942017}, {\"X\": 0.9184127449989319, \"Y\": 0.5653569102287292}, {\"X\": 0.8298013210296631, \"Y\": 0.554257333278656}]}, \"Id\": \"5742d35a-8b92-4906-b05a-0109dcb43881\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a3d362f0-a0fb-41db-8e3a-65d3f89f630f\", \"a3e9be1e-fc99-423b-be6f-9eac7a6ab574\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63706970214844, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09083011001348495, \"Height\": 0.021215494722127914, \"Left\": 0.5422911643981934, \"Top\": 0.5263026356697083}, \"Polygon\": [{\"X\": 0.5448389053344727, \"Y\": 0.5263026356697083}, {\"X\": 0.6331212520599365, \"Y\": 0.5373610258102417}, {\"X\": 0.6305735111236572, \"Y\": 0.5475181341171265}, {\"X\": 0.5422911643981934, \"Y\": 0.5364598035812378}]}, \"Id\": \"601c78de-78b1-413f-a737-8f5c074f700c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cb18f172-bf08-4427-9e3f-3d5fb8770920\", \"9d70cc74-f068-4019-9484-63094703d2da\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63143920898438, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09109734743833542, \"Height\": 0.021209564059972763, \"Left\": 0.6844149827957153, \"Top\": 0.5439586043357849}, \"Polygon\": [{\"X\": 0.686952531337738, \"Y\": 0.5439586043357849}, {\"X\": 0.7755123376846313, \"Y\": 0.5550516843795776}, {\"X\": 0.7729747891426086, \"Y\": 0.5651681423187256}, {\"X\": 0.6844149827957153, \"Y\": 0.5540750622749329}]}, \"Id\": \"cf3a4f14-0533-4ad5-8a88-2df7ffa91ead\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a83e9d6b-a910-45c1-b2d2-e2cc043191bc\", \"1063c256-0c51-47f0-8154-2558a9c85d58\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4027099609375, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09108927845954895, \"Height\": 0.021256083622574806, \"Left\": 0.8256961703300476, \"Top\": 0.5615752339363098}, \"Polygon\": [{\"X\": 0.828245997428894, \"Y\": 0.5615752339363098}, {\"X\": 0.9167854189872742, \"Y\": 0.572665810585022}, {\"X\": 0.914235532283783, \"Y\": 0.5828313231468201}, {\"X\": 0.8256961703300476, \"Y\": 0.5717407464981079}]}, \"Id\": \"432bd30a-eac4-4907-af64-3afa6c7986bf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1149de9-26a3-4902-ab5c-8e420b328609\", \"0712e316-a217-4788-8b7e-c663c24c1631\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64726257324219, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09108401834964752, \"Height\": 0.021323291584849358, \"Left\": 0.5377062559127808, \"Top\": 0.54361891746521}, \"Polygon\": [{\"X\": 0.5402737259864807, \"Y\": 0.54361891746521}, {\"X\": 0.6287903189659119, \"Y\": 0.5547065734863281}, {\"X\": 0.6262228488922119, \"Y\": 0.5649421811103821}, {\"X\": 0.5377062559127808, \"Y\": 0.5538544654846191}]}, \"Id\": \"1dd0e774-73ef-4ac4-9479-b1db0a53bfd0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0922dad-a91e-4b55-ace4-38a6461d5f6a\", \"4f6bdc96-6dda-443f-85fb-c0de1928ca1b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52500915527344, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09127909690141678, \"Height\": 0.0214384812861681, \"Left\": 0.6798875331878662, \"Top\": 0.5612499713897705}, \"Polygon\": [{\"X\": 0.6824784874916077, \"Y\": 0.5612499713897705}, {\"X\": 0.7711666226387024, \"Y\": 0.5723592042922974}, {\"X\": 0.7685756683349609, \"Y\": 0.5826885104179382}, {\"X\": 0.6798875331878662, \"Y\": 0.5715792775154114}]}, \"Id\": \"bf03f0bb-53cd-47f6-830a-e56da8c7e74b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3e35543-a5e3-4b9b-bc06-5b2b0a25180c\", \"30cd649c-5149-4fd5-a3cb-2687d7fb3dba\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.90354919433594, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09110060334205627, \"Height\": 0.021267473697662354, \"Left\": 0.8209677338600159, \"Top\": 0.5790095329284668}, \"Polygon\": [{\"X\": 0.8235201835632324, \"Y\": 0.5790095329284668}, {\"X\": 0.9120683670043945, \"Y\": 0.5901011824607849}, {\"X\": 0.909515917301178, \"Y\": 0.6002770066261292}, {\"X\": 0.8209677338600159, \"Y\": 0.589185357093811}]}, \"Id\": \"d1522245-e318-4688-8f3d-d55d5e5d8ddb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79b15d7b-35c6-4c3d-bbf9-8cb63d0fc6f2\", \"18bc4b21-ba4f-4309-a9f5-1874e4740d26\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60052490234375, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09080779552459717, \"Height\": 0.02125900611281395, \"Left\": 0.5338016152381897, \"Top\": 0.5609956979751587}, \"Polygon\": [{\"X\": 0.5363613963127136, \"Y\": 0.5609956979751587}, {\"X\": 0.6246094107627869, \"Y\": 0.5720497369766235}, {\"X\": 0.6220496892929077, \"Y\": 0.5822546482086182}, {\"X\": 0.5338016152381897, \"Y\": 0.5712006092071533}]}, \"Id\": \"1aac89ea-8bff-495e-80f4-e8941995a3e9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82ceda64-c961-4f25-8989-7a4a89c3ffa9\", \"7b63d4f1-80f9-4972-9b71-606a85d41b7d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49609375, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09149120002985, \"Height\": 0.021434694528579712, \"Left\": 0.6754788756370544, \"Top\": 0.5786596536636353}, \"Polygon\": [{\"X\": 0.6780619621276855, \"Y\": 0.5786596536636353}, {\"X\": 0.7669700980186462, \"Y\": 0.5897963643074036}, {\"X\": 0.7643870115280151, \"Y\": 0.6000943183898926}, {\"X\": 0.6754788756370544, \"Y\": 0.5889576077461243}]}, \"Id\": \"c246e647-a987-4a10-9b79-d135554a7b4c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58cea103-ed06-49af-945c-1bf4cdafa8f3\", \"190f05ca-a941-4195-8a5c-b11d9bb0b3bd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05892944335938, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09103352576494217, \"Height\": 0.021356604993343353, \"Left\": 0.8168944716453552, \"Top\": 0.5962925553321838}, \"Polygon\": [{\"X\": 0.8194721937179565, \"Y\": 0.5962925553321838}, {\"X\": 0.9079279899597168, \"Y\": 0.6073726415634155}, {\"X\": 0.9053502678871155, \"Y\": 0.6176491975784302}, {\"X\": 0.8168944716453552, \"Y\": 0.6065691113471985}]}, \"Id\": \"2c8835ce-bf00-46d0-abd6-f5d838cbbedd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"de1bdabb-de57-407e-af0a-d497be579c7a\", \"6ba70da5-be67-4178-9f98-17767e3192b0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64812469482422, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09077972918748856, \"Height\": 0.02158305235207081, \"Left\": 0.5294229984283447, \"Top\": 0.5781894326210022}, \"Polygon\": [{\"X\": 0.532067596912384, \"Y\": 0.5781894326210022}, {\"X\": 0.6202027201652527, \"Y\": 0.5892293453216553}, {\"X\": 0.6175581216812134, \"Y\": 0.5997725129127502}, {\"X\": 0.5294229984283447, \"Y\": 0.5887326002120972}]}, \"Id\": \"1b93c089-5415-499a-b13d-ac257a73777e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0993119a-a46d-4360-9aee-743ccd361164\", \"9303caf2-6af5-4122-96a0-fa662493c09d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66847229003906, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09120680391788483, \"Height\": 0.02135475166141987, \"Left\": 0.671356201171875, \"Top\": 0.5960526466369629}, \"Polygon\": [{\"X\": 0.6739278435707092, \"Y\": 0.5960526466369629}, {\"X\": 0.7625629901885986, \"Y\": 0.6071552038192749}, {\"X\": 0.7599914073944092, \"Y\": 0.6174073815345764}, {\"X\": 0.671356201171875, \"Y\": 0.6063048243522644}]}, \"Id\": \"b1dd28b7-da0b-46d6-935d-063316d5e851\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23fb50ee-3a9f-4c3d-b363-591fe0f8bcaa\", \"eeaa5da0-56bc-4567-a84e-1324fe953427\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42102813720703, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09071309119462967, \"Height\": 0.02122904732823372, \"Left\": 0.8130631446838379, \"Top\": 0.6137460470199585}, \"Polygon\": [{\"X\": 0.8156182169914246, \"Y\": 0.6137460470199585}, {\"X\": 0.903776228427887, \"Y\": 0.6247888803482056}, {\"X\": 0.9012211561203003, \"Y\": 0.6349751353263855}, {\"X\": 0.8130631446838379, \"Y\": 0.6239323616027832}]}, \"Id\": \"df5fe424-6f9f-4ea3-99fb-547eaee5c664\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1d46c116-ef00-48b8-8548-755c09d5df15\", \"9a305d26-8ab8-4297-b5ee-51f21939af9f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65718078613281, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10584428906440735, \"Height\": 0.02400524914264679, \"Left\": 0.10833088308572769, \"Top\": 0.5404558777809143}, \"Polygon\": [{\"X\": 0.11111406236886978, \"Y\": 0.5404558777809143}, {\"X\": 0.21417516469955444, \"Y\": 0.5533654093742371}, {\"X\": 0.21139198541641235, \"Y\": 0.5644611120223999}, {\"X\": 0.10833088308572769, \"Y\": 0.5515515208244324}]}, \"Id\": \"346da833-18b7-4d38-aeb6-9448cd386e26\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b64d542c-bd48-416c-be2a-0301abeebcf7\", \"f358acb3-0a4a-45e4-8c98-13dc6922f10a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77986145019531, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13517463207244873, \"Height\": 0.027248675003647804, \"Left\": 0.10364584624767303, \"Top\": 0.5567723512649536}, \"Polygon\": [{\"X\": 0.10631752759218216, \"Y\": 0.5567723512649536}, {\"X\": 0.23882047832012177, \"Y\": 0.5733698606491089}, {\"X\": 0.23614878952503204, \"Y\": 0.5840210318565369}, {\"X\": 0.10364584624767303, \"Y\": 0.5674235224723816}]}, \"Id\": \"f06388fa-988b-4231-af67-f7654874f20d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e7e00343-44d2-4db6-86dd-f9ea4490829d\", \"723b0692-bc69-4c64-b8b6-7edd9e8ac9b9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 89.84817504882812, \"Text\": \"Hello World barcode here!\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11161923408508301, \"Height\": 0.01802712120115757, \"Left\": 0.6550191640853882, \"Top\": 0.7396047711372375}, \"Polygon\": [{\"X\": 0.6560668349266052, \"Y\": 0.7396047711372375}, {\"X\": 0.7666383981704712, \"Y\": 0.7534551024436951}, {\"X\": 0.7655907273292542, \"Y\": 0.7576318979263306}, {\"X\": 0.6550191640853882, \"Y\": 0.743781566619873}]}, \"Id\": \"ba5b9150-9e64-42c3-a342-5c5cc99d3e1a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d6adaf77-5cd1-449c-995f-0983a9a1ddef\", \"6dd87cb2-d05b-43d7-895a-99df5f2de7b2\", \"45a1f84e-e511-49c9-9ba1-6e7c29d7658d\", \"6ab2700c-b1af-47b3-b877-d2decfd29817\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49349212646484, \"Text\": \"Date:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044818323105573654, \"Height\": 0.015888528898358345, \"Left\": 0.9013816714286804, \"Top\": 0.1163220927119255}, \"Polygon\": [{\"X\": 0.9040424823760986, \"Y\": 0.1163220927119255}, {\"X\": 0.9462000131607056, \"Y\": 0.12160279601812363}, {\"X\": 0.9435392022132874, \"Y\": 0.1322106122970581}, {\"X\": 0.9013816714286804, \"Y\": 0.12692990899085999}]}, \"Id\": \"cbb3c354-2014-4e03-a4f8-14132692c2e8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 76.52082061767578, \"Text\": \"2020-0\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05181581526994705, \"Height\": 0.017187001183629036, \"Left\": 0.9481841921806335, \"Top\": 0.12202782183885574}, \"Polygon\": [{\"X\": 0.9508718848228455, \"Y\": 0.12202782183885574}, {\"X\": 1.0, \"Y\": 0.128499835729599}, {\"X\": 0.9998522400856018, \"Y\": 0.13921482861042023}, {\"X\": 0.9481841921806335, \"Y\": 0.13274282217025757}]}, \"Id\": \"64ff3184-1859-44c6-8caa-28b1f8926724\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45420837402344, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.054003410041332245, \"Height\": 0.016905847936868668, \"Left\": 0.23685982823371887, \"Top\": 0.061276186257600784}, \"Polygon\": [{\"X\": 0.23948614299297333, \"Y\": 0.061276186257600784}, {\"X\": 0.2908632457256317, \"Y\": 0.06771174818277359}, {\"X\": 0.28823691606521606, \"Y\": 0.07818203419446945}, {\"X\": 0.23685982823371887, \"Y\": 0.07174647599458694}]}, \"Id\": \"3d317707-2377-430e-816c-bd746ad78933\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57685089111328, \"Text\": \"SomeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09415393322706223, \"Height\": 0.021856455132365227, \"Left\": 0.29292532801628113, \"Top\": 0.0683148130774498}, \"Polygon\": [{\"X\": 0.2955312728881836, \"Y\": 0.0683148130774498}, {\"X\": 0.38707926869392395, \"Y\": 0.07978223264217377}, {\"X\": 0.38447335362434387, \"Y\": 0.09017127007246017}, {\"X\": 0.29292532801628113, \"Y\": 0.0787038505077362}]}, \"Id\": \"3d14e955-502c-43c7-8e49-234911bf2c4c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76817321777344, \"Text\": \"Key1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04664025828242302, \"Height\": 0.01819119043648243, \"Left\": 0.8907472491264343, \"Top\": 0.17026552557945251}, \"Polygon\": [{\"X\": 0.8939452767372131, \"Y\": 0.17026552557945251}, {\"X\": 0.9373874664306641, \"Y\": 0.1757071614265442}, {\"X\": 0.9341894388198853, \"Y\": 0.1884567141532898}, {\"X\": 0.8907472491264343, \"Y\": 0.18301509320735931}]}, \"Id\": \"e6fa0691-f830-46d4-99ac-1718c7cc5876\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.93285369873047, \"Text\": \"value1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.054515790194272995, \"Height\": 0.017170274630188942, \"Left\": 0.9383904337882996, \"Top\": 0.17600062489509583}, \"Polygon\": [{\"X\": 0.9410685896873474, \"Y\": 0.17600062489509583}, {\"X\": 0.9929062128067017, \"Y\": 0.1824938803911209}, {\"X\": 0.9902280569076538, \"Y\": 0.19317090511322021}, {\"X\": 0.9383904337882996, \"Y\": 0.18667766451835632}]}, \"Id\": \"58c4bff9-5fd3-412b-85f4-3d1da90c0a6f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72874450683594, \"Text\": \"Key2:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04590299353003502, \"Height\": 0.017979281023144722, \"Left\": 0.885246992111206, \"Top\": 0.19416435062885284}, \"Polygon\": [{\"X\": 0.8884140849113464, \"Y\": 0.19416435062885284}, {\"X\": 0.9311500191688538, \"Y\": 0.19951750338077545}, {\"X\": 0.9279829263687134, \"Y\": 0.21214362978935242}, {\"X\": 0.885246992111206, \"Y\": 0.2067904770374298}]}, \"Id\": \"65197cab-51e5-48a2-9b6a-bbdc19566ab1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67433166503906, \"Text\": \"value2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0555286668241024, \"Height\": 0.017272209748625755, \"Left\": 0.932365357875824, \"Top\": 0.1997719705104828}, \"Polygon\": [{\"X\": 0.9350370764732361, \"Y\": 0.1997719705104828}, {\"X\": 0.9878939986228943, \"Y\": 0.20639289915561676}, {\"X\": 0.9852222800254822, \"Y\": 0.2170441895723343}, {\"X\": 0.932365357875824, \"Y\": 0.21042326092720032}]}, \"Id\": \"d5f9d3a4-66c0-4f43-a70a-186433cdb75e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7724380493164, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04823966324329376, \"Height\": 0.01629020646214485, \"Left\": 0.236606627702713, \"Top\": 0.15924955904483795}, \"Polygon\": [{\"X\": 0.2392604798078537, \"Y\": 0.15924955904483795}, {\"X\": 0.28484630584716797, \"Y\": 0.16495969891548157}, {\"X\": 0.2821924388408661, \"Y\": 0.1755397617816925}, {\"X\": 0.236606627702713, \"Y\": 0.1698296219110489}]}, \"Id\": \"1f48bdec-5af1-4890-a8d1-266ae7807858\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08683013916016, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04096848890185356, \"Height\": 0.015298455953598022, \"Left\": 0.2872263491153717, \"Top\": 0.16576245427131653}, \"Polygon\": [{\"X\": 0.28985923528671265, \"Y\": 0.16576245427131653}, {\"X\": 0.32819485664367676, \"Y\": 0.1705644130706787}, {\"X\": 0.3255619704723358, \"Y\": 0.18106091022491455}, {\"X\": 0.2872263491153717, \"Y\": 0.17625893652439117}]}, \"Id\": \"a220b192-e02b-4961-af1f-15f5c5c6f44c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70954132080078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048332396894693375, \"Height\": 0.016151536256074905, \"Left\": 0.34442245960235596, \"Top\": 0.172691211104393}, \"Polygon\": [{\"X\": 0.3470373749732971, \"Y\": 0.172691211104393}, {\"X\": 0.39275485277175903, \"Y\": 0.17841783165931702}, {\"X\": 0.39013993740081787, \"Y\": 0.1888427436351776}, {\"X\": 0.34442245960235596, \"Y\": 0.1831161081790924}]}, \"Id\": \"092c2c6c-2c67-4184-9b5e-5cc4115c2334\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49980926513672, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0401417575776577, \"Height\": 0.014950459823012352, \"Left\": 0.3958457410335541, \"Top\": 0.17940863966941833}, \"Polygon\": [{\"X\": 0.39841532707214355, \"Y\": 0.17940863966941833}, {\"X\": 0.4359875023365021, \"Y\": 0.1841149777173996}, {\"X\": 0.4334179162979126, \"Y\": 0.19435909390449524}, {\"X\": 0.3958457410335541, \"Y\": 0.18965275585651398}]}, \"Id\": \"d1b86344-a832-4453-af1b-1281ab89fd89\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68710327148438, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0481976754963398, \"Height\": 0.016046974807977676, \"Left\": 0.4525890648365021, \"Top\": 0.18625476956367493}, \"Polygon\": [{\"X\": 0.4551812708377838, \"Y\": 0.18625476956367493}, {\"X\": 0.5007867217063904, \"Y\": 0.19196735322475433}, {\"X\": 0.49819451570510864, \"Y\": 0.2023017406463623}, {\"X\": 0.4525890648365021, \"Y\": 0.1965891420841217}]}, \"Id\": \"9717af92-6c00-45b0-a170-2fd2de6df43c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51151275634766, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04023449495434761, \"Height\": 0.01502789556980133, \"Left\": 0.5034666061401367, \"Top\": 0.19273202121257782}, \"Polygon\": [{\"X\": 0.5060532093048096, \"Y\": 0.19273202121257782}, {\"X\": 0.5437011122703552, \"Y\": 0.19744783639907837}, {\"X\": 0.5411144495010376, \"Y\": 0.20775991678237915}, {\"X\": 0.5034666061401367, \"Y\": 0.2030440866947174}]}, \"Id\": \"86bbc69e-0b65-4b6c-ab90-06a1dc905798\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81289672851562, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04820951819419861, \"Height\": 0.016141336411237717, \"Left\": 0.23237892985343933, \"Top\": 0.17665593326091766}, \"Polygon\": [{\"X\": 0.23499520123004913, \"Y\": 0.17665593326091766}, {\"X\": 0.28058844804763794, \"Y\": 0.1823669970035553}, {\"X\": 0.27797219157218933, \"Y\": 0.19279727339744568}, {\"X\": 0.23237892985343933, \"Y\": 0.18708620965480804}]}, \"Id\": \"1c4b5a96-765b-403e-9826-01c08ad6fc44\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.20344543457031, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040582433342933655, \"Height\": 0.015037313103675842, \"Left\": 0.2829892039299011, \"Top\": 0.18307852745056152}, \"Polygon\": [{\"X\": 0.2855669856071472, \"Y\": 0.18307852745056152}, {\"X\": 0.32357165217399597, \"Y\": 0.18783903121948242}, {\"X\": 0.3209938704967499, \"Y\": 0.19811584055423737}, {\"X\": 0.2829892039299011, \"Y\": 0.19335532188415527}]}, \"Id\": \"746c998c-2e89-4a81-a5c6-dcc39d50d0c4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71878814697266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04812444746494293, \"Height\": 0.016031822189688683, \"Left\": 0.34027987718582153, \"Top\": 0.1901080161333084}, \"Polygon\": [{\"X\": 0.3428705632686615, \"Y\": 0.1901080161333084}, {\"X\": 0.38840433955192566, \"Y\": 0.19581164419651031}, {\"X\": 0.3858136534690857, \"Y\": 0.20613984763622284}, {\"X\": 0.34027987718582153, \"Y\": 0.20043621957302094}]}, \"Id\": \"c5b4791f-505b-443c-a565-d29e8afa4fdd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57575988769531, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04044869542121887, \"Height\": 0.014979579485952854, \"Left\": 0.39114123582839966, \"Top\": 0.19657112658023834}, \"Polygon\": [{\"X\": 0.39370840787887573, \"Y\": 0.19657112658023834}, {\"X\": 0.43158993124961853, \"Y\": 0.2013162076473236}, {\"X\": 0.42902275919914246, \"Y\": 0.21155069768428802}, {\"X\": 0.39114123582839966, \"Y\": 0.20680561661720276}]}, \"Id\": \"aef419a3-5726-4207-84fb-fae403bfd964\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73080444335938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04782482609152794, \"Height\": 0.015912767499685287, \"Left\": 0.44844722747802734, \"Top\": 0.20363935828208923}, \"Polygon\": [{\"X\": 0.45101678371429443, \"Y\": 0.20363935828208923}, {\"X\": 0.4962720572948456, \"Y\": 0.20930808782577515}, {\"X\": 0.4937024712562561, \"Y\": 0.21955211460590363}, {\"X\": 0.44844722747802734, \"Y\": 0.2138833850622177}]}, \"Id\": \"77eeac22-26de-4376-9bcc-057eb42f15ff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41513061523438, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04049990698695183, \"Height\": 0.015005714260041714, \"Left\": 0.4989837110042572, \"Top\": 0.20993569493293762}, \"Polygon\": [{\"X\": 0.5015559792518616, \"Y\": 0.20993569493293762}, {\"X\": 0.5394836068153381, \"Y\": 0.2146865576505661}, {\"X\": 0.5369113683700562, \"Y\": 0.2249414026737213}, {\"X\": 0.4989837110042572, \"Y\": 0.22019053995609283}]}, \"Id\": \"b7c23c96-5d8f-400d-935e-17a5d35ae684\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79957580566406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048120222985744476, \"Height\": 0.015910228714346886, \"Left\": 0.22824923694133759, \"Top\": 0.1943676918745041}, \"Polygon\": [{\"X\": 0.2308085560798645, \"Y\": 0.1943676918745041}, {\"X\": 0.27636945247650146, \"Y\": 0.200074702501297}, {\"X\": 0.27381014823913574, \"Y\": 0.21027791500091553}, {\"X\": 0.22824923694133759, \"Y\": 0.20457090437412262}]}, \"Id\": \"e9e72fa9-26af-4fdf-b9b6-4babf3bd4eeb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.03057098388672, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040918007493019104, \"Height\": 0.014904378913342953, \"Left\": 0.27884313464164734, \"Top\": 0.2007698267698288}, \"Polygon\": [{\"X\": 0.28137558698654175, \"Y\": 0.2007698267698288}, {\"X\": 0.31976112723350525, \"Y\": 0.2055780440568924}, {\"X\": 0.31722867488861084, \"Y\": 0.21567420661449432}, {\"X\": 0.27884313464164734, \"Y\": 0.21086598932743073}]}, \"Id\": \"37f7846d-cc57-4ada-ba77-a6c90505e1ba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77581787109375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047928351908922195, \"Height\": 0.015858402475714684, \"Left\": 0.33615389466285706, \"Top\": 0.20779980719089508}, \"Polygon\": [{\"X\": 0.33870601654052734, \"Y\": 0.20779980719089508}, {\"X\": 0.38408225774765015, \"Y\": 0.21348369121551514}, {\"X\": 0.38153013586997986, \"Y\": 0.2236582189798355}, {\"X\": 0.33615389466285706, \"Y\": 0.21797433495521545}]}, \"Id\": \"b8a74317-5cf5-4575-b87e-d9079cd62221\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36087036132812, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04056575521826744, \"Height\": 0.014734779484570026, \"Left\": 0.387098491191864, \"Top\": 0.21430498361587524}, \"Polygon\": [{\"X\": 0.38959845900535583, \"Y\": 0.21430498361587524}, {\"X\": 0.42766425013542175, \"Y\": 0.21907314658164978}, {\"X\": 0.42516428232192993, \"Y\": 0.2290397584438324}, {\"X\": 0.387098491191864, \"Y\": 0.22427159547805786}]}, \"Id\": \"2354d721-8b1d-48d6-8deb-a963c4b6fb25\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71709442138672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047597695142030716, \"Height\": 0.01597408577799797, \"Left\": 0.4443313777446747, \"Top\": 0.22125715017318726}, \"Polygon\": [{\"X\": 0.4469241797924042, \"Y\": 0.22125715017318726}, {\"X\": 0.4919290840625763, \"Y\": 0.22689451277256012}, {\"X\": 0.4893362820148468, \"Y\": 0.23723122477531433}, {\"X\": 0.4443313777446747, \"Y\": 0.23159386217594147}]}, \"Id\": \"373a73e9-933a-4729-a293-e8a49517a3ef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59088134765625, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04065302386879921, \"Height\": 0.014813585206866264, \"Left\": 0.4946189522743225, \"Top\": 0.2276897430419922}, \"Polygon\": [{\"X\": 0.49713650345802307, \"Y\": 0.2276897430419922}, {\"X\": 0.5352720022201538, \"Y\": 0.23246663808822632}, {\"X\": 0.5327544212341309, \"Y\": 0.2425033301115036}, {\"X\": 0.4946189522743225, \"Y\": 0.23772643506526947}]}, \"Id\": \"d790a25d-8bbb-4562-af20-596f2a68e3a4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83686065673828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055482037365436554, \"Height\": 0.018421899527311325, \"Left\": 0.45300593972206116, \"Top\": 0.26580432057380676}, \"Polygon\": [{\"X\": 0.4559769034385681, \"Y\": 0.26580432057380676}, {\"X\": 0.5084879994392395, \"Y\": 0.2723819315433502}, {\"X\": 0.5055170059204102, \"Y\": 0.2842262089252472}, {\"X\": 0.45300593972206116, \"Y\": 0.2776486277580261}]}, \"Id\": \"a1c7f27a-59ec-46c5-8dda-597763a2f7e9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38579559326172, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04733249172568321, \"Height\": 0.01701321266591549, \"Left\": 0.5116925239562988, \"Top\": 0.2733907997608185}, \"Polygon\": [{\"X\": 0.5145630240440369, \"Y\": 0.2733907997608185}, {\"X\": 0.5590250492095947, \"Y\": 0.2789601683616638}, {\"X\": 0.5561544895172119, \"Y\": 0.2904040217399597}, {\"X\": 0.5116925239562988, \"Y\": 0.2848346531391144}]}, \"Id\": \"4bcd797c-a8bb-4f60-bc3c-70717538b4c2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74788665771484, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05511166900396347, \"Height\": 0.018483078107237816, \"Left\": 0.5753546953201294, \"Top\": 0.2810039222240448}, \"Polygon\": [{\"X\": 0.5783535242080688, \"Y\": 0.2810039222240448}, {\"X\": 0.6304664015769958, \"Y\": 0.28753164410591125}, {\"X\": 0.6274675726890564, \"Y\": 0.29948699474334717}, {\"X\": 0.5753546953201294, \"Y\": 0.2929592728614807}]}, \"Id\": \"0190eeb4-2346-401a-9f57-e913463265f3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28524780273438, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04817960783839226, \"Height\": 0.01711634360253811, \"Left\": 0.6334211826324463, \"Top\": 0.2884867787361145}, \"Polygon\": [{\"X\": 0.6362909078598022, \"Y\": 0.2884867787361145}, {\"X\": 0.6816007494926453, \"Y\": 0.2941623628139496}, {\"X\": 0.6787310242652893, \"Y\": 0.30560311675071716}, {\"X\": 0.6334211826324463, \"Y\": 0.29992756247520447}]}, \"Id\": \"95dc8994-d73f-46db-a510-4e838fce696b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81787872314453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05612991750240326, \"Height\": 0.0186079740524292, \"Left\": 0.6970701813697815, \"Top\": 0.2961287498474121}, \"Polygon\": [{\"X\": 0.7000682950019836, \"Y\": 0.2961287498474121}, {\"X\": 0.753200113773346, \"Y\": 0.3027840852737427}, {\"X\": 0.750201940536499, \"Y\": 0.3147367238998413}, {\"X\": 0.6970701813697815, \"Y\": 0.30808135867118835}]}, \"Id\": \"9ebabc69-c494-443f-bfe8-aafaca8876d0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39620208740234, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047294292598962784, \"Height\": 0.017065763473510742, \"Left\": 0.7560858130455017, \"Top\": 0.3038155734539032}, \"Polygon\": [{\"X\": 0.7589712142944336, \"Y\": 0.3038155734539032}, {\"X\": 0.8033801317214966, \"Y\": 0.3093782961368561}, {\"X\": 0.8004947304725647, \"Y\": 0.32088133692741394}, {\"X\": 0.7560858130455017, \"Y\": 0.31531861424446106}]}, \"Id\": \"3526d21e-54fe-4c19-b7ef-7b5945862693\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72048950195312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056020669639110565, \"Height\": 0.018621210008859634, \"Left\": 0.8187446594238281, \"Top\": 0.31135132908821106}, \"Polygon\": [{\"X\": 0.821749746799469, \"Y\": 0.31135132908821106}, {\"X\": 0.8747653365135193, \"Y\": 0.31799212098121643}, {\"X\": 0.8717601895332336, \"Y\": 0.3299725353717804}, {\"X\": 0.8187446594238281, \"Y\": 0.323331743478775}]}, \"Id\": \"45717906-5a8b-43c1-8fe5-18cd0a9036fb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53192138671875, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04824906587600708, \"Height\": 0.01725817658007145, \"Left\": 0.878107488155365, \"Top\": 0.3190290033817291}, \"Polygon\": [{\"X\": 0.8810117244720459, \"Y\": 0.3190290033817291}, {\"X\": 0.9263565540313721, \"Y\": 0.3247089684009552}, {\"X\": 0.9234523177146912, \"Y\": 0.3362872004508972}, {\"X\": 0.878107488155365, \"Y\": 0.33060723543167114}]}, \"Id\": \"5bba3a13-5ff7-4590-8692-4ada49301817\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87040710449219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05573349446058273, \"Height\": 0.018338074907660484, \"Left\": 0.941425621509552, \"Top\": 0.32679933309555054}, \"Polygon\": [{\"X\": 0.9443666934967041, \"Y\": 0.32679933309555054}, {\"X\": 0.9971590638160706, \"Y\": 0.33341220021247864}, {\"X\": 0.9942179918289185, \"Y\": 0.34513741731643677}, {\"X\": 0.941425621509552, \"Y\": 0.33852458000183105}]}, \"Id\": \"4d4f5966-86b2-4746-8b65-7369079d9dec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88672637939453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0561402291059494, \"Height\": 0.01851249858736992, \"Left\": 0.447523832321167, \"Top\": 0.28599852323532104}, \"Polygon\": [{\"X\": 0.4504969120025635, \"Y\": 0.28599852323532104}, {\"X\": 0.5036640763282776, \"Y\": 0.2926582992076874}, {\"X\": 0.5006909966468811, \"Y\": 0.30451104044914246}, {\"X\": 0.447523832321167, \"Y\": 0.29785123467445374}]}, \"Id\": \"c85a4612-215e-459a-a652-385ac4a72548\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.10383605957031, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04774346947669983, \"Height\": 0.017153432592749596, \"Left\": 0.50616854429245, \"Top\": 0.2935115694999695}, \"Polygon\": [{\"X\": 0.5090620517730713, \"Y\": 0.2935115694999695}, {\"X\": 0.5539119839668274, \"Y\": 0.29912951588630676}, {\"X\": 0.551018476486206, \"Y\": 0.3106650114059448}, {\"X\": 0.50616854429245, \"Y\": 0.30504703521728516}]}, \"Id\": \"bd9035b3-3ef1-44a4-ba59-0cb9894d76ba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80054473876953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055868782103061676, \"Height\": 0.01849953830242157, \"Left\": 0.5699805617332458, \"Top\": 0.30123332142829895}, \"Polygon\": [{\"X\": 0.5729590654373169, \"Y\": 0.30123332142829895}, {\"X\": 0.6258493065834045, \"Y\": 0.3078584372997284}, {\"X\": 0.6228708028793335, \"Y\": 0.3197328746318817}, {\"X\": 0.5699805617332458, \"Y\": 0.31310775876045227}]}, \"Id\": \"5738a9e4-d8ed-4bcc-a54a-7953d03081c1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07691192626953, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04855566471815109, \"Height\": 0.017295068129897118, \"Left\": 0.6283680200576782, \"Top\": 0.3087378442287445}, \"Polygon\": [{\"X\": 0.6312718391418457, \"Y\": 0.3087378442287445}, {\"X\": 0.6769236922264099, \"Y\": 0.3144562542438507}, {\"X\": 0.6740198731422424, \"Y\": 0.3260329067707062}, {\"X\": 0.6283680200576782, \"Y\": 0.3203144967556}]}, \"Id\": \"96dc9489-f835-4eec-b1d9-04734ee96c3c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79827117919922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055831532925367355, \"Height\": 0.018409892916679382, \"Left\": 0.6920987367630005, \"Top\": 0.31645467877388}, \"Polygon\": [{\"X\": 0.6950552463531494, \"Y\": 0.31645467877388}, {\"X\": 0.7479302287101746, \"Y\": 0.32307785749435425}, {\"X\": 0.7449737191200256, \"Y\": 0.3348645865917206}, {\"X\": 0.6920987367630005, \"Y\": 0.32824137806892395}]}, \"Id\": \"c1ec31df-1d0a-425f-ac76-7864b8b07e3d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39132690429688, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04753917455673218, \"Height\": 0.01724300906062126, \"Left\": 0.7508350610733032, \"Top\": 0.3239596486091614}, \"Polygon\": [{\"X\": 0.7537583708763123, \"Y\": 0.3239596486091614}, {\"X\": 0.7983742356300354, \"Y\": 0.32954829931259155}, {\"X\": 0.7954509258270264, \"Y\": 0.34120267629623413}, {\"X\": 0.7508350610733032, \"Y\": 0.33561402559280396}]}, \"Id\": \"9ce0f745-2b69-467f-96db-a33db2561fa0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8538818359375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05603283271193504, \"Height\": 0.018587758764624596, \"Left\": 0.8138556480407715, \"Top\": 0.33152398467063904}, \"Polygon\": [{\"X\": 0.8168516755104065, \"Y\": 0.33152398467063904}, {\"X\": 0.8698884844779968, \"Y\": 0.3381674587726593}, {\"X\": 0.866892397403717, \"Y\": 0.3501117527484894}, {\"X\": 0.8138556480407715, \"Y\": 0.3434683084487915}]}, \"Id\": \"d32427a8-60b0-4f48-8875-55d9e1d940e8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55765533447266, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04855009540915489, \"Height\": 0.017128510400652885, \"Left\": 0.8728617429733276, \"Top\": 0.3392399847507477}, \"Polygon\": [{\"X\": 0.8757226467132568, \"Y\": 0.3392399847507477}, {\"X\": 0.9214118719100952, \"Y\": 0.34496307373046875}, {\"X\": 0.918550968170166, \"Y\": 0.3563685119152069}, {\"X\": 0.8728617429733276, \"Y\": 0.35064542293548584}]}, \"Id\": \"4b1e5fa5-43d6-4e2b-9d8a-0f548a08bfdb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74417877197266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056986138224601746, \"Height\": 0.018767304718494415, \"Left\": 0.9359301328659058, \"Top\": 0.3468143939971924}, \"Polygon\": [{\"X\": 0.9389417171478271, \"Y\": 0.3468143939971924}, {\"X\": 0.9929162859916687, \"Y\": 0.35357531905174255}, {\"X\": 0.9899046421051025, \"Y\": 0.3655816912651062}, {\"X\": 0.9359301328659058, \"Y\": 0.3588207960128784}]}, \"Id\": \"b893ac5d-64bb-4a42-950f-545183915b68\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87737274169922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05640284717082977, \"Height\": 0.018682582303881645, \"Left\": 0.4424959421157837, \"Top\": 0.3060016930103302}, \"Polygon\": [{\"X\": 0.4455045461654663, \"Y\": 0.3060016930103302}, {\"X\": 0.49889877438545227, \"Y\": 0.3126899302005768}, {\"X\": 0.49589020013809204, \"Y\": 0.3246842920780182}, {\"X\": 0.4424959421157837, \"Y\": 0.3179960548877716}]}, \"Id\": \"026bb8f2-3cfb-4737-a765-eab5cd50ac9c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24202728271484, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047336746007204056, \"Height\": 0.017208296805620193, \"Left\": 0.5017064809799194, \"Top\": 0.3138887584209442}, \"Polygon\": [{\"X\": 0.5046274065971375, \"Y\": 0.3138887584209442}, {\"X\": 0.5490432381629944, \"Y\": 0.31945234537124634}, {\"X\": 0.5461223721504211, \"Y\": 0.3310970366001129}, {\"X\": 0.5017064809799194, \"Y\": 0.3255334496498108}]}, \"Id\": \"0f9d693d-0f4d-4294-9e9f-99f770440dd4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79613494873047, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055815376341342926, \"Height\": 0.018664294853806496, \"Left\": 0.5649439692497253, \"Top\": 0.32126182317733765}, \"Polygon\": [{\"X\": 0.567966878414154, \"Y\": 0.32126182317733765}, {\"X\": 0.6207593679428101, \"Y\": 0.32787466049194336}, {\"X\": 0.6177363991737366, \"Y\": 0.3399261236190796}, {\"X\": 0.5649439692497253, \"Y\": 0.3333132565021515}]}, \"Id\": \"c5c123e2-d31f-4795-a930-d9c2a4d8ae01\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25625610351562, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0487518236041069, \"Height\": 0.017384249716997147, \"Left\": 0.6231611967086792, \"Top\": 0.3289400339126587}, \"Polygon\": [{\"X\": 0.6260817646980286, \"Y\": 0.3289400339126587}, {\"X\": 0.6719130277633667, \"Y\": 0.3346809148788452}, {\"X\": 0.6689924597740173, \"Y\": 0.34632426500320435}, {\"X\": 0.6231611967086792, \"Y\": 0.3405833840370178}]}, \"Id\": \"fbe012f8-6711-47a4-bbd1-918c5958a842\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82176208496094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05627366527915001, \"Height\": 0.01847407966852188, \"Left\": 0.687216579914093, \"Top\": 0.3366488516330719}, \"Polygon\": [{\"X\": 0.6901753544807434, \"Y\": 0.3366488516330719}, {\"X\": 0.7434902191162109, \"Y\": 0.343327134847641}, {\"X\": 0.7405314445495605, \"Y\": 0.3551229238510132}, {\"X\": 0.687216579914093, \"Y\": 0.3484446406364441}]}, \"Id\": \"877f03a7-190e-4d49-8580-3f06a5b90d48\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43411254882812, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04790569841861725, \"Height\": 0.01719832606613636, \"Left\": 0.7454094886779785, \"Top\": 0.344230979681015}, \"Polygon\": [{\"X\": 0.7483093738555908, \"Y\": 0.344230979681015}, {\"X\": 0.7933152318000793, \"Y\": 0.3498684763908386}, {\"X\": 0.790415346622467, \"Y\": 0.3614293038845062}, {\"X\": 0.7454094886779785, \"Y\": 0.355791836977005}]}, \"Id\": \"4ee4735b-42e4-430b-a917-200f3824dd46\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84066009521484, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05592174455523491, \"Height\": 0.01858695223927498, \"Left\": 0.8089954853057861, \"Top\": 0.35168856382369995}, \"Polygon\": [{\"X\": 0.8119949102401733, \"Y\": 0.35168856382369995}, {\"X\": 0.8649172186851501, \"Y\": 0.35831767320632935}, {\"X\": 0.8619177937507629, \"Y\": 0.37027549743652344}, {\"X\": 0.8089954853057861, \"Y\": 0.36364638805389404}]}, \"Id\": \"ca0c5bc4-bfad-4aec-b327-baa79049ecb9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66840362548828, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04858946055173874, \"Height\": 0.017026595771312714, \"Left\": 0.8676783442497253, \"Top\": 0.35950008034706116}, \"Polygon\": [{\"X\": 0.870511531829834, \"Y\": 0.35950008034706116}, {\"X\": 0.9162678122520447, \"Y\": 0.36523157358169556}, {\"X\": 0.913434624671936, \"Y\": 0.37652668356895447}, {\"X\": 0.8676783442497253, \"Y\": 0.37079519033432007}]}, \"Id\": \"b0c780ba-a54a-4a04-8b92-1f3dc1b19aec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79035186767578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0570758618414402, \"Height\": 0.018751807510852814, \"Left\": 0.9304895997047424, \"Top\": 0.36691758036613464}, \"Polygon\": [{\"X\": 0.9334943294525146, \"Y\": 0.36691758036613464}, {\"X\": 0.9875655174255371, \"Y\": 0.3736906051635742}, {\"X\": 0.9845607876777649, \"Y\": 0.38566941022872925}, {\"X\": 0.9304895997047424, \"Y\": 0.3788963854312897}]}, \"Id\": \"c915b178-1acc-4470-8f83-2dab9f0585d4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.05819702148438, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010430337861180305, \"Height\": 0.012703069485723972, \"Left\": 0.9895696640014648, \"Top\": 0.37499335408210754}, \"Polygon\": [{\"X\": 0.9923973679542542, \"Y\": 0.37499335408210754}, {\"X\": 1.0, \"Y\": 0.3764231204986572}, {\"X\": 1.0, \"Y\": 0.38769641518592834}, {\"X\": 0.9895696640014648, \"Y\": 0.3862666189670563}]}, \"Id\": \"31db4a71-b003-4604-887d-db9c27a944cb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81990051269531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05600282549858093, \"Height\": 0.01867000013589859, \"Left\": 0.43772655725479126, \"Top\": 0.3263011872768402}, \"Polygon\": [{\"X\": 0.44074487686157227, \"Y\": 0.3263011872768402}, {\"X\": 0.4937293827533722, \"Y\": 0.3329381048679352}, {\"X\": 0.4907110631465912, \"Y\": 0.3449711799621582}, {\"X\": 0.43772655725479126, \"Y\": 0.3383342921733856}]}, \"Id\": \"a4e961b9-6ca8-4eb1-ab3a-f3d273e2f19c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61356353759766, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04775119200348854, \"Height\": 0.017009012401103973, \"Left\": 0.496227890253067, \"Top\": 0.33409109711647034}, \"Polygon\": [{\"X\": 0.4990837275981903, \"Y\": 0.33409109711647034}, {\"X\": 0.5439790487289429, \"Y\": 0.33971476554870605}, {\"X\": 0.5411232113838196, \"Y\": 0.3511001169681549}, {\"X\": 0.496227890253067, \"Y\": 0.3454764783382416}]}, \"Id\": \"4ea13854-79e0-464e-808a-fbb4a0dc8fd1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85088348388672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055023930966854095, \"Height\": 0.018341265618801117, \"Left\": 0.5602638125419617, \"Top\": 0.3417244553565979}, \"Polygon\": [{\"X\": 0.5632287263870239, \"Y\": 0.3417244553565979}, {\"X\": 0.615287721157074, \"Y\": 0.34824541211128235}, {\"X\": 0.6123228073120117, \"Y\": 0.3600656986236572}, {\"X\": 0.5602638125419617, \"Y\": 0.3535447418689728}]}, \"Id\": \"54e969e0-b0bc-417a-9a65-9e83643d1b61\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52767181396484, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04862750321626663, \"Height\": 0.01698772795498371, \"Left\": 0.6178560853004456, \"Top\": 0.3493584394454956}, \"Polygon\": [{\"X\": 0.6206780076026917, \"Y\": 0.3493584394454956}, {\"X\": 0.6664835810661316, \"Y\": 0.35509610176086426}, {\"X\": 0.6636616587638855, \"Y\": 0.366346150636673}, {\"X\": 0.6178560853004456, \"Y\": 0.3606084883213043}]}, \"Id\": \"16a655e0-6f11-4c82-8e5a-fed345217634\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41969299316406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05586054548621178, \"Height\": 0.0184706412255764, \"Left\": 0.6824914216995239, \"Top\": 0.35693982243537903}, \"Polygon\": [{\"X\": 0.6854627132415771, \"Y\": 0.35693982243537903}, {\"X\": 0.7383519411087036, \"Y\": 0.36356478929519653}, {\"X\": 0.7353806495666504, \"Y\": 0.3754104673862457}, {\"X\": 0.6824914216995239, \"Y\": 0.3687855005264282}]}, \"Id\": \"e2a21e6d-5bac-4120-980a-e0de6712d4c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3780288696289, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048045989125967026, \"Height\": 0.017185639590024948, \"Left\": 0.7404652237892151, \"Top\": 0.3645058274269104}, \"Polygon\": [{\"X\": 0.743357241153717, \"Y\": 0.3645058274269104}, {\"X\": 0.7885112166404724, \"Y\": 0.37016186118125916}, {\"X\": 0.7856191992759705, \"Y\": 0.38169145584106445}, {\"X\": 0.7404652237892151, \"Y\": 0.3760354220867157}]}, \"Id\": \"4c184695-73ec-45a2-956c-e587d7df4592\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83946228027344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05567054823040962, \"Height\": 0.01835230365395546, \"Left\": 0.8039003610610962, \"Top\": 0.3721083700656891}, \"Polygon\": [{\"X\": 0.8068471550941467, \"Y\": 0.3721083700656891}, {\"X\": 0.8595709204673767, \"Y\": 0.37871259450912476}, {\"X\": 0.8566240668296814, \"Y\": 0.39046066999435425}, {\"X\": 0.8039003610610962, \"Y\": 0.3838564157485962}]}, \"Id\": \"ff8b9553-96e2-49ea-83c3-3b6c676f0173\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62317657470703, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048420894891023636, \"Height\": 0.016923334449529648, \"Left\": 0.8627672791481018, \"Top\": 0.3799391984939575}, \"Polygon\": [{\"X\": 0.8655791878700256, \"Y\": 0.3799391984939575}, {\"X\": 0.9111881852149963, \"Y\": 0.38565224409103394}, {\"X\": 0.9083762168884277, \"Y\": 0.39686253666877747}, {\"X\": 0.8627672791481018, \"Y\": 0.39114952087402344}]}, \"Id\": \"cd1dd4d0-5390-457f-9c9d-02692204018c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73819732666016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056672386825084686, \"Height\": 0.018687976524233818, \"Left\": 0.926138162612915, \"Top\": 0.38720691204071045}, \"Polygon\": [{\"X\": 0.9291393756866455, \"Y\": 0.38720691204071045}, {\"X\": 0.9828104972839355, \"Y\": 0.3939298093318939}, {\"X\": 0.9798092842102051, \"Y\": 0.4058948755264282}, {\"X\": 0.926138162612915, \"Y\": 0.39917194843292236}]}, \"Id\": \"b94349b1-b8d5-424f-adfc-08c5300d5968\"}, {\"BlockType\": \"WORD\", \"Confidence\": 91.16666412353516, \"Text\": \"2.\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015640638768672943, \"Height\": 0.01342441700398922, \"Left\": 0.9843593835830688, \"Top\": 0.3949323892593384}, \"Polygon\": [{\"X\": 0.9872711896896362, \"Y\": 0.3949323892593384}, {\"X\": 1.0, \"Y\": 0.3967483639717102}, {\"X\": 0.998856782913208, \"Y\": 0.40835681557655334}, {\"X\": 0.9843593835830688, \"Y\": 0.4065408408641815}]}, \"Id\": \"879908af-5359-4674-b617-0e629eb54579\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83028411865234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055691927671432495, \"Height\": 0.018236102536320686, \"Left\": 0.4329855144023895, \"Top\": 0.3467041552066803}, \"Polygon\": [{\"X\": 0.43590155243873596, \"Y\": 0.3467041552066803}, {\"X\": 0.488677442073822, \"Y\": 0.35331490635871887}, {\"X\": 0.4857614040374756, \"Y\": 0.36494025588035583}, {\"X\": 0.4329855144023895, \"Y\": 0.3583294749259949}]}, \"Id\": \"8bc1b852-4c10-44bd-b2a9-858acecde358\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53050231933594, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047079768031835556, \"Height\": 0.016977520659565926, \"Left\": 0.49160856008529663, \"Top\": 0.3542388677597046}, \"Polygon\": [{\"X\": 0.4944780170917511, \"Y\": 0.3542388677597046}, {\"X\": 0.5386883020401001, \"Y\": 0.35977670550346375}, {\"X\": 0.5358188152313232, \"Y\": 0.37121638655662537}, {\"X\": 0.49160856008529663, \"Y\": 0.3656785488128662}]}, \"Id\": \"535af8e0-d39d-49f5-b402-a32b37b25106\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85328674316406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05551832169294357, \"Height\": 0.018236350268125534, \"Left\": 0.5552605986595154, \"Top\": 0.3619561791419983}, \"Polygon\": [{\"X\": 0.5581822991371155, \"Y\": 0.3619561791419983}, {\"X\": 0.6107789278030396, \"Y\": 0.36854448914527893}, {\"X\": 0.6078571677207947, \"Y\": 0.38019251823425293}, {\"X\": 0.5552605986595154, \"Y\": 0.3736042082309723}]}, \"Id\": \"381081ed-6870-4928-b566-c03fa8e29d79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46302032470703, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04797236621379852, \"Height\": 0.01712401770055294, \"Left\": 0.6133962869644165, \"Top\": 0.3692812919616699}, \"Polygon\": [{\"X\": 0.6162747144699097, \"Y\": 0.3692812919616699}, {\"X\": 0.6613686680793762, \"Y\": 0.374929815530777}, {\"X\": 0.6584901809692383, \"Y\": 0.3864053189754486}, {\"X\": 0.6133962869644165, \"Y\": 0.38075679540634155}]}, \"Id\": \"f0455c82-e9b6-410d-b695-05b196ada611\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7239990234375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05538911372423172, \"Height\": 0.018418945372104645, \"Left\": 0.6773321032524109, \"Top\": 0.3770209550857544}, \"Polygon\": [{\"X\": 0.6803053021430969, \"Y\": 0.3770209550857544}, {\"X\": 0.732721209526062, \"Y\": 0.3835866451263428}, {\"X\": 0.7297479510307312, \"Y\": 0.39543992280960083}, {\"X\": 0.6773321032524109, \"Y\": 0.38887423276901245}]}, \"Id\": \"45e34e48-5d9c-4f6c-871b-eee907f9b8f4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26312255859375, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04766593128442764, \"Height\": 0.017123578116297722, \"Left\": 0.735560417175293, \"Top\": 0.3846742808818817}, \"Polygon\": [{\"X\": 0.7384487390518188, \"Y\": 0.3846742808818817}, {\"X\": 0.7832263708114624, \"Y\": 0.3902831971645355}, {\"X\": 0.7803381085395813, \"Y\": 0.4017978608608246}, {\"X\": 0.735560417175293, \"Y\": 0.39618897438049316}]}, \"Id\": \"65575a8d-9dc2-4a59-826b-c4d3a2f4b606\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86305236816406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055624816566705704, \"Height\": 0.01847413368523121, \"Left\": 0.7990797758102417, \"Top\": 0.39216095209121704}, \"Polygon\": [{\"X\": 0.8020596504211426, \"Y\": 0.39216095209121704}, {\"X\": 0.8547046184539795, \"Y\": 0.3987553119659424}, {\"X\": 0.8517247438430786, \"Y\": 0.4106350839138031}, {\"X\": 0.7990797758102417, \"Y\": 0.40404069423675537}]}, \"Id\": \"4f842e2d-03b3-4b87-9705-58f9e4e1021a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68568420410156, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048712220042943954, \"Height\": 0.01706165447831154, \"Left\": 0.8576239943504333, \"Top\": 0.39997830986976624}, \"Polygon\": [{\"X\": 0.8604623079299927, \"Y\": 0.39997830986976624}, {\"X\": 0.9063361883163452, \"Y\": 0.40572455525398254}, {\"X\": 0.9034979343414307, \"Y\": 0.41703999042510986}, {\"X\": 0.8576239943504333, \"Y\": 0.41129374504089355}]}, \"Id\": \"6b25b34e-7aee-4605-a6cb-16570ddbf948\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85527801513672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05614938586950302, \"Height\": 0.018540842458605766, \"Left\": 0.9212623238563538, \"Top\": 0.4074684977531433}, \"Polygon\": [{\"X\": 0.9242424368858337, \"Y\": 0.4074684977531433}, {\"X\": 0.977411687374115, \"Y\": 0.41412854194641113}, {\"X\": 0.974431574344635, \"Y\": 0.42600932717323303}, {\"X\": 0.9212623238563538, \"Y\": 0.4193492829799652}]}, \"Id\": \"8b227ac3-597f-411d-8f9c-369447ca78a8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.85191345214844, \"Text\": \"2.\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01997290551662445, \"Height\": 0.013707464560866356, \"Left\": 0.9794479012489319, \"Top\": 0.4151766300201416}, \"Polygon\": [{\"X\": 0.9823498725891113, \"Y\": 0.4151766300201416}, {\"X\": 0.9994208216667175, \"Y\": 0.41731497645378113}, {\"X\": 0.9965189099311829, \"Y\": 0.4288840889930725}, {\"X\": 0.9794479012489319, \"Y\": 0.42674577236175537}]}, \"Id\": \"dd6e70ca-e469-4858-b64e-7804eff7169e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77043914794922, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03230707719922066, \"Height\": 0.014218313619494438, \"Left\": 0.1500152051448822, \"Top\": 0.38653552532196045}, \"Polygon\": [{\"X\": 0.15264932811260223, \"Y\": 0.38653552532196045}, {\"X\": 0.18232227861881256, \"Y\": 0.39025241136550903}, {\"X\": 0.17968815565109253, \"Y\": 0.40075385570526123}, {\"X\": 0.1500152051448822, \"Y\": 0.39703696966171265}]}, \"Id\": \"2f90510f-ff9f-43da-b5a1-f330f272e607\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91976165771484, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10082477331161499, \"Height\": 0.023041456937789917, \"Left\": 0.18476387858390808, \"Top\": 0.39042404294013977}, \"Polygon\": [{\"X\": 0.1874603033065796, \"Y\": 0.39042404294013977}, {\"X\": 0.28558865189552307, \"Y\": 0.4027157127857208}, {\"X\": 0.28289222717285156, \"Y\": 0.4134654998779297}, {\"X\": 0.18476387858390808, \"Y\": 0.40117383003234863}]}, \"Id\": \"44097656-ea40-4aa0-b47d-043218722b44\"}, {\"BlockType\": \"WORD\", \"Confidence\": 85.49333953857422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004392390605062246, \"Height\": 0.003480258397758007, \"Left\": 0.2135651558637619, \"Top\": 0.3987761437892914}, \"Polygon\": [{\"X\": 0.214323952794075, \"Y\": 0.3987761437892914}, {\"X\": 0.21795754134655, \"Y\": 0.39923128485679626}, {\"X\": 0.21719874441623688, \"Y\": 0.40225639939308167}, {\"X\": 0.2135651558637619, \"Y\": 0.4018012285232544}]}, \"Id\": \"4cae0bd0-e0c9-40e9-b9f9-3bc9d187933d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82658386230469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047832369804382324, \"Height\": 0.01603236421942711, \"Left\": 0.559565007686615, \"Top\": 0.4564683139324188}, \"Polygon\": [{\"X\": 0.5621653199195862, \"Y\": 0.4564683139324188}, {\"X\": 0.6073973774909973, \"Y\": 0.46213415265083313}, {\"X\": 0.6047971248626709, \"Y\": 0.47250068187713623}, {\"X\": 0.559565007686615, \"Y\": 0.4668348729610443}]}, \"Id\": \"4871509a-17b0-41c2-bf9f-0798a0b4b018\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43551635742188, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040313415229320526, \"Height\": 0.014633260667324066, \"Left\": 0.6102060675621033, \"Top\": 0.46311283111572266}, \"Polygon\": [{\"X\": 0.6126879453659058, \"Y\": 0.46311283111572266}, {\"X\": 0.6505194902420044, \"Y\": 0.4678516685962677}, {\"X\": 0.6480376124382019, \"Y\": 0.4777460992336273}, {\"X\": 0.6102060675621033, \"Y\": 0.4730072617530823}]}, \"Id\": \"ec970be8-7d91-4055-b498-6912bf7673e1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7930679321289, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047681987285614014, \"Height\": 0.016000062227249146, \"Left\": 0.701431393623352, \"Top\": 0.47416451573371887}, \"Polygon\": [{\"X\": 0.7040281891822815, \"Y\": 0.47416451573371887}, {\"X\": 0.7491133809089661, \"Y\": 0.4798119366168976}, {\"X\": 0.7465165257453918, \"Y\": 0.490164577960968}, {\"X\": 0.701431393623352, \"Y\": 0.4845171272754669}]}, \"Id\": \"bfd03d12-819e-4570-9f52-00dc62863d83\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34344482421875, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041569117456674576, \"Height\": 0.014902213588356972, \"Left\": 0.751509964466095, \"Top\": 0.4807538390159607}, \"Polygon\": [{\"X\": 0.7540206909179688, \"Y\": 0.4807538390159607}, {\"X\": 0.7930790781974792, \"Y\": 0.4856463372707367}, {\"X\": 0.7905682921409607, \"Y\": 0.4956560432910919}, {\"X\": 0.751509964466095, \"Y\": 0.4907635450363159}]}, \"Id\": \"5a5da91d-4746-4e75-ba34-eba14b3bb20d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70838165283203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04786718636751175, \"Height\": 0.01587938517332077, \"Left\": 0.8427841067314148, \"Top\": 0.49191850423812866}, \"Polygon\": [{\"X\": 0.8453436493873596, \"Y\": 0.49191850423812866}, {\"X\": 0.890651285648346, \"Y\": 0.49759379029273987}, {\"X\": 0.8880917429924011, \"Y\": 0.50779789686203}, {\"X\": 0.8427841067314148, \"Y\": 0.5021225810050964}]}, \"Id\": \"828d2862-7889-4451-94c1-9cb786777bcd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2140884399414, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04089656099677086, \"Height\": 0.014853712171316147, \"Left\": 0.8931012153625488, \"Top\": 0.4983275532722473}, \"Polygon\": [{\"X\": 0.8956212997436523, \"Y\": 0.4983275532722473}, {\"X\": 0.9339978098869324, \"Y\": 0.5031346678733826}, {\"X\": 0.9314777851104736, \"Y\": 0.5131812691688538}, {\"X\": 0.8931012153625488, \"Y\": 0.5083741545677185}]}, \"Id\": \"bfbe1097-6226-45c4-8ccd-28b762256431\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24165344238281, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03605858236551285, \"Height\": 0.01450448576360941, \"Left\": 0.13934065401554108, \"Top\": 0.4120098352432251}, \"Polygon\": [{\"X\": 0.14192719757556915, \"Y\": 0.4120098352432251}, {\"X\": 0.17539922893047333, \"Y\": 0.416202574968338}, {\"X\": 0.17281268537044525, \"Y\": 0.42651432752609253}, {\"X\": 0.13934065401554108, \"Y\": 0.4223215579986572}]}, \"Id\": \"f5b7c841-5151-49b8-a456-7edddf89f55f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97129821777344, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0671619400382042, \"Height\": 0.01861344464123249, \"Left\": 0.1776016354560852, \"Top\": 0.4164760112762451}, \"Polygon\": [{\"X\": 0.18024331331253052, \"Y\": 0.4164760112762451}, {\"X\": 0.2447635680437088, \"Y\": 0.4245578944683075}, {\"X\": 0.2421218901872635, \"Y\": 0.43508943915367126}, {\"X\": 0.1776016354560852, \"Y\": 0.4270075559616089}]}, \"Id\": \"a8ba0666-fa39-41a1-9569-3d8b4832d8d0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84915161132812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04787273332476616, \"Height\": 0.01598033308982849, \"Left\": 0.5554133057594299, \"Top\": 0.4739399552345276}, \"Polygon\": [{\"X\": 0.557998776435852, \"Y\": 0.4739399552345276}, {\"X\": 0.6032860279083252, \"Y\": 0.47961267828941345}, {\"X\": 0.6007004976272583, \"Y\": 0.4899202883243561}, {\"X\": 0.5554133057594299, \"Y\": 0.4842475652694702}]}, \"Id\": \"46f9adf1-a1f3-41d0-8f71-ee0203d7639a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.17919921875, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040267109870910645, \"Height\": 0.014604346826672554, \"Left\": 0.6058011054992676, \"Top\": 0.4805803894996643}, \"Polygon\": [{\"X\": 0.6082770228385925, \"Y\": 0.4805803894996643}, {\"X\": 0.6460682153701782, \"Y\": 0.48531419038772583}, {\"X\": 0.643592357635498, \"Y\": 0.4951847493648529}, {\"X\": 0.6058011054992676, \"Y\": 0.49045097827911377}]}, \"Id\": \"0aef65de-c92f-4951-b764-d9167332c2ac\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82859802246094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04763362929224968, \"Height\": 0.01594526320695877, \"Left\": 0.6973470449447632, \"Top\": 0.491657555103302}, \"Polygon\": [{\"X\": 0.6999312043190002, \"Y\": 0.491657555103302}, {\"X\": 0.7449806332588196, \"Y\": 0.49730050563812256}, {\"X\": 0.7423964738845825, \"Y\": 0.5076028108596802}, {\"X\": 0.6973470449447632, \"Y\": 0.5019598603248596}]}, \"Id\": \"af8812a7-1e37-4d5f-baad-94911a8fa288\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3067398071289, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04106730967760086, \"Height\": 0.014791651628911495, \"Left\": 0.7476490139961243, \"Top\": 0.4982225000858307}, \"Polygon\": [{\"X\": 0.7501474618911743, \"Y\": 0.4982225000858307}, {\"X\": 0.7887163162231445, \"Y\": 0.5030537247657776}, {\"X\": 0.7862179279327393, \"Y\": 0.5130141377449036}, {\"X\": 0.7476490139961243, \"Y\": 0.5081830024719238}]}, \"Id\": \"4645df6b-2e77-4356-abe1-6a9254f0e97d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79264068603516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04802394658327103, \"Height\": 0.01590101234614849, \"Left\": 0.8387253880500793, \"Top\": 0.509328305721283}, \"Polygon\": [{\"X\": 0.8412854075431824, \"Y\": 0.509328305721283}, {\"X\": 0.8867493271827698, \"Y\": 0.5150231719017029}, {\"X\": 0.884189248085022, \"Y\": 0.5252293348312378}, {\"X\": 0.8387253880500793, \"Y\": 0.5195344686508179}]}, \"Id\": \"f499d5f7-879c-4b59-a1b9-3febc5f9b139\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34721374511719, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040646348148584366, \"Height\": 0.014909918420016766, \"Left\": 0.8892996311187744, \"Top\": 0.5158180594444275}, \"Polygon\": [{\"X\": 0.8918423652648926, \"Y\": 0.5158180594444275}, {\"X\": 0.9299460053443909, \"Y\": 0.5205909609794617}, {\"X\": 0.9274032711982727, \"Y\": 0.5307279825210571}, {\"X\": 0.8892996311187744, \"Y\": 0.525955080986023}]}, \"Id\": \"bae6fe45-7b34-4fee-bbeb-1ee68a6b0ec6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82760620117188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04799964651465416, \"Height\": 0.01586240716278553, \"Left\": 0.5507992506027222, \"Top\": 0.49147239327430725}, \"Polygon\": [{\"X\": 0.5533500909805298, \"Y\": 0.49147239327430725}, {\"X\": 0.5987988710403442, \"Y\": 0.49716535210609436}, {\"X\": 0.5962480306625366, \"Y\": 0.50733482837677}, {\"X\": 0.5507992506027222, \"Y\": 0.5016418099403381}]}, \"Id\": \"be81fad9-0a30-4267-904b-654bd12fbc88\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47715759277344, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04058544337749481, \"Height\": 0.014753461815416813, \"Left\": 0.6012294888496399, \"Top\": 0.4979361891746521}, \"Polygon\": [{\"X\": 0.6037336587905884, \"Y\": 0.4979361891746521}, {\"X\": 0.6418149471282959, \"Y\": 0.5027062892913818}, {\"X\": 0.6393107771873474, \"Y\": 0.5126896500587463}, {\"X\": 0.6012294888496399, \"Y\": 0.5079195499420166}]}, \"Id\": \"c9a97d47-2de2-4984-8d7d-22898945519d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81037139892578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047775402665138245, \"Height\": 0.01587183214724064, \"Left\": 0.6928452849388123, \"Top\": 0.509116530418396}, \"Polygon\": [{\"X\": 0.6954058408737183, \"Y\": 0.509116530418396}, {\"X\": 0.7406206727027893, \"Y\": 0.5147802233695984}, {\"X\": 0.7380601167678833, \"Y\": 0.5249883532524109}, {\"X\": 0.6928452849388123, \"Y\": 0.5193247199058533}]}, \"Id\": \"3f008029-5f8e-4802-a14f-a6feea06b9e3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4590072631836, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04106907919049263, \"Height\": 0.014652860350906849, \"Left\": 0.7430807948112488, \"Top\": 0.5157271027565002}, \"Polygon\": [{\"X\": 0.7455432415008545, \"Y\": 0.5157271027565002}, {\"X\": 0.7841498851776123, \"Y\": 0.520563006401062}, {\"X\": 0.7816874384880066, \"Y\": 0.5303799510002136}, {\"X\": 0.7430807948112488, \"Y\": 0.5255440473556519}]}, \"Id\": \"34d047bd-e4ad-4083-a73d-f6452a24df4b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70208740234375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04842020943760872, \"Height\": 0.01585317589342594, \"Left\": 0.833888828754425, \"Top\": 0.5268027782440186}, \"Polygon\": [{\"X\": 0.8364236354827881, \"Y\": 0.5268027782440186}, {\"X\": 0.8823090195655823, \"Y\": 0.5325504541397095}, {\"X\": 0.8797742128372192, \"Y\": 0.5426559448242188}, {\"X\": 0.833888828754425, \"Y\": 0.5369082689285278}]}, \"Id\": \"d74f97e8-43f8-41dd-b3ae-92e1de1ca4bd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9665298461914, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04067595303058624, \"Height\": 0.014863766729831696, \"Left\": 0.8845170736312866, \"Top\": 0.5331820845603943}, \"Polygon\": [{\"X\": 0.8870468735694885, \"Y\": 0.5331820845603943}, {\"X\": 0.9251930117607117, \"Y\": 0.5379603505134583}, {\"X\": 0.9226632118225098, \"Y\": 0.5480458736419678}, {\"X\": 0.8845170736312866, \"Y\": 0.5432676076889038}]}, \"Id\": \"5cfbcfce-5b58-4db4-84e1-ac815ef5e4c1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80039978027344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04758043214678764, \"Height\": 0.015857893973588943, \"Left\": 0.5468153357505798, \"Top\": 0.5087769627571106}, \"Polygon\": [{\"X\": 0.5493786334991455, \"Y\": 0.5087769627571106}, {\"X\": 0.5943957567214966, \"Y\": 0.5144158601760864}, {\"X\": 0.5918325185775757, \"Y\": 0.5246348977088928}, {\"X\": 0.5468153357505798, \"Y\": 0.5189959406852722}]}, \"Id\": \"111e2f0e-2db2-46a5-9050-a7996149cce4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55921936035156, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04068680480122566, \"Height\": 0.014675235375761986, \"Left\": 0.596723198890686, \"Top\": 0.5152259469032288}, \"Polygon\": [{\"X\": 0.5992038249969482, \"Y\": 0.5152259469032288}, {\"X\": 0.637410044670105, \"Y\": 0.5200116634368896}, {\"X\": 0.6349294185638428, \"Y\": 0.5299011468887329}, {\"X\": 0.596723198890686, \"Y\": 0.525115430355072}]}, \"Id\": \"70243060-6497-4bef-a1ba-f1a50dc94336\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8008041381836, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04779352992773056, \"Height\": 0.01580910012125969, \"Left\": 0.688437819480896, \"Top\": 0.5264736413955688}, \"Polygon\": [{\"X\": 0.6909815073013306, \"Y\": 0.5264736413955688}, {\"X\": 0.7362313270568848, \"Y\": 0.5321416854858398}, {\"X\": 0.7336875796318054, \"Y\": 0.54228276014328}, {\"X\": 0.688437819480896, \"Y\": 0.536614716053009}]}, \"Id\": \"8946f352-fe57-4ef6-b6c9-5d1911290fe5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46292877197266, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04152408242225647, \"Height\": 0.014911605976521969, \"Left\": 0.7384066581726074, \"Top\": 0.5329229235649109}, \"Polygon\": [{\"X\": 0.7409213185310364, \"Y\": 0.5329229235649109}, {\"X\": 0.7799307703971863, \"Y\": 0.5378092527389526}, {\"X\": 0.7774160504341125, \"Y\": 0.5478345155715942}, {\"X\": 0.7384066581726074, \"Y\": 0.5429481267929077}]}, \"Id\": \"812f6035-c7af-427e-ad13-edace1d5805d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80081176757812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048055876046419144, \"Height\": 0.015764979645609856, \"Left\": 0.8298013210296631, \"Top\": 0.5441957712173462}, \"Polygon\": [{\"X\": 0.8323251008987427, \"Y\": 0.5441957712173462}, {\"X\": 0.8778572082519531, \"Y\": 0.549899160861969}, {\"X\": 0.8753333687782288, \"Y\": 0.5599607229232788}, {\"X\": 0.8298013210296631, \"Y\": 0.554257333278656}]}, \"Id\": \"a3d362f0-a0fb-41db-8e3a-65d3f89f630f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1235580444336, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040817536413669586, \"Height\": 0.014839603565633297, \"Left\": 0.8801218867301941, \"Top\": 0.5504868030548096}, \"Polygon\": [{\"X\": 0.8826408386230469, \"Y\": 0.5504868030548096}, {\"X\": 0.9209394454956055, \"Y\": 0.5552841424942017}, {\"X\": 0.9184204936027527, \"Y\": 0.565326452255249}, {\"X\": 0.8801218867301941, \"Y\": 0.5605291128158569}]}, \"Id\": \"a3e9be1e-fc99-423b-be6f-9eac7a6ab574\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79755401611328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047742195427417755, \"Height\": 0.015818243846297264, \"Left\": 0.5422911643981934, \"Top\": 0.5263026356697083}, \"Polygon\": [{\"X\": 0.5448389053344727, \"Y\": 0.5263026356697083}, {\"X\": 0.5900333523750305, \"Y\": 0.5319637656211853}, {\"X\": 0.5874856114387512, \"Y\": 0.5421208739280701}, {\"X\": 0.5422911643981934, \"Y\": 0.536459743976593}]}, \"Id\": \"cb18f172-bf08-4427-9e3f-3d5fb8770920\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4765853881836, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040292203426361084, \"Height\": 0.014689067378640175, \"Left\": 0.5928046703338623, \"Top\": 0.5327240228652954}, \"Polygon\": [{\"X\": 0.5953016877174377, \"Y\": 0.5327240228652954}, {\"X\": 0.6330968737602234, \"Y\": 0.5374583005905151}, {\"X\": 0.630599856376648, \"Y\": 0.5474131107330322}, {\"X\": 0.5928046703338623, \"Y\": 0.5426788330078125}]}, \"Id\": \"9d70cc74-f068-4019-9484-63094703d2da\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83036804199219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04759623855352402, \"Height\": 0.015756385400891304, \"Left\": 0.6844160556793213, \"Top\": 0.5439586043357849}, \"Polygon\": [{\"X\": 0.686952531337738, \"Y\": 0.5439586043357849}, {\"X\": 0.7320122718811035, \"Y\": 0.5496028065681458}, {\"X\": 0.7294757962226868, \"Y\": 0.5597149729728699}, {\"X\": 0.6844160556793213, \"Y\": 0.5540707111358643}]}, \"Id\": \"a83e9d6b-a910-45c1-b2d2-e2cc043191bc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4325180053711, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04130299389362335, \"Height\": 0.01479473989456892, \"Left\": 0.7341633439064026, \"Top\": 0.5503734350204468}, \"Polygon\": [{\"X\": 0.7366549372673035, \"Y\": 0.5503734350204468}, {\"X\": 0.7754663228988647, \"Y\": 0.555234968662262}, {\"X\": 0.7729747295379639, \"Y\": 0.5651681423187256}, {\"X\": 0.7341633439064026, \"Y\": 0.5603066086769104}]}, \"Id\": \"1063c256-0c51-47f0-8154-2558a9c85d58\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73698425292969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04786444082856178, \"Height\": 0.015827951952815056, \"Left\": 0.8256996870040894, \"Top\": 0.5615752339363098}, \"Polygon\": [{\"X\": 0.828245997428894, \"Y\": 0.5615752339363098}, {\"X\": 0.8735641241073608, \"Y\": 0.5672518610954285}, {\"X\": 0.8710178136825562, \"Y\": 0.57740318775177}, {\"X\": 0.8256996870040894, \"Y\": 0.5717265605926514}]}, \"Id\": \"d1149de9-26a3-4902-ab5c-8e420b328609\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.06843566894531, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04074760153889656, \"Height\": 0.014790466986596584, \"Left\": 0.875996470451355, \"Top\": 0.5680408477783203}, \"Polygon\": [{\"X\": 0.8785049319267273, \"Y\": 0.5680408477783203}, {\"X\": 0.9167440533638, \"Y\": 0.5728307366371155}, {\"X\": 0.914235532283783, \"Y\": 0.5828313231468201}, {\"X\": 0.875996470451355, \"Y\": 0.5780414938926697}]}, \"Id\": \"0712e316-a217-4788-8b7e-c663c24c1631\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81378936767578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04797962307929993, \"Height\": 0.015924012288451195, \"Left\": 0.5377062559127808, \"Top\": 0.54361891746521}, \"Polygon\": [{\"X\": 0.5402737259864807, \"Y\": 0.54361891746521}, {\"X\": 0.5856859087944031, \"Y\": 0.5493072867393494}, {\"X\": 0.5831184387207031, \"Y\": 0.5595428943634033}, {\"X\": 0.5377062559127808, \"Y\": 0.5538545250892639}]}, \"Id\": \"e0922dad-a91e-4b55-ace4-38a6461d5f6a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48074340820312, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04055487737059593, \"Height\": 0.014634431339800358, \"Left\": 0.5881671905517578, \"Top\": 0.5502082705497742}, \"Polygon\": [{\"X\": 0.5906415581703186, \"Y\": 0.5502082705497742}, {\"X\": 0.628722071647644, \"Y\": 0.5549782514572144}, {\"X\": 0.626247763633728, \"Y\": 0.564842700958252}, {\"X\": 0.5881671905517578, \"Y\": 0.560072660446167}]}, \"Id\": \"4f6bdc96-6dda-443f-85fb-c0de1928ca1b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79695129394531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047728776931762695, \"Height\": 0.01598326861858368, \"Left\": 0.6798875331878662, \"Top\": 0.5612499713897705}, \"Polygon\": [{\"X\": 0.6824784874916077, \"Y\": 0.5612499713897705}, {\"X\": 0.7276163101196289, \"Y\": 0.5669040083885193}, {\"X\": 0.7250253558158875, \"Y\": 0.5772332549095154}, {\"X\": 0.6798875331878662, \"Y\": 0.5715792179107666}]}, \"Id\": \"b3e35543-a5e3-4b9b-bc06-5b2b0a25180c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25306701660156, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040951333940029144, \"Height\": 0.014661711640655994, \"Left\": 0.730121910572052, \"Top\": 0.5679110884666443}, \"Polygon\": [{\"X\": 0.7325904369354248, \"Y\": 0.5679110884666443}, {\"X\": 0.7710732221603394, \"Y\": 0.5727314949035645}, {\"X\": 0.7686046957969666, \"Y\": 0.5825728178024292}, {\"X\": 0.730121910572052, \"Y\": 0.577752411365509}]}, \"Id\": \"30cd649c-5149-4fd5-a3cb-2687d7fb3dba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65003204345703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04828541725873947, \"Height\": 0.015904385596513748, \"Left\": 0.8209677338600159, \"Top\": 0.5790095329284668}, \"Polygon\": [{\"X\": 0.8235201835632324, \"Y\": 0.5790095329284668}, {\"X\": 0.8692531585693359, \"Y\": 0.5847380757331848}, {\"X\": 0.8667007088661194, \"Y\": 0.594913899898529}, {\"X\": 0.8209677338600159, \"Y\": 0.589185357093811}]}, \"Id\": \"79b15d7b-35c6-4c3d-bbf9-8cb63d0fc6f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.15705871582031, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04029441624879837, \"Height\": 0.01470306608825922, \"Left\": 0.8717472553253174, \"Top\": 0.5854737162590027}, \"Polygon\": [{\"X\": 0.8742477893829346, \"Y\": 0.5854737162590027}, {\"X\": 0.9120416641235352, \"Y\": 0.5902078151702881}, {\"X\": 0.909541130065918, \"Y\": 0.6001767516136169}, {\"X\": 0.8717472553253174, \"Y\": 0.5954426527023315}]}, \"Id\": \"18bc4b21-ba4f-4309-a9f5-1874e4740d26\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8492202758789, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04742914065718651, \"Height\": 0.015825431793928146, \"Left\": 0.5338016152381897, \"Top\": 0.5609956979751587}, \"Polygon\": [{\"X\": 0.5363613963127136, \"Y\": 0.5609956979751587}, {\"X\": 0.5812307596206665, \"Y\": 0.5666160583496094}, {\"X\": 0.5786709785461426, \"Y\": 0.5768210887908936}, {\"X\": 0.5338016152381897, \"Y\": 0.5712007284164429}]}, \"Id\": \"82ceda64-c961-4f25-8989-7a4a89c3ffa9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35183715820312, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04103262349963188, \"Height\": 0.014909948222339153, \"Left\": 0.583548367023468, \"Top\": 0.5673402547836304}, \"Polygon\": [{\"X\": 0.5860785841941833, \"Y\": 0.5673402547836304}, {\"X\": 0.624580979347229, \"Y\": 0.5721631646156311}, {\"X\": 0.6220508217811584, \"Y\": 0.5822502374649048}, {\"X\": 0.583548367023468, \"Y\": 0.5774273872375488}]}, \"Id\": \"7b63d4f1-80f9-4972-9b71-606a85d41b7d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81835174560547, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047479864209890366, \"Height\": 0.015794051811099052, \"Left\": 0.6755119562149048, \"Top\": 0.5786596536636353}, \"Polygon\": [{\"X\": 0.6780619621276855, \"Y\": 0.5786596536636353}, {\"X\": 0.7229918241500854, \"Y\": 0.5842876434326172}, {\"X\": 0.7204418182373047, \"Y\": 0.5944536924362183}, {\"X\": 0.6755119562149048, \"Y\": 0.5888257026672363}]}, \"Id\": \"58cea103-ed06-49af-945c-1bf4cdafa8f3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1738510131836, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04143722727894783, \"Height\": 0.015025596134364605, \"Left\": 0.7254968285560608, \"Top\": 0.5850687623023987}, \"Polygon\": [{\"X\": 0.728043794631958, \"Y\": 0.5850687623023987}, {\"X\": 0.7669340372085571, \"Y\": 0.5899401903152466}, {\"X\": 0.7643870115280151, \"Y\": 0.6000943779945374}, {\"X\": 0.7254968285560608, \"Y\": 0.5952228903770447}]}, \"Id\": \"190f05ca-a941-4195-8a5c-b11d9bb0b3bd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62664794921875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0480121374130249, \"Height\": 0.015922361984848976, \"Left\": 0.816906213760376, \"Top\": 0.5962925553321838}, \"Polygon\": [{\"X\": 0.8194721937179565, \"Y\": 0.5962925553321838}, {\"X\": 0.8649183511734009, \"Y\": 0.6019852161407471}, {\"X\": 0.8623523712158203, \"Y\": 0.6122149229049683}, {\"X\": 0.816906213760376, \"Y\": 0.6065223217010498}]}, \"Id\": \"de1bdabb-de57-407e-af0a-d497be579c7a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49121856689453, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040600307285785675, \"Height\": 0.014906077645719051, \"Left\": 0.8672931790351868, \"Top\": 0.6027430891990662}, \"Polygon\": [{\"X\": 0.8698363900184631, \"Y\": 0.6027430891990662}, {\"X\": 0.9078935384750366, \"Y\": 0.6075101494789124}, {\"X\": 0.9053503274917603, \"Y\": 0.6176491379737854}, {\"X\": 0.8672931790351868, \"Y\": 0.6128820776939392}]}, \"Id\": \"6ba70da5-be67-4178-9f98-17767e3192b0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81107330322266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047817107290029526, \"Height\": 0.015977345407009125, \"Left\": 0.529481053352356, \"Top\": 0.5781894326210022}, \"Polygon\": [{\"X\": 0.532067596912384, \"Y\": 0.5781894326210022}, {\"X\": 0.5772981643676758, \"Y\": 0.5838550925254822}, {\"X\": 0.5747116208076477, \"Y\": 0.5941668152809143}, {\"X\": 0.529481053352356, \"Y\": 0.5885011553764343}]}, \"Id\": \"0993119a-a46d-4360-9aee-743ccd361164\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48517608642578, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040764860808849335, \"Height\": 0.014890313148498535, \"Left\": 0.5793270468711853, \"Top\": 0.5848821997642517}, \"Polygon\": [{\"X\": 0.5818608403205872, \"Y\": 0.5848821997642517}, {\"X\": 0.6200919151306152, \"Y\": 0.5896710753440857}, {\"X\": 0.6175581216812134, \"Y\": 0.5997725129127502}, {\"X\": 0.5793270468711853, \"Y\": 0.5949836373329163}]}, \"Id\": \"9303caf2-6af5-4122-96a0-fa662493c09d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86722564697266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04764453321695328, \"Height\": 0.015858467668294907, \"Left\": 0.6713664531707764, \"Top\": 0.5960526466369629}, \"Polygon\": [{\"X\": 0.6739278435707092, \"Y\": 0.5960526466369629}, {\"X\": 0.7190110087394714, \"Y\": 0.6016998291015625}, {\"X\": 0.7164496779441833, \"Y\": 0.6119111180305481}, {\"X\": 0.6713664531707764, \"Y\": 0.6062639355659485}]}, \"Id\": \"23fb50ee-3a9f-4c3d-b363-591fe0f8bcaa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46971893310547, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04087069258093834, \"Height\": 0.014779011718928814, \"Left\": 0.7216222286224365, \"Top\": 0.6026284694671631}, \"Polygon\": [{\"X\": 0.7241237759590149, \"Y\": 0.6026284694671631}, {\"X\": 0.7624928951263428, \"Y\": 0.6074346303939819}, {\"X\": 0.7599913477897644, \"Y\": 0.6174074411392212}, {\"X\": 0.7216222286224365, \"Y\": 0.6126012802124023}]}, \"Id\": \"eeaa5da0-56bc-4567-a84e-1324fe953427\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64592742919922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04764747992157936, \"Height\": 0.015829117968678474, \"Left\": 0.8130645751953125, \"Top\": 0.6137460470199585}, \"Polygon\": [{\"X\": 0.8156182169914246, \"Y\": 0.6137460470199585}, {\"X\": 0.8607120513916016, \"Y\": 0.6193946003913879}, {\"X\": 0.8581584095954895, \"Y\": 0.6295751929283142}, {\"X\": 0.8130645751953125, \"Y\": 0.6239266991615295}]}, \"Id\": \"1d46c116-ef00-48b8-8548-755c09d5df15\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1961441040039, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040588945150375366, \"Height\": 0.014629736542701721, \"Left\": 0.8631042242050171, \"Top\": 0.620345413684845}, \"Polygon\": [{\"X\": 0.8655762672424316, \"Y\": 0.620345413684845}, {\"X\": 0.9036931991577148, \"Y\": 0.6251199841499329}, {\"X\": 0.9012211561203003, \"Y\": 0.6349751353263855}, {\"X\": 0.8631042242050171, \"Y\": 0.6302005648612976}]}, \"Id\": \"9a305d26-8ab8-4297-b5ee-51f21939af9f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33943939208984, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03590479865670204, \"Height\": 0.014667363837361336, \"Left\": 0.10834088921546936, \"Top\": 0.5410118699073792}, \"Polygon\": [{\"X\": 0.11097460240125656, \"Y\": 0.5410118699073792}, {\"X\": 0.1442456841468811, \"Y\": 0.5451794266700745}, {\"X\": 0.1416119784116745, \"Y\": 0.555679202079773}, {\"X\": 0.10834088921546936, \"Y\": 0.5515116453170776}]}, \"Id\": \"b64d542c-bd48-416c-be2a-0301abeebcf7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97491455078125, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06837577372789383, \"Height\": 0.01931191422045231, \"Left\": 0.14579938352108002, \"Top\": 0.5451492071151733}, \"Polygon\": [{\"X\": 0.1485825777053833, \"Y\": 0.5451492071151733}, {\"X\": 0.21417516469955444, \"Y\": 0.5533654093742371}, {\"X\": 0.21139197051525116, \"Y\": 0.5644611120223999}, {\"X\": 0.14579938352108002, \"Y\": 0.5562449097633362}]}, \"Id\": \"f358acb3-0a4a-45e4-8c98-13dc6922f10a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63927459716797, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0322209931910038, \"Height\": 0.014208860695362091, \"Left\": 0.10364583879709244, \"Top\": 0.5569207668304443}, \"Polygon\": [{\"X\": 0.10628031194210052, \"Y\": 0.5569207668304443}, {\"X\": 0.13586683571338654, \"Y\": 0.5606268048286438}, {\"X\": 0.13323237001895905, \"Y\": 0.5711296200752258}, {\"X\": 0.10364583879709244, \"Y\": 0.5674235820770264}]}, \"Id\": \"e7e00343-44d2-4db6-86dd-f9ea4490829d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92044830322266, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10121864080429077, \"Height\": 0.022745883092284203, \"Left\": 0.137601837515831, \"Top\": 0.561017632484436}, \"Polygon\": [{\"X\": 0.14020892977714539, \"Y\": 0.561017632484436}, {\"X\": 0.23882047832012177, \"Y\": 0.5733698606491089}, {\"X\": 0.23621338605880737, \"Y\": 0.5837635397911072}, {\"X\": 0.137601837515831, \"Y\": 0.5714113116264343}]}, \"Id\": \"723b0692-bc69-4c64-b8b6-7edd9e8ac9b9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.3924560546875, \"Text\": \"Hello\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022608155384659767, \"Height\": 0.0067900423891842365, \"Left\": 0.6550418138504028, \"Top\": 0.7396047711372375}, \"Polygon\": [{\"X\": 0.6560668349266052, \"Y\": 0.7396047711372375}, {\"X\": 0.677649974822998, \"Y\": 0.7423083186149597}, {\"X\": 0.6766249537467957, \"Y\": 0.7463948130607605}, {\"X\": 0.6550418138504028, \"Y\": 0.7436912655830383}]}, \"Id\": \"d6adaf77-5cd1-449c-995f-0983a9a1ddef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 92.17173767089844, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02260156162083149, \"Height\": 0.00684511149302125, \"Left\": 0.6797266602516174, \"Top\": 0.742719829082489}, \"Polygon\": [{\"X\": 0.6807661652565002, \"Y\": 0.742719829082489}, {\"X\": 0.7023282051086426, \"Y\": 0.7454206943511963}, {\"X\": 0.7012887001037598, \"Y\": 0.7495649456977844}, {\"X\": 0.6797266602516174, \"Y\": 0.7468640208244324}]}, \"Id\": \"6dd87cb2-d05b-43d7-895a-99df5f2de7b2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.56391906738281, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029648790135979652, \"Height\": 0.007453929167240858, \"Left\": 0.7127695083618164, \"Top\": 0.7471539974212646}, \"Polygon\": [{\"X\": 0.7137380838394165, \"Y\": 0.7471539974212646}, {\"X\": 0.7424182891845703, \"Y\": 0.7507465481758118}, {\"X\": 0.7414497137069702, \"Y\": 0.7546079158782959}, {\"X\": 0.7127695083618164, \"Y\": 0.7510154247283936}]}, \"Id\": \"45a1f84e-e511-49c9-9ba1-6e7c29d7658d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 72.26459503173828, \"Text\": \"here!\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02208072319626808, \"Height\": 0.006604223512113094, \"Left\": 0.7445138692855835, \"Top\": 0.7509880661964417}, \"Polygon\": [{\"X\": 0.7455078959465027, \"Y\": 0.7509880661964417}, {\"X\": 0.7665945887565613, \"Y\": 0.7536294460296631}, {\"X\": 0.7656005620956421, \"Y\": 0.7575923204421997}, {\"X\": 0.7445138692855835, \"Y\": 0.754951000213623}]}, \"Id\": \"6ab2700c-b1af-47b3-b877-d2decfd29817\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.97379302978516, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.4623492658138275, \"Height\": 0.19360685348510742, \"Left\": 0.5189626812934875, \"Top\": 0.45146259665489197}, \"Polygon\": [{\"X\": 0.5541031956672668, \"Y\": 0.45146259665489197}, {\"X\": 0.9813119769096375, \"Y\": 0.5049753189086914}, {\"X\": 0.9461715221405029, \"Y\": 0.645069420337677}, {\"X\": 0.5189626812934875, \"Y\": 0.5915567278862}]}, \"Id\": \"b450bdf1-fcd7-41bf-babe-8d24bf36f9ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e056ca4-04f7-43fb-b1d0-57c7ecb8f733\", \"3ac27592-c431-4d0a-a897-147e6e130df1\", \"10db4ed0-e127-45ee-ab17-45c70802c0a2\", \"94cbcf56-8870-45da-a420-f463ce3768b4\", \"d1dbf1fa-ed29-4e62-a86d-45e5d2c80628\", \"2cfb2abc-c6e4-4d12-9f04-5026f788eb0d\", \"b5db3058-2ad9-4775-bc6e-7a31a0d6ee7e\", \"0593cdea-4601-4967-b1bf-6a19469c3079\", \"57e1bb5f-813e-4a27-a8ea-24cd5bd50ced\", \"5fff60a7-cdff-454c-8813-b031084d22af\", \"25ecaf0b-764a-4374-b5fb-e23e8af807e5\", \"5d965460-5a65-463e-a49d-7c4cd06ffb3c\", \"d2dc1a94-607b-40fa-8b19-f09f1495ddb9\", \"0e811dd1-d208-4d35-a00f-d12e8b2694ab\", \"8ad05bd4-5f22-4856-b862-69975b9402a6\", \"65282f11-b3f5-4661-844e-98850c9da6e7\", \"c4fa5208-b6cf-4d56-8615-b67434fd4983\", \"11f1fb54-10f7-4956-bf87-f0bdc40e3cd7\", \"a76e0c5a-ade1-4aac-a3a4-d99c88f64969\", \"ff7ac37a-0742-46e6-81e6-82e4aa51e8be\", \"3dcac6e9-09e6-4c27-ab21-134526b992b0\", \"922da1af-d73d-44b2-b781-0fd9743c2401\", \"fecdc9fa-e435-4b5f-9e12-98057e772fdb\", \"d4e4f257-efea-478a-909a-180a7505054f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.146075040102005, \"Height\": 0.03544143959879875, \"Left\": 0.5496633648872375, \"Top\": 0.4514625668525696}, \"Polygon\": [{\"X\": 0.5541031360626221, \"Y\": 0.4514625668525696}, {\"X\": 0.6957384347915649, \"Y\": 0.46920397877693176}, {\"X\": 0.6912986040115356, \"Y\": 0.4869040250778198}, {\"X\": 0.5496633648872375, \"Y\": 0.46916261315345764}]}, \"Id\": \"5e056ca4-04f7-43fb-b1d0-57c7ecb8f733\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4871509a-17b0-41c2-bf9f-0798a0b4b018\", \"ec970be8-7d91-4055-b498-6912bf7673e1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837802946567535, \"Height\": 0.03572991117835045, \"Left\": 0.6912986636161804, \"Top\": 0.46920400857925415}, \"Polygon\": [{\"X\": 0.6957384943962097, \"Y\": 0.46920400857925415}, {\"X\": 0.8396767377853394, \"Y\": 0.48723387718200684}, {\"X\": 0.8352369666099548, \"Y\": 0.5049338936805725}, {\"X\": 0.6912986636161804, \"Y\": 0.4869040250778198}]}, \"Id\": \"3ac27592-c431-4d0a-a897-147e6e130df1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bfd03d12-819e-4570-9f52-00dc62863d83\", \"5a5da91d-4746-4e75-ba34-eba14b3bb20d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.146075040102005, \"Height\": 0.03544143959879875, \"Left\": 0.8352369070053101, \"Top\": 0.48723387718200684}, \"Polygon\": [{\"X\": 0.8396766781806946, \"Y\": 0.48723387718200684}, {\"X\": 0.9813119173049927, \"Y\": 0.5049752593040466}, {\"X\": 0.9768721461296082, \"Y\": 0.5226753354072571}, {\"X\": 0.8352369070053101, \"Y\": 0.5049338936805725}]}, \"Id\": \"10db4ed0-e127-45ee-ab17-45c70802c0a2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"828d2862-7889-4451-94c1-9cb786777bcd\", \"bfbe1097-6226-45c4-8ccd-28b762256431\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.5454124808311462, \"Top\": 0.46916264295578003}, \"Polygon\": [{\"X\": 0.5496633648872375, \"Y\": 0.46916264295578003}, {\"X\": 0.6912986040115356, \"Y\": 0.4869040548801422}, {\"X\": 0.6870477795600891, \"Y\": 0.5038509368896484}, {\"X\": 0.5454124808311462, \"Y\": 0.48610952496528625}]}, \"Id\": \"94cbcf56-8870-45da-a420-f463ce3768b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"46f9adf1-a1f3-41d0-8f71-ee0203d7639a\", \"0aef65de-c92f-4951-b764-d9167332c2ac\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14818911254405975, \"Height\": 0.0349767692387104, \"Left\": 0.6870477795600891, \"Top\": 0.4869040846824646}, \"Polygon\": [{\"X\": 0.6912986636161804, \"Y\": 0.4869040846824646}, {\"X\": 0.8352369070053101, \"Y\": 0.5049339532852173}, {\"X\": 0.8309860825538635, \"Y\": 0.5218808650970459}, {\"X\": 0.6870477795600891, \"Y\": 0.5038509368896484}]}, \"Id\": \"d1dbf1fa-ed29-4e62-a86d-45e5d2c80628\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af8812a7-1e37-4d5f-baad-94911a8fa288\", \"4645df6b-2e77-4356-abe1-6a9254f0e97d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.8309860229492188, \"Top\": 0.5049339532852173}, \"Polygon\": [{\"X\": 0.8352369070053101, \"Y\": 0.5049339532852173}, {\"X\": 0.9768721461296082, \"Y\": 0.5226753354072571}, {\"X\": 0.9726212620735168, \"Y\": 0.5396222472190857}, {\"X\": 0.8309860229492188, \"Y\": 0.5218808650970459}]}, \"Id\": \"2cfb2abc-c6e4-4d12-9f04-5026f788eb0d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f499d5f7-879c-4b59-a1b9-3febc5f9b139\", \"bae6fe45-7b34-4fee-bbeb-1ee68a6b0ec6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1462639719247818, \"Height\": 0.036194659769535065, \"Left\": 0.5407837629318237, \"Top\": 0.48610949516296387}, \"Polygon\": [{\"X\": 0.5454124808311462, \"Y\": 0.48610949516296387}, {\"X\": 0.6870477795600891, \"Y\": 0.5038508772850037}, {\"X\": 0.6824190616607666, \"Y\": 0.5223041772842407}, {\"X\": 0.5407837629318237, \"Y\": 0.5045627355575562}]}, \"Id\": \"b5db3058-2ad9-4775-bc6e-7a31a0d6ee7e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"be81fad9-0a30-4267-904b-654bd12fbc88\", \"c9a97d47-2de2-4984-8d7d-22898945519d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14856696128845215, \"Height\": 0.03648313507437706, \"Left\": 0.6824191212654114, \"Top\": 0.5038509368896484}, \"Polygon\": [{\"X\": 0.6870478391647339, \"Y\": 0.5038509368896484}, {\"X\": 0.8309860825538635, \"Y\": 0.5218808054924011}, {\"X\": 0.826357364654541, \"Y\": 0.5403340458869934}, {\"X\": 0.6824191212654114, \"Y\": 0.5223041772842407}]}, \"Id\": \"0593cdea-4601-4967-b1bf-6a19469c3079\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f008029-5f8e-4802-a14f-a6feea06b9e3\", \"34d047bd-e4ad-4083-a73d-f6452a24df4b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1462639719247818, \"Height\": 0.036194659769535065, \"Left\": 0.8263573050498962, \"Top\": 0.5218808054924011}, \"Polygon\": [{\"X\": 0.8309860229492188, \"Y\": 0.5218808054924011}, {\"X\": 0.9726213216781616, \"Y\": 0.5396221876144409}, {\"X\": 0.9679926037788391, \"Y\": 0.5580754280090332}, {\"X\": 0.8263573050498962, \"Y\": 0.5403340458869934}]}, \"Id\": \"57e1bb5f-813e-4a27-a8ea-24cd5bd50ced\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d74f97e8-43f8-41dd-b3ae-92e1de1ca4bd\", \"5cfbcfce-5b58-4db4-84e1-ac815ef5e4c1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.5365329384803772, \"Top\": 0.5045627355575562}, \"Polygon\": [{\"X\": 0.5407837629318237, \"Y\": 0.5045627355575562}, {\"X\": 0.6824190616607666, \"Y\": 0.5223041772842407}, {\"X\": 0.6781681776046753, \"Y\": 0.5392510294914246}, {\"X\": 0.5365329384803772, \"Y\": 0.5215096473693848}]}, \"Id\": \"5fff60a7-cdff-454c-8813-b031084d22af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"111e2f0e-2db2-46a5-9050-a7996149cce4\", \"70243060-6497-4bef-a1ba-f1a50dc94336\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14818911254405975, \"Height\": 0.034976765513420105, \"Left\": 0.6781682372093201, \"Top\": 0.5223041772842407}, \"Polygon\": [{\"X\": 0.6824191212654114, \"Y\": 0.5223041772842407}, {\"X\": 0.826357364654541, \"Y\": 0.5403340458869934}, {\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}, {\"X\": 0.6781682372093201, \"Y\": 0.5392510294914246}]}, \"Id\": \"25ecaf0b-764a-4374-b5fb-e23e8af807e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8946f352-fe57-4ef6-b6c9-5d1911290fe5\", \"812f6035-c7af-427e-ad13-edace1d5805d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.8221064805984497, \"Top\": 0.5403340458869934}, \"Polygon\": [{\"X\": 0.8263573050498962, \"Y\": 0.5403340458869934}, {\"X\": 0.9679926037788391, \"Y\": 0.5580754280090332}, {\"X\": 0.9637417197227478, \"Y\": 0.5750223398208618}, {\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}]}, \"Id\": \"5d965460-5a65-463e-a49d-7c4cd06ffb3c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a3d362f0-a0fb-41db-8e3a-65d3f89f630f\", \"a3e9be1e-fc99-423b-be6f-9eac7a6ab574\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.5320931077003479, \"Top\": 0.5215096473693848}, \"Polygon\": [{\"X\": 0.5365329384803772, \"Y\": 0.5215096473693848}, {\"X\": 0.6781681776046753, \"Y\": 0.5392510294914246}, {\"X\": 0.6737284064292908, \"Y\": 0.556951105594635}, {\"X\": 0.5320931077003479, \"Y\": 0.5392097234725952}]}, \"Id\": \"d2dc1a94-607b-40fa-8b19-f09f1495ddb9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cb18f172-bf08-4427-9e3f-3d5fb8770920\", \"9d70cc74-f068-4019-9484-63094703d2da\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837804436683655, \"Height\": 0.03572995215654373, \"Left\": 0.6737284660339355, \"Top\": 0.5392510294914246}, \"Polygon\": [{\"X\": 0.6781682372093201, \"Y\": 0.5392510294914246}, {\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}, {\"X\": 0.8176667094230652, \"Y\": 0.5749810338020325}, {\"X\": 0.6737284660339355, \"Y\": 0.556951105594635}]}, \"Id\": \"0e811dd1-d208-4d35-a00f-d12e8b2694ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a83e9d6b-a910-45c1-b2d2-e2cc043191bc\", \"1063c256-0c51-47f0-8154-2558a9c85d58\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.8176666498184204, \"Top\": 0.557280957698822}, \"Polygon\": [{\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}, {\"X\": 0.9637417197227478, \"Y\": 0.5750223398208618}, {\"X\": 0.9593019485473633, \"Y\": 0.5927224159240723}, {\"X\": 0.8176666498184204, \"Y\": 0.5749810338020325}]}, \"Id\": \"8ad05bd4-5f22-4856-b862-69975b9402a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1149de9-26a3-4902-ab5c-8e420b328609\", \"0712e316-a217-4788-8b7e-c663c24c1631\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.5278422832489014, \"Top\": 0.5392097234725952}, \"Polygon\": [{\"X\": 0.5320931077003479, \"Y\": 0.5392097234725952}, {\"X\": 0.6737284064292908, \"Y\": 0.556951105594635}, {\"X\": 0.6694775223731995, \"Y\": 0.5738980174064636}, {\"X\": 0.5278422832489014, \"Y\": 0.556156575679779}]}, \"Id\": \"65282f11-b3f5-4661-844e-98850c9da6e7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0922dad-a91e-4b55-ace4-38a6461d5f6a\", \"4f6bdc96-6dda-443f-85fb-c0de1928ca1b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14818911254405975, \"Height\": 0.034976765513420105, \"Left\": 0.6694775819778442, \"Top\": 0.556951105594635}, \"Polygon\": [{\"X\": 0.6737284660339355, \"Y\": 0.556951105594635}, {\"X\": 0.8176667094230652, \"Y\": 0.5749810338020325}, {\"X\": 0.8134158253669739, \"Y\": 0.5919278860092163}, {\"X\": 0.6694775819778442, \"Y\": 0.5738980174064636}]}, \"Id\": \"c4fa5208-b6cf-4d56-8615-b67434fd4983\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3e35543-a5e3-4b9b-bc06-5b2b0a25180c\", \"30cd649c-5149-4fd5-a3cb-2687d7fb3dba\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.8134158253669739, \"Top\": 0.5749810338020325}, \"Polygon\": [{\"X\": 0.8176666498184204, \"Y\": 0.5749810338020325}, {\"X\": 0.9593019485473633, \"Y\": 0.5927224159240723}, {\"X\": 0.955051064491272, \"Y\": 0.6096693277359009}, {\"X\": 0.8134158253669739, \"Y\": 0.5919278860092163}]}, \"Id\": \"11f1fb54-10f7-4956-bf87-f0bdc40e3cd7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79b15d7b-35c6-4c3d-bbf9-8cb63d0fc6f2\", \"18bc4b21-ba4f-4309-a9f5-1874e4740d26\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.5234024524688721, \"Top\": 0.5561566352844238}, \"Polygon\": [{\"X\": 0.5278422832489014, \"Y\": 0.5561566352844238}, {\"X\": 0.6694775223731995, \"Y\": 0.5738980174064636}, {\"X\": 0.6650377511978149, \"Y\": 0.5915980935096741}, {\"X\": 0.5234024524688721, \"Y\": 0.5738566517829895}]}, \"Id\": \"a76e0c5a-ade1-4aac-a3a4-d99c88f64969\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82ceda64-c961-4f25-8989-7a4a89c3ffa9\", \"7b63d4f1-80f9-4972-9b71-606a85d41b7d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837804436683655, \"Height\": 0.03572995215654373, \"Left\": 0.6650378108024597, \"Top\": 0.5738980174064636}, \"Polygon\": [{\"X\": 0.6694775819778442, \"Y\": 0.5738980174064636}, {\"X\": 0.8134158253669739, \"Y\": 0.5919278860092163}, {\"X\": 0.8089760541915894, \"Y\": 0.6096279621124268}, {\"X\": 0.6650378108024597, \"Y\": 0.5915980935096741}]}, \"Id\": \"ff7ac37a-0742-46e6-81e6-82e4aa51e8be\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58cea103-ed06-49af-945c-1bf4cdafa8f3\", \"190f05ca-a941-4195-8a5c-b11d9bb0b3bd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.8089759945869446, \"Top\": 0.5919278860092163}, \"Polygon\": [{\"X\": 0.8134157657623291, \"Y\": 0.5919278860092163}, {\"X\": 0.955051064491272, \"Y\": 0.6096693277359009}, {\"X\": 0.9506112933158875, \"Y\": 0.6273694038391113}, {\"X\": 0.8089759945869446, \"Y\": 0.6096279621124268}]}, \"Id\": \"3dcac6e9-09e6-4c27-ab21-134526b992b0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"de1bdabb-de57-407e-af0a-d497be579c7a\", \"6ba70da5-be67-4178-9f98-17767e3192b0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.5189626812934875, \"Top\": 0.5738567113876343}, \"Polygon\": [{\"X\": 0.5234024524688721, \"Y\": 0.5738567113876343}, {\"X\": 0.6650377511978149, \"Y\": 0.5915980935096741}, {\"X\": 0.6605979204177856, \"Y\": 0.6092981696128845}, {\"X\": 0.5189626812934875, \"Y\": 0.5915567278862}]}, \"Id\": \"922da1af-d73d-44b2-b781-0fd9743c2401\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0993119a-a46d-4360-9aee-743ccd361164\", \"9303caf2-6af5-4122-96a0-fa662493c09d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837804436683655, \"Height\": 0.03572995215654373, \"Left\": 0.6605979800224304, \"Top\": 0.5915980935096741}, \"Polygon\": [{\"X\": 0.6650378108024597, \"Y\": 0.5915980935096741}, {\"X\": 0.8089760541915894, \"Y\": 0.6096279621124268}, {\"X\": 0.8045362234115601, \"Y\": 0.6273280382156372}, {\"X\": 0.6605979800224304, \"Y\": 0.6092981696128845}]}, \"Id\": \"fecdc9fa-e435-4b5f-9e12-98057e772fdb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23fb50ee-3a9f-4c3d-b363-591fe0f8bcaa\", \"eeaa5da0-56bc-4567-a84e-1324fe953427\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.8045362234115601, \"Top\": 0.6096279621124268}, \"Polygon\": [{\"X\": 0.8089759945869446, \"Y\": 0.6096279621124268}, {\"X\": 0.9506112933158875, \"Y\": 0.6273694038391113}, {\"X\": 0.9461714625358582, \"Y\": 0.6450694799423218}, {\"X\": 0.8045362234115601, \"Y\": 0.6273280382156372}]}, \"Id\": \"d4e4f257-efea-478a-909a-180a7505054f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1d46c116-ef00-48b8-8548-755c09d5df15\", \"9a305d26-8ab8-4297-b5ee-51f21939af9f\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.86642456054688, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5765056014060974, \"Height\": 0.1723639816045761, \"Left\": 0.4234943985939026, \"Top\": 0.2601539194583893}, \"Polygon\": [{\"X\": 0.44903403520584106, \"Y\": 0.2601539194583893}, {\"X\": 1.0, \"Y\": 0.33069929480552673}, {\"X\": 0.986680269241333, \"Y\": 0.4325178861618042}, {\"X\": 0.4234943985939026, \"Y\": 0.36197251081466675}]}, \"Id\": \"93f8d762-c270-437e-af9e-ed377fa95254\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6f4199d0-cb77-4f8b-be1c-79e78caf7798\", \"605f06ca-5038-4250-9d8e-2db54cbf5760\", \"560652f3-54eb-4c2a-bcc5-291120414d56\", \"045ecf60-afd2-4b29-91d7-2284e46822ce\", \"a5b11c88-d4dd-4eaa-a071-877b56b6b64e\", \"9e28b6e2-0480-461a-a8a6-0cf1c22c0c9e\", \"27eac7a0-f440-40c4-b5b2-6b55567d5c71\", \"678183e9-71f4-4458-83f2-8ed616ece18e\", \"2d7b2103-2519-437f-bc9b-ff9deea7f27b\", \"fd0f6989-9353-4e0c-bc47-0446a18defe6\", \"75fe9bf9-7298-4ff4-85b8-64c51e44bace\", \"117aabe9-5013-4b86-a946-4673ab3225e5\", \"bbf54eae-eddf-4116-b870-aa5b9f219e26\", \"08aa5f4b-a6a7-4172-ae5d-3850c92a7777\", \"1ce96538-3700-4097-96b2-0567a4557ab6\", \"a74a610b-273e-40d7-8cc0-bf8fd08bffda\", \"7efac734-c179-4c45-b18f-986988a6fbac\", \"757745b4-eee1-4143-91dd-cf0b31d94248\", \"27efe445-99c9-4305-ae5d-2de4804f1829\", \"88d42c2d-4348-4ee3-8319-b6a9f89ff33c\", \"aa68fb25-d5eb-44e7-8b39-8a664886f31f\", \"320e7b31-6629-4661-9c04-a406d26b46a3\", \"a2b65d3f-10fc-4503-83b6-8b66f7e64ba9\", \"38e67af4-b3fe-4ff0-bdd0-d6ee0229dedb\", \"3dcc56d1-89fe-4795-afec-3c389bae7279\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887075543403625, \"Height\": 0.036120105534791946, \"Left\": 0.44386038184165955, \"Top\": 0.2601539194583893}, \"Polygon\": [{\"X\": 0.4490340054035187, \"Y\": 0.2601539194583893}, {\"X\": 0.5727311372756958, \"Y\": 0.2756483554840088}, {\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}, {\"X\": 0.44386038184165955, \"Y\": 0.28077957034111023}]}, \"Id\": \"6f4199d0-cb77-4f8b-be1c-79e78caf7798\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1c7f27a-59ec-46c5-8dda-597763a2f7e9\", \"4bcd797c-a8bb-4f60-bc3c-70717538b4c2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596027553081512, \"Height\": 0.03575553745031357, \"Left\": 0.5675575137138367, \"Top\": 0.2756483554840088}, \"Polygon\": [{\"X\": 0.5727311372756958, \"Y\": 0.2756483554840088}, {\"X\": 0.693517804145813, \"Y\": 0.290778249502182}, {\"X\": 0.6883441805839539, \"Y\": 0.31140390038490295}, {\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}]}, \"Id\": \"605f06ca-5038-4250-9d8e-2db54cbf5760\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0190eeb4-2346-401a-9f57-e913463265f3\", \"95dc8994-d73f-46db-a510-4e838fce696b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596023082733154, \"Height\": 0.03575552999973297, \"Left\": 0.6883442401885986, \"Top\": 0.290778249502182}, \"Polygon\": [{\"X\": 0.6935178637504578, \"Y\": 0.290778249502182}, {\"X\": 0.8143044114112854, \"Y\": 0.3059081435203552}, {\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}, {\"X\": 0.6883442401885986, \"Y\": 0.31140390038490295}]}, \"Id\": \"560652f3-54eb-4c2a-bcc5-291120414d56\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ebabc69-c494-443f-bfe8-aafaca8876d0\", \"3526d21e-54fe-4c19-b7ef-7b5945862693\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887082993984222, \"Height\": 0.03612011671066284, \"Left\": 0.8091307878494263, \"Top\": 0.3059081435203552}, \"Polygon\": [{\"X\": 0.8143044114112854, \"Y\": 0.3059081435203552}, {\"X\": 0.9380015730857849, \"Y\": 0.3214026093482971}, {\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}, {\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}]}, \"Id\": \"045ecf60-afd2-4b29-91d7-2284e46822ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"45717906-5a8b-43c1-8fe5-18cd0a9036fb\", \"5bba3a13-5ff7-4590-8692-4ada49301817\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06717203557491302, \"Height\": 0.029922325164079666, \"Left\": 0.9328279495239258, \"Top\": 0.3214026093482971}, \"Polygon\": [{\"X\": 0.9380015730857849, \"Y\": 0.3214026093482971}, {\"X\": 1.0, \"Y\": 0.33069929480552673}, {\"X\": 1.0, \"Y\": 0.3513249158859253}, {\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}]}, \"Id\": \"a5b11c88-d4dd-4eaa-a071-877b56b6b64e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d4f5966-86b2-4746-8b65-7369079d9dec\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887074053287506, \"Height\": 0.036120086908340454, \"Left\": 0.4386867582798004, \"Top\": 0.28077957034111023}, \"Polygon\": [{\"X\": 0.44386038184165955, \"Y\": 0.28077957034111023}, {\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}, {\"X\": 0.5623838901519775, \"Y\": 0.3168996572494507}, {\"X\": 0.4386867582798004, \"Y\": 0.3014051914215088}]}, \"Id\": \"9e28b6e2-0480-461a-a8a6-0cf1c22c0c9e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c85a4612-215e-459a-a652-385ac4a72548\", \"bd9035b3-3ef1-44a4-ba59-0cb9894d76ba\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596027553081512, \"Height\": 0.035755518823862076, \"Left\": 0.5623838901519775, \"Top\": 0.29627400636672974}, \"Polygon\": [{\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}, {\"X\": 0.6883441805839539, \"Y\": 0.31140390038490295}, {\"X\": 0.6831705570220947, \"Y\": 0.3320295512676239}, {\"X\": 0.5623838901519775, \"Y\": 0.3168996572494507}]}, \"Id\": \"27eac7a0-f440-40c4-b5b2-6b55567d5c71\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5738a9e4-d8ed-4bcc-a54a-7953d03081c1\", \"96dc9489-f835-4eec-b1d9-04734ee96c3c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596021592617035, \"Height\": 0.03575551137328148, \"Left\": 0.6831706166267395, \"Top\": 0.31140390038490295}, \"Polygon\": [{\"X\": 0.6883442401885986, \"Y\": 0.31140390038490295}, {\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}, {\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}, {\"X\": 0.6831706166267395, \"Y\": 0.3320295512676239}]}, \"Id\": \"678183e9-71f4-4458-83f2-8ed616ece18e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c1ec31df-1d0a-425f-ac76-7864b8b07e3d\", \"9ce0f745-2b69-467f-96db-a33db2561fa0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887082993984222, \"Height\": 0.03612009808421135, \"Left\": 0.8039571642875671, \"Top\": 0.32653379440307617}, \"Polygon\": [{\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}, {\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}, {\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}, {\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}]}, \"Id\": \"2d7b2103-2519-437f-bc9b-ff9deea7f27b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d32427a8-60b0-4f48-8875-55d9e1d940e8\", \"4b1e5fa5-43d6-4e2b-9d8a-0f548a08bfdb\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07234565913677216, \"Height\": 0.029922306537628174, \"Left\": 0.9276543259620667, \"Top\": 0.34202826023101807}, \"Polygon\": [{\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}, {\"X\": 1.0, \"Y\": 0.3513249158859253}, {\"X\": 1.0, \"Y\": 0.37195056676864624}, {\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}]}, \"Id\": \"fd0f6989-9353-4e0c-bc47-0446a18defe6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b893ac5d-64bb-4a42-950f-545183915b68\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870649993419647, \"Height\": 0.0354653038084507, \"Left\": 0.4336773753166199, \"Top\": 0.3014051914215088}, \"Polygon\": [{\"X\": 0.4386867582798004, \"Y\": 0.3014051914215088}, {\"X\": 0.5623838901519775, \"Y\": 0.3168996274471283}, {\"X\": 0.5573745369911194, \"Y\": 0.3368704915046692}, {\"X\": 0.4336773753166199, \"Y\": 0.3213760256767273}]}, \"Id\": \"75fe9bf9-7298-4ff4-85b8-64c51e44bace\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"026bb8f2-3cfb-4737-a765-eab5cd50ac9c\", \"0f9d693d-0f4d-4294-9e9f-99f770440dd4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579603493213654, \"Height\": 0.03510073572397232, \"Left\": 0.5573745369911194, \"Top\": 0.3168996274471283}, \"Polygon\": [{\"X\": 0.5623838901519775, \"Y\": 0.3168996274471283}, {\"X\": 0.6831705570220947, \"Y\": 0.3320295214653015}, {\"X\": 0.6781611442565918, \"Y\": 0.3520003855228424}, {\"X\": 0.5573745369911194, \"Y\": 0.3368704915046692}]}, \"Id\": \"117aabe9-5013-4b86-a946-4673ab3225e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c5c123e2-d31f-4795-a930-d9c2a4d8ae01\", \"fbe012f8-6711-47a4-bbd1-918c5958a842\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579597532749176, \"Height\": 0.035100728273391724, \"Left\": 0.6781612038612366, \"Top\": 0.3320295214653015}, \"Polygon\": [{\"X\": 0.6831706166267395, \"Y\": 0.3320295214653015}, {\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}, {\"X\": 0.798947811126709, \"Y\": 0.36713024973869324}, {\"X\": 0.6781612038612366, \"Y\": 0.3520003855228424}]}, \"Id\": \"bbf54eae-eddf-4116-b870-aa5b9f219e26\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"877f03a7-190e-4d49-8580-3f06a5b90d48\", \"4ee4735b-42e4-430b-a917-200f3824dd46\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870658934116364, \"Height\": 0.035465314984321594, \"Left\": 0.7989477515220642, \"Top\": 0.34715941548347473}, \"Polygon\": [{\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}, {\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}, {\"X\": 0.9226449728012085, \"Y\": 0.38262471556663513}, {\"X\": 0.7989477515220642, \"Y\": 0.36713024973869324}]}, \"Id\": \"08aa5f4b-a6a7-4172-ae5d-3850c92a7777\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca0c5bc4-bfad-4aec-b327-baa79049ecb9\", \"b0c780ba-a54a-4a04-8b92-1f3dc1b19aec\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0773550346493721, \"Height\": 0.02926752343773842, \"Left\": 0.9226449728012085, \"Top\": 0.3626538813114166}, \"Polygon\": [{\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}, {\"X\": 1.0, \"Y\": 0.37195053696632385}, {\"X\": 0.9968632459640503, \"Y\": 0.39192140102386475}, {\"X\": 0.9226449728012085, \"Y\": 0.38262471556663513}]}, \"Id\": \"1ce96538-3700-4097-96b2-0567a4557ab6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c915b178-1acc-4470-8f83-2dab9f0585d4\", \"31db4a71-b003-4604-887d-db9c27a944cb\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887074053287506, \"Height\": 0.036120086908340454, \"Left\": 0.42850375175476074, \"Top\": 0.3213760554790497}, \"Polygon\": [{\"X\": 0.4336773753166199, \"Y\": 0.3213760554790497}, {\"X\": 0.5573744773864746, \"Y\": 0.3368705213069916}, {\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}, {\"X\": 0.42850375175476074, \"Y\": 0.34200167655944824}]}, \"Id\": \"a74a610b-273e-40d7-8cc0-bf8fd08bffda\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a4e961b9-6ca8-4eb1-ab3a-f3d273e2f19c\", \"4ea13854-79e0-464e-808a-fbb4a0dc8fd1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596027553081512, \"Height\": 0.035755518823862076, \"Left\": 0.5522008538246155, \"Top\": 0.3368705213069916}, \"Polygon\": [{\"X\": 0.5573744773864746, \"Y\": 0.3368705213069916}, {\"X\": 0.6781611442565918, \"Y\": 0.3520004153251648}, {\"X\": 0.6729875206947327, \"Y\": 0.37262603640556335}, {\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}]}, \"Id\": \"7efac734-c179-4c45-b18f-986988a6fbac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e969e0-b0bc-417a-9a65-9e83643d1b61\", \"16a655e0-6f11-4c82-8e5a-fed345217634\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596021592617035, \"Height\": 0.03575551137328148, \"Left\": 0.6729875802993774, \"Top\": 0.3520004153251648}, \"Polygon\": [{\"X\": 0.6781612038612366, \"Y\": 0.3520004153251648}, {\"X\": 0.798947811126709, \"Y\": 0.3671302795410156}, {\"X\": 0.7937741875648499, \"Y\": 0.3877559304237366}, {\"X\": 0.6729875802993774, \"Y\": 0.37262603640556335}]}, \"Id\": \"757745b4-eee1-4143-91dd-cf0b31d94248\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2a21e6d-5bac-4120-980a-e0de6712d4c3\", \"4c184695-73ec-45a2-956c-e587d7df4592\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887082993984222, \"Height\": 0.03612009808421135, \"Left\": 0.7937741279602051, \"Top\": 0.3671302795410156}, \"Polygon\": [{\"X\": 0.7989477515220642, \"Y\": 0.3671302795410156}, {\"X\": 0.9226449728012085, \"Y\": 0.3826247453689575}, {\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}, {\"X\": 0.7937741279602051, \"Y\": 0.3877559006214142}]}, \"Id\": \"27efe445-99c9-4305-ae5d-2de4804f1829\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ff8b9553-96e2-49ea-83c3-3b6c676f0173\", \"cd1dd4d0-5390-457f-9c9d-02692204018c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07939191162586212, \"Height\": 0.029922306537628174, \"Left\": 0.9174713492393494, \"Top\": 0.3826247453689575}, \"Polygon\": [{\"X\": 0.9226449728012085, \"Y\": 0.3826247453689575}, {\"X\": 0.9968632459640503, \"Y\": 0.39192143082618713}, {\"X\": 0.9916896224021912, \"Y\": 0.4125470519065857}, {\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}]}, \"Id\": \"88d42c2d-4348-4ee3-8319-b6a9f89ff33c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b94349b1-b8d5-424f-adfc-08c5300d5968\", \"879908af-5359-4674-b617-0e629eb54579\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870649993419647, \"Height\": 0.0354653038084507, \"Left\": 0.4234943687915802, \"Top\": 0.34200167655944824}, \"Polygon\": [{\"X\": 0.42850375175476074, \"Y\": 0.34200167655944824}, {\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}, {\"X\": 0.5471915006637573, \"Y\": 0.37746697664260864}, {\"X\": 0.4234943687915802, \"Y\": 0.36197254061698914}]}, \"Id\": \"aa68fb25-d5eb-44e7-8b39-8a664886f31f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8bc1b852-4c10-44bd-b2a9-858acecde358\", \"535af8e0-d39d-49f5-b402-a32b37b25106\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579603493213654, \"Height\": 0.03510073572397232, \"Left\": 0.5471915006637573, \"Top\": 0.35749614238739014}, \"Polygon\": [{\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}, {\"X\": 0.6729875206947327, \"Y\": 0.37262603640556335}, {\"X\": 0.6679781675338745, \"Y\": 0.39259687066078186}, {\"X\": 0.5471915006637573, \"Y\": 0.37746697664260864}]}, \"Id\": \"320e7b31-6629-4661-9c04-a406d26b46a3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"381081ed-6870-4928-b566-c03fa8e29d79\", \"f0455c82-e9b6-410d-b695-05b196ada611\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579597532749176, \"Height\": 0.035100728273391724, \"Left\": 0.6679782271385193, \"Top\": 0.37262603640556335}, \"Polygon\": [{\"X\": 0.6729875802993774, \"Y\": 0.37262603640556335}, {\"X\": 0.7937741875648499, \"Y\": 0.3877559006214142}, {\"X\": 0.7887647747993469, \"Y\": 0.4077267646789551}, {\"X\": 0.6679782271385193, \"Y\": 0.39259687066078186}]}, \"Id\": \"a2b65d3f-10fc-4503-83b6-8b66f7e64ba9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"45e34e48-5d9c-4f6c-871b-eee907f9b8f4\", \"65575a8d-9dc2-4a59-826b-c4d3a2f4b606\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870658934116364, \"Height\": 0.035465314984321594, \"Left\": 0.7887647747993469, \"Top\": 0.3877559006214142}, \"Polygon\": [{\"X\": 0.7937741279602051, \"Y\": 0.3877559006214142}, {\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}, {\"X\": 0.9124619364738464, \"Y\": 0.423221230506897}, {\"X\": 0.7887647747993469, \"Y\": 0.4077267646789551}]}, \"Id\": \"38e67af4-b3fe-4ff0-bdd0-d6ee0229dedb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f842e2d-03b3-4b87-9705-58f9e4e1021a\", \"6b25b34e-7aee-4605-a6cb-16570ddbf948\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07922767102718353, \"Height\": 0.02926752343773842, \"Left\": 0.9124619364738464, \"Top\": 0.4032503664493561}, \"Polygon\": [{\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}, {\"X\": 0.9916896224021912, \"Y\": 0.4125470519065857}, {\"X\": 0.986680269241333, \"Y\": 0.4325178861618042}, {\"X\": 0.9124619364738464, \"Y\": 0.423221230506897}]}, \"Id\": \"3dcc56d1-89fe-4795-afec-3c389bae7279\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8b227ac3-597f-411d-8f9c-369447ca78a8\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.66625213623047, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.33845457434654236, \"Height\": 0.09358946979045868, \"Left\": 0.21848252415657043, \"Top\": 0.15417416393756866}, \"Polygon\": [{\"X\": 0.23174037039279938, \"Y\": 0.15417416393756866}, {\"X\": 0.5569370985031128, \"Y\": 0.19490870833396912}, {\"X\": 0.5436792373657227, \"Y\": 0.24776363372802734}, {\"X\": 0.21848252415657043, \"Y\": 0.2070290744304657}]}, \"Id\": \"d49b8b01-9790-490a-8940-d5dae1addddd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06ac21b3-688d-4788-9eb7-8fac989d6ef7\", \"17e3dfd9-d7c0-4d62-a99f-49d6d38541ea\", \"8acfbc19-a095-427f-82e3-8652415e7895\", \"82fa4fbd-58ac-47ab-92ca-1d2cc70d82f7\", \"409a4ce6-dd9e-41c3-beed-77b3a6926b79\", \"f4435c06-0d4e-41d2-9bb8-54d9f2a974f6\", \"710d4e25-b02e-4920-98fd-b85c5ba1013c\", \"1804ab5a-03fa-4851-ab12-9321dc321321\", \"0643ae94-2d22-4333-ab5f-ce4667993318\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1142047643661499, \"Height\": 0.031158193945884705, \"Left\": 0.22737599909305573, \"Top\": 0.15417414903640747}, \"Polygon\": [{\"X\": 0.23174038529396057, \"Y\": 0.15417414903640747}, {\"X\": 0.34158074855804443, \"Y\": 0.1679328978061676}, {\"X\": 0.3372163772583008, \"Y\": 0.18533234298229218}, {\"X\": 0.22737599909305573, \"Y\": 0.17157359421253204}]}, \"Id\": \"06ac21b3-688d-4788-9eb7-8fac989d6ef7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f48bdec-5af1-4890-a8d1-266ae7807858\", \"a220b192-e02b-4961-af1f-15f5c5c6f44c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1124749630689621, \"Height\": 0.030941516160964966, \"Left\": 0.3372163474559784, \"Top\": 0.1679328829050064}, \"Polygon\": [{\"X\": 0.34158074855804443, \"Y\": 0.1679328829050064}, {\"X\": 0.4496913254261017, \"Y\": 0.1814749538898468}, {\"X\": 0.44532692432403564, \"Y\": 0.19887439906597137}, {\"X\": 0.3372163474559784, \"Y\": 0.18533234298229218}]}, \"Id\": \"17e3dfd9-d7c0-4d62-a99f-49d6d38541ea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"092c2c6c-2c67-4184-9b5e-5cc4115c2334\", \"d1b86344-a832-4453-af1b-1281ab89fd89\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11161010712385178, \"Height\": 0.030833182856440544, \"Left\": 0.44532695412635803, \"Top\": 0.1814749538898468}, \"Polygon\": [{\"X\": 0.4496913552284241, \"Y\": 0.1814749538898468}, {\"X\": 0.556937038898468, \"Y\": 0.19490869343280792}, {\"X\": 0.5525726675987244, \"Y\": 0.2123081386089325}, {\"X\": 0.44532695412635803, \"Y\": 0.19887441396713257}]}, \"Id\": \"8acfbc19-a095-427f-82e3-8652415e7895\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9717af92-6c00-45b0-a170-2fd2de6df43c\", \"86bbc69e-0b65-4b6c-ab90-06a1dc905798\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11453414708375931, \"Height\": 0.03247135132551193, \"Left\": 0.22268222272396088, \"Top\": 0.17157360911369324}, \"Polygon\": [{\"X\": 0.22737599909305573, \"Y\": 0.17157360911369324}, {\"X\": 0.3372163772583008, \"Y\": 0.18533235788345337}, {\"X\": 0.33252260088920593, \"Y\": 0.20404495298862457}, {\"X\": 0.22268222272396088, \"Y\": 0.19028621912002563}]}, \"Id\": \"82fa4fbd-58ac-47ab-92ca-1d2cc70d82f7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c4b5a96-765b-403e-9826-01c08ad6fc44\", \"746c998c-2e89-4a81-a5c6-dcc39d50d0c4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1128043457865715, \"Height\": 0.032254673540592194, \"Left\": 0.33252257108688354, \"Top\": 0.18533234298229218}, \"Polygon\": [{\"X\": 0.3372163474559784, \"Y\": 0.18533234298229218}, {\"X\": 0.44532692432403564, \"Y\": 0.19887441396713257}, {\"X\": 0.4406331479549408, \"Y\": 0.21758702397346497}, {\"X\": 0.33252257108688354, \"Y\": 0.20404495298862457}]}, \"Id\": \"409a4ce6-dd9e-41c3-beed-77b3a6926b79\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c5b4791f-505b-443c-a565-d29e8afa4fdd\", \"aef419a3-5726-4207-84fb-fae403bfd964\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11193949729204178, \"Height\": 0.03214633837342262, \"Left\": 0.4406331777572632, \"Top\": 0.19887441396713257}, \"Polygon\": [{\"X\": 0.44532695412635803, \"Y\": 0.19887441396713257}, {\"X\": 0.5525726675987244, \"Y\": 0.2123081535100937}, {\"X\": 0.5478789210319519, \"Y\": 0.2310207635164261}, {\"X\": 0.4406331777572632, \"Y\": 0.21758702397346497}]}, \"Id\": \"f4435c06-0d4e-41d2-9bb8-54d9f2a974f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"77eeac22-26de-4376-9bcc-057eb42f15ff\", \"b7c23c96-5d8f-400d-935e-17a5d35ae684\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1140400692820549, \"Height\": 0.030501609668135643, \"Left\": 0.21848253905773163, \"Top\": 0.19028620421886444}, \"Polygon\": [{\"X\": 0.22268222272396088, \"Y\": 0.19028620421886444}, {\"X\": 0.33252260088920593, \"Y\": 0.20404495298862457}, {\"X\": 0.3283229172229767, \"Y\": 0.22078780829906464}, {\"X\": 0.21848253905773163, \"Y\": 0.2070290744304657}]}, \"Id\": \"710d4e25-b02e-4920-98fd-b85c5ba1013c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9e72fa9-26af-4fdf-b9b6-4babf3bd4eeb\", \"37f7846d-cc57-4ada-ba77-a6c90505e1ba\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1123102679848671, \"Height\": 0.030284933745861053, \"Left\": 0.3283228874206543, \"Top\": 0.20404493808746338}, \"Polygon\": [{\"X\": 0.33252257108688354, \"Y\": 0.20404493808746338}, {\"X\": 0.4406331777572632, \"Y\": 0.21758700907230377}, {\"X\": 0.43643346428871155, \"Y\": 0.23432987928390503}, {\"X\": 0.3283228874206543, \"Y\": 0.22078780829906464}]}, \"Id\": \"1804ab5a-03fa-4851-ab12-9321dc321321\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b8a74317-5cf5-4575-b87e-d9079cd62221\", \"2354d721-8b1d-48d6-8deb-a963c4b6fb25\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11144541203975677, \"Height\": 0.030176600441336632, \"Left\": 0.43643349409103394, \"Top\": 0.21758700907230377}, \"Polygon\": [{\"X\": 0.4406331777572632, \"Y\": 0.21758700907230377}, {\"X\": 0.5478789210319519, \"Y\": 0.2310207486152649}, {\"X\": 0.5436792373657227, \"Y\": 0.24776361882686615}, {\"X\": 0.43643349409103394, \"Y\": 0.23432987928390503}]}, \"Id\": \"0643ae94-2d22-4333-ab5f-ce4667993318\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"373a73e9-933a-4729-a293-e8a49517a3ef\", \"d790a25d-8bbb-4562-af20-596f2a68e3a4\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 68.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03673197329044342, \"Height\": 0.014849081635475159, \"Left\": 0.13944938778877258, \"Top\": 0.4122298061847687}, \"Polygon\": [{\"X\": 0.14210332930088043, \"Y\": 0.4122298061847687}, {\"X\": 0.176181361079216, \"Y\": 0.41649848222732544}, {\"X\": 0.17352743446826935, \"Y\": 0.42707890272140503}, {\"X\": 0.13944938778877258, \"Y\": 0.42281022667884827}]}, \"Id\": \"bc04910e-5d76-49b3-872a-6eb547436be6\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"3d2762d5-eb28-415f-ab1f-8b4ebac1d436\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"f5b7c841-5151-49b8-a456-7edddf89f55f\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 68.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06992454081773758, \"Height\": 0.01941007748246193, \"Left\": 0.17598775029182434, \"Top\": 0.41661393642425537}, \"Polygon\": [{\"X\": 0.17874611914157867, \"Y\": 0.41661393642425537}, {\"X\": 0.24591228365898132, \"Y\": 0.4250272512435913}, {\"X\": 0.243153914809227, \"Y\": 0.436024010181427}, {\"X\": 0.17598775029182434, \"Y\": 0.42761069536209106}]}, \"Id\": \"3d2762d5-eb28-415f-ab1f-8b4ebac1d436\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a8ba0666-fa39-41a1-9569-3d8b4832d8d0\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 49.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03529426455497742, \"Height\": 0.014496269635856152, \"Left\": 0.10886241495609283, \"Top\": 0.5416555404663086}, \"Polygon\": [{\"X\": 0.11147162318229675, \"Y\": 0.5416555404663086}, {\"X\": 0.14415667951107025, \"Y\": 0.5457496643066406}, {\"X\": 0.14154747128486633, \"Y\": 0.556151807308197}, {\"X\": 0.10886241495609283, \"Y\": 0.5520576238632202}]}, \"Id\": \"d9658b0f-d95b-4ff3-aec5-c405c7208f8c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c7509c58-cca8-47b1-934d-a61b6db374e3\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b64d542c-bd48-416c-be2a-0301abeebcf7\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 49.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06896624714136124, \"Height\": 0.019361162558197975, \"Left\": 0.14560037851333618, \"Top\": 0.545624315738678}, \"Polygon\": [{\"X\": 0.1483771651983261, \"Y\": 0.545624315738678}, {\"X\": 0.21456661820411682, \"Y\": 0.5539153218269348}, {\"X\": 0.2117898315191269, \"Y\": 0.5649855136871338}, {\"X\": 0.14560037851333618, \"Y\": 0.556694507598877}]}, \"Id\": \"c7509c58-cca8-47b1-934d-a61b6db374e3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f358acb3-0a4a-45e4-8c98-13dc6922f10a\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033525075763463974, \"Height\": 0.014517767354846, \"Left\": 0.10382681339979172, \"Top\": 0.5570979714393616}, \"Polygon\": [{\"X\": 0.10649897903203964, \"Y\": 0.5570979714393616}, {\"X\": 0.1373518854379654, \"Y\": 0.5609626770019531}, {\"X\": 0.13467973470687866, \"Y\": 0.5716157555580139}, {\"X\": 0.10382681339979172, \"Y\": 0.5677510499954224}]}, \"Id\": \"691f5fee-71ac-4f18-9247-2dbfda69ef7c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"4972e0e8-4ba0-479b-bf28-844c4d0d9467\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"e7e00343-44d2-4db6-86dd-f9ea4490829d\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10362393409013748, \"Height\": 0.023797467350959778, \"Left\": 0.13641637563705444, \"Top\": 0.560987114906311}, \"Polygon\": [{\"X\": 0.1392177790403366, \"Y\": 0.560987114906311}, {\"X\": 0.24004031717777252, \"Y\": 0.5736162662506104}, {\"X\": 0.23723891377449036, \"Y\": 0.5847845673561096}, {\"X\": 0.13641637563705444, \"Y\": 0.5721554160118103}]}, \"Id\": \"4972e0e8-4ba0-479b-bf28-844c4d0d9467\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"723b0692-bc69-4c64-b8b6-7edd9e8ac9b9\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"6a722555-effe-4c11-9ce6-e4e630f6b278\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"6a722555-effe-4c11-9ce6-e4e630f6b278\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"149018\", \"date\": \"Mon, 26 Apr 2021 19:35:35 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__10_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 0.9774828553199768, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.1001499593257904, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.03051116317510605}, {\"X\": 1.0, \"Y\": 0.9774828553199768}, {\"X\": 0.0, \"Y\": 0.8342821002006531}]}, \"Id\": \"1b02d609-4600-495b-a513-f53776f530ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8ef1e57a-fb39-49c0-8c38-782c724ba432\", \"9f0093d4-ccfd-4135-a102-df4b5d11f014\", \"b0bc49a2-a85b-458c-af33-4546688138f1\", \"bf94f990-c81a-4397-9685-1bff1b700446\", \"30efae80-fb54-47e5-9e16-99f1f979d0e4\", \"40567b72-e8b8-4565-b08e-de160f036f54\", \"10dc1daf-49a0-4ae5-bb42-89c37edeb58b\", \"f4b8ed15-cda2-411f-a8ef-afcfaf647b04\", \"496741c8-8fef-4133-ac54-b06ccf9575d8\", \"26f74a25-3e17-49fd-b352-47408995d1db\", \"aac31b48-f523-4257-81a1-4575d3e9777c\", \"1c6f8cc6-d668-46b2-affb-fd79bec35979\", \"55393c84-d2e2-4f0c-830d-8207de1d3773\", \"960fc314-c832-41b0-8623-25912de07404\", \"132274cf-7a5b-4813-9d08-d2945f5fc13e\", \"a0179204-5d7c-4141-9294-6f5f77f86d16\", \"f8e8f0c6-6c01-4e98-8cdf-4cf2fb699cc5\", \"128ea5cf-da99-4a65-893e-4768454c52ad\", \"3f7c5c0f-1679-431d-acef-6ce3e611b469\", \"319adcad-678b-42b3-9a0d-8bea9ea6b2a7\", \"43af6295-9ceb-4a3c-a1d2-5f54c8b3251f\", \"f1d9b8b4-9246-461f-838d-da64d1be0286\", \"93863f37-3dde-4564-b662-3b1f5ac42a33\", \"f99f666c-e7bc-4f07-9676-afe5bd81f24d\", \"6c253af5-3e49-475a-afed-3d66303582dd\", \"1c244eca-3f30-4bbe-ad3a-fbdfc595551a\", \"6d0d8cfd-d528-4f6d-bc28-080bc97d837a\", \"4dab0505-c481-4b5f-a5ce-e7146871ec66\", \"b88c2cd8-32b9-4859-a6bf-752dd091b728\", \"382bd7f2-47b8-48b6-8bb9-30562028a30c\", \"bfe75297-b24e-4b69-adf6-4838ad900609\", \"5a7a55fc-3681-4bf7-8efb-eecafd960b74\", \"626ad75a-0ce8-43dc-868b-348caeab1281\", \"4537dfc7-9539-48a3-8864-0c0762519e96\", \"7afe3257-78b4-493f-9257-02f61fd3977c\", \"a5299476-4cc1-422a-bea7-5dc760d554b1\", \"437d5266-5b6f-4f88-87f6-aa24baa98707\", \"9412bea1-80b2-440f-947f-b76de636d707\", \"d61eebb7-5e04-45ef-a97d-1f567a841f93\", \"88bd8712-7c7d-4309-a600-59f7a69d5c6a\", \"c4649321-bcb0-4bc7-8074-1dbabf8fdf24\", \"4d1e40f0-4137-45be-a08e-3ee34ac6f4e2\", \"b1f4dc4d-30b7-47ce-971a-5cac239b0fa9\", \"2d0cca98-e186-4230-aca0-dfa294861078\", \"2fc0a5f4-e89d-4560-9d50-fb66cf50fe0f\", \"b200798f-1eb3-4fc1-a4c8-0d47878670d5\", \"fff59741-62fd-4bd2-8125-457c6d86ce7f\", \"b1d0ef77-7a05-4d8c-8402-364c804a6300\", \"e354c957-7522-41e9-af8d-c8c51e6bcfc8\", \"099bb532-0305-4b09-a5aa-21d6cb7dfbd4\", \"554ca2d3-d197-41ec-abf8-0e66f4a774e8\", \"18d40fd1-7cd2-45f0-974a-924ff8f46f06\", \"c91d0581-9834-476c-ba1d-0dfeb711a4bf\", \"657fd39d-635a-493c-9b10-230b3ff3ea37\", \"1a53e4f8-361d-4078-b0a1-4fee90894480\", \"d221addd-8dee-4978-8e7a-95d14033bde6\", \"7b9cbece-54ee-4e14-b98e-d28106f2403d\", \"ca5be055-9fac-489f-9db8-cbd58d76dbe6\", \"0f29ab9d-89ef-43bc-abb0-f7da7f4195e7\", \"fa489166-589b-461b-bccc-7a75c746b0ee\", \"c7339468-0fed-4fb1-b83a-44ece3bc574c\", \"72fc49af-8608-48af-87c0-a3e222a4d5da\", \"240fc822-c3f4-447e-958b-496dad7c1134\", \"9490bdff-654e-4d85-b139-e0b105b6c090\", \"5d40fee6-108f-4559-bad7-596da364d1ae\", \"848f81e5-3b37-44b6-b590-60a911915dd2\", \"e770bbd5-5f29-4b70-b4c1-014523723137\", \"217beccf-eea0-4977-ab7a-8188410fd5d8\", \"1f922a3e-6ccf-4e96-aea1-7fd449b4f1ed\", \"5f9234f5-3bae-444c-9064-3a7aa3cd0826\", \"f6a36046-5afe-4506-8fe4-388a296168b1\", \"1e0bd4e1-87a0-4256-a6d5-a049e28650ab\", \"a34ea13a-cf7d-41a8-86ac-49e17e1b5f42\", \"16b724f7-03bf-4028-adac-1955b353c85f\", \"b49f872b-e773-4f8a-b700-536dce8a661d\", \"2faae9aa-9921-4855-82fd-159a708ecfa8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 88.00714874267578, \"Text\": \"Date: 2020-0\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09861831367015839, \"Height\": 0.023096155375242233, \"Left\": 0.9013816714286804, \"Top\": 0.11616679280996323}, \"Polygon\": [{\"X\": 0.9040814638137817, \"Y\": 0.11616679280996323}, {\"X\": 1.0, \"Y\": 0.128499835729599}, {\"X\": 0.9998401403427124, \"Y\": 0.13926294445991516}, {\"X\": 0.9013816714286804, \"Y\": 0.12692992389202118}]}, \"Id\": \"8ef1e57a-fb39-49c0-8c38-782c724ba432\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"44c7a365-5940-4f8d-8c8c-306ac39f25cd\", \"399f3349-0ef7-4436-9dad-082c47924d54\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5155258178711, \"Text\": \"Name: SomeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15022391080856323, \"Height\": 0.028958534821867943, \"Left\": 0.23685982823371887, \"Top\": 0.061276186257600784}, \"Polygon\": [{\"X\": 0.23948614299297333, \"Y\": 0.061276186257600784}, {\"X\": 0.3870837390422821, \"Y\": 0.07976444810628891}, {\"X\": 0.38445743918418884, \"Y\": 0.09023471921682358}, {\"X\": 0.23685982823371887, \"Y\": 0.07174646109342575}]}, \"Id\": \"9f0093d4-ccfd-4135-a102-df4b5d11f014\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d50190f4-d5df-4d8b-ba9f-0b7242dcf395\", \"b6f5f7db-ce0d-42e4-bcfd-4f3a48ef60b5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.35050964355469, \"Text\": \"Key1: value1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10215896368026733, \"Height\": 0.025302961468696594, \"Left\": 0.8907472491264343, \"Top\": 0.1701030135154724}, \"Polygon\": [{\"X\": 0.8939860463142395, \"Y\": 0.1701030135154724}, {\"X\": 0.9929062128067017, \"Y\": 0.1824938803911209}, {\"X\": 0.9896674156188965, \"Y\": 0.195405974984169}, {\"X\": 0.8907472491264343, \"Y\": 0.1830151081085205}]}, \"Id\": \"b0bc49a2-a85b-458c-af33-4546688138f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e4791a7-952e-4e98-9f91-4828721db284\", \"451d3efc-4349-443d-aec3-a564496e2011\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7015380859375, \"Text\": \"Key2: value2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10264690965414047, \"Height\": 0.025305362418293953, \"Left\": 0.885246992111206, \"Top\": 0.1939390003681183}, \"Polygon\": [{\"X\": 0.8884705901145935, \"Y\": 0.1939390003681183}, {\"X\": 0.9878938794136047, \"Y\": 0.20639289915561676}, {\"X\": 0.9846703410148621, \"Y\": 0.2192443609237671}, {\"X\": 0.885246992111206, \"Y\": 0.2067904770374298}]}, \"Id\": \"bf94f990-c81a-4397-9685-1bff1b700446\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4a10127a-0382-4573-9d54-b271316ede1a\", \"ee6099e3-20fb-4abf-abde-c0dee0d5d050\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42963409423828, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09165231883525848, \"Height\": 0.021811338141560555, \"Left\": 0.2365850806236267, \"Top\": 0.15924955904483795}, \"Polygon\": [{\"X\": 0.2392604798078537, \"Y\": 0.15924955904483795}, {\"X\": 0.328237384557724, \"Y\": 0.1703949123620987}, {\"X\": 0.3255620002746582, \"Y\": 0.18106089532375336}, {\"X\": 0.2365850806236267, \"Y\": 0.16991554200649261}]}, \"Id\": \"30efae80-fb54-47e5-9e16-99f1f979d0e4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"340df2a6-c4cf-49ed-8435-42bffc04f562\", \"6c9835f6-ac4b-4543-8453-5dc257bac8cb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60467529296875, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09165673702955246, \"Height\": 0.021667886525392532, \"Left\": 0.34439927339553833, \"Top\": 0.172691211104393}, \"Polygon\": [{\"X\": 0.3470373749732971, \"Y\": 0.172691211104393}, {\"X\": 0.4360560178756714, \"Y\": 0.1838417947292328}, {\"X\": 0.4334179162979126, \"Y\": 0.19435909390449524}, {\"X\": 0.34439927339553833, \"Y\": 0.18320851027965546}]}, \"Id\": \"40567b72-e8b8-4565-b08e-de160f036f54\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9a6ab52-d9f0-4d1b-8441-acae78741a6e\", \"0b912532-1187-41cc-a16a-da041225de8b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59930419921875, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09115751832723618, \"Height\": 0.021505150943994522, \"Left\": 0.4525691270828247, \"Top\": 0.18625476956367493}, \"Polygon\": [{\"X\": 0.4551812708377838, \"Y\": 0.18625476956367493}, {\"X\": 0.5437266230583191, \"Y\": 0.1973460614681244}, {\"X\": 0.5411145091056824, \"Y\": 0.20775991678237915}, {\"X\": 0.4525691270828247, \"Y\": 0.1966686099767685}]}, \"Id\": \"10dc1daf-49a0-4ae5-bb42-89c37edeb58b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9cb263ad-bf9d-40a7-a66a-b5843666fe69\", \"8d7dfbd4-b5fb-4943-934b-ebfe374cc011\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50817108154297, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09121409803628922, \"Height\": 0.021528145298361778, \"Left\": 0.23237892985343933, \"Top\": 0.17665593326091766}, \"Polygon\": [{\"X\": 0.23499520123004913, \"Y\": 0.17665593326091766}, {\"X\": 0.32359302043914795, \"Y\": 0.1877538114786148}, {\"X\": 0.32097676396369934, \"Y\": 0.198184072971344}, {\"X\": 0.23237892985343933, \"Y\": 0.18708620965480804}]}, \"Id\": \"f4b8ed15-cda2-411f-a8ef-afcfaf647b04\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a065d3c-3c4a-476c-a778-57be2f73f874\", \"3fd0c102-14c8-4f62-8efc-ea6185d13ac8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64727020263672, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09133320301771164, \"Height\": 0.02144422009587288, \"Left\": 0.34027987718582153, \"Top\": 0.1901080161333084}, \"Polygon\": [{\"X\": 0.3428705632686615, \"Y\": 0.1901080161333084}, {\"X\": 0.43161308765411377, \"Y\": 0.20122401416301727}, {\"X\": 0.4290224015712738, \"Y\": 0.211552232503891}, {\"X\": 0.34027987718582153, \"Y\": 0.20043623447418213}]}, \"Id\": \"496741c8-8fef-4133-ac54-b06ccf9575d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b5dc9358-8865-45ce-8b79-c1bb4b2b890b\", \"8d4fc074-55a2-4873-a494-88e602257ffd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57296752929688, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09103643149137497, \"Height\": 0.02135768160223961, \"Left\": 0.44844722747802734, \"Top\": 0.20360612869262695}, \"Polygon\": [{\"X\": 0.4510250985622406, \"Y\": 0.20360612869262695}, {\"X\": 0.5394836664199829, \"Y\": 0.2146865576505661}, {\"X\": 0.5369057655334473, \"Y\": 0.22496381402015686}, {\"X\": 0.44844722747802734, \"Y\": 0.2138833850622177}]}, \"Id\": \"26f74a25-3e17-49fd-b352-47408995d1db\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9740b293-b285-425b-b391-4e5ce7da38a3\", \"ff2f4032-e538-479b-b8c6-6a87d9a5287c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41507720947266, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09152840077877045, \"Height\": 0.02134757675230503, \"Left\": 0.22824923694133759, \"Top\": 0.1943676918745041}, \"Polygon\": [{\"X\": 0.2308085560798645, \"Y\": 0.1943676918745041}, {\"X\": 0.31977763772010803, \"Y\": 0.20551206171512604}, {\"X\": 0.3172183334827423, \"Y\": 0.21571525931358337}, {\"X\": 0.22824923694133759, \"Y\": 0.20457088947296143}]}, \"Id\": \"aac31b48-f523-4257-81a1-4575d3e9777c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80e99662-b155-46d3-845f-9231c545e7cf\", \"eeddc938-43fb-4fe3-a936-f9bf2ad4ec20\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56834411621094, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0915420725941658, \"Height\": 0.02132151648402214, \"Left\": 0.33615389466285706, \"Top\": 0.20779980719089508}, \"Polygon\": [{\"X\": 0.33870601654052734, \"Y\": 0.20779980719089508}, {\"X\": 0.42769598960876465, \"Y\": 0.21894679963588715}, {\"X\": 0.42514386773109436, \"Y\": 0.22912132740020752}, {\"X\": 0.33615389466285706, \"Y\": 0.21797433495521545}]}, \"Id\": \"1c6f8cc6-d668-46b2-affb-fd79bec35979\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa83ab84-df5a-479c-aa17-5f3f67db6c72\", \"c4d5e2d6-5206-4d49-974a-3b73374862eb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65399169921875, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0909753367304802, \"Height\": 0.02140762284398079, \"Left\": 0.4443313777446747, \"Top\": 0.22125715017318726}, \"Polygon\": [{\"X\": 0.4469241797924042, \"Y\": 0.22125715017318726}, {\"X\": 0.5353066921234131, \"Y\": 0.23232805728912354}, {\"X\": 0.5327138900756836, \"Y\": 0.24266476929187775}, {\"X\": 0.4443313777446747, \"Y\": 0.23159386217594147}]}, \"Id\": \"55393c84-d2e2-4f0c-830d-8207de1d3773\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"642ad1d7-8b21-44ab-b409-e941764e48cd\", \"4328fe3c-24ed-494d-be66-44b749245e7f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.611328125, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10607936978340149, \"Height\": 0.024759791791439056, \"Left\": 0.45300593972206116, \"Top\": 0.26580432057380676}, \"Polygon\": [{\"X\": 0.4559769034385681, \"Y\": 0.26580432057380676}, {\"X\": 0.5590853095054626, \"Y\": 0.27871981263160706}, {\"X\": 0.5561143755912781, \"Y\": 0.2905641198158264}, {\"X\": 0.45300593972206116, \"Y\": 0.2776486277580261}]}, \"Id\": \"960fc314-c832-41b0-8623-25912de07404\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3378eebc-9606-4c6b-9e72-7e2beca631e8\", \"d0049a68-1cd9-4dde-97fa-d516befbab79\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51656341552734, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10630092769861221, \"Height\": 0.024895107373595238, \"Left\": 0.5753546953201294, \"Top\": 0.2810039222240448}, \"Polygon\": [{\"X\": 0.5783535242080688, \"Y\": 0.2810039222240448}, {\"X\": 0.6816556453704834, \"Y\": 0.2939436733722687}, {\"X\": 0.678656816482544, \"Y\": 0.3058990240097046}, {\"X\": 0.5753546953201294, \"Y\": 0.2929592728614807}]}, \"Id\": \"132274cf-7a5b-4813-9d08-d2945f5fc13e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8657eef7-e7f8-4477-a7fd-17caa3a9c7ba\", \"52f0d084-7010-4244-aa38-096afad11710\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60704040527344, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10638498514890671, \"Height\": 0.024902986362576485, \"Left\": 0.6970701813697815, \"Top\": 0.2961287498474121}, \"Polygon\": [{\"X\": 0.7000682950019836, \"Y\": 0.2961287498474121}, {\"X\": 0.8034551739692688, \"Y\": 0.309079110622406}, {\"X\": 0.8004570603370667, \"Y\": 0.32103171944618225}, {\"X\": 0.6970701813697815, \"Y\": 0.30808135867118835}]}, \"Id\": \"a0179204-5d7c-4141-9294-6f5f77f86d16\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b9c523a8-97b9-4c82-97d2-db92bb4e327d\", \"087e3f6b-5919-4c48-b255-d72d5640a229\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62620544433594, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10767379403114319, \"Height\": 0.025091376155614853, \"Left\": 0.8187446594238281, \"Top\": 0.31135132908821106}, \"Polygon\": [{\"X\": 0.821749746799469, \"Y\": 0.31135132908821106}, {\"X\": 0.9264184236526489, \"Y\": 0.32446226477622986}, {\"X\": 0.9234133362770081, \"Y\": 0.3364427089691162}, {\"X\": 0.8187446594238281, \"Y\": 0.3233317732810974}]}, \"Id\": \"f8e8f0c6-6c01-4e98-8cdf-4cf2fb699cc5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4ecc938d-1a51-4dbd-a4e0-425a9874a620\", \"a825c589-3ddd-457c-9dd3-51164b238a52\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87040710449219, \"Text\": \"Value\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05573355406522751, \"Height\": 0.01833811216056347, \"Left\": 0.9414255619049072, \"Top\": 0.32679933309555054}, \"Polygon\": [{\"X\": 0.9443666934967041, \"Y\": 0.32679933309555054}, {\"X\": 0.9971591234207153, \"Y\": 0.33341220021247864}, {\"X\": 0.9942180514335632, \"Y\": 0.34513744711875916}, {\"X\": 0.9414255619049072, \"Y\": 0.33852460980415344}]}, \"Id\": \"128ea5cf-da99-4a65-893e-4768454c52ad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74019ac8-e2cf-4633-a0da-982701b13ac5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49527740478516, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1064312607049942, \"Height\": 0.024812016636133194, \"Left\": 0.447523832321167, \"Top\": 0.28599852323532104}, \"Polygon\": [{\"X\": 0.4504969120025635, \"Y\": 0.28599852323532104}, {\"X\": 0.553955078125, \"Y\": 0.29895782470703125}, {\"X\": 0.5509820580482483, \"Y\": 0.31081053614616394}, {\"X\": 0.447523832321167, \"Y\": 0.29785123467445374}]}, \"Id\": \"3f7c5c0f-1679-431d-acef-6ce3e611b469\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8432cdd6-58c9-41e1-a8a1-8895b2e952da\", \"e25fa57e-503c-4616-a9d2-f830d6e56f99\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43872833251953, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10699180513620377, \"Height\": 0.024903278797864914, \"Left\": 0.5699805617332458, \"Top\": 0.30123332142829895}, \"Polygon\": [{\"X\": 0.5729590654373169, \"Y\": 0.30123332142829895}, {\"X\": 0.6769723296165466, \"Y\": 0.31426215171813965}, {\"X\": 0.6739938259124756, \"Y\": 0.32613661885261536}, {\"X\": 0.5699805617332458, \"Y\": 0.31310778856277466}]}, \"Id\": \"319adcad-678b-42b3-9a0d-8bea9ea6b2a7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca95d711-ece4-43ee-9852-74975a4f9133\", \"afaaceef-1d7d-4dbe-9db4-3b3dddf90be7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59479522705078, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10631616413593292, \"Height\": 0.02474801428616047, \"Left\": 0.6920949816703796, \"Top\": 0.31645467877388}, \"Polygon\": [{\"X\": 0.6950552463531494, \"Y\": 0.31645467877388}, {\"X\": 0.7984111905097961, \"Y\": 0.3294011652469635}, {\"X\": 0.7954509258270264, \"Y\": 0.3412027060985565}, {\"X\": 0.6920949816703796, \"Y\": 0.32825618982315063}]}, \"Id\": \"43af6295-9ceb-4a3c-a1d2-5f54c8b3251f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da5b2b0c-a313-4ef1-8cf5-0a7ed690dfcb\", \"80f8b5f6-e6a3-45b9-a74e-636fe6d696ae\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70576477050781, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10763934999704361, \"Height\": 0.025052044540643692, \"Left\": 0.8138556480407715, \"Top\": 0.33152398467063904}, \"Polygon\": [{\"X\": 0.8168516755104065, \"Y\": 0.33152398467063904}, {\"X\": 0.9214949607849121, \"Y\": 0.34463173151016235}, {\"X\": 0.9184989333152771, \"Y\": 0.35657602548599243}, {\"X\": 0.8138556480407715, \"Y\": 0.3434682786464691}]}, \"Id\": \"f1d9b8b4-9246-461f-838d-da64d1be0286\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6f83aa3d-f1b2-4fd5-807e-4609e01804e7\", \"a25b2ac7-e358-4d5d-855d-7b810dc565bc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74417877197266, \"Text\": \"Value\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056986112147569656, \"Height\": 0.01876729540526867, \"Left\": 0.9359301328659058, \"Top\": 0.3468143939971924}, \"Polygon\": [{\"X\": 0.9389417171478271, \"Y\": 0.3468143939971924}, {\"X\": 0.9929162263870239, \"Y\": 0.35357531905174255}, {\"X\": 0.9899046421051025, \"Y\": 0.3655816912651062}, {\"X\": 0.9359301328659058, \"Y\": 0.35882076621055603}]}, \"Id\": \"93863f37-3dde-4564-b662-3b1f5ac42a33\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"823908ad-95a8-4f31-bc40-3f1d50cd4c85\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55970001220703, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10669372230768204, \"Height\": 0.025095362216234207, \"Left\": 0.4424666166305542, \"Top\": 0.3060016930103302}, \"Polygon\": [{\"X\": 0.4455045461654663, \"Y\": 0.3060016930103302}, {\"X\": 0.5491603016853333, \"Y\": 0.3189857602119446}, {\"X\": 0.5461223721504211, \"Y\": 0.3310970664024353}, {\"X\": 0.4424666166305542, \"Y\": 0.3181129992008209}]}, \"Id\": \"f99f666c-e7bc-4f07-9676-afe5bd81f24d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1604194-7909-496c-a946-875d379ba838\", \"6933627e-cf16-41b6-98f9-86a9366bc812\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52619934082031, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10706597566604614, \"Height\": 0.025084014981985092, \"Left\": 0.5649439692497253, \"Top\": 0.32126182317733765}, \"Polygon\": [{\"X\": 0.567966878414154, \"Y\": 0.32126182317733765}, {\"X\": 0.6720099449157715, \"Y\": 0.3342943787574768}, {\"X\": 0.6689870357513428, \"Y\": 0.34634584188461304}, {\"X\": 0.5649439692497253, \"Y\": 0.3333132863044739}]}, \"Id\": \"6c253af5-3e49-475a-afed-3d66303582dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"061e1531-bb82-49d8-a16b-b8938e74e4ee\", \"7d242d39-9ede-487b-b05e-528a5ad2e81a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62793731689453, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10618564486503601, \"Height\": 0.024780455976724625, \"Left\": 0.687202513217926, \"Top\": 0.3366488516330719}, \"Polygon\": [{\"X\": 0.6901753544807434, \"Y\": 0.3366488516330719}, {\"X\": 0.7933881282806396, \"Y\": 0.3495774269104004}, {\"X\": 0.7904152870178223, \"Y\": 0.3614293038845062}, {\"X\": 0.687202513217926, \"Y\": 0.3485007584095001}]}, \"Id\": \"1c244eca-3f30-4bbe-ad3a-fbdfc595551a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0d207c1-653c-4193-974c-3b995c63654c\", \"e6c56771-3c06-42ed-8056-4bd2c75fe311\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75453186035156, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10738948732614517, \"Height\": 0.025033868849277496, \"Left\": 0.8089954853057861, \"Top\": 0.35168856382369995}, \"Polygon\": [{\"X\": 0.8119949102401733, \"Y\": 0.35168856382369995}, {\"X\": 0.9163849949836731, \"Y\": 0.36476457118988037}, {\"X\": 0.9133855104446411, \"Y\": 0.37672242522239685}, {\"X\": 0.8089954853057861, \"Y\": 0.36364638805389404}]}, \"Id\": \"6d0d8cfd-d528-4f6d-bc28-080bc97d837a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4732735d-4392-461f-83d0-9ed7c55cb946\", \"122b22fe-1c68-4a62-8ca0-89b512a4e974\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.42427062988281, \"Text\": \"Value 2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06951037049293518, \"Height\": 0.02080807089805603, \"Left\": 0.9304895997047424, \"Top\": 0.36691758036613464}, \"Polygon\": [{\"X\": 0.9334943294525146, \"Y\": 0.36691758036613464}, {\"X\": 1.0, \"Y\": 0.37574687600135803}, {\"X\": 1.0, \"Y\": 0.3877256512641907}, {\"X\": 0.9304895997047424, \"Y\": 0.3788963556289673}]}, \"Id\": \"4dab0505-c481-4b5f-a5ce-e7146871ec66\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"10132a06-6ba2-4029-a907-adfa9178ebfa\", \"0664d3df-a775-47d2-bc1a-50a915bb662b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71672821044922, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10636983811855316, \"Height\": 0.02497902140021324, \"Left\": 0.43772655725479126, \"Top\": 0.3263011872768402}, \"Polygon\": [{\"X\": 0.44074487686157227, \"Y\": 0.3263011872768402}, {\"X\": 0.5440964102745056, \"Y\": 0.3392471373081207}, {\"X\": 0.5410780906677246, \"Y\": 0.35128021240234375}, {\"X\": 0.43772655725479126, \"Y\": 0.33833426237106323}]}, \"Id\": \"b88c2cd8-32b9-4859-a6bf-752dd091b728\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f5dc200-65bf-4abe-8c4f-92bd99b98d1e\", \"4d6ab9cd-18cf-4caf-b56f-5f45cfa6d9ab\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68927764892578, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10632634907960892, \"Height\": 0.024767465889453888, \"Left\": 0.5602638125419617, \"Top\": 0.3417244553565979}, \"Polygon\": [{\"X\": 0.5632287263870239, \"Y\": 0.3417244553565979}, {\"X\": 0.66659015417099, \"Y\": 0.3546716272830963}, {\"X\": 0.6636252403259277, \"Y\": 0.3664919137954712}, {\"X\": 0.5602638125419617, \"Y\": 0.3535447418689728}]}, \"Id\": \"382bd7f2-47b8-48b6-8bb9-30562028a30c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5479bfaf-ef5b-4942-a29a-122ddd645ba6\", \"a97a014d-5231-4df7-9b47-7c119e90c2e5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39886474609375, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10609619319438934, \"Height\": 0.024763209745287895, \"Left\": 0.6824914216995239, \"Top\": 0.35693982243537903}, \"Polygon\": [{\"X\": 0.6854627132415771, \"Y\": 0.35693982243537903}, {\"X\": 0.7885876297950745, \"Y\": 0.3698573708534241}, {\"X\": 0.7856163382530212, \"Y\": 0.38170304894447327}, {\"X\": 0.6824914216995239, \"Y\": 0.3687855005264282}]}, \"Id\": \"bfe75297-b24e-4b69-adf6-4838ad900609\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"070e0104-dba8-4695-80c3-d81abbb27538\", \"965cdb1d-2092-49ed-b300-a84364e8791b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7313232421875, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10740307718515396, \"Height\": 0.024832388386130333, \"Left\": 0.8039003610610962, \"Top\": 0.3721083700656891}, \"Polygon\": [{\"X\": 0.8068471550941467, \"Y\": 0.3721083700656891}, {\"X\": 0.9113034009933472, \"Y\": 0.3851926922798157}, {\"X\": 0.9083566069602966, \"Y\": 0.3969407379627228}, {\"X\": 0.8039003610610962, \"Y\": 0.3838564157485962}]}, \"Id\": \"5a7a55fc-3681-4bf7-8efb-eecafd960b74\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8daedbdd-539b-4769-9353-470bed01a1e7\", \"43e07a3c-786d-4195-ad58-ea0d5c1d3dc6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.45243072509766, \"Text\": \"Value 2.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07388035207986832, \"Height\": 0.02114991843700409, \"Left\": 0.9261196255683899, \"Top\": 0.38720691204071045}, \"Polygon\": [{\"X\": 0.9291393756866455, \"Y\": 0.38720691204071045}, {\"X\": 1.0, \"Y\": 0.3963180482387543}, {\"X\": 0.998856782913208, \"Y\": 0.40835681557655334}, {\"X\": 0.9261196255683899, \"Y\": 0.3992456793785095}]}, \"Id\": \"626ad75a-0ce8-43dc-868b-348caeab1281\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e76bf80d-60a5-4142-b267-65caa7126efd\", \"ba384578-6fd8-4578-941e-385ff3fb4845\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6803970336914, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10575222969055176, \"Height\": 0.024512214586138725, \"Left\": 0.4329840838909149, \"Top\": 0.3467041552066803}, \"Polygon\": [{\"X\": 0.43590155243873596, \"Y\": 0.3467041552066803}, {\"X\": 0.5387362837791443, \"Y\": 0.35958534479141235}, {\"X\": 0.535818874835968, \"Y\": 0.371216356754303}, {\"X\": 0.4329840838909149, \"Y\": 0.35833513736724854}]}, \"Id\": \"4537dfc7-9539-48a3-8864-0c0762519e96\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"966c1f1b-d689-44db-bfae-a848bc460d7b\", \"12b0c250-4292-44b0-800f-4b10217fd3e4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65815734863281, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1061197966337204, \"Height\": 0.02457473985850811, \"Left\": 0.5552605986595154, \"Top\": 0.3619561791419983}, \"Polygon\": [{\"X\": 0.5581822991371155, \"Y\": 0.3619561791419983}, {\"X\": 0.661380410194397, \"Y\": 0.37488290667533875}, {\"X\": 0.6584586501121521, \"Y\": 0.38653090596199036}, {\"X\": 0.5552605986595154, \"Y\": 0.3736042082309723}]}, \"Id\": \"7afe3257-78b4-493f-9257-02f61fd3977c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"84b0d8e3-d79c-4466-b9cd-0330926542c0\", \"b341b430-1e8e-43e1-b1f4-9f36280f3076\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49356079101562, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10598941892385483, \"Height\": 0.024776892736554146, \"Left\": 0.6773269772529602, \"Top\": 0.3770209550857544}, \"Polygon\": [{\"X\": 0.6803053021430969, \"Y\": 0.3770209550857544}, {\"X\": 0.7833163738250732, \"Y\": 0.3899242579936981}, {\"X\": 0.7803381085395813, \"Y\": 0.4017978608608246}, {\"X\": 0.6773269772529602, \"Y\": 0.38889455795288086}]}, \"Id\": \"a5299476-4cc1-422a-bea7-5dc760d554b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e7eb42d-4bcb-4c15-9deb-64b0e5a9ac8d\", \"f8d6bc18-d7fb-4d8d-8b3e-8ad09eeaf8bc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77436828613281, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10737843811511993, \"Height\": 0.024956874549388885, \"Left\": 0.7990797758102417, \"Top\": 0.39216095209121704}, \"Polygon\": [{\"X\": 0.8020596504211426, \"Y\": 0.39216095209121704}, {\"X\": 0.9064581990242004, \"Y\": 0.4052380323410034}, {\"X\": 0.9034783840179443, \"Y\": 0.41711780428886414}, {\"X\": 0.7990797758102417, \"Y\": 0.40404072403907776}]}, \"Id\": \"437d5266-5b6f-4f88-87f6-aa24baa98707\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f855ddd-06e2-4ef6-801a-b638f11caac2\", \"1fc3048a-e1e7-4076-8033-2fbb252d4b14\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35359954833984, \"Text\": \"Value 2.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07828933745622635, \"Height\": 0.021415622904896736, \"Left\": 0.9212360382080078, \"Top\": 0.4074684977531433}, \"Polygon\": [{\"X\": 0.9242424368858337, \"Y\": 0.4074684977531433}, {\"X\": 0.9995253682136536, \"Y\": 0.4168985188007355}, {\"X\": 0.9965189695358276, \"Y\": 0.4288841187953949}, {\"X\": 0.9212360382080078, \"Y\": 0.41945406794548035}]}, \"Id\": \"9412bea1-80b2-440f-947f-b76de636d707\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9d9f538-b47b-466b-a16f-902ffcf122e9\", \"2619db41-b4c8-4d49-a8bf-2e56c5ccacff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.0611801147461, \"Text\": \"NO: not-checked -\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13557346165180206, \"Height\": 0.027596792206168175, \"Left\": 0.1500152051448822, \"Top\": 0.38607797026634216}, \"Polygon\": [{\"X\": 0.15276409685611725, \"Y\": 0.38607797026634216}, {\"X\": 0.28558865189552307, \"Y\": 0.4027157127857208}, {\"X\": 0.28283974528312683, \"Y\": 0.4136747419834137}, {\"X\": 0.1500152051448822, \"Y\": 0.39703696966171265}]}, \"Id\": \"d61eebb7-5e04-45ef-a97d-1f567a841f93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58d337b4-144c-45ea-b67d-d342b26eea13\", \"da2c61b7-5350-45b7-9b9e-921035d51793\", \"aecbb4cd-fae5-4844-948d-d83ac724e1d7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63105010986328, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0910312682390213, \"Height\": 0.021443573758006096, \"Left\": 0.559565007686615, \"Top\": 0.4564683139324188}, \"Polygon\": [{\"X\": 0.5621653199195862, \"Y\": 0.4564683139324188}, {\"X\": 0.6505962610244751, \"Y\": 0.4675453007221222}, {\"X\": 0.6479959487915039, \"Y\": 0.47791188955307007}, {\"X\": 0.559565007686615, \"Y\": 0.4668349325656891}]}, \"Id\": \"88bd8712-7c7d-4309-a600-59f7a69d5c6a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c45b7b7d-94ff-4350-8ace-0a9d077aa0da\", \"4f0cfb9f-a58f-4713-9616-e83e5b516d55\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5682601928711, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0917273610830307, \"Height\": 0.02151726558804512, \"Left\": 0.7014313340187073, \"Top\": 0.47416451573371887}, \"Polygon\": [{\"X\": 0.7040281891822815, \"Y\": 0.47416451573371887}, {\"X\": 0.7931587100028992, \"Y\": 0.48532912135124207}, {\"X\": 0.7905619144439697, \"Y\": 0.4956817626953125}, {\"X\": 0.7014313340187073, \"Y\": 0.4845171570777893}]}, \"Id\": \"c4649321-bcb0-4bc7-8074-1dbabf8fdf24\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"22aaf51d-b8b6-4410-a7aa-e269e2117f93\", \"c5d32bc4-2e26-430c-aa29-9ba699e58331\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46123504638672, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0912407785654068, \"Height\": 0.021312421187758446, \"Left\": 0.8427841067314148, \"Top\": 0.49191850423812866}, \"Polygon\": [{\"X\": 0.8453436493873596, \"Y\": 0.49191850423812866}, {\"X\": 0.9340248703956604, \"Y\": 0.5030268430709839}, {\"X\": 0.9314653277397156, \"Y\": 0.5132309198379517}, {\"X\": 0.8427841067314148, \"Y\": 0.5021225810050964}]}, \"Id\": \"4d1e40f0-4137-45be-a08e-3ee34ac6f4e2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e1449ebd-8f70-46cf-ab69-fa9ae3878c8d\", \"3423035e-a75e-4e16-a879-4e12e20a4642\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60647583007812, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10542291402816772, \"Height\": 0.023506198078393936, \"Left\": 0.13934065401554108, \"Top\": 0.41168662905693054}, \"Polygon\": [{\"X\": 0.14200825989246368, \"Y\": 0.41168662905693054}, {\"X\": 0.2447635680437088, \"Y\": 0.4245578944683075}, {\"X\": 0.242095947265625, \"Y\": 0.4351928234100342}, {\"X\": 0.13934065401554108, \"Y\": 0.4223215579986572}]}, \"Id\": \"b1f4dc4d-30b7-47ce-971a-5cac239b0fa9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e7c36a92-6a98-4059-b39a-30e362e35753\", \"4ab44b2e-3d6f-4755-b741-b09c8e626d1f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51417541503906, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09073829650878906, \"Height\": 0.021349746733903885, \"Left\": 0.5554133057594299, \"Top\": 0.4739399552345276}, \"Polygon\": [{\"X\": 0.557998776435852, \"Y\": 0.4739399552345276}, {\"X\": 0.646151602268219, \"Y\": 0.48498207330703735}, {\"X\": 0.6435660719871521, \"Y\": 0.49528971314430237}, {\"X\": 0.5554133057594299, \"Y\": 0.4842475652694702}]}, \"Id\": \"2d0cca98-e186-4230-aca0-dfa294861078\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f3dba9ac-01c6-4f4f-86c0-0ef3f880af33\", \"4817c356-09b5-4d64-b361-a711d62add8d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56767272949219, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09143609553575516, \"Height\": 0.021432016044855118, \"Left\": 0.6973470449447632, \"Top\": 0.491657555103302}, \"Polygon\": [{\"X\": 0.6999312043190002, \"Y\": 0.491657555103302}, {\"X\": 0.7887831330299377, \"Y\": 0.5027872920036316}, {\"X\": 0.7861989736557007, \"Y\": 0.5130895972251892}, {\"X\": 0.6973470449447632, \"Y\": 0.5019598603248596}]}, \"Id\": \"2fc0a5f4-e89d-4560-9d50-fb66cf50fe0f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"460acbec-b1d6-4914-8560-1cfbbdcd1c5a\", \"6ae6360d-590c-44a6-91f9-c540aeb08369\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5699234008789, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09127961099147797, \"Height\": 0.02139965258538723, \"Left\": 0.8387045860290527, \"Top\": 0.509328305721283}, \"Polygon\": [{\"X\": 0.8412854075431824, \"Y\": 0.509328305721283}, {\"X\": 0.9299841523170471, \"Y\": 0.5204388499259949}, {\"X\": 0.9274032711982727, \"Y\": 0.5307279825210571}, {\"X\": 0.8387045860290527, \"Y\": 0.5196174383163452}]}, \"Id\": \"b200798f-1eb3-4fc1-a4c8-0d47878670d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28ba139d-990e-4c09-9122-3e18f804529e\", \"5f610ccb-5641-40b6-9ba7-e4b14826b5e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65238189697266, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09105285257101059, \"Height\": 0.021255314350128174, \"Left\": 0.5507992506027222, \"Top\": 0.49147239327430725}, \"Polygon\": [{\"X\": 0.5533500909805298, \"Y\": 0.49147239327430725}, {\"X\": 0.641852080821991, \"Y\": 0.5025582909584045}, {\"X\": 0.6393012404441833, \"Y\": 0.512727677822113}, {\"X\": 0.5507992506027222, \"Y\": 0.5016418099403381}]}, \"Id\": \"fff59741-62fd-4bd2-8125-457c6d86ce7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"41e75b03-8ba4-4d7d-bea6-1a2d35b10163\", \"dd7a9e49-cec9-4448-acd2-a8d0318aa86e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63468933105469, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09138494729995728, \"Height\": 0.021334417164325714, \"Left\": 0.6928452849388123, \"Top\": 0.509116530418396}, \"Polygon\": [{\"X\": 0.6954058408737183, \"Y\": 0.509116530418396}, {\"X\": 0.7842302322387695, \"Y\": 0.5202428102493286}, {\"X\": 0.7816696763038635, \"Y\": 0.5304509401321411}, {\"X\": 0.6928452849388123, \"Y\": 0.5193247199058533}]}, \"Id\": \"b1d0ef77-7a05-4d8c-8402-364c804a6300\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3bc75f74-6066-49e2-b91f-e104624f4411\", \"e8b509c4-73ed-4576-b8a2-8dacd83af016\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.33431243896484, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0913177952170372, \"Height\": 0.02124306932091713, \"Left\": 0.8338845372200012, \"Top\": 0.5268027782440186}, \"Polygon\": [{\"X\": 0.8364236354827881, \"Y\": 0.5268027782440186}, {\"X\": 0.9252023100852966, \"Y\": 0.5379233360290527}, {\"X\": 0.9226632714271545, \"Y\": 0.5480458736419678}, {\"X\": 0.8338845372200012, \"Y\": 0.5369253158569336}]}, \"Id\": \"e354c957-7522-41e9-af8d-c8c51e6bcfc8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0080c0ba-3480-4db3-849a-90cdfe2b14da\", \"5b8be844-1881-49b7-acf0-609a9f53facb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6798095703125, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09064528346061707, \"Height\": 0.021252207458019257, \"Left\": 0.5468153357505798, \"Top\": 0.5087769627571106}, \"Polygon\": [{\"X\": 0.5493786334991455, \"Y\": 0.5087769627571106}, {\"X\": 0.6374606490135193, \"Y\": 0.5198102593421936}, {\"X\": 0.6348973512649536, \"Y\": 0.5300291776657104}, {\"X\": 0.5468153357505798, \"Y\": 0.5189959406852722}]}, \"Id\": \"099bb532-0305-4b09-a5aa-21d6cb7dfbd4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d03e3f18-14a1-424e-aebb-f5ab457e7ec3\", \"7fbf501d-1430-42e0-8639-88930af74202\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63186645507812, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09155810624361038, \"Height\": 0.021360868588089943, \"Left\": 0.6884196996688843, \"Top\": 0.5264736413955688}, \"Polygon\": [{\"X\": 0.6909815073013306, \"Y\": 0.5264736413955688}, {\"X\": 0.7799778580665588, \"Y\": 0.5376214385032654}, {\"X\": 0.7774160504341125, \"Y\": 0.5478345155715942}, {\"X\": 0.6884196996688843, \"Y\": 0.5366867184638977}]}, \"Id\": \"554ca2d3-d197-41ec-abf8-0e66f4a774e8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c5a5be76-687a-4c7e-acf0-b338f583539a\", \"f7cbf79b-d5c4-419f-b3a6-a02d6a5a50c2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46218872070312, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09113804250955582, \"Height\": 0.02117234282195568, \"Left\": 0.8298013210296631, \"Top\": 0.5441845655441284}, \"Polygon\": [{\"X\": 0.8323279023170471, \"Y\": 0.5441845655441284}, {\"X\": 0.9209393262863159, \"Y\": 0.5552841424942017}, {\"X\": 0.9184127449989319, \"Y\": 0.5653569102287292}, {\"X\": 0.8298013210296631, \"Y\": 0.554257333278656}]}, \"Id\": \"18d40fd1-7cd2-45f0-974a-924ff8f46f06\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d39fae76-79c9-4d55-8494-494bdc416796\", \"58efe32e-8453-43b9-b398-7a97d7126322\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63706970214844, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09083011001348495, \"Height\": 0.021215494722127914, \"Left\": 0.5422911643981934, \"Top\": 0.5263026356697083}, \"Polygon\": [{\"X\": 0.5448389053344727, \"Y\": 0.5263026356697083}, {\"X\": 0.6331212520599365, \"Y\": 0.5373610258102417}, {\"X\": 0.6305735111236572, \"Y\": 0.5475181341171265}, {\"X\": 0.5422911643981934, \"Y\": 0.5364598035812378}]}, \"Id\": \"c91d0581-9834-476c-ba1d-0dfeb711a4bf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"87177720-f368-4606-954d-cac2d16590ce\", \"e0d711dd-fca0-4ed4-9d5b-731dfd262fd6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63143920898438, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09109734743833542, \"Height\": 0.021209564059972763, \"Left\": 0.6844149827957153, \"Top\": 0.5439586043357849}, \"Polygon\": [{\"X\": 0.686952531337738, \"Y\": 0.5439586043357849}, {\"X\": 0.7755123376846313, \"Y\": 0.5550516843795776}, {\"X\": 0.7729747891426086, \"Y\": 0.5651681423187256}, {\"X\": 0.6844149827957153, \"Y\": 0.5540750622749329}]}, \"Id\": \"657fd39d-635a-493c-9b10-230b3ff3ea37\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e51c196e-9799-4049-b36a-c9d6d3fdcddf\", \"c9ec11fa-d7b8-45e6-ac1c-0aecf4e47778\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4027099609375, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09108927845954895, \"Height\": 0.021256083622574806, \"Left\": 0.8256961703300476, \"Top\": 0.5615752339363098}, \"Polygon\": [{\"X\": 0.828245997428894, \"Y\": 0.5615752339363098}, {\"X\": 0.9167854189872742, \"Y\": 0.572665810585022}, {\"X\": 0.914235532283783, \"Y\": 0.5828313231468201}, {\"X\": 0.8256961703300476, \"Y\": 0.5717407464981079}]}, \"Id\": \"1a53e4f8-361d-4078-b0a1-4fee90894480\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cbc82587-b3c9-4cb4-9122-c9bc48769087\", \"28b2baa2-5686-4497-bd95-5f64ba0210f7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64726257324219, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09108401834964752, \"Height\": 0.021323291584849358, \"Left\": 0.5377062559127808, \"Top\": 0.54361891746521}, \"Polygon\": [{\"X\": 0.5402737259864807, \"Y\": 0.54361891746521}, {\"X\": 0.6287903189659119, \"Y\": 0.5547065734863281}, {\"X\": 0.6262228488922119, \"Y\": 0.5649421811103821}, {\"X\": 0.5377062559127808, \"Y\": 0.5538544654846191}]}, \"Id\": \"d221addd-8dee-4978-8e7a-95d14033bde6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3a63baf-b684-47de-8564-0360ac6fdf85\", \"4760ec90-d617-4760-94b1-9a5fbcd3965f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52500915527344, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09127909690141678, \"Height\": 0.0214384812861681, \"Left\": 0.6798875331878662, \"Top\": 0.5612499713897705}, \"Polygon\": [{\"X\": 0.6824784874916077, \"Y\": 0.5612499713897705}, {\"X\": 0.7711666226387024, \"Y\": 0.5723592042922974}, {\"X\": 0.7685756683349609, \"Y\": 0.5826885104179382}, {\"X\": 0.6798875331878662, \"Y\": 0.5715792775154114}]}, \"Id\": \"7b9cbece-54ee-4e14-b98e-d28106f2403d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"781436e5-2d4a-40a1-b25c-4e9b672fa798\", \"f4f47b5c-5cdc-44c0-af73-bbd8eb125db2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.90354919433594, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09110060334205627, \"Height\": 0.021267473697662354, \"Left\": 0.8209677338600159, \"Top\": 0.5790095329284668}, \"Polygon\": [{\"X\": 0.8235201835632324, \"Y\": 0.5790095329284668}, {\"X\": 0.9120683670043945, \"Y\": 0.5901011824607849}, {\"X\": 0.909515917301178, \"Y\": 0.6002770066261292}, {\"X\": 0.8209677338600159, \"Y\": 0.589185357093811}]}, \"Id\": \"ca5be055-9fac-489f-9db8-cbd58d76dbe6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d321d227-8a8a-4cac-87bb-d562f5211382\", \"cae66f12-7136-4a3a-b3eb-e615d6ee82b4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60052490234375, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09080779552459717, \"Height\": 0.02125900611281395, \"Left\": 0.5338016152381897, \"Top\": 0.5609956979751587}, \"Polygon\": [{\"X\": 0.5363613963127136, \"Y\": 0.5609956979751587}, {\"X\": 0.6246094107627869, \"Y\": 0.5720497369766235}, {\"X\": 0.6220496892929077, \"Y\": 0.5822546482086182}, {\"X\": 0.5338016152381897, \"Y\": 0.5712006092071533}]}, \"Id\": \"0f29ab9d-89ef-43bc-abb0-f7da7f4195e7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3578939e-dcfd-48e0-8191-2c56cca707f5\", \"f4b23a80-348d-44f1-a46f-306d76df80a3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49609375, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09149120002985, \"Height\": 0.021434694528579712, \"Left\": 0.6754788756370544, \"Top\": 0.5786596536636353}, \"Polygon\": [{\"X\": 0.6780619621276855, \"Y\": 0.5786596536636353}, {\"X\": 0.7669700980186462, \"Y\": 0.5897963643074036}, {\"X\": 0.7643870115280151, \"Y\": 0.6000943183898926}, {\"X\": 0.6754788756370544, \"Y\": 0.5889576077461243}]}, \"Id\": \"fa489166-589b-461b-bccc-7a75c746b0ee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"56d23b3c-ddbc-4137-8393-f68d8477fbad\", \"d1ca5db2-4ff8-4b9c-be21-e6cfd2776417\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05892944335938, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09103352576494217, \"Height\": 0.021356604993343353, \"Left\": 0.8168944716453552, \"Top\": 0.5962925553321838}, \"Polygon\": [{\"X\": 0.8194721937179565, \"Y\": 0.5962925553321838}, {\"X\": 0.9079279899597168, \"Y\": 0.6073726415634155}, {\"X\": 0.9053502678871155, \"Y\": 0.6176491975784302}, {\"X\": 0.8168944716453552, \"Y\": 0.6065691113471985}]}, \"Id\": \"c7339468-0fed-4fb1-b83a-44ece3bc574c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"41f121d6-9fed-4ffe-8bb8-8bc60bb5de30\", \"c52ab2e5-1d25-4eb6-83ff-676adb5fd208\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64812469482422, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09077972918748856, \"Height\": 0.02158305235207081, \"Left\": 0.5294229984283447, \"Top\": 0.5781894326210022}, \"Polygon\": [{\"X\": 0.532067596912384, \"Y\": 0.5781894326210022}, {\"X\": 0.6202027201652527, \"Y\": 0.5892293453216553}, {\"X\": 0.6175581216812134, \"Y\": 0.5997725129127502}, {\"X\": 0.5294229984283447, \"Y\": 0.5887326002120972}]}, \"Id\": \"72fc49af-8608-48af-87c0-a3e222a4d5da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9d5db7b6-4723-495f-ba6c-48ce11476a00\", \"883dace5-208e-422c-8cdc-817fba6eac28\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66847229003906, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09120680391788483, \"Height\": 0.02135475166141987, \"Left\": 0.671356201171875, \"Top\": 0.5960526466369629}, \"Polygon\": [{\"X\": 0.6739278435707092, \"Y\": 0.5960526466369629}, {\"X\": 0.7625629901885986, \"Y\": 0.6071552038192749}, {\"X\": 0.7599914073944092, \"Y\": 0.6174073815345764}, {\"X\": 0.671356201171875, \"Y\": 0.6063048243522644}]}, \"Id\": \"240fc822-c3f4-447e-958b-496dad7c1134\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6611de71-6ca9-49b7-8bfc-44f82ba84803\", \"16897551-8ff7-4134-9dcb-8591b0b9466b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42102813720703, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09071309119462967, \"Height\": 0.02122904732823372, \"Left\": 0.8130631446838379, \"Top\": 0.6137460470199585}, \"Polygon\": [{\"X\": 0.8156182169914246, \"Y\": 0.6137460470199585}, {\"X\": 0.903776228427887, \"Y\": 0.6247888803482056}, {\"X\": 0.9012211561203003, \"Y\": 0.6349751353263855}, {\"X\": 0.8130631446838379, \"Y\": 0.6239323616027832}]}, \"Id\": \"9490bdff-654e-4d85-b139-e0b105b6c090\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8393daae-18be-4950-992d-40bec24deeb8\", \"02fdbeca-bc6d-4ea4-a841-a54425cc4d51\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65718078613281, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10584428906440735, \"Height\": 0.02400524914264679, \"Left\": 0.10833088308572769, \"Top\": 0.5404558777809143}, \"Polygon\": [{\"X\": 0.11111406236886978, \"Y\": 0.5404558777809143}, {\"X\": 0.21417516469955444, \"Y\": 0.5533654093742371}, {\"X\": 0.21139198541641235, \"Y\": 0.5644611120223999}, {\"X\": 0.10833088308572769, \"Y\": 0.5515515208244324}]}, \"Id\": \"5d40fee6-108f-4559-bad7-596da364d1ae\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3680bb00-3648-4492-b94c-e33bdb9c9dcd\", \"1494d536-e191-4306-ae29-7be15f728013\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77986145019531, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13517463207244873, \"Height\": 0.027248675003647804, \"Left\": 0.10364584624767303, \"Top\": 0.5567723512649536}, \"Polygon\": [{\"X\": 0.10631752759218216, \"Y\": 0.5567723512649536}, {\"X\": 0.23882047832012177, \"Y\": 0.5733698606491089}, {\"X\": 0.23614878952503204, \"Y\": 0.5840210318565369}, {\"X\": 0.10364584624767303, \"Y\": 0.5674235224723816}]}, \"Id\": \"848f81e5-3b37-44b6-b590-60a911915dd2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63845ab6-7341-4e06-a9e3-743da4e57b38\", \"4eb8e308-1afd-436d-b471-adf6e8f09bef\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 89.84817504882812, \"Text\": \"Hello World barcode here!\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11161923408508301, \"Height\": 0.01802712120115757, \"Left\": 0.6550191640853882, \"Top\": 0.7396047711372375}, \"Polygon\": [{\"X\": 0.6560668349266052, \"Y\": 0.7396047711372375}, {\"X\": 0.7666383981704712, \"Y\": 0.7534551024436951}, {\"X\": 0.7655907273292542, \"Y\": 0.7576318979263306}, {\"X\": 0.6550191640853882, \"Y\": 0.743781566619873}]}, \"Id\": \"e770bbd5-5f29-4b70-b4c1-014523723137\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"448a9045-d300-4d48-ac09-48fad9a77e84\", \"75eab274-9de3-488a-b5c5-e7dda1b1022c\", \"59234a49-4313-46ba-b5fa-b054c0cc8546\", \"a3f916a5-ad4f-493a-8a11-871d74e19b39\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49349212646484, \"Text\": \"Date:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044818323105573654, \"Height\": 0.015888528898358345, \"Left\": 0.9013816714286804, \"Top\": 0.1163220927119255}, \"Polygon\": [{\"X\": 0.9040424823760986, \"Y\": 0.1163220927119255}, {\"X\": 0.9462000131607056, \"Y\": 0.12160279601812363}, {\"X\": 0.9435392022132874, \"Y\": 0.1322106122970581}, {\"X\": 0.9013816714286804, \"Y\": 0.12692990899085999}]}, \"Id\": \"44c7a365-5940-4f8d-8c8c-306ac39f25cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 76.52082061767578, \"Text\": \"2020-0\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05181581526994705, \"Height\": 0.017187001183629036, \"Left\": 0.9481841921806335, \"Top\": 0.12202782183885574}, \"Polygon\": [{\"X\": 0.9508718848228455, \"Y\": 0.12202782183885574}, {\"X\": 1.0, \"Y\": 0.128499835729599}, {\"X\": 0.9998522400856018, \"Y\": 0.13921482861042023}, {\"X\": 0.9481841921806335, \"Y\": 0.13274282217025757}]}, \"Id\": \"399f3349-0ef7-4436-9dad-082c47924d54\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45420837402344, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.054003410041332245, \"Height\": 0.016905847936868668, \"Left\": 0.23685982823371887, \"Top\": 0.061276186257600784}, \"Polygon\": [{\"X\": 0.23948614299297333, \"Y\": 0.061276186257600784}, {\"X\": 0.2908632457256317, \"Y\": 0.06771174818277359}, {\"X\": 0.28823691606521606, \"Y\": 0.07818203419446945}, {\"X\": 0.23685982823371887, \"Y\": 0.07174647599458694}]}, \"Id\": \"d50190f4-d5df-4d8b-ba9f-0b7242dcf395\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57685089111328, \"Text\": \"SomeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09415393322706223, \"Height\": 0.021856455132365227, \"Left\": 0.29292532801628113, \"Top\": 0.0683148130774498}, \"Polygon\": [{\"X\": 0.2955312728881836, \"Y\": 0.0683148130774498}, {\"X\": 0.38707926869392395, \"Y\": 0.07978223264217377}, {\"X\": 0.38447335362434387, \"Y\": 0.09017127007246017}, {\"X\": 0.29292532801628113, \"Y\": 0.0787038505077362}]}, \"Id\": \"b6f5f7db-ce0d-42e4-bcfd-4f3a48ef60b5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76817321777344, \"Text\": \"Key1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04664025828242302, \"Height\": 0.01819119043648243, \"Left\": 0.8907472491264343, \"Top\": 0.17026552557945251}, \"Polygon\": [{\"X\": 0.8939452767372131, \"Y\": 0.17026552557945251}, {\"X\": 0.9373874664306641, \"Y\": 0.1757071614265442}, {\"X\": 0.9341894388198853, \"Y\": 0.1884567141532898}, {\"X\": 0.8907472491264343, \"Y\": 0.18301509320735931}]}, \"Id\": \"6e4791a7-952e-4e98-9f91-4828721db284\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.93285369873047, \"Text\": \"value1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.054515790194272995, \"Height\": 0.017170274630188942, \"Left\": 0.9383904337882996, \"Top\": 0.17600062489509583}, \"Polygon\": [{\"X\": 0.9410685896873474, \"Y\": 0.17600062489509583}, {\"X\": 0.9929062128067017, \"Y\": 0.1824938803911209}, {\"X\": 0.9902280569076538, \"Y\": 0.19317090511322021}, {\"X\": 0.9383904337882996, \"Y\": 0.18667766451835632}]}, \"Id\": \"451d3efc-4349-443d-aec3-a564496e2011\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72874450683594, \"Text\": \"Key2:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04590299353003502, \"Height\": 0.017979281023144722, \"Left\": 0.885246992111206, \"Top\": 0.19416435062885284}, \"Polygon\": [{\"X\": 0.8884140849113464, \"Y\": 0.19416435062885284}, {\"X\": 0.9311500191688538, \"Y\": 0.19951750338077545}, {\"X\": 0.9279829263687134, \"Y\": 0.21214362978935242}, {\"X\": 0.885246992111206, \"Y\": 0.2067904770374298}]}, \"Id\": \"4a10127a-0382-4573-9d54-b271316ede1a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67433166503906, \"Text\": \"value2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0555286668241024, \"Height\": 0.017272209748625755, \"Left\": 0.932365357875824, \"Top\": 0.1997719705104828}, \"Polygon\": [{\"X\": 0.9350370764732361, \"Y\": 0.1997719705104828}, {\"X\": 0.9878939986228943, \"Y\": 0.20639289915561676}, {\"X\": 0.9852222800254822, \"Y\": 0.2170441895723343}, {\"X\": 0.932365357875824, \"Y\": 0.21042326092720032}]}, \"Id\": \"ee6099e3-20fb-4abf-abde-c0dee0d5d050\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7724380493164, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04823966324329376, \"Height\": 0.01629020646214485, \"Left\": 0.236606627702713, \"Top\": 0.15924955904483795}, \"Polygon\": [{\"X\": 0.2392604798078537, \"Y\": 0.15924955904483795}, {\"X\": 0.28484630584716797, \"Y\": 0.16495969891548157}, {\"X\": 0.2821924388408661, \"Y\": 0.1755397617816925}, {\"X\": 0.236606627702713, \"Y\": 0.1698296219110489}]}, \"Id\": \"340df2a6-c4cf-49ed-8435-42bffc04f562\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08683013916016, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04096848890185356, \"Height\": 0.015298455953598022, \"Left\": 0.2872263491153717, \"Top\": 0.16576245427131653}, \"Polygon\": [{\"X\": 0.28985923528671265, \"Y\": 0.16576245427131653}, {\"X\": 0.32819485664367676, \"Y\": 0.1705644130706787}, {\"X\": 0.3255619704723358, \"Y\": 0.18106091022491455}, {\"X\": 0.2872263491153717, \"Y\": 0.17625893652439117}]}, \"Id\": \"6c9835f6-ac4b-4543-8453-5dc257bac8cb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70954132080078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048332396894693375, \"Height\": 0.016151536256074905, \"Left\": 0.34442245960235596, \"Top\": 0.172691211104393}, \"Polygon\": [{\"X\": 0.3470373749732971, \"Y\": 0.172691211104393}, {\"X\": 0.39275485277175903, \"Y\": 0.17841783165931702}, {\"X\": 0.39013993740081787, \"Y\": 0.1888427436351776}, {\"X\": 0.34442245960235596, \"Y\": 0.1831161081790924}]}, \"Id\": \"e9a6ab52-d9f0-4d1b-8441-acae78741a6e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49980926513672, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0401417575776577, \"Height\": 0.014950459823012352, \"Left\": 0.3958457410335541, \"Top\": 0.17940863966941833}, \"Polygon\": [{\"X\": 0.39841532707214355, \"Y\": 0.17940863966941833}, {\"X\": 0.4359875023365021, \"Y\": 0.1841149777173996}, {\"X\": 0.4334179162979126, \"Y\": 0.19435909390449524}, {\"X\": 0.3958457410335541, \"Y\": 0.18965275585651398}]}, \"Id\": \"0b912532-1187-41cc-a16a-da041225de8b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68710327148438, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0481976754963398, \"Height\": 0.016046974807977676, \"Left\": 0.4525890648365021, \"Top\": 0.18625476956367493}, \"Polygon\": [{\"X\": 0.4551812708377838, \"Y\": 0.18625476956367493}, {\"X\": 0.5007867217063904, \"Y\": 0.19196735322475433}, {\"X\": 0.49819451570510864, \"Y\": 0.2023017406463623}, {\"X\": 0.4525890648365021, \"Y\": 0.1965891420841217}]}, \"Id\": \"9cb263ad-bf9d-40a7-a66a-b5843666fe69\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51151275634766, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04023449495434761, \"Height\": 0.01502789556980133, \"Left\": 0.5034666061401367, \"Top\": 0.19273202121257782}, \"Polygon\": [{\"X\": 0.5060532093048096, \"Y\": 0.19273202121257782}, {\"X\": 0.5437011122703552, \"Y\": 0.19744783639907837}, {\"X\": 0.5411144495010376, \"Y\": 0.20775991678237915}, {\"X\": 0.5034666061401367, \"Y\": 0.2030440866947174}]}, \"Id\": \"8d7dfbd4-b5fb-4943-934b-ebfe374cc011\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81289672851562, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04820951819419861, \"Height\": 0.016141336411237717, \"Left\": 0.23237892985343933, \"Top\": 0.17665593326091766}, \"Polygon\": [{\"X\": 0.23499520123004913, \"Y\": 0.17665593326091766}, {\"X\": 0.28058844804763794, \"Y\": 0.1823669970035553}, {\"X\": 0.27797219157218933, \"Y\": 0.19279727339744568}, {\"X\": 0.23237892985343933, \"Y\": 0.18708620965480804}]}, \"Id\": \"9a065d3c-3c4a-476c-a778-57be2f73f874\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.20344543457031, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040582433342933655, \"Height\": 0.015037313103675842, \"Left\": 0.2829892039299011, \"Top\": 0.18307852745056152}, \"Polygon\": [{\"X\": 0.2855669856071472, \"Y\": 0.18307852745056152}, {\"X\": 0.32357165217399597, \"Y\": 0.18783903121948242}, {\"X\": 0.3209938704967499, \"Y\": 0.19811584055423737}, {\"X\": 0.2829892039299011, \"Y\": 0.19335532188415527}]}, \"Id\": \"3fd0c102-14c8-4f62-8efc-ea6185d13ac8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71878814697266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04812444746494293, \"Height\": 0.016031822189688683, \"Left\": 0.34027987718582153, \"Top\": 0.1901080161333084}, \"Polygon\": [{\"X\": 0.3428705632686615, \"Y\": 0.1901080161333084}, {\"X\": 0.38840433955192566, \"Y\": 0.19581164419651031}, {\"X\": 0.3858136534690857, \"Y\": 0.20613984763622284}, {\"X\": 0.34027987718582153, \"Y\": 0.20043621957302094}]}, \"Id\": \"b5dc9358-8865-45ce-8b79-c1bb4b2b890b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57575988769531, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04044869542121887, \"Height\": 0.014979579485952854, \"Left\": 0.39114123582839966, \"Top\": 0.19657112658023834}, \"Polygon\": [{\"X\": 0.39370840787887573, \"Y\": 0.19657112658023834}, {\"X\": 0.43158993124961853, \"Y\": 0.2013162076473236}, {\"X\": 0.42902275919914246, \"Y\": 0.21155069768428802}, {\"X\": 0.39114123582839966, \"Y\": 0.20680561661720276}]}, \"Id\": \"8d4fc074-55a2-4873-a494-88e602257ffd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73080444335938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04782482609152794, \"Height\": 0.015912767499685287, \"Left\": 0.44844722747802734, \"Top\": 0.20363935828208923}, \"Polygon\": [{\"X\": 0.45101678371429443, \"Y\": 0.20363935828208923}, {\"X\": 0.4962720572948456, \"Y\": 0.20930808782577515}, {\"X\": 0.4937024712562561, \"Y\": 0.21955211460590363}, {\"X\": 0.44844722747802734, \"Y\": 0.2138833850622177}]}, \"Id\": \"9740b293-b285-425b-b391-4e5ce7da38a3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41513061523438, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04049990698695183, \"Height\": 0.015005714260041714, \"Left\": 0.4989837110042572, \"Top\": 0.20993569493293762}, \"Polygon\": [{\"X\": 0.5015559792518616, \"Y\": 0.20993569493293762}, {\"X\": 0.5394836068153381, \"Y\": 0.2146865576505661}, {\"X\": 0.5369113683700562, \"Y\": 0.2249414026737213}, {\"X\": 0.4989837110042572, \"Y\": 0.22019053995609283}]}, \"Id\": \"ff2f4032-e538-479b-b8c6-6a87d9a5287c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79957580566406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048120222985744476, \"Height\": 0.015910228714346886, \"Left\": 0.22824923694133759, \"Top\": 0.1943676918745041}, \"Polygon\": [{\"X\": 0.2308085560798645, \"Y\": 0.1943676918745041}, {\"X\": 0.27636945247650146, \"Y\": 0.200074702501297}, {\"X\": 0.27381014823913574, \"Y\": 0.21027791500091553}, {\"X\": 0.22824923694133759, \"Y\": 0.20457090437412262}]}, \"Id\": \"80e99662-b155-46d3-845f-9231c545e7cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.03057098388672, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040918007493019104, \"Height\": 0.014904378913342953, \"Left\": 0.27884313464164734, \"Top\": 0.2007698267698288}, \"Polygon\": [{\"X\": 0.28137558698654175, \"Y\": 0.2007698267698288}, {\"X\": 0.31976112723350525, \"Y\": 0.2055780440568924}, {\"X\": 0.31722867488861084, \"Y\": 0.21567420661449432}, {\"X\": 0.27884313464164734, \"Y\": 0.21086598932743073}]}, \"Id\": \"eeddc938-43fb-4fe3-a936-f9bf2ad4ec20\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77581787109375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047928351908922195, \"Height\": 0.015858402475714684, \"Left\": 0.33615389466285706, \"Top\": 0.20779980719089508}, \"Polygon\": [{\"X\": 0.33870601654052734, \"Y\": 0.20779980719089508}, {\"X\": 0.38408225774765015, \"Y\": 0.21348369121551514}, {\"X\": 0.38153013586997986, \"Y\": 0.2236582189798355}, {\"X\": 0.33615389466285706, \"Y\": 0.21797433495521545}]}, \"Id\": \"fa83ab84-df5a-479c-aa17-5f3f67db6c72\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36087036132812, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04056575521826744, \"Height\": 0.014734779484570026, \"Left\": 0.387098491191864, \"Top\": 0.21430498361587524}, \"Polygon\": [{\"X\": 0.38959845900535583, \"Y\": 0.21430498361587524}, {\"X\": 0.42766425013542175, \"Y\": 0.21907314658164978}, {\"X\": 0.42516428232192993, \"Y\": 0.2290397584438324}, {\"X\": 0.387098491191864, \"Y\": 0.22427159547805786}]}, \"Id\": \"c4d5e2d6-5206-4d49-974a-3b73374862eb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71709442138672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047597695142030716, \"Height\": 0.01597408577799797, \"Left\": 0.4443313777446747, \"Top\": 0.22125715017318726}, \"Polygon\": [{\"X\": 0.4469241797924042, \"Y\": 0.22125715017318726}, {\"X\": 0.4919290840625763, \"Y\": 0.22689451277256012}, {\"X\": 0.4893362820148468, \"Y\": 0.23723122477531433}, {\"X\": 0.4443313777446747, \"Y\": 0.23159386217594147}]}, \"Id\": \"642ad1d7-8b21-44ab-b409-e941764e48cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59088134765625, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04065302386879921, \"Height\": 0.014813585206866264, \"Left\": 0.4946189522743225, \"Top\": 0.2276897430419922}, \"Polygon\": [{\"X\": 0.49713650345802307, \"Y\": 0.2276897430419922}, {\"X\": 0.5352720022201538, \"Y\": 0.23246663808822632}, {\"X\": 0.5327544212341309, \"Y\": 0.2425033301115036}, {\"X\": 0.4946189522743225, \"Y\": 0.23772643506526947}]}, \"Id\": \"4328fe3c-24ed-494d-be66-44b749245e7f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83686065673828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055482037365436554, \"Height\": 0.018421899527311325, \"Left\": 0.45300593972206116, \"Top\": 0.26580432057380676}, \"Polygon\": [{\"X\": 0.4559769034385681, \"Y\": 0.26580432057380676}, {\"X\": 0.5084879994392395, \"Y\": 0.2723819315433502}, {\"X\": 0.5055170059204102, \"Y\": 0.2842262089252472}, {\"X\": 0.45300593972206116, \"Y\": 0.2776486277580261}]}, \"Id\": \"3378eebc-9606-4c6b-9e72-7e2beca631e8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38579559326172, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04733249172568321, \"Height\": 0.01701321266591549, \"Left\": 0.5116925239562988, \"Top\": 0.2733907997608185}, \"Polygon\": [{\"X\": 0.5145630240440369, \"Y\": 0.2733907997608185}, {\"X\": 0.5590250492095947, \"Y\": 0.2789601683616638}, {\"X\": 0.5561544895172119, \"Y\": 0.2904040217399597}, {\"X\": 0.5116925239562988, \"Y\": 0.2848346531391144}]}, \"Id\": \"d0049a68-1cd9-4dde-97fa-d516befbab79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74788665771484, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05511166900396347, \"Height\": 0.018483078107237816, \"Left\": 0.5753546953201294, \"Top\": 0.2810039222240448}, \"Polygon\": [{\"X\": 0.5783535242080688, \"Y\": 0.2810039222240448}, {\"X\": 0.6304664015769958, \"Y\": 0.28753164410591125}, {\"X\": 0.6274675726890564, \"Y\": 0.29948699474334717}, {\"X\": 0.5753546953201294, \"Y\": 0.2929592728614807}]}, \"Id\": \"8657eef7-e7f8-4477-a7fd-17caa3a9c7ba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28524780273438, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04817960783839226, \"Height\": 0.01711634360253811, \"Left\": 0.6334211826324463, \"Top\": 0.2884867787361145}, \"Polygon\": [{\"X\": 0.6362909078598022, \"Y\": 0.2884867787361145}, {\"X\": 0.6816007494926453, \"Y\": 0.2941623628139496}, {\"X\": 0.6787310242652893, \"Y\": 0.30560311675071716}, {\"X\": 0.6334211826324463, \"Y\": 0.29992756247520447}]}, \"Id\": \"52f0d084-7010-4244-aa38-096afad11710\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81787872314453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05612991750240326, \"Height\": 0.0186079740524292, \"Left\": 0.6970701813697815, \"Top\": 0.2961287498474121}, \"Polygon\": [{\"X\": 0.7000682950019836, \"Y\": 0.2961287498474121}, {\"X\": 0.753200113773346, \"Y\": 0.3027840852737427}, {\"X\": 0.750201940536499, \"Y\": 0.3147367238998413}, {\"X\": 0.6970701813697815, \"Y\": 0.30808135867118835}]}, \"Id\": \"b9c523a8-97b9-4c82-97d2-db92bb4e327d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39620208740234, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047294292598962784, \"Height\": 0.017065763473510742, \"Left\": 0.7560858130455017, \"Top\": 0.3038155734539032}, \"Polygon\": [{\"X\": 0.7589712142944336, \"Y\": 0.3038155734539032}, {\"X\": 0.8033801317214966, \"Y\": 0.3093782961368561}, {\"X\": 0.8004947304725647, \"Y\": 0.32088133692741394}, {\"X\": 0.7560858130455017, \"Y\": 0.31531861424446106}]}, \"Id\": \"087e3f6b-5919-4c48-b255-d72d5640a229\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72048950195312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056020669639110565, \"Height\": 0.018621210008859634, \"Left\": 0.8187446594238281, \"Top\": 0.31135132908821106}, \"Polygon\": [{\"X\": 0.821749746799469, \"Y\": 0.31135132908821106}, {\"X\": 0.8747653365135193, \"Y\": 0.31799212098121643}, {\"X\": 0.8717601895332336, \"Y\": 0.3299725353717804}, {\"X\": 0.8187446594238281, \"Y\": 0.323331743478775}]}, \"Id\": \"4ecc938d-1a51-4dbd-a4e0-425a9874a620\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53192138671875, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04824906587600708, \"Height\": 0.01725817658007145, \"Left\": 0.878107488155365, \"Top\": 0.3190290033817291}, \"Polygon\": [{\"X\": 0.8810117244720459, \"Y\": 0.3190290033817291}, {\"X\": 0.9263565540313721, \"Y\": 0.3247089684009552}, {\"X\": 0.9234523177146912, \"Y\": 0.3362872004508972}, {\"X\": 0.878107488155365, \"Y\": 0.33060723543167114}]}, \"Id\": \"a825c589-3ddd-457c-9dd3-51164b238a52\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87040710449219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05573349446058273, \"Height\": 0.018338074907660484, \"Left\": 0.941425621509552, \"Top\": 0.32679933309555054}, \"Polygon\": [{\"X\": 0.9443666934967041, \"Y\": 0.32679933309555054}, {\"X\": 0.9971590638160706, \"Y\": 0.33341220021247864}, {\"X\": 0.9942179918289185, \"Y\": 0.34513741731643677}, {\"X\": 0.941425621509552, \"Y\": 0.33852458000183105}]}, \"Id\": \"74019ac8-e2cf-4633-a0da-982701b13ac5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88672637939453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0561402291059494, \"Height\": 0.01851249858736992, \"Left\": 0.447523832321167, \"Top\": 0.28599852323532104}, \"Polygon\": [{\"X\": 0.4504969120025635, \"Y\": 0.28599852323532104}, {\"X\": 0.5036640763282776, \"Y\": 0.2926582992076874}, {\"X\": 0.5006909966468811, \"Y\": 0.30451104044914246}, {\"X\": 0.447523832321167, \"Y\": 0.29785123467445374}]}, \"Id\": \"8432cdd6-58c9-41e1-a8a1-8895b2e952da\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.10383605957031, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04774346947669983, \"Height\": 0.017153432592749596, \"Left\": 0.50616854429245, \"Top\": 0.2935115694999695}, \"Polygon\": [{\"X\": 0.5090620517730713, \"Y\": 0.2935115694999695}, {\"X\": 0.5539119839668274, \"Y\": 0.29912951588630676}, {\"X\": 0.551018476486206, \"Y\": 0.3106650114059448}, {\"X\": 0.50616854429245, \"Y\": 0.30504703521728516}]}, \"Id\": \"e25fa57e-503c-4616-a9d2-f830d6e56f99\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80054473876953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055868782103061676, \"Height\": 0.01849953830242157, \"Left\": 0.5699805617332458, \"Top\": 0.30123332142829895}, \"Polygon\": [{\"X\": 0.5729590654373169, \"Y\": 0.30123332142829895}, {\"X\": 0.6258493065834045, \"Y\": 0.3078584372997284}, {\"X\": 0.6228708028793335, \"Y\": 0.3197328746318817}, {\"X\": 0.5699805617332458, \"Y\": 0.31310775876045227}]}, \"Id\": \"ca95d711-ece4-43ee-9852-74975a4f9133\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07691192626953, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04855566471815109, \"Height\": 0.017295068129897118, \"Left\": 0.6283680200576782, \"Top\": 0.3087378442287445}, \"Polygon\": [{\"X\": 0.6312718391418457, \"Y\": 0.3087378442287445}, {\"X\": 0.6769236922264099, \"Y\": 0.3144562542438507}, {\"X\": 0.6740198731422424, \"Y\": 0.3260329067707062}, {\"X\": 0.6283680200576782, \"Y\": 0.3203144967556}]}, \"Id\": \"afaaceef-1d7d-4dbe-9db4-3b3dddf90be7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79827117919922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055831532925367355, \"Height\": 0.018409892916679382, \"Left\": 0.6920987367630005, \"Top\": 0.31645467877388}, \"Polygon\": [{\"X\": 0.6950552463531494, \"Y\": 0.31645467877388}, {\"X\": 0.7479302287101746, \"Y\": 0.32307785749435425}, {\"X\": 0.7449737191200256, \"Y\": 0.3348645865917206}, {\"X\": 0.6920987367630005, \"Y\": 0.32824137806892395}]}, \"Id\": \"da5b2b0c-a313-4ef1-8cf5-0a7ed690dfcb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39132690429688, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04753917455673218, \"Height\": 0.01724300906062126, \"Left\": 0.7508350610733032, \"Top\": 0.3239596486091614}, \"Polygon\": [{\"X\": 0.7537583708763123, \"Y\": 0.3239596486091614}, {\"X\": 0.7983742356300354, \"Y\": 0.32954829931259155}, {\"X\": 0.7954509258270264, \"Y\": 0.34120267629623413}, {\"X\": 0.7508350610733032, \"Y\": 0.33561402559280396}]}, \"Id\": \"80f8b5f6-e6a3-45b9-a74e-636fe6d696ae\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8538818359375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05603283271193504, \"Height\": 0.018587758764624596, \"Left\": 0.8138556480407715, \"Top\": 0.33152398467063904}, \"Polygon\": [{\"X\": 0.8168516755104065, \"Y\": 0.33152398467063904}, {\"X\": 0.8698884844779968, \"Y\": 0.3381674587726593}, {\"X\": 0.866892397403717, \"Y\": 0.3501117527484894}, {\"X\": 0.8138556480407715, \"Y\": 0.3434683084487915}]}, \"Id\": \"6f83aa3d-f1b2-4fd5-807e-4609e01804e7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55765533447266, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04855009540915489, \"Height\": 0.017128510400652885, \"Left\": 0.8728617429733276, \"Top\": 0.3392399847507477}, \"Polygon\": [{\"X\": 0.8757226467132568, \"Y\": 0.3392399847507477}, {\"X\": 0.9214118719100952, \"Y\": 0.34496307373046875}, {\"X\": 0.918550968170166, \"Y\": 0.3563685119152069}, {\"X\": 0.8728617429733276, \"Y\": 0.35064542293548584}]}, \"Id\": \"a25b2ac7-e358-4d5d-855d-7b810dc565bc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74417877197266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056986138224601746, \"Height\": 0.018767304718494415, \"Left\": 0.9359301328659058, \"Top\": 0.3468143939971924}, \"Polygon\": [{\"X\": 0.9389417171478271, \"Y\": 0.3468143939971924}, {\"X\": 0.9929162859916687, \"Y\": 0.35357531905174255}, {\"X\": 0.9899046421051025, \"Y\": 0.3655816912651062}, {\"X\": 0.9359301328659058, \"Y\": 0.3588207960128784}]}, \"Id\": \"823908ad-95a8-4f31-bc40-3f1d50cd4c85\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87737274169922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05640284717082977, \"Height\": 0.018682582303881645, \"Left\": 0.4424959421157837, \"Top\": 0.3060016930103302}, \"Polygon\": [{\"X\": 0.4455045461654663, \"Y\": 0.3060016930103302}, {\"X\": 0.49889877438545227, \"Y\": 0.3126899302005768}, {\"X\": 0.49589020013809204, \"Y\": 0.3246842920780182}, {\"X\": 0.4424959421157837, \"Y\": 0.3179960548877716}]}, \"Id\": \"d1604194-7909-496c-a946-875d379ba838\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24202728271484, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047336746007204056, \"Height\": 0.017208296805620193, \"Left\": 0.5017064809799194, \"Top\": 0.3138887584209442}, \"Polygon\": [{\"X\": 0.5046274065971375, \"Y\": 0.3138887584209442}, {\"X\": 0.5490432381629944, \"Y\": 0.31945234537124634}, {\"X\": 0.5461223721504211, \"Y\": 0.3310970366001129}, {\"X\": 0.5017064809799194, \"Y\": 0.3255334496498108}]}, \"Id\": \"6933627e-cf16-41b6-98f9-86a9366bc812\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79613494873047, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055815376341342926, \"Height\": 0.018664294853806496, \"Left\": 0.5649439692497253, \"Top\": 0.32126182317733765}, \"Polygon\": [{\"X\": 0.567966878414154, \"Y\": 0.32126182317733765}, {\"X\": 0.6207593679428101, \"Y\": 0.32787466049194336}, {\"X\": 0.6177363991737366, \"Y\": 0.3399261236190796}, {\"X\": 0.5649439692497253, \"Y\": 0.3333132565021515}]}, \"Id\": \"061e1531-bb82-49d8-a16b-b8938e74e4ee\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25625610351562, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0487518236041069, \"Height\": 0.017384249716997147, \"Left\": 0.6231611967086792, \"Top\": 0.3289400339126587}, \"Polygon\": [{\"X\": 0.6260817646980286, \"Y\": 0.3289400339126587}, {\"X\": 0.6719130277633667, \"Y\": 0.3346809148788452}, {\"X\": 0.6689924597740173, \"Y\": 0.34632426500320435}, {\"X\": 0.6231611967086792, \"Y\": 0.3405833840370178}]}, \"Id\": \"7d242d39-9ede-487b-b05e-528a5ad2e81a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82176208496094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05627366527915001, \"Height\": 0.01847407966852188, \"Left\": 0.687216579914093, \"Top\": 0.3366488516330719}, \"Polygon\": [{\"X\": 0.6901753544807434, \"Y\": 0.3366488516330719}, {\"X\": 0.7434902191162109, \"Y\": 0.343327134847641}, {\"X\": 0.7405314445495605, \"Y\": 0.3551229238510132}, {\"X\": 0.687216579914093, \"Y\": 0.3484446406364441}]}, \"Id\": \"e0d207c1-653c-4193-974c-3b995c63654c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43411254882812, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04790569841861725, \"Height\": 0.01719832606613636, \"Left\": 0.7454094886779785, \"Top\": 0.344230979681015}, \"Polygon\": [{\"X\": 0.7483093738555908, \"Y\": 0.344230979681015}, {\"X\": 0.7933152318000793, \"Y\": 0.3498684763908386}, {\"X\": 0.790415346622467, \"Y\": 0.3614293038845062}, {\"X\": 0.7454094886779785, \"Y\": 0.355791836977005}]}, \"Id\": \"e6c56771-3c06-42ed-8056-4bd2c75fe311\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84066009521484, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05592174455523491, \"Height\": 0.01858695223927498, \"Left\": 0.8089954853057861, \"Top\": 0.35168856382369995}, \"Polygon\": [{\"X\": 0.8119949102401733, \"Y\": 0.35168856382369995}, {\"X\": 0.8649172186851501, \"Y\": 0.35831767320632935}, {\"X\": 0.8619177937507629, \"Y\": 0.37027549743652344}, {\"X\": 0.8089954853057861, \"Y\": 0.36364638805389404}]}, \"Id\": \"4732735d-4392-461f-83d0-9ed7c55cb946\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66840362548828, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04858946055173874, \"Height\": 0.017026595771312714, \"Left\": 0.8676783442497253, \"Top\": 0.35950008034706116}, \"Polygon\": [{\"X\": 0.870511531829834, \"Y\": 0.35950008034706116}, {\"X\": 0.9162678122520447, \"Y\": 0.36523157358169556}, {\"X\": 0.913434624671936, \"Y\": 0.37652668356895447}, {\"X\": 0.8676783442497253, \"Y\": 0.37079519033432007}]}, \"Id\": \"122b22fe-1c68-4a62-8ca0-89b512a4e974\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79035186767578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0570758618414402, \"Height\": 0.018751807510852814, \"Left\": 0.9304895997047424, \"Top\": 0.36691758036613464}, \"Polygon\": [{\"X\": 0.9334943294525146, \"Y\": 0.36691758036613464}, {\"X\": 0.9875655174255371, \"Y\": 0.3736906051635742}, {\"X\": 0.9845607876777649, \"Y\": 0.38566941022872925}, {\"X\": 0.9304895997047424, \"Y\": 0.3788963854312897}]}, \"Id\": \"10132a06-6ba2-4029-a907-adfa9178ebfa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.05819702148438, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010430337861180305, \"Height\": 0.012703069485723972, \"Left\": 0.9895696640014648, \"Top\": 0.37499335408210754}, \"Polygon\": [{\"X\": 0.9923973679542542, \"Y\": 0.37499335408210754}, {\"X\": 1.0, \"Y\": 0.3764231204986572}, {\"X\": 1.0, \"Y\": 0.38769641518592834}, {\"X\": 0.9895696640014648, \"Y\": 0.3862666189670563}]}, \"Id\": \"0664d3df-a775-47d2-bc1a-50a915bb662b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81990051269531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05600282549858093, \"Height\": 0.01867000013589859, \"Left\": 0.43772655725479126, \"Top\": 0.3263011872768402}, \"Polygon\": [{\"X\": 0.44074487686157227, \"Y\": 0.3263011872768402}, {\"X\": 0.4937293827533722, \"Y\": 0.3329381048679352}, {\"X\": 0.4907110631465912, \"Y\": 0.3449711799621582}, {\"X\": 0.43772655725479126, \"Y\": 0.3383342921733856}]}, \"Id\": \"7f5dc200-65bf-4abe-8c4f-92bd99b98d1e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61356353759766, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04775119200348854, \"Height\": 0.017009012401103973, \"Left\": 0.496227890253067, \"Top\": 0.33409109711647034}, \"Polygon\": [{\"X\": 0.4990837275981903, \"Y\": 0.33409109711647034}, {\"X\": 0.5439790487289429, \"Y\": 0.33971476554870605}, {\"X\": 0.5411232113838196, \"Y\": 0.3511001169681549}, {\"X\": 0.496227890253067, \"Y\": 0.3454764783382416}]}, \"Id\": \"4d6ab9cd-18cf-4caf-b56f-5f45cfa6d9ab\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85088348388672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055023930966854095, \"Height\": 0.018341265618801117, \"Left\": 0.5602638125419617, \"Top\": 0.3417244553565979}, \"Polygon\": [{\"X\": 0.5632287263870239, \"Y\": 0.3417244553565979}, {\"X\": 0.615287721157074, \"Y\": 0.34824541211128235}, {\"X\": 0.6123228073120117, \"Y\": 0.3600656986236572}, {\"X\": 0.5602638125419617, \"Y\": 0.3535447418689728}]}, \"Id\": \"5479bfaf-ef5b-4942-a29a-122ddd645ba6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52767181396484, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04862750321626663, \"Height\": 0.01698772795498371, \"Left\": 0.6178560853004456, \"Top\": 0.3493584394454956}, \"Polygon\": [{\"X\": 0.6206780076026917, \"Y\": 0.3493584394454956}, {\"X\": 0.6664835810661316, \"Y\": 0.35509610176086426}, {\"X\": 0.6636616587638855, \"Y\": 0.366346150636673}, {\"X\": 0.6178560853004456, \"Y\": 0.3606084883213043}]}, \"Id\": \"a97a014d-5231-4df7-9b47-7c119e90c2e5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41969299316406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05586054548621178, \"Height\": 0.0184706412255764, \"Left\": 0.6824914216995239, \"Top\": 0.35693982243537903}, \"Polygon\": [{\"X\": 0.6854627132415771, \"Y\": 0.35693982243537903}, {\"X\": 0.7383519411087036, \"Y\": 0.36356478929519653}, {\"X\": 0.7353806495666504, \"Y\": 0.3754104673862457}, {\"X\": 0.6824914216995239, \"Y\": 0.3687855005264282}]}, \"Id\": \"070e0104-dba8-4695-80c3-d81abbb27538\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3780288696289, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048045989125967026, \"Height\": 0.017185639590024948, \"Left\": 0.7404652237892151, \"Top\": 0.3645058274269104}, \"Polygon\": [{\"X\": 0.743357241153717, \"Y\": 0.3645058274269104}, {\"X\": 0.7885112166404724, \"Y\": 0.37016186118125916}, {\"X\": 0.7856191992759705, \"Y\": 0.38169145584106445}, {\"X\": 0.7404652237892151, \"Y\": 0.3760354220867157}]}, \"Id\": \"965cdb1d-2092-49ed-b300-a84364e8791b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83946228027344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05567054823040962, \"Height\": 0.01835230365395546, \"Left\": 0.8039003610610962, \"Top\": 0.3721083700656891}, \"Polygon\": [{\"X\": 0.8068471550941467, \"Y\": 0.3721083700656891}, {\"X\": 0.8595709204673767, \"Y\": 0.37871259450912476}, {\"X\": 0.8566240668296814, \"Y\": 0.39046066999435425}, {\"X\": 0.8039003610610962, \"Y\": 0.3838564157485962}]}, \"Id\": \"8daedbdd-539b-4769-9353-470bed01a1e7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62317657470703, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048420894891023636, \"Height\": 0.016923334449529648, \"Left\": 0.8627672791481018, \"Top\": 0.3799391984939575}, \"Polygon\": [{\"X\": 0.8655791878700256, \"Y\": 0.3799391984939575}, {\"X\": 0.9111881852149963, \"Y\": 0.38565224409103394}, {\"X\": 0.9083762168884277, \"Y\": 0.39686253666877747}, {\"X\": 0.8627672791481018, \"Y\": 0.39114952087402344}]}, \"Id\": \"43e07a3c-786d-4195-ad58-ea0d5c1d3dc6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73819732666016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056672386825084686, \"Height\": 0.018687976524233818, \"Left\": 0.926138162612915, \"Top\": 0.38720691204071045}, \"Polygon\": [{\"X\": 0.9291393756866455, \"Y\": 0.38720691204071045}, {\"X\": 0.9828104972839355, \"Y\": 0.3939298093318939}, {\"X\": 0.9798092842102051, \"Y\": 0.4058948755264282}, {\"X\": 0.926138162612915, \"Y\": 0.39917194843292236}]}, \"Id\": \"e76bf80d-60a5-4142-b267-65caa7126efd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 91.16666412353516, \"Text\": \"2.\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015640638768672943, \"Height\": 0.01342441700398922, \"Left\": 0.9843593835830688, \"Top\": 0.3949323892593384}, \"Polygon\": [{\"X\": 0.9872711896896362, \"Y\": 0.3949323892593384}, {\"X\": 1.0, \"Y\": 0.3967483639717102}, {\"X\": 0.998856782913208, \"Y\": 0.40835681557655334}, {\"X\": 0.9843593835830688, \"Y\": 0.4065408408641815}]}, \"Id\": \"ba384578-6fd8-4578-941e-385ff3fb4845\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83028411865234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055691927671432495, \"Height\": 0.018236102536320686, \"Left\": 0.4329855144023895, \"Top\": 0.3467041552066803}, \"Polygon\": [{\"X\": 0.43590155243873596, \"Y\": 0.3467041552066803}, {\"X\": 0.488677442073822, \"Y\": 0.35331490635871887}, {\"X\": 0.4857614040374756, \"Y\": 0.36494025588035583}, {\"X\": 0.4329855144023895, \"Y\": 0.3583294749259949}]}, \"Id\": \"966c1f1b-d689-44db-bfae-a848bc460d7b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53050231933594, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047079768031835556, \"Height\": 0.016977520659565926, \"Left\": 0.49160856008529663, \"Top\": 0.3542388677597046}, \"Polygon\": [{\"X\": 0.4944780170917511, \"Y\": 0.3542388677597046}, {\"X\": 0.5386883020401001, \"Y\": 0.35977670550346375}, {\"X\": 0.5358188152313232, \"Y\": 0.37121638655662537}, {\"X\": 0.49160856008529663, \"Y\": 0.3656785488128662}]}, \"Id\": \"12b0c250-4292-44b0-800f-4b10217fd3e4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85328674316406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05551832169294357, \"Height\": 0.018236350268125534, \"Left\": 0.5552605986595154, \"Top\": 0.3619561791419983}, \"Polygon\": [{\"X\": 0.5581822991371155, \"Y\": 0.3619561791419983}, {\"X\": 0.6107789278030396, \"Y\": 0.36854448914527893}, {\"X\": 0.6078571677207947, \"Y\": 0.38019251823425293}, {\"X\": 0.5552605986595154, \"Y\": 0.3736042082309723}]}, \"Id\": \"84b0d8e3-d79c-4466-b9cd-0330926542c0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46302032470703, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04797236621379852, \"Height\": 0.01712401770055294, \"Left\": 0.6133962869644165, \"Top\": 0.3692812919616699}, \"Polygon\": [{\"X\": 0.6162747144699097, \"Y\": 0.3692812919616699}, {\"X\": 0.6613686680793762, \"Y\": 0.374929815530777}, {\"X\": 0.6584901809692383, \"Y\": 0.3864053189754486}, {\"X\": 0.6133962869644165, \"Y\": 0.38075679540634155}]}, \"Id\": \"b341b430-1e8e-43e1-b1f4-9f36280f3076\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7239990234375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05538911372423172, \"Height\": 0.018418945372104645, \"Left\": 0.6773321032524109, \"Top\": 0.3770209550857544}, \"Polygon\": [{\"X\": 0.6803053021430969, \"Y\": 0.3770209550857544}, {\"X\": 0.732721209526062, \"Y\": 0.3835866451263428}, {\"X\": 0.7297479510307312, \"Y\": 0.39543992280960083}, {\"X\": 0.6773321032524109, \"Y\": 0.38887423276901245}]}, \"Id\": \"8e7eb42d-4bcb-4c15-9deb-64b0e5a9ac8d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26312255859375, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04766593128442764, \"Height\": 0.017123578116297722, \"Left\": 0.735560417175293, \"Top\": 0.3846742808818817}, \"Polygon\": [{\"X\": 0.7384487390518188, \"Y\": 0.3846742808818817}, {\"X\": 0.7832263708114624, \"Y\": 0.3902831971645355}, {\"X\": 0.7803381085395813, \"Y\": 0.4017978608608246}, {\"X\": 0.735560417175293, \"Y\": 0.39618897438049316}]}, \"Id\": \"f8d6bc18-d7fb-4d8d-8b3e-8ad09eeaf8bc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86305236816406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055624816566705704, \"Height\": 0.01847413368523121, \"Left\": 0.7990797758102417, \"Top\": 0.39216095209121704}, \"Polygon\": [{\"X\": 0.8020596504211426, \"Y\": 0.39216095209121704}, {\"X\": 0.8547046184539795, \"Y\": 0.3987553119659424}, {\"X\": 0.8517247438430786, \"Y\": 0.4106350839138031}, {\"X\": 0.7990797758102417, \"Y\": 0.40404069423675537}]}, \"Id\": \"5f855ddd-06e2-4ef6-801a-b638f11caac2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68568420410156, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048712220042943954, \"Height\": 0.01706165447831154, \"Left\": 0.8576239943504333, \"Top\": 0.39997830986976624}, \"Polygon\": [{\"X\": 0.8604623079299927, \"Y\": 0.39997830986976624}, {\"X\": 0.9063361883163452, \"Y\": 0.40572455525398254}, {\"X\": 0.9034979343414307, \"Y\": 0.41703999042510986}, {\"X\": 0.8576239943504333, \"Y\": 0.41129374504089355}]}, \"Id\": \"1fc3048a-e1e7-4076-8033-2fbb252d4b14\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85527801513672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05614938586950302, \"Height\": 0.018540842458605766, \"Left\": 0.9212623238563538, \"Top\": 0.4074684977531433}, \"Polygon\": [{\"X\": 0.9242424368858337, \"Y\": 0.4074684977531433}, {\"X\": 0.977411687374115, \"Y\": 0.41412854194641113}, {\"X\": 0.974431574344635, \"Y\": 0.42600932717323303}, {\"X\": 0.9212623238563538, \"Y\": 0.4193492829799652}]}, \"Id\": \"c9d9f538-b47b-466b-a16f-902ffcf122e9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.85191345214844, \"Text\": \"2.\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01997290551662445, \"Height\": 0.013707464560866356, \"Left\": 0.9794479012489319, \"Top\": 0.4151766300201416}, \"Polygon\": [{\"X\": 0.9823498725891113, \"Y\": 0.4151766300201416}, {\"X\": 0.9994208216667175, \"Y\": 0.41731497645378113}, {\"X\": 0.9965189099311829, \"Y\": 0.4288840889930725}, {\"X\": 0.9794479012489319, \"Y\": 0.42674577236175537}]}, \"Id\": \"2619db41-b4c8-4d49-a8bf-2e56c5ccacff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77043914794922, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03230707719922066, \"Height\": 0.014218313619494438, \"Left\": 0.1500152051448822, \"Top\": 0.38653552532196045}, \"Polygon\": [{\"X\": 0.15264932811260223, \"Y\": 0.38653552532196045}, {\"X\": 0.18232227861881256, \"Y\": 0.39025241136550903}, {\"X\": 0.17968815565109253, \"Y\": 0.40075385570526123}, {\"X\": 0.1500152051448822, \"Y\": 0.39703696966171265}]}, \"Id\": \"58d337b4-144c-45ea-b67d-d342b26eea13\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91976165771484, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10082477331161499, \"Height\": 0.023041456937789917, \"Left\": 0.18476387858390808, \"Top\": 0.39042404294013977}, \"Polygon\": [{\"X\": 0.1874603033065796, \"Y\": 0.39042404294013977}, {\"X\": 0.28558865189552307, \"Y\": 0.4027157127857208}, {\"X\": 0.28289222717285156, \"Y\": 0.4134654998779297}, {\"X\": 0.18476387858390808, \"Y\": 0.40117383003234863}]}, \"Id\": \"da2c61b7-5350-45b7-9b9e-921035d51793\"}, {\"BlockType\": \"WORD\", \"Confidence\": 85.49333953857422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004392390605062246, \"Height\": 0.003480258397758007, \"Left\": 0.2135651558637619, \"Top\": 0.3987761437892914}, \"Polygon\": [{\"X\": 0.214323952794075, \"Y\": 0.3987761437892914}, {\"X\": 0.21795754134655, \"Y\": 0.39923128485679626}, {\"X\": 0.21719874441623688, \"Y\": 0.40225639939308167}, {\"X\": 0.2135651558637619, \"Y\": 0.4018012285232544}]}, \"Id\": \"aecbb4cd-fae5-4844-948d-d83ac724e1d7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82658386230469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047832369804382324, \"Height\": 0.01603236421942711, \"Left\": 0.559565007686615, \"Top\": 0.4564683139324188}, \"Polygon\": [{\"X\": 0.5621653199195862, \"Y\": 0.4564683139324188}, {\"X\": 0.6073973774909973, \"Y\": 0.46213415265083313}, {\"X\": 0.6047971248626709, \"Y\": 0.47250068187713623}, {\"X\": 0.559565007686615, \"Y\": 0.4668348729610443}]}, \"Id\": \"c45b7b7d-94ff-4350-8ace-0a9d077aa0da\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43551635742188, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040313415229320526, \"Height\": 0.014633260667324066, \"Left\": 0.6102060675621033, \"Top\": 0.46311283111572266}, \"Polygon\": [{\"X\": 0.6126879453659058, \"Y\": 0.46311283111572266}, {\"X\": 0.6505194902420044, \"Y\": 0.4678516685962677}, {\"X\": 0.6480376124382019, \"Y\": 0.4777460992336273}, {\"X\": 0.6102060675621033, \"Y\": 0.4730072617530823}]}, \"Id\": \"4f0cfb9f-a58f-4713-9616-e83e5b516d55\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7930679321289, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047681987285614014, \"Height\": 0.016000062227249146, \"Left\": 0.701431393623352, \"Top\": 0.47416451573371887}, \"Polygon\": [{\"X\": 0.7040281891822815, \"Y\": 0.47416451573371887}, {\"X\": 0.7491133809089661, \"Y\": 0.4798119366168976}, {\"X\": 0.7465165257453918, \"Y\": 0.490164577960968}, {\"X\": 0.701431393623352, \"Y\": 0.4845171272754669}]}, \"Id\": \"22aaf51d-b8b6-4410-a7aa-e269e2117f93\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34344482421875, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041569117456674576, \"Height\": 0.014902213588356972, \"Left\": 0.751509964466095, \"Top\": 0.4807538390159607}, \"Polygon\": [{\"X\": 0.7540206909179688, \"Y\": 0.4807538390159607}, {\"X\": 0.7930790781974792, \"Y\": 0.4856463372707367}, {\"X\": 0.7905682921409607, \"Y\": 0.4956560432910919}, {\"X\": 0.751509964466095, \"Y\": 0.4907635450363159}]}, \"Id\": \"c5d32bc4-2e26-430c-aa29-9ba699e58331\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70838165283203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04786718636751175, \"Height\": 0.01587938517332077, \"Left\": 0.8427841067314148, \"Top\": 0.49191850423812866}, \"Polygon\": [{\"X\": 0.8453436493873596, \"Y\": 0.49191850423812866}, {\"X\": 0.890651285648346, \"Y\": 0.49759379029273987}, {\"X\": 0.8880917429924011, \"Y\": 0.50779789686203}, {\"X\": 0.8427841067314148, \"Y\": 0.5021225810050964}]}, \"Id\": \"e1449ebd-8f70-46cf-ab69-fa9ae3878c8d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2140884399414, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04089656099677086, \"Height\": 0.014853712171316147, \"Left\": 0.8931012153625488, \"Top\": 0.4983275532722473}, \"Polygon\": [{\"X\": 0.8956212997436523, \"Y\": 0.4983275532722473}, {\"X\": 0.9339978098869324, \"Y\": 0.5031346678733826}, {\"X\": 0.9314777851104736, \"Y\": 0.5131812691688538}, {\"X\": 0.8931012153625488, \"Y\": 0.5083741545677185}]}, \"Id\": \"3423035e-a75e-4e16-a879-4e12e20a4642\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24165344238281, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03605858236551285, \"Height\": 0.01450448576360941, \"Left\": 0.13934065401554108, \"Top\": 0.4120098352432251}, \"Polygon\": [{\"X\": 0.14192719757556915, \"Y\": 0.4120098352432251}, {\"X\": 0.17539922893047333, \"Y\": 0.416202574968338}, {\"X\": 0.17281268537044525, \"Y\": 0.42651432752609253}, {\"X\": 0.13934065401554108, \"Y\": 0.4223215579986572}]}, \"Id\": \"e7c36a92-6a98-4059-b39a-30e362e35753\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97129821777344, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0671619400382042, \"Height\": 0.01861344464123249, \"Left\": 0.1776016354560852, \"Top\": 0.4164760112762451}, \"Polygon\": [{\"X\": 0.18024331331253052, \"Y\": 0.4164760112762451}, {\"X\": 0.2447635680437088, \"Y\": 0.4245578944683075}, {\"X\": 0.2421218901872635, \"Y\": 0.43508943915367126}, {\"X\": 0.1776016354560852, \"Y\": 0.4270075559616089}]}, \"Id\": \"4ab44b2e-3d6f-4755-b741-b09c8e626d1f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84915161132812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04787273332476616, \"Height\": 0.01598033308982849, \"Left\": 0.5554133057594299, \"Top\": 0.4739399552345276}, \"Polygon\": [{\"X\": 0.557998776435852, \"Y\": 0.4739399552345276}, {\"X\": 0.6032860279083252, \"Y\": 0.47961267828941345}, {\"X\": 0.6007004976272583, \"Y\": 0.4899202883243561}, {\"X\": 0.5554133057594299, \"Y\": 0.4842475652694702}]}, \"Id\": \"f3dba9ac-01c6-4f4f-86c0-0ef3f880af33\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.17919921875, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040267109870910645, \"Height\": 0.014604346826672554, \"Left\": 0.6058011054992676, \"Top\": 0.4805803894996643}, \"Polygon\": [{\"X\": 0.6082770228385925, \"Y\": 0.4805803894996643}, {\"X\": 0.6460682153701782, \"Y\": 0.48531419038772583}, {\"X\": 0.643592357635498, \"Y\": 0.4951847493648529}, {\"X\": 0.6058011054992676, \"Y\": 0.49045097827911377}]}, \"Id\": \"4817c356-09b5-4d64-b361-a711d62add8d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82859802246094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04763362929224968, \"Height\": 0.01594526320695877, \"Left\": 0.6973470449447632, \"Top\": 0.491657555103302}, \"Polygon\": [{\"X\": 0.6999312043190002, \"Y\": 0.491657555103302}, {\"X\": 0.7449806332588196, \"Y\": 0.49730050563812256}, {\"X\": 0.7423964738845825, \"Y\": 0.5076028108596802}, {\"X\": 0.6973470449447632, \"Y\": 0.5019598603248596}]}, \"Id\": \"460acbec-b1d6-4914-8560-1cfbbdcd1c5a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3067398071289, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04106730967760086, \"Height\": 0.014791651628911495, \"Left\": 0.7476490139961243, \"Top\": 0.4982225000858307}, \"Polygon\": [{\"X\": 0.7501474618911743, \"Y\": 0.4982225000858307}, {\"X\": 0.7887163162231445, \"Y\": 0.5030537247657776}, {\"X\": 0.7862179279327393, \"Y\": 0.5130141377449036}, {\"X\": 0.7476490139961243, \"Y\": 0.5081830024719238}]}, \"Id\": \"6ae6360d-590c-44a6-91f9-c540aeb08369\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79264068603516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04802394658327103, \"Height\": 0.01590101234614849, \"Left\": 0.8387253880500793, \"Top\": 0.509328305721283}, \"Polygon\": [{\"X\": 0.8412854075431824, \"Y\": 0.509328305721283}, {\"X\": 0.8867493271827698, \"Y\": 0.5150231719017029}, {\"X\": 0.884189248085022, \"Y\": 0.5252293348312378}, {\"X\": 0.8387253880500793, \"Y\": 0.5195344686508179}]}, \"Id\": \"28ba139d-990e-4c09-9122-3e18f804529e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34721374511719, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040646348148584366, \"Height\": 0.014909918420016766, \"Left\": 0.8892996311187744, \"Top\": 0.5158180594444275}, \"Polygon\": [{\"X\": 0.8918423652648926, \"Y\": 0.5158180594444275}, {\"X\": 0.9299460053443909, \"Y\": 0.5205909609794617}, {\"X\": 0.9274032711982727, \"Y\": 0.5307279825210571}, {\"X\": 0.8892996311187744, \"Y\": 0.525955080986023}]}, \"Id\": \"5f610ccb-5641-40b6-9ba7-e4b14826b5e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82760620117188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04799964651465416, \"Height\": 0.01586240716278553, \"Left\": 0.5507992506027222, \"Top\": 0.49147239327430725}, \"Polygon\": [{\"X\": 0.5533500909805298, \"Y\": 0.49147239327430725}, {\"X\": 0.5987988710403442, \"Y\": 0.49716535210609436}, {\"X\": 0.5962480306625366, \"Y\": 0.50733482837677}, {\"X\": 0.5507992506027222, \"Y\": 0.5016418099403381}]}, \"Id\": \"41e75b03-8ba4-4d7d-bea6-1a2d35b10163\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47715759277344, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04058544337749481, \"Height\": 0.014753461815416813, \"Left\": 0.6012294888496399, \"Top\": 0.4979361891746521}, \"Polygon\": [{\"X\": 0.6037336587905884, \"Y\": 0.4979361891746521}, {\"X\": 0.6418149471282959, \"Y\": 0.5027062892913818}, {\"X\": 0.6393107771873474, \"Y\": 0.5126896500587463}, {\"X\": 0.6012294888496399, \"Y\": 0.5079195499420166}]}, \"Id\": \"dd7a9e49-cec9-4448-acd2-a8d0318aa86e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81037139892578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047775402665138245, \"Height\": 0.01587183214724064, \"Left\": 0.6928452849388123, \"Top\": 0.509116530418396}, \"Polygon\": [{\"X\": 0.6954058408737183, \"Y\": 0.509116530418396}, {\"X\": 0.7406206727027893, \"Y\": 0.5147802233695984}, {\"X\": 0.7380601167678833, \"Y\": 0.5249883532524109}, {\"X\": 0.6928452849388123, \"Y\": 0.5193247199058533}]}, \"Id\": \"3bc75f74-6066-49e2-b91f-e104624f4411\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4590072631836, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04106907919049263, \"Height\": 0.014652860350906849, \"Left\": 0.7430807948112488, \"Top\": 0.5157271027565002}, \"Polygon\": [{\"X\": 0.7455432415008545, \"Y\": 0.5157271027565002}, {\"X\": 0.7841498851776123, \"Y\": 0.520563006401062}, {\"X\": 0.7816874384880066, \"Y\": 0.5303799510002136}, {\"X\": 0.7430807948112488, \"Y\": 0.5255440473556519}]}, \"Id\": \"e8b509c4-73ed-4576-b8a2-8dacd83af016\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70208740234375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04842020943760872, \"Height\": 0.01585317589342594, \"Left\": 0.833888828754425, \"Top\": 0.5268027782440186}, \"Polygon\": [{\"X\": 0.8364236354827881, \"Y\": 0.5268027782440186}, {\"X\": 0.8823090195655823, \"Y\": 0.5325504541397095}, {\"X\": 0.8797742128372192, \"Y\": 0.5426559448242188}, {\"X\": 0.833888828754425, \"Y\": 0.5369082689285278}]}, \"Id\": \"0080c0ba-3480-4db3-849a-90cdfe2b14da\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9665298461914, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04067595303058624, \"Height\": 0.014863766729831696, \"Left\": 0.8845170736312866, \"Top\": 0.5331820845603943}, \"Polygon\": [{\"X\": 0.8870468735694885, \"Y\": 0.5331820845603943}, {\"X\": 0.9251930117607117, \"Y\": 0.5379603505134583}, {\"X\": 0.9226632118225098, \"Y\": 0.5480458736419678}, {\"X\": 0.8845170736312866, \"Y\": 0.5432676076889038}]}, \"Id\": \"5b8be844-1881-49b7-acf0-609a9f53facb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80039978027344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04758043214678764, \"Height\": 0.015857893973588943, \"Left\": 0.5468153357505798, \"Top\": 0.5087769627571106}, \"Polygon\": [{\"X\": 0.5493786334991455, \"Y\": 0.5087769627571106}, {\"X\": 0.5943957567214966, \"Y\": 0.5144158601760864}, {\"X\": 0.5918325185775757, \"Y\": 0.5246348977088928}, {\"X\": 0.5468153357505798, \"Y\": 0.5189959406852722}]}, \"Id\": \"d03e3f18-14a1-424e-aebb-f5ab457e7ec3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55921936035156, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04068680480122566, \"Height\": 0.014675235375761986, \"Left\": 0.596723198890686, \"Top\": 0.5152259469032288}, \"Polygon\": [{\"X\": 0.5992038249969482, \"Y\": 0.5152259469032288}, {\"X\": 0.637410044670105, \"Y\": 0.5200116634368896}, {\"X\": 0.6349294185638428, \"Y\": 0.5299011468887329}, {\"X\": 0.596723198890686, \"Y\": 0.525115430355072}]}, \"Id\": \"7fbf501d-1430-42e0-8639-88930af74202\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8008041381836, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04779352992773056, \"Height\": 0.01580910012125969, \"Left\": 0.688437819480896, \"Top\": 0.5264736413955688}, \"Polygon\": [{\"X\": 0.6909815073013306, \"Y\": 0.5264736413955688}, {\"X\": 0.7362313270568848, \"Y\": 0.5321416854858398}, {\"X\": 0.7336875796318054, \"Y\": 0.54228276014328}, {\"X\": 0.688437819480896, \"Y\": 0.536614716053009}]}, \"Id\": \"c5a5be76-687a-4c7e-acf0-b338f583539a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46292877197266, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04152408242225647, \"Height\": 0.014911605976521969, \"Left\": 0.7384066581726074, \"Top\": 0.5329229235649109}, \"Polygon\": [{\"X\": 0.7409213185310364, \"Y\": 0.5329229235649109}, {\"X\": 0.7799307703971863, \"Y\": 0.5378092527389526}, {\"X\": 0.7774160504341125, \"Y\": 0.5478345155715942}, {\"X\": 0.7384066581726074, \"Y\": 0.5429481267929077}]}, \"Id\": \"f7cbf79b-d5c4-419f-b3a6-a02d6a5a50c2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80081176757812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048055876046419144, \"Height\": 0.015764979645609856, \"Left\": 0.8298013210296631, \"Top\": 0.5441957712173462}, \"Polygon\": [{\"X\": 0.8323251008987427, \"Y\": 0.5441957712173462}, {\"X\": 0.8778572082519531, \"Y\": 0.549899160861969}, {\"X\": 0.8753333687782288, \"Y\": 0.5599607229232788}, {\"X\": 0.8298013210296631, \"Y\": 0.554257333278656}]}, \"Id\": \"d39fae76-79c9-4d55-8494-494bdc416796\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1235580444336, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040817536413669586, \"Height\": 0.014839603565633297, \"Left\": 0.8801218867301941, \"Top\": 0.5504868030548096}, \"Polygon\": [{\"X\": 0.8826408386230469, \"Y\": 0.5504868030548096}, {\"X\": 0.9209394454956055, \"Y\": 0.5552841424942017}, {\"X\": 0.9184204936027527, \"Y\": 0.565326452255249}, {\"X\": 0.8801218867301941, \"Y\": 0.5605291128158569}]}, \"Id\": \"58efe32e-8453-43b9-b398-7a97d7126322\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79755401611328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047742195427417755, \"Height\": 0.015818243846297264, \"Left\": 0.5422911643981934, \"Top\": 0.5263026356697083}, \"Polygon\": [{\"X\": 0.5448389053344727, \"Y\": 0.5263026356697083}, {\"X\": 0.5900333523750305, \"Y\": 0.5319637656211853}, {\"X\": 0.5874856114387512, \"Y\": 0.5421208739280701}, {\"X\": 0.5422911643981934, \"Y\": 0.536459743976593}]}, \"Id\": \"87177720-f368-4606-954d-cac2d16590ce\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4765853881836, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040292203426361084, \"Height\": 0.014689067378640175, \"Left\": 0.5928046703338623, \"Top\": 0.5327240228652954}, \"Polygon\": [{\"X\": 0.5953016877174377, \"Y\": 0.5327240228652954}, {\"X\": 0.6330968737602234, \"Y\": 0.5374583005905151}, {\"X\": 0.630599856376648, \"Y\": 0.5474131107330322}, {\"X\": 0.5928046703338623, \"Y\": 0.5426788330078125}]}, \"Id\": \"e0d711dd-fca0-4ed4-9d5b-731dfd262fd6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83036804199219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04759623855352402, \"Height\": 0.015756385400891304, \"Left\": 0.6844160556793213, \"Top\": 0.5439586043357849}, \"Polygon\": [{\"X\": 0.686952531337738, \"Y\": 0.5439586043357849}, {\"X\": 0.7320122718811035, \"Y\": 0.5496028065681458}, {\"X\": 0.7294757962226868, \"Y\": 0.5597149729728699}, {\"X\": 0.6844160556793213, \"Y\": 0.5540707111358643}]}, \"Id\": \"e51c196e-9799-4049-b36a-c9d6d3fdcddf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4325180053711, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04130299389362335, \"Height\": 0.01479473989456892, \"Left\": 0.7341633439064026, \"Top\": 0.5503734350204468}, \"Polygon\": [{\"X\": 0.7366549372673035, \"Y\": 0.5503734350204468}, {\"X\": 0.7754663228988647, \"Y\": 0.555234968662262}, {\"X\": 0.7729747295379639, \"Y\": 0.5651681423187256}, {\"X\": 0.7341633439064026, \"Y\": 0.5603066086769104}]}, \"Id\": \"c9ec11fa-d7b8-45e6-ac1c-0aecf4e47778\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73698425292969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04786444082856178, \"Height\": 0.015827951952815056, \"Left\": 0.8256996870040894, \"Top\": 0.5615752339363098}, \"Polygon\": [{\"X\": 0.828245997428894, \"Y\": 0.5615752339363098}, {\"X\": 0.8735641241073608, \"Y\": 0.5672518610954285}, {\"X\": 0.8710178136825562, \"Y\": 0.57740318775177}, {\"X\": 0.8256996870040894, \"Y\": 0.5717265605926514}]}, \"Id\": \"cbc82587-b3c9-4cb4-9122-c9bc48769087\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.06843566894531, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04074760153889656, \"Height\": 0.014790466986596584, \"Left\": 0.875996470451355, \"Top\": 0.5680408477783203}, \"Polygon\": [{\"X\": 0.8785049319267273, \"Y\": 0.5680408477783203}, {\"X\": 0.9167440533638, \"Y\": 0.5728307366371155}, {\"X\": 0.914235532283783, \"Y\": 0.5828313231468201}, {\"X\": 0.875996470451355, \"Y\": 0.5780414938926697}]}, \"Id\": \"28b2baa2-5686-4497-bd95-5f64ba0210f7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81378936767578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04797962307929993, \"Height\": 0.015924012288451195, \"Left\": 0.5377062559127808, \"Top\": 0.54361891746521}, \"Polygon\": [{\"X\": 0.5402737259864807, \"Y\": 0.54361891746521}, {\"X\": 0.5856859087944031, \"Y\": 0.5493072867393494}, {\"X\": 0.5831184387207031, \"Y\": 0.5595428943634033}, {\"X\": 0.5377062559127808, \"Y\": 0.5538545250892639}]}, \"Id\": \"c3a63baf-b684-47de-8564-0360ac6fdf85\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48074340820312, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04055487737059593, \"Height\": 0.014634431339800358, \"Left\": 0.5881671905517578, \"Top\": 0.5502082705497742}, \"Polygon\": [{\"X\": 0.5906415581703186, \"Y\": 0.5502082705497742}, {\"X\": 0.628722071647644, \"Y\": 0.5549782514572144}, {\"X\": 0.626247763633728, \"Y\": 0.564842700958252}, {\"X\": 0.5881671905517578, \"Y\": 0.560072660446167}]}, \"Id\": \"4760ec90-d617-4760-94b1-9a5fbcd3965f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79695129394531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047728776931762695, \"Height\": 0.01598326861858368, \"Left\": 0.6798875331878662, \"Top\": 0.5612499713897705}, \"Polygon\": [{\"X\": 0.6824784874916077, \"Y\": 0.5612499713897705}, {\"X\": 0.7276163101196289, \"Y\": 0.5669040083885193}, {\"X\": 0.7250253558158875, \"Y\": 0.5772332549095154}, {\"X\": 0.6798875331878662, \"Y\": 0.5715792179107666}]}, \"Id\": \"781436e5-2d4a-40a1-b25c-4e9b672fa798\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25306701660156, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040951333940029144, \"Height\": 0.014661711640655994, \"Left\": 0.730121910572052, \"Top\": 0.5679110884666443}, \"Polygon\": [{\"X\": 0.7325904369354248, \"Y\": 0.5679110884666443}, {\"X\": 0.7710732221603394, \"Y\": 0.5727314949035645}, {\"X\": 0.7686046957969666, \"Y\": 0.5825728178024292}, {\"X\": 0.730121910572052, \"Y\": 0.577752411365509}]}, \"Id\": \"f4f47b5c-5cdc-44c0-af73-bbd8eb125db2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65003204345703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04828541725873947, \"Height\": 0.015904385596513748, \"Left\": 0.8209677338600159, \"Top\": 0.5790095329284668}, \"Polygon\": [{\"X\": 0.8235201835632324, \"Y\": 0.5790095329284668}, {\"X\": 0.8692531585693359, \"Y\": 0.5847380757331848}, {\"X\": 0.8667007088661194, \"Y\": 0.594913899898529}, {\"X\": 0.8209677338600159, \"Y\": 0.589185357093811}]}, \"Id\": \"d321d227-8a8a-4cac-87bb-d562f5211382\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.15705871582031, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04029441624879837, \"Height\": 0.01470306608825922, \"Left\": 0.8717472553253174, \"Top\": 0.5854737162590027}, \"Polygon\": [{\"X\": 0.8742477893829346, \"Y\": 0.5854737162590027}, {\"X\": 0.9120416641235352, \"Y\": 0.5902078151702881}, {\"X\": 0.909541130065918, \"Y\": 0.6001767516136169}, {\"X\": 0.8717472553253174, \"Y\": 0.5954426527023315}]}, \"Id\": \"cae66f12-7136-4a3a-b3eb-e615d6ee82b4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8492202758789, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04742914065718651, \"Height\": 0.015825431793928146, \"Left\": 0.5338016152381897, \"Top\": 0.5609956979751587}, \"Polygon\": [{\"X\": 0.5363613963127136, \"Y\": 0.5609956979751587}, {\"X\": 0.5812307596206665, \"Y\": 0.5666160583496094}, {\"X\": 0.5786709785461426, \"Y\": 0.5768210887908936}, {\"X\": 0.5338016152381897, \"Y\": 0.5712007284164429}]}, \"Id\": \"3578939e-dcfd-48e0-8191-2c56cca707f5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35183715820312, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04103262349963188, \"Height\": 0.014909948222339153, \"Left\": 0.583548367023468, \"Top\": 0.5673402547836304}, \"Polygon\": [{\"X\": 0.5860785841941833, \"Y\": 0.5673402547836304}, {\"X\": 0.624580979347229, \"Y\": 0.5721631646156311}, {\"X\": 0.6220508217811584, \"Y\": 0.5822502374649048}, {\"X\": 0.583548367023468, \"Y\": 0.5774273872375488}]}, \"Id\": \"f4b23a80-348d-44f1-a46f-306d76df80a3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81835174560547, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047479864209890366, \"Height\": 0.015794051811099052, \"Left\": 0.6755119562149048, \"Top\": 0.5786596536636353}, \"Polygon\": [{\"X\": 0.6780619621276855, \"Y\": 0.5786596536636353}, {\"X\": 0.7229918241500854, \"Y\": 0.5842876434326172}, {\"X\": 0.7204418182373047, \"Y\": 0.5944536924362183}, {\"X\": 0.6755119562149048, \"Y\": 0.5888257026672363}]}, \"Id\": \"56d23b3c-ddbc-4137-8393-f68d8477fbad\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1738510131836, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04143722727894783, \"Height\": 0.015025596134364605, \"Left\": 0.7254968285560608, \"Top\": 0.5850687623023987}, \"Polygon\": [{\"X\": 0.728043794631958, \"Y\": 0.5850687623023987}, {\"X\": 0.7669340372085571, \"Y\": 0.5899401903152466}, {\"X\": 0.7643870115280151, \"Y\": 0.6000943779945374}, {\"X\": 0.7254968285560608, \"Y\": 0.5952228903770447}]}, \"Id\": \"d1ca5db2-4ff8-4b9c-be21-e6cfd2776417\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62664794921875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0480121374130249, \"Height\": 0.015922361984848976, \"Left\": 0.816906213760376, \"Top\": 0.5962925553321838}, \"Polygon\": [{\"X\": 0.8194721937179565, \"Y\": 0.5962925553321838}, {\"X\": 0.8649183511734009, \"Y\": 0.6019852161407471}, {\"X\": 0.8623523712158203, \"Y\": 0.6122149229049683}, {\"X\": 0.816906213760376, \"Y\": 0.6065223217010498}]}, \"Id\": \"41f121d6-9fed-4ffe-8bb8-8bc60bb5de30\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49121856689453, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040600307285785675, \"Height\": 0.014906077645719051, \"Left\": 0.8672931790351868, \"Top\": 0.6027430891990662}, \"Polygon\": [{\"X\": 0.8698363900184631, \"Y\": 0.6027430891990662}, {\"X\": 0.9078935384750366, \"Y\": 0.6075101494789124}, {\"X\": 0.9053503274917603, \"Y\": 0.6176491379737854}, {\"X\": 0.8672931790351868, \"Y\": 0.6128820776939392}]}, \"Id\": \"c52ab2e5-1d25-4eb6-83ff-676adb5fd208\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81107330322266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047817107290029526, \"Height\": 0.015977345407009125, \"Left\": 0.529481053352356, \"Top\": 0.5781894326210022}, \"Polygon\": [{\"X\": 0.532067596912384, \"Y\": 0.5781894326210022}, {\"X\": 0.5772981643676758, \"Y\": 0.5838550925254822}, {\"X\": 0.5747116208076477, \"Y\": 0.5941668152809143}, {\"X\": 0.529481053352356, \"Y\": 0.5885011553764343}]}, \"Id\": \"9d5db7b6-4723-495f-ba6c-48ce11476a00\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48517608642578, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040764860808849335, \"Height\": 0.014890313148498535, \"Left\": 0.5793270468711853, \"Top\": 0.5848821997642517}, \"Polygon\": [{\"X\": 0.5818608403205872, \"Y\": 0.5848821997642517}, {\"X\": 0.6200919151306152, \"Y\": 0.5896710753440857}, {\"X\": 0.6175581216812134, \"Y\": 0.5997725129127502}, {\"X\": 0.5793270468711853, \"Y\": 0.5949836373329163}]}, \"Id\": \"883dace5-208e-422c-8cdc-817fba6eac28\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86722564697266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04764453321695328, \"Height\": 0.015858467668294907, \"Left\": 0.6713664531707764, \"Top\": 0.5960526466369629}, \"Polygon\": [{\"X\": 0.6739278435707092, \"Y\": 0.5960526466369629}, {\"X\": 0.7190110087394714, \"Y\": 0.6016998291015625}, {\"X\": 0.7164496779441833, \"Y\": 0.6119111180305481}, {\"X\": 0.6713664531707764, \"Y\": 0.6062639355659485}]}, \"Id\": \"6611de71-6ca9-49b7-8bfc-44f82ba84803\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46971893310547, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04087069258093834, \"Height\": 0.014779011718928814, \"Left\": 0.7216222286224365, \"Top\": 0.6026284694671631}, \"Polygon\": [{\"X\": 0.7241237759590149, \"Y\": 0.6026284694671631}, {\"X\": 0.7624928951263428, \"Y\": 0.6074346303939819}, {\"X\": 0.7599913477897644, \"Y\": 0.6174074411392212}, {\"X\": 0.7216222286224365, \"Y\": 0.6126012802124023}]}, \"Id\": \"16897551-8ff7-4134-9dcb-8591b0b9466b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64592742919922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04764747992157936, \"Height\": 0.015829117968678474, \"Left\": 0.8130645751953125, \"Top\": 0.6137460470199585}, \"Polygon\": [{\"X\": 0.8156182169914246, \"Y\": 0.6137460470199585}, {\"X\": 0.8607120513916016, \"Y\": 0.6193946003913879}, {\"X\": 0.8581584095954895, \"Y\": 0.6295751929283142}, {\"X\": 0.8130645751953125, \"Y\": 0.6239266991615295}]}, \"Id\": \"8393daae-18be-4950-992d-40bec24deeb8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1961441040039, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040588945150375366, \"Height\": 0.014629736542701721, \"Left\": 0.8631042242050171, \"Top\": 0.620345413684845}, \"Polygon\": [{\"X\": 0.8655762672424316, \"Y\": 0.620345413684845}, {\"X\": 0.9036931991577148, \"Y\": 0.6251199841499329}, {\"X\": 0.9012211561203003, \"Y\": 0.6349751353263855}, {\"X\": 0.8631042242050171, \"Y\": 0.6302005648612976}]}, \"Id\": \"02fdbeca-bc6d-4ea4-a841-a54425cc4d51\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33943939208984, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03590479865670204, \"Height\": 0.014667363837361336, \"Left\": 0.10834088921546936, \"Top\": 0.5410118699073792}, \"Polygon\": [{\"X\": 0.11097460240125656, \"Y\": 0.5410118699073792}, {\"X\": 0.1442456841468811, \"Y\": 0.5451794266700745}, {\"X\": 0.1416119784116745, \"Y\": 0.555679202079773}, {\"X\": 0.10834088921546936, \"Y\": 0.5515116453170776}]}, \"Id\": \"3680bb00-3648-4492-b94c-e33bdb9c9dcd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97491455078125, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06837577372789383, \"Height\": 0.01931191422045231, \"Left\": 0.14579938352108002, \"Top\": 0.5451492071151733}, \"Polygon\": [{\"X\": 0.1485825777053833, \"Y\": 0.5451492071151733}, {\"X\": 0.21417516469955444, \"Y\": 0.5533654093742371}, {\"X\": 0.21139197051525116, \"Y\": 0.5644611120223999}, {\"X\": 0.14579938352108002, \"Y\": 0.5562449097633362}]}, \"Id\": \"1494d536-e191-4306-ae29-7be15f728013\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63927459716797, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0322209931910038, \"Height\": 0.014208860695362091, \"Left\": 0.10364583879709244, \"Top\": 0.5569207668304443}, \"Polygon\": [{\"X\": 0.10628031194210052, \"Y\": 0.5569207668304443}, {\"X\": 0.13586683571338654, \"Y\": 0.5606268048286438}, {\"X\": 0.13323237001895905, \"Y\": 0.5711296200752258}, {\"X\": 0.10364583879709244, \"Y\": 0.5674235820770264}]}, \"Id\": \"63845ab6-7341-4e06-a9e3-743da4e57b38\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92044830322266, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10121864080429077, \"Height\": 0.022745883092284203, \"Left\": 0.137601837515831, \"Top\": 0.561017632484436}, \"Polygon\": [{\"X\": 0.14020892977714539, \"Y\": 0.561017632484436}, {\"X\": 0.23882047832012177, \"Y\": 0.5733698606491089}, {\"X\": 0.23621338605880737, \"Y\": 0.5837635397911072}, {\"X\": 0.137601837515831, \"Y\": 0.5714113116264343}]}, \"Id\": \"4eb8e308-1afd-436d-b471-adf6e8f09bef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.3924560546875, \"Text\": \"Hello\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022608155384659767, \"Height\": 0.0067900423891842365, \"Left\": 0.6550418138504028, \"Top\": 0.7396047711372375}, \"Polygon\": [{\"X\": 0.6560668349266052, \"Y\": 0.7396047711372375}, {\"X\": 0.677649974822998, \"Y\": 0.7423083186149597}, {\"X\": 0.6766249537467957, \"Y\": 0.7463948130607605}, {\"X\": 0.6550418138504028, \"Y\": 0.7436912655830383}]}, \"Id\": \"448a9045-d300-4d48-ac09-48fad9a77e84\"}, {\"BlockType\": \"WORD\", \"Confidence\": 92.17173767089844, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02260156162083149, \"Height\": 0.00684511149302125, \"Left\": 0.6797266602516174, \"Top\": 0.742719829082489}, \"Polygon\": [{\"X\": 0.6807661652565002, \"Y\": 0.742719829082489}, {\"X\": 0.7023282051086426, \"Y\": 0.7454206943511963}, {\"X\": 0.7012887001037598, \"Y\": 0.7495649456977844}, {\"X\": 0.6797266602516174, \"Y\": 0.7468640208244324}]}, \"Id\": \"75eab274-9de3-488a-b5c5-e7dda1b1022c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.56391906738281, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029648790135979652, \"Height\": 0.007453929167240858, \"Left\": 0.7127695083618164, \"Top\": 0.7471539974212646}, \"Polygon\": [{\"X\": 0.7137380838394165, \"Y\": 0.7471539974212646}, {\"X\": 0.7424182891845703, \"Y\": 0.7507465481758118}, {\"X\": 0.7414497137069702, \"Y\": 0.7546079158782959}, {\"X\": 0.7127695083618164, \"Y\": 0.7510154247283936}]}, \"Id\": \"59234a49-4313-46ba-b5fa-b054c0cc8546\"}, {\"BlockType\": \"WORD\", \"Confidence\": 72.26459503173828, \"Text\": \"here!\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02208072319626808, \"Height\": 0.006604223512113094, \"Left\": 0.7445138692855835, \"Top\": 0.7509880661964417}, \"Polygon\": [{\"X\": 0.7455078959465027, \"Y\": 0.7509880661964417}, {\"X\": 0.7665945887565613, \"Y\": 0.7536294460296631}, {\"X\": 0.7656005620956421, \"Y\": 0.7575923204421997}, {\"X\": 0.7445138692855835, \"Y\": 0.754951000213623}]}, \"Id\": \"a3f916a5-ad4f-493a-8a11-871d74e19b39\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.97379302978516, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.4623492658138275, \"Height\": 0.19360685348510742, \"Left\": 0.5189626812934875, \"Top\": 0.45146259665489197}, \"Polygon\": [{\"X\": 0.5541031956672668, \"Y\": 0.45146259665489197}, {\"X\": 0.9813119769096375, \"Y\": 0.5049753189086914}, {\"X\": 0.9461715221405029, \"Y\": 0.645069420337677}, {\"X\": 0.5189626812934875, \"Y\": 0.5915567278862}]}, \"Id\": \"217beccf-eea0-4977-ab7a-8188410fd5d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f5b3849-40d2-4b1d-8a7f-52238b9685d8\", \"801afdb0-477d-4eae-be0c-8211c6c54083\", \"032d0a81-b072-4779-82cf-0d3d15da75da\", \"f5cd6f55-5b51-4d81-9497-a06bd4d1980b\", \"ec1cdc21-adff-401a-bdb2-e24c0b8898ef\", \"eb561bbd-4028-48bf-9f15-e4e0967c6f8d\", \"8dfbf50f-7d31-437d-8b56-0d676d87cf1e\", \"9249ef9a-6d52-4bb9-a09c-c04cceb512a1\", \"af9a439a-a3da-473b-b885-992fa6631fdf\", \"1035035c-7d68-4190-a9d7-5ea391ec380c\", \"1f1a544f-f071-40e1-93fb-a0f419c4e6a1\", \"bc3718fa-31da-474e-adfc-e32315bb024a\", \"564313e8-c4e8-46ed-aaa4-4417b530ce4f\", \"2df0fad1-11e7-4198-9fbb-7bc291ec1e42\", \"4e11648d-9156-4580-9808-700551cad7af\", \"4dee46b2-7f28-49cd-b1ed-e78a03d61424\", \"6a691026-3ae6-4b9c-a709-c4bba0575996\", \"5c8bd686-da3b-41cb-9fe7-7d4f335d86db\", \"1cbf551b-4c32-4a1b-97b0-0c034f38f3f5\", \"30769156-b013-47f3-afb0-2720312ecdd5\", \"316be108-d47e-42be-a025-4bed27bab88f\", \"fca419c8-f18b-4ed9-8d72-c2d1606d2db4\", \"d25cf395-7e5f-467e-bbb8-1cb7328a5302\", \"91710e17-f017-40d6-a2d7-4bced296c3dc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.146075040102005, \"Height\": 0.03544143959879875, \"Left\": 0.5496633648872375, \"Top\": 0.4514625668525696}, \"Polygon\": [{\"X\": 0.5541031360626221, \"Y\": 0.4514625668525696}, {\"X\": 0.6957384347915649, \"Y\": 0.46920397877693176}, {\"X\": 0.6912986040115356, \"Y\": 0.4869040250778198}, {\"X\": 0.5496633648872375, \"Y\": 0.46916261315345764}]}, \"Id\": \"0f5b3849-40d2-4b1d-8a7f-52238b9685d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c45b7b7d-94ff-4350-8ace-0a9d077aa0da\", \"4f0cfb9f-a58f-4713-9616-e83e5b516d55\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837802946567535, \"Height\": 0.03572991117835045, \"Left\": 0.6912986636161804, \"Top\": 0.46920400857925415}, \"Polygon\": [{\"X\": 0.6957384943962097, \"Y\": 0.46920400857925415}, {\"X\": 0.8396767377853394, \"Y\": 0.48723387718200684}, {\"X\": 0.8352369666099548, \"Y\": 0.5049338936805725}, {\"X\": 0.6912986636161804, \"Y\": 0.4869040250778198}]}, \"Id\": \"801afdb0-477d-4eae-be0c-8211c6c54083\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"22aaf51d-b8b6-4410-a7aa-e269e2117f93\", \"c5d32bc4-2e26-430c-aa29-9ba699e58331\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.146075040102005, \"Height\": 0.03544143959879875, \"Left\": 0.8352369070053101, \"Top\": 0.48723387718200684}, \"Polygon\": [{\"X\": 0.8396766781806946, \"Y\": 0.48723387718200684}, {\"X\": 0.9813119173049927, \"Y\": 0.5049752593040466}, {\"X\": 0.9768721461296082, \"Y\": 0.5226753354072571}, {\"X\": 0.8352369070053101, \"Y\": 0.5049338936805725}]}, \"Id\": \"032d0a81-b072-4779-82cf-0d3d15da75da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e1449ebd-8f70-46cf-ab69-fa9ae3878c8d\", \"3423035e-a75e-4e16-a879-4e12e20a4642\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.5454124808311462, \"Top\": 0.46916264295578003}, \"Polygon\": [{\"X\": 0.5496633648872375, \"Y\": 0.46916264295578003}, {\"X\": 0.6912986040115356, \"Y\": 0.4869040548801422}, {\"X\": 0.6870477795600891, \"Y\": 0.5038509368896484}, {\"X\": 0.5454124808311462, \"Y\": 0.48610952496528625}]}, \"Id\": \"f5cd6f55-5b51-4d81-9497-a06bd4d1980b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f3dba9ac-01c6-4f4f-86c0-0ef3f880af33\", \"4817c356-09b5-4d64-b361-a711d62add8d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14818911254405975, \"Height\": 0.0349767692387104, \"Left\": 0.6870477795600891, \"Top\": 0.4869040846824646}, \"Polygon\": [{\"X\": 0.6912986636161804, \"Y\": 0.4869040846824646}, {\"X\": 0.8352369070053101, \"Y\": 0.5049339532852173}, {\"X\": 0.8309860825538635, \"Y\": 0.5218808650970459}, {\"X\": 0.6870477795600891, \"Y\": 0.5038509368896484}]}, \"Id\": \"ec1cdc21-adff-401a-bdb2-e24c0b8898ef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"460acbec-b1d6-4914-8560-1cfbbdcd1c5a\", \"6ae6360d-590c-44a6-91f9-c540aeb08369\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.8309860229492188, \"Top\": 0.5049339532852173}, \"Polygon\": [{\"X\": 0.8352369070053101, \"Y\": 0.5049339532852173}, {\"X\": 0.9768721461296082, \"Y\": 0.5226753354072571}, {\"X\": 0.9726212620735168, \"Y\": 0.5396222472190857}, {\"X\": 0.8309860229492188, \"Y\": 0.5218808650970459}]}, \"Id\": \"eb561bbd-4028-48bf-9f15-e4e0967c6f8d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28ba139d-990e-4c09-9122-3e18f804529e\", \"5f610ccb-5641-40b6-9ba7-e4b14826b5e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1462639719247818, \"Height\": 0.036194659769535065, \"Left\": 0.5407837629318237, \"Top\": 0.48610949516296387}, \"Polygon\": [{\"X\": 0.5454124808311462, \"Y\": 0.48610949516296387}, {\"X\": 0.6870477795600891, \"Y\": 0.5038508772850037}, {\"X\": 0.6824190616607666, \"Y\": 0.5223041772842407}, {\"X\": 0.5407837629318237, \"Y\": 0.5045627355575562}]}, \"Id\": \"8dfbf50f-7d31-437d-8b56-0d676d87cf1e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"41e75b03-8ba4-4d7d-bea6-1a2d35b10163\", \"dd7a9e49-cec9-4448-acd2-a8d0318aa86e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14856696128845215, \"Height\": 0.03648313507437706, \"Left\": 0.6824191212654114, \"Top\": 0.5038509368896484}, \"Polygon\": [{\"X\": 0.6870478391647339, \"Y\": 0.5038509368896484}, {\"X\": 0.8309860825538635, \"Y\": 0.5218808054924011}, {\"X\": 0.826357364654541, \"Y\": 0.5403340458869934}, {\"X\": 0.6824191212654114, \"Y\": 0.5223041772842407}]}, \"Id\": \"9249ef9a-6d52-4bb9-a09c-c04cceb512a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3bc75f74-6066-49e2-b91f-e104624f4411\", \"e8b509c4-73ed-4576-b8a2-8dacd83af016\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1462639719247818, \"Height\": 0.036194659769535065, \"Left\": 0.8263573050498962, \"Top\": 0.5218808054924011}, \"Polygon\": [{\"X\": 0.8309860229492188, \"Y\": 0.5218808054924011}, {\"X\": 0.9726213216781616, \"Y\": 0.5396221876144409}, {\"X\": 0.9679926037788391, \"Y\": 0.5580754280090332}, {\"X\": 0.8263573050498962, \"Y\": 0.5403340458869934}]}, \"Id\": \"af9a439a-a3da-473b-b885-992fa6631fdf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0080c0ba-3480-4db3-849a-90cdfe2b14da\", \"5b8be844-1881-49b7-acf0-609a9f53facb\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.5365329384803772, \"Top\": 0.5045627355575562}, \"Polygon\": [{\"X\": 0.5407837629318237, \"Y\": 0.5045627355575562}, {\"X\": 0.6824190616607666, \"Y\": 0.5223041772842407}, {\"X\": 0.6781681776046753, \"Y\": 0.5392510294914246}, {\"X\": 0.5365329384803772, \"Y\": 0.5215096473693848}]}, \"Id\": \"1035035c-7d68-4190-a9d7-5ea391ec380c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d03e3f18-14a1-424e-aebb-f5ab457e7ec3\", \"7fbf501d-1430-42e0-8639-88930af74202\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14818911254405975, \"Height\": 0.034976765513420105, \"Left\": 0.6781682372093201, \"Top\": 0.5223041772842407}, \"Polygon\": [{\"X\": 0.6824191212654114, \"Y\": 0.5223041772842407}, {\"X\": 0.826357364654541, \"Y\": 0.5403340458869934}, {\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}, {\"X\": 0.6781682372093201, \"Y\": 0.5392510294914246}]}, \"Id\": \"1f1a544f-f071-40e1-93fb-a0f419c4e6a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c5a5be76-687a-4c7e-acf0-b338f583539a\", \"f7cbf79b-d5c4-419f-b3a6-a02d6a5a50c2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.8221064805984497, \"Top\": 0.5403340458869934}, \"Polygon\": [{\"X\": 0.8263573050498962, \"Y\": 0.5403340458869934}, {\"X\": 0.9679926037788391, \"Y\": 0.5580754280090332}, {\"X\": 0.9637417197227478, \"Y\": 0.5750223398208618}, {\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}]}, \"Id\": \"bc3718fa-31da-474e-adfc-e32315bb024a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d39fae76-79c9-4d55-8494-494bdc416796\", \"58efe32e-8453-43b9-b398-7a97d7126322\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.5320931077003479, \"Top\": 0.5215096473693848}, \"Polygon\": [{\"X\": 0.5365329384803772, \"Y\": 0.5215096473693848}, {\"X\": 0.6781681776046753, \"Y\": 0.5392510294914246}, {\"X\": 0.6737284064292908, \"Y\": 0.556951105594635}, {\"X\": 0.5320931077003479, \"Y\": 0.5392097234725952}]}, \"Id\": \"564313e8-c4e8-46ed-aaa4-4417b530ce4f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"87177720-f368-4606-954d-cac2d16590ce\", \"e0d711dd-fca0-4ed4-9d5b-731dfd262fd6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837804436683655, \"Height\": 0.03572995215654373, \"Left\": 0.6737284660339355, \"Top\": 0.5392510294914246}, \"Polygon\": [{\"X\": 0.6781682372093201, \"Y\": 0.5392510294914246}, {\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}, {\"X\": 0.8176667094230652, \"Y\": 0.5749810338020325}, {\"X\": 0.6737284660339355, \"Y\": 0.556951105594635}]}, \"Id\": \"2df0fad1-11e7-4198-9fbb-7bc291ec1e42\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e51c196e-9799-4049-b36a-c9d6d3fdcddf\", \"c9ec11fa-d7b8-45e6-ac1c-0aecf4e47778\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.8176666498184204, \"Top\": 0.557280957698822}, \"Polygon\": [{\"X\": 0.8221064805984497, \"Y\": 0.557280957698822}, {\"X\": 0.9637417197227478, \"Y\": 0.5750223398208618}, {\"X\": 0.9593019485473633, \"Y\": 0.5927224159240723}, {\"X\": 0.8176666498184204, \"Y\": 0.5749810338020325}]}, \"Id\": \"4e11648d-9156-4580-9808-700551cad7af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cbc82587-b3c9-4cb4-9122-c9bc48769087\", \"28b2baa2-5686-4497-bd95-5f64ba0210f7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.5278422832489014, \"Top\": 0.5392097234725952}, \"Polygon\": [{\"X\": 0.5320931077003479, \"Y\": 0.5392097234725952}, {\"X\": 0.6737284064292908, \"Y\": 0.556951105594635}, {\"X\": 0.6694775223731995, \"Y\": 0.5738980174064636}, {\"X\": 0.5278422832489014, \"Y\": 0.556156575679779}]}, \"Id\": \"4dee46b2-7f28-49cd-b1ed-e78a03d61424\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3a63baf-b684-47de-8564-0360ac6fdf85\", \"4760ec90-d617-4760-94b1-9a5fbcd3965f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14818911254405975, \"Height\": 0.034976765513420105, \"Left\": 0.6694775819778442, \"Top\": 0.556951105594635}, \"Polygon\": [{\"X\": 0.6737284660339355, \"Y\": 0.556951105594635}, {\"X\": 0.8176667094230652, \"Y\": 0.5749810338020325}, {\"X\": 0.8134158253669739, \"Y\": 0.5919278860092163}, {\"X\": 0.6694775819778442, \"Y\": 0.5738980174064636}]}, \"Id\": \"6a691026-3ae6-4b9c-a709-c4bba0575996\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"781436e5-2d4a-40a1-b25c-4e9b672fa798\", \"f4f47b5c-5cdc-44c0-af73-bbd8eb125db2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1458861231803894, \"Height\": 0.03468829393386841, \"Left\": 0.8134158253669739, \"Top\": 0.5749810338020325}, \"Polygon\": [{\"X\": 0.8176666498184204, \"Y\": 0.5749810338020325}, {\"X\": 0.9593019485473633, \"Y\": 0.5927224159240723}, {\"X\": 0.955051064491272, \"Y\": 0.6096693277359009}, {\"X\": 0.8134158253669739, \"Y\": 0.5919278860092163}]}, \"Id\": \"5c8bd686-da3b-41cb-9fe7-7d4f335d86db\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d321d227-8a8a-4cac-87bb-d562f5211382\", \"cae66f12-7136-4a3a-b3eb-e615d6ee82b4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.5234024524688721, \"Top\": 0.5561566352844238}, \"Polygon\": [{\"X\": 0.5278422832489014, \"Y\": 0.5561566352844238}, {\"X\": 0.6694775223731995, \"Y\": 0.5738980174064636}, {\"X\": 0.6650377511978149, \"Y\": 0.5915980935096741}, {\"X\": 0.5234024524688721, \"Y\": 0.5738566517829895}]}, \"Id\": \"1cbf551b-4c32-4a1b-97b0-0c034f38f3f5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3578939e-dcfd-48e0-8191-2c56cca707f5\", \"f4b23a80-348d-44f1-a46f-306d76df80a3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837804436683655, \"Height\": 0.03572995215654373, \"Left\": 0.6650378108024597, \"Top\": 0.5738980174064636}, \"Polygon\": [{\"X\": 0.6694775819778442, \"Y\": 0.5738980174064636}, {\"X\": 0.8134158253669739, \"Y\": 0.5919278860092163}, {\"X\": 0.8089760541915894, \"Y\": 0.6096279621124268}, {\"X\": 0.6650378108024597, \"Y\": 0.5915980935096741}]}, \"Id\": \"30769156-b013-47f3-afb0-2720312ecdd5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"56d23b3c-ddbc-4137-8393-f68d8477fbad\", \"d1ca5db2-4ff8-4b9c-be21-e6cfd2776417\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.8089759945869446, \"Top\": 0.5919278860092163}, \"Polygon\": [{\"X\": 0.8134157657623291, \"Y\": 0.5919278860092163}, {\"X\": 0.955051064491272, \"Y\": 0.6096693277359009}, {\"X\": 0.9506112933158875, \"Y\": 0.6273694038391113}, {\"X\": 0.8089759945869446, \"Y\": 0.6096279621124268}]}, \"Id\": \"316be108-d47e-42be-a025-4bed27bab88f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"41f121d6-9fed-4ffe-8bb8-8bc60bb5de30\", \"c52ab2e5-1d25-4eb6-83ff-676adb5fd208\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.5189626812934875, \"Top\": 0.5738567113876343}, \"Polygon\": [{\"X\": 0.5234024524688721, \"Y\": 0.5738567113876343}, {\"X\": 0.6650377511978149, \"Y\": 0.5915980935096741}, {\"X\": 0.6605979204177856, \"Y\": 0.6092981696128845}, {\"X\": 0.5189626812934875, \"Y\": 0.5915567278862}]}, \"Id\": \"fca419c8-f18b-4ed9-8d72-c2d1606d2db4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9d5db7b6-4723-495f-ba6c-48ce11476a00\", \"883dace5-208e-422c-8cdc-817fba6eac28\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14837804436683655, \"Height\": 0.03572995215654373, \"Left\": 0.6605979800224304, \"Top\": 0.5915980935096741}, \"Polygon\": [{\"X\": 0.6650378108024597, \"Y\": 0.5915980935096741}, {\"X\": 0.8089760541915894, \"Y\": 0.6096279621124268}, {\"X\": 0.8045362234115601, \"Y\": 0.6273280382156372}, {\"X\": 0.6605979800224304, \"Y\": 0.6092981696128845}]}, \"Id\": \"d25cf395-7e5f-467e-bbb8-1cb7328a5302\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6611de71-6ca9-49b7-8bfc-44f82ba84803\", \"16897551-8ff7-4134-9dcb-8591b0b9466b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.97379302978516, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1460750550031662, \"Height\": 0.035441476851701736, \"Left\": 0.8045362234115601, \"Top\": 0.6096279621124268}, \"Polygon\": [{\"X\": 0.8089759945869446, \"Y\": 0.6096279621124268}, {\"X\": 0.9506112933158875, \"Y\": 0.6273694038391113}, {\"X\": 0.9461714625358582, \"Y\": 0.6450694799423218}, {\"X\": 0.8045362234115601, \"Y\": 0.6273280382156372}]}, \"Id\": \"91710e17-f017-40d6-a2d7-4bced296c3dc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8393daae-18be-4950-992d-40bec24deeb8\", \"02fdbeca-bc6d-4ea4-a841-a54425cc4d51\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.86642456054688, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5765056014060974, \"Height\": 0.1723639816045761, \"Left\": 0.4234943985939026, \"Top\": 0.2601539194583893}, \"Polygon\": [{\"X\": 0.44903403520584106, \"Y\": 0.2601539194583893}, {\"X\": 1.0, \"Y\": 0.33069929480552673}, {\"X\": 0.986680269241333, \"Y\": 0.4325178861618042}, {\"X\": 0.4234943985939026, \"Y\": 0.36197251081466675}]}, \"Id\": \"1f922a3e-6ccf-4e96-aea1-7fd449b4f1ed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f801ccf-99ed-490c-af60-06a652e4d9d5\", \"30cd7b11-1691-4fee-8fa4-d16339959f52\", \"72b2b12f-a064-4a26-a026-6c325bb128dd\", \"004e4ef8-eb3c-4aa1-b5f3-40f1eb220157\", \"ae8ef11b-64c2-4040-a9e6-b2fc9ce95be0\", \"2f070674-176f-407f-9b98-2525b6f547c6\", \"639baf47-89d8-425b-9921-d49383975901\", \"b102644b-9bec-4b3d-a50c-a3c1ee33b63b\", \"71ff004d-89e7-4866-a66e-98c1af602d41\", \"09f797a7-fa67-461a-b166-62127fd463fb\", \"2d375633-5531-4dea-ab73-8c272db7700b\", \"89b6aed0-a5c1-4456-8928-3c4b0bdd7fc6\", \"57fa5d80-254b-40d5-8c82-c836094c170e\", \"8a436f9e-2ca6-4f0b-801c-13119fde269c\", \"bcb0094b-e905-4221-ae54-12b83b86d28c\", \"904e6cb7-6bd6-4404-abd9-bc837f5bdc92\", \"f626db10-ceae-460b-ab33-8e22f6f1f09c\", \"ed87ce13-4def-46b2-b263-8acf04a94ed1\", \"3da8e4b2-8db2-4a81-895c-21ed4fecaf88\", \"2bd5d961-4832-4c7a-b372-22b8dd7d4590\", \"b9c1dca2-12cc-4ca7-a0e5-d90dd15a6a88\", \"38c52248-8521-43ac-8314-869aa1817ad0\", \"d48b8555-2944-47ca-a001-08dbbbabd2c5\", \"3c24bf37-a689-445d-aee3-83ac3c0b1d0a\", \"d477db54-836c-4d4d-baa2-a2f71cfcd71f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887075543403625, \"Height\": 0.036120105534791946, \"Left\": 0.44386038184165955, \"Top\": 0.2601539194583893}, \"Polygon\": [{\"X\": 0.4490340054035187, \"Y\": 0.2601539194583893}, {\"X\": 0.5727311372756958, \"Y\": 0.2756483554840088}, {\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}, {\"X\": 0.44386038184165955, \"Y\": 0.28077957034111023}]}, \"Id\": \"1f801ccf-99ed-490c-af60-06a652e4d9d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3378eebc-9606-4c6b-9e72-7e2beca631e8\", \"d0049a68-1cd9-4dde-97fa-d516befbab79\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596027553081512, \"Height\": 0.03575553745031357, \"Left\": 0.5675575137138367, \"Top\": 0.2756483554840088}, \"Polygon\": [{\"X\": 0.5727311372756958, \"Y\": 0.2756483554840088}, {\"X\": 0.693517804145813, \"Y\": 0.290778249502182}, {\"X\": 0.6883441805839539, \"Y\": 0.31140390038490295}, {\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}]}, \"Id\": \"30cd7b11-1691-4fee-8fa4-d16339959f52\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8657eef7-e7f8-4477-a7fd-17caa3a9c7ba\", \"52f0d084-7010-4244-aa38-096afad11710\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596023082733154, \"Height\": 0.03575552999973297, \"Left\": 0.6883442401885986, \"Top\": 0.290778249502182}, \"Polygon\": [{\"X\": 0.6935178637504578, \"Y\": 0.290778249502182}, {\"X\": 0.8143044114112854, \"Y\": 0.3059081435203552}, {\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}, {\"X\": 0.6883442401885986, \"Y\": 0.31140390038490295}]}, \"Id\": \"72b2b12f-a064-4a26-a026-6c325bb128dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b9c523a8-97b9-4c82-97d2-db92bb4e327d\", \"087e3f6b-5919-4c48-b255-d72d5640a229\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887082993984222, \"Height\": 0.03612011671066284, \"Left\": 0.8091307878494263, \"Top\": 0.3059081435203552}, \"Polygon\": [{\"X\": 0.8143044114112854, \"Y\": 0.3059081435203552}, {\"X\": 0.9380015730857849, \"Y\": 0.3214026093482971}, {\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}, {\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}]}, \"Id\": \"004e4ef8-eb3c-4aa1-b5f3-40f1eb220157\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4ecc938d-1a51-4dbd-a4e0-425a9874a620\", \"a825c589-3ddd-457c-9dd3-51164b238a52\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06717203557491302, \"Height\": 0.029922325164079666, \"Left\": 0.9328279495239258, \"Top\": 0.3214026093482971}, \"Polygon\": [{\"X\": 0.9380015730857849, \"Y\": 0.3214026093482971}, {\"X\": 1.0, \"Y\": 0.33069929480552673}, {\"X\": 1.0, \"Y\": 0.3513249158859253}, {\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}]}, \"Id\": \"ae8ef11b-64c2-4040-a9e6-b2fc9ce95be0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74019ac8-e2cf-4633-a0da-982701b13ac5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887074053287506, \"Height\": 0.036120086908340454, \"Left\": 0.4386867582798004, \"Top\": 0.28077957034111023}, \"Polygon\": [{\"X\": 0.44386038184165955, \"Y\": 0.28077957034111023}, {\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}, {\"X\": 0.5623838901519775, \"Y\": 0.3168996572494507}, {\"X\": 0.4386867582798004, \"Y\": 0.3014051914215088}]}, \"Id\": \"2f070674-176f-407f-9b98-2525b6f547c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8432cdd6-58c9-41e1-a8a1-8895b2e952da\", \"e25fa57e-503c-4616-a9d2-f830d6e56f99\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596027553081512, \"Height\": 0.035755518823862076, \"Left\": 0.5623838901519775, \"Top\": 0.29627400636672974}, \"Polygon\": [{\"X\": 0.5675575137138367, \"Y\": 0.29627400636672974}, {\"X\": 0.6883441805839539, \"Y\": 0.31140390038490295}, {\"X\": 0.6831705570220947, \"Y\": 0.3320295512676239}, {\"X\": 0.5623838901519775, \"Y\": 0.3168996572494507}]}, \"Id\": \"639baf47-89d8-425b-9921-d49383975901\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca95d711-ece4-43ee-9852-74975a4f9133\", \"afaaceef-1d7d-4dbe-9db4-3b3dddf90be7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596021592617035, \"Height\": 0.03575551137328148, \"Left\": 0.6831706166267395, \"Top\": 0.31140390038490295}, \"Polygon\": [{\"X\": 0.6883442401885986, \"Y\": 0.31140390038490295}, {\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}, {\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}, {\"X\": 0.6831706166267395, \"Y\": 0.3320295512676239}]}, \"Id\": \"b102644b-9bec-4b3d-a50c-a3c1ee33b63b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da5b2b0c-a313-4ef1-8cf5-0a7ed690dfcb\", \"80f8b5f6-e6a3-45b9-a74e-636fe6d696ae\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887082993984222, \"Height\": 0.03612009808421135, \"Left\": 0.8039571642875671, \"Top\": 0.32653379440307617}, \"Polygon\": [{\"X\": 0.8091307878494263, \"Y\": 0.32653379440307617}, {\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}, {\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}, {\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}]}, \"Id\": \"71ff004d-89e7-4866-a66e-98c1af602d41\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6f83aa3d-f1b2-4fd5-807e-4609e01804e7\", \"a25b2ac7-e358-4d5d-855d-7b810dc565bc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07234565913677216, \"Height\": 0.029922306537628174, \"Left\": 0.9276543259620667, \"Top\": 0.34202826023101807}, \"Polygon\": [{\"X\": 0.9328279495239258, \"Y\": 0.34202826023101807}, {\"X\": 1.0, \"Y\": 0.3513249158859253}, {\"X\": 1.0, \"Y\": 0.37195056676864624}, {\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}]}, \"Id\": \"09f797a7-fa67-461a-b166-62127fd463fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"823908ad-95a8-4f31-bc40-3f1d50cd4c85\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870649993419647, \"Height\": 0.0354653038084507, \"Left\": 0.4336773753166199, \"Top\": 0.3014051914215088}, \"Polygon\": [{\"X\": 0.4386867582798004, \"Y\": 0.3014051914215088}, {\"X\": 0.5623838901519775, \"Y\": 0.3168996274471283}, {\"X\": 0.5573745369911194, \"Y\": 0.3368704915046692}, {\"X\": 0.4336773753166199, \"Y\": 0.3213760256767273}]}, \"Id\": \"2d375633-5531-4dea-ab73-8c272db7700b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1604194-7909-496c-a946-875d379ba838\", \"6933627e-cf16-41b6-98f9-86a9366bc812\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579603493213654, \"Height\": 0.03510073572397232, \"Left\": 0.5573745369911194, \"Top\": 0.3168996274471283}, \"Polygon\": [{\"X\": 0.5623838901519775, \"Y\": 0.3168996274471283}, {\"X\": 0.6831705570220947, \"Y\": 0.3320295214653015}, {\"X\": 0.6781611442565918, \"Y\": 0.3520003855228424}, {\"X\": 0.5573745369911194, \"Y\": 0.3368704915046692}]}, \"Id\": \"89b6aed0-a5c1-4456-8928-3c4b0bdd7fc6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"061e1531-bb82-49d8-a16b-b8938e74e4ee\", \"7d242d39-9ede-487b-b05e-528a5ad2e81a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579597532749176, \"Height\": 0.035100728273391724, \"Left\": 0.6781612038612366, \"Top\": 0.3320295214653015}, \"Polygon\": [{\"X\": 0.6831706166267395, \"Y\": 0.3320295214653015}, {\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}, {\"X\": 0.798947811126709, \"Y\": 0.36713024973869324}, {\"X\": 0.6781612038612366, \"Y\": 0.3520003855228424}]}, \"Id\": \"57fa5d80-254b-40d5-8c82-c836094c170e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0d207c1-653c-4193-974c-3b995c63654c\", \"e6c56771-3c06-42ed-8056-4bd2c75fe311\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870658934116364, \"Height\": 0.035465314984321594, \"Left\": 0.7989477515220642, \"Top\": 0.34715941548347473}, \"Polygon\": [{\"X\": 0.8039571642875671, \"Y\": 0.34715941548347473}, {\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}, {\"X\": 0.9226449728012085, \"Y\": 0.38262471556663513}, {\"X\": 0.7989477515220642, \"Y\": 0.36713024973869324}]}, \"Id\": \"8a436f9e-2ca6-4f0b-801c-13119fde269c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4732735d-4392-461f-83d0-9ed7c55cb946\", \"122b22fe-1c68-4a62-8ca0-89b512a4e974\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0773550346493721, \"Height\": 0.02926752343773842, \"Left\": 0.9226449728012085, \"Top\": 0.3626538813114166}, \"Polygon\": [{\"X\": 0.9276543259620667, \"Y\": 0.3626538813114166}, {\"X\": 1.0, \"Y\": 0.37195053696632385}, {\"X\": 0.9968632459640503, \"Y\": 0.39192140102386475}, {\"X\": 0.9226449728012085, \"Y\": 0.38262471556663513}]}, \"Id\": \"bcb0094b-e905-4221-ae54-12b83b86d28c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"10132a06-6ba2-4029-a907-adfa9178ebfa\", \"0664d3df-a775-47d2-bc1a-50a915bb662b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887074053287506, \"Height\": 0.036120086908340454, \"Left\": 0.42850375175476074, \"Top\": 0.3213760554790497}, \"Polygon\": [{\"X\": 0.4336773753166199, \"Y\": 0.3213760554790497}, {\"X\": 0.5573744773864746, \"Y\": 0.3368705213069916}, {\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}, {\"X\": 0.42850375175476074, \"Y\": 0.34200167655944824}]}, \"Id\": \"904e6cb7-6bd6-4404-abd9-bc837f5bdc92\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f5dc200-65bf-4abe-8c4f-92bd99b98d1e\", \"4d6ab9cd-18cf-4caf-b56f-5f45cfa6d9ab\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596027553081512, \"Height\": 0.035755518823862076, \"Left\": 0.5522008538246155, \"Top\": 0.3368705213069916}, \"Polygon\": [{\"X\": 0.5573744773864746, \"Y\": 0.3368705213069916}, {\"X\": 0.6781611442565918, \"Y\": 0.3520004153251648}, {\"X\": 0.6729875206947327, \"Y\": 0.37262603640556335}, {\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}]}, \"Id\": \"f626db10-ceae-460b-ab33-8e22f6f1f09c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5479bfaf-ef5b-4942-a29a-122ddd645ba6\", \"a97a014d-5231-4df7-9b47-7c119e90c2e5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12596021592617035, \"Height\": 0.03575551137328148, \"Left\": 0.6729875802993774, \"Top\": 0.3520004153251648}, \"Polygon\": [{\"X\": 0.6781612038612366, \"Y\": 0.3520004153251648}, {\"X\": 0.798947811126709, \"Y\": 0.3671302795410156}, {\"X\": 0.7937741875648499, \"Y\": 0.3877559304237366}, {\"X\": 0.6729875802993774, \"Y\": 0.37262603640556335}]}, \"Id\": \"ed87ce13-4def-46b2-b263-8acf04a94ed1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"070e0104-dba8-4695-80c3-d81abbb27538\", \"965cdb1d-2092-49ed-b300-a84364e8791b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12887082993984222, \"Height\": 0.03612009808421135, \"Left\": 0.7937741279602051, \"Top\": 0.3671302795410156}, \"Polygon\": [{\"X\": 0.7989477515220642, \"Y\": 0.3671302795410156}, {\"X\": 0.9226449728012085, \"Y\": 0.3826247453689575}, {\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}, {\"X\": 0.7937741279602051, \"Y\": 0.3877559006214142}]}, \"Id\": \"3da8e4b2-8db2-4a81-895c-21ed4fecaf88\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8daedbdd-539b-4769-9353-470bed01a1e7\", \"43e07a3c-786d-4195-ad58-ea0d5c1d3dc6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07939191162586212, \"Height\": 0.029922306537628174, \"Left\": 0.9174713492393494, \"Top\": 0.3826247453689575}, \"Polygon\": [{\"X\": 0.9226449728012085, \"Y\": 0.3826247453689575}, {\"X\": 0.9968632459640503, \"Y\": 0.39192143082618713}, {\"X\": 0.9916896224021912, \"Y\": 0.4125470519065857}, {\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}]}, \"Id\": \"2bd5d961-4832-4c7a-b372-22b8dd7d4590\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e76bf80d-60a5-4142-b267-65caa7126efd\", \"ba384578-6fd8-4578-941e-385ff3fb4845\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870649993419647, \"Height\": 0.0354653038084507, \"Left\": 0.4234943687915802, \"Top\": 0.34200167655944824}, \"Polygon\": [{\"X\": 0.42850375175476074, \"Y\": 0.34200167655944824}, {\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}, {\"X\": 0.5471915006637573, \"Y\": 0.37746697664260864}, {\"X\": 0.4234943687915802, \"Y\": 0.36197254061698914}]}, \"Id\": \"b9c1dca2-12cc-4ca7-a0e5-d90dd15a6a88\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"966c1f1b-d689-44db-bfae-a848bc460d7b\", \"12b0c250-4292-44b0-800f-4b10217fd3e4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579603493213654, \"Height\": 0.03510073572397232, \"Left\": 0.5471915006637573, \"Top\": 0.35749614238739014}, \"Polygon\": [{\"X\": 0.5522008538246155, \"Y\": 0.35749614238739014}, {\"X\": 0.6729875206947327, \"Y\": 0.37262603640556335}, {\"X\": 0.6679781675338745, \"Y\": 0.39259687066078186}, {\"X\": 0.5471915006637573, \"Y\": 0.37746697664260864}]}, \"Id\": \"38c52248-8521-43ac-8314-869aa1817ad0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"84b0d8e3-d79c-4466-b9cd-0330926542c0\", \"b341b430-1e8e-43e1-b1f4-9f36280f3076\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12579597532749176, \"Height\": 0.035100728273391724, \"Left\": 0.6679782271385193, \"Top\": 0.37262603640556335}, \"Polygon\": [{\"X\": 0.6729875802993774, \"Y\": 0.37262603640556335}, {\"X\": 0.7937741875648499, \"Y\": 0.3877559006214142}, {\"X\": 0.7887647747993469, \"Y\": 0.4077267646789551}, {\"X\": 0.6679782271385193, \"Y\": 0.39259687066078186}]}, \"Id\": \"d48b8555-2944-47ca-a001-08dbbbabd2c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e7eb42d-4bcb-4c15-9deb-64b0e5a9ac8d\", \"f8d6bc18-d7fb-4d8d-8b3e-8ad09eeaf8bc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12870658934116364, \"Height\": 0.035465314984321594, \"Left\": 0.7887647747993469, \"Top\": 0.3877559006214142}, \"Polygon\": [{\"X\": 0.7937741279602051, \"Y\": 0.3877559006214142}, {\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}, {\"X\": 0.9124619364738464, \"Y\": 0.423221230506897}, {\"X\": 0.7887647747993469, \"Y\": 0.4077267646789551}]}, \"Id\": \"3c24bf37-a689-445d-aee3-83ac3c0b1d0a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f855ddd-06e2-4ef6-801a-b638f11caac2\", \"1fc3048a-e1e7-4076-8033-2fbb252d4b14\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86642456054688, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07922767102718353, \"Height\": 0.02926752343773842, \"Left\": 0.9124619364738464, \"Top\": 0.4032503664493561}, \"Polygon\": [{\"X\": 0.9174713492393494, \"Y\": 0.4032503664493561}, {\"X\": 0.9916896224021912, \"Y\": 0.4125470519065857}, {\"X\": 0.986680269241333, \"Y\": 0.4325178861618042}, {\"X\": 0.9124619364738464, \"Y\": 0.423221230506897}]}, \"Id\": \"d477db54-836c-4d4d-baa2-a2f71cfcd71f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9d9f538-b47b-466b-a16f-902ffcf122e9\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.66625213623047, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.33845457434654236, \"Height\": 0.09358946979045868, \"Left\": 0.21848252415657043, \"Top\": 0.15417416393756866}, \"Polygon\": [{\"X\": 0.23174037039279938, \"Y\": 0.15417416393756866}, {\"X\": 0.5569370985031128, \"Y\": 0.19490870833396912}, {\"X\": 0.5436792373657227, \"Y\": 0.24776363372802734}, {\"X\": 0.21848252415657043, \"Y\": 0.2070290744304657}]}, \"Id\": \"5f9234f5-3bae-444c-9064-3a7aa3cd0826\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e42a153-8b62-476d-906a-5e2d6a196c65\", \"13209d48-8edc-40b4-9cf3-52f93b07e037\", \"79e2f251-a277-4ea3-886c-fe484e7a95d4\", \"cfe0a921-acc1-4791-b951-6974f2c4519d\", \"a4c1ea50-c9f2-4acf-afd1-d4c5909fade0\", \"21b54002-6795-4a19-aba3-aff7bdf90e27\", \"cdeb3939-d920-42fa-9e19-1a371d877d7b\", \"4a769cc3-ca81-4361-ad1c-44162127bf16\", \"2ee14fac-afe5-4ca9-84eb-c504035a19c3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1142047643661499, \"Height\": 0.031158193945884705, \"Left\": 0.22737599909305573, \"Top\": 0.15417414903640747}, \"Polygon\": [{\"X\": 0.23174038529396057, \"Y\": 0.15417414903640747}, {\"X\": 0.34158074855804443, \"Y\": 0.1679328978061676}, {\"X\": 0.3372163772583008, \"Y\": 0.18533234298229218}, {\"X\": 0.22737599909305573, \"Y\": 0.17157359421253204}]}, \"Id\": \"4e42a153-8b62-476d-906a-5e2d6a196c65\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"340df2a6-c4cf-49ed-8435-42bffc04f562\", \"6c9835f6-ac4b-4543-8453-5dc257bac8cb\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1124749630689621, \"Height\": 0.030941516160964966, \"Left\": 0.3372163474559784, \"Top\": 0.1679328829050064}, \"Polygon\": [{\"X\": 0.34158074855804443, \"Y\": 0.1679328829050064}, {\"X\": 0.4496913254261017, \"Y\": 0.1814749538898468}, {\"X\": 0.44532692432403564, \"Y\": 0.19887439906597137}, {\"X\": 0.3372163474559784, \"Y\": 0.18533234298229218}]}, \"Id\": \"13209d48-8edc-40b4-9cf3-52f93b07e037\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9a6ab52-d9f0-4d1b-8441-acae78741a6e\", \"0b912532-1187-41cc-a16a-da041225de8b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11161010712385178, \"Height\": 0.030833182856440544, \"Left\": 0.44532695412635803, \"Top\": 0.1814749538898468}, \"Polygon\": [{\"X\": 0.4496913552284241, \"Y\": 0.1814749538898468}, {\"X\": 0.556937038898468, \"Y\": 0.19490869343280792}, {\"X\": 0.5525726675987244, \"Y\": 0.2123081386089325}, {\"X\": 0.44532695412635803, \"Y\": 0.19887441396713257}]}, \"Id\": \"79e2f251-a277-4ea3-886c-fe484e7a95d4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9cb263ad-bf9d-40a7-a66a-b5843666fe69\", \"8d7dfbd4-b5fb-4943-934b-ebfe374cc011\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11453414708375931, \"Height\": 0.03247135132551193, \"Left\": 0.22268222272396088, \"Top\": 0.17157360911369324}, \"Polygon\": [{\"X\": 0.22737599909305573, \"Y\": 0.17157360911369324}, {\"X\": 0.3372163772583008, \"Y\": 0.18533235788345337}, {\"X\": 0.33252260088920593, \"Y\": 0.20404495298862457}, {\"X\": 0.22268222272396088, \"Y\": 0.19028621912002563}]}, \"Id\": \"cfe0a921-acc1-4791-b951-6974f2c4519d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a065d3c-3c4a-476c-a778-57be2f73f874\", \"3fd0c102-14c8-4f62-8efc-ea6185d13ac8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1128043457865715, \"Height\": 0.032254673540592194, \"Left\": 0.33252257108688354, \"Top\": 0.18533234298229218}, \"Polygon\": [{\"X\": 0.3372163474559784, \"Y\": 0.18533234298229218}, {\"X\": 0.44532692432403564, \"Y\": 0.19887441396713257}, {\"X\": 0.4406331479549408, \"Y\": 0.21758702397346497}, {\"X\": 0.33252257108688354, \"Y\": 0.20404495298862457}]}, \"Id\": \"a4c1ea50-c9f2-4acf-afd1-d4c5909fade0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b5dc9358-8865-45ce-8b79-c1bb4b2b890b\", \"8d4fc074-55a2-4873-a494-88e602257ffd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11193949729204178, \"Height\": 0.03214633837342262, \"Left\": 0.4406331777572632, \"Top\": 0.19887441396713257}, \"Polygon\": [{\"X\": 0.44532695412635803, \"Y\": 0.19887441396713257}, {\"X\": 0.5525726675987244, \"Y\": 0.2123081535100937}, {\"X\": 0.5478789210319519, \"Y\": 0.2310207635164261}, {\"X\": 0.4406331777572632, \"Y\": 0.21758702397346497}]}, \"Id\": \"21b54002-6795-4a19-aba3-aff7bdf90e27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9740b293-b285-425b-b391-4e5ce7da38a3\", \"ff2f4032-e538-479b-b8c6-6a87d9a5287c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1140400692820549, \"Height\": 0.030501609668135643, \"Left\": 0.21848253905773163, \"Top\": 0.19028620421886444}, \"Polygon\": [{\"X\": 0.22268222272396088, \"Y\": 0.19028620421886444}, {\"X\": 0.33252260088920593, \"Y\": 0.20404495298862457}, {\"X\": 0.3283229172229767, \"Y\": 0.22078780829906464}, {\"X\": 0.21848253905773163, \"Y\": 0.2070290744304657}]}, \"Id\": \"cdeb3939-d920-42fa-9e19-1a371d877d7b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80e99662-b155-46d3-845f-9231c545e7cf\", \"eeddc938-43fb-4fe3-a936-f9bf2ad4ec20\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1123102679848671, \"Height\": 0.030284933745861053, \"Left\": 0.3283228874206543, \"Top\": 0.20404493808746338}, \"Polygon\": [{\"X\": 0.33252257108688354, \"Y\": 0.20404493808746338}, {\"X\": 0.4406331777572632, \"Y\": 0.21758700907230377}, {\"X\": 0.43643346428871155, \"Y\": 0.23432987928390503}, {\"X\": 0.3283228874206543, \"Y\": 0.22078780829906464}]}, \"Id\": \"4a769cc3-ca81-4361-ad1c-44162127bf16\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa83ab84-df5a-479c-aa17-5f3f67db6c72\", \"c4d5e2d6-5206-4d49-974a-3b73374862eb\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66625213623047, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11144541203975677, \"Height\": 0.030176600441336632, \"Left\": 0.43643349409103394, \"Top\": 0.21758700907230377}, \"Polygon\": [{\"X\": 0.4406331777572632, \"Y\": 0.21758700907230377}, {\"X\": 0.5478789210319519, \"Y\": 0.2310207486152649}, {\"X\": 0.5436792373657227, \"Y\": 0.24776361882686615}, {\"X\": 0.43643349409103394, \"Y\": 0.23432987928390503}]}, \"Id\": \"2ee14fac-afe5-4ca9-84eb-c504035a19c3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"642ad1d7-8b21-44ab-b409-e941764e48cd\", \"4328fe3c-24ed-494d-be66-44b749245e7f\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 68.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03673197329044342, \"Height\": 0.014849081635475159, \"Left\": 0.13944938778877258, \"Top\": 0.4122298061847687}, \"Polygon\": [{\"X\": 0.14210332930088043, \"Y\": 0.4122298061847687}, {\"X\": 0.176181361079216, \"Y\": 0.41649848222732544}, {\"X\": 0.17352743446826935, \"Y\": 0.42707890272140503}, {\"X\": 0.13944938778877258, \"Y\": 0.42281022667884827}]}, \"Id\": \"f6a36046-5afe-4506-8fe4-388a296168b1\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1e0bd4e1-87a0-4256-a6d5-a049e28650ab\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"e7c36a92-6a98-4059-b39a-30e362e35753\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 68.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06992454081773758, \"Height\": 0.01941007748246193, \"Left\": 0.17598775029182434, \"Top\": 0.41661393642425537}, \"Polygon\": [{\"X\": 0.17874611914157867, \"Y\": 0.41661393642425537}, {\"X\": 0.24591228365898132, \"Y\": 0.4250272512435913}, {\"X\": 0.243153914809227, \"Y\": 0.436024010181427}, {\"X\": 0.17598775029182434, \"Y\": 0.42761069536209106}]}, \"Id\": \"1e0bd4e1-87a0-4256-a6d5-a049e28650ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4ab44b2e-3d6f-4755-b741-b09c8e626d1f\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 49.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03529426455497742, \"Height\": 0.014496269635856152, \"Left\": 0.10886241495609283, \"Top\": 0.5416555404663086}, \"Polygon\": [{\"X\": 0.11147162318229675, \"Y\": 0.5416555404663086}, {\"X\": 0.14415667951107025, \"Y\": 0.5457496643066406}, {\"X\": 0.14154747128486633, \"Y\": 0.556151807308197}, {\"X\": 0.10886241495609283, \"Y\": 0.5520576238632202}]}, \"Id\": \"a34ea13a-cf7d-41a8-86ac-49e17e1b5f42\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"16b724f7-03bf-4028-adac-1955b353c85f\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"3680bb00-3648-4492-b94c-e33bdb9c9dcd\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 49.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06896624714136124, \"Height\": 0.019361162558197975, \"Left\": 0.14560037851333618, \"Top\": 0.545624315738678}, \"Polygon\": [{\"X\": 0.1483771651983261, \"Y\": 0.545624315738678}, {\"X\": 0.21456661820411682, \"Y\": 0.5539153218269348}, {\"X\": 0.2117898315191269, \"Y\": 0.5649855136871338}, {\"X\": 0.14560037851333618, \"Y\": 0.556694507598877}]}, \"Id\": \"16b724f7-03bf-4028-adac-1955b353c85f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1494d536-e191-4306-ae29-7be15f728013\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033525075763463974, \"Height\": 0.014517767354846, \"Left\": 0.10382681339979172, \"Top\": 0.5570979714393616}, \"Polygon\": [{\"X\": 0.10649897903203964, \"Y\": 0.5570979714393616}, {\"X\": 0.1373518854379654, \"Y\": 0.5609626770019531}, {\"X\": 0.13467973470687866, \"Y\": 0.5716157555580139}, {\"X\": 0.10382681339979172, \"Y\": 0.5677510499954224}]}, \"Id\": \"b49f872b-e773-4f8a-b700-536dce8a661d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"2faae9aa-9921-4855-82fd-159a708ecfa8\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"63845ab6-7341-4e06-a9e3-743da4e57b38\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10362393409013748, \"Height\": 0.023797467350959778, \"Left\": 0.13641637563705444, \"Top\": 0.560987114906311}, \"Polygon\": [{\"X\": 0.1392177790403366, \"Y\": 0.560987114906311}, {\"X\": 0.24004031717777252, \"Y\": 0.5736162662506104}, {\"X\": 0.23723891377449036, \"Y\": 0.5847845673561096}, {\"X\": 0.13641637563705444, \"Y\": 0.5721554160118103}]}, \"Id\": \"2faae9aa-9921-4855-82fd-159a708ecfa8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4eb8e308-1afd-436d-b471-adf6e8f09bef\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"658a0d46-7269-49aa-9c3e-cc72b8b34714\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"658a0d46-7269-49aa-9c3e-cc72b8b34714\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"149018\", \"date\": \"Mon, 26 Apr 2021 21:35:37 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__15_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.19003359973430634, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.11025144159793854}, {\"X\": 0.9908041954040527, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.8115430474281311}]}, \"Id\": \"d755a711-56ef-4311-8f82-0df1f4f7c172\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"30b87f72-7726-4494-a932-1c04568c024c\", \"dfa29df1-8fb5-4ee0-adcc-2cfa93641fc9\", \"5d2a6b17-e5d5-4956-9199-dce387e9c620\", \"b3e05a24-3938-4de6-af5e-7ac43c8ea3d4\", \"6d685c8b-2d3f-42cc-beeb-4153ccbdb6ca\", \"e7e08b5a-64cc-4a13-9a1f-7de147f63713\", \"7665f307-9aae-42b8-a12d-2bab60bc188c\", \"ce4b3916-0307-49ad-91b5-7974adac1efc\", \"40aa8638-cfd0-41cd-a024-aa0d078e67cb\", \"6c1b9e13-d95a-49de-b210-f32f4a24cd57\", \"aa849e17-5af9-4a32-a16f-7f25c1a3960e\", \"04565376-44b0-4110-8d67-842aa9a0afcb\", \"51eb059f-e165-4f08-b6ea-2e663d49682a\", \"d4a5da04-c771-4548-9e56-a3c500f57132\", \"7a12f70e-c6a6-4169-9210-57690fc53965\", \"3633cdcc-9959-492b-8a4d-de48513b7883\", \"1b71d988-5111-4d0f-9679-663c4f818da0\", \"7c2874a8-be3f-4399-8ea2-f37647b8a3dd\", \"fa325238-b9d7-4fa9-b010-6c377db9af4a\", \"ff81a6f2-00d2-4137-8b35-15ae80bf00be\", \"543f0bfe-eac5-4bb8-b001-46490b247d10\", \"7ff78985-58e4-4434-b777-1dbd9a31ede3\", \"1b11dfd7-5e18-40a2-9598-eaf7ecda6e74\", \"a8b84829-3c91-48e1-9c9d-5e633b8e25d5\", \"336dadc5-5be3-4e28-873a-727eddb8344b\", \"a32dfb98-f1be-4dc3-a1f0-1b2b48c37578\", \"dd0a92b9-3dc8-48c8-96e5-abc385f914d2\", \"b0f37ee8-1d53-4bcd-abd7-a97ecea5137b\", \"592dadc0-ecaf-45b0-ab17-7ce3f0b0c343\", \"b9b8143c-4589-48b9-8ac0-8db07d12a2df\", \"518328ea-e981-49f1-9274-8ecd2992b745\", \"4736bc2c-6294-47ec-9e64-5160faccd75b\", \"7b285ebe-951f-401b-ad62-6f8942e73be4\", \"747417fb-3999-4738-bced-c105347221b3\", \"6757acb9-c2ce-4a6e-b238-a5410c4ebe02\", \"659ba81b-c49e-4d8f-8fcf-c0ce7d1bc3a6\", \"db53eaed-f76c-4bcf-8ddf-a027d6621874\", \"d2baa137-a555-48da-b881-58dd5df9aa0c\", \"eca57c44-a387-4bb3-ab32-4340c2f2b21a\", \"3fca2cd7-2a79-4ba4-b21a-7677ec66b4a1\", \"7f6c1a27-d5ce-4b1c-a35a-1fcb8ce426e4\", \"9392fc56-48d5-4032-9137-afce996f7e45\", \"b9db701f-4eb5-4d0e-bdde-9fb1e96a4a60\", \"5159f914-a34d-410b-bbc1-bba46daaec93\", \"88086bfc-9267-4570-9573-2593ae04794f\", \"fb8b2faf-8bc9-496b-81d7-9b3824c19945\", \"6108a9fa-704b-468b-b21a-81d2ff5b28f8\", \"e982b340-1fa4-44bb-9e2e-75f836b01d87\", \"637da737-1d1f-411e-b6f7-32117791f061\", \"a3effa8e-9159-4ad2-acd8-6a90d0d6dff6\", \"d04c036a-deb7-4554-a5fa-1a5f2506b273\", \"5c4a57cd-3375-4eca-a504-d2b667388e88\", \"c0b5e521-1956-4db3-b4c6-34dca30ee939\", \"c0a76a9a-b141-4126-af62-fca91b49ba8a\", \"d073acce-a671-41d6-9564-63f88fc55c83\", \"380d2b9a-dbc6-4bf5-960e-994cad36b272\", \"5ecbd1b9-a7be-4a3e-86e2-e6674d0a5e62\", \"1523d62a-5f7f-46ac-9e67-9b9fcc946c67\", \"d11d1654-5a8f-4bce-97c1-b73b38913a8f\", \"bfbab0e9-a392-4602-b5a0-e921847a1581\", \"3f0996ba-39c4-4ac7-b7ae-1df6caf69882\", \"ee1cac15-14a1-4310-ab71-03bb7e6613ab\", \"ea7951c7-5c1d-42b2-895e-709b7724ad1b\", \"a236eb5e-0dfb-4a16-8fe5-c1b59f258869\", \"6da20c5d-18e5-42d8-b68e-9881aa145360\", \"5a7566ff-c93d-481a-9695-7a099f543033\", \"7774585d-652d-4127-a83f-5acc27f091f9\", \"bbb8210d-24cf-48e1-82c4-e18dc30afefa\", \"9cb0f8d1-f2d1-4813-b5a1-645c61629195\", \"c63fe980-57de-420a-b091-ab2e9fb415e7\", \"75806b59-3cee-42c5-8e08-668f5d572385\", \"c84814d8-e3be-4b19-8f94-d2842cf25901\", \"e035e37b-d634-4a0f-941c-c8948e0689f5\", \"83a5f96e-28e4-41d3-bfcd-d4f982180703\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.95742797851562, \"Text\": \"Date\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033925384283065796, \"Height\": 0.01682826317846775, \"Left\": 0.9660745859146118, \"Top\": 0.16425272822380066}, \"Polygon\": [{\"X\": 0.97002112865448, \"Y\": 0.16425272822380066}, {\"X\": 1.0, \"Y\": 0.1705186367034912}, {\"X\": 0.999656081199646, \"Y\": 0.18108099699020386}, {\"X\": 0.9660745859146118, \"Y\": 0.1748150885105133}]}, \"Id\": \"30b87f72-7726-4494-a932-1c04568c024c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38a06641-35a9-49a3-abed-43d9a513213f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48710632324219, \"Text\": \"Name: SomeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1495494246482849, \"Height\": 0.037568263709545135, \"Left\": 0.3117736279964447, \"Top\": 0.06893754005432129}, \"Polygon\": [{\"X\": 0.3156551420688629, \"Y\": 0.06893754005432129}, {\"X\": 0.4613230526447296, \"Y\": 0.09611744433641434}, {\"X\": 0.4574415385723114, \"Y\": 0.10650581121444702}, {\"X\": 0.3117736279964447, \"Y\": 0.07932590693235397}]}, \"Id\": \"dfa29df1-8fb5-4ee0-adcc-2cfa93641fc9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"89a5dfd9-b3af-4bd1-b3f0-5edaa034e81c\", \"73b9aa14-8e17-4739-9ff1-b82890a7d06d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.86705780029297, \"Text\": \"Key1:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0474117211997509, \"Height\": 0.021196739748120308, \"Left\": 0.9498752951622009, \"Top\": 0.21734513342380524}, \"Polygon\": [{\"X\": 0.9548357129096985, \"Y\": 0.21734513342380524}, {\"X\": 0.9972870349884033, \"Y\": 0.22526603937149048}, {\"X\": 0.9923266172409058, \"Y\": 0.2385418713092804}, {\"X\": 0.9498752951622009, \"Y\": 0.23062095046043396}]}, \"Id\": \"5d2a6b17-e5d5-4956-9199-dce387e9c620\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"59b56ea9-9f94-45bf-96be-ca0211588ff4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39298248291016, \"Text\": \"Key2:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04964369907975197, \"Height\": 0.022407714277505875, \"Left\": 0.940548300743103, \"Top\": 0.2403356283903122}, \"Polygon\": [{\"X\": 0.945827841758728, \"Y\": 0.2403356283903122}, {\"X\": 0.9901919960975647, \"Y\": 0.24861346185207367}, {\"X\": 0.9849125146865845, \"Y\": 0.26274335384368896}, {\"X\": 0.940548300743103, \"Y\": 0.2544655203819275}]}, \"Id\": \"b3e05a24-3938-4de6-af5e-7ac43c8ea3d4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc50d977-7b8d-4c9f-a3a6-bd486df9bb95\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.40807342529297, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09125377982854843, \"Height\": 0.026629934087395668, \"Left\": 0.29985159635543823, \"Top\": 0.16632318496704102}, \"Polygon\": [{\"X\": 0.30370858311653137, \"Y\": 0.16632318496704102}, {\"X\": 0.39110538363456726, \"Y\": 0.18263038992881775}, {\"X\": 0.38724836707115173, \"Y\": 0.19295312464237213}, {\"X\": 0.29985159635543823, \"Y\": 0.1766459196805954}]}, \"Id\": \"6d685c8b-2d3f-42cc-beeb-4153ccbdb6ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"028d9357-1a3c-4c7a-86a9-d2c011a39838\", \"2f985b37-3c6d-4273-a22d-25434dd6560c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63023376464844, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09142235666513443, \"Height\": 0.026572931557893753, \"Left\": 0.40539106726646423, \"Top\": 0.18633735179901123}, \"Polygon\": [{\"X\": 0.40921252965927124, \"Y\": 0.18633735179901123}, {\"X\": 0.49681344628334045, \"Y\": 0.20268262922763824}, {\"X\": 0.49299195408821106, \"Y\": 0.21291027963161469}, {\"X\": 0.40539106726646423, \"Y\": 0.19656498730182648}]}, \"Id\": \"e7e08b5a-64cc-4a13-9a1f-7de147f63713\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ddf803d9-bb68-4319-b531-bbc3b81bdf2c\", \"0f1c9c2d-0dab-421b-b267-a28c279bc72f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58917236328125, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09076296538114548, \"Height\": 0.026434769853949547, \"Left\": 0.5116455554962158, \"Top\": 0.2066051959991455}, \"Polygon\": [{\"X\": 0.5154609084129333, \"Y\": 0.2066051959991455}, {\"X\": 0.6024085283279419, \"Y\": 0.22282858192920685}, {\"X\": 0.5985931158065796, \"Y\": 0.2330399602651596}, {\"X\": 0.5116455554962158, \"Y\": 0.21681657433509827}]}, \"Id\": \"7665f307-9aae-42b8-a12d-2bab60bc188c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"33f8714d-d5a1-4775-accc-234337cb1263\", \"14a7cc25-20f3-40f5-9f53-c76529134e92\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.1829605102539, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09110426902770996, \"Height\": 0.02629442699253559, \"Left\": 0.29351136088371277, \"Top\": 0.18366076052188873}, \"Polygon\": [{\"X\": 0.2972448170185089, \"Y\": 0.18366076052188873}, {\"X\": 0.38461562991142273, \"Y\": 0.19996312260627747}, {\"X\": 0.3808821737766266, \"Y\": 0.20995520055294037}, {\"X\": 0.29351136088371277, \"Y\": 0.19365283846855164}]}, \"Id\": \"ce4b3916-0307-49ad-91b5-7974adac1efc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"65d23fab-b0ce-431e-9c82-c9848df6d850\", \"51ab0c73-20ec-49bf-aca5-332744c33246\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57345581054688, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09135735780000687, \"Height\": 0.026829170063138008, \"Left\": 0.39929065108299255, \"Top\": 0.20314840972423553}, \"Polygon\": [{\"X\": 0.40321990847587585, \"Y\": 0.20314840972423553}, {\"X\": 0.4906480014324188, \"Y\": 0.21946145594120026}, {\"X\": 0.4867187440395355, \"Y\": 0.2299775779247284}, {\"X\": 0.39929065108299255, \"Y\": 0.21366453170776367}]}, \"Id\": \"40aa8638-cfd0-41cd-a024-aa0d078e67cb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f064466-a4bc-463d-89b8-5fdb22bb0fff\", \"ca4fa152-1838-45dd-a31e-027d51f1eb03\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48945617675781, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09092576801776886, \"Height\": 0.026507124304771423, \"Left\": 0.5050410628318787, \"Top\": 0.22363746166229248}, \"Polygon\": [{\"X\": 0.5088732838630676, \"Y\": 0.22363746166229248}, {\"X\": 0.5959668159484863, \"Y\": 0.23988807201385498}, {\"X\": 0.5921345353126526, \"Y\": 0.2501445710659027}, {\"X\": 0.5050410628318787, \"Y\": 0.2338939607143402}]}, \"Id\": \"6c1b9e13-d95a-49de-b210-f32f4a24cd57\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9eb0eaa0-2259-4994-b073-74b6b404b27c\", \"48d5e33a-3594-470e-816d-132cabb36e58\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.50022888183594, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09101887047290802, \"Height\": 0.02642541378736496, \"Left\": 0.2871922254562378, \"Top\": 0.20069779455661774}, \"Polygon\": [{\"X\": 0.2909846603870392, \"Y\": 0.20069779455661774}, {\"X\": 0.3782110810279846, \"Y\": 0.2169732004404068}, {\"X\": 0.37441861629486084, \"Y\": 0.2271232157945633}, {\"X\": 0.2871922254562378, \"Y\": 0.21084779500961304}]}, \"Id\": \"aa849e17-5af9-4a32-a16f-7f25c1a3960e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b7bc6b7-e9d7-40b2-9209-6b6765d78099\", \"7fb5faf4-9f59-4362-bcac-48cd600a2576\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53534698486328, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09106343239545822, \"Height\": 0.026491651311516762, \"Left\": 0.39286360144615173, \"Top\": 0.22061824798583984}, \"Polygon\": [{\"X\": 0.3966793119907379, \"Y\": 0.22061824798583984}, {\"X\": 0.48392701148986816, \"Y\": 0.23689764738082886}, {\"X\": 0.480111300945282, \"Y\": 0.24710990488529205}, {\"X\": 0.39286360144615173, \"Y\": 0.23083052039146423}]}, \"Id\": \"04565376-44b0-4110-8d67-842aa9a0afcb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc90e3af-b02d-43dd-937c-04a2c8daf7b7\", \"fd730308-f558-4123-98a4-4238e6da4a94\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64868927001953, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09076504409313202, \"Height\": 0.02708509750664234, \"Left\": 0.4984820783138275, \"Top\": 0.24051716923713684}, \"Polygon\": [{\"X\": 0.5025585293769836, \"Y\": 0.24051716923713684}, {\"X\": 0.5892471075057983, \"Y\": 0.25669223070144653}, {\"X\": 0.5851706862449646, \"Y\": 0.26760226488113403}, {\"X\": 0.4984820783138275, \"Y\": 0.25142720341682434}]}, \"Id\": \"51eb059f-e165-4f08-b6ea-2e663d49682a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1af85064-0459-4f99-91b3-ece74a285fdb\", \"1821d57e-6d94-4527-b3a4-aad54d8772f5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63546752929688, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10540839284658432, \"Height\": 0.03035569190979004, \"Left\": 0.5019910335540771, \"Top\": 0.2860080897808075}, \"Polygon\": [{\"X\": 0.506283700466156, \"Y\": 0.2860080897808075}, {\"X\": 0.6073994040489197, \"Y\": 0.30487510561943054}, {\"X\": 0.6031067967414856, \"Y\": 0.31636378169059753}, {\"X\": 0.5019910335540771, \"Y\": 0.2974967956542969}]}, \"Id\": \"d4a5da04-c771-4548-9e56-a3c500f57132\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"acef5288-3172-4829-82c5-4342dffdf35b\", \"cf41b4fc-0a58-48fb-b757-bc968029783d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5700454711914, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10645365715026855, \"Height\": 0.030811404809355736, \"Left\": 0.6214657425880432, \"Top\": 0.3084203600883484}, \"Polygon\": [{\"X\": 0.6258630752563477, \"Y\": 0.3084203600883484}, {\"X\": 0.7279193997383118, \"Y\": 0.3274628520011902}, {\"X\": 0.7235220074653625, \"Y\": 0.3392317593097687}, {\"X\": 0.6214657425880432, \"Y\": 0.3201892673969269}]}, \"Id\": \"7a12f70e-c6a6-4169-9210-57690fc53965\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8b17c76d-4348-4d0e-be18-c80fb8f74fad\", \"9784ae98-c270-4d40-925a-e1f8f868265a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59706115722656, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10554922372102737, \"Height\": 0.030751870945096016, \"Left\": 0.7419138550758362, \"Top\": 0.33138054609298706}, \"Polygon\": [{\"X\": 0.7463550567626953, \"Y\": 0.33138054609298706}, {\"X\": 0.847463071346283, \"Y\": 0.3502461016178131}, {\"X\": 0.843021810054779, \"Y\": 0.3621324300765991}, {\"X\": 0.7419138550758362, \"Y\": 0.34326687455177307}]}, \"Id\": \"3633cdcc-9959-492b-8a4d-de48513b7883\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e58b75b9-4a5f-4cc8-bf7e-7929cd51bdcf\", \"6ac2008d-4d03-45c6-9d58-d24d30839be2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53622436523438, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1071818470954895, \"Height\": 0.031084464862942696, \"Left\": 0.8608079552650452, \"Top\": 0.3537311553955078}, \"Polygon\": [{\"X\": 0.8652604222297668, \"Y\": 0.3537311553955078}, {\"X\": 0.9679898023605347, \"Y\": 0.37289923429489136}, {\"X\": 0.963537335395813, \"Y\": 0.38481563329696655}, {\"X\": 0.8608079552650452, \"Y\": 0.365647554397583}]}, \"Id\": \"1b71d988-5111-4d0f-9679-663c4f818da0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7224f0fe-8cf7-4a68-bf6b-416f2dc99370\", \"f2601c3f-8b09-4d09-af0b-b5d95a525040\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 66.65990447998047, \"Text\": \"Va\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01856091618537903, \"Height\": 0.014791793189942837, \"Left\": 0.9814390540122986, \"Top\": 0.3767314553260803}, \"Polygon\": [{\"X\": 0.9857025146484375, \"Y\": 0.3767314553260803}, {\"X\": 1.0, \"Y\": 0.38011279702186584}, {\"X\": 0.9995610117912292, \"Y\": 0.39152324199676514}, {\"X\": 0.9814390540122986, \"Y\": 0.3881419003009796}]}, \"Id\": \"7c2874a8-be3f-4399-8ea2-f37647b8a3dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f07966c3-5ad0-4cdc-862d-8b58dc47e980\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49983978271484, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10556622594594955, \"Height\": 0.030647490173578262, \"Left\": 0.49434930086135864, \"Top\": 0.3056826591491699}, \"Polygon\": [{\"X\": 0.498747318983078, \"Y\": 0.3056826591491699}, {\"X\": 0.5999155640602112, \"Y\": 0.32455945014953613}, {\"X\": 0.5955175161361694, \"Y\": 0.3363301455974579}, {\"X\": 0.49434930086135864, \"Y\": 0.3174533545970917}]}, \"Id\": \"fa325238-b9d7-4fa9-b010-6c377db9af4a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c07aa859-dda9-4016-b140-87f0b5abd818\", \"5631085c-f510-4ce7-a637-9e2093345367\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.28035736083984, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10636096447706223, \"Height\": 0.03094344027340412, \"Left\": 0.6141040921211243, \"Top\": 0.32827162742614746}, \"Polygon\": [{\"X\": 0.6185613870620728, \"Y\": 0.32827162742614746}, {\"X\": 0.7204650044441223, \"Y\": 0.3472856283187866}, {\"X\": 0.7160077095031738, \"Y\": 0.35921505093574524}, {\"X\": 0.6141040921211243, \"Y\": 0.3402010500431061}]}, \"Id\": \"ff81a6f2-00d2-4137-8b35-15ae80bf00be\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d66453e1-b6f8-43ae-a845-4e30c2f8301f\", \"a6d21299-6c9d-43d6-9b69-ed765c98fee3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54963684082031, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10553577542304993, \"Height\": 0.030585356056690216, \"Left\": 0.7344645261764526, \"Top\": 0.35134628415107727}, \"Polygon\": [{\"X\": 0.738839864730835, \"Y\": 0.35134628415107727}, {\"X\": 0.8400002717971802, \"Y\": 0.37022164463996887}, {\"X\": 0.8356249332427979, \"Y\": 0.3819316625595093}, {\"X\": 0.7344645261764526, \"Y\": 0.36305633187294006}]}, \"Id\": \"543f0bfe-eac5-4bb8-b001-46490b247d10\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3d6fbca-7969-425a-a024-9a1b32a19dcd\", \"eba16df5-188c-4a4e-8e1c-6ef2676cb919\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66092681884766, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1067935973405838, \"Height\": 0.031003110110759735, \"Left\": 0.8535765409469604, \"Top\": 0.37359318137168884}, \"Polygon\": [{\"X\": 0.8580254316329956, \"Y\": 0.37359318137168884}, {\"X\": 0.9603701233863831, \"Y\": 0.39268946647644043}, {\"X\": 0.9559212327003479, \"Y\": 0.4045962691307068}, {\"X\": 0.8535765409469604, \"Y\": 0.3854999840259552}]}, \"Id\": \"7ff78985-58e4-4434-b777-1dbd9a31ede3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4d8a8f0-8720-4113-a9a6-1f55674d9ec6\", \"3b4df430-29f1-42fd-b44b-7e61e285da89\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05113983154297, \"Text\": \"Va\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026222743093967438, \"Height\": 0.016037512570619583, \"Left\": 0.9737772345542908, \"Top\": 0.3967236578464508}, \"Polygon\": [{\"X\": 0.9781026840209961, \"Y\": 0.3967236578464508}, {\"X\": 1.0, \"Y\": 0.4011847674846649}, {\"X\": 0.9976861476898193, \"Y\": 0.4127611815929413}, {\"X\": 0.9737772345542908, \"Y\": 0.4083000421524048}]}, \"Id\": \"1b11dfd7-5e18-40a2-9598-eaf7ecda6e74\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3dfe61d5-a1f7-4e68-87bf-e58085e2aee4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60772705078125, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10502868890762329, \"Height\": 0.030450908467173576, \"Left\": 0.48708030581474304, \"Top\": 0.3256484866142273}, \"Polygon\": [{\"X\": 0.4914396405220032, \"Y\": 0.3256484866142273}, {\"X\": 0.592108964920044, \"Y\": 0.34443220496177673}, {\"X\": 0.5877496600151062, \"Y\": 0.356099396944046}, {\"X\": 0.48708030581474304, \"Y\": 0.33731570839881897}]}, \"Id\": \"a8b84829-3c91-48e1-9c9d-5e633b8e25d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"62ca1896-ae6d-44f2-b5f0-698d7d9e43a9\", \"6a6d30c1-490b-4c28-87e2-89ebb038b09c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64070892333984, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10596373677253723, \"Height\": 0.03068074956536293, \"Left\": 0.6067550778388977, \"Top\": 0.34818658232688904}, \"Polygon\": [{\"X\": 0.6111366748809814, \"Y\": 0.34818658232688904}, {\"X\": 0.7127188444137573, \"Y\": 0.36714059114456177}, {\"X\": 0.7083372473716736, \"Y\": 0.37886732816696167}, {\"X\": 0.6067550778388977, \"Y\": 0.35991328954696655}]}, \"Id\": \"336dadc5-5be3-4e28-873a-727eddb8344b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"358496af-26c8-41ac-ae04-0eda2cae4f2b\", \"95ba4bbb-bc31-45dd-b57e-c84a696b8fad\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61373138427734, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10531264543533325, \"Height\": 0.030526714399456978, \"Left\": 0.7270838618278503, \"Top\": 0.37107229232788086}, \"Polygon\": [{\"X\": 0.7314523458480835, \"Y\": 0.37107229232788086}, {\"X\": 0.8323964476585388, \"Y\": 0.38990727066993713}, {\"X\": 0.8280279636383057, \"Y\": 0.4015990197658539}, {\"X\": 0.7270838618278503, \"Y\": 0.3827640414237976}]}, \"Id\": \"a32dfb98-f1be-4dc3-a1f0-1b2b48c37578\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e658971-93fe-487f-b9dc-a4fe34dcf052\", \"1701bd58-d91e-4eb3-97cc-79577a97e6df\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67404174804688, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10686209052801132, \"Height\": 0.031015781685709953, \"Left\": 0.8461307883262634, \"Top\": 0.39335736632347107}, \"Polygon\": [{\"X\": 0.8505796194076538, \"Y\": 0.39335736632347107}, {\"X\": 0.952992856502533, \"Y\": 0.41246646642684937}, {\"X\": 0.9485440254211426, \"Y\": 0.42437314987182617}, {\"X\": 0.8461307883262634, \"Y\": 0.4052640497684479}]}, \"Id\": \"dd0a92b9-3dc8-48c8-96e5-abc385f914d2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b98f47d-90b4-4b61-b956-751e0cf8a8e9\", \"d9ee5025-d478-4e57-864e-fdb119e46288\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 89.4522933959961, \"Text\": \"Val\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033645473420619965, \"Height\": 0.017601702362298965, \"Left\": 0.9663545489311218, \"Top\": 0.4162122905254364}, \"Polygon\": [{\"X\": 0.9707815051078796, \"Y\": 0.4162122905254364}, {\"X\": 1.0, \"Y\": 0.42196574807167053}, {\"X\": 0.9971897602081299, \"Y\": 0.43381398916244507}, {\"X\": 0.9663545489311218, \"Y\": 0.42806050181388855}]}, \"Id\": \"b0f37ee8-1d53-4bcd-abd7-a97ecea5137b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"233ee45d-5e82-41e1-b8c3-b38eac9c5875\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7378921508789, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10562095791101456, \"Height\": 0.03050508350133896, \"Left\": 0.4792167544364929, \"Top\": 0.345206081867218}, \"Polygon\": [{\"X\": 0.4835534691810608, \"Y\": 0.345206081867218}, {\"X\": 0.5848376750946045, \"Y\": 0.3641045093536377}, {\"X\": 0.5805009603500366, \"Y\": 0.3757111728191376}, {\"X\": 0.4792167544364929, \"Y\": 0.3568127453327179}]}, \"Id\": \"592dadc0-ecaf-45b0-ab17-7ce3f0b0c343\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec97f0a8-eb08-4a27-a8bb-fa42602589c1\", \"63b6157b-d344-4145-8ee1-ffeedf3382a8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63764953613281, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10605959594249725, \"Height\": 0.030684562399983406, \"Left\": 0.5991808176040649, \"Top\": 0.3679051101207733}, \"Polygon\": [{\"X\": 0.6035568118095398, \"Y\": 0.3679051101207733}, {\"X\": 0.7052404284477234, \"Y\": 0.3868780732154846}, {\"X\": 0.7008644938468933, \"Y\": 0.3985896706581116}, {\"X\": 0.5991808176040649, \"Y\": 0.37961670756340027}]}, \"Id\": \"b9b8143c-4589-48b9-8ac0-8db07d12a2df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d19f0602-b496-4f2b-b0cb-8559169265d4\", \"894edf37-5b78-4986-846e-92a758d899dc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59451293945312, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10549654066562653, \"Height\": 0.03047955222427845, \"Left\": 0.7195512056350708, \"Top\": 0.3908856213092804}, \"Polygon\": [{\"X\": 0.7238869667053223, \"Y\": 0.3908856213092804}, {\"X\": 0.8250477313995361, \"Y\": 0.4097610414028168}, {\"X\": 0.8207119107246399, \"Y\": 0.4213652014732361}, {\"X\": 0.7195512056350708, \"Y\": 0.4024897813796997}]}, \"Id\": \"518328ea-e981-49f1-9274-8ecd2992b745\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d555eda7-2c97-4a51-8aa2-1e1953fdf61e\", \"53a21353-c752-4beb-8415-1e5bdb28e826\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72000122070312, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10709436237812042, \"Height\": 0.030759518966078758, \"Left\": 0.8383868932723999, \"Top\": 0.413318395614624}, \"Polygon\": [{\"X\": 0.8427154421806335, \"Y\": 0.413318395614624}, {\"X\": 0.9454813003540039, \"Y\": 0.43249329924583435}, {\"X\": 0.941152811050415, \"Y\": 0.44407790899276733}, {\"X\": 0.8383868932723999, \"Y\": 0.4249030351638794}]}, \"Id\": \"4736bc2c-6294-47ec-9e64-5160faccd75b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f28fa35b-9f2a-4baf-abdb-f65678ff90f2\", \"87d4d42e-5efa-4e75-bf5a-4ddfa25b48dd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46519470214844, \"Text\": \"Valu\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041367437690496445, \"Height\": 0.02003323845565319, \"Left\": 0.9586325883865356, \"Top\": 0.4358324706554413}, \"Polygon\": [{\"X\": 0.9632312655448914, \"Y\": 0.4358324706554413}, {\"X\": 1.0, \"Y\": 0.44355782866477966}, {\"X\": 1.0, \"Y\": 0.4558657109737396}, {\"X\": 0.9586325883865356, \"Y\": 0.44814032316207886}]}, \"Id\": \"7b285ebe-951f-401b-ad62-6f8942e73be4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"264b89e2-a21c-4271-85ba-32c7e5b0b457\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68363952636719, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10536929219961166, \"Height\": 0.03051147051155567, \"Left\": 0.4719555675983429, \"Top\": 0.365188330411911}, \"Polygon\": [{\"X\": 0.4763137102127075, \"Y\": 0.365188330411911}, {\"X\": 0.5773248672485352, \"Y\": 0.38403579592704773}, {\"X\": 0.5729666948318481, \"Y\": 0.39569979906082153}, {\"X\": 0.4719555675983429, \"Y\": 0.3768523037433624}]}, \"Id\": \"747417fb-3999-4738-bced-c105347221b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e11c478c-9b17-43b4-97e5-351d1c79b010\", \"59cc8f0b-d16f-408b-8b55-3122a70b8346\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37562561035156, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1069551333785057, \"Height\": 0.030904775485396385, \"Left\": 0.5915220379829407, \"Top\": 0.3877573013305664}, \"Polygon\": [{\"X\": 0.5959193110466003, \"Y\": 0.3877573013305664}, {\"X\": 0.6984771490097046, \"Y\": 0.40689337253570557}, {\"X\": 0.6940798759460449, \"Y\": 0.41866207122802734}, {\"X\": 0.5915220379829407, \"Y\": 0.3995260000228882}]}, \"Id\": \"6757acb9-c2ce-4a6e-b238-a5410c4ebe02\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"77f5e3ae-37c9-4f4f-9f11-d7fd359747df\", \"61cd5db4-1750-46c1-ae3d-ae36e0dac43e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61597442626953, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10521294176578522, \"Height\": 0.030469737946987152, \"Left\": 0.7122371196746826, \"Top\": 0.410719096660614}, \"Polygon\": [{\"X\": 0.7165902256965637, \"Y\": 0.410719096660614}, {\"X\": 0.8174500465393066, \"Y\": 0.4295383393764496}, {\"X\": 0.8130969405174255, \"Y\": 0.4411888122558594}, {\"X\": 0.7122371196746826, \"Y\": 0.4223695695400238}]}, \"Id\": \"659ba81b-c49e-4d8f-8fcf-c0ce7d1bc3a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8141d841-3f69-4828-9406-1391101ddfec\", \"d1fcd990-bb74-4b3a-813b-6b5ce4f55fe5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58909606933594, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10691078007221222, \"Height\": 0.03087974339723587, \"Left\": 0.8311625123023987, \"Top\": 0.43313363194465637}, \"Polygon\": [{\"X\": 0.8355530500411987, \"Y\": 0.43313363194465637}, {\"X\": 0.9380732774734497, \"Y\": 0.4522626996040344}, {\"X\": 0.9336827397346497, \"Y\": 0.46401339769363403}, {\"X\": 0.8311625123023987, \"Y\": 0.444884330034256}]}, \"Id\": \"db53eaed-f76c-4bcf-8ddf-a027d6621874\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1903fff3-0ebc-4e4f-9387-a32511fc609f\", \"fcf846c3-af67-4317-ba31-b95cf4eeab8a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.31489562988281, \"Text\": \"Value\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04915650188922882, \"Height\": 0.02103527821600437, \"Left\": 0.9508435130119324, \"Top\": 0.45572277903556824}, \"Polygon\": [{\"X\": 0.9553006887435913, \"Y\": 0.45572277903556824}, {\"X\": 1.0, \"Y\": 0.4648289084434509}, {\"X\": 0.9996469616889954, \"Y\": 0.47675803303718567}, {\"X\": 0.9508435130119324, \"Y\": 0.467651903629303}]}, \"Id\": \"d2baa137-a555-48da-b881-58dd5df9aa0c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0fab1e1-9f38-4a5f-8d6c-2441e273003d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8155517578125, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13520492613315582, \"Height\": 0.035114750266075134, \"Left\": 0.18482616543769836, \"Top\": 0.3870687484741211}, \"Polygon\": [{\"X\": 0.1887972503900528, \"Y\": 0.3870687484741211}, {\"X\": 0.320031076669693, \"Y\": 0.4115554094314575}, {\"X\": 0.31606000661849976, \"Y\": 0.42218348383903503}, {\"X\": 0.18482616543769836, \"Y\": 0.3976968228816986}]}, \"Id\": \"eca57c44-a387-4bb3-ab32-4340c2f2b21a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"feb44557-61eb-43cb-ab51-d0b86aae1c40\", \"c1853126-ee20-4ebb-8e34-ef1fb9e7737c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.38363647460938, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09114337712526321, \"Height\": 0.026408689096570015, \"Left\": 0.5849306583404541, \"Top\": 0.4825332760810852}, \"Polygon\": [{\"X\": 0.5887070894241333, \"Y\": 0.4825332760810852}, {\"X\": 0.6760740280151367, \"Y\": 0.49883490800857544}, {\"X\": 0.6722976565361023, \"Y\": 0.5089419484138489}, {\"X\": 0.5849306583404541, \"Y\": 0.49264031648635864}]}, \"Id\": \"3fca2cd7-2a79-4ba4-b21a-7677ec66b4a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9410480f-ffdb-42f4-9e83-e7ab5ce78fc3\", \"0087a99c-d393-4183-a264-ac953e5eff33\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57919311523438, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10614032298326492, \"Height\": 0.029834428802132607, \"Left\": 0.17123089730739594, \"Top\": 0.41171446442604065}, \"Polygon\": [{\"X\": 0.17525933682918549, \"Y\": 0.41171446442604065}, {\"X\": 0.27737122774124146, \"Y\": 0.43076732754707336}, {\"X\": 0.2733427882194519, \"Y\": 0.4415488839149475}, {\"X\": 0.17123089730739594, \"Y\": 0.4224960207939148}]}, \"Id\": \"7f6c1a27-d5ce-4b1c-a35a-1fcb8ce426e4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d065dddd-7d11-44a4-838f-4105d91d8a17\", \"4d22fb5c-1c7b-49bb-8363-227b717aa19c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5287094116211, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09122440218925476, \"Height\": 0.026561884209513664, \"Left\": 0.72371506690979, \"Top\": 0.508707582950592}, \"Polygon\": [{\"X\": 0.7275469303131104, \"Y\": 0.508707582950592}, {\"X\": 0.8149394392967224, \"Y\": 0.5250139832496643}, {\"X\": 0.8111075758934021, \"Y\": 0.5352694988250732}, {\"X\": 0.72371506690979, \"Y\": 0.518963098526001}]}, \"Id\": \"9392fc56-48d5-4032-9137-afce996f7e45\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da96b1ea-6948-42ca-abad-73f6e0d2cba7\", \"033e946f-7881-4916-8a34-5e26bf09c49d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53072357177734, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09131710231304169, \"Height\": 0.02666943147778511, \"Left\": 0.8626337647438049, \"Top\": 0.5350742340087891}, \"Polygon\": [{\"X\": 0.8665018677711487, \"Y\": 0.5350742340087891}, {\"X\": 0.953950822353363, \"Y\": 0.5513911247253418}, {\"X\": 0.9500827193260193, \"Y\": 0.5617436170578003}, {\"X\": 0.8626337647438049, \"Y\": 0.5454266667366028}]}, \"Id\": \"b9db701f-4eb5-4d0e-bdde-9fb1e96a4a60\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6422e106-f654-448f-8c81-b429e40c8e4f\", \"f8162608-6e32-41a6-a41d-ae06f4198a94\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.377685546875, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09028653055429459, \"Height\": 0.026325536891818047, \"Left\": 0.5785489678382874, \"Top\": 0.49954330921173096}, \"Polygon\": [{\"X\": 0.5823562145233154, \"Y\": 0.49954330921173096}, {\"X\": 0.6688355207443237, \"Y\": 0.5156792998313904}, {\"X\": 0.6650282740592957, \"Y\": 0.525868833065033}, {\"X\": 0.5785489678382874, \"Y\": 0.5097328424453735}]}, \"Id\": \"5159f914-a34d-410b-bbc1-bba46daaec93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce8d6fb2-852a-4d73-a653-fc104740cb43\", \"22037369-9b37-4786-9e3f-0f998420a856\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54467010498047, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09113632142543793, \"Height\": 0.02653050236403942, \"Left\": 0.7172590494155884, \"Top\": 0.5258021354675293}, \"Polygon\": [{\"X\": 0.7210848927497864, \"Y\": 0.5258021354675293}, {\"X\": 0.8083953857421875, \"Y\": 0.5420932173728943}, {\"X\": 0.8045694828033447, \"Y\": 0.5523326396942139}, {\"X\": 0.7172590494155884, \"Y\": 0.5360415577888489}]}, \"Id\": \"88086bfc-9267-4570-9573-2593ae04794f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58e75ae3-aa5d-4f2f-b98b-48af379ec943\", \"f362de52-590f-4295-bd62-1059d1cfd109\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4266128540039, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09113230556249619, \"Height\": 0.026730220764875412, \"Left\": 0.8564870953559875, \"Top\": 0.5520995855331421}, \"Polygon\": [{\"X\": 0.8603934645652771, \"Y\": 0.5520995855331421}, {\"X\": 0.9476193785667419, \"Y\": 0.5683748722076416}, {\"X\": 0.9437130093574524, \"Y\": 0.5788297653198242}, {\"X\": 0.8564870953559875, \"Y\": 0.5625544786453247}]}, \"Id\": \"fb8b2faf-8bc9-496b-81d7-9b3824c19945\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fb894b69-d94e-4fc2-b654-7af666fb0f8e\", \"3e135819-8a2f-4780-8412-b71565bc087e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.28105163574219, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09100434184074402, \"Height\": 0.0264666136354208, \"Left\": 0.5720649361610413, \"Top\": 0.516649067401886}, \"Polygon\": [{\"X\": 0.5758750438690186, \"Y\": 0.516649067401886}, {\"X\": 0.6630693078041077, \"Y\": 0.5329184532165527}, {\"X\": 0.6592592000961304, \"Y\": 0.5431156754493713}, {\"X\": 0.5720649361610413, \"Y\": 0.5268462300300598}]}, \"Id\": \"6108a9fa-704b-468b-b21a-81d2ff5b28f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"36198eda-74fe-495a-b361-4575ca6ac6fc\", \"fd38e903-d1fc-4880-9d7f-b8db5fb4a946\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53298950195312, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09102171659469604, \"Height\": 0.026407677680253983, \"Left\": 0.7106398344039917, \"Top\": 0.5429550409317017}, \"Polygon\": [{\"X\": 0.7144249677658081, \"Y\": 0.5429550409317017}, {\"X\": 0.8016615509986877, \"Y\": 0.5592323541641235}, {\"X\": 0.7978764772415161, \"Y\": 0.5693626999855042}, {\"X\": 0.7106398344039917, \"Y\": 0.5530853867530823}]}, \"Id\": \"e982b340-1fa4-44bb-9e2e-75f836b01d87\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04e02125-386c-482a-979c-87bb36ac1b03\", \"bcc471c6-133b-47ee-99d7-fb36296cbc81\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65599060058594, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09087348729372025, \"Height\": 0.026379313319921494, \"Left\": 0.8497669100761414, \"Top\": 0.5692377686500549}, \"Polygon\": [{\"X\": 0.8535517454147339, \"Y\": 0.5692377686500549}, {\"X\": 0.940640389919281, \"Y\": 0.5854874849319458}, {\"X\": 0.9368555545806885, \"Y\": 0.5956171154975891}, {\"X\": 0.8497669100761414, \"Y\": 0.5793673992156982}]}, \"Id\": \"637da737-1d1f-411e-b6f7-32117791f061\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9566794-5ed8-4499-9b1b-e3e995fcb0da\", \"df0a159b-e4ae-4b02-98aa-e5181b0f59cf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66587829589844, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09120652824640274, \"Height\": 0.026598596945405006, \"Left\": 0.565468430519104, \"Top\": 0.5336434841156006}, \"Polygon\": [{\"X\": 0.5693163871765137, \"Y\": 0.5336434841156006}, {\"X\": 0.6566749811172485, \"Y\": 0.5499435067176819}, {\"X\": 0.6528270244598389, \"Y\": 0.5602420568466187}, {\"X\": 0.565468430519104, \"Y\": 0.5439419746398926}]}, \"Id\": \"a3effa8e-9159-4ad2-acd8-6a90d0d6dff6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e7e21da1-a7bb-4fc9-91e0-2be5c883bd64\", \"bc0eab09-c32e-4751-91ad-dee367995354\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61150360107422, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09064652025699615, \"Height\": 0.026329604908823967, \"Left\": 0.7044886350631714, \"Top\": 0.5599316954612732}, \"Polygon\": [{\"X\": 0.7082704901695251, \"Y\": 0.5599316954612732}, {\"X\": 0.7951351404190063, \"Y\": 0.5761396288871765}, {\"X\": 0.7913532257080078, \"Y\": 0.5862612724304199}, {\"X\": 0.7044886350631714, \"Y\": 0.5700533986091614}]}, \"Id\": \"d04c036a-deb7-4554-a5fa-1a5f2506b273\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ad35cb2-7cdb-4e19-bc6c-e6cfe8de894d\", \"a6804dc0-ec3a-4a85-8ca0-f37b42ee3ea9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65977478027344, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09037245064973831, \"Height\": 0.026467520743608475, \"Left\": 0.8437662124633789, \"Top\": 0.5862563252449036}, \"Polygon\": [{\"X\": 0.8476240634918213, \"Y\": 0.5862563252449036}, {\"X\": 0.9341387152671814, \"Y\": 0.6023989319801331}, {\"X\": 0.930280864238739, \"Y\": 0.6127238273620605}, {\"X\": 0.8437662124633789, \"Y\": 0.596581220626831}]}, \"Id\": \"5c4a57cd-3375-4eca-a504-d2b667388e88\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d507ae8-f261-4c86-8c44-46cc7874980f\", \"84c1161f-b1f7-4878-a734-f202a191dd78\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5083999633789, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09090122580528259, \"Height\": 0.026653405278921127, \"Left\": 0.5594472289085388, \"Top\": 0.5506688952445984}, \"Polygon\": [{\"X\": 0.5633400678634644, \"Y\": 0.5506688952445984}, {\"X\": 0.6503484845161438, \"Y\": 0.5669036507606506}, {\"X\": 0.6464556455612183, \"Y\": 0.5773223042488098}, {\"X\": 0.5594472289085388, \"Y\": 0.5610876083374023}]}, \"Id\": \"c0b5e521-1956-4db3-b4c6-34dca30ee939\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb023a7c-c3a5-406f-9344-59d2a30c4736\", \"68f864d5-b9d1-4a22-ab10-fc0b864ea9a7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4733657836914, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09084746986627579, \"Height\": 0.026452504098415375, \"Left\": 0.6980419754981995, \"Top\": 0.5770295858383179}, \"Polygon\": [{\"X\": 0.7018581628799438, \"Y\": 0.5770295858383179}, {\"X\": 0.788889467716217, \"Y\": 0.5932685732841492}, {\"X\": 0.7850732803344727, \"Y\": 0.6034820675849915}, {\"X\": 0.6980419754981995, \"Y\": 0.5872430801391602}]}, \"Id\": \"c0a76a9a-b141-4126-af62-fca91b49ba8a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e77fc542-cbdd-4e86-9bc6-4c4440edb9dd\", \"2cdb36d8-4c94-491c-95cb-7c8222baf2c3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55277252197266, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09060756862163544, \"Height\": 0.026449576020240784, \"Left\": 0.8369781374931335, \"Top\": 0.6033751368522644}, \"Polygon\": [{\"X\": 0.8408111333847046, \"Y\": 0.6033751368522644}, {\"X\": 0.9275857210159302, \"Y\": 0.6195662021636963}, {\"X\": 0.9237527251243591, \"Y\": 0.629824697971344}, {\"X\": 0.8369781374931335, \"Y\": 0.6136335730552673}]}, \"Id\": \"d073acce-a671-41d6-9564-63f88fc55c83\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04c8fa63-cd94-4a4c-8d30-3661a2b8ff22\", \"d074352a-89b9-431d-9987-cbb796b5e66c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6749038696289, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09038497507572174, \"Height\": 0.026336822658777237, \"Left\": 0.5527770519256592, \"Top\": 0.5678330659866333}, \"Polygon\": [{\"X\": 0.556581437587738, \"Y\": 0.5678330659866333}, {\"X\": 0.6431620121002197, \"Y\": 0.5839879512786865}, {\"X\": 0.6393576264381409, \"Y\": 0.5941698551177979}, {\"X\": 0.5527770519256592, \"Y\": 0.5780149698257446}]}, \"Id\": \"380d2b9a-dbc6-4bf5-960e-994cad36b272\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b01c39ea-2f65-41c7-9b13-1bc0b7a3c418\", \"92ed1e4b-4041-459a-8d4d-a2758e13b5af\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44652557373047, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09086151421070099, \"Height\": 0.02638629451394081, \"Left\": 0.6916081309318542, \"Top\": 0.5941540598869324}, \"Polygon\": [{\"X\": 0.6953966617584229, \"Y\": 0.5941540598869324}, {\"X\": 0.782469630241394, \"Y\": 0.6104008555412292}, {\"X\": 0.7786810994148254, \"Y\": 0.6205403804779053}, {\"X\": 0.6916081309318542, \"Y\": 0.6042935848236084}]}, \"Id\": \"5ecbd1b9-a7be-4a3e-86e2-e6674d0a5e62\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"77689a86-e4cf-4b15-892b-8408bf48e901\", \"df64247d-bd0d-4779-802a-11509a57936a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53929901123047, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09065466374158859, \"Height\": 0.02640386112034321, \"Left\": 0.8306487202644348, \"Top\": 0.6205015182495117}, \"Polygon\": [{\"X\": 0.8344597816467285, \"Y\": 0.6205015182495117}, {\"X\": 0.9213033318519592, \"Y\": 0.6367055177688599}, {\"X\": 0.9174922704696655, \"Y\": 0.6469054222106934}, {\"X\": 0.8306487202644348, \"Y\": 0.6307014226913452}]}, \"Id\": \"1523d62a-5f7f-46ac-9e67-9b9fcc946c67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ea203db9-5dfe-489e-9127-beada003db8c\", \"dc4883bb-a7e1-40cf-bd4e-e53117aa75ba\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55967712402344, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09048083424568176, \"Height\": 0.026502693071961403, \"Left\": 0.546470046043396, \"Top\": 0.5848565101623535}, \"Polygon\": [{\"X\": 0.5503338575363159, \"Y\": 0.5848565101623535}, {\"X\": 0.6369509100914001, \"Y\": 0.6010181903839111}, {\"X\": 0.6330870389938354, \"Y\": 0.611359179019928}, {\"X\": 0.546470046043396, \"Y\": 0.5951974987983704}]}, \"Id\": \"d11d1654-5a8f-4bce-97c1-b73b38913a8f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d03d707a-1182-4d61-a3a4-1a7d60bae389\", \"7cfd3640-abba-4e9d-a5c8-be7679229e41\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49091339111328, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09118827432394028, \"Height\": 0.026361647993326187, \"Left\": 0.6849558353424072, \"Top\": 0.611295223236084}, \"Polygon\": [{\"X\": 0.6887099742889404, \"Y\": 0.611295223236084}, {\"X\": 0.7761440873146057, \"Y\": 0.6276094317436218}, {\"X\": 0.7723899483680725, \"Y\": 0.6376569271087646}, {\"X\": 0.6849558353424072, \"Y\": 0.6213427186012268}]}, \"Id\": \"bfbab0e9-a392-4602-b5a0-e921847a1581\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d3a8e83c-0ba3-4fce-979f-bfbfa287173b\", \"23e860a4-ab96-4f32-a81e-247133ab065c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59001922607422, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09078992903232574, \"Height\": 0.026312826201319695, \"Left\": 0.8240339756011963, \"Top\": 0.637599527835846}, \"Polygon\": [{\"X\": 0.8277983665466309, \"Y\": 0.637599527835846}, {\"X\": 0.9148238897323608, \"Y\": 0.6538374423980713}, {\"X\": 0.9110594987869263, \"Y\": 0.6639123558998108}, {\"X\": 0.8240339756011963, \"Y\": 0.6476744413375854}]}, \"Id\": \"3f0996ba-39c4-4ac7-b7ae-1df6caf69882\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f2e536b-4fe7-42a5-b5d0-19f858df1593\", \"76648edf-59b3-4554-bc96-db90818ea0a6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70549011230469, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09100528806447983, \"Height\": 0.02654200792312622, \"Left\": 0.5394683480262756, \"Top\": 0.601945698261261}, \"Polygon\": [{\"X\": 0.543308675289154, \"Y\": 0.601945698261261}, {\"X\": 0.6304736137390137, \"Y\": 0.6182096600532532}, {\"X\": 0.62663334608078, \"Y\": 0.6284877061843872}, {\"X\": 0.5394683480262756, \"Y\": 0.6122238039970398}]}, \"Id\": \"ee1cac15-14a1-4310-ab71-03bb7e6613ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"315456af-97fc-48b4-bf9a-0a89d64041e7\", \"3e3e8647-3dcb-4123-aa7b-2c7efd92071c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59135437011719, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09069681167602539, \"Height\": 0.026310570538043976, \"Left\": 0.6784581542015076, \"Top\": 0.6281995177268982}, \"Polygon\": [{\"X\": 0.6822286248207092, \"Y\": 0.6281995177268982}, {\"X\": 0.769154965877533, \"Y\": 0.6444189548492432}, {\"X\": 0.7653844952583313, \"Y\": 0.6545100808143616}, {\"X\": 0.6784581542015076, \"Y\": 0.6382906436920166}]}, \"Id\": \"ea7951c7-5c1d-42b2-895e-709b7724ad1b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da64fd0d-c522-4f21-a13b-348aba10f2f8\", \"72156bb7-74f0-46aa-99fb-565be5d45fa7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6134033203125, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09069130569696426, \"Height\": 0.026432720944285393, \"Left\": 0.8176961541175842, \"Top\": 0.654603898525238}, \"Polygon\": [{\"X\": 0.8215160965919495, \"Y\": 0.654603898525238}, {\"X\": 0.9083874821662903, \"Y\": 0.6708130240440369}, {\"X\": 0.904567539691925, \"Y\": 0.6810365915298462}, {\"X\": 0.8176961541175842, \"Y\": 0.6648274064064026}]}, \"Id\": \"a236eb5e-0dfb-4a16-8fe5-c1b59f258869\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"73b6bf2f-4b80-4078-9b99-63306cf7d105\", \"80f7cbb3-6e0e-4403-be50-ac424252818c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70101928710938, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10557170957326889, \"Height\": 0.02991107665002346, \"Left\": 0.12460771203041077, \"Top\": 0.5382929444313049}, \"Polygon\": [{\"X\": 0.1287095546722412, \"Y\": 0.5382929444313049}, {\"X\": 0.23017941415309906, \"Y\": 0.5572260618209839}, {\"X\": 0.2260775864124298, \"Y\": 0.5682040452957153}, {\"X\": 0.12460771203041077, \"Y\": 0.5492709875106812}]}, \"Id\": \"6da20c5d-18e5-42d8-b68e-9881aa145360\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"70ab873d-ae46-4082-90e9-cbabb8a7f472\", \"a121f08a-aa2d-4b4a-a043-2a8ce4a4b1e7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.80342102050781, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13361187279224396, \"Height\": 0.03454333171248436, \"Left\": 0.11828533560037613, \"Top\": 0.5543450713157654}, \"Polygon\": [{\"X\": 0.12214630097150803, \"Y\": 0.5543450713157654}, {\"X\": 0.2518971860408783, \"Y\": 0.5785550475120544}, {\"X\": 0.2480362355709076, \"Y\": 0.58888840675354}, {\"X\": 0.11828533560037613, \"Y\": 0.564678430557251}]}, \"Id\": \"5a7566ff-c93d-481a-9695-7a099f543033\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"96565c7f-ccd3-4ad9-b479-d2d98fba3ada\", \"c6645d30-7159-46c8-b752-1ecc4cd126fc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 83.12872314453125, \"Text\": \"Hel lo World - barcode herel\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10952756553888321, \"Height\": 0.02463974803686142, \"Left\": 0.6461203694343567, \"Top\": 0.7700415849685669}, \"Polygon\": [{\"X\": 0.6478085517883301, \"Y\": 0.7700415849685669}, {\"X\": 0.7556479573249817, \"Y\": 0.7901631593704224}, {\"X\": 0.7539597749710083, \"Y\": 0.7946813106536865}, {\"X\": 0.6461203694343567, \"Y\": 0.7745597958564758}]}, \"Id\": \"7774585d-652d-4127-a83f-5acc27f091f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"939b47bf-683c-4972-96e0-0b01afd1163e\", \"7cee0c45-a25c-4136-87d8-f32d00713845\", \"089599ab-f193-497f-bec2-1d9c234b3ad1\", \"0baaaa23-fcc3-4152-927f-2b4d2c33ed92\", \"c998e8a5-188b-41ca-8329-3215b5cff2f5\", \"5609ef58-4a6c-4dad-bb80-e101f86302cf\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 98.95742797851562, \"Text\": \"Date\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033925384283065796, \"Height\": 0.01682826690375805, \"Left\": 0.9660745859146118, \"Top\": 0.16425272822380066}, \"Polygon\": [{\"X\": 0.97002112865448, \"Y\": 0.16425272822380066}, {\"X\": 1.0, \"Y\": 0.1705186367034912}, {\"X\": 0.9996561408042908, \"Y\": 0.18108099699020386}, {\"X\": 0.9660745859146118, \"Y\": 0.1748150885105133}]}, \"Id\": \"38a06641-35a9-49a3-abed-43d9a513213f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43965911865234, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.054066505283117294, \"Height\": 0.019384851679205894, \"Left\": 0.31192120909690857, \"Top\": 0.06893754005432129}, \"Polygon\": [{\"X\": 0.3156551420688629, \"Y\": 0.06893754005432129}, {\"X\": 0.36598771810531616, \"Y\": 0.07832899689674377}, {\"X\": 0.36225375533103943, \"Y\": 0.08832239359617233}, {\"X\": 0.31192120909690857, \"Y\": 0.07893093675374985}]}, \"Id\": \"89a5dfd9-b3af-4bd1-b3f0-5edaa034e81c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5345458984375, \"Text\": \"SomeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09515713155269623, \"Height\": 0.0274182315915823, \"Left\": 0.36616548895835876, \"Top\": 0.07908757030963898}, \"Polygon\": [{\"X\": 0.37004658579826355, \"Y\": 0.07908757030963898}, {\"X\": 0.4613226056098938, \"Y\": 0.09611859172582626}, {\"X\": 0.4574415385723114, \"Y\": 0.10650580376386642}, {\"X\": 0.36616548895835876, \"Y\": 0.08947477489709854}]}, \"Id\": \"73b9aa14-8e17-4739-9ff1-b82890a7d06d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86705780029297, \"Text\": \"Key1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0474117211997509, \"Height\": 0.021196739748120308, \"Left\": 0.9498752951622009, \"Top\": 0.21734513342380524}, \"Polygon\": [{\"X\": 0.9548357129096985, \"Y\": 0.21734513342380524}, {\"X\": 0.9972870349884033, \"Y\": 0.22526603937149048}, {\"X\": 0.9923266172409058, \"Y\": 0.2385418713092804}, {\"X\": 0.9498752951622009, \"Y\": 0.23062095046043396}]}, \"Id\": \"59b56ea9-9f94-45bf-96be-ca0211588ff4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39298248291016, \"Text\": \"Key2:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04964369162917137, \"Height\": 0.022407716140151024, \"Left\": 0.940548300743103, \"Top\": 0.2403356283903122}, \"Polygon\": [{\"X\": 0.945827841758728, \"Y\": 0.2403356283903122}, {\"X\": 0.9901919960975647, \"Y\": 0.24861346185207367}, {\"X\": 0.9849125146865845, \"Y\": 0.26274335384368896}, {\"X\": 0.940548300743103, \"Y\": 0.2544655203819275}]}, \"Id\": \"bc50d977-7b8d-4c9f-a3a6-bd486df9bb95\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86328125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0483182929456234, \"Height\": 0.018529260531067848, \"Left\": 0.2998875081539154, \"Top\": 0.16632318496704102}, \"Polygon\": [{\"X\": 0.30370858311653137, \"Y\": 0.16632318496704102}, {\"X\": 0.3482058048248291, \"Y\": 0.17462582886219025}, {\"X\": 0.34438472986221313, \"Y\": 0.1848524510860443}, {\"X\": 0.2998875081539154, \"Y\": 0.1765497922897339}]}, \"Id\": \"028d9357-1a3c-4c7a-86a9-d2c011a39838\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9528579711914, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041640933603048325, \"Height\": 0.01702379435300827, \"Left\": 0.3493242859840393, \"Top\": 0.17592933773994446}, \"Polygon\": [{\"X\": 0.3530411124229431, \"Y\": 0.17592933773994446}, {\"X\": 0.39096522331237793, \"Y\": 0.18300552666187286}, {\"X\": 0.3872483968734741, \"Y\": 0.19295313954353333}, {\"X\": 0.3493242859840393, \"Y\": 0.18587695062160492}]}, \"Id\": \"2f985b37-3c6d-4273-a22d-25434dd6560c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84615325927734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04847468435764313, \"Height\": 0.01855938509106636, \"Left\": 0.40539106726646423, \"Top\": 0.18633735179901123}, \"Polygon\": [{\"X\": 0.40921252965927124, \"Y\": 0.18633735179901123}, {\"X\": 0.45386576652526855, \"Y\": 0.19466911256313324}, {\"X\": 0.45004430413246155, \"Y\": 0.2048967331647873}, {\"X\": 0.40539106726646423, \"Y\": 0.19656497240066528}]}, \"Id\": \"ddf803d9-bb68-4319-b531-bbc3b81bdf2c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41432189941406, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041340164840221405, \"Height\": 0.016918154433369637, \"Left\": 0.45537102222442627, \"Top\": 0.1959325224161148}, \"Polygon\": [{\"X\": 0.4590679705142975, \"Y\": 0.1959325224161148}, {\"X\": 0.49671119451522827, \"Y\": 0.20295630395412445}, {\"X\": 0.49301424622535706, \"Y\": 0.2128506749868393}, {\"X\": 0.45537102222442627, \"Y\": 0.20582689344882965}]}, \"Id\": \"0f1c9c2d-0dab-421b-b267-a28c279bc72f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75174713134766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04803469404578209, \"Height\": 0.018361948430538177, \"Left\": 0.5116857886314392, \"Top\": 0.2066051959991455}, \"Polygon\": [{\"X\": 0.5154609084129333, \"Y\": 0.2066051959991455}, {\"X\": 0.559720516204834, \"Y\": 0.21486349403858185}, {\"X\": 0.5559453368186951, \"Y\": 0.2249671369791031}, {\"X\": 0.5116857886314392, \"Y\": 0.21670883893966675}]}, \"Id\": \"33f8714d-d5a1-4775-accc-234337cb1263\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42659759521484, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0410100519657135, \"Height\": 0.01687573455274105, \"Left\": 0.5612877011299133, \"Top\": 0.2161642462015152}, \"Polygon\": [{\"X\": 0.564992368221283, \"Y\": 0.2161642462015152}, {\"X\": 0.6022977828979492, \"Y\": 0.22312499582767487}, {\"X\": 0.5985931158065796, \"Y\": 0.2330399751663208}, {\"X\": 0.5612877011299133, \"Y\": 0.22607924044132233}]}, \"Id\": \"14a7cc25-20f3-40f5-9f53-c76529134e92\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81610107421875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048238009214401245, \"Height\": 0.018296098336577415, \"Left\": 0.29351136088371277, \"Top\": 0.18366076052188873}, \"Polygon\": [{\"X\": 0.2972448170185089, \"Y\": 0.18366076052188873}, {\"X\": 0.341749370098114, \"Y\": 0.191964790225029}, {\"X\": 0.33801591396331787, \"Y\": 0.2019568681716919}, {\"X\": 0.29351136088371277, \"Y\": 0.19365283846855164}]}, \"Id\": \"65d23fab-b0ce-431e-9c82-c9848df6d850\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.54981994628906, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04120853543281555, \"Height\": 0.01669728383421898, \"Left\": 0.34329551458358765, \"Top\": 0.19324785470962524}, \"Polygon\": [{\"X\": 0.346913605928421, \"Y\": 0.19324785470962524}, {\"X\": 0.3845040500164032, \"Y\": 0.20026178658008575}, {\"X\": 0.38088592886924744, \"Y\": 0.20994514226913452}, {\"X\": 0.34329551458358765, \"Y\": 0.202931210398674}]}, \"Id\": \"51ab0c73-20ec-49bf-aca5-332744c33246\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.843505859375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04822355508804321, \"Height\": 0.01835164986550808, \"Left\": 0.39929065108299255, \"Top\": 0.20360983908176422}, \"Polygon\": [{\"X\": 0.40304750204086304, \"Y\": 0.20360983908176422}, {\"X\": 0.44751420617103577, \"Y\": 0.2119068056344986}, {\"X\": 0.4437573552131653, \"Y\": 0.22196148335933685}, {\"X\": 0.39929065108299255, \"Y\": 0.21366453170776367}]}, \"Id\": \"5f064466-a4bc-463d-89b8-5fdb22bb0fff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30341339111328, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04183383285999298, \"Height\": 0.0173749141395092, \"Left\": 0.44881418347358704, \"Top\": 0.21237289905548096}, \"Polygon\": [{\"X\": 0.4526575803756714, \"Y\": 0.21237289905548096}, {\"X\": 0.4906480014324188, \"Y\": 0.21946145594120026}, {\"X\": 0.4868046045303345, \"Y\": 0.22974780201911926}, {\"X\": 0.44881418347358704, \"Y\": 0.22265924513339996}]}, \"Id\": \"ca4fa152-1838-45dd-a31e-027d51f1eb03\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69021606445312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048330266028642654, \"Height\": 0.01843193545937538, \"Left\": 0.505092203617096, \"Top\": 0.22363746166229248}, \"Polygon\": [{\"X\": 0.5088732838630676, \"Y\": 0.22363746166229248}, {\"X\": 0.5534224510192871, \"Y\": 0.2319498062133789}, {\"X\": 0.5496413707733154, \"Y\": 0.24206939339637756}, {\"X\": 0.505092203617096, \"Y\": 0.23375704884529114}]}, \"Id\": \"9eb0eaa0-2259-4994-b073-74b6b404b27c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2886962890625, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04094554856419563, \"Height\": 0.017002873122692108, \"Left\": 0.5549495816230774, \"Top\": 0.2331417053937912}, \"Polygon\": [{\"X\": 0.5587100982666016, \"Y\": 0.2331417053937912}, {\"X\": 0.5958951115608215, \"Y\": 0.24007998406887054}, {\"X\": 0.5921345353126526, \"Y\": 0.2501445710659027}, {\"X\": 0.5549495816230774, \"Y\": 0.24320630729198456}]}, \"Id\": \"48d5e33a-3594-470e-816d-132cabb36e58\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87154388427734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04784669354557991, \"Height\": 0.018122045323252678, \"Left\": 0.2872917950153351, \"Top\": 0.20069779455661774}, \"Polygon\": [{\"X\": 0.2909846603870392, \"Y\": 0.20069779455661774}, {\"X\": 0.3351384997367859, \"Y\": 0.20893637835979462}, {\"X\": 0.3314456343650818, \"Y\": 0.21881984174251556}, {\"X\": 0.2872917950153351, \"Y\": 0.21058125793933868}]}, \"Id\": \"7b7bc6b7-e9d7-40b2-9209-6b6765d78099\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.12890625, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04112667217850685, \"Height\": 0.016736488789319992, \"Left\": 0.3369319438934326, \"Top\": 0.210386723279953}, \"Polygon\": [{\"X\": 0.34057191014289856, \"Y\": 0.210386723279953}, {\"X\": 0.37805861234664917, \"Y\": 0.2173812985420227}, {\"X\": 0.37441861629486084, \"Y\": 0.2271232157945633}, {\"X\": 0.3369319438934326, \"Y\": 0.2201286405324936}]}, \"Id\": \"7fb5faf4-9f59-4362-bcac-48cd600a2576\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84127807617188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047942571341991425, \"Height\": 0.01829698495566845, \"Left\": 0.39292335510253906, \"Top\": 0.22061824798583984}, \"Polygon\": [{\"X\": 0.3966793119907379, \"Y\": 0.22061824798583984}, {\"X\": 0.4408659338951111, \"Y\": 0.2288629561662674}, {\"X\": 0.43710997700691223, \"Y\": 0.23891523480415344}, {\"X\": 0.39292335510253906, \"Y\": 0.23067054152488708}]}, \"Id\": \"fc90e3af-b02d-43dd-937c-04a2c8daf7b7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.22941589355469, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041152916848659515, \"Height\": 0.01684814877808094, \"Left\": 0.4426412880420685, \"Top\": 0.23026174306869507}, \"Polygon\": [{\"X\": 0.4463241696357727, \"Y\": 0.23026174306869507}, {\"X\": 0.4837942123413086, \"Y\": 0.23725320398807526}, {\"X\": 0.48011136054992676, \"Y\": 0.24710988998413086}, {\"X\": 0.4426412880420685, \"Y\": 0.24011842906475067}]}, \"Id\": \"fd730308-f558-4123-98a4-4238e6da4a94\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75401306152344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04850388318300247, \"Height\": 0.01839432492852211, \"Left\": 0.4987255036830902, \"Top\": 0.2407314032316208}, \"Polygon\": [{\"X\": 0.5024784803390503, \"Y\": 0.2407314032316208}, {\"X\": 0.5472293496131897, \"Y\": 0.24908138811588287}, {\"X\": 0.543476402759552, \"Y\": 0.2591257095336914}, {\"X\": 0.4987255036830902, \"Y\": 0.2507757246494293}]}, \"Id\": \"1af85064-0459-4f99-91b3-ece74a285fdb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54336547851562, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04194597899913788, \"Height\": 0.017976028844714165, \"Left\": 0.547301173210144, \"Top\": 0.24962623417377472}, \"Polygon\": [{\"X\": 0.5513775944709778, \"Y\": 0.24962623417377472}, {\"X\": 0.5892471671104431, \"Y\": 0.25669223070144653}, {\"X\": 0.5851706862449646, \"Y\": 0.26760226488113403}, {\"X\": 0.547301173210144, \"Y\": 0.260536253452301}]}, \"Id\": \"1821d57e-6d94-4527-b3a4-aad54d8772f5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86390686035156, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05528726428747177, \"Height\": 0.02086189202964306, \"Left\": 0.5020479559898376, \"Top\": 0.2860080897808075}, \"Polygon\": [{\"X\": 0.506283700466156, \"Y\": 0.2860080897808075}, {\"X\": 0.5573352575302124, \"Y\": 0.2955337166786194}, {\"X\": 0.553099513053894, \"Y\": 0.3068699836730957}, {\"X\": 0.5020479559898376, \"Y\": 0.2973443865776062}]}, \"Id\": \"acef5288-3172-4829-82c5-4342dffdf35b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40704345703125, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04779736325144768, \"Height\": 0.019262656569480896, \"Left\": 0.5594640970230103, \"Top\": 0.29710114002227783}, \"Polygon\": [{\"X\": 0.5636187791824341, \"Y\": 0.29710114002227783}, {\"X\": 0.6072614789009094, \"Y\": 0.3052443563938141}, {\"X\": 0.6031067371368408, \"Y\": 0.3163638114929199}, {\"X\": 0.5594640970230103, \"Y\": 0.30822059512138367}]}, \"Id\": \"cf41b4fc-0a58-48fb-b757-bc968029783d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81043243408203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0562843382358551, \"Height\": 0.02142997831106186, \"Left\": 0.6214739084243774, \"Top\": 0.3084203600883484}, \"Polygon\": [{\"X\": 0.6258630752563477, \"Y\": 0.3084203600883484}, {\"X\": 0.6777582764625549, \"Y\": 0.3181034028530121}, {\"X\": 0.6733691096305847, \"Y\": 0.32985034584999084}, {\"X\": 0.6214739084243774, \"Y\": 0.32016733288764954}]}, \"Id\": \"8b17c76d-4348-4d0e-be18-c80fb8f74fad\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32965850830078, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048362087458372116, \"Height\": 0.01957486756145954, \"Left\": 0.6793976426124573, \"Top\": 0.3196569085121155}, \"Polygon\": [{\"X\": 0.683635413646698, \"Y\": 0.3196569085121155}, {\"X\": 0.7277597784996033, \"Y\": 0.32788997888565063}, {\"X\": 0.7235220074653625, \"Y\": 0.33923178911209106}, {\"X\": 0.6793976426124573, \"Y\": 0.3309987187385559}]}, \"Id\": \"9784ae98-c270-4d40-925a-e1f8f868265a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88145446777344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05602572113275528, \"Height\": 0.021199733018875122, \"Left\": 0.7420390248298645, \"Top\": 0.33138054609298706}, \"Polygon\": [{\"X\": 0.7463550567626953, \"Y\": 0.33138054609298706}, {\"X\": 0.7980647087097168, \"Y\": 0.34102895855903625}, {\"X\": 0.793748676776886, \"Y\": 0.3525802791118622}, {\"X\": 0.7420390248298645, \"Y\": 0.342931866645813}]}, \"Id\": \"e58b75b9-4a5f-4cc8-bf7e-7929cd51bdcf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31267547607422, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04862989857792854, \"Height\": 0.01997637376189232, \"Left\": 0.7987709641456604, \"Top\": 0.3421560823917389}, \"Polygon\": [{\"X\": 0.803149938583374, \"Y\": 0.3421560823917389}, {\"X\": 0.8474008440971375, \"Y\": 0.3504127562046051}, {\"X\": 0.8430219292640686, \"Y\": 0.3621324300765991}, {\"X\": 0.7987709641456604, \"Y\": 0.3538757562637329}]}, \"Id\": \"6ac2008d-4d03-45c6-9d58-d24d30839be2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71342468261719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05662370100617409, \"Height\": 0.021587073802947998, \"Left\": 0.8608335852622986, \"Top\": 0.3537311553955078}, \"Polygon\": [{\"X\": 0.8652604222297668, \"Y\": 0.3537311553955078}, {\"X\": 0.9174572825431824, \"Y\": 0.36347049474716187}, {\"X\": 0.9130305051803589, \"Y\": 0.3753182291984558}, {\"X\": 0.8608335852622986, \"Y\": 0.36557891964912415}]}, \"Id\": \"7224f0fe-8cf7-4a68-bf6b-416f2dc99370\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35901641845703, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04921729862689972, \"Height\": 0.019876396283507347, \"Left\": 0.9186148643493652, \"Top\": 0.36493924260139465}, \"Polygon\": [{\"X\": 0.9229096174240112, \"Y\": 0.36493924260139465}, {\"X\": 0.9678321480751038, \"Y\": 0.3733212351799011}, {\"X\": 0.9635373950004578, \"Y\": 0.38481563329696655}, {\"X\": 0.9186148643493652, \"Y\": 0.3764336109161377}]}, \"Id\": \"f2601c3f-8b09-4d09-af0b-b5d95a525040\"}, {\"BlockType\": \"WORD\", \"Confidence\": 66.65990447998047, \"Text\": \"Va\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018560918048024178, \"Height\": 0.01479180995374918, \"Left\": 0.9814390540122986, \"Top\": 0.3767314553260803}, \"Polygon\": [{\"X\": 0.9857025146484375, \"Y\": 0.3767314553260803}, {\"X\": 1.0, \"Y\": 0.38011279702186584}, {\"X\": 0.999561071395874, \"Y\": 0.3915232717990875}, {\"X\": 0.9814390540122986, \"Y\": 0.3881419003009796}]}, \"Id\": \"f07966c3-5ad0-4cdc-862d-8b58dc47e980\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87809753417969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05602113902568817, \"Height\": 0.02123650349676609, \"Left\": 0.49441617727279663, \"Top\": 0.3056826591491699}, \"Polygon\": [{\"X\": 0.498747318983078, \"Y\": 0.3056826591491699}, {\"X\": 0.550437331199646, \"Y\": 0.31532740592956543}, {\"X\": 0.5461061596870422, \"Y\": 0.32691916823387146}, {\"X\": 0.49441617727279663, \"Y\": 0.31727442145347595}]}, \"Id\": \"c07aa859-dda9-4016-b140-87f0b5abd818\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.12158203125, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04850883409380913, \"Height\": 0.0196840763092041, \"Left\": 0.5512793064117432, \"Top\": 0.3166460692882538}, \"Polygon\": [{\"X\": 0.5555499196052551, \"Y\": 0.3166460692882538}, {\"X\": 0.5997881293296814, \"Y\": 0.32490038871765137}, {\"X\": 0.5955175161361694, \"Y\": 0.3363301455974579}, {\"X\": 0.5512793064117432, \"Y\": 0.3280758261680603}]}, \"Id\": \"5631085c-f510-4ce7-a637-9e2093345367\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84739685058594, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056020040065050125, \"Height\": 0.021306244656443596, \"Left\": 0.6142021417617798, \"Top\": 0.32827162742614746}, \"Polygon\": [{\"X\": 0.6185613870620728, \"Y\": 0.32827162742614746}, {\"X\": 0.6702221632003784, \"Y\": 0.33791089057922363}, {\"X\": 0.6658629179000854, \"Y\": 0.3495778739452362}, {\"X\": 0.6142021417617798, \"Y\": 0.33993858098983765}]}, \"Id\": \"d66453e1-b6f8-43ae-a845-4e30c2f8301f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.71331787109375, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04865743964910507, \"Height\": 0.019706225022673607, \"Left\": 0.671618640422821, \"Top\": 0.3395088315010071}, \"Polygon\": [{\"X\": 0.6758870482444763, \"Y\": 0.3395088315010071}, {\"X\": 0.7202761173248291, \"Y\": 0.34779131412506104}, {\"X\": 0.7160077095031738, \"Y\": 0.35921505093574524}, {\"X\": 0.671618640422821, \"Y\": 0.35093259811401367}]}, \"Id\": \"a6d21299-6c9d-43d6-9b69-ed765c98fee3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85498046875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05556325241923332, \"Height\": 0.02098901756107807, \"Left\": 0.7345737814903259, \"Top\": 0.35134628415107727}, \"Polygon\": [{\"X\": 0.738839864730835, \"Y\": 0.35134628415107727}, {\"X\": 0.7901370525360107, \"Y\": 0.36091774702072144}, {\"X\": 0.7858709692955017, \"Y\": 0.3723353147506714}, {\"X\": 0.7345737814903259, \"Y\": 0.3627638816833496}]}, \"Id\": \"c3d6fbca-7969-425a-a024-9a1b32a19dcd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24427795410156, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04879504069685936, \"Height\": 0.01979018934071064, \"Left\": 0.791121780872345, \"Top\": 0.3621414601802826}, \"Polygon\": [{\"X\": 0.7954135537147522, \"Y\": 0.3621414601802826}, {\"X\": 0.8399168252944946, \"Y\": 0.37044522166252136}, {\"X\": 0.8356249928474426, \"Y\": 0.3819316327571869}, {\"X\": 0.791121780872345, \"Y\": 0.3736278712749481}]}, \"Id\": \"eba16df5-188c-4a4e-8e1c-6ef2676cb919\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8244400024414, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056098174303770065, \"Height\": 0.02133004553616047, \"Left\": 0.8536624312400818, \"Top\": 0.37359318137168884}, \"Polygon\": [{\"X\": 0.8580254316329956, \"Y\": 0.37359318137168884}, {\"X\": 0.909760594367981, \"Y\": 0.38324636220932007}, {\"X\": 0.9053976535797119, \"Y\": 0.39492321014404297}, {\"X\": 0.8536624312400818, \"Y\": 0.38527002930641174}]}, \"Id\": \"f4d8a8f0-8720-4113-a9a6-1f55674d9ec6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4974136352539, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04900278523564339, \"Height\": 0.019649675115942955, \"Left\": 0.9111382961273193, \"Top\": 0.3849465847015381}, \"Polygon\": [{\"X\": 0.9153580665588379, \"Y\": 0.3849465847015381}, {\"X\": 0.9601410627365112, \"Y\": 0.3933025598526001}, {\"X\": 0.9559212923049927, \"Y\": 0.4045962691307068}, {\"X\": 0.9111382961273193, \"Y\": 0.3962402939796448}]}, \"Id\": \"3b4df430-29f1-42fd-b44b-7e61e285da89\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05113983154297, \"Text\": \"Va\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026222743093967438, \"Height\": 0.016037505120038986, \"Left\": 0.9737772345542908, \"Top\": 0.3967236578464508}, \"Polygon\": [{\"X\": 0.9781026840209961, \"Y\": 0.3967236578464508}, {\"X\": 1.0, \"Y\": 0.4011847674846649}, {\"X\": 0.9976860880851746, \"Y\": 0.4127611517906189}, {\"X\": 0.9737772345542908, \"Y\": 0.4083000421524048}]}, \"Id\": \"3dfe61d5-a1f7-4e68-87bf-e58085e2aee4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86026763916016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05559371039271355, \"Height\": 0.02107679285109043, \"Left\": 0.48714059591293335, \"Top\": 0.3256484866142273}, \"Polygon\": [{\"X\": 0.4914396405220032, \"Y\": 0.3256484866142273}, {\"X\": 0.5427343249320984, \"Y\": 0.33521947264671326}, {\"X\": 0.5384352803230286, \"Y\": 0.3467252850532532}, {\"X\": 0.48714059591293335, \"Y\": 0.3371542990207672}]}, \"Id\": \"62ca1896-ae6d-44f2-b5f0-698d7d9e43a9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35517883300781, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04832791909575462, \"Height\": 0.019531214609742165, \"Left\": 0.5436444878578186, \"Top\": 0.3365682065486908}, \"Polygon\": [{\"X\": 0.5478672981262207, \"Y\": 0.3365682065486908}, {\"X\": 0.5919724106788635, \"Y\": 0.34479770064353943}, {\"X\": 0.5877496600151062, \"Y\": 0.356099396944046}, {\"X\": 0.5436444878578186, \"Y\": 0.3478699028491974}]}, \"Id\": \"6a6d30c1-490b-4c28-87e2-89ebb038b09c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84280395507812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05610263720154762, \"Height\": 0.0213396567851305, \"Left\": 0.6067701578140259, \"Top\": 0.34818658232688904}, \"Polygon\": [{\"X\": 0.6111366748809814, \"Y\": 0.34818658232688904}, {\"X\": 0.6628727912902832, \"Y\": 0.3578399419784546}, {\"X\": 0.6585063338279724, \"Y\": 0.3695262372493744}, {\"X\": 0.6067701578140259, \"Y\": 0.35987287759780884}]}, \"Id\": \"358496af-26c8-41ac-ae04-0eda2cae4f2b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43861389160156, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04815957322716713, \"Height\": 0.019414076581597328, \"Left\": 0.6643660068511963, \"Top\": 0.3594532310962677}, \"Polygon\": [{\"X\": 0.6685543656349182, \"Y\": 0.3594532310962677}, {\"X\": 0.7125256061553955, \"Y\": 0.36765772104263306}, {\"X\": 0.7083372473716736, \"Y\": 0.3788672983646393}, {\"X\": 0.6643660068511963, \"Y\": 0.37066277861595154}]}, \"Id\": \"95ba4bbb-bc31-45dd-b57e-c84a696b8fad\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7667465209961, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055627934634685516, \"Height\": 0.021195437759160995, \"Left\": 0.7271082401275635, \"Top\": 0.37107229232788086}, \"Polygon\": [{\"X\": 0.7314523458480835, \"Y\": 0.37107229232788086}, {\"X\": 0.7827361226081848, \"Y\": 0.38064125180244446}, {\"X\": 0.7783920168876648, \"Y\": 0.39226773381233215}, {\"X\": 0.7271082401275635, \"Y\": 0.38269877433776855}]}, \"Id\": \"8e658971-93fe-487f-b9dc-a4fe34dcf052\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46072387695312, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04820311814546585, \"Height\": 0.01956060342490673, \"Left\": 0.7840688228607178, \"Top\": 0.382038414478302}, \"Polygon\": [{\"X\": 0.7883127331733704, \"Y\": 0.382038414478302}, {\"X\": 0.832271933555603, \"Y\": 0.3902406692504883}, {\"X\": 0.8280279636383057, \"Y\": 0.4015990197658539}, {\"X\": 0.7840688228607178, \"Y\": 0.3933967649936676}]}, \"Id\": \"1701bd58-d91e-4eb3-97cc-79577a97e6df\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84278869628906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05637241154909134, \"Height\": 0.021584507077932358, \"Left\": 0.8461350202560425, \"Top\": 0.39335736632347107}, \"Polygon\": [{\"X\": 0.8505796194076538, \"Y\": 0.39335736632347107}, {\"X\": 0.9025074243545532, \"Y\": 0.40304648876190186}, {\"X\": 0.8980628252029419, \"Y\": 0.4149418771266937}, {\"X\": 0.8461350202560425, \"Y\": 0.4052527844905853}]}, \"Id\": \"7b98f47d-90b4-4b61-b956-751e0cf8a8e9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50529479980469, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048752278089523315, \"Height\": 0.01974782533943653, \"Left\": 0.9040697813034058, \"Top\": 0.4046253561973572}, \"Polygon\": [{\"X\": 0.9083477854728699, \"Y\": 0.4046253561973572}, {\"X\": 0.9528220891952515, \"Y\": 0.41292375326156616}, {\"X\": 0.9485440850257874, \"Y\": 0.42437317967414856}, {\"X\": 0.9040697813034058, \"Y\": 0.41607481241226196}]}, \"Id\": \"d9ee5025-d478-4e57-864e-fdb119e46288\"}, {\"BlockType\": \"WORD\", \"Confidence\": 89.4522933959961, \"Text\": \"Val\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033645473420619965, \"Height\": 0.017601704224944115, \"Left\": 0.9663545489311218, \"Top\": 0.4162122905254364}, \"Polygon\": [{\"X\": 0.9707815051078796, \"Y\": 0.4162122905254364}, {\"X\": 1.0, \"Y\": 0.42196574807167053}, {\"X\": 0.9971897602081299, \"Y\": 0.43381398916244507}, {\"X\": 0.9663545489311218, \"Y\": 0.42806050181388855}]}, \"Id\": \"233ee45d-5e82-41e1-b8c3-b38eac9c5875\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79561614990234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056212492287158966, \"Height\": 0.021286023780703545, \"Left\": 0.4792167544364929, \"Top\": 0.345206081867218}, \"Polygon\": [{\"X\": 0.4835534691810608, \"Y\": 0.345206081867218}, {\"X\": 0.5354292392730713, \"Y\": 0.3548854887485504}, {\"X\": 0.5310925245285034, \"Y\": 0.3664920926094055}, {\"X\": 0.4792167544364929, \"Y\": 0.3568127155303955}]}, \"Id\": \"ec97f0a8-eb08-4a27-a8bb-fa42602589c1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68016815185547, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048173293471336365, \"Height\": 0.01939558982849121, \"Left\": 0.5365394949913025, \"Top\": 0.35623013973236084}, \"Polygon\": [{\"X\": 0.5407193899154663, \"Y\": 0.35623013973236084}, {\"X\": 0.5847128033638, \"Y\": 0.3644387722015381}, {\"X\": 0.5805329084396362, \"Y\": 0.37562572956085205}, {\"X\": 0.5365394949913025, \"Y\": 0.3674170672893524}]}, \"Id\": \"63b6157b-d344-4145-8ee1-ffeedf3382a8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8287353515625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05597109720110893, \"Height\": 0.021338634192943573, \"Left\": 0.5991808772087097, \"Top\": 0.3679051101207733}, \"Polygon\": [{\"X\": 0.6035568118095398, \"Y\": 0.3679051101207733}, {\"X\": 0.6551519632339478, \"Y\": 0.37753215432167053}, {\"X\": 0.6507760286331177, \"Y\": 0.3892437219619751}, {\"X\": 0.5991808772087097, \"Y\": 0.3796166777610779}]}, \"Id\": \"d19f0602-b496-4f2b-b0cb-8559169265d4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44657135009766, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048074424266815186, \"Height\": 0.019259804859757423, \"Left\": 0.6569651365280151, \"Top\": 0.37921664118766785}, \"Polygon\": [{\"X\": 0.6610979437828064, \"Y\": 0.37921664118766785}, {\"X\": 0.7050395607948303, \"Y\": 0.3874156177043915}, {\"X\": 0.7009068131446838, \"Y\": 0.3984764516353607}, {\"X\": 0.6569651365280151, \"Y\": 0.3902774453163147}]}, \"Id\": \"894edf37-5b78-4986-846e-92a758d899dc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76412963867188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05586880445480347, \"Height\": 0.021159980446100235, \"Left\": 0.7195751070976257, \"Top\": 0.3908856213092804}, \"Polygon\": [{\"X\": 0.7238869667053223, \"Y\": 0.3908856213092804}, {\"X\": 0.7754439115524292, \"Y\": 0.40050554275512695}, {\"X\": 0.7711321115493774, \"Y\": 0.4120456278324127}, {\"X\": 0.7195751070976257, \"Y\": 0.40242570638656616}]}, \"Id\": \"d555eda7-2c97-4a51-8aa2-1e1953fdf61e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42489624023438, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04854366555809975, \"Height\": 0.01961570605635643, \"Left\": 0.776408851146698, \"Top\": 0.40174949169158936}, \"Polygon\": [{\"X\": 0.7806493639945984, \"Y\": 0.40174949169158936}, {\"X\": 0.8249524831771851, \"Y\": 0.41001591086387634}, {\"X\": 0.8207119107246399, \"Y\": 0.4213652014732361}, {\"X\": 0.776408851146698, \"Y\": 0.4130987524986267}]}, \"Id\": \"53a21353-c752-4beb-8415-1e5bdb28e826\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8318099975586, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05614851415157318, \"Height\": 0.02125362679362297, \"Left\": 0.8383868932723999, \"Top\": 0.413318395614624}, \"Polygon\": [{\"X\": 0.8427154421806335, \"Y\": 0.413318395614624}, {\"X\": 0.8945354223251343, \"Y\": 0.4229874014854431}, {\"X\": 0.8902069330215454, \"Y\": 0.4345720410346985}, {\"X\": 0.8383868932723999, \"Y\": 0.4249030351638794}]}, \"Id\": \"f28fa35b-9f2a-4baf-abdb-f65678ff90f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60819244384766, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049194175750017166, \"Height\": 0.019652659073472023, \"Left\": 0.8961758017539978, \"Top\": 0.42439737915992737}, \"Polygon\": [{\"X\": 0.9003824591636658, \"Y\": 0.42439737915992737}, {\"X\": 0.9453700184822083, \"Y\": 0.432791531085968}, {\"X\": 0.9411633610725403, \"Y\": 0.44405004382133484}, {\"X\": 0.8961758017539978, \"Y\": 0.4356558918952942}]}, \"Id\": \"87d4d42e-5efa-4e75-bf5a-4ddfa25b48dd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46519470214844, \"Text\": \"Valu\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04136743023991585, \"Height\": 0.020033221691846848, \"Left\": 0.9586325883865356, \"Top\": 0.4358324706554413}, \"Polygon\": [{\"X\": 0.9632312655448914, \"Y\": 0.4358324706554413}, {\"X\": 1.0, \"Y\": 0.44355782866477966}, {\"X\": 1.0, \"Y\": 0.45586568117141724}, {\"X\": 0.9586325883865356, \"Y\": 0.44814032316207886}]}, \"Id\": \"264b89e2-a21c-4271-85ba-32c7e5b0b457\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87550354003906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05630456656217575, \"Height\": 0.02125667780637741, \"Left\": 0.47199568152427673, \"Top\": 0.365188330411911}, \"Polygon\": [{\"X\": 0.4763137102127075, \"Y\": 0.365188330411911}, {\"X\": 0.5283002257347107, \"Y\": 0.3748883903026581}, {\"X\": 0.5239822268486023, \"Y\": 0.386445015668869}, {\"X\": 0.47199568152427673, \"Y\": 0.37674492597579956}]}, \"Id\": \"e11c478c-9b17-43b4-97e5-351d1c79b010\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49176788330078, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04829838499426842, \"Height\": 0.019584180787205696, \"Left\": 0.5289145708084106, \"Top\": 0.376115620136261}, \"Polygon\": [{\"X\": 0.5331608653068542, \"Y\": 0.376115620136261}, {\"X\": 0.5772129893302917, \"Y\": 0.3843352198600769}, {\"X\": 0.5729666948318481, \"Y\": 0.39569979906082153}, {\"X\": 0.5289145708084106, \"Y\": 0.3874801993370056}]}, \"Id\": \"59cc8f0b-d16f-408b-8b55-3122a70b8346\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81714630126953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05598852038383484, \"Height\": 0.02123929001390934, \"Left\": 0.5915845632553101, \"Top\": 0.3877573013305664}, \"Polygon\": [{\"X\": 0.5959193110466003, \"Y\": 0.3877573013305664}, {\"X\": 0.6475731134414673, \"Y\": 0.3973952829837799}, {\"X\": 0.643238365650177, \"Y\": 0.40899658203125}, {\"X\": 0.5915845632553101, \"Y\": 0.3993586003780365}]}, \"Id\": \"77f5e3ae-37c9-4f4f-9f11-d7fd359747df\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9341049194336, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05023708567023277, \"Height\": 0.019894536584615707, \"Left\": 0.6480684876441956, \"Top\": 0.3987675905227661}, \"Polygon\": [{\"X\": 0.6522940993309021, \"Y\": 0.3987675905227661}, {\"X\": 0.6983055472373962, \"Y\": 0.4073527753353119}, {\"X\": 0.6940799355506897, \"Y\": 0.4186621308326721}, {\"X\": 0.6480684876441956, \"Y\": 0.41007691621780396}]}, \"Id\": \"61cd5db4-1750-46c1-ae3d-ae36e0dac43e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83882904052734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05512850731611252, \"Height\": 0.021010391414165497, \"Left\": 0.7122830152511597, \"Top\": 0.410719096660614}, \"Polygon\": [{\"X\": 0.7165902256965637, \"Y\": 0.410719096660614}, {\"X\": 0.767411470413208, \"Y\": 0.42020171880722046}, {\"X\": 0.763104259967804, \"Y\": 0.4317294657230377}, {\"X\": 0.7122830152511597, \"Y\": 0.4222468435764313}]}, \"Id\": \"8141d841-3f69-4828-9406-1391101ddfec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39311981201172, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04851048067212105, \"Height\": 0.019512584432959557, \"Left\": 0.7687880396842957, \"Top\": 0.4216762185096741}, \"Polygon\": [{\"X\": 0.7729896903038025, \"Y\": 0.4216762185096741}, {\"X\": 0.8172985315322876, \"Y\": 0.4299437403678894}, {\"X\": 0.8130969405174255, \"Y\": 0.4411888122558594}, {\"X\": 0.7687880396842957, \"Y\": 0.43292129039764404}]}, \"Id\": \"d1fcd990-bb74-4b3a-813b-6b5ce4f55fe5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77066802978516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05616354942321777, \"Height\": 0.021275632083415985, \"Left\": 0.8312168717384338, \"Top\": 0.43313363194465637}, \"Polygon\": [{\"X\": 0.8355530500411987, \"Y\": 0.43313363194465637}, {\"X\": 0.8873804211616516, \"Y\": 0.4428040087223053}, {\"X\": 0.8830441832542419, \"Y\": 0.45440927147865295}, {\"X\": 0.8312168717384338, \"Y\": 0.44473889470100403}]}, \"Id\": \"1903fff3-0ebc-4e4f-9387-a32511fc609f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40752410888672, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04933471605181694, \"Height\": 0.019548801705241203, \"Left\": 0.8885024785995483, \"Top\": 0.4444645643234253}, \"Polygon\": [{\"X\": 0.8926568627357483, \"Y\": 0.4444645643234253}, {\"X\": 0.9378371834754944, \"Y\": 0.4528946876525879}, {\"X\": 0.9336827993392944, \"Y\": 0.46401336789131165}, {\"X\": 0.8885024785995483, \"Y\": 0.45558324456214905}]}, \"Id\": \"fcf846c3-af67-4317-ba31-b95cf4eeab8a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.31489562988281, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04915650561451912, \"Height\": 0.02103527821600437, \"Left\": 0.9508435130119324, \"Top\": 0.45572277903556824}, \"Polygon\": [{\"X\": 0.9553006887435913, \"Y\": 0.45572277903556824}, {\"X\": 1.0, \"Y\": 0.4648289084434509}, {\"X\": 0.9996469020843506, \"Y\": 0.47675803303718567}, {\"X\": 0.9508435130119324, \"Y\": 0.467651903629303}]}, \"Id\": \"b0fab1e1-9f38-4a5f-8d6c-2441e273003d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72927856445312, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03328900784254074, \"Height\": 0.015927279368042946, \"Left\": 0.1848827600479126, \"Top\": 0.38710126280784607}, \"Polygon\": [{\"X\": 0.18878509104251862, \"Y\": 0.38710126280784607}, {\"X\": 0.21817176043987274, \"Y\": 0.3925844728946686}, {\"X\": 0.21426942944526672, \"Y\": 0.40302854776382446}, {\"X\": 0.1848827600479126, \"Y\": 0.39754533767700195}]}, \"Id\": \"feb44557-61eb-43cb-ab51-d0b86aae1c40\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90184020996094, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10119906067848206, \"Height\": 0.028769616037607193, \"Left\": 0.21883201599121094, \"Top\": 0.39341381192207336}, \"Polygon\": [{\"X\": 0.22280308604240417, \"Y\": 0.39341381192207336}, {\"X\": 0.320031076669693, \"Y\": 0.4115554094314575}, {\"X\": 0.31606000661849976, \"Y\": 0.42218345403671265}, {\"X\": 0.21883201599121094, \"Y\": 0.4040418565273285}]}, \"Id\": \"c1853126-ee20-4ebb-8e34-ef1fb9e7737c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81952667236328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048491694033145905, \"Height\": 0.018450401723384857, \"Left\": 0.5849306583404541, \"Top\": 0.4825332760810852}, \"Polygon\": [{\"X\": 0.5887070894241333, \"Y\": 0.4825332760810852}, {\"X\": 0.6334223747253418, \"Y\": 0.49087661504745483}, {\"X\": 0.6296459436416626, \"Y\": 0.5009836554527283}, {\"X\": 0.5849306583404541, \"Y\": 0.49264031648635864}]}, \"Id\": \"9410480f-ffdb-42f4-9e83-e7ab5ce78fc3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.94775390625, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041661541908979416, \"Height\": 0.016854239627718925, \"Left\": 0.6342860460281372, \"Top\": 0.49208030104637146}, \"Polygon\": [{\"X\": 0.6379332542419434, \"Y\": 0.49208030104637146}, {\"X\": 0.6759476065635681, \"Y\": 0.4991733431816101}, {\"X\": 0.672300398349762, \"Y\": 0.5089345574378967}, {\"X\": 0.6342860460281372, \"Y\": 0.5018415451049805}]}, \"Id\": \"0087a99c-d393-4183-a264-ac953e5eff33\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.18273162841797, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03653661161661148, \"Height\": 0.016509143635630608, \"Left\": 0.1712850034236908, \"Top\": 0.411933034658432}, \"Polygon\": [{\"X\": 0.175177663564682, \"Y\": 0.411933034658432}, {\"X\": 0.20782162249088287, \"Y\": 0.4180240035057068}, {\"X\": 0.20392896234989166, \"Y\": 0.42844218015670776}, {\"X\": 0.1712850034236908, \"Y\": 0.422351211309433}]}, \"Id\": \"d065dddd-7d11-44a4-838f-4105d91d8a17\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97564697265625, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06873159855604172, \"Height\": 0.022854406386613846, \"Left\": 0.20863962173461914, \"Top\": 0.41869449615478516}, \"Polygon\": [{\"X\": 0.2126680612564087, \"Y\": 0.41869449615478516}, {\"X\": 0.27737122774124146, \"Y\": 0.43076732754707336}, {\"X\": 0.2733427882194519, \"Y\": 0.4415489137172699}, {\"X\": 0.20863962173461914, \"Y\": 0.4294760525226593}]}, \"Id\": \"4d22fb5c-1c7b-49bb-8363-227b717aa19c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79007720947266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0484778955578804, \"Height\": 0.018489807844161987, \"Left\": 0.7237536311149597, \"Top\": 0.508707582950592}, \"Polygon\": [{\"X\": 0.7275469303131104, \"Y\": 0.508707582950592}, {\"X\": 0.7722315192222595, \"Y\": 0.5170451998710632}, {\"X\": 0.7684382796287537, \"Y\": 0.5271974205970764}, {\"X\": 0.7237536311149597, \"Y\": 0.5188598036766052}]}, \"Id\": \"da96b1ea-6948-42ca-abad-73f6e0d2cba7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26734161376953, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04185536876320839, \"Height\": 0.017153305932879448, \"Left\": 0.7730048894882202, \"Top\": 0.5181161761283875}, \"Polygon\": [{\"X\": 0.7767577171325684, \"Y\": 0.5181161761283875}, {\"X\": 0.8148602843284607, \"Y\": 0.5252256393432617}, {\"X\": 0.8111075162887573, \"Y\": 0.5352694392204285}, {\"X\": 0.7730048894882202, \"Y\": 0.5281599760055542}]}, \"Id\": \"033e946f-7881-4916-8a34-5e26bf09c49d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79254150390625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04860733449459076, \"Height\": 0.0185923520475626, \"Left\": 0.8626770973205566, \"Top\": 0.5350742340087891}, \"Polygon\": [{\"X\": 0.8665018677711487, \"Y\": 0.5350742340087891}, {\"X\": 0.9112844467163086, \"Y\": 0.5434300899505615}, {\"X\": 0.9074596762657166, \"Y\": 0.5536665320396423}, {\"X\": 0.8626770973205566, \"Y\": 0.5453106760978699}]}, \"Id\": \"6422e106-f654-448f-8c81-b429e40c8e4f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2688980102539, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04175277426838875, \"Height\": 0.017237013205885887, \"Left\": 0.9121240973472595, \"Top\": 0.5445066094398499}, \"Polygon\": [{\"X\": 0.9159181714057922, \"Y\": 0.5445066094398499}, {\"X\": 0.9538768529891968, \"Y\": 0.5515892505645752}, {\"X\": 0.9500827789306641, \"Y\": 0.5617436170578003}, {\"X\": 0.9121240973472595, \"Y\": 0.554660975933075}]}, \"Id\": \"f8162608-6e32-41a6-a41d-ae06f4198a94\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84111022949219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04813000559806824, \"Height\": 0.018328044563531876, \"Left\": 0.5786018371582031, \"Top\": 0.49954330921173096}, \"Polygon\": [{\"X\": 0.5823562145233154, \"Y\": 0.49954330921173096}, {\"X\": 0.626731812953949, \"Y\": 0.5078232884407043}, {\"X\": 0.6229774355888367, \"Y\": 0.5178713798522949}, {\"X\": 0.5786018371582031, \"Y\": 0.5095914006233215}]}, \"Id\": \"ce8d6fb2-852a-4d73-a653-fc104740cb43\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.91426086425781, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04059251770377159, \"Height\": 0.016759783029556274, \"Left\": 0.6281250715255737, \"Top\": 0.5091091394424438}, \"Polygon\": [{\"X\": 0.6318144202232361, \"Y\": 0.5091091394424438}, {\"X\": 0.6687175631523132, \"Y\": 0.5159947872161865}, {\"X\": 0.6650282144546509, \"Y\": 0.5258688926696777}, {\"X\": 0.6281250715255737, \"Y\": 0.5189831852912903}]}, \"Id\": \"22037369-9b37-4786-9e3f-0f998420a856\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77902221679688, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04835520312190056, \"Height\": 0.018408309668302536, \"Left\": 0.7173151969909668, \"Top\": 0.5258021354675293}, \"Polygon\": [{\"X\": 0.7210848927497864, \"Y\": 0.5258021354675293}, {\"X\": 0.7656703591346741, \"Y\": 0.5341212153434753}, {\"X\": 0.7619006633758545, \"Y\": 0.5442104339599609}, {\"X\": 0.7173151969909668, \"Y\": 0.5358912944793701}]}, \"Id\": \"58e75ae3-aa5d-4f2f-b98b-48af379ec943\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31031799316406, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0413433276116848, \"Height\": 0.016979610547423363, \"Left\": 0.7669475674629211, \"Top\": 0.5353530049324036}, \"Polygon\": [{\"X\": 0.7706689834594727, \"Y\": 0.5353530049324036}, {\"X\": 0.8082908987998962, \"Y\": 0.5423728227615356}, {\"X\": 0.8045695424079895, \"Y\": 0.5523325800895691}, {\"X\": 0.7669475674629211, \"Y\": 0.5453128218650818}]}, \"Id\": \"f362de52-590f-4295-bd62-1059d1cfd109\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75382232666016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04811872914433479, \"Height\": 0.018519049510359764, \"Left\": 0.856561541557312, \"Top\": 0.5520995855331421}, \"Polygon\": [{\"X\": 0.8603934645652771, \"Y\": 0.5520995855331421}, {\"X\": 0.9046802520751953, \"Y\": 0.5603629350662231}, {\"X\": 0.9008483290672302, \"Y\": 0.5706186294555664}, {\"X\": 0.856561541557312, \"Y\": 0.5623552203178406}]}, \"Id\": \"fb894b69-d94e-4fc2-b654-7af666fb0f8e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.09941101074219, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04180079698562622, \"Height\": 0.01706516556441784, \"Left\": 0.9056337475776672, \"Top\": 0.561764657497406}, \"Polygon\": [{\"X\": 0.9093552231788635, \"Y\": 0.561764657497406}, {\"X\": 0.9474345445632935, \"Y\": 0.5688698291778564}, {\"X\": 0.9437130689620972, \"Y\": 0.578829824924469}, {\"X\": 0.9056337475776672, \"Y\": 0.5717246532440186}]}, \"Id\": \"3e135819-8a2f-4780-8412-b71565bc087e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84451293945312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04799794405698776, \"Height\": 0.018204882740974426, \"Left\": 0.5721602439880371, \"Top\": 0.516649067401886}, \"Polygon\": [{\"X\": 0.5758750438690186, \"Y\": 0.516649067401886}, {\"X\": 0.6201581954956055, \"Y\": 0.5249117612838745}, {\"X\": 0.6164433360099792, \"Y\": 0.5348539352416992}, {\"X\": 0.5721602439880371, \"Y\": 0.5265912413597107}]}, \"Id\": \"36198eda-74fe-495a-b361-4575ca6ac6fc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.71758270263672, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04149574413895607, \"Height\": 0.01688552275300026, \"Left\": 0.6214357018470764, \"Top\": 0.5262301564216614}, \"Polygon\": [{\"X\": 0.6251078844070435, \"Y\": 0.5262301564216614}, {\"X\": 0.6629314422607422, \"Y\": 0.5332875847816467}, {\"X\": 0.6592592597007751, \"Y\": 0.5431156754493713}, {\"X\": 0.6214357018470764, \"Y\": 0.536058247089386}]}, \"Id\": \"fd38e903-d1fc-4880-9d7f-b8db5fb4a946\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70413970947266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04858225956559181, \"Height\": 0.01835441030561924, \"Left\": 0.710693895816803, \"Top\": 0.5429550409317017}, \"Polygon\": [{\"X\": 0.7144249677658081, \"Y\": 0.5429550409317017}, {\"X\": 0.7592761516571045, \"Y\": 0.5513237118721008}, {\"X\": 0.7555450797080994, \"Y\": 0.5613094568252563}, {\"X\": 0.710693895816803, \"Y\": 0.5529407262802124}]}, \"Id\": \"04e02125-386c-482a-979c-87bb36ac1b03\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36184692382812, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04116752743721008, \"Height\": 0.016734423115849495, \"Left\": 0.7603449821472168, \"Top\": 0.5526283383369446}, \"Polygon\": [{\"X\": 0.7639811038970947, \"Y\": 0.5526283383369446}, {\"X\": 0.8015125393867493, \"Y\": 0.5596312880516052}, {\"X\": 0.7978764176368713, \"Y\": 0.5693627595901489}, {\"X\": 0.7603449821472168, \"Y\": 0.5623598694801331}]}, \"Id\": \"bcc471c6-133b-47ee-99d7-fb36296cbc81\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75577545166016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048810023814439774, \"Height\": 0.01849021390080452, \"Left\": 0.849783182144165, \"Top\": 0.5692377686500549}, \"Polygon\": [{\"X\": 0.8535517454147339, \"Y\": 0.5692377686500549}, {\"X\": 0.8985932469367981, \"Y\": 0.577642023563385}, {\"X\": 0.8948246836662292, \"Y\": 0.5877280235290527}, {\"X\": 0.849783182144165, \"Y\": 0.5793238282203674}]}, \"Id\": \"e9566794-5ed8-4499-9b1b-e3e995fcb0da\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55620574951172, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041344959288835526, \"Height\": 0.016922689974308014, \"Left\": 0.8992089629173279, \"Top\": 0.5786944031715393}, \"Polygon\": [{\"X\": 0.9029073715209961, \"Y\": 0.5786944031715393}, {\"X\": 0.9405539631843567, \"Y\": 0.5857188105583191}, {\"X\": 0.9368555545806885, \"Y\": 0.5956171154975891}, {\"X\": 0.8992089629173279, \"Y\": 0.5885927081108093}]}, \"Id\": \"df0a159b-e4ae-4b02-98aa-e5181b0f59cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81863403320312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048272039741277695, \"Height\": 0.018304403871297836, \"Left\": 0.5655821561813354, \"Top\": 0.5336434841156006}, \"Polygon\": [{\"X\": 0.5693163871765137, \"Y\": 0.5336434841156006}, {\"X\": 0.6138542294502258, \"Y\": 0.5419536828994751}, {\"X\": 0.6101199984550476, \"Y\": 0.551947832107544}, {\"X\": 0.5655821561813354, \"Y\": 0.5436376333236694}]}, \"Id\": \"e7e21da1-a7bb-4fc9-91e0-2be5c883bd64\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51312255859375, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041739195585250854, \"Height\": 0.017136020585894585, \"Left\": 0.614842414855957, \"Top\": 0.5431060791015625}, \"Polygon\": [{\"X\": 0.6185969710350037, \"Y\": 0.5431060791015625}, {\"X\": 0.6565815806388855, \"Y\": 0.5501935482025146}, {\"X\": 0.6528270840644836, \"Y\": 0.5602420568466187}, {\"X\": 0.614842414855957, \"Y\": 0.5531545877456665}]}, \"Id\": \"bc0eab09-c32e-4751-91ad-dee367995354\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74961853027344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04815606772899628, \"Height\": 0.018276505172252655, \"Left\": 0.7045387625694275, \"Top\": 0.5599316954612732}, \"Polygon\": [{\"X\": 0.7082704901695251, \"Y\": 0.5599316954612732}, {\"X\": 0.752694845199585, \"Y\": 0.5682207345962524}, {\"X\": 0.7489631175994873, \"Y\": 0.5782082080841064}, {\"X\": 0.7045387625694275, \"Y\": 0.5699191689491272}]}, \"Id\": \"0ad35cb2-7cdb-4e19-bc6c-e6cfe8de894d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.473388671875, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04126015678048134, \"Height\": 0.016945412382483482, \"Left\": 0.7538069486618042, \"Top\": 0.5693158507347107}, \"Polygon\": [{\"X\": 0.7575207948684692, \"Y\": 0.5693158507347107}, {\"X\": 0.7950670719146729, \"Y\": 0.576321542263031}, {\"X\": 0.791353166103363, \"Y\": 0.5862612128257751}, {\"X\": 0.7538069486618042, \"Y\": 0.5792555212974548}]}, \"Id\": \"a6804dc0-ec3a-4a85-8ca0-f37b42ee3ea9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78728485107422, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04805561900138855, \"Height\": 0.018451349809765816, \"Left\": 0.8438145518302917, \"Top\": 0.5862563252449036}, \"Polygon\": [{\"X\": 0.8476240634918213, \"Y\": 0.5862563252449036}, {\"X\": 0.8918702006340027, \"Y\": 0.5945121049880981}, {\"X\": 0.8880606889724731, \"Y\": 0.604707658290863}, {\"X\": 0.8438145518302917, \"Y\": 0.5964518785476685}]}, \"Id\": \"4d507ae8-f261-4c86-8c44-46cc7874980f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53227233886719, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04157513380050659, \"Height\": 0.017007797956466675, \"Left\": 0.8924210667610168, \"Top\": 0.5957160592079163}, \"Polygon\": [{\"X\": 0.8961364030838013, \"Y\": 0.5957160592079163}, {\"X\": 0.9339962005615234, \"Y\": 0.602780282497406}, {\"X\": 0.930280864238739, \"Y\": 0.6127238869667053}, {\"X\": 0.8924210667610168, \"Y\": 0.6056596636772156}]}, \"Id\": \"84c1161f-b1f7-4878-a734-f202a191dd78\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83094024658203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048062581568956375, \"Height\": 0.01831492781639099, \"Left\": 0.5595859289169312, \"Top\": 0.5506688952445984}, \"Polygon\": [{\"X\": 0.5633400678634644, \"Y\": 0.5506688952445984}, {\"X\": 0.607648491859436, \"Y\": 0.558936357498169}, {\"X\": 0.6038943529129028, \"Y\": 0.5689838528633118}, {\"X\": 0.5595859289169312, \"Y\": 0.5607163906097412}]}, \"Id\": \"bb023a7c-c3a5-406f-9344-59d2a30c4736\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.18585968017578, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04164629802107811, \"Height\": 0.01692778803408146, \"Left\": 0.6084871292114258, \"Top\": 0.5603945255279541}, \"Polygon\": [{\"X\": 0.6121650338172913, \"Y\": 0.5603945255279541}, {\"X\": 0.6501334309577942, \"Y\": 0.5674790143966675}, {\"X\": 0.6464555859565735, \"Y\": 0.5773223638534546}, {\"X\": 0.6084871292114258, \"Y\": 0.5702378749847412}]}, \"Id\": \"68f864d5-b9d1-4a22-ab10-fc0b864ea9a7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50531768798828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04843345284461975, \"Height\": 0.01847713440656662, \"Left\": 0.6980666518211365, \"Top\": 0.5770295858383179}, \"Polygon\": [{\"X\": 0.7018581628799438, \"Y\": 0.5770295858383179}, {\"X\": 0.7465001344680786, \"Y\": 0.5853592157363892}, {\"X\": 0.7427086234092712, \"Y\": 0.5955067276954651}, {\"X\": 0.6980666518211365, \"Y\": 0.587177038192749}]}, \"Id\": \"e77fc542-cbdd-4e86-9bc6-4c4440edb9dd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4414291381836, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04141904413700104, \"Height\": 0.016950463876128197, \"Left\": 0.7473582625389099, \"Top\": 0.5865316390991211}, \"Polygon\": [{\"X\": 0.751062273979187, \"Y\": 0.5865316390991211}, {\"X\": 0.7887772917747498, \"Y\": 0.5935688018798828}, {\"X\": 0.7850732803344727, \"Y\": 0.6034820675849915}, {\"X\": 0.7473582625389099, \"Y\": 0.5964449048042297}]}, \"Id\": \"2cdb36d8-4c94-491c-95cb-7c8222baf2c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70914459228516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048420876264572144, \"Height\": 0.018578020855784416, \"Left\": 0.8369781374931335, \"Top\": 0.6033751368522644}, \"Polygon\": [{\"X\": 0.8408111333847046, \"Y\": 0.6033751368522644}, {\"X\": 0.8853990435600281, \"Y\": 0.6116946935653687}, {\"X\": 0.881566047668457, \"Y\": 0.6219531297683716}, {\"X\": 0.8369781374931335, \"Y\": 0.6136335730552673}]}, \"Id\": \"04c8fa63-cd94-4a4c-8d30-3661a2b8ff22\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39640045166016, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041404008865356445, \"Height\": 0.016954319551587105, \"Left\": 0.8860855102539062, \"Top\": 0.6127899289131165}, \"Polygon\": [{\"X\": 0.8897921442985535, \"Y\": 0.6127899289131165}, {\"X\": 0.9274895191192627, \"Y\": 0.6198238134384155}, {\"X\": 0.9237828254699707, \"Y\": 0.6297442317008972}, {\"X\": 0.8860855102539062, \"Y\": 0.6227104067802429}]}, \"Id\": \"d074352a-89b9-431d-9987-cbb796b5e66c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79061889648438, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04801459610462189, \"Height\": 0.018278436735272408, \"Left\": 0.5528383255004883, \"Top\": 0.5678330659866333}, \"Polygon\": [{\"X\": 0.556581437587738, \"Y\": 0.5678330659866333}, {\"X\": 0.600852906703949, \"Y\": 0.5760935544967651}, {\"X\": 0.5971097946166992, \"Y\": 0.5861114859580994}, {\"X\": 0.5528383255004883, \"Y\": 0.5778509378433228}]}, \"Id\": \"b01c39ea-2f65-41c7-9b13-1bc0b7a3c418\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55919647216797, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04089469462633133, \"Height\": 0.016786186024546623, \"Left\": 0.6021402478218079, \"Top\": 0.5773836970329285}, \"Polygon\": [{\"X\": 0.6058175563812256, \"Y\": 0.5773836970329285}, {\"X\": 0.6430349349975586, \"Y\": 0.5843280553817749}, {\"X\": 0.6393576264381409, \"Y\": 0.5941699147224426}, {\"X\": 0.6021402478218079, \"Y\": 0.587225615978241}]}, \"Id\": \"92ed1e4b-4041-459a-8d4d-a2758e13b5af\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75808715820312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04810507595539093, \"Height\": 0.018260609358549118, \"Left\": 0.6916674971580505, \"Top\": 0.5941540598869324}, \"Polygon\": [{\"X\": 0.6953966617584229, \"Y\": 0.5941540598869324}, {\"X\": 0.7397725582122803, \"Y\": 0.6024340987205505}, {\"X\": 0.736043393611908, \"Y\": 0.6124146580696106}, {\"X\": 0.6916674971580505, \"Y\": 0.6041346788406372}]}, \"Id\": \"77689a86-e4cf-4b15-892b-8408bf48e901\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.13496398925781, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04132291302084923, \"Height\": 0.0168900266289711, \"Left\": 0.7410451769828796, \"Top\": 0.6036503911018372}, \"Polygon\": [{\"X\": 0.744732141494751, \"Y\": 0.6036503911018372}, {\"X\": 0.7823680639266968, \"Y\": 0.6106728315353394}, {\"X\": 0.7786811590194702, \"Y\": 0.62054044008255}, {\"X\": 0.7410451769828796, \"Y\": 0.6135179996490479}]}, \"Id\": \"df64247d-bd0d-4779-802a-11509a57936a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8245620727539, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048280082643032074, \"Height\": 0.018366042524576187, \"Left\": 0.8307014107704163, \"Top\": 0.6205015182495117}, \"Polygon\": [{\"X\": 0.8344597816467285, \"Y\": 0.6205015182495117}, {\"X\": 0.8789814710617065, \"Y\": 0.6288087368011475}, {\"X\": 0.8752231001853943, \"Y\": 0.6388675570487976}, {\"X\": 0.8307014107704163, \"Y\": 0.6305603384971619}]}, \"Id\": \"ea203db9-5dfe-489e-9127-beada003db8c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2540283203125, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041390515863895416, \"Height\": 0.01702200248837471, \"Left\": 0.8798366189002991, \"Top\": 0.6298834085464478}, \"Polygon\": [{\"X\": 0.8835715055465698, \"Y\": 0.6298834085464478}, {\"X\": 0.9212271571159363, \"Y\": 0.6369094848632812}, {\"X\": 0.9174922704696655, \"Y\": 0.6469054222106934}, {\"X\": 0.8798366189002991, \"Y\": 0.6398792862892151}]}, \"Id\": \"dc4883bb-a7e1-40cf-bd4e-e53117aa75ba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81281280517578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04768635332584381, \"Height\": 0.01828470267355442, \"Left\": 0.5465636253356934, \"Top\": 0.5848565101623535}, \"Polygon\": [{\"X\": 0.5503338575363159, \"Y\": 0.5848565101623535}, {\"X\": 0.5942500233650208, \"Y\": 0.5930507183074951}, {\"X\": 0.5904797911643982, \"Y\": 0.603141188621521}, {\"X\": 0.5465636253356934, \"Y\": 0.5949469804763794}]}, \"Id\": \"d03d707a-1182-4d61-a3a4-1a7d60bae389\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30654907226562, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041404254734516144, \"Height\": 0.016989678144454956, \"Left\": 0.5954037308692932, \"Top\": 0.5943695306777954}, \"Polygon\": [{\"X\": 0.5991246104240417, \"Y\": 0.5943695306777954}, {\"X\": 0.6368079781532288, \"Y\": 0.6014007925987244}, {\"X\": 0.6330870985984802, \"Y\": 0.611359179019928}, {\"X\": 0.5954037308692932, \"Y\": 0.604327917098999}]}, \"Id\": \"7cfd3640-abba-4e9d-a5c8-be7679229e41\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77198028564453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04827367514371872, \"Height\": 0.01819216087460518, \"Left\": 0.6850209832191467, \"Top\": 0.611295223236084}, \"Polygon\": [{\"X\": 0.6887099742889404, \"Y\": 0.611295223236084}, {\"X\": 0.733294665813446, \"Y\": 0.6196142435073853}, {\"X\": 0.7296056151390076, \"Y\": 0.6294873952865601}, {\"X\": 0.6850209832191467, \"Y\": 0.6211684346199036}]}, \"Id\": \"d3a8e83c-0ba3-4fce-979f-bfbfa287173b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.20984649658203, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04177400469779968, \"Height\": 0.016958847641944885, \"Left\": 0.7342967391014099, \"Top\": 0.6206980347633362}, \"Polygon\": [{\"X\": 0.7379775643348694, \"Y\": 0.6206980347633362}, {\"X\": 0.776070773601532, \"Y\": 0.627805769443512}, {\"X\": 0.7723900079727173, \"Y\": 0.6376568675041199}, {\"X\": 0.7342967391014099, \"Y\": 0.6305491328239441}]}, \"Id\": \"23e860a4-ab96-4f32-a81e-247133ab065c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81523895263672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04870118945837021, \"Height\": 0.018420012667775154, \"Left\": 0.8240498900413513, \"Top\": 0.637599527835846}, \"Polygon\": [{\"X\": 0.8277983665466309, \"Y\": 0.637599527835846}, {\"X\": 0.8727510571479797, \"Y\": 0.6459871530532837}, {\"X\": 0.8690025806427002, \"Y\": 0.6560195088386536}, {\"X\": 0.8240498900413513, \"Y\": 0.6476318836212158}]}, \"Id\": \"2f2e536b-4fe7-42a5-b5d0-19f858df1593\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36481475830078, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04129398986697197, \"Height\": 0.016896240413188934, \"Left\": 0.873457133769989, \"Top\": 0.6470160484313965}, \"Polygon\": [{\"X\": 0.8771487474441528, \"Y\": 0.6470160484313965}, {\"X\": 0.9147511720657349, \"Y\": 0.6540322303771973}, {\"X\": 0.911059558391571, \"Y\": 0.663912296295166}, {\"X\": 0.873457133769989, \"Y\": 0.6568961143493652}]}, \"Id\": \"76648edf-59b3-4554-bc96-db90818ea0a6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86536407470703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04830159246921539, \"Height\": 0.018327809870243073, \"Left\": 0.539567232131958, \"Top\": 0.601945698261261}, \"Polygon\": [{\"X\": 0.543308675289154, \"Y\": 0.601945698261261}, {\"X\": 0.5878688097000122, \"Y\": 0.6102601289749146}, {\"X\": 0.5841274261474609, \"Y\": 0.6202735304832458}, {\"X\": 0.539567232131958, \"Y\": 0.6119590997695923}]}, \"Id\": \"315456af-97fc-48b4-bf9a-0a89d64041e7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54560089111328, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04138583317399025, \"Height\": 0.017043204978108406, \"Left\": 0.5889913439750671, \"Top\": 0.6114444732666016}, \"Polygon\": [{\"X\": 0.5927350521087646, \"Y\": 0.6114444732666016}, {\"X\": 0.6303771734237671, \"Y\": 0.6184680461883545}, {\"X\": 0.6266334056854248, \"Y\": 0.6284877061843872}, {\"X\": 0.5889913439750671, \"Y\": 0.6214641332626343}]}, \"Id\": \"3e3e8647-3dcb-4123-aa7b-2c7efd92071c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82941436767578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04831665754318237, \"Height\": 0.018281033262610435, \"Left\": 0.6785071492195129, \"Top\": 0.6281995177268982}, \"Polygon\": [{\"X\": 0.6822286248207092, \"Y\": 0.6281995177268982}, {\"X\": 0.7268238067626953, \"Y\": 0.6365204453468323}, {\"X\": 0.7231022715568542, \"Y\": 0.6464805603027344}, {\"X\": 0.6785071492195129, \"Y\": 0.6381596326828003}]}, \"Id\": \"da64fd0d-c522-4f21-a13b-348aba10f2f8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35330200195312, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04112870618700981, \"Height\": 0.01678173430263996, \"Left\": 0.7279137969017029, \"Top\": 0.6377283334732056}, \"Polygon\": [{\"X\": 0.7315717935562134, \"Y\": 0.6377283334732056}, {\"X\": 0.7690425515174866, \"Y\": 0.6447199583053589}, {\"X\": 0.7653844952583313, \"Y\": 0.6545100808143616}, {\"X\": 0.7279137969017029, \"Y\": 0.647518515586853}]}, \"Id\": \"72156bb7-74f0-46aa-99fb-565be5d45fa7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84076690673828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04795340076088905, \"Height\": 0.018246209248900414, \"Left\": 0.817781388759613, \"Top\": 0.654603898525238}, \"Polygon\": [{\"X\": 0.8215160965919495, \"Y\": 0.654603898525238}, {\"X\": 0.8657347559928894, \"Y\": 0.6628545522689819}, {\"X\": 0.8619999885559082, \"Y\": 0.6728500723838806}, {\"X\": 0.817781388759613, \"Y\": 0.6645994186401367}]}, \"Id\": \"73b6bf2f-4b80-4078-9b99-63306cf7d105\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38603973388672, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04132623225450516, \"Height\": 0.01694117672741413, \"Left\": 0.8669484853744507, \"Top\": 0.6640955209732056}, \"Polygon\": [{\"X\": 0.8706557154655457, \"Y\": 0.6640955209732056}, {\"X\": 0.9082747101783752, \"Y\": 0.6711147427558899}, {\"X\": 0.9045674800872803, \"Y\": 0.681036651134491}, {\"X\": 0.8669484853744507, \"Y\": 0.6740174293518066}]}, \"Id\": \"80f7cbb3-6e0e-4403-be50-ac424252818c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42879486083984, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036424458026885986, \"Height\": 0.016440942883491516, \"Left\": 0.12469098716974258, \"Top\": 0.5386807322502136}, \"Polygon\": [{\"X\": 0.12856465578079224, \"Y\": 0.5386807322502136}, {\"X\": 0.16111545264720917, \"Y\": 0.5447543263435364}, {\"X\": 0.15724177658557892, \"Y\": 0.555121660232544}, {\"X\": 0.12469098716974258, \"Y\": 0.549048125743866}]}, \"Id\": \"70ab873d-ae46-4082-90e9-cbabb8a7f472\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97323608398438, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06864523142576218, \"Height\": 0.023021066561341286, \"Left\": 0.1615341603755951, \"Top\": 0.545183002948761}, \"Polygon\": [{\"X\": 0.16563601791858673, \"Y\": 0.545183002948761}, {\"X\": 0.23017939925193787, \"Y\": 0.5572260618209839}, {\"X\": 0.22607754170894623, \"Y\": 0.5682040452957153}, {\"X\": 0.1615341603755951, \"Y\": 0.5561610460281372}]}, \"Id\": \"a121f08a-aa2d-4b4a-a043-2a8ce4a4b1e7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68163299560547, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03308964893221855, \"Height\": 0.015694929286837578, \"Left\": 0.11832234263420105, \"Top\": 0.5543450713157654}, \"Polygon\": [{\"X\": 0.12214630097150803, \"Y\": 0.5543450713157654}, {\"X\": 0.1514119952917099, \"Y\": 0.559805691242218}, {\"X\": 0.14758804440498352, \"Y\": 0.5700399875640869}, {\"X\": 0.11832234263420105, \"Y\": 0.5645793676376343}]}, \"Id\": \"96565c7f-ccd3-4ad9-b479-d2d98fba3ada\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92520141601562, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10017967969179153, \"Height\": 0.028249593451619148, \"Left\": 0.1516951620578766, \"Top\": 0.5606387853622437}, \"Polygon\": [{\"X\": 0.15553376078605652, \"Y\": 0.5606387853622437}, {\"X\": 0.2518748342990875, \"Y\": 0.5786148905754089}, {\"X\": 0.2480362355709076, \"Y\": 0.5888883471488953}, {\"X\": 0.1516951620578766, \"Y\": 0.57091224193573}]}, \"Id\": \"c6645d30-7159-46c8-b752-1ecc4cd126fc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.87544250488281, \"Text\": \"Hel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.012729560025036335, \"Height\": 0.005901615601032972, \"Left\": 0.6463334560394287, \"Top\": 0.7701987624168396}, \"Polygon\": [{\"X\": 0.6477498412132263, \"Y\": 0.7701987624168396}, {\"X\": 0.6590630412101746, \"Y\": 0.7723096609115601}, {\"X\": 0.657646656036377, \"Y\": 0.7761003375053406}, {\"X\": 0.6463334560394287, \"Y\": 0.7739894390106201}]}, \"Id\": \"939b47bf-683c-4972-96e0-0b01afd1163e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 78.98628997802734, \"Text\": \"lo\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009024025872349739, \"Height\": 0.005197616759687662, \"Left\": 0.6599483489990234, \"Top\": 0.7729408740997314}, \"Polygon\": [{\"X\": 0.6613596677780151, \"Y\": 0.7729408740997314}, {\"X\": 0.668972373008728, \"Y\": 0.7743613123893738}, {\"X\": 0.6675610542297363, \"Y\": 0.7781384587287903}, {\"X\": 0.6599483489990234, \"Y\": 0.776718020439148}]}, \"Id\": \"7cee0c45-a25c-4136-87d8-f32d00713845\"}, {\"BlockType\": \"WORD\", \"Confidence\": 80.687744140625, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022404834628105164, \"Height\": 0.008029009215533733, \"Left\": 0.670498788356781, \"Top\": 0.774563729763031}, \"Polygon\": [{\"X\": 0.6720445156097412, \"Y\": 0.774563729763031}, {\"X\": 0.6929036378860474, \"Y\": 0.7784557938575745}, {\"X\": 0.6913579106330872, \"Y\": 0.7825927734375}, {\"X\": 0.670498788356781, \"Y\": 0.7787007093429565}]}, \"Id\": \"089599ab-f193-497f-bec2-1d9c234b3ad1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 89.3337631225586, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00753677636384964, \"Height\": 0.00419632438570261, \"Left\": 0.6936367750167847, \"Top\": 0.7797583341598511}, \"Polygon\": [{\"X\": 0.6947574019432068, \"Y\": 0.7797583341598511}, {\"X\": 0.7011736035346985, \"Y\": 0.7809554934501648}, {\"X\": 0.7000529766082764, \"Y\": 0.7839546203613281}, {\"X\": 0.6936367750167847, \"Y\": 0.7827574610710144}]}, \"Id\": \"0baaaa23-fcc3-4152-927f-2b4d2c33ed92\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.23955535888672, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03070676513016224, \"Height\": 0.009556111879646778, \"Left\": 0.7024194002151489, \"Top\": 0.7809511423110962}, \"Polygon\": [{\"X\": 0.7039563655853271, \"Y\": 0.7809511423110962}, {\"X\": 0.733126163482666, \"Y\": 0.7863938808441162}, {\"X\": 0.7315892577171326, \"Y\": 0.7905072569847107}, {\"X\": 0.7024194002151489, \"Y\": 0.7850644588470459}]}, \"Id\": \"c998e8a5-188b-41ca-8329-3215b5cff2f5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 54.64955139160156, \"Text\": \"herel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021392345428466797, \"Height\": 0.0075585669837892056, \"Left\": 0.7340056896209717, \"Top\": 0.7871077656745911}, \"Polygon\": [{\"X\": 0.735438346862793, \"Y\": 0.7871077656745911}, {\"X\": 0.7553980350494385, \"Y\": 0.790831983089447}, {\"X\": 0.7539653182029724, \"Y\": 0.7946662902832031}, {\"X\": 0.7340056896209717, \"Y\": 0.7909420728683472}]}, \"Id\": \"5609ef58-4a6c-4dad-bb80-e101f86302cf\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.95244598388672, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.46933361887931824, \"Height\": 0.215328186750412, \"Left\": 0.5301868915557861, \"Top\": 0.4775235652923584}, \"Polygon\": [{\"X\": 0.5814992189407349, \"Y\": 0.4775235652923584}, {\"X\": 0.9995205402374268, \"Y\": 0.5555213689804077}, {\"X\": 0.948208212852478, \"Y\": 0.6928517818450928}, {\"X\": 0.5301868915557861, \"Y\": 0.6148539781570435}]}, \"Id\": \"bbb8210d-24cf-48e1-82c4-e18dc30afefa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3b09efec-baad-4ba8-a141-dbec96122999\", \"19c5f362-ef40-4858-8afe-fff66fb5be22\", \"413b244a-a243-439e-a716-b197dca36023\", \"b14c10dd-bb76-4515-90c1-2889ca98df33\", \"0a12cdae-f4ed-4735-b6ef-b21f076393eb\", \"a141c3ab-cdde-4e91-bc80-14b51c3dbaaf\", \"b134d3a6-5c0e-4851-9c9b-c5c10acf4767\", \"2a3fd82e-fb48-42e1-abe7-c26a423a5b92\", \"d8b39198-6306-46f7-8a2b-81bc044f980e\", \"9c2d1955-d19c-42ae-92bf-b619c336e111\", \"3c0abaa8-aac8-4697-8182-6e3555bde8c5\", \"4c8ee682-14f8-4d6d-b6ec-9b74cce43f12\", \"e83dbdd2-150a-433f-bce3-aa7c48118fc4\", \"d0214c83-65b3-4193-9b56-b114c444a754\", \"5a85224c-8723-4813-9cee-c004f3053fad\", \"0a8aba61-9142-4bb3-a5a2-69037b0988a6\", \"42fca5a7-6268-4a5c-8b51-e577d4d98026\", \"a2368be9-0626-4226-8d68-6ef577c7ffe7\", \"7f777602-b916-425d-934d-f5b4f211cb69\", \"a8849cb9-82f6-40c4-8f41-d226943821b3\", \"be2b5701-0a20-4cec-a1cc-fb8843eb2343\", \"f35fc8dd-6430-4811-84c7-8687d3abbb06\", \"6f790d23-442a-4331-869e-f70a8c8a5b95\", \"8670b8bf-17ac-4245-bb9f-1772018d53dd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14281007647514343, \"Height\": 0.04253169894218445, \"Left\": 0.575119137763977, \"Top\": 0.4775235652923584}, \"Polygon\": [{\"X\": 0.5814992189407349, \"Y\": 0.4775235652923584}, {\"X\": 0.7179291844367981, \"Y\": 0.5029797554016113}, {\"X\": 0.7115491032600403, \"Y\": 0.5200552940368652}, {\"X\": 0.575119137763977, \"Y\": 0.49459904432296753}]}, \"Id\": \"3b09efec-baad-4ba8-a141-dbec96122999\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9410480f-ffdb-42f4-9e83-e7ab5ce78fc3\", \"0087a99c-d393-4183-a264-ac953e5eff33\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14935864508152008, \"Height\": 0.04375358298420906, \"Left\": 0.7115491032600403, \"Top\": 0.5029797554016113}, \"Polygon\": [{\"X\": 0.7179291844367981, \"Y\": 0.5029797554016113}, {\"X\": 0.8609077334403992, \"Y\": 0.5296579003334045}, {\"X\": 0.8545276522636414, \"Y\": 0.5467333793640137}, {\"X\": 0.7115491032600403, \"Y\": 0.5200552940368652}]}, \"Id\": \"19c5f362-ef40-4858-8afe-fff66fb5be22\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da96b1ea-6948-42ca-abad-73f6e0d2cba7\", \"033e946f-7881-4916-8a34-5e26bf09c49d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14499293267726898, \"Height\": 0.042938996106386185, \"Left\": 0.8545275926589966, \"Top\": 0.5296579003334045}, \"Polygon\": [{\"X\": 0.8609077334403992, \"Y\": 0.5296579003334045}, {\"X\": 0.9995205402374268, \"Y\": 0.5555213689804077}, {\"X\": 0.993140459060669, \"Y\": 0.5725968480110168}, {\"X\": 0.8545275926589966, \"Y\": 0.5467333793640137}]}, \"Id\": \"413b244a-a243-439e-a716-b197dca36023\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6422e106-f654-448f-8c81-b429e40c8e4f\", \"f8162608-6e32-41a6-a41d-ae06f4198a94\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14308156073093414, \"Height\": 0.04325830191373825, \"Left\": 0.5684674978256226, \"Top\": 0.49459904432296753}, \"Polygon\": [{\"X\": 0.575119137763977, \"Y\": 0.49459904432296753}, {\"X\": 0.7115491032600403, \"Y\": 0.5200552344322205}, {\"X\": 0.7048974633216858, \"Y\": 0.5378573536872864}, {\"X\": 0.5684674978256226, \"Y\": 0.5124011635780334}]}, \"Id\": \"b14c10dd-bb76-4515-90c1-2889ca98df33\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce8d6fb2-852a-4d73-a653-fc104740cb43\", \"22037369-9b37-4786-9e3f-0f998420a856\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1496301293373108, \"Height\": 0.04448018595576286, \"Left\": 0.7048975229263306, \"Top\": 0.5200552344322205}, \"Polygon\": [{\"X\": 0.7115491032600403, \"Y\": 0.5200552344322205}, {\"X\": 0.8545276522636414, \"Y\": 0.5467333793640137}, {\"X\": 0.8478760123252869, \"Y\": 0.5645354390144348}, {\"X\": 0.7048975229263306, \"Y\": 0.5378573536872864}]}, \"Id\": \"0a12cdae-f4ed-4735-b6ef-b21f076393eb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58e75ae3-aa5d-4f2f-b98b-48af379ec943\", \"f362de52-590f-4295-bd62-1059d1cfd109\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1452644318342209, \"Height\": 0.04366559907793999, \"Left\": 0.8478760123252869, \"Top\": 0.5467333793640137}, \"Polygon\": [{\"X\": 0.8545275926589966, \"Y\": 0.5467333793640137}, {\"X\": 0.993140459060669, \"Y\": 0.5725968480110168}, {\"X\": 0.9864888787269592, \"Y\": 0.5903989672660828}, {\"X\": 0.8478760123252869, \"Y\": 0.5645354390144348}]}, \"Id\": \"a141c3ab-cdde-4e91-bc80-14b51c3dbaaf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fb894b69-d94e-4fc2-b654-7af666fb0f8e\", \"3e135819-8a2f-4780-8412-b71565bc087e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14253856241703033, \"Height\": 0.041805051267147064, \"Left\": 0.5623589158058167, \"Top\": 0.5124011635780334}, \"Polygon\": [{\"X\": 0.5684674978256226, \"Y\": 0.5124011635780334}, {\"X\": 0.7048974633216858, \"Y\": 0.5378573536872864}, {\"X\": 0.6987888813018799, \"Y\": 0.5542061924934387}, {\"X\": 0.5623589158058167, \"Y\": 0.5287500023841858}]}, \"Id\": \"b134d3a6-5c0e-4851-9c9b-c5c10acf4767\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"36198eda-74fe-495a-b361-4575ca6ac6fc\", \"fd38e903-d1fc-4880-9d7f-b8db5fb4a946\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14908713102340698, \"Height\": 0.04302693530917168, \"Left\": 0.6987888813018799, \"Top\": 0.5378573536872864}, \"Polygon\": [{\"X\": 0.7048975229263306, \"Y\": 0.5378573536872864}, {\"X\": 0.8478760123252869, \"Y\": 0.5645354390144348}, {\"X\": 0.841767430305481, \"Y\": 0.5808842778205872}, {\"X\": 0.6987888813018799, \"Y\": 0.5542061924934387}]}, \"Id\": \"2a3fd82e-fb48-42e1-abe7-c26a423a5b92\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04e02125-386c-482a-979c-87bb36ac1b03\", \"bcc471c6-133b-47ee-99d7-fb36296cbc81\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14472143352031708, \"Height\": 0.0422123484313488, \"Left\": 0.841767430305481, \"Top\": 0.5645354390144348}, \"Polygon\": [{\"X\": 0.8478760123252869, \"Y\": 0.5645354390144348}, {\"X\": 0.9864888191223145, \"Y\": 0.5903989672660828}, {\"X\": 0.9803802371025085, \"Y\": 0.6067478060722351}, {\"X\": 0.841767430305481, \"Y\": 0.5808842778205872}]}, \"Id\": \"d8b39198-6306-46f7-8a2b-81bc044f980e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9566794-5ed8-4499-9b1b-e3e995fcb0da\", \"df0a159b-e4ae-4b02-98aa-e5181b0f59cf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14308156073093414, \"Height\": 0.04325829818844795, \"Left\": 0.5557073354721069, \"Top\": 0.5287500023841858}, \"Polygon\": [{\"X\": 0.5623589158058167, \"Y\": 0.5287500023841858}, {\"X\": 0.6987888813018799, \"Y\": 0.5542062520980835}, {\"X\": 0.6921373009681702, \"Y\": 0.5720083117485046}, {\"X\": 0.5557073354721069, \"Y\": 0.5465521216392517}]}, \"Id\": \"9c2d1955-d19c-42ae-92bf-b619c336e111\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e7e21da1-a7bb-4fc9-91e0-2be5c883bd64\", \"bc0eab09-c32e-4751-91ad-dee367995354\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1496301293373108, \"Height\": 0.04448018595576286, \"Left\": 0.6921373009681702, \"Top\": 0.5542062520980835}, \"Polygon\": [{\"X\": 0.6987888813018799, \"Y\": 0.5542062520980835}, {\"X\": 0.841767430305481, \"Y\": 0.5808843374252319}, {\"X\": 0.8351158499717712, \"Y\": 0.5986863970756531}, {\"X\": 0.6921373009681702, \"Y\": 0.5720083117485046}]}, \"Id\": \"3c0abaa8-aac8-4697-8182-6e3555bde8c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ad35cb2-7cdb-4e19-bc6c-e6cfe8de894d\", \"a6804dc0-ec3a-4a85-8ca0-f37b42ee3ea9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1452644318342209, \"Height\": 0.04366559907793999, \"Left\": 0.8351157903671265, \"Top\": 0.5808843374252319}, \"Polygon\": [{\"X\": 0.841767430305481, \"Y\": 0.5808843374252319}, {\"X\": 0.9803802371025085, \"Y\": 0.6067478060722351}, {\"X\": 0.9737286567687988, \"Y\": 0.624549925327301}, {\"X\": 0.8351157903671265, \"Y\": 0.5986863970756531}]}, \"Id\": \"4c8ee682-14f8-4d6d-b6ec-9b74cce43f12\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d507ae8-f261-4c86-8c44-46cc7874980f\", \"84c1161f-b1f7-4878-a734-f202a191dd78\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14281007647514343, \"Height\": 0.04253169894218445, \"Left\": 0.5493271946907043, \"Top\": 0.5465521216392517}, \"Polygon\": [{\"X\": 0.5557073354721069, \"Y\": 0.5465521216392517}, {\"X\": 0.6921372413635254, \"Y\": 0.5720083117485046}, {\"X\": 0.6857571601867676, \"Y\": 0.5890837907791138}, {\"X\": 0.5493271946907043, \"Y\": 0.5636276006698608}]}, \"Id\": \"e83dbdd2-150a-433f-bce3-aa7c48118fc4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb023a7c-c3a5-406f-9344-59d2a30c4736\", \"68f864d5-b9d1-4a22-ab10-fc0b864ea9a7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14935864508152008, \"Height\": 0.04375358298420906, \"Left\": 0.6857571601867676, \"Top\": 0.5720083117485046}, \"Polygon\": [{\"X\": 0.6921373009681702, \"Y\": 0.5720083117485046}, {\"X\": 0.8351158499717712, \"Y\": 0.5986863970756531}, {\"X\": 0.8287357091903687, \"Y\": 0.615761935710907}, {\"X\": 0.6857571601867676, \"Y\": 0.5890837907791138}]}, \"Id\": \"d0214c83-65b3-4193-9b56-b114c444a754\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e77fc542-cbdd-4e86-9bc6-4c4440edb9dd\", \"2cdb36d8-4c94-491c-95cb-7c8222baf2c3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14499293267726898, \"Height\": 0.042938996106386185, \"Left\": 0.8287357091903687, \"Top\": 0.5986863970756531}, \"Polygon\": [{\"X\": 0.8351157903671265, \"Y\": 0.5986863970756531}, {\"X\": 0.9737286567687988, \"Y\": 0.624549925327301}, {\"X\": 0.9673485159873962, \"Y\": 0.6416254043579102}, {\"X\": 0.8287357091903687, \"Y\": 0.615761935710907}]}, \"Id\": \"5a85224c-8723-4813-9cee-c004f3053fad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04c8fa63-cd94-4a4c-8d30-3661a2b8ff22\", \"d074352a-89b9-431d-9987-cbb796b5e66c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14281006157398224, \"Height\": 0.042531661689281464, \"Left\": 0.5429471135139465, \"Top\": 0.5636276006698608}, \"Polygon\": [{\"X\": 0.5493271946907043, \"Y\": 0.5636276006698608}, {\"X\": 0.6857571601867676, \"Y\": 0.5890837907791138}, {\"X\": 0.6793770790100098, \"Y\": 0.6061592698097229}, {\"X\": 0.5429471135139465, \"Y\": 0.58070307970047}]}, \"Id\": \"0a8aba61-9142-4bb3-a5a2-69037b0988a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b01c39ea-2f65-41c7-9b13-1bc0b7a3c418\", \"92ed1e4b-4041-459a-8d4d-a2758e13b5af\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1493586301803589, \"Height\": 0.043753545731306076, \"Left\": 0.6793770790100098, \"Top\": 0.5890837907791138}, \"Polygon\": [{\"X\": 0.6857571601867676, \"Y\": 0.5890837907791138}, {\"X\": 0.8287357091903687, \"Y\": 0.615761935710907}, {\"X\": 0.8223556280136108, \"Y\": 0.6328373551368713}, {\"X\": 0.6793770790100098, \"Y\": 0.6061592698097229}]}, \"Id\": \"42fca5a7-6268-4a5c-8b51-e577d4d98026\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"77689a86-e4cf-4b15-892b-8408bf48e901\", \"df64247d-bd0d-4779-802a-11509a57936a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1449929177761078, \"Height\": 0.0429389588534832, \"Left\": 0.8223556280136108, \"Top\": 0.615761935710907}, \"Polygon\": [{\"X\": 0.8287357091903687, \"Y\": 0.615761935710907}, {\"X\": 0.9673485159873962, \"Y\": 0.6416254043579102}, {\"X\": 0.9609684348106384, \"Y\": 0.6587008833885193}, {\"X\": 0.8223556280136108, \"Y\": 0.6328373551368713}]}, \"Id\": \"a2368be9-0626-4226-8d68-6ef577c7ffe7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ea203db9-5dfe-489e-9127-beada003db8c\", \"dc4883bb-a7e1-40cf-bd4e-e53117aa75ba\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14281006157398224, \"Height\": 0.04253169894218445, \"Left\": 0.5365670323371887, \"Top\": 0.5807030200958252}, \"Polygon\": [{\"X\": 0.5429471135139465, \"Y\": 0.5807030200958252}, {\"X\": 0.6793770790100098, \"Y\": 0.6061592102050781}, {\"X\": 0.672996997833252, \"Y\": 0.623234748840332}, {\"X\": 0.5365670323371887, \"Y\": 0.5977784991264343}]}, \"Id\": \"7f777602-b916-425d-934d-f5b4f211cb69\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d03d707a-1182-4d61-a3a4-1a7d60bae389\", \"7cfd3640-abba-4e9d-a5c8-be7679229e41\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14935864508152008, \"Height\": 0.04375358298420906, \"Left\": 0.672996997833252, \"Top\": 0.6061592102050781}, \"Polygon\": [{\"X\": 0.6793770790100098, \"Y\": 0.6061592102050781}, {\"X\": 0.8223556280136108, \"Y\": 0.6328373551368713}, {\"X\": 0.815975546836853, \"Y\": 0.6499128341674805}, {\"X\": 0.672996997833252, \"Y\": 0.623234748840332}]}, \"Id\": \"a8849cb9-82f6-40c4-8f41-d226943821b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d3a8e83c-0ba3-4fce-979f-bfbfa287173b\", \"23e860a4-ab96-4f32-a81e-247133ab065c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14499293267726898, \"Height\": 0.042938996106386185, \"Left\": 0.8159754872322083, \"Top\": 0.6328373551368713}, \"Polygon\": [{\"X\": 0.8223556280136108, \"Y\": 0.6328373551368713}, {\"X\": 0.9609684348106384, \"Y\": 0.6587008237838745}, {\"X\": 0.9545883536338806, \"Y\": 0.6757763028144836}, {\"X\": 0.8159754872322083, \"Y\": 0.6499128341674805}]}, \"Id\": \"be2b5701-0a20-4cec-a1cc-fb8843eb2343\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f2e536b-4fe7-42a5-b5d0-19f858df1593\", \"76648edf-59b3-4554-bc96-db90818ea0a6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14281006157398224, \"Height\": 0.042531661689281464, \"Left\": 0.5301868915557861, \"Top\": 0.5977784991264343}, \"Polygon\": [{\"X\": 0.5365670323371887, \"Y\": 0.5977784991264343}, {\"X\": 0.672996997833252, \"Y\": 0.623234748840332}, {\"X\": 0.6666168570518494, \"Y\": 0.6403101682662964}, {\"X\": 0.5301868915557861, \"Y\": 0.6148539781570435}]}, \"Id\": \"f35fc8dd-6430-4811-84c7-8687d3abbb06\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"315456af-97fc-48b4-bf9a-0a89d64041e7\", \"3e3e8647-3dcb-4123-aa7b-2c7efd92071c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1493586301803589, \"Height\": 0.043753545731306076, \"Left\": 0.6666169166564941, \"Top\": 0.623234748840332}, \"Polygon\": [{\"X\": 0.672996997833252, \"Y\": 0.623234748840332}, {\"X\": 0.815975546836853, \"Y\": 0.6499128341674805}, {\"X\": 0.8095954060554504, \"Y\": 0.6669882535934448}, {\"X\": 0.6666169166564941, \"Y\": 0.6403101682662964}]}, \"Id\": \"6f790d23-442a-4331-869e-f70a8c8a5b95\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da64fd0d-c522-4f21-a13b-348aba10f2f8\", \"72156bb7-74f0-46aa-99fb-565be5d45fa7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.95244598388672, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1449929177761078, \"Height\": 0.0429389588534832, \"Left\": 0.8095954060554504, \"Top\": 0.6499128341674805}, \"Polygon\": [{\"X\": 0.8159754872322083, \"Y\": 0.6499128341674805}, {\"X\": 0.9545883536338806, \"Y\": 0.6757763028144836}, {\"X\": 0.948208212852478, \"Y\": 0.6928517818450928}, {\"X\": 0.8095954060554504, \"Y\": 0.6669882535934448}]}, \"Id\": \"8670b8bf-17ac-4245-bb9f-1772018d53dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"73b6bf2f-4b80-4078-9b99-63306cf7d105\", \"80f7cbb3-6e0e-4403-be50-ac424252818c\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.86467742919922, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5357268452644348, \"Height\": 0.19697833061218262, \"Left\": 0.4642731547355652, \"Top\": 0.2801366150379181}, \"Polygon\": [{\"X\": 0.501767098903656, \"Y\": 0.2801366150379181}, {\"X\": 1.0, \"Y\": 0.37676745653152466}, {\"X\": 0.9821563363075256, \"Y\": 0.4771149456501007}, {\"X\": 0.4642731547355652, \"Y\": 0.38048407435417175}]}, \"Id\": \"9cb0f8d1-f2d1-4813-b5a1-645c61629195\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"967dfb38-02b1-43fd-be3e-9a4809475468\", \"67e63759-da3a-4f67-978d-1160f588a01b\", \"2b6da387-ef1f-422a-8f33-2958a85a22b9\", \"98bc59c3-207c-41df-abe3-146bb23ee294\", \"35f2716c-29f6-40ec-98d1-2a83af403d68\", \"edc70915-f8e0-448c-a410-5107d8923aea\", \"99e8d869-eb17-4818-92e7-e85fa866ff82\", \"4fc388cc-287b-44d7-9f2b-6c64c77c86b8\", \"efa8d086-74be-4c71-8488-c2c7f1919ef3\", \"4f539c86-0b5c-49cc-8da9-29057ff58839\", \"34f88b99-5385-438f-b800-cb15dd8686e9\", \"10502889-b243-477b-8206-70553781938b\", \"d1abcde5-991b-447f-a0b1-293f9720c077\", \"8b6dad63-5d3c-4935-b5e4-465d7c751ddd\", \"0939ca72-6d67-4004-8224-78aa357ca0d5\", \"bb8277d8-1f0a-4f63-b5c9-1e75a4f0e799\", \"86755615-a1b8-4399-8b6d-67edf9ef0c07\", \"9ca22e22-fba2-4537-9158-d7ca478c14bc\", \"e0e9d061-e496-40ac-8327-383d64230640\", \"c5c4e506-d051-4d3c-bf12-3d5598e30e2d\", \"3bef0206-4139-4e83-aca6-bc7e7ddd9e08\", \"50ec973d-45e0-419e-94f0-b383e5208435\", \"c915a037-30e0-4133-87c0-03c7c14c89b1\", \"8228f7b1-ed98-4ca8-81a4-eb390538b984\", \"86199bea-ef6d-44eb-a4cf-4211fa7c364d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12330406159162521, \"Height\": 0.042393170297145844, \"Left\": 0.4939807951450348, \"Top\": 0.2801366150379181}, \"Polygon\": [{\"X\": 0.501767098903656, \"Y\": 0.2801366150379181}, {\"X\": 0.617284893989563, \"Y\": 0.30169084668159485}, {\"X\": 0.6094985604286194, \"Y\": 0.32252979278564453}, {\"X\": 0.4939807951450348, \"Y\": 0.3009755313396454}]}, \"Id\": \"967dfb38-02b1-43fd-be3e-9a4809475468\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"acef5288-3172-4829-82c5-4342dffdf35b\", \"cf41b4fc-0a58-48fb-b757-bc968029783d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13109177350997925, \"Height\": 0.043846264481544495, \"Left\": 0.6094986200332642, \"Top\": 0.30169087648391724}, \"Polygon\": [{\"X\": 0.617284893989563, \"Y\": 0.30169087648391724}, {\"X\": 0.7405903935432434, \"Y\": 0.32469820976257324}, {\"X\": 0.7328041195869446, \"Y\": 0.34553712606430054}, {\"X\": 0.6094986200332642, \"Y\": 0.32252979278564453}]}, \"Id\": \"67e63759-da3a-4f67-978d-1160f588a01b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8b17c76d-4348-4d0e-be18-c80fb8f74fad\", \"9784ae98-c270-4d40-925a-e1f8f868265a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.125900000333786, \"Height\": 0.04287754371762276, \"Left\": 0.7328040599822998, \"Top\": 0.32469820976257324}, \"Polygon\": [{\"X\": 0.7405903339385986, \"Y\": 0.32469820976257324}, {\"X\": 0.8587040901184082, \"Y\": 0.3467368185520172}, {\"X\": 0.8509178161621094, \"Y\": 0.3675757348537445}, {\"X\": 0.7328040599822998, \"Y\": 0.34553712606430054}]}, \"Id\": \"2b6da387-ef1f-422a-8f33-2958a85a22b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e58b75b9-4a5f-4cc8-bf7e-7929cd51bdcf\", \"6ac2008d-4d03-45c6-9d58-d24d30839be2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13109181821346283, \"Height\": 0.04384627565741539, \"Left\": 0.8509177565574646, \"Top\": 0.3467368185520172}, \"Polygon\": [{\"X\": 0.8587040305137634, \"Y\": 0.3467368185520172}, {\"X\": 0.9820095896720886, \"Y\": 0.3697441518306732}, {\"X\": 0.9742233157157898, \"Y\": 0.3905830979347229}, {\"X\": 0.8509177565574646, \"Y\": 0.3675757348537445}]}, \"Id\": \"98bc59c3-207c-41df-abe3-146bb23ee294\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7224f0fe-8cf7-4a68-bf6b-416f2dc99370\", \"f2601c3f-8b09-4d09-af0b-b5d95a525040\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025776665657758713, \"Height\": 0.027862224727869034, \"Left\": 0.9742233157157898, \"Top\": 0.3697441518306732}, \"Polygon\": [{\"X\": 0.9820095896720886, \"Y\": 0.3697441518306732}, {\"X\": 1.0, \"Y\": 0.37676745653152466}, {\"X\": 1.0, \"Y\": 0.39760637283325195}, {\"X\": 0.9742233157157898, \"Y\": 0.3905830979347229}]}, \"Id\": \"35f2716c-29f6-40ec-98d1-2a83af403d68\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f07966c3-5ad0-4cdc-862d-8b58dc47e980\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12282490730285645, \"Height\": 0.04111078009009361, \"Left\": 0.4866736829280853, \"Top\": 0.3009755313396454}, \"Polygon\": [{\"X\": 0.4939808249473572, \"Y\": 0.3009755313396454}, {\"X\": 0.6094985604286194, \"Y\": 0.32252976298332214}, {\"X\": 0.6021914482116699, \"Y\": 0.3420863151550293}, {\"X\": 0.4866736829280853, \"Y\": 0.32053205370903015}]}, \"Id\": \"edc70915-f8e0-448c-a410-5107d8923aea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c07aa859-dda9-4016-b140-87f0b5abd818\", \"5631085c-f510-4ce7-a637-9e2093345367\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13061261177062988, \"Height\": 0.042563874274492264, \"Left\": 0.6021915078163147, \"Top\": 0.32252976298332214}, \"Polygon\": [{\"X\": 0.6094986200332642, \"Y\": 0.32252976298332214}, {\"X\": 0.7328041195869446, \"Y\": 0.34553709626197815}, {\"X\": 0.7254969477653503, \"Y\": 0.3650936484336853}, {\"X\": 0.6021915078163147, \"Y\": 0.3420863151550293}]}, \"Id\": \"99e8d869-eb17-4818-92e7-e85fa866ff82\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d66453e1-b6f8-43ae-a845-4e30c2f8301f\", \"a6d21299-6c9d-43d6-9b69-ed765c98fee3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12542085349559784, \"Height\": 0.041595153510570526, \"Left\": 0.7254969477653503, \"Top\": 0.34553709626197815}, \"Polygon\": [{\"X\": 0.7328040599822998, \"Y\": 0.34553709626197815}, {\"X\": 0.8509178161621094, \"Y\": 0.3675757348537445}, {\"X\": 0.8436106443405151, \"Y\": 0.3871322572231293}, {\"X\": 0.7254969477653503, \"Y\": 0.3650936484336853}]}, \"Id\": \"4fc388cc-287b-44d7-9f2b-6c64c77c86b8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3d6fbca-7969-425a-a024-9a1b32a19dcd\", \"eba16df5-188c-4a4e-8e1c-6ef2676cb919\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13061267137527466, \"Height\": 0.04256388545036316, \"Left\": 0.8436106443405151, \"Top\": 0.3675757050514221}, \"Polygon\": [{\"X\": 0.8509177565574646, \"Y\": 0.3675757050514221}, {\"X\": 0.9742233157157898, \"Y\": 0.3905830681324005}, {\"X\": 0.9669162034988403, \"Y\": 0.4101395905017853}, {\"X\": 0.8436106443405151, \"Y\": 0.3871322572231293}]}, \"Id\": \"efa8d086-74be-4c71-8488-c2c7f1919ef3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4d8a8f0-8720-4113-a9a6-1f55674d9ec6\", \"3b4df430-29f1-42fd-b44b-7e61e285da89\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03308378905057907, \"Height\": 0.026579832658171654, \"Left\": 0.9669162034988403, \"Top\": 0.3905830681324005}, \"Polygon\": [{\"X\": 0.9742233157157898, \"Y\": 0.3905830681324005}, {\"X\": 1.0, \"Y\": 0.39760637283325195}, {\"X\": 1.0, \"Y\": 0.4171628952026367}, {\"X\": 0.9669162034988403, \"Y\": 0.41013962030410767}]}, \"Id\": \"4f539c86-0b5c-49cc-8da9-29057ff58839\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3dfe61d5-a1f7-4e68-87bf-e58085e2aee4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12306448817253113, \"Height\": 0.04175198823213577, \"Left\": 0.4791269600391388, \"Top\": 0.32053205370903015}, \"Polygon\": [{\"X\": 0.4866736829280853, \"Y\": 0.32053205370903015}, {\"X\": 0.6021914482116699, \"Y\": 0.3420863151550293}, {\"X\": 0.5946447253227234, \"Y\": 0.3622840642929077}, {\"X\": 0.4791269600391388, \"Y\": 0.34072980284690857}]}, \"Id\": \"34f88b99-5385-438f-b800-cb15dd8686e9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"62ca1896-ae6d-44f2-b5f0-698d7d9e43a9\", \"6a6d30c1-490b-4c28-87e2-89ebb038b09c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13085219264030457, \"Height\": 0.043205082416534424, \"Left\": 0.5946447849273682, \"Top\": 0.3420863151550293}, \"Polygon\": [{\"X\": 0.6021915078163147, \"Y\": 0.3420863151550293}, {\"X\": 0.7254969477653503, \"Y\": 0.3650936484336853}, {\"X\": 0.7179502844810486, \"Y\": 0.3852913975715637}, {\"X\": 0.5946447849273682, \"Y\": 0.3622840642929077}]}, \"Id\": \"10502889-b243-477b-8206-70553781938b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"358496af-26c8-41ac-ae04-0eda2cae4f2b\", \"95ba4bbb-bc31-45dd-b57e-c84a696b8fad\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12566043436527252, \"Height\": 0.042236361652612686, \"Left\": 0.7179502248764038, \"Top\": 0.3650936484336853}, \"Polygon\": [{\"X\": 0.7254969477653503, \"Y\": 0.3650936484336853}, {\"X\": 0.8436106443405151, \"Y\": 0.3871322572231293}, {\"X\": 0.8360639810562134, \"Y\": 0.4073300063610077}, {\"X\": 0.7179502248764038, \"Y\": 0.3852913975715637}]}, \"Id\": \"d1abcde5-991b-447f-a0b1-293f9720c077\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e658971-93fe-487f-b9dc-a4fe34dcf052\", \"1701bd58-d91e-4eb3-97cc-79577a97e6df\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13085225224494934, \"Height\": 0.04320509359240532, \"Left\": 0.8360639214515686, \"Top\": 0.3871322572231293}, \"Polygon\": [{\"X\": 0.8436106443405151, \"Y\": 0.3871322572231293}, {\"X\": 0.9669162034988403, \"Y\": 0.41013962030410767}, {\"X\": 0.9593694806098938, \"Y\": 0.4303373694419861}, {\"X\": 0.8360639214515686, \"Y\": 0.4073300063610077}]}, \"Id\": \"8b6dad63-5d3c-4935-b5e4-465d7c751ddd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b98f47d-90b4-4b61-b956-751e0cf8a8e9\", \"d9ee5025-d478-4e57-864e-fdb119e46288\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04063050448894501, \"Height\": 0.027221042662858963, \"Left\": 0.9593694806098938, \"Top\": 0.41013962030410767}, \"Polygon\": [{\"X\": 0.9669162034988403, \"Y\": 0.41013962030410767}, {\"X\": 1.0, \"Y\": 0.4171629250049591}, {\"X\": 0.9970101118087769, \"Y\": 0.43736064434051514}, {\"X\": 0.9593694806098938, \"Y\": 0.4303373694419861}]}, \"Id\": \"0939ca72-6d67-4004-8224-78aa357ca0d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"233ee45d-5e82-41e1-b8c3-b38eac9c5875\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12282490730285645, \"Height\": 0.04111078009009361, \"Left\": 0.47181984782218933, \"Top\": 0.34072980284690857}, \"Polygon\": [{\"X\": 0.4791269600391388, \"Y\": 0.34072980284690857}, {\"X\": 0.5946447253227234, \"Y\": 0.3622840642929077}, {\"X\": 0.5873376131057739, \"Y\": 0.3818405866622925}, {\"X\": 0.47181984782218933, \"Y\": 0.3602863550186157}]}, \"Id\": \"bb8277d8-1f0a-4f63-b5c9-1e75a4f0e799\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec97f0a8-eb08-4a27-a8bb-fa42602589c1\", \"63b6157b-d344-4145-8ee1-ffeedf3382a8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13061261177062988, \"Height\": 0.042563874274492264, \"Left\": 0.5873376727104187, \"Top\": 0.3622840642929077}, \"Polygon\": [{\"X\": 0.5946447849273682, \"Y\": 0.3622840642929077}, {\"X\": 0.7179502844810486, \"Y\": 0.3852913975715637}, {\"X\": 0.7106431126594543, \"Y\": 0.4048479497432709}, {\"X\": 0.5873376727104187, \"Y\": 0.3818405866622925}]}, \"Id\": \"86755615-a1b8-4399-8b6d-67edf9ef0c07\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d19f0602-b496-4f2b-b0cb-8559169265d4\", \"894edf37-5b78-4986-846e-92a758d899dc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12542085349559784, \"Height\": 0.041595153510570526, \"Left\": 0.7106431126594543, \"Top\": 0.3852913975715637}, \"Polygon\": [{\"X\": 0.7179502248764038, \"Y\": 0.3852913975715637}, {\"X\": 0.8360639810562134, \"Y\": 0.4073300063610077}, {\"X\": 0.8287568092346191, \"Y\": 0.42688655853271484}, {\"X\": 0.7106431126594543, \"Y\": 0.4048479199409485}]}, \"Id\": \"9ca22e22-fba2-4537-9158-d7ca478c14bc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d555eda7-2c97-4a51-8aa2-1e1953fdf61e\", \"53a21353-c752-4beb-8415-1e5bdb28e826\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13061267137527466, \"Height\": 0.04256388545036316, \"Left\": 0.8287568092346191, \"Top\": 0.4073300063610077}, \"Polygon\": [{\"X\": 0.8360639214515686, \"Y\": 0.4073300063610077}, {\"X\": 0.9593694806098938, \"Y\": 0.4303373694419861}, {\"X\": 0.9520623683929443, \"Y\": 0.44989389181137085}, {\"X\": 0.8287568092346191, \"Y\": 0.42688655853271484}]}, \"Id\": \"e0e9d061-e496-40ac-8327-383d64230640\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f28fa35b-9f2a-4baf-abdb-f65678ff90f2\", \"87d4d42e-5efa-4e75-bf5a-4ddfa25b48dd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04494777321815491, \"Height\": 0.026579832658171654, \"Left\": 0.9520623683929443, \"Top\": 0.4303373694419861}, \"Polygon\": [{\"X\": 0.9593694806098938, \"Y\": 0.4303373694419861}, {\"X\": 0.9970101118087769, \"Y\": 0.43736064434051514}, {\"X\": 0.9897029995918274, \"Y\": 0.4569171965122223}, {\"X\": 0.9520623683929443, \"Y\": 0.44989389181137085}]}, \"Id\": \"c5c4e506-d051-4d3c-bf12-3d5598e30e2d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"264b89e2-a21c-4271-85ba-32c7e5b0b457\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12306448817253113, \"Height\": 0.04175198823213577, \"Left\": 0.4642731249332428, \"Top\": 0.36028632521629333}, \"Polygon\": [{\"X\": 0.47181984782218933, \"Y\": 0.36028632521629333}, {\"X\": 0.5873376131057739, \"Y\": 0.3818405866622925}, {\"X\": 0.5797908902168274, \"Y\": 0.4020383059978485}, {\"X\": 0.4642731249332428, \"Y\": 0.38048407435417175}]}, \"Id\": \"3bef0206-4139-4e83-aca6-bc7e7ddd9e08\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e11c478c-9b17-43b4-97e5-351d1c79b010\", \"59cc8f0b-d16f-408b-8b55-3122a70b8346\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13085219264030457, \"Height\": 0.043205082416534424, \"Left\": 0.5797909498214722, \"Top\": 0.3818405866622925}, \"Polygon\": [{\"X\": 0.5873376727104187, \"Y\": 0.3818405866622925}, {\"X\": 0.7106431126594543, \"Y\": 0.4048479199409485}, {\"X\": 0.7030964493751526, \"Y\": 0.4250456690788269}, {\"X\": 0.5797909498214722, \"Y\": 0.4020383358001709}]}, \"Id\": \"50ec973d-45e0-419e-94f0-b383e5208435\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"77f5e3ae-37c9-4f4f-9f11-d7fd359747df\", \"61cd5db4-1750-46c1-ae3d-ae36e0dac43e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12566043436527252, \"Height\": 0.042236361652612686, \"Left\": 0.7030963897705078, \"Top\": 0.4048479199409485}, \"Polygon\": [{\"X\": 0.7106431126594543, \"Y\": 0.4048479199409485}, {\"X\": 0.8287568092346191, \"Y\": 0.42688652873039246}, {\"X\": 0.8212101459503174, \"Y\": 0.4470842778682709}, {\"X\": 0.7030963897705078, \"Y\": 0.4250456690788269}]}, \"Id\": \"c915a037-30e0-4133-87c0-03c7c14c89b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8141d841-3f69-4828-9406-1391101ddfec\", \"d1fcd990-bb74-4b3a-813b-6b5ce4f55fe5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13085225224494934, \"Height\": 0.04320509359240532, \"Left\": 0.8212100863456726, \"Top\": 0.42688652873039246}, \"Polygon\": [{\"X\": 0.8287568092346191, \"Y\": 0.42688652873039246}, {\"X\": 0.9520623683929443, \"Y\": 0.44989386200904846}, {\"X\": 0.9445156455039978, \"Y\": 0.4700916111469269}, {\"X\": 0.8212100863456726, \"Y\": 0.4470842778682709}]}, \"Id\": \"8228f7b1-ed98-4ca8-81a4-eb390538b984\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1903fff3-0ebc-4e4f-9387-a32511fc609f\", \"fcf846c3-af67-4317-ba31-b95cf4eeab8a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.86467742919922, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04518735781311989, \"Height\": 0.027221042662858963, \"Left\": 0.9445156455039978, \"Top\": 0.44989389181137085}, \"Polygon\": [{\"X\": 0.9520623683929443, \"Y\": 0.44989389181137085}, {\"X\": 0.9897029995918274, \"Y\": 0.4569171667098999}, {\"X\": 0.9821562767028809, \"Y\": 0.4771149158477783}, {\"X\": 0.9445156455039978, \"Y\": 0.4700916111469269}]}, \"Id\": \"86199bea-ef6d-44eb-a4cf-4211fa7c364d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0fab1e1-9f38-4a5f-8d6c-2441e273003d\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.12767028808594, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3397049009799957, \"Height\": 0.11232096701860428, \"Left\": 0.27586859464645386, \"Top\": 0.160619854927063}, \"Polygon\": [{\"X\": 0.29552340507507324, \"Y\": 0.160619854927063}, {\"X\": 0.6155734658241272, \"Y\": 0.2203373908996582}, {\"X\": 0.5959186553955078, \"Y\": 0.27294081449508667}, {\"X\": 0.27586859464645386, \"Y\": 0.21322327852249146}]}, \"Id\": \"c63fe980-57de-420a-b091-ab2e9fb415e7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f36885b4-79b9-4054-a41d-7eda4afc863f\", \"d9d524f7-d731-4e96-b0a2-415ecf0a684c\", \"c33bc63f-356b-4f5a-9ffd-1e734dd8c076\", \"0393c4c1-f186-4057-87d0-560be8ffd74a\", \"f6bf8c03-3670-4c45-8bde-3104c5c007ee\", \"3be9a220-03b2-4983-be4c-7ed885df33ab\", \"4d963d5b-0fb9-404e-81e0-3231bd935602\", \"422e1df0-293f-4e55-8107-94e1ffd1d894\", \"06440791-2642-491c-b052-8223a8972946\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11578446626663208, \"Height\": 0.038612280040979385, \"Left\": 0.2886921465396881, \"Top\": 0.160619854927063}, \"Polygon\": [{\"X\": 0.29552340507507324, \"Y\": 0.160619854927063}, {\"X\": 0.4044766128063202, \"Y\": 0.18094924092292786}, {\"X\": 0.39764538407325745, \"Y\": 0.19923214614391327}, {\"X\": 0.2886921465396881, \"Y\": 0.1789027601480484}]}, \"Id\": \"f36885b4-79b9-4054-a41d-7eda4afc863f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"028d9357-1a3c-4c7a-86a9-d2c011a39838\", \"2f985b37-3c6d-4273-a22d-25434dd6560c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11152846366167068, \"Height\": 0.03781815990805626, \"Left\": 0.39764538407325745, \"Top\": 0.18094924092292786}, \"Polygon\": [{\"X\": 0.4044766128063202, \"Y\": 0.18094924092292786}, {\"X\": 0.5091738700866699, \"Y\": 0.2004844844341278}, {\"X\": 0.5023425817489624, \"Y\": 0.21876738965511322}, {\"X\": 0.39764538407325745, \"Y\": 0.19923214614391327}]}, \"Id\": \"d9d524f7-d731-4e96-b0a2-415ecf0a684c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ddf803d9-bb68-4319-b531-bbc3b81bdf2c\", \"0f1c9c2d-0dab-421b-b267-a28c279bc72f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1132308840751648, \"Height\": 0.03813581168651581, \"Left\": 0.5023425817489624, \"Top\": 0.2004844844341278}, \"Polygon\": [{\"X\": 0.5091738700866699, \"Y\": 0.2004844844341278}, {\"X\": 0.6155734658241272, \"Y\": 0.2203374058008194}, {\"X\": 0.6087422370910645, \"Y\": 0.2386203110218048}, {\"X\": 0.5023425817489624, \"Y\": 0.21876738965511322}]}, \"Id\": \"c33bc63f-356b-4f5a-9ffd-1e734dd8c076\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"33f8714d-d5a1-4775-accc-234337cb1263\", \"14a7cc25-20f3-40f5-9f53-c76529134e92\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11530508100986481, \"Height\": 0.037329256534576416, \"Left\": 0.28234031796455383, \"Top\": 0.1789027452468872}, \"Polygon\": [{\"X\": 0.2886921763420105, \"Y\": 0.1789027452468872}, {\"X\": 0.39764538407325745, \"Y\": 0.19923211634159088}, {\"X\": 0.3912935256958008, \"Y\": 0.21623200178146362}, {\"X\": 0.28234031796455383, \"Y\": 0.19590263068675995}]}, \"Id\": \"0393c4c1-f186-4057-87d0-560be8ffd74a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"65d23fab-b0ce-431e-9c82-c9848df6d850\", \"51ab0c73-20ec-49bf-aca5-332744c33246\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11104907095432281, \"Height\": 0.03653513640165329, \"Left\": 0.3912935256958008, \"Top\": 0.19923211634159088}, \"Polygon\": [{\"X\": 0.39764538407325745, \"Y\": 0.19923211634159088}, {\"X\": 0.5023425817489624, \"Y\": 0.21876737475395203}, {\"X\": 0.4959907531738281, \"Y\": 0.23576726019382477}, {\"X\": 0.3912935256958008, \"Y\": 0.21623200178146362}]}, \"Id\": \"f6bf8c03-3670-4c45-8bde-3104c5c007ee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f064466-a4bc-463d-89b8-5fdb22bb0fff\", \"ca4fa152-1838-45dd-a31e-027d51f1eb03\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11275149881839752, \"Height\": 0.03685278818011284, \"Left\": 0.4959907531738281, \"Top\": 0.21876737475395203}, \"Polygon\": [{\"X\": 0.5023425817489624, \"Y\": 0.21876737475395203}, {\"X\": 0.6087422370910645, \"Y\": 0.23862028121948242}, {\"X\": 0.6023904085159302, \"Y\": 0.25562018156051636}, {\"X\": 0.4959907531738281, \"Y\": 0.23576726019382477}]}, \"Id\": \"3be9a220-03b2-4983-be4c-7ed885df33ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9eb0eaa0-2259-4994-b073-74b6b404b27c\", \"48d5e33a-3594-470e-816d-132cabb36e58\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11542492359876633, \"Height\": 0.03765000402927399, \"Left\": 0.27586859464645386, \"Top\": 0.19590263068675995}, \"Polygon\": [{\"X\": 0.28234031796455383, \"Y\": 0.19590263068675995}, {\"X\": 0.3912935256958008, \"Y\": 0.21623201668262482}, {\"X\": 0.3848218321800232, \"Y\": 0.23355263471603394}, {\"X\": 0.27586859464645386, \"Y\": 0.21322326362133026}]}, \"Id\": \"4d963d5b-0fb9-404e-81e0-3231bd935602\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b7bc6b7-e9d7-40b2-9209-6b6765d78099\", \"7fb5faf4-9f59-4362-bcac-48cd600a2576\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11116892099380493, \"Height\": 0.03685588389635086, \"Left\": 0.3848218321800232, \"Top\": 0.21623201668262482}, \"Polygon\": [{\"X\": 0.3912935256958008, \"Y\": 0.21623201668262482}, {\"X\": 0.4959907531738281, \"Y\": 0.23576727509498596}, {\"X\": 0.48951902985572815, \"Y\": 0.2530879080295563}, {\"X\": 0.3848218321800232, \"Y\": 0.23355263471603394}]}, \"Id\": \"422e1df0-293f-4e55-8107-94e1ffd1d894\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc90e3af-b02d-43dd-937c-04a2c8daf7b7\", \"fd730308-f558-4123-98a4-4238e6da4a94\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12767028808594, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11287134140729904, \"Height\": 0.03717353567481041, \"Left\": 0.48951902985572815, \"Top\": 0.23576727509498596}, \"Polygon\": [{\"X\": 0.4959907531738281, \"Y\": 0.23576727509498596}, {\"X\": 0.6023904085159302, \"Y\": 0.25562018156051636}, {\"X\": 0.5959186553955078, \"Y\": 0.27294081449508667}, {\"X\": 0.48951902985572815, \"Y\": 0.2530879080295563}]}, \"Id\": \"06440791-2642-491c-b052-8223a8972946\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1af85064-0459-4f99-91b3-ece74a285fdb\", \"1821d57e-6d94-4527-b3a4-aad54d8772f5\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 64.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03692108392715454, \"Height\": 0.016429908573627472, \"Left\": 0.17176911234855652, \"Top\": 0.412743479013443}, \"Polygon\": [{\"X\": 0.17560113966464996, \"Y\": 0.412743479013443}, {\"X\": 0.20869019627571106, \"Y\": 0.4189175069332123}, {\"X\": 0.2048581838607788, \"Y\": 0.42917338013648987}, {\"X\": 0.17176911234855652, \"Y\": 0.4229993522167206}]}, \"Id\": \"75806b59-3cee-42c5-8e08-668f5d572385\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c84814d8-e3be-4b19-8f94-d2842cf25901\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"d065dddd-7d11-44a4-838f-4105d91d8a17\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 64.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06800727546215057, \"Height\": 0.022708075121045113, \"Left\": 0.20907802879810333, \"Top\": 0.41930097341537476}, \"Polygon\": [{\"X\": 0.21310196816921234, \"Y\": 0.41930097341537476}, {\"X\": 0.2770853042602539, \"Y\": 0.431239515542984}, {\"X\": 0.2730613648891449, \"Y\": 0.4420090615749359}, {\"X\": 0.20907802879810333, \"Y\": 0.43007051944732666}]}, \"Id\": \"c84814d8-e3be-4b19-8f94-d2842cf25901\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d22fb5c-1c7b-49bb-8363-227b717aa19c\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03797657787799835, \"Height\": 0.016862275078892708, \"Left\": 0.1242142990231514, \"Top\": 0.5388844013214111}, \"Polygon\": [{\"X\": 0.1281408816576004, \"Y\": 0.5388844013214111}, {\"X\": 0.16219088435173035, \"Y\": 0.5452377796173096}, {\"X\": 0.15826430916786194, \"Y\": 0.5557466745376587}, {\"X\": 0.1242142990231514, \"Y\": 0.549393355846405}]}, \"Id\": \"e035e37b-d634-4a0f-941c-c8948e0689f5\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"83a5f96e-28e4-41d3-bfcd-d4f982180703\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"70ab873d-ae46-4082-90e9-cbabb8a7f472\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06761428713798523, \"Height\": 0.02263624407351017, \"Left\": 0.16266612708568573, \"Top\": 0.545931339263916}, \"Polygon\": [{\"X\": 0.1666906774044037, \"Y\": 0.545931339263916}, {\"X\": 0.23028041422367096, \"Y\": 0.5577964186668396}, {\"X\": 0.2262558788061142, \"Y\": 0.5685675740242004}, {\"X\": 0.16266612708568573, \"Y\": 0.5567024946212769}]}, \"Id\": \"83a5f96e-28e4-41d3-bfcd-d4f982180703\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a121f08a-aa2d-4b4a-a043-2a8ce4a4b1e7\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"1085c7d6-05db-466c-bb81-73e6d05e6e57\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"1085c7d6-05db-466c-bb81-73e6d05e6e57\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"144853\", \"date\": \"Mon, 26 Apr 2021 21:35:12 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__180_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.0}]}, \"Id\": \"cfceaaea-d3d2-4043-92cf-5c942cbc85dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efcc0d6e-df48-40d2-ab8c-c8d4faecc75e\", \"bbf18f85-a1c3-4a90-8c5c-bfc413fc5697\", \"d483bc75-dd48-4409-9956-eab486ce039b\", \"bf303e19-6e18-4c2e-a227-96f20c302a94\", \"f297177c-283d-4bc7-a34f-7e453dcdcbc3\", \"cc9e07d5-c247-4f63-b060-6e80b815dba4\", \"004c6cf7-44d8-4c08-b215-452fb7fcc543\", \"843b4fc1-64b7-426d-96bc-0bb4ef88913d\", \"8b22df2c-1343-4d41-8b83-b8c40e4594d8\", \"619436cb-a68c-4dd2-b59e-0cab81a3fba5\", \"a31460b4-5a2c-428d-ae9e-9461163e45c6\", \"9cb1438c-e752-4018-9f3e-1adaf0aa140d\", \"6490b942-ae56-4b68-b73c-8c643ecd7b9f\", \"272fdec7-32bd-49ca-a2da-a12c0f0d7a85\", \"1b0ee486-1d1f-4677-bd92-8f751b187625\", \"8d0ea22f-f8a9-47de-9b7f-eab5b597a85d\", \"ca2f7306-c4ce-425a-b28a-faa4d2c102f6\", \"f86dc785-8381-4502-a4dc-f20c8b200c5b\", \"f68af911-b448-43be-811d-9134613e48d3\", \"8a41d278-d943-4f9c-9822-791fba8a5923\", \"9876a29c-e79d-48de-950d-bf1feb70002b\", \"8f23ae33-2bdb-43da-9d29-164ae9cb3251\", \"c4bf4b3a-50da-49f5-be3a-30d8aa74c678\", \"e28fae1c-1f29-4a5d-a27e-a30c9c35bba6\", \"0e6637f2-14cc-466d-8cb7-af55145e2a72\", \"f40ec5bd-8d2b-410e-b07b-fe8e497b17b4\", \"5a222648-9550-46f7-b81b-ce2384b5353c\", \"9d96fd4e-029f-4de7-85ad-66dbca701c4f\", \"97f989e4-dbe7-43ac-9525-980b2e9251ea\", \"2544f783-8ce3-4b19-bae7-45c8697e1b86\", \"d025e215-cdfa-4a1a-91e9-25a30d5ca09a\", \"8c6066fd-c526-43a1-80b4-30b5d6d96301\", \"80e7b80a-f824-444a-8515-01e9acc9f057\", \"c525bff2-0f05-4216-bbb4-6b4b2a31d5bb\", \"e1ba4f8f-bc7c-4c34-afd8-05bd60599623\", \"bac5c6bf-d301-4b58-8b98-3a784eb7cf41\", \"f76ed341-ef09-4a71-b749-c94cbd353eee\", \"60642cfe-75a7-4bf3-8f43-2007f1d318fb\", \"68c016ca-e8d5-4d03-bed3-032527a0f94a\", \"59428840-bb52-4b2b-9f06-e254dd202dbb\", \"0f7ebdab-1968-4872-b463-a7e04b637cc1\", \"f77b26e0-6531-4209-84f6-8535d5021ed2\", \"dba23c0d-bea5-4e77-bcf2-6a1ff3617e52\", \"23a2b1fa-2730-4e3f-a188-63ce549266ce\", \"3fdef625-8f0b-4f87-92bd-7192bed104f7\", \"87c08873-cc1c-4bd6-ba47-f0d336ee3d7f\", \"4a825980-917b-4dbc-baaf-d2dba47270d4\", \"c89531ed-0e8d-481c-ad4e-68b0d65a6c52\", \"f23280be-7fb4-48a5-be47-12ef039f9d56\", \"0b793351-121b-4bea-aa40-2b2702a1d364\", \"05813349-640b-41b9-a614-e96cfb9c5869\", \"97eb256b-3eb2-4a62-9d74-9a14dd1097c9\", \"7a6996a7-8917-4b32-a2f3-a40676d994a5\", \"67e186f2-7a1e-4d44-81ad-ac4ee744c7b7\", \"92f1d7a3-d62d-4afb-8489-16fcf76d2bf0\", \"426a3b4d-c9a7-4df0-8660-4ba262a89f82\", \"8dad4a5e-b8fa-4750-95a9-1fe1cc473556\", \"3553e9a0-8689-4ec5-b629-0388cebc119e\", \"4f4e2504-e543-4660-993b-0ff9104ac7d8\", \"359da108-1776-49fb-ae3c-417f5787ef06\", \"742245d9-d97d-4988-a9ba-da5ec2e24432\", \"dc88ea88-34ba-4eb2-a69e-286d5a365fe5\", \"5de8edca-d1b5-47b6-8f18-a733ac419ad3\", \"d4d42be2-fce7-4cca-b0fc-f2f2d958ec83\", \"922f9fad-4989-4da2-8379-bd394bd2b857\", \"b6c868de-7e46-44b8-9323-daa4aed875e2\", \"33d8921c-10f2-41db-b645-4d5620eba0da\", \"101120ce-e986-4799-91f9-fc4c0df59237\", \"3d5c11de-04b3-4639-8ef8-53255a2e79a0\", \"57f8dc59-1881-4c1c-8945-f6ba17ab41c3\", \"16cba449-ddd0-43d4-8db1-357c013493eb\", \"1d0ec6d6-801b-4469-b39b-671bb5ffeea8\", \"3e6ecf7a-97be-413c-8d46-30f4d041cbf2\", \"644ff93f-ac43-4abe-8a50-311634cfe7e2\", \"cd8d7194-4a9e-42df-88a9-ad347d8b6826\", \"1b8a6384-de12-465b-9005-840ab070a6ee\", \"ec7fbfdc-af90-4764-99c3-cb039456ad12\", \"7daa6a26-214c-48ee-adcc-0a873034fe48\", \"66dc3f63-5d9d-4e33-9367-09870b621f04\", \"fa96a6a5-c441-4294-b737-b533aaaf7793\", \"c8be70a1-a073-4ec7-bc06-b74e52819af9\", \"ad571fb0-40d6-458a-b6e6-a9bd7a47087b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.18338012695312, \"Text\": \"Date: 2020-03-27\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14002543687820435, \"Height\": 0.010714312084019184, \"Left\": 0.10495179891586304, \"Top\": 0.9552271962165833}, \"Polygon\": [{\"X\": 0.24497723579406738, \"Y\": 0.9659414887428284}, {\"X\": 0.10495179891586304, \"Y\": 0.9659414887428284}, {\"X\": 0.10495179891586304, \"Y\": 0.9552271962165833}, {\"X\": 0.24497723579406738, \"Y\": 0.9552271962165833}]}, \"Id\": \"efcc0d6e-df48-40d2-ab8c-c8d4faecc75e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bcf23e72-70fb-4d1f-b168-e0889456e934\", \"728a97be-987d-4f05-aff7-fbd90a1c4a6a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49607849121094, \"Text\": \"Name: SomeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15027901530265808, \"Height\": 0.010586082935333252, \"Left\": 0.7632668614387512, \"Top\": 0.927973747253418}, \"Polygon\": [{\"X\": 0.9135459065437317, \"Y\": 0.9385598301887512}, {\"X\": 0.7632668614387512, \"Y\": 0.9385598301887512}, {\"X\": 0.7632668614387512, \"Y\": 0.927973747253418}, {\"X\": 0.9135459065437317, \"Y\": 0.927973747253418}]}, \"Id\": \"bbf18f85-a1c3-4a90-8c5c-bfc413fc5697\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8c85fd30-62d8-4bc9-9d6f-65c8e8f3c465\", \"8bad0276-2959-41b6-a8d3-7748540ff97f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.11153411865234, \"Text\": \"Key1: value1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10122016817331314, \"Height\": 0.01312099490314722, \"Left\": 0.13982093334197998, \"Top\": 0.8986172080039978}, \"Polygon\": [{\"X\": 0.24104109406471252, \"Y\": 0.9117382168769836}, {\"X\": 0.13982093334197998, \"Y\": 0.9117382168769836}, {\"X\": 0.13982093334197998, \"Y\": 0.8986172080039978}, {\"X\": 0.24104109406471252, \"Y\": 0.8986172080039978}]}, \"Id\": \"d483bc75-dd48-4409-9956-eab486ce039b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"956b6c3b-daf7-410d-b0a4-3f2dd9f680cf\", \"ce145729-480d-47f4-9e7a-8e9e9c8a6fc1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 90.43286895751953, \"Text\": \"Key2:value2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1018068790435791, \"Height\": 0.013142012059688568, \"Left\": 0.13970501720905304, \"Top\": 0.8743228316307068}, \"Polygon\": [{\"X\": 0.24151189625263214, \"Y\": 0.8874648213386536}, {\"X\": 0.13970501720905304, \"Y\": 0.8874648213386536}, {\"X\": 0.13970501720905304, \"Y\": 0.8743228316307068}, {\"X\": 0.24151189625263214, \"Y\": 0.8743228316307068}]}, \"Id\": \"bf303e19-6e18-4c2e-a227-96f20c302a94\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b2376a28-e7b8-4cc4-9c78-f38ae140c75a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07887268066406, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09039811789989471, \"Height\": 0.010609105229377747, \"Left\": 0.7987444400787354, \"Top\": 0.8314266800880432}, \"Polygon\": [{\"X\": 0.8891425728797913, \"Y\": 0.8420357704162598}, {\"X\": 0.7987444400787354, \"Y\": 0.8420357704162598}, {\"X\": 0.7987444400787354, \"Y\": 0.8314266800880432}, {\"X\": 0.8891425728797913, \"Y\": 0.8314266800880432}]}, \"Id\": \"f297177c-283d-4bc7-a34f-7e453dcdcbc3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"643529bf-50a7-4d20-92df-f7555714101f\", \"bd5f449a-9c17-4a45-aa58-cc9efa0afecd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57508850097656, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09028878808021545, \"Height\": 0.010553941130638123, \"Left\": 0.6892620921134949, \"Top\": 0.831469714641571}, \"Polygon\": [{\"X\": 0.7795509099960327, \"Y\": 0.8420236706733704}, {\"X\": 0.6892620921134949, \"Y\": 0.8420236706733704}, {\"X\": 0.6892620921134949, \"Y\": 0.831469714641571}, {\"X\": 0.7795509099960327, \"Y\": 0.831469714641571}]}, \"Id\": \"cc9e07d5-c247-4f63-b060-6e80b815dba4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca04a801-ba80-45a7-a333-d8d9fd95cb94\", \"60c75e2b-c596-40d2-a720-019aa9496960\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2474365234375, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09006714075803757, \"Height\": 0.010435134172439575, \"Left\": 0.5797154307365417, \"Top\": 0.8315487504005432}, \"Polygon\": [{\"X\": 0.6697825789451599, \"Y\": 0.8419838547706604}, {\"X\": 0.5797154307365417, \"Y\": 0.8419838547706604}, {\"X\": 0.5797154307365417, \"Y\": 0.8315487504005432}, {\"X\": 0.6697825789451599, \"Y\": 0.8315487504005432}]}, \"Id\": \"004c6cf7-44d8-4c08-b215-452fb7fcc543\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"97a6da58-507b-45eb-8a9a-e928dd4048b9\", \"915805da-f3c1-4860-994a-7b0afe4ad106\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37327575683594, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0902983695268631, \"Height\": 0.01045698206871748, \"Left\": 0.7989612221717834, \"Top\": 0.8137636184692383}, \"Polygon\": [{\"X\": 0.8892596364021301, \"Y\": 0.8242206573486328}, {\"X\": 0.7989612221717834, \"Y\": 0.8242206573486328}, {\"X\": 0.7989612221717834, \"Y\": 0.8137636184692383}, {\"X\": 0.8892596364021301, \"Y\": 0.8137636184692383}]}, \"Id\": \"843b4fc1-64b7-426d-96bc-0bb4ef88913d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"91e25f28-1dbb-4dda-afe3-b2f3c2b54f4c\", \"e07b1033-20fd-48da-b009-e4f63275f42e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66166687011719, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09061144292354584, \"Height\": 0.010369032621383667, \"Left\": 0.6890227198600769, \"Top\": 0.8138829469680786}, \"Polygon\": [{\"X\": 0.7796341776847839, \"Y\": 0.8242520093917847}, {\"X\": 0.6890227198600769, \"Y\": 0.8242520093917847}, {\"X\": 0.6890227198600769, \"Y\": 0.8138829469680786}, {\"X\": 0.7796341776847839, \"Y\": 0.8138829469680786}]}, \"Id\": \"8b22df2c-1343-4d41-8b83-b8c40e4594d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e67419d8-cef6-49dd-a865-59819e900516\", \"24f99a53-39fb-47ee-bb16-4c21ccade29c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2974853515625, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09051480889320374, \"Height\": 0.010247543454170227, \"Left\": 0.5795015692710876, \"Top\": 0.8139326572418213}, \"Polygon\": [{\"X\": 0.670016348361969, \"Y\": 0.8241801857948303}, {\"X\": 0.5795015692710876, \"Y\": 0.8241801857948303}, {\"X\": 0.5795015692710876, \"Y\": 0.8139326572418213}, {\"X\": 0.670016348361969, \"Y\": 0.8139326572418213}]}, \"Id\": \"619436cb-a68c-4dd2-b59e-0cab81a3fba5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d17cf01-e515-45f8-8bd4-ef29d4ef53fe\", \"bbcf6806-6cd9-4088-b0c0-ff65a417930f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48873901367188, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09024304151535034, \"Height\": 0.01049630343914032, \"Left\": 0.798848569393158, \"Top\": 0.796119749546051}, \"Polygon\": [{\"X\": 0.8890915513038635, \"Y\": 0.8066160678863525}, {\"X\": 0.798848569393158, \"Y\": 0.8066160678863525}, {\"X\": 0.798848569393158, \"Y\": 0.796119749546051}, {\"X\": 0.8890915513038635, \"Y\": 0.796119749546051}]}, \"Id\": \"a31460b4-5a2c-428d-ae9e-9461163e45c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5ae6698a-8c8d-40b4-a64f-7c79311442b8\", \"1a91e899-c629-406c-be96-752f6fab2024\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50863647460938, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09020443260669708, \"Height\": 0.010549783706665039, \"Left\": 0.6891225576400757, \"Top\": 0.7960783243179321}, \"Polygon\": [{\"X\": 0.7793269753456116, \"Y\": 0.8066281080245972}, {\"X\": 0.6891225576400757, \"Y\": 0.8066281080245972}, {\"X\": 0.6891225576400757, \"Y\": 0.7960783243179321}, {\"X\": 0.7793269753456116, \"Y\": 0.7960783243179321}]}, \"Id\": \"9cb1438c-e752-4018-9f3e-1adaf0aa140d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"afac5207-d39f-4e72-be16-b487ed02250b\", \"2ca333d5-22af-44ed-8ee8-b91ebeb41dea\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53694915771484, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09008017182350159, \"Height\": 0.010462477803230286, \"Left\": 0.5797345042228699, \"Top\": 0.7961404323577881}, \"Polygon\": [{\"X\": 0.6698147058486938, \"Y\": 0.806602954864502}, {\"X\": 0.5797345042228699, \"Y\": 0.806602954864502}, {\"X\": 0.5797345042228699, \"Y\": 0.7961404323577881}, {\"X\": 0.6698147058486938, \"Y\": 0.7961404323577881}]}, \"Id\": \"6490b942-ae56-4b68-b73c-8c643ecd7b9f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1faa1f3d-e846-430d-b7e2-2babba567b56\", \"7110a847-208d-460b-b5c5-946a2e955840\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51863098144531, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10511184483766556, \"Height\": 0.01205967366695404, \"Left\": 0.5445836782455444, \"Top\": 0.7516958117485046}, \"Polygon\": [{\"X\": 0.6496955752372742, \"Y\": 0.7637554407119751}, {\"X\": 0.5445836782455444, \"Y\": 0.7637554407119751}, {\"X\": 0.5445836782455444, \"Y\": 0.7516958117485046}, {\"X\": 0.6496955752372742, \"Y\": 0.7516958117485046}]}, \"Id\": \"272fdec7-32bd-49ca-a2da-a12c0f0d7a85\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af69e4c6-1d64-49d1-871d-bd7c4624cd5c\", \"974ab210-6500-4b64-839d-0835d184d5bd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.545166015625, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10513237863779068, \"Height\": 0.012172281742095947, \"Left\": 0.4205978512763977, \"Top\": 0.7516720294952393}, \"Polygon\": [{\"X\": 0.5257301926612854, \"Y\": 0.7638443112373352}, {\"X\": 0.4205978512763977, \"Y\": 0.7638443112373352}, {\"X\": 0.4205978512763977, \"Y\": 0.7516720294952393}, {\"X\": 0.5257301926612854, \"Y\": 0.7516720294952393}]}, \"Id\": \"1b0ee486-1d1f-4677-bd92-8f751b187625\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e4b96a0-f5b2-4e05-b411-92e914d07e8d\", \"2a3b4f09-c6d7-4e7c-9dc4-24bf1adb36c4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49992370605469, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10540186613798141, \"Height\": 0.012133851647377014, \"Left\": 0.2963801324367523, \"Top\": 0.7516486644744873}, \"Polygon\": [{\"X\": 0.40178200602531433, \"Y\": 0.7637825012207031}, {\"X\": 0.2963801324367523, \"Y\": 0.7637825012207031}, {\"X\": 0.2963801324367523, \"Y\": 0.7516486644744873}, {\"X\": 0.40178200602531433, \"Y\": 0.7516486644744873}]}, \"Id\": \"8d0ea22f-f8a9-47de-9b7f-eab5b597a85d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e35f6c5-9c2c-48f7-bf2c-0f667c0cfa9b\", \"e259e916-c730-440a-b6ba-ee00262c6ffc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55414581298828, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10604970157146454, \"Height\": 0.012197509407997131, \"Left\": 0.1717274934053421, \"Top\": 0.7516767382621765}, \"Polygon\": [{\"X\": 0.27777719497680664, \"Y\": 0.7638742327690125}, {\"X\": 0.1717274934053421, \"Y\": 0.7638742327690125}, {\"X\": 0.1717274934053421, \"Y\": 0.7516767382621765}, {\"X\": 0.27777719497680664, \"Y\": 0.7516767382621765}]}, \"Id\": \"ca2f7306-c4ce-425a-b28a-faa4d2c102f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e603eee-14c5-40f7-b345-e5fbc23fe98d\", \"fb41de70-cd4e-4bff-b59c-34ec9e4ac3dd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5223388671875, \"Text\": \"Value 2.1.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10518008470535278, \"Height\": 0.012298762798309326, \"Left\": 0.048173367977142334, \"Top\": 0.7515966892242432}, \"Polygon\": [{\"X\": 0.15335345268249512, \"Y\": 0.7638954520225525}, {\"X\": 0.048173367977142334, \"Y\": 0.7638954520225525}, {\"X\": 0.048173367977142334, \"Y\": 0.7515966892242432}, {\"X\": 0.15335345268249512, \"Y\": 0.7515966892242432}]}, \"Id\": \"f86dc785-8381-4502-a4dc-f20c8b200c5b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b693696-5896-4220-b5c2-151620a8df6e\", \"9444ee26-135d-4960-88ea-5b64046d70fe\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41546630859375, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10443023592233658, \"Height\": 0.012165337800979614, \"Left\": 0.5449391603469849, \"Top\": 0.7310429811477661}, \"Polygon\": [{\"X\": 0.6493694186210632, \"Y\": 0.7432082891464233}, {\"X\": 0.5449391603469849, \"Y\": 0.7432082891464233}, {\"X\": 0.5449391603469849, \"Y\": 0.7310429811477661}, {\"X\": 0.6493694186210632, \"Y\": 0.7310429811477661}]}, \"Id\": \"f68af911-b448-43be-811d-9134613e48d3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e6ee364-2f14-42bb-90e5-2889c6e79e79\", \"390c3689-a5b2-4a4d-8b31-a7d88829545a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5669937133789, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10511070489883423, \"Height\": 0.012397795915603638, \"Left\": 0.4204331040382385, \"Top\": 0.7309888005256653}, \"Polygon\": [{\"X\": 0.5255438089370728, \"Y\": 0.7433866262435913}, {\"X\": 0.4204331040382385, \"Y\": 0.7433866262435913}, {\"X\": 0.4204331040382385, \"Y\": 0.7309888005256653}, {\"X\": 0.5255438089370728, \"Y\": 0.7309888005256653}]}, \"Id\": \"8a41d278-d943-4f9c-9822-791fba8a5923\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"559162e4-4da9-4bee-87c5-5f24fa7add98\", \"98b4ca11-226d-45fc-8547-60ad5a4846ad\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51673889160156, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10445433109998703, \"Height\": 0.012168049812316895, \"Left\": 0.2965649664402008, \"Top\": 0.7310826778411865}, \"Polygon\": [{\"X\": 0.40101930499076843, \"Y\": 0.7432507276535034}, {\"X\": 0.2965649664402008, \"Y\": 0.7432507276535034}, {\"X\": 0.2965649664402008, \"Y\": 0.7310826778411865}, {\"X\": 0.40101930499076843, \"Y\": 0.7310826778411865}]}, \"Id\": \"9876a29c-e79d-48de-950d-bf1feb70002b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c63add48-85b2-4523-82e1-a8600bd31b71\", \"f7a11e71-26df-47fb-86b5-0980997c8162\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59683990478516, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10589706897735596, \"Height\": 0.01225501298904419, \"Left\": 0.17180287837982178, \"Top\": 0.731087863445282}, \"Polygon\": [{\"X\": 0.27769994735717773, \"Y\": 0.7433428764343262}, {\"X\": 0.17180287837982178, \"Y\": 0.7433428764343262}, {\"X\": 0.17180287837982178, \"Y\": 0.731087863445282}, {\"X\": 0.27769994735717773, \"Y\": 0.731087863445282}]}, \"Id\": \"8f23ae33-2bdb-43da-9d29-164ae9cb3251\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a91836b0-bbdb-4bee-9d8d-5a72f8f51d73\", \"9ac54672-5147-4655-9ec5-f43ba57c5205\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42216491699219, \"Text\": \"Value 2.2.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1053972914814949, \"Height\": 0.01248881220817566, \"Left\": 0.04851841181516647, \"Top\": 0.7309830188751221}, \"Polygon\": [{\"X\": 0.15391570329666138, \"Y\": 0.7434718012809753}, {\"X\": 0.04851841181516647, \"Y\": 0.7434718012809753}, {\"X\": 0.04851841181516647, \"Y\": 0.7309830188751221}, {\"X\": 0.15391570329666138, \"Y\": 0.7309830188751221}]}, \"Id\": \"c4bf4b3a-50da-49f5-be3a-30d8aa74c678\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3a4bb39-85c4-4eda-b716-e03ebfa8220c\", \"fbff110e-fa84-49c0-943b-87361e1a3497\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41350555419922, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10485108941793442, \"Height\": 0.012044188566505909, \"Left\": 0.544660747051239, \"Top\": 0.7106893062591553}, \"Polygon\": [{\"X\": 0.6495118141174316, \"Y\": 0.7227334976196289}, {\"X\": 0.544660747051239, \"Y\": 0.7227334976196289}, {\"X\": 0.544660747051239, \"Y\": 0.7106893062591553}, {\"X\": 0.6495118141174316, \"Y\": 0.7106893062591553}]}, \"Id\": \"e28fae1c-1f29-4a5d-a27e-a30c9c35bba6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"419fae84-1e3f-48fb-92b1-a589aca61177\", \"b2777a54-f426-4ca1-b021-3f85f9b8ba5d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51094055175781, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10519871115684509, \"Height\": 0.011949211359024048, \"Left\": 0.4203605651855469, \"Top\": 0.7107242941856384}, \"Polygon\": [{\"X\": 0.5255593061447144, \"Y\": 0.7226734757423401}, {\"X\": 0.4203605651855469, \"Y\": 0.7226734757423401}, {\"X\": 0.4203605651855469, \"Y\": 0.7107242941856384}, {\"X\": 0.5255593061447144, \"Y\": 0.7107242941856384}]}, \"Id\": \"0e6637f2-14cc-466d-8cb7-af55145e2a72\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f25523e4-28f2-4d29-bd77-6f7d6f924221\", \"d03c8443-d861-432c-bc68-03151d16861d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61082458496094, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10426383465528488, \"Height\": 0.012102629989385605, \"Left\": 0.29676902294158936, \"Top\": 0.7107013463973999}, \"Polygon\": [{\"X\": 0.40103286504745483, \"Y\": 0.7228039503097534}, {\"X\": 0.29676902294158936, \"Y\": 0.7228039503097534}, {\"X\": 0.29676902294158936, \"Y\": 0.7107013463973999}, {\"X\": 0.40103286504745483, \"Y\": 0.7107013463973999}]}, \"Id\": \"f40ec5bd-8d2b-410e-b07b-fe8e497b17b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cfecd0b3-598b-489b-8b1c-ebdf8adad885\", \"abadac3c-5e40-45be-8a0b-d30a36e03009\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64312744140625, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10549319535493851, \"Height\": 0.012176543474197388, \"Left\": 0.17200416326522827, \"Top\": 0.7106972932815552}, \"Polygon\": [{\"X\": 0.2774973511695862, \"Y\": 0.722873866558075}, {\"X\": 0.17200416326522827, \"Y\": 0.722873866558075}, {\"X\": 0.17200416326522827, \"Y\": 0.7106972932815552}, {\"X\": 0.2774973511695862, \"Y\": 0.7106972932815552}]}, \"Id\": \"5a222648-9550-46f7-b81b-ce2384b5353c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aad4e773-66ea-4037-8643-2659698e53cf\", \"7e373409-6aa9-4c09-93e0-ab93b6218d4a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.31266021728516, \"Text\": \"Value 2.3.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10463856905698776, \"Height\": 0.012222950346767902, \"Left\": 0.048762690275907516, \"Top\": 0.7106009125709534}, \"Polygon\": [{\"X\": 0.15340125560760498, \"Y\": 0.7228238582611084}, {\"X\": 0.048762690275907516, \"Y\": 0.7228238582611084}, {\"X\": 0.048762690275907516, \"Y\": 0.7106009125709534}, {\"X\": 0.15340125560760498, \"Y\": 0.7106009125709534}]}, \"Id\": \"9d96fd4e-029f-4de7-85ad-66dbca701c4f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e4d01293-55e3-48f5-9010-0eb822760e6b\", \"e8c798d8-0469-4ebd-a6de-a8b6f3938935\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71247863769531, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10510159283876419, \"Height\": 0.011820971965789795, \"Left\": 0.5447085499763489, \"Top\": 0.6902725100517273}, \"Polygon\": [{\"X\": 0.6498101353645325, \"Y\": 0.7020934820175171}, {\"X\": 0.5447085499763489, \"Y\": 0.7020934820175171}, {\"X\": 0.5447085499763489, \"Y\": 0.6902725100517273}, {\"X\": 0.6498101353645325, \"Y\": 0.6902725100517273}]}, \"Id\": \"97f989e4-dbe7-43ac-9525-980b2e9251ea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f7719b35-52f4-4bed-8b05-60da7aebe001\", \"bcf59c5c-2198-46a8-8b16-27a23c1f0a23\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69886779785156, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1050797775387764, \"Height\": 0.012002736330032349, \"Left\": 0.4205476939678192, \"Top\": 0.6902240514755249}, \"Polygon\": [{\"X\": 0.5256274342536926, \"Y\": 0.7022267580032349}, {\"X\": 0.4205476939678192, \"Y\": 0.7022267580032349}, {\"X\": 0.4205476939678192, \"Y\": 0.6902240514755249}, {\"X\": 0.5256274342536926, \"Y\": 0.6902240514755249}]}, \"Id\": \"2544f783-8ce3-4b19-bae7-45c8697e1b86\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3b0de147-30dc-4ea6-be98-07687263f2d1\", \"4ca1e992-ed50-45b5-8712-414460dd1bf4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66423797607422, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10441035032272339, \"Height\": 0.011990275233983994, \"Left\": 0.2967657446861267, \"Top\": 0.6902282238006592}, \"Polygon\": [{\"X\": 0.4011760950088501, \"Y\": 0.7022184729576111}, {\"X\": 0.2967657446861267, \"Y\": 0.7022184729576111}, {\"X\": 0.2967657446861267, \"Y\": 0.6902282238006592}, {\"X\": 0.4011760950088501, \"Y\": 0.6902282238006592}]}, \"Id\": \"d025e215-cdfa-4a1a-91e9-25a30d5ca09a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fad0324-60c8-4d27-8c70-c030e61e77ec\", \"0b2af800-1ea4-4f1f-a056-454df53b1ab1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67019653320312, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10582183301448822, \"Height\": 0.011982053518295288, \"Left\": 0.17185616493225098, \"Top\": 0.690268337726593}, \"Polygon\": [{\"X\": 0.2776780128479004, \"Y\": 0.7022504210472107}, {\"X\": 0.17185616493225098, \"Y\": 0.7022504210472107}, {\"X\": 0.17185616493225098, \"Y\": 0.690268337726593}, {\"X\": 0.2776780128479004, \"Y\": 0.690268337726593}]}, \"Id\": \"8c6066fd-c526-43a1-80b4-30b5d6d96301\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ba557dcd-1595-44f3-a3d7-b55656b92d0f\", \"bbb342c5-3c48-450c-afe5-f660ad2079f8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61737060546875, \"Text\": \"Value 2.4.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10463541746139526, \"Height\": 0.01197837945073843, \"Left\": 0.04846608266234398, \"Top\": 0.6901109218597412}, \"Polygon\": [{\"X\": 0.15310150384902954, \"Y\": 0.7020893096923828}, {\"X\": 0.04846608266234398, \"Y\": 0.7020893096923828}, {\"X\": 0.04846608266234398, \"Y\": 0.6901109218597412}, {\"X\": 0.15310150384902954, \"Y\": 0.6901109218597412}]}, \"Id\": \"80e7b80a-f824-444a-8515-01e9acc9f057\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fac3488a-17a0-46e6-99e9-d9f4f3b05e7b\", \"b04319cc-901c-4c6a-962e-630465cff980\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61505126953125, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1053125336766243, \"Height\": 0.011811630800366402, \"Left\": 0.5446961522102356, \"Top\": 0.6696734428405762}, \"Polygon\": [{\"X\": 0.6500086784362793, \"Y\": 0.681485116481781}, {\"X\": 0.5446961522102356, \"Y\": 0.681485116481781}, {\"X\": 0.5446961522102356, \"Y\": 0.6696734428405762}, {\"X\": 0.6500086784362793, \"Y\": 0.6696734428405762}]}, \"Id\": \"c525bff2-0f05-4216-bbb4-6b4b2a31d5bb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"78bbca06-3994-49ad-afc7-51171583b675\", \"20bf5022-3b63-4226-9b6e-6ccab48a2f79\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63617706298828, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10513020306825638, \"Height\": 0.011997729539871216, \"Left\": 0.42043548822402954, \"Top\": 0.6696774363517761}, \"Polygon\": [{\"X\": 0.5255656838417053, \"Y\": 0.681675136089325}, {\"X\": 0.42043548822402954, \"Y\": 0.681675136089325}, {\"X\": 0.42043548822402954, \"Y\": 0.6696774363517761}, {\"X\": 0.5255656838417053, \"Y\": 0.6696774363517761}]}, \"Id\": \"e1ba4f8f-bc7c-4c34-afd8-05bd60599623\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"166b9955-d357-4619-b7b7-ddc04811bee3\", \"eed3ca39-5c8f-4b6b-9f2e-4f8e816322ad\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71478271484375, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10438597202301025, \"Height\": 0.011971537955105305, \"Left\": 0.29663848876953125, \"Top\": 0.6696280837059021}, \"Polygon\": [{\"X\": 0.4010244607925415, \"Y\": 0.6815996766090393}, {\"X\": 0.29663848876953125, \"Y\": 0.6815996766090393}, {\"X\": 0.29663848876953125, \"Y\": 0.6696280837059021}, {\"X\": 0.4010244607925415, \"Y\": 0.6696280837059021}]}, \"Id\": \"bac5c6bf-d301-4b58-8b98-3a784eb7cf41\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fae2fd8d-3dbd-488e-a091-fce414277349\", \"3441300e-af39-4043-aa32-3df0d3834520\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68363952636719, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1061437577009201, \"Height\": 0.012209529988467693, \"Left\": 0.1716645359992981, \"Top\": 0.6695528030395508}, \"Polygon\": [{\"X\": 0.2778083086013794, \"Y\": 0.6817623376846313}, {\"X\": 0.1716645359992981, \"Y\": 0.6817623376846313}, {\"X\": 0.1716645359992981, \"Y\": 0.6695528030395508}, {\"X\": 0.2778083086013794, \"Y\": 0.6695528030395508}]}, \"Id\": \"f76ed341-ef09-4a71-b749-c94cbd353eee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c6fb1513-a530-4032-aada-4ae3d46efd7c\", \"c0234844-1da8-4b9c-b3ac-c4358e8dcbfc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74748229980469, \"Text\": \"Value 2.5.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10473498702049255, \"Height\": 0.0119474520906806, \"Left\": 0.04839831218123436, \"Top\": 0.6695783138275146}, \"Polygon\": [{\"X\": 0.1531333029270172, \"Y\": 0.6815257668495178}, {\"X\": 0.04839831218123436, \"Y\": 0.6815257668495178}, {\"X\": 0.04839831218123436, \"Y\": 0.6695783138275146}, {\"X\": 0.1531333029270172, \"Y\": 0.6695783138275146}]}, \"Id\": \"60642cfe-75a7-4bf3-8f43-2007f1d318fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"86861931-b847-40c9-9ce8-fb760f9f1fe0\", \"b3616123-2ede-4235-a0e9-893e9115e2f6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84739685058594, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13509640097618103, \"Height\": 0.011039731092751026, \"Left\": 0.7841997742652893, \"Top\": 0.596848726272583}, \"Polygon\": [{\"X\": 0.9192962050437927, \"Y\": 0.6078884601593018}, {\"X\": 0.7841997742652893, \"Y\": 0.6078884601593018}, {\"X\": 0.7841997742652893, \"Y\": 0.596848726272583}, {\"X\": 0.9192962050437927, \"Y\": 0.596848726272583}]}, \"Id\": \"68c016ca-e8d5-4d03-bed3-032527a0f94a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79f7cea4-c5c8-4f03-9bb9-35fe40e1afc6\", \"7737f6a9-a2f9-47f5-9f99-3a1daec5ca02\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54341125488281, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08981829881668091, \"Height\": 0.01056938897818327, \"Left\": 0.4085730314254761, \"Top\": 0.5784041881561279}, \"Polygon\": [{\"X\": 0.498391330242157, \"Y\": 0.5889735817909241}, {\"X\": 0.4085730314254761, \"Y\": 0.5889735817909241}, {\"X\": 0.4085730314254761, \"Y\": 0.5784041881561279}, {\"X\": 0.498391330242157, \"Y\": 0.5784041881561279}]}, \"Id\": \"59428840-bb52-4b2b-9f06-e254dd202dbb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00d50d77-271c-479b-9217-6401ecdbc3df\", \"3c591561-44fb-462a-a5bb-bdea8afad0bc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46199035644531, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09067997336387634, \"Height\": 0.010687828063964844, \"Left\": 0.2636391818523407, \"Top\": 0.5783089995384216}, \"Polygon\": [{\"X\": 0.35431915521621704, \"Y\": 0.5889968276023865}, {\"X\": 0.2636391818523407, \"Y\": 0.5889968276023865}, {\"X\": 0.2636391818523407, \"Y\": 0.5783089995384216}, {\"X\": 0.35431915521621704, \"Y\": 0.5783089995384216}]}, \"Id\": \"0f7ebdab-1968-4872-b463-a7e04b637cc1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"154ed885-fd4f-4130-b04c-dd883150ab9e\", \"a51cd11d-de39-48b1-9b9f-72103c6eb92a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.47557067871094, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09022899717092514, \"Height\": 0.010605543851852417, \"Left\": 0.1201941967010498, \"Top\": 0.578321099281311}, \"Polygon\": [{\"X\": 0.21042320132255554, \"Y\": 0.5889266729354858}, {\"X\": 0.1201941967010498, \"Y\": 0.5889266729354858}, {\"X\": 0.1201941967010498, \"Y\": 0.578321099281311}, {\"X\": 0.21042320132255554, \"Y\": 0.578321099281311}]}, \"Id\": \"f77b26e0-6531-4209-84f6-8535d5021ed2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5a40dda1-5210-474f-b96b-a3eade78cbd0\", \"33355f81-cfbf-4103-9dfb-a59cf93c8142\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6091537475586, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1053316742181778, \"Height\": 0.011117992922663689, \"Left\": 0.8179644346237183, \"Top\": 0.5706495642662048}, \"Polygon\": [{\"X\": 0.9232960939407349, \"Y\": 0.5817675590515137}, {\"X\": 0.8179644346237183, \"Y\": 0.5817675590515137}, {\"X\": 0.8179644346237183, \"Y\": 0.5706495642662048}, {\"X\": 0.9232960939407349, \"Y\": 0.5706495642662048}]}, \"Id\": \"dba23c0d-bea5-4e77-bcf2-6a1ff3617e52\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bbeae921-2104-49cd-a33c-a04d1ad8388e\", \"0eab012a-5a46-4e87-a50f-2ac14eb7c60d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42532348632812, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09002026170492172, \"Height\": 0.010579824447631836, \"Left\": 0.40845516324043274, \"Top\": 0.5607749819755554}, \"Polygon\": [{\"X\": 0.49847543239593506, \"Y\": 0.5713548064231873}, {\"X\": 0.40845516324043274, \"Y\": 0.5713548064231873}, {\"X\": 0.40845516324043274, \"Y\": 0.5607749819755554}, {\"X\": 0.49847543239593506, \"Y\": 0.5607749819755554}]}, \"Id\": \"23a2b1fa-2730-4e3f-a188-63ce549266ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f031cd2-6763-438a-be74-813499731abf\", \"01ef3ffa-eee5-41d6-b099-3deffa312a9a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.84797668457031, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09071861207485199, \"Height\": 0.010739646852016449, \"Left\": 0.26343628764152527, \"Top\": 0.5607189536094666}, \"Polygon\": [{\"X\": 0.35415491461753845, \"Y\": 0.5714585781097412}, {\"X\": 0.26343628764152527, \"Y\": 0.5714585781097412}, {\"X\": 0.26343628764152527, \"Y\": 0.5607189536094666}, {\"X\": 0.35415491461753845, \"Y\": 0.5607189536094666}]}, \"Id\": \"3fdef625-8f0b-4f87-92bd-7192bed104f7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"982d469a-d330-4356-9991-910852aafc8e\", \"da50f32f-6984-4258-9b4c-f27032361507\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3878402709961, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09007509797811508, \"Height\": 0.01068657636642456, \"Left\": 0.12005430459976196, \"Top\": 0.5607079863548279}, \"Polygon\": [{\"X\": 0.21012939512729645, \"Y\": 0.5713945627212524}, {\"X\": 0.12005430459976196, \"Y\": 0.5713945627212524}, {\"X\": 0.12005430459976196, \"Y\": 0.5607079863548279}, {\"X\": 0.21012939512729645, \"Y\": 0.5607079863548279}]}, \"Id\": \"87c08873-cc1c-4bd6-ba47-f0d336ee3d7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"afdfaa38-304b-4863-be26-6c0f4ba73ab9\", \"5fbf0b4b-8873-4c49-83ac-c8588fcd468c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52672576904297, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08974907547235489, \"Height\": 0.010365068912506104, \"Left\": 0.4083017110824585, \"Top\": 0.5431175827980042}, \"Polygon\": [{\"X\": 0.4980508089065552, \"Y\": 0.5534826517105103}, {\"X\": 0.4083017110824585, \"Y\": 0.5534826517105103}, {\"X\": 0.4083017110824585, \"Y\": 0.5431175827980042}, {\"X\": 0.4980508089065552, \"Y\": 0.5431175827980042}]}, \"Id\": \"4a825980-917b-4dbc-baaf-d2dba47270d4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c04dd90b-b19c-4f73-a151-26e06ee68d68\", \"4e16ce13-5b0c-4457-bf5d-e42c0f4c1eca\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2643814086914, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09030846506357193, \"Height\": 0.010658055543899536, \"Left\": 0.2638888359069824, \"Top\": 0.5430283546447754}, \"Polygon\": [{\"X\": 0.35419729351997375, \"Y\": 0.5536863803863525}, {\"X\": 0.2638888359069824, \"Y\": 0.5536863803863525}, {\"X\": 0.2638888359069824, \"Y\": 0.5430283546447754}, {\"X\": 0.35419729351997375, \"Y\": 0.5430283546447754}]}, \"Id\": \"c89531ed-0e8d-481c-ad4e-68b0d65a6c52\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"47715866-7f60-4505-90b1-1176712b4ca9\", \"aee262b3-4f3f-42da-bdab-a5b78f77344b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37114715576172, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08989463001489639, \"Height\": 0.01049664057791233, \"Left\": 0.12018503993749619, \"Top\": 0.5430805087089539}, \"Polygon\": [{\"X\": 0.21007966995239258, \"Y\": 0.5535771250724792}, {\"X\": 0.12018503993749619, \"Y\": 0.5535771250724792}, {\"X\": 0.12018503993749619, \"Y\": 0.5430805087089539}, {\"X\": 0.21007966995239258, \"Y\": 0.5430805087089539}]}, \"Id\": \"f23280be-7fb4-48a5-be47-12ef039f9d56\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a7cf2301-2289-4083-9318-3e9e95b70efd\", \"d347a50f-dec5-46e2-8869-917978376f21\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71035766601562, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0898054763674736, \"Height\": 0.01044580340385437, \"Left\": 0.40851283073425293, \"Top\": 0.5255035758018494}, \"Polygon\": [{\"X\": 0.49831831455230713, \"Y\": 0.5359493494033813}, {\"X\": 0.40851283073425293, \"Y\": 0.5359493494033813}, {\"X\": 0.40851283073425293, \"Y\": 0.5255035758018494}, {\"X\": 0.49831831455230713, \"Y\": 0.5255035758018494}]}, \"Id\": \"0b793351-121b-4bea-aa40-2b2702a1d364\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"abd6cb5b-7931-4012-aaba-02766861308e\", \"be844c73-0967-4f54-a4ab-942de6e8ee56\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.30744934082031, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09037555754184723, \"Height\": 0.01043423917144537, \"Left\": 0.26359790563583374, \"Top\": 0.5254688858985901}, \"Polygon\": [{\"X\": 0.3539734482765198, \"Y\": 0.5359031558036804}, {\"X\": 0.26359790563583374, \"Y\": 0.5359031558036804}, {\"X\": 0.26359790563583374, \"Y\": 0.5254688858985901}, {\"X\": 0.3539734482765198, \"Y\": 0.5254688858985901}]}, \"Id\": \"05813349-640b-41b9-a614-e96cfb9c5869\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8967f487-5c30-45a1-9f01-bbfb4cb3080f\", \"48d230ee-316f-4255-860a-8b11ba896068\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32473754882812, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08994030207395554, \"Height\": 0.010512083768844604, \"Left\": 0.12003953009843826, \"Top\": 0.525467574596405}, \"Polygon\": [{\"X\": 0.2099798321723938, \"Y\": 0.5359796285629272}, {\"X\": 0.12003953009843826, \"Y\": 0.5359796285629272}, {\"X\": 0.12003953009843826, \"Y\": 0.525467574596405}, {\"X\": 0.2099798321723938, \"Y\": 0.525467574596405}]}, \"Id\": \"97eb256b-3eb2-4a62-9d74-9a14dd1097c9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38f5e187-9184-4e1d-96b0-88875553805d\", \"28edaa42-9493-4295-a9cc-ac065514d750\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70838165283203, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08956902474164963, \"Height\": 0.010400563478469849, \"Left\": 0.4083672761917114, \"Top\": 0.5078417062759399}, \"Polygon\": [{\"X\": 0.49793630838394165, \"Y\": 0.5182422399520874}, {\"X\": 0.4083672761917114, \"Y\": 0.5182422399520874}, {\"X\": 0.4083672761917114, \"Y\": 0.5078417062759399}, {\"X\": 0.49793630838394165, \"Y\": 0.5078417062759399}]}, \"Id\": \"7a6996a7-8917-4b32-a2f3-a40676d994a5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80fe91ac-46ca-445e-9651-2976f21de113\", \"1a7abecb-34d8-46e4-b9dc-5f1abce91ae7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39471435546875, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09023702889680862, \"Height\": 0.010747671127319336, \"Left\": 0.2636262774467468, \"Top\": 0.507740318775177}, \"Polygon\": [{\"X\": 0.35386329889297485, \"Y\": 0.5184879899024963}, {\"X\": 0.2636262774467468, \"Y\": 0.5184879899024963}, {\"X\": 0.2636262774467468, \"Y\": 0.507740318775177}, {\"X\": 0.35386329889297485, \"Y\": 0.507740318775177}]}, \"Id\": \"67e186f2-7a1e-4d44-81ad-ac4ee744c7b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e85c7e92-7467-47ba-bfa4-390e474dff2d\", \"77d84955-623e-4cae-82dc-4ddc4d0b592e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51950073242188, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0897027775645256, \"Height\": 0.010674064978957176, \"Left\": 0.12029057741165161, \"Top\": 0.5076951384544373}, \"Polygon\": [{\"X\": 0.2099933624267578, \"Y\": 0.5183692574501038}, {\"X\": 0.12029057741165161, \"Y\": 0.5183692574501038}, {\"X\": 0.12029057741165161, \"Y\": 0.5076951384544373}, {\"X\": 0.2099933624267578, \"Y\": 0.5076951384544373}]}, \"Id\": \"92f1d7a3-d62d-4afb-8489-16fcf76d2bf0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"70eb2fa6-d8e9-4ebd-9e88-5a59ce6efa0f\", \"9a0886fb-8e6e-473a-a597-7b54e991d1e3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68780517578125, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08987779915332794, \"Height\": 0.010380774736404419, \"Left\": 0.4084087908267975, \"Top\": 0.4902192950248718}, \"Polygon\": [{\"X\": 0.4982866048812866, \"Y\": 0.5006000995635986}, {\"X\": 0.4084087908267975, \"Y\": 0.5006000995635986}, {\"X\": 0.4084087908267975, \"Y\": 0.4902192950248718}, {\"X\": 0.4982866048812866, \"Y\": 0.4902192950248718}]}, \"Id\": \"426a3b4d-c9a7-4df0-8660-4ba262a89f82\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab5740d2-8280-4457-8453-62ed844570b4\", \"607622c1-d5b4-4fbf-be5f-962627d8d7bf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4566421508789, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09012719243764877, \"Height\": 0.010658412240445614, \"Left\": 0.26376861333847046, \"Top\": 0.4900989532470703}, \"Polygon\": [{\"X\": 0.35389581322669983, \"Y\": 0.5007573962211609}, {\"X\": 0.26376861333847046, \"Y\": 0.5007573962211609}, {\"X\": 0.26376861333847046, \"Y\": 0.4900989532470703}, {\"X\": 0.35389581322669983, \"Y\": 0.4900989532470703}]}, \"Id\": \"8dad4a5e-b8fa-4750-95a9-1fe1cc473556\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"30e8a1d5-0768-4c9b-a4f1-2d8f4d07cf0d\", \"a52d016b-517e-448a-9e87-c8b448d81c11\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34688568115234, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08972232788801193, \"Height\": 0.010556069202721119, \"Left\": 0.12013883143663406, \"Top\": 0.49007725715637207}, \"Polygon\": [{\"X\": 0.209861159324646, \"Y\": 0.5006333589553833}, {\"X\": 0.12013883143663406, \"Y\": 0.5006333589553833}, {\"X\": 0.12013883143663406, \"Y\": 0.49007725715637207}, {\"X\": 0.209861159324646, \"Y\": 0.49007725715637207}]}, \"Id\": \"3553e9a0-8689-4ec5-b629-0388cebc119e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"df8d4db5-ad65-406b-a497-21c5861ff9a6\", \"3e51086e-d300-4b78-87c1-94c531f1bfd6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4954833984375, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09041593968868256, \"Height\": 0.010210633277893066, \"Left\": 0.4080643057823181, \"Top\": 0.472547709941864}, \"Polygon\": [{\"X\": 0.49848026037216187, \"Y\": 0.4827583432197571}, {\"X\": 0.4080643057823181, \"Y\": 0.4827583432197571}, {\"X\": 0.4080643057823181, \"Y\": 0.472547709941864}, {\"X\": 0.49848026037216187, \"Y\": 0.472547709941864}]}, \"Id\": \"4f4e2504-e543-4660-993b-0ff9104ac7d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bfdeb16c-8b4c-40c8-8c52-59683fe3026e\", \"7635b0e7-e52d-4bf9-9942-66bb12d46af1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32086181640625, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0905722975730896, \"Height\": 0.010366737842559814, \"Left\": 0.26348525285720825, \"Top\": 0.47248542308807373}, \"Polygon\": [{\"X\": 0.35405755043029785, \"Y\": 0.48285216093063354}, {\"X\": 0.26348525285720825, \"Y\": 0.48285216093063354}, {\"X\": 0.26348525285720825, \"Y\": 0.47248542308807373}, {\"X\": 0.35405755043029785, \"Y\": 0.47248542308807373}]}, \"Id\": \"359da108-1776-49fb-ae3c-417f5787ef06\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a838d967-75ac-4b22-b91f-b0667384fde0\", \"aa6b5e69-d8a3-49d8-aaea-3e45a7a80849\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.38066864013672, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0897783413529396, \"Height\": 0.010460522025823593, \"Left\": 0.12039449065923691, \"Top\": 0.4723408818244934}, \"Polygon\": [{\"X\": 0.2101728320121765, \"Y\": 0.4828014075756073}, {\"X\": 0.12039449065923691, \"Y\": 0.4828014075756073}, {\"X\": 0.12039449065923691, \"Y\": 0.4723408818244934}, {\"X\": 0.2101728320121765, \"Y\": 0.4723408818244934}]}, \"Id\": \"742245d9-d97d-4988-a9ba-da5ec2e24432\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"59eccc4f-98ad-472a-a55d-79b59aee759a\", \"8b5fb9da-6eb0-4321-ab6f-255fc5f3e040\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65348052978516, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08962385356426239, \"Height\": 0.010336400009691715, \"Left\": 0.4085824489593506, \"Top\": 0.45483046770095825}, \"Polygon\": [{\"X\": 0.4982062876224518, \"Y\": 0.4651668667793274}, {\"X\": 0.4085824489593506, \"Y\": 0.4651668667793274}, {\"X\": 0.4085824489593506, \"Y\": 0.45483046770095825}, {\"X\": 0.4982062876224518, \"Y\": 0.45483046770095825}]}, \"Id\": \"dc88ea88-34ba-4eb2-a69e-286d5a365fe5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"16b555ad-bfc9-47d9-a98f-51802193a786\", \"15772946-904a-43ab-b15f-97cdc87afc6a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5419692993164, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09034595638513565, \"Height\": 0.010361411608755589, \"Left\": 0.26377949118614197, \"Top\": 0.45483678579330444}, \"Polygon\": [{\"X\": 0.354125440120697, \"Y\": 0.46519818902015686}, {\"X\": 0.26377949118614197, \"Y\": 0.46519818902015686}, {\"X\": 0.26377949118614197, \"Y\": 0.45483678579330444}, {\"X\": 0.354125440120697, \"Y\": 0.45483678579330444}]}, \"Id\": \"5de8edca-d1b5-47b6-8f18-a733ac419ad3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0e1a7eb6-5a75-4715-b312-c3914c82f9a7\", \"9d1cc4da-3699-4a9f-8a79-3697355fd15e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57200622558594, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0898374617099762, \"Height\": 0.010288222692906857, \"Left\": 0.12019398808479309, \"Top\": 0.45486345887184143}, \"Polygon\": [{\"X\": 0.2100314497947693, \"Y\": 0.46515166759490967}, {\"X\": 0.12019398808479309, \"Y\": 0.46515166759490967}, {\"X\": 0.12019398808479309, \"Y\": 0.45486345887184143}, {\"X\": 0.2100314497947693, \"Y\": 0.45486345887184143}]}, \"Id\": \"d4d42be2-fce7-4cca-b0fc-f2f2d958ec83\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec146657-a342-4af7-a3df-86ed7107defb\", \"9522c682-0b23-4d44-8fbc-8553af1d0087\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58541107177734, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10554811358451843, \"Height\": 0.011134743690490723, \"Left\": 0.8167617917060852, \"Top\": 0.43970614671707153}, \"Polygon\": [{\"X\": 0.922309935092926, \"Y\": 0.45084089040756226}, {\"X\": 0.8167617917060852, \"Y\": 0.45084089040756226}, {\"X\": 0.8167617917060852, \"Y\": 0.43970614671707153}, {\"X\": 0.922309935092926, \"Y\": 0.43970614671707153}]}, \"Id\": \"922f9fad-4989-4da2-8379-bd394bd2b857\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"831d2500-2fbc-45f6-bd78-e88dc11f9028\", \"660f7a25-48a7-49c9-9f58-11891d8bc254\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84415435791016, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1342831254005432, \"Height\": 0.010918771848082542, \"Left\": 0.7883325815200806, \"Top\": 0.42348963022232056}, \"Polygon\": [{\"X\": 0.9226157069206238, \"Y\": 0.43440839648246765}, {\"X\": 0.7883325815200806, \"Y\": 0.43440839648246765}, {\"X\": 0.7883325815200806, \"Y\": 0.42348963022232056}, {\"X\": 0.9226157069206238, \"Y\": 0.42348963022232056}]}, \"Id\": \"b6c868de-7e46-44b8-9323-daa4aed875e2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"25aec6b2-71b4-4b49-8ceb-6c6c85cbcbf4\", \"db51eca9-2cad-4a59-b6fa-7b7d505d0550\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 89.89099884033203, \"Text\": \"Hello Wor 1d barcode here!\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11099199950695038, \"Height\": 0.004260554909706116, \"Left\": 0.22443373501300812, \"Top\": 0.31743279099464417}, \"Polygon\": [{\"X\": 0.3354257345199585, \"Y\": 0.3216933608055115}, {\"X\": 0.22443373501300812, \"Y\": 0.3216933608055115}, {\"X\": 0.22443373501300812, \"Y\": 0.31743279099464417}, {\"X\": 0.3354257345199585, \"Y\": 0.31743279099464417}]}, \"Id\": \"33d8921c-10f2-41db-b645-4d5620eba0da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5c48430f-ca6f-4de4-81a7-e483bee1e0a3\", \"08fb66e6-fa42-4e7d-9dab-353c1f22773a\", \"543e13e0-fa41-4334-a91c-50e2ec7114ee\", \"18cacb60-74d6-4599-8bb4-857a0f194d37\", \"2e4fc570-343d-4124-a7b7-dccda8faae9d\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50028991699219, \"Text\": \"Date:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04233688861131668, \"Height\": 0.010606519877910614, \"Left\": 0.2026403546333313, \"Top\": 0.9552271962165833}, \"Polygon\": [{\"X\": 0.24497723579406738, \"Y\": 0.9658337235450745}, {\"X\": 0.2026403546333313, \"Y\": 0.9658337235450745}, {\"X\": 0.2026403546333313, \"Y\": 0.9552271962165833}, {\"X\": 0.24497723579406738, \"Y\": 0.9552271962165833}]}, \"Id\": \"bcf23e72-70fb-4d1f-b168-e0889456e934\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.8664779663086, \"Text\": \"2020-03-27\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0926513671875, \"Height\": 0.010688800364732742, \"Left\": 0.10495179891586304, \"Top\": 0.9552527070045471}, \"Polygon\": [{\"X\": 0.19760316610336304, \"Y\": 0.9659414887428284}, {\"X\": 0.10495179891586304, \"Y\": 0.9659414887428284}, {\"X\": 0.10495179891586304, \"Y\": 0.9552527070045471}, {\"X\": 0.19760316610336304, \"Y\": 0.9552527070045471}]}, \"Id\": \"728a97be-987d-4f05-aff7-fbd90a1c4a6a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42859649658203, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052602771669626236, \"Height\": 0.010439610108733177, \"Left\": 0.8609431385993958, \"Top\": 0.9279804229736328}, \"Polygon\": [{\"X\": 0.9135459065437317, \"Y\": 0.9384199976921082}, {\"X\": 0.8609431385993958, \"Y\": 0.9384199976921082}, {\"X\": 0.8609431385993958, \"Y\": 0.9279804229736328}, {\"X\": 0.9135459065437317, \"Y\": 0.9279804229736328}]}, \"Id\": \"8c85fd30-62d8-4bc9-9d6f-65c8e8f3c465\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56356048583984, \"Text\": \"SomeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09296516329050064, \"Height\": 0.010586082935333252, \"Left\": 0.7632668614387512, \"Top\": 0.927973747253418}, \"Polygon\": [{\"X\": 0.8562320470809937, \"Y\": 0.9385598301887512}, {\"X\": 0.7632668614387512, \"Y\": 0.9385598301887512}, {\"X\": 0.7632668614387512, \"Y\": 0.927973747253418}, {\"X\": 0.8562320470809937, \"Y\": 0.927973747253418}]}, \"Id\": \"8bad0276-2959-41b6-a8d3-7748540ff97f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87213897705078, \"Text\": \"Key1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.042901430279016495, \"Height\": 0.013060520403087139, \"Left\": 0.19813966751098633, \"Top\": 0.8986172080039978}, \"Polygon\": [{\"X\": 0.24104109406471252, \"Y\": 0.9116777181625366}, {\"X\": 0.19813966751098633, \"Y\": 0.9116777181625366}, {\"X\": 0.19813966751098633, \"Y\": 0.8986172080039978}, {\"X\": 0.24104109406471252, \"Y\": 0.8986172080039978}]}, \"Id\": \"956b6c3b-daf7-410d-b0a4-3f2dd9f680cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.35092163085938, \"Text\": \"value1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05406484007835388, \"Height\": 0.010912680067121983, \"Left\": 0.1398209035396576, \"Top\": 0.9008255004882812}, \"Polygon\": [{\"X\": 0.19388574361801147, \"Y\": 0.9117382168769836}, {\"X\": 0.1398209035396576, \"Y\": 0.9117382168769836}, {\"X\": 0.1398209035396576, \"Y\": 0.9008255004882812}, {\"X\": 0.19388574361801147, \"Y\": 0.9008255004882812}]}, \"Id\": \"ce145729-480d-47f4-9e7a-8e9e9c8a6fc1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 90.43286895751953, \"Text\": \"Key2:value2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10180690139532089, \"Height\": 0.013142010197043419, \"Left\": 0.13970500230789185, \"Top\": 0.8743228316307068}, \"Polygon\": [{\"X\": 0.24151189625263214, \"Y\": 0.8874648213386536}, {\"X\": 0.13970500230789185, \"Y\": 0.8874648213386536}, {\"X\": 0.13970500230789185, \"Y\": 0.8743228316307068}, {\"X\": 0.24151189625263214, \"Y\": 0.8743228316307068}]}, \"Id\": \"b2376a28-e7b8-4cc4-9c78-f38ae140c75a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75382995605469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04629477858543396, \"Height\": 0.01060910988599062, \"Left\": 0.8428477644920349, \"Top\": 0.8314266800880432}, \"Polygon\": [{\"X\": 0.8891425728797913, \"Y\": 0.8420357704162598}, {\"X\": 0.8428477644920349, \"Y\": 0.8420357704162598}, {\"X\": 0.8428477644920349, \"Y\": 0.8314266800880432}, {\"X\": 0.8891425728797913, \"Y\": 0.8314266800880432}]}, \"Id\": \"643529bf-50a7-4d20-92df-f7555714101f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.40391540527344, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0389406718313694, \"Height\": 0.010063789784908295, \"Left\": 0.7987444400787354, \"Top\": 0.831616222858429}, \"Polygon\": [{\"X\": 0.8376851081848145, \"Y\": 0.8416800498962402}, {\"X\": 0.7987444400787354, \"Y\": 0.8416800498962402}, {\"X\": 0.7987444400787354, \"Y\": 0.831616222858429}, {\"X\": 0.8376851081848145, \"Y\": 0.831616222858429}]}, \"Id\": \"bd5f449a-9c17-4a45-aa58-cc9efa0afecd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70814514160156, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046593669801950455, \"Height\": 0.010553940199315548, \"Left\": 0.7329572439193726, \"Top\": 0.831469714641571}, \"Polygon\": [{\"X\": 0.7795509099960327, \"Y\": 0.8420236706733704}, {\"X\": 0.7329572439193726, \"Y\": 0.8420236706733704}, {\"X\": 0.7329572439193726, \"Y\": 0.831469714641571}, {\"X\": 0.7795509099960327, \"Y\": 0.831469714641571}]}, \"Id\": \"ca04a801-ba80-45a7-a333-d8d9fd95cb94\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44203186035156, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03861340880393982, \"Height\": 0.010052340105175972, \"Left\": 0.6892620921134949, \"Top\": 0.8316806554794312}, \"Polygon\": [{\"X\": 0.7278755307197571, \"Y\": 0.8417330384254456}, {\"X\": 0.6892620921134949, \"Y\": 0.8417330384254456}, {\"X\": 0.6892620921134949, \"Y\": 0.8316806554794312}, {\"X\": 0.7278755307197571, \"Y\": 0.8316806554794312}]}, \"Id\": \"60c75e2b-c596-40d2-a720-019aa9496960\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40528869628906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04637043923139572, \"Height\": 0.010435130447149277, \"Left\": 0.6234121322631836, \"Top\": 0.8315487504005432}, \"Polygon\": [{\"X\": 0.6697825789451599, \"Y\": 0.8419838547706604}, {\"X\": 0.6234121322631836, \"Y\": 0.8419838547706604}, {\"X\": 0.6234121322631836, \"Y\": 0.8315487504005432}, {\"X\": 0.6697825789451599, \"Y\": 0.8315487504005432}]}, \"Id\": \"97a6da58-507b-45eb-8a9a-e928dd4048b9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08958435058594, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03931238874793053, \"Height\": 0.01014722976833582, \"Left\": 0.5797154307365417, \"Top\": 0.8316248059272766}, \"Polygon\": [{\"X\": 0.619027853012085, \"Y\": 0.8417720794677734}, {\"X\": 0.5797154307365417, \"Y\": 0.8417720794677734}, {\"X\": 0.5797154307365417, \"Y\": 0.8316248059272766}, {\"X\": 0.619027853012085, \"Y\": 0.8316248059272766}]}, \"Id\": \"915805da-f3c1-4860-994a-7b0afe4ad106\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7866439819336, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04611177369952202, \"Height\": 0.010271430015563965, \"Left\": 0.8431478142738342, \"Top\": 0.8139492273330688}, \"Polygon\": [{\"X\": 0.8892596364021301, \"Y\": 0.8242206573486328}, {\"X\": 0.8431478142738342, \"Y\": 0.8242206573486328}, {\"X\": 0.8431478142738342, \"Y\": 0.8139492273330688}, {\"X\": 0.8892596364021301, \"Y\": 0.8139492273330688}]}, \"Id\": \"91e25f28-1dbb-4dda-afe3-b2f3c2b54f4c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.95990753173828, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03874171897768974, \"Height\": 0.01031113974750042, \"Left\": 0.7989612221717834, \"Top\": 0.8137636780738831}, \"Polygon\": [{\"X\": 0.8377029895782471, \"Y\": 0.8240748047828674}, {\"X\": 0.7989612221717834, \"Y\": 0.8240748047828674}, {\"X\": 0.7989612221717834, \"Y\": 0.8137636780738831}, {\"X\": 0.8377029895782471, \"Y\": 0.8137636780738831}]}, \"Id\": \"e07b1033-20fd-48da-b009-e4f63275f42e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8037109375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046561118215322495, \"Height\": 0.010369050316512585, \"Left\": 0.7330730557441711, \"Top\": 0.8138829469680786}, \"Polygon\": [{\"X\": 0.7796341776847839, \"Y\": 0.8242520093917847}, {\"X\": 0.7330730557441711, \"Y\": 0.8242520093917847}, {\"X\": 0.7330730557441711, \"Y\": 0.8138829469680786}, {\"X\": 0.7796341776847839, \"Y\": 0.8138829469680786}]}, \"Id\": \"e67419d8-cef6-49dd-a865-59819e900516\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51961517333984, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0389142781496048, \"Height\": 0.009935859590768814, \"Left\": 0.6890227198600769, \"Top\": 0.8140576481819153}, \"Polygon\": [{\"X\": 0.7279369831085205, \"Y\": 0.8239935040473938}, {\"X\": 0.6890227198600769, \"Y\": 0.8239935040473938}, {\"X\": 0.6890227198600769, \"Y\": 0.8140576481819153}, {\"X\": 0.7279369831085205, \"Y\": 0.8140576481819153}]}, \"Id\": \"24f99a53-39fb-47ee-bb16-4c21ccade29c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64219665527344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046355850994586945, \"Height\": 0.010247539728879929, \"Left\": 0.6236605048179626, \"Top\": 0.8139326572418213}, \"Polygon\": [{\"X\": 0.670016348361969, \"Y\": 0.8241801857948303}, {\"X\": 0.6236605048179626, \"Y\": 0.8241801857948303}, {\"X\": 0.6236605048179626, \"Y\": 0.8139326572418213}, {\"X\": 0.670016348361969, \"Y\": 0.8139326572418213}]}, \"Id\": \"3d17cf01-e515-45f8-8bd4-ef29d4ef53fe\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.95277404785156, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03920326009392738, \"Height\": 0.01012524962425232, \"Left\": 0.5795015692710876, \"Top\": 0.8140106201171875}, \"Polygon\": [{\"X\": 0.6187047958374023, \"Y\": 0.8241358995437622}, {\"X\": 0.5795015692710876, \"Y\": 0.8241358995437622}, {\"X\": 0.5795015692710876, \"Y\": 0.8140106201171875}, {\"X\": 0.6187047958374023, \"Y\": 0.8140106201171875}]}, \"Id\": \"bbcf6806-6cd9-4088-b0c0-ff65a417930f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78491973876953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04599713161587715, \"Height\": 0.010496299713850021, \"Left\": 0.8430944681167603, \"Top\": 0.796119749546051}, \"Polygon\": [{\"X\": 0.8890915513038635, \"Y\": 0.8066160678863525}, {\"X\": 0.8430944681167603, \"Y\": 0.8066160678863525}, {\"X\": 0.8430944681167603, \"Y\": 0.796119749546051}, {\"X\": 0.8890915513038635, \"Y\": 0.796119749546051}]}, \"Id\": \"5ae6698a-8c8d-40b4-a64f-7c79311442b8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19256591796875, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0389319509267807, \"Height\": 0.010297269560396671, \"Left\": 0.798848569393158, \"Top\": 0.7962045073509216}, \"Polygon\": [{\"X\": 0.8377804756164551, \"Y\": 0.8065018057823181}, {\"X\": 0.798848569393158, \"Y\": 0.8065018057823181}, {\"X\": 0.798848569393158, \"Y\": 0.7962045073509216}, {\"X\": 0.8377804756164551, \"Y\": 0.7962045073509216}]}, \"Id\": \"1a91e899-c629-406c-be96-752f6fab2024\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.739990234375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0461127907037735, \"Height\": 0.010549790225923061, \"Left\": 0.7332141995429993, \"Top\": 0.7960783243179321}, \"Polygon\": [{\"X\": 0.7793269753456116, \"Y\": 0.8066281080245972}, {\"X\": 0.7332141995429993, \"Y\": 0.8066281080245972}, {\"X\": 0.7332141995429993, \"Y\": 0.7960783243179321}, {\"X\": 0.7793269753456116, \"Y\": 0.7960783243179321}]}, \"Id\": \"afac5207-d39f-4e72-be16-b487ed02250b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27728271484375, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03883013129234314, \"Height\": 0.010098610073328018, \"Left\": 0.6891225576400757, \"Top\": 0.7962425351142883}, \"Polygon\": [{\"X\": 0.7279526591300964, \"Y\": 0.8063411116600037}, {\"X\": 0.6891225576400757, \"Y\": 0.8063411116600037}, {\"X\": 0.6891225576400757, \"Y\": 0.7962425351142883}, {\"X\": 0.7279526591300964, \"Y\": 0.7962425351142883}]}, \"Id\": \"2ca333d5-22af-44ed-8ee8-b91ebeb41dea\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67158508300781, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04617917165160179, \"Height\": 0.010462479665875435, \"Left\": 0.6236355304718018, \"Top\": 0.7961404323577881}, \"Polygon\": [{\"X\": 0.6698147058486938, \"Y\": 0.806602954864502}, {\"X\": 0.6236355304718018, \"Y\": 0.806602954864502}, {\"X\": 0.6236355304718018, \"Y\": 0.7961404323577881}, {\"X\": 0.6698147058486938, \"Y\": 0.7961404323577881}]}, \"Id\": \"1faa1f3d-e846-430d-b7e2-2babba567b56\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40231323242188, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0386539101600647, \"Height\": 0.010284320451319218, \"Left\": 0.5797345042228699, \"Top\": 0.7962196469306946}, \"Polygon\": [{\"X\": 0.6183884143829346, \"Y\": 0.80650395154953}, {\"X\": 0.5797345042228699, \"Y\": 0.80650395154953}, {\"X\": 0.5797345042228699, \"Y\": 0.7962196469306946}, {\"X\": 0.6183884143829346, \"Y\": 0.7962196469306946}]}, \"Id\": \"7110a847-208d-460b-b5c5-946a2e955840\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78140258789062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053582169115543365, \"Height\": 0.012059669941663742, \"Left\": 0.596113383769989, \"Top\": 0.7516958117485046}, \"Polygon\": [{\"X\": 0.6496955752372742, \"Y\": 0.7637554407119751}, {\"X\": 0.596113383769989, \"Y\": 0.7637554407119751}, {\"X\": 0.596113383769989, \"Y\": 0.7516958117485046}, {\"X\": 0.6496955752372742, \"Y\": 0.7516958117485046}]}, \"Id\": \"af69e4c6-1d64-49d1-871d-bd7c4624cd5c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.255859375, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04595297947525978, \"Height\": 0.011576740071177483, \"Left\": 0.5445836782455444, \"Top\": 0.7518254518508911}, \"Polygon\": [{\"X\": 0.5905366539955139, \"Y\": 0.7634021639823914}, {\"X\": 0.5445836782455444, \"Y\": 0.7634021639823914}, {\"X\": 0.5445836782455444, \"Y\": 0.7518254518508911}, {\"X\": 0.5905366539955139, \"Y\": 0.7518254518508911}]}, \"Id\": \"974ab210-6500-4b64-839d-0835d184d5bd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77210998535156, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05392858013510704, \"Height\": 0.012172290123999119, \"Left\": 0.47180163860321045, \"Top\": 0.7516720294952393}, \"Polygon\": [{\"X\": 0.5257301926612854, \"Y\": 0.7638443112373352}, {\"X\": 0.47180163860321045, \"Y\": 0.7638443112373352}, {\"X\": 0.47180163860321045, \"Y\": 0.7516720294952393}, {\"X\": 0.5257301926612854, \"Y\": 0.7516720294952393}]}, \"Id\": \"1e4b96a0-f5b2-4e05-b411-92e914d07e8d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3182144165039, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045771051198244095, \"Height\": 0.011669079773128033, \"Left\": 0.4205978512763977, \"Top\": 0.7518488168716431}, \"Polygon\": [{\"X\": 0.4663689136505127, \"Y\": 0.7635179162025452}, {\"X\": 0.4205978512763977, \"Y\": 0.7635179162025452}, {\"X\": 0.4205978512763977, \"Y\": 0.7518488168716431}, {\"X\": 0.4663689136505127, \"Y\": 0.7518488168716431}]}, \"Id\": \"2a3b4f09-c6d7-4e7c-9dc4-24bf1adb36c4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81244659423828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05435207113623619, \"Height\": 0.012133860029280186, \"Left\": 0.34742993116378784, \"Top\": 0.7516486048698425}, \"Polygon\": [{\"X\": 0.40178200602531433, \"Y\": 0.7637825012207031}, {\"X\": 0.34742993116378784, \"Y\": 0.7637825012207031}, {\"X\": 0.34742993116378784, \"Y\": 0.7516486048698425}, {\"X\": 0.40178200602531433, \"Y\": 0.7516486048698425}]}, \"Id\": \"2e35f6c5-9c2c-48f7-bf2c-0f667c0cfa9b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1874008178711, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04542383924126625, \"Height\": 0.011733530089259148, \"Left\": 0.2963801622390747, \"Top\": 0.7517759799957275}, \"Polygon\": [{\"X\": 0.34180399775505066, \"Y\": 0.7635095119476318}, {\"X\": 0.2963801622390747, \"Y\": 0.7635095119476318}, {\"X\": 0.2963801622390747, \"Y\": 0.7517759799957275}, {\"X\": 0.34180399775505066, \"Y\": 0.7517759799957275}]}, \"Id\": \"e259e916-c730-440a-b6ba-ee00262c6ffc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76695251464844, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0540136992931366, \"Height\": 0.012197510339319706, \"Left\": 0.22376349568367004, \"Top\": 0.7516767382621765}, \"Polygon\": [{\"X\": 0.27777719497680664, \"Y\": 0.7638742327690125}, {\"X\": 0.22376349568367004, \"Y\": 0.7638742327690125}, {\"X\": 0.22376349568367004, \"Y\": 0.7516767382621765}, {\"X\": 0.27777719497680664, \"Y\": 0.7516767382621765}]}, \"Id\": \"6e603eee-14c5-40f7-b345-e5fbc23fe98d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3413314819336, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0465162992477417, \"Height\": 0.011849990114569664, \"Left\": 0.1717274934053421, \"Top\": 0.7516984939575195}, \"Polygon\": [{\"X\": 0.2182437926530838, \"Y\": 0.7635484933853149}, {\"X\": 0.1717274934053421, \"Y\": 0.7635484933853149}, {\"X\": 0.1717274934053421, \"Y\": 0.7516984939575195}, {\"X\": 0.2182437926530838, \"Y\": 0.7516984939575195}]}, \"Id\": \"fb41de70-cd4e-4bff-b59c-34ec9e4ac3dd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75688171386719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05400814861059189, \"Height\": 0.01229877956211567, \"Left\": 0.09934529662132263, \"Top\": 0.7515966892242432}, \"Polygon\": [{\"X\": 0.15335345268249512, \"Y\": 0.7638954520225525}, {\"X\": 0.09934529662132263, \"Y\": 0.7638954520225525}, {\"X\": 0.09934529662132263, \"Y\": 0.7515966892242432}, {\"X\": 0.15335345268249512, \"Y\": 0.7515966892242432}]}, \"Id\": \"4b693696-5896-4220-b5c2-151620a8df6e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28780364990234, \"Text\": \"2.1.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04574226960539818, \"Height\": 0.011846119537949562, \"Left\": 0.04817337170243263, \"Top\": 0.7517222166061401}, \"Polygon\": [{\"X\": 0.09391564130783081, \"Y\": 0.7635682821273804}, {\"X\": 0.04817337170243263, \"Y\": 0.7635682821273804}, {\"X\": 0.04817337170243263, \"Y\": 0.7517222166061401}, {\"X\": 0.09391564130783081, \"Y\": 0.7517222166061401}]}, \"Id\": \"9444ee26-135d-4960-88ea-5b64046d70fe\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81880950927734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053022921085357666, \"Height\": 0.012165349908173084, \"Left\": 0.5963464975357056, \"Top\": 0.7310429215431213}, \"Polygon\": [{\"X\": 0.6493694186210632, \"Y\": 0.7432082891464233}, {\"X\": 0.5963464975357056, \"Y\": 0.7432082891464233}, {\"X\": 0.5963464975357056, \"Y\": 0.7310429215431213}, {\"X\": 0.6493694186210632, \"Y\": 0.7310429215431213}]}, \"Id\": \"4e6ee364-2f14-42bb-90e5-2889c6e79e79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.01211547851562, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044947098940610886, \"Height\": 0.011684560216963291, \"Left\": 0.5449392199516296, \"Top\": 0.7312642931938171}, \"Polygon\": [{\"X\": 0.5898863077163696, \"Y\": 0.7429488897323608}, {\"X\": 0.5449392199516296, \"Y\": 0.7429488897323608}, {\"X\": 0.5449392199516296, \"Y\": 0.7312642931938171}, {\"X\": 0.5898863077163696, \"Y\": 0.7312642931938171}]}, \"Id\": \"390c3689-a5b2-4a4d-8b31-a7d88829545a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73321533203125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05345660075545311, \"Height\": 0.012397799640893936, \"Left\": 0.47208720445632935, \"Top\": 0.7309888005256653}, \"Polygon\": [{\"X\": 0.5255438089370728, \"Y\": 0.7433866262435913}, {\"X\": 0.47208720445632935, \"Y\": 0.7433866262435913}, {\"X\": 0.47208720445632935, \"Y\": 0.7309888005256653}, {\"X\": 0.5255438089370728, \"Y\": 0.7309888005256653}]}, \"Id\": \"559162e4-4da9-4bee-87c5-5f24fa7add98\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40077209472656, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04601835831999779, \"Height\": 0.011794179677963257, \"Left\": 0.42043304443359375, \"Top\": 0.7312741279602051}, \"Polygon\": [{\"X\": 0.46645140647888184, \"Y\": 0.743068277835846}, {\"X\": 0.42043304443359375, \"Y\": 0.743068277835846}, {\"X\": 0.42043304443359375, \"Y\": 0.7312741279602051}, {\"X\": 0.46645140647888184, \"Y\": 0.7312741279602051}]}, \"Id\": \"98b4ca11-226d-45fc-8547-60ad5a4846ad\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78416442871094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05341276153922081, \"Height\": 0.012168049812316895, \"Left\": 0.3476065397262573, \"Top\": 0.7310826778411865}, \"Polygon\": [{\"X\": 0.40101930499076843, \"Y\": 0.7432507276535034}, {\"X\": 0.3476065397262573, \"Y\": 0.7432507276535034}, {\"X\": 0.3476065397262573, \"Y\": 0.7310826778411865}, {\"X\": 0.40101930499076843, \"Y\": 0.7310826778411865}]}, \"Id\": \"c63add48-85b2-4523-82e1-a8600bd31b71\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24930572509766, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04537209868431091, \"Height\": 0.011655200272798538, \"Left\": 0.2965649962425232, \"Top\": 0.7312448024749756}, \"Polygon\": [{\"X\": 0.3419370949268341, \"Y\": 0.742900013923645}, {\"X\": 0.2965649962425232, \"Y\": 0.742900013923645}, {\"X\": 0.2965649962425232, \"Y\": 0.7312448024749756}, {\"X\": 0.3419370949268341, \"Y\": 0.7312448024749756}]}, \"Id\": \"f7a11e71-26df-47fb-86b5-0980997c8162\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78714752197266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053796350955963135, \"Height\": 0.012255020439624786, \"Left\": 0.2239035964012146, \"Top\": 0.731087863445282}, \"Polygon\": [{\"X\": 0.27769994735717773, \"Y\": 0.7433428764343262}, {\"X\": 0.2239035964012146, \"Y\": 0.7433428764343262}, {\"X\": 0.2239035964012146, \"Y\": 0.731087863445282}, {\"X\": 0.27769994735717773, \"Y\": 0.731087863445282}]}, \"Id\": \"a91836b0-bbdb-4bee-9d8d-5a72f8f51d73\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40653228759766, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04632813110947609, \"Height\": 0.01189303956925869, \"Left\": 0.17180293798446655, \"Top\": 0.7311616539955139}, \"Polygon\": [{\"X\": 0.21813106536865234, \"Y\": 0.7430547475814819}, {\"X\": 0.17180293798446655, \"Y\": 0.7430547475814819}, {\"X\": 0.17180293798446655, \"Y\": 0.7311616539955139}, {\"X\": 0.21813106536865234, \"Y\": 0.7311616539955139}]}, \"Id\": \"9ac54672-5147-4655-9ec5-f43ba57c5205\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52838897705078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05432960018515587, \"Height\": 0.01248881034553051, \"Left\": 0.09958609938621521, \"Top\": 0.7309830188751221}, \"Polygon\": [{\"X\": 0.15391570329666138, \"Y\": 0.7434718012809753}, {\"X\": 0.09958609938621521, \"Y\": 0.7434718012809753}, {\"X\": 0.09958609938621521, \"Y\": 0.7309830188751221}, {\"X\": 0.15391570329666138, \"Y\": 0.7309830188751221}]}, \"Id\": \"b3a4bb39-85c4-4eda-b716-e03ebfa8220c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31594848632812, \"Text\": \"2.2.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045471400022506714, \"Height\": 0.011950460262596607, \"Left\": 0.048518501222133636, \"Top\": 0.7311214804649353}, \"Polygon\": [{\"X\": 0.09398990124464035, \"Y\": 0.7430719137191772}, {\"X\": 0.048518501222133636, \"Y\": 0.7430719137191772}, {\"X\": 0.048518501222133636, \"Y\": 0.7311214804649353}, {\"X\": 0.09398990124464035, \"Y\": 0.7311214804649353}]}, \"Id\": \"fbff110e-fa84-49c0-943b-87361e1a3497\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81404876708984, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053127240389585495, \"Height\": 0.012021100148558617, \"Left\": 0.596384584903717, \"Top\": 0.7107123732566833}, \"Polygon\": [{\"X\": 0.6495118141174316, \"Y\": 0.7227334976196289}, {\"X\": 0.596384584903717, \"Y\": 0.7227334976196289}, {\"X\": 0.596384584903717, \"Y\": 0.7107123732566833}, {\"X\": 0.6495118141174316, \"Y\": 0.7107123732566833}]}, \"Id\": \"419fae84-1e3f-48fb-92b1-a589aca61177\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.01296997070312, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045528288930654526, \"Height\": 0.011703849770128727, \"Left\": 0.544660747051239, \"Top\": 0.7106893062591553}, \"Polygon\": [{\"X\": 0.5901890397071838, \"Y\": 0.7223931550979614}, {\"X\": 0.544660747051239, \"Y\": 0.7223931550979614}, {\"X\": 0.544660747051239, \"Y\": 0.7106893062591553}, {\"X\": 0.5901890397071838, \"Y\": 0.7106893062591553}]}, \"Id\": \"b2777a54-f426-4ca1-b021-3f85f9b8ba5d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82925415039062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053402338176965714, \"Height\": 0.011949200183153152, \"Left\": 0.47215694189071655, \"Top\": 0.7107242941856384}, \"Polygon\": [{\"X\": 0.5255593061447144, \"Y\": 0.7226734757423401}, {\"X\": 0.47215694189071655, \"Y\": 0.7226734757423401}, {\"X\": 0.47215694189071655, \"Y\": 0.7107242941856384}, {\"X\": 0.5255593061447144, \"Y\": 0.7107242941856384}]}, \"Id\": \"f25523e4-28f2-4d29-bd77-6f7d6f924221\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.192626953125, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04599428176879883, \"Height\": 0.011772479861974716, \"Left\": 0.4203605651855469, \"Top\": 0.7107506990432739}, \"Polygon\": [{\"X\": 0.4663548469543457, \"Y\": 0.7225231528282166}, {\"X\": 0.4203605651855469, \"Y\": 0.7225231528282166}, {\"X\": 0.4203605651855469, \"Y\": 0.7107506990432739}, {\"X\": 0.4663548469543457, \"Y\": 0.7107506990432739}]}, \"Id\": \"d03c8443-d861-432c-bc68-03151d16861d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75293731689453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05340123921632767, \"Height\": 0.012096320278942585, \"Left\": 0.34763163328170776, \"Top\": 0.7107076048851013}, \"Polygon\": [{\"X\": 0.40103286504745483, \"Y\": 0.7228039503097534}, {\"X\": 0.34763163328170776, \"Y\": 0.7228039503097534}, {\"X\": 0.34763163328170776, \"Y\": 0.7107076048851013}, {\"X\": 0.40103286504745483, \"Y\": 0.7107076048851013}]}, \"Id\": \"cfecd0b3-598b-489b-8b1c-ebdf8adad885\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46870422363281, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04515239968895912, \"Height\": 0.011730819940567017, \"Left\": 0.29676899313926697, \"Top\": 0.7107013463973999}, \"Polygon\": [{\"X\": 0.3419213891029358, \"Y\": 0.7224321365356445}, {\"X\": 0.29676899313926697, \"Y\": 0.7224321365356445}, {\"X\": 0.29676899313926697, \"Y\": 0.7107013463973999}, {\"X\": 0.3419213891029358, \"Y\": 0.7107013463973999}]}, \"Id\": \"abadac3c-5e40-45be-8a0b-d30a36e03009\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7543716430664, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05366725102066994, \"Height\": 0.01217653974890709, \"Left\": 0.22383010387420654, \"Top\": 0.7106972932815552}, \"Polygon\": [{\"X\": 0.2774973511695862, \"Y\": 0.722873866558075}, {\"X\": 0.22383010387420654, \"Y\": 0.722873866558075}, {\"X\": 0.22383010387420654, \"Y\": 0.7106972932815552}, {\"X\": 0.2774973511695862, \"Y\": 0.7106972932815552}]}, \"Id\": \"aad4e773-66ea-4037-8643-2659698e53cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5318832397461, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046039339154958725, \"Height\": 0.011858739890158176, \"Left\": 0.17200416326522827, \"Top\": 0.7106986045837402}, \"Polygon\": [{\"X\": 0.2180435061454773, \"Y\": 0.7225573658943176}, {\"X\": 0.17200416326522827, \"Y\": 0.7225573658943176}, {\"X\": 0.17200416326522827, \"Y\": 0.7106986045837402}, {\"X\": 0.2180435061454773, \"Y\": 0.7106986045837402}]}, \"Id\": \"7e373409-6aa9-4c09-93e0-ab93b6218d4a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.21595001220703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05350445955991745, \"Height\": 0.012172959744930267, \"Left\": 0.09989680349826813, \"Top\": 0.7106509208679199}, \"Polygon\": [{\"X\": 0.15340125560760498, \"Y\": 0.7228238582611084}, {\"X\": 0.09989680349826813, \"Y\": 0.7228238582611084}, {\"X\": 0.09989680349826813, \"Y\": 0.7106509208679199}, {\"X\": 0.15340125560760498, \"Y\": 0.7106509208679199}]}, \"Id\": \"e4d01293-55e3-48f5-9010-0eb822760e6b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40937042236328, \"Text\": \"2.3.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04500120133161545, \"Height\": 0.011904159560799599, \"Left\": 0.04876270145177841, \"Top\": 0.7106009125709534}, \"Polygon\": [{\"X\": 0.09376390278339386, \"Y\": 0.7225050330162048}, {\"X\": 0.04876270145177841, \"Y\": 0.7225050330162048}, {\"X\": 0.04876270145177841, \"Y\": 0.7106009125709534}, {\"X\": 0.09376390278339386, \"Y\": 0.7106009125709534}]}, \"Id\": \"e8c798d8-0469-4ebd-a6de-a8b6f3938935\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.840087890625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05336961895227432, \"Height\": 0.011820980347692966, \"Left\": 0.5964404940605164, \"Top\": 0.6902725100517273}, \"Polygon\": [{\"X\": 0.6498101353645325, \"Y\": 0.7020934820175171}, {\"X\": 0.5964404940605164, \"Y\": 0.7020934820175171}, {\"X\": 0.5964404940605164, \"Y\": 0.6902725100517273}, {\"X\": 0.6498101353645325, \"Y\": 0.6902725100517273}]}, \"Id\": \"f7719b35-52f4-4bed-8b05-60da7aebe001\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58486938476562, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04553404077887535, \"Height\": 0.011603330262005329, \"Left\": 0.5447086095809937, \"Top\": 0.6902846693992615}, \"Polygon\": [{\"X\": 0.5902426242828369, \"Y\": 0.7018879652023315}, {\"X\": 0.5447086095809937, \"Y\": 0.7018879652023315}, {\"X\": 0.5447086095809937, \"Y\": 0.6902846693992615}, {\"X\": 0.5902426242828369, \"Y\": 0.6902846693992615}]}, \"Id\": \"bcf59c5c-2198-46a8-8b16-27a23c1f0a23\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88162231445312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053640760481357574, \"Height\": 0.012002759613096714, \"Left\": 0.47198671102523804, \"Top\": 0.6902239918708801}, \"Polygon\": [{\"X\": 0.5256274342536926, \"Y\": 0.7022267580032349}, {\"X\": 0.47198671102523804, \"Y\": 0.7022267580032349}, {\"X\": 0.47198671102523804, \"Y\": 0.6902239918708801}, {\"X\": 0.5256274342536926, \"Y\": 0.6902239918708801}]}, \"Id\": \"3b0de147-30dc-4ea6-be98-07687263f2d1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51610565185547, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045768339186906815, \"Height\": 0.011697409674525261, \"Left\": 0.4205476641654968, \"Top\": 0.6903784275054932}, \"Polygon\": [{\"X\": 0.46631601452827454, \"Y\": 0.7020758390426636}, {\"X\": 0.4205476641654968, \"Y\": 0.7020758390426636}, {\"X\": 0.4205476641654968, \"Y\": 0.6903784275054932}, {\"X\": 0.46631601452827454, \"Y\": 0.6903784275054932}]}, \"Id\": \"4ca1e992-ed50-45b5-8712-414460dd1bf4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86691284179688, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05328629910945892, \"Height\": 0.011964290402829647, \"Left\": 0.34788981080055237, \"Top\": 0.6902541518211365}, \"Polygon\": [{\"X\": 0.4011760950088501, \"Y\": 0.7022184729576111}, {\"X\": 0.34788981080055237, \"Y\": 0.7022184729576111}, {\"X\": 0.34788981080055237, \"Y\": 0.6902541518211365}, {\"X\": 0.4011760950088501, \"Y\": 0.6902541518211365}]}, \"Id\": \"6fad0324-60c8-4d27-8c70-c030e61e77ec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46155548095703, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0449378602206707, \"Height\": 0.011767780408263206, \"Left\": 0.2967657446861267, \"Top\": 0.6902282238006592}, \"Polygon\": [{\"X\": 0.3417035937309265, \"Y\": 0.7019960284233093}, {\"X\": 0.2967657446861267, \"Y\": 0.7019960284233093}, {\"X\": 0.2967657446861267, \"Y\": 0.6902282238006592}, {\"X\": 0.3417035937309265, \"Y\": 0.6902282238006592}]}, \"Id\": \"0b2af800-1ea4-4f1f-a056-454df53b1ab1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79859924316406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05379119887948036, \"Height\": 0.01198206003755331, \"Left\": 0.22388680279254913, \"Top\": 0.690268337726593}, \"Polygon\": [{\"X\": 0.2776780128479004, \"Y\": 0.7022504210472107}, {\"X\": 0.22388680279254913, \"Y\": 0.7022504210472107}, {\"X\": 0.22388680279254913, \"Y\": 0.690268337726593}, {\"X\": 0.2776780128479004, \"Y\": 0.690268337726593}]}, \"Id\": \"ba557dcd-1595-44f3-a3d7-b55656b92d0f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54178619384766, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04636235162615776, \"Height\": 0.011716560460627079, \"Left\": 0.1718561053276062, \"Top\": 0.6903411149978638}, \"Polygon\": [{\"X\": 0.21821844577789307, \"Y\": 0.7020577192306519}, {\"X\": 0.1718561053276062, \"Y\": 0.7020577192306519}, {\"X\": 0.1718561053276062, \"Y\": 0.6903411149978638}, {\"X\": 0.21821844577789307, \"Y\": 0.6903411149978638}]}, \"Id\": \"bbb342c5-3c48-450c-afe5-f660ad2079f8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65279388427734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053157299757003784, \"Height\": 0.011823279783129692, \"Left\": 0.09994419664144516, \"Top\": 0.6902660131454468}, \"Polygon\": [{\"X\": 0.15310150384902954, \"Y\": 0.7020893096923828}, {\"X\": 0.09994419664144516, \"Y\": 0.7020893096923828}, {\"X\": 0.09994419664144516, \"Y\": 0.6902660131454468}, {\"X\": 0.15310150384902954, \"Y\": 0.6902660131454468}]}, \"Id\": \"fac3488a-17a0-46e6-99e9-d9f4f3b05e7b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58194732666016, \"Text\": \"2.4.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045360248535871506, \"Height\": 0.011819900013506413, \"Left\": 0.04846610128879547, \"Top\": 0.6901109218597412}, \"Polygon\": [{\"X\": 0.09382635354995728, \"Y\": 0.701930820941925}, {\"X\": 0.04846610128879547, \"Y\": 0.701930820941925}, {\"X\": 0.04846610128879547, \"Y\": 0.6901109218597412}, {\"X\": 0.09382635354995728, \"Y\": 0.6901109218597412}]}, \"Id\": \"b04319cc-901c-4c6a-962e-630465cff980\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77214050292969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0535522997379303, \"Height\": 0.011732949875295162, \"Left\": 0.5964564085006714, \"Top\": 0.6697521209716797}, \"Polygon\": [{\"X\": 0.6500086784362793, \"Y\": 0.681485116481781}, {\"X\": 0.5964564085006714, \"Y\": 0.681485116481781}, {\"X\": 0.5964564085006714, \"Y\": 0.6697521209716797}, {\"X\": 0.6500086784362793, \"Y\": 0.6697521209716797}]}, \"Id\": \"78bbca06-3994-49ad-afc7-51171583b675\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45796203613281, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045663148164749146, \"Height\": 0.011750279925763607, \"Left\": 0.5446961522102356, \"Top\": 0.6696734428405762}, \"Polygon\": [{\"X\": 0.5903592705726624, \"Y\": 0.6814237236976624}, {\"X\": 0.5446961522102356, \"Y\": 0.6814237236976624}, {\"X\": 0.5446961522102356, \"Y\": 0.6696734428405762}, {\"X\": 0.5903592705726624, \"Y\": 0.6696734428405762}]}, \"Id\": \"20bf5022-3b63-4226-9b6e-6ccab48a2f79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85786437988281, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05357106029987335, \"Height\": 0.011997739784419537, \"Left\": 0.47199463844299316, \"Top\": 0.6696773767471313}, \"Polygon\": [{\"X\": 0.5255656838417053, \"Y\": 0.681675136089325}, {\"X\": 0.47199463844299316, \"Y\": 0.681675136089325}, {\"X\": 0.47199463844299316, \"Y\": 0.6696773767471313}, {\"X\": 0.5255656838417053, \"Y\": 0.6696773767471313}]}, \"Id\": \"166b9955-d357-4619-b7b7-ddc04811bee3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41448974609375, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045861899852752686, \"Height\": 0.011575999669730663, \"Left\": 0.42043548822402954, \"Top\": 0.6697812080383301}, \"Polygon\": [{\"X\": 0.4662973880767822, \"Y\": 0.681357204914093}, {\"X\": 0.42043548822402954, \"Y\": 0.681357204914093}, {\"X\": 0.42043548822402954, \"Y\": 0.6697812080383301}, {\"X\": 0.4662973880767822, \"Y\": 0.6697812080383301}]}, \"Id\": \"eed3ca39-5c8f-4b6b-9f2e-4f8e816322ad\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85821533203125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05303296074271202, \"Height\": 0.011922899633646011, \"Left\": 0.3479914963245392, \"Top\": 0.6696767210960388}, \"Polygon\": [{\"X\": 0.4010244607925415, \"Y\": 0.6815996766090393}, {\"X\": 0.3479914963245392, \"Y\": 0.6815996766090393}, {\"X\": 0.3479914963245392, \"Y\": 0.6696767210960388}, {\"X\": 0.4010244607925415, \"Y\": 0.6696767210960388}]}, \"Id\": \"fae2fd8d-3dbd-488e-a091-fce414277349\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57134246826172, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045098528265953064, \"Height\": 0.011818589642643929, \"Left\": 0.29663848876953125, \"Top\": 0.6696281433105469}, \"Polygon\": [{\"X\": 0.3417370319366455, \"Y\": 0.6814467310905457}, {\"X\": 0.29663848876953125, \"Y\": 0.6814467310905457}, {\"X\": 0.29663848876953125, \"Y\": 0.6696281433105469}, {\"X\": 0.3417370319366455, \"Y\": 0.6696281433105469}]}, \"Id\": \"3441300e-af39-4043-aa32-3df0d3834520\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7679443359375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0539201982319355, \"Height\": 0.012105709873139858, \"Left\": 0.223888099193573, \"Top\": 0.6696566343307495}, \"Polygon\": [{\"X\": 0.2778083086013794, \"Y\": 0.6817623376846313}, {\"X\": 0.223888099193573, \"Y\": 0.6817623376846313}, {\"X\": 0.223888099193573, \"Y\": 0.6696566343307495}, {\"X\": 0.2778083086013794, \"Y\": 0.6696566343307495}]}, \"Id\": \"c6fb1513-a530-4032-aada-4ae3d46efd7c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59932708740234, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046314358711242676, \"Height\": 0.011999200098216534, \"Left\": 0.1716645359992981, \"Top\": 0.6695528030395508}, \"Polygon\": [{\"X\": 0.21797889471054077, \"Y\": 0.681551992893219}, {\"X\": 0.1716645359992981, \"Y\": 0.681551992893219}, {\"X\": 0.1716645359992981, \"Y\": 0.6695528030395508}, {\"X\": 0.21797889471054077, \"Y\": 0.6695528030395508}]}, \"Id\": \"c0234844-1da8-4b9c-b3ac-c4358e8dcbfc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87388610839844, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05302689969539642, \"Height\": 0.011827169917523861, \"Left\": 0.10010640323162079, \"Top\": 0.6696985960006714}, \"Polygon\": [{\"X\": 0.1531333029270172, \"Y\": 0.6815257668495178}, {\"X\": 0.10010640323162079, \"Y\": 0.6815257668495178}, {\"X\": 0.10010640323162079, \"Y\": 0.6696985960006714}, {\"X\": 0.1531333029270172, \"Y\": 0.6696985960006714}]}, \"Id\": \"86861931-b847-40c9-9ce8-fb760f9f1fe0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62107849121094, \"Text\": \"2.5.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04544014856219292, \"Height\": 0.011864650063216686, \"Left\": 0.048398301005363464, \"Top\": 0.6695783138275146}, \"Polygon\": [{\"X\": 0.09383845329284668, \"Y\": 0.6814429759979248}, {\"X\": 0.048398301005363464, \"Y\": 0.6814429759979248}, {\"X\": 0.048398301005363464, \"Y\": 0.6695783138275146}, {\"X\": 0.09383845329284668, \"Y\": 0.6695783138275146}]}, \"Id\": \"b3616123-2ede-4235-a0e9-893e9115e2f6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7695541381836, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030597619712352753, \"Height\": 0.010607450269162655, \"Left\": 0.8886985778808594, \"Top\": 0.596848726272583}, \"Polygon\": [{\"X\": 0.9192962050437927, \"Y\": 0.6074562072753906}, {\"X\": 0.8886985778808594, \"Y\": 0.6074562072753906}, {\"X\": 0.8886985778808594, \"Y\": 0.596848726272583}, {\"X\": 0.9192962050437927, \"Y\": 0.596848726272583}]}, \"Id\": \"79f7cea4-c5c8-4f03-9bb9-35fe40e1afc6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92523956298828, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09923286736011505, \"Height\": 0.010780660435557365, \"Left\": 0.7841997742652893, \"Top\": 0.5971078276634216}, \"Polygon\": [{\"X\": 0.8834326863288879, \"Y\": 0.6078884601593018}, {\"X\": 0.7841997742652893, \"Y\": 0.6078884601593018}, {\"X\": 0.7841997742652893, \"Y\": 0.5971078276634216}, {\"X\": 0.8834326863288879, \"Y\": 0.5971078276634216}]}, \"Id\": \"7737f6a9-a2f9-47f5-9f99-3a1daec5ca02\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6775131225586, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046447280794382095, \"Height\": 0.010556880384683609, \"Left\": 0.4519440531730652, \"Top\": 0.5784167051315308}, \"Polygon\": [{\"X\": 0.498391330242157, \"Y\": 0.5889735817909241}, {\"X\": 0.4519440531730652, \"Y\": 0.5889735817909241}, {\"X\": 0.4519440531730652, \"Y\": 0.5784167051315308}, {\"X\": 0.498391330242157, \"Y\": 0.5784167051315308}]}, \"Id\": \"00d50d77-271c-479b-9217-6401ecdbc3df\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40930938720703, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03859703987836838, \"Height\": 0.010368100367486477, \"Left\": 0.40857309103012085, \"Top\": 0.5784041881561279}, \"Polygon\": [{\"X\": 0.4471701383590698, \"Y\": 0.5887722969055176}, {\"X\": 0.40857309103012085, \"Y\": 0.5887722969055176}, {\"X\": 0.40857309103012085, \"Y\": 0.5784041881561279}, {\"X\": 0.4471701383590698, \"Y\": 0.5784041881561279}]}, \"Id\": \"3c591561-44fb-462a-a5bb-bdea8afad0bc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69998931884766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046351358294487, \"Height\": 0.010687829926609993, \"Left\": 0.30796781182289124, \"Top\": 0.5783089995384216}, \"Polygon\": [{\"X\": 0.35431915521621704, \"Y\": 0.5889968276023865}, {\"X\": 0.30796781182289124, \"Y\": 0.5889968276023865}, {\"X\": 0.30796781182289124, \"Y\": 0.5783089995384216}, {\"X\": 0.35431915521621704, \"Y\": 0.5783089995384216}]}, \"Id\": \"154ed885-fd4f-4130-b04c-dd883150ab9e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.22398376464844, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039132699370384216, \"Height\": 0.010387809947133064, \"Left\": 0.2636392116546631, \"Top\": 0.5783536434173584}, \"Polygon\": [{\"X\": 0.3027718961238861, \"Y\": 0.5887414813041687}, {\"X\": 0.2636392116546631, \"Y\": 0.5887414813041687}, {\"X\": 0.2636392116546631, \"Y\": 0.5783536434173584}, {\"X\": 0.3027718961238861, \"Y\": 0.5783536434173584}]}, \"Id\": \"a51cd11d-de39-48b1-9b9f-72103c6eb92a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69901275634766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04638246074318886, \"Height\": 0.010515529662370682, \"Left\": 0.16404074430465698, \"Top\": 0.5783951878547668}, \"Polygon\": [{\"X\": 0.21042320132255554, \"Y\": 0.5889107584953308}, {\"X\": 0.16404074430465698, \"Y\": 0.5889107584953308}, {\"X\": 0.16404074430465698, \"Y\": 0.5783951878547668}, {\"X\": 0.21042320132255554, \"Y\": 0.5783951878547668}]}, \"Id\": \"5a40dda1-5210-474f-b96b-a3eade78cbd0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25212860107422, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038789570331573486, \"Height\": 0.010605540126562119, \"Left\": 0.1201941967010498, \"Top\": 0.5783211588859558}, \"Polygon\": [{\"X\": 0.1589837670326233, \"Y\": 0.5889266729354858}, {\"X\": 0.1201941967010498, \"Y\": 0.5889266729354858}, {\"X\": 0.1201941967010498, \"Y\": 0.5783211588859558}, {\"X\": 0.1589837670326233, \"Y\": 0.5783211588859558}]}, \"Id\": \"33355f81-cfbf-4103-9dfb-a59cf93c8142\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24663543701172, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03373032063245773, \"Height\": 0.010602629743516445, \"Left\": 0.8895657658576965, \"Top\": 0.5706495046615601}, \"Polygon\": [{\"X\": 0.9232960939407349, \"Y\": 0.5812521576881409}, {\"X\": 0.8895657658576965, \"Y\": 0.5812521576881409}, {\"X\": 0.8895657658576965, \"Y\": 0.5706495046615601}, {\"X\": 0.9232960939407349, \"Y\": 0.5706495046615601}]}, \"Id\": \"bbeae921-2104-49cd-a33c-a04d1ad8388e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9716796875, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06699991226196289, \"Height\": 0.011079549789428711, \"Left\": 0.8179644346237183, \"Top\": 0.570688009262085}, \"Polygon\": [{\"X\": 0.8849643468856812, \"Y\": 0.5817675590515137}, {\"X\": 0.8179644346237183, \"Y\": 0.5817675590515137}, {\"X\": 0.8179644346237183, \"Y\": 0.570688009262085}, {\"X\": 0.8849643468856812, \"Y\": 0.570688009262085}]}, \"Id\": \"0eab012a-5a46-4e87-a50f-2ac14eb7c60d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65247344970703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046513501554727554, \"Height\": 0.010579830035567284, \"Left\": 0.4519619345664978, \"Top\": 0.5607749223709106}, \"Polygon\": [{\"X\": 0.49847543239593506, \"Y\": 0.5713548064231873}, {\"X\": 0.4519619345664978, \"Y\": 0.5713548064231873}, {\"X\": 0.4519619345664978, \"Y\": 0.5607749223709106}, {\"X\": 0.49847543239593506, \"Y\": 0.5607749223709106}]}, \"Id\": \"1f031cd2-6763-438a-be74-813499731abf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19817352294922, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0388585701584816, \"Height\": 0.010278499685227871, \"Left\": 0.40845513343811035, \"Top\": 0.5608828067779541}, \"Polygon\": [{\"X\": 0.44731369614601135, \"Y\": 0.5711613297462463}, {\"X\": 0.40845513343811035, \"Y\": 0.5711613297462463}, {\"X\": 0.40845513343811035, \"Y\": 0.5608828067779541}, {\"X\": 0.44731369614601135, \"Y\": 0.5608828067779541}]}, \"Id\": \"01ef3ffa-eee5-41d6-b099-3deffa312a9a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71050262451172, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046476200222969055, \"Height\": 0.010729869827628136, \"Left\": 0.3076786994934082, \"Top\": 0.5607287287712097}, \"Polygon\": [{\"X\": 0.35415491461753845, \"Y\": 0.5714585781097412}, {\"X\": 0.3076786994934082, \"Y\": 0.5714585781097412}, {\"X\": 0.3076786994934082, \"Y\": 0.5607287287712097}, {\"X\": 0.35415491461753845, \"Y\": 0.5607287287712097}]}, \"Id\": \"982d469a-d330-4356-9991-910852aafc8e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.98545837402344, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0394739992916584, \"Height\": 0.010466399602591991, \"Left\": 0.26343628764152527, \"Top\": 0.5607189536094666}, \"Polygon\": [{\"X\": 0.30291029810905457, \"Y\": 0.5711853504180908}, {\"X\": 0.26343628764152527, \"Y\": 0.5711853504180908}, {\"X\": 0.26343628764152527, \"Y\": 0.5607189536094666}, {\"X\": 0.30291029810905457, \"Y\": 0.5607189536094666}]}, \"Id\": \"da50f32f-6984-4258-9b4c-f27032361507\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59175109863281, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046265698969364166, \"Height\": 0.01068654004484415, \"Left\": 0.16386370360851288, \"Top\": 0.5607080459594727}, \"Polygon\": [{\"X\": 0.21012939512729645, \"Y\": 0.5713945627212524}, {\"X\": 0.16386370360851288, \"Y\": 0.5713945627212524}, {\"X\": 0.16386370360851288, \"Y\": 0.5607080459594727}, {\"X\": 0.21012939512729645, \"Y\": 0.5607080459594727}]}, \"Id\": \"afdfaa38-304b-4863-be26-6c0f4ba73ab9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.18392944335938, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03919411078095436, \"Height\": 0.010404050350189209, \"Left\": 0.12005423754453659, \"Top\": 0.5607974529266357}, \"Polygon\": [{\"X\": 0.15924835205078125, \"Y\": 0.571201503276825}, {\"X\": 0.12005423754453659, \"Y\": 0.571201503276825}, {\"X\": 0.12005423754453659, \"Y\": 0.5607974529266357}, {\"X\": 0.15924835205078125, \"Y\": 0.5607974529266357}]}, \"Id\": \"5fbf0b4b-8873-4c49-83ac-c8588fcd468c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78324127197266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04620366171002388, \"Height\": 0.010365069843828678, \"Left\": 0.4518471360206604, \"Top\": 0.5431175827980042}, \"Polygon\": [{\"X\": 0.4980508089065552, \"Y\": 0.5534826517105103}, {\"X\": 0.4518471360206604, \"Y\": 0.5534826517105103}, {\"X\": 0.4518471360206604, \"Y\": 0.5431175827980042}, {\"X\": 0.4980508089065552, \"Y\": 0.5431175827980042}]}, \"Id\": \"c04dd90b-b19c-4f73-a151-26e06ee68d68\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27021026611328, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0385683998465538, \"Height\": 0.010191000066697598, \"Left\": 0.4083017110824585, \"Top\": 0.543137788772583}, \"Polygon\": [{\"X\": 0.4468700885772705, \"Y\": 0.553328812122345}, {\"X\": 0.4083017110824585, \"Y\": 0.553328812122345}, {\"X\": 0.4083017110824585, \"Y\": 0.543137788772583}, {\"X\": 0.4468700885772705, \"Y\": 0.543137788772583}]}, \"Id\": \"4e16ce13-5b0c-4457-bf5d-e42c0f4c1eca\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70647430419922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04639485850930214, \"Height\": 0.010658049955964088, \"Left\": 0.3078024387359619, \"Top\": 0.5430283546447754}, \"Polygon\": [{\"X\": 0.35419729351997375, \"Y\": 0.5536863803863525}, {\"X\": 0.3078024387359619, \"Y\": 0.5536863803863525}, {\"X\": 0.3078024387359619, \"Y\": 0.5430283546447754}, {\"X\": 0.35419729351997375, \"Y\": 0.5430283546447754}]}, \"Id\": \"47715866-7f60-4505-90b1-1176712b4ca9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.82230377197266, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03905129060149193, \"Height\": 0.009982829913496971, \"Left\": 0.2638888359069824, \"Top\": 0.5432444214820862}, \"Polygon\": [{\"X\": 0.30294013023376465, \"Y\": 0.5532272458076477}, {\"X\": 0.2638888359069824, \"Y\": 0.5532272458076477}, {\"X\": 0.2638888359069824, \"Y\": 0.5432444214820862}, {\"X\": 0.30294013023376465, \"Y\": 0.5432444214820862}]}, \"Id\": \"aee262b3-4f3f-42da-bdab-a5b78f77344b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50440216064453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04613497108221054, \"Height\": 0.010468980297446251, \"Left\": 0.16394470632076263, \"Top\": 0.5431081652641296}, \"Polygon\": [{\"X\": 0.21007966995239258, \"Y\": 0.5535771250724792}, {\"X\": 0.16394470632076263, \"Y\": 0.5535771250724792}, {\"X\": 0.16394470632076263, \"Y\": 0.5431081652641296}, {\"X\": 0.21007966995239258, \"Y\": 0.5431081652641296}]}, \"Id\": \"a7cf2301-2289-4083-9318-3e9e95b70efd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23789978027344, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03921594098210335, \"Height\": 0.010251609608530998, \"Left\": 0.12018495798110962, \"Top\": 0.5430805683135986}, \"Polygon\": [{\"X\": 0.15940089523792267, \"Y\": 0.5533321499824524}, {\"X\": 0.12018495798110962, \"Y\": 0.5533321499824524}, {\"X\": 0.12018495798110962, \"Y\": 0.5430805683135986}, {\"X\": 0.15940089523792267, \"Y\": 0.5430805683135986}]}, \"Id\": \"d347a50f-dec5-46e2-8869-917978376f21\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8353271484375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04612160101532936, \"Height\": 0.010445799678564072, \"Left\": 0.4521966874599457, \"Top\": 0.5255035758018494}, \"Polygon\": [{\"X\": 0.49831831455230713, \"Y\": 0.5359493494033813}, {\"X\": 0.4521966874599457, \"Y\": 0.5359493494033813}, {\"X\": 0.4521966874599457, \"Y\": 0.5255035758018494}, {\"X\": 0.49831831455230713, \"Y\": 0.5255035758018494}]}, \"Id\": \"abd6cb5b-7931-4012-aaba-02766861308e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58538055419922, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038936398923397064, \"Height\": 0.010043499991297722, \"Left\": 0.40851280093193054, \"Top\": 0.5256617069244385}, \"Polygon\": [{\"X\": 0.4474492073059082, \"Y\": 0.5357052087783813}, {\"X\": 0.40851280093193054, \"Y\": 0.5357052087783813}, {\"X\": 0.40851280093193054, \"Y\": 0.5256617069244385}, {\"X\": 0.4474492073059082, \"Y\": 0.5256617069244385}]}, \"Id\": \"be844c73-0967-4f54-a4ab-942de6e8ee56\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49900817871094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04682974889874458, \"Height\": 0.010408610105514526, \"Left\": 0.3071436882019043, \"Top\": 0.5254945158958435}, \"Polygon\": [{\"X\": 0.3539734482765198, \"Y\": 0.5359031558036804}, {\"X\": 0.3071436882019043, \"Y\": 0.5359031558036804}, {\"X\": 0.3071436882019043, \"Y\": 0.5254945158958435}, {\"X\": 0.3539734482765198, \"Y\": 0.5254945158958435}]}, \"Id\": \"8967f487-5c30-45a1-9f01-bbfb4cb3080f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11589050292969, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0395347997546196, \"Height\": 0.01020066998898983, \"Left\": 0.26359790563583374, \"Top\": 0.5254688858985901}, \"Polygon\": [{\"X\": 0.30313271284103394, \"Y\": 0.5356695652008057}, {\"X\": 0.26359790563583374, \"Y\": 0.5356695652008057}, {\"X\": 0.26359790563583374, \"Y\": 0.5254688858985901}, {\"X\": 0.30313271284103394, \"Y\": 0.5254688858985901}]}, \"Id\": \"48d230ee-316f-4255-860a-8b11ba896068\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4627914428711, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045873429626226425, \"Height\": 0.010512120090425014, \"Left\": 0.16410639882087708, \"Top\": 0.5254675149917603}, \"Polygon\": [{\"X\": 0.2099798321723938, \"Y\": 0.5359796285629272}, {\"X\": 0.16410639882087708, \"Y\": 0.5359796285629272}, {\"X\": 0.16410639882087708, \"Y\": 0.5254675149917603}, {\"X\": 0.2099798321723938, \"Y\": 0.5254675149917603}]}, \"Id\": \"38f5e187-9184-4e1d-96b0-88875553805d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.18669128417969, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03929010033607483, \"Height\": 0.010188300162553787, \"Left\": 0.12003950029611588, \"Top\": 0.5254783034324646}, \"Polygon\": [{\"X\": 0.1593295931816101, \"Y\": 0.5356665849685669}, {\"X\": 0.12003950029611588, \"Y\": 0.5356665849685669}, {\"X\": 0.12003950029611588, \"Y\": 0.5254783034324646}, {\"X\": 0.1593295931816101, \"Y\": 0.5254783034324646}]}, \"Id\": \"28edaa42-9493-4295-a9cc-ac065514d750\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85385131835938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04571276158094406, \"Height\": 0.01040055975317955, \"Left\": 0.452223539352417, \"Top\": 0.5078417062759399}, \"Polygon\": [{\"X\": 0.49793630838394165, \"Y\": 0.5182422399520874}, {\"X\": 0.452223539352417, \"Y\": 0.5182422399520874}, {\"X\": 0.452223539352417, \"Y\": 0.5078417062759399}, {\"X\": 0.49793630838394165, \"Y\": 0.5078417062759399}]}, \"Id\": \"80fe91ac-46ca-445e-9651-2976f21de113\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56291961669922, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038947559893131256, \"Height\": 0.010157880373299122, \"Left\": 0.4083673059940338, \"Top\": 0.5078837275505066}, \"Polygon\": [{\"X\": 0.4473148584365845, \"Y\": 0.5180415511131287}, {\"X\": 0.4083673059940338, \"Y\": 0.5180415511131287}, {\"X\": 0.4083673059940338, \"Y\": 0.5078837275505066}, {\"X\": 0.4473148584365845, \"Y\": 0.5078837275505066}]}, \"Id\": \"1a7abecb-34d8-46e4-b9dc-5f1abce91ae7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55715942382812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045878101140260696, \"Height\": 0.010747680440545082, \"Left\": 0.30798518657684326, \"Top\": 0.507740318775177}, \"Polygon\": [{\"X\": 0.35386329889297485, \"Y\": 0.5184879899024963}, {\"X\": 0.30798518657684326, \"Y\": 0.5184879899024963}, {\"X\": 0.30798518657684326, \"Y\": 0.507740318775177}, {\"X\": 0.35386329889297485, \"Y\": 0.507740318775177}]}, \"Id\": \"e85c7e92-7467-47ba-bfa4-390e474dff2d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23226928710938, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038986239582300186, \"Height\": 0.010133150033652782, \"Left\": 0.2636263072490692, \"Top\": 0.5078359246253967}, \"Polygon\": [{\"X\": 0.3026125431060791, \"Y\": 0.5179690718650818}, {\"X\": 0.2636263072490692, \"Y\": 0.5179690718650818}, {\"X\": 0.2636263072490692, \"Y\": 0.5078359246253967}, {\"X\": 0.3026125431060791, \"Y\": 0.5078359246253967}]}, \"Id\": \"77d84955-623e-4cae-82dc-4ddc4d0b592e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58854675292969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04597872123122215, \"Height\": 0.010561949573457241, \"Left\": 0.16401463747024536, \"Top\": 0.5078072547912598}, \"Polygon\": [{\"X\": 0.2099933624267578, \"Y\": 0.5183692574501038}, {\"X\": 0.16401463747024536, \"Y\": 0.5183692574501038}, {\"X\": 0.16401463747024536, \"Y\": 0.5078072547912598}, {\"X\": 0.2099933624267578, \"Y\": 0.5078072547912598}]}, \"Id\": \"70eb2fa6-d8e9-4ebd-9e88-5a59ce6efa0f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.450439453125, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03908649832010269, \"Height\": 0.010453100316226482, \"Left\": 0.1202905997633934, \"Top\": 0.507695198059082}, \"Polygon\": [{\"X\": 0.1593770980834961, \"Y\": 0.5181483030319214}, {\"X\": 0.1202905997633934, \"Y\": 0.5181483030319214}, {\"X\": 0.1202905997633934, \"Y\": 0.507695198059082}, {\"X\": 0.1593770980834961, \"Y\": 0.507695198059082}]}, \"Id\": \"9a0886fb-8e6e-473a-a597-7b54e991d1e3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86005401611328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04608476161956787, \"Height\": 0.010380770079791546, \"Left\": 0.45220184326171875, \"Top\": 0.4902192950248718}, \"Polygon\": [{\"X\": 0.4982866048812866, \"Y\": 0.5006000995635986}, {\"X\": 0.45220184326171875, \"Y\": 0.5006000995635986}, {\"X\": 0.45220184326171875, \"Y\": 0.4902192950248718}, {\"X\": 0.4982866048812866, \"Y\": 0.4902192950248718}]}, \"Id\": \"ab5740d2-8280-4457-8453-62ed844570b4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51555633544922, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03890850022435188, \"Height\": 0.010037019848823547, \"Left\": 0.40840891003608704, \"Top\": 0.4902958869934082}, \"Polygon\": [{\"X\": 0.4473173916339874, \"Y\": 0.5003328919410706}, {\"X\": 0.40840891003608704, \"Y\": 0.5003328919410706}, {\"X\": 0.40840891003608704, \"Y\": 0.4902958869934082}, {\"X\": 0.4473173916339874, \"Y\": 0.4902958869934082}]}, \"Id\": \"607622c1-d5b4-4fbf-be5f-962627d8d7bf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7470474243164, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045667801052331924, \"Height\": 0.010580630041658878, \"Left\": 0.3082279860973358, \"Top\": 0.4901767373085022}, \"Polygon\": [{\"X\": 0.35389581322669983, \"Y\": 0.5007573962211609}, {\"X\": 0.3082279860973358, \"Y\": 0.5007573962211609}, {\"X\": 0.3082279860973358, \"Y\": 0.4901767373085022}, {\"X\": 0.35389581322669983, \"Y\": 0.4901767373085022}]}, \"Id\": \"30e8a1d5-0768-4c9b-a4f1-2d8f4d07cf0d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.16624450683594, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039023999124765396, \"Height\": 0.010189750231802464, \"Left\": 0.26376861333847046, \"Top\": 0.4900989532470703}, \"Polygon\": [{\"X\": 0.30279260873794556, \"Y\": 0.500288724899292}, {\"X\": 0.26376861333847046, \"Y\": 0.500288724899292}, {\"X\": 0.26376861333847046, \"Y\": 0.4900989532470703}, {\"X\": 0.30279260873794556, \"Y\": 0.4900989532470703}]}, \"Id\": \"a52d016b-517e-448a-9e87-c8b448d81c11\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64225006103516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04567025974392891, \"Height\": 0.010481979697942734, \"Left\": 0.16419090330600739, \"Top\": 0.4901513457298279}, \"Polygon\": [{\"X\": 0.209861159324646, \"Y\": 0.5006333589553833}, {\"X\": 0.16419090330600739, \"Y\": 0.5006333589553833}, {\"X\": 0.16419090330600739, \"Y\": 0.4901513457298279}, {\"X\": 0.209861159324646, \"Y\": 0.4901513457298279}]}, \"Id\": \"df8d4db5-ad65-406b-a497-21c5861ff9a6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.051513671875, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039127200841903687, \"Height\": 0.010374070145189762, \"Left\": 0.12013880163431168, \"Top\": 0.49007725715637207}, \"Polygon\": [{\"X\": 0.15926599502563477, \"Y\": 0.5004513263702393}, {\"X\": 0.12013880163431168, \"Y\": 0.5004513263702393}, {\"X\": 0.12013880163431168, \"Y\": 0.49007725715637207}, {\"X\": 0.15926599502563477, \"Y\": 0.49007725715637207}]}, \"Id\": \"3e51086e-d300-4b78-87c1-94c531f1bfd6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7888412475586, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04661386087536812, \"Height\": 0.010210639797151089, \"Left\": 0.45186638832092285, \"Top\": 0.472547709941864}, \"Polygon\": [{\"X\": 0.49848026037216187, \"Y\": 0.4827583432197571}, {\"X\": 0.45186638832092285, \"Y\": 0.4827583432197571}, {\"X\": 0.45186638832092285, \"Y\": 0.472547709941864}, {\"X\": 0.49848026037216187, \"Y\": 0.472547709941864}]}, \"Id\": \"bfdeb16c-8b4c-40c8-8c52-59683fe3026e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.20213317871094, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03894820064306259, \"Height\": 0.00994690041989088, \"Left\": 0.4080643057823181, \"Top\": 0.47259441018104553}, \"Polygon\": [{\"X\": 0.4470125138759613, \"Y\": 0.4825412929058075}, {\"X\": 0.4080643057823181, \"Y\": 0.4825412929058075}, {\"X\": 0.4080643057823181, \"Y\": 0.47259441018104553}, {\"X\": 0.4470125138759613, \"Y\": 0.47259441018104553}]}, \"Id\": \"7635b0e7-e52d-4bf9-9942-66bb12d46af1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72420501708984, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046600449830293655, \"Height\": 0.010366760194301605, \"Left\": 0.3074570894241333, \"Top\": 0.47248539328575134}, \"Polygon\": [{\"X\": 0.35405755043029785, \"Y\": 0.48285216093063354}, {\"X\": 0.3074570894241333, \"Y\": 0.48285216093063354}, {\"X\": 0.3074570894241333, \"Y\": 0.47248539328575134}, {\"X\": 0.35405755043029785, \"Y\": 0.47248539328575134}]}, \"Id\": \"a838d967-75ac-4b22-b91f-b0667384fde0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.91753387451172, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039271000772714615, \"Height\": 0.01000417023897171, \"Left\": 0.26348525285720825, \"Top\": 0.47256243228912354}, \"Polygon\": [{\"X\": 0.30275624990463257, \"Y\": 0.48256659507751465}, {\"X\": 0.26348525285720825, \"Y\": 0.48256659507751465}, {\"X\": 0.26348525285720825, \"Y\": 0.47256243228912354}, {\"X\": 0.30275624990463257, \"Y\": 0.47256243228912354}]}, \"Id\": \"aa6b5e69-d8a3-49d8-aaea-3e45a7a80849\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67266845703125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04644519090652466, \"Height\": 0.01033989991992712, \"Left\": 0.16372764110565186, \"Top\": 0.4724614918231964}, \"Polygon\": [{\"X\": 0.2101728320121765, \"Y\": 0.4828014075756073}, {\"X\": 0.16372764110565186, \"Y\": 0.4828014075756073}, {\"X\": 0.16372764110565186, \"Y\": 0.4724614918231964}, {\"X\": 0.2101728320121765, \"Y\": 0.4724614918231964}]}, \"Id\": \"59eccc4f-98ad-472a-a55d-79b59aee759a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08866882324219, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039263028651475906, \"Height\": 0.01029215008020401, \"Left\": 0.12039446830749512, \"Top\": 0.4723409116268158}, \"Polygon\": [{\"X\": 0.15965749323368073, \"Y\": 0.4826330542564392}, {\"X\": 0.12039446830749512, \"Y\": 0.4826330542564392}, {\"X\": 0.12039446830749512, \"Y\": 0.4723409116268158}, {\"X\": 0.15965749323368073, \"Y\": 0.4723409116268158}]}, \"Id\": \"8b5fb9da-6eb0-4321-ab6f-255fc5f3e040\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84949493408203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046206459403038025, \"Height\": 0.01030206959694624, \"Left\": 0.45199984312057495, \"Top\": 0.4548647999763489}, \"Polygon\": [{\"X\": 0.4982062876224518, \"Y\": 0.4651668667793274}, {\"X\": 0.45199984312057495, \"Y\": 0.4651668667793274}, {\"X\": 0.45199984312057495, \"Y\": 0.4548647999763489}, {\"X\": 0.4982062876224518, \"Y\": 0.4548647999763489}]}, \"Id\": \"16b555ad-bfc9-47d9-a98f-51802193a786\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45746612548828, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038698550313711166, \"Height\": 0.010049879550933838, \"Left\": 0.4085824489593506, \"Top\": 0.45483046770095825}, \"Polygon\": [{\"X\": 0.44728100299835205, \"Y\": 0.4648803472518921}, {\"X\": 0.4085824489593506, \"Y\": 0.4648803472518921}, {\"X\": 0.4085824489593506, \"Y\": 0.45483046770095825}, {\"X\": 0.44728100299835205, \"Y\": 0.45483046770095825}]}, \"Id\": \"15772946-904a-43ab-b15f-97cdc87afc6a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83895874023438, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04582744091749191, \"Height\": 0.01031660009175539, \"Left\": 0.3082979917526245, \"Top\": 0.45488160848617554}, \"Polygon\": [{\"X\": 0.354125440120697, \"Y\": 0.46519818902015686}, {\"X\": 0.3082979917526245, \"Y\": 0.46519818902015686}, {\"X\": 0.3082979917526245, \"Y\": 0.45488160848617554}, {\"X\": 0.354125440120697, \"Y\": 0.45488160848617554}]}, \"Id\": \"0e1a7eb6-5a75-4715-b312-c3914c82f9a7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24497985839844, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03913524001836777, \"Height\": 0.010072260163724422, \"Left\": 0.2637794613838196, \"Top\": 0.4548366963863373}, \"Polygon\": [{\"X\": 0.30291470885276794, \"Y\": 0.4649089574813843}, {\"X\": 0.2637794613838196, \"Y\": 0.4649089574813843}, {\"X\": 0.2637794613838196, \"Y\": 0.4548366963863373}, {\"X\": 0.30291470885276794, \"Y\": 0.4548366963863373}]}, \"Id\": \"9d1cc4da-3699-4a9f-8a79-3697355fd15e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7557373046875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04577409848570824, \"Height\": 0.010250969789922237, \"Left\": 0.16425734758377075, \"Top\": 0.45490071177482605}, \"Polygon\": [{\"X\": 0.2100314497947693, \"Y\": 0.46515166759490967}, {\"X\": 0.16425734758377075, \"Y\": 0.46515166759490967}, {\"X\": 0.16425734758377075, \"Y\": 0.45490071177482605}, {\"X\": 0.2100314497947693, \"Y\": 0.45490071177482605}]}, \"Id\": \"ec146657-a342-4af7-a3df-86ed7107defb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38827514648438, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039000801742076874, \"Height\": 0.010195599868893623, \"Left\": 0.12019400298595428, \"Top\": 0.45486339926719666}, \"Polygon\": [{\"X\": 0.15919479727745056, \"Y\": 0.4650590121746063}, {\"X\": 0.12019400298595428, \"Y\": 0.4650590121746063}, {\"X\": 0.12019400298595428, \"Y\": 0.45486339926719666}, {\"X\": 0.15919479727745056, \"Y\": 0.45486339926719666}]}, \"Id\": \"9522c682-0b23-4d44-8fbc-8553af1d0087\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19515228271484, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03409885615110397, \"Height\": 0.010700070299208164, \"Left\": 0.8882110714912415, \"Top\": 0.4397411346435547}, \"Polygon\": [{\"X\": 0.922309935092926, \"Y\": 0.4504412114620209}, {\"X\": 0.8882110714912415, \"Y\": 0.4504412114620209}, {\"X\": 0.8882110714912415, \"Y\": 0.4397411346435547}, {\"X\": 0.922309935092926, \"Y\": 0.4397411346435547}]}, \"Id\": \"831d2500-2fbc-45f6-bd78-e88dc11f9028\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97567749023438, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06668927520513535, \"Height\": 0.011134699918329716, \"Left\": 0.8167617917060852, \"Top\": 0.4397062063217163}, \"Polygon\": [{\"X\": 0.8834510445594788, \"Y\": 0.45084089040756226}, {\"X\": 0.8167617917060852, \"Y\": 0.45084089040756226}, {\"X\": 0.8167617917060852, \"Y\": 0.4397062063217163}, {\"X\": 0.8834510445594788, \"Y\": 0.4397062063217163}]}, \"Id\": \"660f7a25-48a7-49c9-9f58-11891d8bc254\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77030181884766, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030536679551005363, \"Height\": 0.010611830279231071, \"Left\": 0.8920789957046509, \"Top\": 0.42348963022232056}, \"Polygon\": [{\"X\": 0.9226157069206238, \"Y\": 0.4341014623641968}, {\"X\": 0.8920789957046509, \"Y\": 0.4341014623641968}, {\"X\": 0.8920789957046509, \"Y\": 0.42348963022232056}, {\"X\": 0.9226157069206238, \"Y\": 0.42348963022232056}]}, \"Id\": \"25aec6b2-71b4-4b49-8ceb-6c6c85cbcbf4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91799926757812, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0988500714302063, \"Height\": 0.010840299539268017, \"Left\": 0.7883325815200806, \"Top\": 0.42356809973716736}, \"Polygon\": [{\"X\": 0.8871826529502869, \"Y\": 0.43440839648246765}, {\"X\": 0.7883325815200806, \"Y\": 0.43440839648246765}, {\"X\": 0.7883325815200806, \"Y\": 0.42356809973716736}, {\"X\": 0.8871826529502869, \"Y\": 0.42356809973716736}]}, \"Id\": \"db51eca9-2cad-4a59-b6fa-7b7d505d0550\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.09934997558594, \"Text\": \"Hello\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021747760474681854, \"Height\": 0.0040651001036167145, \"Left\": 0.31367796659469604, \"Top\": 0.31762826442718506}, \"Polygon\": [{\"X\": 0.3354257345199585, \"Y\": 0.3216933608055115}, {\"X\": 0.31367796659469604, \"Y\": 0.3216933608055115}, {\"X\": 0.31367796659469604, \"Y\": 0.31762826442718506}, {\"X\": 0.3354257345199585, \"Y\": 0.31762826442718506}]}, \"Id\": \"5c48430f-ca6f-4de4-81a7-e483bee1e0a3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 87.03089904785156, \"Text\": \"Wor\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01397939957678318, \"Height\": 0.003955100197345018, \"Left\": 0.2969706058502197, \"Top\": 0.31750521063804626}, \"Polygon\": [{\"X\": 0.31095001101493835, \"Y\": 0.3214603066444397}, {\"X\": 0.2969706058502197, \"Y\": 0.3214603066444397}, {\"X\": 0.2969706058502197, \"Y\": 0.31750521063804626}, {\"X\": 0.31095001101493835, \"Y\": 0.31750521063804626}]}, \"Id\": \"08fb66e6-fa42-4e7d-9dab-353c1f22773a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 74.14710998535156, \"Text\": \"1d\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007663839962333441, \"Height\": 0.004090869799256325, \"Left\": 0.28887856006622314, \"Top\": 0.3175469934940338}, \"Polygon\": [{\"X\": 0.2965424060821533, \"Y\": 0.3216378688812256}, {\"X\": 0.28887856006622314, \"Y\": 0.3216378688812256}, {\"X\": 0.28887856006622314, \"Y\": 0.3175469934940338}, {\"X\": 0.2965424060821533, \"Y\": 0.3175469934940338}]}, \"Id\": \"543e13e0-fa41-4334-a91c-50e2ec7114ee\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.11407470703125, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02913404069840908, \"Height\": 0.003937430214136839, \"Left\": 0.24786972999572754, \"Top\": 0.3174557089805603}, \"Polygon\": [{\"X\": 0.27700376510620117, \"Y\": 0.32139313220977783}, {\"X\": 0.24786972999572754, \"Y\": 0.32139313220977783}, {\"X\": 0.24786972999572754, \"Y\": 0.3174557089805603}, {\"X\": 0.27700376510620117, \"Y\": 0.3174557089805603}]}, \"Id\": \"18cacb60-74d6-4599-8bb4-857a0f194d37\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.06356048583984, \"Text\": \"here!\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0203964002430439, \"Height\": 0.003999039996415377, \"Left\": 0.2244337946176529, \"Top\": 0.3174327611923218}, \"Polygon\": [{\"X\": 0.2448302060365677, \"Y\": 0.3214317858219147}, {\"X\": 0.2244337946176529, \"Y\": 0.3214317858219147}, {\"X\": 0.2244337946176529, \"Y\": 0.3174327611923218}, {\"X\": 0.2448302060365677, \"Y\": 0.3174327611923218}]}, \"Id\": \"2e4fc570-343d-4124-a7b7-dccda8faae9d\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.98892211914062, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.4326668083667755, \"Height\": 0.1426478773355484, \"Left\": 0.07461559772491455, \"Top\": 0.4503697156906128}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.593017578125}, {\"X\": 0.07461559772491455, \"Y\": 0.593017578125}, {\"X\": 0.07461559772491455, \"Y\": 0.4503697156906128}, {\"X\": 0.5072824358940125, \"Y\": 0.4503697156906128}]}, \"Id\": \"101120ce-e986-4799-91f9-fc4c0df59237\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c55fa24f-8c8e-4a8a-8151-d9f1f3c6a86d\", \"94b248ba-8b39-4eda-abf6-ed5cd41fa407\", \"7bc3bfbc-63ee-4ea0-b638-4aad9d24761f\", \"3c566348-8af0-4696-9131-fb6e18d1cd24\", \"e337ef46-a42c-4e2b-8a2d-58f38d92a931\", \"80e1982f-14be-4088-904d-a36a0b0aad46\", \"4f178c85-c341-479f-a964-5a00aa963727\", \"ea5003e4-fa83-4947-b8df-1c43205cfc71\", \"aea8d27d-eee7-4cc6-8952-20805e9f8268\", \"5b91fa1b-4e50-42db-86ec-e046dee10fad\", \"02667580-0a64-4e31-8e7a-c449a4af0973\", \"9ee29b10-df7d-431a-b5fd-d804995a4a0c\", \"32d6d52f-671e-4617-8ad9-92bd152ec0e5\", \"84c6c502-9921-49d3-8ccd-3e2270630409\", \"a775a300-2166-45f4-995d-95c500272650\", \"e9fb7a2d-d695-4400-a075-ddb5e47bbd4b\", \"ae0f8368-16bd-4feb-98f3-87b86e312f8e\", \"7f0abe94-73d7-42e7-b3ae-2e92ec151ea4\", \"df656683-c4bf-459f-9062-2b4bdb5fac73\", \"bb6da8cd-cf30-4a31-89a5-9764ff1bc023\", \"f91aaf9f-b5d4-4145-9b77-721636db9549\", \"95a8599d-47d9-4085-9207-d6eed97f7050\", \"99f87891-07e1-4a8f-b657-1b07cd83c866\", \"d301a972-f149-42e9-8e11-4e81315be3c5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.017877519130706787, \"Left\": 0.3630601465702057, \"Top\": 0.5751400589942932}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.593017578125}, {\"X\": 0.3630601465702057, \"Y\": 0.593017578125}, {\"X\": 0.3630601465702057, \"Y\": 0.5751400589942932}, {\"X\": 0.5072824358940125, \"Y\": 0.5751400589942932}]}, \"Id\": \"c55fa24f-8c8e-4a8a-8151-d9f1f3c6a86d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00d50d77-271c-479b-9217-6401ecdbc3df\", \"3c591561-44fb-462a-a5bb-bdea8afad0bc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.017877519130706787, \"Left\": 0.21653036773204803, \"Top\": 0.5751400589942932}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.593017578125}, {\"X\": 0.21653036773204803, \"Y\": 0.593017578125}, {\"X\": 0.21653036773204803, \"Y\": 0.5751400589942932}, {\"X\": 0.3630601167678833, \"Y\": 0.5751400589942932}]}, \"Id\": \"94b248ba-8b39-4eda-abf6-ed5cd41fa407\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"154ed885-fd4f-4130-b04c-dd883150ab9e\", \"a51cd11d-de39-48b1-9b9f-72103c6eb92a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.017877519130706787, \"Left\": 0.07461558282375336, \"Top\": 0.5751400589942932}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.593017578125}, {\"X\": 0.07461558282375336, \"Y\": 0.593017578125}, {\"X\": 0.07461558282375336, \"Y\": 0.5751400589942932}, {\"X\": 0.21653038263320923, \"Y\": 0.5751400589942932}]}, \"Id\": \"7bc3bfbc-63ee-4ea0-b638-4aad9d24761f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5a40dda1-5210-474f-b96b-a3eade78cbd0\", \"33355f81-cfbf-4103-9dfb-a59cf93c8142\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.0182499997317791, \"Left\": 0.3630601465702057, \"Top\": 0.556890070438385}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.5751400589942932}, {\"X\": 0.3630601465702057, \"Y\": 0.5751400589942932}, {\"X\": 0.3630601465702057, \"Y\": 0.556890070438385}, {\"X\": 0.5072824358940125, \"Y\": 0.556890070438385}]}, \"Id\": \"3c566348-8af0-4696-9131-fb6e18d1cd24\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f031cd2-6763-438a-be74-813499731abf\", \"01ef3ffa-eee5-41d6-b099-3deffa312a9a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.0182499997317791, \"Left\": 0.21653036773204803, \"Top\": 0.556890070438385}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.5751400589942932}, {\"X\": 0.21653036773204803, \"Y\": 0.5751400589942932}, {\"X\": 0.21653036773204803, \"Y\": 0.556890070438385}, {\"X\": 0.3630601167678833, \"Y\": 0.556890070438385}]}, \"Id\": \"e337ef46-a42c-4e2b-8a2d-58f38d92a931\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"982d469a-d330-4356-9991-910852aafc8e\", \"da50f32f-6984-4258-9b4c-f27032361507\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.0182499997317791, \"Left\": 0.07461558282375336, \"Top\": 0.556890070438385}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.5751400589942932}, {\"X\": 0.07461558282375336, \"Y\": 0.5751400589942932}, {\"X\": 0.07461558282375336, \"Y\": 0.556890070438385}, {\"X\": 0.21653038263320923, \"Y\": 0.556890070438385}]}, \"Id\": \"80e1982f-14be-4088-904d-a36a0b0aad46\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"afdfaa38-304b-4863-be26-6c0f4ba73ab9\", \"5fbf0b4b-8873-4c49-83ac-c8588fcd468c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.017505090683698654, \"Left\": 0.3630601465702057, \"Top\": 0.5393849611282349}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.5568900108337402}, {\"X\": 0.3630601465702057, \"Y\": 0.5568900108337402}, {\"X\": 0.3630601465702057, \"Y\": 0.5393849611282349}, {\"X\": 0.5072824358940125, \"Y\": 0.5393849611282349}]}, \"Id\": \"4f178c85-c341-479f-a964-5a00aa963727\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c04dd90b-b19c-4f73-a151-26e06ee68d68\", \"4e16ce13-5b0c-4457-bf5d-e42c0f4c1eca\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.017505090683698654, \"Left\": 0.21653036773204803, \"Top\": 0.5393849611282349}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.5568900108337402}, {\"X\": 0.21653036773204803, \"Y\": 0.5568900108337402}, {\"X\": 0.21653036773204803, \"Y\": 0.5393849611282349}, {\"X\": 0.3630601167678833, \"Y\": 0.5393849611282349}]}, \"Id\": \"ea5003e4-fa83-4947-b8df-1c43205cfc71\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"47715866-7f60-4505-90b1-1176712b4ca9\", \"aee262b3-4f3f-42da-bdab-a5b78f77344b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.017505090683698654, \"Left\": 0.07461558282375336, \"Top\": 0.5393849611282349}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.5568900108337402}, {\"X\": 0.07461558282375336, \"Y\": 0.5568900108337402}, {\"X\": 0.07461558282375336, \"Y\": 0.5393849611282349}, {\"X\": 0.21653038263320923, \"Y\": 0.5393849611282349}]}, \"Id\": \"aea8d27d-eee7-4cc6-8952-20805e9f8268\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a7cf2301-2289-4083-9318-3e9e95b70efd\", \"d347a50f-dec5-46e2-8869-917978376f21\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.017505090683698654, \"Left\": 0.3630601465702057, \"Top\": 0.5218798518180847}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.5393849611282349}, {\"X\": 0.3630601465702057, \"Y\": 0.5393849611282349}, {\"X\": 0.3630601465702057, \"Y\": 0.5218798518180847}, {\"X\": 0.5072824358940125, \"Y\": 0.5218798518180847}]}, \"Id\": \"5b91fa1b-4e50-42db-86ec-e046dee10fad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"abd6cb5b-7931-4012-aaba-02766861308e\", \"be844c73-0967-4f54-a4ab-942de6e8ee56\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.017505090683698654, \"Left\": 0.21653036773204803, \"Top\": 0.5218798518180847}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.5393849611282349}, {\"X\": 0.21653036773204803, \"Y\": 0.5393849611282349}, {\"X\": 0.21653036773204803, \"Y\": 0.5218798518180847}, {\"X\": 0.3630601167678833, \"Y\": 0.5218798518180847}]}, \"Id\": \"02667580-0a64-4e31-8e7a-c449a4af0973\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8967f487-5c30-45a1-9f01-bbfb4cb3080f\", \"48d230ee-316f-4255-860a-8b11ba896068\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.017505090683698654, \"Left\": 0.07461558282375336, \"Top\": 0.5218798518180847}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.5393849611282349}, {\"X\": 0.07461558282375336, \"Y\": 0.5393849611282349}, {\"X\": 0.07461558282375336, \"Y\": 0.5218798518180847}, {\"X\": 0.21653038263320923, \"Y\": 0.5218798518180847}]}, \"Id\": \"9ee29b10-df7d-431a-b5fd-d804995a4a0c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38f5e187-9184-4e1d-96b0-88875553805d\", \"28edaa42-9493-4295-a9cc-ac065514d750\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.0182499997317791, \"Left\": 0.3630601465702057, \"Top\": 0.5036298632621765}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.5218798518180847}, {\"X\": 0.3630601465702057, \"Y\": 0.5218798518180847}, {\"X\": 0.3630601465702057, \"Y\": 0.5036298632621765}, {\"X\": 0.5072824358940125, \"Y\": 0.5036298632621765}]}, \"Id\": \"32d6d52f-671e-4617-8ad9-92bd152ec0e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80fe91ac-46ca-445e-9651-2976f21de113\", \"1a7abecb-34d8-46e4-b9dc-5f1abce91ae7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.0182499997317791, \"Left\": 0.21653036773204803, \"Top\": 0.5036298632621765}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.5218798518180847}, {\"X\": 0.21653036773204803, \"Y\": 0.5218798518180847}, {\"X\": 0.21653036773204803, \"Y\": 0.5036298632621765}, {\"X\": 0.3630601167678833, \"Y\": 0.5036298632621765}]}, \"Id\": \"84c6c502-9921-49d3-8ccd-3e2270630409\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e85c7e92-7467-47ba-bfa4-390e474dff2d\", \"77d84955-623e-4cae-82dc-4ddc4d0b592e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.0182499997317791, \"Left\": 0.07461558282375336, \"Top\": 0.5036298632621765}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.5218798518180847}, {\"X\": 0.07461558282375336, \"Y\": 0.5218798518180847}, {\"X\": 0.07461558282375336, \"Y\": 0.5036298632621765}, {\"X\": 0.21653038263320923, \"Y\": 0.5036298632621765}]}, \"Id\": \"a775a300-2166-45f4-995d-95c500272650\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"70eb2fa6-d8e9-4ebd-9e88-5a59ce6efa0f\", \"9a0886fb-8e6e-473a-a597-7b54e991d1e3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.017505090683698654, \"Left\": 0.3630601465702057, \"Top\": 0.48612481355667114}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.5036298632621765}, {\"X\": 0.3630601465702057, \"Y\": 0.5036298632621765}, {\"X\": 0.3630601465702057, \"Y\": 0.48612481355667114}, {\"X\": 0.5072824358940125, \"Y\": 0.48612481355667114}]}, \"Id\": \"e9fb7a2d-d695-4400-a075-ddb5e47bbd4b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab5740d2-8280-4457-8453-62ed844570b4\", \"607622c1-d5b4-4fbf-be5f-962627d8d7bf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.017505090683698654, \"Left\": 0.21653036773204803, \"Top\": 0.48612481355667114}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.5036298632621765}, {\"X\": 0.21653036773204803, \"Y\": 0.5036298632621765}, {\"X\": 0.21653036773204803, \"Y\": 0.48612481355667114}, {\"X\": 0.3630601167678833, \"Y\": 0.48612481355667114}]}, \"Id\": \"ae0f8368-16bd-4feb-98f3-87b86e312f8e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"30e8a1d5-0768-4c9b-a4f1-2d8f4d07cf0d\", \"a52d016b-517e-448a-9e87-c8b448d81c11\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.017505090683698654, \"Left\": 0.07461558282375336, \"Top\": 0.48612481355667114}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.5036298632621765}, {\"X\": 0.07461558282375336, \"Y\": 0.5036298632621765}, {\"X\": 0.07461558282375336, \"Y\": 0.48612481355667114}, {\"X\": 0.21653038263320923, \"Y\": 0.48612481355667114}]}, \"Id\": \"7f0abe94-73d7-42e7-b3ae-2e92ec151ea4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"df8d4db5-ad65-406b-a497-21c5861ff9a6\", \"3e51086e-d300-4b78-87c1-94c531f1bfd6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.017505090683698654, \"Left\": 0.3630601465702057, \"Top\": 0.4686197340488434}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.48612481355667114}, {\"X\": 0.3630601465702057, \"Y\": 0.48612481355667114}, {\"X\": 0.3630601465702057, \"Y\": 0.4686197340488434}, {\"X\": 0.5072824358940125, \"Y\": 0.4686197340488434}]}, \"Id\": \"df656683-c4bf-459f-9062-2b4bdb5fac73\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bfdeb16c-8b4c-40c8-8c52-59683fe3026e\", \"7635b0e7-e52d-4bf9-9942-66bb12d46af1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.017505090683698654, \"Left\": 0.21653036773204803, \"Top\": 0.4686197340488434}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.48612481355667114}, {\"X\": 0.21653036773204803, \"Y\": 0.48612481355667114}, {\"X\": 0.21653036773204803, \"Y\": 0.4686197340488434}, {\"X\": 0.3630601167678833, \"Y\": 0.4686197340488434}]}, \"Id\": \"bb6da8cd-cf30-4a31-89a5-9764ff1bc023\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a838d967-75ac-4b22-b91f-b0667384fde0\", \"aa6b5e69-d8a3-49d8-aaea-3e45a7a80849\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.017505090683698654, \"Left\": 0.07461558282375336, \"Top\": 0.4686197340488434}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.48612481355667114}, {\"X\": 0.07461558282375336, \"Y\": 0.48612481355667114}, {\"X\": 0.07461558282375336, \"Y\": 0.4686197340488434}, {\"X\": 0.21653038263320923, \"Y\": 0.4686197340488434}]}, \"Id\": \"f91aaf9f-b5d4-4145-9b77-721636db9549\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"59eccc4f-98ad-472a-a55d-79b59aee759a\", \"8b5fb9da-6eb0-4321-ab6f-255fc5f3e040\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14422227442264557, \"Height\": 0.0182499997317791, \"Left\": 0.3630601465702057, \"Top\": 0.4503696858882904}, \"Polygon\": [{\"X\": 0.5072824358940125, \"Y\": 0.468619704246521}, {\"X\": 0.3630601465702057, \"Y\": 0.468619704246521}, {\"X\": 0.3630601465702057, \"Y\": 0.4503696858882904}, {\"X\": 0.5072824358940125, \"Y\": 0.4503696858882904}]}, \"Id\": \"95a8599d-47d9-4085-9207-d6eed97f7050\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"16b555ad-bfc9-47d9-a98f-51802193a786\", \"15772946-904a-43ab-b15f-97cdc87afc6a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652974903583527, \"Height\": 0.0182499997317791, \"Left\": 0.21653036773204803, \"Top\": 0.4503696858882904}, \"Polygon\": [{\"X\": 0.3630601167678833, \"Y\": 0.468619704246521}, {\"X\": 0.21653036773204803, \"Y\": 0.468619704246521}, {\"X\": 0.21653036773204803, \"Y\": 0.4503696858882904}, {\"X\": 0.3630601167678833, \"Y\": 0.4503696858882904}]}, \"Id\": \"99f87891-07e1-4a8f-b657-1b07cd83c866\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0e1a7eb6-5a75-4715-b312-c3914c82f9a7\", \"9d1cc4da-3699-4a9f-8a79-3697355fd15e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98892211914062, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14191479980945587, \"Height\": 0.0182499997317791, \"Left\": 0.07461558282375336, \"Top\": 0.4503696858882904}, \"Polygon\": [{\"X\": 0.21653038263320923, \"Y\": 0.468619704246521}, {\"X\": 0.07461558282375336, \"Y\": 0.468619704246521}, {\"X\": 0.07461558282375336, \"Y\": 0.4503696858882904}, {\"X\": 0.21653038263320923, \"Y\": 0.4503696858882904}]}, \"Id\": \"d301a972-f149-42e9-8e11-4e81315be3c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec146657-a342-4af7-a3df-86ed7107defb\", \"9522c682-0b23-4d44-8fbc-8553af1d0087\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.91516876220703, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6229479908943176, \"Height\": 0.10290507227182388, \"Left\": 0.03495252877473831, \"Top\": 0.6651304364204407}, \"Polygon\": [{\"X\": 0.6579005122184753, \"Y\": 0.7680354714393616}, {\"X\": 0.03495252877473831, \"Y\": 0.7680354714393616}, {\"X\": 0.03495252877473831, \"Y\": 0.6651304364204407}, {\"X\": 0.6579005122184753, \"Y\": 0.6651304364204407}]}, \"Id\": \"3d5c11de-04b3-4639-8ef8-53255a2e79a0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79317873-ee31-4e9a-8d00-b9f279978294\", \"813bd9c0-ede5-477e-89b0-5cb10e191cf4\", \"da89d462-ac66-4e33-be94-9f0a50cd0294\", \"b43a49ab-64c5-4313-978e-9fe2b1324408\", \"0a411539-439a-4246-a464-8f1e4c3f0a5f\", \"e1db3ce4-17dd-47ef-af00-3f24137193d5\", \"82e8415f-7047-4b99-85a0-39cb2f8dc98a\", \"8cb33c08-cee2-4882-8271-e4dbc1fd3a5a\", \"cc1cf23d-3a54-4769-ab50-2691daa96abe\", \"b92a865d-d74d-4e79-bc72-6f61b1c43dc3\", \"9f1b9c28-33cb-44d8-a35c-04718bf6fb72\", \"2f59f945-c648-4a3b-ab0e-2fbc0d7d8be1\", \"db85f271-d9bd-4e8d-8dd2-d1a1d600d339\", \"d9650276-fd86-49f5-9fc4-ebed96fb58ce\", \"24db51b6-65c1-4fd7-9d25-b60acfbe01fb\", \"1adca170-49aa-4862-8a8c-18e62b34306f\", \"e6fde0fb-7b79-42f4-89bd-0db40da66b90\", \"1c41faa0-6fc2-4b00-8080-dcc0448e3d33\", \"8f190eed-cf4e-464a-bbe5-93d28fbbfa19\", \"f796f587-3981-4e22-90cb-21328ce29f1e\", \"efb15707-8b4d-4c3e-afb9-4ba4b3452276\", \"5d196d70-b83c-4584-bfa7-237502e984fc\", \"c030af12-4034-4305-9d56-e2bc3803d2e0\", \"52e2e60a-1de0-414e-94eb-2865524662f0\", \"ef4db7e5-f0d5-4c19-8987-dcc01e28960a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12327469140291214, \"Height\": 0.020314589142799377, \"Left\": 0.5346258282661438, \"Top\": 0.7477208971977234}, \"Polygon\": [{\"X\": 0.6579005122184753, \"Y\": 0.7680354714393616}, {\"X\": 0.5346258282661438, \"Y\": 0.7680354714393616}, {\"X\": 0.5346258282661438, \"Y\": 0.7477208971977234}, {\"X\": 0.6579005122184753, \"Y\": 0.7477208971977234}]}, \"Id\": \"79317873-ee31-4e9a-8d00-b9f279978294\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af69e4c6-1d64-49d1-871d-bd7c4624cd5c\", \"974ab210-6500-4b64-839d-0835d184d5bd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1265619546175003, \"Height\": 0.020314589142799377, \"Left\": 0.4080639183521271, \"Top\": 0.7477208971977234}, \"Polygon\": [{\"X\": 0.5346258878707886, \"Y\": 0.7680354714393616}, {\"X\": 0.4080639183521271, \"Y\": 0.7680354714393616}, {\"X\": 0.4080639183521271, \"Y\": 0.7477208971977234}, {\"X\": 0.5346258878707886, \"Y\": 0.7477208971977234}]}, \"Id\": \"813bd9c0-ede5-477e-89b0-5cb10e191cf4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e4b96a0-f5b2-4e05-b411-92e914d07e8d\", \"2a3b4f09-c6d7-4e7c-9dc4-24bf1adb36c4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11998739838600159, \"Height\": 0.020314589142799377, \"Left\": 0.2880764901638031, \"Top\": 0.7477208971977234}, \"Polygon\": [{\"X\": 0.4080638885498047, \"Y\": 0.7680354714393616}, {\"X\": 0.2880764901638031, \"Y\": 0.7680354714393616}, {\"X\": 0.2880764901638031, \"Y\": 0.7477208971977234}, {\"X\": 0.4080638885498047, \"Y\": 0.7477208971977234}]}, \"Id\": \"da89d462-ac66-4e33-be94-9f0a50cd0294\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e35f6c5-9c2c-48f7-bf2c-0f667c0cfa9b\", \"e259e916-c730-440a-b6ba-ee00262c6ffc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656204402446747, \"Height\": 0.020314589142799377, \"Left\": 0.16151447594165802, \"Top\": 0.7477208971977234}, \"Polygon\": [{\"X\": 0.2880765199661255, \"Y\": 0.7680354714393616}, {\"X\": 0.16151447594165802, \"Y\": 0.7680354714393616}, {\"X\": 0.16151447594165802, \"Y\": 0.7477208971977234}, {\"X\": 0.2880765199661255, \"Y\": 0.7477208971977234}]}, \"Id\": \"b43a49ab-64c5-4313-978e-9fe2b1324408\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e603eee-14c5-40f7-b345-e5fbc23fe98d\", \"fb41de70-cd4e-4bff-b59c-34ec9e4ac3dd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656192481517792, \"Height\": 0.020314589142799377, \"Left\": 0.03495253995060921, \"Top\": 0.7477208971977234}, \"Polygon\": [{\"X\": 0.16151446104049683, \"Y\": 0.7680354714393616}, {\"X\": 0.03495253995060921, \"Y\": 0.7680354714393616}, {\"X\": 0.03495253995060921, \"Y\": 0.7477208971977234}, {\"X\": 0.16151446104049683, \"Y\": 0.7477208971977234}]}, \"Id\": \"0a411539-439a-4246-a464-8f1e4c3f0a5f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b693696-5896-4220-b5c2-151620a8df6e\", \"9444ee26-135d-4960-88ea-5b64046d70fe\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12327469140291214, \"Height\": 0.020980630069971085, \"Left\": 0.5346258282661438, \"Top\": 0.7267402410507202}, \"Polygon\": [{\"X\": 0.6579005122184753, \"Y\": 0.7477208971977234}, {\"X\": 0.5346258282661438, \"Y\": 0.7477208971977234}, {\"X\": 0.5346258282661438, \"Y\": 0.7267402410507202}, {\"X\": 0.6579005122184753, \"Y\": 0.7267402410507202}]}, \"Id\": \"e1db3ce4-17dd-47ef-af00-3f24137193d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e6ee364-2f14-42bb-90e5-2889c6e79e79\", \"390c3689-a5b2-4a4d-8b31-a7d88829545a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1265619546175003, \"Height\": 0.020980630069971085, \"Left\": 0.4080639183521271, \"Top\": 0.7267402410507202}, \"Polygon\": [{\"X\": 0.5346258878707886, \"Y\": 0.7477208971977234}, {\"X\": 0.4080639183521271, \"Y\": 0.7477208971977234}, {\"X\": 0.4080639183521271, \"Y\": 0.7267402410507202}, {\"X\": 0.5346258878707886, \"Y\": 0.7267402410507202}]}, \"Id\": \"82e8415f-7047-4b99-85a0-39cb2f8dc98a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"559162e4-4da9-4bee-87c5-5f24fa7add98\", \"98b4ca11-226d-45fc-8547-60ad5a4846ad\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11998739838600159, \"Height\": 0.020980630069971085, \"Left\": 0.2880764901638031, \"Top\": 0.7267402410507202}, \"Polygon\": [{\"X\": 0.4080638885498047, \"Y\": 0.7477208971977234}, {\"X\": 0.2880764901638031, \"Y\": 0.7477208971977234}, {\"X\": 0.2880764901638031, \"Y\": 0.7267402410507202}, {\"X\": 0.4080638885498047, \"Y\": 0.7267402410507202}]}, \"Id\": \"8cb33c08-cee2-4882-8271-e4dbc1fd3a5a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c63add48-85b2-4523-82e1-a8600bd31b71\", \"f7a11e71-26df-47fb-86b5-0980997c8162\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656204402446747, \"Height\": 0.020980630069971085, \"Left\": 0.16151447594165802, \"Top\": 0.7267402410507202}, \"Polygon\": [{\"X\": 0.2880765199661255, \"Y\": 0.7477208971977234}, {\"X\": 0.16151447594165802, \"Y\": 0.7477208971977234}, {\"X\": 0.16151447594165802, \"Y\": 0.7267402410507202}, {\"X\": 0.2880765199661255, \"Y\": 0.7267402410507202}]}, \"Id\": \"cc1cf23d-3a54-4769-ab50-2691daa96abe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a91836b0-bbdb-4bee-9d8d-5a72f8f51d73\", \"9ac54672-5147-4655-9ec5-f43ba57c5205\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656192481517792, \"Height\": 0.020980630069971085, \"Left\": 0.03495253995060921, \"Top\": 0.7267402410507202}, \"Polygon\": [{\"X\": 0.16151446104049683, \"Y\": 0.7477208971977234}, {\"X\": 0.03495253995060921, \"Y\": 0.7477208971977234}, {\"X\": 0.03495253995060921, \"Y\": 0.7267402410507202}, {\"X\": 0.16151446104049683, \"Y\": 0.7267402410507202}]}, \"Id\": \"b92a865d-d74d-4e79-bc72-6f61b1c43dc3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3a4bb39-85c4-4eda-b716-e03ebfa8220c\", \"fbff110e-fa84-49c0-943b-87361e1a3497\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12327469140291214, \"Height\": 0.020314589142799377, \"Left\": 0.5346258282661438, \"Top\": 0.706425666809082}, \"Polygon\": [{\"X\": 0.6579005122184753, \"Y\": 0.7267402410507202}, {\"X\": 0.5346258282661438, \"Y\": 0.7267402410507202}, {\"X\": 0.5346258282661438, \"Y\": 0.706425666809082}, {\"X\": 0.6579005122184753, \"Y\": 0.706425666809082}]}, \"Id\": \"9f1b9c28-33cb-44d8-a35c-04718bf6fb72\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"419fae84-1e3f-48fb-92b1-a589aca61177\", \"b2777a54-f426-4ca1-b021-3f85f9b8ba5d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1265619546175003, \"Height\": 0.020314589142799377, \"Left\": 0.4080639183521271, \"Top\": 0.706425666809082}, \"Polygon\": [{\"X\": 0.5346258878707886, \"Y\": 0.7267402410507202}, {\"X\": 0.4080639183521271, \"Y\": 0.7267402410507202}, {\"X\": 0.4080639183521271, \"Y\": 0.706425666809082}, {\"X\": 0.5346258878707886, \"Y\": 0.706425666809082}]}, \"Id\": \"2f59f945-c648-4a3b-ab0e-2fbc0d7d8be1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f25523e4-28f2-4d29-bd77-6f7d6f924221\", \"d03c8443-d861-432c-bc68-03151d16861d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11998739838600159, \"Height\": 0.020314589142799377, \"Left\": 0.2880764901638031, \"Top\": 0.706425666809082}, \"Polygon\": [{\"X\": 0.4080638885498047, \"Y\": 0.7267402410507202}, {\"X\": 0.2880764901638031, \"Y\": 0.7267402410507202}, {\"X\": 0.2880764901638031, \"Y\": 0.706425666809082}, {\"X\": 0.4080638885498047, \"Y\": 0.706425666809082}]}, \"Id\": \"db85f271-d9bd-4e8d-8dd2-d1a1d600d339\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cfecd0b3-598b-489b-8b1c-ebdf8adad885\", \"abadac3c-5e40-45be-8a0b-d30a36e03009\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656204402446747, \"Height\": 0.020314589142799377, \"Left\": 0.16151447594165802, \"Top\": 0.706425666809082}, \"Polygon\": [{\"X\": 0.2880765199661255, \"Y\": 0.7267402410507202}, {\"X\": 0.16151447594165802, \"Y\": 0.7267402410507202}, {\"X\": 0.16151447594165802, \"Y\": 0.706425666809082}, {\"X\": 0.2880765199661255, \"Y\": 0.706425666809082}]}, \"Id\": \"d9650276-fd86-49f5-9fc4-ebed96fb58ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aad4e773-66ea-4037-8643-2659698e53cf\", \"7e373409-6aa9-4c09-93e0-ab93b6218d4a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656192481517792, \"Height\": 0.020314589142799377, \"Left\": 0.03495253995060921, \"Top\": 0.706425666809082}, \"Polygon\": [{\"X\": 0.16151446104049683, \"Y\": 0.7267402410507202}, {\"X\": 0.03495253995060921, \"Y\": 0.7267402410507202}, {\"X\": 0.03495253995060921, \"Y\": 0.706425666809082}, {\"X\": 0.16151446104049683, \"Y\": 0.706425666809082}]}, \"Id\": \"24db51b6-65c1-4fd7-9d25-b60acfbe01fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e4d01293-55e3-48f5-9010-0eb822760e6b\", \"e8c798d8-0469-4ebd-a6de-a8b6f3938935\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12327469140291214, \"Height\": 0.020980650559067726, \"Left\": 0.5346258282661438, \"Top\": 0.6854450106620789}, \"Polygon\": [{\"X\": 0.6579005122184753, \"Y\": 0.706425666809082}, {\"X\": 0.5346258282661438, \"Y\": 0.706425666809082}, {\"X\": 0.5346258282661438, \"Y\": 0.6854450106620789}, {\"X\": 0.6579005122184753, \"Y\": 0.6854450106620789}]}, \"Id\": \"1adca170-49aa-4862-8a8c-18e62b34306f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f7719b35-52f4-4bed-8b05-60da7aebe001\", \"bcf59c5c-2198-46a8-8b16-27a23c1f0a23\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1265619546175003, \"Height\": 0.020980650559067726, \"Left\": 0.4080639183521271, \"Top\": 0.6854450106620789}, \"Polygon\": [{\"X\": 0.5346258878707886, \"Y\": 0.706425666809082}, {\"X\": 0.4080639183521271, \"Y\": 0.706425666809082}, {\"X\": 0.4080639183521271, \"Y\": 0.6854450106620789}, {\"X\": 0.5346258878707886, \"Y\": 0.6854450106620789}]}, \"Id\": \"e6fde0fb-7b79-42f4-89bd-0db40da66b90\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3b0de147-30dc-4ea6-be98-07687263f2d1\", \"4ca1e992-ed50-45b5-8712-414460dd1bf4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11998739838600159, \"Height\": 0.020980650559067726, \"Left\": 0.2880764901638031, \"Top\": 0.6854450106620789}, \"Polygon\": [{\"X\": 0.4080638885498047, \"Y\": 0.706425666809082}, {\"X\": 0.2880764901638031, \"Y\": 0.706425666809082}, {\"X\": 0.2880764901638031, \"Y\": 0.6854450106620789}, {\"X\": 0.4080638885498047, \"Y\": 0.6854450106620789}]}, \"Id\": \"1c41faa0-6fc2-4b00-8080-dcc0448e3d33\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fad0324-60c8-4d27-8c70-c030e61e77ec\", \"0b2af800-1ea4-4f1f-a056-454df53b1ab1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656204402446747, \"Height\": 0.020980650559067726, \"Left\": 0.16151447594165802, \"Top\": 0.6854450106620789}, \"Polygon\": [{\"X\": 0.2880765199661255, \"Y\": 0.706425666809082}, {\"X\": 0.16151447594165802, \"Y\": 0.706425666809082}, {\"X\": 0.16151447594165802, \"Y\": 0.6854450106620789}, {\"X\": 0.2880765199661255, \"Y\": 0.6854450106620789}]}, \"Id\": \"8f190eed-cf4e-464a-bbe5-93d28fbbfa19\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ba557dcd-1595-44f3-a3d7-b55656b92d0f\", \"bbb342c5-3c48-450c-afe5-f660ad2079f8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656192481517792, \"Height\": 0.020980650559067726, \"Left\": 0.03495253995060921, \"Top\": 0.6854450106620789}, \"Polygon\": [{\"X\": 0.16151446104049683, \"Y\": 0.706425666809082}, {\"X\": 0.03495253995060921, \"Y\": 0.706425666809082}, {\"X\": 0.03495253995060921, \"Y\": 0.6854450106620789}, {\"X\": 0.16151446104049683, \"Y\": 0.6854450106620789}]}, \"Id\": \"f796f587-3981-4e22-90cb-21328ce29f1e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fac3488a-17a0-46e6-99e9-d9f4f3b05e7b\", \"b04319cc-901c-4c6a-962e-630465cff980\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12327469140291214, \"Height\": 0.020314589142799377, \"Left\": 0.5346258282661438, \"Top\": 0.6651304364204407}, \"Polygon\": [{\"X\": 0.6579005122184753, \"Y\": 0.6854450106620789}, {\"X\": 0.5346258282661438, \"Y\": 0.6854450106620789}, {\"X\": 0.5346258282661438, \"Y\": 0.6651304364204407}, {\"X\": 0.6579005122184753, \"Y\": 0.6651304364204407}]}, \"Id\": \"efb15707-8b4d-4c3e-afb9-4ba4b3452276\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"78bbca06-3994-49ad-afc7-51171583b675\", \"20bf5022-3b63-4226-9b6e-6ccab48a2f79\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1265619546175003, \"Height\": 0.020314589142799377, \"Left\": 0.4080639183521271, \"Top\": 0.6651304364204407}, \"Polygon\": [{\"X\": 0.5346258878707886, \"Y\": 0.6854450106620789}, {\"X\": 0.4080639183521271, \"Y\": 0.6854450106620789}, {\"X\": 0.4080639183521271, \"Y\": 0.6651304364204407}, {\"X\": 0.5346258878707886, \"Y\": 0.6651304364204407}]}, \"Id\": \"5d196d70-b83c-4584-bfa7-237502e984fc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"166b9955-d357-4619-b7b7-ddc04811bee3\", \"eed3ca39-5c8f-4b6b-9f2e-4f8e816322ad\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11998739838600159, \"Height\": 0.020314589142799377, \"Left\": 0.2880764901638031, \"Top\": 0.6651304364204407}, \"Polygon\": [{\"X\": 0.4080638885498047, \"Y\": 0.6854450106620789}, {\"X\": 0.2880764901638031, \"Y\": 0.6854450106620789}, {\"X\": 0.2880764901638031, \"Y\": 0.6651304364204407}, {\"X\": 0.4080638885498047, \"Y\": 0.6651304364204407}]}, \"Id\": \"c030af12-4034-4305-9d56-e2bc3803d2e0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fae2fd8d-3dbd-488e-a091-fce414277349\", \"3441300e-af39-4043-aa32-3df0d3834520\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656204402446747, \"Height\": 0.020314589142799377, \"Left\": 0.16151447594165802, \"Top\": 0.6651304364204407}, \"Polygon\": [{\"X\": 0.2880765199661255, \"Y\": 0.6854450106620789}, {\"X\": 0.16151447594165802, \"Y\": 0.6854450106620789}, {\"X\": 0.16151447594165802, \"Y\": 0.6651304364204407}, {\"X\": 0.2880765199661255, \"Y\": 0.6651304364204407}]}, \"Id\": \"52e2e60a-1de0-414e-94eb-2865524662f0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c6fb1513-a530-4032-aada-4ae3d46efd7c\", \"c0234844-1da8-4b9c-b3ac-c4358e8dcbfc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91516876220703, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12656192481517792, \"Height\": 0.020314589142799377, \"Left\": 0.03495253995060921, \"Top\": 0.6651304364204407}, \"Polygon\": [{\"X\": 0.16151446104049683, \"Y\": 0.6854450106620789}, {\"X\": 0.03495253995060921, \"Y\": 0.6854450106620789}, {\"X\": 0.03495253995060921, \"Y\": 0.6651304364204407}, {\"X\": 0.16151446104049683, \"Y\": 0.6651304364204407}]}, \"Id\": \"ef4db7e5-f0d5-4c19-8987-dcc01e28960a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"86861931-b847-40c9-9ce8-fb760f9f1fe0\", \"b3616123-2ede-4235-a0e9-893e9115e2f6\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.66612243652344, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.329454243183136, \"Height\": 0.05352061986923218, \"Left\": 0.5681864619255066, \"Top\": 0.792470395565033}, \"Polygon\": [{\"X\": 0.8976407051086426, \"Y\": 0.8459910154342651}, {\"X\": 0.5681864619255066, \"Y\": 0.8459910154342651}, {\"X\": 0.5681864619255066, \"Y\": 0.792470395565033}, {\"X\": 0.8976407051086426, \"Y\": 0.792470395565033}]}, \"Id\": \"57f8dc59-1881-4c1c-8945-f6ba17ab41c3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"37675202-abc9-46fc-a9f5-3b753f7eeec1\", \"cadc3677-fb23-4c8b-a6ba-6b0221b416e3\", \"fceda827-b033-4041-bcff-7403ed65f9b6\", \"9af0f61c-a5bf-4355-81e0-6cf7b011dff2\", \"f2bbbc6a-1c6b-4ea2-833b-ec82418eaf72\", \"379ac501-5b29-46dc-a424-c68642468404\", \"94fb5c60-402e-4e0a-bcba-48da4b25fc30\", \"9659f367-b65d-457e-b3c3-afe7fd93ae80\", \"faa41f77-8ea6-40d1-9f88-10fb62e14c79\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11040692776441574, \"Height\": 0.018283439800143242, \"Left\": 0.787233829498291, \"Top\": 0.8277075886726379}, \"Polygon\": [{\"X\": 0.8976407051086426, \"Y\": 0.8459910750389099}, {\"X\": 0.787233829498291, \"Y\": 0.8459910750389099}, {\"X\": 0.787233829498291, \"Y\": 0.8277075886726379}, {\"X\": 0.8976407051086426, \"Y\": 0.8277075886726379}]}, \"Id\": \"37675202-abc9-46fc-a9f5-3b753f7eeec1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"643529bf-50a7-4d20-92df-f7555714101f\", \"bd5f449a-9c17-4a45-aa58-cc9efa0afecd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1121734008193016, \"Height\": 0.018283439800143242, \"Left\": 0.6750603914260864, \"Top\": 0.8277075886726379}, \"Polygon\": [{\"X\": 0.787233829498291, \"Y\": 0.8459910750389099}, {\"X\": 0.6750603914260864, \"Y\": 0.8459910750389099}, {\"X\": 0.6750603914260864, \"Y\": 0.8277075886726379}, {\"X\": 0.787233829498291, \"Y\": 0.8277075886726379}]}, \"Id\": \"cadc3677-fb23-4c8b-a6ba-6b0221b416e3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca04a801-ba80-45a7-a333-d8d9fd95cb94\", \"60c75e2b-c596-40d2-a720-019aa9496960\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10687390714883804, \"Height\": 0.018283439800143242, \"Left\": 0.5681864619255066, \"Top\": 0.8277075886726379}, \"Polygon\": [{\"X\": 0.6750603914260864, \"Y\": 0.8459910750389099}, {\"X\": 0.5681864619255066, \"Y\": 0.8459910750389099}, {\"X\": 0.5681864619255066, \"Y\": 0.8277075886726379}, {\"X\": 0.6750603914260864, \"Y\": 0.8277075886726379}]}, \"Id\": \"fceda827-b033-4041-bcff-7403ed65f9b6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"97a6da58-507b-45eb-8a9a-e928dd4048b9\", \"915805da-f3c1-4860-994a-7b0afe4ad106\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11040692776441574, \"Height\": 0.017618589103221893, \"Left\": 0.787233829498291, \"Top\": 0.8100889921188354}, \"Polygon\": [{\"X\": 0.8976407051086426, \"Y\": 0.8277075886726379}, {\"X\": 0.787233829498291, \"Y\": 0.8277075886726379}, {\"X\": 0.787233829498291, \"Y\": 0.8100889921188354}, {\"X\": 0.8976407051086426, \"Y\": 0.8100889921188354}]}, \"Id\": \"9af0f61c-a5bf-4355-81e0-6cf7b011dff2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"91e25f28-1dbb-4dda-afe3-b2f3c2b54f4c\", \"e07b1033-20fd-48da-b009-e4f63275f42e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1121734008193016, \"Height\": 0.017618589103221893, \"Left\": 0.6750603914260864, \"Top\": 0.8100889921188354}, \"Polygon\": [{\"X\": 0.787233829498291, \"Y\": 0.8277075886726379}, {\"X\": 0.6750603914260864, \"Y\": 0.8277075886726379}, {\"X\": 0.6750603914260864, \"Y\": 0.8100889921188354}, {\"X\": 0.787233829498291, \"Y\": 0.8100889921188354}]}, \"Id\": \"f2bbbc6a-1c6b-4ea2-833b-ec82418eaf72\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e67419d8-cef6-49dd-a865-59819e900516\", \"24f99a53-39fb-47ee-bb16-4c21ccade29c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10687390714883804, \"Height\": 0.017618589103221893, \"Left\": 0.5681864619255066, \"Top\": 0.8100889921188354}, \"Polygon\": [{\"X\": 0.6750603914260864, \"Y\": 0.8277075886726379}, {\"X\": 0.5681864619255066, \"Y\": 0.8277075886726379}, {\"X\": 0.5681864619255066, \"Y\": 0.8100889921188354}, {\"X\": 0.6750603914260864, \"Y\": 0.8100889921188354}]}, \"Id\": \"379ac501-5b29-46dc-a424-c68642468404\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d17cf01-e515-45f8-8bd4-ef29d4ef53fe\", \"bbcf6806-6cd9-4088-b0c0-ff65a417930f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11040692776441574, \"Height\": 0.017618589103221893, \"Left\": 0.787233829498291, \"Top\": 0.792470395565033}, \"Polygon\": [{\"X\": 0.8976407051086426, \"Y\": 0.8100889921188354}, {\"X\": 0.787233829498291, \"Y\": 0.8100889921188354}, {\"X\": 0.787233829498291, \"Y\": 0.792470395565033}, {\"X\": 0.8976407051086426, \"Y\": 0.792470395565033}]}, \"Id\": \"94fb5c60-402e-4e0a-bcba-48da4b25fc30\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5ae6698a-8c8d-40b4-a64f-7c79311442b8\", \"1a91e899-c629-406c-be96-752f6fab2024\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1121734008193016, \"Height\": 0.017618589103221893, \"Left\": 0.6750603914260864, \"Top\": 0.792470395565033}, \"Polygon\": [{\"X\": 0.787233829498291, \"Y\": 0.8100889921188354}, {\"X\": 0.6750603914260864, \"Y\": 0.8100889921188354}, {\"X\": 0.6750603914260864, \"Y\": 0.792470395565033}, {\"X\": 0.787233829498291, \"Y\": 0.792470395565033}]}, \"Id\": \"9659f367-b65d-457e-b3c3-afe7fd93ae80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"afac5207-d39f-4e72-be16-b487ed02250b\", \"2ca333d5-22af-44ed-8ee8-b91ebeb41dea\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66612243652344, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10687390714883804, \"Height\": 0.017618589103221893, \"Left\": 0.5681864619255066, \"Top\": 0.792470395565033}, \"Polygon\": [{\"X\": 0.6750603914260864, \"Y\": 0.8100889921188354}, {\"X\": 0.5681864619255066, \"Y\": 0.8100889921188354}, {\"X\": 0.5681864619255066, \"Y\": 0.792470395565033}, {\"X\": 0.6750603914260864, \"Y\": 0.792470395565033}]}, \"Id\": \"faa41f77-8ea6-40d1-9f88-10fb62e14c79\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1faa1f3d-e846-430d-b7e2-2babba567b56\", \"7110a847-208d-460b-b5c5-946a2e955840\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 85.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04298631101846695, \"Height\": 0.012817606329917908, \"Left\": 0.19774872064590454, \"Top\": 0.8740708827972412}, \"Polygon\": [{\"X\": 0.2407350391149521, \"Y\": 0.8868885040283203}, {\"X\": 0.19774872064590454, \"Y\": 0.8868885040283203}, {\"X\": 0.19774872064590454, \"Y\": 0.8740708827972412}, {\"X\": 0.2407350391149521, \"Y\": 0.8740708827972412}]}, \"Id\": \"16cba449-ddd0-43d4-8db1-357c013493eb\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1d0ec6d6-801b-4469-b39b-671bb5ffeea8\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 85.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055937107652425766, \"Height\": 0.012065032497048378, \"Left\": 0.13954761624336243, \"Top\": 0.8754995465278625}, \"Polygon\": [{\"X\": 0.1954847276210785, \"Y\": 0.8875645995140076}, {\"X\": 0.13954761624336243, \"Y\": 0.8875645995140076}, {\"X\": 0.13954761624336243, \"Y\": 0.8754995465278625}, {\"X\": 0.1954847276210785, \"Y\": 0.8754995465278625}]}, \"Id\": \"1d0ec6d6-801b-4469-b39b-671bb5ffeea8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b2376a28-e7b8-4cc4-9c78-f38ae140c75a\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 79.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04275264963507652, \"Height\": 0.0109028909355402, \"Left\": 0.20192502439022064, \"Top\": 0.9546712040901184}, \"Polygon\": [{\"X\": 0.24467767775058746, \"Y\": 0.9655740857124329}, {\"X\": 0.20192502439022064, \"Y\": 0.9655740857124329}, {\"X\": 0.20192502439022064, \"Y\": 0.9546712040901184}, {\"X\": 0.24467767775058746, \"Y\": 0.9546712040901184}]}, \"Id\": \"3e6ecf7a-97be-413c-8d46-30f4d041cbf2\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"644ff93f-ac43-4abe-8a50-311634cfe7e2\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"bcf23e72-70fb-4d1f-b168-e0889456e934\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 79.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09339282661676407, \"Height\": 0.010628786869347095, \"Left\": 0.10398024320602417, \"Top\": 0.9548622965812683}, \"Polygon\": [{\"X\": 0.19737307727336884, \"Y\": 0.9654911160469055}, {\"X\": 0.10398024320602417, \"Y\": 0.9654911160469055}, {\"X\": 0.10398024320602417, \"Y\": 0.9548622965812683}, {\"X\": 0.19737307727336884, \"Y\": 0.9548622965812683}]}, \"Id\": \"644ff93f-ac43-4abe-8a50-311634cfe7e2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"728a97be-987d-4f05-aff7-fbd90a1c4a6a\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 74.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04180965945124626, \"Height\": 0.012594340369105339, \"Left\": 0.19827409088611603, \"Top\": 0.898338258266449}, \"Polygon\": [{\"X\": 0.2400837391614914, \"Y\": 0.9109326004981995}, {\"X\": 0.19827409088611603, \"Y\": 0.9109326004981995}, {\"X\": 0.19827409088611603, \"Y\": 0.898338258266449}, {\"X\": 0.2400837391614914, \"Y\": 0.898338258266449}]}, \"Id\": \"cd8d7194-4a9e-42df-88a9-ad347d8b6826\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1b8a6384-de12-465b-9005-840ab070a6ee\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"956b6c3b-daf7-410d-b0a4-3f2dd9f680cf\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 74.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05415758863091469, \"Height\": 0.011691284365952015, \"Left\": 0.13994796574115753, \"Top\": 0.8997916579246521}, \"Polygon\": [{\"X\": 0.19410556554794312, \"Y\": 0.9114829897880554}, {\"X\": 0.13994796574115753, \"Y\": 0.9114829897880554}, {\"X\": 0.13994796574115753, \"Y\": 0.8997916579246521}, {\"X\": 0.19410556554794312, \"Y\": 0.8997916579246521}]}, \"Id\": \"1b8a6384-de12-465b-9005-840ab070a6ee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce145729-480d-47f4-9e7a-8e9e9c8a6fc1\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 59.500003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030127204954624176, \"Height\": 0.010879394598305225, \"Left\": 0.8924483060836792, \"Top\": 0.4230266809463501}, \"Polygon\": [{\"X\": 0.9225754737854004, \"Y\": 0.43390607833862305}, {\"X\": 0.8924483060836792, \"Y\": 0.43390607833862305}, {\"X\": 0.8924483060836792, \"Y\": 0.4230266809463501}, {\"X\": 0.9225754737854004, \"Y\": 0.4230266809463501}]}, \"Id\": \"ec7fbfdc-af90-4764-99c3-cb039456ad12\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"7daa6a26-214c-48ee-adcc-0a873034fe48\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"25aec6b2-71b4-4b49-8ceb-6c6c85cbcbf4\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 59.500003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10019272565841675, \"Height\": 0.010724731720983982, \"Left\": 0.7870633006095886, \"Top\": 0.4230120778083801}, \"Polygon\": [{\"X\": 0.8872560262680054, \"Y\": 0.4337368309497833}, {\"X\": 0.7870633006095886, \"Y\": 0.4337368309497833}, {\"X\": 0.7870633006095886, \"Y\": 0.4230120778083801}, {\"X\": 0.8872560262680054, \"Y\": 0.4230120778083801}]}, \"Id\": \"7daa6a26-214c-48ee-adcc-0a873034fe48\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db51eca9-2cad-4a59-b6fa-7b7d505d0550\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 47.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035931482911109924, \"Height\": 0.010909302160143852, \"Left\": 0.8876092433929443, \"Top\": 0.5700207352638245}, \"Polygon\": [{\"X\": 0.9235407710075378, \"Y\": 0.5809299945831299}, {\"X\": 0.8876092433929443, \"Y\": 0.5809299945831299}, {\"X\": 0.8876092433929443, \"Y\": 0.5700207352638245}, {\"X\": 0.9235407710075378, \"Y\": 0.5700207352638245}]}, \"Id\": \"66dc3f63-5d9d-4e33-9367-09870b621f04\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"fa96a6a5-c441-4294-b737-b533aaaf7793\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"bbeae921-2104-49cd-a33c-a04d1ad8388e\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 47.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06890802085399628, \"Height\": 0.010960327461361885, \"Left\": 0.8179735541343689, \"Top\": 0.5702950358390808}, \"Polygon\": [{\"X\": 0.8868815898895264, \"Y\": 0.5812553763389587}, {\"X\": 0.8179735541343689, \"Y\": 0.5812553763389587}, {\"X\": 0.8179735541343689, \"Y\": 0.5702950358390808}, {\"X\": 0.8868815898895264, \"Y\": 0.5702950358390808}]}, \"Id\": \"fa96a6a5-c441-4294-b737-b533aaaf7793\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0eab012a-5a46-4e87-a50f-2ac14eb7c60d\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 30.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03366336598992348, \"Height\": 0.010962849482893944, \"Left\": 0.8884338736534119, \"Top\": 0.4392358064651489}, \"Polygon\": [{\"X\": 0.9220972657203674, \"Y\": 0.4501986503601074}, {\"X\": 0.8884338736534119, \"Y\": 0.4501986503601074}, {\"X\": 0.8884338736534119, \"Y\": 0.4392358064651489}, {\"X\": 0.9220972657203674, \"Y\": 0.4392358064651489}]}, \"Id\": \"c8be70a1-a073-4ec7-bc06-b74e52819af9\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"ad571fb0-40d6-458a-b6e6-a9bd7a47087b\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"831d2500-2fbc-45f6-bd78-e88dc11f9028\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 30.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06795907020568848, \"Height\": 0.011421590112149715, \"Left\": 0.8169077038764954, \"Top\": 0.43913450837135315}, \"Polygon\": [{\"X\": 0.8848667740821838, \"Y\": 0.45055609941482544}, {\"X\": 0.8169077038764954, \"Y\": 0.45055609941482544}, {\"X\": 0.8169077038764954, \"Y\": 0.43913450837135315}, {\"X\": 0.8848667740821838, \"Y\": 0.43913450837135315}]}, \"Id\": \"ad571fb0-40d6-458a-b6e6-a9bd7a47087b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"660f7a25-48a7-49c9-9f58-11891d8bc254\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"7324f677-c3cb-4614-8ac2-d9099890138a\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"7324f677-c3cb-4614-8ac2-d9099890138a\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"153519\", \"date\": \"Mon, 26 Apr 2021 21:36:30 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__25_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.2913902699947357, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.27990102767944336}, {\"X\": 0.9043833017349243, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.735467255115509}]}, \"Id\": \"607e2695-760c-4926-b4b5-5af9af4d52c1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5255551-3fce-459c-982a-bd17cd62ca32\", \"6698b142-0b3e-4774-b5a6-79d25a692aea\", \"17abe001-4f68-48a3-81db-b60c2345c536\", \"7e3e147d-79fc-486a-bff3-dde3c1153c15\", \"e50f10ec-153a-4015-8174-755b2cf84f31\", \"1bdf10f5-5e0f-4be8-a296-45402a500f80\", \"c72fdd9a-3af0-4795-aa1a-b0f14b6d138a\", \"cbf7d351-7318-4b94-b06e-b2b488016203\", \"932f1afa-7bc1-4ecc-86c4-fde573564504\", \"4fcc684c-6867-426e-97e1-fdaa40a59c01\", \"6fde0654-2d0c-405b-b299-34425e9d1993\", \"c1465c55-f6e4-4eab-894a-3bba4ce62857\", \"b3da9003-434a-42a2-b082-3dd72fffbc5b\", \"f339ac2b-e328-456f-a75c-e6630d000e60\", \"a2d2d2f4-d6c3-4885-a6b9-0636aef9626f\", \"912f4fd4-0a66-4461-af70-0f8d45c713c1\", \"91a4d7c3-0019-44d7-a1c6-550e034008ce\", \"a7aa08dc-0c97-4b4d-88fb-2965ac0992f8\", \"e58d6af9-98b3-4325-8a53-9620d7c5ece7\", \"8469f3ae-851c-4c1b-bcdf-511fccb4de66\", \"225d6c33-08ee-4868-9ef2-43ca6cb76d87\", \"72c52664-f1b6-4595-aeed-d22bb8f45652\", \"cdcc7636-56d6-418e-ac76-7471fa718c6b\", \"8baaf4e3-4fd1-4373-80fe-f99f01d6d6fe\", \"f1487523-5fb4-47e9-8ec5-9385d2256247\", \"b3fb7dd4-8744-4fae-9862-31136cd3e5ac\", \"984b2833-979b-4231-9551-ca060ac001d2\", \"a40dce8d-299e-4b25-8455-7e3f73865098\", \"205b8116-d876-44ff-a0b9-73ccb0d1d9b1\", \"0e26f8e7-f406-484d-bd99-fdec9038b92e\", \"9e2dfe6c-852d-4eae-b452-fdfc10ae0e1a\", \"6682d2d4-258a-4c93-ab80-a8cb0afd64f8\", \"8cb1c577-430d-49e1-99f9-9d08917886d2\", \"8f4735b9-65c1-4cce-8231-d4bbbd5125cd\", \"c6479f15-4dd2-461c-939e-b439c552a34a\", \"48858409-ded5-4e3c-8b9f-e7abe637c0a2\", \"1e82c7de-4542-4ad9-a95d-43b47ab602ac\", \"7b73139d-3ad2-4da7-9a77-57574da31be3\", \"1f8b084e-ce66-492d-93b0-de8122004093\", \"cb943659-f581-41ad-bdd1-2fe211183e76\", \"a7ecd381-c391-4460-a6df-18015a662742\", \"c1185fec-82b3-45f0-9428-a70ef1819c41\", \"ed4c765c-0423-483a-9592-1c0337faf8e3\", \"9e072671-732d-4e54-8905-6bbcc3905436\", \"6f954eb8-d663-4a8b-b14d-e97f41a1003e\", \"55c8e3df-e855-47bc-a606-bb24062e73c4\", \"c0aecf8c-e561-420c-b363-797999776905\", \"32f82c7e-7b5f-42d1-8fce-c4b48e00fa40\", \"aa158c1c-0346-4902-8f8d-ad0d1a0f4c00\", \"f34ec28e-376d-4850-9bd5-0ebf7239ab2f\", \"c3d5f51b-9d54-4f3b-aad8-3c2550688e26\", \"f6a462ce-60d6-41cf-9000-47c8b270267f\", \"f255e6a1-e812-429e-88fe-0344a65b9e9f\", \"91e188ab-cdb8-4a2b-90c5-352204fc04df\", \"45ebf71b-2f61-4fd5-a5e3-c0a87cde7527\", \"66935092-a2cc-4329-9910-cc9f1971b9a8\", \"1b981e72-95e7-40ef-9cde-0cbb5fed2192\", \"5d55906a-3393-44c2-bd75-4ad7f76fdfed\", \"649d3ced-bdce-4a3a-8119-2f92b8a15ee3\", \"18a3dfa6-d958-4d6d-9f1f-5805955d6a8f\", \"d6ee55bc-5238-49c5-8475-59a4e9c98a55\", \"805c3e9a-127d-429b-a777-f85a5c446a37\", \"f580c004-0577-45b9-806a-08de659a3281\", \"e59a1994-8e69-49c1-ae6e-b065c5762b3b\", \"73247cd0-d560-49a5-9fd2-14c7ed36f37f\", \"577a728d-6cc7-49ec-8535-34dcb70d6830\", \"55b3803f-e3f1-4723-86d6-3fff0035c5b6\", \"4ecfb369-197b-45c6-89e3-b4e791f42b9d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52684783935547, \"Text\": \"Name: SomeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14285938441753387, \"Height\": 0.05575025826692581, \"Left\": 0.45747724175453186, \"Top\": 0.09678991883993149}, \"Polygon\": [{\"X\": 0.4642350971698761, \"Y\": 0.09678991883993149}, {\"X\": 0.6003366112709045, \"Y\": 0.1424897164106369}, {\"X\": 0.5935788154602051, \"Y\": 0.1525401771068573}, {\"X\": 0.45747724175453186, \"Y\": 0.10684037953615189}]}, \"Id\": \"a5255551-3fce-459c-982a-bd17cd62ca32\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aac44c65-2479-4d07-af1d-5f4dc8aeb1bc\", \"4e7019f1-a16b-4f93-9640-9c5cc461e9e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56373596191406, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08828376233577728, \"Height\": 0.037519924342632294, \"Left\": 0.42177191376686096, \"Top\": 0.19136233627796173}, \"Polygon\": [{\"X\": 0.42861220240592957, \"Y\": 0.19136233627796173}, {\"X\": 0.510055661201477, \"Y\": 0.21870920062065125}, {\"X\": 0.5032154321670532, \"Y\": 0.22888226807117462}, {\"X\": 0.42177191376686096, \"Y\": 0.2015354037284851}]}, \"Id\": \"6698b142-0b3e-4774-b5a6-79d25a692aea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"14efd8d3-c4ef-4f3b-9092-d94a952275e0\", \"95fce50a-0d3e-4678-9382-b92ee5e46322\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4081039428711, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08864297717809677, \"Height\": 0.03718233481049538, \"Left\": 0.5207816362380981, \"Top\": 0.22464905679225922}, \"Polygon\": [{\"X\": 0.5272239446640015, \"Y\": 0.22464905679225922}, {\"X\": 0.6094245910644531, \"Y\": 0.25225016474723816}, {\"X\": 0.6029822826385498, \"Y\": 0.2618314027786255}, {\"X\": 0.5207816362380981, \"Y\": 0.23423029482364655}]}, \"Id\": \"17abe001-4f68-48a3-81db-b60c2345c536\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9384481-6efd-4744-93a1-d1e133a74def\", \"9d7b440b-f967-4f45-81bd-1d3b56a3655c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50457000732422, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0878920704126358, \"Height\": 0.03690475597977638, \"Left\": 0.6206056475639343, \"Top\": 0.25736674666404724}, \"Polygon\": [{\"X\": 0.6270259022712708, \"Y\": 0.25736674666404724}, {\"X\": 0.7084977030754089, \"Y\": 0.2847231328487396}, {\"X\": 0.7020775079727173, \"Y\": 0.2942714989185333}, {\"X\": 0.6206056475639343, \"Y\": 0.26691511273384094}]}, \"Id\": \"7e3e147d-79fc-486a-bff3-dde3c1153c15\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb2065bb-04b9-453f-b24b-706deaf19d9c\", \"6b6c3d85-6408-4e05-973a-a16e8500c646\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37914276123047, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08791594952344894, \"Height\": 0.03686502203345299, \"Left\": 0.41145867109298706, \"Top\": 0.20797334611415863}, \"Polygon\": [{\"X\": 0.4178374409675598, \"Y\": 0.20797334611415863}, {\"X\": 0.4993746280670166, \"Y\": 0.23535168170928955}, {\"X\": 0.49299585819244385, \"Y\": 0.24483837187290192}, {\"X\": 0.41145867109298706, \"Y\": 0.217460036277771}]}, \"Id\": \"e50f10ec-153a-4015-8174-755b2cf84f31\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1954d087-e560-481a-8f9e-d6ce0881f599\", \"33c6ac42-ae05-4803-9a9d-4d078bdca6b3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57859802246094, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08827944099903107, \"Height\": 0.037022914737463, \"Left\": 0.5105072259902954, \"Top\": 0.2406264990568161}, \"Polygon\": [{\"X\": 0.5169171690940857, \"Y\": 0.2406264990568161}, {\"X\": 0.5987867116928101, \"Y\": 0.26811641454696655}, {\"X\": 0.5923767685890198, \"Y\": 0.2776494026184082}, {\"X\": 0.5105072259902954, \"Y\": 0.25015947222709656}]}, \"Id\": \"1bdf10f5-5e0f-4be8-a296-45402a500f80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7d7e70b9-3558-4291-973c-dd528bc2d4b1\", \"11930c0b-deee-4a89-a31e-628e6d87dae4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42533111572266, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08777575194835663, \"Height\": 0.0368393212556839, \"Left\": 0.6098637580871582, \"Top\": 0.2734277844429016}, \"Polygon\": [{\"X\": 0.6162611246109009, \"Y\": 0.2734277844429016}, {\"X\": 0.697639524936676, \"Y\": 0.30075281858444214}, {\"X\": 0.6912422180175781, \"Y\": 0.3102671205997467}, {\"X\": 0.6098637580871582, \"Y\": 0.2829420864582062}]}, \"Id\": \"c72fdd9a-3af0-4795-aa1a-b0f14b6d138a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d694900-1e0e-4c33-abb4-6a0ec161f098\", \"d8b3a80b-dd6f-4f31-a5cf-c5b2d34b8620\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.75875854492188, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0881994441151619, \"Height\": 0.03685157001018524, \"Left\": 0.4007546603679657, \"Top\": 0.22403143346309662}, \"Polygon\": [{\"X\": 0.407039076089859, \"Y\": 0.22403143346309662}, {\"X\": 0.488954097032547, \"Y\": 0.25153663754463196}, {\"X\": 0.4826696813106537, \"Y\": 0.26088300347328186}, {\"X\": 0.4007546603679657, \"Y\": 0.23337781429290771}]}, \"Id\": \"cbf7d351-7318-4b94-b06e-b2b488016203\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ca749e2-5e6e-4907-b05b-a7270b8621d3\", \"fe70d695-23ae-4999-8160-07481707296d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61335754394531, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08802653849124908, \"Height\": 0.036831796169281006, \"Left\": 0.49985429644584656, \"Top\": 0.2566598057746887}, \"Polygon\": [{\"X\": 0.5061719417572021, \"Y\": 0.2566598057746887}, {\"X\": 0.5878808498382568, \"Y\": 0.28409579396247864}, {\"X\": 0.5815631747245789, \"Y\": 0.2934916019439697}, {\"X\": 0.49985429644584656, \"Y\": 0.2660556435585022}]}, \"Id\": \"932f1afa-7bc1-4ecc-86c4-fde573564504\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e8e92a8e-9700-4eda-9bd5-ed1a1de77ad1\", \"07020f43-29af-42bf-bef8-37cd88e4ce4c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63737487792969, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08722709119319916, \"Height\": 0.03650627285242081, \"Left\": 0.5998355150222778, \"Top\": 0.2895953953266144}, \"Polygon\": [{\"X\": 0.6061035990715027, \"Y\": 0.2895953953266144}, {\"X\": 0.6870625615119934, \"Y\": 0.31677958369255066}, {\"X\": 0.6807944774627686, \"Y\": 0.3261016607284546}, {\"X\": 0.5998355150222778, \"Y\": 0.2989174723625183}]}, \"Id\": \"4fcc684c-6867-426e-97e1-fdaa40a59c01\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2870f5fc-0673-48ff-be7b-2dd444250a15\", \"3d7117d0-3570-48af-9629-99bdcbbb47e5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55538177490234, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10177712142467499, \"Height\": 0.0425841249525547, \"Left\": 0.5912203192710876, \"Top\": 0.33436596393585205}, \"Polygon\": [{\"X\": 0.5985238552093506, \"Y\": 0.33436596393585205}, {\"X\": 0.6929974555969238, \"Y\": 0.36608803272247314}, {\"X\": 0.6856939196586609, \"Y\": 0.37695008516311646}, {\"X\": 0.5912203192710876, \"Y\": 0.34522801637649536}]}, \"Id\": \"6fde0654-2d0c-405b-b299-34425e9d1993\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2bbdb3b6-ff12-494f-8ca5-b47ef0b8e8fd\", \"43ca9c68-2cbd-4265-bce1-daefeb6f859f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5904541015625, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10280205309391022, \"Height\": 0.04306191951036453, \"Left\": 0.7035394310951233, \"Top\": 0.3713315427303314}, \"Polygon\": [{\"X\": 0.7109590172767639, \"Y\": 0.3713315427303314}, {\"X\": 0.8063414692878723, \"Y\": 0.4033587872982025}, {\"X\": 0.7989218831062317, \"Y\": 0.41439345479011536}, {\"X\": 0.7035394310951233, \"Y\": 0.38236621022224426}]}, \"Id\": \"c1465c55-f6e4-4eab-894a-3bba4ce62857\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53e94bdf-7c98-446b-a99b-f28ae0c464ae\", \"1e753f37-ee6f-45cf-8fec-1cbaa3a3c38d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64492797851562, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10240766406059265, \"Height\": 0.04294752702116966, \"Left\": 0.8159891366958618, \"Top\": 0.40847522020339966}, \"Polygon\": [{\"X\": 0.8234244585037231, \"Y\": 0.40847522020339966}, {\"X\": 0.9183968305587769, \"Y\": 0.4403647780418396}, {\"X\": 0.9109615087509155, \"Y\": 0.4514227509498596}, {\"X\": 0.8159891366958618, \"Y\": 0.4195331931114197}]}, \"Id\": \"b3da9003-434a-42a2-b082-3dd72fffbc5b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc9eb4d2-203f-4328-a518-5f24418e4667\", \"de82a435-9167-42ef-a09b-eaa4d1f8a2d5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70929718017578, \"Text\": \"Value 2.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0717000812292099, \"Height\": 0.033575017005205154, \"Left\": 0.9282999038696289, \"Top\": 0.44558772444725037}, \"Polygon\": [{\"X\": 0.9354541897773743, \"Y\": 0.44558772444725037}, {\"X\": 1.0, \"Y\": 0.46852266788482666}, {\"X\": 0.9966039657592773, \"Y\": 0.4791627526283264}, {\"X\": 0.9282999038696289, \"Y\": 0.4562278091907501}]}, \"Id\": \"f339ac2b-e328-456f-a75c-e6630d000e60\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9247512b-de9b-4b2f-b1da-c13499f96442\", \"75421daf-416b-4baf-922d-e39233dc6bf9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07876586914062, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10253830999135971, \"Height\": 0.04289611056447029, \"Left\": 0.578667938709259, \"Top\": 0.35279127955436707}, \"Polygon\": [{\"X\": 0.5860204696655273, \"Y\": 0.35279127955436707}, {\"X\": 0.6812062859535217, \"Y\": 0.384752482175827}, {\"X\": 0.6738537549972534, \"Y\": 0.39568737149238586}, {\"X\": 0.578667938709259, \"Y\": 0.3637261688709259}]}, \"Id\": \"a2d2d2f4-d6c3-4885-a6b9-0636aef9626f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab748773-6b28-4b1d-b4a9-4c314f131b8b\", \"9860c1ec-c7c5-44b8-843a-adbac3684e70\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51062774658203, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10275965183973312, \"Height\": 0.04300185292959213, \"Left\": 0.6913509368896484, \"Top\": 0.3899586796760559}, \"Polygon\": [{\"X\": 0.6987307667732239, \"Y\": 0.3899586796760559}, {\"X\": 0.7941105961799622, \"Y\": 0.42198505997657776}, {\"X\": 0.7867308259010315, \"Y\": 0.43296054005622864}, {\"X\": 0.6913509368896484, \"Y\": 0.4009341597557068}]}, \"Id\": \"912f4fd4-0a66-4461-af70-0f8d45c713c1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7c8f741f-bc13-4ce2-b8f5-b7b443f9eae5\", \"c405d33c-f1d1-49f3-a04b-60679da47b15\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58554077148438, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10237833112478256, \"Height\": 0.042954884469509125, \"Left\": 0.8040366172790527, \"Top\": 0.4270099401473999}, \"Polygon\": [{\"X\": 0.8114868402481079, \"Y\": 0.4270099401473999}, {\"X\": 0.9064149260520935, \"Y\": 0.4588846266269684}, {\"X\": 0.8989647030830383, \"Y\": 0.4699648320674896}, {\"X\": 0.8040366172790527, \"Y\": 0.43809014558792114}]}, \"Id\": \"91a4d7c3-0019-44d7-a1c6-550e034008ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3194fd16-348a-445d-8448-0d2fe6f5075e\", \"352aa3e0-914c-4831-a959-545d9f2f4dd8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 83.75114440917969, \"Text\": \"Value 2.2.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08397281914949417, \"Height\": 0.03829716891050339, \"Left\": 0.9160271883010864, \"Top\": 0.46409687399864197}, \"Polygon\": [{\"X\": 0.9233319163322449, \"Y\": 0.46409687399864197}, {\"X\": 1.0, \"Y\": 0.491530179977417}, {\"X\": 0.9977281093597412, \"Y\": 0.5023940205574036}, {\"X\": 0.9160271883010864, \"Y\": 0.4749607443809509}]}, \"Id\": \"a7aa08dc-0c97-4b4d-88fb-2965ac0992f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"68c869ce-170a-4961-9ff6-6a9b507be7d5\", \"bce6d2fa-c465-4612-b853-9a3e8920f0e7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62541961669922, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10182525962591171, \"Height\": 0.04261215776205063, \"Left\": 0.5666019320487976, \"Top\": 0.3715755343437195}, \"Polygon\": [{\"X\": 0.5739157795906067, \"Y\": 0.3715755343437195}, {\"X\": 0.6684271693229675, \"Y\": 0.4033103287220001}, {\"X\": 0.6611133217811584, \"Y\": 0.4141876995563507}, {\"X\": 0.5666019320487976, \"Y\": 0.38245293498039246}]}, \"Id\": \"e58d6af9-98b3-4325-8a53-9620d7c5ece7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"544f2d88-12a8-4324-aeab-8193ca2e5177\", \"0ab9aefb-3c3d-4921-814f-5c11f421e56a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59111022949219, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10235968977212906, \"Height\": 0.04274473339319229, \"Left\": 0.6791436672210693, \"Top\": 0.4085993468761444}, \"Polygon\": [{\"X\": 0.6864168047904968, \"Y\": 0.4085993468761444}, {\"X\": 0.7815033793449402, \"Y\": 0.4405272603034973}, {\"X\": 0.7742301821708679, \"Y\": 0.4513441026210785}, {\"X\": 0.6791436672210693, \"Y\": 0.4194161891937256}]}, \"Id\": \"8469f3ae-851c-4c1b-bcdf-511fccb4de66\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3a7eb20d-5744-45fe-9459-a799dde97379\", \"0db4b7a8-ba44-4993-b858-90523ad890e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69982147216797, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10218855738639832, \"Height\": 0.0428868867456913, \"Left\": 0.7917039394378662, \"Top\": 0.4457150101661682}, \"Polygon\": [{\"X\": 0.7991504669189453, \"Y\": 0.4457150101661682}, {\"X\": 0.8938925266265869, \"Y\": 0.4775272309780121}, {\"X\": 0.8864459991455078, \"Y\": 0.4886018931865692}, {\"X\": 0.7917039394378662, \"Y\": 0.45678967237472534}]}, \"Id\": \"225d6c33-08ee-4868-9ef2-43ca6cb76d87\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"60c31bb9-7e74-44c1-a50c-6c8afe801cd2\", \"c0389c72-14f5-45da-ae8e-1cf902e9873b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63851928710938, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09585997462272644, \"Height\": 0.04252789914608002, \"Left\": 0.9041399955749512, \"Top\": 0.4829331636428833}, \"Polygon\": [{\"X\": 0.9114499092102051, \"Y\": 0.4829331636428833}, {\"X\": 1.0, \"Y\": 0.5145895481109619}, {\"X\": 0.9984180331230164, \"Y\": 0.5254610776901245}, {\"X\": 0.9041399955749512, \"Y\": 0.4938046634197235}]}, \"Id\": \"72c52664-f1b6-4595-aeed-d22bb8f45652\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"de089055-f56d-47d6-9256-ca9d6d76576f\", \"66ce2e3c-f29a-4ee0-b065-91284540d870\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72190856933594, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10101436823606491, \"Height\": 0.04216699302196503, \"Left\": 0.5549173951148987, \"Top\": 0.39049386978149414}, \"Polygon\": [{\"X\": 0.5620810985565186, \"Y\": 0.39049386978149414}, {\"X\": 0.6559317708015442, \"Y\": 0.4220067858695984}, {\"X\": 0.6487680673599243, \"Y\": 0.432660847902298}, {\"X\": 0.5549173951148987, \"Y\": 0.4011479318141937}]}, \"Id\": \"cdcc7636-56d6-418e-ac76-7471fa718c6b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"226ff4eb-a33a-49ea-850d-10b7f41d5f66\", \"eae4d1fe-977b-4115-8b4d-50e0f1eba853\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70374298095703, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10242296755313873, \"Height\": 0.042776644229888916, \"Left\": 0.6669019460678101, \"Top\": 0.42727750539779663}, \"Polygon\": [{\"X\": 0.6741843223571777, \"Y\": 0.42727750539779663}, {\"X\": 0.7693248987197876, \"Y\": 0.45922353863716125}, {\"X\": 0.7620424628257751, \"Y\": 0.47005414962768555}, {\"X\": 0.6669019460678101, \"Y\": 0.4381081163883209}]}, \"Id\": \"8baaf4e3-4fd1-4373-80fe-f99f01d6d6fe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4121999-5bb7-4be3-ba65-d5c7282b2dcc\", \"765895b0-84ec-4687-a64e-b4c0d8596f03\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66969299316406, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1022290587425232, \"Height\": 0.04282579943537712, \"Left\": 0.7792932391166687, \"Top\": 0.4643191993236542}, \"Polygon\": [{\"X\": 0.7866748571395874, \"Y\": 0.4643191993236542}, {\"X\": 0.8815222382545471, \"Y\": 0.49616679549217224}, {\"X\": 0.8741406202316284, \"Y\": 0.5071449875831604}, {\"X\": 0.7792932391166687, \"Y\": 0.47529739141464233}]}, \"Id\": \"f1487523-5fb4-47e9-8ec5-9385d2256247\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0138e6de-4c80-4d68-a622-eb7dd1f82890\", \"679bbb68-143f-4d3e-a552-9d72a6267fde\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6292495727539, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10267312824726105, \"Height\": 0.042890485376119614, \"Left\": 0.8917499780654907, \"Top\": 0.5013471245765686}, \"Polygon\": [{\"X\": 0.8990582823753357, \"Y\": 0.5013471245765686}, {\"X\": 0.9944230914115906, \"Y\": 0.5333684682846069}, {\"X\": 0.9871147871017456, \"Y\": 0.5442376136779785}, {\"X\": 0.8917499780654907, \"Y\": 0.512216329574585}]}, \"Id\": \"b3fb7dd4-8744-4fae-9862-31136cd3e5ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e77e162a-c851-48d7-8a4f-fb099118018e\", \"1c6b41f3-4465-467c-a6d4-558b092f7000\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.73359680175781, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10178783535957336, \"Height\": 0.04250499978661537, \"Left\": 0.5422723293304443, \"Top\": 0.40880289673805237}, \"Polygon\": [{\"X\": 0.5495040416717529, \"Y\": 0.40880289673805237}, {\"X\": 0.6440601348876953, \"Y\": 0.440552681684494}, {\"X\": 0.6368284821510315, \"Y\": 0.45130789279937744}, {\"X\": 0.5422723293304443, \"Y\": 0.4195580780506134}]}, \"Id\": \"984b2833-979b-4231-9551-ca060ac001d2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"955d5453-b79d-4aaa-93eb-deb0dd5d75d7\", \"baca505e-861c-4ad3-b1bb-2501cac93d0e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5903091430664, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10280270874500275, \"Height\": 0.042985621839761734, \"Left\": 0.6545891761779785, \"Top\": 0.44594135880470276}, \"Polygon\": [{\"X\": 0.6619423627853394, \"Y\": 0.44594135880470276}, {\"X\": 0.7573919296264648, \"Y\": 0.47799116373062134}, {\"X\": 0.750038743019104, \"Y\": 0.4889269769191742}, {\"X\": 0.6545891761779785, \"Y\": 0.456877201795578}]}, \"Id\": \"a40dce8d-299e-4b25-8455-7e3f73865098\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74d0efd8-5db3-4ea3-8471-aa66d1caf8d0\", \"f9a3c128-645d-49da-8246-ff9fea0a9d3b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6536636352539, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10230815410614014, \"Height\": 0.04280690476298332, \"Left\": 0.7671133875846863, \"Top\": 0.4828919768333435}, \"Polygon\": [{\"X\": 0.7744556069374084, \"Y\": 0.4828919768333435}, {\"X\": 0.8694215416908264, \"Y\": 0.5147793889045715}, {\"X\": 0.862079381942749, \"Y\": 0.5256989002227783}, {\"X\": 0.7671133875846863, \"Y\": 0.4938114583492279}]}, \"Id\": \"205b8116-d876-44ff-a0b9-73ccb0d1d9b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f9cdab16-cf9e-4891-9389-7fc3c9be2f22\", \"c00bde8c-1967-4aa9-83c5-98a083a0c6a8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7413330078125, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10233619064092636, \"Height\": 0.04275710508227348, \"Left\": 0.8799368739128113, \"Top\": 0.5200162529945374}, \"Polygon\": [{\"X\": 0.8872275948524475, \"Y\": 0.5200162529945374}, {\"X\": 0.9822730422019958, \"Y\": 0.5519303679466248}, {\"X\": 0.9749823212623596, \"Y\": 0.5627733469009399}, {\"X\": 0.8799368739128113, \"Y\": 0.5308592319488525}]}, \"Id\": \"0e26f8e7-f406-484d-bd99-fdec9038b92e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92c862b9-282d-434b-b4be-122afbc840ac\", \"0f54a5b5-9a27-4543-9a07-d80631e8aa6d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8294677734375, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1286146640777588, \"Height\": 0.051194388419389725, \"Left\": 0.25460124015808105, \"Top\": 0.394727885723114}, \"Polygon\": [{\"X\": 0.26155635714530945, \"Y\": 0.394727885723114}, {\"X\": 0.38321590423583984, \"Y\": 0.4355784058570862}, {\"X\": 0.37626075744628906, \"Y\": 0.44592228531837463}, {\"X\": 0.25460124015808105, \"Y\": 0.40507179498672485}]}, \"Id\": \"9e2dfe6c-852d-4eae-b452-fdfc10ae0e1a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b37a8bd1-2bee-4987-83fa-dc1c52fdcdb3\", \"97237e64-4a0c-408f-8b61-20defdf538c7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58436584472656, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08791708946228027, \"Height\": 0.03685661777853966, \"Left\": 0.6249081492424011, \"Top\": 0.5380719304084778}, \"Polygon\": [{\"X\": 0.6312792897224426, \"Y\": 0.5380719304084778}, {\"X\": 0.7128252387046814, \"Y\": 0.5654531717300415}, {\"X\": 0.7064540982246399, \"Y\": 0.5749285221099854}, {\"X\": 0.6249081492424011, \"Y\": 0.5475472807884216}]}, \"Id\": \"6682d2d4-258a-4c93-ab80-a8cb0afd64f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"71f70a7b-eb62-450e-b8b1-d58ad7bf0ec6\", \"855981a3-3368-4599-90eb-7759516d2944\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60946655273438, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08808533847332001, \"Height\": 0.03705166280269623, \"Left\": 0.7551831603050232, \"Top\": 0.5810605883598328}, \"Polygon\": [{\"X\": 0.7616746425628662, \"Y\": 0.5810605883598328}, {\"X\": 0.8432685136795044, \"Y\": 0.6084579825401306}, {\"X\": 0.8367770314216614, \"Y\": 0.6181122660636902}, {\"X\": 0.7551831603050232, \"Y\": 0.5907149314880371}]}, \"Id\": \"8cb1c577-430d-49e1-99f9-9d08917886d2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d5aac6ad-5f16-4d83-a165-7daac206c413\", \"91fd299d-6917-4c78-b58c-ea364e99da3c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60006713867188, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08749549835920334, \"Height\": 0.036700692027807236, \"Left\": 0.8863839507102966, \"Top\": 0.6242016553878784}, \"Polygon\": [{\"X\": 0.8927426338195801, \"Y\": 0.6242016553878784}, {\"X\": 0.9738794565200806, \"Y\": 0.6514455676078796}, {\"X\": 0.9675208330154419, \"Y\": 0.6609023213386536}, {\"X\": 0.8863839507102966, \"Y\": 0.6336584091186523}]}, \"Id\": \"8f4735b9-65c1-4cce-8231-d4bbbd5125cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4154c77e-2a3e-4a82-a88b-4d6a7b6f706e\", \"6bfa0f73-47fc-49ff-983e-92b215be3327\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63377380371094, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10228472203016281, \"Height\": 0.04233936220407486, \"Left\": 0.23464494943618774, \"Top\": 0.41732943058013916}, \"Polygon\": [{\"X\": 0.24158790707588196, \"Y\": 0.41732943058013916}, {\"X\": 0.33692967891693115, \"Y\": 0.4493430256843567}, {\"X\": 0.32998672127723694, \"Y\": 0.4596688151359558}, {\"X\": 0.23464494943618774, \"Y\": 0.4276552200317383}]}, \"Id\": \"c6479f15-4dd2-461c-939e-b439c552a34a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3dcbfe9c-81e8-4886-ab5f-0c2a12ecb46f\", \"10890554-b373-4195-813f-7f16fe534151\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46611785888672, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08710142225027084, \"Height\": 0.036600735038518906, \"Left\": 0.6149348616600037, \"Top\": 0.5541521310806274}, \"Polygon\": [{\"X\": 0.6213216781616211, \"Y\": 0.5541521310806274}, {\"X\": 0.7020363211631775, \"Y\": 0.581254243850708}, {\"X\": 0.6956495642662048, \"Y\": 0.5907528400421143}, {\"X\": 0.6149348616600037, \"Y\": 0.5636507272720337}]}, \"Id\": \"48858409-ded5-4e3c-8b9f-e7abe637c0a2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7c810566-b953-4f50-885b-509d25bccf6c\", \"d3ce25f2-34c2-45a4-8612-aea12d0f6251\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5529556274414, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08804622292518616, \"Height\": 0.03693828731775284, \"Left\": 0.7448387742042542, \"Top\": 0.5971137881278992}, \"Polygon\": [{\"X\": 0.7512431740760803, \"Y\": 0.5971137881278992}, {\"X\": 0.8328849673271179, \"Y\": 0.6245272159576416}, {\"X\": 0.8264805674552917, \"Y\": 0.6340520977973938}, {\"X\": 0.7448387742042542, \"Y\": 0.6066386103630066}]}, \"Id\": \"1e82c7de-4542-4ad9-a95d-43b47ab602ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2581f239-e172-4124-ae81-f1c0fee84a62\", \"f68a58a3-cb78-435b-8574-b72e67de7dd9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51480865478516, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0875958651304245, \"Height\": 0.03665905445814133, \"Left\": 0.8754211068153381, \"Top\": 0.6402406692504883}, \"Polygon\": [{\"X\": 0.8817143440246582, \"Y\": 0.6402406692504883}, {\"X\": 0.9630169868469238, \"Y\": 0.6675402522087097}, {\"X\": 0.9567237496376038, \"Y\": 0.6768997311592102}, {\"X\": 0.8754211068153381, \"Y\": 0.6496001482009888}]}, \"Id\": \"7b73139d-3ad2-4da7-9a77-57574da31be3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f9882a4-ff76-4745-9f2c-2aa0904ae451\", \"14e00334-bd38-429f-945f-3d482562ea9a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5494155883789, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08808750659227371, \"Height\": 0.036840301007032394, \"Left\": 0.6037472486495972, \"Top\": 0.5701810121536255}, \"Polygon\": [{\"X\": 0.6100544929504395, \"Y\": 0.5701810121536255}, {\"X\": 0.6918347477912903, \"Y\": 0.5976409316062927}, {\"X\": 0.685527503490448, \"Y\": 0.6070213317871094}, {\"X\": 0.6037472486495972, \"Y\": 0.5795613527297974}]}, \"Id\": \"1f8b084e-ce66-492d-93b0-de8122004093\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"465000d9-abbf-4125-b4b1-469f5764ec8e\", \"d808f490-8b9b-47a0-94c1-b72465998e0a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50193786621094, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08799659460783005, \"Height\": 0.036906953901052475, \"Left\": 0.7340845465660095, \"Top\": 0.6131269335746765}, \"Polygon\": [{\"X\": 0.7404761910438538, \"Y\": 0.6131269335746765}, {\"X\": 0.8220811486244202, \"Y\": 0.6405280232429504}, {\"X\": 0.8156894445419312, \"Y\": 0.6500338912010193}, {\"X\": 0.7340845465660095, \"Y\": 0.6226328015327454}]}, \"Id\": \"cb943659-f581-41ad-bdd1-2fe211183e76\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00f8e3e2-28c8-4a5f-81ec-473961defcd5\", \"c120d3fa-42e2-4678-9f65-62b5a0487563\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67903900146484, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08713586628437042, \"Height\": 0.036510027945041656, \"Left\": 0.8653528690338135, \"Top\": 0.6563483476638794}, \"Polygon\": [{\"X\": 0.8716508150100708, \"Y\": 0.6563483476638794}, {\"X\": 0.9524887204170227, \"Y\": 0.6834918856620789}, {\"X\": 0.9461907744407654, \"Y\": 0.6928583979606628}, {\"X\": 0.8653528690338135, \"Y\": 0.6657148599624634}]}, \"Id\": \"a7ecd381-c391-4460-a6df-18015a662742\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"95c6ad1c-851b-40cd-8a3e-6e79badefd60\", \"02165627-923c-4050-984e-66f88a45415a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2023696899414, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08808755874633789, \"Height\": 0.036898624151945114, \"Left\": 0.5933303236961365, \"Top\": 0.5861320495605469}, \"Polygon\": [{\"X\": 0.5996882319450378, \"Y\": 0.5861320495605469}, {\"X\": 0.6814178824424744, \"Y\": 0.6135749816894531}, {\"X\": 0.675059974193573, \"Y\": 0.6230306625366211}, {\"X\": 0.5933303236961365, \"Y\": 0.5955877304077148}]}, \"Id\": \"c1185fec-82b3-45f0-9428-a70ef1819c41\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ae8874ec-d9e4-4026-93fa-8dced4e9dbd2\", \"f56dcdf5-469a-4081-b5a4-777a6e6ef3d5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56488037109375, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0876498594880104, \"Height\": 0.036756739020347595, \"Left\": 0.7237288951873779, \"Top\": 0.6290451884269714}, \"Polygon\": [{\"X\": 0.7300912141799927, \"Y\": 0.6290451884269714}, {\"X\": 0.8113787770271301, \"Y\": 0.656339704990387}, {\"X\": 0.8050164580345154, \"Y\": 0.6658019423484802}, {\"X\": 0.7237288951873779, \"Y\": 0.6385074257850647}]}, \"Id\": \"ed4c765c-0423-483a-9592-1c0337faf8e3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fd8234d-2997-407d-9d50-0c734efad5d2\", \"4f0ea0f7-8c46-460c-a9ca-d44f293ecf47\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64393615722656, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08763448894023895, \"Height\": 0.03678441792726517, \"Left\": 0.8543810248374939, \"Top\": 0.6722767353057861}, \"Polygon\": [{\"X\": 0.860771894454956, \"Y\": 0.6722767353057861}, {\"X\": 0.942015528678894, \"Y\": 0.6995564699172974}, {\"X\": 0.9356247186660767, \"Y\": 0.7090611457824707}, {\"X\": 0.8543810248374939, \"Y\": 0.6817813515663147}]}, \"Id\": \"9e072671-732d-4e54-8905-6bbcc3905436\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"534ec783-b9fc-4f6a-b5ea-ba56f4f83932\", \"b07ae6ed-525a-4004-8e94-bc32bbf7f028\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54338073730469, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08777134865522385, \"Height\": 0.03679599612951279, \"Left\": 0.58290696144104, \"Top\": 0.6022723317146301}, \"Polygon\": [{\"X\": 0.5892679691314697, \"Y\": 0.6022723317146301}, {\"X\": 0.6706783175468445, \"Y\": 0.6296080946922302}, {\"X\": 0.6643173694610596, \"Y\": 0.6390683650970459}, {\"X\": 0.58290696144104, \"Y\": 0.6117326021194458}]}, \"Id\": \"6f954eb8-d663-4a8b-b14d-e97f41a1003e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ed4dcc8e-4e8e-46ee-ba7b-00a815be1962\", \"c134b23b-3cef-4d1a-ad42-878291cc88f0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55445861816406, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08772682398557663, \"Height\": 0.03686174377799034, \"Left\": 0.7131973505020142, \"Top\": 0.645247757434845}, \"Polygon\": [{\"X\": 0.7196284532546997, \"Y\": 0.645247757434845}, {\"X\": 0.8009241819381714, \"Y\": 0.6725450754165649}, {\"X\": 0.7944931387901306, \"Y\": 0.682109534740448}, {\"X\": 0.7131973505020142, \"Y\": 0.6548122763633728}]}, \"Id\": \"55c8e3df-e855-47bc-a606-bb24062e73c4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63e0f52a-326f-4cfd-9a7c-82624614c799\", \"d7b33a2d-262e-4527-b0c8-685e5de564de\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67048645019531, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08728813380002975, \"Height\": 0.036585886031389236, \"Left\": 0.8439681529998779, \"Top\": 0.6882948875427246}, \"Polygon\": [{\"X\": 0.8502875566482544, \"Y\": 0.6882948875427246}, {\"X\": 0.9312562346458435, \"Y\": 0.7154823541641235}, {\"X\": 0.924936830997467, \"Y\": 0.7248807549476624}, {\"X\": 0.8439681529998779, \"Y\": 0.6976933479309082}]}, \"Id\": \"c0aecf8c-e561-420c-b363-797999776905\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79441b89-c8a1-4ec7-b974-7245f49c2581\", \"d3944d21-1fd9-4a36-9418-94a4821db20c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45556640625, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08899317681789398, \"Height\": 0.037219855934381485, \"Left\": 0.572438657283783, \"Top\": 0.6183403134346008}, \"Polygon\": [{\"X\": 0.5788114070892334, \"Y\": 0.6183403134346008}, {\"X\": 0.6614317893981934, \"Y\": 0.64608234167099}, {\"X\": 0.6550590395927429, \"Y\": 0.6555601954460144}, {\"X\": 0.572438657283783, \"Y\": 0.6278181672096252}]}, \"Id\": \"32f82c7e-7b5f-42d1-8fce-c4b48e00fa40\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a763a10b-b4f7-4da3-8d93-1907916d777f\", \"f59d4773-e508-4fb5-8175-abddc4d4df97\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4608383178711, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08792639523744583, \"Height\": 0.036941803991794586, \"Left\": 0.7026122808456421, \"Top\": 0.6611255407333374}, \"Polygon\": [{\"X\": 0.709054708480835, \"Y\": 0.6611255407333374}, {\"X\": 0.7905386686325073, \"Y\": 0.6884860396385193}, {\"X\": 0.7840962409973145, \"Y\": 0.6980673670768738}, {\"X\": 0.7026122808456421, \"Y\": 0.6707068681716919}]}, \"Id\": \"aa158c1c-0346-4902-8f8d-ad0d1a0f4c00\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8b537601-636d-4f0e-8db1-d2030544c4e4\", \"2ab4004d-ff7e-43f8-b362-0fe020eecc3d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37129974365234, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08758964389562607, \"Height\": 0.03678865730762482, \"Left\": 0.8332221508026123, \"Top\": 0.7042311429977417}, \"Polygon\": [{\"X\": 0.8396297693252563, \"Y\": 0.7042311429977417}, {\"X\": 0.9208118319511414, \"Y\": 0.7314902544021606}, {\"X\": 0.9144042134284973, \"Y\": 0.7410198450088501}, {\"X\": 0.8332221508026123, \"Y\": 0.7137607336044312}]}, \"Id\": \"f34ec28e-376d-4850-9bd5-0ebf7239ab2f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c713ccd-79ab-4c4c-a81f-8d4e740613b5\", \"9c5a63b0-dbba-4db6-ba55-96a80570f63c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44438171386719, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08808886259794235, \"Height\": 0.036846961826086044, \"Left\": 0.5615569949150085, \"Top\": 0.6342814564704895}, \"Polygon\": [{\"X\": 0.5678696036338806, \"Y\": 0.6342814564704895}, {\"X\": 0.6496458649635315, \"Y\": 0.6617400646209717}, {\"X\": 0.6433331966400146, \"Y\": 0.6711284518241882}, {\"X\": 0.5615569949150085, \"Y\": 0.643669843673706}]}, \"Id\": \"c3d5f51b-9d54-4f3b-aad8-3c2550688e26\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"94e8ca27-ebe1-4847-8814-f5d16936c13a\", \"3b837673-1e72-4654-839d-00445acda652\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4454345703125, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08792392164468765, \"Height\": 0.036859527230262756, \"Left\": 0.6920057535171509, \"Top\": 0.677168071269989}, \"Polygon\": [{\"X\": 0.6983774304389954, \"Y\": 0.677168071269989}, {\"X\": 0.7799296975135803, \"Y\": 0.7045514583587646}, {\"X\": 0.7735580205917358, \"Y\": 0.7140275835990906}, {\"X\": 0.6920057535171509, \"Y\": 0.6866441965103149}]}, \"Id\": \"f6a462ce-60d6-41cf-9000-47c8b270267f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"16dd2454-cd27-478e-be76-2c936a0d4651\", \"3197ed44-1068-4d43-b232-d9a3b351156f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59178924560547, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08720410615205765, \"Height\": 0.036529362201690674, \"Left\": 0.8229712247848511, \"Top\": 0.7203177213668823}, \"Polygon\": [{\"X\": 0.8292660713195801, \"Y\": 0.7203177213668823}, {\"X\": 0.9101753234863281, \"Y\": 0.7474852204322815}, {\"X\": 0.9038804769515991, \"Y\": 0.756847083568573}, {\"X\": 0.8229712247848511, \"Y\": 0.7296796441078186}]}, \"Id\": \"f255e6a1-e812-429e-88fe-0344a65b9e9f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"56ac4b62-e05c-4fb2-8904-4e2ce4c2c533\", \"2e48cae5-fc21-42ee-838c-fba47203f8d1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5727767944336, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08771262317895889, \"Height\": 0.03684854134917259, \"Left\": 0.5511859059333801, \"Top\": 0.6502282023429871}, \"Polygon\": [{\"X\": 0.5576096177101135, \"Y\": 0.6502282023429871}, {\"X\": 0.638898491859436, \"Y\": 0.6775231957435608}, {\"X\": 0.6324747800827026, \"Y\": 0.68707674741745}, {\"X\": 0.5511859059333801, \"Y\": 0.659781813621521}]}, \"Id\": \"91e188ab-cdb8-4a2b-90c5-352204fc04df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"12ac106d-84f9-4ac7-907f-0eea5600f05e\", \"59fb02a3-b4d5-43c5-82e4-3cbbd30c6d8f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52116394042969, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0877065658569336, \"Height\": 0.036800578236579895, \"Left\": 0.6815342307090759, \"Top\": 0.6931678056716919}, \"Polygon\": [{\"X\": 0.6879181265830994, \"Y\": 0.6931678056716919}, {\"X\": 0.7692407965660095, \"Y\": 0.720474123954773}, {\"X\": 0.7628569602966309, \"Y\": 0.7299683690071106}, {\"X\": 0.6815342307090759, \"Y\": 0.7026620507240295}]}, \"Id\": \"45ebf71b-2f61-4fd5-a5e3-c0a87cde7527\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74ca7f1e-8997-4e8c-9a16-1fefa0cd175a\", \"daef264c-791e-4834-8bd9-74ae00d895b5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60894775390625, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08744033426046371, \"Height\": 0.03661244735121727, \"Left\": 0.8122298717498779, \"Top\": 0.7363762855529785}, \"Polygon\": [{\"X\": 0.8185279965400696, \"Y\": 0.7363762855529785}, {\"X\": 0.8996702432632446, \"Y\": 0.763621985912323}, {\"X\": 0.893372118473053, \"Y\": 0.7729887366294861}, {\"X\": 0.8122298717498779, \"Y\": 0.7457430362701416}]}, \"Id\": \"66935092-a2cc-4329-9910-cc9f1971b9a8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7ee22801-e5b0-4581-9b91-09cdbead9d96\", \"a3a4aaa2-5e6b-4e5b-92be-48cd675db5df\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63687133789062, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10182563215494156, \"Height\": 0.04219891130924225, \"Left\": 0.15769024193286896, \"Top\": 0.5363900065422058}, \"Polygon\": [{\"X\": 0.16464509069919586, \"Y\": 0.5363900065422058}, {\"X\": 0.2595158815383911, \"Y\": 0.5682454705238342}, {\"X\": 0.2525610029697418, \"Y\": 0.5785889029502869}, {\"X\": 0.15769024193286896, \"Y\": 0.5467334389686584}]}, \"Id\": \"1b981e72-95e7-40ef-9cde-0cbb5fed2192\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"93fdd176-f824-4f2a-82eb-eb854c49d3db\", \"6ccbfc9d-7c22-4528-8405-11390f965265\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8155517578125, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12871567904949188, \"Height\": 0.051306240260601044, \"Left\": 0.14754681289196014, \"Top\": 0.5508482456207275}, \"Polygon\": [{\"X\": 0.15456964075565338, \"Y\": 0.5508482456207275}, {\"X\": 0.276262491941452, \"Y\": 0.5917099118232727}, {\"X\": 0.2692396640777588, \"Y\": 0.6021544337272644}, {\"X\": 0.14754681289196014, \"Y\": 0.5612927675247192}]}, \"Id\": \"5d55906a-3393-44c2-bd75-4ad7f76fdfed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"65d2db04-9deb-4b5e-ac3d-dbca56309fa9\", \"002f9803-87c2-41d0-883c-0d02683f3a0b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 88.64022827148438, \"Text\": \"Hello World - barcode herel\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10274039953947067, \"Height\": 0.03754120320081711, \"Left\": 0.6164585947990417, \"Top\": 0.8286751508712769}, \"Polygon\": [{\"X\": 0.6191016435623169, \"Y\": 0.8286751508712769}, {\"X\": 0.719199001789093, \"Y\": 0.8622855544090271}, {\"X\": 0.7165559530258179, \"Y\": 0.8662163019180298}, {\"X\": 0.6164585947990417, \"Y\": 0.8326058983802795}]}, \"Id\": \"649d3ced-bdce-4a3a-8119-2f92b8a15ee3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"de769daa-3740-4d90-b7e7-90c5a1c223fd\", \"f6a4dfad-4ddc-4a8e-beac-b5b9753087cb\", \"168c1ce4-5354-432e-bc60-9effdf3b4963\", \"a6a3761b-ea86-4bd3-9a7c-14b04d38a02a\", \"d5eb432d-dc19-4308-9e60-291cca26e509\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46941375732422, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05402681976556778, \"Height\": 0.02558101713657379, \"Left\": 0.45747724175453186, \"Top\": 0.09723073244094849}, \"Polygon\": [{\"X\": 0.4639386832714081, \"Y\": 0.09723073244094849}, {\"X\": 0.511504054069519, \"Y\": 0.11320210248231888}, {\"X\": 0.5050426125526428, \"Y\": 0.12281175702810287}, {\"X\": 0.45747724175453186, \"Y\": 0.10684038698673248}]}, \"Id\": \"aac44c65-2479-4d07-af1d-5f4dc8aeb1bc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58428955078125, \"Text\": \"SomeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09148278087377548, \"Height\": 0.0381520614027977, \"Left\": 0.5088538527488708, \"Top\": 0.1139397919178009}, \"Polygon\": [{\"X\": 0.5153102278709412, \"Y\": 0.1139397919178009}, {\"X\": 0.6003366112709045, \"Y\": 0.1424897164106369}, {\"X\": 0.5938802361488342, \"Y\": 0.152091845870018}, {\"X\": 0.5088538527488708, \"Y\": 0.1235419288277626}]}, \"Id\": \"4e7019f1-a16b-4f93-9640-9c5cc461e9e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83688354492188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04811674728989601, \"Height\": 0.02359061688184738, \"Left\": 0.42177191376686096, \"Top\": 0.19193340837955475}, \"Polygon\": [{\"X\": 0.4282281994819641, \"Y\": 0.19193340837955475}, {\"X\": 0.4698886573314667, \"Y\": 0.20592205226421356}, {\"X\": 0.4634323716163635, \"Y\": 0.21552403271198273}, {\"X\": 0.42177191376686096, \"Y\": 0.2015354037284851}]}, \"Id\": \"14efd8d3-c4ef-4f3b-9092-d94a952275e0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29059600830078, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04194817319512367, \"Height\": 0.021575622260570526, \"Left\": 0.46810752153396606, \"Top\": 0.20680825412273407}, \"Polygon\": [{\"X\": 0.47461268305778503, \"Y\": 0.20680825412273407}, {\"X\": 0.510055661201477, \"Y\": 0.21870920062065125}, {\"X\": 0.5035505294799805, \"Y\": 0.228383868932724}, {\"X\": 0.46810752153396606, \"Y\": 0.21648292243480682}]}, \"Id\": \"95fce50a-0d3e-4678-9382-b92ee5e46322\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7374267578125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04846269264817238, \"Height\": 0.023690685629844666, \"Left\": 0.5207816362380981, \"Top\": 0.22464905679225922}, \"Polygon\": [{\"X\": 0.5272239446640015, \"Y\": 0.22464905679225922}, {\"X\": 0.5692443251609802, \"Y\": 0.23875854909420013}, {\"X\": 0.5628020167350769, \"Y\": 0.24833974242210388}, {\"X\": 0.5207816362380981, \"Y\": 0.23423026502132416}]}, \"Id\": \"e9384481-6efd-4744-93a1-d1e133a74def\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07876586914062, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04122651740908623, \"Height\": 0.02096465788781643, \"Left\": 0.5681926012039185, \"Top\": 0.2404920905828476}, \"Polygon\": [{\"X\": 0.5743775963783264, \"Y\": 0.2404920905828476}, {\"X\": 0.6094191074371338, \"Y\": 0.2522582411766052}, {\"X\": 0.6032341122627258, \"Y\": 0.26145675778388977}, {\"X\": 0.5681926012039185, \"Y\": 0.24969060719013214}]}, \"Id\": \"9d7b440b-f967-4f45-81bd-1d3b56a3655c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66737365722656, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04803368076682091, \"Height\": 0.023472782224416733, \"Left\": 0.6206056475639343, \"Top\": 0.257429301738739}, \"Polygon\": [{\"X\": 0.6269838213920593, \"Y\": 0.257429301738739}, {\"X\": 0.6686393618583679, \"Y\": 0.2714162766933441}, {\"X\": 0.6622611880302429, \"Y\": 0.28090208768844604}, {\"X\": 0.6206056475639343, \"Y\": 0.26691511273384094}]}, \"Id\": \"bb2065bb-04b9-453f-b24b-706deaf19d9c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34175872802734, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04108633100986481, \"Height\": 0.021143432706594467, \"Left\": 0.6674113869667053, \"Top\": 0.27306991815567017}, \"Polygon\": [{\"X\": 0.6737925410270691, \"Y\": 0.27306991815567017}, {\"X\": 0.7084977030754089, \"Y\": 0.2847231328487396}, {\"X\": 0.7021166086196899, \"Y\": 0.29421335458755493}, {\"X\": 0.6674113869667053, \"Y\": 0.2825601398944855}]}, \"Id\": \"6b6c3d85-6408-4e05-973a-a16e8500c646\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77809143066406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04782933369278908, \"Height\": 0.023312266916036606, \"Left\": 0.41145867109298706, \"Top\": 0.20809294283390045}, \"Polygon\": [{\"X\": 0.4177570343017578, \"Y\": 0.20809294283390045}, {\"X\": 0.45928800106048584, \"Y\": 0.22203810513019562}, {\"X\": 0.4529896378517151, \"Y\": 0.23140521347522736}, {\"X\": 0.41145867109298706, \"Y\": 0.2174600511789322}]}, \"Id\": \"1954d087-e560-481a-8f9e-d6ce0881f599\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9802017211914, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041410043835639954, \"Height\": 0.021172767505049706, \"Left\": 0.45796459913253784, \"Top\": 0.22356663644313812}, \"Polygon\": [{\"X\": 0.46427682042121887, \"Y\": 0.22356663644313812}, {\"X\": 0.499374657869339, \"Y\": 0.23535168170928955}, {\"X\": 0.49306243658065796, \"Y\": 0.24473939836025238}, {\"X\": 0.45796459913253784, \"Y\": 0.23295435309410095}]}, \"Id\": \"33c6ac42-ae05-4803-9a9d-4d078bdca6b3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79907989501953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048218537122011185, \"Height\": 0.023571375757455826, \"Left\": 0.5105072259902954, \"Top\": 0.2406264990568161}, \"Polygon\": [{\"X\": 0.5169171690940857, \"Y\": 0.2406264990568161}, {\"X\": 0.5587257742881775, \"Y\": 0.25466489791870117}, {\"X\": 0.552315890789032, \"Y\": 0.26419785618782043}, {\"X\": 0.5105072259902954, \"Y\": 0.25015947222709656}]}, \"Id\": \"7d7e70b9-3558-4291-973c-dd528bc2d4b1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35812377929688, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04147554561495781, \"Height\": 0.02115693688392639, \"Left\": 0.5572726726531982, \"Top\": 0.2563555836677551}, \"Polygon\": [{\"X\": 0.5635520219802856, \"Y\": 0.2563555836677551}, {\"X\": 0.5987482070922852, \"Y\": 0.2681736350059509}, {\"X\": 0.5924688577651978, \"Y\": 0.2775125205516815}, {\"X\": 0.5572726726531982, \"Y\": 0.26569443941116333}]}, \"Id\": \"11930c0b-deee-4a89-a31e-628e6d87dae4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61040496826172, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04833979532122612, \"Height\": 0.023597626015543938, \"Left\": 0.6098637580871582, \"Top\": 0.2734277844429016}, \"Polygon\": [{\"X\": 0.6162611246109009, \"Y\": 0.2734277844429016}, {\"X\": 0.6582036018371582, \"Y\": 0.28751111030578613}, {\"X\": 0.6518062353134155, \"Y\": 0.2970254123210907}, {\"X\": 0.6098637580871582, \"Y\": 0.2829420864582062}]}, \"Id\": \"0d694900-1e0e-4c33-abb4-6a0ec161f098\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24026489257812, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04113300144672394, \"Height\": 0.0209656935185194, \"Left\": 0.656495213508606, \"Top\": 0.2890443503856659}, \"Polygon\": [{\"X\": 0.6627084016799927, \"Y\": 0.2890443503856659}, {\"X\": 0.6976282000541687, \"Y\": 0.3007696270942688}, {\"X\": 0.691415011882782, \"Y\": 0.31001004576683044}, {\"X\": 0.656495213508606, \"Y\": 0.29828476905822754}]}, \"Id\": \"d8b3a80b-dd6f-4f31-a5cf-c5b2d34b8620\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82254791259766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04788883402943611, \"Height\": 0.023316193372011185, \"Left\": 0.4007546305656433, \"Top\": 0.22403143346309662}, \"Polygon\": [{\"X\": 0.407039076089859, \"Y\": 0.22403143346309662}, {\"X\": 0.4486434757709503, \"Y\": 0.2380012571811676}, {\"X\": 0.442359060049057, \"Y\": 0.2473476380109787}, {\"X\": 0.4007546305656433, \"Y\": 0.23337781429290771}]}, \"Id\": \"9ca749e2-5e6e-4907-b05b-a7270b8621d3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.69496154785156, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04146428406238556, \"Height\": 0.02107229270040989, \"Left\": 0.4474865198135376, \"Top\": 0.23970365524291992}, \"Polygon\": [{\"X\": 0.4536956548690796, \"Y\": 0.23970365524291992}, {\"X\": 0.48895078897476196, \"Y\": 0.25154152512550354}, {\"X\": 0.48274165391921997, \"Y\": 0.26077595353126526}, {\"X\": 0.4474865198135376, \"Y\": 0.24893808364868164}]}, \"Id\": \"fe70d695-23ae-4999-8160-07481707296d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73805236816406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048230644315481186, \"Height\": 0.023421771824359894, \"Left\": 0.49985429644584656, \"Top\": 0.2567211091518402}, \"Polygon\": [{\"X\": 0.5061307549476624, \"Y\": 0.2567211091518402}, {\"X\": 0.5480849742889404, \"Y\": 0.2708083987236023}, {\"X\": 0.5418084859848022, \"Y\": 0.2801429033279419}, {\"X\": 0.49985429644584656, \"Y\": 0.2660556137561798}]}, \"Id\": \"e8e92a8e-9700-4eda-9bd5-ed1a1de77ad1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48865509033203, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0411369651556015, \"Height\": 0.02086501009762287, \"Left\": 0.5467438697814941, \"Top\": 0.27233943343162537}, \"Polygon\": [{\"X\": 0.5528684854507446, \"Y\": 0.27233943343162537}, {\"X\": 0.5878808498382568, \"Y\": 0.28409579396247864}, {\"X\": 0.5817562937736511, \"Y\": 0.2932044267654419}, {\"X\": 0.5467438697814941, \"Y\": 0.2814480662345886}]}, \"Id\": \"07020f43-29af-42bf-bef8-37cd88e4ce4c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6219482421875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04751836508512497, \"Height\": 0.023135123774409294, \"Left\": 0.5998355150222778, \"Top\": 0.2896442711353302}, \"Polygon\": [{\"X\": 0.6060706973075867, \"Y\": 0.2896442711353302}, {\"X\": 0.6473538875579834, \"Y\": 0.3035062253475189}, {\"X\": 0.6411186456680298, \"Y\": 0.31277939677238464}, {\"X\": 0.5998355150222778, \"Y\": 0.2989174425601959}]}, \"Id\": \"2870f5fc-0673-48ff-be7b-2dd444250a15\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65279388427734, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040879327803850174, \"Height\": 0.020777111873030663, \"Left\": 0.6461832523345947, \"Top\": 0.30510932207107544}, \"Polygon\": [{\"X\": 0.6523066163063049, \"Y\": 0.30510932207107544}, {\"X\": 0.6870625615119934, \"Y\": 0.31677958369255066}, {\"X\": 0.6809391975402832, \"Y\": 0.32588642835617065}, {\"X\": 0.6461832523345947, \"Y\": 0.31421616673469543}]}, \"Id\": \"3d7117d0-3570-48af-9629-99bdcbbb47e5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87886810302734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055609993636608124, \"Height\": 0.027082256972789764, \"Left\": 0.5912203192710876, \"Top\": 0.33436596393585205}, \"Polygon\": [{\"X\": 0.5985238552093506, \"Y\": 0.33436596393585205}, {\"X\": 0.6468303203582764, \"Y\": 0.3505861759185791}, {\"X\": 0.6395267844200134, \"Y\": 0.3614482283592224}, {\"X\": 0.5912203192710876, \"Y\": 0.34522801637649536}]}, \"Id\": \"2bbdb3b6-ff12-494f-8ca5-b47ef0b8e8fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23189544677734, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048255614936351776, \"Height\": 0.024487800896167755, \"Left\": 0.6447231769561768, \"Top\": 0.3523285984992981}, \"Polygon\": [{\"X\": 0.6519181132316589, \"Y\": 0.3523285984992981}, {\"X\": 0.6929787993431091, \"Y\": 0.3661158084869385}, {\"X\": 0.6857838034629822, \"Y\": 0.37681639194488525}, {\"X\": 0.6447231769561768, \"Y\": 0.3630291521549225}]}, \"Id\": \"43ca9c68-2cbd-4265-bce1-daefeb6f859f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85277557373047, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0555901937186718, \"Height\": 0.027145346626639366, \"Left\": 0.7035394310951233, \"Top\": 0.37141406536102295}, \"Polygon\": [{\"X\": 0.710903525352478, \"Y\": 0.37141406536102295}, {\"X\": 0.7591296434402466, \"Y\": 0.38760730624198914}, {\"X\": 0.7517654895782471, \"Y\": 0.39855942130088806}, {\"X\": 0.7035394310951233, \"Y\": 0.38236621022224426}]}, \"Id\": \"53e94bdf-7c98-446b-a99b-f28ae0c464ae\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32813262939453, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04908629134297371, \"Height\": 0.025010935962200165, \"Left\": 0.7572552561759949, \"Top\": 0.3893638849258423}, \"Polygon\": [{\"X\": 0.7646623253822327, \"Y\": 0.3893638849258423}, {\"X\": 0.8063415884971619, \"Y\": 0.4033588171005249}, {\"X\": 0.7989345192909241, \"Y\": 0.41437482833862305}, {\"X\": 0.7572552561759949, \"Y\": 0.40037986636161804}]}, \"Id\": \"1e753f37-ee6f-45cf-8fec-1cbaa3a3c38d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86775207519531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05580645799636841, \"Height\": 0.027299903333187103, \"Left\": 0.8159891366958618, \"Top\": 0.40847522020339966}, \"Polygon\": [{\"X\": 0.8234244585037231, \"Y\": 0.40847522020339966}, {\"X\": 0.8717955946922302, \"Y\": 0.42471715807914734}, {\"X\": 0.8643603324890137, \"Y\": 0.43577513098716736}, {\"X\": 0.8159891366958618, \"Y\": 0.4195331931114197}]}, \"Id\": \"dc9eb4d2-203f-4328-a518-5f24418e4667\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42210388183594, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04822322353720665, \"Height\": 0.02440284751355648, \"Left\": 0.8701033592224121, \"Top\": 0.4266713261604309}, \"Polygon\": [{\"X\": 0.8772339820861816, \"Y\": 0.4266713261604309}, {\"X\": 0.9183265566825867, \"Y\": 0.44046929478645325}, {\"X\": 0.9111959338188171, \"Y\": 0.45107418298721313}, {\"X\": 0.8701033592224121, \"Y\": 0.4372762143611908}]}, \"Id\": \"de82a435-9167-42ef-a09b-eaa4d1f8a2d5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89209747314453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05568593740463257, \"Height\": 0.026935894042253494, \"Left\": 0.9282999038696289, \"Top\": 0.44558772444725037}, \"Polygon\": [{\"X\": 0.9354541897773743, \"Y\": 0.44558772444725037}, {\"X\": 0.9839858412742615, \"Y\": 0.461883544921875}, {\"X\": 0.9768315553665161, \"Y\": 0.47252362966537476}, {\"X\": 0.9282999038696289, \"Y\": 0.4562278091907501}]}, \"Id\": \"9247512b-de9b-4b2f-b1da-c13499f96442\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5264892578125, \"Text\": \"2.\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01818953827023506, \"Height\": 0.015166863799095154, \"Left\": 0.981810450553894, \"Top\": 0.4639890193939209}, \"Polygon\": [{\"X\": 0.9886674880981445, \"Y\": 0.4639890193939209}, {\"X\": 1.0, \"Y\": 0.4689578711986542}, {\"X\": 0.996608555316925, \"Y\": 0.47915589809417725}, {\"X\": 0.981810450553894, \"Y\": 0.4741870164871216}]}, \"Id\": \"75421daf-416b-4baf-922d-e39233dc6bf9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82762908935547, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05607713386416435, \"Height\": 0.027295509353280067, \"Left\": 0.578667938709259, \"Top\": 0.35279127955436707}, \"Polygon\": [{\"X\": 0.5860204696655273, \"Y\": 0.35279127955436707}, {\"X\": 0.6347450613975525, \"Y\": 0.36915189027786255}, {\"X\": 0.6273925304412842, \"Y\": 0.3800867795944214}, {\"X\": 0.578667938709259, \"Y\": 0.3637261688709259}]}, \"Id\": \"ab748773-6b28-4b1d-b4a9-4c314f131b8b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.32989501953125, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04852980002760887, \"Height\": 0.02444007247686386, \"Left\": 0.6325461268424988, \"Top\": 0.37102627754211426}, \"Polygon\": [{\"X\": 0.6396197080612183, \"Y\": 0.37102627754211426}, {\"X\": 0.681075930595398, \"Y\": 0.384946346282959}, {\"X\": 0.6740023493766785, \"Y\": 0.3954663574695587}, {\"X\": 0.6325461268424988, \"Y\": 0.381546288728714}]}, \"Id\": \"9860c1ec-c7c5-44b8-843a-adbac3684e70\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85931396484375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055531132966279984, \"Height\": 0.02714359201490879, \"Left\": 0.6913509964942932, \"Top\": 0.3899586796760559}, \"Polygon\": [{\"X\": 0.6987307667732239, \"Y\": 0.3899586796760559}, {\"X\": 0.7468820810317993, \"Y\": 0.40612679719924927}, {\"X\": 0.7395023107528687, \"Y\": 0.41710227727890015}, {\"X\": 0.6913509964942932, \"Y\": 0.4009341597557068}]}, \"Id\": \"7c8f741f-bc13-4ce2-b8f5-b7b443f9eae5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.16194152832031, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048999082297086716, \"Height\": 0.024608321487903595, \"Left\": 0.7450006008148193, \"Top\": 0.40807557106018066}, \"Polygon\": [{\"X\": 0.752083420753479, \"Y\": 0.40807557106018066}, {\"X\": 0.7939996719360352, \"Y\": 0.4221501052379608}, {\"X\": 0.7869168519973755, \"Y\": 0.43268391489982605}, {\"X\": 0.7450006008148193, \"Y\": 0.4186093807220459}]}, \"Id\": \"c405d33c-f1d1-49f3-a04b-60679da47b15\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85906982421875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05582009628415108, \"Height\": 0.027321692556142807, \"Left\": 0.8040366172790527, \"Top\": 0.4270099401473999}, \"Polygon\": [{\"X\": 0.8114868402481079, \"Y\": 0.4270099401473999}, {\"X\": 0.8598567247390747, \"Y\": 0.44325143098831177}, {\"X\": 0.8524065017700195, \"Y\": 0.454331636428833}, {\"X\": 0.8040366172790527, \"Y\": 0.43809014558792114}]}, \"Id\": \"3194fd16-348a-445d-8448-0d2fe6f5075e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31200408935547, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048239391297101974, \"Height\": 0.024324802681803703, \"Left\": 0.8580005168914795, \"Top\": 0.44531726837158203}, \"Polygon\": [{\"X\": 0.8650586605072021, \"Y\": 0.44531726837158203}, {\"X\": 0.906239926815033, \"Y\": 0.4591449797153473}, {\"X\": 0.8991817831993103, \"Y\": 0.4696420431137085}, {\"X\": 0.8580005168914795, \"Y\": 0.45581433176994324}]}, \"Id\": \"352aa3e0-914c-4831-a959-545d9f2f4dd8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86955261230469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05620792880654335, \"Height\": 0.0272844135761261, \"Left\": 0.9160271883010864, \"Top\": 0.46409687399864197}, \"Polygon\": [{\"X\": 0.9233319163322449, \"Y\": 0.46409687399864197}, {\"X\": 0.9722351431846619, \"Y\": 0.4805174469947815}, {\"X\": 0.9649303555488586, \"Y\": 0.49138128757476807}, {\"X\": 0.9160271883010864, \"Y\": 0.47496071457862854}]}, \"Id\": \"68c869ce-170a-4961-9ff6-6a9b507be7d5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 67.63274383544922, \"Text\": \"2.2.\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03013312816619873, \"Height\": 0.019834335893392563, \"Left\": 0.9698668718338013, \"Top\": 0.48237597942352295}, \"Polygon\": [{\"X\": 0.9768850803375244, \"Y\": 0.48237597942352295}, {\"X\": 1.0, \"Y\": 0.4917726218700409}, {\"X\": 0.9978516101837158, \"Y\": 0.5022103190422058}, {\"X\": 0.9698668718338013, \"Y\": 0.49281367659568787}]}, \"Id\": \"bce6d2fa-c465-4612-b853-9a3e8920f0e7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87207794189453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055636707693338394, \"Height\": 0.027103092521429062, \"Left\": 0.5666019320487976, \"Top\": 0.3715755343437195}, \"Polygon\": [{\"X\": 0.5739157795906067, \"Y\": 0.3715755343437195}, {\"X\": 0.6222386360168457, \"Y\": 0.38780125975608826}, {\"X\": 0.6149247884750366, \"Y\": 0.39867863059043884}, {\"X\": 0.5666019320487976, \"Y\": 0.38245290517807007}]}, \"Id\": \"544f2d88-12a8-4324-aeab-8193ca2e5177\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3787612915039, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047934696078300476, \"Height\": 0.024306582286953926, \"Left\": 0.6204583644866943, \"Top\": 0.38966020941734314}, \"Polygon\": [{\"X\": 0.6275895237922668, \"Y\": 0.38966020941734314}, {\"X\": 0.6683930158615112, \"Y\": 0.40336111187934875}, {\"X\": 0.6612618565559387, \"Y\": 0.4139668047428131}, {\"X\": 0.6204583644866943, \"Y\": 0.4002659022808075}]}, \"Id\": \"0ab9aefb-3c3d-4921-814f-5c11f421e56a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84317779541016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05532478168606758, \"Height\": 0.026856042444705963, \"Left\": 0.6791436672210693, \"Top\": 0.4087226390838623}, \"Polygon\": [{\"X\": 0.6863338947296143, \"Y\": 0.4087226390838623}, {\"X\": 0.7344684600830078, \"Y\": 0.424885094165802}, {\"X\": 0.7272781729698181, \"Y\": 0.43557867407798767}, {\"X\": 0.6791436672210693, \"Y\": 0.4194161891937256}]}, \"Id\": \"3a7eb20d-5744-45fe-9459-a799dde97379\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33905029296875, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04849232733249664, \"Height\": 0.024478312581777573, \"Left\": 0.7330110669136047, \"Top\": 0.42663460969924927}, \"Polygon\": [{\"X\": 0.740128755569458, \"Y\": 0.42663460969924927}, {\"X\": 0.7815033793449402, \"Y\": 0.4405272603034973}, {\"X\": 0.7743856906890869, \"Y\": 0.45111292600631714}, {\"X\": 0.7330110669136047, \"Y\": 0.4372202754020691}]}, \"Id\": \"0db4b7a8-ba44-4993-b858-90523ad890e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83782958984375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055687595158815384, \"Height\": 0.027272922918200493, \"Left\": 0.7917039394378662, \"Top\": 0.4457150101661682}, \"Polygon\": [{\"X\": 0.7991504669189453, \"Y\": 0.4457150101661682}, {\"X\": 0.8473915457725525, \"Y\": 0.46191325783729553}, {\"X\": 0.8399450182914734, \"Y\": 0.47298792004585266}, {\"X\": 0.7917039394378662, \"Y\": 0.45678967237472534}]}, \"Id\": \"60c31bb9-7e74-44c1-a50c-6c8afe801cd2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56181335449219, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04795369878411293, \"Height\": 0.02422131970524788, \"Left\": 0.8458431363105774, \"Top\": 0.463935524225235}, \"Polygon\": [{\"X\": 0.8528947234153748, \"Y\": 0.463935524225235}, {\"X\": 0.8937968015670776, \"Y\": 0.47766953706741333}, {\"X\": 0.886745274066925, \"Y\": 0.48815685510635376}, {\"X\": 0.8458431363105774, \"Y\": 0.4744228422641754}]}, \"Id\": \"c0389c72-14f5-45da-ae8e-1cf902e9873b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.798828125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055857397615909576, \"Height\": 0.027172645553946495, \"Left\": 0.9041399955749512, \"Top\": 0.4829331636428833}, \"Polygon\": [{\"X\": 0.9114499092102051, \"Y\": 0.4829331636428833}, {\"X\": 0.9599974155426025, \"Y\": 0.49923431873321533}, {\"X\": 0.9526875019073486, \"Y\": 0.5101057887077332}, {\"X\": 0.9041399955749512, \"Y\": 0.4938046634197235}]}, \"Id\": \"de089055-f56d-47d6-9256-ca9d6d76576f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47820281982422, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04273803159594536, \"Height\": 0.02439628168940544, \"Left\": 0.9572619795799255, \"Top\": 0.5006899237632751}, \"Polygon\": [{\"X\": 0.9643169641494751, \"Y\": 0.5006899237632751}, {\"X\": 1.0, \"Y\": 0.514593780040741}, {\"X\": 0.9986699819564819, \"Y\": 0.5250862240791321}, {\"X\": 0.9572619795799255, \"Y\": 0.5111823678016663}]}, \"Id\": \"66ce2e3c-f29a-4ee0-b065-91284540d870\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82194519042969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05520863085985184, \"Height\": 0.026786470785737038, \"Left\": 0.5549173951148987, \"Top\": 0.39049386978149414}, \"Polygon\": [{\"X\": 0.5620810985565186, \"Y\": 0.39049386978149414}, {\"X\": 0.6101260185241699, \"Y\": 0.40662625432014465}, {\"X\": 0.60296231508255, \"Y\": 0.4172803461551666}, {\"X\": 0.5549173951148987, \"Y\": 0.4011479318141937}]}, \"Id\": \"226ff4eb-a33a-49ea-850d-10b7f41d5f66\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62187194824219, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04755013808608055, \"Height\": 0.02395758219063282, \"Left\": 0.6083359122276306, \"Top\": 0.4084388017654419}, \"Polygon\": [{\"X\": 0.6152760982513428, \"Y\": 0.4084388017654419}, {\"X\": 0.6558860540390015, \"Y\": 0.42207467555999756}, {\"X\": 0.6489458084106445, \"Y\": 0.43239638209342957}, {\"X\": 0.6083359122276306, \"Y\": 0.4187604784965515}]}, \"Id\": \"eae4d1fe-977b-4115-8b4d-50e0f1eba853\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84819030761719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055736150592565536, \"Height\": 0.027052413672208786, \"Left\": 0.6669019460678101, \"Top\": 0.4273393154144287}, \"Polygon\": [{\"X\": 0.6741427779197693, \"Y\": 0.4273393154144287}, {\"X\": 0.7226380705833435, \"Y\": 0.4436229467391968}, {\"X\": 0.7153972387313843, \"Y\": 0.4543917179107666}, {\"X\": 0.6669019460678101, \"Y\": 0.4381081163883209}]}, \"Id\": \"f4121999-5bb7-4be3-ba65-d5c7282b2dcc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55929565429688, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04835648462176323, \"Height\": 0.02445756085216999, \"Left\": 0.72096848487854, \"Top\": 0.445383757352829}, \"Polygon\": [{\"X\": 0.728107750415802, \"Y\": 0.445383757352829}, {\"X\": 0.7693249583244324, \"Y\": 0.45922356843948364}, {\"X\": 0.7621856331825256, \"Y\": 0.469841331243515}, {\"X\": 0.72096848487854, \"Y\": 0.45600152015686035}]}, \"Id\": \"765895b0-84ec-4687-a64e-b4c0d8596f03\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8138427734375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05570116266608238, \"Height\": 0.027202792465686798, \"Left\": 0.7792932391166687, \"Top\": 0.4643191993236542}, \"Polygon\": [{\"X\": 0.7866748571395874, \"Y\": 0.4643191993236542}, {\"X\": 0.834994375705719, \"Y\": 0.4805437922477722}, {\"X\": 0.8276127576828003, \"Y\": 0.4915219843387604}, {\"X\": 0.7792932391166687, \"Y\": 0.47529739141464233}]}, \"Id\": \"0138e6de-4c80-4d68-a622-eb7dd1f82890\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52554321289062, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04806017503142357, \"Height\": 0.02429215982556343, \"Left\": 0.833416223526001, \"Top\": 0.482475608587265}, \"Polygon\": [{\"X\": 0.8404982686042786, \"Y\": 0.482475608587265}, {\"X\": 0.8814764022827148, \"Y\": 0.4962351322174072}, {\"X\": 0.8743943572044373, \"Y\": 0.506767749786377}, {\"X\": 0.833416223526001, \"Y\": 0.49300825595855713}]}, \"Id\": \"679bbb68-143f-4d3e-a552-9d72a6267fde\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56282043457031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05589553713798523, \"Height\": 0.027183659374713898, \"Left\": 0.891749918460846, \"Top\": 0.5013471245765686}, \"Polygon\": [{\"X\": 0.8990582823753357, \"Y\": 0.5013471245765686}, {\"X\": 0.9476454854011536, \"Y\": 0.5176616311073303}, {\"X\": 0.9403371214866638, \"Y\": 0.5285308361053467}, {\"X\": 0.891749918460846, \"Y\": 0.512216329574585}]}, \"Id\": \"e77e162a-c851-48d7-8a4f-fb099118018e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69567108154297, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04877803474664688, \"Height\": 0.024466585367918015, \"Left\": 0.9455753564834595, \"Top\": 0.5194522142410278}, \"Polygon\": [{\"X\": 0.9525995254516602, \"Y\": 0.5194522142410278}, {\"X\": 0.9943533539772034, \"Y\": 0.5334722399711609}, {\"X\": 0.9873291850090027, \"Y\": 0.543918788433075}, {\"X\": 0.9455753564834595, \"Y\": 0.5298988223075867}]}, \"Id\": \"1c6b41f3-4465-467c-a6d4-558b092f7000\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.856689453125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055466409772634506, \"Height\": 0.026951324194669724, \"Left\": 0.5422723293304443, \"Top\": 0.40880289673805237}, \"Polygon\": [{\"X\": 0.5495040416717529, \"Y\": 0.40880289673805237}, {\"X\": 0.5977387428283691, \"Y\": 0.4249989986419678}, {\"X\": 0.5905070304870605, \"Y\": 0.4357542097568512}, {\"X\": 0.5422723293304443, \"Y\": 0.4195581078529358}]}, \"Id\": \"955d5453-b79d-4aaa-93eb-deb0dd5d75d7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61050415039062, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047892797738313675, \"Height\": 0.024066541343927383, \"Left\": 0.5960037708282471, \"Top\": 0.42704325914382935}, \"Polygon\": [{\"X\": 0.602938711643219, \"Y\": 0.42704325914382935}, {\"X\": 0.6438965797424316, \"Y\": 0.44079598784446716}, {\"X\": 0.6369616389274597, \"Y\": 0.4511098265647888}, {\"X\": 0.5960037708282471, \"Y\": 0.437357097864151}]}, \"Id\": \"baca505e-861c-4ad3-b1bb-2501cac93d0e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83689880371094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05618159845471382, \"Height\": 0.027331307530403137, \"Left\": 0.6545891761779785, \"Top\": 0.44594135880470276}, \"Polygon\": [{\"X\": 0.6619423627853394, \"Y\": 0.44594135880470276}, {\"X\": 0.7107707858085632, \"Y\": 0.46233683824539185}, {\"X\": 0.7034176588058472, \"Y\": 0.4732726812362671}, {\"X\": 0.6545891761779785, \"Y\": 0.456877201795578}]}, \"Id\": \"74d0efd8-5db3-4ea3-8471-aa66d1caf8d0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34371948242188, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04935525357723236, \"Height\": 0.024731937795877457, \"Left\": 0.7079278230667114, \"Top\": 0.4639601409435272}, \"Polygon\": [{\"X\": 0.7150141596794128, \"Y\": 0.4639601409435272}, {\"X\": 0.757283091545105, \"Y\": 0.4781530797481537}, {\"X\": 0.7501967549324036, \"Y\": 0.4886920750141144}, {\"X\": 0.7079278230667114, \"Y\": 0.4744991362094879}]}, \"Id\": \"f9a3c128-645d-49da-8246-ff9fea0a9d3b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87606811523438, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05571962893009186, \"Height\": 0.02716354839503765, \"Left\": 0.7671133875846863, \"Top\": 0.4828919768333435}, \"Polygon\": [{\"X\": 0.7744556069374084, \"Y\": 0.4828919768333435}, {\"X\": 0.8228330612182617, \"Y\": 0.4991360008716583}, {\"X\": 0.8154908418655396, \"Y\": 0.5100555419921875}, {\"X\": 0.7671133875846863, \"Y\": 0.4938114583492279}]}, \"Id\": \"f9cdab16-cf9e-4891-9389-7fc3c9be2f22\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43125915527344, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04840359464287758, \"Height\": 0.024470554664731026, \"Left\": 0.8209466934204102, \"Top\": 0.5010289549827576}, \"Polygon\": [{\"X\": 0.8280835151672363, \"Y\": 0.5010289549827576}, {\"X\": 0.8693503141403198, \"Y\": 0.514885425567627}, {\"X\": 0.8622134327888489, \"Y\": 0.5254995226860046}, {\"X\": 0.8209466934204102, \"Y\": 0.51164311170578}]}, \"Id\": \"c00bde8c-1967-4aa9-83c5-98a083a0c6a8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83440399169922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05518962815403938, \"Height\": 0.02692636474967003, \"Left\": 0.8799368739128113, \"Top\": 0.5200162529945374}, \"Polygon\": [{\"X\": 0.8872275948524475, \"Y\": 0.5200162529945374}, {\"X\": 0.9351264834403992, \"Y\": 0.5360996127128601}, {\"X\": 0.9278357625007629, \"Y\": 0.5469425916671753}, {\"X\": 0.8799368739128113, \"Y\": 0.5308592319488525}]}, \"Id\": \"92c862b9-282d-434b-b4be-122afbc840ac\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64826965332031, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049293648451566696, \"Height\": 0.024860741570591927, \"Left\": 0.9329252243041992, \"Top\": 0.5378823280334473}, \"Polygon\": [{\"X\": 0.9401413798332214, \"Y\": 0.5378823280334473}, {\"X\": 0.982218861579895, \"Y\": 0.5520110130310059}, {\"X\": 0.9750027060508728, \"Y\": 0.562743067741394}, {\"X\": 0.9329252243041992, \"Y\": 0.5486143827438354}]}, \"Id\": \"0f54a5b5-9a27-4543-9a07-d80631e8aa6d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74944305419922, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03362411633133888, \"Height\": 0.018850423395633698, \"Left\": 0.25460124015808105, \"Top\": 0.39530688524246216}, \"Polygon\": [{\"X\": 0.261167049407959, \"Y\": 0.39530688524246216}, {\"X\": 0.28822535276412964, \"Y\": 0.40439245104789734}, {\"X\": 0.2816595733165741, \"Y\": 0.41415730118751526}, {\"X\": 0.25460124015808105, \"Y\": 0.40507176518440247}]}, \"Id\": \"b37a8bd1-2bee-4987-83fa-dc1c52fdcdb3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90950012207031, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09755182266235352, \"Height\": 0.040502846240997314, \"Left\": 0.2856641113758087, \"Top\": 0.4050818979740143}, \"Polygon\": [{\"X\": 0.2923922836780548, \"Y\": 0.4050818979740143}, {\"X\": 0.38321593403816223, \"Y\": 0.4355784058570862}, {\"X\": 0.37648776173591614, \"Y\": 0.4455847442150116}, {\"X\": 0.2856641113758087, \"Y\": 0.4150882363319397}]}, \"Id\": \"97237e64-4a0c-408f-8b61-20defdf538c7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81072235107422, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04793291538953781, \"Height\": 0.023401876911520958, \"Left\": 0.6249080896377563, \"Top\": 0.5381093621253967}, \"Polygon\": [{\"X\": 0.6312540769577026, \"Y\": 0.5381093621253967}, {\"X\": 0.6728410124778748, \"Y\": 0.5520732998847961}, {\"X\": 0.6664950251579285, \"Y\": 0.5615112781524658}, {\"X\": 0.6249080896377563, \"Y\": 0.5475472807884216}]}, \"Id\": \"71f70a7b-eb62-450e-b8b1-d58ad7bf0ec6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3580093383789, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0414876788854599, \"Height\": 0.021170608699321747, \"Left\": 0.6713376045227051, \"Top\": 0.5536338686943054}, \"Polygon\": [{\"X\": 0.677625298500061, \"Y\": 0.5536338686943054}, {\"X\": 0.7128252983093262, \"Y\": 0.5654532313346863}, {\"X\": 0.7065376043319702, \"Y\": 0.5748044848442078}, {\"X\": 0.6713376045227051, \"Y\": 0.5629851222038269}]}, \"Id\": \"855981a3-3368-4599-90eb-7759516d2944\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74906921386719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04854326322674751, \"Height\": 0.023774337023496628, \"Left\": 0.7551831603050232, \"Top\": 0.5810605883598328}, \"Polygon\": [{\"X\": 0.7616746425628662, \"Y\": 0.5810605883598328}, {\"X\": 0.8037264347076416, \"Y\": 0.5951806306838989}, {\"X\": 0.7972349524497986, \"Y\": 0.6048349738121033}, {\"X\": 0.7551831603050232, \"Y\": 0.5907149314880371}]}, \"Id\": \"d5aac6ad-5f16-4d83-a165-7daac206c413\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46987915039062, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041151262819767, \"Height\": 0.02092798799276352, \"Left\": 0.8020355105400085, \"Top\": 0.5968353152275085}, \"Polygon\": [{\"X\": 0.8082106113433838, \"Y\": 0.5968353152275085}, {\"X\": 0.8431867361068726, \"Y\": 0.6085795164108276}, {\"X\": 0.8370116353034973, \"Y\": 0.6177632808685303}, {\"X\": 0.8020355105400085, \"Y\": 0.6060190796852112}]}, \"Id\": \"91fd299d-6917-4c78-b58c-ea364e99da3c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7996597290039, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04752613604068756, \"Height\": 0.023217007517814636, \"Left\": 0.8863839507102966, \"Top\": 0.6242828369140625}, \"Polygon\": [{\"X\": 0.8926880359649658, \"Y\": 0.6242828369140625}, {\"X\": 0.9339101314544678, \"Y\": 0.6381242871284485}, {\"X\": 0.9276060461997986, \"Y\": 0.6474998593330383}, {\"X\": 0.8863839507102966, \"Y\": 0.6336584091186523}]}, \"Id\": \"4154c77e-2a3e-4a82-a88b-4d6a7b6f706e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40048217773438, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041444551199674606, \"Height\": 0.02117559127509594, \"Left\": 0.9324349164962769, \"Top\": 0.6396463513374329}, \"Polygon\": [{\"X\": 0.938739538192749, \"Y\": 0.6396463513374329}, {\"X\": 0.9738794565200806, \"Y\": 0.6514455676078796}, {\"X\": 0.9675748348236084, \"Y\": 0.6608219146728516}, {\"X\": 0.9324349164962769, \"Y\": 0.6490227580070496}]}, \"Id\": \"6bfa0f73-47fc-49ff-983e-92b215be3327\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29358673095703, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037607770413160324, \"Height\": 0.020222371444106102, \"Left\": 0.23464494943618774, \"Top\": 0.41784602403640747}, \"Polygon\": [{\"X\": 0.24124056100845337, \"Y\": 0.41784602403640747}, {\"X\": 0.2722527086734772, \"Y\": 0.4282591938972473}, {\"X\": 0.26565709710121155, \"Y\": 0.4380683898925781}, {\"X\": 0.23464494943618774, \"Y\": 0.4276552200317383}]}, \"Id\": \"3dcbfe9c-81e8-4886-ab5f-0c2a12ecb46f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97396850585938, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06741073727607727, \"Height\": 0.03045271523296833, \"Left\": 0.2695189416408539, \"Top\": 0.4289878010749817}, \"Polygon\": [{\"X\": 0.2763083875179291, \"Y\": 0.4289878010749817}, {\"X\": 0.33692967891693115, \"Y\": 0.4493430256843567}, {\"X\": 0.33014020323753357, \"Y\": 0.4594404995441437}, {\"X\": 0.2695189416408539, \"Y\": 0.4390852451324463}]}, \"Id\": \"10890554-b373-4195-813f-7f16fe534151\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80342864990234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047571711242198944, \"Height\": 0.023327559232711792, \"Left\": 0.6149348616600037, \"Top\": 0.5541521310806274}, \"Polygon\": [{\"X\": 0.6213216781616211, \"Y\": 0.5541521310806274}, {\"X\": 0.6625065803527832, \"Y\": 0.5679810643196106}, {\"X\": 0.6561198234558105, \"Y\": 0.5774796605110168}, {\"X\": 0.6149348616600037, \"Y\": 0.5636507272720337}]}, \"Id\": \"7c810566-b953-4f50-885b-509d25bccf6c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.12881469726562, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040995802730321884, \"Height\": 0.02091972343623638, \"Left\": 0.6609412431716919, \"Top\": 0.5697227120399475}, \"Polygon\": [{\"X\": 0.6671544909477234, \"Y\": 0.5697227120399475}, {\"X\": 0.7019370794296265, \"Y\": 0.5814018845558167}, {\"X\": 0.695723831653595, \"Y\": 0.5906423926353455}, {\"X\": 0.6609412431716919, \"Y\": 0.5789632201194763}]}, \"Id\": \"d3ce25f2-34c2-45a4-8612-aea12d0f6251\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76495361328125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04808095470070839, \"Height\": 0.023503504693508148, \"Left\": 0.7448388338088989, \"Top\": 0.5971335768699646}, \"Polygon\": [{\"X\": 0.7512298822402954, \"Y\": 0.5971335768699646}, {\"X\": 0.7929197549819946, \"Y\": 0.6111320853233337}, {\"X\": 0.7865287065505981, \"Y\": 0.620637059211731}, {\"X\": 0.7448388338088989, \"Y\": 0.6066385507583618}]}, \"Id\": \"2581f239-e172-4124-ae81-f1c0fee84a62\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34095001220703, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0413891077041626, \"Height\": 0.02105880342423916, \"Left\": 0.7914958596229553, \"Top\": 0.6127180457115173}, \"Polygon\": [{\"X\": 0.7977152466773987, \"Y\": 0.6127180457115173}, {\"X\": 0.8328849673271179, \"Y\": 0.6245272755622864}, {\"X\": 0.8266656398773193, \"Y\": 0.633776843547821}, {\"X\": 0.7914958596229553, \"Y\": 0.621967613697052}]}, \"Id\": \"f68a58a3-cb78-435b-8574-b72e67de7dd9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78643798828125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04797368869185448, \"Height\": 0.02335483208298683, \"Left\": 0.8754211068153381, \"Top\": 0.6402406692504883}, \"Polygon\": [{\"X\": 0.8817143440246582, \"Y\": 0.6402406692504883}, {\"X\": 0.9233947992324829, \"Y\": 0.6542360186576843}, {\"X\": 0.9171015620231628, \"Y\": 0.6635954976081848}, {\"X\": 0.8754211068153381, \"Y\": 0.6496001482009888}]}, \"Id\": \"2f9882a4-ff76-4745-9f2c-2aa0904ae451\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24317169189453, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04118352755904198, \"Height\": 0.020894771441817284, \"Left\": 0.9218042492866516, \"Top\": 0.655815839767456}, \"Polygon\": [{\"X\": 0.927941083908081, \"Y\": 0.655815839767456}, {\"X\": 0.9629877805709839, \"Y\": 0.667583703994751}, {\"X\": 0.9568509459495544, \"Y\": 0.6767106056213379}, {\"X\": 0.9218042492866516, \"Y\": 0.664942741394043}]}, \"Id\": \"14e00334-bd38-429f-945f-3d482562ea9a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78633880615234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04822149872779846, \"Height\": 0.023454206064343452, \"Left\": 0.6037472486495972, \"Top\": 0.5701810121536255}, \"Polygon\": [{\"X\": 0.6100544929504395, \"Y\": 0.5701810121536255}, {\"X\": 0.6519687175750732, \"Y\": 0.5842548608779907}, {\"X\": 0.645661473274231, \"Y\": 0.5936352014541626}, {\"X\": 0.6037472486495972, \"Y\": 0.5795613527297974}]}, \"Id\": \"465000d9-abbf-4125-b4b1-469f5764ec8e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31248474121094, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041525598615407944, \"Height\": 0.02096402831375599, \"Left\": 0.6502611637115479, \"Top\": 0.5858162641525269}, \"Polygon\": [{\"X\": 0.6563584208488464, \"Y\": 0.5858162641525269}, {\"X\": 0.6917867660522461, \"Y\": 0.5977122783660889}, {\"X\": 0.6856895089149475, \"Y\": 0.6067802906036377}, {\"X\": 0.6502611637115479, \"Y\": 0.5948842763900757}]}, \"Id\": \"d808f490-8b9b-47a0-94c1-b72465998e0a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70104217529297, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04824024811387062, \"Height\": 0.023551104590296745, \"Left\": 0.7340845465660095, \"Top\": 0.6131354570388794}, \"Polygon\": [{\"X\": 0.7404704689979553, \"Y\": 0.6131354570388794}, {\"X\": 0.7823247909545898, \"Y\": 0.6271891593933105}, {\"X\": 0.7759388089179993, \"Y\": 0.6366865634918213}, {\"X\": 0.7340845465660095, \"Y\": 0.6226328611373901}]}, \"Id\": \"00f8e3e2-28c8-4a5f-81ec-473961defcd5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30284118652344, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04155951365828514, \"Height\": 0.02114945650100708, \"Left\": 0.7805215716362, \"Top\": 0.6286713480949402}, \"Polygon\": [{\"X\": 0.7867699861526489, \"Y\": 0.6286713480949402}, {\"X\": 0.8220810890197754, \"Y\": 0.6405280232429504}, {\"X\": 0.8158327341079712, \"Y\": 0.6498208045959473}, {\"X\": 0.7805215716362, \"Y\": 0.637964129447937}]}, \"Id\": \"c120d3fa-42e2-4678-9f65-62b5a0487563\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76545715332031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04719773679971695, \"Height\": 0.02309492602944374, \"Left\": 0.8653528690338135, \"Top\": 0.656354546546936}, \"Polygon\": [{\"X\": 0.8716466426849365, \"Y\": 0.656354546546936}, {\"X\": 0.9125505685806274, \"Y\": 0.6700891852378845}, {\"X\": 0.9062567949295044, \"Y\": 0.6794494986534119}, {\"X\": 0.8653528690338135, \"Y\": 0.6657148599624634}]}, \"Id\": \"95c6ad1c-851b-40cd-8a3e-6e79badefd60\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5926284790039, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04119596630334854, \"Height\": 0.02098727785050869, \"Left\": 0.9112927317619324, \"Top\": 0.6717455983161926}, \"Polygon\": [{\"X\": 0.9175063371658325, \"Y\": 0.6717455983161926}, {\"X\": 0.9524887204170227, \"Y\": 0.6834918856620789}, {\"X\": 0.9462751746177673, \"Y\": 0.6927328705787659}, {\"X\": 0.9112927317619324, \"Y\": 0.6809865832328796}]}, \"Id\": \"02165627-923c-4050-984e-66f88a45415a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83658599853516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04766089469194412, \"Height\": 0.023262521252036095, \"Left\": 0.5933303236961365, \"Top\": 0.5862118601799011}, \"Polygon\": [{\"X\": 0.59963458776474, \"Y\": 0.5862118601799011}, {\"X\": 0.6409912109375, \"Y\": 0.6000984311103821}, {\"X\": 0.6346869468688965, \"Y\": 0.6094743609428406}, {\"X\": 0.5933303236961365, \"Y\": 0.5955877304077148}]}, \"Id\": \"ae8874ec-d9e4-4026-93fa-8dced4e9dbd2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.56815338134766, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04195772483944893, \"Height\": 0.021266836673021317, \"Left\": 0.6394601464271545, \"Top\": 0.6015798449516296}, \"Polygon\": [{\"X\": 0.645694375038147, \"Y\": 0.6015798449516296}, {\"X\": 0.6814178824424744, \"Y\": 0.6135749816894531}, {\"X\": 0.6751836538314819, \"Y\": 0.6228466629981995}, {\"X\": 0.6394601464271545, \"Y\": 0.610851526260376}]}, \"Id\": \"f56dcdf5-469a-4081-b5a4-777a6e6ef3d5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66252136230469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04808126762509346, \"Height\": 0.023470474407076836, \"Left\": 0.7237289547920227, \"Top\": 0.6290451884269714}, \"Polygon\": [{\"X\": 0.7300912141799927, \"Y\": 0.6290451884269714}, {\"X\": 0.7718101739883423, \"Y\": 0.6430534720420837}, {\"X\": 0.7654479146003723, \"Y\": 0.6525156497955322}, {\"X\": 0.7237289547920227, \"Y\": 0.6385073661804199}]}, \"Id\": \"6fd8234d-2997-407d-9d50-0c734efad5d2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46723937988281, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04081377759575844, \"Height\": 0.020778516307473183, \"Left\": 0.7705410718917847, \"Top\": 0.6447336673736572}, \"Polygon\": [{\"X\": 0.7766847610473633, \"Y\": 0.6447336673736572}, {\"X\": 0.8113548755645752, \"Y\": 0.6563751101493835}, {\"X\": 0.8052111268043518, \"Y\": 0.665512204170227}, {\"X\": 0.7705410718917847, \"Y\": 0.6538707613945007}]}, \"Id\": \"4f0ea0f7-8c46-460c-a9ca-d44f293ecf47\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75701904296875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047839563339948654, \"Height\": 0.023422187194228172, \"Left\": 0.8543810248374939, \"Top\": 0.6722767353057861}, \"Polygon\": [{\"X\": 0.860771894454956, \"Y\": 0.6722767353057861}, {\"X\": 0.902220606803894, \"Y\": 0.6861942410469055}, {\"X\": 0.8958297967910767, \"Y\": 0.6956989169120789}, {\"X\": 0.8543810248374939, \"Y\": 0.6817813515663147}]}, \"Id\": \"534ec783-b9fc-4f6a-b5ea-ba56f4f83932\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5308609008789, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041319090873003006, \"Height\": 0.02101767435669899, \"Left\": 0.9006784558296204, \"Top\": 0.6877923607826233}, \"Polygon\": [{\"X\": 0.9068825244903564, \"Y\": 0.6877923607826233}, {\"X\": 0.9419975280761719, \"Y\": 0.6995832324028015}, {\"X\": 0.9357935190200806, \"Y\": 0.708810031414032}, {\"X\": 0.9006784558296204, \"Y\": 0.6970192193984985}]}, \"Id\": \"b07ae6ed-525a-4004-8e94-bc32bbf7f028\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75055694580078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04767130687832832, \"Height\": 0.023331331089138985, \"Left\": 0.58290696144104, \"Top\": 0.6022723317146301}, \"Polygon\": [{\"X\": 0.5892679691314697, \"Y\": 0.6022723317146301}, {\"X\": 0.6305782794952393, \"Y\": 0.6161434054374695}, {\"X\": 0.6242172718048096, \"Y\": 0.6256036758422852}, {\"X\": 0.58290696144104, \"Y\": 0.6117326021194458}]}, \"Id\": \"ed4dcc8e-4e8e-46ee-ba7b-00a815be1962\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33619689941406, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041549377143383026, \"Height\": 0.021131020039319992, \"Left\": 0.6291075944900513, \"Top\": 0.6177822351455688}, \"Polygon\": [{\"X\": 0.6353428959846497, \"Y\": 0.6177822351455688}, {\"X\": 0.6706569790840149, \"Y\": 0.6296398639678955}, {\"X\": 0.6644216179847717, \"Y\": 0.6389132142066956}, {\"X\": 0.6291075944900513, \"Y\": 0.6270555853843689}]}, \"Id\": \"c134b23b-3cef-4d1a-ad42-878291cc88f0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64374542236328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04816056415438652, \"Height\": 0.023576296865940094, \"Left\": 0.7131973505020142, \"Top\": 0.645247757434845}, \"Polygon\": [{\"X\": 0.7196284532546997, \"Y\": 0.645247757434845}, {\"X\": 0.7613579034805298, \"Y\": 0.6592596173286438}, {\"X\": 0.754926860332489, \"Y\": 0.6688240766525269}, {\"X\": 0.7131973505020142, \"Y\": 0.6548122763633728}]}, \"Id\": \"63e0f52a-326f-4cfd-9a7c-82624614c799\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46517181396484, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041344016790390015, \"Height\": 0.021093441173434258, \"Left\": 0.7595701217651367, \"Top\": 0.6607804894447327}, \"Polygon\": [{\"X\": 0.7658326625823975, \"Y\": 0.6607804894447327}, {\"X\": 0.8009141087532043, \"Y\": 0.6725600361824036}, {\"X\": 0.7946515679359436, \"Y\": 0.6818739175796509}, {\"X\": 0.7595701217651367, \"Y\": 0.67009437084198}]}, \"Id\": \"d7b33a2d-262e-4527-b0c8-685e5de564de\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7752456665039, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04779645800590515, \"Height\": 0.023307351395487785, \"Left\": 0.8439680933952332, \"Top\": 0.6883183717727661}, \"Polygon\": [{\"X\": 0.8502717614173889, \"Y\": 0.6883183717727661}, {\"X\": 0.8917645215988159, \"Y\": 0.7022507190704346}, {\"X\": 0.8854608535766602, \"Y\": 0.7116256952285767}, {\"X\": 0.8439680933952332, \"Y\": 0.697693407535553}]}, \"Id\": \"79441b89-c8a1-4ec7-b974-7245f49c2581\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56571960449219, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04136811941862106, \"Height\": 0.021077465265989304, \"Left\": 0.8898880481719971, \"Top\": 0.7036876678466797}, \"Polygon\": [{\"X\": 0.8961297273635864, \"Y\": 0.7036876678466797}, {\"X\": 0.9312561750411987, \"Y\": 0.7154822945594788}, {\"X\": 0.9250144958496094, \"Y\": 0.7247651219367981}, {\"X\": 0.8898880481719971, \"Y\": 0.7129704356193542}]}, \"Id\": \"d3944d21-1fd9-4a36-9418-94a4821db20c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79230499267578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0477052703499794, \"Height\": 0.023246249184012413, \"Left\": 0.5725342035293579, \"Top\": 0.6183403134346008}, \"Polygon\": [{\"X\": 0.5788114070892334, \"Y\": 0.6183403134346008}, {\"X\": 0.6202394962310791, \"Y\": 0.6322509050369263}, {\"X\": 0.6139622926712036, \"Y\": 0.6415866017341614}, {\"X\": 0.5725342035293579, \"Y\": 0.6276759505271912}]}, \"Id\": \"a763a10b-b4f7-4da3-8d93-1907916d777f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11882019042969, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04290978983044624, \"Height\": 0.021585699170827866, \"Left\": 0.6183828115463257, \"Top\": 0.6339744329452515}, \"Polygon\": [{\"X\": 0.624616265296936, \"Y\": 0.6339744329452515}, {\"X\": 0.661292552947998, \"Y\": 0.6462895274162292}, {\"X\": 0.6550590991973877, \"Y\": 0.6555601358413696}, {\"X\": 0.6183828115463257, \"Y\": 0.6432451009750366}]}, \"Id\": \"f59d4773-e508-4fb5-8175-abddc4d4df97\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68720245361328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04825889319181442, \"Height\": 0.023622341454029083, \"Left\": 0.7026122808456421, \"Top\": 0.6611255407333374}, \"Polygon\": [{\"X\": 0.709054708480835, \"Y\": 0.6611255407333374}, {\"X\": 0.7508711814880371, \"Y\": 0.6751666069030762}, {\"X\": 0.744428813457489, \"Y\": 0.6847478747367859}, {\"X\": 0.7026122808456421, \"Y\": 0.6707068681716919}]}, \"Id\": \"8b537601-636d-4f0e-8db1-d2030544c4e4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23448181152344, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041434284299612045, \"Height\": 0.021159596741199493, \"Left\": 0.7490745186805725, \"Top\": 0.6767310500144958}, \"Polygon\": [{\"X\": 0.7553682327270508, \"Y\": 0.6767310500144958}, {\"X\": 0.7905088067054749, \"Y\": 0.688530445098877}, {\"X\": 0.7842150926589966, \"Y\": 0.6978906393051147}, {\"X\": 0.7490745186805725, \"Y\": 0.6860912442207336}]}, \"Id\": \"2ab4004d-ff7e-43f8-b362-0fe020eecc3d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78486633300781, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04830804839730263, \"Height\": 0.023546159267425537, \"Left\": 0.8332221508026123, \"Top\": 0.7042991518974304}, \"Polygon\": [{\"X\": 0.8395840525627136, \"Y\": 0.7042991518974304}, {\"X\": 0.881530225276947, \"Y\": 0.7183837294578552}, {\"X\": 0.8751683235168457, \"Y\": 0.727845311164856}, {\"X\": 0.8332221508026123, \"Y\": 0.7137607336044312}]}, \"Id\": \"4c713ccd-79ab-4c4c-a81f-8d4e740613b5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.95771789550781, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04139944911003113, \"Height\": 0.021051734685897827, \"Left\": 0.8794123530387878, \"Top\": 0.7196744680404663}, \"Polygon\": [{\"X\": 0.8856225609779358, \"Y\": 0.7196744680404663}, {\"X\": 0.9208117723464966, \"Y\": 0.7314902544021606}, {\"X\": 0.9146016240119934, \"Y\": 0.7407262325286865}, {\"X\": 0.8794123530387878, \"Y\": 0.7289104461669922}]}, \"Id\": \"9c5a63b0-dbba-4db6-ba55-96a80570f63c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84134674072266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047906115651130676, \"Height\": 0.023326117545366287, \"Left\": 0.5615569353103638, \"Top\": 0.6343181729316711}, \"Polygon\": [{\"X\": 0.5678449869155884, \"Y\": 0.6343181729316711}, {\"X\": 0.609463095664978, \"Y\": 0.6482925415039062}, {\"X\": 0.6031751036643982, \"Y\": 0.6576442718505859}, {\"X\": 0.5615569353103638, \"Y\": 0.643669843673706}]}, \"Id\": \"94e8ca27-ebe1-4847-8814-f5d16936c13a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04742431640625, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0415586419403553, \"Height\": 0.02105141617357731, \"Left\": 0.6080871820449829, \"Top\": 0.6498551368713379}, \"Polygon\": [{\"X\": 0.614250659942627, \"Y\": 0.6498551368713379}, {\"X\": 0.6496458053588867, \"Y\": 0.6617400646209717}, {\"X\": 0.6434823274612427, \"Y\": 0.6709066033363342}, {\"X\": 0.6080871820449829, \"Y\": 0.6590216755867004}]}, \"Id\": \"3b837673-1e72-4654-839d-00445acda652\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69861602783203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0482141487300396, \"Height\": 0.02346588484942913, \"Left\": 0.6920057535171509, \"Top\": 0.677245557308197}, \"Polygon\": [{\"X\": 0.6983253359794617, \"Y\": 0.677245557308197}, {\"X\": 0.7402198910713196, \"Y\": 0.6913127899169922}, {\"X\": 0.7339003682136536, \"Y\": 0.7007114291191101}, {\"X\": 0.6920057535171509, \"Y\": 0.6866441965103149}]}, \"Id\": \"16dd2454-cd27-478e-be76-2c936a0d4651\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19224548339844, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04151525720953941, \"Height\": 0.021121017634868622, \"Left\": 0.7384144067764282, \"Top\": 0.6927056908607483}, \"Polygon\": [{\"X\": 0.7446510195732117, \"Y\": 0.6927056908607483}, {\"X\": 0.7799296975135803, \"Y\": 0.7045514583587646}, {\"X\": 0.7736930847167969, \"Y\": 0.7138267159461975}, {\"X\": 0.7384144067764282, \"Y\": 0.7019809484481812}]}, \"Id\": \"3197ed44-1068-4d43-b232-d9a3b351156f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8222885131836, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04759567603468895, \"Height\": 0.02315622940659523, \"Left\": 0.8229712843894958, \"Top\": 0.7204126715660095}, \"Polygon\": [{\"X\": 0.8292022347450256, \"Y\": 0.7204126715660095}, {\"X\": 0.8705669045448303, \"Y\": 0.7343019843101501}, {\"X\": 0.8643359541893005, \"Y\": 0.7435688972473145}, {\"X\": 0.8229712843894958, \"Y\": 0.7296795845031738}]}, \"Id\": \"56ac4b62-e05c-4fb2-8904-4e2ce4c2c533\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36128997802734, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04143131151795387, \"Height\": 0.021069999784231186, \"Left\": 0.8687439560890198, \"Top\": 0.735660970211029}, \"Polygon\": [{\"X\": 0.874960720539093, \"Y\": 0.735660970211029}, {\"X\": 0.9101752638816833, \"Y\": 0.7474852204322815}, {\"X\": 0.9039584994316101, \"Y\": 0.7567309737205505}, {\"X\": 0.8687439560890198, \"Y\": 0.7449067234992981}]}, \"Id\": \"2e48cae5-fc21-42ee-838c-fba47203f8d1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80557250976562, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04769192636013031, \"Height\": 0.023371931165456772, \"Left\": 0.5511859059333801, \"Top\": 0.6502780318260193}, \"Polygon\": [{\"X\": 0.5575761795043945, \"Y\": 0.6502780318260193}, {\"X\": 0.5988778471946716, \"Y\": 0.6641461849212646}, {\"X\": 0.5924875736236572, \"Y\": 0.6736499667167664}, {\"X\": 0.5511859059333801, \"Y\": 0.659781813621521}]}, \"Id\": \"12ac106d-84f9-4ac7-907f-0eea5600f05e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33998107910156, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041306253522634506, \"Height\": 0.021051261574029922, \"Left\": 0.597592294216156, \"Top\": 0.6657477021217346}, \"Polygon\": [{\"X\": 0.6038292646408081, \"Y\": 0.6657477021217346}, {\"X\": 0.6388985514640808, \"Y\": 0.6775231957435608}, {\"X\": 0.6326615810394287, \"Y\": 0.6867989897727966}, {\"X\": 0.597592294216156, \"Y\": 0.6750234961509705}]}, \"Id\": \"59fb02a3-b4d5-43c5-82e4-3cbbd30c6d8f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75137329101562, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048172976821660995, \"Height\": 0.023526089265942574, \"Left\": 0.6815342307090759, \"Top\": 0.6931678056716919}, \"Polygon\": [{\"X\": 0.6879181265830994, \"Y\": 0.6931678056716919}, {\"X\": 0.7297072410583496, \"Y\": 0.7071996331214905}, {\"X\": 0.7233233451843262, \"Y\": 0.7166938781738281}, {\"X\": 0.6815342307090759, \"Y\": 0.7026620507240295}]}, \"Id\": \"74ca7f1e-8997-4e8c-9a16-1fefa0cd175a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29095458984375, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041149385273456573, \"Height\": 0.020981168374419212, \"Left\": 0.7280529141426086, \"Top\": 0.708803653717041}, \"Polygon\": [{\"X\": 0.7342747449874878, \"Y\": 0.708803653717041}, {\"X\": 0.7692022919654846, \"Y\": 0.7205315232276917}, {\"X\": 0.7629804611206055, \"Y\": 0.7297847867012024}, {\"X\": 0.7280529141426086, \"Y\": 0.7180569171905518}]}, \"Id\": \"daef264c-791e-4834-8bd9-74ae00d895b5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73558807373047, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04804704338312149, \"Height\": 0.02334350347518921, \"Left\": 0.8122299313545227, \"Top\": 0.7364299893379211}, \"Polygon\": [{\"X\": 0.8184919357299805, \"Y\": 0.7364299893379211}, {\"X\": 0.8602769374847412, \"Y\": 0.7504604458808899}, {\"X\": 0.8540149331092834, \"Y\": 0.7597734928131104}, {\"X\": 0.8122299313545227, \"Y\": 0.7457430362701416}]}, \"Id\": \"7ee22801-e5b0-4581-9b91-09cdbead9d96\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48230743408203, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0414833202958107, \"Height\": 0.0210566483438015, \"Left\": 0.8581869602203369, \"Top\": 0.7517713308334351}, \"Polygon\": [{\"X\": 0.864376962184906, \"Y\": 0.7517713308334351}, {\"X\": 0.8996703028678894, \"Y\": 0.763621985912323}, {\"X\": 0.8934803009033203, \"Y\": 0.7728279829025269}, {\"X\": 0.8581869602203369, \"Y\": 0.7609772682189941}]}, \"Id\": \"a3a4aaa2-5e6b-4e5b-92be-48cd675db5df\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3011703491211, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036918286234140396, \"Height\": 0.019963635131716728, \"Left\": 0.15769021213054657, \"Top\": 0.5369594693183899}, \"Polygon\": [{\"X\": 0.16426219046115875, \"Y\": 0.5369594693183899}, {\"X\": 0.19460850954055786, \"Y\": 0.5471490621566772}, {\"X\": 0.18803653120994568, \"Y\": 0.5569230914115906}, {\"X\": 0.15769021213054657, \"Y\": 0.5467334985733032}]}, \"Id\": \"93fdd176-f824-4f2a-82eb-eb854c49d3db\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97257232666016, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06700955331325531, \"Height\": 0.030239468440413475, \"Left\": 0.1925063133239746, \"Top\": 0.5480020046234131}, \"Polygon\": [{\"X\": 0.19922755658626556, \"Y\": 0.5480020046234131}, {\"X\": 0.2595158815383911, \"Y\": 0.5682454705238342}, {\"X\": 0.25279462337493896, \"Y\": 0.5782414674758911}, {\"X\": 0.1925063133239746, \"Y\": 0.55799800157547}]}, \"Id\": \"6ccbfc9d-7c22-4528-8405-11390f965265\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70372009277344, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03364663943648338, \"Height\": 0.018758315593004227, \"Left\": 0.14754678308963776, \"Top\": 0.5516567230224609}, \"Polygon\": [{\"X\": 0.15402603149414062, \"Y\": 0.5516567230224609}, {\"X\": 0.18119342625141144, \"Y\": 0.5607789158821106}, {\"X\": 0.17471417784690857, \"Y\": 0.5704150199890137}, {\"X\": 0.14754678308963776, \"Y\": 0.561292827129364}]}, \"Id\": \"65d2db04-9deb-4b5e-ac3d-dbca56309fa9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92738342285156, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09650158137083054, \"Height\": 0.04007982835173607, \"Left\": 0.1797609180212021, \"Top\": 0.5615455508232117}, \"Polygon\": [{\"X\": 0.1864279806613922, \"Y\": 0.5615455508232117}, {\"X\": 0.276262491941452, \"Y\": 0.5917099118232727}, {\"X\": 0.2695954442024231, \"Y\": 0.601625382900238}, {\"X\": 0.1797609180212021, \"Y\": 0.5714609622955322}]}, \"Id\": \"002f9803-87c2-41d0-883c-0d02683f3a0b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.35797882080078, \"Text\": \"Hello\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022098040208220482, \"Height\": 0.010448383167386055, \"Left\": 0.6164585947990417, \"Top\": 0.8286944031715393}, \"Polygon\": [{\"X\": 0.6190886497497559, \"Y\": 0.8286944031715393}, {\"X\": 0.6385566592216492, \"Y\": 0.835231363773346}, {\"X\": 0.6359266042709351, \"Y\": 0.8391427993774414}, {\"X\": 0.6164585947990417, \"Y\": 0.8326058983802795}]}, \"Id\": \"de769daa-3740-4d90-b7e7-90c5a1c223fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 92.09598541259766, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022011054679751396, \"Height\": 0.010289904661476612, \"Left\": 0.6389793157577515, \"Top\": 0.8363432288169861}, \"Polygon\": [{\"X\": 0.6414970755577087, \"Y\": 0.8363432288169861}, {\"X\": 0.6609903573989868, \"Y\": 0.842888593673706}, {\"X\": 0.6584725975990295, \"Y\": 0.8466331362724304}, {\"X\": 0.6389793157577515, \"Y\": 0.8400877118110657}]}, \"Id\": \"f6a4dfad-4ddc-4a8e-beac-b5b9753087cb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 86.88935852050781, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007214443292468786, \"Height\": 0.004501674324274063, \"Left\": 0.6610723733901978, \"Top\": 0.8444671034812927}, \"Polygon\": [{\"X\": 0.6628780961036682, \"Y\": 0.8444671034812927}, {\"X\": 0.6682868003845215, \"Y\": 0.8462831974029541}, {\"X\": 0.666481077671051, \"Y\": 0.8489687442779541}, {\"X\": 0.6610723733901978, \"Y\": 0.8471526503562927}]}, \"Id\": \"168c1ce4-5354-432e-bc60-9effdf3b4963\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.00941467285156, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03041011653840542, \"Height\": 0.013073829002678394, \"Left\": 0.6682938933372498, \"Top\": 0.8461223840713501}, \"Polygon\": [{\"X\": 0.6707801222801208, \"Y\": 0.8461223840713501}, {\"X\": 0.6987040042877197, \"Y\": 0.8554986119270325}, {\"X\": 0.6962177157402039, \"Y\": 0.8591962456703186}, {\"X\": 0.6682938933372498, \"Y\": 0.8498200178146362}]}, \"Id\": \"a6a3761b-ea86-4bd3-9a7c-14b04d38a02a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 71.848388671875, \"Text\": \"herel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021081414073705673, \"Height\": 0.009986880235373974, \"Left\": 0.6981176137924194, \"Top\": 0.856054961681366}, \"Polygon\": [{\"X\": 0.7006433010101318, \"Y\": 0.856054961681366}, {\"X\": 0.719199001789093, \"Y\": 0.8622855544090271}, {\"X\": 0.7166733145713806, \"Y\": 0.8660418391227722}, {\"X\": 0.6981176137924194, \"Y\": 0.8598112463951111}]}, \"Id\": \"d5eb432d-dc19-4308-9e60-291cca26e509\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.92317199707031, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.46022871136665344, \"Height\": 0.2598249316215515, \"Left\": 0.5397712588310242, \"Top\": 0.5312158465385437}, \"Polygon\": [{\"X\": 0.6264040470123291, \"Y\": 0.5312158465385437}, {\"X\": 1.0, \"Y\": 0.662198007106781}, {\"X\": 0.9298578500747681, \"Y\": 0.7910407781600952}, {\"X\": 0.5397712588310242, \"Y\": 0.6600586175918579}]}, \"Id\": \"18a3dfa6-d958-4d6d-9f1f-5805955d6a8f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5ef30e39-e7d7-492c-a4bf-88fb555f91ac\", \"7e8aa2d8-9876-490c-8a90-3d95be785d33\", \"02276415-5abe-41ed-9f58-df1fd0c518e7\", \"4d296e6a-b013-479c-846c-1922e09a28cb\", \"3b189d0c-8c63-4c64-a043-686fd0ea9bf2\", \"ee4aabde-dde2-4259-bc84-76909d782c99\", \"88b5b79a-50cf-41b3-87b2-4a8f4772a537\", \"79e8ad4e-463c-48ee-bcaf-accf524aa621\", \"80847b96-386c-4fc2-859f-dd9f2b8eb05d\", \"ea3af25b-0213-4a0c-9719-410a28e6af8c\", \"9e8d4bb0-7a25-470b-85e7-3954b17e70fb\", \"4073cf0a-fbef-496f-8dc2-c6d20395e97f\", \"db10386e-86fc-403d-9163-7672452acde7\", \"066afaa7-3437-409f-a399-11c11bd779e6\", \"c3645ca4-c82e-40ae-852c-a58d65c1ec34\", \"b28b38ec-f7e7-4061-85c7-d45c1f9808f0\", \"65e81d90-7101-4cbe-8791-6ddd6ba1d215\", \"8ca694c0-864a-4c74-bd73-2b862fd294c5\", \"1e260655-1975-4f67-8c7d-554cd2f5051d\", \"de195faa-726c-45ef-aa99-996a92c5e0fe\", \"6566d301-9f0b-4304-ad82-736b116aa8a5\", \"5dde4367-7d2f-472a-b6f7-a32fe97d8138\", \"9a500ba3-ce64-4172-a817-df49dd97da7a\", \"674c55c0-d721-461d-aeeb-6be1d0b88b27\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14085789024829865, \"Height\": 0.05976603180170059, \"Left\": 0.6155749559402466, \"Top\": 0.5312158465385437}, \"Polygon\": [{\"X\": 0.6264040470123291, \"Y\": 0.5312158465385437}, {\"X\": 0.756432831287384, \"Y\": 0.5748765468597412}, {\"X\": 0.7456037998199463, \"Y\": 0.5909819006919861}, {\"X\": 0.6155749559402466, \"Y\": 0.5473212003707886}]}, \"Id\": \"5ef30e39-e7d7-492c-a4bf-88fb555f91ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"71f70a7b-eb62-450e-b8b1-d58ad7bf0ec6\", \"855981a3-3368-4599-90eb-7759516d2944\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14293846487998962, \"Height\": 0.06046464294195175, \"Left\": 0.7456037402153015, \"Top\": 0.5748765468597412}, \"Polygon\": [{\"X\": 0.756432831287384, \"Y\": 0.5748765468597412}, {\"X\": 0.8885421752929688, \"Y\": 0.6192358732223511}, {\"X\": 0.877713143825531, \"Y\": 0.6353411674499512}, {\"X\": 0.7456037402153015, \"Y\": 0.5909819006919861}]}, \"Id\": \"7e8aa2d8-9876-490c-8a90-3d95be785d33\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d5aac6ad-5f16-4d83-a165-7daac206c413\", \"91fd299d-6917-4c78-b58c-ea364e99da3c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12228687107563019, \"Height\": 0.059067461639642715, \"Left\": 0.877713143825531, \"Top\": 0.6192358732223511}, \"Polygon\": [{\"X\": 0.8885421752929688, \"Y\": 0.6192358732223511}, {\"X\": 1.0, \"Y\": 0.662198007106781}, {\"X\": 1.0, \"Y\": 0.6783033609390259}, {\"X\": 0.877713143825531, \"Y\": 0.6353411674499512}]}, \"Id\": \"02276415-5abe-41ed-9f58-df1fd0c518e7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4154c77e-2a3e-4a82-a88b-4d6a7b6f706e\", \"6bfa0f73-47fc-49ff-983e-92b215be3327\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14085790514945984, \"Height\": 0.05976606532931328, \"Left\": 0.6047458648681641, \"Top\": 0.5473212003707886}, \"Polygon\": [{\"X\": 0.6155749559402466, \"Y\": 0.5473212003707886}, {\"X\": 0.7456037998199463, \"Y\": 0.5909819006919861}, {\"X\": 0.734774649143219, \"Y\": 0.607087254524231}, {\"X\": 0.6047458648681641, \"Y\": 0.5634265542030334}]}, \"Id\": \"4d296e6a-b013-479c-846c-1922e09a28cb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7c810566-b953-4f50-885b-509d25bccf6c\", \"d3ce25f2-34c2-45a4-8612-aea12d0f6251\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.142938494682312, \"Height\": 0.06046467646956444, \"Left\": 0.734774649143219, \"Top\": 0.5909819006919861}, \"Polygon\": [{\"X\": 0.7456037402153015, \"Y\": 0.5909819006919861}, {\"X\": 0.877713143825531, \"Y\": 0.635341227054596}, {\"X\": 0.8668839931488037, \"Y\": 0.6514465808868408}, {\"X\": 0.734774649143219, \"Y\": 0.607087254524231}]}, \"Id\": \"3b189d0c-8c63-4c64-a043-686fd0ea9bf2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2581f239-e172-4124-ae81-f1c0fee84a62\", \"f68a58a3-cb78-435b-8574-b72e67de7dd9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1331159770488739, \"Height\": 0.0590674951672554, \"Left\": 0.8668839931488037, \"Top\": 0.635341227054596}, \"Polygon\": [{\"X\": 0.877713143825531, \"Y\": 0.635341227054596}, {\"X\": 1.0, \"Y\": 0.6783033609390259}, {\"X\": 0.9948323965072632, \"Y\": 0.6944087147712708}, {\"X\": 0.8668839931488037, \"Y\": 0.6514465808868408}]}, \"Id\": \"ee4aabde-dde2-4259-bc84-76909d782c99\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f9882a4-ff76-4745-9f2c-2aa0904ae451\", \"14e00334-bd38-429f-945f-3d482562ea9a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14085790514945984, \"Height\": 0.05976606532931328, \"Left\": 0.5939167737960815, \"Top\": 0.5634264945983887}, \"Polygon\": [{\"X\": 0.6047458648681641, \"Y\": 0.5634264945983887}, {\"X\": 0.7347747087478638, \"Y\": 0.607087254524231}, {\"X\": 0.7239456176757812, \"Y\": 0.6231926083564758}, {\"X\": 0.5939167737960815, \"Y\": 0.5795318484306335}]}, \"Id\": \"88b5b79a-50cf-41b3-87b2-4a8f4772a537\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"465000d9-abbf-4125-b4b1-469f5764ec8e\", \"d808f490-8b9b-47a0-94c1-b72465998e0a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.142938494682312, \"Height\": 0.06046467646956444, \"Left\": 0.7239455580711365, \"Top\": 0.6070871949195862}, \"Polygon\": [{\"X\": 0.734774649143219, \"Y\": 0.6070871949195862}, {\"X\": 0.8668840527534485, \"Y\": 0.651446521282196}, {\"X\": 0.856054961681366, \"Y\": 0.6675518751144409}, {\"X\": 0.7239455580711365, \"Y\": 0.623192548751831}]}, \"Id\": \"79e8ad4e-463c-48ee-bcaf-accf524aa621\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00f8e3e2-28c8-4a5f-81ec-473961defcd5\", \"c120d3fa-42e2-4678-9f65-62b5a0487563\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1387774497270584, \"Height\": 0.0590674951672554, \"Left\": 0.856054961681366, \"Top\": 0.651446521282196}, \"Polygon\": [{\"X\": 0.8668840527534485, \"Y\": 0.651446521282196}, {\"X\": 0.9948323965072632, \"Y\": 0.6944087147712708}, {\"X\": 0.9840033054351807, \"Y\": 0.7105140686035156}, {\"X\": 0.856054961681366, \"Y\": 0.6675518751144409}]}, \"Id\": \"80847b96-386c-4fc2-859f-dd9f2b8eb05d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"95c6ad1c-851b-40cd-8a3e-6e79badefd60\", \"02165627-923c-4050-984e-66f88a45415a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14085790514945984, \"Height\": 0.05976606532931328, \"Left\": 0.583087682723999, \"Top\": 0.5795319080352783}, \"Polygon\": [{\"X\": 0.5939167737960815, \"Y\": 0.5795319080352783}, {\"X\": 0.7239455580711365, \"Y\": 0.6231926083564758}, {\"X\": 0.713116466999054, \"Y\": 0.6392979621887207}, {\"X\": 0.583087682723999, \"Y\": 0.5956372618675232}]}, \"Id\": \"ea3af25b-0213-4a0c-9719-410a28e6af8c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ae8874ec-d9e4-4026-93fa-8dced4e9dbd2\", \"f56dcdf5-469a-4081-b5a4-777a6e6ef3d5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.142938494682312, \"Height\": 0.06046467646956444, \"Left\": 0.7131164073944092, \"Top\": 0.6231926083564758}, \"Polygon\": [{\"X\": 0.7239454984664917, \"Y\": 0.6231926083564758}, {\"X\": 0.8560549020767212, \"Y\": 0.6675519347190857}, {\"X\": 0.8452258110046387, \"Y\": 0.6836572885513306}, {\"X\": 0.7131164073944092, \"Y\": 0.6392979621887207}]}, \"Id\": \"9e8d4bb0-7a25-470b-85e7-3954b17e70fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fd8234d-2997-407d-9d50-0c734efad5d2\", \"4f0ea0f7-8c46-460c-a9ca-d44f293ecf47\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1387774497270584, \"Height\": 0.0590674951672554, \"Left\": 0.8452258110046387, \"Top\": 0.6675519347190857}, \"Polygon\": [{\"X\": 0.8560549020767212, \"Y\": 0.6675519347190857}, {\"X\": 0.9840032458305359, \"Y\": 0.7105140686035156}, {\"X\": 0.9731741547584534, \"Y\": 0.7266194224357605}, {\"X\": 0.8452258110046387, \"Y\": 0.6836572885513306}]}, \"Id\": \"4073cf0a-fbef-496f-8dc2-c6d20395e97f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"534ec783-b9fc-4f6a-b5ea-ba56f4f83932\", \"b07ae6ed-525a-4004-8e94-bc32bbf7f028\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1403970867395401, \"Height\": 0.05908072367310524, \"Left\": 0.572719395160675, \"Top\": 0.5956372618675232}, \"Polygon\": [{\"X\": 0.583087682723999, \"Y\": 0.5956372618675232}, {\"X\": 0.713116466999054, \"Y\": 0.6392979621887207}, {\"X\": 0.70274817943573, \"Y\": 0.6547179818153381}, {\"X\": 0.572719395160675, \"Y\": 0.6110572218894958}]}, \"Id\": \"db10386e-86fc-403d-9163-7672452acde7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ed4dcc8e-4e8e-46ee-ba7b-00a815be1962\", \"c134b23b-3cef-4d1a-ad42-878291cc88f0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14247767627239227, \"Height\": 0.0597793348133564, \"Left\": 0.70274817943573, \"Top\": 0.6392979621887207}, \"Polygon\": [{\"X\": 0.7131164073944092, \"Y\": 0.6392979621887207}, {\"X\": 0.8452258110046387, \"Y\": 0.6836572885513306}, {\"X\": 0.8348575234413147, \"Y\": 0.6990772485733032}, {\"X\": 0.70274817943573, \"Y\": 0.6547179222106934}]}, \"Id\": \"066afaa7-3437-409f-a399-11c11bd779e6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63e0f52a-326f-4cfd-9a7c-82624614c799\", \"d7b33a2d-262e-4527-b0c8-685e5de564de\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13831663131713867, \"Height\": 0.05838215351104736, \"Left\": 0.8348575234413147, \"Top\": 0.6836572885513306}, \"Polygon\": [{\"X\": 0.8452258110046387, \"Y\": 0.6836572885513306}, {\"X\": 0.9731742143630981, \"Y\": 0.7266194224357605}, {\"X\": 0.9628059267997742, \"Y\": 0.7420394420623779}, {\"X\": 0.8348575234413147, \"Y\": 0.6990772485733032}]}, \"Id\": \"c3645ca4-c82e-40ae-852c-a58d65c1ec34\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79441b89-c8a1-4ec7-b974-7245f49c2581\", \"d3944d21-1fd9-4a36-9418-94a4821db20c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14085790514945984, \"Height\": 0.05976606532931328, \"Left\": 0.5618903040885925, \"Top\": 0.6110572814941406}, \"Polygon\": [{\"X\": 0.572719395160675, \"Y\": 0.6110572814941406}, {\"X\": 0.70274817943573, \"Y\": 0.6547179818153381}, {\"X\": 0.6919190883636475, \"Y\": 0.670823335647583}, {\"X\": 0.5618903040885925, \"Y\": 0.6271626353263855}]}, \"Id\": \"b28b38ec-f7e7-4061-85c7-d45c1f9808f0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a763a10b-b4f7-4da3-8d93-1907916d777f\", \"f59d4773-e508-4fb5-8175-abddc4d4df97\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.142938494682312, \"Height\": 0.06046467646956444, \"Left\": 0.6919190287590027, \"Top\": 0.6547179818153381}, \"Polygon\": [{\"X\": 0.7027481198310852, \"Y\": 0.6547179818153381}, {\"X\": 0.8348575234413147, \"Y\": 0.699077308177948}, {\"X\": 0.8240284323692322, \"Y\": 0.7151826620101929}, {\"X\": 0.6919190287590027, \"Y\": 0.670823335647583}]}, \"Id\": \"65e81d90-7101-4cbe-8791-6ddd6ba1d215\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8b537601-636d-4f0e-8db1-d2030544c4e4\", \"2ab4004d-ff7e-43f8-b362-0fe020eecc3d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1387774497270584, \"Height\": 0.0590674988925457, \"Left\": 0.8240284323692322, \"Top\": 0.699077308177948}, \"Polygon\": [{\"X\": 0.8348575234413147, \"Y\": 0.699077308177948}, {\"X\": 0.9628059267997742, \"Y\": 0.7420394420623779}, {\"X\": 0.9519767761230469, \"Y\": 0.7581447958946228}, {\"X\": 0.8240284323692322, \"Y\": 0.7151826620101929}]}, \"Id\": \"8ca694c0-864a-4c74-bd73-2b862fd294c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c713ccd-79ab-4c4c-a81f-8d4e740613b5\", \"9c5a63b0-dbba-4db6-ba55-96a80570f63c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14131873846054077, \"Height\": 0.06045141816139221, \"Left\": 0.5506003499031067, \"Top\": 0.6271625757217407}, \"Polygon\": [{\"X\": 0.5618903040885925, \"Y\": 0.6271625757217407}, {\"X\": 0.6919190883636475, \"Y\": 0.670823335647583}, {\"X\": 0.6806291937828064, \"Y\": 0.6876140236854553}, {\"X\": 0.5506003499031067, \"Y\": 0.6439533233642578}]}, \"Id\": \"1e260655-1975-4f67-8c7d-554cd2f5051d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"94e8ca27-ebe1-4847-8814-f5d16936c13a\", \"3b837673-1e72-4654-839d-00445acda652\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14339931309223175, \"Height\": 0.06115002930164337, \"Left\": 0.6806291341781616, \"Top\": 0.6708232760429382}, \"Polygon\": [{\"X\": 0.6919190883636475, \"Y\": 0.6708232760429382}, {\"X\": 0.8240284323692322, \"Y\": 0.7151826024055481}, {\"X\": 0.8127385377883911, \"Y\": 0.7319733500480652}, {\"X\": 0.6806291341781616, \"Y\": 0.6876140236854553}]}, \"Id\": \"de195faa-726c-45ef-aa99-996a92c5e0fe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"16dd2454-cd27-478e-be76-2c936a0d4651\", \"3197ed44-1068-4d43-b232-d9a3b351156f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13923828303813934, \"Height\": 0.059752847999334335, \"Left\": 0.8127385377883911, \"Top\": 0.7151826024055481}, \"Polygon\": [{\"X\": 0.8240284323692322, \"Y\": 0.7151826024055481}, {\"X\": 0.9519768357276917, \"Y\": 0.7581447958946228}, {\"X\": 0.9406868815422058, \"Y\": 0.7749354839324951}, {\"X\": 0.8127385377883911, \"Y\": 0.7319733500480652}]}, \"Id\": \"6566d301-9f0b-4304-ad82-736b116aa8a5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"56ac4b62-e05c-4fb2-8904-4e2ce4c2c533\", \"2e48cae5-fc21-42ee-838c-fba47203f8d1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14085789024829865, \"Height\": 0.05976603180170059, \"Left\": 0.539771318435669, \"Top\": 0.643953263759613}, \"Polygon\": [{\"X\": 0.5506004095077515, \"Y\": 0.643953263759613}, {\"X\": 0.6806291937828064, \"Y\": 0.6876140236854553}, {\"X\": 0.6698001027107239, \"Y\": 0.7037193179130554}, {\"X\": 0.539771318435669, \"Y\": 0.6600586175918579}]}, \"Id\": \"5dde4367-7d2f-472a-b6f7-a32fe97d8138\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"12ac106d-84f9-4ac7-907f-0eea5600f05e\", \"59fb02a3-b4d5-43c5-82e4-3cbbd30c6d8f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14293846487998962, \"Height\": 0.06046464294195175, \"Left\": 0.6698001027107239, \"Top\": 0.6876139640808105}, \"Polygon\": [{\"X\": 0.6806291341781616, \"Y\": 0.6876139640808105}, {\"X\": 0.8127385377883911, \"Y\": 0.7319732904434204}, {\"X\": 0.8019094467163086, \"Y\": 0.7480786442756653}, {\"X\": 0.6698001027107239, \"Y\": 0.7037193179130554}]}, \"Id\": \"9a500ba3-ce64-4172-a817-df49dd97da7a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74ca7f1e-8997-4e8c-9a16-1fefa0cd175a\", \"daef264c-791e-4834-8bd9-74ae00d895b5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.92317199707031, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13877743482589722, \"Height\": 0.059067461639642715, \"Left\": 0.8019094467163086, \"Top\": 0.7319732904434204}, \"Polygon\": [{\"X\": 0.8127385377883911, \"Y\": 0.7319732904434204}, {\"X\": 0.9406868815422058, \"Y\": 0.7749354839324951}, {\"X\": 0.9298578500747681, \"Y\": 0.7910407781600952}, {\"X\": 0.8019094467163086, \"Y\": 0.7480786442756653}]}, \"Id\": \"674c55c0-d721-461d-aeeb-6be1d0b88b27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7ee22801-e5b0-4581-9b91-09cdbead9d96\", \"a3a4aaa2-5e6b-4e5b-92be-48cd675db5df\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.66400909423828, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3325001299381256, \"Height\": 0.14957882463932037, \"Left\": 0.38950586318969727, \"Top\": 0.1846327781677246}, \"Polygon\": [{\"X\": 0.42244935035705566, \"Y\": 0.1846327781677246}, {\"X\": 0.7220059633255005, \"Y\": 0.2852170765399933}, {\"X\": 0.6890624761581421, \"Y\": 0.3342115879058838}, {\"X\": 0.38950586318969727, \"Y\": 0.2336273044347763}]}, \"Id\": \"d6ee55bc-5238-49c5-8475-59a4e9c98a55\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"757837dc-dcbe-45a8-974b-748f7213e135\", \"a3b07fdc-1570-44d5-b658-c5ecbc15d28d\", \"ee399f32-7591-4733-bef8-6110b8468848\", \"b5737576-8848-404a-8f8f-d6dc07b13894\", \"fafe4946-337b-4dc7-b4ec-3f0d71130fe2\", \"c3825ce0-88cf-4a3a-800b-b1536b1519b4\", \"87861642-c808-4f34-ba6a-210417503b7e\", \"2b8dfc7c-60fa-46f3-b07b-7c92866cde0d\", \"15839cba-870f-4ea1-81a5-916edf266886\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11170561611652374, \"Height\": 0.05022959038615227, \"Left\": 0.41140124201774597, \"Top\": 0.18463276326656342}, \"Polygon\": [{\"X\": 0.42244938015937805, \"Y\": 0.18463276326656342}, {\"X\": 0.5231068730354309, \"Y\": 0.2184312641620636}, {\"X\": 0.5120587348937988, \"Y\": 0.23486235737800598}, {\"X\": 0.41140124201774597, \"Y\": 0.201063871383667}]}, \"Id\": \"757837dc-dcbe-45a8-974b-748f7213e135\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"14efd8d3-c4ef-4f3b-9092-d94a952275e0\", \"95fce50a-0d3e-4678-9382-b92ee5e46322\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11170558631420135, \"Height\": 0.05022957921028137, \"Left\": 0.5120587348937988, \"Top\": 0.2184312641620636}, \"Polygon\": [{\"X\": 0.5231068730354309, \"Y\": 0.2184312641620636}, {\"X\": 0.6237642765045166, \"Y\": 0.2522297501564026}, {\"X\": 0.6127161979675293, \"Y\": 0.26866084337234497}, {\"X\": 0.5120587348937988, \"Y\": 0.23486235737800598}]}, \"Id\": \"a3b07fdc-1570-44d5-b658-c5ecbc15d28d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e9384481-6efd-4744-93a1-d1e133a74def\", \"9d7b440b-f967-4f45-81bd-1d3b56a3655c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10928981751203537, \"Height\": 0.04941842332482338, \"Left\": 0.6127161979675293, \"Top\": 0.2522297501564026}, \"Polygon\": [{\"X\": 0.6237643361091614, \"Y\": 0.2522297501564026}, {\"X\": 0.7220060229301453, \"Y\": 0.2852170765399933}, {\"X\": 0.7109578847885132, \"Y\": 0.30164816975593567}, {\"X\": 0.6127161979675293, \"Y\": 0.26866084337234497}]}, \"Id\": \"ee399f32-7591-4733-bef8-6110b8468848\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb2065bb-04b9-453f-b24b-706deaf19d9c\", \"6b6c3d85-6408-4e05-973a-a16e8500c646\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11170560866594315, \"Height\": 0.050229575484991074, \"Left\": 0.4003531336784363, \"Top\": 0.201063871383667}, \"Polygon\": [{\"X\": 0.41140124201774597, \"Y\": 0.201063871383667}, {\"X\": 0.5120587348937988, \"Y\": 0.23486235737800598}, {\"X\": 0.5010105967521667, \"Y\": 0.25129345059394836}, {\"X\": 0.4003531336784363, \"Y\": 0.21749494969844818}]}, \"Id\": \"b5737576-8848-404a-8f8f-d6dc07b13894\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1954d087-e560-481a-8f9e-d6ce0881f599\", \"33c6ac42-ae05-4803-9a9d-4d078bdca6b3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11170557141304016, \"Height\": 0.05022956430912018, \"Left\": 0.5010105967521667, \"Top\": 0.23486235737800598}, \"Polygon\": [{\"X\": 0.5120587348937988, \"Y\": 0.23486235737800598}, {\"X\": 0.6127161979675293, \"Y\": 0.26866084337234497}, {\"X\": 0.6016680598258972, \"Y\": 0.28509190678596497}, {\"X\": 0.5010105967521667, \"Y\": 0.25129345059394836}]}, \"Id\": \"fafe4946-337b-4dc7-b4ec-3f0d71130fe2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7d7e70b9-3558-4291-973c-dd528bc2d4b1\", \"11930c0b-deee-4a89-a31e-628e6d87dae4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10928981006145477, \"Height\": 0.04941840469837189, \"Left\": 0.6016680598258972, \"Top\": 0.26866084337234497}, \"Polygon\": [{\"X\": 0.6127161979675293, \"Y\": 0.26866084337234497}, {\"X\": 0.7109578847885132, \"Y\": 0.30164816975593567}, {\"X\": 0.6999098062515259, \"Y\": 0.31807926297187805}, {\"X\": 0.6016680598258972, \"Y\": 0.28509193658828735}]}, \"Id\": \"c3825ce0-88cf-4a3a-800b-b1536b1519b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d694900-1e0e-4c33-abb4-6a0ec161f098\", \"d8b3a80b-dd6f-4f31-a5cf-c5b2d34b8620\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11150473356246948, \"Height\": 0.04993082955479622, \"Left\": 0.38950586318969727, \"Top\": 0.21749497950077057}, \"Polygon\": [{\"X\": 0.4003531038761139, \"Y\": 0.21749497950077057}, {\"X\": 0.5010105967521667, \"Y\": 0.25129348039627075}, {\"X\": 0.4901633560657501, \"Y\": 0.2674258053302765}, {\"X\": 0.38950586318969727, \"Y\": 0.2336273193359375}]}, \"Id\": \"87861642-c808-4f34-ba6a-210417503b7e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ca749e2-5e6e-4907-b05b-a7270b8621d3\", \"fe70d695-23ae-4999-8160-07481707296d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1115046963095665, \"Height\": 0.049930818378925323, \"Left\": 0.4901633560657501, \"Top\": 0.25129345059394836}, \"Polygon\": [{\"X\": 0.5010105967521667, \"Y\": 0.25129345059394836}, {\"X\": 0.6016680598258972, \"Y\": 0.28509193658828735}, {\"X\": 0.5908207893371582, \"Y\": 0.3012242913246155}, {\"X\": 0.4901633560657501, \"Y\": 0.2674258053302765}]}, \"Id\": \"2b8dfc7c-60fa-46f3-b07b-7c92866cde0d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e8e92a8e-9700-4eda-9bd5-ed1a1de77ad1\", \"07020f43-29af-42bf-bef8-37cd88e4ce4c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66400909423828, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10908893495798111, \"Height\": 0.04911965876817703, \"Left\": 0.590820848941803, \"Top\": 0.28509196639060974}, \"Polygon\": [{\"X\": 0.6016680598258972, \"Y\": 0.28509196639060974}, {\"X\": 0.6999097466468811, \"Y\": 0.31807926297187805}, {\"X\": 0.6890625357627869, \"Y\": 0.3342116177082062}, {\"X\": 0.590820848941803, \"Y\": 0.3012242913246155}]}, \"Id\": \"15839cba-870f-4ea1-81a5-916edf266886\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2870f5fc-0673-48ff-be7b-2dd444250a15\", \"3d7117d0-3570-48af-9629-99bdcbbb47e5\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.63001251220703, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.46925151348114014, \"Height\": 0.24511486291885376, \"Left\": 0.5307484865188599, \"Top\": 0.3263101279735565}, \"Polygon\": [{\"X\": 0.593966543674469, \"Y\": 0.3263101279735565}, {\"X\": 1.0, \"Y\": 0.47740527987480164}, {\"X\": 0.9807347655296326, \"Y\": 0.5714250206947327}, {\"X\": 0.5307484865188599, \"Y\": 0.42032986879348755}]}, \"Id\": \"805c3e9a-127d-429b-a777-f85a5c446a37\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"662c1428-bd33-45fe-a028-76e356530bad\", \"a175785c-8229-4fc7-8879-450e8d008b8d\", \"ec68fa3d-77ab-46f4-8cf4-5a0270c271b2\", \"c698b403-1cd8-4d33-b832-3f966216fef4\", \"bc820159-538a-48a6-8d9b-4469c470cc91\", \"5140af27-c03f-4d75-9beb-c745b7f09d5d\", \"d0c0e5b4-3946-489b-af1b-4c7601c9a09c\", \"1c1a8a09-df03-48e4-939b-07803253d632\", \"1b66bfd6-daac-4bd0-a692-f2270a0f2c45\", \"2ea5a56f-a81f-4180-8b75-a77f23cfca22\", \"9014938d-4d37-48a2-a514-8668754f5434\", \"f75e49c9-a3ce-4783-80fa-798870797aa6\", \"f4cd24e6-c2a6-475a-8c9d-81925c9be4dd\", \"be6a4430-0b53-45de-8dd5-76e6dc6c6784\", \"7eeab795-b9d5-46f0-b1b5-d872d000381b\", \"b28a680e-91dc-4745-aea6-1075f8b20fd6\", \"c0d0b618-9d46-40cf-9200-b1de8a073d72\", \"a202b82d-4d85-45c9-a1eb-772a890537ef\", \"04a24d32-cb58-45b0-95fe-d56b36d9289f\", \"c1f8316b-2a7c-4ade-a5ab-27787975fb81\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12612441182136536, \"Height\": 0.0573703832924366, \"Left\": 0.5809215307235718, \"Top\": 0.3263101279735565}, \"Polygon\": [{\"X\": 0.593966543674469, \"Y\": 0.3263101279735565}, {\"X\": 0.7070459723472595, \"Y\": 0.3642796277999878}, {\"X\": 0.6940009593963623, \"Y\": 0.3836804926395416}, {\"X\": 0.5809215307235718, \"Y\": 0.34571102261543274}]}, \"Id\": \"662c1428-bd33-45fe-a028-76e356530bad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2bbdb3b6-ff12-494f-8ca5-b47ef0b8e8fd\", \"43ca9c68-2cbd-4265-bce1-daefeb6f859f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12612441182136536, \"Height\": 0.0573703832924366, \"Left\": 0.6940010190010071, \"Top\": 0.3642796277999878}, \"Polygon\": [{\"X\": 0.7070459723472595, \"Y\": 0.3642796277999878}, {\"X\": 0.82012540102005, \"Y\": 0.40224912762641907}, {\"X\": 0.8070804476737976, \"Y\": 0.4216499924659729}, {\"X\": 0.6940010190010071, \"Y\": 0.383680522441864}]}, \"Id\": \"a175785c-8229-4fc7-8879-450e8d008b8d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53e94bdf-7c98-446b-a99b-f28ae0c464ae\", \"1e753f37-ee6f-45cf-8fec-1cbaa3a3c38d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12379289418458939, \"Height\": 0.05658751353621483, \"Left\": 0.8070803880691528, \"Top\": 0.4022490978240967}, \"Polygon\": [{\"X\": 0.82012540102005, \"Y\": 0.4022490978240967}, {\"X\": 0.9308732748031616, \"Y\": 0.439435750246048}, {\"X\": 0.9178283214569092, \"Y\": 0.4588366150856018}, {\"X\": 0.8070803880691528, \"Y\": 0.4216499924659729}]}, \"Id\": \"ec68fa3d-77ab-46f4-8cf4-5a0270c271b2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc9eb4d2-203f-4328-a518-5f24418e4667\", \"de82a435-9167-42ef-a09b-eaa4d1f8a2d5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08217170089483261, \"Height\": 0.05737040564417839, \"Left\": 0.9178283214569092, \"Top\": 0.4394357204437256}, \"Polygon\": [{\"X\": 0.9308732748031616, \"Y\": 0.4394357204437256}, {\"X\": 1.0, \"Y\": 0.47740525007247925}, {\"X\": 1.0, \"Y\": 0.49680614471435547}, {\"X\": 0.9178283214569092, \"Y\": 0.4588366150856018}]}, \"Id\": \"c698b403-1cd8-4d33-b832-3f966216fef4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9247512b-de9b-4b2f-b1da-c13499f96442\", \"75421daf-416b-4baf-922d-e39233dc6bf9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1253216713666916, \"Height\": 0.05617651343345642, \"Left\": 0.5686793327331543, \"Top\": 0.34571102261543274}, \"Polygon\": [{\"X\": 0.5809215307235718, \"Y\": 0.34571102261543274}, {\"X\": 0.6940009593963623, \"Y\": 0.3836804926395416}, {\"X\": 0.6817587614059448, \"Y\": 0.4018875062465668}, {\"X\": 0.5686793327331543, \"Y\": 0.3639180362224579}]}, \"Id\": \"bc820159-538a-48a6-8d9b-4469c470cc91\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab748773-6b28-4b1d-b4a9-4c314f131b8b\", \"9860c1ec-c7c5-44b8-843a-adbac3684e70\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1253216713666916, \"Height\": 0.05617651343345642, \"Left\": 0.6817587614059448, \"Top\": 0.383680522441864}, \"Polygon\": [{\"X\": 0.6940010190010071, \"Y\": 0.383680522441864}, {\"X\": 0.8070804476737976, \"Y\": 0.4216499924659729}, {\"X\": 0.7948381900787354, \"Y\": 0.43985703587532043}, {\"X\": 0.6817587614059448, \"Y\": 0.40188753604888916}]}, \"Id\": \"5140af27-c03f-4d75-9beb-c745b7f09d5d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7c8f741f-bc13-4ce2-b8f5-b7b443f9eae5\", \"c405d33c-f1d1-49f3-a04b-60679da47b15\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12299014627933502, \"Height\": 0.05539364367723465, \"Left\": 0.7948381900787354, \"Top\": 0.4216499924659729}, \"Polygon\": [{\"X\": 0.8070803880691528, \"Y\": 0.4216499924659729}, {\"X\": 0.9178283214569092, \"Y\": 0.4588366150856018}, {\"X\": 0.9055860638618469, \"Y\": 0.47704362869262695}, {\"X\": 0.7948381900787354, \"Y\": 0.43985700607299805}]}, \"Id\": \"d0c0e5b4-3946-489b-af1b-4c7601c9a09c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3194fd16-348a-445d-8448-0d2fe6f5075e\", \"352aa3e0-914c-4831-a959-545d9f2f4dd8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09441393613815308, \"Height\": 0.05617653205990791, \"Left\": 0.9055860638618469, \"Top\": 0.4588366150856018}, \"Polygon\": [{\"X\": 0.9178283214569092, \"Y\": 0.4588366150856018}, {\"X\": 1.0, \"Y\": 0.49680614471435547}, {\"X\": 1.0, \"Y\": 0.5150131583213806}, {\"X\": 0.9055860638618469, \"Y\": 0.47704362869262695}]}, \"Id\": \"1c1a8a09-df03-48e4-939b-07803253d632\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"68c869ce-170a-4961-9ff6-6a9b507be7d5\", \"bce6d2fa-c465-4612-b853-9a3e8920f0e7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12612441182136536, \"Height\": 0.0573703832924366, \"Left\": 0.5556343197822571, \"Top\": 0.3639180362224579}, \"Polygon\": [{\"X\": 0.5686792731285095, \"Y\": 0.3639180362224579}, {\"X\": 0.6817587018013, \"Y\": 0.40188753604888916}, {\"X\": 0.6687137484550476, \"Y\": 0.4212884306907654}, {\"X\": 0.5556343197822571, \"Y\": 0.3833189308643341}]}, \"Id\": \"1b66bfd6-daac-4bd0-a692-f2270a0f2c45\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"544f2d88-12a8-4324-aeab-8193ca2e5177\", \"0ab9aefb-3c3d-4921-814f-5c11f421e56a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12612441182136536, \"Height\": 0.0573703832924366, \"Left\": 0.6687137484550476, \"Top\": 0.40188753604888916}, \"Polygon\": [{\"X\": 0.6817587614059448, \"Y\": 0.40188753604888916}, {\"X\": 0.7948381900787354, \"Y\": 0.43985703587532043}, {\"X\": 0.7817931771278381, \"Y\": 0.45925793051719666}, {\"X\": 0.6687137484550476, \"Y\": 0.4212884306907654}]}, \"Id\": \"2ea5a56f-a81f-4180-8b75-a77f23cfca22\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3a7eb20d-5744-45fe-9459-a799dde97379\", \"0db4b7a8-ba44-4993-b858-90523ad890e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12379289418458939, \"Height\": 0.05658751353621483, \"Left\": 0.7817931771278381, \"Top\": 0.43985703587532043}, \"Polygon\": [{\"X\": 0.7948381304740906, \"Y\": 0.43985703587532043}, {\"X\": 0.9055860638618469, \"Y\": 0.47704365849494934}, {\"X\": 0.8925410509109497, \"Y\": 0.49644455313682556}, {\"X\": 0.7817931771278381, \"Y\": 0.45925793051719666}]}, \"Id\": \"9014938d-4d37-48a2-a514-8668754f5434\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"60c31bb9-7e74-44c1-a50c-6c8afe801cd2\", \"c0389c72-14f5-45da-ae8e-1cf902e9873b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1074589416384697, \"Height\": 0.05737040564417839, \"Left\": 0.8925410509109497, \"Top\": 0.47704365849494934}, \"Polygon\": [{\"X\": 0.9055860638618469, \"Y\": 0.47704365849494934}, {\"X\": 1.0, \"Y\": 0.5150131583213806}, {\"X\": 1.0, \"Y\": 0.5344140529632568}, {\"X\": 0.8925410509109497, \"Y\": 0.49644455313682556}]}, \"Id\": \"f75e49c9-a3ce-4783-80fa-798870797aa6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"de089055-f56d-47d6-9256-ca9d6d76576f\", \"66ce2e3c-f29a-4ee0-b065-91284540d870\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1253216564655304, \"Height\": 0.05617648735642433, \"Left\": 0.5433921217918396, \"Top\": 0.3833189308643341}, \"Polygon\": [{\"X\": 0.5556343197822571, \"Y\": 0.3833189308643341}, {\"X\": 0.6687137484550476, \"Y\": 0.4212884306907654}, {\"X\": 0.6564715504646301, \"Y\": 0.43949541449546814}, {\"X\": 0.5433921217918396, \"Y\": 0.40152591466903687}]}, \"Id\": \"f4cd24e6-c2a6-475a-8c9d-81925c9be4dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"226ff4eb-a33a-49ea-850d-10b7f41d5f66\", \"eae4d1fe-977b-4115-8b4d-50e0f1eba853\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1253216564655304, \"Height\": 0.05617648735642433, \"Left\": 0.6564715504646301, \"Top\": 0.4212884306907654}, \"Polygon\": [{\"X\": 0.6687137484550476, \"Y\": 0.4212884306907654}, {\"X\": 0.7817931771278381, \"Y\": 0.45925793051719666}, {\"X\": 0.7695509791374207, \"Y\": 0.4774649143218994}, {\"X\": 0.6564715504646301, \"Y\": 0.43949541449546814}]}, \"Id\": \"be6a4430-0b53-45de-8dd5-76e6dc6c6784\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4121999-5bb7-4be3-ba65-d5c7282b2dcc\", \"765895b0-84ec-4687-a64e-b4c0d8596f03\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12299013137817383, \"Height\": 0.05539361760020256, \"Left\": 0.7695509195327759, \"Top\": 0.45925793051719666}, \"Polygon\": [{\"X\": 0.7817931771278381, \"Y\": 0.45925793051719666}, {\"X\": 0.8925410509109497, \"Y\": 0.49644455313682556}, {\"X\": 0.8802988529205322, \"Y\": 0.5146515369415283}, {\"X\": 0.7695509195327759, \"Y\": 0.4774649143218994}]}, \"Id\": \"7eeab795-b9d5-46f0-b1b5-d872d000381b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0138e6de-4c80-4d68-a622-eb7dd1f82890\", \"679bbb68-143f-4d3e-a552-9d72a6267fde\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11970116198062897, \"Height\": 0.05617650970816612, \"Left\": 0.8802988529205322, \"Top\": 0.49644455313682556}, \"Polygon\": [{\"X\": 0.8925410509109497, \"Y\": 0.49644455313682556}, {\"X\": 1.0, \"Y\": 0.5344140529632568}, {\"X\": 0.9933783411979675, \"Y\": 0.552621066570282}, {\"X\": 0.8802988529205322, \"Y\": 0.5146515369415283}]}, \"Id\": \"b28a680e-91dc-4745-aea6-1075f8b20fd6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e77e162a-c851-48d7-8a4f-fb099118018e\", \"1c6b41f3-4465-467c-a6d4-558b092f7000\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12572303414344788, \"Height\": 0.056773439049720764, \"Left\": 0.5307484865188599, \"Top\": 0.40152591466903687}, \"Polygon\": [{\"X\": 0.5433921217918396, \"Y\": 0.40152591466903687}, {\"X\": 0.6564715504646301, \"Y\": 0.43949541449546814}, {\"X\": 0.6438279151916504, \"Y\": 0.4582993686199188}, {\"X\": 0.5307484865188599, \"Y\": 0.42032986879348755}]}, \"Id\": \"c0d0b618-9d46-40cf-9200-b1de8a073d72\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"955d5453-b79d-4aaa-93eb-deb0dd5d75d7\", \"baca505e-861c-4ad3-b1bb-2501cac93d0e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12572303414344788, \"Height\": 0.056773439049720764, \"Left\": 0.6438279151916504, \"Top\": 0.43949541449546814}, \"Polygon\": [{\"X\": 0.6564715504646301, \"Y\": 0.43949541449546814}, {\"X\": 0.7695509791374207, \"Y\": 0.4774649143218994}, {\"X\": 0.7569073438644409, \"Y\": 0.4962688684463501}, {\"X\": 0.6438279151916504, \"Y\": 0.4582993686199188}]}, \"Id\": \"a202b82d-4d85-45c9-a1eb-772a890537ef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74d0efd8-5db3-4ea3-8471-aa66d1caf8d0\", \"f9a3c128-645d-49da-8246-ff9fea0a9d3b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1233915165066719, \"Height\": 0.05599056929349899, \"Left\": 0.7569073438644409, \"Top\": 0.4774649143218994}, \"Polygon\": [{\"X\": 0.7695509195327759, \"Y\": 0.4774649143218994}, {\"X\": 0.8802988529205322, \"Y\": 0.5146515369415283}, {\"X\": 0.8676552772521973, \"Y\": 0.533455491065979}, {\"X\": 0.7569073438644409, \"Y\": 0.4962688386440277}]}, \"Id\": \"04a24d32-cb58-45b0-95fe-d56b36d9289f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f9cdab16-cf9e-4891-9389-7fc3c9be2f22\", \"c00bde8c-1967-4aa9-83c5-98a083a0c6a8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63001251220703, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12572309374809265, \"Height\": 0.056773461401462555, \"Left\": 0.8676552176475525, \"Top\": 0.5146515369415283}, \"Polygon\": [{\"X\": 0.8802988529205322, \"Y\": 0.5146515369415283}, {\"X\": 0.9933783411979675, \"Y\": 0.552621066570282}, {\"X\": 0.9807347059249878, \"Y\": 0.5714250206947327}, {\"X\": 0.8676552176475525, \"Y\": 0.533455491065979}]}, \"Id\": \"c1f8316b-2a7c-4ade-a5ab-27787975fb81\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92c862b9-282d-434b-b4be-122afbc840ac\", \"0f54a5b5-9a27-4543-9a07-d80631e8aa6d\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 82.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03668031841516495, \"Height\": 0.019760053604841232, \"Left\": 0.23501327633857727, \"Top\": 0.4187875986099243}, \"Polygon\": [{\"X\": 0.2414778470993042, \"Y\": 0.4187875986099243}, {\"X\": 0.2716935873031616, \"Y\": 0.42893338203430176}, {\"X\": 0.2652290463447571, \"Y\": 0.43854767084121704}, {\"X\": 0.23501327633857727, \"Y\": 0.4284018874168396}]}, \"Id\": \"f580c004-0577-45b9-806a-08de659a3281\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e59a1994-8e69-49c1-ae6e-b065c5762b3b\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"3dcbfe9c-81e8-4886-ab5f-0c2a12ecb46f\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 82.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06663227826356888, \"Height\": 0.029884634539484978, \"Left\": 0.26902252435684204, \"Top\": 0.4298340976238251}, \"Polygon\": [{\"X\": 0.275545597076416, \"Y\": 0.4298340976238251}, {\"X\": 0.3356547951698303, \"Y\": 0.45001739263534546}, {\"X\": 0.32913169264793396, \"Y\": 0.4597187340259552}, {\"X\": 0.26902252435684204, \"Y\": 0.4395354390144348}]}, \"Id\": \"e59a1994-8e69-49c1-ae6e-b065c5762b3b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"10890554-b373-4195-813f-7f16fe534151\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 65.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03437298908829689, \"Height\": 0.018824085593223572, \"Left\": 0.14735348522663116, \"Top\": 0.5521399974822998}, \"Polygon\": [{\"X\": 0.1536780446767807, \"Y\": 0.5521399974822998}, {\"X\": 0.18172647058963776, \"Y\": 0.5615580081939697}, {\"X\": 0.17540192604064941, \"Y\": 0.5709640979766846}, {\"X\": 0.14735348522663116, \"Y\": 0.5615460276603699}]}, \"Id\": \"73247cd0-d560-49a5-9fd2-14c7ed36f37f\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"577a728d-6cc7-49ec-8535-34dcb70d6830\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"65d2db04-9deb-4b5e-ac3d-dbca56309fa9\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 65.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09646189957857132, \"Height\": 0.040234461426734924, \"Left\": 0.17945517599582672, \"Top\": 0.5621935129165649}, \"Polygon\": [{\"X\": 0.18626809120178223, \"Y\": 0.5621935129165649}, {\"X\": 0.27591708302497864, \"Y\": 0.5922955870628357}, {\"X\": 0.26910415291786194, \"Y\": 0.6024279594421387}, {\"X\": 0.17945517599582672, \"Y\": 0.5723258852958679}]}, \"Id\": \"577a728d-6cc7-49ec-8535-34dcb70d6830\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"002f9803-87c2-41d0-883c-0d02683f3a0b\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 49.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038203515112400055, \"Height\": 0.020082049071788788, \"Left\": 0.15783275663852692, \"Top\": 0.5375049114227295}, \"Polygon\": [{\"X\": 0.16413278877735138, \"Y\": 0.5375049114227295}, {\"X\": 0.19603627920150757, \"Y\": 0.5482173562049866}, {\"X\": 0.1897362470626831, \"Y\": 0.5575869679450989}, {\"X\": 0.15783275663852692, \"Y\": 0.546874463558197}]}, \"Id\": \"55b3803f-e3f1-4723-86d6-3fff0035c5b6\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"4ecfb369-197b-45c6-89e3-b4e791f42b9d\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"93fdd176-f824-4f2a-82eb-eb854c49d3db\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 49.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06747937202453613, \"Height\": 0.0304215420037508, \"Left\": 0.19206416606903076, \"Top\": 0.5484282970428467}, \"Polygon\": [{\"X\": 0.1988065391778946, \"Y\": 0.5484282970428467}, {\"X\": 0.2595435380935669, \"Y\": 0.5688223838806152}, {\"X\": 0.25280117988586426, \"Y\": 0.5788497924804688}, {\"X\": 0.19206416606903076, \"Y\": 0.5584557056427002}]}, \"Id\": \"4ecfb369-197b-45c6-89e3-b4e791f42b9d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6ccbfc9d-7c22-4528-8405-11390f965265\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"20d4abd7-c903-4614-9bbc-82ad01b50692\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"20d4abd7-c903-4614-9bbc-82ad01b50692\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"133981\", \"date\": \"Mon, 26 Apr 2021 21:36:53 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__270_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 2.060219543324791e-17, \"Top\": 0.0}, \"Polygon\": [{\"X\": 2.060219543324791e-17, \"Y\": 1.0}, {\"X\": 1.0725173529781314e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 1.1102230246251565e-16}, {\"X\": 1.0, \"Y\": 1.0}]}, \"Id\": \"3fafef14-0378-45c3-a7eb-a15e04b26979\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8a82740d-a4fb-453a-8d35-6db1c326b709\", \"2e336c65-8301-4dcb-a332-eae9134c2072\", \"3b5e3651-193e-4177-a552-a857b65165f3\", \"67ca25b2-65e8-4e8f-8d8a-e6931e9495c1\", \"5d488449-5463-4c1d-a9b8-3090f7f7950b\", \"f10069a1-c4a6-41e4-b285-8e51b6787177\", \"6166ba32-3dfb-4fac-bc53-7cbb5278972a\", \"0e17da35-f775-4fa4-8c9b-169b5283eb70\", \"59ffc5a7-0c7d-4e63-ba08-d5f2439d3ab0\", \"be516f47-ceb4-48a1-ab6e-8af27ee227e4\", \"7bfbccb9-7e35-461b-9b0b-c9b476270996\", \"67489d15-595e-4cf2-a7ec-88e98a750892\", \"a96cf23f-7531-407c-8f3d-f695de5daf64\", \"3339ed51-71b5-4d6e-bc24-65817ff0af03\", \"f57cfd82-c69c-482c-91dd-bf0b2cd3220c\", \"d44cf82d-a58b-4278-8a94-40f59a0d2d71\", \"958c2dac-8b89-4cbe-9b29-c20d61c9b7c5\", \"11c18f0c-45c0-4b2c-a669-f0a56b8ebf0b\", \"25fa1160-bd01-4fb2-8d1d-7e8f2bde86a7\", \"00bb8b16-7a4a-459a-94f5-2ab90a104c3d\", \"e611d0d1-42f0-4aa4-8ed2-18e008c1c172\", \"08d966dd-8b13-4839-af81-063e6a2ea161\", \"2faa2e47-ebf4-46c1-915d-ea6b4ecf15a7\", \"505d522f-896a-4619-bb43-e331b51a6943\", \"134b571f-55ce-4879-94b3-4650d61e4801\", \"fac198a4-116c-4ddf-b5a7-bdc12a56abb6\", \"7b54ca02-e752-4ce7-a1d4-34085527c966\", \"b11d3616-5bc6-4c01-bb46-7845ae300765\", \"455eaf97-9886-4689-aa29-5c9b862ca16c\", \"80e1ea1c-3b2f-43fc-ba37-8011591b96cd\", \"55b89f2e-5304-4bba-9e6a-986e592923a2\", \"d8620fce-8fae-4313-9fbf-4ccf0a87f742\", \"06e6d8cd-8be9-4684-998c-28376829be92\", \"739d959c-2003-41a7-8d73-c30d9dd20ad8\", \"7cfbe75c-da31-4696-bb3c-3e10adeaa40a\", \"1fce9ebd-68e6-4e61-b8d5-0f60ea223e8a\", \"ed98acae-80e3-47b7-a337-520ad5c7f110\", \"f9377b18-0289-4dda-a521-ec25ee799398\", \"c4e307cf-0467-4258-a5c2-0f4b014a5217\", \"32cda974-41ae-4321-b2e8-e4e87dfacb24\", \"69469370-15ea-4e9d-9c50-4f979d9741f2\", \"d761f467-f4f1-40a5-88fc-7604e6f09a32\", \"3679348f-3065-423d-b815-22e0751eb3a7\", \"89d8889c-b874-4a16-8b46-91bb50e6d4c4\", \"dec4719a-bde0-41c8-af3f-e3d50bdea413\", \"c38c62cc-890e-471b-bfc5-f4b4ed07bd23\", \"42ee8202-d2cf-4b26-a929-3677cebf8909\", \"a1f5906a-56b8-4e5a-a1f6-cf52249e2caf\", \"13e6a302-946b-4fe1-b2be-35daee8af0d8\", \"2288c798-cdfe-4b72-a080-db66ab2f7321\", \"d97dce1c-c9ff-432f-ac3b-a964071d5ef2\", \"4fed5934-dc82-4672-bf75-2e82eda01be7\", \"1fcf46a5-0f88-41c8-a0c4-6e2e82598f8c\", \"19b2677f-4f1a-4dd2-853b-6a57e1f2e37d\", \"6742cb8f-6d30-48f9-a9d6-59ea5b336da8\", \"bf7f3662-c854-4376-82d9-ffacad08602f\", \"032f853b-91dc-4205-bb0d-fb7201fb6529\", \"3825275f-b6e2-4fdc-ac54-0fb02c9f3fa4\", \"c5ff7efe-55e0-4dfe-981f-2f93c20bbe55\", \"c6235688-4a4b-4941-9a1f-41f47594f271\", \"fa1e2d3f-edf3-456f-8726-a5f55dfead7b\", \"50e4daa2-d704-4fda-af5e-1231aadac1ec\", \"2e50fedf-6719-4cbc-ad75-80afd2c4622d\", \"1888cbe9-eff0-4161-b46e-2781f6986919\", \"f94730ed-049e-46ce-8b64-d195775afda3\", \"eef916b4-c0a7-4edf-b4e0-7e9c477af471\", \"bb125807-d2e7-4859-9904-77c085aff44f\", \"93bd71c2-a895-48ce-bc26-2d05e1613860\", \"bb3a12a0-603a-4cb4-9b61-c36e0a7b28af\", \"19e57c8c-66e1-49f4-96ff-460078ae5e38\", \"2adc27a0-27c6-498c-af3d-49bd42b5c022\", \"22debb18-35ab-49df-aa50-c6d409f7f197\", \"09156636-bb63-45dc-88a2-5961c6c7098f\", \"2f3767a1-9f69-4c28-b536-ba09956fe75c\", \"184fb888-907e-4c38-99ec-1f6ca0765a99\", \"f95bff86-9c4d-46eb-b69a-37278b5c4c5f\", \"25548cd6-943e-4523-b6ba-4d9b795dfa70\", \"70bf4148-cdf8-40c3-8cad-aebe8027d19d\", \"06883af6-8fa3-4072-b739-815bb758144f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54647064208984, \"Text\": \"Name: SomeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015217293053865433, \"Height\": 0.106639564037323, \"Left\": 0.017920758575201035, \"Top\": 0.5369620323181152}, \"Polygon\": [{\"X\": 0.017920758575201035, \"Y\": 0.6436015963554382}, {\"X\": 0.017920758575201035, \"Y\": 0.5369620323181152}, {\"X\": 0.03313805162906647, \"Y\": 0.5369620323181152}, {\"X\": 0.03313805162906647, \"Y\": 0.6436015963554382}]}, \"Id\": \"8a82740d-a4fb-453a-8d35-6db1c326b709\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c161783-e54a-4d57-8ca5-ea6e876b59cd\", \"225ead35-ed7a-4b2b-a1b3-25a3ae8bcaee\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.20203399658203, \"Text\": \"Key1: value1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01847572810947895, \"Height\": 0.0715584084391594, \"Left\": 0.05586542189121246, \"Top\": 0.09675031900405884}, \"Polygon\": [{\"X\": 0.05586542189121246, \"Y\": 0.16830873489379883}, {\"X\": 0.05586542189121246, \"Y\": 0.09675031900405884}, {\"X\": 0.07434114813804626, \"Y\": 0.09675031900405884}, {\"X\": 0.07434114813804626, \"Y\": 0.16830873489379883}]}, \"Id\": \"2e336c65-8301-4dcb-a332-eae9134c2072\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5d33921d-6a5d-44c7-ae4d-c64217bb56f1\", \"5cd800b5-7a81-4cc2-a014-de4b76e6b701\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 91.9552001953125, \"Text\": \"Key2:value2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018439389765262604, \"Height\": 0.07163357734680176, \"Left\": 0.08999688178300858, \"Top\": 0.09647682309150696}, \"Polygon\": [{\"X\": 0.08999688178300858, \"Y\": 0.16811040043830872}, {\"X\": 0.08999688178300858, \"Y\": 0.09647682309150696}, {\"X\": 0.10843627154827118, \"Y\": 0.09647682309150696}, {\"X\": 0.10843627154827118, \"Y\": 0.16811040043830872}]}, \"Id\": \"3b5e3651-193e-4177-a552-a857b65165f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2168a553-df9a-47d2-a411-ccd27e3abafa\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58849334716797, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015156716108322144, \"Height\": 0.06362701207399368, \"Left\": 0.15422964096069336, \"Top\": 0.5628179907798767}, \"Polygon\": [{\"X\": 0.15422964096069336, \"Y\": 0.6264449954032898}, {\"X\": 0.15422964096069336, \"Y\": 0.5628179907798767}, {\"X\": 0.1693863570690155, \"Y\": 0.5628179907798767}, {\"X\": 0.1693863570690155, \"Y\": 0.6264449954032898}]}, \"Id\": \"67ca25b2-65e8-4e8f-8d8a-e6931e9495c1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e4e731b6-3580-4895-af80-cabd75c62fe3\", \"b92f1e83-9d90-44bd-9af1-98674964ff7e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5660629272461, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01538926362991333, \"Height\": 0.06413784623146057, \"Left\": 0.15413229167461395, \"Top\": 0.4848383069038391}, \"Polygon\": [{\"X\": 0.15413229167461395, \"Y\": 0.5489761233329773}, {\"X\": 0.15413229167461395, \"Y\": 0.4848383069038391}, {\"X\": 0.16952155530452728, \"Y\": 0.4848383069038391}, {\"X\": 0.16952155530452728, \"Y\": 0.5489761233329773}]}, \"Id\": \"5d488449-5463-4c1d-a9b8-3090f7f7950b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"979febdd-2bbb-4405-b946-0ba548510a6e\", \"f537e3d8-0cf8-4703-b146-be750254ea53\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5652084350586, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014910027384757996, \"Height\": 0.0636114850640297, \"Left\": 0.15441270172595978, \"Top\": 0.4078369140625}, \"Polygon\": [{\"X\": 0.15441270172595978, \"Y\": 0.4714483916759491}, {\"X\": 0.15441270172595978, \"Y\": 0.4078369140625}, {\"X\": 0.16932272911071777, \"Y\": 0.4078369140625}, {\"X\": 0.16932272911071777, \"Y\": 0.4714483916759491}]}, \"Id\": \"f10069a1-c4a6-41e4-b285-8e51b6787177\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"32f79454-8deb-4c70-9a3f-4ca31a17beef\", \"d4e26e58-ecb5-4a3c-bc34-16154dbbe053\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37946319580078, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015101313591003418, \"Height\": 0.06378516554832458, \"Left\": 0.17932787537574768, \"Top\": 0.5627681016921997}, \"Polygon\": [{\"X\": 0.17932787537574768, \"Y\": 0.6265532970428467}, {\"X\": 0.17932787537574768, \"Y\": 0.5627681016921997}, {\"X\": 0.1944291889667511, \"Y\": 0.5627681016921997}, {\"X\": 0.1944291889667511, \"Y\": 0.6265532970428467}]}, \"Id\": \"6166ba32-3dfb-4fac-bc53-7cbb5278972a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a492319c-ef80-433d-877f-0cff3a4f06a7\", \"3e4f5e69-c1ac-4817-914c-8fe593ad6af1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6248550415039, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014934331178665161, \"Height\": 0.06393937021493912, \"Left\": 0.17940935492515564, \"Top\": 0.4848463535308838}, \"Polygon\": [{\"X\": 0.17940935492515564, \"Y\": 0.5487857460975647}, {\"X\": 0.17940935492515564, \"Y\": 0.4848463535308838}, {\"X\": 0.1943436861038208, \"Y\": 0.4848463535308838}, {\"X\": 0.1943436861038208, \"Y\": 0.5487857460975647}]}, \"Id\": \"0e17da35-f775-4fa4-8c9b-169b5283eb70\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58beb17d-69b6-48ef-88d8-6ca55aafc84c\", \"c8c5b8ef-9cc4-422b-87bb-6a06d90ca1bc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46759796142578, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014843791723251343, \"Height\": 0.06347185373306274, \"Left\": 0.179437056183815, \"Top\": 0.4078408479690552}, \"Polygon\": [{\"X\": 0.179437056183815, \"Y\": 0.4713127017021179}, {\"X\": 0.179437056183815, \"Y\": 0.4078408479690552}, {\"X\": 0.19428084790706635, \"Y\": 0.4078408479690552}, {\"X\": 0.19428084790706635, \"Y\": 0.4713127017021179}]}, \"Id\": \"59ffc5a7-0c7d-4e63-ba08-d5f2439d3ab0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"37554b3a-777d-4728-a2bb-8467ca18c3e9\", \"4e9b62bc-3aa5-41cb-bbfc-f8773b25158f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50550079345703, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014529004693031311, \"Height\": 0.06347634643316269, \"Left\": 0.20469874143600464, \"Top\": 0.5627222061157227}, \"Polygon\": [{\"X\": 0.20469874143600464, \"Y\": 0.6261985301971436}, {\"X\": 0.20469874143600464, \"Y\": 0.5627222061157227}, {\"X\": 0.21922774612903595, \"Y\": 0.5627222061157227}, {\"X\": 0.21922774612903595, \"Y\": 0.6261985301971436}]}, \"Id\": \"be516f47-ceb4-48a1-ab6e-8af27ee227e4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7fc05e2c-b03d-496e-b123-a149c69735bb\", \"1e9d3705-5740-494c-b259-f33c44468e0f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5679702758789, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014655575156211853, \"Height\": 0.063974529504776, \"Left\": 0.20459990203380585, \"Top\": 0.4848378896713257}, \"Polygon\": [{\"X\": 0.20459990203380585, \"Y\": 0.5488124489784241}, {\"X\": 0.20459990203380585, \"Y\": 0.4848378896713257}, {\"X\": 0.2192554771900177, \"Y\": 0.4848378896713257}, {\"X\": 0.2192554771900177, \"Y\": 0.5488124489784241}]}, \"Id\": \"7bfbccb9-7e35-461b-9b0b-c9b476270996\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8222ae8c-f6fb-484d-96f5-497d729ed61d\", \"db02546d-6b29-4265-a008-2b92c0b13d1a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69383239746094, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014495089650154114, \"Height\": 0.06351338326931, \"Left\": 0.20473486185073853, \"Top\": 0.40779614448547363}, \"Polygon\": [{\"X\": 0.20473486185073853, \"Y\": 0.4713095426559448}, {\"X\": 0.20473486185073853, \"Y\": 0.40779614448547363}, {\"X\": 0.21922995150089264, \"Y\": 0.40779614448547363}, {\"X\": 0.21922995150089264, \"Y\": 0.4713095426559448}]}, \"Id\": \"67489d15-595e-4cf2-a7ec-88e98a750892\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b8f4b37-85f2-4202-8a8f-04e72005b379\", \"ee072e81-bb8a-46f7-ad2a-b1889c5bc383\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35964965820312, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016955342143774033, \"Height\": 0.07422684133052826, \"Left\": 0.2653205692768097, \"Top\": 0.38269612193107605}, \"Polygon\": [{\"X\": 0.2653205692768097, \"Y\": 0.4569229483604431}, {\"X\": 0.2653205692768097, \"Y\": 0.38269612193107605}, {\"X\": 0.282275915145874, \"Y\": 0.38269612193107605}, {\"X\": 0.282275915145874, \"Y\": 0.4569229483604431}]}, \"Id\": \"a96cf23f-7531-407c-8f3d-f695de5daf64\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7936ca2c-334f-49a6-a1d6-a365c8a13b84\", \"7a3128ce-4941-47e6-ad93-ef8081f769a9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58415985107422, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01721886172890663, \"Height\": 0.07448370009660721, \"Left\": 0.26503345370292664, \"Top\": 0.29509398341178894}, \"Polygon\": [{\"X\": 0.26503345370292664, \"Y\": 0.36957770586013794}, {\"X\": 0.26503345370292664, \"Y\": 0.29509398341178894}, {\"X\": 0.28225231170654297, \"Y\": 0.29509398341178894}, {\"X\": 0.28225231170654297, \"Y\": 0.36957770586013794}]}, \"Id\": \"3339ed51-71b5-4d6e-bc24-65817ff0af03\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0414f0bb-6ea1-43ed-a03b-b10689f3ce97\", \"0dbfe133-cd29-4dfc-8d2c-46f0f7ed001e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56744384765625, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017279742285609245, \"Height\": 0.07456875592470169, \"Left\": 0.26516687870025635, \"Top\": 0.20732861757278442}, \"Polygon\": [{\"X\": 0.26516687870025635, \"Y\": 0.2818973660469055}, {\"X\": 0.26516687870025635, \"Y\": 0.20732861757278442}, {\"X\": 0.28244662284851074, \"Y\": 0.20732861757278442}, {\"X\": 0.28244662284851074, \"Y\": 0.2818973660469055}]}, \"Id\": \"f57cfd82-c69c-482c-91dd-bf0b2cd3220c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dbc503c1-e895-45f0-9514-fabb95913470\", \"ed416634-6dfd-4a37-9e28-19d1e4720098\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56159973144531, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01724463701248169, \"Height\": 0.07484257966279984, \"Left\": 0.2652340829372406, \"Top\": 0.11955702304840088}, \"Polygon\": [{\"X\": 0.2652340829372406, \"Y\": 0.19439959526062012}, {\"X\": 0.2652340829372406, \"Y\": 0.11955702304840088}, {\"X\": 0.2824787199497223, \"Y\": 0.11955702304840088}, {\"X\": 0.2824787199497223, \"Y\": 0.19439959526062012}]}, \"Id\": \"d44cf82d-a58b-4278-8a94-40f59a0d2d71\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2fc1ee2a-577b-445b-86dc-169083bdfbb5\", \"91d4a3b7-cf97-43ca-bc83-1c116c54e004\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35897827148438, \"Text\": \"Value 2.1.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018104609102010727, \"Height\": 0.07364410907030106, \"Left\": 0.26519834995269775, \"Top\": 0.03285769000649452}, \"Polygon\": [{\"X\": 0.26519834995269775, \"Y\": 0.10650180280208588}, {\"X\": 0.26519834995269775, \"Y\": 0.03285769000649452}, {\"X\": 0.2833029627799988, \"Y\": 0.03285769000649452}, {\"X\": 0.2833029627799988, \"Y\": 0.10650180280208588}]}, \"Id\": \"958c2dac-8b89-4cbe-9b29-c20d61c9b7c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3380c0cf-bf6d-4bc2-bc69-d28a4be1ba3c\", \"5a3c87c1-1338-40df-81e3-7971d00e0d7b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42855834960938, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01690840721130371, \"Height\": 0.07402068376541138, \"Left\": 0.2943302094936371, \"Top\": 0.3828548192977905}, \"Polygon\": [{\"X\": 0.2943302094936371, \"Y\": 0.4568755030632019}, {\"X\": 0.2943302094936371, \"Y\": 0.3828548192977905}, {\"X\": 0.3112386167049408, \"Y\": 0.3828548192977905}, {\"X\": 0.3112386167049408, \"Y\": 0.4568755030632019}]}, \"Id\": \"11c18f0c-45c0-4b2c-a669-f0a56b8ebf0b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b7872f72-64aa-4957-b2fc-b75220b966cd\", \"ad13bbd6-6793-48ad-95eb-fd8a56b68d22\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55618286132812, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017146099358797073, \"Height\": 0.07460294663906097, \"Left\": 0.2941429913043976, \"Top\": 0.29497724771499634}, \"Polygon\": [{\"X\": 0.2941429913043976, \"Y\": 0.3695802092552185}, {\"X\": 0.2941429913043976, \"Y\": 0.29497724771499634}, {\"X\": 0.31128910183906555, \"Y\": 0.29497724771499634}, {\"X\": 0.31128910183906555, \"Y\": 0.3695802092552185}]}, \"Id\": \"25fa1160-bd01-4fb2-8d1d-7e8f2bde86a7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ae7d8a5d-7cd5-47ce-96de-bf92c8ffa3fa\", \"c1cf5344-be6a-4c8f-a04d-434196112f67\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53800964355469, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017119718715548515, \"Height\": 0.0742502361536026, \"Left\": 0.29427286982536316, \"Top\": 0.20731399953365326}, \"Polygon\": [{\"X\": 0.29427286982536316, \"Y\": 0.28156423568725586}, {\"X\": 0.29427286982536316, \"Y\": 0.20731399953365326}, {\"X\": 0.31139257550239563, \"Y\": 0.20731399953365326}, {\"X\": 0.31139257550239563, \"Y\": 0.28156423568725586}]}, \"Id\": \"00bb8b16-7a4a-459a-94f5-2ab90a104c3d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f3b0ca40-1a97-4976-b192-9d66fcadd064\", \"c2b5172a-d1db-4c08-a206-6a7db7d94c9b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65938568115234, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01702892780303955, \"Height\": 0.07472120225429535, \"Left\": 0.2942354381084442, \"Top\": 0.11946749687194824}, \"Polygon\": [{\"X\": 0.2942354381084442, \"Y\": 0.1941886991262436}, {\"X\": 0.2942354381084442, \"Y\": 0.11946749687194824}, {\"X\": 0.31126436591148376, \"Y\": 0.11946749687194824}, {\"X\": 0.31126436591148376, \"Y\": 0.1941886991262436}]}, \"Id\": \"e611d0d1-42f0-4aa4-8ed2-18e008c1c172\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f1580be-32f5-4ddf-92ab-bde05b7213ae\", \"ae14342f-bb2a-4dcc-b54e-d0e1a371d5c2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48722839355469, \"Text\": \"Value 2.2.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017354978248476982, \"Height\": 0.07425287365913391, \"Left\": 0.29411080479621887, \"Top\": 0.03214182332158089}, \"Polygon\": [{\"X\": 0.29411080479621887, \"Y\": 0.1063947007060051}, {\"X\": 0.29411080479621887, \"Y\": 0.03214182332158089}, {\"X\": 0.3114657700061798, \"Y\": 0.03214182332158089}, {\"X\": 0.3114657700061798, \"Y\": 0.1063947007060051}]}, \"Id\": \"08d966dd-8b13-4839-af81-063e6a2ea161\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"705ed9ff-f00b-4d8e-a8c3-36c61e5c063b\", \"71f0d242-6180-43f1-88b7-9165deba1d1d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49610137939453, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01692170649766922, \"Height\": 0.07401520013809204, \"Left\": 0.32332268357276917, \"Top\": 0.3829508423805237}, \"Polygon\": [{\"X\": 0.32332268357276917, \"Y\": 0.4569660425186157}, {\"X\": 0.32332268357276917, \"Y\": 0.3829508423805237}, {\"X\": 0.3402443826198578, \"Y\": 0.3829508423805237}, {\"X\": 0.3402443826198578, \"Y\": 0.4569660425186157}]}, \"Id\": \"2faa2e47-ebf4-46c1-915d-ea6b4ecf15a7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3616f745-f7f2-4b75-8517-40854148895a\", \"37e72b93-608e-4788-bb42-5da7f297b225\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56885528564453, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017185954377055168, \"Height\": 0.07460276782512665, \"Left\": 0.32314416766166687, \"Top\": 0.29493263363838196}, \"Polygon\": [{\"X\": 0.32314416766166687, \"Y\": 0.3695353865623474}, {\"X\": 0.32314416766166687, \"Y\": 0.29493263363838196}, {\"X\": 0.3403301239013672, \"Y\": 0.29493263363838196}, {\"X\": 0.3403301239013672, \"Y\": 0.3695353865623474}]}, \"Id\": \"505d522f-896a-4619-bb43-e331b51a6943\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9af40378-e84c-458e-8272-4e26f9c594b5\", \"7d4bd724-ea07-4e74-95aa-c54f1857ff0d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6493911743164, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017086507752537727, \"Height\": 0.07410313934087753, \"Left\": 0.32330164313316345, \"Top\": 0.20746895670890808}, \"Polygon\": [{\"X\": 0.32330164313316345, \"Y\": 0.2815721035003662}, {\"X\": 0.32330164313316345, \"Y\": 0.20746895670890808}, {\"X\": 0.34038814902305603, \"Y\": 0.20746895670890808}, {\"X\": 0.34038814902305603, \"Y\": 0.2815721035003662}]}, \"Id\": \"134b571f-55ce-4879-94b3-4650d61e4801\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b77b1e25-d909-4bec-ad10-d39de2095f49\", \"88821cbc-0fb3-4423-a8e2-61a836617d7f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69351959228516, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017246365547180176, \"Height\": 0.07477390766143799, \"Left\": 0.32313287258148193, \"Top\": 0.11930321902036667}, \"Polygon\": [{\"X\": 0.32313287258148193, \"Y\": 0.19407713413238525}, {\"X\": 0.32313287258148193, \"Y\": 0.11930321902036667}, {\"X\": 0.3403792381286621, \"Y\": 0.11930321902036667}, {\"X\": 0.3403792381286621, \"Y\": 0.19407713413238525}]}, \"Id\": \"fac198a4-116c-4ddf-b5a7-bdc12a56abb6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00fff5bb-7406-4f07-b319-9148f20a75f8\", \"452c55fb-6bfb-4b2a-b737-f4a5a96fdc09\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53824615478516, \"Text\": \"Value 2.3.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017271369695663452, \"Height\": 0.07424847036600113, \"Left\": 0.3231257498264313, \"Top\": 0.03211459144949913}, \"Polygon\": [{\"X\": 0.3231257498264313, \"Y\": 0.10636305809020996}, {\"X\": 0.3231257498264313, \"Y\": 0.03211459144949913}, {\"X\": 0.3403971195220947, \"Y\": 0.03211459144949913}, {\"X\": 0.3403971195220947, \"Y\": 0.10636305809020996}]}, \"Id\": \"7b54ca02-e752-4ce7-a1d4-34085527c966\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d78be432-b6d5-4447-942c-24a7bb1b2a03\", \"be018e29-bec3-44ec-b177-4513bbefe49b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7077407836914, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017045289278030396, \"Height\": 0.0741259753704071, \"Left\": 0.35229793190956116, \"Top\": 0.38290485739707947}, \"Polygon\": [{\"X\": 0.35229793190956116, \"Y\": 0.4570308327674866}, {\"X\": 0.35229793190956116, \"Y\": 0.38290485739707947}, {\"X\": 0.36934322118759155, \"Y\": 0.38290485739707947}, {\"X\": 0.36934322118759155, \"Y\": 0.4570308327674866}]}, \"Id\": \"b11d3616-5bc6-4c01-bb46-7845ae300765\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"43ba555f-60d1-45ad-81d1-7c1e1e093550\", \"126b1ba1-e793-4872-bb33-6b80c2bd3ae2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53448486328125, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017092138528823853, \"Height\": 0.07434200495481491, \"Left\": 0.3522457778453827, \"Top\": 0.294981986284256}, \"Polygon\": [{\"X\": 0.3522457778453827, \"Y\": 0.3693239986896515}, {\"X\": 0.3522457778453827, \"Y\": 0.294981986284256}, {\"X\": 0.36933791637420654, \"Y\": 0.294981986284256}, {\"X\": 0.36933791637420654, \"Y\": 0.3693239986896515}]}, \"Id\": \"455eaf97-9886-4689-aa29-5c9b862ca16c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4ea8857-ad84-4910-8a13-295c3614ba5e\", \"6d7a219d-1ec0-4967-bb98-a5d6650b7f11\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63838195800781, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017080068588256836, \"Height\": 0.07399719208478928, \"Left\": 0.3522558808326721, \"Top\": 0.2075263112783432}, \"Polygon\": [{\"X\": 0.3522558808326721, \"Y\": 0.2815234959125519}, {\"X\": 0.3522558808326721, \"Y\": 0.2075263112783432}, {\"X\": 0.36933594942092896, \"Y\": 0.2075263112783432}, {\"X\": 0.36933594942092896, \"Y\": 0.2815234959125519}]}, \"Id\": \"80e1ea1c-3b2f-43fc-ba37-8011591b96cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efef7474-77b7-4c1d-aba3-cd225b6340b0\", \"b73a7d81-b20f-4cef-aa78-b41ad70b9ab7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74061584472656, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017107009887695312, \"Height\": 0.07465844601392746, \"Left\": 0.3522520065307617, \"Top\": 0.1194412112236023}, \"Polygon\": [{\"X\": 0.3522520065307617, \"Y\": 0.19409966468811035}, {\"X\": 0.3522520065307617, \"Y\": 0.1194412112236023}, {\"X\": 0.36935901641845703, \"Y\": 0.1194412112236023}, {\"X\": 0.36935901641845703, \"Y\": 0.19409966468811035}]}, \"Id\": \"55b89f2e-5304-4bba-9e6a-986e592923a2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5aa32eb7-1fd8-4221-b1c4-874820cc2978\", \"c628bf73-ec23-4654-8148-5a26924d80b4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55792236328125, \"Text\": \"Value 2.4.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017259210348129272, \"Height\": 0.07432223856449127, \"Left\": 0.3521433472633362, \"Top\": 0.03197586163878441}, \"Polygon\": [{\"X\": 0.3521433472633362, \"Y\": 0.10629809647798538}, {\"X\": 0.3521433472633362, \"Y\": 0.03197586163878441}, {\"X\": 0.36940255761146545, \"Y\": 0.03197586163878441}, {\"X\": 0.36940255761146545, \"Y\": 0.10629809647798538}]}, \"Id\": \"d8620fce-8fae-4313-9fbf-4ccf0a87f742\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d68a4c56-8560-4e7d-aa08-7b74fd547b63\", \"a7c1d2fa-c210-4b49-9086-1f93b813b018\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6294174194336, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017201870679855347, \"Height\": 0.07398857921361923, \"Left\": 0.381213515996933, \"Top\": 0.38306301832199097}, \"Polygon\": [{\"X\": 0.381213515996933, \"Y\": 0.4570516049861908}, {\"X\": 0.381213515996933, \"Y\": 0.38306301832199097}, {\"X\": 0.39841538667678833, \"Y\": 0.38306301832199097}, {\"X\": 0.39841538667678833, \"Y\": 0.4570516049861908}]}, \"Id\": \"06e6d8cd-8be9-4684-998c-28376829be92\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"758327c1-430c-43e1-b928-52d95bdafc40\", \"3871055a-8a91-435d-af0a-f5fbbd3a703e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32952880859375, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017205199226737022, \"Height\": 0.07468295097351074, \"Left\": 0.38142886757850647, \"Top\": 0.2948715090751648}, \"Polygon\": [{\"X\": 0.38142886757850647, \"Y\": 0.36955446004867554}, {\"X\": 0.38142886757850647, \"Y\": 0.2948715090751648}, {\"X\": 0.39863407611846924, \"Y\": 0.2948715090751648}, {\"X\": 0.39863407611846924, \"Y\": 0.36955446004867554}]}, \"Id\": \"739d959c-2003-41a7-8d73-c30d9dd20ad8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"469f2e22-9926-4739-b71f-8be4219ec236\", \"764a3362-82bb-4aac-be05-89266d784df3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67739868164062, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017418086528778076, \"Height\": 0.07411331683397293, \"Left\": 0.38108745217323303, \"Top\": 0.2074349820613861}, \"Polygon\": [{\"X\": 0.38108745217323303, \"Y\": 0.28154829144477844}, {\"X\": 0.38108745217323303, \"Y\": 0.2074349820613861}, {\"X\": 0.3985055387020111, \"Y\": 0.2074349820613861}, {\"X\": 0.3985055387020111, \"Y\": 0.28154829144477844}]}, \"Id\": \"7cfbe75c-da31-4696-bb3c-3e10adeaa40a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c0bab5d0-7c9e-403a-9f04-381f57ba4b92\", \"38f8ff8b-18eb-4b46-a607-5531156debf1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5895767211914, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017216756939888, \"Height\": 0.07512951642274857, \"Left\": 0.38142335414886475, \"Top\": 0.11941397935152054}, \"Polygon\": [{\"X\": 0.38142335414886475, \"Y\": 0.1945434957742691}, {\"X\": 0.38142335414886475, \"Y\": 0.11941397935152054}, {\"X\": 0.39864009618759155, \"Y\": 0.11941397935152054}, {\"X\": 0.39864009618759155, \"Y\": 0.1945434957742691}]}, \"Id\": \"1fce9ebd-68e6-4e61-b8d5-0f60ea223e8a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eff969aa-9130-4ea6-b6d5-c464ab854f82\", \"1974d902-3121-4a95-acab-bd788440b7e8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61341857910156, \"Text\": \"Value 2.5.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017344921827316284, \"Height\": 0.07426717877388, \"Left\": 0.3810809552669525, \"Top\": 0.031972918659448624}, \"Polygon\": [{\"X\": 0.3810809552669525, \"Y\": 0.10624010115861893}, {\"X\": 0.3810809552669525, \"Y\": 0.031972918659448624}, {\"X\": 0.3984258770942688, \"Y\": 0.031972918659448624}, {\"X\": 0.3984258770942688, \"Y\": 0.10624010115861893}]}, \"Id\": \"ed98acae-80e3-47b7-a337-520ad5c7f110\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f1b1f9f6-5ace-4010-a844-712175048f3d\", \"b098bbba-c301-4a64-a4fe-28e67dbf132f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78193664550781, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015510857105255127, \"Height\": 0.09482064843177795, \"Left\": 0.48559707403182983, \"Top\": 0.5524476766586304}, \"Polygon\": [{\"X\": 0.48559707403182983, \"Y\": 0.6472683548927307}, {\"X\": 0.48559707403182983, \"Y\": 0.5524476766586304}, {\"X\": 0.501107931137085, \"Y\": 0.5524476766586304}, {\"X\": 0.501107931137085, \"Y\": 0.6472683548927307}]}, \"Id\": \"f9377b18-0289-4dda-a521-ec25ee799398\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f510afc-60d5-42ee-8443-f3dc317a141d\", \"038f8351-2f46-4cdf-a653-18533d7a9240\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50473022460938, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014711027964949608, \"Height\": 0.06373661756515503, \"Left\": 0.5126648545265198, \"Top\": 0.28642839193344116}, \"Polygon\": [{\"X\": 0.5126648545265198, \"Y\": 0.3501650094985962}, {\"X\": 0.5126648545265198, \"Y\": 0.28642839193344116}, {\"X\": 0.5273758769035339, \"Y\": 0.28642839193344116}, {\"X\": 0.5273758769035339, \"Y\": 0.3501650094985962}]}, \"Id\": \"c4e307cf-0467-4258-a5c2-0f4b014a5217\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a9e5099-0561-4d76-8be1-cb94c9588e80\", \"6af5732d-3450-4c3d-aedb-bd6e71308bea\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.47551727294922, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014914394356310368, \"Height\": 0.06429269909858704, \"Left\": 0.51256263256073, \"Top\": 0.18388019502162933}, \"Polygon\": [{\"X\": 0.51256263256073, \"Y\": 0.24817289412021637}, {\"X\": 0.51256263256073, \"Y\": 0.18388019502162933}, {\"X\": 0.5274770259857178, \"Y\": 0.18388019502162933}, {\"X\": 0.5274770259857178, \"Y\": 0.24817289412021637}]}, \"Id\": \"32cda974-41ae-4321-b2e8-e4e87dfacb24\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cdb082b8-c634-4a78-a31e-37e017f00612\", \"d5045e8d-8c65-4d23-a2e2-b65d7d5119d5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46231079101562, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01480153575539589, \"Height\": 0.06358153373003006, \"Left\": 0.5126162767410278, \"Top\": 0.08290636539459229}, \"Polygon\": [{\"X\": 0.5126162767410278, \"Y\": 0.14648790657520294}, {\"X\": 0.5126162767410278, \"Y\": 0.08290636539459229}, {\"X\": 0.5274178385734558, \"Y\": 0.08290636539459229}, {\"X\": 0.5274178385734558, \"Y\": 0.14648790657520294}]}, \"Id\": \"69469370-15ea-4e9d-9c50-4f979d9741f2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa871722-4b8e-415e-992b-2cf5c2dc812b\", \"de35b12a-8bcc-4fb6-91ba-1d78da2a892b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63827514648438, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015605807304382324, \"Height\": 0.07463890314102173, \"Left\": 0.5228710174560547, \"Top\": 0.5760185122489929}, \"Polygon\": [{\"X\": 0.5228710174560547, \"Y\": 0.6506574153900146}, {\"X\": 0.5228710174560547, \"Y\": 0.5760185122489929}, {\"X\": 0.538476824760437, \"Y\": 0.5760185122489929}, {\"X\": 0.538476824760437, \"Y\": 0.6506574153900146}]}, \"Id\": \"d761f467-f4f1-40a5-88fc-7604e6f09a32\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35f3fca0-649e-4d7f-b260-2a2dd40d2f1d\", \"5fb972b0-3134-4f7e-bd52-5df22d8605c5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49413299560547, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014759600162506104, \"Height\": 0.06339655071496964, \"Left\": 0.5375877022743225, \"Top\": 0.28655651211738586}, \"Polygon\": [{\"X\": 0.5375877022743225, \"Y\": 0.3499530553817749}, {\"X\": 0.5375877022743225, \"Y\": 0.28655651211738586}, {\"X\": 0.5523473024368286, \"Y\": 0.28655651211738586}, {\"X\": 0.5523473024368286, \"Y\": 0.3499530553817749}]}, \"Id\": \"3679348f-3065-423d-b815-22e0751eb3a7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"15471c61-83ca-4060-8c4b-99484b3e7616\", \"827da256-6991-49af-a4dd-a305cec03346\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43862915039062, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014840696938335896, \"Height\": 0.06389106810092926, \"Left\": 0.5375123023986816, \"Top\": 0.18430398404598236}, \"Polygon\": [{\"X\": 0.5375123023986816, \"Y\": 0.24819505214691162}, {\"X\": 0.5375123023986816, \"Y\": 0.18430398404598236}, {\"X\": 0.552353024482727, \"Y\": 0.18430398404598236}, {\"X\": 0.552353024482727, \"Y\": 0.24819505214691162}]}, \"Id\": \"89d8889c-b874-4a16-8b46-91bb50e6d4c4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3bb1fec-b467-4a0e-94e9-bc9ac9075e4b\", \"72cb0a55-ce17-4d5e-88cd-68cc1222d48d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35096740722656, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01464766263961792, \"Height\": 0.0634232759475708, \"Left\": 0.5376403331756592, \"Top\": 0.08298581838607788}, \"Polygon\": [{\"X\": 0.5376403331756592, \"Y\": 0.14640909433364868}, {\"X\": 0.5376403331756592, \"Y\": 0.08298581838607788}, {\"X\": 0.5522879958152771, \"Y\": 0.08298581838607788}, {\"X\": 0.5522879958152771, \"Y\": 0.14640909433364868}]}, \"Id\": \"dec4719a-bde0-41c8-af3f-e3d50bdea413\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74d229d0-a6ba-4628-ad89-5877c62f86f7\", \"cc5508ad-8e7b-4b6e-9468-cbc52f2133ac\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43822479248047, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014653503894805908, \"Height\": 0.06343566626310349, \"Left\": 0.5626481175422668, \"Top\": 0.28644508123397827}, \"Polygon\": [{\"X\": 0.5626481175422668, \"Y\": 0.34988075494766235}, {\"X\": 0.5626481175422668, \"Y\": 0.28644508123397827}, {\"X\": 0.5773016214370728, \"Y\": 0.28644508123397827}, {\"X\": 0.5773016214370728, \"Y\": 0.34988075494766235}]}, \"Id\": \"c38c62cc-890e-471b-bfc5-f4b4ed07bd23\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"16c863d1-05bc-47df-9d04-502ded213b0e\", \"746abe7b-9858-4a8b-84b3-de9cb95cb9cf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.18863677978516, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014715679921209812, \"Height\": 0.06407281756401062, \"Left\": 0.5627291798591614, \"Top\": 0.18396888673305511}, \"Polygon\": [{\"X\": 0.5627291798591614, \"Y\": 0.24804170429706573}, {\"X\": 0.5627291798591614, \"Y\": 0.18396888673305511}, {\"X\": 0.577444851398468, \"Y\": 0.18396888673305511}, {\"X\": 0.577444851398468, \"Y\": 0.24804170429706573}]}, \"Id\": \"42ee8202-d2cf-4b26-a929-3677cebf8909\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"346f04f7-3ea5-4663-8d59-eba6e12bc6cc\", \"1decc623-2187-4e4f-94df-282714b93ef1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.52427673339844, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014861047267913818, \"Height\": 0.06345843523740768, \"Left\": 0.5625313520431519, \"Top\": 0.08296018838882446}, \"Polygon\": [{\"X\": 0.5625313520431519, \"Y\": 0.14641863107681274}, {\"X\": 0.5625313520431519, \"Y\": 0.08296018838882446}, {\"X\": 0.5773923993110657, \"Y\": 0.08296018838882446}, {\"X\": 0.5773923993110657, \"Y\": 0.14641863107681274}]}, \"Id\": \"a1f5906a-56b8-4e5a-a1f6-cf52249e2caf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ee451111-6830-4636-aab5-9614cee22485\", \"a454ddbd-1ee5-4edb-b272-d135aea72447\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66434478759766, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014785883016884327, \"Height\": 0.06335421651601791, \"Left\": 0.5876667499542236, \"Top\": 0.286636620759964}, \"Polygon\": [{\"X\": 0.5876667499542236, \"Y\": 0.3499908447265625}, {\"X\": 0.5876667499542236, \"Y\": 0.286636620759964}, {\"X\": 0.6024526357650757, \"Y\": 0.286636620759964}, {\"X\": 0.6024526357650757, \"Y\": 0.3499908447265625}]}, \"Id\": \"13e6a302-946b-4fe1-b2be-35daee8af0d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7ad486ac-0dfc-4061-82b7-43b20badd165\", \"a8cdb7c5-0502-41a4-b213-c7719e5d724a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39303588867188, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014947067014873028, \"Height\": 0.06378692388534546, \"Left\": 0.5875338912010193, \"Top\": 0.18434733152389526}, \"Polygon\": [{\"X\": 0.5875338912010193, \"Y\": 0.24813425540924072}, {\"X\": 0.5875338912010193, \"Y\": 0.18434733152389526}, {\"X\": 0.602480947971344, \"Y\": 0.18434733152389526}, {\"X\": 0.602480947971344, \"Y\": 0.24813425540924072}]}, \"Id\": \"2288c798-cdfe-4b72-a080-db66ab2f7321\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"257834fc-b060-40be-ac11-4852bf7b5187\", \"1712b2ce-b3d1-442e-8e61-bb476f45f1bb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.97018432617188, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014901353046298027, \"Height\": 0.06350532919168472, \"Left\": 0.5875886678695679, \"Top\": 0.08294767141342163}, \"Polygon\": [{\"X\": 0.5875886678695679, \"Y\": 0.14645299315452576}, {\"X\": 0.5875886678695679, \"Y\": 0.08294767141342163}, {\"X\": 0.6024900078773499, \"Y\": 0.08294767141342163}, {\"X\": 0.6024900078773499, \"Y\": 0.14645299315452576}]}, \"Id\": \"d97dce1c-c9ff-432f-ac3b-a964071d5ef2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ddd573b-e59c-4583-bce5-78ae723ffea4\", \"d8672e7a-682a-460c-862a-1b89c3b620ff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.596923828125, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014928758144378662, \"Height\": 0.06355973333120346, \"Left\": 0.612539529800415, \"Top\": 0.28639835119247437}, \"Polygon\": [{\"X\": 0.612539529800415, \"Y\": 0.3499580919742584}, {\"X\": 0.612539529800415, \"Y\": 0.28639835119247437}, {\"X\": 0.6274682283401489, \"Y\": 0.28639835119247437}, {\"X\": 0.6274682283401489, \"Y\": 0.3499580919742584}]}, \"Id\": \"4fed5934-dc82-4672-bf75-2e82eda01be7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23365f0c-87e0-40e6-a614-0e36dede0a4d\", \"7264d208-7324-4104-a188-5d841537041b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35964965820312, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01482415571808815, \"Height\": 0.0639072135090828, \"Left\": 0.6126391291618347, \"Top\": 0.18422038853168488}, \"Polygon\": [{\"X\": 0.6126391291618347, \"Y\": 0.24812759459018707}, {\"X\": 0.6126391291618347, \"Y\": 0.18422038853168488}, {\"X\": 0.6274632811546326, \"Y\": 0.18422038853168488}, {\"X\": 0.6274632811546326, \"Y\": 0.24812759459018707}]}, \"Id\": \"1fcf46a5-0f88-41c8-a0c4-6e2e82598f8c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb18db8e-8934-4842-9458-4bcb870c6a52\", \"3c02dc4b-36dc-49c3-80ae-c0326fe9acaa\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.19898986816406, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015136361122131348, \"Height\": 0.06376615911722183, \"Left\": 0.6123664975166321, \"Top\": 0.08281554281711578}, \"Polygon\": [{\"X\": 0.6123664975166321, \"Y\": 0.14658169448375702}, {\"X\": 0.6123664975166321, \"Y\": 0.08281554281711578}, {\"X\": 0.6275028586387634, \"Y\": 0.08281554281711578}, {\"X\": 0.6275028586387634, \"Y\": 0.14658169448375702}]}, \"Id\": \"19b2677f-4f1a-4dd2-853b-6a57e1f2e37d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19934a84-a856-4893-94c8-d14017d84914\", \"845a215e-8bfe-4cbf-8796-459494fc1397\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50906372070312, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01501387357711792, \"Height\": 0.0634511336684227, \"Left\": 0.6374371647834778, \"Top\": 0.2864779531955719}, \"Polygon\": [{\"X\": 0.6374371647834778, \"Y\": 0.3499290943145752}, {\"X\": 0.6374371647834778, \"Y\": 0.2864779531955719}, {\"X\": 0.6524510383605957, \"Y\": 0.2864779531955719}, {\"X\": 0.6524510383605957, \"Y\": 0.3499290943145752}]}, \"Id\": \"6742cb8f-6d30-48f9-a9d6-59ea5b336da8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5d3389b-dda1-42b7-9104-68ef8172090f\", \"552d4b61-3b70-4f92-b231-9a3970abe558\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32880401611328, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014875173568725586, \"Height\": 0.06399049609899521, \"Left\": 0.6373850703239441, \"Top\": 0.18423859775066376}, \"Polygon\": [{\"X\": 0.6373850703239441, \"Y\": 0.24822910130023956}, {\"X\": 0.6373850703239441, \"Y\": 0.18423859775066376}, {\"X\": 0.6522603034973145, \"Y\": 0.18423859775066376}, {\"X\": 0.6522603034973145, \"Y\": 0.24822910130023956}]}, \"Id\": \"bf7f3662-c854-4376-82d9-ffacad08602f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9b35452b-939c-451f-96ac-2ed9dfb03175\", \"04870fd1-1f0e-4f48-a6d7-88a085f9494d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.8478012084961, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014999210834503174, \"Height\": 0.06379274278879166, \"Left\": 0.6373827457427979, \"Top\": 0.08288925886154175}, \"Polygon\": [{\"X\": 0.6373827457427979, \"Y\": 0.1466819941997528}, {\"X\": 0.6373827457427979, \"Y\": 0.08288925886154175}, {\"X\": 0.652381956577301, \"Y\": 0.08288925886154175}, {\"X\": 0.652381956577301, \"Y\": 0.1466819941997528}]}, \"Id\": \"032f853b-91dc-4205-bb0d-fb7201fb6529\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad6d63d7-5497-41a9-9e0e-c8d949a88775\", \"bf0ecb32-c2d8-49e4-8c25-a3b1416f6988\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35934448242188, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014943599700927734, \"Height\": 0.0638241171836853, \"Left\": 0.6625424027442932, \"Top\": 0.2863217890262604}, \"Polygon\": [{\"X\": 0.6625424027442932, \"Y\": 0.3501459062099457}, {\"X\": 0.6625424027442932, \"Y\": 0.2863217890262604}, {\"X\": 0.677486002445221, \"Y\": 0.2863217890262604}, {\"X\": 0.677486002445221, \"Y\": 0.3501459062099457}]}, \"Id\": \"3825275f-b6e2-4fdc-ac54-0fb02c9f3fa4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"36e422d6-7f13-48de-b7c9-d6af3b680cda\", \"4e628985-db09-4d21-9798-96bae9079e06\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.85298156738281, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014844715595245361, \"Height\": 0.063955157995224, \"Left\": 0.6625604629516602, \"Top\": 0.18410471081733704}, \"Polygon\": [{\"X\": 0.6625604629516602, \"Y\": 0.24805986881256104}, {\"X\": 0.6625604629516602, \"Y\": 0.18410471081733704}, {\"X\": 0.6774051785469055, \"Y\": 0.18410471081733704}, {\"X\": 0.6774051785469055, \"Y\": 0.24805986881256104}]}, \"Id\": \"c5ff7efe-55e0-4dfe-981f-2f93c20bbe55\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35facc19-4add-4b7e-8d34-b591b7df7ec6\", \"b6facb65-16da-4db8-a9c4-61e151ec687a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.29703521728516, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014948368072509766, \"Height\": 0.06338632106781006, \"Left\": 0.6624281406402588, \"Top\": 0.08304303884506226}, \"Polygon\": [{\"X\": 0.6624281406402588, \"Y\": 0.14642935991287231}, {\"X\": 0.6624281406402588, \"Y\": 0.08304303884506226}, {\"X\": 0.6773765087127686, \"Y\": 0.08304303884506226}, {\"X\": 0.6773765087127686, \"Y\": 0.14642935991287231}]}, \"Id\": \"c6235688-4a4b-4941-9a1f-41f47594f271\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0e96b2de-1f7e-4fcb-bb54-6a0fadfb0e6f\", \"00015fea-3836-452e-9944-6b13cfd4e762\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56468963623047, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014711618423461914, \"Height\": 0.06353504955768585, \"Left\": 0.6876577138900757, \"Top\": 0.2864322364330292}, \"Polygon\": [{\"X\": 0.6876577138900757, \"Y\": 0.3499673008918762}, {\"X\": 0.6876577138900757, \"Y\": 0.2864322364330292}, {\"X\": 0.7023693323135376, \"Y\": 0.2864322364330292}, {\"X\": 0.7023693323135376, \"Y\": 0.3499673008918762}]}, \"Id\": \"fa1e2d3f-edf3-456f-8726-a5f55dfead7b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"baf71b20-3807-4c98-9031-e08556016c1a\", \"593f6dbc-29e5-4dc8-abb1-6dbf38484776\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45295715332031, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014825761318206787, \"Height\": 0.06365984678268433, \"Left\": 0.6875424981117249, \"Top\": 0.18445289134979248}, \"Polygon\": [{\"X\": 0.6875424981117249, \"Y\": 0.2481127381324768}, {\"X\": 0.6875424981117249, \"Y\": 0.18445289134979248}, {\"X\": 0.7023682594299316, \"Y\": 0.18445289134979248}, {\"X\": 0.7023682594299316, \"Y\": 0.2481127381324768}]}, \"Id\": \"50e4daa2-d704-4fda-af5e-1231aadac1ec\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0db120c6-694f-4ebb-811c-c05eec67564d\", \"807e2070-a4d3-438b-977c-10d09cafa7a5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.21743774414062, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014642629772424698, \"Height\": 0.063634492456913, \"Left\": 0.6876262426376343, \"Top\": 0.08291514962911606}, \"Polygon\": [{\"X\": 0.6876262426376343, \"Y\": 0.14654964208602905}, {\"X\": 0.6876262426376343, \"Y\": 0.08291514962911606}, {\"X\": 0.7022688984870911, \"Y\": 0.08291514962911606}, {\"X\": 0.7022688984870911, \"Y\": 0.14654964208602905}]}, \"Id\": \"2e50fedf-6719-4cbc-ad75-80afd2c4622d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fbdc45eb-5b36-4995-b3cd-b9dce8a6d891\", \"6e1e26c0-3e24-469e-85b8-5eacd91cf255\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61695098876953, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015643417835235596, \"Height\": 0.07409358769655228, \"Left\": 0.7079185843467712, \"Top\": 0.5754668116569519}, \"Polygon\": [{\"X\": 0.7079185843467712, \"Y\": 0.6495603919029236}, {\"X\": 0.7079185843467712, \"Y\": 0.5754668116569519}, {\"X\": 0.7235620021820068, \"Y\": 0.5754668116569519}, {\"X\": 0.7235620021820068, \"Y\": 0.6495603919029236}]}, \"Id\": \"1888cbe9-eff0-4161-b46e-2781f6986919\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6df3fa03-b547-414b-bb01-f0dec677bda1\", \"2523c945-5dbc-400f-8874-344ebeac43aa\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8260269165039, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015111506916582584, \"Height\": 0.09538649767637253, \"Left\": 0.7313058972358704, \"Top\": 0.5546028017997742}, \"Polygon\": [{\"X\": 0.7313058972358704, \"Y\": 0.6499893069267273}, {\"X\": 0.7313058972358704, \"Y\": 0.5546028017997742}, {\"X\": 0.7464174032211304, \"Y\": 0.5546028017997742}, {\"X\": 0.7464174032211304, \"Y\": 0.6499893069267273}]}, \"Id\": \"f94730ed-049e-46ce-8b64-d195775afda3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c928703-ed96-452b-b0e1-a0168d6402a3\", \"02302701-84dd-4d7a-95a9-7a1ae1768da8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 93.03288269042969, \"Text\": \"Hel lo World barcode here!\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006361563224345446, \"Height\": 0.07877761870622635, \"Left\": 0.8902239203453064, \"Top\": 0.15666617453098297}, \"Polygon\": [{\"X\": 0.8902239203453064, \"Y\": 0.23544380068778992}, {\"X\": 0.8902239203453064, \"Y\": 0.15666617453098297}, {\"X\": 0.8965854644775391, \"Y\": 0.15666617453098297}, {\"X\": 0.8965854644775391, \"Y\": 0.23544380068778992}]}, \"Id\": \"eef916b4-c0a7-4edf-b4e0-7e9c477af471\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1a8b2b1-8f7d-4fbd-a89f-51e171fc949c\", \"5781c30b-798c-46ec-9f2c-582bbe1dab72\", \"44761667-9c65-4347-a7fb-890fb1468355\", \"2d72473e-7823-45d2-aa1c-ac213f69b3bd\", \"b36a89ac-537c-4c89-840f-55db4ad5ae5e\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43527221679688, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014911876991391182, \"Height\": 0.03709305077791214, \"Left\": 0.018172873184084892, \"Top\": 0.6065085530281067}, \"Polygon\": [{\"X\": 0.018172873184084892, \"Y\": 0.6436015963554382}, {\"X\": 0.018172873184084892, \"Y\": 0.6065085530281067}, {\"X\": 0.033084750175476074, \"Y\": 0.6065085530281067}, {\"X\": 0.033084750175476074, \"Y\": 0.6436015963554382}]}, \"Id\": \"2c161783-e54a-4d57-8ca5-ea6e876b59cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65766906738281, \"Text\": \"SomeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015217291191220284, \"Height\": 0.06650195270776749, \"Left\": 0.017920758575201035, \"Top\": 0.5369620323181152}, \"Polygon\": [{\"X\": 0.017920758575201035, \"Y\": 0.6034640073776245}, {\"X\": 0.017920758575201035, \"Y\": 0.5369620323181152}, {\"X\": 0.03313805162906647, \"Y\": 0.5369620323181152}, {\"X\": 0.03313805162906647, \"Y\": 0.6034640073776245}]}, \"Id\": \"225ead35-ed7a-4b2b-a1b3-25a3ae8bcaee\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75138854980469, \"Text\": \"Key1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017975440248847008, \"Height\": 0.03056883066892624, \"Left\": 0.05636569857597351, \"Top\": 0.137739896774292}, \"Polygon\": [{\"X\": 0.05636569857597351, \"Y\": 0.16830873489379883}, {\"X\": 0.05636569857597351, \"Y\": 0.137739896774292}, {\"X\": 0.07434114068746567, \"Y\": 0.137739896774292}, {\"X\": 0.07434114068746567, \"Y\": 0.16830873489379883}]}, \"Id\": \"5d33921d-6a5d-44c7-ae4d-c64217bb56f1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.65266418457031, \"Text\": \"value1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015469811856746674, \"Height\": 0.03795124962925911, \"Left\": 0.05586542189121246, \"Top\": 0.09675029665231705}, \"Polygon\": [{\"X\": 0.05586542189121246, \"Y\": 0.13470155000686646}, {\"X\": 0.05586542189121246, \"Y\": 0.09675029665231705}, {\"X\": 0.07133523374795914, \"Y\": 0.09675029665231705}, {\"X\": 0.07133523374795914, \"Y\": 0.13470155000686646}]}, \"Id\": \"5cd800b5-7a81-4cc2-a014-de4b76e6b701\"}, {\"BlockType\": \"WORD\", \"Confidence\": 91.9552001953125, \"Text\": \"Key2:value2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018439389765262604, \"Height\": 0.07163359969854355, \"Left\": 0.08999688178300858, \"Top\": 0.09647680073976517}, \"Polygon\": [{\"X\": 0.08999688178300858, \"Y\": 0.16811040043830872}, {\"X\": 0.08999688178300858, \"Y\": 0.09647680073976517}, {\"X\": 0.10843627154827118, \"Y\": 0.09647680073976517}, {\"X\": 0.10843627154827118, \"Y\": 0.16811040043830872}]}, \"Id\": \"2168a553-df9a-47d2-a411-ccd27e3abafa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8019790649414, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015156700275838375, \"Height\": 0.032590098679065704, \"Left\": 0.15422964096069336, \"Top\": 0.5938549041748047}, \"Polygon\": [{\"X\": 0.15422964096069336, \"Y\": 0.6264449954032898}, {\"X\": 0.15422964096069336, \"Y\": 0.5938549041748047}, {\"X\": 0.1693863421678543, \"Y\": 0.5938549041748047}, {\"X\": 0.1693863421678543, \"Y\": 0.6264449954032898}]}, \"Id\": \"e4e731b6-3580-4895-af80-cabd75c62fe3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37501525878906, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01474745012819767, \"Height\": 0.027305439114570618, \"Left\": 0.15454845130443573, \"Top\": 0.5628179907798767}, \"Polygon\": [{\"X\": 0.15454845130443573, \"Y\": 0.5901234149932861}, {\"X\": 0.15454845130443573, \"Y\": 0.5628179907798767}, {\"X\": 0.16929590702056885, \"Y\": 0.5628179907798767}, {\"X\": 0.16929590702056885, \"Y\": 0.5901234149932861}]}, \"Id\": \"b92f1e83-9d90-44bd-9af1-98674964ff7e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78013610839844, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015389270149171352, \"Height\": 0.032889120280742645, \"Left\": 0.15413229167461395, \"Top\": 0.5160870552062988}, \"Polygon\": [{\"X\": 0.15413229167461395, \"Y\": 0.5489761233329773}, {\"X\": 0.15413229167461395, \"Y\": 0.5160870552062988}, {\"X\": 0.16952155530452728, \"Y\": 0.5160870552062988}, {\"X\": 0.16952155530452728, \"Y\": 0.5489761233329773}]}, \"Id\": \"979febdd-2bbb-4405-b946-0ba548510a6e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35200500488281, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014476940035820007, \"Height\": 0.02784305065870285, \"Left\": 0.1547035127878189, \"Top\": 0.4848383665084839}, \"Polygon\": [{\"X\": 0.1547035127878189, \"Y\": 0.5126814246177673}, {\"X\": 0.1547035127878189, \"Y\": 0.4848383665084839}, {\"X\": 0.16918045282363892, \"Y\": 0.4848383665084839}, {\"X\": 0.16918045282363892, \"Y\": 0.5126814246177673}]}, \"Id\": \"f537e3d8-0cf8-4703-b146-be750254ea53\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76582336425781, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01491003017872572, \"Height\": 0.03262744098901749, \"Left\": 0.15441270172595978, \"Top\": 0.4388209581375122}, \"Polygon\": [{\"X\": 0.15441270172595978, \"Y\": 0.4714483916759491}, {\"X\": 0.15441270172595978, \"Y\": 0.4388209581375122}, {\"X\": 0.16932272911071777, \"Y\": 0.4388209581375122}, {\"X\": 0.16932272911071777, \"Y\": 0.4714483916759491}]}, \"Id\": \"32f79454-8deb-4c70-9a3f-4ca31a17beef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36459350585938, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01448344998061657, \"Height\": 0.027127809822559357, \"Left\": 0.1547306478023529, \"Top\": 0.4078368544578552}, \"Polygon\": [{\"X\": 0.1547306478023529, \"Y\": 0.434964656829834}, {\"X\": 0.1547306478023529, \"Y\": 0.4078368544578552}, {\"X\": 0.16921409964561462, \"Y\": 0.4078368544578552}, {\"X\": 0.16921409964561462, \"Y\": 0.434964656829834}]}, \"Id\": \"d4e26e58-ecb5-4a3c-bc34-16154dbbe053\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75390625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01510132011026144, \"Height\": 0.03293360024690628, \"Left\": 0.17932787537574768, \"Top\": 0.5936196446418762}, \"Polygon\": [{\"X\": 0.17932787537574768, \"Y\": 0.6265532970428467}, {\"X\": 0.17932787537574768, \"Y\": 0.5936196446418762}, {\"X\": 0.1944292038679123, \"Y\": 0.5936196446418762}, {\"X\": 0.1944292038679123, \"Y\": 0.6265532970428467}]}, \"Id\": \"a492319c-ef80-433d-877f-0cff3a4f06a7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.00501251220703, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014742259867489338, \"Height\": 0.027353079989552498, \"Left\": 0.17963117361068726, \"Top\": 0.5627681016921997}, \"Polygon\": [{\"X\": 0.17963117361068726, \"Y\": 0.5901212096214294}, {\"X\": 0.17963117361068726, \"Y\": 0.5627681016921997}, {\"X\": 0.19437342882156372, \"Y\": 0.5627681016921997}, {\"X\": 0.19437342882156372, \"Y\": 0.5901212096214294}]}, \"Id\": \"3e4f5e69-c1ac-4817-914c-8fe593ad6af1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82878112792969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014934339560568333, \"Height\": 0.03261232003569603, \"Left\": 0.17940935492515564, \"Top\": 0.5161734223365784}, \"Polygon\": [{\"X\": 0.17940935492515564, \"Y\": 0.5487857460975647}, {\"X\": 0.17940935492515564, \"Y\": 0.5161734223365784}, {\"X\": 0.1943436861038208, \"Y\": 0.5161734223365784}, {\"X\": 0.1943436861038208, \"Y\": 0.5487857460975647}]}, \"Id\": \"58beb17d-69b6-48ef-88d8-6ca55aafc84c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42093658447266, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014304039999842644, \"Height\": 0.027473820373415947, \"Left\": 0.1798449605703354, \"Top\": 0.48484641313552856}, \"Polygon\": [{\"X\": 0.1798449605703354, \"Y\": 0.5123202204704285}, {\"X\": 0.1798449605703354, \"Y\": 0.48484641313552856}, {\"X\": 0.19414900243282318, \"Y\": 0.48484641313552856}, {\"X\": 0.19414900243282318, \"Y\": 0.5123202204704285}]}, \"Id\": \"c8c5b8ef-9cc4-422b-87bb-6a06d90ca1bc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71391296386719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014843789860606194, \"Height\": 0.03248029947280884, \"Left\": 0.179437056183815, \"Top\": 0.4388324022293091}, \"Polygon\": [{\"X\": 0.179437056183815, \"Y\": 0.4713127017021179}, {\"X\": 0.179437056183815, \"Y\": 0.4388324022293091}, {\"X\": 0.19428084790706635, \"Y\": 0.4388324022293091}, {\"X\": 0.19428084790706635, \"Y\": 0.4713127017021179}]}, \"Id\": \"37554b3a-777d-4728-a2bb-8467ca18c3e9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2212905883789, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01438536960631609, \"Height\": 0.02709328942000866, \"Left\": 0.17979875206947327, \"Top\": 0.4078408479690552}, \"Polygon\": [{\"X\": 0.17979875206947327, \"Y\": 0.434934139251709}, {\"X\": 0.17979875206947327, \"Y\": 0.4078408479690552}, {\"X\": 0.19418412446975708, \"Y\": 0.4078408479690552}, {\"X\": 0.19418412446975708, \"Y\": 0.434934139251709}]}, \"Id\": \"4e9b62bc-3aa5-41cb-bbfc-f8773b25158f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77437591552734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0145133500918746, \"Height\": 0.03231086954474449, \"Left\": 0.20469874143600464, \"Top\": 0.5938876867294312}, \"Polygon\": [{\"X\": 0.20469874143600464, \"Y\": 0.6261985301971436}, {\"X\": 0.20469874143600464, \"Y\": 0.5938876867294312}, {\"X\": 0.21921208500862122, \"Y\": 0.5938876867294312}, {\"X\": 0.21921208500862122, \"Y\": 0.6261985301971436}]}, \"Id\": \"7fc05e2c-b03d-496e-b123-a149c69735bb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23662567138672, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014470179565250874, \"Height\": 0.02758657932281494, \"Left\": 0.20475757122039795, \"Top\": 0.5627222061157227}, \"Polygon\": [{\"X\": 0.20475757122039795, \"Y\": 0.5903087854385376}, {\"X\": 0.20475757122039795, \"Y\": 0.5627222061157227}, {\"X\": 0.21922774612903595, \"Y\": 0.5627222061157227}, {\"X\": 0.21922774612903595, \"Y\": 0.5903087854385376}]}, \"Id\": \"1e9d3705-5740-494c-b259-f33c44468e0f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69178771972656, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014655579812824726, \"Height\": 0.0325460210442543, \"Left\": 0.20459990203380585, \"Top\": 0.516266405582428}, \"Polygon\": [{\"X\": 0.20459990203380585, \"Y\": 0.5488124489784241}, {\"X\": 0.20459990203380585, \"Y\": 0.516266405582428}, {\"X\": 0.2192554771900177, \"Y\": 0.516266405582428}, {\"X\": 0.2192554771900177, \"Y\": 0.5488124489784241}]}, \"Id\": \"8222ae8c-f6fb-484d-96f5-497d729ed61d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44414520263672, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014173939824104309, \"Height\": 0.027544429525732994, \"Left\": 0.20500428974628448, \"Top\": 0.4848378896713257}, \"Polygon\": [{\"X\": 0.20500428974628448, \"Y\": 0.5123823285102844}, {\"X\": 0.20500428974628448, \"Y\": 0.4848378896713257}, {\"X\": 0.2191782295703888, \"Y\": 0.4848378896713257}, {\"X\": 0.2191782295703888, \"Y\": 0.5123823285102844}]}, \"Id\": \"db02546d-6b29-4265-a008-2b92c0b13d1a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7878646850586, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014495089650154114, \"Height\": 0.03235524147748947, \"Left\": 0.20473486185073853, \"Top\": 0.43895429372787476}, \"Polygon\": [{\"X\": 0.20473486185073853, \"Y\": 0.4713095426559448}, {\"X\": 0.20473486185073853, \"Y\": 0.43895429372787476}, {\"X\": 0.21922995150089264, \"Y\": 0.43895429372787476}, {\"X\": 0.21922995150089264, \"Y\": 0.4713095426559448}]}, \"Id\": \"4b8f4b37-85f2-4202-8a8f-04e72005b379\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59980010986328, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014435900375247002, \"Height\": 0.027356760576367378, \"Left\": 0.2047833949327469, \"Top\": 0.40779614448547363}, \"Polygon\": [{\"X\": 0.2047833949327469, \"Y\": 0.43515288829803467}, {\"X\": 0.2047833949327469, \"Y\": 0.40779614448547363}, {\"X\": 0.21921929717063904, \"Y\": 0.40779614448547363}, {\"X\": 0.21921929717063904, \"Y\": 0.43515288829803467}]}, \"Id\": \"ee072e81-bb8a-46f7-ad2a-b1889c5bc383\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88324737548828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016880329698324203, \"Height\": 0.03770292177796364, \"Left\": 0.2653205692768097, \"Top\": 0.4192200303077698}, \"Polygon\": [{\"X\": 0.2653205692768097, \"Y\": 0.4569229483604431}, {\"X\": 0.2653205692768097, \"Y\": 0.4192200303077698}, {\"X\": 0.2822009027004242, \"Y\": 0.4192200303077698}, {\"X\": 0.2822009027004242, \"Y\": 0.4569229483604431}]}, \"Id\": \"7936ca2c-334f-49a6-a1d6-a365c8a13b84\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.83604431152344, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016699669882655144, \"Height\": 0.032306499779224396, \"Left\": 0.2655762732028961, \"Top\": 0.38269609212875366}, \"Polygon\": [{\"X\": 0.2655762732028961, \"Y\": 0.41500261425971985}, {\"X\": 0.2655762732028961, \"Y\": 0.38269609212875366}, {\"X\": 0.2822759449481964, \"Y\": 0.38269609212875366}, {\"X\": 0.2822759449481964, \"Y\": 0.41500261425971985}]}, \"Id\": \"7a3128ce-4941-47e6-ad93-ef8081f769a9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8115463256836, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017208049073815346, \"Height\": 0.038154300302267075, \"Left\": 0.26503345370292664, \"Top\": 0.33142340183258057}, \"Polygon\": [{\"X\": 0.26503345370292664, \"Y\": 0.36957770586013794}, {\"X\": 0.26503345370292664, \"Y\": 0.33142340183258057}, {\"X\": 0.28224149346351624, \"Y\": 0.33142340183258057}, {\"X\": 0.28224149346351624, \"Y\": 0.36957770586013794}]}, \"Id\": \"0414f0bb-6ea1-43ed-a03b-b10689f3ce97\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35677337646484, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01691816933453083, \"Height\": 0.03226279839873314, \"Left\": 0.2653341293334961, \"Top\": 0.29509401321411133}, \"Polygon\": [{\"X\": 0.2653341293334961, \"Y\": 0.3273567855358124}, {\"X\": 0.2653341293334961, \"Y\": 0.29509401321411133}, {\"X\": 0.28225231170654297, \"Y\": 0.29509401321411133}, {\"X\": 0.28225231170654297, \"Y\": 0.3273567855358124}]}, \"Id\": \"0dbfe133-cd29-4dfc-8d2c-46f0f7ed001e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79374694824219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017174480482935905, \"Height\": 0.03814703971147537, \"Left\": 0.26516687870025635, \"Top\": 0.24375033378601074}, \"Polygon\": [{\"X\": 0.26516687870025635, \"Y\": 0.2818973660469055}, {\"X\": 0.26516687870025635, \"Y\": 0.24375033378601074}, {\"X\": 0.2823413610458374, \"Y\": 0.24375033378601074}, {\"X\": 0.2823413610458374, \"Y\": 0.2818973660469055}]}, \"Id\": \"dbc503c1-e895-45f0-9514-fabb95913470\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34113311767578, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01698143035173416, \"Height\": 0.03241629898548126, \"Left\": 0.2654651701450348, \"Top\": 0.20732860267162323}, \"Polygon\": [{\"X\": 0.2654651701450348, \"Y\": 0.2397449016571045}, {\"X\": 0.2654651701450348, \"Y\": 0.20732860267162323}, {\"X\": 0.28244659304618835, \"Y\": 0.20732860267162323}, {\"X\": 0.28244659304618835, \"Y\": 0.2397449016571045}]}, \"Id\": \"ed416634-6dfd-4a37-9e28-19d1e4720098\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74723052978516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017244670540094376, \"Height\": 0.03780759871006012, \"Left\": 0.2652340829372406, \"Top\": 0.15659199655056}, \"Polygon\": [{\"X\": 0.2652340829372406, \"Y\": 0.19439959526062012}, {\"X\": 0.2652340829372406, \"Y\": 0.15659199655056}, {\"X\": 0.2824787497520447, \"Y\": 0.15659199655056}, {\"X\": 0.2824787497520447, \"Y\": 0.19439959526062012}]}, \"Id\": \"2fc1ee2a-577b-445b-86dc-169083bdfbb5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3759765625, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016656100749969482, \"Height\": 0.03262373059988022, \"Left\": 0.2656745910644531, \"Top\": 0.11955700069665909}, \"Polygon\": [{\"X\": 0.2656745910644531, \"Y\": 0.1521807312965393}, {\"X\": 0.2656745910644531, \"Y\": 0.11955700069665909}, {\"X\": 0.2823306918144226, \"Y\": 0.11955700069665909}, {\"X\": 0.2823306918144226, \"Y\": 0.1521807312965393}]}, \"Id\": \"91d4a3b7-cf97-43ca-bc83-1c116c54e004\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7592544555664, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01716149039566517, \"Height\": 0.03870705887675285, \"Left\": 0.26519834995269775, \"Top\": 0.06779474020004272}, \"Polygon\": [{\"X\": 0.26519834995269775, \"Y\": 0.10650180280208588}, {\"X\": 0.26519834995269775, \"Y\": 0.06779474020004272}, {\"X\": 0.2823598384857178, \"Y\": 0.06779474020004272}, {\"X\": 0.2823598384857178, \"Y\": 0.10650180280208588}]}, \"Id\": \"3380c0cf-bf6d-4bc2-bc69-d28a4be1ba3c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.95870971679688, \"Text\": \"2.1.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017732679843902588, \"Height\": 0.031248539686203003, \"Left\": 0.2655702531337738, \"Top\": 0.032857660204172134}, \"Polygon\": [{\"X\": 0.2655702531337738, \"Y\": 0.06410620361566544}, {\"X\": 0.2655702531337738, \"Y\": 0.032857660204172134}, {\"X\": 0.2833029329776764, \"Y\": 0.032857660204172134}, {\"X\": 0.2833029329776764, \"Y\": 0.06410620361566544}]}, \"Id\": \"5a3c87c1-1338-40df-81e3-7971d00e0d7b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86260223388672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016908420249819756, \"Height\": 0.037529051303863525, \"Left\": 0.2943302094936371, \"Top\": 0.4193464517593384}, \"Polygon\": [{\"X\": 0.2943302094936371, \"Y\": 0.4568755030632019}, {\"X\": 0.2943302094936371, \"Y\": 0.4193464517593384}, {\"X\": 0.3112386167049408, \"Y\": 0.4193464517593384}, {\"X\": 0.3112386167049408, \"Y\": 0.4568755030632019}]}, \"Id\": \"b7872f72-64aa-4957-b2fc-b75220b966cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.99451446533203, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01658271998167038, \"Height\": 0.032267048954963684, \"Left\": 0.29454219341278076, \"Top\": 0.38285478949546814}, \"Polygon\": [{\"X\": 0.29454219341278076, \"Y\": 0.415121853351593}, {\"X\": 0.29454219341278076, \"Y\": 0.38285478949546814}, {\"X\": 0.31112492084503174, \"Y\": 0.38285478949546814}, {\"X\": 0.31112492084503174, \"Y\": 0.415121853351593}]}, \"Id\": \"ad13bbd6-6793-48ad-95eb-fd8a56b68d22\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7668685913086, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017077380791306496, \"Height\": 0.03828909993171692, \"Left\": 0.2941429913043976, \"Top\": 0.3312911093235016}, \"Polygon\": [{\"X\": 0.2941429913043976, \"Y\": 0.3695802092552185}, {\"X\": 0.2941429913043976, \"Y\": 0.3312911093235016}, {\"X\": 0.3112203776836395, \"Y\": 0.3312911093235016}, {\"X\": 0.3112203776836395, \"Y\": 0.3695802092552185}]}, \"Id\": \"ae7d8a5d-7cd5-47ce-96de-bf92c8ffa3fa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34549713134766, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01694411039352417, \"Height\": 0.0324469693005085, \"Left\": 0.294344961643219, \"Top\": 0.29497718811035156}, \"Polygon\": [{\"X\": 0.294344961643219, \"Y\": 0.32742416858673096}, {\"X\": 0.294344961643219, \"Y\": 0.29497718811035156}, {\"X\": 0.31128907203674316, \"Y\": 0.29497718811035156}, {\"X\": 0.31128907203674316, \"Y\": 0.32742416858673096}]}, \"Id\": \"c1cf5344-be6a-4c8f-a04d-434196112f67\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78001403808594, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017054079100489616, \"Height\": 0.0378248393535614, \"Left\": 0.29427286982536316, \"Top\": 0.24373939633369446}, \"Polygon\": [{\"X\": 0.29427286982536316, \"Y\": 0.28156423568725586}, {\"X\": 0.29427286982536316, \"Y\": 0.24373939633369446}, {\"X\": 0.3113269507884979, \"Y\": 0.24373939633369446}, {\"X\": 0.3113269507884979, \"Y\": 0.28156423568725586}]}, \"Id\": \"f3b0ca40-1a97-4976-b192-9d66fcadd064\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29601287841797, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016915880143642426, \"Height\": 0.03249260038137436, \"Left\": 0.2944766879081726, \"Top\": 0.20731410384178162}, \"Polygon\": [{\"X\": 0.2944766879081726, \"Y\": 0.23980669677257538}, {\"X\": 0.2944766879081726, \"Y\": 0.20731410384178162}, {\"X\": 0.31139257550239563, \"Y\": 0.20731410384178162}, {\"X\": 0.31139257550239563, \"Y\": 0.23980669677257538}]}, \"Id\": \"c2b5172a-d1db-4c08-a206-6a7db7d94c9b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80290222167969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0170289296656847, \"Height\": 0.037871699780225754, \"Left\": 0.2942354381084442, \"Top\": 0.15631699562072754}, \"Polygon\": [{\"X\": 0.2942354381084442, \"Y\": 0.1941886991262436}, {\"X\": 0.2942354381084442, \"Y\": 0.15631699562072754}, {\"X\": 0.31126436591148376, \"Y\": 0.15631699562072754}, {\"X\": 0.31126436591148376, \"Y\": 0.1941886991262436}]}, \"Id\": \"7f1580be-32f5-4ddf-92ab-bde05b7213ae\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51587677001953, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016666920855641365, \"Height\": 0.03288048133254051, \"Left\": 0.29457783699035645, \"Top\": 0.11946755647659302}, \"Polygon\": [{\"X\": 0.29457783699035645, \"Y\": 0.15234804153442383}, {\"X\": 0.29457783699035645, \"Y\": 0.11946755647659302}, {\"X\": 0.31124475598335266, \"Y\": 0.11946755647659302}, {\"X\": 0.31124475598335266, \"Y\": 0.15234804153442383}]}, \"Id\": \"ae14342f-bb2a-4dcc-b54e-d0e1a371d5c2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78372192382812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017311250790953636, \"Height\": 0.038079001009464264, \"Left\": 0.29411080479621887, \"Top\": 0.06831569969654083}, \"Polygon\": [{\"X\": 0.29411080479621887, \"Y\": 0.1063947007060051}, {\"X\": 0.29411080479621887, \"Y\": 0.06831569969654083}, {\"X\": 0.31142204999923706, \"Y\": 0.06831569969654083}, {\"X\": 0.31142204999923706, \"Y\": 0.1063947007060051}]}, \"Id\": \"705ed9ff-f00b-4d8e-a8c3-36c61e5c063b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19073486328125, \"Text\": \"2.2.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016982069239020348, \"Height\": 0.03243853896856308, \"Left\": 0.2944836914539337, \"Top\": 0.03214186057448387}, \"Polygon\": [{\"X\": 0.2944836914539337, \"Y\": 0.06458040326833725}, {\"X\": 0.2944836914539337, \"Y\": 0.03214186057448387}, {\"X\": 0.3114657700061798, \"Y\": 0.03214186057448387}, {\"X\": 0.3114657700061798, \"Y\": 0.06458040326833725}]}, \"Id\": \"71f0d242-6180-43f1-88b7-9165deba1d1d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90675354003906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01685784012079239, \"Height\": 0.037631090730428696, \"Left\": 0.32332268357276917, \"Top\": 0.41933494806289673}, \"Polygon\": [{\"X\": 0.32332268357276917, \"Y\": 0.4569660425186157}, {\"X\": 0.32332268357276917, \"Y\": 0.41933494806289673}, {\"X\": 0.34018051624298096, \"Y\": 0.41933494806289673}, {\"X\": 0.34018051624298096, \"Y\": 0.4569660425186157}]}, \"Id\": \"3616f745-f7f2-4b75-8517-40854148895a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08544921875, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01671265996992588, \"Height\": 0.03213632106781006, \"Left\": 0.32353171706199646, \"Top\": 0.3829508423805237}, \"Polygon\": [{\"X\": 0.32353171706199646, \"Y\": 0.41508716344833374}, {\"X\": 0.32353171706199646, \"Y\": 0.3829508423805237}, {\"X\": 0.3402443826198578, \"Y\": 0.3829508423805237}, {\"X\": 0.3402443826198578, \"Y\": 0.41508716344833374}]}, \"Id\": \"37e72b93-608e-4788-bb42-5da7f297b225\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80777740478516, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01712620072066784, \"Height\": 0.038194429129362106, \"Left\": 0.32314416766166687, \"Top\": 0.3313409686088562}, \"Polygon\": [{\"X\": 0.32314416766166687, \"Y\": 0.3695353865623474}, {\"X\": 0.32314416766166687, \"Y\": 0.3313409686088562}, {\"X\": 0.34027037024497986, \"Y\": 0.3313409686088562}, {\"X\": 0.34027037024497986, \"Y\": 0.3695353865623474}]}, \"Id\": \"9af40378-e84c-458e-8272-4e26f9c594b5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3299331665039, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016934450715780258, \"Height\": 0.03229539841413498, \"Left\": 0.32339566946029663, \"Top\": 0.29493269324302673}, \"Polygon\": [{\"X\": 0.32339566946029663, \"Y\": 0.3272280991077423}, {\"X\": 0.32339566946029663, \"Y\": 0.29493269324302673}, {\"X\": 0.3403301239013672, \"Y\": 0.29493269324302673}, {\"X\": 0.3403301239013672, \"Y\": 0.3272280991077423}]}, \"Id\": \"7d4bd724-ea07-4e74-95aa-c54f1857ff0d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77527618408203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01705241948366165, \"Height\": 0.03780459985136986, \"Left\": 0.32330164313316345, \"Top\": 0.24376749992370605}, \"Polygon\": [{\"X\": 0.32330164313316345, \"Y\": 0.2815721035003662}, {\"X\": 0.32330164313316345, \"Y\": 0.24376749992370605}, {\"X\": 0.3403540551662445, \"Y\": 0.24376749992370605}, {\"X\": 0.3403540551662445, \"Y\": 0.2815721035003662}]}, \"Id\": \"b77b1e25-d909-4bec-ad10-d39de2095f49\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52350616455078, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0169218797236681, \"Height\": 0.032200299203395844, \"Left\": 0.3234662711620331, \"Top\": 0.20746900141239166}, \"Polygon\": [{\"X\": 0.3234662711620331, \"Y\": 0.2396692931652069}, {\"X\": 0.3234662711620331, \"Y\": 0.20746900141239166}, {\"X\": 0.34038814902305603, \"Y\": 0.20746900141239166}, {\"X\": 0.34038814902305603, \"Y\": 0.2396692931652069}]}, \"Id\": \"88821cbc-0fb3-4423-a8e2-61a836617d7f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7567367553711, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017246369272470474, \"Height\": 0.03778748959302902, \"Left\": 0.32313287258148193, \"Top\": 0.15628963708877563}, \"Polygon\": [{\"X\": 0.32313287258148193, \"Y\": 0.19407713413238525}, {\"X\": 0.32313287258148193, \"Y\": 0.15628963708877563}, {\"X\": 0.3403792381286621, \"Y\": 0.15628963708877563}, {\"X\": 0.3403792381286621, \"Y\": 0.19407713413238525}]}, \"Id\": \"00fff5bb-7406-4f07-b319-9148f20a75f8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63030242919922, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016654079779982567, \"Height\": 0.03302635997533798, \"Left\": 0.3235625624656677, \"Top\": 0.11930319666862488}, \"Polygon\": [{\"X\": 0.3235625624656677, \"Y\": 0.15232956409454346}, {\"X\": 0.3235625624656677, \"Y\": 0.11930319666862488}, {\"X\": 0.34021663665771484, \"Y\": 0.11930319666862488}, {\"X\": 0.34021663665771484, \"Y\": 0.15232956409454346}]}, \"Id\": \"452c55fb-6bfb-4b2a-b737-f4a5a96fdc09\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73724365234375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017271369695663452, \"Height\": 0.03797901049256325, \"Left\": 0.3231257498264313, \"Top\": 0.06838405132293701}, \"Polygon\": [{\"X\": 0.3231257498264313, \"Y\": 0.10636305809020996}, {\"X\": 0.3231257498264313, \"Y\": 0.06838405132293701}, {\"X\": 0.3403971195220947, \"Y\": 0.06838405132293701}, {\"X\": 0.3403971195220947, \"Y\": 0.10636305809020996}]}, \"Id\": \"d78be432-b6d5-4447-942c-24a7bb1b2a03\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3392562866211, \"Text\": \"2.3.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016878429800271988, \"Height\": 0.03236092999577522, \"Left\": 0.3235126733779907, \"Top\": 0.03211456909775734}, \"Polygon\": [{\"X\": 0.3235126733779907, \"Y\": 0.06447549909353256}, {\"X\": 0.3235126733779907, \"Y\": 0.03211456909775734}, {\"X\": 0.3403910994529724, \"Y\": 0.03211456909775734}, {\"X\": 0.3403910994529724, \"Y\": 0.06447549909353256}]}, \"Id\": \"be018e29-bec3-44ec-b177-4513bbefe49b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80438232421875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017045289278030396, \"Height\": 0.037882231175899506, \"Left\": 0.35229793190956116, \"Top\": 0.41914859414100647}, \"Polygon\": [{\"X\": 0.35229793190956116, \"Y\": 0.4570308327674866}, {\"X\": 0.35229793190956116, \"Y\": 0.41914859414100647}, {\"X\": 0.36934322118759155, \"Y\": 0.41914859414100647}, {\"X\": 0.36934322118759155, \"Y\": 0.4570308327674866}]}, \"Id\": \"43ba555f-60d1-45ad-81d1-7c1e1e093550\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6111068725586, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01661089062690735, \"Height\": 0.03248219937086105, \"Left\": 0.3526751399040222, \"Top\": 0.3829047977924347}, \"Polygon\": [{\"X\": 0.3526751399040222, \"Y\": 0.41538700461387634}, {\"X\": 0.3526751399040222, \"Y\": 0.3829047977924347}, {\"X\": 0.36928603053092957, \"Y\": 0.3829047977924347}, {\"X\": 0.36928603053092957, \"Y\": 0.41538700461387634}]}, \"Id\": \"126b1ba1-e793-4872-bb33-6b80c2bd3ae2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68451690673828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017092140391469002, \"Height\": 0.03810343146324158, \"Left\": 0.3522457778453827, \"Top\": 0.3312205672264099}, \"Polygon\": [{\"X\": 0.3522457778453827, \"Y\": 0.3693239986896515}, {\"X\": 0.3522457778453827, \"Y\": 0.3312205672264099}, {\"X\": 0.36933791637420654, \"Y\": 0.3312205672264099}, {\"X\": 0.36933791637420654, \"Y\": 0.3693239986896515}]}, \"Id\": \"b4ea8857-ad84-4910-8a13-295c3614ba5e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38443756103516, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01662614941596985, \"Height\": 0.03259360045194626, \"Left\": 0.3526691794395447, \"Top\": 0.294981986284256}, \"Polygon\": [{\"X\": 0.3526691794395447, \"Y\": 0.32757559418678284}, {\"X\": 0.3526691794395447, \"Y\": 0.294981986284256}, {\"X\": 0.3692953288555145, \"Y\": 0.294981986284256}, {\"X\": 0.3692953288555145, \"Y\": 0.32757559418678284}]}, \"Id\": \"6d7a219d-1ec0-4967-bb98-a5d6650b7f11\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77718353271484, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017080070450901985, \"Height\": 0.03771030157804489, \"Left\": 0.3522558808326721, \"Top\": 0.24381320178508759}, \"Polygon\": [{\"X\": 0.3522558808326721, \"Y\": 0.2815234959125519}, {\"X\": 0.3522558808326721, \"Y\": 0.24381320178508759}, {\"X\": 0.36933594942092896, \"Y\": 0.24381320178508759}, {\"X\": 0.36933594942092896, \"Y\": 0.2815234959125519}]}, \"Id\": \"efef7474-77b7-4c1d-aba3-cd225b6340b0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49958801269531, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016539769247174263, \"Height\": 0.03206780180335045, \"Left\": 0.3526928126811981, \"Top\": 0.20752640068531036}, \"Polygon\": [{\"X\": 0.3526928126811981, \"Y\": 0.2395942062139511}, {\"X\": 0.3526928126811981, \"Y\": 0.20752640068531036}, {\"X\": 0.36923256516456604, \"Y\": 0.20752640068531036}, {\"X\": 0.36923256516456604, \"Y\": 0.2395942062139511}]}, \"Id\": \"b73a7d81-b20f-4cef-aa78-b41ad70b9ab7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83341979980469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017107000574469566, \"Height\": 0.03775990009307861, \"Left\": 0.3522520065307617, \"Top\": 0.15633976459503174}, \"Polygon\": [{\"X\": 0.3522520065307617, \"Y\": 0.19409966468811035}, {\"X\": 0.3522520065307617, \"Y\": 0.15633976459503174}, {\"X\": 0.36935898661613464, \"Y\": 0.15633976459503174}, {\"X\": 0.36935898661613464, \"Y\": 0.19409966468811035}]}, \"Id\": \"5aa32eb7-1fd8-4221-b1c4-874820cc2978\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6478042602539, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016557250171899796, \"Height\": 0.03276839852333069, \"Left\": 0.3526804745197296, \"Top\": 0.11944130063056946}, \"Polygon\": [{\"X\": 0.3526804745197296, \"Y\": 0.15220969915390015}, {\"X\": 0.3526804745197296, \"Y\": 0.11944130063056946}, {\"X\": 0.3692377209663391, \"Y\": 0.11944130063056946}, {\"X\": 0.3692377209663391, \"Y\": 0.15220969915390015}]}, \"Id\": \"c628bf73-ec23-4654-8148-5a26924d80b4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63145446777344, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017259210348129272, \"Height\": 0.03790593892335892, \"Left\": 0.3521433472633362, \"Top\": 0.06839215755462646}, \"Polygon\": [{\"X\": 0.3521433472633362, \"Y\": 0.10629809647798538}, {\"X\": 0.3521433472633362, \"Y\": 0.06839215755462646}, {\"X\": 0.36940255761146545, \"Y\": 0.06839215755462646}, {\"X\": 0.36940255761146545, \"Y\": 0.10629809647798538}]}, \"Id\": \"d68a4c56-8560-4e7d-aa08-7b74fd547b63\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48439025878906, \"Text\": \"2.4.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016668619588017464, \"Height\": 0.032540760934352875, \"Left\": 0.35264596343040466, \"Top\": 0.03197589889168739}, \"Polygon\": [{\"X\": 0.35264596343040466, \"Y\": 0.06451666355133057}, {\"X\": 0.35264596343040466, \"Y\": 0.03197589889168739}, {\"X\": 0.369314581155777, \"Y\": 0.03197589889168739}, {\"X\": 0.369314581155777, \"Y\": 0.06451666355133057}]}, \"Id\": \"a7c1d2fa-c210-4b49-9086-1f93b813b018\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80543518066406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01715335063636303, \"Height\": 0.03795259818434715, \"Left\": 0.381213515996933, \"Top\": 0.41909900307655334}, \"Polygon\": [{\"X\": 0.381213515996933, \"Y\": 0.4570516049861908}, {\"X\": 0.381213515996933, \"Y\": 0.41909900307655334}, {\"X\": 0.39836686849594116, \"Y\": 0.41909900307655334}, {\"X\": 0.39836686849594116, \"Y\": 0.4570516049861908}]}, \"Id\": \"758327c1-430c-43e1-b928-52d95bdafc40\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45340728759766, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016793260350823402, \"Height\": 0.03223181143403053, \"Left\": 0.3816221356391907, \"Top\": 0.3830629587173462}, \"Polygon\": [{\"X\": 0.3816221356391907, \"Y\": 0.4152947664260864}, {\"X\": 0.3816221356391907, \"Y\": 0.3830629587173462}, {\"X\": 0.39841538667678833, \"Y\": 0.3830629587173462}, {\"X\": 0.39841538667678833, \"Y\": 0.4152947664260864}]}, \"Id\": \"3871055a-8a91-435d-af0a-f5fbbd3a703e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56596374511719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0171182993799448, \"Height\": 0.03790640830993652, \"Left\": 0.38142886757850647, \"Top\": 0.331648051738739}, \"Polygon\": [{\"X\": 0.38142886757850647, \"Y\": 0.36955446004867554}, {\"X\": 0.38142886757850647, \"Y\": 0.331648051738739}, {\"X\": 0.3985471725463867, \"Y\": 0.331648051738739}, {\"X\": 0.3985471725463867, \"Y\": 0.36955446004867554}]}, \"Id\": \"469f2e22-9926-4739-b71f-8be4219ec236\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.09307861328125, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016962150111794472, \"Height\": 0.03263033181428909, \"Left\": 0.3816719055175781, \"Top\": 0.2948715090751648}, \"Polygon\": [{\"X\": 0.3816719055175781, \"Y\": 0.3275018334388733}, {\"X\": 0.3816719055175781, \"Y\": 0.2948715090751648}, {\"X\": 0.39863404631614685, \"Y\": 0.2948715090751648}, {\"X\": 0.39863404631614685, \"Y\": 0.3275018334388733}]}, \"Id\": \"764a3362-82bb-4aac-be05-89266d784df3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82892608642578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017418090254068375, \"Height\": 0.03785005956888199, \"Left\": 0.38108745217323303, \"Top\": 0.24369823932647705}, \"Polygon\": [{\"X\": 0.38108745217323303, \"Y\": 0.28154829144477844}, {\"X\": 0.38108745217323303, \"Y\": 0.24369823932647705}, {\"X\": 0.3985055387020111, \"Y\": 0.24369823932647705}, {\"X\": 0.3985055387020111, \"Y\": 0.28154829144477844}]}, \"Id\": \"c0bab5d0-7c9e-403a-9f04-381f57ba4b92\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52586364746094, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01672223024070263, \"Height\": 0.03199544921517372, \"Left\": 0.38173624873161316, \"Top\": 0.20743495225906372}, \"Polygon\": [{\"X\": 0.38173624873161316, \"Y\": 0.23943039774894714}, {\"X\": 0.38173624873161316, \"Y\": 0.20743495225906372}, {\"X\": 0.39845848083496094, \"Y\": 0.20743495225906372}, {\"X\": 0.39845848083496094, \"Y\": 0.23943039774894714}]}, \"Id\": \"38f8ff8b-18eb-4b46-a607-5531156debf1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77120971679688, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017068570479750633, \"Height\": 0.03848769888281822, \"Left\": 0.38142335414886475, \"Top\": 0.15605579316616058}, \"Polygon\": [{\"X\": 0.38142335414886475, \"Y\": 0.1945434957742691}, {\"X\": 0.38142335414886475, \"Y\": 0.15605579316616058}, {\"X\": 0.39849191904067993, \"Y\": 0.15605579316616058}, {\"X\": 0.39849191904067993, \"Y\": 0.1945434957742691}]}, \"Id\": \"eff969aa-9130-4ea6-b6d5-c464ab854f82\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40794372558594, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01669429987668991, \"Height\": 0.0327971987426281, \"Left\": 0.38194578886032104, \"Top\": 0.11941400170326233}, \"Polygon\": [{\"X\": 0.38194578886032104, \"Y\": 0.15221120417118073}, {\"X\": 0.38194578886032104, \"Y\": 0.11941400170326233}, {\"X\": 0.39864009618759155, \"Y\": 0.11941400170326233}, {\"X\": 0.39864009618759155, \"Y\": 0.15221120417118073}]}, \"Id\": \"1974d902-3121-4a95-acab-bd788440b7e8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70548248291016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017344919964671135, \"Height\": 0.03771569952368736, \"Left\": 0.3810809552669525, \"Top\": 0.06852439790964127}, \"Polygon\": [{\"X\": 0.3810809552669525, \"Y\": 0.10624010115861893}, {\"X\": 0.3810809552669525, \"Y\": 0.06852439790964127}, {\"X\": 0.3984258770942688, \"Y\": 0.06852439790964127}, {\"X\": 0.3984258770942688, \"Y\": 0.10624010115861893}]}, \"Id\": \"f1b1f9f6-5ace-4010-a844-712175048f3d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52135467529297, \"Text\": \"2.5.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01667311042547226, \"Height\": 0.03255520015954971, \"Left\": 0.38170814514160156, \"Top\": 0.03197300061583519}, \"Polygon\": [{\"X\": 0.38170814514160156, \"Y\": 0.0645281970500946}, {\"X\": 0.38170814514160156, \"Y\": 0.03197300061583519}, {\"X\": 0.3983812630176544, \"Y\": 0.03197300061583519}, {\"X\": 0.3983812630176544, \"Y\": 0.0645281970500946}]}, \"Id\": \"b098bbba-c301-4a64-a4fe-28e67dbf132f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65276336669922, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014806070365011692, \"Height\": 0.02117742970585823, \"Left\": 0.48601892590522766, \"Top\": 0.6260908842086792}, \"Polygon\": [{\"X\": 0.48601892590522766, \"Y\": 0.6472683548927307}, {\"X\": 0.48601892590522766, \"Y\": 0.6260908842086792}, {\"X\": 0.5008249878883362, \"Y\": 0.6260908842086792}, {\"X\": 0.5008249878883362, \"Y\": 0.6472683548927307}]}, \"Id\": \"4f510afc-60d5-42ee-8443-f3dc317a141d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91110229492188, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01551085989922285, \"Height\": 0.0698377788066864, \"Left\": 0.48559707403182983, \"Top\": 0.5524476766586304}, \"Polygon\": [{\"X\": 0.48559707403182983, \"Y\": 0.6222854852676392}, {\"X\": 0.48559707403182983, \"Y\": 0.5524476766586304}, {\"X\": 0.501107931137085, \"Y\": 0.5524476766586304}, {\"X\": 0.501107931137085, \"Y\": 0.6222854852676392}]}, \"Id\": \"038f8351-2f46-4cdf-a653-18533d7a9240\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7630386352539, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014669010415673256, \"Height\": 0.03288910165429115, \"Left\": 0.5126648545265198, \"Top\": 0.31727591156959534}, \"Polygon\": [{\"X\": 0.5126648545265198, \"Y\": 0.3501650094985962}, {\"X\": 0.5126648545265198, \"Y\": 0.31727591156959534}, {\"X\": 0.5273338556289673, \"Y\": 0.31727591156959534}, {\"X\": 0.5273338556289673, \"Y\": 0.3501650094985962}]}, \"Id\": \"6a9e5099-0561-4d76-8be1-cb94c9588e80\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24642181396484, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014346799813210964, \"Height\": 0.02766280062496662, \"Left\": 0.5130290985107422, \"Top\": 0.28642839193344116}, \"Polygon\": [{\"X\": 0.5130290985107422, \"Y\": 0.31409120559692383}, {\"X\": 0.5130290985107422, \"Y\": 0.28642839193344116}, {\"X\": 0.5273758769035339, \"Y\": 0.28642839193344116}, {\"X\": 0.5273758769035339, \"Y\": 0.31409120559692383}]}, \"Id\": \"6af5732d-3450-4c3d-aedb-bd6e71308bea\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6617202758789, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014675620011985302, \"Height\": 0.03235640004277229, \"Left\": 0.51256263256073, \"Top\": 0.21581649780273438}, \"Polygon\": [{\"X\": 0.51256263256073, \"Y\": 0.24817289412021637}, {\"X\": 0.51256263256073, \"Y\": 0.21581649780273438}, {\"X\": 0.5272382497787476, \"Y\": 0.21581649780273438}, {\"X\": 0.5272382497787476, \"Y\": 0.24817289412021637}]}, \"Id\": \"cdb082b8-c634-4a78-a31e-37e017f00612\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.289306640625, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014433329924941063, \"Height\": 0.02823149971663952, \"Left\": 0.5130436420440674, \"Top\": 0.18388019502162933}, \"Polygon\": [{\"X\": 0.5130436420440674, \"Y\": 0.212111696600914}, {\"X\": 0.5130436420440674, \"Y\": 0.18388019502162933}, {\"X\": 0.527476966381073, \"Y\": 0.18388019502162933}, {\"X\": 0.527476966381073, \"Y\": 0.212111696600914}]}, \"Id\": \"d5045e8d-8c65-4d23-a2e2-b65d7d5119d5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71666717529297, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014734799973666668, \"Height\": 0.032868899405002594, \"Left\": 0.5126162767410278, \"Top\": 0.11361899971961975}, \"Polygon\": [{\"X\": 0.5126162767410278, \"Y\": 0.14648790657520294}, {\"X\": 0.5126162767410278, \"Y\": 0.11361899971961975}, {\"X\": 0.5273510813713074, \"Y\": 0.11361899971961975}, {\"X\": 0.5273510813713074, \"Y\": 0.14648790657520294}]}, \"Id\": \"fa871722-4b8e-415e-992b-2cf5c2dc812b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.20795440673828, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014300409704446793, \"Height\": 0.0274545606225729, \"Left\": 0.5131174325942993, \"Top\": 0.08290629833936691}, \"Polygon\": [{\"X\": 0.5131174325942993, \"Y\": 0.11036086082458496}, {\"X\": 0.5131174325942993, \"Y\": 0.08290629833936691}, {\"X\": 0.5274178385734558, \"Y\": 0.08290629833936691}, {\"X\": 0.5274178385734558, \"Y\": 0.11036086082458496}]}, \"Id\": \"de35b12a-8bcc-4fb6-91ba-1d78da2a892b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30146026611328, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014864549972116947, \"Height\": 0.02400917001068592, \"Left\": 0.5234840512275696, \"Top\": 0.6266482472419739}, \"Polygon\": [{\"X\": 0.5234840512275696, \"Y\": 0.6506574153900146}, {\"X\": 0.5234840512275696, \"Y\": 0.6266482472419739}, {\"X\": 0.5383486151695251, \"Y\": 0.6266482472419739}, {\"X\": 0.5383486151695251, \"Y\": 0.6506574153900146}]}, \"Id\": \"35f3fca0-649e-4d7f-b260-2a2dd40d2f1d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97509002685547, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015605799853801727, \"Height\": 0.04691790044307709, \"Left\": 0.5228710174560547, \"Top\": 0.5760185122489929}, \"Polygon\": [{\"X\": 0.5228710174560547, \"Y\": 0.6229364275932312}, {\"X\": 0.5228710174560547, \"Y\": 0.5760185122489929}, {\"X\": 0.538476824760437, \"Y\": 0.5760185122489929}, {\"X\": 0.538476824760437, \"Y\": 0.6229364275932312}]}, \"Id\": \"5fb972b0-3134-4f7e-bd52-5df22d8605c5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73365020751953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014759600162506104, \"Height\": 0.03255905956029892, \"Left\": 0.5375877022743225, \"Top\": 0.3173939883708954}, \"Polygon\": [{\"X\": 0.5375877022743225, \"Y\": 0.3499530553817749}, {\"X\": 0.5375877022743225, \"Y\": 0.3173939883708954}, {\"X\": 0.5523473024368286, \"Y\": 0.3173939883708954}, {\"X\": 0.5523473024368286, \"Y\": 0.3499530553817749}]}, \"Id\": \"15471c61-83ca-4060-8c4b-99484b3e7616\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25460052490234, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014299100264906883, \"Height\": 0.027599699795246124, \"Left\": 0.5378726720809937, \"Top\": 0.28655651211738586}, \"Polygon\": [{\"X\": 0.5378726720809937, \"Y\": 0.3141562044620514}, {\"X\": 0.5378726720809937, \"Y\": 0.28655651211738586}, {\"X\": 0.5521718263626099, \"Y\": 0.28655651211738586}, {\"X\": 0.5521718263626099, \"Y\": 0.3141562044620514}]}, \"Id\": \"827da256-6991-49af-a4dd-a305cec03346\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53506469726562, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014753459952771664, \"Height\": 0.03228658065199852, \"Left\": 0.5375123023986816, \"Top\": 0.2159084677696228}, \"Polygon\": [{\"X\": 0.5375123023986816, \"Y\": 0.24819505214691162}, {\"X\": 0.5375123023986816, \"Y\": 0.2159084677696228}, {\"X\": 0.5522657632827759, \"Y\": 0.2159084677696228}, {\"X\": 0.5522657632827759, \"Y\": 0.24819505214691162}]}, \"Id\": \"b3bb1fec-b467-4a0e-94e9-bc9ac9075e4b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3421859741211, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01451290026307106, \"Height\": 0.027734560891985893, \"Left\": 0.5378401279449463, \"Top\": 0.18430393934249878}, \"Polygon\": [{\"X\": 0.5378401279449463, \"Y\": 0.21203850209712982}, {\"X\": 0.5378401279449463, \"Y\": 0.18430393934249878}, {\"X\": 0.552353024482727, \"Y\": 0.18430393934249878}, {\"X\": 0.552353024482727, \"Y\": 0.21203850209712982}]}, \"Id\": \"72cb0a55-ce17-4d5e-88cd-68cc1222d48d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55503845214844, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014647670090198517, \"Height\": 0.03256065025925636, \"Left\": 0.5376403331756592, \"Top\": 0.11384844779968262}, \"Polygon\": [{\"X\": 0.5376403331756592, \"Y\": 0.14640909433364868}, {\"X\": 0.5376403331756592, \"Y\": 0.11384844779968262}, {\"X\": 0.5522879958152771, \"Y\": 0.11384844779968262}, {\"X\": 0.5522879958152771, \"Y\": 0.14640909433364868}]}, \"Id\": \"74d229d0-a6ba-4628-ad89-5877c62f86f7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14690399169922, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014393540099263191, \"Height\": 0.027365170419216156, \"Left\": 0.537841260433197, \"Top\": 0.08298580348491669}, \"Polygon\": [{\"X\": 0.537841260433197, \"Y\": 0.11035096645355225}, {\"X\": 0.537841260433197, \"Y\": 0.08298580348491669}, {\"X\": 0.5522348284721375, \"Y\": 0.08298580348491669}, {\"X\": 0.5522348284721375, \"Y\": 0.11035096645355225}]}, \"Id\": \"cc5508ad-8e7b-4b6e-9468-cbc52f2133ac\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76213073730469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01465350016951561, \"Height\": 0.03233465179800987, \"Left\": 0.5626481175422668, \"Top\": 0.3175460994243622}, \"Polygon\": [{\"X\": 0.5626481175422668, \"Y\": 0.34988075494766235}, {\"X\": 0.5626481175422668, \"Y\": 0.3175460994243622}, {\"X\": 0.5773016214370728, \"Y\": 0.3175460994243622}, {\"X\": 0.5773016214370728, \"Y\": 0.34988075494766235}]}, \"Id\": \"16c863d1-05bc-47df-9d04-502ded213b0e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11431884765625, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014331850223243237, \"Height\": 0.027514439076185226, \"Left\": 0.5629148483276367, \"Top\": 0.28644511103630066}, \"Polygon\": [{\"X\": 0.5629148483276367, \"Y\": 0.313959538936615}, {\"X\": 0.5629148483276367, \"Y\": 0.28644511103630066}, {\"X\": 0.5772467255592346, \"Y\": 0.28644511103630066}, {\"X\": 0.5772467255592346, \"Y\": 0.313959538936615}]}, \"Id\": \"746abe7b-9858-4a8b-84b3-de9cb95cb9cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48811340332031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014690499752759933, \"Height\": 0.0324939601123333, \"Left\": 0.5627291798591614, \"Top\": 0.21554774045944214}, \"Polygon\": [{\"X\": 0.5627291798591614, \"Y\": 0.24804170429706573}, {\"X\": 0.5627291798591614, \"Y\": 0.21554774045944214}, {\"X\": 0.5774196982383728, \"Y\": 0.21554774045944214}, {\"X\": 0.5774196982383728, \"Y\": 0.24804170429706573}]}, \"Id\": \"346f04f7-3ea5-4663-8d59-eba6e12bc6cc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.88916015625, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014593750238418579, \"Height\": 0.0281211007386446, \"Left\": 0.562851071357727, \"Top\": 0.1839689016342163}, \"Polygon\": [{\"X\": 0.562851071357727, \"Y\": 0.21209000051021576}, {\"X\": 0.562851071357727, \"Y\": 0.1839689016342163}, {\"X\": 0.577444851398468, \"Y\": 0.1839689016342163}, {\"X\": 0.577444851398468, \"Y\": 0.21209000051021576}]}, \"Id\": \"1decc623-2187-4e4f-94df-282714b93ef1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.7708969116211, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014860990457236767, \"Height\": 0.0328083299100399, \"Left\": 0.5625313520431519, \"Top\": 0.11361029744148254}, \"Polygon\": [{\"X\": 0.5625313520431519, \"Y\": 0.14641863107681274}, {\"X\": 0.5625313520431519, \"Y\": 0.11361029744148254}, {\"X\": 0.5773923397064209, \"Y\": 0.11361029744148254}, {\"X\": 0.5773923397064209, \"Y\": 0.14641863107681274}]}, \"Id\": \"ee451111-6830-4636-aab5-9614cee22485\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.27764892578125, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014506399631500244, \"Height\": 0.028173260390758514, \"Left\": 0.5628484487533569, \"Top\": 0.08296020328998566}, \"Polygon\": [{\"X\": 0.5628484487533569, \"Y\": 0.11113346368074417}, {\"X\": 0.5628484487533569, \"Y\": 0.08296020328998566}, {\"X\": 0.5773548483848572, \"Y\": 0.08296020328998566}, {\"X\": 0.5773548483848572, \"Y\": 0.11113346368074417}]}, \"Id\": \"a454ddbd-1ee5-4edb-b272-d135aea72447\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7088851928711, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014705419540405273, \"Height\": 0.03252563998103142, \"Left\": 0.5876667499542236, \"Top\": 0.3174651861190796}, \"Polygon\": [{\"X\": 0.5876667499542236, \"Y\": 0.3499908447265625}, {\"X\": 0.5876667499542236, \"Y\": 0.3174651861190796}, {\"X\": 0.6023721694946289, \"Y\": 0.3174651861190796}, {\"X\": 0.6023721694946289, \"Y\": 0.3499908447265625}]}, \"Id\": \"7ad486ac-0dfc-4061-82b7-43b20badd165\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61980438232422, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014332540333271027, \"Height\": 0.02746335044503212, \"Left\": 0.5881201028823853, \"Top\": 0.2866366505622864}, \"Polygon\": [{\"X\": 0.5881201028823853, \"Y\": 0.3140999972820282}, {\"X\": 0.5881201028823853, \"Y\": 0.2866366505622864}, {\"X\": 0.6024526357650757, \"Y\": 0.2866366505622864}, {\"X\": 0.6024526357650757, \"Y\": 0.3140999972820282}]}, \"Id\": \"a8cdb7c5-0502-41a4-b213-c7719e5d724a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5392074584961, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014802450314164162, \"Height\": 0.03227965906262398, \"Left\": 0.5875338912010193, \"Top\": 0.21585460007190704}, \"Polygon\": [{\"X\": 0.5875338912010193, \"Y\": 0.24813425540924072}, {\"X\": 0.5875338912010193, \"Y\": 0.21585460007190704}, {\"X\": 0.6023363471031189, \"Y\": 0.21585460007190704}, {\"X\": 0.6023363471031189, \"Y\": 0.24813425540924072}]}, \"Id\": \"257834fc-b060-40be-ac11-4852bf7b5187\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24685668945312, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01455955021083355, \"Height\": 0.02769440971314907, \"Left\": 0.5879213809967041, \"Top\": 0.18434733152389526}, \"Polygon\": [{\"X\": 0.5879213809967041, \"Y\": 0.2120417356491089}, {\"X\": 0.5879213809967041, \"Y\": 0.18434733152389526}, {\"X\": 0.602480947971344, \"Y\": 0.18434733152389526}, {\"X\": 0.602480947971344, \"Y\": 0.2120417356491089}]}, \"Id\": \"1712b2ce-b3d1-442e-8e61-bb476f45f1bb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1064224243164, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0147705702111125, \"Height\": 0.03278080001473427, \"Left\": 0.5875886678695679, \"Top\": 0.11367219686508179}, \"Polygon\": [{\"X\": 0.5875886678695679, \"Y\": 0.14645299315452576}, {\"X\": 0.5875886678695679, \"Y\": 0.11367219686508179}, {\"X\": 0.6023592352867126, \"Y\": 0.11367219686508179}, {\"X\": 0.6023592352867126, \"Y\": 0.14645299315452576}]}, \"Id\": \"0ddd573b-e59c-4583-bce5-78ae723ffea4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.83393859863281, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014665699563920498, \"Height\": 0.028190700337290764, \"Left\": 0.587824285030365, \"Top\": 0.08294770121574402}, \"Polygon\": [{\"X\": 0.587824285030365, \"Y\": 0.11113840341567993}, {\"X\": 0.587824285030365, \"Y\": 0.08294770121574402}, {\"X\": 0.6024900078773499, \"Y\": 0.08294770121574402}, {\"X\": 0.6024900078773499, \"Y\": 0.11113840341567993}]}, \"Id\": \"d8672e7a-682a-460c-862a-1b89c3b620ff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7513656616211, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014928700402379036, \"Height\": 0.03215745836496353, \"Left\": 0.612539529800415, \"Top\": 0.3178006410598755}, \"Polygon\": [{\"X\": 0.612539529800415, \"Y\": 0.3499580919742584}, {\"X\": 0.612539529800415, \"Y\": 0.3178006410598755}, {\"X\": 0.6274682283401489, \"Y\": 0.3178006410598755}, {\"X\": 0.6274682283401489, \"Y\": 0.3499580919742584}]}, \"Id\": \"23365f0c-87e0-40e6-a614-0e36dede0a4d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4424819946289, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01449969969689846, \"Height\": 0.027538850903511047, \"Left\": 0.6129270792007446, \"Top\": 0.28639835119247437}, \"Polygon\": [{\"X\": 0.6129270792007446, \"Y\": 0.3139371871948242}, {\"X\": 0.6129270792007446, \"Y\": 0.28639835119247437}, {\"X\": 0.62742680311203, \"Y\": 0.28639835119247437}, {\"X\": 0.62742680311203, \"Y\": 0.3139371871948242}]}, \"Id\": \"7264d208-7324-4104-a188-5d841537041b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51693725585938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014787999913096428, \"Height\": 0.03245045989751816, \"Left\": 0.6126391291618347, \"Top\": 0.2156771421432495}, \"Polygon\": [{\"X\": 0.6126391291618347, \"Y\": 0.24812759459018707}, {\"X\": 0.6126391291618347, \"Y\": 0.2156771421432495}, {\"X\": 0.6274271011352539, \"Y\": 0.2156771421432495}, {\"X\": 0.6274271011352539, \"Y\": 0.24812759459018707}]}, \"Id\": \"eb18db8e-8934-4842-9458-4bcb870c6a52\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2023696899414, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014630500227212906, \"Height\": 0.02778940089046955, \"Left\": 0.6128327250480652, \"Top\": 0.18422040343284607}, \"Polygon\": [{\"X\": 0.6128327250480652, \"Y\": 0.21200980246067047}, {\"X\": 0.6128327250480652, \"Y\": 0.18422040343284607}, {\"X\": 0.6274632215499878, \"Y\": 0.18422040343284607}, {\"X\": 0.6274632215499878, \"Y\": 0.21200980246067047}]}, \"Id\": \"3c02dc4b-36dc-49c3-80ae-c0326fe9acaa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45635986328125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015136360190808773, \"Height\": 0.03293317183852196, \"Left\": 0.6123664975166321, \"Top\": 0.11364852637052536}, \"Polygon\": [{\"X\": 0.6123664975166321, \"Y\": 0.14658169448375702}, {\"X\": 0.6123664975166321, \"Y\": 0.11364852637052536}, {\"X\": 0.6275028586387634, \"Y\": 0.11364852637052536}, {\"X\": 0.6275028586387634, \"Y\": 0.14658169448375702}]}, \"Id\": \"19934a84-a856-4893-94c8-d14017d84914\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9416275024414, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014588640071451664, \"Height\": 0.0281055998057127, \"Left\": 0.6127857565879822, \"Top\": 0.0828154981136322}, \"Polygon\": [{\"X\": 0.6127857565879822, \"Y\": 0.11092109978199005}, {\"X\": 0.6127857565879822, \"Y\": 0.0828154981136322}, {\"X\": 0.6273744106292725, \"Y\": 0.0828154981136322}, {\"X\": 0.6273744106292725, \"Y\": 0.11092109978199005}]}, \"Id\": \"845a215e-8bfe-4cbf-8796-459494fc1397\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75845336914062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015013939701020718, \"Height\": 0.03237564116716385, \"Left\": 0.6374371647834778, \"Top\": 0.31755346059799194}, \"Polygon\": [{\"X\": 0.6374371647834778, \"Y\": 0.3499290943145752}, {\"X\": 0.6374371647834778, \"Y\": 0.31755346059799194}, {\"X\": 0.6524510979652405, \"Y\": 0.31755346059799194}, {\"X\": 0.6524510979652405, \"Y\": 0.3499290943145752}]}, \"Id\": \"a5d3389b-dda1-42b7-9104-68ef8172090f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2596664428711, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014347770251333714, \"Height\": 0.027491100132465363, \"Left\": 0.6378397345542908, \"Top\": 0.2864778935909271}, \"Polygon\": [{\"X\": 0.6378397345542908, \"Y\": 0.3139689862728119}, {\"X\": 0.6378397345542908, \"Y\": 0.2864778935909271}, {\"X\": 0.6521875262260437, \"Y\": 0.2864778935909271}, {\"X\": 0.6521875262260437, \"Y\": 0.3139689862728119}]}, \"Id\": \"552d4b61-3b70-4f92-b231-9a3970abe558\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59883880615234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0148751400411129, \"Height\": 0.03242579847574234, \"Left\": 0.6373850703239441, \"Top\": 0.21580329537391663}, \"Polygon\": [{\"X\": 0.6373850703239441, \"Y\": 0.24822910130023956}, {\"X\": 0.6373850703239441, \"Y\": 0.21580329537391663}, {\"X\": 0.6522602438926697, \"Y\": 0.21580329537391663}, {\"X\": 0.6522602438926697, \"Y\": 0.24822910130023956}]}, \"Id\": \"9b35452b-939c-451f-96ac-2ed9dfb03175\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05876922607422, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014417359605431557, \"Height\": 0.02776479907333851, \"Left\": 0.6378067135810852, \"Top\": 0.18423859775066376}, \"Polygon\": [{\"X\": 0.6378067135810852, \"Y\": 0.21200339496135712}, {\"X\": 0.6378067135810852, \"Y\": 0.18423859775066376}, {\"X\": 0.652224063873291, \"Y\": 0.18423859775066376}, {\"X\": 0.652224063873291, \"Y\": 0.21200339496135712}]}, \"Id\": \"04870fd1-1f0e-4f48-a6d7-88a085f9494d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28705596923828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0149992099031806, \"Height\": 0.032747361809015274, \"Left\": 0.6373827457427979, \"Top\": 0.11393464356660843}, \"Polygon\": [{\"X\": 0.6373827457427979, \"Y\": 0.1466819941997528}, {\"X\": 0.6373827457427979, \"Y\": 0.11393464356660843}, {\"X\": 0.652381956577301, \"Y\": 0.11393464356660843}, {\"X\": 0.652381956577301, \"Y\": 0.1466819941997528}]}, \"Id\": \"ad6d63d7-5497-41a9-9e0e-c8d949a88775\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.4085464477539, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014692730270326138, \"Height\": 0.02805989980697632, \"Left\": 0.6375454068183899, \"Top\": 0.08288925886154175}, \"Polygon\": [{\"X\": 0.6375454068183899, \"Y\": 0.11094915866851807}, {\"X\": 0.6375454068183899, \"Y\": 0.08288925886154175}, {\"X\": 0.652238130569458, \"Y\": 0.08288925886154175}, {\"X\": 0.652238130569458, \"Y\": 0.11094915866851807}]}, \"Id\": \"bf0ecb32-c2d8-49e4-8c25-a3b1416f6988\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6597671508789, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014943599700927734, \"Height\": 0.03259434923529625, \"Left\": 0.6625424027442932, \"Top\": 0.31755155324935913}, \"Polygon\": [{\"X\": 0.6625424027442932, \"Y\": 0.3501459062099457}, {\"X\": 0.6625424027442932, \"Y\": 0.31755155324935913}, {\"X\": 0.677486002445221, \"Y\": 0.31755155324935913}, {\"X\": 0.677486002445221, \"Y\": 0.3501459062099457}]}, \"Id\": \"36e422d6-7f13-48de-b7c9-d6af3b680cda\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05891418457031, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014454849995672703, \"Height\": 0.027840040624141693, \"Left\": 0.6627434492111206, \"Top\": 0.286321759223938}, \"Polygon\": [{\"X\": 0.6627434492111206, \"Y\": 0.3141618072986603}, {\"X\": 0.6627434492111206, \"Y\": 0.286321759223938}, {\"X\": 0.6771982908248901, \"Y\": 0.286321759223938}, {\"X\": 0.6771982908248901, \"Y\": 0.3141618072986603}]}, \"Id\": \"4e628985-db09-4d21-9798-96bae9079e06\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32640075683594, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014844739809632301, \"Height\": 0.03240177035331726, \"Left\": 0.6625604629516602, \"Top\": 0.21565809845924377}, \"Polygon\": [{\"X\": 0.6625604629516602, \"Y\": 0.24805986881256104}, {\"X\": 0.6625604629516602, \"Y\": 0.21565809845924377}, {\"X\": 0.6774051785469055, \"Y\": 0.21565809845924377}, {\"X\": 0.6774051785469055, \"Y\": 0.24805986881256104}]}, \"Id\": \"35facc19-4add-4b7e-8d34-b591b7df7ec6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.37955474853516, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014538999646902084, \"Height\": 0.02889415994286537, \"Left\": 0.662682294845581, \"Top\": 0.18410474061965942}, \"Polygon\": [{\"X\": 0.662682294845581, \"Y\": 0.2129988968372345}, {\"X\": 0.662682294845581, \"Y\": 0.18410474061965942}, {\"X\": 0.6772212982177734, \"Y\": 0.18410474061965942}, {\"X\": 0.6772212982177734, \"Y\": 0.2129988968372345}]}, \"Id\": \"b6facb65-16da-4db8-a9c4-61e151ec687a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36132049560547, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014948359690606594, \"Height\": 0.03267031908035278, \"Left\": 0.6624281406402588, \"Top\": 0.11375904083251953}, \"Polygon\": [{\"X\": 0.6624281406402588, \"Y\": 0.14642935991287231}, {\"X\": 0.6624281406402588, \"Y\": 0.11375904083251953}, {\"X\": 0.6773765087127686, \"Y\": 0.11375904083251953}, {\"X\": 0.6773765087127686, \"Y\": 0.14642935991287231}]}, \"Id\": \"0e96b2de-1f7e-4fcb-bb54-6a0fadfb0e6f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.23274993896484, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014709600247442722, \"Height\": 0.02944069914519787, \"Left\": 0.662638783454895, \"Top\": 0.08304303884506226}, \"Polygon\": [{\"X\": 0.662638783454895, \"Y\": 0.11248373985290527}, {\"X\": 0.662638783454895, \"Y\": 0.08304303884506226}, {\"X\": 0.6773483753204346, \"Y\": 0.08304303884506226}, {\"X\": 0.6773483753204346, \"Y\": 0.11248373985290527}]}, \"Id\": \"00015fea-3836-452e-9944-6b13cfd4e762\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75879669189453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01471162959933281, \"Height\": 0.03233249858021736, \"Left\": 0.6876577138900757, \"Top\": 0.31763479113578796}, \"Polygon\": [{\"X\": 0.6876577138900757, \"Y\": 0.3499673008918762}, {\"X\": 0.6876577138900757, \"Y\": 0.31763479113578796}, {\"X\": 0.7023693323135376, \"Y\": 0.31763479113578796}, {\"X\": 0.7023693323135376, \"Y\": 0.3499673008918762}]}, \"Id\": \"baf71b20-3807-4c98-9031-e08556016c1a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3705825805664, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014390289783477783, \"Height\": 0.02753083035349846, \"Left\": 0.6879542469978333, \"Top\": 0.28643226623535156}, \"Polygon\": [{\"X\": 0.6879542469978333, \"Y\": 0.3139630854129791}, {\"X\": 0.6879542469978333, \"Y\": 0.28643226623535156}, {\"X\": 0.702344536781311, \"Y\": 0.28643226623535156}, {\"X\": 0.702344536781311, \"Y\": 0.3139630854129791}]}, \"Id\": \"593f6dbc-29e5-4dc8-abb1-6dbf38484776\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71997833251953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014825760386884212, \"Height\": 0.032258540391922, \"Left\": 0.6875424981117249, \"Top\": 0.2158541977405548}, \"Polygon\": [{\"X\": 0.6875424981117249, \"Y\": 0.2481127381324768}, {\"X\": 0.6875424981117249, \"Y\": 0.2158541977405548}, {\"X\": 0.7023682594299316, \"Y\": 0.2158541977405548}, {\"X\": 0.7023682594299316, \"Y\": 0.2481127381324768}]}, \"Id\": \"0db120c6-694f-4ebb-811c-c05eec67564d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.18594360351562, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014257499948143959, \"Height\": 0.027441969141364098, \"Left\": 0.6879259943962097, \"Top\": 0.18445290625095367}, \"Polygon\": [{\"X\": 0.6879259943962097, \"Y\": 0.21189486980438232}, {\"X\": 0.6879259943962097, \"Y\": 0.18445290625095367}, {\"X\": 0.7021834850311279, \"Y\": 0.18445290625095367}, {\"X\": 0.7021834850311279, \"Y\": 0.21189486980438232}]}, \"Id\": \"807e2070-a4d3-438b-977c-10d09cafa7a5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6043701171875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01463031955063343, \"Height\": 0.03266698122024536, \"Left\": 0.6876262426376343, \"Top\": 0.11388266086578369}, \"Polygon\": [{\"X\": 0.6876262426376343, \"Y\": 0.14654964208602905}, {\"X\": 0.6876262426376343, \"Y\": 0.11388266086578369}, {\"X\": 0.7022565603256226, \"Y\": 0.11388266086578369}, {\"X\": 0.7022565603256226, \"Y\": 0.14654964208602905}]}, \"Id\": \"fbdc45eb-5b36-4995-b3cd-b9dce8a6d891\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.83050537109375, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014414399862289429, \"Height\": 0.027400599792599678, \"Left\": 0.687854528427124, \"Top\": 0.08291509747505188}, \"Polygon\": [{\"X\": 0.687854528427124, \"Y\": 0.110315702855587}, {\"X\": 0.687854528427124, \"Y\": 0.08291509747505188}, {\"X\": 0.7022688984870911, \"Y\": 0.08291509747505188}, {\"X\": 0.7022688984870911, \"Y\": 0.110315702855587}]}, \"Id\": \"6e1e26c0-3e24-469e-85b8-5eacd91cf255\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25228118896484, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01474739983677864, \"Height\": 0.02377817966043949, \"Left\": 0.7086182236671448, \"Top\": 0.6257821917533875}, \"Polygon\": [{\"X\": 0.7086182236671448, \"Y\": 0.6495603919029236}, {\"X\": 0.7086182236671448, \"Y\": 0.6257821917533875}, {\"X\": 0.7233656048774719, \"Y\": 0.6257821917533875}, {\"X\": 0.7233656048774719, \"Y\": 0.6495603919029236}]}, \"Id\": \"6df3fa03-b547-414b-bb01-f0dec677bda1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98162078857422, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015643399208784103, \"Height\": 0.047031648457050323, \"Left\": 0.7079185843467712, \"Top\": 0.5754668116569519}, \"Polygon\": [{\"X\": 0.7079185843467712, \"Y\": 0.6224984526634216}, {\"X\": 0.7079185843467712, \"Y\": 0.5754668116569519}, {\"X\": 0.7235620021820068, \"Y\": 0.5754668116569519}, {\"X\": 0.7235620021820068, \"Y\": 0.6224984526634216}]}, \"Id\": \"2523c945-5dbc-400f-8874-344ebeac43aa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73551940917969, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014624349772930145, \"Height\": 0.021212030202150345, \"Left\": 0.7317930459976196, \"Top\": 0.628777265548706}, \"Polygon\": [{\"X\": 0.7317930459976196, \"Y\": 0.6499893069267273}, {\"X\": 0.7317930459976196, \"Y\": 0.628777265548706}, {\"X\": 0.7464174032211304, \"Y\": 0.628777265548706}, {\"X\": 0.7464174032211304, \"Y\": 0.6499893069267273}]}, \"Id\": \"6c928703-ed96-452b-b0e1-a0168d6402a3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9165267944336, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01495749969035387, \"Height\": 0.07039731740951538, \"Left\": 0.7313058972358704, \"Top\": 0.5546028017997742}, \"Polygon\": [{\"X\": 0.7313058972358704, \"Y\": 0.6250001788139343}, {\"X\": 0.7313058972358704, \"Y\": 0.5546028017997742}, {\"X\": 0.7462633848190308, \"Y\": 0.5546028017997742}, {\"X\": 0.7462633848190308, \"Y\": 0.6250001788139343}]}, \"Id\": \"02302701-84dd-4d7a-95a9-7a1ae1768da8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.30387115478516, \"Text\": \"Hel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006114200223237276, \"Height\": 0.009075400419533253, \"Left\": 0.8902239203453064, \"Top\": 0.22636839747428894}, \"Polygon\": [{\"X\": 0.8902239203453064, \"Y\": 0.23544380068778992}, {\"X\": 0.8902239203453064, \"Y\": 0.22636839747428894}, {\"X\": 0.8963381052017212, \"Y\": 0.22636839747428894}, {\"X\": 0.8963381052017212, \"Y\": 0.23544380068778992}]}, \"Id\": \"a1a8b2b1-8f7d-4fbd-a89f-51e171fc949c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 86.1288070678711, \"Text\": \"lo\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0060351998545229435, \"Height\": 0.006077200174331665, \"Left\": 0.8903635740280151, \"Top\": 0.21950900554656982}, \"Polygon\": [{\"X\": 0.8903635740280151, \"Y\": 0.2255862057209015}, {\"X\": 0.8903635740280151, \"Y\": 0.21950900554656982}, {\"X\": 0.8963987827301025, \"Y\": 0.21950900554656982}, {\"X\": 0.8963987827301025, \"Y\": 0.2255862057209015}]}, \"Id\": \"5781c30b-798c-46ec-9f2c-582bbe1dab72\"}, {\"BlockType\": \"WORD\", \"Confidence\": 92.28435516357422, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006063160020858049, \"Height\": 0.015613430179655552, \"Left\": 0.8905222415924072, \"Top\": 0.202217698097229}, \"Polygon\": [{\"X\": 0.8905222415924072, \"Y\": 0.21783113479614258}, {\"X\": 0.8905222415924072, \"Y\": 0.202217698097229}, {\"X\": 0.8965854048728943, \"Y\": 0.202217698097229}, {\"X\": 0.8965854048728943, \"Y\": 0.21783113479614258}]}, \"Id\": \"44761667-9c65-4347-a7fb-890fb1468355\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.06584167480469, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005960199981927872, \"Height\": 0.02165325917303562, \"Left\": 0.8906112909317017, \"Top\": 0.17272189259529114}, \"Polygon\": [{\"X\": 0.8906112909317017, \"Y\": 0.1943751573562622}, {\"X\": 0.8906112909317017, \"Y\": 0.17272189259529114}, {\"X\": 0.8965715169906616, \"Y\": 0.17272189259529114}, {\"X\": 0.8965715169906616, \"Y\": 0.1943751573562622}]}, \"Id\": \"2d72473e-7823-45d2-aa1c-ac213f69b3bd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.38155364990234, \"Text\": \"here!\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0058005498722195625, \"Height\": 0.01470854040235281, \"Left\": 0.8907615542411804, \"Top\": 0.15666615962982178}, \"Polygon\": [{\"X\": 0.8907615542411804, \"Y\": 0.17137469351291656}, {\"X\": 0.8907615542411804, \"Y\": 0.15666615962982178}, {\"X\": 0.8965620994567871, \"Y\": 0.15666615962982178}, {\"X\": 0.8965620994567871, \"Y\": 0.17137469351291656}]}, \"Id\": \"b36a89ac-537c-4c89-840f-55db4ad5ae5e\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.99362182617188, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14652033150196075, \"Height\": 0.4409102499485016, \"Left\": 0.2580810785293579, \"Top\": 0.022833090275526047}, \"Polygon\": [{\"X\": 0.2580810785293579, \"Y\": 0.46374332904815674}, {\"X\": 0.2580810785293579, \"Y\": 0.022833090275526047}, {\"X\": 0.40460139513015747, \"Y\": 0.022833090275526047}, {\"X\": 0.40460139513015747, \"Y\": 0.46374332904815674}]}, \"Id\": \"bb125807-d2e7-4859-9904-77c085aff44f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cee35da5-3955-4bd0-a302-adda0b571fb3\", \"fd1c18c7-0809-4a22-ab0b-a7d82efad51c\", \"dee813e0-2323-4913-aedd-d7330a29b07d\", \"b6f1e4a6-f660-4bb2-9faf-5e4f07c05281\", \"8e9b011a-8054-4cb7-82c4-1cc0699f92f4\", \"f915d446-3809-4e0e-8eaf-58a11af15f6c\", \"e7cd7210-012a-495c-9fa4-e3d1abe7b9c0\", \"b569c275-49b2-4da0-998a-badeb5d244c0\", \"54729e76-a988-4559-a1d3-8727843bf799\", \"f808081b-417d-42e4-929f-8fc66a453440\", \"adf857a0-6bf0-4a33-99c5-261db34c0d38\", \"70ef31b1-9a05-455c-8f82-dc439896f275\", \"312da302-c2f0-49f4-9211-4dfc71a7fc6c\", \"26a1b45e-292c-4d1c-a8c6-4a913ec51b5c\", \"813e740e-2c58-4fc8-8492-5c1e0a3cd2aa\", \"53f814a9-31eb-4951-b5f4-3bc5677914ac\", \"62401960-6e31-4926-b8c8-94157a1c96e9\", \"6bbf827a-396d-4c17-9d49-90b7b97ba1ce\", \"48ca596c-aab4-4330-a0a0-a09159095ee7\", \"8778feb1-3e9e-4ead-b725-5fac0c8a152b\", \"0a9f6e2a-5422-4b3c-9e31-7fa6767cc02d\", \"4ceb2211-6dff-4cf1-8af5-dce29a70247c\", \"e3a55095-fddc-482e-b76f-6b7b979c1f97\", \"8824f8b3-c044-4148-94b5-dea31b06baac\", \"6ee487d3-7c5c-4fcb-98d6-3c5f7643c0c8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.0900532603263855, \"Left\": 0.2580810785293579, \"Top\": 0.37369006872177124}, \"Polygon\": [{\"X\": 0.2580810785293579, \"Y\": 0.46374332904815674}, {\"X\": 0.2580810785293579, \"Y\": 0.37369006872177124}, {\"X\": 0.2877620458602905, \"Y\": 0.37369006872177124}, {\"X\": 0.2877620458602905, \"Y\": 0.46374332904815674}]}, \"Id\": \"cee35da5-3955-4bd0-a302-adda0b571fb3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7936ca2c-334f-49a6-a1d6-a365c8a13b84\", \"7a3128ce-4941-47e6-ad93-ef8081f769a9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.08537519723176956, \"Left\": 0.2580810785293579, \"Top\": 0.2883148789405823}, \"Polygon\": [{\"X\": 0.2580810785293579, \"Y\": 0.37369006872177124}, {\"X\": 0.2580810785293579, \"Y\": 0.2883148789405823}, {\"X\": 0.2877620458602905, \"Y\": 0.2883148789405823}, {\"X\": 0.2877620458602905, \"Y\": 0.37369006872177124}]}, \"Id\": \"fd1c18c7-0809-4a22-ab0b-a7d82efad51c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0414f0bb-6ea1-43ed-a03b-b10689f3ce97\", \"0dbfe133-cd29-4dfc-8d2c-46f0f7ed001e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.09005331248044968, \"Left\": 0.2580810785293579, \"Top\": 0.1982615739107132}, \"Polygon\": [{\"X\": 0.2580810785293579, \"Y\": 0.2883148789405823}, {\"X\": 0.2580810785293579, \"Y\": 0.1982615739107132}, {\"X\": 0.2877620458602905, \"Y\": 0.1982615739107132}, {\"X\": 0.2877620458602905, \"Y\": 0.2883148789405823}]}, \"Id\": \"dee813e0-2323-4913-aedd-d7330a29b07d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dbc503c1-e895-45f0-9514-fabb95913470\", \"ed416634-6dfd-4a37-9e28-19d1e4720098\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.08537515997886658, \"Left\": 0.2580810785293579, \"Top\": 0.11288639903068542}, \"Polygon\": [{\"X\": 0.2580810785293579, \"Y\": 0.198261559009552}, {\"X\": 0.2580810785293579, \"Y\": 0.11288639903068542}, {\"X\": 0.2877620458602905, \"Y\": 0.11288639903068542}, {\"X\": 0.2877620458602905, \"Y\": 0.198261559009552}]}, \"Id\": \"b6f1e4a6-f660-4bb2-9faf-5e4f07c05281\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2fc1ee2a-577b-445b-86dc-169083bdfbb5\", \"91d4a3b7-cf97-43ca-bc83-1c116c54e004\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.09005331248044968, \"Left\": 0.2580810785293579, \"Top\": 0.02283306047320366}, \"Polygon\": [{\"X\": 0.2580810785293579, \"Y\": 0.11288636922836304}, {\"X\": 0.2580810785293579, \"Y\": 0.02283306047320366}, {\"X\": 0.2877620458602905, \"Y\": 0.02283306047320366}, {\"X\": 0.2877620458602905, \"Y\": 0.11288636922836304}]}, \"Id\": \"8e9b011a-8054-4cb7-82c4-1cc0699f92f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3380c0cf-bf6d-4bc2-bc69-d28a4be1ba3c\", \"5a3c87c1-1338-40df-81e3-7971d00e0d7b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0287387203425169, \"Height\": 0.0900532603263855, \"Left\": 0.2877620458602905, \"Top\": 0.37369006872177124}, \"Polygon\": [{\"X\": 0.2877620458602905, \"Y\": 0.46374332904815674}, {\"X\": 0.2877620458602905, \"Y\": 0.37369006872177124}, {\"X\": 0.31650078296661377, \"Y\": 0.37369006872177124}, {\"X\": 0.31650078296661377, \"Y\": 0.46374332904815674}]}, \"Id\": \"f915d446-3809-4e0e-8eaf-58a11af15f6c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b7872f72-64aa-4957-b2fc-b75220b966cd\", \"ad13bbd6-6793-48ad-95eb-fd8a56b68d22\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0287387203425169, \"Height\": 0.08537519723176956, \"Left\": 0.2877620458602905, \"Top\": 0.2883148789405823}, \"Polygon\": [{\"X\": 0.2877620458602905, \"Y\": 0.37369006872177124}, {\"X\": 0.2877620458602905, \"Y\": 0.2883148789405823}, {\"X\": 0.31650078296661377, \"Y\": 0.2883148789405823}, {\"X\": 0.31650078296661377, \"Y\": 0.37369006872177124}]}, \"Id\": \"e7cd7210-012a-495c-9fa4-e3d1abe7b9c0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ae7d8a5d-7cd5-47ce-96de-bf92c8ffa3fa\", \"c1cf5344-be6a-4c8f-a04d-434196112f67\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0287387203425169, \"Height\": 0.09005331248044968, \"Left\": 0.2877620458602905, \"Top\": 0.1982615739107132}, \"Polygon\": [{\"X\": 0.2877620458602905, \"Y\": 0.2883148789405823}, {\"X\": 0.2877620458602905, \"Y\": 0.1982615739107132}, {\"X\": 0.31650078296661377, \"Y\": 0.1982615739107132}, {\"X\": 0.31650078296661377, \"Y\": 0.2883148789405823}]}, \"Id\": \"b569c275-49b2-4da0-998a-badeb5d244c0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f3b0ca40-1a97-4976-b192-9d66fcadd064\", \"c2b5172a-d1db-4c08-a206-6a7db7d94c9b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0287387203425169, \"Height\": 0.08537515997886658, \"Left\": 0.2877620458602905, \"Top\": 0.11288639903068542}, \"Polygon\": [{\"X\": 0.2877620458602905, \"Y\": 0.198261559009552}, {\"X\": 0.2877620458602905, \"Y\": 0.11288639903068542}, {\"X\": 0.31650078296661377, \"Y\": 0.11288639903068542}, {\"X\": 0.31650078296661377, \"Y\": 0.198261559009552}]}, \"Id\": \"54729e76-a988-4559-a1d3-8727843bf799\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f1580be-32f5-4ddf-92ab-bde05b7213ae\", \"ae14342f-bb2a-4dcc-b54e-d0e1a371d5c2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0287387203425169, \"Height\": 0.09005331248044968, \"Left\": 0.2877620458602905, \"Top\": 0.02283306047320366}, \"Polygon\": [{\"X\": 0.2877620458602905, \"Y\": 0.11288636922836304}, {\"X\": 0.2877620458602905, \"Y\": 0.02283306047320366}, {\"X\": 0.31650078296661377, \"Y\": 0.02283306047320366}, {\"X\": 0.31650078296661377, \"Y\": 0.11288636922836304}]}, \"Id\": \"f808081b-417d-42e4-929f-8fc66a453440\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"705ed9ff-f00b-4d8e-a8c3-36c61e5c063b\", \"71f0d242-6180-43f1-88b7-9165deba1d1d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.0900532603263855, \"Left\": 0.31650078296661377, \"Top\": 0.37369006872177124}, \"Polygon\": [{\"X\": 0.31650078296661377, \"Y\": 0.46374332904815674}, {\"X\": 0.31650078296661377, \"Y\": 0.37369006872177124}, {\"X\": 0.3461817502975464, \"Y\": 0.37369006872177124}, {\"X\": 0.3461817502975464, \"Y\": 0.46374332904815674}]}, \"Id\": \"adf857a0-6bf0-4a33-99c5-261db34c0d38\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3616f745-f7f2-4b75-8517-40854148895a\", \"37e72b93-608e-4788-bb42-5da7f297b225\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.08537519723176956, \"Left\": 0.31650078296661377, \"Top\": 0.2883148789405823}, \"Polygon\": [{\"X\": 0.31650078296661377, \"Y\": 0.37369006872177124}, {\"X\": 0.31650078296661377, \"Y\": 0.2883148789405823}, {\"X\": 0.3461817502975464, \"Y\": 0.2883148789405823}, {\"X\": 0.3461817502975464, \"Y\": 0.37369006872177124}]}, \"Id\": \"70ef31b1-9a05-455c-8f82-dc439896f275\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9af40378-e84c-458e-8272-4e26f9c594b5\", \"7d4bd724-ea07-4e74-95aa-c54f1857ff0d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.09005331248044968, \"Left\": 0.31650078296661377, \"Top\": 0.1982615739107132}, \"Polygon\": [{\"X\": 0.31650078296661377, \"Y\": 0.2883148789405823}, {\"X\": 0.31650078296661377, \"Y\": 0.1982615739107132}, {\"X\": 0.3461817502975464, \"Y\": 0.1982615739107132}, {\"X\": 0.3461817502975464, \"Y\": 0.2883148789405823}]}, \"Id\": \"312da302-c2f0-49f4-9211-4dfc71a7fc6c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b77b1e25-d909-4bec-ad10-d39de2095f49\", \"88821cbc-0fb3-4423-a8e2-61a836617d7f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.08537515997886658, \"Left\": 0.31650078296661377, \"Top\": 0.11288639903068542}, \"Polygon\": [{\"X\": 0.31650078296661377, \"Y\": 0.198261559009552}, {\"X\": 0.31650078296661377, \"Y\": 0.11288639903068542}, {\"X\": 0.3461817502975464, \"Y\": 0.11288639903068542}, {\"X\": 0.3461817502975464, \"Y\": 0.198261559009552}]}, \"Id\": \"26a1b45e-292c-4d1c-a8c6-4a913ec51b5c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00fff5bb-7406-4f07-b319-9148f20a75f8\", \"452c55fb-6bfb-4b2a-b737-f4a5a96fdc09\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680969193577766, \"Height\": 0.09005331248044968, \"Left\": 0.31650078296661377, \"Top\": 0.02283306047320366}, \"Polygon\": [{\"X\": 0.31650078296661377, \"Y\": 0.11288636922836304}, {\"X\": 0.31650078296661377, \"Y\": 0.02283306047320366}, {\"X\": 0.3461817502975464, \"Y\": 0.02283306047320366}, {\"X\": 0.3461817502975464, \"Y\": 0.11288636922836304}]}, \"Id\": \"813e740e-2c58-4fc8-8492-5c1e0a3cd2aa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d78be432-b6d5-4447-942c-24a7bb1b2a03\", \"be018e29-bec3-44ec-b177-4513bbefe49b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680989682674408, \"Height\": 0.0900532603263855, \"Left\": 0.346181720495224, \"Top\": 0.37369006872177124}, \"Polygon\": [{\"X\": 0.346181720495224, \"Y\": 0.46374332904815674}, {\"X\": 0.346181720495224, \"Y\": 0.37369006872177124}, {\"X\": 0.375862717628479, \"Y\": 0.37369006872177124}, {\"X\": 0.375862717628479, \"Y\": 0.46374332904815674}]}, \"Id\": \"53f814a9-31eb-4951-b5f4-3bc5677914ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"43ba555f-60d1-45ad-81d1-7c1e1e093550\", \"126b1ba1-e793-4872-bb33-6b80c2bd3ae2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680989682674408, \"Height\": 0.08537519723176956, \"Left\": 0.346181720495224, \"Top\": 0.2883148789405823}, \"Polygon\": [{\"X\": 0.346181720495224, \"Y\": 0.37369006872177124}, {\"X\": 0.346181720495224, \"Y\": 0.2883148789405823}, {\"X\": 0.375862717628479, \"Y\": 0.2883148789405823}, {\"X\": 0.375862717628479, \"Y\": 0.37369006872177124}]}, \"Id\": \"62401960-6e31-4926-b8c8-94157a1c96e9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4ea8857-ad84-4910-8a13-295c3614ba5e\", \"6d7a219d-1ec0-4967-bb98-a5d6650b7f11\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680989682674408, \"Height\": 0.09005331248044968, \"Left\": 0.346181720495224, \"Top\": 0.1982615739107132}, \"Polygon\": [{\"X\": 0.346181720495224, \"Y\": 0.2883148789405823}, {\"X\": 0.346181720495224, \"Y\": 0.1982615739107132}, {\"X\": 0.375862717628479, \"Y\": 0.1982615739107132}, {\"X\": 0.375862717628479, \"Y\": 0.2883148789405823}]}, \"Id\": \"6bbf827a-396d-4c17-9d49-90b7b97ba1ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efef7474-77b7-4c1d-aba3-cd225b6340b0\", \"b73a7d81-b20f-4cef-aa78-b41ad70b9ab7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680989682674408, \"Height\": 0.08537515997886658, \"Left\": 0.346181720495224, \"Top\": 0.11288639903068542}, \"Polygon\": [{\"X\": 0.346181720495224, \"Y\": 0.198261559009552}, {\"X\": 0.346181720495224, \"Y\": 0.11288639903068542}, {\"X\": 0.375862717628479, \"Y\": 0.11288639903068542}, {\"X\": 0.375862717628479, \"Y\": 0.198261559009552}]}, \"Id\": \"48ca596c-aab4-4330-a0a0-a09159095ee7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5aa32eb7-1fd8-4221-b1c4-874820cc2978\", \"c628bf73-ec23-4654-8148-5a26924d80b4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029680989682674408, \"Height\": 0.09005331248044968, \"Left\": 0.346181720495224, \"Top\": 0.02283306047320366}, \"Polygon\": [{\"X\": 0.346181720495224, \"Y\": 0.11288636922836304}, {\"X\": 0.346181720495224, \"Y\": 0.02283306047320366}, {\"X\": 0.375862717628479, \"Y\": 0.02283306047320366}, {\"X\": 0.375862717628479, \"Y\": 0.11288636922836304}]}, \"Id\": \"8778feb1-3e9e-4ead-b725-5fac0c8a152b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d68a4c56-8560-4e7d-aa08-7b74fd547b63\", \"a7c1d2fa-c210-4b49-9086-1f93b813b018\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02873869054019451, \"Height\": 0.0900532603263855, \"Left\": 0.375862717628479, \"Top\": 0.37369006872177124}, \"Polygon\": [{\"X\": 0.375862717628479, \"Y\": 0.46374332904815674}, {\"X\": 0.375862717628479, \"Y\": 0.37369006872177124}, {\"X\": 0.40460139513015747, \"Y\": 0.37369006872177124}, {\"X\": 0.40460139513015747, \"Y\": 0.46374332904815674}]}, \"Id\": \"0a9f6e2a-5422-4b3c-9e31-7fa6767cc02d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"758327c1-430c-43e1-b928-52d95bdafc40\", \"3871055a-8a91-435d-af0a-f5fbbd3a703e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02873869054019451, \"Height\": 0.08537519723176956, \"Left\": 0.375862717628479, \"Top\": 0.2883148789405823}, \"Polygon\": [{\"X\": 0.375862717628479, \"Y\": 0.37369006872177124}, {\"X\": 0.375862717628479, \"Y\": 0.2883148789405823}, {\"X\": 0.40460139513015747, \"Y\": 0.2883148789405823}, {\"X\": 0.40460139513015747, \"Y\": 0.37369006872177124}]}, \"Id\": \"4ceb2211-6dff-4cf1-8af5-dce29a70247c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"469f2e22-9926-4739-b71f-8be4219ec236\", \"764a3362-82bb-4aac-be05-89266d784df3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02873869054019451, \"Height\": 0.09005331248044968, \"Left\": 0.375862717628479, \"Top\": 0.1982615739107132}, \"Polygon\": [{\"X\": 0.375862717628479, \"Y\": 0.2883148789405823}, {\"X\": 0.375862717628479, \"Y\": 0.1982615739107132}, {\"X\": 0.40460139513015747, \"Y\": 0.1982615739107132}, {\"X\": 0.40460139513015747, \"Y\": 0.2883148789405823}]}, \"Id\": \"e3a55095-fddc-482e-b76f-6b7b979c1f97\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c0bab5d0-7c9e-403a-9f04-381f57ba4b92\", \"38f8ff8b-18eb-4b46-a607-5531156debf1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02873869054019451, \"Height\": 0.08537515997886658, \"Left\": 0.375862717628479, \"Top\": 0.11288639903068542}, \"Polygon\": [{\"X\": 0.375862717628479, \"Y\": 0.198261559009552}, {\"X\": 0.375862717628479, \"Y\": 0.11288639903068542}, {\"X\": 0.40460139513015747, \"Y\": 0.11288639903068542}, {\"X\": 0.40460139513015747, \"Y\": 0.198261559009552}]}, \"Id\": \"8824f8b3-c044-4148-94b5-dea31b06baac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eff969aa-9130-4ea6-b6d5-c464ab854f82\", \"1974d902-3121-4a95-acab-bd788440b7e8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99362182617188, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02873869054019451, \"Height\": 0.09005331248044968, \"Left\": 0.375862717628479, \"Top\": 0.02283306047320366}, \"Polygon\": [{\"X\": 0.375862717628479, \"Y\": 0.11288636922836304}, {\"X\": 0.375862717628479, \"Y\": 0.02283306047320366}, {\"X\": 0.40460139513015747, \"Y\": 0.02283306047320366}, {\"X\": 0.40460139513015747, \"Y\": 0.11288636922836304}]}, \"Id\": \"6ee487d3-7c5c-4fcb-98d6-3c5f7643c0c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f1b1f9f6-5ace-4010-a844-712175048f3d\", \"b098bbba-c301-4a64-a4fe-28e67dbf132f\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.99137878417969, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20053060352802277, \"Height\": 0.30671626329421997, \"Left\": 0.5076268911361694, \"Top\": 0.049557700753211975}, \"Polygon\": [{\"X\": 0.5076268911361694, \"Y\": 0.35627397894859314}, {\"X\": 0.5076268911361694, \"Y\": 0.049557700753211975}, {\"X\": 0.7081575393676758, \"Y\": 0.049557700753211975}, {\"X\": 0.7081575393676758, \"Y\": 0.35627397894859314}]}, \"Id\": \"93bd71c2-a895-48ce-bc26-2d05e1613860\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b7c9acab-d5d4-41b8-8a84-2201d46125fb\", \"fb2ee8d8-e5f2-44ba-99e5-db9d7da255e1\", \"d209acc8-00bd-442c-ad4b-b36552f9b260\", \"37e4c8b8-5a8c-454c-8235-aa2ce5f41fe8\", \"9b426340-ca99-46b4-aa76-a64030f61bc8\", \"40294f30-9649-40af-b189-d19f8ebadd09\", \"c1399445-060b-4bee-b68d-adcac893f20f\", \"8aa38cf8-74dc-4b23-a6e1-019c3849d18e\", \"93fa178a-0525-4db4-ad20-47e263bf3983\", \"3165cfd3-a6dd-4761-8dee-f6fa090be5e1\", \"7280f082-f539-4f88-af00-c0691510a7af\", \"1c38cae0-0e9d-4830-8f47-9d1e6b98e735\", \"8eec5346-3549-4b90-9fb9-cd99faa2a9ba\", \"d730d570-5cdc-4d64-9526-a6098863e032\", \"b5c7655b-102b-4546-b878-1a35d626c3c5\", \"cf1865b2-f7f1-46b0-beee-e9e72eba0cd0\", \"3c5a8a39-8a40-4f85-861a-abfe5a04b8fd\", \"f39046bf-4a1b-40d1-b781-bc31a3fbd7e1\", \"3013eeee-0bc2-4bd8-afcc-219b1e31e2c7\", \"36300246-31e2-4a72-9685-e3239d15964e\", \"0a984b08-2774-42e1-bcdb-3edc8af990ac\", \"18f4af88-3b62-4d98-a0e7-0ad0b35b29e4\", \"17c8d050-80f2-4128-a8cd-eac672a316f4\", \"f2c0eb91-5f1c-4511-bd9b-3786c4a0969a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02387269027531147, \"Height\": 0.1014142632484436, \"Left\": 0.5076268911361694, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.5076268911361694, \"Y\": 0.35627394914627075}, {\"X\": 0.5076268911361694, \"Y\": 0.25485968589782715}, {\"X\": 0.5314995646476746, \"Y\": 0.25485968589782715}, {\"X\": 0.5314995646476746, \"Y\": 0.35627394914627075}]}, \"Id\": \"b7c9acab-d5d4-41b8-8a84-2201d46125fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a9e5099-0561-4d76-8be1-cb94c9588e80\", \"6af5732d-3450-4c3d-aedb-bd6e71308bea\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02387269027531147, \"Height\": 0.10306323319673538, \"Left\": 0.5076268911361694, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.5076268911361694, \"Y\": 0.25485968589782715}, {\"X\": 0.5076268911361694, \"Y\": 0.15179646015167236}, {\"X\": 0.5314995646476746, \"Y\": 0.15179646015167236}, {\"X\": 0.5314995646476746, \"Y\": 0.25485968589782715}]}, \"Id\": \"fb2ee8d8-e5f2-44ba-99e5-db9d7da255e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cdb082b8-c634-4a78-a31e-37e017f00612\", \"d5045e8d-8c65-4d23-a2e2-b65d7d5119d5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02387269027531147, \"Height\": 0.10223876684904099, \"Left\": 0.5076268911361694, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.5076268911361694, \"Y\": 0.15179646015167236}, {\"X\": 0.5076268911361694, \"Y\": 0.04955768957734108}, {\"X\": 0.5314995646476746, \"Y\": 0.04955768957734108}, {\"X\": 0.5314995646476746, \"Y\": 0.15179646015167236}]}, \"Id\": \"d209acc8-00bd-442c-ad4b-b36552f9b260\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa871722-4b8e-415e-992b-2cf5c2dc812b\", \"de35b12a-8bcc-4fb6-91ba-1d78da2a892b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02599469944834709, \"Height\": 0.1014142632484436, \"Left\": 0.5314996242523193, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.5314996242523193, \"Y\": 0.35627394914627075}, {\"X\": 0.5314996242523193, \"Y\": 0.25485968589782715}, {\"X\": 0.5574943423271179, \"Y\": 0.25485968589782715}, {\"X\": 0.5574943423271179, \"Y\": 0.35627394914627075}]}, \"Id\": \"37e4c8b8-5a8c-454c-8235-aa2ce5f41fe8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"15471c61-83ca-4060-8c4b-99484b3e7616\", \"827da256-6991-49af-a4dd-a305cec03346\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02599469944834709, \"Height\": 0.10306323319673538, \"Left\": 0.5314996242523193, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.5314996242523193, \"Y\": 0.25485968589782715}, {\"X\": 0.5314996242523193, \"Y\": 0.15179646015167236}, {\"X\": 0.5574943423271179, \"Y\": 0.15179646015167236}, {\"X\": 0.5574943423271179, \"Y\": 0.25485968589782715}]}, \"Id\": \"9b426340-ca99-46b4-aa76-a64030f61bc8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3bb1fec-b467-4a0e-94e9-bc9ac9075e4b\", \"72cb0a55-ce17-4d5e-88cd-68cc1222d48d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02599469944834709, \"Height\": 0.10223876684904099, \"Left\": 0.5314996242523193, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.5314996242523193, \"Y\": 0.15179646015167236}, {\"X\": 0.5314996242523193, \"Y\": 0.04955768957734108}, {\"X\": 0.5574943423271179, \"Y\": 0.04955768957734108}, {\"X\": 0.5574943423271179, \"Y\": 0.15179646015167236}]}, \"Id\": \"40294f30-9649-40af-b189-d19f8ebadd09\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74d229d0-a6ba-4628-ad89-5877c62f86f7\", \"cc5508ad-8e7b-4b6e-9468-cbc52f2133ac\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.1014142632484436, \"Left\": 0.5574942827224731, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.5574942827224731, \"Y\": 0.35627394914627075}, {\"X\": 0.5574942827224731, \"Y\": 0.25485968589782715}, {\"X\": 0.5824280381202698, \"Y\": 0.25485968589782715}, {\"X\": 0.5824280381202698, \"Y\": 0.35627394914627075}]}, \"Id\": \"c1399445-060b-4bee-b68d-adcac893f20f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"16c863d1-05bc-47df-9d04-502ded213b0e\", \"746abe7b-9858-4a8b-84b3-de9cb95cb9cf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.10306323319673538, \"Left\": 0.5574942827224731, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.5574942827224731, \"Y\": 0.25485968589782715}, {\"X\": 0.5574942827224731, \"Y\": 0.15179646015167236}, {\"X\": 0.5824280381202698, \"Y\": 0.15179646015167236}, {\"X\": 0.5824280381202698, \"Y\": 0.25485968589782715}]}, \"Id\": \"8aa38cf8-74dc-4b23-a6e1-019c3849d18e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"346f04f7-3ea5-4663-8d59-eba6e12bc6cc\", \"1decc623-2187-4e4f-94df-282714b93ef1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.10223876684904099, \"Left\": 0.5574942827224731, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.5574942827224731, \"Y\": 0.15179646015167236}, {\"X\": 0.5574942827224731, \"Y\": 0.04955768957734108}, {\"X\": 0.5824280381202698, \"Y\": 0.04955768957734108}, {\"X\": 0.5824280381202698, \"Y\": 0.15179646015167236}]}, \"Id\": \"93fa178a-0525-4db4-ad20-47e263bf3983\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ee451111-6830-4636-aab5-9614cee22485\", \"a454ddbd-1ee5-4edb-b272-d135aea72447\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.1014142632484436, \"Left\": 0.5824280381202698, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.5824280381202698, \"Y\": 0.35627394914627075}, {\"X\": 0.5824280381202698, \"Y\": 0.25485968589782715}, {\"X\": 0.6073617935180664, \"Y\": 0.25485968589782715}, {\"X\": 0.6073617935180664, \"Y\": 0.35627394914627075}]}, \"Id\": \"3165cfd3-a6dd-4761-8dee-f6fa090be5e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7ad486ac-0dfc-4061-82b7-43b20badd165\", \"a8cdb7c5-0502-41a4-b213-c7719e5d724a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.10306323319673538, \"Left\": 0.5824280381202698, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.5824280381202698, \"Y\": 0.25485968589782715}, {\"X\": 0.5824280381202698, \"Y\": 0.15179646015167236}, {\"X\": 0.6073617935180664, \"Y\": 0.15179646015167236}, {\"X\": 0.6073617935180664, \"Y\": 0.25485968589782715}]}, \"Id\": \"7280f082-f539-4f88-af00-c0691510a7af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"257834fc-b060-40be-ac11-4852bf7b5187\", \"1712b2ce-b3d1-442e-8e61-bb476f45f1bb\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.10223876684904099, \"Left\": 0.5824280381202698, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.5824280381202698, \"Y\": 0.15179646015167236}, {\"X\": 0.5824280381202698, \"Y\": 0.04955768957734108}, {\"X\": 0.6073617935180664, \"Y\": 0.04955768957734108}, {\"X\": 0.6073617935180664, \"Y\": 0.15179646015167236}]}, \"Id\": \"1c38cae0-0e9d-4830-8f47-9d1e6b98e735\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ddd573b-e59c-4583-bce5-78ae723ffea4\", \"d8672e7a-682a-460c-862a-1b89c3b620ff\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024933669716119766, \"Height\": 0.1014142632484436, \"Left\": 0.6073617339134216, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.6073617339134216, \"Y\": 0.35627394914627075}, {\"X\": 0.6073617339134216, \"Y\": 0.25485968589782715}, {\"X\": 0.6322954297065735, \"Y\": 0.25485968589782715}, {\"X\": 0.6322954297065735, \"Y\": 0.35627394914627075}]}, \"Id\": \"8eec5346-3549-4b90-9fb9-cd99faa2a9ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23365f0c-87e0-40e6-a614-0e36dede0a4d\", \"7264d208-7324-4104-a188-5d841537041b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024933669716119766, \"Height\": 0.10306323319673538, \"Left\": 0.6073617339134216, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.6073617339134216, \"Y\": 0.25485968589782715}, {\"X\": 0.6073617339134216, \"Y\": 0.15179646015167236}, {\"X\": 0.6322954297065735, \"Y\": 0.15179646015167236}, {\"X\": 0.6322954297065735, \"Y\": 0.25485968589782715}]}, \"Id\": \"d730d570-5cdc-4d64-9526-a6098863e032\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb18db8e-8934-4842-9458-4bcb870c6a52\", \"3c02dc4b-36dc-49c3-80ae-c0326fe9acaa\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024933669716119766, \"Height\": 0.10223876684904099, \"Left\": 0.6073617339134216, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.6073617339134216, \"Y\": 0.15179646015167236}, {\"X\": 0.6073617339134216, \"Y\": 0.04955768957734108}, {\"X\": 0.6322954297065735, \"Y\": 0.04955768957734108}, {\"X\": 0.6322954297065735, \"Y\": 0.15179646015167236}]}, \"Id\": \"b5c7655b-102b-4546-b878-1a35d626c3c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19934a84-a856-4893-94c8-d14017d84914\", \"845a215e-8bfe-4cbf-8796-459494fc1397\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.1014142632484436, \"Left\": 0.6322954297065735, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.6322954297065735, \"Y\": 0.35627394914627075}, {\"X\": 0.6322954297065735, \"Y\": 0.25485968589782715}, {\"X\": 0.6572291851043701, \"Y\": 0.25485968589782715}, {\"X\": 0.6572291851043701, \"Y\": 0.35627394914627075}]}, \"Id\": \"cf1865b2-f7f1-46b0-beee-e9e72eba0cd0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5d3389b-dda1-42b7-9104-68ef8172090f\", \"552d4b61-3b70-4f92-b231-9a3970abe558\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.10306323319673538, \"Left\": 0.6322954297065735, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.6322954297065735, \"Y\": 0.25485968589782715}, {\"X\": 0.6322954297065735, \"Y\": 0.15179646015167236}, {\"X\": 0.6572291851043701, \"Y\": 0.15179646015167236}, {\"X\": 0.6572291851043701, \"Y\": 0.25485968589782715}]}, \"Id\": \"3c5a8a39-8a40-4f85-861a-abfe5a04b8fd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9b35452b-939c-451f-96ac-2ed9dfb03175\", \"04870fd1-1f0e-4f48-a6d7-88a085f9494d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02493372932076454, \"Height\": 0.10223876684904099, \"Left\": 0.6322954297065735, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.6322954297065735, \"Y\": 0.15179646015167236}, {\"X\": 0.6322954297065735, \"Y\": 0.04955768957734108}, {\"X\": 0.6572291851043701, \"Y\": 0.04955768957734108}, {\"X\": 0.6572291851043701, \"Y\": 0.15179646015167236}]}, \"Id\": \"f39046bf-4a1b-40d1-b781-bc31a3fbd7e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad6d63d7-5497-41a9-9e0e-c8d949a88775\", \"bf0ecb32-c2d8-49e4-8c25-a3b1416f6988\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02599469944834709, \"Height\": 0.1014142632484436, \"Left\": 0.6572291254997253, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.6572291254997253, \"Y\": 0.35627394914627075}, {\"X\": 0.6572291254997253, \"Y\": 0.25485968589782715}, {\"X\": 0.6832238435745239, \"Y\": 0.25485968589782715}, {\"X\": 0.6832238435745239, \"Y\": 0.35627394914627075}]}, \"Id\": \"3013eeee-0bc2-4bd8-afcc-219b1e31e2c7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"36e422d6-7f13-48de-b7c9-d6af3b680cda\", \"4e628985-db09-4d21-9798-96bae9079e06\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02599469944834709, \"Height\": 0.10306323319673538, \"Left\": 0.6572291254997253, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.6572291254997253, \"Y\": 0.25485968589782715}, {\"X\": 0.6572291254997253, \"Y\": 0.15179646015167236}, {\"X\": 0.6832238435745239, \"Y\": 0.15179646015167236}, {\"X\": 0.6832238435745239, \"Y\": 0.25485968589782715}]}, \"Id\": \"36300246-31e2-4a72-9685-e3239d15964e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35facc19-4add-4b7e-8d34-b591b7df7ec6\", \"b6facb65-16da-4db8-a9c4-61e151ec687a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02599469944834709, \"Height\": 0.10223876684904099, \"Left\": 0.6572291254997253, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.6572291254997253, \"Y\": 0.15179646015167236}, {\"X\": 0.6572291254997253, \"Y\": 0.04955768957734108}, {\"X\": 0.6832238435745239, \"Y\": 0.04955768957734108}, {\"X\": 0.6832238435745239, \"Y\": 0.15179646015167236}]}, \"Id\": \"0a984b08-2774-42e1-bcdb-3edc8af990ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0e96b2de-1f7e-4fcb-bb54-6a0fadfb0e6f\", \"00015fea-3836-452e-9944-6b13cfd4e762\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024933669716119766, \"Height\": 0.1014142632484436, \"Left\": 0.6832238435745239, \"Top\": 0.25485968589782715}, \"Polygon\": [{\"X\": 0.6832238435745239, \"Y\": 0.35627394914627075}, {\"X\": 0.6832238435745239, \"Y\": 0.25485968589782715}, {\"X\": 0.7081575393676758, \"Y\": 0.25485968589782715}, {\"X\": 0.7081575393676758, \"Y\": 0.35627394914627075}]}, \"Id\": \"18f4af88-3b62-4d98-a0e7-0ad0b35b29e4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"baf71b20-3807-4c98-9031-e08556016c1a\", \"593f6dbc-29e5-4dc8-abb1-6dbf38484776\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024933669716119766, \"Height\": 0.10306323319673538, \"Left\": 0.6832238435745239, \"Top\": 0.15179646015167236}, \"Polygon\": [{\"X\": 0.6832238435745239, \"Y\": 0.25485968589782715}, {\"X\": 0.6832238435745239, \"Y\": 0.15179646015167236}, {\"X\": 0.7081575393676758, \"Y\": 0.15179646015167236}, {\"X\": 0.7081575393676758, \"Y\": 0.25485968589782715}]}, \"Id\": \"17c8d050-80f2-4128-a8cd-eac672a316f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0db120c6-694f-4ebb-811c-c05eec67564d\", \"807e2070-a4d3-438b-977c-10d09cafa7a5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.99137878417969, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024933669716119766, \"Height\": 0.10223876684904099, \"Left\": 0.6832238435745239, \"Top\": 0.04955768957734108}, \"Polygon\": [{\"X\": 0.6832238435745239, \"Y\": 0.15179646015167236}, {\"X\": 0.6832238435745239, \"Y\": 0.04955768957734108}, {\"X\": 0.7081575393676758, \"Y\": 0.04955768957734108}, {\"X\": 0.7081575393676758, \"Y\": 0.15179646015167236}]}, \"Id\": \"f2c0eb91-5f1c-4511-bd9b-3786c4a0969a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fbdc45eb-5b36-4995-b3cd-b9dce8a6d891\", \"6e1e26c0-3e24-469e-85b8-5eacd91cf255\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.88641357421875, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07477541267871857, \"Height\": 0.2340259552001953, \"Left\": 0.14878621697425842, \"Top\": 0.398819237947464}, \"Polygon\": [{\"X\": 0.14878621697425842, \"Y\": 0.6328452229499817}, {\"X\": 0.14878621697425842, \"Y\": 0.398819237947464}, {\"X\": 0.2235616147518158, \"Y\": 0.398819237947464}, {\"X\": 0.2235616147518158, \"Y\": 0.6328452229499817}]}, \"Id\": \"bb3a12a0-603a-4cb4-9b61-c36e0a7b28af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c34fa57a-3f79-4e13-81e6-fed0996c8ced\", \"d9629c4f-9f16-4de4-a042-7562cda40b27\", \"b5a16038-40fc-4adf-b148-af71135a963d\", \"d44f5db4-cb0c-49ef-af95-de511b99a900\", \"816512b5-22af-4b34-980d-a2f1991f91eb\", \"bdd0011b-b5b4-41fe-8b36-a32b0dcaf3af\", \"455e54ea-d7e5-46c3-bee2-d4365ebde807\", \"2b3ac552-9df1-44ea-bd14-e4505a5bf626\", \"375d7f93-6b61-4af2-987d-dde027dc9c06\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0258657094091177, \"Height\": 0.07863772660493851, \"Left\": 0.14878620207309723, \"Top\": 0.5542075037956238}, \"Polygon\": [{\"X\": 0.14878620207309723, \"Y\": 0.6328452229499817}, {\"X\": 0.14878620207309723, \"Y\": 0.5542075037956238}, {\"X\": 0.17465190589427948, \"Y\": 0.5542075037956238}, {\"X\": 0.17465190589427948, \"Y\": 0.6328452229499817}]}, \"Id\": \"c34fa57a-3f79-4e13-81e6-fed0996c8ced\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e4e731b6-3580-4895-af80-cabd75c62fe3\", \"b92f1e83-9d90-44bd-9af1-98674964ff7e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0258657094091177, \"Height\": 0.07863772660493851, \"Left\": 0.14878620207309723, \"Top\": 0.4755697548389435}, \"Polygon\": [{\"X\": 0.14878620207309723, \"Y\": 0.554207444190979}, {\"X\": 0.14878620207309723, \"Y\": 0.4755697548389435}, {\"X\": 0.17465190589427948, \"Y\": 0.4755697548389435}, {\"X\": 0.17465190589427948, \"Y\": 0.554207444190979}]}, \"Id\": \"d9629c4f-9f16-4de4-a042-7562cda40b27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"979febdd-2bbb-4405-b946-0ba548510a6e\", \"f537e3d8-0cf8-4703-b146-be750254ea53\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0258657094091177, \"Height\": 0.0767504870891571, \"Left\": 0.14878620207309723, \"Top\": 0.398819237947464}, \"Polygon\": [{\"X\": 0.14878620207309723, \"Y\": 0.4755697250366211}, {\"X\": 0.14878620207309723, \"Y\": 0.398819237947464}, {\"X\": 0.17465190589427948, \"Y\": 0.398819237947464}, {\"X\": 0.17465190589427948, \"Y\": 0.4755697250366211}]}, \"Id\": \"b5a16038-40fc-4adf-b148-af71135a963d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"32f79454-8deb-4c70-9a3f-4ca31a17beef\", \"d4e26e58-ecb5-4a3c-bc34-16154dbbe053\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0258657094091177, \"Height\": 0.07863772660493851, \"Left\": 0.17465190589427948, \"Top\": 0.5542075037956238}, \"Polygon\": [{\"X\": 0.17465190589427948, \"Y\": 0.6328452229499817}, {\"X\": 0.17465190589427948, \"Y\": 0.5542075037956238}, {\"X\": 0.20051762461662292, \"Y\": 0.5542075037956238}, {\"X\": 0.20051762461662292, \"Y\": 0.6328452229499817}]}, \"Id\": \"d44f5db4-cb0c-49ef-af95-de511b99a900\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a492319c-ef80-433d-877f-0cff3a4f06a7\", \"3e4f5e69-c1ac-4817-914c-8fe593ad6af1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0258657094091177, \"Height\": 0.07863772660493851, \"Left\": 0.17465190589427948, \"Top\": 0.4755697548389435}, \"Polygon\": [{\"X\": 0.17465190589427948, \"Y\": 0.554207444190979}, {\"X\": 0.17465190589427948, \"Y\": 0.4755697548389435}, {\"X\": 0.20051762461662292, \"Y\": 0.4755697548389435}, {\"X\": 0.20051762461662292, \"Y\": 0.554207444190979}]}, \"Id\": \"816512b5-22af-4b34-980d-a2f1991f91eb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58beb17d-69b6-48ef-88d8-6ca55aafc84c\", \"c8c5b8ef-9cc4-422b-87bb-6a06d90ca1bc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0258657094091177, \"Height\": 0.0767504870891571, \"Left\": 0.17465190589427948, \"Top\": 0.398819237947464}, \"Polygon\": [{\"X\": 0.17465190589427948, \"Y\": 0.4755697250366211}, {\"X\": 0.17465190589427948, \"Y\": 0.398819237947464}, {\"X\": 0.20051762461662292, \"Y\": 0.398819237947464}, {\"X\": 0.20051762461662292, \"Y\": 0.4755697250366211}]}, \"Id\": \"bdd0011b-b5b4-41fe-8b36-a32b0dcaf3af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"37554b3a-777d-4728-a2bb-8467ca18c3e9\", \"4e9b62bc-3aa5-41cb-bbfc-f8773b25158f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023043999448418617, \"Height\": 0.07863772660493851, \"Left\": 0.20051762461662292, \"Top\": 0.5542075037956238}, \"Polygon\": [{\"X\": 0.20051762461662292, \"Y\": 0.6328452229499817}, {\"X\": 0.20051762461662292, \"Y\": 0.5542075037956238}, {\"X\": 0.2235616147518158, \"Y\": 0.5542075037956238}, {\"X\": 0.2235616147518158, \"Y\": 0.6328452229499817}]}, \"Id\": \"455e54ea-d7e5-46c3-bee2-d4365ebde807\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7fc05e2c-b03d-496e-b123-a149c69735bb\", \"1e9d3705-5740-494c-b259-f33c44468e0f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023043999448418617, \"Height\": 0.07863772660493851, \"Left\": 0.20051762461662292, \"Top\": 0.4755697548389435}, \"Polygon\": [{\"X\": 0.20051762461662292, \"Y\": 0.554207444190979}, {\"X\": 0.20051762461662292, \"Y\": 0.4755697548389435}, {\"X\": 0.2235616147518158, \"Y\": 0.4755697548389435}, {\"X\": 0.2235616147518158, \"Y\": 0.554207444190979}]}, \"Id\": \"2b3ac552-9df1-44ea-bd14-e4505a5bf626\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8222ae8c-f6fb-484d-96f5-497d729ed61d\", \"db02546d-6b29-4265-a008-2b92c0b13d1a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.88641357421875, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023043999448418617, \"Height\": 0.0767504870891571, \"Left\": 0.20051762461662292, \"Top\": 0.398819237947464}, \"Polygon\": [{\"X\": 0.20051762461662292, \"Y\": 0.4755697250366211}, {\"X\": 0.20051762461662292, \"Y\": 0.398819237947464}, {\"X\": 0.2235616147518158, \"Y\": 0.398819237947464}, {\"X\": 0.2235616147518158, \"Y\": 0.4755697250366211}]}, \"Id\": \"375d7f93-6b61-4af2-987d-dde027dc9c06\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b8f4b37-85f2-4202-8a8f-04e72005b379\", \"ee072e81-bb8a-46f7-ad2a-b1889c5bc383\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 72.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015110980719327927, \"Height\": 0.022176677361130714, \"Left\": 0.7322789430618286, \"Top\": 0.6280363202095032}, \"Polygon\": [{\"X\": 0.7322789430618286, \"Y\": 0.6502129435539246}, {\"X\": 0.7322789430618286, \"Y\": 0.6280363202095032}, {\"X\": 0.7473899126052856, \"Y\": 0.6280363202095032}, {\"X\": 0.7473899126052856, \"Y\": 0.6502129435539246}]}, \"Id\": \"19e57c8c-66e1-49f4-96ff-460078ae5e38\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"2adc27a0-27c6-498c-af3d-49bd42b5c022\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"6c928703-ed96-452b-b0e1-a0168d6402a3\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 72.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01557899359613657, \"Height\": 0.07253210246562958, \"Left\": 0.7317872047424316, \"Top\": 0.5540011525154114}, \"Polygon\": [{\"X\": 0.7317872047424316, \"Y\": 0.6265332698822021}, {\"X\": 0.7317872047424316, \"Y\": 0.5540011525154114}, {\"X\": 0.747366189956665, \"Y\": 0.5540011525154114}, {\"X\": 0.747366189956665, \"Y\": 0.6265332698822021}]}, \"Id\": \"2adc27a0-27c6-498c-af3d-49bd42b5c022\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"02302701-84dd-4d7a-95a9-7a1ae1768da8\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 69.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015684308484196663, \"Height\": 0.023171670734882355, \"Left\": 0.7087677717208862, \"Top\": 0.6257078647613525}, \"Polygon\": [{\"X\": 0.7087677717208862, \"Y\": 0.6488795280456543}, {\"X\": 0.7087677717208862, \"Y\": 0.6257078647613525}, {\"X\": 0.7244520783424377, \"Y\": 0.6257078647613525}, {\"X\": 0.7244520783424377, \"Y\": 0.6488795280456543}]}, \"Id\": \"22debb18-35ab-49df-aa50-c6d409f7f197\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"09156636-bb63-45dc-88a2-5961c6c7098f\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"6df3fa03-b547-414b-bb01-f0dec677bda1\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 69.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015885666012763977, \"Height\": 0.05004805326461792, \"Left\": 0.7086402177810669, \"Top\": 0.5751232504844666}, \"Polygon\": [{\"X\": 0.7086402177810669, \"Y\": 0.6251713037490845}, {\"X\": 0.7086402177810669, \"Y\": 0.5751232504844666}, {\"X\": 0.7245258688926697, \"Y\": 0.5751232504844666}, {\"X\": 0.7245258688926697, \"Y\": 0.6251713037490845}]}, \"Id\": \"09156636-bb63-45dc-88a2-5961c6c7098f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2523c945-5dbc-400f-8874-344ebeac43aa\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 68.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015186295844614506, \"Height\": 0.024417439475655556, \"Left\": 0.5242001414299011, \"Top\": 0.6258084177970886}, \"Polygon\": [{\"X\": 0.5242001414299011, \"Y\": 0.6502258777618408}, {\"X\": 0.5242001414299011, \"Y\": 0.6258084177970886}, {\"X\": 0.5393864512443542, \"Y\": 0.6258084177970886}, {\"X\": 0.5393864512443542, \"Y\": 0.6502258777618408}]}, \"Id\": \"2f3767a1-9f69-4c28-b536-ba09956fe75c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"184fb888-907e-4c38-99ec-1f6ca0765a99\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"35f3fca0-649e-4d7f-b260-2a2dd40d2f1d\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 68.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015773499384522438, \"Height\": 0.0468386635184288, \"Left\": 0.5232481956481934, \"Top\": 0.5759772658348083}, \"Polygon\": [{\"X\": 0.5232481956481934, \"Y\": 0.6228159070014954}, {\"X\": 0.5232481956481934, \"Y\": 0.5759772658348083}, {\"X\": 0.5390216708183289, \"Y\": 0.5759772658348083}, {\"X\": 0.5390216708183289, \"Y\": 0.6228159070014954}]}, \"Id\": \"184fb888-907e-4c38-99ec-1f6ca0765a99\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5fb972b0-3134-4f7e-bd52-5df22d8605c5\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 31.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018623799085617065, \"Height\": 0.029031656682491302, \"Left\": 0.0902639701962471, \"Top\": 0.13689054548740387}, \"Polygon\": [{\"X\": 0.0902639701962471, \"Y\": 0.16592219471931458}, {\"X\": 0.0902639701962471, \"Y\": 0.13689054548740387}, {\"X\": 0.10888776928186417, \"Y\": 0.13689054548740387}, {\"X\": 0.10888776928186417, \"Y\": 0.16592219471931458}]}, \"Id\": \"f95bff86-9c4d-46eb-b69a-37278b5c4c5f\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"25548cd6-943e-4523-b6ba-4d9b795dfa70\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 31.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016816142946481705, \"Height\": 0.04053303971886635, \"Left\": 0.09020989388227463, \"Top\": 0.09635750204324722}, \"Polygon\": [{\"X\": 0.09020989388227463, \"Y\": 0.13689054548740387}, {\"X\": 0.09020989388227463, \"Y\": 0.09635750204324722}, {\"X\": 0.10702604055404663, \"Y\": 0.09635750204324722}, {\"X\": 0.10702604055404663, \"Y\": 0.13689054548740387}]}, \"Id\": \"25548cd6-943e-4523-b6ba-4d9b795dfa70\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2168a553-df9a-47d2-a411-ccd27e3abafa\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 31.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014725063927471638, \"Height\": 0.036927491426467896, \"Left\": 0.01814907230436802, \"Top\": 0.6062731742858887}, \"Polygon\": [{\"X\": 0.01814907230436802, \"Y\": 0.643200695514679}, {\"X\": 0.01814907230436802, \"Y\": 0.6062731742858887}, {\"X\": 0.03287413716316223, \"Y\": 0.6062731742858887}, {\"X\": 0.03287413716316223, \"Y\": 0.643200695514679}]}, \"Id\": \"70bf4148-cdf8-40c3-8cad-aebe8027d19d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"06883af6-8fa3-4072-b739-815bb758144f\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"2c161783-e54a-4d57-8ca5-ea6e876b59cd\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 31.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015377789735794067, \"Height\": 0.0663682073354721, \"Left\": 0.017930645495653152, \"Top\": 0.5375844240188599}, \"Polygon\": [{\"X\": 0.017930645495653152, \"Y\": 0.6039526462554932}, {\"X\": 0.017930645495653152, \"Y\": 0.5375844240188599}, {\"X\": 0.03330843523144722, \"Y\": 0.5375844240188599}, {\"X\": 0.03330843523144722, \"Y\": 0.6039526462554932}]}, \"Id\": \"06883af6-8fa3-4072-b739-815bb758144f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"225ead35-ed7a-4b2b-a1b3-25a3ae8bcaee\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"26011f9e-a7ae-4327-bb8c-f61ba2c16751\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"26011f9e-a7ae-4327-bb8c-f61ba2c16751\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"151270\", \"date\": \"Mon, 26 Apr 2021 21:36:12 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__90_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 1.1102230246251565e-16, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.0, \"Y\": 5.402133608232327e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 1.1102230246251565e-16, \"Y\": 1.0}, {\"X\": 1.1102230246251565e-16, \"Y\": 0.0}]}, \"Id\": \"f7109a3a-20ff-4f46-9dca-a0b32eaaea29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"357047db-0464-45f0-bf5d-6b9a95a843e5\", \"b3386c78-3ba7-4b85-96f0-61f9d4477d28\", \"6094aff6-63fe-4b7d-bdc4-c4522cd11584\", \"4a11f4c3-a847-41ef-a9cd-eab147e6f354\", \"43e21b32-bcfd-401d-83c6-1be7f3f77d5b\", \"74c7c09e-a79f-48be-82a4-b18aa5ab41e5\", \"16eed8d3-8b97-4348-9a06-872b9ff76888\", \"412e9d81-7ff0-4a54-b4dd-5cf97c4a909e\", \"69f93676-ce31-4542-ae70-7c32832e28b7\", \"d1d5f3a3-c5c0-46d9-9dc9-fc518d769e37\", \"fd3dad3c-9482-47af-bf6d-c513321586e1\", \"5b800a73-ad7f-4c9b-a726-8a2a557407b6\", \"bf2f224d-f9d2-4942-b4c2-30b1fe731d1a\", \"c3180579-bbbd-4601-840b-51519b529b29\", \"b0276191-0093-414a-a891-c1d551e5499b\", \"01cddfb0-c551-4bc2-bfb7-7549875c2704\", \"8e8a247c-fecf-4cbe-a4b2-4ee70a97d3ae\", \"597101ba-fa84-4cd2-b039-7aa6bf7d2f5d\", \"3777553d-8abd-4f87-8392-12b1c2f35a78\", \"310c2094-12d6-40e1-a1f4-f3cdc727a756\", \"231d153b-d052-44ca-b18a-4a29f13d2273\", \"8920ec09-1159-48ca-b836-5da66d3a5c45\", \"0db5779c-01b4-4c4c-bfff-e27e8dea82d5\", \"eb26c0dc-f929-40a4-9dc0-90a6b94a26f4\", \"f3bb9df5-9057-4162-b545-848957179ad7\", \"b431107e-b352-42f3-812b-045a638cce85\", \"e8b1f031-e6cb-472a-a800-5e8d4ee518b5\", \"80b7de36-3b7c-48bb-9d30-5bc39dc5bba4\", \"c4feb432-cf2d-4a08-94da-6b408bd71f2b\", \"933631c3-9d3d-407f-a953-c49204afd798\", \"450a9757-79a4-4940-b269-ead75b2c9b80\", \"c69f4328-2351-4dcd-b54c-199b5996243b\", \"652820ac-78b7-41c0-8ea0-6c8db9694ab2\", \"c80359fe-06f6-4efa-b902-a190542f3c12\", \"59c6af38-568e-4864-9deb-662c65137ca6\", \"fea2647a-48f5-4dec-b137-af6348ed3b5c\", \"2cd7b9d6-a21c-477b-9ab4-f93768da5e3d\", \"9148c7f6-f957-45ec-be7d-794d0b88c088\", \"54dcf9c4-e38f-4507-9144-0bd6d2df0f70\", \"7abb8047-9400-440a-9e09-f70a577da97f\", \"c2d177b9-cb6f-4881-92d8-2d3e359a5d75\", \"00e9a557-8b9b-4d8f-86db-0211f4956131\", \"4fd29027-8334-4a85-a751-024b728b7a8e\", \"8e61ee7f-ab5a-4d3a-899d-18b2cdd65d18\", \"283b8339-61e6-4f9c-854c-e5bd343b1089\", \"f255197c-fd44-4326-ba7a-5d79040d5fd1\", \"124e3449-31ce-4738-a2a2-30b9c0154556\", \"3c497af1-8d3a-486d-bb06-1a7a46b6bc45\", \"a06f5dce-2956-4e94-b76a-1fe33b7871c5\", \"da2bad0d-1799-45ec-901e-67f0af47c98a\", \"6482aebc-0678-4a0d-8694-06e084250eed\", \"0fe3ee32-de91-4cd3-b28d-93d65feff89f\", \"ee78bf1e-baa5-4e7b-bbf7-6d91188a8277\", \"8062990f-170f-4aac-84dc-c52ff0045f64\", \"909932b0-612e-4be5-81a6-f46a85f00981\", \"1160d9fd-9067-4127-b290-69e9acd2036e\", \"6d3d4bbc-c211-428b-99f4-4d572e8f1738\", \"31258358-1797-4485-bd74-4091ab739c5f\", \"001e300d-21cf-411b-8e96-4a075eac0bdf\", \"1170d941-951f-4347-9494-a33dd6c7b00e\", \"5d35fa66-bcd3-4225-a1fe-4cfb01255201\", \"df6c0949-c2f5-4c7c-a51b-6f27787d3ca9\", \"ea5f9750-0727-488c-ba75-26f7745adfc0\", \"e770462e-380b-4222-a6cb-8cbe0b7c791e\", \"5c5289e2-483c-44bc-b0e6-63185d586aaa\", \"de6703e3-bef5-40cc-a8a9-a317de476a7c\", \"3ba8eec4-ab76-43ad-b20e-a5083f6c69c6\", \"1c605499-fe8c-43e1-b328-c488ca8b8db8\", \"362939fc-e53b-40f2-be9d-e3a7020d8a2e\", \"0bfaaa8c-f7e4-444b-a815-681117b9bdd6\", \"9d91afd6-156d-442a-af79-ca7f106655d7\", \"77d4c2d1-0eff-4fdd-a32f-01fbd187fa5d\", \"d51d4e20-8b45-426b-a66b-bb067d2ccf08\", \"07c062fe-a6bf-4195-804b-a488c05b66ae\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 19.58361053466797, \"Text\": \"valuct\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005861029960215092, \"Height\": 0.03814750909805298, \"Left\": 0.9941141605377197, \"Top\": 0.5691372752189636}, \"Polygon\": [{\"X\": 0.9999751448631287, \"Y\": 0.5691372752189636}, {\"X\": 0.9999751448631287, \"Y\": 0.6072847843170166}, {\"X\": 0.9941141605377197, \"Y\": 0.6072847843170166}, {\"X\": 0.9941141605377197, \"Y\": 0.5691372752189636}]}, \"Id\": \"357047db-0464-45f0-bf5d-6b9a95a843e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d5912304-68bb-4616-9cdf-23add0576588\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58141326904297, \"Text\": \"Key2: value2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01885797269642353, \"Height\": 0.07187873125076294, \"Left\": 0.9573125243186951, \"Top\": 0.5352821946144104}, \"Polygon\": [{\"X\": 0.9761704802513123, \"Y\": 0.5352821946144104}, {\"X\": 0.9761704802513123, \"Y\": 0.6071609258651733}, {\"X\": 0.9573125243186951, \"Y\": 0.6071609258651733}, {\"X\": 0.9573125243186951, \"Y\": 0.5352821946144104}]}, \"Id\": \"b3386c78-3ba7-4b85-96f0-61f9d4477d28\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fbb7e26c-5f46-4e72-8343-559f14cbf7ce\", \"bf64dd37-c49b-439a-a0e5-5dffacb66cff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56855010986328, \"Text\": \"Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015082962810993195, \"Height\": 0.06365762650966644, \"Left\": 0.8961279392242432, \"Top\": 0.07725496590137482}, \"Polygon\": [{\"X\": 0.9112108945846558, \"Y\": 0.07725496590137482}, {\"X\": 0.9112108945846558, \"Y\": 0.14091259241104126}, {\"X\": 0.8961279392242432, \"Y\": 0.14091259241104126}, {\"X\": 0.8961279392242432, \"Y\": 0.07725496590137482}]}, \"Id\": \"6094aff6-63fe-4b7d-bdc4-c4522cd11584\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a6fa6dc5-e835-418f-8416-fc39eb9948e0\", \"b5fec60e-1209-49e2-9e24-744ed198b0bf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58778381347656, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01509491354227066, \"Height\": 0.0638679638504982, \"Left\": 0.896179735660553, \"Top\": 0.15450343489646912}, \"Polygon\": [{\"X\": 0.9112746715545654, \"Y\": 0.15450343489646912}, {\"X\": 0.9112746715545654, \"Y\": 0.21837139129638672}, {\"X\": 0.896179735660553, \"Y\": 0.21837139129638672}, {\"X\": 0.896179735660553, \"Y\": 0.15450343489646912}]}, \"Id\": \"4a11f4c3-a847-41ef-a9cd-eab147e6f354\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7c599d5c-dfe9-4bd0-b3e7-70e1bef1a260\", \"5513e567-0736-4ea1-8eeb-14bdc53833ed\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3993148803711, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014820130541920662, \"Height\": 0.06359446793794632, \"Left\": 0.8962222933769226, \"Top\": 0.23244085907936096}, \"Polygon\": [{\"X\": 0.9110424518585205, \"Y\": 0.23244085907936096}, {\"X\": 0.9110424518585205, \"Y\": 0.2960353195667267}, {\"X\": 0.8962222933769226, \"Y\": 0.2960353195667267}, {\"X\": 0.8962222933769226, \"Y\": 0.23244085907936096}]}, \"Id\": \"43e21b32-bcfd-401d-83c6-1be7f3f77d5b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"29aba04d-7fad-486e-b337-319c58ebc371\", \"43d93c57-1a67-4958-b0b5-97d54954f3ec\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44632720947266, \"Text\": \"Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015131056308746338, \"Height\": 0.06380834430456161, \"Left\": 0.8711917400360107, \"Top\": 0.07698758691549301}, \"Polygon\": [{\"X\": 0.8863227963447571, \"Y\": 0.07698758691549301}, {\"X\": 0.8863227963447571, \"Y\": 0.14079593122005463}, {\"X\": 0.8711917400360107, \"Y\": 0.14079593122005463}, {\"X\": 0.8711917400360107, \"Y\": 0.07698758691549301}]}, \"Id\": \"74c7c09e-a79f-48be-82a4-b18aa5ab41e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c94bae09-28ff-4861-a028-b07667e034c1\", \"790f6cfa-5f0a-488b-8435-730832b49233\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60428619384766, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014880664646625519, \"Height\": 0.06393414735794067, \"Left\": 0.871319591999054, \"Top\": 0.15448442101478577}, \"Polygon\": [{\"X\": 0.8862002491950989, \"Y\": 0.15448442101478577}, {\"X\": 0.8862002491950989, \"Y\": 0.21841856837272644}, {\"X\": 0.871319591999054, \"Y\": 0.21841856837272644}, {\"X\": 0.871319591999054, \"Y\": 0.15448442101478577}]}, \"Id\": \"16eed8d3-8b97-4348-9a06-872b9ff76888\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"557e854a-d559-43f8-9ddf-99755299356f\", \"c6a26026-e16b-448e-8ca8-a736d1af0481\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44535064697266, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014912232756614685, \"Height\": 0.06357546895742416, \"Left\": 0.8712993264198303, \"Top\": 0.23210912942886353}, \"Polygon\": [{\"X\": 0.8862115144729614, \"Y\": 0.23210912942886353}, {\"X\": 0.8862115144729614, \"Y\": 0.2956846058368683}, {\"X\": 0.8712993264198303, \"Y\": 0.2956846058368683}, {\"X\": 0.8712993264198303, \"Y\": 0.23210912942886353}]}, \"Id\": \"412e9d81-7ff0-4a54-b4dd-5cf97c4a909e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af59abbb-bacb-47bb-abae-88e9d10e39d7\", \"88727e10-7afb-4d4c-b1f2-a2385de4bd4d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56463623046875, \"Text\": \"Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01467566192150116, \"Height\": 0.06352657079696655, \"Left\": 0.8463868498802185, \"Top\": 0.07727615535259247}, \"Polygon\": [{\"X\": 0.8610625267028809, \"Y\": 0.07727615535259247}, {\"X\": 0.8610625267028809, \"Y\": 0.14080272614955902}, {\"X\": 0.8463868498802185, \"Y\": 0.14080272614955902}, {\"X\": 0.8463868498802185, \"Y\": 0.07727615535259247}]}, \"Id\": \"69f93676-ce31-4542-ae70-7c32832e28b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"51d247d7-fbe5-479e-93e4-cbd58b7cab30\", \"6ded05c2-dc02-4dab-9bd7-470d071d3dfe\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55473327636719, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014538362622261047, \"Height\": 0.06390649080276489, \"Left\": 0.8464832901954651, \"Top\": 0.1544537991285324}, \"Polygon\": [{\"X\": 0.8610216975212097, \"Y\": 0.1544537991285324}, {\"X\": 0.8610216975212097, \"Y\": 0.2183602899312973}, {\"X\": 0.8464832901954651, \"Y\": 0.2183602899312973}, {\"X\": 0.8464832901954651, \"Y\": 0.1544537991285324}]}, \"Id\": \"d1d5f3a3-c5c0-46d9-9dc9-fc518d769e37\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9264cf5-64c7-4ecd-80eb-e59ca7003ba7\", \"8ea77678-32a4-4719-a9df-dff045468ff9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6373062133789, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014631465077400208, \"Height\": 0.06345559656620026, \"Left\": 0.8464108109474182, \"Top\": 0.23234285414218903}, \"Polygon\": [{\"X\": 0.8610422611236572, \"Y\": 0.23234285414218903}, {\"X\": 0.8610422611236572, \"Y\": 0.2957984507083893}, {\"X\": 0.8464108109474182, \"Y\": 0.2957984507083893}, {\"X\": 0.8464108109474182, \"Y\": 0.23234285414218903}]}, \"Id\": \"fd3dad3c-9482-47af-bf6d-c513321586e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cab76cc9-a04a-488d-98d5-b3397ba9c724\", \"6e42cb56-997c-465d-9c42-398d198bf59e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49862670898438, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01696315035223961, \"Height\": 0.07436192035675049, \"Left\": 0.7834766507148743, \"Top\": 0.24625389277935028}, \"Polygon\": [{\"X\": 0.8004398345947266, \"Y\": 0.24625389277935028}, {\"X\": 0.8004398345947266, \"Y\": 0.32061582803726196}, {\"X\": 0.7834766507148743, \"Y\": 0.32061582803726196}, {\"X\": 0.7834766507148743, \"Y\": 0.24625389277935028}]}, \"Id\": \"5b800a73-ad7f-4c9b-a726-8a2a557407b6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f27a4ab-90eb-4549-825e-f958f62594b1\", \"fdafc01d-1b86-4aff-9292-17f9bc4bd1a9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39762115478516, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01713320054113865, \"Height\": 0.07444415241479874, \"Left\": 0.7833619713783264, \"Top\": 0.3343680202960968}, \"Polygon\": [{\"X\": 0.8004952073097229, \"Y\": 0.3343680202960968}, {\"X\": 0.8004952073097229, \"Y\": 0.40881216526031494}, {\"X\": 0.7833619713783264, \"Y\": 0.40881216526031494}, {\"X\": 0.7833619713783264, \"Y\": 0.3343680202960968}]}, \"Id\": \"bf2f224d-f9d2-4942-b4c2-30b1fe731d1a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b5e3dfa9-6aa3-47c3-b8e7-94cd40f9c787\", \"303cec6f-de5b-421b-8e80-4202b086c0ef\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55674743652344, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01735752820968628, \"Height\": 0.07432132214307785, \"Left\": 0.7833167910575867, \"Top\": 0.42185094952583313}, \"Polygon\": [{\"X\": 0.800674319267273, \"Y\": 0.42185094952583313}, {\"X\": 0.800674319267273, \"Y\": 0.4961722791194916}, {\"X\": 0.7833167910575867, \"Y\": 0.4961722791194916}, {\"X\": 0.7833167910575867, \"Y\": 0.42185094952583313}]}, \"Id\": \"c3180579-bbbd-4601-840b-51519b529b29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"30f35be8-bf0f-4e38-8e46-c8c4b8fd58fd\", \"140a9fff-8cd7-4bef-b0d7-f612f56a4488\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6497573852539, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017359446734189987, \"Height\": 0.0750524252653122, \"Left\": 0.7832356691360474, \"Top\": 0.5092297792434692}, \"Polygon\": [{\"X\": 0.8005951046943665, \"Y\": 0.5092297792434692}, {\"X\": 0.8005951046943665, \"Y\": 0.5842822194099426}, {\"X\": 0.7832356691360474, \"Y\": 0.5842822194099426}, {\"X\": 0.7832356691360474, \"Y\": 0.5092297792434692}]}, \"Id\": \"b0276191-0093-414a-a891-c1d551e5499b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"421a9089-0140-4727-a2b0-bc0c3c6e090d\", \"5ad2b874-eac6-4e85-9a94-332ac6451b4b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34770202636719, \"Text\": \"Value 2.1.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017407014966011047, \"Height\": 0.07465867698192596, \"Left\": 0.783248782157898, \"Top\": 0.5969657301902771}, \"Polygon\": [{\"X\": 0.8006557822227478, \"Y\": 0.5969657301902771}, {\"X\": 0.8006557822227478, \"Y\": 0.6716244220733643}, {\"X\": 0.783248782157898, \"Y\": 0.6716244220733643}, {\"X\": 0.783248782157898, \"Y\": 0.5969657301902771}]}, \"Id\": \"01cddfb0-c551-4bc2-bfb7-7549875c2704\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9b3d0baf-51a8-491a-80c7-695931b3fab1\", \"5753df70-8847-4dda-bda6-4327fd0654d0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4176254272461, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017562657594680786, \"Height\": 0.07353786379098892, \"Left\": 0.7535170912742615, \"Top\": 0.2463705688714981}, \"Polygon\": [{\"X\": 0.7710797786712646, \"Y\": 0.2463705688714981}, {\"X\": 0.7710797786712646, \"Y\": 0.3199084401130676}, {\"X\": 0.7535170912742615, \"Y\": 0.3199084401130676}, {\"X\": 0.7535170912742615, \"Y\": 0.2463705688714981}]}, \"Id\": \"8e8a247c-fecf-4cbe-a4b2-4ee70a97d3ae\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"44d96b4e-6d56-4ac5-8702-6f69a4587bfd\", \"4dbbee5f-1a38-4f7b-b980-b56e38d59747\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67940521240234, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017315581440925598, \"Height\": 0.07423237711191177, \"Left\": 0.7545579075813293, \"Top\": 0.33416199684143066}, \"Polygon\": [{\"X\": 0.7718734741210938, \"Y\": 0.33416199684143066}, {\"X\": 0.7718734741210938, \"Y\": 0.40839436650276184}, {\"X\": 0.7545579075813293, \"Y\": 0.40839436650276184}, {\"X\": 0.7545579075813293, \"Y\": 0.33416199684143066}]}, \"Id\": \"597101ba-fa84-4cd2-b039-7aa6bf7d2f5d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4dc26a45-c6ce-44fc-a9b6-5ef75af0db65\", \"40e92bb6-217f-4d7a-aab5-78102c9b7db1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57205963134766, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017344191670417786, \"Height\": 0.0741371437907219, \"Left\": 0.7544159889221191, \"Top\": 0.4219626188278198}, \"Polygon\": [{\"X\": 0.7717602252960205, \"Y\": 0.4219626188278198}, {\"X\": 0.7717602252960205, \"Y\": 0.4960997700691223}, {\"X\": 0.7544159889221191, \"Y\": 0.4960997700691223}, {\"X\": 0.7544159889221191, \"Y\": 0.4219626188278198}]}, \"Id\": \"3777553d-8abd-4f87-8392-12b1c2f35a78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"07e947fc-4b4c-4cea-850b-547c8165afd9\", \"2218e13b-4336-4b2b-a115-5e5b4d285139\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61622619628906, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017345942556858063, \"Height\": 0.07516080886125565, \"Left\": 0.7543901801109314, \"Top\": 0.5089490413665771}, \"Polygon\": [{\"X\": 0.7717361450195312, \"Y\": 0.5089490413665771}, {\"X\": 0.7717361450195312, \"Y\": 0.5841098427772522}, {\"X\": 0.7543901801109314, \"Y\": 0.5841098427772522}, {\"X\": 0.7543901801109314, \"Y\": 0.5089490413665771}]}, \"Id\": \"310c2094-12d6-40e1-a1f4-f3cdc727a756\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f726798d-b15f-47d5-bbe3-72fae2c2b64c\", \"bdf972c4-5005-4592-8926-532f2fbb22f3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53267669677734, \"Text\": \"Value 2.2.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01747240498661995, \"Height\": 0.07432260364294052, \"Left\": 0.7542998194694519, \"Top\": 0.5968148708343506}, \"Polygon\": [{\"X\": 0.7717722654342651, \"Y\": 0.5968148708343506}, {\"X\": 0.7717722654342651, \"Y\": 0.6711375117301941}, {\"X\": 0.7542998194694519, \"Y\": 0.6711375117301941}, {\"X\": 0.7542998194694519, \"Y\": 0.5968148708343506}]}, \"Id\": \"231d153b-d052-44ca-b18a-4a29f13d2273\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b57d8b61-5b73-4dce-9d36-bc384d571300\", \"b961d31f-6a9a-422b-b4d3-de6fe243dec0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4487075805664, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01693934202194214, \"Height\": 0.07430581003427505, \"Left\": 0.7253453135490417, \"Top\": 0.24625344574451447}, \"Polygon\": [{\"X\": 0.7422846555709839, \"Y\": 0.24625344574451447}, {\"X\": 0.7422846555709839, \"Y\": 0.3205592632293701}, {\"X\": 0.7253453135490417, \"Y\": 0.3205592632293701}, {\"X\": 0.7253453135490417, \"Y\": 0.24625344574451447}]}, \"Id\": \"8920ec09-1159-48ca-b836-5da66d3a5c45\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c1f7f39-4b60-4d61-bddc-369ec36ea3b2\", \"17e35e8a-c922-4d34-94c9-929b3c009d1a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6218490600586, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016964197158813477, \"Height\": 0.07415010780096054, \"Left\": 0.7253413200378418, \"Top\": 0.3342178761959076}, \"Polygon\": [{\"X\": 0.7423055171966553, \"Y\": 0.3342178761959076}, {\"X\": 0.7423055171966553, \"Y\": 0.40836799144744873}, {\"X\": 0.7253413200378418, \"Y\": 0.40836799144744873}, {\"X\": 0.7253413200378418, \"Y\": 0.3342178761959076}]}, \"Id\": \"0db5779c-01b4-4c4c-bfff-e27e8dea82d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cf1667e5-a3c0-4454-9a7b-83443de44a5d\", \"3f2bcfed-e0c5-4ab0-ae49-ecd2811fdc21\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.710205078125, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01711571216583252, \"Height\": 0.07424233108758926, \"Left\": 0.7253190875053406, \"Top\": 0.42185160517692566}, \"Polygon\": [{\"X\": 0.7424347996711731, \"Y\": 0.42185160517692566}, {\"X\": 0.7424347996711731, \"Y\": 0.4960939288139343}, {\"X\": 0.7253190875053406, \"Y\": 0.4960939288139343}, {\"X\": 0.7253190875053406, \"Y\": 0.42185160517692566}]}, \"Id\": \"eb26c0dc-f929-40a4-9dc0-90a6b94a26f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"98837175-2c1d-4f9e-b8af-81988ce37ce0\", \"4a1b15e2-bf4b-445f-bc1a-29b5e92fce44\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68551635742188, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01716884970664978, \"Height\": 0.07441111654043198, \"Left\": 0.7253062129020691, \"Top\": 0.5094883441925049}, \"Polygon\": [{\"X\": 0.7424750328063965, \"Y\": 0.5094883441925049}, {\"X\": 0.7424750328063965, \"Y\": 0.5838994383811951}, {\"X\": 0.7253062129020691, \"Y\": 0.5838994383811951}, {\"X\": 0.7253062129020691, \"Y\": 0.5094883441925049}]}, \"Id\": \"f3bb9df5-9057-4162-b545-848957179ad7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cc6056e-f4e1-4d9e-8eb2-647f55399e01\", \"efd49c6a-62b1-4045-a5f0-6e2aa874ddd1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56956481933594, \"Text\": \"Value 2.3.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01693064719438553, \"Height\": 0.07409906387329102, \"Left\": 0.725288987159729, \"Top\": 0.5970727801322937}, \"Polygon\": [{\"X\": 0.7422196269035339, \"Y\": 0.5970727801322937}, {\"X\": 0.7422196269035339, \"Y\": 0.6711718440055847}, {\"X\": 0.725288987159729, \"Y\": 0.6711718440055847}, {\"X\": 0.725288987159729, \"Y\": 0.5970727801322937}]}, \"Id\": \"b431107e-b352-42f3-812b-045a638cce85\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"105682c6-8f1a-43af-b055-f030d62dc8cd\", \"eb0f65ab-d793-49ec-8e40-b29558eb5875\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6930923461914, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016961604356765747, \"Height\": 0.07439155876636505, \"Left\": 0.6963772177696228, \"Top\": 0.24618764221668243}, \"Polygon\": [{\"X\": 0.7133387923240662, \"Y\": 0.24618764221668243}, {\"X\": 0.7133387923240662, \"Y\": 0.3205792009830475}, {\"X\": 0.6963772177696228, \"Y\": 0.3205792009830475}, {\"X\": 0.6963772177696228, \"Y\": 0.24618764221668243}]}, \"Id\": \"e8b1f031-e6cb-472a-a800-5e8d4ee518b5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5de9f85a-3329-4b02-af2e-8b124dd6b2ab\", \"e1289caa-c98b-4790-aa16-7548cdcff284\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37200927734375, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01700153946876526, \"Height\": 0.07452982664108276, \"Left\": 0.696325957775116, \"Top\": 0.33398279547691345}, \"Polygon\": [{\"X\": 0.7133275270462036, \"Y\": 0.33398279547691345}, {\"X\": 0.7133275270462036, \"Y\": 0.4085126221179962}, {\"X\": 0.696325957775116, \"Y\": 0.4085126221179962}, {\"X\": 0.696325957775116, \"Y\": 0.33398279547691345}]}, \"Id\": \"80b7de36-3b7c-48bb-9d30-5bc39dc5bba4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8d730340-30bd-473c-a770-62a67e97cd5a\", \"7c317b52-d702-4ade-8297-a9bee20c06e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63536834716797, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017088860273361206, \"Height\": 0.07419165968894958, \"Left\": 0.6963545680046082, \"Top\": 0.4218222200870514}, \"Polygon\": [{\"X\": 0.713443398475647, \"Y\": 0.4218222200870514}, {\"X\": 0.713443398475647, \"Y\": 0.496013879776001}, {\"X\": 0.6963545680046082, \"Y\": 0.496013879776001}, {\"X\": 0.6963545680046082, \"Y\": 0.4218222200870514}]}, \"Id\": \"c4feb432-cf2d-4a08-94da-6b408bd71f2b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6f4e51b7-a0f2-437d-b655-f38cf7f9886d\", \"a79eeb6b-286f-4fa3-8117-c3ea99b6d476\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6385269165039, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016924411058425903, \"Height\": 0.07503585517406464, \"Left\": 0.6962869167327881, \"Top\": 0.5092139840126038}, \"Polygon\": [{\"X\": 0.7132112979888916, \"Y\": 0.5092139840126038}, {\"X\": 0.7132112979888916, \"Y\": 0.5842498540878296}, {\"X\": 0.6962869167327881, \"Y\": 0.5842498540878296}, {\"X\": 0.6962869167327881, \"Y\": 0.5092139840126038}]}, \"Id\": \"933631c3-9d3d-407f-a953-c49204afd798\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0fe1320-123d-40ea-93b6-5cf58aa436fd\", \"545c128a-e8f6-49ba-9162-79848f8fc3a8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5091552734375, \"Text\": \"Value 2.4.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0167161226272583, \"Height\": 0.07387307286262512, \"Left\": 0.6964025497436523, \"Top\": 0.5972334742546082}, \"Polygon\": [{\"X\": 0.7131186723709106, \"Y\": 0.5972334742546082}, {\"X\": 0.7131186723709106, \"Y\": 0.6711065769195557}, {\"X\": 0.6964025497436523, \"Y\": 0.6711065769195557}, {\"X\": 0.6964025497436523, \"Y\": 0.5972334742546082}]}, \"Id\": \"450a9757-79a4-4940-b269-ead75b2c9b80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"809be9a4-d2e7-408c-bde2-f2869371f45d\", \"586f6c3b-f6b8-4e06-8f13-f90a1347941a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6697998046875, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01703667640686035, \"Height\": 0.07421523332595825, \"Left\": 0.6672606468200684, \"Top\": 0.24633494019508362}, \"Polygon\": [{\"X\": 0.6842973232269287, \"Y\": 0.24633494019508362}, {\"X\": 0.6842973232269287, \"Y\": 0.32055017352104187}, {\"X\": 0.6672606468200684, \"Y\": 0.32055017352104187}, {\"X\": 0.6672606468200684, \"Y\": 0.24633494019508362}]}, \"Id\": \"c69f4328-2351-4dcd-b54c-199b5996243b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7d6f5acd-93b3-4706-8926-898f284f845a\", \"b6a5456f-a31f-4d35-8795-fc6809847b12\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34950256347656, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01695483922958374, \"Height\": 0.07446054369211197, \"Left\": 0.667286217212677, \"Top\": 0.33408698439598083}, \"Polygon\": [{\"X\": 0.6842410564422607, \"Y\": 0.33408698439598083}, {\"X\": 0.6842410564422607, \"Y\": 0.4085475206375122}, {\"X\": 0.667286217212677, \"Y\": 0.4085475206375122}, {\"X\": 0.667286217212677, \"Y\": 0.33408698439598083}]}, \"Id\": \"652820ac-78b7-41c0-8ea0-6c8db9694ab2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"75743845-fa24-4f3c-9caa-a54ba9591777\", \"fef4d9d9-6db2-4905-80cf-cf0d16c87fe6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67516326904297, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01702028512954712, \"Height\": 0.07429015636444092, \"Left\": 0.6673294901847839, \"Top\": 0.42175668478012085}, \"Polygon\": [{\"X\": 0.684349775314331, \"Y\": 0.42175668478012085}, {\"X\": 0.684349775314331, \"Y\": 0.49604684114456177}, {\"X\": 0.6673294901847839, \"Y\": 0.49604684114456177}, {\"X\": 0.6673294901847839, \"Y\": 0.42175668478012085}]}, \"Id\": \"c80359fe-06f6-4efa-b902-a190542f3c12\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79b41568-8415-4c93-84b9-588af9f25708\", \"e6f235c0-54d8-4686-a918-e4a0ee65db71\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6825942993164, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017200859263539314, \"Height\": 0.07527261972427368, \"Left\": 0.6672722101211548, \"Top\": 0.5091187357902527}, \"Polygon\": [{\"X\": 0.6844730377197266, \"Y\": 0.5091187357902527}, {\"X\": 0.6844730377197266, \"Y\": 0.5843913555145264}, {\"X\": 0.6672722101211548, \"Y\": 0.5843913555145264}, {\"X\": 0.6672722101211548, \"Y\": 0.5091187357902527}]}, \"Id\": \"59c6af38-568e-4864-9deb-662c65137ca6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2142a23b-cf64-415a-ba4d-e2edde6e62f9\", \"0e67ff6b-dd91-4fd1-860a-3c6f32ef32ca\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62287139892578, \"Text\": \"Value 2.5.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016891872510313988, \"Height\": 0.07375258207321167, \"Left\": 0.6672257781028748, \"Top\": 0.5975778698921204}, \"Polygon\": [{\"X\": 0.6841176748275757, \"Y\": 0.5975778698921204}, {\"X\": 0.6841176748275757, \"Y\": 0.671330451965332}, {\"X\": 0.6672257781028748, \"Y\": 0.671330451965332}, {\"X\": 0.6672257781028748, \"Y\": 0.5975778698921204}]}, \"Id\": \"fea2647a-48f5-4dec-b137-af6348ed3b5c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec10e429-6c6b-4a02-9a86-6223294caf2c\", \"c2b98699-e2be-4079-ad5d-c172659b96bf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88352966308594, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01533479057252407, \"Height\": 0.0953187420964241, \"Left\": 0.5646151304244995, \"Top\": 0.0558566078543663}, \"Polygon\": [{\"X\": 0.5799499154090881, \"Y\": 0.0558566078543663}, {\"X\": 0.5799499154090881, \"Y\": 0.1511753499507904}, {\"X\": 0.5646151304244995, \"Y\": 0.1511753499507904}, {\"X\": 0.5646151304244995, \"Y\": 0.0558566078543663}]}, \"Id\": \"2cd7b9d6-a21c-477b-9ab4-f93768da5e3d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4dbbc624-14d1-4e99-8fb1-a580e995ee27\", \"1bfff2b8-de2b-4f30-99d7-788f7f29feb8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51882934570312, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01468939334154129, \"Height\": 0.06369289755821228, \"Left\": 0.5382377505302429, \"Top\": 0.35343194007873535}, \"Polygon\": [{\"X\": 0.5529271960258484, \"Y\": 0.35343194007873535}, {\"X\": 0.5529271960258484, \"Y\": 0.41712483763694763}, {\"X\": 0.5382377505302429, \"Y\": 0.41712483763694763}, {\"X\": 0.5382377505302429, \"Y\": 0.35343194007873535}]}, \"Id\": \"9148c7f6-f957-45ec-be7d-794d0b88c088\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"813b7353-af3a-4033-a48b-60396912a374\", \"498e3591-8e37-47cd-adaa-b1eb2d7e6bda\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.40426635742188, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01464948058128357, \"Height\": 0.06402415037155151, \"Left\": 0.5382887125015259, \"Top\": 0.4551326632499695}, \"Polygon\": [{\"X\": 0.5529382228851318, \"Y\": 0.4551326632499695}, {\"X\": 0.5529382228851318, \"Y\": 0.519156813621521}, {\"X\": 0.5382887125015259, \"Y\": 0.519156813621521}, {\"X\": 0.5382887125015259, \"Y\": 0.4551326632499695}]}, \"Id\": \"54dcf9c4-e38f-4507-9144-0bd6d2df0f70\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1c811de-d6ac-40fe-9f52-336c4a75566c\", \"713e4242-ff40-4197-a3c7-8ed583b0f718\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.27932739257812, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014791871421039104, \"Height\": 0.06386370956897736, \"Left\": 0.5382109880447388, \"Top\": 0.5569254159927368}, \"Polygon\": [{\"X\": 0.5530028343200684, \"Y\": 0.5569254159927368}, {\"X\": 0.5530028343200684, \"Y\": 0.620789110660553}, {\"X\": 0.5382109880447388, \"Y\": 0.620789110660553}, {\"X\": 0.5382109880447388, \"Y\": 0.5569254159927368}]}, \"Id\": \"7abb8047-9400-440a-9e09-f70a577da97f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2edcfa6d-54d5-413e-b8f6-e25c0bcabdea\", \"947ab6bd-4084-4a2a-84ad-823cef128eb2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69259643554688, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01566416025161743, \"Height\": 0.07399378716945648, \"Left\": 0.5272007584571838, \"Top\": 0.053078752011060715}, \"Polygon\": [{\"X\": 0.5428649187088013, \"Y\": 0.053078752011060715}, {\"X\": 0.5428649187088013, \"Y\": 0.1270725429058075}, {\"X\": 0.5272007584571838, \"Y\": 0.1270725429058075}, {\"X\": 0.5272007584571838, \"Y\": 0.053078752011060715}]}, \"Id\": \"c2d177b9-cb6f-4881-92d8-2d3e359a5d75\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"171e28f1-34c0-4868-aad1-6cc423a47e61\", \"ed26bfc7-2747-4a41-ae76-d3a08fdcf084\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45634460449219, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014896124601364136, \"Height\": 0.06324230134487152, \"Left\": 0.5131889581680298, \"Top\": 0.35363298654556274}, \"Polygon\": [{\"X\": 0.5280851125717163, \"Y\": 0.35363298654556274}, {\"X\": 0.5280851125717163, \"Y\": 0.41687530279159546}, {\"X\": 0.5131889581680298, \"Y\": 0.41687530279159546}, {\"X\": 0.5131889581680298, \"Y\": 0.35363298654556274}]}, \"Id\": \"00e9a557-8b9b-4d8f-86db-0211f4956131\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c7dd0c61-0cd7-4b80-9c6d-4bdddc72a648\", \"b6a55aea-95d0-426d-8495-fb516ef2a311\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44557189941406, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01502719521522522, \"Height\": 0.06382337957620621, \"Left\": 0.5131499767303467, \"Top\": 0.4551866352558136}, \"Polygon\": [{\"X\": 0.5281771421432495, \"Y\": 0.4551866352558136}, {\"X\": 0.5281771421432495, \"Y\": 0.5190100073814392}, {\"X\": 0.5131499767303467, \"Y\": 0.5190100073814392}, {\"X\": 0.5131499767303467, \"Y\": 0.4551866352558136}]}, \"Id\": \"4fd29027-8334-4a85-a751-024b728b7a8e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"574cb476-3330-4daf-9d95-9a12c7d3a27c\", \"9d635bcb-f693-4623-9e4a-f6144c90a78a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.20404815673828, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01511603593826294, \"Height\": 0.06381204724311829, \"Left\": 0.5131240487098694, \"Top\": 0.5571063756942749}, \"Polygon\": [{\"X\": 0.5282400846481323, \"Y\": 0.5571063756942749}, {\"X\": 0.5282400846481323, \"Y\": 0.6209184527397156}, {\"X\": 0.5131240487098694, \"Y\": 0.6209184527397156}, {\"X\": 0.5131240487098694, \"Y\": 0.5571063756942749}]}, \"Id\": \"8e61ee7f-ab5a-4d3a-899d-18b2cdd65d18\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82ab1ee7-481d-4c33-b62f-c8123a836785\", \"43b7fe4a-c711-4cc0-b608-f8aafa30e257\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46869659423828, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014748573303222656, \"Height\": 0.06350156664848328, \"Left\": 0.4882774353027344, \"Top\": 0.35343122482299805}, \"Polygon\": [{\"X\": 0.503026008605957, \"Y\": 0.35343122482299805}, {\"X\": 0.503026008605957, \"Y\": 0.4169327914714813}, {\"X\": 0.4882774353027344, \"Y\": 0.4169327914714813}, {\"X\": 0.4882774353027344, \"Y\": 0.35343122482299805}]}, \"Id\": \"283b8339-61e6-4f9c-854c-e5bd343b1089\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92f980c2-5778-49c8-b932-d0941f988d0d\", \"fde1c651-6cb7-4225-95fd-4b9ad0488e8e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.19293212890625, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015020936727523804, \"Height\": 0.06370290368795395, \"Left\": 0.48820602893829346, \"Top\": 0.4553452134132385}, \"Polygon\": [{\"X\": 0.5032269954681396, \"Y\": 0.4553452134132385}, {\"X\": 0.5032269954681396, \"Y\": 0.5190480947494507}, {\"X\": 0.48820602893829346, \"Y\": 0.5190480947494507}, {\"X\": 0.48820602893829346, \"Y\": 0.4553452134132385}]}, \"Id\": \"f255197c-fd44-4326-ba7a-5d79040d5fd1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9069d199-b4cf-470d-8d9a-7a3bbface491\", \"b12976f5-5bce-4b33-9b05-81e3a9f2ae7e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.12149047851562, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015165627002716064, \"Height\": 0.06352859735488892, \"Left\": 0.48814553022384644, \"Top\": 0.5570311546325684}, \"Polygon\": [{\"X\": 0.5033111572265625, \"Y\": 0.5570311546325684}, {\"X\": 0.5033111572265625, \"Y\": 0.6205597519874573}, {\"X\": 0.48814553022384644, \"Y\": 0.6205597519874573}, {\"X\": 0.48814553022384644, \"Y\": 0.5570311546325684}]}, \"Id\": \"124e3449-31ce-4738-a2a2-30b9c0154556\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e1fa7028-915a-4e49-a4f2-f09ce071d805\", \"f31d09b9-27c8-4e11-93fd-dce705a45cca\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60912322998047, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014668881893157959, \"Height\": 0.06348065286874771, \"Left\": 0.4634186625480652, \"Top\": 0.35362622141838074}, \"Polygon\": [{\"X\": 0.47808754444122314, \"Y\": 0.35362622141838074}, {\"X\": 0.47808754444122314, \"Y\": 0.41710686683654785}, {\"X\": 0.4634186625480652, \"Y\": 0.41710686683654785}, {\"X\": 0.4634186625480652, \"Y\": 0.35362622141838074}]}, \"Id\": \"3c497af1-8d3a-486d-bb06-1a7a46b6bc45\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"676c8269-9305-4fe3-8da5-4983ebe54138\", \"094cbf75-901d-407f-a167-df1846bd556e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.8654556274414, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014966368675231934, \"Height\": 0.06381488591432571, \"Left\": 0.46327123045921326, \"Top\": 0.45514822006225586}, \"Polygon\": [{\"X\": 0.4782375991344452, \"Y\": 0.45514822006225586}, {\"X\": 0.4782375991344452, \"Y\": 0.518963098526001}, {\"X\": 0.46327123045921326, \"Y\": 0.518963098526001}, {\"X\": 0.46327123045921326, \"Y\": 0.45514822006225586}]}, \"Id\": \"a06f5dce-2956-4e94-b76a-1fe33b7871c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a8c7b7a7-6182-4f55-9c1d-babc98e9dc79\", \"63736d3c-4bdb-42b6-9c5a-234341666fb4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.09856414794922, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015139162540435791, \"Height\": 0.06369391828775406, \"Left\": 0.4632260799407959, \"Top\": 0.5571122765541077}, \"Polygon\": [{\"X\": 0.4783652424812317, \"Y\": 0.5571122765541077}, {\"X\": 0.4783652424812317, \"Y\": 0.6208062171936035}, {\"X\": 0.4632260799407959, \"Y\": 0.6208062171936035}, {\"X\": 0.4632260799407959, \"Y\": 0.5571122765541077}]}, \"Id\": \"da2bad0d-1799-45ec-901e-67f0af47c98a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fb47aa10-0ede-4e72-8487-929548988983\", \"cc1fe88f-5e6b-4316-8562-782200cc5dff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58721923828125, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014631450176239014, \"Height\": 0.0634784996509552, \"Left\": 0.4383041560649872, \"Top\": 0.3535340428352356}, \"Polygon\": [{\"X\": 0.4529356062412262, \"Y\": 0.3535340428352356}, {\"X\": 0.4529356062412262, \"Y\": 0.4170125424861908}, {\"X\": 0.4383041560649872, \"Y\": 0.4170125424861908}, {\"X\": 0.4383041560649872, \"Y\": 0.3535340428352356}]}, \"Id\": \"6482aebc-0678-4a0d-8694-06e084250eed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc27c870-33ca-45c4-9d72-a2c03ea28295\", \"894864fe-cfb0-4e15-a7f3-0937e7c17ec9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.1716079711914, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01490098237991333, \"Height\": 0.06377966701984406, \"Left\": 0.4381948709487915, \"Top\": 0.4553092122077942}, \"Polygon\": [{\"X\": 0.45309585332870483, \"Y\": 0.4553092122077942}, {\"X\": 0.45309585332870483, \"Y\": 0.519088864326477}, {\"X\": 0.4381948709487915, \"Y\": 0.519088864326477}, {\"X\": 0.4381948709487915, \"Y\": 0.4553092122077942}]}, \"Id\": \"0fe3ee32-de91-4cd3-b28d-93d65feff89f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f3ea938-88eb-4625-9935-7c564f8f27ac\", \"243e14bc-9af1-4c1c-b14f-af0e389036c1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.63143920898438, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015056788921356201, \"Height\": 0.06357652693986893, \"Left\": 0.4381958246231079, \"Top\": 0.5569556355476379}, \"Polygon\": [{\"X\": 0.4532526135444641, \"Y\": 0.5569556355476379}, {\"X\": 0.4532526135444641, \"Y\": 0.6205321550369263}, {\"X\": 0.4381958246231079, \"Y\": 0.6205321550369263}, {\"X\": 0.4381958246231079, \"Y\": 0.5569556355476379}]}, \"Id\": \"ee78bf1e-baa5-4e7b-bbf7-6d91188a8277\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ebbbbe59-123f-48b7-981f-bd9da74dc0ac\", \"3050e864-2d31-456e-aa9f-60c62ece2829\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58284759521484, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01478564739227295, \"Height\": 0.06331539154052734, \"Left\": 0.41336220502853394, \"Top\": 0.3537231981754303}, \"Polygon\": [{\"X\": 0.4281478524208069, \"Y\": 0.3537231981754303}, {\"X\": 0.4281478524208069, \"Y\": 0.41703858971595764}, {\"X\": 0.41336220502853394, \"Y\": 0.41703858971595764}, {\"X\": 0.41336220502853394, \"Y\": 0.3537231981754303}]}, \"Id\": \"8062990f-170f-4aac-84dc-c52ff0045f64\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dbb24e49-bbc5-41ff-b769-4a77500e6b43\", \"5e73a860-9c44-4159-aa00-d8fb74e35266\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.38638305664062, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014974415302276611, \"Height\": 0.06389669328927994, \"Left\": 0.41331979632377625, \"Top\": 0.4552071988582611}, \"Polygon\": [{\"X\": 0.42829421162605286, \"Y\": 0.4552071988582611}, {\"X\": 0.42829421162605286, \"Y\": 0.5191038846969604}, {\"X\": 0.41331979632377625, \"Y\": 0.5191038846969604}, {\"X\": 0.41331979632377625, \"Y\": 0.4552071988582611}]}, \"Id\": \"909932b0-612e-4be5-81a6-f46a85f00981\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f2c89b58-77f0-4d08-b6a9-b910598a2e07\", \"84b6df11-8daf-4b0b-94c4-446880232ba4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07958221435547, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01517961174249649, \"Height\": 0.06366860121488571, \"Left\": 0.4131653606891632, \"Top\": 0.557085394859314}, \"Polygon\": [{\"X\": 0.4283449649810791, \"Y\": 0.557085394859314}, {\"X\": 0.4283449649810791, \"Y\": 0.6207540035247803}, {\"X\": 0.4131653606891632, \"Y\": 0.6207540035247803}, {\"X\": 0.4131653606891632, \"Y\": 0.557085394859314}]}, \"Id\": \"1160d9fd-9067-4127-b290-69e9acd2036e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7a076f04-9695-47cb-a5c8-4389c447d2f2\", \"0db725cb-fe3a-4187-9414-b4263b8084a1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3843994140625, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01489256601780653, \"Height\": 0.06344134360551834, \"Left\": 0.38818103075027466, \"Top\": 0.3536483645439148}, \"Polygon\": [{\"X\": 0.40307360887527466, \"Y\": 0.3536483645439148}, {\"X\": 0.40307360887527466, \"Y\": 0.41708970069885254}, {\"X\": 0.38818103075027466, \"Y\": 0.41708970069885254}, {\"X\": 0.38818103075027466, \"Y\": 0.3536483645439148}]}, \"Id\": \"6d3d4bbc-c211-428b-99f4-4d572e8f1738\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d0ff3977-5c7b-4d97-9697-439ea894b00b\", \"4e8b2793-37cb-4433-863d-52ac345350e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.12454223632812, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014828021638095379, \"Height\": 0.06369289755821228, \"Left\": 0.388348788022995, \"Top\": 0.45550045371055603}, \"Polygon\": [{\"X\": 0.40317681431770325, \"Y\": 0.45550045371055603}, {\"X\": 0.40317681431770325, \"Y\": 0.5191933512687683}, {\"X\": 0.388348788022995, \"Y\": 0.5191933512687683}, {\"X\": 0.388348788022995, \"Y\": 0.45550045371055603}]}, \"Id\": \"31258358-1797-4485-bd74-4091ab739c5f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"25457550-dec2-4329-b862-b9ab24b6d154\", \"c88c6d24-eae5-4636-96da-7e848e42fbc4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.77730560302734, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01496556680649519, \"Height\": 0.06370007246732712, \"Left\": 0.38828831911087036, \"Top\": 0.557000994682312}, \"Polygon\": [{\"X\": 0.4032539129257202, \"Y\": 0.557000994682312}, {\"X\": 0.4032539129257202, \"Y\": 0.6207010746002197}, {\"X\": 0.38828831911087036, \"Y\": 0.6207010746002197}, {\"X\": 0.38828831911087036, \"Y\": 0.557000994682312}]}, \"Id\": \"001e300d-21cf-411b-8e96-4a075eac0bdf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"34e14634-4dba-4a25-b3b2-3eccb3938ac3\", \"efc47cf2-2ae8-4850-b57b-1c8dd3d0a940\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62418365478516, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014584899879992008, \"Height\": 0.0632723718881607, \"Left\": 0.3634549379348755, \"Top\": 0.3537360727787018}, \"Polygon\": [{\"X\": 0.3780398368835449, \"Y\": 0.3537360727787018}, {\"X\": 0.3780398368835449, \"Y\": 0.4170084297657013}, {\"X\": 0.3634549379348755, \"Y\": 0.4170084297657013}, {\"X\": 0.3634549379348755, \"Y\": 0.3537360727787018}]}, \"Id\": \"1170d941-951f-4347-9494-a33dd6c7b00e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"868f6d4c-7fed-4fca-bd78-15ae5b473076\", \"8f470528-7ecd-47ed-aa48-7c8ed89525f7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55393981933594, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014452370814979076, \"Height\": 0.06389913707971573, \"Left\": 0.36351117491722107, \"Top\": 0.45521530508995056}, \"Polygon\": [{\"X\": 0.3779635429382324, \"Y\": 0.45521530508995056}, {\"X\": 0.3779635429382324, \"Y\": 0.5191144347190857}, {\"X\": 0.36351117491722107, \"Y\": 0.5191144347190857}, {\"X\": 0.36351117491722107, \"Y\": 0.45521530508995056}]}, \"Id\": \"5d35fa66-bcd3-4225-a1fe-4cfb01255201\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c75eb47c-2410-4c05-831e-514da57b5642\", \"f19f9219-7935-4561-9f77-db17a917db4b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41989135742188, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014823532663285732, \"Height\": 0.06347399950027466, \"Left\": 0.36328426003456116, \"Top\": 0.5572124719619751}, \"Polygon\": [{\"X\": 0.37810778617858887, \"Y\": 0.5572124719619751}, {\"X\": 0.37810778617858887, \"Y\": 0.6206864714622498}, {\"X\": 0.36328426003456116, \"Y\": 0.6206864714622498}, {\"X\": 0.36328426003456116, \"Y\": 0.5572124719619751}]}, \"Id\": \"df6c0949-c2f5-4c7c-a51b-6f27787d3ca9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da9c2d9b-614b-48b0-a315-9206e21f18a7\", \"9defb5b8-00c7-4e38-a0b2-5272f6864fea\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78050231933594, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01582006737589836, \"Height\": 0.07480204850435257, \"Left\": 0.3420678377151489, \"Top\": 0.053701333701610565}, \"Polygon\": [{\"X\": 0.3578878939151764, \"Y\": 0.053701333701610565}, {\"X\": 0.3578878939151764, \"Y\": 0.12850338220596313}, {\"X\": 0.3420678377151489, \"Y\": 0.12850338220596313}, {\"X\": 0.3420678377151489, \"Y\": 0.053701333701610565}]}, \"Id\": \"ea5f9750-0727-488c-ba75-26f7745adfc0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"303b87cc-80d5-4728-a1c2-25ba1236c18b\", \"2dcb9f46-6477-457d-8492-33ee6562a859\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87542724609375, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01522916555404663, \"Height\": 0.09479581564664841, \"Left\": 0.3192451000213623, \"Top\": 0.05351407453417778}, \"Polygon\": [{\"X\": 0.33447426557540894, \"Y\": 0.05351407453417778}, {\"X\": 0.33447426557540894, \"Y\": 0.1483098864555359}, {\"X\": 0.3192451000213623, \"Y\": 0.1483098864555359}, {\"X\": 0.3192451000213623, \"Y\": 0.05351407453417778}]}, \"Id\": \"e770462e-380b-4222-a6cb-8cbe0b7c791e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f8dc55c-a83c-4ef2-bab2-ad82a4d51874\", \"5e120fc3-2471-4c21-a3fb-9d3c92250cc5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 88.39253997802734, \"Text\": \"Hel lo World arcode here!\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0065760500729084015, \"Height\": 0.07843157649040222, \"Left\": 0.16886021196842194, \"Top\": 0.46851029992103577}, \"Polygon\": [{\"X\": 0.17543625831604004, \"Y\": 0.46851029992103577}, {\"X\": 0.17543625831604004, \"Y\": 0.546941876411438}, {\"X\": 0.16886021196842194, \"Y\": 0.546941876411438}, {\"X\": 0.16886021196842194, \"Y\": 0.46851029992103577}]}, \"Id\": \"5c5289e2-483c-44bc-b0e6-63185d586aaa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"390501a5-f8d6-478b-b6f4-720b793e5358\", \"62433f7b-1223-4f80-b30c-0d0e48a95a06\", \"d79afbf8-9428-4cfc-ab8c-0b0027a8bfbc\", \"9f7147a2-ca0f-46b0-871c-08b5a62f20fd\", \"37b25100-d201-400f-9f74-ae366a1a5bc0\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 19.58361053466797, \"Text\": \"valuct\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005861029960215092, \"Height\": 0.03814740106463432, \"Left\": 0.9941141605377197, \"Top\": 0.5691372752189636}, \"Polygon\": [{\"X\": 0.9999751448631287, \"Y\": 0.5691372752189636}, {\"X\": 0.9999751448631287, \"Y\": 0.6072847247123718}, {\"X\": 0.9941141605377197, \"Y\": 0.6072847247123718}, {\"X\": 0.9941141605377197, \"Y\": 0.5691372752189636}]}, \"Id\": \"d5912304-68bb-4616-9cdf-23add0576588\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55779266357422, \"Text\": \"Key2:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018105220049619675, \"Height\": 0.030502600595355034, \"Left\": 0.9573125243186951, \"Top\": 0.5352821946144104}, \"Polygon\": [{\"X\": 0.9754177331924438, \"Y\": 0.5352821946144104}, {\"X\": 0.9754177331924438, \"Y\": 0.5657848119735718}, {\"X\": 0.9573125243186951, \"Y\": 0.5657848119735718}, {\"X\": 0.9573125243186951, \"Y\": 0.5352821946144104}]}, \"Id\": \"fbb7e26c-5f46-4e72-8343-559f14cbf7ce\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60504150390625, \"Text\": \"value2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015741819515824318, \"Height\": 0.038551539182662964, \"Left\": 0.9604286551475525, \"Top\": 0.568609356880188}, \"Polygon\": [{\"X\": 0.9761704802513123, \"Y\": 0.568609356880188}, {\"X\": 0.9761704802513123, \"Y\": 0.6071609258651733}, {\"X\": 0.9604286551475525, \"Y\": 0.6071609258651733}, {\"X\": 0.9604286551475525, \"Y\": 0.568609356880188}]}, \"Id\": \"bf64dd37-c49b-439a-a0e5-5dffacb66cff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8123779296875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01508296001702547, \"Height\": 0.03242209553718567, \"Left\": 0.8961279392242432, \"Top\": 0.07725496590137482}, \"Polygon\": [{\"X\": 0.9112108945846558, \"Y\": 0.07725496590137482}, {\"X\": 0.9112108945846558, \"Y\": 0.10967706143856049}, {\"X\": 0.8961279392242432, \"Y\": 0.10967706143856049}, {\"X\": 0.8961279392242432, \"Y\": 0.07725496590137482}]}, \"Id\": \"a6fa6dc5-e835-418f-8416-fc39eb9948e0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3247299194336, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01437859982252121, \"Height\": 0.02726960927248001, \"Left\": 0.8963611721992493, \"Top\": 0.11364298313856125}, \"Polygon\": [{\"X\": 0.9107397794723511, \"Y\": 0.11364298313856125}, {\"X\": 0.9107397794723511, \"Y\": 0.14091259241104126}, {\"X\": 0.8963611721992493, \"Y\": 0.14091259241104126}, {\"X\": 0.8963611721992493, \"Y\": 0.11364298313856125}]}, \"Id\": \"b5fec60e-1209-49e2-9e24-744ed198b0bf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79520416259766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015094923786818981, \"Height\": 0.03265057131648064, \"Left\": 0.896179735660553, \"Top\": 0.15450343489646912}, \"Polygon\": [{\"X\": 0.9112746715545654, \"Y\": 0.15450343489646912}, {\"X\": 0.9112746715545654, \"Y\": 0.18715399503707886}, {\"X\": 0.896179735660553, \"Y\": 0.18715399503707886}, {\"X\": 0.896179735660553, \"Y\": 0.15450343489646912}]}, \"Id\": \"7c599d5c-dfe9-4bd0-b3e7-70e1bef1a260\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38037109375, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014315444976091385, \"Height\": 0.027316369116306305, \"Left\": 0.8964188098907471, \"Top\": 0.191055029630661}, \"Polygon\": [{\"X\": 0.910734236240387, \"Y\": 0.191055029630661}, {\"X\": 0.910734236240387, \"Y\": 0.2183714061975479}, {\"X\": 0.8964188098907471, \"Y\": 0.2183714061975479}, {\"X\": 0.8964188098907471, \"Y\": 0.191055029630661}]}, \"Id\": \"5513e567-0736-4ea1-8eeb-14bdc53833ed\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56058502197266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014780670404434204, \"Height\": 0.03215327858924866, \"Left\": 0.8962617516517639, \"Top\": 0.23244085907936096}, \"Polygon\": [{\"X\": 0.9110424518585205, \"Y\": 0.23244085907936096}, {\"X\": 0.9110424518585205, \"Y\": 0.2645941376686096}, {\"X\": 0.8962617516517639, \"Y\": 0.2645941376686096}, {\"X\": 0.8962617516517639, \"Y\": 0.23244085907936096}]}, \"Id\": \"29aba04d-7fad-486e-b337-319c58ebc371\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.238037109375, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014477220363914967, \"Height\": 0.027351250872015953, \"Left\": 0.8962222933769226, \"Top\": 0.2686840891838074}, \"Polygon\": [{\"X\": 0.9106995463371277, \"Y\": 0.2686840891838074}, {\"X\": 0.9106995463371277, \"Y\": 0.2960353493690491}, {\"X\": 0.8962222933769226, \"Y\": 0.2960353493690491}, {\"X\": 0.8962222933769226, \"Y\": 0.2686840891838074}]}, \"Id\": \"43d93c57-1a67-4958-b0b5-97d54954f3ec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.826416015625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015104319900274277, \"Height\": 0.03265231475234032, \"Left\": 0.8712184429168701, \"Top\": 0.07698758691549301}, \"Polygon\": [{\"X\": 0.8863227963447571, \"Y\": 0.07698758691549301}, {\"X\": 0.8863227963447571, \"Y\": 0.10963990539312363}, {\"X\": 0.8712184429168701, \"Y\": 0.10963990539312363}, {\"X\": 0.8712184429168701, \"Y\": 0.07698758691549301}]}, \"Id\": \"c94bae09-28ff-4861-a028-b07667e034c1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.06624603271484, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014580019749701023, \"Height\": 0.027114329859614372, \"Left\": 0.8711917400360107, \"Top\": 0.1136815994977951}, \"Polygon\": [{\"X\": 0.8857717514038086, \"Y\": 0.1136815994977951}, {\"X\": 0.8857717514038086, \"Y\": 0.14079593122005463}, {\"X\": 0.8711917400360107, \"Y\": 0.14079593122005463}, {\"X\": 0.8711917400360107, \"Y\": 0.1136815994977951}]}, \"Id\": \"790f6cfa-5f0a-488b-8435-730832b49233\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70612335205078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01485908031463623, \"Height\": 0.03277716040611267, \"Left\": 0.8713411688804626, \"Top\": 0.15448442101478577}, \"Polygon\": [{\"X\": 0.8862002491950989, \"Y\": 0.15448442101478577}, {\"X\": 0.8862002491950989, \"Y\": 0.18726158142089844}, {\"X\": 0.8713411688804626, \"Y\": 0.18726158142089844}, {\"X\": 0.8713411688804626, \"Y\": 0.15448442101478577}]}, \"Id\": \"557e854a-d559-43f8-9ddf-99755299356f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50244140625, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014454400166869164, \"Height\": 0.02728557027876377, \"Left\": 0.8713195323944092, \"Top\": 0.19113297760486603}, \"Polygon\": [{\"X\": 0.8857739567756653, \"Y\": 0.19113297760486603}, {\"X\": 0.8857739567756653, \"Y\": 0.21841855347156525}, {\"X\": 0.8713195323944092, \"Y\": 0.21841855347156525}, {\"X\": 0.8713195323944092, \"Y\": 0.19113297760486603}]}, \"Id\": \"c6a26026-e16b-448e-8ca8-a736d1af0481\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69497680664062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014912229962646961, \"Height\": 0.03252986818552017, \"Left\": 0.8712993264198303, \"Top\": 0.23210912942886353}, \"Polygon\": [{\"X\": 0.8862115144729614, \"Y\": 0.23210912942886353}, {\"X\": 0.8862115144729614, \"Y\": 0.2646389901638031}, {\"X\": 0.8712993264198303, \"Y\": 0.2646389901638031}, {\"X\": 0.8712993264198303, \"Y\": 0.23210912942886353}]}, \"Id\": \"af59abbb-bacb-47bb-abae-88e9d10e39d7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19571685791016, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014366153627634048, \"Height\": 0.026927480474114418, \"Left\": 0.8713226318359375, \"Top\": 0.2687571048736572}, \"Polygon\": [{\"X\": 0.8856887817382812, \"Y\": 0.2687571048736572}, {\"X\": 0.8856887817382812, \"Y\": 0.2956845760345459}, {\"X\": 0.8713226318359375, \"Y\": 0.2956845760345459}, {\"X\": 0.8713226318359375, \"Y\": 0.2687571048736572}]}, \"Id\": \"88727e10-7afb-4d4c-b1f2-a2385de4bd4d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7632827758789, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014675670303404331, \"Height\": 0.03242582455277443, \"Left\": 0.8463868498802185, \"Top\": 0.07727615535259247}, \"Polygon\": [{\"X\": 0.8610625267028809, \"Y\": 0.07727615535259247}, {\"X\": 0.8610625267028809, \"Y\": 0.1097019836306572}, {\"X\": 0.8463868498802185, \"Y\": 0.1097019836306572}, {\"X\": 0.8463868498802185, \"Y\": 0.07727615535259247}]}, \"Id\": \"51d247d7-fbe5-479e-93e4-cbd58b7cab30\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3659896850586, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014255800284445286, \"Height\": 0.027083653956651688, \"Left\": 0.8465054035186768, \"Top\": 0.11371907591819763}, \"Polygon\": [{\"X\": 0.8607612252235413, \"Y\": 0.11371907591819763}, {\"X\": 0.8607612252235413, \"Y\": 0.14080272614955902}, {\"X\": 0.8465054035186768, \"Y\": 0.14080272614955902}, {\"X\": 0.8465054035186768, \"Y\": 0.11371907591819763}]}, \"Id\": \"6ded05c2-dc02-4dab-9bd7-470d071d3dfe\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73987579345703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014538370072841644, \"Height\": 0.032800670713186264, \"Left\": 0.8464832901954651, \"Top\": 0.1544537991285324}, \"Polygon\": [{\"X\": 0.8610216975212097, \"Y\": 0.1544537991285324}, {\"X\": 0.8610216975212097, \"Y\": 0.18725447356700897}, {\"X\": 0.8464832901954651, \"Y\": 0.18725447356700897}, {\"X\": 0.8464832901954651, \"Y\": 0.1544537991285324}]}, \"Id\": \"d9264cf5-64c7-4ecd-80eb-e59ca7003ba7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36958312988281, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014143469743430614, \"Height\": 0.02740328013896942, \"Left\": 0.8465951085090637, \"Top\": 0.19095700979232788}, \"Polygon\": [{\"X\": 0.8607385754585266, \"Y\": 0.19095700979232788}, {\"X\": 0.8607385754585266, \"Y\": 0.2183602899312973}, {\"X\": 0.8465951085090637, \"Y\": 0.2183602899312973}, {\"X\": 0.8465951085090637, \"Y\": 0.19095700979232788}]}, \"Id\": \"8ea77678-32a4-4719-a9df-dff045468ff9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6732406616211, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014631460420787334, \"Height\": 0.03238825127482414, \"Left\": 0.8464108109474182, \"Top\": 0.23234285414218903}, \"Polygon\": [{\"X\": 0.8610422611236572, \"Y\": 0.23234285414218903}, {\"X\": 0.8610422611236572, \"Y\": 0.26473110914230347}, {\"X\": 0.8464108109474182, \"Y\": 0.26473110914230347}, {\"X\": 0.8464108109474182, \"Y\": 0.23234285414218903}]}, \"Id\": \"cab76cc9-a04a-488d-98d5-b3397ba9c724\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60137176513672, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014447970315814018, \"Height\": 0.026977689936757088, \"Left\": 0.8464111685752869, \"Top\": 0.26882076263427734}, \"Polygon\": [{\"X\": 0.8608590960502625, \"Y\": 0.26882076263427734}, {\"X\": 0.8608590960502625, \"Y\": 0.2957984507083893}, {\"X\": 0.8464111685752869, \"Y\": 0.2957984507083893}, {\"X\": 0.8464111685752869, \"Y\": 0.26882076263427734}]}, \"Id\": \"6e42cb56-997c-465d-9c42-398d198bf59e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8421630859375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016847040504217148, \"Height\": 0.037921320647001266, \"Left\": 0.7835927605628967, \"Top\": 0.24625389277935028}, \"Polygon\": [{\"X\": 0.8004398345947266, \"Y\": 0.24625389277935028}, {\"X\": 0.8004398345947266, \"Y\": 0.28417521715164185}, {\"X\": 0.7835927605628967, \"Y\": 0.28417521715164185}, {\"X\": 0.7835927605628967, \"Y\": 0.24625389277935028}]}, \"Id\": \"7f27a4ab-90eb-4549-825e-f958f62594b1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.15509796142578, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016353720799088478, \"Height\": 0.03234625980257988, \"Left\": 0.783476710319519, \"Top\": 0.28826960921287537}, \"Polygon\": [{\"X\": 0.799830436706543, \"Y\": 0.28826960921287537}, {\"X\": 0.799830436706543, \"Y\": 0.32061585783958435}, {\"X\": 0.783476710319519, \"Y\": 0.32061585783958435}, {\"X\": 0.783476710319519, \"Y\": 0.28826960921287537}]}, \"Id\": \"fdafc01d-1b86-4aff-9292-17f9bc4bd1a9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80989074707031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017123449593782425, \"Height\": 0.03798205032944679, \"Left\": 0.7833717465400696, \"Top\": 0.3343680202960968}, \"Polygon\": [{\"X\": 0.8004952073097229, \"Y\": 0.3343680202960968}, {\"X\": 0.8004952073097229, \"Y\": 0.3723500669002533}, {\"X\": 0.7833717465400696, \"Y\": 0.3723500669002533}, {\"X\": 0.7833717465400696, \"Y\": 0.3343680202960968}]}, \"Id\": \"b5e3dfa9-6aa3-47c3-b8e7-94cd40f9c787\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9853515625, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016700059175491333, \"Height\": 0.03279083967208862, \"Left\": 0.7833619713783264, \"Top\": 0.37602129578590393}, \"Polygon\": [{\"X\": 0.8000620603561401, \"Y\": 0.37602129578590393}, {\"X\": 0.8000620603561401, \"Y\": 0.40881213545799255}, {\"X\": 0.7833619713783264, \"Y\": 0.40881213545799255}, {\"X\": 0.7833619713783264, \"Y\": 0.37602129578590393}]}, \"Id\": \"303cec6f-de5b-421b-8e80-4202b086c0ef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83161926269531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01735753007233143, \"Height\": 0.03796583041548729, \"Left\": 0.7833167910575867, \"Top\": 0.42185094952583313}, \"Polygon\": [{\"X\": 0.800674319267273, \"Y\": 0.42185094952583313}, {\"X\": 0.800674319267273, \"Y\": 0.4598167836666107}, {\"X\": 0.7833167910575867, \"Y\": 0.4598167836666107}, {\"X\": 0.7833167910575867, \"Y\": 0.42185094952583313}]}, \"Id\": \"30f35be8-bf0f-4e38-8e46-c8c4b8fd58fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2818603515625, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0166104007512331, \"Height\": 0.03214484825730324, \"Left\": 0.7833533883094788, \"Top\": 0.46402743458747864}, \"Polygon\": [{\"X\": 0.7999637722969055, \"Y\": 0.46402743458747864}, {\"X\": 0.7999637722969055, \"Y\": 0.4961722791194916}, {\"X\": 0.7833533883094788, \"Y\": 0.4961722791194916}, {\"X\": 0.7833533883094788, \"Y\": 0.46402743458747864}]}, \"Id\": \"140a9fff-8cd7-4bef-b0d7-f612f56a4488\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83829498291016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017228569835424423, \"Height\": 0.03796914964914322, \"Left\": 0.7833665013313293, \"Top\": 0.5092297792434692}, \"Polygon\": [{\"X\": 0.8005951046943665, \"Y\": 0.5092297792434692}, {\"X\": 0.8005951046943665, \"Y\": 0.5471989512443542}, {\"X\": 0.7833665013313293, \"Y\": 0.5471989512443542}, {\"X\": 0.7833665013313293, \"Y\": 0.5092297792434692}]}, \"Id\": \"421a9089-0140-4727-a2b0-bc0c3c6e090d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46121215820312, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01679478958249092, \"Height\": 0.03301335871219635, \"Left\": 0.7832356691360474, \"Top\": 0.5512689352035522}, \"Polygon\": [{\"X\": 0.8000304102897644, \"Y\": 0.5512689352035522}, {\"X\": 0.8000304102897644, \"Y\": 0.5842822790145874}, {\"X\": 0.7832356691360474, \"Y\": 0.5842822790145874}, {\"X\": 0.7832356691360474, \"Y\": 0.5512689352035522}]}, \"Id\": \"5ad2b874-eac6-4e85-9a94-332ac6451b4b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66541290283203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017407020553946495, \"Height\": 0.03827816992998123, \"Left\": 0.783248782157898, \"Top\": 0.5969657301902771}, \"Polygon\": [{\"X\": 0.8006557822227478, \"Y\": 0.5969657301902771}, {\"X\": 0.8006557822227478, \"Y\": 0.6352438926696777}, {\"X\": 0.783248782157898, \"Y\": 0.6352438926696777}, {\"X\": 0.783248782157898, \"Y\": 0.5969657301902771}]}, \"Id\": \"9b3d0baf-51a8-491a-80c7-695931b3fab1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.02998352050781, \"Text\": \"2.1.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016517750918865204, \"Height\": 0.03233709931373596, \"Left\": 0.7834190726280212, \"Top\": 0.6392874121665955}, \"Polygon\": [{\"X\": 0.799936830997467, \"Y\": 0.6392874121665955}, {\"X\": 0.799936830997467, \"Y\": 0.671624481678009}, {\"X\": 0.7834190726280212, \"Y\": 0.671624481678009}, {\"X\": 0.7834190726280212, \"Y\": 0.6392874121665955}]}, \"Id\": \"5753df70-8847-4dda-bda6-4327fd0654d0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78445434570312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017092639580368996, \"Height\": 0.037669699639081955, \"Left\": 0.7539871335029602, \"Top\": 0.2463705688714981}, \"Polygon\": [{\"X\": 0.7710797786712646, \"Y\": 0.2463705688714981}, {\"X\": 0.7710797786712646, \"Y\": 0.28404027223587036}, {\"X\": 0.7539871335029602, \"Y\": 0.28404027223587036}, {\"X\": 0.7539871335029602, \"Y\": 0.2463705688714981}]}, \"Id\": \"44d96b4e-6d56-4ac5-8702-6f69a4587bfd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05079650878906, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016765009611845016, \"Height\": 0.03159433975815773, \"Left\": 0.7535170912742615, \"Top\": 0.2883141338825226}, \"Polygon\": [{\"X\": 0.7702820897102356, \"Y\": 0.2883141338825226}, {\"X\": 0.7702820897102356, \"Y\": 0.31990846991539}, {\"X\": 0.7535170912742615, \"Y\": 0.31990846991539}, {\"X\": 0.7535170912742615, \"Y\": 0.2883141338825226}]}, \"Id\": \"4dbbee5f-1a38-4f7b-b980-b56e38d59747\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83927917480469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01731557957828045, \"Height\": 0.03809479996562004, \"Left\": 0.7545579075813293, \"Top\": 0.33416199684143066}, \"Polygon\": [{\"X\": 0.7718734741210938, \"Y\": 0.33416199684143066}, {\"X\": 0.7718734741210938, \"Y\": 0.3722567856311798}, {\"X\": 0.7545579075813293, \"Y\": 0.3722567856311798}, {\"X\": 0.7545579075813293, \"Y\": 0.33416199684143066}]}, \"Id\": \"4dc26a45-c6ce-44fc-a9b6-5ef75af0db65\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51952362060547, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016551220789551735, \"Height\": 0.03242027014493942, \"Left\": 0.7546998858451843, \"Top\": 0.3759740889072418}, \"Polygon\": [{\"X\": 0.7712510824203491, \"Y\": 0.3759740889072418}, {\"X\": 0.7712510824203491, \"Y\": 0.40839436650276184}, {\"X\": 0.7546998858451843, \"Y\": 0.40839436650276184}, {\"X\": 0.7546998858451843, \"Y\": 0.3759740889072418}]}, \"Id\": \"40e92bb6-217f-4d7a-aab5-78102c9b7db1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77606201171875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017344199120998383, \"Height\": 0.03789154067635536, \"Left\": 0.7544159889221191, \"Top\": 0.4219626188278198}, \"Polygon\": [{\"X\": 0.7717602252960205, \"Y\": 0.4219626188278198}, {\"X\": 0.7717602252960205, \"Y\": 0.4598541557788849}, {\"X\": 0.7544159889221191, \"Y\": 0.4598541557788849}, {\"X\": 0.7544159889221191, \"Y\": 0.4219626188278198}]}, \"Id\": \"07e947fc-4b4c-4cea-850b-547c8165afd9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36804962158203, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01636819913983345, \"Height\": 0.0319049097597599, \"Left\": 0.7544377446174622, \"Top\": 0.4641948640346527}, \"Polygon\": [{\"X\": 0.7708059549331665, \"Y\": 0.4641948640346527}, {\"X\": 0.7708059549331665, \"Y\": 0.4960997700691223}, {\"X\": 0.7544377446174622, \"Y\": 0.4960997700691223}, {\"X\": 0.7544377446174622, \"Y\": 0.4641948640346527}]}, \"Id\": \"2218e13b-4336-4b2b-a115-5e5b4d285139\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8424072265625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017246879637241364, \"Height\": 0.03862971067428589, \"Left\": 0.7544892430305481, \"Top\": 0.5089490413665771}, \"Polygon\": [{\"X\": 0.7717361450195312, \"Y\": 0.5089490413665771}, {\"X\": 0.7717361450195312, \"Y\": 0.547578752040863}, {\"X\": 0.7544892430305481, \"Y\": 0.547578752040863}, {\"X\": 0.7544892430305481, \"Y\": 0.5089490413665771}]}, \"Id\": \"f726798d-b15f-47d5-bbe3-72fae2c2b64c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39004516601562, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016606789082288742, \"Height\": 0.03280036896467209, \"Left\": 0.7543902397155762, \"Top\": 0.5513094663619995}, \"Polygon\": [{\"X\": 0.7709969878196716, \"Y\": 0.5513094663619995}, {\"X\": 0.7709969878196716, \"Y\": 0.5841098427772522}, {\"X\": 0.7543902397155762, \"Y\": 0.5841098427772522}, {\"X\": 0.7543902397155762, \"Y\": 0.5513094663619995}]}, \"Id\": \"bdf972c4-5005-4592-8926-532f2fbb22f3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7989273071289, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0172662902623415, \"Height\": 0.038415998220443726, \"Left\": 0.7545059323310852, \"Top\": 0.5968148708343506}, \"Polygon\": [{\"X\": 0.7717722654342651, \"Y\": 0.5968148708343506}, {\"X\": 0.7717722654342651, \"Y\": 0.6352308988571167}, {\"X\": 0.7545059323310852, \"Y\": 0.6352308988571167}, {\"X\": 0.7545059323310852, \"Y\": 0.5968148708343506}]}, \"Id\": \"b57d8b61-5b73-4dce-9d36-bc384d571300\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26642608642578, \"Text\": \"2.2.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016604160889983177, \"Height\": 0.03156553953886032, \"Left\": 0.7542998194694519, \"Top\": 0.6395719647407532}, \"Polygon\": [{\"X\": 0.770904004573822, \"Y\": 0.6395719647407532}, {\"X\": 0.770904004573822, \"Y\": 0.6711375117301941}, {\"X\": 0.7542998194694519, \"Y\": 0.6711375117301941}, {\"X\": 0.7542998194694519, \"Y\": 0.6395719647407532}]}, \"Id\": \"b961d31f-6a9a-422b-b4d3-de6fe243dec0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87128448486328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016939319670200348, \"Height\": 0.03791750967502594, \"Left\": 0.7253453135490417, \"Top\": 0.24625344574451447}, \"Polygon\": [{\"X\": 0.7422846555709839, \"Y\": 0.24625344574451447}, {\"X\": 0.7422846555709839, \"Y\": 0.2841709554195404}, {\"X\": 0.7253453135490417, \"Y\": 0.2841709554195404}, {\"X\": 0.7253453135490417, \"Y\": 0.24625344574451447}]}, \"Id\": \"4c1f7f39-4b60-4d61-bddc-369ec36ea3b2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.026123046875, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01642468012869358, \"Height\": 0.031928129494190216, \"Left\": 0.7254337668418884, \"Top\": 0.2886311709880829}, \"Polygon\": [{\"X\": 0.7418584227561951, \"Y\": 0.2886311709880829}, {\"X\": 0.7418584227561951, \"Y\": 0.3205592930316925}, {\"X\": 0.7254337668418884, \"Y\": 0.3205592930316925}, {\"X\": 0.7254337668418884, \"Y\": 0.2886311709880829}]}, \"Id\": \"17e35e8a-c922-4d34-94c9-929b3c009d1a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83293151855469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016964200884103775, \"Height\": 0.037888940423727036, \"Left\": 0.7253413200378418, \"Top\": 0.3342178761959076}, \"Polygon\": [{\"X\": 0.7423055171966553, \"Y\": 0.3342178761959076}, {\"X\": 0.7423055171966553, \"Y\": 0.3721068203449249}, {\"X\": 0.7253413200378418, \"Y\": 0.3721068203449249}, {\"X\": 0.7253413200378418, \"Y\": 0.3342178761959076}]}, \"Id\": \"cf1667e5-a3c0-4454-9a7b-83443de44a5d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4107666015625, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016698230057954788, \"Height\": 0.032358329743146896, \"Left\": 0.7253872156143188, \"Top\": 0.37600967288017273}, \"Polygon\": [{\"X\": 0.7420854568481445, \"Y\": 0.37600967288017273}, {\"X\": 0.7420854568481445, \"Y\": 0.40836799144744873}, {\"X\": 0.7253872156143188, \"Y\": 0.40836799144744873}, {\"X\": 0.7253872156143188, \"Y\": 0.37600967288017273}]}, \"Id\": \"3f2bcfed-e0c5-4ab0-ae49-ecd2811fdc21\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85920715332031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01711571030318737, \"Height\": 0.03795243054628372, \"Left\": 0.7253190875053406, \"Top\": 0.42185160517692566}, \"Polygon\": [{\"X\": 0.7424347996711731, \"Y\": 0.42185160517692566}, {\"X\": 0.7424347996711731, \"Y\": 0.4598040282726288}, {\"X\": 0.7253190875053406, \"Y\": 0.4598040282726288}, {\"X\": 0.7253190875053406, \"Y\": 0.42185160517692566}]}, \"Id\": \"98837175-2c1d-4f9e-b8af-81988ce37ce0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56121826171875, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016622349619865417, \"Height\": 0.031784798949956894, \"Left\": 0.725338876247406, \"Top\": 0.46430909633636475}, \"Polygon\": [{\"X\": 0.7419611811637878, \"Y\": 0.46430909633636475}, {\"X\": 0.7419611811637878, \"Y\": 0.49609389901161194}, {\"X\": 0.725338876247406, \"Y\": 0.49609389901161194}, {\"X\": 0.725338876247406, \"Y\": 0.46430909633636475}]}, \"Id\": \"4a1b15e2-bf4b-445f-bc1a-29b5e92fce44\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84467315673828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017168860882520676, \"Height\": 0.03760366141796112, \"Left\": 0.7253062129020691, \"Top\": 0.5094883441925049}, \"Polygon\": [{\"X\": 0.7424750328063965, \"Y\": 0.5094883441925049}, {\"X\": 0.7424750328063965, \"Y\": 0.5470920205116272}, {\"X\": 0.7253062129020691, \"Y\": 0.5470920205116272}, {\"X\": 0.7253062129020691, \"Y\": 0.5094883441925049}]}, \"Id\": \"8cc6056e-f4e1-4d9e-8eb2-647f55399e01\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5263671875, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01658524014055729, \"Height\": 0.03257153928279877, \"Left\": 0.7253395318984985, \"Top\": 0.5513278841972351}, \"Polygon\": [{\"X\": 0.7419248223304749, \"Y\": 0.5513278841972351}, {\"X\": 0.7419248223304749, \"Y\": 0.5838994383811951}, {\"X\": 0.7253395318984985, \"Y\": 0.5838994383811951}, {\"X\": 0.7253395318984985, \"Y\": 0.5513278841972351}]}, \"Id\": \"efd49c6a-62b1-4045-a5f0-6e2aa874ddd1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79379272460938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01684696041047573, \"Height\": 0.03847423940896988, \"Left\": 0.7253726720809937, \"Top\": 0.5970727801322937}, \"Polygon\": [{\"X\": 0.7422196269035339, \"Y\": 0.5970727801322937}, {\"X\": 0.7422196269035339, \"Y\": 0.6355470418930054}, {\"X\": 0.7253726720809937, \"Y\": 0.6355470418930054}, {\"X\": 0.7253726720809937, \"Y\": 0.5970727801322937}]}, \"Id\": \"105682c6-8f1a-43af-b055-f030d62dc8cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34532928466797, \"Text\": \"2.3.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01665504090487957, \"Height\": 0.03159580007195473, \"Left\": 0.725288987159729, \"Top\": 0.6395760774612427}, \"Polygon\": [{\"X\": 0.7419440150260925, \"Y\": 0.6395760774612427}, {\"X\": 0.7419440150260925, \"Y\": 0.6711719036102295}, {\"X\": 0.725288987159729, \"Y\": 0.6711719036102295}, {\"X\": 0.725288987159729, \"Y\": 0.6395760774612427}]}, \"Id\": \"eb0f65ab-d793-49ec-8e40-b29558eb5875\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84619903564453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01696160063147545, \"Height\": 0.03795380890369415, \"Left\": 0.6963772177696228, \"Top\": 0.24618764221668243}, \"Polygon\": [{\"X\": 0.7133387923240662, \"Y\": 0.24618764221668243}, {\"X\": 0.7133387923240662, \"Y\": 0.2841414511203766}, {\"X\": 0.6963772177696228, \"Y\": 0.2841414511203766}, {\"X\": 0.6963772177696228, \"Y\": 0.24618764221668243}]}, \"Id\": \"5de9f85a-3329-4b02-af2e-8b124dd6b2ab\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53998565673828, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01612233929336071, \"Height\": 0.03217757120728493, \"Left\": 0.696708619594574, \"Top\": 0.28840163350105286}, \"Polygon\": [{\"X\": 0.7128309607505798, \"Y\": 0.28840163350105286}, {\"X\": 0.7128309607505798, \"Y\": 0.3205792009830475}, {\"X\": 0.696708619594574, \"Y\": 0.3205792009830475}, {\"X\": 0.696708619594574, \"Y\": 0.28840163350105286}]}, \"Id\": \"e1289caa-c98b-4790-aa16-7548cdcff284\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78479766845703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017001569271087646, \"Height\": 0.03813806176185608, \"Left\": 0.696325957775116, \"Top\": 0.33398279547691345}, \"Polygon\": [{\"X\": 0.7133275270462036, \"Y\": 0.33398279547691345}, {\"X\": 0.7133275270462036, \"Y\": 0.37212085723876953}, {\"X\": 0.696325957775116, \"Y\": 0.37212085723876953}, {\"X\": 0.696325957775116, \"Y\": 0.33398279547691345}]}, \"Id\": \"8d730340-30bd-473c-a770-62a67e97cd5a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.959228515625, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016625940799713135, \"Height\": 0.032521359622478485, \"Left\": 0.6964555382728577, \"Top\": 0.37599125504493713}, \"Polygon\": [{\"X\": 0.7130814790725708, \"Y\": 0.37599125504493713}, {\"X\": 0.7130814790725708, \"Y\": 0.4085126221179962}, {\"X\": 0.6964555382728577, \"Y\": 0.4085126221179962}, {\"X\": 0.6964555382728577, \"Y\": 0.37599125504493713}]}, \"Id\": \"7c317b52-d702-4ade-8297-a9bee20c06e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80558776855469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017088860273361206, \"Height\": 0.03789880871772766, \"Left\": 0.6963545680046082, \"Top\": 0.4218222200870514}, \"Polygon\": [{\"X\": 0.713443398475647, \"Y\": 0.4218222200870514}, {\"X\": 0.713443398475647, \"Y\": 0.45972102880477905}, {\"X\": 0.6963545680046082, \"Y\": 0.45972102880477905}, {\"X\": 0.6963545680046082, \"Y\": 0.4218222200870514}]}, \"Id\": \"6f4e51b7-a0f2-437d-b655-f38cf7f9886d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46514892578125, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016278650611639023, \"Height\": 0.03174960985779762, \"Left\": 0.696550190448761, \"Top\": 0.46426427364349365}, \"Polygon\": [{\"X\": 0.7128288745880127, \"Y\": 0.46426427364349365}, {\"X\": 0.7128288745880127, \"Y\": 0.496013879776001}, {\"X\": 0.696550190448761, \"Y\": 0.496013879776001}, {\"X\": 0.696550190448761, \"Y\": 0.46426427364349365}]}, \"Id\": \"a79eeb6b-286f-4fa3-8117-c3ea99b6d476\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80521392822266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016924399882555008, \"Height\": 0.037958599627017975, \"Left\": 0.6962869167327881, \"Top\": 0.5092139840126038}, \"Polygon\": [{\"X\": 0.7132112979888916, \"Y\": 0.5092139840126038}, {\"X\": 0.7132112979888916, \"Y\": 0.5471726059913635}, {\"X\": 0.6962869167327881, \"Y\": 0.5471726059913635}, {\"X\": 0.6962869167327881, \"Y\": 0.5092139840126038}]}, \"Id\": \"e0fe1320-123d-40ea-93b6-5cf58aa436fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47183990478516, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01642104983329773, \"Height\": 0.03298424929380417, \"Left\": 0.6966069936752319, \"Top\": 0.5512655973434448}, \"Polygon\": [{\"X\": 0.713028073310852, \"Y\": 0.5512655973434448}, {\"X\": 0.713028073310852, \"Y\": 0.5842498540878296}, {\"X\": 0.6966069936752319, \"Y\": 0.5842498540878296}, {\"X\": 0.6966069936752319, \"Y\": 0.5512655973434448}]}, \"Id\": \"545c128a-e8f6-49ba-9162-79848f8fc3a8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75202941894531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01671612076461315, \"Height\": 0.03838644176721573, \"Left\": 0.6964026093482971, \"Top\": 0.5972334742546082}, \"Polygon\": [{\"X\": 0.7131186723709106, \"Y\": 0.5972334742546082}, {\"X\": 0.7131186723709106, \"Y\": 0.6356199383735657}, {\"X\": 0.6964026093482971, \"Y\": 0.6356199383735657}, {\"X\": 0.6964026093482971, \"Y\": 0.5972334742546082}]}, \"Id\": \"809be9a4-d2e7-408c-bde2-f2869371f45d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26628112792969, \"Text\": \"2.4.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016360169276595116, \"Height\": 0.03136524185538292, \"Left\": 0.6964033842086792, \"Top\": 0.6397413611412048}, \"Polygon\": [{\"X\": 0.7127635478973389, \"Y\": 0.6397413611412048}, {\"X\": 0.7127635478973389, \"Y\": 0.6711065769195557}, {\"X\": 0.6964033842086792, \"Y\": 0.6711065769195557}, {\"X\": 0.6964033842086792, \"Y\": 0.6397413611412048}]}, \"Id\": \"586f6c3b-f6b8-4e06-8f13-f90a1347941a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89889526367188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017036670818924904, \"Height\": 0.037765029817819595, \"Left\": 0.6672606468200684, \"Top\": 0.24633494019508362}, \"Polygon\": [{\"X\": 0.6842973232269287, \"Y\": 0.24633494019508362}, {\"X\": 0.6842973232269287, \"Y\": 0.2840999662876129}, {\"X\": 0.6672606468200684, \"Y\": 0.2840999662876129}, {\"X\": 0.6672606468200684, \"Y\": 0.24633494019508362}]}, \"Id\": \"7d6f5acd-93b3-4706-8926-898f284f845a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4406967163086, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01647838018834591, \"Height\": 0.032262738794088364, \"Left\": 0.6674190163612366, \"Top\": 0.2882874310016632}, \"Polygon\": [{\"X\": 0.6838973760604858, \"Y\": 0.2882874310016632}, {\"X\": 0.6838973760604858, \"Y\": 0.32055017352104187}, {\"X\": 0.6674190163612366, \"Y\": 0.32055017352104187}, {\"X\": 0.6674190163612366, \"Y\": 0.2882874310016632}]}, \"Id\": \"b6a5456f-a31f-4d35-8795-fc6809847b12\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80928802490234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016933590173721313, \"Height\": 0.037888120859861374, \"Left\": 0.6673074960708618, \"Top\": 0.33408698439598083}, \"Polygon\": [{\"X\": 0.6842410564422607, \"Y\": 0.33408698439598083}, {\"X\": 0.6842410564422607, \"Y\": 0.3719750940799713}, {\"X\": 0.6673074960708618, \"Y\": 0.3719750940799713}, {\"X\": 0.6673074960708618, \"Y\": 0.33408698439598083}]}, \"Id\": \"75743845-fa24-4f3c-9caa-a54ba9591777\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.88970184326172, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016727060079574585, \"Height\": 0.032513588666915894, \"Left\": 0.667286217212677, \"Top\": 0.3760339319705963}, \"Polygon\": [{\"X\": 0.684013307094574, \"Y\": 0.3760339319705963}, {\"X\": 0.684013307094574, \"Y\": 0.4085475206375122}, {\"X\": 0.667286217212677, \"Y\": 0.4085475206375122}, {\"X\": 0.667286217212677, \"Y\": 0.3760339319705963}]}, \"Id\": \"fef4d9d9-6db2-4905-80cf-cf0d16c87fe6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87287139892578, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017020290717482567, \"Height\": 0.0379280187189579, \"Left\": 0.6673294305801392, \"Top\": 0.42175668478012085}, \"Polygon\": [{\"X\": 0.684349775314331, \"Y\": 0.42175668478012085}, {\"X\": 0.684349775314331, \"Y\": 0.45968469977378845}, {\"X\": 0.6673294305801392, \"Y\": 0.45968469977378845}, {\"X\": 0.6673294305801392, \"Y\": 0.42175668478012085}]}, \"Id\": \"79b41568-8415-4c93-84b9-588af9f25708\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47747039794922, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016574349254369736, \"Height\": 0.03203117847442627, \"Left\": 0.66733717918396, \"Top\": 0.4640156626701355}, \"Polygon\": [{\"X\": 0.6839115023612976, \"Y\": 0.4640156626701355}, {\"X\": 0.6839115023612976, \"Y\": 0.49604684114456177}, {\"X\": 0.66733717918396, \"Y\": 0.49604684114456177}, {\"X\": 0.66733717918396, \"Y\": 0.4640156626701355}]}, \"Id\": \"e6f235c0-54d8-4686-a918-e4a0ee65db71\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8065414428711, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017099859192967415, \"Height\": 0.038321759551763535, \"Left\": 0.6673731803894043, \"Top\": 0.5091187357902527}, \"Polygon\": [{\"X\": 0.6844730377197266, \"Y\": 0.5091187357902527}, {\"X\": 0.6844730377197266, \"Y\": 0.5474405288696289}, {\"X\": 0.6673731803894043, \"Y\": 0.5474405288696289}, {\"X\": 0.6673731803894043, \"Y\": 0.5091187357902527}]}, \"Id\": \"2142a23b-cf64-415a-ba4d-e2edde6e62f9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55863952636719, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016737790778279305, \"Height\": 0.03303372859954834, \"Left\": 0.66727215051651, \"Top\": 0.5513575673103333}, \"Polygon\": [{\"X\": 0.6840099692344666, \"Y\": 0.5513575673103333}, {\"X\": 0.6840099692344666, \"Y\": 0.5843912959098816}, {\"X\": 0.66727215051651, \"Y\": 0.5843912959098816}, {\"X\": 0.66727215051651, \"Y\": 0.5513575673103333}]}, \"Id\": \"0e67ff6b-dd91-4fd1-860a-3c6f32ef32ca\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77527618408203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01669953018426895, \"Height\": 0.03746113181114197, \"Left\": 0.6674181222915649, \"Top\": 0.5975778698921204}, \"Polygon\": [{\"X\": 0.6841176748275757, \"Y\": 0.5975778698921204}, {\"X\": 0.6841176748275757, \"Y\": 0.6350389719009399}, {\"X\": 0.6674181222915649, \"Y\": 0.6350389719009399}, {\"X\": 0.6674181222915649, \"Y\": 0.5975778698921204}]}, \"Id\": \"ec10e429-6c6b-4a02-9a86-6223294caf2c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47046661376953, \"Text\": \"2.5.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016591010615229607, \"Height\": 0.032074809074401855, \"Left\": 0.6672257781028748, \"Top\": 0.6392556428909302}, \"Polygon\": [{\"X\": 0.6838167309761047, \"Y\": 0.6392556428909302}, {\"X\": 0.6838167309761047, \"Y\": 0.671330451965332}, {\"X\": 0.6672257781028748, \"Y\": 0.671330451965332}, {\"X\": 0.6672257781028748, \"Y\": 0.6392556428909302}]}, \"Id\": \"c2b98699-e2be-4079-ad5d-c172659b96bf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84373474121094, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015312849543988705, \"Height\": 0.021748902276158333, \"Left\": 0.5646151304244995, \"Top\": 0.0558566078543663}, \"Polygon\": [{\"X\": 0.5799279808998108, \"Y\": 0.0558566078543663}, {\"X\": 0.5799279808998108, \"Y\": 0.07760550826787949}, {\"X\": 0.5646151304244995, \"Y\": 0.07760550826787949}, {\"X\": 0.5646151304244995, \"Y\": 0.0558566078543663}]}, \"Id\": \"4dbbc624-14d1-4e99-8fb1-a580e995ee27\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92333984375, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015256520360708237, \"Height\": 0.07017920166254044, \"Left\": 0.5646933913230896, \"Top\": 0.08099614828824997}, \"Polygon\": [{\"X\": 0.5799499154090881, \"Y\": 0.08099614828824997}, {\"X\": 0.5799499154090881, \"Y\": 0.1511753499507904}, {\"X\": 0.5646933913230896, \"Y\": 0.1511753499507904}, {\"X\": 0.5646933913230896, \"Y\": 0.08099614828824997}]}, \"Id\": \"1bfff2b8-de2b-4f30-99d7-788f7f29feb8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6416244506836, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014573190361261368, \"Height\": 0.032703038305044174, \"Left\": 0.5383539795875549, \"Top\": 0.35343194007873535}, \"Polygon\": [{\"X\": 0.5529271960258484, \"Y\": 0.35343194007873535}, {\"X\": 0.5529271960258484, \"Y\": 0.3861349821090698}, {\"X\": 0.5383539795875549, \"Y\": 0.3861349821090698}, {\"X\": 0.5383539795875549, \"Y\": 0.35343194007873535}]}, \"Id\": \"813b7353-af3a-4033-a48b-60396912a374\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39604187011719, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014475700445473194, \"Height\": 0.02750048041343689, \"Left\": 0.5382377505302429, \"Top\": 0.38962435722351074}, \"Polygon\": [{\"X\": 0.5527134537696838, \"Y\": 0.38962435722351074}, {\"X\": 0.5527134537696838, \"Y\": 0.41712483763694763}, {\"X\": 0.5382377505302429, \"Y\": 0.41712483763694763}, {\"X\": 0.5382377505302429, \"Y\": 0.38962435722351074}]}, \"Id\": \"498e3591-8e37-47cd-adaa-b1eb2d7e6bda\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53507232666016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014649479649960995, \"Height\": 0.032797671854496, \"Left\": 0.5382887125015259, \"Top\": 0.4551326632499695}, \"Polygon\": [{\"X\": 0.5529382228851318, \"Y\": 0.4551326632499695}, {\"X\": 0.5529382228851318, \"Y\": 0.4879303276538849}, {\"X\": 0.5382887125015259, \"Y\": 0.4879303276538849}, {\"X\": 0.5382887125015259, \"Y\": 0.4551326632499695}]}, \"Id\": \"d1c811de-d6ac-40fe-9f52-336c4a75566c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2734603881836, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014397620223462582, \"Height\": 0.027946850284934044, \"Left\": 0.5383228659629822, \"Top\": 0.4912099540233612}, \"Polygon\": [{\"X\": 0.5527204871177673, \"Y\": 0.4912099540233612}, {\"X\": 0.5527204871177673, \"Y\": 0.519156813621521}, {\"X\": 0.5383228659629822, \"Y\": 0.519156813621521}, {\"X\": 0.5383228659629822, \"Y\": 0.4912099540233612}]}, \"Id\": \"713e4242-ff40-4197-a3c7-8ed583b0f718\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.645263671875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014661340042948723, \"Height\": 0.03285130113363266, \"Left\": 0.5383415222167969, \"Top\": 0.5569254159927368}, \"Polygon\": [{\"X\": 0.5530028343200684, \"Y\": 0.5569254159927368}, {\"X\": 0.5530028343200684, \"Y\": 0.5897766947746277}, {\"X\": 0.5383415222167969, \"Y\": 0.5897766947746277}, {\"X\": 0.5383415222167969, \"Y\": 0.5569254159927368}]}, \"Id\": \"2edcfa6d-54d5-413e-b8f6-e25c0bcabdea\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.91339111328125, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014745940454304218, \"Height\": 0.027605939656496048, \"Left\": 0.5382109880447388, \"Top\": 0.593183159828186}, \"Polygon\": [{\"X\": 0.5529569387435913, \"Y\": 0.593183159828186}, {\"X\": 0.5529569387435913, \"Y\": 0.620789110660553}, {\"X\": 0.5382109880447388, \"Y\": 0.620789110660553}, {\"X\": 0.5382109880447388, \"Y\": 0.593183159828186}]}, \"Id\": \"947ab6bd-4084-4a2a-84ad-823cef128eb2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41271209716797, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014911109581589699, \"Height\": 0.02365485206246376, \"Left\": 0.5272205471992493, \"Top\": 0.053078752011060715}, \"Polygon\": [{\"X\": 0.5421316027641296, \"Y\": 0.053078752011060715}, {\"X\": 0.5421316027641296, \"Y\": 0.07673360407352448}, {\"X\": 0.5272205471992493, \"Y\": 0.07673360407352448}, {\"X\": 0.5272205471992493, \"Y\": 0.053078752011060715}]}, \"Id\": \"171e28f1-34c0-4868-aad1-6cc423a47e61\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97248840332031, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01566411927342415, \"Height\": 0.04675019904971123, \"Left\": 0.5272008180618286, \"Top\": 0.08032236248254776}, \"Polygon\": [{\"X\": 0.5428649187088013, \"Y\": 0.08032236248254776}, {\"X\": 0.5428649187088013, \"Y\": 0.1270725578069687}, {\"X\": 0.5272008180618286, \"Y\": 0.1270725578069687}, {\"X\": 0.5272008180618286, \"Y\": 0.08032236248254776}]}, \"Id\": \"ed26bfc7-2747-4a41-ae76-d3a08fdcf084\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76617431640625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014896079897880554, \"Height\": 0.0325191505253315, \"Left\": 0.5131890177726746, \"Top\": 0.35363298654556274}, \"Polygon\": [{\"X\": 0.5280851125717163, \"Y\": 0.35363298654556274}, {\"X\": 0.5280851125717163, \"Y\": 0.38615214824676514}, {\"X\": 0.5131890177726746, \"Y\": 0.38615214824676514}, {\"X\": 0.5131890177726746, \"Y\": 0.35363298654556274}]}, \"Id\": \"c7dd0c61-0cd7-4b80-9c6d-4bdddc72a648\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14651489257812, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014572019688785076, \"Height\": 0.027240009978413582, \"Left\": 0.5132073760032654, \"Top\": 0.3896353244781494}, \"Polygon\": [{\"X\": 0.5277794003486633, \"Y\": 0.3896353244781494}, {\"X\": 0.5277794003486633, \"Y\": 0.41687533259391785}, {\"X\": 0.5132073760032654, \"Y\": 0.41687533259391785}, {\"X\": 0.5132073760032654, \"Y\": 0.3896353244781494}]}, \"Id\": \"b6a55aea-95d0-426d-8495-fb516ef2a311\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72516632080078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015027189627289772, \"Height\": 0.03264506161212921, \"Left\": 0.5131499767303467, \"Top\": 0.4551866352558136}, \"Polygon\": [{\"X\": 0.5281771421432495, \"Y\": 0.4551866352558136}, {\"X\": 0.5281771421432495, \"Y\": 0.487831711769104}, {\"X\": 0.5131499767303467, \"Y\": 0.487831711769104}, {\"X\": 0.5131499767303467, \"Y\": 0.4551866352558136}]}, \"Id\": \"574cb476-3330-4daf-9d95-9a12c7d3a27c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.16597747802734, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014585119672119617, \"Height\": 0.027738699689507484, \"Left\": 0.5133015513420105, \"Top\": 0.4912712872028351}, \"Polygon\": [{\"X\": 0.527886688709259, \"Y\": 0.4912712872028351}, {\"X\": 0.527886688709259, \"Y\": 0.5190100073814392}, {\"X\": 0.5133015513420105, \"Y\": 0.5190100073814392}, {\"X\": 0.5133015513420105, \"Y\": 0.4912712872028351}]}, \"Id\": \"9d635bcb-f693-4623-9e4a-f6144c90a78a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65001678466797, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015116049908101559, \"Height\": 0.032535798847675323, \"Left\": 0.5131240487098694, \"Top\": 0.5571063756942749}, \"Polygon\": [{\"X\": 0.5282400846481323, \"Y\": 0.5571063756942749}, {\"X\": 0.5282400846481323, \"Y\": 0.5896422266960144}, {\"X\": 0.5131240487098694, \"Y\": 0.5896422266960144}, {\"X\": 0.5131240487098694, \"Y\": 0.5571063756942749}]}, \"Id\": \"82ab1ee7-481d-4c33-b62f-c8123a836785\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.75808715820312, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014812029898166656, \"Height\": 0.027790140360593796, \"Left\": 0.5131792426109314, \"Top\": 0.5931282639503479}, \"Polygon\": [{\"X\": 0.5279912948608398, \"Y\": 0.5931282639503479}, {\"X\": 0.5279912948608398, \"Y\": 0.6209183931350708}, {\"X\": 0.5131792426109314, \"Y\": 0.6209183931350708}, {\"X\": 0.5131792426109314, \"Y\": 0.5931282639503479}]}, \"Id\": \"43b7fe4a-c711-4cc0-b608-f8aafa30e257\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64263916015625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014748560264706612, \"Height\": 0.03266628086566925, \"Left\": 0.4882774353027344, \"Top\": 0.35343122482299805}, \"Polygon\": [{\"X\": 0.503026008605957, \"Y\": 0.35343122482299805}, {\"X\": 0.503026008605957, \"Y\": 0.3860974907875061}, {\"X\": 0.4882774353027344, \"Y\": 0.3860974907875061}, {\"X\": 0.4882774353027344, \"Y\": 0.35343122482299805}]}, \"Id\": \"92f980c2-5778-49c8-b932-d0941f988d0d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29475402832031, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014598599635064602, \"Height\": 0.027256200090050697, \"Left\": 0.48828399181365967, \"Top\": 0.38967660069465637}, \"Polygon\": [{\"X\": 0.5028825998306274, \"Y\": 0.38967660069465637}, {\"X\": 0.5028825998306274, \"Y\": 0.4169327914714813}, {\"X\": 0.48828399181365967, \"Y\": 0.4169327914714813}, {\"X\": 0.48828399181365967, \"Y\": 0.38967660069465637}]}, \"Id\": \"fde1c651-6cb7-4225-95fd-4b9ad0488e8e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51903533935547, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01502097025513649, \"Height\": 0.03251960128545761, \"Left\": 0.48820599913597107, \"Top\": 0.4553452134132385}, \"Polygon\": [{\"X\": 0.5032269954681396, \"Y\": 0.4553452134132385}, {\"X\": 0.5032269954681396, \"Y\": 0.48786479234695435}, {\"X\": 0.48820599913597107, \"Y\": 0.48786479234695435}, {\"X\": 0.48820599913597107, \"Y\": 0.4553452134132385}]}, \"Id\": \"9069d199-b4cf-470d-8d9a-7a3bbface491\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.86682891845703, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014525719918310642, \"Height\": 0.027523279190063477, \"Left\": 0.48831385374069214, \"Top\": 0.4915248155593872}, \"Polygon\": [{\"X\": 0.5028395652770996, \"Y\": 0.4915248155593872}, {\"X\": 0.5028395652770996, \"Y\": 0.5190480947494507}, {\"X\": 0.48831385374069214, \"Y\": 0.5190480947494507}, {\"X\": 0.48831385374069214, \"Y\": 0.4915248155593872}]}, \"Id\": \"b12976f5-5bce-4b33-9b05-81e3a9f2ae7e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33619689941406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015165629796683788, \"Height\": 0.03269445151090622, \"Left\": 0.48814553022384644, \"Top\": 0.5570311546325684}, \"Polygon\": [{\"X\": 0.5033111572265625, \"Y\": 0.5570311546325684}, {\"X\": 0.5033111572265625, \"Y\": 0.5897256135940552}, {\"X\": 0.48814553022384644, \"Y\": 0.5897256135940552}, {\"X\": 0.48814553022384644, \"Y\": 0.5570311546325684}]}, \"Id\": \"e1fa7028-915a-4e49-a4f2-f09ce071d805\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.90677642822266, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014585359953343868, \"Height\": 0.027422849088907242, \"Left\": 0.48836463689804077, \"Top\": 0.5931369066238403}, \"Polygon\": [{\"X\": 0.5029500126838684, \"Y\": 0.5931369066238403}, {\"X\": 0.5029500126838684, \"Y\": 0.6205597519874573}, {\"X\": 0.48836463689804077, \"Y\": 0.6205597519874573}, {\"X\": 0.48836463689804077, \"Y\": 0.5931369066238403}]}, \"Id\": \"f31d09b9-27c8-4e11-93fd-dce705a45cca\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65208435058594, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014668839983642101, \"Height\": 0.032493118196725845, \"Left\": 0.4634186923503876, \"Top\": 0.35362622141838074}, \"Polygon\": [{\"X\": 0.47808754444122314, \"Y\": 0.35362622141838074}, {\"X\": 0.47808754444122314, \"Y\": 0.3861193358898163}, {\"X\": 0.4634186923503876, \"Y\": 0.3861193358898163}, {\"X\": 0.4634186923503876, \"Y\": 0.35362622141838074}]}, \"Id\": \"676c8269-9305-4fe3-8da5-4983ebe54138\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.566162109375, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014251289889216423, \"Height\": 0.027536720037460327, \"Left\": 0.463487446308136, \"Top\": 0.3895701766014099}, \"Polygon\": [{\"X\": 0.47773873805999756, \"Y\": 0.3895701766014099}, {\"X\": 0.47773873805999756, \"Y\": 0.41710689663887024}, {\"X\": 0.463487446308136, \"Y\": 0.41710689663887024}, {\"X\": 0.463487446308136, \"Y\": 0.3895701766014099}]}, \"Id\": \"094cbf75-901d-407f-a167-df1846bd556e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.06715393066406, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01496633980423212, \"Height\": 0.03293151035904884, \"Left\": 0.46327126026153564, \"Top\": 0.45514822006225586}, \"Polygon\": [{\"X\": 0.4782375991344452, \"Y\": 0.45514822006225586}, {\"X\": 0.4782375991344452, \"Y\": 0.4880797266960144}, {\"X\": 0.46327126026153564, \"Y\": 0.4880797266960144}, {\"X\": 0.46327126026153564, \"Y\": 0.45514822006225586}]}, \"Id\": \"a8c7b7a7-6182-4f55-9c1d-babc98e9dc79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.66376495361328, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014267600141465664, \"Height\": 0.027626600116491318, \"Left\": 0.4635688066482544, \"Top\": 0.49133649468421936}, \"Polygon\": [{\"X\": 0.47783640027046204, \"Y\": 0.49133649468421936}, {\"X\": 0.47783640027046204, \"Y\": 0.518963098526001}, {\"X\": 0.4635688066482544, \"Y\": 0.518963098526001}, {\"X\": 0.4635688066482544, \"Y\": 0.49133649468421936}]}, \"Id\": \"63736d3c-4bdb-42b6-9c5a-234341666fb4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.6172866821289, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015139140188694, \"Height\": 0.032889001071453094, \"Left\": 0.4632261097431183, \"Top\": 0.5571122765541077}, \"Polygon\": [{\"X\": 0.4783652424812317, \"Y\": 0.5571122765541077}, {\"X\": 0.4783652424812317, \"Y\": 0.5900012850761414}, {\"X\": 0.4632261097431183, \"Y\": 0.5900012850761414}, {\"X\": 0.4632261097431183, \"Y\": 0.5571122765541077}]}, \"Id\": \"fb47aa10-0ede-4e72-8487-929548988983\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.57984161376953, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014474499970674515, \"Height\": 0.02780096046626568, \"Left\": 0.4633418917655945, \"Top\": 0.5930052399635315}, \"Polygon\": [{\"X\": 0.4778164029121399, \"Y\": 0.5930052399635315}, {\"X\": 0.4778164029121399, \"Y\": 0.6208062171936035}, {\"X\": 0.4633418917655945, \"Y\": 0.6208062171936035}, {\"X\": 0.4633418917655945, \"Y\": 0.5930052399635315}]}, \"Id\": \"cc1fe88f-5e6b-4316-8562-782200cc5dff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69434356689453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014578600414097309, \"Height\": 0.032682210206985474, \"Left\": 0.43835699558258057, \"Top\": 0.3535340428352356}, \"Polygon\": [{\"X\": 0.4529356062412262, \"Y\": 0.3535340428352356}, {\"X\": 0.4529356062412262, \"Y\": 0.38621625304222107}, {\"X\": 0.43835699558258057, \"Y\": 0.38621625304222107}, {\"X\": 0.43835699558258057, \"Y\": 0.3535340428352356}]}, \"Id\": \"dc27c870-33ca-45c4-9d72-a2c03ea28295\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48009490966797, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014441600069403648, \"Height\": 0.02734529972076416, \"Left\": 0.4383040964603424, \"Top\": 0.38966724276542664}, \"Polygon\": [{\"X\": 0.4527457058429718, \"Y\": 0.38966724276542664}, {\"X\": 0.4527457058429718, \"Y\": 0.4170125424861908}, {\"X\": 0.4383040964603424, \"Y\": 0.4170125424861908}, {\"X\": 0.4383040964603424, \"Y\": 0.38966724276542664}]}, \"Id\": \"894864fe-cfb0-4e15-a7f3-0937e7c17ec9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60317993164062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014900949783623219, \"Height\": 0.032863799482584, \"Left\": 0.4381949007511139, \"Top\": 0.4553092122077942}, \"Polygon\": [{\"X\": 0.45309585332870483, \"Y\": 0.4553092122077942}, {\"X\": 0.45309585332870483, \"Y\": 0.4881730079650879}, {\"X\": 0.4381949007511139, \"Y\": 0.4881730079650879}, {\"X\": 0.4381949007511139, \"Y\": 0.4553092122077942}]}, \"Id\": \"0f3ea938-88eb-4625-9935-7c564f8f27ac\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.74002838134766, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014455939643085003, \"Height\": 0.02762633003294468, \"Left\": 0.43833670020103455, \"Top\": 0.4914625287055969}, \"Polygon\": [{\"X\": 0.4527926445007324, \"Y\": 0.4914625287055969}, {\"X\": 0.4527926445007324, \"Y\": 0.519088864326477}, {\"X\": 0.43833670020103455, \"Y\": 0.519088864326477}, {\"X\": 0.43833670020103455, \"Y\": 0.4914625287055969}]}, \"Id\": \"243e14bc-9af1-4c1c-b14f-af0e389036c1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2423095703125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015056800097227097, \"Height\": 0.032811861485242844, \"Left\": 0.4381957948207855, \"Top\": 0.5569556355476379}, \"Polygon\": [{\"X\": 0.4532526135444641, \"Y\": 0.5569556355476379}, {\"X\": 0.4532526135444641, \"Y\": 0.5897675156593323}, {\"X\": 0.4381957948207855, \"Y\": 0.5897675156593323}, {\"X\": 0.4381957948207855, \"Y\": 0.5569556355476379}]}, \"Id\": \"ebbbbe59-123f-48b7-981f-bd9da74dc0ac\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.02056121826172, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014365729875862598, \"Height\": 0.02730225957930088, \"Left\": 0.43836510181427, \"Top\": 0.5932298898696899}, \"Polygon\": [{\"X\": 0.45273083448410034, \"Y\": 0.5932298898696899}, {\"X\": 0.45273083448410034, \"Y\": 0.6205321550369263}, {\"X\": 0.43836510181427, \"Y\": 0.6205321550369263}, {\"X\": 0.43836510181427, \"Y\": 0.5932298898696899}]}, \"Id\": \"3050e864-2d31-456e-aa9f-60c62ece2829\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76152801513672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014785650186240673, \"Height\": 0.0322725810110569, \"Left\": 0.41336220502853394, \"Top\": 0.3537231981754303}, \"Polygon\": [{\"X\": 0.4281478524208069, \"Y\": 0.3537231981754303}, {\"X\": 0.4281478524208069, \"Y\": 0.3859957754611969}, {\"X\": 0.41336220502853394, \"Y\": 0.3859957754611969}, {\"X\": 0.41336220502853394, \"Y\": 0.3537231981754303}]}, \"Id\": \"dbb24e49-bbc5-41ff-b769-4a77500e6b43\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40415954589844, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014426049776375294, \"Height\": 0.027258720248937607, \"Left\": 0.4133670926094055, \"Top\": 0.38977983593940735}, \"Polygon\": [{\"X\": 0.42779314517974854, \"Y\": 0.38977983593940735}, {\"X\": 0.42779314517974854, \"Y\": 0.41703855991363525}, {\"X\": 0.4133670926094055, \"Y\": 0.41703855991363525}, {\"X\": 0.4133670926094055, \"Y\": 0.38977983593940735}]}, \"Id\": \"5e73a860-9c44-4159-aa00-d8fb74e35266\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72802734375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014974430203437805, \"Height\": 0.03253304958343506, \"Left\": 0.41331976652145386, \"Top\": 0.4552071988582611}, \"Polygon\": [{\"X\": 0.42829421162605286, \"Y\": 0.4552071988582611}, {\"X\": 0.42829421162605286, \"Y\": 0.48774024844169617}, {\"X\": 0.41331976652145386, \"Y\": 0.48774024844169617}, {\"X\": 0.41331976652145386, \"Y\": 0.4552071988582611}]}, \"Id\": \"f2c89b58-77f0-4d08-b6a9-b910598a2e07\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04473876953125, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014460760168731213, \"Height\": 0.027810439467430115, \"Left\": 0.4133984446525574, \"Top\": 0.4912934899330139}, \"Polygon\": [{\"X\": 0.42785918712615967, \"Y\": 0.4912934899330139}, {\"X\": 0.42785918712615967, \"Y\": 0.5191039443016052}, {\"X\": 0.4133984446525574, \"Y\": 0.5191039443016052}, {\"X\": 0.4133984446525574, \"Y\": 0.4912934899330139}]}, \"Id\": \"84b6df11-8daf-4b0b-94c4-446880232ba4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55612182617188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015005559660494328, \"Height\": 0.03237204998731613, \"Left\": 0.41333940625190735, \"Top\": 0.557085394859314}, \"Polygon\": [{\"X\": 0.4283449649810791, \"Y\": 0.557085394859314}, {\"X\": 0.4283449649810791, \"Y\": 0.5894574522972107}, {\"X\": 0.41333940625190735, \"Y\": 0.5894574522972107}, {\"X\": 0.41333940625190735, \"Y\": 0.557085394859314}]}, \"Id\": \"7a076f04-9695-47cb-a5c8-4389c447d2f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.60303497314453, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014878470450639725, \"Height\": 0.027727840468287468, \"Left\": 0.4131653308868408, \"Top\": 0.5930261611938477}, \"Polygon\": [{\"X\": 0.42804381251335144, \"Y\": 0.5930261611938477}, {\"X\": 0.42804381251335144, \"Y\": 0.6207540035247803}, {\"X\": 0.4131653308868408, \"Y\": 0.6207540035247803}, {\"X\": 0.4131653308868408, \"Y\": 0.5930261611938477}]}, \"Id\": \"0db725cb-fe3a-4187-9414-b4263b8084a1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73184967041016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01468764990568161, \"Height\": 0.032399240881204605, \"Left\": 0.38838595151901245, \"Top\": 0.3536483645439148}, \"Polygon\": [{\"X\": 0.40307360887527466, \"Y\": 0.3536483645439148}, {\"X\": 0.40307360887527466, \"Y\": 0.3860476016998291}, {\"X\": 0.38838595151901245, \"Y\": 0.3860476016998291}, {\"X\": 0.38838595151901245, \"Y\": 0.3536483645439148}]}, \"Id\": \"d0ff3977-5c7b-4d97-9697-439ea894b00b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.03694152832031, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014693919569253922, \"Height\": 0.027408629655838013, \"Left\": 0.38818103075027466, \"Top\": 0.3896811008453369}, \"Polygon\": [{\"X\": 0.4028749465942383, \"Y\": 0.3896811008453369}, {\"X\": 0.4028749465942383, \"Y\": 0.4170897305011749}, {\"X\": 0.38818103075027466, \"Y\": 0.4170897305011749}, {\"X\": 0.38818103075027466, \"Y\": 0.3896811008453369}]}, \"Id\": \"4e8b2793-37cb-4433-863d-52ac345350e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45478820800781, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014794999733567238, \"Height\": 0.0323338508605957, \"Left\": 0.38838180899620056, \"Top\": 0.45550045371055603}, \"Polygon\": [{\"X\": 0.40317681431770325, \"Y\": 0.45550045371055603}, {\"X\": 0.40317681431770325, \"Y\": 0.48783430457115173}, {\"X\": 0.38838180899620056, \"Y\": 0.48783430457115173}, {\"X\": 0.38838180899620056, \"Y\": 0.45550045371055603}]}, \"Id\": \"25457550-dec2-4329-b862-b9ab24b6d154\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.79429626464844, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014340200461447239, \"Height\": 0.027621090412139893, \"Left\": 0.388348788022995, \"Top\": 0.4915722608566284}, \"Polygon\": [{\"X\": 0.40268900990486145, \"Y\": 0.4915722608566284}, {\"X\": 0.40268900990486145, \"Y\": 0.5191933512687683}, {\"X\": 0.388348788022995, \"Y\": 0.5191933512687683}, {\"X\": 0.388348788022995, \"Y\": 0.4915722608566284}]}, \"Id\": \"c88c6d24-eae5-4636-96da-7e848e42fbc4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26824188232422, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014868300408124924, \"Height\": 0.03309344872832298, \"Left\": 0.3883855938911438, \"Top\": 0.557000994682312}, \"Polygon\": [{\"X\": 0.4032539129257202, \"Y\": 0.557000994682312}, {\"X\": 0.4032539129257202, \"Y\": 0.5900944471359253}, {\"X\": 0.3883855938911438, \"Y\": 0.5900944471359253}, {\"X\": 0.3883855938911438, \"Y\": 0.557000994682312}]}, \"Id\": \"34e14634-4dba-4a25-b3b2-3eccb3938ac3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.28636932373047, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014463139697909355, \"Height\": 0.027596499770879745, \"Left\": 0.3882882595062256, \"Top\": 0.5931046009063721}, \"Polygon\": [{\"X\": 0.4027513861656189, \"Y\": 0.5931046009063721}, {\"X\": 0.4027513861656189, \"Y\": 0.6207010746002197}, {\"X\": 0.3882882595062256, \"Y\": 0.6207010746002197}, {\"X\": 0.3882882595062256, \"Y\": 0.5931046009063721}]}, \"Id\": \"efc47cf2-2ae8-4850-b57b-1c8dd3d0a940\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75662994384766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014569110237061977, \"Height\": 0.032332148402929306, \"Left\": 0.36347073316574097, \"Top\": 0.3537360727787018}, \"Polygon\": [{\"X\": 0.3780398368835449, \"Y\": 0.3537360727787018}, {\"X\": 0.3780398368835449, \"Y\": 0.3860682249069214}, {\"X\": 0.36347073316574097, \"Y\": 0.3860682249069214}, {\"X\": 0.36347073316574097, \"Y\": 0.3537360727787018}]}, \"Id\": \"868f6d4c-7fed-4fca-bd78-15ae5b473076\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49173736572266, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01428920030593872, \"Height\": 0.027472930029034615, \"Left\": 0.36345499753952026, \"Top\": 0.38953548669815063}, \"Polygon\": [{\"X\": 0.377744197845459, \"Y\": 0.38953548669815063}, {\"X\": 0.377744197845459, \"Y\": 0.4170084297657013}, {\"X\": 0.36345499753952026, \"Y\": 0.4170084297657013}, {\"X\": 0.36345499753952026, \"Y\": 0.38953548669815063}]}, \"Id\": \"8f470528-7ecd-47ed-aa48-7c8ed89525f7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77154541015625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014445439912378788, \"Height\": 0.03261297941207886, \"Left\": 0.363518089056015, \"Top\": 0.45521530508995056}, \"Polygon\": [{\"X\": 0.3779635429382324, \"Y\": 0.45521530508995056}, {\"X\": 0.3779635429382324, \"Y\": 0.4878282845020294}, {\"X\": 0.363518089056015, \"Y\": 0.4878282845020294}, {\"X\": 0.363518089056015, \"Y\": 0.45521530508995056}]}, \"Id\": \"c75eb47c-2410-4c05-831e-514da57b5642\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33631896972656, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014164050109684467, \"Height\": 0.027819480746984482, \"Left\": 0.3635111451148987, \"Top\": 0.4912949502468109}, \"Polygon\": [{\"X\": 0.37767520546913147, \"Y\": 0.4912949502468109}, {\"X\": 0.37767520546913147, \"Y\": 0.5191144347190857}, {\"X\": 0.3635111451148987, \"Y\": 0.5191144347190857}, {\"X\": 0.3635111451148987, \"Y\": 0.4912949502468109}]}, \"Id\": \"f19f9219-7935-4561-9f77-db17a917db4b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71244049072266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014621900394558907, \"Height\": 0.032250259071588516, \"Left\": 0.3634859025478363, \"Top\": 0.5572124719619751}, \"Polygon\": [{\"X\": 0.37810778617858887, \"Y\": 0.5572124719619751}, {\"X\": 0.37810778617858887, \"Y\": 0.5894627571105957}, {\"X\": 0.3634859025478363, \"Y\": 0.5894627571105957}, {\"X\": 0.3634859025478363, \"Y\": 0.5572124719619751}]}, \"Id\": \"da9c2d9b-614b-48b0-a315-9206e21f18a7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.12734985351562, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014450100250542164, \"Height\": 0.0275689996778965, \"Left\": 0.36328428983688354, \"Top\": 0.5931174755096436}, \"Polygon\": [{\"X\": 0.37773439288139343, \"Y\": 0.5931174755096436}, {\"X\": 0.37773439288139343, \"Y\": 0.6206864714622498}, {\"X\": 0.36328428983688354, \"Y\": 0.6206864714622498}, {\"X\": 0.36328428983688354, \"Y\": 0.5931174755096436}]}, \"Id\": \"9defb5b8-00c7-4e38-a0b2-5272f6864fea\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5838851928711, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015198860317468643, \"Height\": 0.024131931364536285, \"Left\": 0.34206780791282654, \"Top\": 0.053701333701610565}, \"Polygon\": [{\"X\": 0.3572666645050049, \"Y\": 0.053701333701610565}, {\"X\": 0.3572666645050049, \"Y\": 0.07783326506614685}, {\"X\": 0.34206780791282654, \"Y\": 0.07783326506614685}, {\"X\": 0.34206780791282654, \"Y\": 0.053701333701610565}]}, \"Id\": \"303b87cc-80d5-4728-a1c2-25ba1236c18b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97712707519531, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01580665074288845, \"Height\": 0.04765823855996132, \"Left\": 0.3420812487602234, \"Top\": 0.08084513992071152}, \"Polygon\": [{\"X\": 0.3578878939151764, \"Y\": 0.08084513992071152}, {\"X\": 0.3578878939151764, \"Y\": 0.12850338220596313}, {\"X\": 0.3420812487602234, \"Y\": 0.12850338220596313}, {\"X\": 0.3420812487602234, \"Y\": 0.08084513992071152}]}, \"Id\": \"2dcb9f46-6477-457d-8492-33ee6562a859\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82211303710938, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014840099960565567, \"Height\": 0.02139906957745552, \"Left\": 0.31929120421409607, \"Top\": 0.05351407453417778}, \"Polygon\": [{\"X\": 0.33413130044937134, \"Y\": 0.05351407453417778}, {\"X\": 0.33413130044937134, \"Y\": 0.0749131441116333}, {\"X\": 0.31929120421409607, \"Y\": 0.0749131441116333}, {\"X\": 0.31929120421409607, \"Y\": 0.05351407453417778}]}, \"Id\": \"5f8dc55c-a83c-4ef2-bab2-ad82a4d51874\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92874908447266, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015229170210659504, \"Height\": 0.06953112781047821, \"Left\": 0.3192451000213623, \"Top\": 0.07877875864505768}, \"Polygon\": [{\"X\": 0.33447426557540894, \"Y\": 0.07877875864505768}, {\"X\": 0.33447426557540894, \"Y\": 0.1483098864555359}, {\"X\": 0.3192451000213623, \"Y\": 0.1483098864555359}, {\"X\": 0.3192451000213623, \"Y\": 0.07877875864505768}]}, \"Id\": \"5e120fc3-2471-4c21-a3fb-9d3c92250cc5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 93.27751159667969, \"Text\": \"Hel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005956800188869238, \"Height\": 0.008516600355505943, \"Left\": 0.16934260725975037, \"Top\": 0.46851029992103577}, \"Polygon\": [{\"X\": 0.17529940605163574, \"Y\": 0.46851029992103577}, {\"X\": 0.17529940605163574, \"Y\": 0.47702690958976746}, {\"X\": 0.16934260725975037, \"Y\": 0.47702690958976746}, {\"X\": 0.16934260725975037, \"Y\": 0.46851029992103577}]}, \"Id\": \"390501a5-f8d6-478b-b6f4-720b793e5358\"}, {\"BlockType\": \"WORD\", \"Confidence\": 85.37571716308594, \"Text\": \"lo\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00602420000359416, \"Height\": 0.005446560215204954, \"Left\": 0.16904370486736298, \"Top\": 0.47829800844192505}, \"Polygon\": [{\"X\": 0.17506790161132812, \"Y\": 0.47829800844192505}, {\"X\": 0.17506790161132812, \"Y\": 0.4837445616722107}, {\"X\": 0.16904370486736298, \"Y\": 0.4837445616722107}, {\"X\": 0.16904370486736298, \"Y\": 0.47829800844192505}]}, \"Id\": \"62433f7b-1223-4f80-b30c-0d0e48a95a06\"}, {\"BlockType\": \"WORD\", \"Confidence\": 78.96895599365234, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006351590156555176, \"Height\": 0.016702279448509216, \"Left\": 0.16908466815948486, \"Top\": 0.4853353202342987}, \"Polygon\": [{\"X\": 0.17543625831604004, \"Y\": 0.4853353202342987}, {\"X\": 0.17543625831604004, \"Y\": 0.5020375847816467}, {\"X\": 0.16908466815948486, \"Y\": 0.5020375847816467}, {\"X\": 0.16908466815948486, \"Y\": 0.4853353202342987}]}, \"Id\": \"d79afbf8-9428-4cfc-ab8c-0b0027a8bfbc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 90.05780792236328, \"Text\": \"arcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005947600118815899, \"Height\": 0.01614736020565033, \"Left\": 0.16886019706726074, \"Top\": 0.5145724415779114}, \"Polygon\": [{\"X\": 0.17480780184268951, \"Y\": 0.5145724415779114}, {\"X\": 0.17480780184268951, \"Y\": 0.5307198166847229}, {\"X\": 0.16886019706726074, \"Y\": 0.5307198166847229}, {\"X\": 0.16886019706726074, \"Y\": 0.5145724415779114}]}, \"Id\": \"9f7147a2-ca0f-46b0-871c-08b5a62f20fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.28270721435547, \"Text\": \"here!\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006102470215409994, \"Height\": 0.01430364977568388, \"Left\": 0.16903969645500183, \"Top\": 0.5326382517814636}, \"Polygon\": [{\"X\": 0.17514216899871826, \"Y\": 0.5326382517814636}, {\"X\": 0.17514216899871826, \"Y\": 0.546941876411438}, {\"X\": 0.16903969645500183, \"Y\": 0.546941876411438}, {\"X\": 0.16903969645500183, \"Y\": 0.5326382517814636}]}, \"Id\": \"37b25100-d201-400f-9f74-ae366a1a5bc0\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.98450469970703, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20093996822834015, \"Height\": 0.3052766025066376, \"Left\": 0.3575907051563263, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.5585306882858276, \"Y\": 0.34827449917793274}, {\"X\": 0.5585306882858276, \"Y\": 0.6535511016845703}, {\"X\": 0.3575907051563263, \"Y\": 0.6535511016845703}, {\"X\": 0.3575907051563263, \"Y\": 0.34827449917793274}]}, \"Id\": \"de6703e3-bef5-40cc-a8a9-a317de476a7c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1d67b2c7-8805-466b-bb90-1caaf374f919\", \"110f73be-5e1b-4421-8f0e-dbbb57a9afa6\", \"3882cb96-59ce-4cba-9049-0f67d09ac51f\", \"b4c55491-627e-422d-95af-4e6c41cea402\", \"d5e6f398-a110-4e3d-b302-0b7de2de1620\", \"d3a51d6f-6f36-45f0-823f-56253d8bb614\", \"aa1d9324-8428-46df-aa6a-97a0ba88dbe2\", \"9461d9fe-884e-41aa-a79d-333e28783fe1\", \"7f957a12-86ef-4bfc-9267-d8436e7e402c\", \"e0eb0970-d4ce-4464-8cf8-ccad5acff9c7\", \"03418599-5b79-431c-a4e5-5bf247af891c\", \"ab17701a-a68a-4b22-999a-e5cdb89f7d04\", \"c823bdd4-e398-4eed-bcef-255ec9127213\", \"93804058-8670-4d2f-ba29-e9384cba6ddf\", \"d4d85388-527e-44ee-8089-74f79ea7925e\", \"8c54f215-15d5-456b-93a8-57fe9e5cfde1\", \"79b1d6cb-99e1-4b1c-9899-78a52fea3fc0\", \"870516dc-83a0-4650-a2c4-026fed6c5a46\", \"04a1f2ab-068e-4d06-9f2d-ebfa60ce9525\", \"c8fb520f-f5a7-42ca-ae4b-ecdbf27055b8\", \"1fa67bae-7184-4176-b528-108378398474\", \"b07ddf18-0579-4727-aea5-0d689c38683f\", \"2f8a72b0-2552-4299-8c2d-add625c02159\", \"d1816a31-8e17-4f64-a1e7-fe9771372e35\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.5336775779724121, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.5585306882858276, \"Y\": 0.34827449917793274}, {\"X\": 0.5585306882858276, \"Y\": 0.4489421546459198}, {\"X\": 0.5336775779724121, \"Y\": 0.4489421546459198}, {\"X\": 0.5336775779724121, \"Y\": 0.34827449917793274}]}, \"Id\": \"1d67b2c7-8805-466b-bb90-1caaf374f919\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"813b7353-af3a-4033-a48b-60396912a374\", \"498e3591-8e37-47cd-adaa-b1eb2d7e6bda\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10394132137298584, \"Left\": 0.5336775779724121, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.5585306882858276, \"Y\": 0.4489421248435974}, {\"X\": 0.5585306882858276, \"Y\": 0.5528834462165833}, {\"X\": 0.5336775779724121, \"Y\": 0.5528834462165833}, {\"X\": 0.5336775779724121, \"Y\": 0.4489421248435974}]}, \"Id\": \"110f73be-5e1b-4421-8f0e-dbbb57a9afa6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1c811de-d6ac-40fe-9f52-336c4a75566c\", \"713e4242-ff40-4197-a3c7-8ed583b0f718\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.5336775779724121, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.5585306882858276, \"Y\": 0.5528834462165833}, {\"X\": 0.5585306882858276, \"Y\": 0.6535511016845703}, {\"X\": 0.5336775779724121, \"Y\": 0.6535511016845703}, {\"X\": 0.5336775779724121, \"Y\": 0.5528834462165833}]}, \"Id\": \"3882cb96-59ce-4cba-9049-0f67d09ac51f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2edcfa6d-54d5-413e-b8f6-e25c0bcabdea\", \"947ab6bd-4084-4a2a-84ad-823cef128eb2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02485308051109314, \"Height\": 0.10066764056682587, \"Left\": 0.5088244676589966, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.5336775779724121, \"Y\": 0.34827449917793274}, {\"X\": 0.5336775779724121, \"Y\": 0.4489421546459198}, {\"X\": 0.5088244676589966, \"Y\": 0.4489421546459198}, {\"X\": 0.5088244676589966, \"Y\": 0.34827449917793274}]}, \"Id\": \"b4c55491-627e-422d-95af-4e6c41cea402\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c7dd0c61-0cd7-4b80-9c6d-4bdddc72a648\", \"b6a55aea-95d0-426d-8495-fb516ef2a311\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02485308051109314, \"Height\": 0.10394132137298584, \"Left\": 0.5088244676589966, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.5336775779724121, \"Y\": 0.4489421248435974}, {\"X\": 0.5336775779724121, \"Y\": 0.5528834462165833}, {\"X\": 0.5088244676589966, \"Y\": 0.5528834462165833}, {\"X\": 0.5088244676589966, \"Y\": 0.4489421248435974}]}, \"Id\": \"d5e6f398-a110-4e3d-b302-0b7de2de1620\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"574cb476-3330-4daf-9d95-9a12c7d3a27c\", \"9d635bcb-f693-4623-9e4a-f6144c90a78a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02485308051109314, \"Height\": 0.10066764056682587, \"Left\": 0.5088244676589966, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.5336775779724121, \"Y\": 0.5528834462165833}, {\"X\": 0.5336775779724121, \"Y\": 0.6535511016845703}, {\"X\": 0.5088244676589966, \"Y\": 0.6535511016845703}, {\"X\": 0.5088244676589966, \"Y\": 0.5528834462165833}]}, \"Id\": \"d3a51d6f-6f36-45f0-823f-56253d8bb614\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82ab1ee7-481d-4c33-b62f-c8123a836785\", \"43b7fe4a-c711-4cc0-b608-f8aafa30e257\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025910690426826477, \"Height\": 0.10066764056682587, \"Left\": 0.4829137921333313, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.5088244676589966, \"Y\": 0.34827449917793274}, {\"X\": 0.5088244676589966, \"Y\": 0.4489421546459198}, {\"X\": 0.4829137921333313, \"Y\": 0.4489421546459198}, {\"X\": 0.4829137921333313, \"Y\": 0.34827449917793274}]}, \"Id\": \"aa1d9324-8428-46df-aa6a-97a0ba88dbe2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92f980c2-5778-49c8-b932-d0941f988d0d\", \"fde1c651-6cb7-4225-95fd-4b9ad0488e8e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025910690426826477, \"Height\": 0.10394132137298584, \"Left\": 0.4829137921333313, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.5088244676589966, \"Y\": 0.4489421248435974}, {\"X\": 0.5088244676589966, \"Y\": 0.5528834462165833}, {\"X\": 0.4829137921333313, \"Y\": 0.5528834462165833}, {\"X\": 0.4829137921333313, \"Y\": 0.4489421248435974}]}, \"Id\": \"9461d9fe-884e-41aa-a79d-333e28783fe1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9069d199-b4cf-470d-8d9a-7a3bbface491\", \"b12976f5-5bce-4b33-9b05-81e3a9f2ae7e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025910690426826477, \"Height\": 0.10066764056682587, \"Left\": 0.4829137921333313, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.5088244676589966, \"Y\": 0.5528834462165833}, {\"X\": 0.5088244676589966, \"Y\": 0.6535511016845703}, {\"X\": 0.4829137921333313, \"Y\": 0.6535511016845703}, {\"X\": 0.4829137921333313, \"Y\": 0.5528834462165833}]}, \"Id\": \"7f957a12-86ef-4bfc-9267-d8436e7e402c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e1fa7028-915a-4e49-a4f2-f09ce071d805\", \"f31d09b9-27c8-4e11-93fd-dce705a45cca\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.45806068181991577, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.4829137921333313, \"Y\": 0.34827449917793274}, {\"X\": 0.4829137921333313, \"Y\": 0.4489421546459198}, {\"X\": 0.45806068181991577, \"Y\": 0.4489421546459198}, {\"X\": 0.45806068181991577, \"Y\": 0.34827449917793274}]}, \"Id\": \"e0eb0970-d4ce-4464-8cf8-ccad5acff9c7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"676c8269-9305-4fe3-8da5-4983ebe54138\", \"094cbf75-901d-407f-a167-df1846bd556e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10394132137298584, \"Left\": 0.45806068181991577, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.4829137921333313, \"Y\": 0.4489421248435974}, {\"X\": 0.4829137921333313, \"Y\": 0.5528834462165833}, {\"X\": 0.45806068181991577, \"Y\": 0.5528834462165833}, {\"X\": 0.45806068181991577, \"Y\": 0.4489421248435974}]}, \"Id\": \"03418599-5b79-431c-a4e5-5bf247af891c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a8c7b7a7-6182-4f55-9c1d-babc98e9dc79\", \"63736d3c-4bdb-42b6-9c5a-234341666fb4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.45806068181991577, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.4829137921333313, \"Y\": 0.5528834462165833}, {\"X\": 0.4829137921333313, \"Y\": 0.6535511016845703}, {\"X\": 0.45806068181991577, \"Y\": 0.6535511016845703}, {\"X\": 0.45806068181991577, \"Y\": 0.5528834462165833}]}, \"Id\": \"ab17701a-a68a-4b22-999a-e5cdb89f7d04\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fb47aa10-0ede-4e72-8487-929548988983\", \"cc1fe88f-5e6b-4316-8562-782200cc5dff\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.43320757150650024, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.45806068181991577, \"Y\": 0.34827449917793274}, {\"X\": 0.45806068181991577, \"Y\": 0.4489421546459198}, {\"X\": 0.43320757150650024, \"Y\": 0.4489421546459198}, {\"X\": 0.43320757150650024, \"Y\": 0.34827449917793274}]}, \"Id\": \"c823bdd4-e398-4eed-bcef-255ec9127213\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc27c870-33ca-45c4-9d72-a2c03ea28295\", \"894864fe-cfb0-4e15-a7f3-0937e7c17ec9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10394132137298584, \"Left\": 0.43320757150650024, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.45806068181991577, \"Y\": 0.4489421248435974}, {\"X\": 0.45806068181991577, \"Y\": 0.5528834462165833}, {\"X\": 0.43320757150650024, \"Y\": 0.5528834462165833}, {\"X\": 0.43320757150650024, \"Y\": 0.4489421248435974}]}, \"Id\": \"93804058-8670-4d2f-ba29-e9384cba6ddf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f3ea938-88eb-4625-9935-7c564f8f27ac\", \"243e14bc-9af1-4c1c-b14f-af0e389036c1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.43320757150650024, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.45806068181991577, \"Y\": 0.5528834462165833}, {\"X\": 0.45806068181991577, \"Y\": 0.6535511016845703}, {\"X\": 0.43320757150650024, \"Y\": 0.6535511016845703}, {\"X\": 0.43320757150650024, \"Y\": 0.5528834462165833}]}, \"Id\": \"d4d85388-527e-44ee-8089-74f79ea7925e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ebbbbe59-123f-48b7-981f-bd9da74dc0ac\", \"3050e864-2d31-456e-aa9f-60c62ece2829\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.4083544611930847, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.43320757150650024, \"Y\": 0.34827449917793274}, {\"X\": 0.43320757150650024, \"Y\": 0.4489421546459198}, {\"X\": 0.4083544611930847, \"Y\": 0.4489421546459198}, {\"X\": 0.4083544611930847, \"Y\": 0.34827449917793274}]}, \"Id\": \"8c54f215-15d5-456b-93a8-57fe9e5cfde1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dbb24e49-bbc5-41ff-b769-4a77500e6b43\", \"5e73a860-9c44-4159-aa00-d8fb74e35266\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10394132137298584, \"Left\": 0.4083544611930847, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.43320757150650024, \"Y\": 0.4489421248435974}, {\"X\": 0.43320757150650024, \"Y\": 0.5528834462165833}, {\"X\": 0.4083544611930847, \"Y\": 0.5528834462165833}, {\"X\": 0.4083544611930847, \"Y\": 0.4489421248435974}]}, \"Id\": \"79b1d6cb-99e1-4b1c-9899-78a52fea3fc0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f2c89b58-77f0-4d08-b6a9-b910598a2e07\", \"84b6df11-8daf-4b0b-94c4-446880232ba4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.4083544611930847, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.43320757150650024, \"Y\": 0.5528834462165833}, {\"X\": 0.43320757150650024, \"Y\": 0.6535511016845703}, {\"X\": 0.4083544611930847, \"Y\": 0.6535511016845703}, {\"X\": 0.4083544611930847, \"Y\": 0.5528834462165833}]}, \"Id\": \"870516dc-83a0-4650-a2c4-026fed6c5a46\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7a076f04-9695-47cb-a5c8-4389c447d2f2\", \"0db725cb-fe3a-4187-9414-b4263b8084a1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.3835013508796692, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.4083544611930847, \"Y\": 0.34827449917793274}, {\"X\": 0.4083544611930847, \"Y\": 0.4489421546459198}, {\"X\": 0.3835013508796692, \"Y\": 0.4489421546459198}, {\"X\": 0.3835013508796692, \"Y\": 0.34827449917793274}]}, \"Id\": \"04a1f2ab-068e-4d06-9f2d-ebfa60ce9525\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d0ff3977-5c7b-4d97-9697-439ea894b00b\", \"4e8b2793-37cb-4433-863d-52ac345350e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10394132137298584, \"Left\": 0.3835013508796692, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.4083544611930847, \"Y\": 0.4489421248435974}, {\"X\": 0.4083544611930847, \"Y\": 0.5528834462165833}, {\"X\": 0.3835013508796692, \"Y\": 0.5528834462165833}, {\"X\": 0.3835013508796692, \"Y\": 0.4489421248435974}]}, \"Id\": \"c8fb520f-f5a7-42ca-ae4b-ecdbf27055b8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"25457550-dec2-4329-b862-b9ab24b6d154\", \"c88c6d24-eae5-4636-96da-7e848e42fbc4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024853110313415527, \"Height\": 0.10066764056682587, \"Left\": 0.3835013508796692, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.4083544611930847, \"Y\": 0.5528834462165833}, {\"X\": 0.4083544611930847, \"Y\": 0.6535511016845703}, {\"X\": 0.3835013508796692, \"Y\": 0.6535511016845703}, {\"X\": 0.3835013508796692, \"Y\": 0.5528834462165833}]}, \"Id\": \"1fa67bae-7184-4176-b528-108378398474\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"34e14634-4dba-4a25-b3b2-3eccb3938ac3\", \"efc47cf2-2ae8-4850-b57b-1c8dd3d0a940\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0259106308221817, \"Height\": 0.10066764056682587, \"Left\": 0.3575907051563263, \"Top\": 0.34827449917793274}, \"Polygon\": [{\"X\": 0.3835013508796692, \"Y\": 0.34827449917793274}, {\"X\": 0.3835013508796692, \"Y\": 0.4489421546459198}, {\"X\": 0.3575907051563263, \"Y\": 0.4489421546459198}, {\"X\": 0.3575907051563263, \"Y\": 0.34827449917793274}]}, \"Id\": \"b07ddf18-0579-4727-aea5-0d689c38683f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"868f6d4c-7fed-4fca-bd78-15ae5b473076\", \"8f470528-7ecd-47ed-aa48-7c8ed89525f7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0259106308221817, \"Height\": 0.10394132137298584, \"Left\": 0.3575907051563263, \"Top\": 0.4489421248435974}, \"Polygon\": [{\"X\": 0.3835013508796692, \"Y\": 0.4489421248435974}, {\"X\": 0.3835013508796692, \"Y\": 0.5528834462165833}, {\"X\": 0.3575907051563263, \"Y\": 0.5528834462165833}, {\"X\": 0.3575907051563263, \"Y\": 0.4489421248435974}]}, \"Id\": \"2f8a72b0-2552-4299-8c2d-add625c02159\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c75eb47c-2410-4c05-831e-514da57b5642\", \"f19f9219-7935-4561-9f77-db17a917db4b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.98450469970703, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0259106308221817, \"Height\": 0.10066764056682587, \"Left\": 0.3575907051563263, \"Top\": 0.5528834462165833}, \"Polygon\": [{\"X\": 0.3835013508796692, \"Y\": 0.5528834462165833}, {\"X\": 0.3835013508796692, \"Y\": 0.6535511016845703}, {\"X\": 0.3575907051563263, \"Y\": 0.6535511016845703}, {\"X\": 0.3575907051563263, \"Y\": 0.5528834462165833}]}, \"Id\": \"d1816a31-8e17-4f64-a1e7-fe9771372e35\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da9c2d9b-614b-48b0-a315-9206e21f18a7\", \"9defb5b8-00c7-4e38-a0b2-5272f6864fea\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.9332046508789, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1450279951095581, \"Height\": 0.44100576639175415, \"Left\": 0.6613295674324036, \"Top\": 0.2394343912601471}, \"Polygon\": [{\"X\": 0.8063575625419617, \"Y\": 0.2394343912601471}, {\"X\": 0.8063575625419617, \"Y\": 0.6804401874542236}, {\"X\": 0.6613295674324036, \"Y\": 0.6804401874542236}, {\"X\": 0.6613295674324036, \"Y\": 0.2394343912601471}]}, \"Id\": \"3ba8eec4-ab76-43ad-b20e-a5083f6c69c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7852e0e8-1c82-4c3a-bf0c-1983640e555f\", \"bd8240b7-6ad7-4e34-a1f9-09cf80597fad\", \"f82d987f-7dca-4e6d-9ecc-6db89100498f\", \"b4b88d29-9687-4c0b-a844-405da3e0fd22\", \"7dbe64b6-2b41-4240-a197-2b4794a2360d\", \"ec6167e1-6886-4f4a-a4eb-cc1b1970f4c4\", \"ba6ebc5e-c68b-434b-b0b2-71a73cdf5a66\", \"fd0f9b90-6307-4773-ba94-69625e1fdecd\", \"4537fe1d-183d-4039-b7b1-852d3ce2e59d\", \"2ed67895-7318-42b1-a6c9-2165cc181c81\", \"e231e552-17e3-4f39-ba1d-3835a1b90449\", \"ef64d3cf-7262-47a0-8337-47f805d0daf6\", \"7a5f5664-ac28-495a-a7e5-a0b4240c0ce5\", \"6adf4721-6dea-4f02-b6dd-9a01714d8cb9\", \"511d1c9f-f035-4274-9c75-9abd91cbc599\", \"6903ed24-5d63-4c03-a05c-c92edc333982\", \"2454c5ef-8282-4e89-885c-b5a11776cdf7\", \"91c5fa60-028a-460e-834e-3fdeab7ad77d\", \"8e7966f2-2a76-406e-b85f-ce5cbe837b34\", \"48d1a390-8f12-4f41-bb65-1bf89dee4996\", \"170edaf9-4841-408e-ae89-1fa8e5734573\", \"628c6cf1-c4e4-4cba-8053-8d9367badab5\", \"50c16b82-d2db-46ba-9444-bca93993f285\", \"830ad0b3-746d-4dc5-bef7-47375d4598b9\", \"54c3a020-1155-4350-9c0f-29f8fcd44706\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028252199292182922, \"Height\": 0.09007281810045242, \"Left\": 0.7781053781509399, \"Top\": 0.2394343912601471}, \"Polygon\": [{\"X\": 0.8063575625419617, \"Y\": 0.2394343912601471}, {\"X\": 0.8063575625419617, \"Y\": 0.3295072019100189}, {\"X\": 0.7781053781509399, \"Y\": 0.3295072019100189}, {\"X\": 0.7781053781509399, \"Y\": 0.2394343912601471}]}, \"Id\": \"7852e0e8-1c82-4c3a-bf0c-1983640e555f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f27a4ab-90eb-4549-825e-f958f62594b1\", \"fdafc01d-1b86-4aff-9292-17f9bc4bd1a9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028252199292182922, \"Height\": 0.08773328363895416, \"Left\": 0.7781053781509399, \"Top\": 0.3295072019100189}, \"Polygon\": [{\"X\": 0.8063575625419617, \"Y\": 0.3295072019100189}, {\"X\": 0.8063575625419617, \"Y\": 0.4172404706478119}, {\"X\": 0.7781053781509399, \"Y\": 0.4172404706478119}, {\"X\": 0.7781053781509399, \"Y\": 0.3295072019100189}]}, \"Id\": \"bd8240b7-6ad7-4e34-a1f9-09cf80597fad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b5e3dfa9-6aa3-47c3-b8e7-94cd40f9c787\", \"303cec6f-de5b-421b-8e80-4202b086c0ef\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028252199292182922, \"Height\": 0.08773323893547058, \"Left\": 0.7781053781509399, \"Top\": 0.4172404706478119}, \"Polygon\": [{\"X\": 0.8063575625419617, \"Y\": 0.4172404706478119}, {\"X\": 0.8063575625419617, \"Y\": 0.5049737095832825}, {\"X\": 0.7781053781509399, \"Y\": 0.5049737095832825}, {\"X\": 0.7781053781509399, \"Y\": 0.4172404706478119}]}, \"Id\": \"f82d987f-7dca-4e6d-9ecc-6db89100498f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"30f35be8-bf0f-4e38-8e46-c8c4b8fd58fd\", \"140a9fff-8cd7-4bef-b0d7-f612f56a4488\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028252199292182922, \"Height\": 0.08539371937513351, \"Left\": 0.7781053781509399, \"Top\": 0.5049737095832825}, \"Polygon\": [{\"X\": 0.8063575625419617, \"Y\": 0.5049737095832825}, {\"X\": 0.8063575625419617, \"Y\": 0.5903674364089966}, {\"X\": 0.7781053781509399, \"Y\": 0.5903674364089966}, {\"X\": 0.7781053781509399, \"Y\": 0.5049737095832825}]}, \"Id\": \"b4b88d29-9687-4c0b-a844-405da3e0fd22\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"421a9089-0140-4727-a2b0-bc0c3c6e090d\", \"5ad2b874-eac6-4e85-9a94-332ac6451b4b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028252199292182922, \"Height\": 0.09007275104522705, \"Left\": 0.7781053781509399, \"Top\": 0.5903674364089966}, \"Polygon\": [{\"X\": 0.8063575625419617, \"Y\": 0.5903674364089966}, {\"X\": 0.8063575625419617, \"Y\": 0.6804401874542236}, {\"X\": 0.7781053781509399, \"Y\": 0.6804401874542236}, {\"X\": 0.7781053781509399, \"Y\": 0.5903674364089966}]}, \"Id\": \"7dbe64b6-2b41-4240-a197-2b4794a2360d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9b3d0baf-51a8-491a-80c7-695931b3fab1\", \"5753df70-8847-4dda-bda6-4327fd0654d0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.09007281810045242, \"Left\": 0.7484405636787415, \"Top\": 0.2394343912601471}, \"Polygon\": [{\"X\": 0.7781053781509399, \"Y\": 0.2394343912601471}, {\"X\": 0.7781053781509399, \"Y\": 0.3295072019100189}, {\"X\": 0.7484405636787415, \"Y\": 0.3295072019100189}, {\"X\": 0.7484405636787415, \"Y\": 0.2394343912601471}]}, \"Id\": \"ec6167e1-6886-4f4a-a4eb-cc1b1970f4c4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"44d96b4e-6d56-4ac5-8702-6f69a4587bfd\", \"4dbbee5f-1a38-4f7b-b980-b56e38d59747\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.08773328363895416, \"Left\": 0.7484405636787415, \"Top\": 0.3295072019100189}, \"Polygon\": [{\"X\": 0.7781053781509399, \"Y\": 0.3295072019100189}, {\"X\": 0.7781053781509399, \"Y\": 0.4172404706478119}, {\"X\": 0.7484405636787415, \"Y\": 0.4172404706478119}, {\"X\": 0.7484405636787415, \"Y\": 0.3295072019100189}]}, \"Id\": \"ba6ebc5e-c68b-434b-b0b2-71a73cdf5a66\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4dc26a45-c6ce-44fc-a9b6-5ef75af0db65\", \"40e92bb6-217f-4d7a-aab5-78102c9b7db1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.08773323893547058, \"Left\": 0.7484405636787415, \"Top\": 0.4172404706478119}, \"Polygon\": [{\"X\": 0.7781053781509399, \"Y\": 0.4172404706478119}, {\"X\": 0.7781053781509399, \"Y\": 0.5049737095832825}, {\"X\": 0.7484405636787415, \"Y\": 0.5049737095832825}, {\"X\": 0.7484405636787415, \"Y\": 0.4172404706478119}]}, \"Id\": \"fd0f9b90-6307-4773-ba94-69625e1fdecd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"07e947fc-4b4c-4cea-850b-547c8165afd9\", \"2218e13b-4336-4b2b-a115-5e5b4d285139\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.08539371937513351, \"Left\": 0.7484405636787415, \"Top\": 0.5049737095832825}, \"Polygon\": [{\"X\": 0.7781053781509399, \"Y\": 0.5049737095832825}, {\"X\": 0.7781053781509399, \"Y\": 0.5903674364089966}, {\"X\": 0.7484405636787415, \"Y\": 0.5903674364089966}, {\"X\": 0.7484405636787415, \"Y\": 0.5049737095832825}]}, \"Id\": \"4537fe1d-183d-4039-b7b1-852d3ce2e59d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f726798d-b15f-47d5-bbe3-72fae2c2b64c\", \"bdf972c4-5005-4592-8926-532f2fbb22f3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.09007275104522705, \"Left\": 0.7484405636787415, \"Top\": 0.5903674364089966}, \"Polygon\": [{\"X\": 0.7781053781509399, \"Y\": 0.5903674364089966}, {\"X\": 0.7781053781509399, \"Y\": 0.6804401874542236}, {\"X\": 0.7484405636787415, \"Y\": 0.6804401874542236}, {\"X\": 0.7484405636787415, \"Y\": 0.5903674364089966}]}, \"Id\": \"2ed67895-7318-42b1-a6c9-2165cc181c81\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b57d8b61-5b73-4dce-9d36-bc384d571300\", \"b961d31f-6a9a-422b-b4d3-de6fe243dec0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.09007281810045242, \"Left\": 0.718775749206543, \"Top\": 0.2394343912601471}, \"Polygon\": [{\"X\": 0.7484405636787415, \"Y\": 0.2394343912601471}, {\"X\": 0.7484405636787415, \"Y\": 0.3295072019100189}, {\"X\": 0.718775749206543, \"Y\": 0.3295072019100189}, {\"X\": 0.718775749206543, \"Y\": 0.2394343912601471}]}, \"Id\": \"e231e552-17e3-4f39-ba1d-3835a1b90449\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c1f7f39-4b60-4d61-bddc-369ec36ea3b2\", \"17e35e8a-c922-4d34-94c9-929b3c009d1a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.08773328363895416, \"Left\": 0.718775749206543, \"Top\": 0.3295072019100189}, \"Polygon\": [{\"X\": 0.7484405636787415, \"Y\": 0.3295072019100189}, {\"X\": 0.7484405636787415, \"Y\": 0.4172404706478119}, {\"X\": 0.718775749206543, \"Y\": 0.4172404706478119}, {\"X\": 0.718775749206543, \"Y\": 0.3295072019100189}]}, \"Id\": \"ef64d3cf-7262-47a0-8337-47f805d0daf6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cf1667e5-a3c0-4454-9a7b-83443de44a5d\", \"3f2bcfed-e0c5-4ab0-ae49-ecd2811fdc21\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.08773323893547058, \"Left\": 0.718775749206543, \"Top\": 0.4172404706478119}, \"Polygon\": [{\"X\": 0.7484405636787415, \"Y\": 0.4172404706478119}, {\"X\": 0.7484405636787415, \"Y\": 0.5049737095832825}, {\"X\": 0.718775749206543, \"Y\": 0.5049737095832825}, {\"X\": 0.718775749206543, \"Y\": 0.4172404706478119}]}, \"Id\": \"7a5f5664-ac28-495a-a7e5-a0b4240c0ce5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"98837175-2c1d-4f9e-b8af-81988ce37ce0\", \"4a1b15e2-bf4b-445f-bc1a-29b5e92fce44\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.08539371937513351, \"Left\": 0.718775749206543, \"Top\": 0.5049737095832825}, \"Polygon\": [{\"X\": 0.7484405636787415, \"Y\": 0.5049737095832825}, {\"X\": 0.7484405636787415, \"Y\": 0.5903674364089966}, {\"X\": 0.718775749206543, \"Y\": 0.5903674364089966}, {\"X\": 0.718775749206543, \"Y\": 0.5049737095832825}]}, \"Id\": \"6adf4721-6dea-4f02-b6dd-9a01714d8cb9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cc6056e-f4e1-4d9e-8eb2-647f55399e01\", \"efd49c6a-62b1-4045-a5f0-6e2aa874ddd1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029664810746908188, \"Height\": 0.09007275104522705, \"Left\": 0.718775749206543, \"Top\": 0.5903674364089966}, \"Polygon\": [{\"X\": 0.7484405636787415, \"Y\": 0.5903674364089966}, {\"X\": 0.7484405636787415, \"Y\": 0.6804401874542236}, {\"X\": 0.718775749206543, \"Y\": 0.6804401874542236}, {\"X\": 0.718775749206543, \"Y\": 0.5903674364089966}]}, \"Id\": \"511d1c9f-f035-4274-9c75-9abd91cbc599\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"105682c6-8f1a-43af-b055-f030d62dc8cd\", \"eb0f65ab-d793-49ec-8e40-b29558eb5875\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.09007281810045242, \"Left\": 0.6900526881217957, \"Top\": 0.2394343912601471}, \"Polygon\": [{\"X\": 0.718775749206543, \"Y\": 0.2394343912601471}, {\"X\": 0.718775749206543, \"Y\": 0.3295072019100189}, {\"X\": 0.6900526881217957, \"Y\": 0.3295072019100189}, {\"X\": 0.6900526881217957, \"Y\": 0.2394343912601471}]}, \"Id\": \"6903ed24-5d63-4c03-a05c-c92edc333982\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5de9f85a-3329-4b02-af2e-8b124dd6b2ab\", \"e1289caa-c98b-4790-aa16-7548cdcff284\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.08773328363895416, \"Left\": 0.6900526881217957, \"Top\": 0.3295072019100189}, \"Polygon\": [{\"X\": 0.718775749206543, \"Y\": 0.3295072019100189}, {\"X\": 0.718775749206543, \"Y\": 0.4172404706478119}, {\"X\": 0.6900526881217957, \"Y\": 0.4172404706478119}, {\"X\": 0.6900526881217957, \"Y\": 0.3295072019100189}]}, \"Id\": \"2454c5ef-8282-4e89-885c-b5a11776cdf7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8d730340-30bd-473c-a770-62a67e97cd5a\", \"7c317b52-d702-4ade-8297-a9bee20c06e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.08773323893547058, \"Left\": 0.6900526881217957, \"Top\": 0.4172404706478119}, \"Polygon\": [{\"X\": 0.718775749206543, \"Y\": 0.4172404706478119}, {\"X\": 0.718775749206543, \"Y\": 0.5049737095832825}, {\"X\": 0.6900526881217957, \"Y\": 0.5049737095832825}, {\"X\": 0.6900526881217957, \"Y\": 0.4172404706478119}]}, \"Id\": \"91c5fa60-028a-460e-834e-3fdeab7ad77d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6f4e51b7-a0f2-437d-b655-f38cf7f9886d\", \"a79eeb6b-286f-4fa3-8117-c3ea99b6d476\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.08539371937513351, \"Left\": 0.6900526881217957, \"Top\": 0.5049737095832825}, \"Polygon\": [{\"X\": 0.718775749206543, \"Y\": 0.5049737095832825}, {\"X\": 0.718775749206543, \"Y\": 0.5903674364089966}, {\"X\": 0.6900526881217957, \"Y\": 0.5903674364089966}, {\"X\": 0.6900526881217957, \"Y\": 0.5049737095832825}]}, \"Id\": \"8e7966f2-2a76-406e-b85f-ce5cbe837b34\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0fe1320-123d-40ea-93b6-5cf58aa436fd\", \"545c128a-e8f6-49ba-9162-79848f8fc3a8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.09007275104522705, \"Left\": 0.6900526881217957, \"Top\": 0.5903674364089966}, \"Polygon\": [{\"X\": 0.718775749206543, \"Y\": 0.5903674364089966}, {\"X\": 0.718775749206543, \"Y\": 0.6804401874542236}, {\"X\": 0.6900526881217957, \"Y\": 0.6804401874542236}, {\"X\": 0.6900526881217957, \"Y\": 0.5903674364089966}]}, \"Id\": \"48d1a390-8f12-4f41-bb65-1bf89dee4996\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"809be9a4-d2e7-408c-bde2-f2869371f45d\", \"586f6c3b-f6b8-4e06-8f13-f90a1347941a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.09007281810045242, \"Left\": 0.6613295674324036, \"Top\": 0.2394343912601471}, \"Polygon\": [{\"X\": 0.6900526881217957, \"Y\": 0.2394343912601471}, {\"X\": 0.6900526881217957, \"Y\": 0.3295072019100189}, {\"X\": 0.6613295674324036, \"Y\": 0.3295072019100189}, {\"X\": 0.6613295674324036, \"Y\": 0.2394343912601471}]}, \"Id\": \"170edaf9-4841-408e-ae89-1fa8e5734573\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7d6f5acd-93b3-4706-8926-898f284f845a\", \"b6a5456f-a31f-4d35-8795-fc6809847b12\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.08773328363895416, \"Left\": 0.6613295674324036, \"Top\": 0.3295072019100189}, \"Polygon\": [{\"X\": 0.6900526881217957, \"Y\": 0.3295072019100189}, {\"X\": 0.6900526881217957, \"Y\": 0.4172404706478119}, {\"X\": 0.6613295674324036, \"Y\": 0.4172404706478119}, {\"X\": 0.6613295674324036, \"Y\": 0.3295072019100189}]}, \"Id\": \"628c6cf1-c4e4-4cba-8053-8d9367badab5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"75743845-fa24-4f3c-9caa-a54ba9591777\", \"fef4d9d9-6db2-4905-80cf-cf0d16c87fe6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.08773323893547058, \"Left\": 0.6613295674324036, \"Top\": 0.4172404706478119}, \"Polygon\": [{\"X\": 0.6900526881217957, \"Y\": 0.4172404706478119}, {\"X\": 0.6900526881217957, \"Y\": 0.5049737095832825}, {\"X\": 0.6613295674324036, \"Y\": 0.5049737095832825}, {\"X\": 0.6613295674324036, \"Y\": 0.4172404706478119}]}, \"Id\": \"50c16b82-d2db-46ba-9444-bca93993f285\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79b41568-8415-4c93-84b9-588af9f25708\", \"e6f235c0-54d8-4686-a918-e4a0ee65db71\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.08539371937513351, \"Left\": 0.6613295674324036, \"Top\": 0.5049737095832825}, \"Polygon\": [{\"X\": 0.6900526881217957, \"Y\": 0.5049737095832825}, {\"X\": 0.6900526881217957, \"Y\": 0.5903674364089966}, {\"X\": 0.6613295674324036, \"Y\": 0.5903674364089966}, {\"X\": 0.6613295674324036, \"Y\": 0.5049737095832825}]}, \"Id\": \"830ad0b3-746d-4dc5-bef7-47375d4598b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2142a23b-cf64-415a-ba4d-e2edde6e62f9\", \"0e67ff6b-dd91-4fd1-860a-3c6f32ef32ca\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9332046508789, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028723090887069702, \"Height\": 0.09007275104522705, \"Left\": 0.6613295674324036, \"Top\": 0.5903674364089966}, \"Polygon\": [{\"X\": 0.6900526881217957, \"Y\": 0.5903674364089966}, {\"X\": 0.6900526881217957, \"Y\": 0.6804401874542236}, {\"X\": 0.6613295674324036, \"Y\": 0.6804401874542236}, {\"X\": 0.6613295674324036, \"Y\": 0.5903674364089966}]}, \"Id\": \"54c3a020-1155-4350-9c0f-29f8fcd44706\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec10e429-6c6b-4a02-9a86-6223294caf2c\", \"c2b98699-e2be-4079-ad5d-c172659b96bf\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.77127075195312, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07637158781290054, \"Height\": 0.2333855926990509, \"Left\": 0.8411441445350647, \"Top\": 0.07091035693883896}, \"Polygon\": [{\"X\": 0.9175156950950623, \"Y\": 0.07091035693883896}, {\"X\": 0.9175156950950623, \"Y\": 0.30429595708847046}, {\"X\": 0.8411441445350647, \"Y\": 0.30429595708847046}, {\"X\": 0.8411441445350647, \"Y\": 0.07091035693883896}]}, \"Id\": \"1c605499-fe8c-43e1-b328-c488ca8b8db8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e9babca-5f2a-412f-ad9f-7052afe3a8cc\", \"4d8910fa-e813-4213-aea4-7f99aa05e456\", \"55c374f3-cd8f-4f1e-b839-0afb1d49c9b1\", \"15ab7c98-71b5-4718-9e5d-ce2e0e730ba7\", \"f4d474ce-5f2d-4a5f-850d-e7856d7a8997\", \"3ab4b892-1055-4905-8eb0-bf329e9b5a84\", \"f304baf4-04f1-40ef-8ae5-2c23b11c9d43\", \"82717339-7721-4590-87e5-56ee134df5d7\", \"ecd76b17-4c41-47c0-bd75-ae683d768618\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026400050148367882, \"Height\": 0.07862059772014618, \"Left\": 0.891115665435791, \"Top\": 0.07091035693883896}, \"Polygon\": [{\"X\": 0.9175156950950623, \"Y\": 0.07091035693883896}, {\"X\": 0.9175156950950623, \"Y\": 0.14953096210956573}, {\"X\": 0.891115665435791, \"Y\": 0.14953096210956573}, {\"X\": 0.891115665435791, \"Y\": 0.07091035693883896}]}, \"Id\": \"5e9babca-5f2a-412f-ad9f-7052afe3a8cc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a6fa6dc5-e835-418f-8416-fc39eb9948e0\", \"b5fec60e-1209-49e2-9e24-744ed198b0bf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026400050148367882, \"Height\": 0.07738249748945236, \"Left\": 0.891115665435791, \"Top\": 0.14953096210956573}, \"Polygon\": [{\"X\": 0.9175156950950623, \"Y\": 0.14953096210956573}, {\"X\": 0.9175156950950623, \"Y\": 0.2269134670495987}, {\"X\": 0.891115665435791, \"Y\": 0.2269134670495987}, {\"X\": 0.891115665435791, \"Y\": 0.14953096210956573}]}, \"Id\": \"4d8910fa-e813-4213-aea4-7f99aa05e456\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7c599d5c-dfe9-4bd0-b3e7-70e1bef1a260\", \"5513e567-0736-4ea1-8eeb-14bdc53833ed\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026400050148367882, \"Height\": 0.07738249003887177, \"Left\": 0.891115665435791, \"Top\": 0.2269134670495987}, \"Polygon\": [{\"X\": 0.9175156950950623, \"Y\": 0.2269134670495987}, {\"X\": 0.9175156950950623, \"Y\": 0.30429595708847046}, {\"X\": 0.891115665435791, \"Y\": 0.30429595708847046}, {\"X\": 0.891115665435791, \"Y\": 0.2269134670495987}]}, \"Id\": \"55c374f3-cd8f-4f1e-b839-0afb1d49c9b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"29aba04d-7fad-486e-b337-319c58ebc371\", \"43d93c57-1a67-4958-b0b5-97d54954f3ec\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02498576045036316, \"Height\": 0.07862059772014618, \"Left\": 0.8661298751831055, \"Top\": 0.07091035693883896}, \"Polygon\": [{\"X\": 0.891115665435791, \"Y\": 0.07091035693883896}, {\"X\": 0.891115665435791, \"Y\": 0.14953096210956573}, {\"X\": 0.8661298751831055, \"Y\": 0.14953096210956573}, {\"X\": 0.8661298751831055, \"Y\": 0.07091035693883896}]}, \"Id\": \"15ab7c98-71b5-4718-9e5d-ce2e0e730ba7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c94bae09-28ff-4861-a028-b07667e034c1\", \"790f6cfa-5f0a-488b-8435-730832b49233\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02498576045036316, \"Height\": 0.07738249748945236, \"Left\": 0.8661298751831055, \"Top\": 0.14953096210956573}, \"Polygon\": [{\"X\": 0.891115665435791, \"Y\": 0.14953096210956573}, {\"X\": 0.891115665435791, \"Y\": 0.2269134670495987}, {\"X\": 0.8661298751831055, \"Y\": 0.2269134670495987}, {\"X\": 0.8661298751831055, \"Y\": 0.14953096210956573}]}, \"Id\": \"f4d474ce-5f2d-4a5f-850d-e7856d7a8997\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"557e854a-d559-43f8-9ddf-99755299356f\", \"c6a26026-e16b-448e-8ca8-a736d1af0481\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02498576045036316, \"Height\": 0.07738249003887177, \"Left\": 0.8661298751831055, \"Top\": 0.2269134670495987}, \"Polygon\": [{\"X\": 0.891115665435791, \"Y\": 0.2269134670495987}, {\"X\": 0.891115665435791, \"Y\": 0.30429595708847046}, {\"X\": 0.8661298751831055, \"Y\": 0.30429595708847046}, {\"X\": 0.8661298751831055, \"Y\": 0.2269134670495987}]}, \"Id\": \"3ab4b892-1055-4905-8eb0-bf329e9b5a84\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af59abbb-bacb-47bb-abae-88e9d10e39d7\", \"88727e10-7afb-4d4c-b1f2-a2385de4bd4d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02498577907681465, \"Height\": 0.07862059772014618, \"Left\": 0.8411440849304199, \"Top\": 0.07091035693883896}, \"Polygon\": [{\"X\": 0.8661298751831055, \"Y\": 0.07091035693883896}, {\"X\": 0.8661298751831055, \"Y\": 0.14953096210956573}, {\"X\": 0.8411440849304199, \"Y\": 0.14953096210956573}, {\"X\": 0.8411440849304199, \"Y\": 0.07091035693883896}]}, \"Id\": \"f304baf4-04f1-40ef-8ae5-2c23b11c9d43\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"51d247d7-fbe5-479e-93e4-cbd58b7cab30\", \"6ded05c2-dc02-4dab-9bd7-470d071d3dfe\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02498577907681465, \"Height\": 0.07738249748945236, \"Left\": 0.8411440849304199, \"Top\": 0.14953096210956573}, \"Polygon\": [{\"X\": 0.8661298751831055, \"Y\": 0.14953096210956573}, {\"X\": 0.8661298751831055, \"Y\": 0.2269134670495987}, {\"X\": 0.8411440849304199, \"Y\": 0.2269134670495987}, {\"X\": 0.8411440849304199, \"Y\": 0.14953096210956573}]}, \"Id\": \"82717339-7721-4590-87e5-56ee134df5d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9264cf5-64c7-4ecd-80eb-e59ca7003ba7\", \"8ea77678-32a4-4719-a9df-dff045468ff9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77127075195312, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02498577907681465, \"Height\": 0.07738249003887177, \"Left\": 0.8411440849304199, \"Top\": 0.2269134670495987}, \"Polygon\": [{\"X\": 0.8661298751831055, \"Y\": 0.2269134670495987}, {\"X\": 0.8661298751831055, \"Y\": 0.30429595708847046}, {\"X\": 0.8411440849304199, \"Y\": 0.30429595708847046}, {\"X\": 0.8411440849304199, \"Y\": 0.2269134670495987}]}, \"Id\": \"ecd76b17-4c41-47c0-bd75-ae683d768618\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cab76cc9-a04a-488d-98d5-b3397ba9c724\", \"6e42cb56-997c-465d-9c42-398d198bf59e\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 74.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01815134659409523, \"Height\": 0.029589639976620674, \"Left\": 0.9568085670471191, \"Top\": 0.5357431769371033}, \"Polygon\": [{\"X\": 0.9749599099159241, \"Y\": 0.5357431769371033}, {\"X\": 0.9749599099159241, \"Y\": 0.56533282995224}, {\"X\": 0.9568085670471191, \"Y\": 0.56533282995224}, {\"X\": 0.9568085670471191, \"Y\": 0.5357431769371033}]}, \"Id\": \"362939fc-e53b-40f2-be9d-e3a7020d8a2e\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"0bfaaa8c-f7e4-444b-a815-681117b9bdd6\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"fbb7e26c-5f46-4e72-8343-559f14cbf7ce\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 74.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015674607828259468, \"Height\": 0.03961625322699547, \"Left\": 0.9593764543533325, \"Top\": 0.5677888989448547}, \"Polygon\": [{\"X\": 0.9750510454177856, \"Y\": 0.5677888989448547}, {\"X\": 0.9750510454177856, \"Y\": 0.6074051260948181}, {\"X\": 0.9593764543533325, \"Y\": 0.6074051260948181}, {\"X\": 0.9593764543533325, \"Y\": 0.5677888989448547}]}, \"Id\": \"0bfaaa8c-f7e4-444b-a815-681117b9bdd6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bf64dd37-c49b-439a-a0e5-5dffacb66cff\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 57.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015390647575259209, \"Height\": 0.021556392312049866, \"Left\": 0.3184800148010254, \"Top\": 0.05375080928206444}, \"Polygon\": [{\"X\": 0.33387064933776855, \"Y\": 0.05375080928206444}, {\"X\": 0.33387064933776855, \"Y\": 0.075307197868824}, {\"X\": 0.3184800148010254, \"Y\": 0.075307197868824}, {\"X\": 0.3184800148010254, \"Y\": 0.05375080928206444}]}, \"Id\": \"9d91afd6-156d-442a-af79-ca7f106655d7\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"77d4c2d1-0eff-4fdd-a32f-01fbd187fa5d\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"5f8dc55c-a83c-4ef2-bab2-ad82a4d51874\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 57.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01566357910633087, \"Height\": 0.07099504768848419, \"Left\": 0.3183347284793854, \"Top\": 0.0779542624950409}, \"Polygon\": [{\"X\": 0.33399832248687744, \"Y\": 0.0779542624950409}, {\"X\": 0.33399832248687744, \"Y\": 0.14894931018352509}, {\"X\": 0.3183347284793854, \"Y\": 0.14894931018352509}, {\"X\": 0.3183347284793854, \"Y\": 0.0779542624950409}]}, \"Id\": \"77d4c2d1-0eff-4fdd-a32f-01fbd187fa5d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e120fc3-2471-4c21-a3fb-9d3c92250cc5\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 53.500003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01468154601752758, \"Height\": 0.02427985705435276, \"Left\": 0.34187188744544983, \"Top\": 0.05418320745229721}, \"Polygon\": [{\"X\": 0.35655343532562256, \"Y\": 0.05418320745229721}, {\"X\": 0.35655343532562256, \"Y\": 0.07846306264400482}, {\"X\": 0.34187188744544983, \"Y\": 0.07846306264400482}, {\"X\": 0.34187188744544983, \"Y\": 0.05418320745229721}]}, \"Id\": \"d51d4e20-8b45-426b-a66b-bb067d2ccf08\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"07c062fe-a6bf-4195-804b-a488c05b66ae\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"303b87cc-80d5-4728-a1c2-25ba1236c18b\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 53.500003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015996048226952553, \"Height\": 0.04862367361783981, \"Left\": 0.3413546085357666, \"Top\": 0.0798838660120964}, \"Polygon\": [{\"X\": 0.3573506474494934, \"Y\": 0.0798838660120964}, {\"X\": 0.3573506474494934, \"Y\": 0.12850753962993622}, {\"X\": 0.3413546085357666, \"Y\": 0.12850753962993622}, {\"X\": 0.3413546085357666, \"Y\": 0.0798838660120964}]}, \"Id\": \"07c062fe-a6bf-4195-804b-a488c05b66ae\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2dcb9f46-6477-457d-8492-33ee6562a859\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"48312274-36d0-4df1-9088-d5c5c35f234d\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"48312274-36d0-4df1-9088-d5c5c35f234d\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"146806\", \"date\": \"Mon, 26 Apr 2021 21:35:58 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib__minus_10_degrees.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 0.8887805938720703, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.028669731691479683}, {\"X\": 0.9596672654151917, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.7434556484222412}, {\"X\": 0.0, \"Y\": 0.8887805938720703}]}, \"Id\": \"6cd5698f-2756-4acd-a594-9c8406759f57\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3eedd93a-4e67-42d3-87ab-8bbdd1adf83f\", \"95ffe86a-8f5e-470b-a824-7870dae3a22c\", \"fbad5fab-35ac-4e4f-9a6d-d37d3f8bda86\", \"a4424efc-9203-4922-9a86-89bd05715bd5\", \"779edaa2-50ad-4549-ad75-05cae05a3a3a\", \"d623489d-3c96-45fe-861a-c2ea6de7e580\", \"49c626eb-e5c2-416d-8be1-def5a9683d90\", \"2afd275a-956d-458c-9506-78a79d748280\", \"fdf2cab5-12f6-4e32-b753-69575d4cced1\", \"b10115a0-539a-4130-9eb7-0fa6152afa0b\", \"7aa1eed9-cd62-4033-bce3-d996e76ff1af\", \"044fd1ee-abed-4ae9-840f-cdfaba004a67\", \"b1c0eb42-037e-441f-a222-b9c13cfaa8bd\", \"71127c72-1c0a-439f-8574-8f169ea9e385\", \"e9e8a3df-eb60-4a95-ab7e-b60eba0ef04e\", \"0f0fd409-6633-4a15-a54c-2c5f8cccdfae\", \"261d98e7-a9d0-419f-83e4-06e4c5537959\", \"470a2878-8a7e-4d1c-9f2a-8034914f9e6e\", \"c2bef9ce-1dc4-419f-a82e-0ed6bf01e0a9\", \"7fe948b0-4dbc-4202-88f5-a6c02ee48a0a\", \"3a150c9e-3717-4473-81b3-f21841d08af1\", \"1d8cf19e-9cfe-4d79-821c-f46cbc9ced70\", \"e3946f10-0339-47df-8f4a-31fadd8fbd35\", \"cde34dfa-c5d4-4a2a-8f45-40425ef45b28\", \"3ce2973d-105b-4395-becd-80f03396b787\", \"354cead3-49f5-404c-a8c0-96404c1b042d\", \"19eac378-c29f-4ec2-be27-492bef15b42b\", \"2c3ed884-0372-4226-a796-cb77b86c087c\", \"a4e55f95-4710-4561-b880-621eecf49561\", \"4c0de1fb-d16b-43e1-8034-bba655d74b22\", \"830faea6-9f83-4365-a642-604b28ffe3cd\", \"b8187501-5be4-426f-9828-e16e4574e08e\", \"ff0a29c3-ccb8-4a06-8572-0fd7c41e809d\", \"a58b826d-1e25-42cb-98b9-35275abc1a6f\", \"4a24e877-e833-42e8-b300-cd9690301caa\", \"cca4ca9f-009f-4f4e-bd44-d98736d58f78\", \"a4bd3b32-c5a1-45eb-8387-dbebb2d89f9e\", \"16e7a856-295e-4f7c-b488-ad82fad0277f\", \"e97459f6-9799-4e1f-b009-81661698c6c9\", \"0d4ac891-9de1-45ca-b14b-dc93cb6a6491\", \"4c227abd-5b49-463a-9056-923d41868fae\", \"ee36e80f-cba4-4cf2-ab94-5c56e8fae870\", \"fe469fbc-241e-455f-b878-5505c5fa3b80\", \"d5ada58c-7f6a-4401-950b-de9767d4abab\", \"9d6ea898-59b2-4528-a3ac-1d28ab91632b\", \"4035f15a-5ae2-4e33-8104-5b3432f447b9\", \"377c5f5c-02dc-45b4-a454-9dadad85eee7\", \"038c76c5-62d1-4a08-a173-c8d3a1939d5c\", \"82574cdf-d5ef-4e13-9432-893fd725e9bd\", \"c890552e-d285-413a-8d98-73d97ee8bef7\", \"3d4ef0ce-7f4d-4283-976a-b16eb15ef9a3\", \"d08a472f-6369-4909-919d-b1685548d081\", \"8c8a5dc6-6d40-4e4a-b3fe-0f22b228aa51\", \"3253815f-bbe4-434f-9228-8bf0d29076f1\", \"435c364c-7d6d-41bf-b0a7-5cffeda4bceb\", \"1b980859-3223-4b39-88a8-9c1fd2018daa\", \"4d588237-ba72-4471-bfd8-161649c94f20\", \"5b8a0784-95c1-47c3-80e1-46a2d047896f\", \"16047ad4-e836-479c-8007-c408f2f4b8a6\", \"f993622b-d3a3-4fe0-b61b-9c648153a768\", \"6eb86ad8-9626-493b-b56b-e7396be5d098\", \"7030b704-e018-4763-b830-607c5971dd2f\", \"7e9adc60-4baa-4a13-b820-fe8bde441a65\", \"87d3b309-b4b3-41c6-a234-f9f6f1c73fa3\", \"d468c98b-93ea-498e-9438-39987fe762f6\", \"1ca9b94f-5dd1-46ad-b581-ee16994008b7\", \"bb02d121-b137-4e78-8b3c-b2dece2e2369\", \"469ff350-7716-4850-b7ab-d92bfc36d7b5\", \"815f7be9-5a35-464f-ad26-9365d42b1970\", \"99617062-4301-4984-9de8-317aec0186f1\", \"cd11e044-c108-4ea0-b6cc-51dc666cc277\", \"5a0ed99c-ef56-4144-a3fe-496819af0c5b\", \"a02d7465-b450-4249-8467-bdf7bc265f2d\", \"7137de2a-18d4-4e77-86dc-609168cd5a10\", \"652ee947-fbb4-46a9-b5ca-2739feed6317\", \"cd15fa27-75a7-4b41-a5b5-ad2857521a3d\", \"9b5db4c9-4de0-4644-ae6d-6d6bb7cbf31e\", \"10d3cffc-0918-4bab-ac97-0682c4a6f69d\", \"cc0a576e-8927-40f2-8c1c-53c4b18daee5\", \"ec84155b-c3c9-467d-83f0-d7c8fdd225c5\", \"76419052-2684-4fd3-93d0-e314e3949023\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 82.25636291503906, \"Text\": \"omeName\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0851907953619957, \"Height\": 0.020231101661920547, \"Left\": 0.0, \"Top\": 0.061120595782995224}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.07140137255191803}, {\"X\": 0.0827697291970253, \"Y\": 0.061120595782995224}, {\"X\": 0.0851907953619957, \"Y\": 0.07107092440128326}, {\"X\": 0.0005794682656414807, \"Y\": 0.08135169744491577}]}, \"Id\": \"3eedd93a-4e67-42d3-87ab-8bbdd1adf83f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3c26c3f5-05f6-42cf-844a-809884c9517d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05299377441406, \"Text\": \"Key1: value1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10371899604797363, \"Height\": 0.025763846933841705, \"Left\": 0.6025594472885132, \"Top\": 0.010502106510102749}, \"Polygon\": [{\"X\": 0.6025594472885132, \"Y\": 0.022703617811203003}, {\"X\": 0.7029785513877869, \"Y\": 0.010502106510102749}, {\"X\": 0.7062784433364868, \"Y\": 0.02406444400548935}, {\"X\": 0.6058593988418579, \"Y\": 0.03626595437526703}]}, \"Id\": \"95ffe86a-8f5e-470b-a824-7870dae3a22c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fe627c4d-3f06-47b6-a38f-5020a443fa18\", \"a95407bc-e233-4dd9-b563-8f1076c6a78a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77935791015625, \"Text\": \"Key2: value2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10350491106510162, \"Height\": 0.025187192484736443, \"Left\": 0.6085175275802612, \"Top\": 0.03431970253586769}, \"Polygon\": [{\"X\": 0.6085175275802612, \"Y\": 0.046511974185705185}, {\"X\": 0.7088605761528015, \"Y\": 0.03431970253586769}, {\"X\": 0.7120224237442017, \"Y\": 0.04731462523341179}, {\"X\": 0.6116793751716614, \"Y\": 0.05950689688324928}]}, \"Id\": \"fbad5fab-35ac-4e4f-9a6d-d37d3f8bda86\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aca9fd22-0d2a-40a1-a8ea-0cb2882de9d6\", \"558ad9dd-d884-4d56-8b5c-0c3397f025cd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.0281753540039, \"Text\": \"alue 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07328736782073975, \"Height\": 0.019543573260307312, \"Left\": 0.0, \"Top\": 0.16036392748355865}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.16942216455936432}, {\"X\": 0.07073613256216049, \"Y\": 0.16036392748355865}, {\"X\": 0.07328736782073975, \"Y\": 0.1708492636680603}, {\"X\": 0.0, \"Y\": 0.17990750074386597}]}, \"Id\": \"a4424efc-9203-4922-9a86-89bd05715bd5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e8a12f-2d14-45c5-b7f2-f9294bb22c6a\", \"26dc26e8-8d5a-48ee-9a7f-30defff63e0b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4944076538086, \"Text\": \"Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09199841320514679, \"Height\": 0.021328363567590714, \"Left\": 0.08964089304208755, \"Top\": 0.1468544453382492}, \"Polygon\": [{\"X\": 0.08964089304208755, \"Y\": 0.1577235758304596}, {\"X\": 0.17909443378448486, \"Y\": 0.1468544453382492}, {\"X\": 0.18163931369781494, \"Y\": 0.15731368958950043}, {\"X\": 0.09218578040599823, \"Y\": 0.16818282008171082}]}, \"Id\": \"779edaa2-50ad-4549-ad75-05cae05a3a3a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cc99d96a-64c3-4a3f-b143-ff40c4cb0c2f\", \"3da9f1e5-c46b-4edd-ac18-5a78fc8bcccd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49315643310547, \"Text\": \"Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09191804379224777, \"Height\": 0.021243559196591377, \"Left\": 0.19737793505191803, \"Top\": 0.13344870507717133}, \"Polygon\": [{\"X\": 0.19737793505191803, \"Y\": 0.1443103551864624}, {\"X\": 0.28676989674568176, \"Y\": 0.13344870507717133}, {\"X\": 0.2892959713935852, \"Y\": 0.14383061230182648}, {\"X\": 0.19990399479866028, \"Y\": 0.15469226241111755}]}, \"Id\": \"d623489d-3c96-45fe-861a-c2ea6de7e580\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c98f3ac9-02ca-4301-940d-f1761e3c4518\", \"6118f3ab-5357-47e0-9849-e2ed827c7665\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39666748046875, \"Text\": \"alue 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07776626944541931, \"Height\": 0.019994327798485756, \"Left\": 0.0, \"Top\": 0.17766253650188446}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.18709367513656616}, {\"X\": 0.07519608736038208, \"Y\": 0.17766253650188446}, {\"X\": 0.07776626944541931, \"Y\": 0.18822574615478516}, {\"X\": 0.00014759643818251789, \"Y\": 0.19765686988830566}]}, \"Id\": \"49c626eb-e5c2-416d-8be1-def5a9683d90\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c693b43b-6c4b-4270-90ec-c9375ef2e089\", \"a43c1dc0-1191-497f-8651-f3fedf42eb72\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62950897216797, \"Text\": \"Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09168250113725662, \"Height\": 0.02114620991051197, \"Left\": 0.09417843073606491, \"Top\": 0.16436868906021118}, \"Polygon\": [{\"X\": 0.09417843073606491, \"Y\": 0.1752038151025772}, {\"X\": 0.18335209786891937, \"Y\": 0.16436868906021118}, {\"X\": 0.18586093187332153, \"Y\": 0.17467977106571198}, {\"X\": 0.09668726474046707, \"Y\": 0.185514897108078}]}, \"Id\": \"2afd275a-956d-458c-9506-78a79d748280\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fc4276c-a169-4bef-8d59-511b8a09fe36\", \"b7d0d8a7-db28-430d-b42a-de68f54b1e65\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3371810913086, \"Text\": \"Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09155422449111938, \"Height\": 0.021167119964957237, \"Left\": 0.2020430713891983, \"Top\": 0.15086163580417633}, \"Polygon\": [{\"X\": 0.2020430713891983, \"Y\": 0.16168005764484406}, {\"X\": 0.2910793125629425, \"Y\": 0.15086163580417633}, {\"X\": 0.2935973107814789, \"Y\": 0.1612103283405304}, {\"X\": 0.20456106960773468, \"Y\": 0.17202875018119812}]}, \"Id\": \"fdf2cab5-12f6-4e32-b753-69575d4cced1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c3ea5cc-390d-4820-8405-374a57b96be5\", \"beb23869-a996-4cc3-8a8f-c17ac2eb3806\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 92.86839294433594, \"Text\": \"alue 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08082195371389389, \"Height\": 0.01991402357816696, \"Left\": 0.0006588924443349242, \"Top\": 0.19520120322704315}, \"Polygon\": [{\"X\": 0.0006588924443349242, \"Y\": 0.20471404492855072}, {\"X\": 0.07895008474588394, \"Y\": 0.19520120322704315}, {\"X\": 0.08148084580898285, \"Y\": 0.20560237765312195}, {\"X\": 0.0031896517612040043, \"Y\": 0.21511521935462952}]}, \"Id\": \"b10115a0-539a-4130-9eb7-0fa6152afa0b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e705716b-444a-4966-a6b0-c27656da50c9\", \"c953951d-64c6-409e-ae67-8eeb9603a468\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66028594970703, \"Text\": \"Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09150325506925583, \"Height\": 0.021115899085998535, \"Left\": 0.09841901063919067, \"Top\": 0.18175573647022247}, \"Polygon\": [{\"X\": 0.09841901063919067, \"Y\": 0.1925693303346634}, {\"X\": 0.18741557002067566, \"Y\": 0.18175573647022247}, {\"X\": 0.1899222582578659, \"Y\": 0.1920580267906189}, {\"X\": 0.10092570632696152, \"Y\": 0.202871635556221}]}, \"Id\": \"7aa1eed9-cd62-4033-bce3-d996e76ff1af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6701f362-5ea6-442d-8b77-a11900419e2c\", \"1682ebce-55c4-4c01-85ae-cb73acfba4f7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67137145996094, \"Text\": \"Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09148651361465454, \"Height\": 0.021117720752954483, \"Left\": 0.20641547441482544, \"Top\": 0.16828279197216034}, \"Polygon\": [{\"X\": 0.20641547441482544, \"Y\": 0.17909425497055054}, {\"X\": 0.29539433121681213, \"Y\": 0.16828279197216034}, {\"X\": 0.29790198802948, \"Y\": 0.17858906090259552}, {\"X\": 0.2089231312274933, \"Y\": 0.18940052390098572}]}, \"Id\": \"044fd1ee-abed-4ae9-840f-cdfaba004a67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0d64f29-986f-46bf-950d-9ab7b8592684\", \"27924724-9588-4c2e-8441-856250318834\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51075744628906, \"Text\": \"Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10666131973266602, \"Height\": 0.02456112764775753, \"Left\": 0.23665264248847961, \"Top\": 0.20629172027111053}, \"Polygon\": [{\"X\": 0.23665264248847961, \"Y\": 0.21889828145503998}, {\"X\": 0.3404052257537842, \"Y\": 0.20629172027111053}, {\"X\": 0.34331396222114563, \"Y\": 0.21824629604816437}, {\"X\": 0.23956136405467987, \"Y\": 0.2308528572320938}]}, \"Id\": \"b1c0eb42-037e-441f-a222-b9c13cfaa8bd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06d6f535-c543-48bb-9912-137d6c3d3dca\", \"9b40bb09-1dae-4a2d-b425-fb0303e25881\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55754852294922, \"Text\": \"Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10692891478538513, \"Height\": 0.024880481883883476, \"Left\": 0.3589986562728882, \"Top\": 0.19088377058506012}, \"Polygon\": [{\"X\": 0.3589986562728882, \"Y\": 0.20351409912109375}, {\"X\": 0.46294695138931274, \"Y\": 0.19088377058506012}, {\"X\": 0.4659275710582733, \"Y\": 0.20313392579555511}, {\"X\": 0.36197930574417114, \"Y\": 0.21576425433158875}]}, \"Id\": \"71127c72-1c0a-439f-8574-8f169ea9e385\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad282424-0b58-4475-8e08-a509fc0e06fb\", \"eda4e298-84f4-40ab-a877-ffe5a4dd9c54\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5831527709961, \"Text\": \"Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.106981560587883, \"Height\": 0.024877525866031647, \"Left\": 0.4811381995677948, \"Top\": 0.17563247680664062}, \"Polygon\": [{\"X\": 0.4811381995677948, \"Y\": 0.1882694959640503}, {\"X\": 0.5851414799690247, \"Y\": 0.17563247680664062}, {\"X\": 0.5881197452545166, \"Y\": 0.1878729909658432}, {\"X\": 0.48411649465560913, \"Y\": 0.20051001012325287}]}, \"Id\": \"e9e8a3df-eb60-4a95-ab7e-b60eba0ef04e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5a134ec-7433-494d-8f4d-89a2ab0f554a\", \"1ec86d3c-e3a5-48b5-9607-b390db6f24e3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58213806152344, \"Text\": \"Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10801445692777634, \"Height\": 0.0251024067401886, \"Left\": 0.6029884219169617, \"Top\": 0.16025696694850922}, \"Polygon\": [{\"X\": 0.6029884219169617, \"Y\": 0.17301645874977112}, {\"X\": 0.7079996466636658, \"Y\": 0.16025696694850922}, {\"X\": 0.7110028862953186, \"Y\": 0.1725998967885971}, {\"X\": 0.6059916019439697, \"Y\": 0.18535937368869781}]}, \"Id\": \"0f0fd409-6633-4a15-a54c-2c5f8cccdfae\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d3178462-db41-44bb-9c61-6cf4650aa2db\", \"f17f66d1-44c4-47fc-bfd4-7ebd048ba73f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63551330566406, \"Text\": \"Value 2.1.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10702240467071533, \"Height\": 0.02491813525557518, \"Left\": 0.7251432538032532, \"Top\": 0.14523158967494965}, \"Polygon\": [{\"X\": 0.7251432538032532, \"Y\": 0.15787248313426971}, {\"X\": 0.8291784524917603, \"Y\": 0.14523158967494965}, {\"X\": 0.8321656584739685, \"Y\": 0.15750885009765625}, {\"X\": 0.7281305193901062, \"Y\": 0.17014972865581512}]}, \"Id\": \"261d98e7-a9d0-419f-83e4-06e4c5537959\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a861625d-5857-4ca3-ab18-dc92f7846e9c\", \"96973ad9-0316-45d7-a339-604489c1c134\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44194030761719, \"Text\": \"Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10663923621177673, \"Height\": 0.024559365585446358, \"Left\": 0.24166439473628998, \"Top\": 0.22648009657859802}, \"Polygon\": [{\"X\": 0.24166439473628998, \"Y\": 0.239083930850029}, {\"X\": 0.34539467096328735, \"Y\": 0.22648009657859802}, {\"X\": 0.3483036160469055, \"Y\": 0.23843562602996826}, {\"X\": 0.24457335472106934, \"Y\": 0.2510394752025604}]}, \"Id\": \"470a2878-8a7e-4d1c-9f2a-8034914f9e6e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57e4ceb7-a132-410f-9bde-e04e1ddf60ce\", \"f5a8041c-e435-4fd8-8569-d01181ac7a54\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54584503173828, \"Text\": \"Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10715302079916, \"Height\": 0.02472607232630253, \"Left\": 0.36399513483047485, \"Top\": 0.2110857218503952}, \"Polygon\": [{\"X\": 0.36399513483047485, \"Y\": 0.2237488031387329}, {\"X\": 0.4682130515575409, \"Y\": 0.2110857218503952}, {\"X\": 0.47114816308021545, \"Y\": 0.22314868867397308}, {\"X\": 0.366930216550827, \"Y\": 0.23581178486347198}]}, \"Id\": \"c2bef9ce-1dc4-419f-a82e-0ed6bf01e0a9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"560b1740-4829-498f-a31c-8f2a58960469\", \"59fc197d-5d57-43b5-9b32-f3b9afe384cd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50089263916016, \"Text\": \"Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10657830536365509, \"Height\": 0.024668429046869278, \"Left\": 0.4866894781589508, \"Top\": 0.19582661986351013}, \"Polygon\": [{\"X\": 0.4866894781589508, \"Y\": 0.20841950178146362}, {\"X\": 0.590329647064209, \"Y\": 0.19582661986351013}, {\"X\": 0.5932677984237671, \"Y\": 0.20790214836597443}, {\"X\": 0.4896276295185089, \"Y\": 0.2204950451850891}]}, \"Id\": \"7fe948b0-4dbc-4202-88f5-a6c02ee48a0a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"960b15a8-64df-4e01-ab08-4d047560366a\", \"3e5ac6b5-0166-4921-9937-f6f809340bc6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67361450195312, \"Text\": \"Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10750191658735275, \"Height\": 0.024914534762501717, \"Left\": 0.6084962487220764, \"Top\": 0.18040087819099426}, \"Polygon\": [{\"X\": 0.6084962487220764, \"Y\": 0.1931019127368927}, {\"X\": 0.7130264043807983, \"Y\": 0.18040087819099426}, {\"X\": 0.7159981727600098, \"Y\": 0.1926143765449524}, {\"X\": 0.6114679574966431, \"Y\": 0.20531541109085083}]}, \"Id\": \"3a150c9e-3717-4473-81b3-f21841d08af1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61c35479-2e81-4192-899b-67360187bdbc\", \"f87177dc-0db2-4a89-a3f3-b596619dfdb1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59725952148438, \"Text\": \"Value 2.2.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10652261227369308, \"Height\": 0.024808203801512718, \"Left\": 0.7306807637214661, \"Top\": 0.16535554826259613}, \"Polygon\": [{\"X\": 0.7306807637214661, \"Y\": 0.17793720960617065}, {\"X\": 0.834228515625, \"Y\": 0.16535554826259613}, {\"X\": 0.8372033834457397, \"Y\": 0.17758210003376007}, {\"X\": 0.7336556911468506, \"Y\": 0.1901637613773346}]}, \"Id\": \"1d8cf19e-9cfe-4d79-821c-f46cbc9ced70\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c8344fc3-570b-4795-8784-1df8cb527bf8\", \"c5007f32-8985-4c8b-8e8c-d755d7507c9f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07179260253906, \"Text\": \"Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684561729431152, \"Height\": 0.024664094671607018, \"Left\": 0.2467547059059143, \"Top\": 0.24656210839748383}, \"Polygon\": [{\"X\": 0.2467547059059143, \"Y\": 0.25918859243392944}, {\"X\": 0.3506713807582855, \"Y\": 0.24656210839748383}, {\"X\": 0.35360032320022583, \"Y\": 0.2585996985435486}, {\"X\": 0.24968361854553223, \"Y\": 0.2712261974811554}]}, \"Id\": \"e3946f10-0339-47df-8f4a-31fadd8fbd35\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f53dd86b-9f22-4f51-9da7-c3497bd3d857\", \"7dc9e481-05f6-45d4-aeca-1f0bfa8b7cec\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57213592529297, \"Text\": \"Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10672179609537125, \"Height\": 0.024577980861067772, \"Left\": 0.3693884611129761, \"Top\": 0.23130996525287628}, \"Polygon\": [{\"X\": 0.3693884611129761, \"Y\": 0.2439235895872116}, {\"X\": 0.47319915890693665, \"Y\": 0.23130996525287628}, {\"X\": 0.4761102795600891, \"Y\": 0.24327434599399567}, {\"X\": 0.37229958176612854, \"Y\": 0.2558879554271698}]}, \"Id\": \"cde34dfa-c5d4-4a2a-8f45-40425ef45b28\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c5c73e8-377b-4f27-ae86-d14fba04fec9\", \"98804704-59a8-46f6-a2da-8a9e68ab2bee\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64604187011719, \"Text\": \"Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10618287324905396, \"Height\": 0.024393916130065918, \"Left\": 0.4917498528957367, \"Top\": 0.2162453681230545}, \"Polygon\": [{\"X\": 0.4917498528957367, \"Y\": 0.22879710793495178}, {\"X\": 0.5950513482093811, \"Y\": 0.2162453681230545}, {\"X\": 0.597932755947113, \"Y\": 0.22808754444122314}, {\"X\": 0.49463123083114624, \"Y\": 0.24063928425312042}]}, \"Id\": \"3ce2973d-105b-4395-becd-80f03396b787\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d3d8c359-8c72-4c07-9083-61054a6d6646\", \"ba15ac61-358d-4797-8ece-bbaffba965e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6258544921875, \"Text\": \"Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10778284817934036, \"Height\": 0.025187870487570763, \"Left\": 0.6133213043212891, \"Top\": 0.20063678920269012}, \"Polygon\": [{\"X\": 0.6133213043212891, \"Y\": 0.21336467564105988}, {\"X\": 0.7180724740028381, \"Y\": 0.20063678920269012}, {\"X\": 0.7211041450500488, \"Y\": 0.21309678256511688}, {\"X\": 0.6163529753684998, \"Y\": 0.22582466900348663}]}, \"Id\": \"354cead3-49f5-404c-a8c0-96404c1b042d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1c4df11-e1a3-4d1a-8fcf-01025eed65dd\", \"70385748-bac3-46cb-a3e0-218d625fdffd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50694274902344, \"Text\": \"Value 2.3.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1061786562204361, \"Height\": 0.024588700383901596, \"Left\": 0.7357361912727356, \"Top\": 0.1858125627040863}, \"Polygon\": [{\"X\": 0.7357361912727356, \"Y\": 0.19835783541202545}, {\"X\": 0.838984489440918, \"Y\": 0.1858125627040863}, {\"X\": 0.8419148325920105, \"Y\": 0.19785597920417786}, {\"X\": 0.7386665344238281, \"Y\": 0.2104012668132782}]}, \"Id\": \"19eac378-c29f-4ec2-be27-492bef15b42b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"42330057-fa69-4109-b8da-00ee636e02de\", \"ade5a941-bdef-4732-a041-0f3f7be019c3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72856903076172, \"Text\": \"Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10627928376197815, \"Height\": 0.024536948651075363, \"Left\": 0.25199612975120544, \"Top\": 0.2668718099594116}, \"Polygon\": [{\"X\": 0.25199612975120544, \"Y\": 0.2794312536716461}, {\"X\": 0.35536110401153564, \"Y\": 0.2668718099594116}, {\"X\": 0.3582754135131836, \"Y\": 0.2788493037223816}, {\"X\": 0.254910409450531, \"Y\": 0.2914087474346161}]}, \"Id\": \"2c3ed884-0372-4226-a796-cb77b86c087c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8883d459-e519-496e-a4f3-8bc153f14e3d\", \"c13e0354-532a-4c49-993f-0048c50a76a8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67050170898438, \"Text\": \"Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10677853226661682, \"Height\": 0.02481813170015812, \"Left\": 0.3741418421268463, \"Top\": 0.2515469789505005}, \"Polygon\": [{\"X\": 0.3741418421268463, \"Y\": 0.2641603946685791}, {\"X\": 0.477950781583786, \"Y\": 0.2515469789505005}, {\"X\": 0.48092037439346313, \"Y\": 0.26375171542167664}, {\"X\": 0.37711143493652344, \"Y\": 0.27636513113975525}]}, \"Id\": \"a4e55f95-4710-4561-b880-621eecf49561\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f3a8ea83-0892-443f-a825-c6014f6848cf\", \"c5d73d17-36bb-4d3c-be82-0e5ab1dad58f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61360168457031, \"Text\": \"Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10631304979324341, \"Height\": 0.02433229610323906, \"Left\": 0.49674907326698303, \"Top\": 0.23646432161331177}, \"Polygon\": [{\"X\": 0.49674907326698303, \"Y\": 0.24903424084186554}, {\"X\": 0.6002001762390137, \"Y\": 0.23646432161331177}, {\"X\": 0.6030621528625488, \"Y\": 0.24822670221328735}, {\"X\": 0.4996110498905182, \"Y\": 0.26079660654067993}]}, \"Id\": \"4c0de1fb-d16b-43e1-8034-bba655d74b22\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80be8982-8f09-41f0-8f1b-9cf131d02f51\", \"b1297020-86d2-4316-99e9-545eee7bde81\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72077941894531, \"Text\": \"Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10685919225215912, \"Height\": 0.02416512556374073, \"Left\": 0.6188304424285889, \"Top\": 0.22124330699443817}, \"Polygon\": [{\"X\": 0.6188304424285889, \"Y\": 0.2338867038488388}, {\"X\": 0.7228862047195435, \"Y\": 0.22124330699443817}, {\"X\": 0.7256896495819092, \"Y\": 0.2327650487422943}, {\"X\": 0.6216338276863098, \"Y\": 0.24540843069553375}]}, \"Id\": \"830faea6-9f83-4365-a642-604b28ffe3cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"395bddcd-c419-411e-ac5c-22877ed90fba\", \"29098609-bf5e-4f29-ba47-9dbf6dacace9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36227416992188, \"Text\": \"Value 2.4.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10637250542640686, \"Height\": 0.02442305162549019, \"Left\": 0.7407703399658203, \"Top\": 0.20597995817661285}, \"Polygon\": [{\"X\": 0.7407703399658203, \"Y\": 0.2185545563697815}, {\"X\": 0.8442599177360535, \"Y\": 0.20597995817661285}, {\"X\": 0.8471428155899048, \"Y\": 0.2178284227848053}, {\"X\": 0.7436532378196716, \"Y\": 0.23040302097797394}]}, \"Id\": \"b8187501-5be4-426f-9828-e16e4574e08e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d0a523aa-5ddf-436b-a66b-15478cd6b3d8\", \"442af723-f2dc-4f71-8384-07db476d821f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67121124267578, \"Text\": \"Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10633435845375061, \"Height\": 0.02457508258521557, \"Left\": 0.2569376230239868, \"Top\": 0.2869867980480194}, \"Polygon\": [{\"X\": 0.2569376230239868, \"Y\": 0.29955199360847473}, {\"X\": 0.3603498041629791, \"Y\": 0.2869867980480194}, {\"X\": 0.3632719814777374, \"Y\": 0.2989966869354248}, {\"X\": 0.2598598003387451, \"Y\": 0.3115618824958801}]}, \"Id\": \"ff0a29c3-ccb8-4a06-8572-0fd7c41e809d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"172a1670-f87e-4e5e-ac61-98438f1aff56\", \"f1b1486d-37b4-4217-9a10-9a9439bee341\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6495132446289, \"Text\": \"Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10633145272731781, \"Height\": 0.024448959156870842, \"Left\": 0.3795451521873474, \"Top\": 0.2718352973461151}, \"Polygon\": [{\"X\": 0.3795451521873474, \"Y\": 0.2844039797782898}, {\"X\": 0.4829859435558319, \"Y\": 0.2718352973461151}, {\"X\": 0.48587659001350403, \"Y\": 0.2837156057357788}, {\"X\": 0.38243579864501953, \"Y\": 0.2962842583656311}]}, \"Id\": \"a58b826d-1e25-42cb-98b9-35275abc1a6f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f953ebef-c8c0-421a-83cd-dca733adc4c6\", \"de350c71-4f61-430d-9730-ddc9aedb2f6d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.656005859375, \"Text\": \"Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10612558573484421, \"Height\": 0.02419578656554222, \"Left\": 0.5018817782402039, \"Top\": 0.2567860782146454}, \"Polygon\": [{\"X\": 0.5018817782402039, \"Y\": 0.2693367004394531}, {\"X\": 0.6051739454269409, \"Y\": 0.2567860782146454}, {\"X\": 0.6080073714256287, \"Y\": 0.26843127608299255}, {\"X\": 0.5047152638435364, \"Y\": 0.2809818685054779}]}, \"Id\": \"4a24e877-e833-42e8-b300-cd9690301caa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"662344eb-9d57-45de-af33-dbbf66628aaf\", \"000c649c-9016-4e98-b436-a3dc1961cc08\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71932983398438, \"Text\": \"Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10691752284765244, \"Height\": 0.024600021541118622, \"Left\": 0.6237687468528748, \"Top\": 0.24122296273708344}, \"Polygon\": [{\"X\": 0.6237687468528748, \"Y\": 0.2538604140281677}, {\"X\": 0.7277756333351135, \"Y\": 0.24122296273708344}, {\"X\": 0.7306863069534302, \"Y\": 0.25318554043769836}, {\"X\": 0.6266794204711914, \"Y\": 0.26582297682762146}]}, \"Id\": \"cca4ca9f-009f-4f4e-bd44-d98736d58f78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc477de9-94a8-4c9f-8cb1-3b8c1b132db6\", \"4190ab95-389d-4a67-99d6-bfc065600cf2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69667053222656, \"Text\": \"Value 2.5.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10646455734968185, \"Height\": 0.024655131623148918, \"Left\": 0.7457149028778076, \"Top\": 0.22602666914463043}, \"Polygon\": [{\"X\": 0.7457149028778076, \"Y\": 0.23860572278499603}, {\"X\": 0.8492411971092224, \"Y\": 0.22602666914463043}, {\"X\": 0.8521794676780701, \"Y\": 0.2381027489900589}, {\"X\": 0.7486531734466553, \"Y\": 0.2506817877292633}]}, \"Id\": \"a4bd3b32-c5a1-45eb-8387-dbebb2d89f9e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ac27900b-c50d-4651-ac5e-ac44808f93e9\", \"f2c419d2-f1f4-4f94-bf96-a91a6073a4ca\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78846740722656, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.135237917304039, \"Height\": 0.02707448974251747, \"Left\": 0.009932823479175568, \"Top\": 0.3890252113342285}, \"Polygon\": [{\"X\": 0.009932823479175568, \"Y\": 0.4051332175731659}, {\"X\": 0.14250244200229645, \"Y\": 0.3890252113342285}, {\"X\": 0.14517074823379517, \"Y\": 0.3999917209148407}, {\"X\": 0.01260113250464201, \"Y\": 0.4160997271537781}]}, \"Id\": \"16e7a856-295e-4f7c-b488-ad82fad0277f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ddb719fd-6e4f-43fa-b59b-c0d0f8a61fe5\", \"dcf6336b-0634-447f-b13e-a659142ca3d6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48271179199219, \"Text\": \"Value 3.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09150039404630661, \"Height\": 0.02115459367632866, \"Left\": 0.4289672374725342, \"Top\": 0.361659437417984}, \"Polygon\": [{\"X\": 0.4289672374725342, \"Y\": 0.37247151136398315}, {\"X\": 0.5179511308670044, \"Y\": 0.361659437417984}, {\"X\": 0.5204676389694214, \"Y\": 0.372001975774765}, {\"X\": 0.4314837157726288, \"Y\": 0.38281404972076416}]}, \"Id\": \"e97459f6-9799-4e1f-b009-81661698c6c9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6b4e953e-e72c-4467-ba61-3a557509f1cd\", \"887a7a5c-b94d-44f2-a51d-ec5a58d0b1de\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5595703125, \"Text\": \"Value 3.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09182196110486984, \"Height\": 0.02135518193244934, \"Left\": 0.5708134174346924, \"Top\": 0.3438398540019989}, \"Polygon\": [{\"X\": 0.5708134174346924, \"Y\": 0.35468608140945435}, {\"X\": 0.6600784063339233, \"Y\": 0.3438398540019989}, {\"X\": 0.6626353859901428, \"Y\": 0.3543488085269928}, {\"X\": 0.5733703970909119, \"Y\": 0.36519503593444824}]}, \"Id\": \"0d4ac891-9de1-45ca-b14b-dc93cb6a6491\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61f90330-6190-43cf-83c3-d65174583bae\", \"e32e5e2c-2c80-433a-b7ff-0b6d6f616f2d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56453704833984, \"Text\": \"Value 3.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09138230979442596, \"Height\": 0.02128765918314457, \"Left\": 0.7125952839851379, \"Top\": 0.3262200951576233}, \"Polygon\": [{\"X\": 0.7125952839851379, \"Y\": 0.3370133340358734}, {\"X\": 0.8014241456985474, \"Y\": 0.3262200951576233}, {\"X\": 0.8039776086807251, \"Y\": 0.336714506149292}, {\"X\": 0.7151487469673157, \"Y\": 0.3475077450275421}]}, \"Id\": \"4c227abd-5b49-463a-9056-923d41868fae\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7825a8b-a11f-4f86-a615-8f971fae0f0d\", \"d1ef3bd0-1f5c-4746-9efd-b0b4730644cd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70328521728516, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10587868094444275, \"Height\": 0.023263009265065193, \"Left\": 0.01239230576902628, \"Top\": 0.41938596963882446}, \"Polygon\": [{\"X\": 0.01239230576902628, \"Y\": 0.43193408846855164}, {\"X\": 0.11566390097141266, \"Y\": 0.41938596963882446}, {\"X\": 0.11827098578214645, \"Y\": 0.4301008880138397}, {\"X\": 0.014999397099018097, \"Y\": 0.4426489770412445}]}, \"Id\": \"ee36e80f-cba4-4cf2-ab94-5c56e8fae870\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"67a4f51f-ebbf-4fe4-8f29-3f6327ef9a29\", \"90bae850-296a-477d-abf0-274d4f12f61f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4232177734375, \"Text\": \"Value 3.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09121424704790115, \"Height\": 0.021079178899526596, \"Left\": 0.43346351385116577, \"Top\": 0.37904077768325806}, \"Polygon\": [{\"X\": 0.43346351385116577, \"Y\": 0.38981929421424866}, {\"X\": 0.5221714377403259, \"Y\": 0.37904077768325806}, {\"X\": 0.5246777534484863, \"Y\": 0.38934141397476196}, {\"X\": 0.4359697997570038, \"Y\": 0.40011996030807495}]}, \"Id\": \"fe469fbc-241e-455f-b878-5505c5fa3b80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7e17e59c-6f59-4b0d-bc35-138419c9185f\", \"e0ec0ea4-e3d9-434d-a776-2c5b74587cec\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50776672363281, \"Text\": \"Value 3.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09157992154359818, \"Height\": 0.021282166242599487, \"Left\": 0.5751407742500305, \"Top\": 0.3612751364707947}, \"Polygon\": [{\"X\": 0.5751407742500305, \"Y\": 0.3720932602882385}, {\"X\": 0.6641746759414673, \"Y\": 0.3612751364707947}, {\"X\": 0.6667206883430481, \"Y\": 0.37173914909362793}, {\"X\": 0.5776868462562561, \"Y\": 0.38255730271339417}]}, \"Id\": \"d5ada58c-7f6a-4401-950b-de9767d4abab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f7d146e5-2756-4a37-868a-9ab0d3e6cc42\", \"7129bd18-833f-4758-b935-a42beb1c875d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60345458984375, \"Text\": \"Value 3.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09134113788604736, \"Height\": 0.0211885254830122, \"Left\": 0.7169051766395569, \"Top\": 0.3436635136604309}, \"Polygon\": [{\"X\": 0.7169051766395569, \"Y\": 0.3544546067714691}, {\"X\": 0.8057165145874023, \"Y\": 0.3436635136604309}, {\"X\": 0.8082463145256042, \"Y\": 0.35406094789505005}, {\"X\": 0.7194350361824036, \"Y\": 0.36485204100608826}]}, \"Id\": \"9d6ea898-59b2-4528-a3ac-1d28ab91632b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c69e7103-7203-48e2-8e07-fdac1b3fc1e2\", \"b85a7b78-e067-4456-966b-66cac9f4e0f9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71821594238281, \"Text\": \"Value 3.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.090995192527771, \"Height\": 0.020969439297914505, \"Left\": 0.43773752450942993, \"Top\": 0.39652249217033386}, \"Polygon\": [{\"X\": 0.43773752450942993, \"Y\": 0.4072769284248352}, {\"X\": 0.5262472629547119, \"Y\": 0.39652249217033386}, {\"X\": 0.5287327170372009, \"Y\": 0.40673747658729553}, {\"X\": 0.44022297859191895, \"Y\": 0.4174919128417969}]}, \"Id\": \"4035f15a-5ae2-4e33-8104-5b3432f447b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad3ceb79-bfae-4cea-a77e-538c93cde2ce\", \"25d5aee7-b890-458d-b8a5-b7aac7a547e0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55587768554688, \"Text\": \"Value 3.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09166142344474792, \"Height\": 0.021276995539665222, \"Left\": 0.5794302225112915, \"Top\": 0.37865149974823}, \"Polygon\": [{\"X\": 0.5794302225112915, \"Y\": 0.38947999477386475}, {\"X\": 0.6685494184494019, \"Y\": 0.37865149974823}, {\"X\": 0.6710916757583618, \"Y\": 0.38909998536109924}, {\"X\": 0.5819725394248962, \"Y\": 0.399928480386734}]}, \"Id\": \"377c5f5c-02dc-45b4-a454-9dadad85eee7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fc07db1-7195-4168-afad-b769236be44d\", \"06e53018-c23e-445c-81c8-7e850d0da442\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70877838134766, \"Text\": \"Value 3.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09105761349201202, \"Height\": 0.021121589466929436, \"Left\": 0.7214410305023193, \"Top\": 0.3610982596874237}, \"Polygon\": [{\"X\": 0.7214410305023193, \"Y\": 0.3718559145927429}, {\"X\": 0.8099769353866577, \"Y\": 0.3610982596874237}, {\"X\": 0.8124986290931702, \"Y\": 0.37146222591400146}, {\"X\": 0.7239627242088318, \"Y\": 0.3822198510169983}]}, \"Id\": \"038c76c5-62d1-4a08-a173-c8d3a1939d5c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7477a76f-3083-4885-8156-d29a114e34f6\", \"df64efae-dc8b-48a9-9275-fe1ca10325f2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76129150390625, \"Text\": \"Value 3.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09121350198984146, \"Height\": 0.0209838654845953, \"Left\": 0.4419344961643219, \"Top\": 0.41394221782684326}, \"Polygon\": [{\"X\": 0.4419344961643219, \"Y\": 0.4247235655784607}, {\"X\": 0.5306655764579773, \"Y\": 0.41394221782684326}, {\"X\": 0.5331479907035828, \"Y\": 0.4241447150707245}, {\"X\": 0.44441691040992737, \"Y\": 0.4349260628223419}]}, \"Id\": \"82574cdf-d5ef-4e13-9432-893fd725e9bd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"84a921ec-59db-4c88-87ad-4552d66b317e\", \"3908ecdf-547f-48d7-a281-4ea450dc4137\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74273681640625, \"Text\": \"Value 3.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09178851544857025, \"Height\": 0.02119641937315464, \"Left\": 0.5836705565452576, \"Top\": 0.39611828327178955}, \"Polygon\": [{\"X\": 0.5836705565452576, \"Y\": 0.4069651663303375}, {\"X\": 0.6729408502578735, \"Y\": 0.39611828327178955}, {\"X\": 0.6754590272903442, \"Y\": 0.40646782517433167}, {\"X\": 0.5861887335777283, \"Y\": 0.41731470823287964}]}, \"Id\": \"c890552e-d285-413a-8d98-73d97ee8bef7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9214bfe-613f-4c57-ab63-7740ebb11cda\", \"17725b37-35a7-4adc-bcfb-c79fb03520c8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72456359863281, \"Text\": \"Value 3.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09112170338630676, \"Height\": 0.02120400406420231, \"Left\": 0.725741982460022, \"Top\": 0.37844792008399963}, \"Polygon\": [{\"X\": 0.725741982460022, \"Y\": 0.38921108841896057}, {\"X\": 0.8143233060836792, \"Y\": 0.37844792008399963}, {\"X\": 0.8168637156486511, \"Y\": 0.38888877630233765}, {\"X\": 0.7282824516296387, \"Y\": 0.3996519148349762}]}, \"Id\": \"3d4ef0ce-7f4d-4283-976a-b16eb15ef9a3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"401e114c-1b65-4f24-8cb8-81241de084ef\", \"109fb001-95d3-4b4c-8ab3-5b4dd2621b99\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75259399414062, \"Text\": \"Value 3.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09094453603029251, \"Height\": 0.020931433886289597, \"Left\": 0.4463273882865906, \"Top\": 0.4313867688179016}, \"Polygon\": [{\"X\": 0.4463273882865906, \"Y\": 0.4421360194683075}, {\"X\": 0.5347944498062134, \"Y\": 0.4313867688179016}, {\"X\": 0.5372719168663025, \"Y\": 0.44156891107559204}, {\"X\": 0.4488048553466797, \"Y\": 0.4523181915283203}]}, \"Id\": \"d08a472f-6369-4909-919d-b1685548d081\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6b9e9d3a-c7a5-4f83-846c-d14932c6d1ca\", \"86bfb3fd-3011-4ca8-adb2-7bcc98e3330d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72671508789062, \"Text\": \"Value 3.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0918637365102768, \"Height\": 0.021147897467017174, \"Left\": 0.5880520343780518, \"Top\": 0.4135224521160126}, \"Polygon\": [{\"X\": 0.5880520343780518, \"Y\": 0.42438021302223206}, {\"X\": 0.6774120330810547, \"Y\": 0.4135224521160126}, {\"X\": 0.6799157857894897, \"Y\": 0.4238125681877136}, {\"X\": 0.5905557870864868, \"Y\": 0.4346703290939331}]}, \"Id\": \"8c8a5dc6-6d40-4e4a-b3fe-0f22b228aa51\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efa2118f-8f6a-4439-b2f9-5d51cadce105\", \"76faec7e-c4fb-4813-8396-353aa0e2ccef\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.73680877685547, \"Text\": \"Value 3.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09115748107433319, \"Height\": 0.02123262919485569, \"Left\": 0.7299894094467163, \"Top\": 0.395842045545578}, \"Polygon\": [{\"X\": 0.7299894094467163, \"Y\": 0.40660881996154785}, {\"X\": 0.8186004161834717, \"Y\": 0.395842045545578}, {\"X\": 0.8211469054222107, \"Y\": 0.4063079357147217}, {\"X\": 0.7325358986854553, \"Y\": 0.41707468032836914}]}, \"Id\": \"3253815f-bbe4-434f-9228-8bf0d29076f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a81f56e8-806b-4aa0-83f6-e15dd8d8e862\", \"f7ddaf94-4673-4ff6-bcf4-a589d714d22a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58177947998047, \"Text\": \"Value 3.6.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09150483459234238, \"Height\": 0.021077921614050865, \"Left\": 0.4507569372653961, \"Top\": 0.44870707392692566}, \"Polygon\": [{\"X\": 0.4507569372653961, \"Y\": 0.4595220386981964}, {\"X\": 0.5397646427154541, \"Y\": 0.44870707392692566}, {\"X\": 0.5422617793083191, \"Y\": 0.45897001028060913}, {\"X\": 0.4532540738582611, \"Y\": 0.4697849750518799}]}, \"Id\": \"435c364c-7d6d-41bf-b0a7-5cffeda4bceb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82d9dd17-3757-4b5c-955e-b846625650ba\", \"532630a9-6b0b-4f0d-bd86-9cceac60f980\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62242126464844, \"Text\": \"Value 3.6.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09184598177671432, \"Height\": 0.021165691316127777, \"Left\": 0.5923440456390381, \"Top\": 0.4309062957763672}, \"Polygon\": [{\"X\": 0.5923440456390381, \"Y\": 0.441761314868927}, {\"X\": 0.6816812753677368, \"Y\": 0.4309062957763672}, {\"X\": 0.684190034866333, \"Y\": 0.44121697545051575}, {\"X\": 0.5948528051376343, \"Y\": 0.45207199454307556}]}, \"Id\": \"1b980859-3223-4b39-88a8-9c1fd2018daa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4beedb6-9880-4c91-a09f-662fdadbe7e5\", \"bae9eb64-74c3-468f-8612-d8149d9e28fd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56614685058594, \"Text\": \"Value 3.6.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09125976264476776, \"Height\": 0.02119356580078602, \"Left\": 0.7342418432235718, \"Top\": 0.41324174404144287}, \"Polygon\": [{\"X\": 0.7342418432235718, \"Y\": 0.42402249574661255}, {\"X\": 0.8229680061340332, \"Y\": 0.41324174404144287}, {\"X\": 0.8255016207695007, \"Y\": 0.42365455627441406}, {\"X\": 0.7367754578590393, \"Y\": 0.43443530797958374}]}, \"Id\": \"4d588237-ba72-4471-bfd8-161649c94f20\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9748161-c3cc-4d49-b77a-c62995969209\", \"17ede258-767f-4ccb-bbf6-0850d502a466\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6483154296875, \"Text\": \"Value 3.7.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09085249900817871, \"Height\": 0.02093910612165928, \"Left\": 0.4551970660686493, \"Top\": 0.4661591947078705}, \"Polygon\": [{\"X\": 0.4551970660686493, \"Y\": 0.476896733045578}, {\"X\": 0.5435673594474792, \"Y\": 0.4661591947078705}, {\"X\": 0.5460495948791504, \"Y\": 0.4763607978820801}, {\"X\": 0.45767927169799805, \"Y\": 0.4870983064174652}]}, \"Id\": \"5b8a0784-95c1-47c3-80e1-46a2d047896f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"43017fd1-fbda-4b1a-89a1-89e1afa46742\", \"0f979fbc-c18e-4337-95e4-e865c78e2bf6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55078887939453, \"Text\": \"Value 3.7.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09202972054481506, \"Height\": 0.021109309047460556, \"Left\": 0.5967296957969666, \"Top\": 0.4483225345611572}, \"Polygon\": [{\"X\": 0.5967296957969666, \"Y\": 0.45920225977897644}, {\"X\": 0.6862704157829285, \"Y\": 0.4483225345611572}, {\"X\": 0.6887593865394592, \"Y\": 0.45855212211608887}, {\"X\": 0.5992186665534973, \"Y\": 0.4694318473339081}]}, \"Id\": \"16047ad4-e836-479c-8007-c408f2f4b8a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"67ebdab2-ebe3-4a4e-bd1e-4a0d68ee0c1a\", \"c8ebcdd9-56cf-4013-be60-347db6ef5007\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61955261230469, \"Text\": \"Value 3.7.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09135203063488007, \"Height\": 0.021034080535173416, \"Left\": 0.7385895848274231, \"Top\": 0.43075233697891235}, \"Polygon\": [{\"X\": 0.7385895848274231, \"Y\": 0.44154950976371765}, {\"X\": 0.8274508118629456, \"Y\": 0.43075233697891235}, {\"X\": 0.8299416303634644, \"Y\": 0.44098925590515137}, {\"X\": 0.7410804033279419, \"Y\": 0.45178642868995667}]}, \"Id\": \"f993622b-d3a3-4fe0-b61b-9c648153a768\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"26aaa788-a28d-438f-9f9b-ca00079562ab\", \"09ca40b2-1ac1-4cde-b07b-3923e9cae08d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65696716308594, \"Text\": \"Value 3.8.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09065616875886917, \"Height\": 0.020995549857616425, \"Left\": 0.45989489555358887, \"Top\": 0.48355159163475037}, \"Polygon\": [{\"X\": 0.45989489555358887, \"Y\": 0.49426281452178955}, {\"X\": 0.548048734664917, \"Y\": 0.48355159163475037}, {\"X\": 0.5505510568618774, \"Y\": 0.4938359260559082}, {\"X\": 0.4623972177505493, \"Y\": 0.504547119140625}]}, \"Id\": \"6eb86ad8-9626-493b-b56b-e7396be5d098\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cec15d35-3a14-47ee-8e05-b72c79d07a93\", \"afc0ee26-b9db-4ca5-8362-36ab03413fff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.20606994628906, \"Text\": \"Value 3.8.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09199802577495575, \"Height\": 0.021066801622509956, \"Left\": 0.6010697484016418, \"Top\": 0.46579617261886597}, \"Polygon\": [{\"X\": 0.6010697484016418, \"Y\": 0.4766732454299927}, {\"X\": 0.6905884146690369, \"Y\": 0.46579617261886597}, {\"X\": 0.693067729473114, \"Y\": 0.47598594427108765}, {\"X\": 0.603549063205719, \"Y\": 0.48686298727989197}]}, \"Id\": \"7030b704-e018-4763-b830-607c5971dd2f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"edd9ea1b-f1cb-47f8-9c7f-8ee521d87f38\", \"b158b376-efae-4661-9ac3-05492b09fcf4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63191986083984, \"Text\": \"Value 3.8.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09139969199895859, \"Height\": 0.02090759389102459, \"Left\": 0.7429826259613037, \"Top\": 0.44826358556747437}, \"Polygon\": [{\"X\": 0.7429826259613037, \"Y\": 0.4590705931186676}, {\"X\": 0.8319247364997864, \"Y\": 0.44826358556747437}, {\"X\": 0.8343823552131653, \"Y\": 0.45836418867111206}, {\"X\": 0.7454402446746826, \"Y\": 0.4691711962223053}]}, \"Id\": \"7e9adc60-4baa-4a13-b820-fe8bde441a65\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c5177df-88fd-4ec2-8989-01007b3f8fa7\", \"41c72218-a9a1-4e45-910c-521a273cfa76\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62659454345703, \"Text\": \"YES: checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.106040820479393, \"Height\": 0.023401333019137383, \"Left\": 0.04565735161304474, \"Top\": 0.5478991270065308}, \"Polygon\": [{\"X\": 0.04565735161304474, \"Y\": 0.5604633092880249}, {\"X\": 0.14906133711338043, \"Y\": 0.5478991270065308}, {\"X\": 0.15169817209243774, \"Y\": 0.558736264705658}, {\"X\": 0.04829418286681175, \"Y\": 0.5713004469871521}]}, \"Id\": \"87d3b309-b4b3-41c6-a234-f9f6f1c73fa3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad574b45-d57c-4304-95d0-7fef25fc6f19\", \"2b1fcc37-45d9-430d-bcf5-b47957d40e83\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8735580444336, \"Text\": \"NO: not-checked\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1355062872171402, \"Height\": 0.026968952268362045, \"Left\": 0.04919660836458206, \"Top\": 0.5603932738304138}, \"Polygon\": [{\"X\": 0.04919660836458206, \"Y\": 0.5765380859375}, {\"X\": 0.18206922709941864, \"Y\": 0.5603932738304138}, {\"X\": 0.18470290303230286, \"Y\": 0.57121741771698}, {\"X\": 0.05183028057217598, \"Y\": 0.5873622298240662}]}, \"Id\": \"d468c98b-93ea-498e-9438-39987fe762f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a2bd1b93-c298-4f75-9459-c0c586a060f7\", \"ebde66ce-d2af-4c86-ba3a-fef80f507a42\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 82.98583221435547, \"Text\": \"Hel lo World - barcode herel\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1103675588965416, \"Height\": 0.017886223271489143, \"Left\": 0.6551191806793213, \"Top\": 0.6018576622009277}, \"Polygon\": [{\"X\": 0.6551191806793213, \"Y\": 0.6151316165924072}, {\"X\": 0.76436448097229, \"Y\": 0.6018576622009277}, {\"X\": 0.7654867172241211, \"Y\": 0.6064699292182922}, {\"X\": 0.6562414169311523, \"Y\": 0.6197438836097717}]}, \"Id\": \"1ca9b94f-5dd1-46ad-b581-ee16994008b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b9f6ed92-cbdb-4f0a-9e67-7ab878a653db\", \"770fb8b8-3d16-47da-88f9-7f1e9a7c22c7\", \"53ec4eb7-96e6-44cf-9ded-d64e77575124\", \"624bdb57-f8dd-4aa9-8044-b2e096257e87\", \"d462e71d-b951-4e23-9111-fbb042a449a0\", \"69d0a80d-d9d9-4a76-b025-1706008112cb\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 82.25636291503906, \"Text\": \"omeName\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08519083261489868, \"Height\": 0.02023111656308174, \"Left\": 0.0, \"Top\": 0.061120592057704926}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.07140137255191803}, {\"X\": 0.08276976644992828, \"Y\": 0.061120592057704926}, {\"X\": 0.08519083261489868, \"Y\": 0.07107093185186386}, {\"X\": 0.0005794707685709, \"Y\": 0.08135171234607697}]}, \"Id\": \"3c26c3f5-05f6-42cf-844a-809884c9517d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9137191772461, \"Text\": \"Key1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046067290008068085, \"Height\": 0.018313584849238396, \"Left\": 0.6026710867881775, \"Top\": 0.017952371388673782}, \"Polygon\": [{\"X\": 0.6026710867881775, \"Y\": 0.023162422701716423}, {\"X\": 0.6455501317977905, \"Y\": 0.017952371388673782}, {\"X\": 0.6487383842468262, \"Y\": 0.031055904924869537}, {\"X\": 0.6058593988418579, \"Y\": 0.03626595437526703}]}, \"Id\": \"fe627c4d-3f06-47b6-a38f-5020a443fa18\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.1922607421875, \"Text\": \"value1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05594763904809952, \"Height\": 0.017552532255649567, \"Left\": 0.6497273445129395, \"Top\": 0.010502113029360771}, \"Polygon\": [{\"X\": 0.6497273445129395, \"Y\": 0.01697244495153427}, {\"X\": 0.7029784917831421, \"Y\": 0.010502113029360771}, {\"X\": 0.705674946308136, \"Y\": 0.021584313362836838}, {\"X\": 0.6524237990379333, \"Y\": 0.028054645285010338}]}, \"Id\": \"a95407bc-e233-4dd9-b563-8f1076c6a78a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80941772460938, \"Text\": \"Key2:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04588663950562477, \"Height\": 0.01762508787214756, \"Left\": 0.6086581945419312, \"Top\": 0.04188179224729538}, \"Polygon\": [{\"X\": 0.6086581945419312, \"Y\": 0.04709020256996155}, {\"X\": 0.6515237092971802, \"Y\": 0.04188179224729538}, {\"X\": 0.6545448303222656, \"Y\": 0.05429847538471222}, {\"X\": 0.6116793751716614, \"Y\": 0.05950688198208809}]}, \"Id\": \"aca9fd22-0d2a-40a1-a8ea-0cb2882de9d6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74931335449219, \"Text\": \"value2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05606034770607948, \"Height\": 0.017370052635669708, \"Left\": 0.6554476022720337, \"Top\": 0.034319691359996796}, \"Polygon\": [{\"X\": 0.6554476022720337, \"Y\": 0.040809694677591324}, {\"X\": 0.7088606953620911, \"Y\": 0.034319691359996796}, {\"X\": 0.7115079760551453, \"Y\": 0.045199740678071976}, {\"X\": 0.6580948829650879, \"Y\": 0.051689743995666504}]}, \"Id\": \"558ad9dd-d884-4d56-8b5c-0c3397f025cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.78811645507812, \"Text\": \"alue\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029720276594161987, \"Height\": 0.014249919913709164, \"Left\": 0.0, \"Top\": 0.16565757989883423}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.16942216455936432}, {\"X\": 0.027169041335582733, \"Y\": 0.16565757989883423}, {\"X\": 0.029720276594161987, \"Y\": 0.17614293098449707}, {\"X\": 0.0, \"Y\": 0.17990750074386597}]}, \"Id\": \"54e8a12f-2d14-45c5-b7f2-f9294bb22c6a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26823425292969, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04066818207502365, \"Height\": 0.014926520176231861, \"Left\": 0.032601241022348404, \"Top\": 0.16048617660999298}, \"Polygon\": [{\"X\": 0.032601241022348404, \"Y\": 0.16512341797351837}, {\"X\": 0.0707658901810646, \"Y\": 0.16048617660999298}, {\"X\": 0.07326941937208176, \"Y\": 0.17077547311782837}, {\"X\": 0.03510477393865585, \"Y\": 0.17541269958019257}]}, \"Id\": \"26dc26e8-8d5a-48ee-9a7f-30defff63e0b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76044464111328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04812467843294144, \"Height\": 0.015997445210814476, \"Left\": 0.08964089304208755, \"Top\": 0.1521853655576706}, \"Polygon\": [{\"X\": 0.08964089304208755, \"Y\": 0.1577235758304596}, {\"X\": 0.1352206915616989, \"Y\": 0.1521853655576706}, {\"X\": 0.137765571475029, \"Y\": 0.16264459490776062}, {\"X\": 0.09218578040599823, \"Y\": 0.16818282008171082}]}, \"Id\": \"cc99d96a-64c3-4a3f-b143-ff40c4cb0c2f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2283706665039, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041411299258470535, \"Height\": 0.014898371882736683, \"Left\": 0.1401994526386261, \"Top\": 0.14702899754047394}, \"Polygon\": [{\"X\": 0.1401994526386261, \"Y\": 0.15176013112068176}, {\"X\": 0.17913690209388733, \"Y\": 0.14702899754047394}, {\"X\": 0.18161074817180634, \"Y\": 0.15719623863697052}, {\"X\": 0.1426732838153839, \"Y\": 0.16192737221717834}]}, \"Id\": \"3da9f1e5-c46b-4edd-ac18-5a78fc8bcccd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62765502929688, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048506684601306915, \"Height\": 0.015968330204486847, \"Left\": 0.19737793505191803, \"Top\": 0.1387234330177307}, \"Polygon\": [{\"X\": 0.19737793505191803, \"Y\": 0.1443103551864624}, {\"X\": 0.24335867166519165, \"Y\": 0.1387234330177307}, {\"X\": 0.24588461220264435, \"Y\": 0.14910483360290527}, {\"X\": 0.19990387558937073, \"Y\": 0.15469175577163696}]}, \"Id\": \"c98f3ac9-02ca-4301-940d-f1761e3c4518\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35865783691406, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04073332995176315, \"Height\": 0.014988581649959087, \"Left\": 0.24856260418891907, \"Top\": 0.13348552584648132}, \"Polygon\": [{\"X\": 0.24856260418891907, \"Y\": 0.13812902569770813}, {\"X\": 0.28677883744239807, \"Y\": 0.13348552584648132}, {\"X\": 0.2892959415912628, \"Y\": 0.14383061230182648}, {\"X\": 0.2510797083377838, \"Y\": 0.14847411215305328}]}, \"Id\": \"6118f3ab-5357-47e0-9849-e2ed827c7665\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80530548095703, \"Text\": \"alue\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033799219876527786, \"Height\": 0.014652072452008724, \"Left\": 0.0, \"Top\": 0.18300479650497437}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.18709367513656616}, {\"X\": 0.031229037791490555, \"Y\": 0.18300479650497437}, {\"X\": 0.033799219876527786, \"Y\": 0.19356800615787506}, {\"X\": 0.00014759664190933108, \"Y\": 0.19765686988830566}]}, \"Id\": \"c693b43b-6c4b-4270-90ec-c9375ef2e089\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.98802947998047, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04091380536556244, \"Height\": 0.014986822381615639, \"Left\": 0.03682297468185425, \"Top\": 0.17778380215168}, \"Polygon\": [{\"X\": 0.03682297468185425, \"Y\": 0.18244995176792145}, {\"X\": 0.07522560656070709, \"Y\": 0.17778380215168}, {\"X\": 0.07773678004741669, \"Y\": 0.18810448050498962}, {\"X\": 0.039334144443273544, \"Y\": 0.19277061522006989}]}, \"Id\": \"a43c1dc0-1191-497f-8651-f3fedf42eb72\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74573516845703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048061978071928024, \"Height\": 0.015846077352762222, \"Left\": 0.09417843073606491, \"Top\": 0.16966883838176727}, \"Polygon\": [{\"X\": 0.09417843073606491, \"Y\": 0.1752038151025772}, {\"X\": 0.13973157107830048, \"Y\": 0.16966883838176727}, {\"X\": 0.14224040508270264, \"Y\": 0.17997993528842926}, {\"X\": 0.09668727219104767, \"Y\": 0.1855149120092392}]}, \"Id\": \"1fc4276c-a169-4bef-8d59-511b8a09fe36\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5132827758789, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041098713874816895, \"Height\": 0.014709548093378544, \"Left\": 0.1447252780199051, \"Top\": 0.16451632976531982}, \"Polygon\": [{\"X\": 0.1447252780199051, \"Y\": 0.16921406984329224}, {\"X\": 0.18338797986507416, \"Y\": 0.16451632976531982}, {\"X\": 0.18582399189472198, \"Y\": 0.1745281219482422}, {\"X\": 0.14716129004955292, \"Y\": 0.1792258769273758}]}, \"Id\": \"b7d0d8a7-db28-430d-b42a-de68f54b1e65\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74708557128906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04784826561808586, \"Height\": 0.015850525349378586, \"Left\": 0.2020430713891983, \"Top\": 0.156171977519989}, \"Polygon\": [{\"X\": 0.2020430713891983, \"Y\": 0.16168005764484406}, {\"X\": 0.24737487733364105, \"Y\": 0.156171977519989}, {\"X\": 0.24989134073257446, \"Y\": 0.16651442646980286}, {\"X\": 0.2045595496892929, \"Y\": 0.1720225065946579}]}, \"Id\": \"0c3ea5cc-390d-4820-8405-374a57b96be5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.92729187011719, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040644172579050064, \"Height\": 0.014846653677523136, \"Left\": 0.25295311212539673, \"Top\": 0.15100032091140747}, \"Polygon\": [{\"X\": 0.25295311212539673, \"Y\": 0.1556369811296463}, {\"X\": 0.2911130487918854, \"Y\": 0.15100032091140747}, {\"X\": 0.2935973107814789, \"Y\": 0.1612103283405304}, {\"X\": 0.25543737411499023, \"Y\": 0.16584697365760803}]}, \"Id\": \"beb23869-a996-4cc3-8a8f-c17ac2eb3806\"}, {\"BlockType\": \"WORD\", \"Confidence\": 86.24179077148438, \"Text\": \"alue\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03744528815150261, \"Height\": 0.014611034654080868, \"Left\": 0.0006588924443349242, \"Top\": 0.2004707306623459}, \"Polygon\": [{\"X\": 0.0006588924443349242, \"Y\": 0.20471404492855072}, {\"X\": 0.0355815626680851, \"Y\": 0.2004707306623459}, {\"X\": 0.03810418024659157, \"Y\": 0.2108384519815445}, {\"X\": 0.0031815108377486467, \"Y\": 0.21508176624774933}]}, \"Id\": \"e705716b-444a-4966-a6b0-c27656da50c9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49500274658203, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04066642001271248, \"Height\": 0.014998848550021648, \"Left\": 0.04081442579627037, \"Top\": 0.19523833692073822}, \"Polygon\": [{\"X\": 0.04081442579627037, \"Y\": 0.199873149394989}, {\"X\": 0.07895912230014801, \"Y\": 0.19523833692073822}, {\"X\": 0.08148084580898285, \"Y\": 0.20560237765312195}, {\"X\": 0.04333614557981491, \"Y\": 0.21023719012737274}]}, \"Id\": \"c953951d-64c6-409e-ae67-8eeb9603a468\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70862579345703, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048109207302331924, \"Height\": 0.015843268483877182, \"Left\": 0.09841901063919067, \"Top\": 0.18702836334705353}, \"Polygon\": [{\"X\": 0.09841901063919067, \"Y\": 0.1925693303346634}, {\"X\": 0.14402151107788086, \"Y\": 0.18702836334705353}, {\"X\": 0.1465282142162323, \"Y\": 0.19733065366744995}, {\"X\": 0.10092570632696152, \"Y\": 0.202871635556221}]}, \"Id\": \"6701f362-5ea6-442d-8b77-a11900419e2c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6119613647461, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040711235255002975, \"Height\": 0.014597545377910137, \"Left\": 0.1491904854774475, \"Top\": 0.18202871084213257}, \"Polygon\": [{\"X\": 0.1491904854774475, \"Y\": 0.1866813600063324}, {\"X\": 0.18748198449611664, \"Y\": 0.18202871084213257}, {\"X\": 0.18990172445774078, \"Y\": 0.19197361171245575}, {\"X\": 0.15161022543907166, \"Y\": 0.19662626087665558}]}, \"Id\": \"1682ebce-55c4-4c01-85ae-cb73acfba4f7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71504974365234, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04785620793700218, \"Height\": 0.01581639237701893, \"Left\": 0.20641547441482544, \"Top\": 0.17358413338661194}, \"Polygon\": [{\"X\": 0.20641547441482544, \"Y\": 0.17909425497055054}, {\"X\": 0.2517639994621277, \"Y\": 0.17358413338661194}, {\"X\": 0.2542716860771179, \"Y\": 0.1838904172182083}, {\"X\": 0.2089231312274933, \"Y\": 0.18940052390098572}]}, \"Id\": \"b0d64f29-986f-46bf-950d-9ab7b8592684\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62769317626953, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040401872247457504, \"Height\": 0.014683504588901997, \"Left\": 0.2574935555458069, \"Top\": 0.16848988831043243}, \"Polygon\": [{\"X\": 0.2574935555458069, \"Y\": 0.17310118675231934}, {\"X\": 0.29544469714164734, \"Y\": 0.16848988831043243}, {\"X\": 0.2978954017162323, \"Y\": 0.17856210470199585}, {\"X\": 0.25994426012039185, \"Y\": 0.18317340314388275}]}, \"Id\": \"27924724-9588-4c2e-8441-856250318834\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82777404785156, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05599295720458031, \"Height\": 0.01840461604297161, \"Left\": 0.23665264248847961, \"Top\": 0.21244822442531586}, \"Polygon\": [{\"X\": 0.23665264248847961, \"Y\": 0.21889828145503998}, {\"X\": 0.28973689675331116, \"Y\": 0.21244822442531586}, {\"X\": 0.2926456034183502, \"Y\": 0.2244028002023697}, {\"X\": 0.23956136405467987, \"Y\": 0.23085284233093262}]}, \"Id\": \"06d6f535-c543-48bb-9912-137d6c3d3dca\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1937484741211, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04769941419363022, \"Height\": 0.01706419698894024, \"Left\": 0.2955803871154785, \"Top\": 0.20649424195289612}, \"Polygon\": [{\"X\": 0.2955803871154785, \"Y\": 0.21194671094417572}, {\"X\": 0.3404545187950134, \"Y\": 0.20649424195289612}, {\"X\": 0.34327980875968933, \"Y\": 0.2181059718132019}, {\"X\": 0.2984057068824768, \"Y\": 0.2235584408044815}]}, \"Id\": \"9b40bb09-1dae-4a2d-b425-fb0303e25881\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8107681274414, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05651513487100601, \"Height\": 0.018754903227090836, \"Left\": 0.3589986562728882, \"Top\": 0.19700933992862701}, \"Polygon\": [{\"X\": 0.3589986562728882, \"Y\": 0.20351409912109375}, {\"X\": 0.412533164024353, \"Y\": 0.19700933992862701}, {\"X\": 0.415513813495636, \"Y\": 0.209259495139122}, {\"X\": 0.36197930574417114, \"Y\": 0.21576425433158875}]}, \"Id\": \"ad282424-0b58-4475-8e08-a509fc0e06fb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30433654785156, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04791658744215965, \"Height\": 0.017090151086449623, \"Left\": 0.41793471574783325, \"Top\": 0.19120900332927704}, \"Polygon\": [{\"X\": 0.41793471574783325, \"Y\": 0.19668786227703094}, {\"X\": 0.46302610635757446, \"Y\": 0.19120900332927704}, {\"X\": 0.4658512771129608, \"Y\": 0.20282027125358582}, {\"X\": 0.4207598865032196, \"Y\": 0.20829914510250092}]}, \"Id\": \"eda4e298-84f4-40ab-a877-ffe5a4dd9c54\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.863525390625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056585244834423065, \"Height\": 0.01875407248735428, \"Left\": 0.4811381995677948, \"Top\": 0.181755930185318}, \"Polygon\": [{\"X\": 0.4811381995677948, \"Y\": 0.1882694959640503}, {\"X\": 0.5347451567649841, \"Y\": 0.181755930185318}, {\"X\": 0.5377234220504761, \"Y\": 0.19399644434452057}, {\"X\": 0.48411649465560913, \"Y\": 0.20051001012325287}]}, \"Id\": \"f5a134ec-7433-494d-8f4d-89a2ab0f554a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30278778076172, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04802028834819794, \"Height\": 0.01716678775846958, \"Left\": 0.5400334596633911, \"Top\": 0.17592445015907288}, \"Polygon\": [{\"X\": 0.5400334596633911, \"Y\": 0.18141396343708038}, {\"X\": 0.5852125287055969, \"Y\": 0.17592445015907288}, {\"X\": 0.5880537629127502, \"Y\": 0.1876017153263092}, {\"X\": 0.5428747534751892, \"Y\": 0.1930912286043167}]}, \"Id\": \"1ec86d3c-e3a5-48b5-9607-b390db6f24e3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81372833251953, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05677936598658562, \"Height\": 0.01887703686952591, \"Left\": 0.6029884219169617, \"Top\": 0.1664823442697525}, \"Polygon\": [{\"X\": 0.6029884219169617, \"Y\": 0.17301645874977112}, {\"X\": 0.656764566898346, \"Y\": 0.1664823442697525}, {\"X\": 0.659767746925354, \"Y\": 0.1788252592086792}, {\"X\": 0.6059916019439697, \"Y\": 0.18535937368869781}]}, \"Id\": \"d3178462-db41-44bb-9c61-6cf4650aa2db\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35054779052734, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049030423164367676, \"Height\": 0.017204955220222473, \"Left\": 0.6618756055831909, \"Top\": 0.1606118083000183}, \"Polygon\": [{\"X\": 0.6618756055831909, \"Y\": 0.16622664034366608}, {\"X\": 0.7080860137939453, \"Y\": 0.1606118083000183}, {\"X\": 0.7109060287475586, \"Y\": 0.17220193147659302}, {\"X\": 0.664695680141449, \"Y\": 0.17781676352024078}]}, \"Id\": \"f17f66d1-44c4-47fc-bfd4-7ebd048ba73f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77831268310547, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056698404252529144, \"Height\": 0.018803471699357033, \"Left\": 0.7251432538032532, \"Top\": 0.15134625136852264}, \"Polygon\": [{\"X\": 0.7251432538032532, \"Y\": 0.15787248313426971}, {\"X\": 0.7788544297218323, \"Y\": 0.15134625136852264}, {\"X\": 0.7818416953086853, \"Y\": 0.16362351179122925}, {\"X\": 0.7281305193901062, \"Y\": 0.17014972865581512}]}, \"Id\": \"a861625d-5857-4ca3-ab18-dc92f7846e9c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49271392822266, \"Text\": \"2.1.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047706253826618195, \"Height\": 0.017217066138982773, \"Left\": 0.7843831777572632, \"Top\": 0.145426943898201}, \"Polygon\": [{\"X\": 0.7843831777572632, \"Y\": 0.15087561309337616}, {\"X\": 0.829226016998291, \"Y\": 0.145426943898201}, {\"X\": 0.8320894241333008, \"Y\": 0.1571953445672989}, {\"X\": 0.787246584892273, \"Y\": 0.16264401376247406}]}, \"Id\": \"96973ad9-0316-45d7-a339-604489c1c134\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8938217163086, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05596749857068062, \"Height\": 0.01840244233608246, \"Left\": 0.24166439473628998, \"Top\": 0.23263700306415558}, \"Polygon\": [{\"X\": 0.24166439473628998, \"Y\": 0.239083930850029}, {\"X\": 0.29472294449806213, \"Y\": 0.23263700306415558}, {\"X\": 0.2976318895816803, \"Y\": 0.24459251761436462}, {\"X\": 0.24457333981990814, \"Y\": 0.25103944540023804}]}, \"Id\": \"57e4ceb7-a132-410f-9bde-e04e1ddf60ce\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.99006652832031, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047812893986701965, \"Height\": 0.01716672070324421, \"Left\": 0.3004480004310608, \"Top\": 0.22655673325061798}, \"Polygon\": [{\"X\": 0.3004480004310608, \"Y\": 0.2320202887058258}, {\"X\": 0.34541332721710205, \"Y\": 0.22655673325061798}, {\"X\": 0.34826087951660156, \"Y\": 0.2382599115371704}, {\"X\": 0.3032955527305603, \"Y\": 0.24372346699237823}]}, \"Id\": \"f5a8041c-e435-4fd8-8569-d01181ac7a54\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.887939453125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056003667414188385, \"Height\": 0.01851111277937889, \"Left\": 0.36399513483047485, \"Top\": 0.2173006683588028}, \"Polygon\": [{\"X\": 0.36399513483047485, \"Y\": 0.2237488031387329}, {\"X\": 0.4170636832714081, \"Y\": 0.2173006683588028}, {\"X\": 0.41999879479408264, \"Y\": 0.22936363518238068}, {\"X\": 0.366930216550827, \"Y\": 0.2358117699623108}]}, \"Id\": \"560b1740-4829-498f-a31c-8f2a58960469\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2037353515625, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04852845519781113, \"Height\": 0.017170948907732964, \"Left\": 0.4225742518901825, \"Top\": 0.2113438993692398}, \"Polygon\": [{\"X\": 0.4225742518901825, \"Y\": 0.2168969213962555}, {\"X\": 0.46827590465545654, \"Y\": 0.2113438993692398}, {\"X\": 0.4711027145385742, \"Y\": 0.22296182811260223}, {\"X\": 0.42540109157562256, \"Y\": 0.22851485013961792}]}, \"Id\": \"59fc197d-5d57-43b5-9b32-f3b9afe384cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85832977294922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0557871088385582, \"Height\": 0.01849699392914772, \"Left\": 0.4866894781589508, \"Top\": 0.2019980400800705}, \"Polygon\": [{\"X\": 0.4866894781589508, \"Y\": 0.20841950178146362}, {\"X\": 0.5395384430885315, \"Y\": 0.2019980400800705}, {\"X\": 0.5424765944480896, \"Y\": 0.21407358348369598}, {\"X\": 0.4896276295185089, \"Y\": 0.2204950451850891}]}, \"Id\": \"960b15a8-64df-4e01-ab08-4d047560366a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14344787597656, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04824322834610939, \"Height\": 0.017228223383426666, \"Left\": 0.5449851751327515, \"Top\": 0.19602766633033752}, \"Polygon\": [{\"X\": 0.5449851751327515, \"Y\": 0.20154322683811188}, {\"X\": 0.5903785228729248, \"Y\": 0.19602766633033752}, {\"X\": 0.5932283997535706, \"Y\": 0.20774032175540924}, {\"X\": 0.5478350520133972, \"Y\": 0.2132558822631836}]}, \"Id\": \"3e5ac6b5-0166-4921-9937-f6f809340bc6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85356903076172, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055904924869537354, \"Height\": 0.018645193427801132, \"Left\": 0.6084962487220764, \"Top\": 0.1866702139377594}, \"Polygon\": [{\"X\": 0.6084962487220764, \"Y\": 0.1931019127368927}, {\"X\": 0.6614294648170471, \"Y\": 0.1866702139377594}, {\"X\": 0.6644011735916138, \"Y\": 0.19888371229171753}, {\"X\": 0.6114679574966431, \"Y\": 0.20531541109085083}]}, \"Id\": \"61c35479-2e81-4192-899b-67360187bdbc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49365997314453, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04930655658245087, \"Height\": 0.01740010268986225, \"Left\": 0.6666164994239807, \"Top\": 0.18054889142513275}, \"Polygon\": [{\"X\": 0.6666164994239807, \"Y\": 0.1861923485994339}, {\"X\": 0.7130624651908875, \"Y\": 0.18054889142513275}, {\"X\": 0.715923011302948, \"Y\": 0.1923055201768875}, {\"X\": 0.6694770455360413, \"Y\": 0.19794899225234985}]}, \"Id\": \"f87177dc-0db2-4a89-a3f3-b596619dfdb1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8504638671875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05591670796275139, \"Height\": 0.018659286201000214, \"Left\": 0.7306807637214661, \"Top\": 0.17150446772575378}, \"Polygon\": [{\"X\": 0.7306807637214661, \"Y\": 0.17793720960617065}, {\"X\": 0.7836226224899292, \"Y\": 0.17150446772575378}, {\"X\": 0.786597490310669, \"Y\": 0.18373100459575653}, {\"X\": 0.7336556911468506, \"Y\": 0.1901637464761734}]}, \"Id\": \"c8344fc3-570b-4795-8784-1df8cb527bf8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34405517578125, \"Text\": \"2.2.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04820214584469795, \"Height\": 0.01715059019625187, \"Left\": 0.7889114022254944, \"Top\": 0.1655750423669815}, \"Polygon\": [{\"X\": 0.7889114022254944, \"Y\": 0.1710878312587738}, {\"X\": 0.8342819213867188, \"Y\": 0.1655750423669815}, {\"X\": 0.8371135592460632, \"Y\": 0.17721284925937653}, {\"X\": 0.7917430400848389, \"Y\": 0.18272563815116882}]}, \"Id\": \"c5007f32-8985-4c8b-8e8c-d755d7507c9f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83843231201172, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05582538619637489, \"Height\": 0.018464835360646248, \"Left\": 0.2467547059059143, \"Top\": 0.2527613639831543}, \"Polygon\": [{\"X\": 0.2467547059059143, \"Y\": 0.25918859243392944}, {\"X\": 0.299651175737381, \"Y\": 0.2527613639831543}, {\"X\": 0.3025800883769989, \"Y\": 0.26479896903038025}, {\"X\": 0.24968361854553223, \"Y\": 0.2712261974811554}]}, \"Id\": \"f53dd86b-9f22-4f51-9da7-c3497bd3d857\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.30514526367188, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04800211265683174, \"Height\": 0.017150431871414185, \"Left\": 0.30555903911590576, \"Top\": 0.24677608907222748}, \"Polygon\": [{\"X\": 0.30555903911590576, \"Y\": 0.2522638440132141}, {\"X\": 0.3507234752178192, \"Y\": 0.24677608907222748}, {\"X\": 0.3535611629486084, \"Y\": 0.25843876600265503}, {\"X\": 0.30839675664901733, \"Y\": 0.26392653584480286}]}, \"Id\": \"7dc9e481-05f6-45d4-aeca-1f0bfa8b7cec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81592559814453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05542328208684921, \"Height\": 0.01834491267800331, \"Left\": 0.3693884611129761, \"Top\": 0.2375430464744568}, \"Polygon\": [{\"X\": 0.3693884611129761, \"Y\": 0.2439235895872116}, {\"X\": 0.4219006597995758, \"Y\": 0.2375430464744568}, {\"X\": 0.4248117506504059, \"Y\": 0.24950741231441498}, {\"X\": 0.37229958176612854, \"Y\": 0.2558879554271698}]}, \"Id\": \"2c5c73e8-377b-4f27-ae86-d14fba04fec9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32835388183594, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048030268400907516, \"Height\": 0.017010847106575966, \"Left\": 0.42802825570106506, \"Top\": 0.23154637217521667}, \"Polygon\": [{\"X\": 0.42802825570106506, \"Y\": 0.2370418906211853}, {\"X\": 0.4732566773891449, \"Y\": 0.23154637217521667}, {\"X\": 0.4760585129261017, \"Y\": 0.24306169152259827}, {\"X\": 0.43083009123802185, \"Y\": 0.2485572099685669}]}, \"Id\": \"98804704-59a8-46f6-a2da-8a9e68ab2bee\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80118560791016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05567602813243866, \"Height\": 0.01825704053044319, \"Left\": 0.4917498528957367, \"Top\": 0.22238224744796753}, \"Polygon\": [{\"X\": 0.4917498528957367, \"Y\": 0.22879710793495178}, {\"X\": 0.544544517993927, \"Y\": 0.22238224744796753}, {\"X\": 0.5474258661270142, \"Y\": 0.23422442376613617}, {\"X\": 0.49463123083114624, \"Y\": 0.24063928425312042}]}, \"Id\": \"d3d8c359-8c72-4c07-9083-61054a6d6646\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49090576171875, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04816869646310806, \"Height\": 0.017009813338518143, \"Left\": 0.5497233867645264, \"Top\": 0.2164234071969986}, \"Polygon\": [{\"X\": 0.5497233867645264, \"Y\": 0.22193628549575806}, {\"X\": 0.5950946807861328, \"Y\": 0.2164234071969986}, {\"X\": 0.5978921055793762, \"Y\": 0.22792033851146698}, {\"X\": 0.552520751953125, \"Y\": 0.23343321681022644}]}, \"Id\": \"ba15ac61-358d-4797-8ece-bbaffba965e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76297760009766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05637066066265106, \"Height\": 0.01894097775220871, \"Left\": 0.6133213043212891, \"Top\": 0.20688366889953613}, \"Polygon\": [{\"X\": 0.6133213043212891, \"Y\": 0.21336467564105988}, {\"X\": 0.6666602492332458, \"Y\": 0.20688366889953613}, {\"X\": 0.6696919798851013, \"Y\": 0.2193436473608017}, {\"X\": 0.6163529753684998, \"Y\": 0.22582465410232544}]}, \"Id\": \"a1c4df11-e1a3-4d1a-8fcf-01025eed65dd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48873138427734, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04872027784585953, \"Height\": 0.01708206720650196, \"Left\": 0.672261655330658, \"Top\": 0.20109166204929352}, \"Polygon\": [{\"X\": 0.672261655330658, \"Y\": 0.20667140185832977}, {\"X\": 0.7181832194328308, \"Y\": 0.20109166204929352}, {\"X\": 0.7209818959236145, \"Y\": 0.21259398758411407}, {\"X\": 0.6750603318214417, \"Y\": 0.21817372739315033}]}, \"Id\": \"70385748-bac3-46cb-a3e0-218d625fdffd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60710144042969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05625395476818085, \"Height\": 0.018522577360272408, \"Left\": 0.7357361912727356, \"Top\": 0.19187870621681213}, \"Polygon\": [{\"X\": 0.7357361912727356, \"Y\": 0.19835783541202545}, {\"X\": 0.7890597581863403, \"Y\": 0.19187870621681213}, {\"X\": 0.7919901013374329, \"Y\": 0.20392215251922607}, {\"X\": 0.7386665344238281, \"Y\": 0.2104012817144394}]}, \"Id\": \"42330057-fa69-4109-b8da-00ee636e02de\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40678405761719, \"Text\": \"2.3.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047269057482481, \"Height\": 0.01692691072821617, \"Left\": 0.7945715188980103, \"Top\": 0.18602654337882996}, \"Polygon\": [{\"X\": 0.7945715188980103, \"Y\": 0.19142931699752808}, {\"X\": 0.8390365839004517, \"Y\": 0.18602654337882996}, {\"X\": 0.8418405652046204, \"Y\": 0.1975506842136383}, {\"X\": 0.797375500202179, \"Y\": 0.20295345783233643}]}, \"Id\": \"ade5a941-bdef-4732-a041-0f3f7be019c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82732391357422, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055781856179237366, \"Height\": 0.01840122789144516, \"Left\": 0.25199612975120544, \"Top\": 0.2730075418949127}, \"Polygon\": [{\"X\": 0.25199612975120544, \"Y\": 0.2794312536716461}, {\"X\": 0.30486369132995605, \"Y\": 0.2730075418949127}, {\"X\": 0.3077779710292816, \"Y\": 0.2849850654602051}, {\"X\": 0.2549104392528534, \"Y\": 0.2914087772369385}]}, \"Id\": \"8883d459-e519-496e-a4f3-8bc153f14e3d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62980651855469, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04785465449094772, \"Height\": 0.016917994245886803, \"Left\": 0.3103559911251068, \"Top\": 0.26714152097702026}, \"Polygon\": [{\"X\": 0.3103559911251068, \"Y\": 0.2726178765296936}, {\"X\": 0.35542672872543335, \"Y\": 0.26714152097702026}, {\"X\": 0.35821065306663513, \"Y\": 0.2785831391811371}, {\"X\": 0.3131399154663086, \"Y\": 0.2840594947338104}]}, \"Id\": \"c13e0354-532a-4c49-993f-0048c50a76a8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80647277832031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05644790828227997, \"Height\": 0.018702663481235504, \"Left\": 0.3741418421268463, \"Top\": 0.25766244530677795}, \"Polygon\": [{\"X\": 0.3741418421268463, \"Y\": 0.2641603946685791}, {\"X\": 0.42762017250061035, \"Y\": 0.25766244530677795}, {\"X\": 0.4305897653102875, \"Y\": 0.2698671817779541}, {\"X\": 0.37711143493652344, \"Y\": 0.27636513113975525}]}, \"Id\": \"f3a8ea83-0892-443f-a825-c6014f6848cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53453063964844, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04786350205540657, \"Height\": 0.01692158170044422, \"Left\": 0.4329666793346405, \"Top\": 0.25193679332733154}, \"Polygon\": [{\"X\": 0.4329666793346405, \"Y\": 0.25741416215896606}, {\"X\": 0.47804561257362366, \"Y\": 0.25193679332733154}, {\"X\": 0.4808301627635956, \"Y\": 0.2633810043334961}, {\"X\": 0.4357512295246124, \"Y\": 0.2688583731651306}]}, \"Id\": \"c5d73d17-36bb-4d3c-be82-0e5ab1dad58f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83075714111328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05584869533777237, \"Height\": 0.0182005874812603, \"Left\": 0.49674907326698303, \"Top\": 0.24259603023529053}, \"Polygon\": [{\"X\": 0.49674907326698303, \"Y\": 0.24903424084186554}, {\"X\": 0.5497358441352844, \"Y\": 0.24259603023529053}, {\"X\": 0.5525977611541748, \"Y\": 0.2543584108352661}, {\"X\": 0.4996110498905182, \"Y\": 0.26079660654067993}]}, \"Id\": \"80be8982-8f09-41f0-8f1b-9cf131d02f51\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39643859863281, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047563329339027405, \"Height\": 0.016894882544875145, \"Left\": 0.5554754137992859, \"Top\": 0.23667654395103455}, \"Polygon\": [{\"X\": 0.5554754137992859, \"Y\": 0.24211713671684265}, {\"X\": 0.6002517342567444, \"Y\": 0.23667654395103455}, {\"X\": 0.6030387282371521, \"Y\": 0.24813084304332733}, {\"X\": 0.5582624077796936, \"Y\": 0.25357142090797424}]}, \"Id\": \"b1297020-86d2-4316-99e9-545eee7bde81\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85108947753906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05542292445898056, \"Height\": 0.01791531778872013, \"Left\": 0.6188304424285889, \"Top\": 0.22749312222003937}, \"Polygon\": [{\"X\": 0.6188304424285889, \"Y\": 0.2338867038488388}, {\"X\": 0.6714499592781067, \"Y\": 0.22749312222003937}, {\"X\": 0.6742533445358276, \"Y\": 0.2390148639678955}, {\"X\": 0.6216338276863098, \"Y\": 0.24540844559669495}]}, \"Id\": \"395bddcd-c419-411e-ac5c-22877ed90fba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5904541015625, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04827488213777542, \"Height\": 0.0169509407132864, \"Left\": 0.6774144768714905, \"Top\": 0.22134113311767578}, \"Polygon\": [{\"X\": 0.6774144768714905, \"Y\": 0.2268691062927246}, {\"X\": 0.7229099869728088, \"Y\": 0.22134113311767578}, {\"X\": 0.7256893515586853, \"Y\": 0.2327641099691391}, {\"X\": 0.6801938414573669, \"Y\": 0.23829208314418793}]}, \"Id\": \"29098609-bf5e-4f29-ba47-9dbf6dacace9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39291381835938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055420294404029846, \"Height\": 0.018232084810733795, \"Left\": 0.7407703399658203, \"Top\": 0.21217095851898193}, \"Polygon\": [{\"X\": 0.7407703399658203, \"Y\": 0.2185545563697815}, {\"X\": 0.7933077216148376, \"Y\": 0.21217095851898193}, {\"X\": 0.796190619468689, \"Y\": 0.22401943802833557}, {\"X\": 0.7436532378196716, \"Y\": 0.23040303587913513}]}, \"Id\": \"d0a523aa-5ddf-436b-a66b-15478cd6b3d8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.33162689208984, \"Text\": \"2.4.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04790111258625984, \"Height\": 0.016935724765062332, \"Left\": 0.7992078065872192, \"Top\": 0.2062349021434784}, \"Polygon\": [{\"X\": 0.7992078065872192, \"Y\": 0.21171654760837555}, {\"X\": 0.8443219661712646, \"Y\": 0.2062349021434784}, {\"X\": 0.8471089601516724, \"Y\": 0.21768899261951447}, {\"X\": 0.801994800567627, \"Y\": 0.22317062318325043}]}, \"Id\": \"442af723-f2dc-4f71-8384-07db476d821f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89055633544922, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05560670420527458, \"Height\": 0.01841137185692787, \"Left\": 0.2569376230239868, \"Top\": 0.29315051436424255}, \"Polygon\": [{\"X\": 0.2569376230239868, \"Y\": 0.29955199360847473}, {\"X\": 0.3096221387386322, \"Y\": 0.29315051436424255}, {\"X\": 0.3125443160533905, \"Y\": 0.30516040325164795}, {\"X\": 0.2598598003387451, \"Y\": 0.3115618824958801}]}, \"Id\": \"172a1670-f87e-4e5e-ac61-98438f1aff56\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45185852050781, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047757647931575775, \"Height\": 0.017229555174708366, \"Left\": 0.3155018985271454, \"Top\": 0.28717079758644104}, \"Polygon\": [{\"X\": 0.3155018985271454, \"Y\": 0.2926255166530609}, {\"X\": 0.36039456725120544, \"Y\": 0.28717079758644104}, {\"X\": 0.36325955390930176, \"Y\": 0.2989456355571747}, {\"X\": 0.3183669149875641, \"Y\": 0.30440035462379456}]}, \"Id\": \"f1b1486d-37b4-4217-9a10-9a9439bee341\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84895324707031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0550936684012413, \"Height\": 0.018223248422145844, \"Left\": 0.3795451521873474, \"Top\": 0.27806100249290466}, \"Polygon\": [{\"X\": 0.3795451521873474, \"Y\": 0.2844039797782898}, {\"X\": 0.4317481815814972, \"Y\": 0.27806100249290466}, {\"X\": 0.4346388280391693, \"Y\": 0.2899412512779236}, {\"X\": 0.38243579864501953, \"Y\": 0.2962842285633087}]}, \"Id\": \"f953ebef-c8c0-421a-83cd-dca733adc4c6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45008087158203, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04763439670205116, \"Height\": 0.017042508348822594, \"Left\": 0.4382183253765106, \"Top\": 0.2720198333263397}, \"Polygon\": [{\"X\": 0.4382183253765106, \"Y\": 0.2774648368358612}, {\"X\": 0.48303088545799255, \"Y\": 0.2720198333263397}, {\"X\": 0.4858527183532715, \"Y\": 0.2836173474788666}, {\"X\": 0.44104015827178955, \"Y\": 0.28906235098838806}]}, \"Id\": \"de350c71-4f61-430d-9730-ddc9aedb2f6d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83260345458984, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055866826325654984, \"Height\": 0.01808905601501465, \"Left\": 0.5018817782402039, \"Top\": 0.26289281249046326}, \"Polygon\": [{\"X\": 0.5018817782402039, \"Y\": 0.2693367004394531}, {\"X\": 0.554915189743042, \"Y\": 0.26289281249046326}, {\"X\": 0.5577486157417297, \"Y\": 0.2745380103588104}, {\"X\": 0.5047152638435364, \"Y\": 0.2809818685054779}]}, \"Id\": \"662344eb-9d57-45de-af33-dbbf66628aaf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47941589355469, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04757772013545036, \"Height\": 0.01700759306550026, \"Left\": 0.5604177117347717, \"Top\": 0.25681358575820923}, \"Polygon\": [{\"X\": 0.5604177117347717, \"Y\": 0.262252539396286}, {\"X\": 0.6051806211471558, \"Y\": 0.25681358575820923}, {\"X\": 0.6079954504966736, \"Y\": 0.2683822214603424}, {\"X\": 0.5632325410842896, \"Y\": 0.2738211750984192}]}, \"Id\": \"000c649c-9016-4e98-b436-a3dc1961cc08\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81399536132812, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05550115928053856, \"Height\": 0.018352622166275978, \"Left\": 0.6237687468528748, \"Top\": 0.24747034907341003}, \"Polygon\": [{\"X\": 0.6237687468528748, \"Y\": 0.2538604140281677}, {\"X\": 0.676359236240387, \"Y\": 0.24747034907341003}, {\"X\": 0.6792699098587036, \"Y\": 0.25943291187286377}, {\"X\": 0.6266794204711914, \"Y\": 0.26582297682762146}]}, \"Id\": \"fc477de9-94a8-4c9f-8cb1-3b8c1b132db6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62467956542969, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048899777233600616, \"Height\": 0.017277466133236885, \"Left\": 0.6817687153816223, \"Top\": 0.24143162369728088}, \"Polygon\": [{\"X\": 0.6817687153816223, \"Y\": 0.24702788889408112}, {\"X\": 0.7278262972831726, \"Y\": 0.24143162369728088}, {\"X\": 0.7306684851646423, \"Y\": 0.2531128227710724}, {\"X\": 0.6846109628677368, \"Y\": 0.2587091028690338}]}, \"Id\": \"4190ab95-389d-4a67-99d6-bfc065600cf2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76444244384766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05583912134170532, \"Height\": 0.018503831699490547, \"Left\": 0.7457149028778076, \"Top\": 0.2321779578924179}, \"Polygon\": [{\"X\": 0.7457149028778076, \"Y\": 0.23860572278499603}, {\"X\": 0.7986157536506653, \"Y\": 0.2321779578924179}, {\"X\": 0.8015540242195129, \"Y\": 0.24425402283668518}, {\"X\": 0.7486531734466553, \"Y\": 0.2506817877292633}]}, \"Id\": \"ac27900b-c50d-4651-ac5e-ac44808f93e9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62890625, \"Text\": \"2.5.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0478808656334877, \"Height\": 0.017102904617786407, \"Left\": 0.8042594790458679, \"Top\": 0.22631290555000305}, \"Polygon\": [{\"X\": 0.8042594790458679, \"Y\": 0.23178692162036896}, {\"X\": 0.8493108749389648, \"Y\": 0.22631290555000305}, {\"X\": 0.8521403670310974, \"Y\": 0.23794180154800415}, {\"X\": 0.8070889711380005, \"Y\": 0.24341581761837006}]}, \"Id\": \"f2c419d2-f1f4-4f94-bf96-a91a6073a4ca\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65826416015625, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03166922926902771, \"Height\": 0.013629432767629623, \"Left\": 0.010148662142455578, \"Top\": 0.40247029066085815}, \"Polygon\": [{\"X\": 0.010148662142455578, \"Y\": 0.40602028369903564}, {\"X\": 0.03936542198061943, \"Y\": 0.40247029066085815}, {\"X\": 0.04181789234280586, \"Y\": 0.4125497043132782}, {\"X\": 0.01260113250464201, \"Y\": 0.4160997271537781}]}, \"Id\": \"ddb719fd-6e4f-43fa-b59b-c0d0f8a61fe5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9186782836914, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10059326887130737, \"Height\": 0.02253757230937481, \"Left\": 0.044495392590761185, \"Top\": 0.3890252113342285}, \"Polygon\": [{\"X\": 0.044495392590761185, \"Y\": 0.4009336531162262}, {\"X\": 0.14250244200229645, \"Y\": 0.3890252113342285}, {\"X\": 0.14508865773677826, \"Y\": 0.399654358625412}, {\"X\": 0.04708161577582359, \"Y\": 0.41156280040740967}]}, \"Id\": \"dcf6336b-0634-447f-b13e-a659142ca3d6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86276245117188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04810480773448944, \"Height\": 0.015881773084402084, \"Left\": 0.4289672374725342, \"Top\": 0.3669322729110718}, \"Polygon\": [{\"X\": 0.4289672374725342, \"Y\": 0.37247151136398315}, {\"X\": 0.4745555520057678, \"Y\": 0.3669322729110718}, {\"X\": 0.4770720601081848, \"Y\": 0.3772747814655304}, {\"X\": 0.4314837157726288, \"Y\": 0.38281404972076416}]}, \"Id\": \"6b4e953e-e72c-4467-ba61-3a557509f1cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1026611328125, \"Text\": \"3.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0410347655415535, \"Height\": 0.014951648190617561, \"Left\": 0.4794173836708069, \"Top\": 0.3616690933704376}, \"Polygon\": [{\"X\": 0.4794173836708069, \"Y\": 0.366351455450058}, {\"X\": 0.5179535150527954, \"Y\": 0.3616690933704376}, {\"X\": 0.5204521417617798, \"Y\": 0.3719383776187897}, {\"X\": 0.48191606998443604, \"Y\": 0.37662073969841003}]}, \"Id\": \"887a7a5c-b94d-44f2-a51d-ec5a58d0b1de\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7997817993164, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048143792897462845, \"Height\": 0.016048014163970947, \"Left\": 0.5708134174346924, \"Top\": 0.3491470217704773}, \"Polygon\": [{\"X\": 0.5708134174346924, \"Y\": 0.35468608140945435}, {\"X\": 0.6164002418518066, \"Y\": 0.3491470217704773}, {\"X\": 0.6189572215080261, \"Y\": 0.3596559762954712}, {\"X\": 0.5733703970909119, \"Y\": 0.36519503593444824}]}, \"Id\": \"61f90330-6190-43cf-83c3-d65174583bae\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3193588256836, \"Text\": \"3.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04114288464188576, \"Height\": 0.014917325228452682, \"Left\": 0.6214478611946106, \"Top\": 0.343945175409317}, \"Polygon\": [{\"X\": 0.6214478611946106, \"Y\": 0.34864211082458496}, {\"X\": 0.660103976726532, \"Y\": 0.343945175409317}, {\"X\": 0.662590742111206, \"Y\": 0.35416555404663086}, {\"X\": 0.6239346265792847, \"Y\": 0.3588624894618988}]}, \"Id\": \"e32e5e2c-2c80-433a-b7ff-0b6d6f616f2d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73536682128906, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04799550399184227, \"Height\": 0.016015946865081787, \"Left\": 0.7125952839851379, \"Top\": 0.3314918577671051}, \"Polygon\": [{\"X\": 0.7125952839851379, \"Y\": 0.3370133340358734}, {\"X\": 0.7580373287200928, \"Y\": 0.3314918577671051}, {\"X\": 0.7605907917022705, \"Y\": 0.3419863283634186}, {\"X\": 0.7151487469673157, \"Y\": 0.3475078046321869}]}, \"Id\": \"d7825a8b-a11f-4f86-a615-8f971fae0f0d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39369201660156, \"Text\": \"3.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04082069918513298, \"Height\": 0.014950302429497242, \"Left\": 0.763128936290741, \"Top\": 0.32630500197410583}, \"Polygon\": [{\"X\": 0.763128936290741, \"Y\": 0.33096060156822205}, {\"X\": 0.8014447689056396, \"Y\": 0.32630500197410583}, {\"X\": 0.8039495944976807, \"Y\": 0.3365996778011322}, {\"X\": 0.765633761882782, \"Y\": 0.3412552773952484}]}, \"Id\": \"d1ef3bd0-1f5c-4746-9efd-b0b4730644cd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42801666259766, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03536513075232506, \"Height\": 0.0142734469845891, \"Left\": 0.012498053722083569, \"Top\": 0.42837557196617126}, \"Polygon\": [{\"X\": 0.012498053722083569, \"Y\": 0.4323686957359314}, {\"X\": 0.04536183923482895, \"Y\": 0.42837557196617126}, {\"X\": 0.0478631854057312, \"Y\": 0.4386558532714844}, {\"X\": 0.014999400824308395, \"Y\": 0.4426490068435669}]}, \"Id\": \"67a4f51f-ebbf-4fe4-8f29-3f6327ef9a29\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97854614257812, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06797745823860168, \"Height\": 0.018351415172219276, \"Left\": 0.05021669343113899, \"Top\": 0.41938596963882446}, \"Polygon\": [{\"X\": 0.05021669343113899, \"Y\": 0.42733821272850037}, {\"X\": 0.11566387861967087, \"Y\": 0.41938596963882446}, {\"X\": 0.11819415539503098, \"Y\": 0.42978519201278687}, {\"X\": 0.0527469702064991, \"Y\": 0.4377374053001404}]}, \"Id\": \"90bae850-296a-477d-abf0-274d4f12f61f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87728881835938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04779607802629471, \"Height\": 0.015803629532456398, \"Left\": 0.43346351385116577, \"Top\": 0.3843163251876831}, \"Polygon\": [{\"X\": 0.43346351385116577, \"Y\": 0.38981929421424866}, {\"X\": 0.47875329852104187, \"Y\": 0.3843163251876831}, {\"X\": 0.4812595844268799, \"Y\": 0.3946169912815094}, {\"X\": 0.4359697997570038, \"Y\": 0.40011996030807495}]}, \"Id\": \"7e17e59c-6f59-4b0d-bc35-138419c9185f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.96914672851562, \"Text\": \"3.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04090345278382301, \"Height\": 0.01477021723985672, \"Left\": 0.48375818133354187, \"Top\": 0.3791763484477997}, \"Polygon\": [{\"X\": 0.48375818133354187, \"Y\": 0.38384777307510376}, {\"X\": 0.5222044587135315, \"Y\": 0.3791763484477997}, {\"X\": 0.524661660194397, \"Y\": 0.38927510380744934}, {\"X\": 0.48621535301208496, \"Y\": 0.3939465582370758}]}, \"Id\": \"e0ec0ea4-e3d9-434d-a776-2c5b74587cec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76666259765625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04808827489614487, \"Height\": 0.015997672453522682, \"Left\": 0.5751407742500305, \"Top\": 0.36655962467193604}, \"Polygon\": [{\"X\": 0.5751407742500305, \"Y\": 0.3720932602882385}, {\"X\": 0.6206830143928528, \"Y\": 0.36655962467193604}, {\"X\": 0.6232290863990784, \"Y\": 0.3770236372947693}, {\"X\": 0.5776868462562561, \"Y\": 0.38255730271339417}]}, \"Id\": \"f7d146e5-2756-4a37-868a-9ab0d3e6cc42\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24887084960938, \"Text\": \"3.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0408211350440979, \"Height\": 0.014898864552378654, \"Left\": 0.6258662939071655, \"Top\": 0.36136069893836975}, \"Polygon\": [{\"X\": 0.6258662939071655, \"Y\": 0.3660179078578949}, {\"X\": 0.6641954779624939, \"Y\": 0.36136069893836975}, {\"X\": 0.6666874289512634, \"Y\": 0.371602326631546}, {\"X\": 0.6283581852912903, \"Y\": 0.37625956535339355}]}, \"Id\": \"7129bd18-833f-4758-b935-a42beb1c875d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78253173828125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04796820878982544, \"Height\": 0.015902144834399223, \"Left\": 0.7169092893600464, \"Top\": 0.3489498794078827}, \"Polygon\": [{\"X\": 0.7169092893600464, \"Y\": 0.3544714152812958}, {\"X\": 0.7623517513275146, \"Y\": 0.3489498794078827}, {\"X\": 0.7648774981498718, \"Y\": 0.35933050513267517}, {\"X\": 0.7194350361824036, \"Y\": 0.36485204100608826}]}, \"Id\": \"c69e7103-7203-48e2-8e07-fdac1b3fc1e2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42437744140625, \"Text\": \"3.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04062185063958168, \"Height\": 0.01486419141292572, \"Left\": 0.767583966255188, \"Top\": 0.3436635136604309}, \"Polygon\": [{\"X\": 0.767583966255188, \"Y\": 0.3482968509197235}, {\"X\": 0.8057165145874023, \"Y\": 0.3436635136604309}, {\"X\": 0.8082058429718018, \"Y\": 0.3538943827152252}, {\"X\": 0.7700732946395874, \"Y\": 0.3585277199745178}]}, \"Id\": \"b85a7b78-e067-4456-966b-66cac9f4e0f9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87588500976562, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04782973974943161, \"Height\": 0.01571696437895298, \"Left\": 0.43773752450942993, \"Top\": 0.4017671048641205}, \"Polygon\": [{\"X\": 0.43773752450942993, \"Y\": 0.4072769284248352}, {\"X\": 0.48308372497558594, \"Y\": 0.4017671048641205}, {\"X\": 0.48556727170944214, \"Y\": 0.4119742512702942}, {\"X\": 0.44022107124328613, \"Y\": 0.4174840748310089}]}, \"Id\": \"ad3ceb79-bfae-4cea-a77e-538c93cde2ce\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56053924560547, \"Text\": \"3.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040549084544181824, \"Height\": 0.014702419750392437, \"Left\": 0.4881836473941803, \"Top\": 0.3966641426086426}, \"Polygon\": [{\"X\": 0.4881836473941803, \"Y\": 0.4012932777404785}, {\"X\": 0.5262817144393921, \"Y\": 0.3966641426086426}, {\"X\": 0.5287327170372009, \"Y\": 0.40673741698265076}, {\"X\": 0.49063462018966675, \"Y\": 0.4113665521144867}]}, \"Id\": \"25d5aee7-b890-458d-b8a5-b7aac7a547e0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8082504272461, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04804602637887001, \"Height\": 0.015977488830685616, \"Left\": 0.5794302225112915, \"Top\": 0.38395100831985474}, \"Polygon\": [{\"X\": 0.5794302225112915, \"Y\": 0.38947999477386475}, {\"X\": 0.6249340176582336, \"Y\": 0.38395100831985474}, {\"X\": 0.6274762749671936, \"Y\": 0.3943995237350464}, {\"X\": 0.5819725394248962, \"Y\": 0.3999285101890564}]}, \"Id\": \"1fc07db1-7195-4168-afad-b769236be44d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30349731445312, \"Text\": \"3.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04079503193497658, \"Height\": 0.014722704887390137, \"Left\": 0.6302548050880432, \"Top\": 0.378864586353302}, \"Polygon\": [{\"X\": 0.6302548050880432, \"Y\": 0.3835239112377167}, {\"X\": 0.6686012744903564, \"Y\": 0.378864586353302}, {\"X\": 0.6710498332977295, \"Y\": 0.38892796635627747}, {\"X\": 0.6327033638954163, \"Y\": 0.39358729124069214}]}, \"Id\": \"06e53018-c23e-445c-81c8-7e850d0da442\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79423522949219, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04783989489078522, \"Height\": 0.015870418399572372, \"Left\": 0.7214410305023193, \"Top\": 0.366349458694458}, \"Polygon\": [{\"X\": 0.7214410305023193, \"Y\": 0.3718559145927429}, {\"X\": 0.7667591571807861, \"Y\": 0.366349458694458}, {\"X\": 0.7692809104919434, \"Y\": 0.37671345472335815}, {\"X\": 0.7239627242088318, \"Y\": 0.3822198808193207}]}, \"Id\": \"7477a76f-3083-4885-8156-d29a114e34f6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6233139038086, \"Text\": \"3.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040440045297145844, \"Height\": 0.014813454821705818, \"Left\": 0.7720380425453186, \"Top\": 0.3611765503883362}, \"Polygon\": [{\"X\": 0.7720380425453186, \"Y\": 0.36578863859176636}, {\"X\": 0.8099959492683411, \"Y\": 0.3611765503883362}, {\"X\": 0.8124780654907227, \"Y\": 0.3713778853416443}, {\"X\": 0.7745201587677002, \"Y\": 0.37599000334739685}]}, \"Id\": \"df64efae-dc8b-48a9-9275-fe1ca10325f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86164855957031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047988567501306534, \"Height\": 0.015731846913695335, \"Left\": 0.4419344961643219, \"Top\": 0.4191942811012268}, \"Polygon\": [{\"X\": 0.4419344961643219, \"Y\": 0.4247235655784607}, {\"X\": 0.48744064569473267, \"Y\": 0.4191942811012268}, {\"X\": 0.48992305994033813, \"Y\": 0.4293968677520752}, {\"X\": 0.44441694021224976, \"Y\": 0.4349261522293091}]}, \"Id\": \"84a921ec-59db-4c88-87ad-4552d66b317e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66094970703125, \"Text\": \"3.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057707265019417, \"Height\": 0.014577738009393215, \"Left\": 0.49255502223968506, \"Top\": 0.4141383171081543}, \"Polygon\": [{\"X\": 0.49255502223968506, \"Y\": 0.4187747538089752}, {\"X\": 0.5307132601737976, \"Y\": 0.4141383171081543}, {\"X\": 0.5331321358680725, \"Y\": 0.4240795969963074}, {\"X\": 0.49497389793395996, \"Y\": 0.4287160336971283}]}, \"Id\": \"3908ecdf-547f-48d7-a281-4ea450dc4137\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8706283569336, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04815356433391571, \"Height\": 0.015894541516900063, \"Left\": 0.5836705565452576, \"Top\": 0.4014201760292053}, \"Polygon\": [{\"X\": 0.5836705565452576, \"Y\": 0.4069651663303375}, {\"X\": 0.629305899143219, \"Y\": 0.4014201760292053}, {\"X\": 0.6318240761756897, \"Y\": 0.4117697775363922}, {\"X\": 0.5861887335777283, \"Y\": 0.417314738035202}]}, \"Id\": \"c9214bfe-613f-4c57-ab63-7740ebb11cda\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61485290527344, \"Text\": \"3.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04078667610883713, \"Height\": 0.014582264237105846, \"Left\": 0.6346360445022583, \"Top\": 0.396398663520813}, \"Polygon\": [{\"X\": 0.6346360445022583, \"Y\": 0.40106120705604553}, {\"X\": 0.6730090975761414, \"Y\": 0.396398663520813}, {\"X\": 0.6754226684570312, \"Y\": 0.4063183665275574}, {\"X\": 0.6370496153831482, \"Y\": 0.4109809100627899}]}, \"Id\": \"17725b37-35a7-4adc-bcfb-c79fb03520c8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8370132446289, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04781971126794815, \"Height\": 0.01594250276684761, \"Left\": 0.725741982460022, \"Top\": 0.3837093710899353}, \"Polygon\": [{\"X\": 0.725741982460022, \"Y\": 0.38921108841896057}, {\"X\": 0.77102130651474, \"Y\": 0.3837093710899353}, {\"X\": 0.7735617160797119, \"Y\": 0.39415016770362854}, {\"X\": 0.7282823920249939, \"Y\": 0.3996518850326538}]}, \"Id\": \"401e114c-1b65-4f24-8cb8-81241de084ef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61211395263672, \"Text\": \"3.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040633440017700195, \"Height\": 0.014884446747601032, \"Left\": 0.7762072086334229, \"Top\": 0.37854376435279846}, \"Polygon\": [{\"X\": 0.7762072086334229, \"Y\": 0.3831779360771179}, {\"X\": 0.8143466114997864, \"Y\": 0.37854376435279846}, {\"X\": 0.816840648651123, \"Y\": 0.38879406452178955}, {\"X\": 0.7787012457847595, \"Y\": 0.3934282064437866}]}, \"Id\": \"109fb001-95d3-4b4c-8ab3-5b4dd2621b99\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8548355102539, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04801339656114578, \"Height\": 0.015715016052126884, \"Left\": 0.4463273882865906, \"Top\": 0.4366031289100647}, \"Polygon\": [{\"X\": 0.4463273882865906, \"Y\": 0.4421360194683075}, {\"X\": 0.49186331033706665, \"Y\": 0.4366031289100647}, {\"X\": 0.49434077739715576, \"Y\": 0.4467852711677551}, {\"X\": 0.4488048553466797, \"Y\": 0.4523181617259979}]}, \"Id\": \"6b9e9d3a-c7a5-4f83-846c-d14932c6d1ca\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65035247802734, \"Text\": \"3.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040282536298036575, \"Height\": 0.014552926644682884, \"Left\": 0.4969876706600189, \"Top\": 0.43160924315452576}, \"Polygon\": [{\"X\": 0.4969876706600189, \"Y\": 0.4362095594406128}, {\"X\": 0.5348485708236694, \"Y\": 0.43160924315452576}, {\"X\": 0.537270188331604, \"Y\": 0.44156181812286377}, {\"X\": 0.4994092881679535, \"Y\": 0.4461621642112732}]}, \"Id\": \"86bfb3fd-3011-4ca8-adb2-7bcc98e3330d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85407257080078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048082172870635986, \"Height\": 0.015828190371394157, \"Left\": 0.5880520343780518, \"Top\": 0.4188421666622162}, \"Polygon\": [{\"X\": 0.5880520343780518, \"Y\": 0.42438021302223206}, {\"X\": 0.6336305141448975, \"Y\": 0.4188421666622162}, {\"X\": 0.6361342072486877, \"Y\": 0.4291323125362396}, {\"X\": 0.5905557870864868, \"Y\": 0.4346703588962555}]}, \"Id\": \"efa2118f-8f6a-4439-b2f9-5d51cadce105\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59935760498047, \"Text\": \"3.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04093888774514198, \"Height\": 0.014672575518488884, \"Left\": 0.6389620900154114, \"Top\": 0.4137577712535858}, \"Polygon\": [{\"X\": 0.6389620900154114, \"Y\": 0.41843661665916443}, {\"X\": 0.6774693727493286, \"Y\": 0.4137577712535858}, {\"X\": 0.6799010038375854, \"Y\": 0.42375147342681885}, {\"X\": 0.6413937211036682, \"Y\": 0.42843034863471985}]}, \"Id\": \"76faec7e-c4fb-4813-8396-353aa0e2ccef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81255340576172, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04794497415423393, \"Height\": 0.01598205417394638, \"Left\": 0.7299894094467163, \"Top\": 0.40109261870384216}, \"Polygon\": [{\"X\": 0.7299894094467163, \"Y\": 0.40660881996154785}, {\"X\": 0.7753878831863403, \"Y\": 0.40109261870384216}, {\"X\": 0.7779343724250793, \"Y\": 0.41155850887298584}, {\"X\": 0.7325358986854553, \"Y\": 0.41707468032836914}]}, \"Id\": \"a81f56e8-806b-4aa0-83f6-e15dd8d8e862\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66106414794922, \"Text\": \"3.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04035939276218414, \"Height\": 0.01470374409109354, \"Left\": 0.7807292342185974, \"Top\": 0.39596983790397644}, \"Polygon\": [{\"X\": 0.7807292342185974, \"Y\": 0.4005752205848694}, {\"X\": 0.8186315298080444, \"Y\": 0.39596983790397644}, {\"X\": 0.8210886120796204, \"Y\": 0.40606823563575745}, {\"X\": 0.7831863164901733, \"Y\": 0.410673588514328}]}, \"Id\": \"f7ddaf94-4673-4ff6-bcf4-a589d714d22a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8538589477539, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04798272252082825, \"Height\": 0.015789732336997986, \"Left\": 0.4507569372653961, \"Top\": 0.4539952576160431}, \"Polygon\": [{\"X\": 0.4507569372653961, \"Y\": 0.4595220386981964}, {\"X\": 0.49624255299568176, \"Y\": 0.4539952576160431}, {\"X\": 0.49873965978622437, \"Y\": 0.46425822377204895}, {\"X\": 0.4532540738582611, \"Y\": 0.46978500485420227}]}, \"Id\": \"82d9dd17-3757-4b5c-955e-b846625650ba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3096923828125, \"Text\": \"3.6.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04092204198241234, \"Height\": 0.014711861498653889, \"Left\": 0.5013145208358765, \"Top\": 0.4488299489021301}, \"Polygon\": [{\"X\": 0.5013145208358765, \"Y\": 0.4535055160522461}, {\"X\": 0.5397945642471313, \"Y\": 0.4488299489021301}, {\"X\": 0.5422365069389343, \"Y\": 0.45886626839637756}, {\"X\": 0.5037564635276794, \"Y\": 0.46354180574417114}]}, \"Id\": \"532630a9-6b0b-4f0d-bd86-9cceac60f980\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86834716796875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04809163883328438, \"Height\": 0.01584925688803196, \"Left\": 0.5923440456390381, \"Top\": 0.43622270226478577}, \"Polygon\": [{\"X\": 0.5923440456390381, \"Y\": 0.441761314868927}, {\"X\": 0.6379269361495972, \"Y\": 0.43622270226478577}, {\"X\": 0.6404356956481934, \"Y\": 0.4465333819389343}, {\"X\": 0.5948528051376343, \"Y\": 0.4520719647407532}]}, \"Id\": \"f4beedb6-9880-4c91-a09f-662fdadbe7e5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37650299072266, \"Text\": \"3.6.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040758486837148666, \"Height\": 0.014587962068617344, \"Left\": 0.6434241533279419, \"Top\": 0.4312576353549957}, \"Polygon\": [{\"X\": 0.6434241533279419, \"Y\": 0.4359164834022522}, {\"X\": 0.6817667484283447, \"Y\": 0.4312576353549957}, {\"X\": 0.6841826438903809, \"Y\": 0.4411867558956146}, {\"X\": 0.645840048789978, \"Y\": 0.4458456039428711}]}, \"Id\": \"bae9eb64-74c3-468f-8612-d8149d9e28fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85685729980469, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048027146607637405, \"Height\": 0.015940546989440918, \"Left\": 0.7342418432235718, \"Top\": 0.4184947609901428}, \"Polygon\": [{\"X\": 0.7342418432235718, \"Y\": 0.42402249574661255}, {\"X\": 0.7797353863716125, \"Y\": 0.4184947609901428}, {\"X\": 0.7822690010070801, \"Y\": 0.428907573223114}, {\"X\": 0.7367754578590393, \"Y\": 0.43443530797958374}]}, \"Id\": \"d9748161-c3cc-4d49-b77a-c62995969209\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27544403076172, \"Text\": \"3.6.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0404440276324749, \"Height\": 0.014719953760504723, \"Left\": 0.7850250601768494, \"Top\": 0.4134160578250885}, \"Polygon\": [{\"X\": 0.7850250601768494, \"Y\": 0.4180315136909485}, {\"X\": 0.8230105042457581, \"Y\": 0.4134160578250885}, {\"X\": 0.8254690766334534, \"Y\": 0.423520565032959}, {\"X\": 0.7874836325645447, \"Y\": 0.42813602089881897}]}, \"Id\": \"17ede258-767f-4ccb-bbf6-0850d502a466\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86851501464844, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04785566404461861, \"Height\": 0.015714697539806366, \"Left\": 0.4551970660686493, \"Top\": 0.47138357162475586}, \"Polygon\": [{\"X\": 0.4551970660686493, \"Y\": 0.476896733045578}, {\"X\": 0.50057053565979, \"Y\": 0.47138357162475586}, {\"X\": 0.5030527114868164, \"Y\": 0.4815851151943207}, {\"X\": 0.45767927169799805, \"Y\": 0.4870982766151428}]}, \"Id\": \"43017fd1-fbda-4b1a-89a1-89e1afa46742\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42811584472656, \"Text\": \"3.7.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04064704105257988, \"Height\": 0.014679265208542347, \"Left\": 0.5053842067718506, \"Top\": 0.46624845266342163}, \"Polygon\": [{\"X\": 0.5053842067718506, \"Y\": 0.4708905518054962}, {\"X\": 0.5435890555381775, \"Y\": 0.46624845266342163}, {\"X\": 0.5460312366485596, \"Y\": 0.47628557682037354}, {\"X\": 0.5078263878822327, \"Y\": 0.4809277057647705}]}, \"Id\": \"0f979fbc-c18e-4337-95e4-e865c78e2bf6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81961059570312, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04801633581519127, \"Height\": 0.015761438757181168, \"Left\": 0.5967296957969666, \"Top\": 0.4536704123020172}, \"Polygon\": [{\"X\": 0.5967296957969666, \"Y\": 0.45920225977897644}, {\"X\": 0.6422569751739502, \"Y\": 0.4536704123020172}, {\"X\": 0.6447460055351257, \"Y\": 0.46390002965927124}, {\"X\": 0.5992186665534973, \"Y\": 0.4694318473339081}]}, \"Id\": \"67ebdab2-ebe3-4a4e-bd1e-4a0d68ee0c1a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28196716308594, \"Text\": \"3.7.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041002001613378525, \"Height\": 0.014598945155739784, \"Left\": 0.6477349400520325, \"Top\": 0.44854989647865295}, \"Polygon\": [{\"X\": 0.6477349400520325, \"Y\": 0.45323890447616577}, {\"X\": 0.68632572889328, \"Y\": 0.44854989647865295}, {\"X\": 0.6887369155883789, \"Y\": 0.45845985412597656}, {\"X\": 0.6501461863517761, \"Y\": 0.4631488621234894}]}, \"Id\": \"c8ebcdd9-56cf-4013-be60-347db6ef5007\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8852310180664, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048030585050582886, \"Height\": 0.015770256519317627, \"Left\": 0.7385895848274231, \"Top\": 0.43601614236831665}, \"Polygon\": [{\"X\": 0.7385895848274231, \"Y\": 0.44154950976371765}, {\"X\": 0.7841293811798096, \"Y\": 0.43601614236831665}, {\"X\": 0.7866201996803284, \"Y\": 0.44625306129455566}, {\"X\": 0.7410804033279419, \"Y\": 0.4517863988876343}]}, \"Id\": \"26aaa788-a28d-438f-9f9b-ca00079562ab\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3538818359375, \"Text\": \"3.7.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04084053263068199, \"Height\": 0.014745895750820637, \"Left\": 0.7890709638595581, \"Top\": 0.4307834506034851}, \"Polygon\": [{\"X\": 0.7890709638595581, \"Y\": 0.4354477524757385}, {\"X\": 0.8274585008621216, \"Y\": 0.4307834506034851}, {\"X\": 0.829911470413208, \"Y\": 0.44086503982543945}, {\"X\": 0.7915239334106445, \"Y\": 0.44552934169769287}]}, \"Id\": \"09ca40b2-1ac1-4cde-b07b-3923e9cae08d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82416534423828, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0476582869887352, \"Height\": 0.015771061182022095, \"Left\": 0.45989489555358887, \"Top\": 0.4887760877609253}, \"Polygon\": [{\"X\": 0.45989489555358887, \"Y\": 0.49426281452178955}, {\"X\": 0.5050508379936218, \"Y\": 0.4887760877609253}, {\"X\": 0.5075531601905823, \"Y\": 0.4990604519844055}, {\"X\": 0.4623972177505493, \"Y\": 0.5045471787452698}]}, \"Id\": \"cec15d35-3a14-47ee-8e05-b72c79d07a93\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4897689819336, \"Text\": \"3.8.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04073503240942955, \"Height\": 0.014758259057998657, \"Left\": 0.5097971558570862, \"Top\": 0.4836510419845581}, \"Polygon\": [{\"X\": 0.5097971558570862, \"Y\": 0.48830175399780273}, {\"X\": 0.548072874546051, \"Y\": 0.4836510419845581}, {\"X\": 0.5505322217941284, \"Y\": 0.49375855922698975}, {\"X\": 0.5122565031051636, \"Y\": 0.49840930104255676}]}, \"Id\": \"afc0ee26-b9db-4ca5-8362-36ab03413fff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81310272216797, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0479457788169384, \"Height\": 0.015714218840003014, \"Left\": 0.6010697484016418, \"Top\": 0.4711487889289856}, \"Polygon\": [{\"X\": 0.6010697484016418, \"Y\": 0.4766732454299927}, {\"X\": 0.6465361714363098, \"Y\": 0.4711487889289856}, {\"X\": 0.649015486240387, \"Y\": 0.4813385605812073}, {\"X\": 0.603549063205719, \"Y\": 0.48686301708221436}]}, \"Id\": \"edd9ea1b-f1cb-47f8-9c7f-8ee521d87f38\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.59903717041016, \"Text\": \"3.8.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04088214784860611, \"Height\": 0.014469197019934654, \"Left\": 0.6521645784378052, \"Top\": 0.46610862016677856}, \"Polygon\": [{\"X\": 0.6521645784378052, \"Y\": 0.47078657150268555}, {\"X\": 0.6906643509864807, \"Y\": 0.46610862016677856}, {\"X\": 0.6930467486381531, \"Y\": 0.475899875164032}, {\"X\": 0.6545469164848328, \"Y\": 0.48057782649993896}]}, \"Id\": \"b158b376-efae-4661-9ac3-05492b09fcf4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83203887939453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04850368946790695, \"Height\": 0.015691321343183517, \"Left\": 0.7429826259613037, \"Top\": 0.45347559452056885}, \"Polygon\": [{\"X\": 0.7429826259613037, \"Y\": 0.4590705931186676}, {\"X\": 0.7890297770500183, \"Y\": 0.45347559452056885}, {\"X\": 0.7914863228797913, \"Y\": 0.4635719060897827}, {\"X\": 0.7454392313957214, \"Y\": 0.46916690468788147}]}, \"Id\": \"6c5177df-88fd-4ec2-8989-01007b3f8fa7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43180084228516, \"Text\": \"3.8.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04071551561355591, \"Height\": 0.014663505367934704, \"Left\": 0.7936668992042542, \"Top\": 0.4483518898487091}, \"Polygon\": [{\"X\": 0.7936668992042542, \"Y\": 0.45300304889678955}, {\"X\": 0.8319462537765503, \"Y\": 0.4483518898487091}, {\"X\": 0.8343824148178101, \"Y\": 0.45836421847343445}, {\"X\": 0.7961030602455139, \"Y\": 0.4630153775215149}]}, \"Id\": \"41c72218-a9a1-4e45-910c-521a273cfa76\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2773208618164, \"Text\": \"YES:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03598611429333687, \"Height\": 0.014252528548240662, \"Left\": 0.04581700265407562, \"Top\": 0.5570479035377502}, \"Polygon\": [{\"X\": 0.04581700265407562, \"Y\": 0.5611194372177124}, {\"X\": 0.07932592928409576, \"Y\": 0.5570479035377502}, {\"X\": 0.08180311322212219, \"Y\": 0.5672289133071899}, {\"X\": 0.04829418659210205, \"Y\": 0.5713004469871521}]}, \"Id\": \"ad574b45-d57c-4304-95d0-7fef25fc6f19\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97586822509766, \"Text\": \"checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06820833683013916, \"Height\": 0.01867487095296383, \"Left\": 0.0834573358297348, \"Top\": 0.5478991270065308}, \"Polygon\": [{\"X\": 0.0834573358297348, \"Y\": 0.5558703541755676}, {\"X\": 0.14906132221221924, \"Y\": 0.5478991270065308}, {\"X\": 0.15166567265987396, \"Y\": 0.5586026906967163}, {\"X\": 0.08606167137622833, \"Y\": 0.566573977470398}]}, \"Id\": \"2b1fcc37-45d9-430d-bcf5-b47957d40e83\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81980895996094, \"Text\": \"NO:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03181982412934303, \"Height\": 0.013723012059926987, \"Left\": 0.04935893788933754, \"Top\": 0.5736392140388489}, \"Polygon\": [{\"X\": 0.04935893788933754, \"Y\": 0.577205240726471}, {\"X\": 0.07870741188526154, \"Y\": 0.5736392140388489}, {\"X\": 0.08117876201868057, \"Y\": 0.5837962031364441}, {\"X\": 0.05183028429746628, \"Y\": 0.5873622298240662}]}, \"Id\": \"a2bd1b93-c298-4f75-9459-c0c586a060f7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92731475830078, \"Text\": \"not-checked\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10136570036411285, \"Height\": 0.02259456180036068, \"Left\": 0.08328048884868622, \"Top\": 0.5603932738304138}, \"Polygon\": [{\"X\": 0.08328048884868622, \"Y\": 0.5723966956138611}, {\"X\": 0.18206921219825745, \"Y\": 0.5603932738304138}, {\"X\": 0.18464618921279907, \"Y\": 0.570984423160553}, {\"X\": 0.08585747331380844, \"Y\": 0.5829878449440002}]}, \"Id\": \"ebde66ce-d2af-4c86-ba3a-fef80f507a42\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.55680847167969, \"Text\": \"Hel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014201933518052101, \"Height\": 0.005558313801884651, \"Left\": 0.6552401781082153, \"Top\": 0.614020049571991}, \"Polygon\": [{\"X\": 0.6552401781082153, \"Y\": 0.6156289577484131}, {\"X\": 0.668481171131134, \"Y\": 0.614020049571991}, {\"X\": 0.6694421172142029, \"Y\": 0.6179695129394531}, {\"X\": 0.6562011241912842, \"Y\": 0.6195783615112305}]}, \"Id\": \"b9f6ed92-cbdb-4f0a-9e67-7ab878a653db\"}, {\"BlockType\": \"WORD\", \"Confidence\": 54.2588996887207, \"Text\": \"lo\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008476829156279564, \"Height\": 0.004690960515290499, \"Left\": 0.6688781380653381, \"Top\": 0.6130589842796326}, \"Polygon\": [{\"X\": 0.6688781380653381, \"Y\": 0.6139774322509766}, {\"X\": 0.6764370799064636, \"Y\": 0.6130589842796326}, {\"X\": 0.6773549318313599, \"Y\": 0.6168314814567566}, {\"X\": 0.6697960495948792, \"Y\": 0.6177499294281006}]}, \"Id\": \"770fb8b8-3d16-47da-88f9-7f1e9a7c22c7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 85.9233169555664, \"Text\": \"World\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02288646437227726, \"Height\": 0.006934421136975288, \"Left\": 0.6792452931404114, \"Top\": 0.6098878383636475}, \"Polygon\": [{\"X\": 0.6792452931404114, \"Y\": 0.6125421524047852}, {\"X\": 0.701090395450592, \"Y\": 0.6098878383636475}, {\"X\": 0.7021318078041077, \"Y\": 0.6141679286956787}, {\"X\": 0.6802867650985718, \"Y\": 0.6168222427368164}]}, \"Id\": \"53ec4eb7-96e6-44cf-9ded-d64e77575124\"}, {\"BlockType\": \"WORD\", \"Confidence\": 93.76008605957031, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006300612818449736, \"Height\": 0.0031051766127347946, \"Left\": 0.7037623524665833, \"Top\": 0.6100797057151794}, \"Polygon\": [{\"X\": 0.7037623524665833, \"Y\": 0.6107739806175232}, {\"X\": 0.7094763517379761, \"Y\": 0.6100797057151794}, {\"X\": 0.7100629210472107, \"Y\": 0.6124905943870544}, {\"X\": 0.7043489217758179, \"Y\": 0.6131848692893982}]}, \"Id\": \"624bdb57-f8dd-4aa9-8044-b2e096257e87\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36085510253906, \"Text\": \"barcode\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030614670366048813, \"Height\": 0.007773440331220627, \"Left\": 0.7119690775871277, \"Top\": 0.6049292087554932}, \"Polygon\": [{\"X\": 0.7119690775871277, \"Y\": 0.6085256338119507}, {\"X\": 0.7415674328804016, \"Y\": 0.6049292087554932}, {\"X\": 0.7425837516784668, \"Y\": 0.6091063022613525}, {\"X\": 0.7129853963851929, \"Y\": 0.6127026677131653}]}, \"Id\": \"d462e71d-b951-4e23-9111-fbb042a449a0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 67.05502319335938, \"Text\": \"herel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021508093923330307, \"Height\": 0.00694953603670001, \"Left\": 0.7439435124397278, \"Top\": 0.6018576622009277}, \"Polygon\": [{\"X\": 0.7439435124397278, \"Y\": 0.6043389439582825}, {\"X\": 0.7643644213676453, \"Y\": 0.6018576622009277}, {\"X\": 0.7654516100883484, \"Y\": 0.6063259243965149}, {\"X\": 0.7450307011604309, \"Y\": 0.6088072061538696}]}, \"Id\": \"69d0a80d-d9d9-4a76-b025-1706008112cb\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.9432601928711, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.46273893117904663, \"Height\": 0.19280818104743958, \"Left\": 0.4187683165073395, \"Top\": 0.3171195089817047}, \"Polygon\": [{\"X\": 0.4187683165073395, \"Y\": 0.36918404698371887}, {\"X\": 0.8472622632980347, \"Y\": 0.3171195089817047}, {\"X\": 0.8815072178840637, \"Y\": 0.4578631520271301}, {\"X\": 0.4530133008956909, \"Y\": 0.5099276900291443}]}, \"Id\": \"bb02d121-b137-4e78-8b3c-b2dece2e2369\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e41cd123-c51e-4e8a-8aeb-1f51c7d63d01\", \"780f6843-b66e-4367-a080-b45c190913dc\", \"8478f7fb-e317-4243-a21d-c79b81d39d7b\", \"b86fb5e0-0375-4e6e-8f42-414ea107c7d7\", \"7a4b1816-dee9-48c0-abef-c3dc8154db87\", \"9cff3619-cd10-4da8-8822-12ff28149edd\", \"0d2b1511-3e22-40a2-9962-a39ebe04e4dd\", \"f740ae1e-0fbd-4632-a530-413eef11e639\", \"a832e15c-9643-42fb-99b0-8696a6ffa34a\", \"77d9b4e8-b87e-4e55-b29a-dc54f9248383\", \"2e7bf500-6aa7-4ce0-ac02-65da6358c4ce\", \"e1588552-9cbb-4e11-9832-0e6d2f0d8db2\", \"44faa45f-2567-4559-9149-34b0128387fa\", \"5fec5d19-1058-41ef-ba00-6bfe5c22ac3f\", \"c3e7e2b9-e483-47ce-880f-682cd06a8cab\", \"4c10b873-efb9-4be6-9e6e-c362794ed8ca\", \"e7c67dad-2112-4b1f-9525-650417620d15\", \"bf6adbc3-8bd6-45a1-94e5-fc5e90dd422a\", \"9f488dbd-8f48-4480-a53c-56f74b7ec2af\", \"53dfd868-b6bd-46ff-822f-b6aef9b653fe\", \"eaadabd8-24c3-4e2c-aab8-f0ef301bc6c2\", \"1613c40f-1dde-4cdd-b613-635c9d282180\", \"74403cd4-ad64-4463-85ff-b792dd2cbd94\", \"8f7811a7-272d-48ad-b01a-aa00543eb4cd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710059762001038, \"Height\": 0.03490113094449043, \"Left\": 0.4187683165073395, \"Top\": 0.3518292307853699}, \"Polygon\": [{\"X\": 0.4187683165073395, \"Y\": 0.36918407678604126}, {\"X\": 0.5615996718406677, \"Y\": 0.3518292307853699}, {\"X\": 0.5658689141273499, \"Y\": 0.3693754971027374}, {\"X\": 0.423037588596344, \"Y\": 0.3867303431034088}]}, \"Id\": \"e41cd123-c51e-4e8a-8aeb-1f51c7d63d01\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6b4e953e-e72c-4467-ba61-3a557509f1cd\", \"887a7a5c-b94d-44f2-a51d-ec5a58d0b1de\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710059762001038, \"Height\": 0.034901127219200134, \"Left\": 0.5615996718406677, \"Top\": 0.3344743549823761}, \"Polygon\": [{\"X\": 0.5615996718406677, \"Y\": 0.3518292307853699}, {\"X\": 0.7044309973716736, \"Y\": 0.3344743549823761}, {\"X\": 0.7087002396583557, \"Y\": 0.35202065110206604}, {\"X\": 0.5658689141273499, \"Y\": 0.3693754971027374}]}, \"Id\": \"780f6843-b66e-4367-a080-b45c190913dc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61f90330-6190-43cf-83c3-d65174583bae\", \"e32e5e2c-2c80-433a-b7ff-0b6d6f616f2d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1471005380153656, \"Height\": 0.03490111976861954, \"Left\": 0.7044309973716736, \"Top\": 0.3171195089817047}, \"Polygon\": [{\"X\": 0.7044309973716736, \"Y\": 0.3344743549823761}, {\"X\": 0.8472622632980347, \"Y\": 0.3171195089817047}, {\"X\": 0.8515315651893616, \"Y\": 0.33466580510139465}, {\"X\": 0.7087002992630005, \"Y\": 0.35202065110206604}]}, \"Id\": \"8478f7fb-e317-4243-a21d-c79b81d39d7b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7825a8b-a11f-4f86-a615-8f971fae0f0d\", \"d1ef3bd0-1f5c-4746-9efd-b0b4730644cd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710059762001038, \"Height\": 0.03490113094449043, \"Left\": 0.423037588596344, \"Top\": 0.3693754971027374}, \"Polygon\": [{\"X\": 0.423037588596344, \"Y\": 0.3867303431034088}, {\"X\": 0.5658689141273499, \"Y\": 0.3693754971027374}, {\"X\": 0.5701382160186768, \"Y\": 0.386921763420105}, {\"X\": 0.4273068606853485, \"Y\": 0.40427660942077637}]}, \"Id\": \"b86fb5e0-0375-4e6e-8f42-414ea107c7d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7e17e59c-6f59-4b0d-bc35-138419c9185f\", \"e0ec0ea4-e3d9-434d-a776-2c5b74587cec\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710059762001038, \"Height\": 0.034901127219200134, \"Left\": 0.5658689141273499, \"Top\": 0.35202065110206604}, \"Polygon\": [{\"X\": 0.5658689141273499, \"Y\": 0.3693754971027374}, {\"X\": 0.7087002396583557, \"Y\": 0.35202065110206604}, {\"X\": 0.7129694819450378, \"Y\": 0.3695669174194336}, {\"X\": 0.570138156414032, \"Y\": 0.386921763420105}]}, \"Id\": \"7a4b1816-dee9-48c0-abef-c3dc8154db87\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f7d146e5-2756-4a37-868a-9ab0d3e6cc42\", \"7129bd18-833f-4758-b935-a42beb1c875d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1471005380153656, \"Height\": 0.03490111976861954, \"Left\": 0.7087002992630005, \"Top\": 0.33466580510139465}, \"Polygon\": [{\"X\": 0.7087002992630005, \"Y\": 0.35202062129974365}, {\"X\": 0.8515315651893616, \"Y\": 0.33466580510139465}, {\"X\": 0.8558008074760437, \"Y\": 0.3522120714187622}, {\"X\": 0.7129695415496826, \"Y\": 0.3695669174194336}]}, \"Id\": \"9cff3619-cd10-4da8-8822-12ff28149edd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c69e7103-7203-48e2-8e07-fdac1b3fc1e2\", \"b85a7b78-e067-4456-966b-66cac9f4e0f9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710061252117157, \"Height\": 0.034901171922683716, \"Left\": 0.4273068606853485, \"Top\": 0.386921763420105}, \"Polygon\": [{\"X\": 0.4273068606853485, \"Y\": 0.40427660942077637}, {\"X\": 0.5701382160186768, \"Y\": 0.386921763420105}, {\"X\": 0.5744074583053589, \"Y\": 0.4044680893421173}, {\"X\": 0.431576132774353, \"Y\": 0.4218229353427887}]}, \"Id\": \"0d2b1511-3e22-40a2-9962-a39ebe04e4dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad3ceb79-bfae-4cea-a77e-538c93cde2ce\", \"25d5aee7-b890-458d-b8a5-b7aac7a547e0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710061252117157, \"Height\": 0.034901171922683716, \"Left\": 0.570138156414032, \"Top\": 0.3695669174194336}, \"Polygon\": [{\"X\": 0.570138156414032, \"Y\": 0.386921763420105}, {\"X\": 0.7129694819450378, \"Y\": 0.3695669174194336}, {\"X\": 0.7172387838363647, \"Y\": 0.3871132433414459}, {\"X\": 0.5744074583053589, \"Y\": 0.4044680893421173}]}, \"Id\": \"f740ae1e-0fbd-4632-a530-413eef11e639\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fc07db1-7195-4168-afad-b769236be44d\", \"06e53018-c23e-445c-81c8-7e850d0da442\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1471005529165268, \"Height\": 0.03490116447210312, \"Left\": 0.7129695415496826, \"Top\": 0.3522120714187622}, \"Polygon\": [{\"X\": 0.7129695415496826, \"Y\": 0.3695669174194336}, {\"X\": 0.8558008074760437, \"Y\": 0.3522120714187622}, {\"X\": 0.8600701093673706, \"Y\": 0.36975839734077454}, {\"X\": 0.7172388434410095, \"Y\": 0.3871132433414459}]}, \"Id\": \"a832e15c-9643-42fb-99b0-8696a6ffa34a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7477a76f-3083-4885-8156-d29a114e34f6\", \"df64efae-dc8b-48a9-9275-fe1ca10325f2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710059762001038, \"Height\": 0.03490113094449043, \"Left\": 0.431576132774353, \"Top\": 0.4044680595397949}, \"Polygon\": [{\"X\": 0.431576132774353, \"Y\": 0.4218229353427887}, {\"X\": 0.5744074583053589, \"Y\": 0.4044680595397949}, {\"X\": 0.578676700592041, \"Y\": 0.42201435565948486}, {\"X\": 0.43584540486335754, \"Y\": 0.43936920166015625}]}, \"Id\": \"77d9b4e8-b87e-4e55-b29a-dc54f9248383\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"84a921ec-59db-4c88-87ad-4552d66b317e\", \"3908ecdf-547f-48d7-a281-4ea450dc4137\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710059762001038, \"Height\": 0.03490113094449043, \"Left\": 0.5744074583053589, \"Top\": 0.38711321353912354}, \"Polygon\": [{\"X\": 0.5744074583053589, \"Y\": 0.4044680595397949}, {\"X\": 0.7172387838363647, \"Y\": 0.38711321353912354}, {\"X\": 0.7215080261230469, \"Y\": 0.4046595096588135}, {\"X\": 0.578676700592041, \"Y\": 0.42201435565948486}]}, \"Id\": \"2e7bf500-6aa7-4ce0-ac02-65da6358c4ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9214bfe-613f-4c57-ab63-7740ebb11cda\", \"17725b37-35a7-4adc-bcfb-c79fb03520c8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1471005380153656, \"Height\": 0.034901123493909836, \"Left\": 0.7172388434410095, \"Top\": 0.36975836753845215}, \"Polygon\": [{\"X\": 0.7172388434410095, \"Y\": 0.38711321353912354}, {\"X\": 0.8600701093673706, \"Y\": 0.36975836753845215}, {\"X\": 0.8643393516540527, \"Y\": 0.3873046636581421}, {\"X\": 0.7215080857276917, \"Y\": 0.4046595096588135}]}, \"Id\": \"e1588552-9cbb-4e11-9832-0e6d2f0d8db2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"401e114c-1b65-4f24-8cb8-81241de084ef\", \"109fb001-95d3-4b4c-8ab3-5b4dd2621b99\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14719143509864807, \"Height\": 0.03527446836233139, \"Left\": 0.43584540486335754, \"Top\": 0.42201438546180725}, \"Polygon\": [{\"X\": 0.43584540486335754, \"Y\": 0.43936923146247864}, {\"X\": 0.5786767601966858, \"Y\": 0.42201438546180725}, {\"X\": 0.5830368399620056, \"Y\": 0.43993398547172546}, {\"X\": 0.44020551443099976, \"Y\": 0.45728883147239685}]}, \"Id\": \"44faa45f-2567-4559-9149-34b0128387fa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6b9e9d3a-c7a5-4f83-846c-d14932c6d1ca\", \"86bfb3fd-3011-4ca8-adb2-7bcc98e3330d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14719143509864807, \"Height\": 0.03527446836233139, \"Left\": 0.578676700592041, \"Top\": 0.40465953946113586}, \"Polygon\": [{\"X\": 0.578676700592041, \"Y\": 0.42201438546180725}, {\"X\": 0.7215080261230469, \"Y\": 0.40465953946113586}, {\"X\": 0.7258681654930115, \"Y\": 0.4225791394710541}, {\"X\": 0.5830368399620056, \"Y\": 0.43993398547172546}]}, \"Id\": \"5fec5d19-1058-41ef-ba00-6bfe5c22ac3f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efa2118f-8f6a-4439-b2f9-5d51cadce105\", \"76faec7e-c4fb-4813-8396-353aa0e2ccef\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1471913754940033, \"Height\": 0.03527446091175079, \"Left\": 0.7215080857276917, \"Top\": 0.3873046934604645}, \"Polygon\": [{\"X\": 0.7215080857276917, \"Y\": 0.4046595096588135}, {\"X\": 0.8643393516540527, \"Y\": 0.3873046934604645}, {\"X\": 0.8686994910240173, \"Y\": 0.4052242934703827}, {\"X\": 0.7258681654930115, \"Y\": 0.4225791394710541}]}, \"Id\": \"c3e7e2b9-e483-47ce-880f-682cd06a8cab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a81f56e8-806b-4aa0-83f6-e15dd8d8e862\", \"f7ddaf94-4673-4ff6-bcf4-a589d714d22a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14691893756389618, \"Height\": 0.0341544933617115, \"Left\": 0.44020548462867737, \"Top\": 0.4399339556694031}, \"Polygon\": [{\"X\": 0.44020548462867737, \"Y\": 0.45728880167007446}, {\"X\": 0.5830368399620056, \"Y\": 0.4399339556694031}, {\"X\": 0.5871244072914124, \"Y\": 0.4567335844039917}, {\"X\": 0.4442930817604065, \"Y\": 0.4740884304046631}]}, \"Id\": \"4c10b873-efb9-4be6-9e6e-c362794ed8ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82d9dd17-3757-4b5c-955e-b846625650ba\", \"532630a9-6b0b-4f0d-bd86-9cceac60f980\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14691893756389618, \"Height\": 0.0341544933617115, \"Left\": 0.5830368399620056, \"Top\": 0.4225790798664093}, \"Polygon\": [{\"X\": 0.5830368399620056, \"Y\": 0.4399339556694031}, {\"X\": 0.7258681654930115, \"Y\": 0.4225790798664093}, {\"X\": 0.7299557328224182, \"Y\": 0.4393787384033203}, {\"X\": 0.5871244072914124, \"Y\": 0.4567335844039917}]}, \"Id\": \"e7c67dad-2112-4b1f-9525-650417620d15\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4beedb6-9880-4c91-a09f-662fdadbe7e5\", \"bae9eb64-74c3-468f-8612-d8149d9e28fd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1469188630580902, \"Height\": 0.034154485911130905, \"Left\": 0.7258681654930115, \"Top\": 0.4052242338657379}, \"Polygon\": [{\"X\": 0.7258681654930115, \"Y\": 0.4225790798664093}, {\"X\": 0.8686994314193726, \"Y\": 0.4052242338657379}, {\"X\": 0.8727870583534241, \"Y\": 0.4220238924026489}, {\"X\": 0.729955792427063, \"Y\": 0.4393787384033203}]}, \"Id\": \"bf6adbc3-8bd6-45a1-94e5-fc5e90dd422a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9748161-c3cc-4d49-b77a-c62995969209\", \"17ede258-767f-4ccb-bbf6-0850d502a466\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710061252117157, \"Height\": 0.034901171922683716, \"Left\": 0.4442930817604065, \"Top\": 0.4567336142063141}, \"Polygon\": [{\"X\": 0.4442930817604065, \"Y\": 0.4740884602069855}, {\"X\": 0.5871244072914124, \"Y\": 0.4567336142063141}, {\"X\": 0.5913937091827393, \"Y\": 0.47427991032600403}, {\"X\": 0.448562353849411, \"Y\": 0.4916347861289978}]}, \"Id\": \"9f488dbd-8f48-4480-a53c-56f74b7ec2af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"43017fd1-fbda-4b1a-89a1-89e1afa46742\", \"0f979fbc-c18e-4337-95e4-e865c78e2bf6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14710061252117157, \"Height\": 0.034901171922683716, \"Left\": 0.5871244072914124, \"Top\": 0.4393787384033203}, \"Polygon\": [{\"X\": 0.5871244072914124, \"Y\": 0.4567336142063141}, {\"X\": 0.7299557328224182, \"Y\": 0.4393787384033203}, {\"X\": 0.7342250347137451, \"Y\": 0.45692506432533264}, {\"X\": 0.5913937091827393, \"Y\": 0.4742799401283264}]}, \"Id\": \"53dfd868-b6bd-46ff-822f-b6aef9b653fe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"67ebdab2-ebe3-4a4e-bd1e-4a0d68ee0c1a\", \"c8ebcdd9-56cf-4013-be60-347db6ef5007\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1471005529165268, \"Height\": 0.03490116447210312, \"Left\": 0.729955792427063, \"Top\": 0.4220238924026489}, \"Polygon\": [{\"X\": 0.729955792427063, \"Y\": 0.4393787384033203}, {\"X\": 0.8727870583534241, \"Y\": 0.4220238924026489}, {\"X\": 0.877056360244751, \"Y\": 0.43957021832466125}, {\"X\": 0.7342250347137451, \"Y\": 0.45692506432533264}]}, \"Id\": \"eaadabd8-24c3-4e2c-aab8-f0ef301bc6c2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"26aaa788-a28d-438f-9f9b-ca00079562ab\", \"09ca40b2-1ac1-4cde-b07b-3923e9cae08d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14728227257728577, \"Height\": 0.03564776852726936, \"Left\": 0.448562353849411, \"Top\": 0.47427991032600403}, \"Polygon\": [{\"X\": 0.448562353849411, \"Y\": 0.4916347563266754}, {\"X\": 0.5913937091827393, \"Y\": 0.47427991032600403}, {\"X\": 0.5958446264266968, \"Y\": 0.4925728142261505}, {\"X\": 0.4530133008956909, \"Y\": 0.5099276900291443}]}, \"Id\": \"1613c40f-1dde-4cdd-b613-635c9d282180\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cec15d35-3a14-47ee-8e05-b72c79d07a93\", \"afc0ee26-b9db-4ca5-8362-36ab03413fff\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14728227257728577, \"Height\": 0.035647764801979065, \"Left\": 0.5913937091827393, \"Top\": 0.45692506432533264}, \"Polygon\": [{\"X\": 0.5913937091827393, \"Y\": 0.47427991032600403}, {\"X\": 0.7342250347137451, \"Y\": 0.45692506432533264}, {\"X\": 0.7386759519577026, \"Y\": 0.4752179682254791}, {\"X\": 0.5958446264266968, \"Y\": 0.4925728142261505}]}, \"Id\": \"74403cd4-ad64-4463-85ff-b792dd2cbd94\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"edd9ea1b-f1cb-47f8-9c7f-8ee521d87f38\", \"b158b376-efae-4661-9ac3-05492b09fcf4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.9432601928711, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1472821980714798, \"Height\": 0.03564775735139847, \"Left\": 0.7342250347137451, \"Top\": 0.43957021832466125}, \"Polygon\": [{\"X\": 0.7342250347137451, \"Y\": 0.45692506432533264}, {\"X\": 0.8770563006401062, \"Y\": 0.43957021832466125}, {\"X\": 0.8815072774887085, \"Y\": 0.45786312222480774}, {\"X\": 0.7386760115623474, \"Y\": 0.4752179682254791}]}, \"Id\": \"8f7811a7-272d-48ad-b01a-aa00543eb4cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c5177df-88fd-4ec2-8989-01007b3f8fa7\", \"41c72218-a9a1-4e45-910c-521a273cfa76\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.91607666015625, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6344462037086487, \"Height\": 0.17635175585746765, \"Left\": 0.22676758468151093, \"Top\": 0.1400664746761322}, \"Polygon\": [{\"X\": 0.22676758468151093, \"Y\": 0.2141313999891281}, {\"X\": 0.8363259434700012, \"Y\": 0.1400664746761322}, {\"X\": 0.8612138032913208, \"Y\": 0.24235329031944275}, {\"X\": 0.2516554594039917, \"Y\": 0.31641823053359985}]}, \"Id\": \"469ff350-7716-4850-b7ab-d92bfc36d7b5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"47538c13-256d-4cf9-9b37-4bccadf96366\", \"f8b53d29-4c6c-4179-8d7e-324155a5fc8d\", \"c5fa25eb-674f-4f45-aca0-3658e9c140f3\", \"ca406273-49b5-4456-9f06-631aa93bda24\", \"b81ee2e9-686d-4252-90dd-e3a4da76c0c9\", \"e69e602b-1bf1-4471-a72d-1449f3fb5003\", \"ffec9966-7ca8-4ff6-a976-e0c52f2346d7\", \"5f6138f1-23c9-438a-a2f0-bd6ca6512be6\", \"43186b83-ece3-455f-8d06-b0da73801598\", \"bc7718d3-204a-4874-82fd-2cc9bd55a2f9\", \"1abb96e0-f1ef-4fa0-8d97-b0367ae097b0\", \"6fb9110c-d00c-4a71-9199-8b2063baddb5\", \"91111cbc-34b6-49a9-bf69-ede26b00179d\", \"e4a6b4e1-84ee-40c9-8747-bc19501e50dc\", \"f1910eb8-70f5-43f2-b772-91aa554dce7f\", \"91f2bb28-48fa-407b-a52e-a6d91bf63162\", \"3803d30e-fca6-4ffa-a158-72e0ddd76e5c\", \"8f7159b8-7500-4b7f-93cd-29154062e551\", \"ee38b7b4-1611-4526-9d1a-9aedf67797f6\", \"2004fa90-41c3-4c55-bb67-ab724d2bb6ba\", \"51757cc9-e8ed-4ee4-9942-e69e6de13c42\", \"9c93adff-b438-4af9-ac18-ea1b71f6ea8b\", \"4e9b0b7c-b40d-461b-bb60-0c6421d180fa\", \"ed48189c-4a9c-44e3-8f0c-23a59bb010a5\", \"0374cc27-69e3-40ca-999c-6e890e7f7b15\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098020195961, \"Left\": 0.22676758468151093, \"Top\": 0.19912850856781006}, \"Polygon\": [{\"X\": 0.22676758468151093, \"Y\": 0.2141313999891281}, {\"X\": 0.3502422273159027, \"Y\": 0.19912850856781006}, {\"X\": 0.35525161027908325, \"Y\": 0.21971659362316132}, {\"X\": 0.23177696764469147, \"Y\": 0.23471948504447937}]}, \"Id\": \"47538c13-256d-4cf9-9b37-4bccadf96366\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06d6f535-c543-48bb-9912-137d6c3d3dca\", \"9b40bb09-1dae-4a2d-b425-fb0303e25881\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848405539989471, \"Height\": 0.03559098765254021, \"Left\": 0.3502422273159027, \"Top\": 0.1841256022453308}, \"Polygon\": [{\"X\": 0.3502422273159027, \"Y\": 0.19912850856781006}, {\"X\": 0.4737169146537781, \"Y\": 0.1841256022453308}, {\"X\": 0.4787262976169586, \"Y\": 0.20471368730068207}, {\"X\": 0.35525161027908325, \"Y\": 0.21971659362316132}]}, \"Id\": \"f8b53d29-4c6c-4179-8d7e-324155a5fc8d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad282424-0b58-4475-8e08-a509fc0e06fb\", \"eda4e298-84f4-40ab-a877-ffe5a4dd9c54\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12535811960697174, \"Height\": 0.035211168229579926, \"Left\": 0.4737168848514557, \"Top\": 0.16950252652168274}, \"Polygon\": [{\"X\": 0.4737168848514557, \"Y\": 0.1841256022453308}, {\"X\": 0.5940656065940857, \"Y\": 0.16950252652168274}, {\"X\": 0.5990750193595886, \"Y\": 0.190090611577034}, {\"X\": 0.47872626781463623, \"Y\": 0.20471368730068207}]}, \"Id\": \"c5fa25eb-674f-4f45-aca0-3658e9c140f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5a134ec-7433-494d-8f4d-89a2ab0f554a\", \"1ec86d3c-e3a5-48b5-9607-b390db6f24e3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098020195961, \"Left\": 0.5940656065940857, \"Top\": 0.15449963510036469}, \"Polygon\": [{\"X\": 0.5940656065940857, \"Y\": 0.16950252652168274}, {\"X\": 0.7175402045249939, \"Y\": 0.15449963510036469}, {\"X\": 0.7225496172904968, \"Y\": 0.17508772015571594}, {\"X\": 0.5990749597549438, \"Y\": 0.190090611577034}]}, \"Id\": \"ca406273-49b5-4456-9f06-631aa93bda24\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d3178462-db41-44bb-9c61-6cf4650aa2db\", \"f17f66d1-44c4-47fc-bfd4-7ebd048ba73f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1237950325012207, \"Height\": 0.03502124175429344, \"Left\": 0.7175402641296387, \"Top\": 0.1400664746761322}, \"Polygon\": [{\"X\": 0.7175402641296387, \"Y\": 0.15449963510036469}, {\"X\": 0.8363259434700012, \"Y\": 0.1400664746761322}, {\"X\": 0.8413352966308594, \"Y\": 0.16065455973148346}, {\"X\": 0.7225496768951416, \"Y\": 0.17508772015571594}]}, \"Id\": \"b81ee2e9-686d-4252-90dd-e3a4da76c0c9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a861625d-5857-4ca3-ab18-dc92f7846e9c\", \"96973ad9-0316-45d7-a339-604489c1c134\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098392724991, \"Left\": 0.23177696764469147, \"Top\": 0.21971657872200012}, \"Polygon\": [{\"X\": 0.23177696764469147, \"Y\": 0.23471948504447937}, {\"X\": 0.35525158047676086, \"Y\": 0.21971657872200012}, {\"X\": 0.3602609634399414, \"Y\": 0.24030467867851257}, {\"X\": 0.236786350607872, \"Y\": 0.25530755519866943}]}, \"Id\": \"e69e602b-1bf1-4471-a72d-1449f3fb5003\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57e4ceb7-a132-410f-9bde-e04e1ddf60ce\", \"f5a8041c-e435-4fd8-8569-d01181ac7a54\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848405539989471, \"Height\": 0.03559098765254021, \"Left\": 0.35525161027908325, \"Top\": 0.20471368730068207}, \"Polygon\": [{\"X\": 0.35525161027908325, \"Y\": 0.21971657872200012}, {\"X\": 0.4787262976169586, \"Y\": 0.20471368730068207}, {\"X\": 0.4837356507778168, \"Y\": 0.22530177235603333}, {\"X\": 0.3602609932422638, \"Y\": 0.24030466377735138}]}, \"Id\": \"ffec9966-7ca8-4ff6-a976-e0c52f2346d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"560b1740-4829-498f-a31c-8f2a58960469\", \"59fc197d-5d57-43b5-9b32-f3b9afe384cd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12535811960697174, \"Height\": 0.035211168229579926, \"Left\": 0.47872626781463623, \"Top\": 0.1900905966758728}, \"Polygon\": [{\"X\": 0.47872626781463623, \"Y\": 0.20471368730068207}, {\"X\": 0.5990750193595886, \"Y\": 0.1900905966758728}, {\"X\": 0.6040843725204468, \"Y\": 0.21067868173122406}, {\"X\": 0.4837356507778168, \"Y\": 0.22530177235603333}]}, \"Id\": \"5f6138f1-23c9-438a-a2f0-bd6ca6512be6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"960b15a8-64df-4e01-ab08-4d047560366a\", \"3e5ac6b5-0166-4921-9937-f6f809340bc6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098020195961, \"Left\": 0.5990749597549438, \"Top\": 0.17508770525455475}, \"Polygon\": [{\"X\": 0.5990749597549438, \"Y\": 0.190090611577034}, {\"X\": 0.7225496172904968, \"Y\": 0.17508770525455475}, {\"X\": 0.727558970451355, \"Y\": 0.195675790309906}, {\"X\": 0.6040843725204468, \"Y\": 0.21067869663238525}]}, \"Id\": \"43186b83-ece3-455f-8d06-b0da73801598\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61c35479-2e81-4192-899b-67360187bdbc\", \"f87177dc-0db2-4a89-a3f3-b596619dfdb1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1237950325012207, \"Height\": 0.03502124175429344, \"Left\": 0.7225496768951416, \"Top\": 0.16065454483032227}, \"Polygon\": [{\"X\": 0.7225496768951416, \"Y\": 0.17508770525455475}, {\"X\": 0.8413352966308594, \"Y\": 0.16065454483032227}, {\"X\": 0.8463447093963623, \"Y\": 0.18124262988567352}, {\"X\": 0.7275590300559998, \"Y\": 0.195675790309906}]}, \"Id\": \"bc7718d3-204a-4874-82fd-2cc9bd55a2f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c8344fc3-570b-4795-8784-1df8cb527bf8\", \"c5007f32-8985-4c8b-8e8c-d755d7507c9f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098392724991, \"Left\": 0.23678633570671082, \"Top\": 0.24030466377735138}, \"Polygon\": [{\"X\": 0.23678633570671082, \"Y\": 0.25530755519866943}, {\"X\": 0.3602609634399414, \"Y\": 0.24030466377735138}, {\"X\": 0.36527034640312195, \"Y\": 0.26089274883270264}, {\"X\": 0.24179571866989136, \"Y\": 0.2758956551551819}]}, \"Id\": \"1abb96e0-f1ef-4fa0-8d97-b0367ae097b0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f53dd86b-9f22-4f51-9da7-c3497bd3d857\", \"7dc9e481-05f6-45d4-aeca-1f0bfa8b7cec\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848405539989471, \"Height\": 0.03559098765254021, \"Left\": 0.3602609932422638, \"Top\": 0.22530175745487213}, \"Polygon\": [{\"X\": 0.3602609932422638, \"Y\": 0.24030466377735138}, {\"X\": 0.4837356507778168, \"Y\": 0.22530175745487213}, {\"X\": 0.4887450337409973, \"Y\": 0.2458898425102234}, {\"X\": 0.36527037620544434, \"Y\": 0.26089274883270264}]}, \"Id\": \"6fb9110c-d00c-4a71-9199-8b2063baddb5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c5c73e8-377b-4f27-ae86-d14fba04fec9\", \"98804704-59a8-46f6-a2da-8a9e68ab2bee\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12535811960697174, \"Height\": 0.035211168229579926, \"Left\": 0.4837356507778168, \"Top\": 0.21067868173122406}, \"Polygon\": [{\"X\": 0.4837356507778168, \"Y\": 0.22530175745487213}, {\"X\": 0.6040843725204468, \"Y\": 0.21067868173122406}, {\"X\": 0.6090937852859497, \"Y\": 0.23126676678657532}, {\"X\": 0.4887450337409973, \"Y\": 0.2458898425102234}]}, \"Id\": \"91111cbc-34b6-49a9-bf69-ede26b00179d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d3d8c359-8c72-4c07-9083-61054a6d6646\", \"ba15ac61-358d-4797-8ece-bbaffba965e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098020195961, \"Left\": 0.6040843725204468, \"Top\": 0.195675790309906}, \"Polygon\": [{\"X\": 0.6040843725204468, \"Y\": 0.21067868173122406}, {\"X\": 0.727558970451355, \"Y\": 0.195675790309906}, {\"X\": 0.7325683832168579, \"Y\": 0.21626387536525726}, {\"X\": 0.6090937256813049, \"Y\": 0.23126676678657532}]}, \"Id\": \"e4a6b4e1-84ee-40c9-8747-bc19501e50dc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1c4df11-e1a3-4d1a-8fcf-01025eed65dd\", \"70385748-bac3-46cb-a3e0-218d625fdffd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1237950325012207, \"Height\": 0.03502124175429344, \"Left\": 0.7275590300559998, \"Top\": 0.18124262988567352}, \"Polygon\": [{\"X\": 0.7275590300559998, \"Y\": 0.195675790309906}, {\"X\": 0.8463447093963623, \"Y\": 0.18124262988567352}, {\"X\": 0.8513540625572205, \"Y\": 0.20183071494102478}, {\"X\": 0.7325683832168579, \"Y\": 0.21626387536525726}]}, \"Id\": \"f1910eb8-70f5-43f2-b772-91aa554dce7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"42330057-fa69-4109-b8da-00ee636e02de\", \"ade5a941-bdef-4732-a041-0f3f7be019c3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098392724991, \"Left\": 0.24179573357105255, \"Top\": 0.260892778635025}, \"Polygon\": [{\"X\": 0.24179573357105255, \"Y\": 0.2758956551551819}, {\"X\": 0.36527034640312195, \"Y\": 0.260892778635025}, {\"X\": 0.3702797293663025, \"Y\": 0.2814808487892151}, {\"X\": 0.2468051165342331, \"Y\": 0.29648375511169434}]}, \"Id\": \"91f2bb28-48fa-407b-a52e-a6d91bf63162\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8883d459-e519-496e-a4f3-8bc153f14e3d\", \"c13e0354-532a-4c49-993f-0048c50a76a8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848405539989471, \"Height\": 0.03559098765254021, \"Left\": 0.36527037620544434, \"Top\": 0.24588985741138458}, \"Polygon\": [{\"X\": 0.36527037620544434, \"Y\": 0.260892778635025}, {\"X\": 0.4887450635433197, \"Y\": 0.24588985741138458}, {\"X\": 0.49375441670417786, \"Y\": 0.26647794246673584}, {\"X\": 0.3702797591686249, \"Y\": 0.2814808487892151}]}, \"Id\": \"3803d30e-fca6-4ffa-a158-72e0ddd76e5c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f3a8ea83-0892-443f-a825-c6014f6848cf\", \"c5d73d17-36bb-4d3c-be82-0e5ab1dad58f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12535811960697174, \"Height\": 0.035211168229579926, \"Left\": 0.4887450337409973, \"Top\": 0.2312667816877365}, \"Polygon\": [{\"X\": 0.4887450337409973, \"Y\": 0.24588987231254578}, {\"X\": 0.6090937852859497, \"Y\": 0.2312667816877365}, {\"X\": 0.6141031384468079, \"Y\": 0.25185486674308777}, {\"X\": 0.49375441670417786, \"Y\": 0.26647794246673584}]}, \"Id\": \"8f7159b8-7500-4b7f-93cd-29154062e551\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80be8982-8f09-41f0-8f1b-9cf131d02f51\", \"b1297020-86d2-4316-99e9-545eee7bde81\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12848401069641113, \"Height\": 0.03559098020195961, \"Left\": 0.6090937256813049, \"Top\": 0.21626389026641846}, \"Polygon\": [{\"X\": 0.6090937256813049, \"Y\": 0.2312667816877365}, {\"X\": 0.7325683832168579, \"Y\": 0.21626389026641846}, {\"X\": 0.7375777363777161, \"Y\": 0.23685197532176971}, {\"X\": 0.6141031384468079, \"Y\": 0.25185486674308777}]}, \"Id\": \"ee38b7b4-1611-4526-9d1a-9aedf67797f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"395bddcd-c419-411e-ac5c-22877ed90fba\", \"29098609-bf5e-4f29-ba47-9dbf6dacace9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1237950325012207, \"Height\": 0.03502124175429344, \"Left\": 0.7325684428215027, \"Top\": 0.20183072984218597}, \"Polygon\": [{\"X\": 0.7325684428215027, \"Y\": 0.21626389026641846}, {\"X\": 0.8513540625572205, \"Y\": 0.20183072984218597}, {\"X\": 0.8563634753227234, \"Y\": 0.22241881489753723}, {\"X\": 0.7375777959823608, \"Y\": 0.23685197532176971}]}, \"Id\": \"2004fa90-41c3-4c55-bb67-ab724d2bb6ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d0a523aa-5ddf-436b-a66b-15478cd6b3d8\", \"442af723-f2dc-4f71-8384-07db476d821f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1283249855041504, \"Height\": 0.03493737429380417, \"Left\": 0.2468051016330719, \"Top\": 0.2814808487892151}, \"Polygon\": [{\"X\": 0.2468051016330719, \"Y\": 0.29648375511169434}, {\"X\": 0.3702797293663025, \"Y\": 0.2814808487892151}, {\"X\": 0.3751300871372223, \"Y\": 0.3014153242111206}, {\"X\": 0.2516554594039917, \"Y\": 0.31641823053359985}]}, \"Id\": \"51757cc9-e8ed-4ee4-9942-e69e6de13c42\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"172a1670-f87e-4e5e-ac61-98438f1aff56\", \"f1b1486d-37b4-4217-9a10-9a9439bee341\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12832503020763397, \"Height\": 0.034937381744384766, \"Left\": 0.3702797591686249, \"Top\": 0.26647794246673584}, \"Polygon\": [{\"X\": 0.3702797591686249, \"Y\": 0.2814808487892151}, {\"X\": 0.49375441670417786, \"Y\": 0.26647794246673584}, {\"X\": 0.49860477447509766, \"Y\": 0.28641241788864136}, {\"X\": 0.3751300871372223, \"Y\": 0.3014153242111206}]}, \"Id\": \"9c93adff-b438-4af9-ac18-ea1b71f6ea8b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f953ebef-c8c0-421a-83cd-dca733adc4c6\", \"de350c71-4f61-430d-9730-ddc9aedb2f6d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.125199094414711, \"Height\": 0.034557562321424484, \"Left\": 0.49375441670417786, \"Top\": 0.25185486674308777}, \"Polygon\": [{\"X\": 0.49375441670417786, \"Y\": 0.26647794246673584}, {\"X\": 0.6141031384468079, \"Y\": 0.25185486674308777}, {\"X\": 0.61895352602005, \"Y\": 0.2717893421649933}, {\"X\": 0.49860477447509766, \"Y\": 0.28641241788864136}]}, \"Id\": \"4e9b0b7c-b40d-461b-bb60-0c6421d180fa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"662344eb-9d57-45de-af33-dbbf66628aaf\", \"000c649c-9016-4e98-b436-a3dc1961cc08\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1283249706029892, \"Height\": 0.03493737429380417, \"Left\": 0.6141031384468079, \"Top\": 0.23685197532176971}, \"Polygon\": [{\"X\": 0.6141031384468079, \"Y\": 0.25185486674308777}, {\"X\": 0.7375777363777161, \"Y\": 0.23685197532176971}, {\"X\": 0.7424281239509583, \"Y\": 0.25678643584251404}, {\"X\": 0.6189534664154053, \"Y\": 0.2717893421649933}]}, \"Id\": \"ed48189c-4a9c-44e3-8f0c-23a59bb010a5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc477de9-94a8-4c9f-8cb1-3b8c1b132db6\", \"4190ab95-389d-4a67-99d6-bfc065600cf2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 99.91607666015625, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12363600730895996, \"Height\": 0.034367635846138, \"Left\": 0.7375777959823608, \"Top\": 0.22241879999637604}, \"Polygon\": [{\"X\": 0.7375777959823608, \"Y\": 0.23685196042060852}, {\"X\": 0.8563634753227234, \"Y\": 0.22241879999637604}, {\"X\": 0.8612138032913208, \"Y\": 0.24235329031944275}, {\"X\": 0.7424281239509583, \"Y\": 0.25678643584251404}]}, \"Id\": \"0374cc27-69e3-40ca-999c-6e890e7f7b15\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ac27900b-c50d-4651-ac5e-ac44808f93e9\", \"f2c419d2-f1f4-4f94-bf96-a91a6073a4ca\"]}]}, {\"BlockType\": \"TABLE\", \"Confidence\": 95.49005126953125, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.29783791303634644, \"Height\": 0.08324053883552551, \"Left\": 0.012099298648536205, \"Top\": 0.12857826054096222}, \"Polygon\": [{\"X\": 0.012099298648536205, \"Y\": 0.16333390772342682}, {\"X\": 0.29814013838768005, \"Y\": 0.12857826054096222}, {\"X\": 0.3099372386932373, \"Y\": 0.17706313729286194}, {\"X\": 0.02389637753367424, \"Y\": 0.21181878447532654}]}, \"Id\": \"815f7be9-5a35-464f-ad26-9365d42b1970\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9f134f55-9bcf-4ee3-80cf-0bab6eec0b20\", \"95e395cd-a51a-4140-bc6d-113d8c57885e\", \"a231e36d-4c65-477a-9b5a-7dc7b1a08799\", \"a9a5f34d-8ec7-48e9-8948-f120d7b91d47\", \"18d3b449-6459-4b3f-b24e-59f20212c496\", \"0b3d1f77-c0f3-4079-bd46-11df16bfa195\", \"f0cbe788-7c93-41bf-867b-1ba114efec7b\", \"448f6646-89dd-4d4b-805e-89c1ca4c73a4\", \"436058d0-f9c3-4138-97a8-6f87382e6754\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06913100183010101, \"Height\": 0.025249332189559937, \"Left\": 0.012099284678697586, \"Top\": 0.15544739365577698}, \"Polygon\": [{\"X\": 0.012099284678697586, \"Y\": 0.16333389282226562}, {\"X\": 0.07700565457344055, \"Y\": 0.15544739365577698}, {\"X\": 0.0812302827835083, \"Y\": 0.17281021177768707}, {\"X\": 0.016323912888765335, \"Y\": 0.18069672584533691}]}, \"Id\": \"9f134f55-9bcf-4ee3-80cf-0bab6eec0b20\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"26dc26e8-8d5a-48ee-9a7f-30defff63e0b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11818813532590866, \"Height\": 0.03121006302535534, \"Left\": 0.07700567692518234, \"Top\": 0.14160014688968658}, \"Polygon\": [{\"X\": 0.07700567692518234, \"Y\": 0.15544737875461578}, {\"X\": 0.19096918404102325, \"Y\": 0.14160014688968658}, {\"X\": 0.195193812251091, \"Y\": 0.15896296501159668}, {\"X\": 0.08123030513525009, \"Y\": 0.17281021177768707}]}, \"Id\": \"95e395cd-a51a-4140-bc6d-113d8c57885e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cc99d96a-64c3-4a3f-b143-ff40c4cb0c2f\", \"3da9f1e5-c46b-4edd-ac18-5a78fc8bcccd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11139559745788574, \"Height\": 0.0303847286850214, \"Left\": 0.19096918404102325, \"Top\": 0.12857824563980103}, \"Polygon\": [{\"X\": 0.19096918404102325, \"Y\": 0.14160014688968658}, {\"X\": 0.29814016819000244, \"Y\": 0.12857824563980103}, {\"X\": 0.3023647964000702, \"Y\": 0.14594106376171112}, {\"X\": 0.195193812251091, \"Y\": 0.15896296501159668}]}, \"Id\": \"a231e36d-4c65-477a-9b5a-7dc7b1a08799\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c98f3ac9-02ca-4301-940d-f1761e3c4518\", \"6118f3ab-5357-47e0-9849-e2ed827c7665\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06960926204919815, \"Height\": 0.02721494436264038, \"Left\": 0.016323914751410484, \"Top\": 0.17281022667884827}, \"Polygon\": [{\"X\": 0.016323914751410484, \"Y\": 0.18069672584533691}, {\"X\": 0.0812302827835083, \"Y\": 0.17281022667884827}, {\"X\": 0.08593317866325378, \"Y\": 0.1921386569738388}, {\"X\": 0.02102680504322052, \"Y\": 0.20002517104148865}]}, \"Id\": \"a9a5f34d-8ec7-48e9-8948-f120d7b91d47\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a43c1dc0-1191-497f-8651-f3fedf42eb72\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1186664029955864, \"Height\": 0.033175673335790634, \"Left\": 0.08123031258583069, \"Top\": 0.15896297991275787}, \"Polygon\": [{\"X\": 0.08123031258583069, \"Y\": 0.17281021177768707}, {\"X\": 0.195193812251091, \"Y\": 0.15896297991275787}, {\"X\": 0.1998967081308365, \"Y\": 0.1782914251089096}, {\"X\": 0.08593320101499557, \"Y\": 0.1921386569738388}]}, \"Id\": \"18d3b449-6459-4b3f-b24e-59f20212c496\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fc4276c-a169-4bef-8d59-511b8a09fe36\", \"b7d0d8a7-db28-430d-b42a-de68f54b1e65\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11187385767698288, \"Height\": 0.032350338995456696, \"Left\": 0.195193812251091, \"Top\": 0.14594107866287231}, \"Polygon\": [{\"X\": 0.195193812251091, \"Y\": 0.15896297991275787}, {\"X\": 0.3023647964000702, \"Y\": 0.14594107866287231}, {\"X\": 0.3070676624774933, \"Y\": 0.16526950895786285}, {\"X\": 0.1998967081308365, \"Y\": 0.1782914251089096}]}, \"Id\": \"0b3d1f77-c0f3-4079-bd46-11df16bfa195\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c3ea5cc-390d-4820-8405-374a57b96be5\", \"beb23869-a996-4cc3-8a8f-c17ac2eb3806\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06777593493461609, \"Height\": 0.01968013122677803, \"Left\": 0.02102680318057537, \"Top\": 0.1921386569738388}, \"Polygon\": [{\"X\": 0.02102680318057537, \"Y\": 0.20002515614032745}, {\"X\": 0.08593317121267319, \"Y\": 0.1921386569738388}, {\"X\": 0.08880273252725601, \"Y\": 0.2039322704076767}, {\"X\": 0.023896364495158195, \"Y\": 0.21181878447532654}]}, \"Id\": \"f0cbe788-7c93-41bf-867b-1ba114efec7b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c953951d-64c6-409e-ae67-8eeb9603a468\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11683306843042374, \"Height\": 0.025640862062573433, \"Left\": 0.08593320101499557, \"Top\": 0.1782914102077484}, \"Polygon\": [{\"X\": 0.08593320101499557, \"Y\": 0.1921386420726776}, {\"X\": 0.1998967081308365, \"Y\": 0.1782914102077484}, {\"X\": 0.2027662694454193, \"Y\": 0.1900850385427475}, {\"X\": 0.0888027623295784, \"Y\": 0.2039322704076767}]}, \"Id\": \"448f6646-89dd-4d4b-805e-89c1ca4c73a4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6701f362-5ea6-442d-8b77-a11900419e2c\", \"1682ebce-55c4-4c01-85ae-cb73acfba4f7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 95.49005126953125, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11004053056240082, \"Height\": 0.024815529584884644, \"Left\": 0.1998967081308365, \"Top\": 0.16526950895786285}, \"Polygon\": [{\"X\": 0.1998967081308365, \"Y\": 0.1782914102077484}, {\"X\": 0.3070676624774933, \"Y\": 0.16526950895786285}, {\"X\": 0.3099372386932373, \"Y\": 0.17706313729286194}, {\"X\": 0.2027662694454193, \"Y\": 0.1900850385427475}]}, \"Id\": \"436058d0-f9c3-4138-97a8-6f87382e6754\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0d64f29-986f-46bf-950d-9ab7b8592684\", \"27924724-9588-4c2e-8441-856250318834\"]}]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 77.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04646147042512894, \"Height\": 0.018799517303705215, \"Left\": 0.6088465452194214, \"Top\": 0.041771698743104935}, \"Polygon\": [{\"X\": 0.6088465452194214, \"Y\": 0.04701630026102066}, {\"X\": 0.652009904384613, \"Y\": 0.041771698743104935}, {\"X\": 0.6553080081939697, \"Y\": 0.055326614528894424}, {\"X\": 0.6121446490287781, \"Y\": 0.06057121604681015}]}, \"Id\": \"99617062-4301-4984-9de8-317aec0186f1\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"cd11e044-c108-4ea0-b6cc-51dc666cc277\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"aca9fd22-0d2a-40a1-a8ea-0cb2882de9d6\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 77.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05913244187831879, \"Height\": 0.021273300051689148, \"Left\": 0.6533830761909485, \"Top\": 0.033697035163640976}, \"Polygon\": [{\"X\": 0.6533830761909485, \"Y\": 0.04045277461409569}, {\"X\": 0.7089831829071045, \"Y\": 0.033697035163640976}, {\"X\": 0.7125154733657837, \"Y\": 0.04821459576487541}, {\"X\": 0.6569153666496277, \"Y\": 0.054970335215330124}]}, \"Id\": \"cd11e044-c108-4ea0-b6cc-51dc666cc277\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"558ad9dd-d884-4d56-8b5c-0c3397f025cd\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 75.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0459880493581295, \"Height\": 0.01868123933672905, \"Left\": 0.602272093296051, \"Top\": 0.017712630331516266}, \"Polygon\": [{\"X\": 0.602272093296051, \"Y\": 0.022901561111211777}, {\"X\": 0.6449772715568542, \"Y\": 0.017712630331516266}, {\"X\": 0.6482601165771484, \"Y\": 0.031204938888549805}, {\"X\": 0.6055549383163452, \"Y\": 0.036393869668245316}]}, \"Id\": \"5a0ed99c-ef56-4144-a3fe-496819af0c5b\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"a02d7465-b450-4249-8467-bdf7bc265f2d\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"fe627c4d-3f06-47b6-a38f-5020a443fa18\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 75.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.057272136211395264, \"Height\": 0.020510874688625336, \"Left\": 0.6485781669616699, \"Top\": 0.010094636119902134}, \"Polygon\": [{\"X\": 0.6485781669616699, \"Y\": 0.016640679910779}, {\"X\": 0.7024524211883545, \"Y\": 0.010094636119902134}, {\"X\": 0.7058503031730652, \"Y\": 0.024059467017650604}, {\"X\": 0.6519759893417358, \"Y\": 0.030605511739850044}]}, \"Id\": \"a02d7465-b450-4249-8467-bdf7bc265f2d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a95407bc-e233-4dd9-b563-8f1076c6a78a\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 74.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03845389187335968, \"Height\": 0.015524721704423428, \"Left\": 0.011556361801922321, \"Top\": 0.4281005561351776}, \"Polygon\": [{\"X\": 0.011556361801922321, \"Y\": 0.432442307472229}, {\"X\": 0.047289274632930756, \"Y\": 0.4281005561351776}, {\"X\": 0.05001025274395943, \"Y\": 0.4392835199832916}, {\"X\": 0.014277338981628418, \"Y\": 0.443625271320343}]}, \"Id\": \"7137de2a-18d4-4e77-86dc-609168cd5a10\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"652ee947-fbb4-46a9-b5ca-2739feed6317\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"67a4f51f-ebbf-4fe4-8f29-3f6327ef9a29\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 74.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06893942505121231, \"Height\": 0.022044744342565536, \"Left\": 0.05048293620347977, \"Top\": 0.4184512794017792}, \"Polygon\": [{\"X\": 0.05048293620347977, \"Y\": 0.4264114201068878}, {\"X\": 0.1159953773021698, \"Y\": 0.4184512794017792}, {\"X\": 0.11942236125469208, \"Y\": 0.432535856962204}, {\"X\": 0.05390992388129234, \"Y\": 0.4404959976673126}]}, \"Id\": \"652ee947-fbb4-46a9-b5ca-2739feed6317\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"90bae850-296a-477d-abf0-274d4f12f61f\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 67.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0374634712934494, \"Height\": 0.015014675445854664, \"Left\": 0.045458678156137466, \"Top\": 0.5569866299629211}, \"Polygon\": [{\"X\": 0.045458678156137466, \"Y\": 0.5612198710441589}, {\"X\": 0.08029888570308685, \"Y\": 0.5569866299629211}, {\"X\": 0.08292215317487717, \"Y\": 0.5677679777145386}, {\"X\": 0.04808194562792778, \"Y\": 0.5720012784004211}]}, \"Id\": \"cd15fa27-75a7-4b41-a5b5-ad2857521a3d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"9b5db4c9-4de0-4644-ae6d-6d6bb7cbf31e\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ad574b45-d57c-4304-95d0-7fef25fc6f19\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 67.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06880989670753479, \"Height\": 0.02156551368534565, \"Left\": 0.08391699194908142, \"Top\": 0.5479656457901001}, \"Polygon\": [{\"X\": 0.08391699194908142, \"Y\": 0.5559241771697998}, {\"X\": 0.14941611886024475, \"Y\": 0.5479656457901001}, {\"X\": 0.1527268886566162, \"Y\": 0.5615726113319397}, {\"X\": 0.08722776919603348, \"Y\": 0.5695311427116394}]}, \"Id\": \"9b5db4c9-4de0-4644-ae6d-6d6bb7cbf31e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2b1fcc37-45d9-430d-bcf5-b47957d40e83\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 65.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033161941915750504, \"Height\": 0.01421405840665102, \"Left\": 0.04937180504202843, \"Top\": 0.5735848546028137}, \"Polygon\": [{\"X\": 0.04937180504202843, \"Y\": 0.5773040056228638}, {\"X\": 0.07998017221689224, \"Y\": 0.5735848546028137}, {\"X\": 0.08253374695777893, \"Y\": 0.5840798616409302}, {\"X\": 0.051925383508205414, \"Y\": 0.5877989530563354}]}, \"Id\": \"10d3cffc-0918-4bab-ac97-0682c4a6f69d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"cc0a576e-8927-40f2-8c1c-53c4b18daee5\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"a2bd1b93-c298-4f75-9459-c0c586a060f7\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 65.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10435458272695541, \"Height\": 0.027173766866326332, \"Left\": 0.08178966492414474, \"Top\": 0.5595239996910095}, \"Polygon\": [{\"X\": 0.08178966492414474, \"Y\": 0.5717621445655823}, {\"X\": 0.18251019716262817, \"Y\": 0.5595239996910095}, {\"X\": 0.18614424765110016, \"Y\": 0.5744596123695374}, {\"X\": 0.08542372286319733, \"Y\": 0.5866977572441101}]}, \"Id\": \"cc0a576e-8927-40f2-8c1c-53c4b18daee5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ebde66ce-d2af-4c86-ba3a-fef80f507a42\"]}], \"EntityTypes\": [\"VALUE\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 51.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033101387321949005, \"Height\": 0.014731520786881447, \"Left\": 0.010270865634083748, \"Top\": 0.40196260809898376}, \"Polygon\": [{\"X\": 0.010270865634083748, \"Y\": 0.4056583642959595}, {\"X\": 0.040687091648578644, \"Y\": 0.40196260809898376}, {\"X\": 0.0433722548186779, \"Y\": 0.41299837827682495}, {\"X\": 0.012956028804183006, \"Y\": 0.41669413447380066}]}, \"Id\": \"ec84155b-c3c9-467d-83f0-d7c8fdd225c5\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"76419052-2684-4fd3-93d0-e314e3949023\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ddb719fd-6e4f-43fa-b59b-c0d0f8a61fe5\"]}], \"EntityTypes\": [\"KEY\"]}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 51.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10021811723709106, \"Height\": 0.02668486349284649, \"Left\": 0.045335881412029266, \"Top\": 0.3881467282772064}, \"Polygon\": [{\"X\": 0.045335881412029266, \"Y\": 0.39988183975219727}, {\"X\": 0.14191651344299316, \"Y\": 0.3881467282772064}, {\"X\": 0.14555400609970093, \"Y\": 0.403096467256546}, {\"X\": 0.04897337406873703, \"Y\": 0.41483157873153687}]}, \"Id\": \"76419052-2684-4fd3-93d0-e314e3949023\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dcf6336b-0634-447f-b13e-a659142ca3d6\"]}], \"EntityTypes\": [\"VALUE\"]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"4ec1ffee-7aac-46f3-9fca-697484073bba\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"4ec1ffee-7aac-46f3-9fca-697484073bba\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"152695\", \"date\": \"Mon, 26 Apr 2021 21:51:08 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib_multi_page_table_merge.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 3}, \"JobStatus\": \"SUCCEEDED\", \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"014bcaa0-a017-48c9-b5d3-12b08b269977\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c054725-62e6-4ec4-ad1a-ae9c45ac21df\", \"fc2d5852-a39b-4baf-9ab0-24ab5950f433\", \"937580f5-df87-4e3a-a507-56df5925bdd9\", \"9974b708-dce4-4945-8963-026c406663b9\", \"914c8fa8-b93a-48b7-9b12-ad18013857d5\", \"f17ee30d-8f00-44c5-896a-06ffdd7832cd\", \"323fd24d-bbc9-4199-8a27-832913839b55\", \"6ce6afb6-13a4-4885-8ed4-5b82b28fefc9\", \"f586c646-3b17-4ffb-a600-4350d14230e5\", \"b96185bd-b002-4800-b955-bc1d56909ef5\", \"5914fb45-f26d-457e-87f0-d58b09f1b2bf\", \"3006f22f-c33a-4dd4-bcbd-87b819a27c73\", \"2a8b59ca-b504-4d7d-93d4-2f49f6f5f11a\", \"bacd6bbf-7ef2-4fd8-8cf4-98b0ca0c846c\", \"a92d956d-b224-412e-9d8a-c06a9d3a6c13\", \"4fccdaa9-03d7-4573-bada-853961bdf226\", \"ca3e1ba4-51ab-4dfd-82d2-b3e0ea68d13e\", \"74727775-812a-4738-8618-17961af8719a\", \"08cca7c2-2413-49df-afce-617cd594979f\", \"aeb24b5c-4fd1-4966-9d52-9f0cff55f6cd\", \"70547bbd-e109-4ee2-ba9a-31a8413157ad\", \"61520363-f6fa-4c0b-8746-c7445f6b02bc\", \"d000d484-48d2-4233-8da5-63fabffbf61f\", \"1f4f7f72-a150-470e-b5e9-65dec5552de3\", \"2b6ac9fb-c052-4146-a959-6bb005f378ba\", \"23584ff4-f938-4960-ad93-4b008e6dcbd2\", \"32ae2f6a-c5e1-4dcb-838f-b7998be947ee\", \"3d7935d2-ab16-4435-a7f7-f605d330ea93\", \"1a5725ec-b37a-4292-ba4e-c0deb05c5a84\", \"11128d89-b6f5-4f5c-9a0d-494d3af0cd8b\", \"2d74bd4e-5945-4c02-942b-2f658e237adb\", \"674ab721-67a4-4ca4-b172-38eedf814dfd\", \"e3bc0fc5-dc5c-4960-8c5d-81f448b7df74\", \"dbc7af6f-0650-4b2d-a048-3562e1a68ed0\", \"bee952e7-4c84-4494-bde0-076a92dd1bf3\", \"49e16514-3377-4566-96e3-b856d74f675f\", \"e2e5288e-a881-4531-85bd-fb971b2d6a89\", \"ad757bc1-7cef-4b24-ad22-6c784db1cb8f\", \"643d211e-447c-4668-9f73-ab48eb7234ba\", \"89b05676-4251-4a1f-b9a0-0cb01142dcea\", \"7e0dfac7-6a01-46cd-9a85-f71e672e2f80\", \"10def39d-b6ed-4a9c-af67-f0de450bf581\", \"298a370d-66d0-46d4-9e08-e885da9eea35\", \"148c1022-aa1c-41c1-9936-a8167f13f841\", \"3713fd18-ef15-43dd-ac4e-32c44ce3fa2d\", \"93f5678f-aa52-4e50-ac1d-aac338c0dc08\", \"a2f9ccd9-524d-4d4d-a616-cebb842bf252\", \"d3160a16-7a18-4f18-817a-0d135381f9dd\", \"ba688267-0b54-47a3-9a2e-5dc8bdf5ac1d\", \"de6f7e13-764a-455b-9c32-92b3c00e3327\", \"0b045855-0c18-4c4f-9977-f1b1406198dd\", \"a001c0dc-c930-4f22-8c37-69c5021f54c2\", \"f18155a2-befe-4286-9131-2ec93d1fe090\", \"17d259e6-56c6-49ad-9699-92fd3507e933\", \"a7208df7-10ff-4657-b40f-91b8b0c538cc\", \"776964a9-3f07-47cc-9bc5-e94e6bbd4912\", \"5685498d-d196-42a7-8b40-594d6d886ca9\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81492614746094, \"Text\": \"Full Name: John Doe\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14960144460201263, \"Height\": 0.010953090153634548, \"Left\": 0.11788485199213028, \"Top\": 0.09406500309705734}, \"Polygon\": [{\"X\": 0.11788485199213028, \"Y\": 0.09406500309705734}, {\"X\": 0.2674863040447235, \"Y\": 0.09406500309705734}, {\"X\": 0.2674863040447235, \"Y\": 0.10501808673143387}, {\"X\": 0.11788485199213028, \"Y\": 0.10501808673143387}]}, \"Id\": \"4c054725-62e6-4ec4-ad1a-ae9c45ac21df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b04e8df-87a8-4d5a-9fbb-a20993a1d08d\", \"07a0d3e0-c814-47c5-b8d6-4d0a3f4628d4\", \"f83e28bf-371c-455d-bdf0-8dff127ea72a\", \"1e613112-7345-4d27-bbcd-af1847a29a74\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62374114990234, \"Text\": \"Phone Number: 9345-4298-33454\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2489701509475708, \"Height\": 0.010828375816345215, \"Left\": 0.11800665408372879, \"Top\": 0.1510070562362671}, \"Polygon\": [{\"X\": 0.11800665408372879, \"Y\": 0.1510070562362671}, {\"X\": 0.366976797580719, \"Y\": 0.1510070562362671}, {\"X\": 0.366976797580719, \"Y\": 0.1618354320526123}, {\"X\": 0.11800665408372879, \"Y\": 0.1618354320526123}]}, \"Id\": \"fc2d5852-a39b-4baf-9ab0-24ab5950f433\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f0b18ea-7a55-441c-915e-38bef6f964a7\", \"dcd4384b-d9c2-4d9f-8b82-f10a94c410fb\", \"af3a2e55-af22-4b70-9067-49b4820750d0\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69647216796875, \"Text\": \"Home Address: 134234 Street, Town, Canada\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.32955875992774963, \"Height\": 0.012454446405172348, \"Left\": 0.11818882822990417, \"Top\": 0.20785459876060486}, \"Polygon\": [{\"X\": 0.11818882822990417, \"Y\": 0.20785459876060486}, {\"X\": 0.4477475881576538, \"Y\": 0.20785459876060486}, {\"X\": 0.4477475881576538, \"Y\": 0.2203090488910675}, {\"X\": 0.11818882822990417, \"Y\": 0.2203090488910675}]}, \"Id\": \"937580f5-df87-4e3a-a507-56df5925bdd9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e3e18a6-75a5-4793-ae14-c87add1018c4\", \"4a1f6bb2-be2e-49b9-9482-659ab91dd7d0\", \"ccbcb8c5-8fd6-4277-98ee-44968ed77d66\", \"fb8b7c4d-bdf2-43f6-8df2-a8793e83ea83\", \"75883d00-6593-4f86-ab80-d3ca84fb89a4\", \"c0aa1349-aa91-4b3f-b7c5-701fe5924b8b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.89350891113281, \"Text\": \"Mailing Address: same as above\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23227235674858093, \"Height\": 0.012670308351516724, \"Left\": 0.11817339807748795, \"Top\": 0.2648327350616455}, \"Polygon\": [{\"X\": 0.11817339807748795, \"Y\": 0.2648327350616455}, {\"X\": 0.3504457473754883, \"Y\": 0.2648327350616455}, {\"X\": 0.3504457473754883, \"Y\": 0.27750304341316223}, {\"X\": 0.11817339807748795, \"Y\": 0.27750304341316223}]}, \"Id\": \"9974b708-dce4-4945-8963-026c406663b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c39a97af-6571-4107-ae54-f49fd2b563b3\", \"68231f12-20aa-4cf5-8862-c1285f2985b4\", \"b1051441-e477-4300-9c58-8d976143393a\", \"4f2651f2-6d33-4c37-970b-bc3518ee97d9\", \"5455abab-fa6c-468d-9549-0798fabb9502\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81748962402344, \"Text\": \"Date\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035041481256484985, \"Height\": 0.010056614875793457, \"Left\": 0.15295645594596863, \"Top\": 0.37929338216781616}, \"Polygon\": [{\"X\": 0.15295645594596863, \"Y\": 0.37929338216781616}, {\"X\": 0.1879979372024536, \"Y\": 0.37929338216781616}, {\"X\": 0.1879979372024536, \"Y\": 0.3893499970436096}, {\"X\": 0.15295645594596863, \"Y\": 0.3893499970436096}]}, \"Id\": \"914c8fa8-b93a-48b7-9b12-ad18013857d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a2e51a25-a597-4484-95a6-8f3be25e6626\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.47399139404297, \"Text\": \"Description Solo 1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13479654490947723, \"Height\": 0.012763828039169312, \"Left\": 0.33167165517807007, \"Top\": 0.37879830598831177}, \"Polygon\": [{\"X\": 0.33167165517807007, \"Y\": 0.37879830598831177}, {\"X\": 0.4664682149887085, \"Y\": 0.37879830598831177}, {\"X\": 0.4664682149887085, \"Y\": 0.3915621340274811}, {\"X\": 0.33167165517807007, \"Y\": 0.3915621340274811}]}, \"Id\": \"f17ee30d-8f00-44c5-896a-06ffdd7832cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6ffcdf83-f2da-4414-9231-bfc7fe6daee2\", \"1eda99e6-f9ec-4911-ae08-905ff0f41c82\", \"92403db6-c816-4a0a-a5e6-1c2df4a055fd\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 93.61992645263672, \"Text\": \"Withdrawals/Deposits\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17651069164276123, \"Height\": 0.013099491596221924, \"Left\": 0.5918797850608826, \"Top\": 0.3784915506839752}, \"Polygon\": [{\"X\": 0.5918797850608826, \"Y\": 0.3784915506839752}, {\"X\": 0.7683904767036438, \"Y\": 0.3784915506839752}, {\"X\": 0.7683904767036438, \"Y\": 0.39159104228019714}, {\"X\": 0.5918797850608826, \"Y\": 0.39159104228019714}]}, \"Id\": \"323fd24d-bbc9-4199-8a27-832913839b55\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9b499b63-324d-4d88-82b4-10f51f2e6f8b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.11254119873047, \"Text\": \"2/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06831617653369904, \"Height\": 0.012302398681640625, \"Left\": 0.14533677697181702, \"Top\": 0.39812275767326355}, \"Polygon\": [{\"X\": 0.14533677697181702, \"Y\": 0.39812275767326355}, {\"X\": 0.21365295350551605, \"Y\": 0.39812275767326355}, {\"X\": 0.21365295350551605, \"Y\": 0.4104251563549042}, {\"X\": 0.14533677697181702, \"Y\": 0.4104251563549042}]}, \"Id\": \"6ce6afb6-13a4-4885-8ed4-5b82b28fefc9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e07ffc9e-34d2-403e-9f33-8d39bbc9fe9a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.57794952392578, \"Text\": \"Food Purchase - McDonalds - 1194089245\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30673733353614807, \"Height\": 0.010719895362854004, \"Left\": 0.23192676901817322, \"Top\": 0.39839375019073486}, \"Polygon\": [{\"X\": 0.23192676901817322, \"Y\": 0.39839375019073486}, {\"X\": 0.5386641025543213, \"Y\": 0.39839375019073486}, {\"X\": 0.5386641025543213, \"Y\": 0.40911364555358887}, {\"X\": 0.23192676901817322, \"Y\": 0.40911364555358887}]}, \"Id\": \"f586c646-3b17-4ffb-a600-4350d14230e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"654beef5-4ce4-47ce-9c02-955da4e3d970\", \"275ceac5-d9e1-4c52-9b2a-79a23e782468\", \"4b4e7ba7-c579-4bbf-82fc-5b630d7a04bf\", \"9a7a4bf5-430d-402d-8d46-d0299e529e29\", \"1898310c-5c79-4f28-a2ec-3a079f8a1654\", \"2c1e5528-7e3e-4660-bd77-862277e15ddc\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72128295898438, \"Text\": \"-171\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032423317432403564, \"Height\": 0.01011762022972107, \"Left\": 0.7446965575218201, \"Top\": 0.39872875809669495}, \"Polygon\": [{\"X\": 0.7446965575218201, \"Y\": 0.39872875809669495}, {\"X\": 0.7771198749542236, \"Y\": 0.39872875809669495}, {\"X\": 0.7771198749542236, \"Y\": 0.408846378326416}, {\"X\": 0.7446965575218201, \"Y\": 0.408846378326416}]}, \"Id\": \"b96185bd-b002-4800-b955-bc1d56909ef5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"52ba5776-886e-4c35-8548-8c5eda30b7ec\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48328399658203, \"Text\": \"8/22/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0776294618844986, \"Height\": 0.012820243835449219, \"Left\": 0.13601036369800568, \"Top\": 0.41756412386894226}, \"Polygon\": [{\"X\": 0.13601036369800568, \"Y\": 0.41756412386894226}, {\"X\": 0.21363982558250427, \"Y\": 0.41756412386894226}, {\"X\": 0.21363982558250427, \"Y\": 0.4303843677043915}, {\"X\": 0.13601036369800568, \"Y\": 0.4303843677043915}]}, \"Id\": \"5914fb45-f26d-457e-87f0-d58b09f1b2bf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6b2e411b-73d9-4b62-bc98-233e426113bd\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.67591094970703, \"Text\": \"Online Retail - Amazon.com - 1232495036\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30715039372444153, \"Height\": 0.010596513748168945, \"Left\": 0.23128359019756317, \"Top\": 0.4181697964668274}, \"Polygon\": [{\"X\": 0.23128359019756317, \"Y\": 0.4181697964668274}, {\"X\": 0.5384339690208435, \"Y\": 0.4181697964668274}, {\"X\": 0.5384339690208435, \"Y\": 0.42876631021499634}, {\"X\": 0.23128359019756317, \"Y\": 0.42876631021499634}]}, \"Id\": \"3006f22f-c33a-4dd4-bcbd-87b819a27c73\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9b2492b-6af0-49c1-be62-959096240f64\", \"42c8d325-3813-4fc2-a581-c93dfaeb8ffc\", \"0c9adee5-025c-47ed-8941-4d3971f49ffb\", \"09632fbd-4e41-4250-86c9-adb4a5695345\", \"3fb51a7f-b23d-480b-96a8-e238e2d2e168\", \"eba5a9f0-53eb-4a17-9b39-c7abf28621c1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.93270111083984, \"Text\": \"-44\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02310234308242798, \"Height\": 0.009992599487304688, \"Left\": 0.7544092535972595, \"Top\": 0.4186657667160034}, \"Polygon\": [{\"X\": 0.7544092535972595, \"Y\": 0.4186657667160034}, {\"X\": 0.7775115966796875, \"Y\": 0.4186657667160034}, {\"X\": 0.7775115966796875, \"Y\": 0.4286583662033081}, {\"X\": 0.7544092535972595, \"Y\": 0.4286583662033081}]}, \"Id\": \"2a8b59ca-b504-4d7d-93d4-2f49f6f5f11a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6d81df8c-8e69-4ecb-a64c-61b44b1cefa7\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32211303710938, \"Text\": \"11/1/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07690371572971344, \"Height\": 0.012699902057647705, \"Left\": 0.13632038235664368, \"Top\": 0.4371742308139801}, \"Polygon\": [{\"X\": 0.13632038235664368, \"Y\": 0.4371742308139801}, {\"X\": 0.21322409808635712, \"Y\": 0.4371742308139801}, {\"X\": 0.21322409808635712, \"Y\": 0.4498741328716278}, {\"X\": 0.13632038235664368, \"Y\": 0.4498741328716278}]}, \"Id\": \"bacd6bbf-7ef2-4fd8-8cf4-98b0ca0c846c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bd71e87b-401a-4363-8d6a-5240b05c6312\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.76056671142578, \"Text\": \"Food Purchase - Tim Hortons - 1509173654\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3151243329048157, \"Height\": 0.010783296078443527, \"Left\": 0.23185408115386963, \"Top\": 0.43775758147239685}, \"Polygon\": [{\"X\": 0.23185408115386963, \"Y\": 0.43775758147239685}, {\"X\": 0.5469784140586853, \"Y\": 0.43775758147239685}, {\"X\": 0.5469784140586853, \"Y\": 0.4485408663749695}, {\"X\": 0.23185408115386963, \"Y\": 0.4485408663749695}]}, \"Id\": \"a92d956d-b224-412e-9d8a-c06a9d3a6c13\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"361934af-30c8-4063-b64b-a0d0ec0f71c8\", \"f6063693-08b3-465c-9ab0-5652a2912e85\", \"87f909ab-8bb7-45c8-a136-485cc952e178\", \"b28f2c4f-5ca6-471d-a41b-550df24ab69d\", \"734e5576-674c-4573-a8db-c8542252c7a7\", \"c7f56113-ef6b-48e3-81b5-c078cdd5aec2\", \"6d73e824-0d94-41a7-88f2-efb9a038d4d7\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.40252685546875, \"Text\": \"-224\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03267955780029297, \"Height\": 0.009864747524261475, \"Left\": 0.7448712587356567, \"Top\": 0.4381592869758606}, \"Polygon\": [{\"X\": 0.7448712587356567, \"Y\": 0.4381592869758606}, {\"X\": 0.7775508165359497, \"Y\": 0.4381592869758606}, {\"X\": 0.7775508165359497, \"Y\": 0.44802403450012207}, {\"X\": 0.7448712587356567, \"Y\": 0.44802403450012207}]}, \"Id\": \"4fccdaa9-03d7-4573-bada-853961bdf226\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40ea8ae4-ec72-4f23-b85f-c4c2593d1efb\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35201263427734, \"Text\": \"5/26/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07775993645191193, \"Height\": 0.012700647115707397, \"Left\": 0.13525071740150452, \"Top\": 0.45669278502464294}, \"Polygon\": [{\"X\": 0.13525071740150452, \"Y\": 0.45669278502464294}, {\"X\": 0.21301065385341644, \"Y\": 0.45669278502464294}, {\"X\": 0.21301065385341644, \"Y\": 0.46939343214035034}, {\"X\": 0.13525071740150452, \"Y\": 0.46939343214035034}]}, \"Id\": \"ca3e1ba4-51ab-4dfd-82d2-b3e0ea68d13e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"15cb9988-f50e-43d1-a5bf-ee75d0e279bd\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.53364562988281, \"Text\": \"Retail Purchase - Sobeys - 1896933493\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2845519483089447, \"Height\": 0.012633679434657097, \"Left\": 0.23178032040596008, \"Top\": 0.4571819305419922}, \"Polygon\": [{\"X\": 0.23178032040596008, \"Y\": 0.4571819305419922}, {\"X\": 0.5163322687149048, \"Y\": 0.4571819305419922}, {\"X\": 0.5163322687149048, \"Y\": 0.46981561183929443}, {\"X\": 0.23178032040596008, \"Y\": 0.46981561183929443}]}, \"Id\": \"74727775-812a-4738-8618-17961af8719a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5cc38bd3-7068-4650-9a7b-64733bdec46b\", \"4f422c52-a560-4373-b707-e02f8d0a902b\", \"c97efa50-3b0c-4412-bfe7-dd69810b6624\", \"a82837d9-1250-4f57-9099-be8b4604c550\", \"728eb94a-c854-4d80-a86b-51c56df1cb7f\", \"63ee1bf0-268d-45e4-b768-5186c505521a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49056243896484, \"Text\": \"-244\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03272920846939087, \"Height\": 0.009953618049621582, \"Left\": 0.7446429133415222, \"Top\": 0.45766374468803406}, \"Polygon\": [{\"X\": 0.7446429133415222, \"Y\": 0.45766374468803406}, {\"X\": 0.7773721218109131, \"Y\": 0.45766374468803406}, {\"X\": 0.7773721218109131, \"Y\": 0.46761736273765564}, {\"X\": 0.7446429133415222, \"Y\": 0.46761736273765564}]}, \"Id\": \"08cca7c2-2413-49df-afce-617cd594979f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f2f616b-bb23-41b5-bcba-1c1c8b514428\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.9642562866211, \"Text\": \"8/8/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0688246339559555, \"Height\": 0.013010650873184204, \"Left\": 0.1448035091161728, \"Top\": 0.47602277994155884}, \"Polygon\": [{\"X\": 0.1448035091161728, \"Y\": 0.47602277994155884}, {\"X\": 0.2136281430721283, \"Y\": 0.47602277994155884}, {\"X\": 0.2136281430721283, \"Y\": 0.48903343081474304}, {\"X\": 0.1448035091161728, \"Y\": 0.48903343081474304}]}, \"Id\": \"aeb24b5c-4fd1-4966-9d52-9f0cff55f6cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4ece52a-dd4d-4ff0-9e8a-8c57b699857b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.67668914794922, \"Text\": \"Food Purchase - Tim Hortons - 1966610947\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3150991201400757, \"Height\": 0.010564526543021202, \"Left\": 0.2318592667579651, \"Top\": 0.4767681360244751}, \"Polygon\": [{\"X\": 0.2318592667579651, \"Y\": 0.4767681360244751}, {\"X\": 0.5469583868980408, \"Y\": 0.4767681360244751}, {\"X\": 0.5469583868980408, \"Y\": 0.48733267188072205}, {\"X\": 0.2318592667579651, \"Y\": 0.48733267188072205}]}, \"Id\": \"70547bbd-e109-4ee2-ba9a-31a8413157ad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e3f0907-83f1-45b4-a27d-10f5ca9b62e1\", \"d9d61396-b9d6-4a78-9e13-047153cb4542\", \"39eb096b-bde7-4c4d-ad0d-2d739d77c673\", \"ed83f667-03f8-4ed3-9257-7c373583f299\", \"a08e8efb-b685-44ef-9426-83c3c4d549b6\", \"66e0df67-0313-40a7-b612-8e61666099a7\", \"d3756584-8966-432b-b775-1b2e116c3e7d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75792694091797, \"Text\": \"-116\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032942116260528564, \"Height\": 0.009900182485580444, \"Left\": 0.7445082664489746, \"Top\": 0.477195680141449}, \"Polygon\": [{\"X\": 0.7445082664489746, \"Y\": 0.477195680141449}, {\"X\": 0.7774503827095032, \"Y\": 0.477195680141449}, {\"X\": 0.7774503827095032, \"Y\": 0.4870958626270294}, {\"X\": 0.7445082664489746, \"Y\": 0.4870958626270294}]}, \"Id\": \"61520363-f6fa-4c0b-8746-c7445f6b02bc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3242667a-8ec7-4fcd-b882-347821e7ec35\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.18406677246094, \"Text\": \"7/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06831280887126923, \"Height\": 0.012655556201934814, \"Left\": 0.14536209404468536, \"Top\": 0.4957549571990967}, \"Polygon\": [{\"X\": 0.14536209404468536, \"Y\": 0.4957549571990967}, {\"X\": 0.2136749029159546, \"Y\": 0.4957549571990967}, {\"X\": 0.2136749029159546, \"Y\": 0.5084105134010315}, {\"X\": 0.14536209404468536, \"Y\": 0.5084105134010315}]}, \"Id\": \"d000d484-48d2-4233-8da5-63fabffbf61f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1a323747-3e1e-446a-9a53-1c313e8fe63f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.35331726074219, \"Text\": \"Transport - Lyft - 2039726014\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21728180348873138, \"Height\": 0.012780694290995598, \"Left\": 0.23042158782482147, \"Top\": 0.4962702691555023}, \"Polygon\": [{\"X\": 0.23042158782482147, \"Y\": 0.4962702691555023}, {\"X\": 0.44770339131355286, \"Y\": 0.4962702691555023}, {\"X\": 0.44770339131355286, \"Y\": 0.5090509653091431}, {\"X\": 0.23042158782482147, \"Y\": 0.5090509653091431}]}, \"Id\": \"1f4f7f72-a150-470e-b5e9-65dec5552de3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"33ba5d45-fb3a-4cc5-a62e-da32f3fd225f\", \"e81ae489-88a2-45e5-a40f-1e3eefb61ce2\", \"fdece126-b715-421d-98f7-4d79423c1766\", \"e9fe4348-097c-41b9-ac43-86d21fe950b7\", \"911176a4-cf0e-4657-8493-8d9c7afc8933\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48228454589844, \"Text\": \"-249\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03227829933166504, \"Height\": 0.009898215532302856, \"Left\": 0.7451339960098267, \"Top\": 0.49678751826286316}, \"Polygon\": [{\"X\": 0.7451339960098267, \"Y\": 0.49678751826286316}, {\"X\": 0.7774122953414917, \"Y\": 0.49678751826286316}, {\"X\": 0.7774122953414917, \"Y\": 0.506685733795166}, {\"X\": 0.7451339960098267, \"Y\": 0.506685733795166}]}, \"Id\": \"2b6ac9fb-c052-4146-a959-6bb005f378ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"574a6ecf-8687-4388-97c4-ee0010876b81\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4161148071289, \"Text\": \"2/13/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07753027975559235, \"Height\": 0.012884378433227539, \"Left\": 0.13612861931324005, \"Top\": 0.515245795249939}, \"Polygon\": [{\"X\": 0.13612861931324005, \"Y\": 0.515245795249939}, {\"X\": 0.2136588990688324, \"Y\": 0.515245795249939}, {\"X\": 0.2136588990688324, \"Y\": 0.5281301736831665}, {\"X\": 0.13612861931324005, \"Y\": 0.5281301736831665}]}, \"Id\": \"23584ff4-f938-4960-ad93-4b008e6dcbd2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"97bbf8fd-c401-456e-92a0-83c207d82548\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.86228942871094, \"Text\": \"Food Purchase - McDonalds - 2130609679\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3073979616165161, \"Height\": 0.010754789225757122, \"Left\": 0.23205971717834473, \"Top\": 0.5157846212387085}, \"Polygon\": [{\"X\": 0.23205971717834473, \"Y\": 0.5157846212387085}, {\"X\": 0.5394576787948608, \"Y\": 0.5157846212387085}, {\"X\": 0.5394576787948608, \"Y\": 0.5265393853187561}, {\"X\": 0.23205971717834473, \"Y\": 0.5265393853187561}]}, \"Id\": \"32ae2f6a-c5e1-4dcb-838f-b7998be947ee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e468d08a-5a9e-45c9-87c6-d94c790b1ca9\", \"e7268e60-dfbe-45a3-a49e-bd55a84cbc4c\", \"733671b3-cfe9-4e82-aa3c-4e0b601ce966\", \"e57b2b74-d49c-49ec-b72c-7a61700f8826\", \"c9eb7338-11b1-4fcf-8e96-978811468c8f\", \"490e6347-49b3-4a69-aa61-03a77dde0a1a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.25028991699219, \"Text\": \"-127\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032936275005340576, \"Height\": 0.010062217712402344, \"Left\": 0.7445973753929138, \"Top\": 0.5161747932434082}, \"Polygon\": [{\"X\": 0.7445973753929138, \"Y\": 0.5161747932434082}, {\"X\": 0.7775336503982544, \"Y\": 0.5161747932434082}, {\"X\": 0.7775336503982544, \"Y\": 0.5262370109558105}, {\"X\": 0.7445973753929138, \"Y\": 0.5262370109558105}]}, \"Id\": \"3d7935d2-ab16-4435-a7f7-f605d330ea93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2b0bf13-53ea-40b0-821d-a72ddcf1241d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6371078491211, \"Text\": \"8/1/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06907635927200317, \"Height\": 0.013045549392700195, \"Left\": 0.1445186734199524, \"Top\": 0.5348910093307495}, \"Polygon\": [{\"X\": 0.1445186734199524, \"Y\": 0.5348910093307495}, {\"X\": 0.21359503269195557, \"Y\": 0.5348910093307495}, {\"X\": 0.21359503269195557, \"Y\": 0.5479365587234497}, {\"X\": 0.1445186734199524, \"Y\": 0.5479365587234497}]}, \"Id\": \"1a5725ec-b37a-4292-ba4e-c0deb05c5a84\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54942e26-656d-45d8-ad65-7decc157fac1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.7381362915039, \"Text\": \"Transport - Uber - 2135962828\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2262870818376541, \"Height\": 0.012694152072072029, \"Left\": 0.23051927983760834, \"Top\": 0.5357194542884827}, \"Polygon\": [{\"X\": 0.23051927983760834, \"Y\": 0.5357194542884827}, {\"X\": 0.45680636167526245, \"Y\": 0.5357194542884827}, {\"X\": 0.45680636167526245, \"Y\": 0.5484135746955872}, {\"X\": 0.23051927983760834, \"Y\": 0.5484135746955872}]}, \"Id\": \"11128d89-b6f5-4f5c-9a0d-494d3af0cd8b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4970c45b-53ee-484c-a91e-6ce25065e063\", \"1315cea7-f95f-46d4-b292-6c639443ecdd\", \"0de92abc-47ad-497f-abd3-bcbad198b4f2\", \"74cf6ff1-c10f-4961-bf0e-7cd098673bb3\", \"27d79cc9-4965-4e63-88c1-d513f635af43\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84085845947266, \"Text\": \"-65\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023249268531799316, \"Height\": 0.009860336780548096, \"Left\": 0.7540419697761536, \"Top\": 0.5359289050102234}, \"Polygon\": [{\"X\": 0.7540419697761536, \"Y\": 0.5359289050102234}, {\"X\": 0.7772912383079529, \"Y\": 0.5359289050102234}, {\"X\": 0.7772912383079529, \"Y\": 0.5457892417907715}, {\"X\": 0.7540419697761536, \"Y\": 0.5457892417907715}]}, \"Id\": \"2d74bd4e-5945-4c02-942b-2f658e237adb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aa3c56c1-743d-4bf7-9f29-dbc4965041dd\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62432861328125, \"Text\": \"5/31/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07719194889068604, \"Height\": 0.013067126274108887, \"Left\": 0.1359284520149231, \"Top\": 0.5544430017471313}, \"Polygon\": [{\"X\": 0.1359284520149231, \"Y\": 0.5544430017471313}, {\"X\": 0.21312040090560913, \"Y\": 0.5544430017471313}, {\"X\": 0.21312040090560913, \"Y\": 0.5675101280212402}, {\"X\": 0.1359284520149231, \"Y\": 0.5675101280212402}]}, \"Id\": \"674ab721-67a4-4ca4-b172-38eedf814dfd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"115b9cf5-16b6-4464-9f6b-42958dfca44e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.0973892211914, \"Text\": \"Online Retail - Amazon.com - 2257980180\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3078201413154602, \"Height\": 0.010941403917968273, \"Left\": 0.23116976022720337, \"Top\": 0.554952085018158}, \"Polygon\": [{\"X\": 0.23116976022720337, \"Y\": 0.554952085018158}, {\"X\": 0.5389899015426636, \"Y\": 0.554952085018158}, {\"X\": 0.5389899015426636, \"Y\": 0.5658935308456421}, {\"X\": 0.23116976022720337, \"Y\": 0.5658935308456421}]}, \"Id\": \"e3bc0fc5-dc5c-4960-8c5d-81f448b7df74\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0105691-02e6-4368-80d6-b90624ba1395\", \"f7e7c4ba-6921-4f5b-afe5-ebdeec5764dc\", \"8d4e46f8-364a-4912-a6fc-088123ebf220\", \"4bb4eecd-36e8-487f-8e83-590a0cc9dfe9\", \"66638eb8-37ff-4b08-beb8-48c5c7ab5dc8\", \"31f318df-3b0f-4745-9dab-4bd53ea0532e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.388916015625, \"Text\": \"-156\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03216522932052612, \"Height\": 0.009775221347808838, \"Left\": 0.7454619407653809, \"Top\": 0.5557795166969299}, \"Polygon\": [{\"X\": 0.7454619407653809, \"Y\": 0.5557795166969299}, {\"X\": 0.777627170085907, \"Y\": 0.5557795166969299}, {\"X\": 0.777627170085907, \"Y\": 0.5655547380447388}, {\"X\": 0.7454619407653809, \"Y\": 0.5655547380447388}]}, \"Id\": \"dbc7af6f-0650-4b2d-a048-3562e1a68ed0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f48fbd3-b0fe-45c9-8329-65bdcd0c526a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.80892181396484, \"Text\": \"Date\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03485088050365448, \"Height\": 0.009842276573181152, \"Left\": 0.15306507050991058, \"Top\": 0.7746101021766663}, \"Polygon\": [{\"X\": 0.15306507050991058, \"Y\": 0.7746101021766663}, {\"X\": 0.18791595101356506, \"Y\": 0.7746101021766663}, {\"X\": 0.18791595101356506, \"Y\": 0.7844523787498474}, {\"X\": 0.15306507050991058, \"Y\": 0.7844523787498474}]}, \"Id\": \"bee952e7-4c84-4494-bde0-076a92dd1bf3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c86498c-c59a-4655-9c33-7b6988a0a9b5\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64305877685547, \"Text\": \"Description Long 2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13771897554397583, \"Height\": 0.012878715991973877, \"Left\": 0.32998353242874146, \"Top\": 0.7741228938102722}, \"Polygon\": [{\"X\": 0.32998353242874146, \"Y\": 0.7741228938102722}, {\"X\": 0.4677025079727173, \"Y\": 0.7741228938102722}, {\"X\": 0.4677025079727173, \"Y\": 0.7870016098022461}, {\"X\": 0.32998353242874146, \"Y\": 0.7870016098022461}]}, \"Id\": \"49e16514-3377-4566-96e3-b856d74f675f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"239f5031-affe-4ca3-bc11-d253f933d628\", \"07710349-b702-4983-8cb3-3c750f527212\", \"d23aa584-011f-4058-8277-8c4acaf1b77f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 97.78609466552734, \"Text\": \"Withdrawals / Deposits\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17518369853496552, \"Height\": 0.013225019909441471, \"Left\": 0.5925729274749756, \"Top\": 0.7735081315040588}, \"Polygon\": [{\"X\": 0.5925729274749756, \"Y\": 0.7735081315040588}, {\"X\": 0.7677565813064575, \"Y\": 0.7735081315040588}, {\"X\": 0.7677565813064575, \"Y\": 0.7867331504821777}, {\"X\": 0.5925729274749756, \"Y\": 0.7867331504821777}]}, \"Id\": \"e2e5288e-a881-4531-85bd-fb971b2d6a89\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"edc0e838-68dd-422e-a869-77e7647b31da\", \"993b039f-0a16-475b-9f45-d083540e8425\", \"eec65c0f-f9e5-4354-9a18-3670ac71302d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.97296142578125, \"Text\": \"2/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06854449212551117, \"Height\": 0.013070285320281982, \"Left\": 0.14496268332004547, \"Top\": 0.7931639552116394}, \"Polygon\": [{\"X\": 0.14496268332004547, \"Y\": 0.7931639552116394}, {\"X\": 0.21350717544555664, \"Y\": 0.7931639552116394}, {\"X\": 0.21350717544555664, \"Y\": 0.8062342405319214}, {\"X\": 0.14496268332004547, \"Y\": 0.8062342405319214}]}, \"Id\": \"ad757bc1-7cef-4b24-ad22-6c784db1cb8f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a6e0ba9e-daad-4c91-8d47-e119b5818f71\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.65658569335938, \"Text\": \"Food Purchase - McDonalds - 1194089245\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3071761131286621, \"Height\": 0.01070877443999052, \"Left\": 0.231805682182312, \"Top\": 0.7935836315155029}, \"Polygon\": [{\"X\": 0.231805682182312, \"Y\": 0.7935836315155029}, {\"X\": 0.5389817953109741, \"Y\": 0.7935836315155029}, {\"X\": 0.5389817953109741, \"Y\": 0.8042923808097839}, {\"X\": 0.231805682182312, \"Y\": 0.8042923808097839}]}, \"Id\": \"643d211e-447c-4668-9f73-ab48eb7234ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a4ffb3a-c76c-4ef9-a164-2dc86ef890fd\", \"880dd167-5e3a-451e-9565-03ef279b914b\", \"98169651-6941-4496-96ab-ccd538226771\", \"8b2dc4e1-4129-4142-ae89-3fe3e8620fd1\", \"6ca57478-01c2-476a-a0e9-88520f672fb7\", \"f8db1dea-949f-4cf9-a74b-b3cdf6d87854\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70414733886719, \"Text\": \"-171\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03268277645111084, \"Height\": 0.010219991207122803, \"Left\": 0.7446819543838501, \"Top\": 0.7938873767852783}, \"Polygon\": [{\"X\": 0.7446819543838501, \"Y\": 0.7938873767852783}, {\"X\": 0.7773647308349609, \"Y\": 0.7938873767852783}, {\"X\": 0.7773647308349609, \"Y\": 0.8041073679924011}, {\"X\": 0.7446819543838501, \"Y\": 0.8041073679924011}]}, \"Id\": \"89b05676-4251-4a1f-b9a0-0cb01142dcea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b95a9677-b548-471d-bd0f-4e02b13622c0\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44542694091797, \"Text\": \"8/22/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0775541216135025, \"Height\": 0.013003349304199219, \"Left\": 0.13582497835159302, \"Top\": 0.81252521276474}, \"Polygon\": [{\"X\": 0.13582497835159302, \"Y\": 0.81252521276474}, {\"X\": 0.21337909996509552, \"Y\": 0.81252521276474}, {\"X\": 0.21337909996509552, \"Y\": 0.8255285620689392}, {\"X\": 0.13582497835159302, \"Y\": 0.8255285620689392}]}, \"Id\": \"7e0dfac7-6a01-46cd-9a85-f71e672e2f80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"89cc88f3-aac7-4b76-945a-8c419a854b97\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.52391815185547, \"Text\": \"Online Retail - Amazon.com - 1232495036\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30779367685317993, \"Height\": 0.010575175285339355, \"Left\": 0.2311602234840393, \"Top\": 0.813240647315979}, \"Polygon\": [{\"X\": 0.2311602234840393, \"Y\": 0.813240647315979}, {\"X\": 0.5389539003372192, \"Y\": 0.813240647315979}, {\"X\": 0.5389539003372192, \"Y\": 0.8238158226013184}, {\"X\": 0.2311602234840393, \"Y\": 0.8238158226013184}]}, \"Id\": \"10def39d-b6ed-4a9c-af67-f0de450bf581\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7daa34af-36c3-4d8e-8019-c81bb4d72d04\", \"b11ccde6-d8bc-4c09-b8ed-1fb7aa7dd8d6\", \"5cbcabc0-2508-49d1-8e4e-20ab55ecb542\", \"fc584374-e4b2-4fe2-a0ac-156e2e2d13fc\", \"9e6d4e83-ebc1-44bd-907c-a34cf7ebb59e\", \"2f28c6d1-cd49-4464-977f-b560c288086f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.890380859375, \"Text\": \"-44\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023820102214813232, \"Height\": 0.00996023416519165, \"Left\": 0.7538032531738281, \"Top\": 0.8136084079742432}, \"Polygon\": [{\"X\": 0.7538032531738281, \"Y\": 0.8136084079742432}, {\"X\": 0.7776233553886414, \"Y\": 0.8136084079742432}, {\"X\": 0.7776233553886414, \"Y\": 0.8235686421394348}, {\"X\": 0.7538032531738281, \"Y\": 0.8235686421394348}]}, \"Id\": \"298a370d-66d0-46d4-9e08-e885da9eea35\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aca627b7-e750-4566-95db-ae0dd621e22d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34636688232422, \"Text\": \"11/1/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07689547538757324, \"Height\": 0.012667059898376465, \"Left\": 0.13636918365955353, \"Top\": 0.8325199484825134}, \"Polygon\": [{\"X\": 0.13636918365955353, \"Y\": 0.8325199484825134}, {\"X\": 0.21326465904712677, \"Y\": 0.8325199484825134}, {\"X\": 0.21326465904712677, \"Y\": 0.8451870083808899}, {\"X\": 0.13636918365955353, \"Y\": 0.8451870083808899}]}, \"Id\": \"148c1022-aa1c-41c1-9936-a8167f13f841\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"801b096a-d396-4402-bb9f-52446729b09d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07949829101562, \"Text\": \"Food Purchase - Tim Hortons - 1509173654\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3150096535682678, \"Height\": 0.010753871873021126, \"Left\": 0.23183579742908478, \"Top\": 0.8329856991767883}, \"Polygon\": [{\"X\": 0.23183579742908478, \"Y\": 0.8329856991767883}, {\"X\": 0.5468454360961914, \"Y\": 0.8329856991767883}, {\"X\": 0.5468454360961914, \"Y\": 0.8437395691871643}, {\"X\": 0.23183579742908478, \"Y\": 0.8437395691871643}]}, \"Id\": \"3713fd18-ef15-43dd-ac4e-32c44ce3fa2d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2508570-4241-4519-9779-45655dcd7ac1\", \"5b667e08-52a0-4c63-b08a-fda61c3c2f39\", \"67452dba-4dda-4a33-bc7a-430e04f9eac4\", \"cb61a70b-7548-4d6f-9c70-0691e866af59\", \"fee9736b-f20c-4de6-b08b-5bc970dc08a5\", \"7c58c5ef-2e1f-4aa1-8dbe-ea21249e4d86\", \"9020693e-723c-47d5-9fbb-17a306d4560f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41638946533203, \"Text\": \"-224\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03262382745742798, \"Height\": 0.0099409818649292, \"Left\": 0.7449572682380676, \"Top\": 0.8332991600036621}, \"Polygon\": [{\"X\": 0.7449572682380676, \"Y\": 0.8332991600036621}, {\"X\": 0.7775810956954956, \"Y\": 0.8332991600036621}, {\"X\": 0.7775810956954956, \"Y\": 0.8432401418685913}, {\"X\": 0.7449572682380676, \"Y\": 0.8432401418685913}]}, \"Id\": \"93f5678f-aa52-4e50-ac1d-aac338c0dc08\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"29a468b6-fb33-4b3e-8b93-2a2f0caec87e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35672760009766, \"Text\": \"5/26/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07727186381816864, \"Height\": 0.01307821273803711, \"Left\": 0.13583147525787354, \"Top\": 0.8517815470695496}, \"Polygon\": [{\"X\": 0.13583147525787354, \"Y\": 0.8517815470695496}, {\"X\": 0.21310333907604218, \"Y\": 0.8517815470695496}, {\"X\": 0.21310333907604218, \"Y\": 0.8648597598075867}, {\"X\": 0.13583147525787354, \"Y\": 0.8648597598075867}]}, \"Id\": \"a2f9ccd9-524d-4d4d-a616-cebb842bf252\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8b4657a-f702-4b87-bab8-c4cb2a347a0c\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.70240783691406, \"Text\": \"Retail Purchase - Sobeys - 1896933493\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28503167629241943, \"Height\": 0.012465265579521656, \"Left\": 0.23187245428562164, \"Top\": 0.852516770362854}, \"Polygon\": [{\"X\": 0.23187245428562164, \"Y\": 0.852516770362854}, {\"X\": 0.5169041156768799, \"Y\": 0.852516770362854}, {\"X\": 0.5169041156768799, \"Y\": 0.8649820685386658}, {\"X\": 0.23187245428562164, \"Y\": 0.8649820685386658}]}, \"Id\": \"d3160a16-7a18-4f18-817a-0d135381f9dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e9ea83d-2349-45e5-8a0c-0e794a59372d\", \"340f03b7-eaf9-469e-b2c8-f48a221abbb5\", \"9ea88e2b-4922-4620-9777-9c7e9e539578\", \"86c8a9ce-9a5a-411c-94d6-6eaeb55d64a0\", \"46bf4934-4e61-459f-bdae-de863df728c9\", \"252dd2ae-d7e0-4399-9548-31ce6772b2ee\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43397521972656, \"Text\": \"-244\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032588064670562744, \"Height\": 0.009681165218353271, \"Left\": 0.7448799014091492, \"Top\": 0.8529972434043884}, \"Polygon\": [{\"X\": 0.7448799014091492, \"Y\": 0.8529972434043884}, {\"X\": 0.7774679660797119, \"Y\": 0.8529972434043884}, {\"X\": 0.7774679660797119, \"Y\": 0.8626784086227417}, {\"X\": 0.7448799014091492, \"Y\": 0.8626784086227417}]}, \"Id\": \"ba688267-0b54-47a3-9a2e-5dc8bdf5ac1d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"500043c3-2167-4670-8448-8ce71b07fd9a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.81343841552734, \"Text\": \"8/8/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06879836320877075, \"Height\": 0.01282411813735962, \"Left\": 0.14470261335372925, \"Top\": 0.8714891076087952}, \"Polygon\": [{\"X\": 0.14470261335372925, \"Y\": 0.8714891076087952}, {\"X\": 0.2135009765625, \"Y\": 0.8714891076087952}, {\"X\": 0.2135009765625, \"Y\": 0.8843132257461548}, {\"X\": 0.14470261335372925, \"Y\": 0.8843132257461548}]}, \"Id\": \"de6f7e13-764a-455b-9c32-92b3c00e3327\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"22c8fe58-b695-48dc-bf0c-2a7e8e3f23a6\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.6436996459961, \"Text\": \"Food Purchase - Tim Hortons - 1966610947\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.31481829285621643, \"Height\": 0.010464324615895748, \"Left\": 0.23195353150367737, \"Top\": 0.8720582127571106}, \"Polygon\": [{\"X\": 0.23195353150367737, \"Y\": 0.8720582127571106}, {\"X\": 0.5467718243598938, \"Y\": 0.8720582127571106}, {\"X\": 0.5467718243598938, \"Y\": 0.8825225234031677}, {\"X\": 0.23195353150367737, \"Y\": 0.8825225234031677}]}, \"Id\": \"0b045855-0c18-4c4f-9977-f1b1406198dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1b8fdcd-a2a8-4b08-a45c-9f4ba7a0e8a3\", \"3d9113f4-ba60-4e00-a1e7-faf3ebae1921\", \"6a0c8423-3981-4d38-906a-e1102dae4635\", \"7ec12707-f6da-48ee-b329-e5b76f2d2676\", \"71794c6b-f8a8-46e6-b23d-a2af2b314090\", \"2429cd46-cc73-4dba-bea2-79d06b17dd2f\", \"d35f802f-5640-4062-ba91-0dbd66756398\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70368957519531, \"Text\": \"-116\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03316605091094971, \"Height\": 0.009826838970184326, \"Left\": 0.7446339726448059, \"Top\": 0.8723928928375244}, \"Polygon\": [{\"X\": 0.7446339726448059, \"Y\": 0.8723928928375244}, {\"X\": 0.7778000235557556, \"Y\": 0.8723928928375244}, {\"X\": 0.7778000235557556, \"Y\": 0.8822197318077087}, {\"X\": 0.7446339726448059, \"Y\": 0.8822197318077087}]}, \"Id\": \"a001c0dc-c930-4f22-8c37-69c5021f54c2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da92583b-7636-4864-a8de-0064c9a71cad\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32549285888672, \"Text\": \"7/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06832803785800934, \"Height\": 0.012773215770721436, \"Left\": 0.14512063562870026, \"Top\": 0.8910952806472778}, \"Polygon\": [{\"X\": 0.14512063562870026, \"Y\": 0.8910952806472778}, {\"X\": 0.2134486734867096, \"Y\": 0.8910952806472778}, {\"X\": 0.2134486734867096, \"Y\": 0.9038684964179993}, {\"X\": 0.14512063562870026, \"Y\": 0.9038684964179993}]}, \"Id\": \"f18155a2-befe-4286-9131-2ec93d1fe090\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3355e268-bf84-4141-a12b-a4deba2be487\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.105712890625, \"Text\": \"Transport - Lyft - 2039726014\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.217443585395813, \"Height\": 0.013001322746276855, \"Left\": 0.2302747219800949, \"Top\": 0.8912904262542725}, \"Polygon\": [{\"X\": 0.2302747219800949, \"Y\": 0.8912904262542725}, {\"X\": 0.4477183222770691, \"Y\": 0.8912904262542725}, {\"X\": 0.4477183222770691, \"Y\": 0.9042917490005493}, {\"X\": 0.2302747219800949, \"Y\": 0.9042917490005493}]}, \"Id\": \"17d259e6-56c6-49ad-9699-92fd3507e933\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"31abcbcf-519a-4be8-9a94-42b3ef195c0f\", \"82e129c8-2759-43ff-9de9-b2c9bb77077d\", \"b84ea3d7-f8a0-425c-b190-13eaa312cd8a\", \"0ec40808-9222-45cf-88c2-2012f7bc271d\", \"24d771ee-8096-46c9-8cb2-e584653bf216\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32718658447266, \"Text\": \"-249\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03260481357574463, \"Height\": 0.009966850280761719, \"Left\": 0.7451424598693848, \"Top\": 0.8918997645378113}, \"Polygon\": [{\"X\": 0.7451424598693848, \"Y\": 0.8918997645378113}, {\"X\": 0.7777472734451294, \"Y\": 0.8918997645378113}, {\"X\": 0.7777472734451294, \"Y\": 0.901866614818573}, {\"X\": 0.7451424598693848, \"Y\": 0.901866614818573}]}, \"Id\": \"a7208df7-10ff-4657-b40f-91b8b0c538cc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"24b331d6-7ec9-4dc0-8eec-46bdbacefb6e\"]}], \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92363739013672, \"Text\": \"Full\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025468219071626663, \"Height\": 0.010752360336482525, \"Left\": 0.11788485199213028, \"Top\": 0.09406500309705734}, \"Polygon\": [{\"X\": 0.11788485199213028, \"Y\": 0.09406500309705734}, {\"X\": 0.14335307478904724, \"Y\": 0.09406500309705734}, {\"X\": 0.14335307478904724, \"Y\": 0.10481736063957214}, {\"X\": 0.11788485199213028, \"Y\": 0.10481736063957214}]}, \"Id\": \"0b04e8df-87a8-4d5a-9fbb-a20993a1d08d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60814666748047, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04720604047179222, \"Height\": 0.010229724459350109, \"Left\": 0.1478724181652069, \"Top\": 0.09464384615421295}, \"Polygon\": [{\"X\": 0.1478724181652069, \"Y\": 0.09464384615421295}, {\"X\": 0.19507846236228943, \"Y\": 0.09464384615421295}, {\"X\": 0.19507846236228943, \"Y\": 0.10487356781959534}, {\"X\": 0.1478724181652069, \"Y\": 0.10487356781959534}]}, \"Id\": \"07a0d3e0-c814-47c5-b8d6-4d0a3f4628d4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82054138183594, \"Text\": \"John\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03435593843460083, \"Height\": 0.010646170005202293, \"Left\": 0.19951842725276947, \"Top\": 0.0941745787858963}, \"Polygon\": [{\"X\": 0.19951842725276947, \"Y\": 0.0941745787858963}, {\"X\": 0.2338743656873703, \"Y\": 0.0941745787858963}, {\"X\": 0.2338743656873703, \"Y\": 0.10482075065374374}, {\"X\": 0.19951842725276947, \"Y\": 0.10482075065374374}]}, \"Id\": \"f83e28bf-371c-455d-bdf0-8dff127ea72a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9073715209961, \"Text\": \"Doe\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02906849980354309, \"Height\": 0.010525509715080261, \"Left\": 0.23841780424118042, \"Top\": 0.09449257701635361}, \"Polygon\": [{\"X\": 0.23841780424118042, \"Y\": 0.09449257701635361}, {\"X\": 0.2674863040447235, \"Y\": 0.09449257701635361}, {\"X\": 0.2674863040447235, \"Y\": 0.10501808673143387}, {\"X\": 0.23841780424118042, \"Y\": 0.10501808673143387}]}, \"Id\": \"1e613112-7345-4d27-bbcd-af1847a29a74\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58721160888672, \"Text\": \"Phone\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04628879576921463, \"Height\": 0.010828370228409767, \"Left\": 0.11800665408372879, \"Top\": 0.1510070562362671}, \"Polygon\": [{\"X\": 0.11800665408372879, \"Y\": 0.1510070562362671}, {\"X\": 0.16429544985294342, \"Y\": 0.1510070562362671}, {\"X\": 0.16429544985294342, \"Y\": 0.1618354320526123}, {\"X\": 0.11800665408372879, \"Y\": 0.1618354320526123}]}, \"Id\": \"2f0b18ea-7a55-441c-915e-38bef6f964a7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83736419677734, \"Text\": \"Number:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0644545927643776, \"Height\": 0.01056521013379097, \"Left\": 0.16858211159706116, \"Top\": 0.1510642021894455}, \"Polygon\": [{\"X\": 0.16858211159706116, \"Y\": 0.1510642021894455}, {\"X\": 0.23303669691085815, \"Y\": 0.1510642021894455}, {\"X\": 0.23303669691085815, \"Y\": 0.16162940859794617}, {\"X\": 0.16858211159706116, \"Y\": 0.16162940859794617}]}, \"Id\": \"dcd4384b-d9c2-4d9f-8b82-f10a94c410fb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44664001464844, \"Text\": \"9345-4298-33454\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13107149302959442, \"Height\": 0.010783770121634007, \"Left\": 0.23590530455112457, \"Top\": 0.15102839469909668}, \"Polygon\": [{\"X\": 0.23590530455112457, \"Y\": 0.15102839469909668}, {\"X\": 0.366976797580719, \"Y\": 0.15102839469909668}, {\"X\": 0.366976797580719, \"Y\": 0.1618121713399887}, {\"X\": 0.23590530455112457, \"Y\": 0.1618121713399887}]}, \"Id\": \"af3a2e55-af22-4b70-9067-49b4820750d0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71851348876953, \"Text\": \"Home\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043458130210638046, \"Height\": 0.010337529703974724, \"Left\": 0.11818882822990417, \"Top\": 0.20824077725410461}, \"Polygon\": [{\"X\": 0.11818882822990417, \"Y\": 0.20824077725410461}, {\"X\": 0.16164696216583252, \"Y\": 0.20824077725410461}, {\"X\": 0.16164696216583252, \"Y\": 0.2185783088207245}, {\"X\": 0.11818882822990417, \"Y\": 0.2185783088207245}]}, \"Id\": \"6e3e18a6-75a5-4793-ae14-c87add1018c4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82784271240234, \"Text\": \"Address:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06281069666147232, \"Height\": 0.010648880153894424, \"Left\": 0.16556702554225922, \"Top\": 0.20785459876060486}, \"Polygon\": [{\"X\": 0.16556702554225922, \"Y\": 0.20785459876060486}, {\"X\": 0.22837772965431213, \"Y\": 0.20785459876060486}, {\"X\": 0.22837772965431213, \"Y\": 0.21850347518920898}, {\"X\": 0.16556702554225922, \"Y\": 0.21850347518920898}]}, \"Id\": \"4a1f6bb2-be2e-49b9-9482-659ab91dd7d0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71796417236328, \"Text\": \"134234\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05379854142665863, \"Height\": 0.010472970083355904, \"Left\": 0.23385095596313477, \"Top\": 0.2080463320016861}, \"Polygon\": [{\"X\": 0.23385095596313477, \"Y\": 0.2080463320016861}, {\"X\": 0.2876495122909546, \"Y\": 0.2080463320016861}, {\"X\": 0.2876495122909546, \"Y\": 0.21851930022239685}, {\"X\": 0.23385095596313477, \"Y\": 0.21851930022239685}]}, \"Id\": \"ccbcb8c5-8fd6-4277-98ee-44968ed77d66\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43367004394531, \"Text\": \"Street,\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04799297824501991, \"Height\": 0.012015409767627716, \"Left\": 0.2918253242969513, \"Top\": 0.20816831290721893}, \"Polygon\": [{\"X\": 0.2918253242969513, \"Y\": 0.20816831290721893}, {\"X\": 0.3398182988166809, \"Y\": 0.20816831290721893}, {\"X\": 0.3398182988166809, \"Y\": 0.22018371522426605}, {\"X\": 0.2918253242969513, \"Y\": 0.22018371522426605}]}, \"Id\": \"fb8b7c4d-bdf2-43f6-8df2-a8793e83ea83\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93212890625, \"Text\": \"Town,\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044829100370407104, \"Height\": 0.012122689746320248, \"Left\": 0.344127357006073, \"Top\": 0.2081863433122635}, \"Polygon\": [{\"X\": 0.344127357006073, \"Y\": 0.2081863433122635}, {\"X\": 0.3889564573764801, \"Y\": 0.2081863433122635}, {\"X\": 0.3889564573764801, \"Y\": 0.2203090339899063}, {\"X\": 0.344127357006073, \"Y\": 0.2203090339899063}]}, \"Id\": \"75883d00-6593-4f86-ab80-d3ca84fb89a4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5486831665039, \"Text\": \"Canada\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053760871291160583, \"Height\": 0.01041616965085268, \"Left\": 0.3939867317676544, \"Top\": 0.2080507129430771}, \"Polygon\": [{\"X\": 0.3939867317676544, \"Y\": 0.2080507129430771}, {\"X\": 0.4477475881576538, \"Y\": 0.2080507129430771}, {\"X\": 0.4477475881576538, \"Y\": 0.2184668779373169}, {\"X\": 0.3939867317676544, \"Y\": 0.2184668779373169}]}, \"Id\": \"c0aa1349-aa91-4b3f-b7c5-701fe5924b8b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.955322265625, \"Text\": \"Mailing\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053999241441488266, \"Height\": 0.012670299969613552, \"Left\": 0.11817339807748795, \"Top\": 0.2648327350616455}, \"Polygon\": [{\"X\": 0.11817339807748795, \"Y\": 0.2648327350616455}, {\"X\": 0.1721726357936859, \"Y\": 0.2648327350616455}, {\"X\": 0.1721726357936859, \"Y\": 0.27750304341316223}, {\"X\": 0.11817339807748795, \"Y\": 0.27750304341316223}]}, \"Id\": \"c39a97af-6571-4107-ae54-f49fd2b563b3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82453918457031, \"Text\": \"Address:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06300585716962814, \"Height\": 0.01021645963191986, \"Left\": 0.17545028030872345, \"Top\": 0.2649647891521454}, \"Polygon\": [{\"X\": 0.17545028030872345, \"Y\": 0.2649647891521454}, {\"X\": 0.2384561449289322, \"Y\": 0.2649647891521454}, {\"X\": 0.2384561449289322, \"Y\": 0.27518126368522644}, {\"X\": 0.17545028030872345, \"Y\": 0.27518126368522644}]}, \"Id\": \"68231f12-20aa-4cf5-8862-c1285f2985b4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94596099853516, \"Text\": \"same\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038752779364585876, \"Height\": 0.007920079864561558, \"Left\": 0.24330927431583405, \"Top\": 0.2672988772392273}, \"Polygon\": [{\"X\": 0.24330927431583405, \"Y\": 0.2672988772392273}, {\"X\": 0.2820620536804199, \"Y\": 0.2672988772392273}, {\"X\": 0.2820620536804199, \"Y\": 0.2752189636230469}, {\"X\": 0.24330927431583405, \"Y\": 0.2752189636230469}]}, \"Id\": \"b1051441-e477-4300-9c58-8d976143393a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79793548583984, \"Text\": \"as\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015602589584887028, \"Height\": 0.007861780002713203, \"Left\": 0.2863587439060211, \"Top\": 0.2673617899417877}, \"Polygon\": [{\"X\": 0.2863587439060211, \"Y\": 0.2673617899417877}, {\"X\": 0.30196133255958557, \"Y\": 0.2673617899417877}, {\"X\": 0.30196133255958557, \"Y\": 0.27522358298301697}, {\"X\": 0.2863587439060211, \"Y\": 0.27522358298301697}]}, \"Id\": \"4f2651f2-6d33-4c37-970b-bc3518ee97d9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94380950927734, \"Text\": \"above\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04408147931098938, \"Height\": 0.010260519571602345, \"Left\": 0.3063642382621765, \"Top\": 0.26491010189056396}, \"Polygon\": [{\"X\": 0.3063642382621765, \"Y\": 0.26491010189056396}, {\"X\": 0.3504457175731659, \"Y\": 0.26491010189056396}, {\"X\": 0.3504457175731659, \"Y\": 0.27517062425613403}, {\"X\": 0.3063642382621765, \"Y\": 0.27517062425613403}]}, \"Id\": \"5455abab-fa6c-468d-9549-0798fabb9502\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81748962402344, \"Text\": \"Date\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035041481256484985, \"Height\": 0.010056589730083942, \"Left\": 0.15295645594596863, \"Top\": 0.37929338216781616}, \"Polygon\": [{\"X\": 0.15295645594596863, \"Y\": 0.37929338216781616}, {\"X\": 0.1879979372024536, \"Y\": 0.37929338216781616}, {\"X\": 0.1879979372024536, \"Y\": 0.38934996724128723}, {\"X\": 0.15295645594596863, \"Y\": 0.38934996724128723}]}, \"Id\": \"a2e51a25-a597-4484-95a6-8f3be25e6626\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26947021484375, \"Text\": \"Description\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08530210703611374, \"Height\": 0.01276382990181446, \"Left\": 0.33167165517807007, \"Top\": 0.37879830598831177}, \"Polygon\": [{\"X\": 0.33167165517807007, \"Y\": 0.37879830598831177}, {\"X\": 0.4169737696647644, \"Y\": 0.37879830598831177}, {\"X\": 0.4169737696647644, \"Y\": 0.3915621340274811}, {\"X\": 0.33167165517807007, \"Y\": 0.3915621340274811}]}, \"Id\": \"6ffcdf83-f2da-4414-9231-bfc7fe6daee2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55278778076172, \"Text\": \"Solo\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03293469920754433, \"Height\": 0.01066271960735321, \"Left\": 0.4203896224498749, \"Top\": 0.3788158893585205}, \"Polygon\": [{\"X\": 0.4203896224498749, \"Y\": 0.3788158893585205}, {\"X\": 0.4533243179321289, \"Y\": 0.3788158893585205}, {\"X\": 0.4533243179321289, \"Y\": 0.3894786238670349}, {\"X\": 0.4203896224498749, \"Y\": 0.3894786238670349}]}, \"Id\": \"1eda99e6-f9ec-4911-ae08-905ff0f41c82\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5997314453125, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009136050008237362, \"Height\": 0.010214479640126228, \"Left\": 0.45733216404914856, \"Top\": 0.37918099761009216}, \"Polygon\": [{\"X\": 0.45733216404914856, \"Y\": 0.37918099761009216}, {\"X\": 0.4664682149887085, \"Y\": 0.37918099761009216}, {\"X\": 0.4664682149887085, \"Y\": 0.38939547538757324}, {\"X\": 0.45733216404914856, \"Y\": 0.38939547538757324}]}, \"Id\": \"92403db6-c816-4a0a-a5e6-1c2df4a055fd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 93.61992645263672, \"Text\": \"Withdrawals/Deposits\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17651060223579407, \"Height\": 0.013099449686706066, \"Left\": 0.5918797850608826, \"Top\": 0.3784915506839752}, \"Polygon\": [{\"X\": 0.5918797850608826, \"Y\": 0.3784915506839752}, {\"X\": 0.768390417098999, \"Y\": 0.3784915506839752}, {\"X\": 0.768390417098999, \"Y\": 0.39159101247787476}, {\"X\": 0.5918797850608826, \"Y\": 0.39159101247787476}]}, \"Id\": \"9b499b63-324d-4d88-82b4-10f51f2e6f8b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11254119873047, \"Text\": \"2/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06831616908311844, \"Height\": 0.0123023996129632, \"Left\": 0.14533677697181702, \"Top\": 0.39812275767326355}, \"Polygon\": [{\"X\": 0.14533677697181702, \"Y\": 0.39812275767326355}, {\"X\": 0.21365295350551605, \"Y\": 0.39812275767326355}, {\"X\": 0.21365295350551605, \"Y\": 0.4104251563549042}, {\"X\": 0.14533677697181702, \"Y\": 0.4104251563549042}]}, \"Id\": \"e07ffc9e-34d2-403e-9f33-8d39bbc9fe9a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92481231689453, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035665031522512436, \"Height\": 0.010363220237195492, \"Left\": 0.23192676901817322, \"Top\": 0.3984781801700592}, \"Polygon\": [{\"X\": 0.23192676901817322, \"Y\": 0.3984781801700592}, {\"X\": 0.26759180426597595, \"Y\": 0.3984781801700592}, {\"X\": 0.26759180426597595, \"Y\": 0.40884140133857727}, {\"X\": 0.23192676901817322, \"Y\": 0.40884140133857727}]}, \"Id\": \"654beef5-4ce4-47ce-9c02-955da4e3d970\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59785461425781, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06533821672201157, \"Height\": 0.010472740046679974, \"Left\": 0.27274078130722046, \"Top\": 0.39863863587379456}, \"Polygon\": [{\"X\": 0.27274078130722046, \"Y\": 0.39863863587379456}, {\"X\": 0.3380790054798126, \"Y\": 0.39863863587379456}, {\"X\": 0.3380790054798126, \"Y\": 0.4091113805770874}, {\"X\": 0.27274078130722046, \"Y\": 0.4091113805770874}]}, \"Id\": \"275ceac5-d9e1-4c52-9b2a-79a23e782468\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.86380767822266, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005856810137629509, \"Height\": 0.0023897900246083736, \"Left\": 0.3426748216152191, \"Top\": 0.4036053419113159}, \"Polygon\": [{\"X\": 0.3426748216152191, \"Y\": 0.4036053419113159}, {\"X\": 0.3485316336154938, \"Y\": 0.4036053419113159}, {\"X\": 0.3485316336154938, \"Y\": 0.40599513053894043}, {\"X\": 0.3426748216152191, \"Y\": 0.40599513053894043}]}, \"Id\": \"4b4e7ba7-c579-4bbf-82fc-5b630d7a04bf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7684326171875, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08300712704658508, \"Height\": 0.010677429847419262, \"Left\": 0.3523978292942047, \"Top\": 0.39839375019073486}, \"Polygon\": [{\"X\": 0.3523978292942047, \"Y\": 0.39839375019073486}, {\"X\": 0.4354049563407898, \"Y\": 0.39839375019073486}, {\"X\": 0.4354049563407898, \"Y\": 0.4090711772441864}, {\"X\": 0.3523978292942047, \"Y\": 0.4090711772441864}]}, \"Id\": \"9a7a4bf5-430d-402d-8d46-d0299e529e29\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.69908905029297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005628949962556362, \"Height\": 0.0030308400746434927, \"Left\": 0.43827465176582336, \"Top\": 0.40336015820503235}, \"Polygon\": [{\"X\": 0.43827465176582336, \"Y\": 0.40336015820503235}, {\"X\": 0.4439035952091217, \"Y\": 0.40336015820503235}, {\"X\": 0.4439035952091217, \"Y\": 0.4063909947872162}, {\"X\": 0.43827465176582336, \"Y\": 0.4063909947872162}]}, \"Id\": \"1898310c-5c79-4f28-a2ec-3a079f8a1654\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61367797851562, \"Text\": \"1194089245\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08994746208190918, \"Height\": 0.010576670058071613, \"Left\": 0.44871658086776733, \"Top\": 0.3985369801521301}, \"Polygon\": [{\"X\": 0.44871658086776733, \"Y\": 0.3985369801521301}, {\"X\": 0.5386640429496765, \"Y\": 0.3985369801521301}, {\"X\": 0.5386640429496765, \"Y\": 0.40911364555358887}, {\"X\": 0.44871658086776733, \"Y\": 0.40911364555358887}]}, \"Id\": \"2c1e5528-7e3e-4660-bd77-862277e15ddc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72128295898438, \"Text\": \"-171\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032423339784145355, \"Height\": 0.010117639787495136, \"Left\": 0.7446965575218201, \"Top\": 0.39872875809669495}, \"Polygon\": [{\"X\": 0.7446965575218201, \"Y\": 0.39872875809669495}, {\"X\": 0.7771198749542236, \"Y\": 0.39872875809669495}, {\"X\": 0.7771198749542236, \"Y\": 0.4088464081287384}, {\"X\": 0.7446965575218201, \"Y\": 0.4088464081287384}]}, \"Id\": \"52ba5776-886e-4c35-8548-8c5eda30b7ec\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48328399658203, \"Text\": \"8/22/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0776294693350792, \"Height\": 0.012820250354707241, \"Left\": 0.13601036369800568, \"Top\": 0.41756412386894226}, \"Polygon\": [{\"X\": 0.13601036369800568, \"Y\": 0.41756412386894226}, {\"X\": 0.21363982558250427, \"Y\": 0.41756412386894226}, {\"X\": 0.21363982558250427, \"Y\": 0.4303843677043915}, {\"X\": 0.13601036369800568, \"Y\": 0.4303843677043915}]}, \"Id\": \"6b2e411b-73d9-4b62-bc98-233e426113bd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88077545166016, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04767997935414314, \"Height\": 0.010257819667458534, \"Left\": 0.23128359019756317, \"Top\": 0.41837838292121887}, \"Polygon\": [{\"X\": 0.23128359019756317, \"Y\": 0.41837838292121887}, {\"X\": 0.278963565826416, \"Y\": 0.41837838292121887}, {\"X\": 0.278963565826416, \"Y\": 0.42863619327545166}, {\"X\": 0.23128359019756317, \"Y\": 0.42863619327545166}]}, \"Id\": \"d9b2492b-6af0-49c1-be62-959096240f64\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7805404663086, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04061596095561981, \"Height\": 0.010235849767923355, \"Left\": 0.28372544050216675, \"Top\": 0.41836580634117126}, \"Polygon\": [{\"X\": 0.28372544050216675, \"Y\": 0.41836580634117126}, {\"X\": 0.32434138655662537, \"Y\": 0.41836580634117126}, {\"X\": 0.32434138655662537, \"Y\": 0.4286016523838043}, {\"X\": 0.28372544050216675, \"Y\": 0.4286016523838043}]}, \"Id\": \"42c8d325-3813-4fc2-a581-c93dfaeb8ffc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.87177276611328, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005740730091929436, \"Height\": 0.0023422299418598413, \"Left\": 0.3287343978881836, \"Top\": 0.4233584702014923}, \"Polygon\": [{\"X\": 0.3287343978881836, \"Y\": 0.4233584702014923}, {\"X\": 0.3344751298427582, \"Y\": 0.4233584702014923}, {\"X\": 0.3344751298427582, \"Y\": 0.42570069432258606}, {\"X\": 0.3287343978881836, \"Y\": 0.42570069432258606}]}, \"Id\": \"0c9adee5-025c-47ed-8941-4d3971f49ffb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60581970214844, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09430990368127823, \"Height\": 0.010216579772531986, \"Left\": 0.33946943283081055, \"Top\": 0.41854971647262573}, \"Polygon\": [{\"X\": 0.33946943283081055, \"Y\": 0.41854971647262573}, {\"X\": 0.4337793290615082, \"Y\": 0.41854971647262573}, {\"X\": 0.4337793290615082, \"Y\": 0.42876631021499634}, {\"X\": 0.33946943283081055, \"Y\": 0.42876631021499634}]}, \"Id\": \"09632fbd-4e41-4250-86c9-adb4a5695345\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.60103607177734, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005768179893493652, \"Height\": 0.0030444299336522818, \"Left\": 0.4377049505710602, \"Top\": 0.42304325103759766}, \"Polygon\": [{\"X\": 0.4377049505710602, \"Y\": 0.42304325103759766}, {\"X\": 0.44347313046455383, \"Y\": 0.42304325103759766}, {\"X\": 0.44347313046455383, \"Y\": 0.4260876774787903}, {\"X\": 0.4377049505710602, \"Y\": 0.4260876774787903}]}, \"Id\": \"3fb51a7f-b23d-480b-96a8-e238e2d2e168\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3155288696289, \"Text\": \"1232495036\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08919262886047363, \"Height\": 0.01053014025092125, \"Left\": 0.4492413401603699, \"Top\": 0.4181697964668274}, \"Polygon\": [{\"X\": 0.4492413401603699, \"Y\": 0.4181697964668274}, {\"X\": 0.5384339690208435, \"Y\": 0.4181697964668274}, {\"X\": 0.5384339690208435, \"Y\": 0.42869994044303894}, {\"X\": 0.4492413401603699, \"Y\": 0.42869994044303894}]}, \"Id\": \"eba5a9f0-53eb-4a17-9b39-c7abf28621c1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93270111083984, \"Text\": \"-44\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023102350533008575, \"Height\": 0.009992600418627262, \"Left\": 0.7544092535972595, \"Top\": 0.4186657667160034}, \"Polygon\": [{\"X\": 0.7544092535972595, \"Y\": 0.4186657667160034}, {\"X\": 0.7775115966796875, \"Y\": 0.4186657667160034}, {\"X\": 0.7775115966796875, \"Y\": 0.4286583662033081}, {\"X\": 0.7544092535972595, \"Y\": 0.4286583662033081}]}, \"Id\": \"6d81df8c-8e69-4ecb-a64c-61b44b1cefa7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32211303710938, \"Text\": \"11/1/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07690373063087463, \"Height\": 0.012699900195002556, \"Left\": 0.13632038235664368, \"Top\": 0.4371742308139801}, \"Polygon\": [{\"X\": 0.13632038235664368, \"Y\": 0.4371742308139801}, {\"X\": 0.2132241129875183, \"Y\": 0.4371742308139801}, {\"X\": 0.2132241129875183, \"Y\": 0.4498741328716278}, {\"X\": 0.13632038235664368, \"Y\": 0.4498741328716278}]}, \"Id\": \"bd71e87b-401a-4363-8d6a-5240b05c6312\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94213104248047, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03551473841071129, \"Height\": 0.0101398304104805, \"Left\": 0.23185408115386963, \"Top\": 0.43791112303733826}, \"Polygon\": [{\"X\": 0.23185408115386963, \"Y\": 0.43791112303733826}, {\"X\": 0.2673688232898712, \"Y\": 0.43791112303733826}, {\"X\": 0.2673688232898712, \"Y\": 0.44805094599723816}, {\"X\": 0.23185408115386963, \"Y\": 0.44805094599723816}]}, \"Id\": \"361934af-30c8-4063-b64b-a0d0ec0f71c8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66374969482422, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06656962633132935, \"Height\": 0.010286330245435238, \"Left\": 0.27229976654052734, \"Top\": 0.4377833306789398}, \"Polygon\": [{\"X\": 0.27229976654052734, \"Y\": 0.4377833306789398}, {\"X\": 0.3388693928718567, \"Y\": 0.4377833306789398}, {\"X\": 0.3388693928718567, \"Y\": 0.44806966185569763}, {\"X\": 0.27229976654052734, \"Y\": 0.44806966185569763}]}, \"Id\": \"f6063693-08b3-465c-9ab0-5652a2912e85\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.5194091796875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005558350123465061, \"Height\": 0.002070629969239235, \"Left\": 0.3425840735435486, \"Top\": 0.4429706931114197}, \"Polygon\": [{\"X\": 0.3425840735435486, \"Y\": 0.4429706931114197}, {\"X\": 0.3481424152851105, \"Y\": 0.4429706931114197}, {\"X\": 0.3481424152851105, \"Y\": 0.44504132866859436}, {\"X\": 0.3425840735435486, \"Y\": 0.44504132866859436}]}, \"Id\": \"87f909ab-8bb7-45c8-a136-485cc952e178\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8460464477539, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027221180498600006, \"Height\": 0.009975760243833065, \"Left\": 0.3517278730869293, \"Top\": 0.4379969835281372}, \"Polygon\": [{\"X\": 0.3517278730869293, \"Y\": 0.4379969835281372}, {\"X\": 0.37894904613494873, \"Y\": 0.4379969835281372}, {\"X\": 0.37894904613494873, \"Y\": 0.44797274470329285}, {\"X\": 0.3517278730869293, \"Y\": 0.44797274470329285}]}, \"Id\": \"b28f2c4f-5ca6-471d-a41b-550df24ab69d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58419799804688, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05992022156715393, \"Height\": 0.010428870096802711, \"Left\": 0.3836628198623657, \"Top\": 0.4381119906902313}, \"Polygon\": [{\"X\": 0.3836628198623657, \"Y\": 0.4381119906902313}, {\"X\": 0.44358304142951965, \"Y\": 0.4381119906902313}, {\"X\": 0.44358304142951965, \"Y\": 0.4485408663749695}, {\"X\": 0.3836628198623657, \"Y\": 0.4485408663749695}]}, \"Id\": \"734e5576-674c-4573-a8db-c8542252c7a7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.33642578125, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006141100078821182, \"Height\": 0.003223869949579239, \"Left\": 0.4461718499660492, \"Top\": 0.44249776005744934}, \"Polygon\": [{\"X\": 0.4461718499660492, \"Y\": 0.44249776005744934}, {\"X\": 0.4523129463195801, \"Y\": 0.44249776005744934}, {\"X\": 0.4523129463195801, \"Y\": 0.4457216262817383}, {\"X\": 0.4461718499660492, \"Y\": 0.4457216262817383}]}, \"Id\": \"c7f56113-ef6b-48e3-81b5-c078cdd5aec2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43197631835938, \"Text\": \"1509173654\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09032153338193893, \"Height\": 0.010692750103771687, \"Left\": 0.45665687322616577, \"Top\": 0.43775758147239685}, \"Polygon\": [{\"X\": 0.45665687322616577, \"Y\": 0.43775758147239685}, {\"X\": 0.5469784140586853, \"Y\": 0.43775758147239685}, {\"X\": 0.5469784140586853, \"Y\": 0.44845032691955566}, {\"X\": 0.45665687322616577, \"Y\": 0.44845032691955566}]}, \"Id\": \"6d73e824-0d94-41a7-88f2-efb9a038d4d7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40252685546875, \"Text\": \"-224\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032679539173841476, \"Height\": 0.009864729829132557, \"Left\": 0.7448712587356567, \"Top\": 0.4381592869758606}, \"Polygon\": [{\"X\": 0.7448712587356567, \"Y\": 0.4381592869758606}, {\"X\": 0.7775508165359497, \"Y\": 0.4381592869758606}, {\"X\": 0.7775508165359497, \"Y\": 0.44802403450012207}, {\"X\": 0.7448712587356567, \"Y\": 0.44802403450012207}]}, \"Id\": \"40ea8ae4-ec72-4f23-b85f-c4c2593d1efb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35201263427734, \"Text\": \"5/26/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07775992900133133, \"Height\": 0.0127006396651268, \"Left\": 0.13525071740150452, \"Top\": 0.45669278502464294}, \"Polygon\": [{\"X\": 0.13525071740150452, \"Y\": 0.45669278502464294}, {\"X\": 0.21301065385341644, \"Y\": 0.45669278502464294}, {\"X\": 0.21301065385341644, \"Y\": 0.46939343214035034}, {\"X\": 0.13525071740150452, \"Y\": 0.46939343214035034}]}, \"Id\": \"15cb9988-f50e-43d1-a5bf-ee75d0e279bd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84859466552734, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04056933894753456, \"Height\": 0.010008100420236588, \"Left\": 0.23178032040596008, \"Top\": 0.4573479890823364}, \"Polygon\": [{\"X\": 0.23178032040596008, \"Y\": 0.4573479890823364}, {\"X\": 0.27234965562820435, \"Y\": 0.4573479890823364}, {\"X\": 0.27234965562820435, \"Y\": 0.4673560857772827}, {\"X\": 0.23178032040596008, \"Y\": 0.4673560857772827}]}, \"Id\": \"5cc38bd3-7068-4650-9a7b-64733bdec46b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6282730102539, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06623995304107666, \"Height\": 0.010416749864816666, \"Left\": 0.27725109457969666, \"Top\": 0.4571819305419922}, \"Polygon\": [{\"X\": 0.27725109457969666, \"Y\": 0.4571819305419922}, {\"X\": 0.3434910476207733, \"Y\": 0.4571819305419922}, {\"X\": 0.3434910476207733, \"Y\": 0.46759867668151855}, {\"X\": 0.27725109457969666, \"Y\": 0.46759867668151855}]}, \"Id\": \"4f422c52-a560-4373-b707-e02f8d0a902b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.67338562011719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005576670169830322, \"Height\": 0.0020977898966521025, \"Left\": 0.3516777455806732, \"Top\": 0.462603360414505}, \"Polygon\": [{\"X\": 0.3516777455806732, \"Y\": 0.462603360414505}, {\"X\": 0.35725441575050354, \"Y\": 0.462603360414505}, {\"X\": 0.35725441575050354, \"Y\": 0.4647011458873749}, {\"X\": 0.3516777455806732, \"Y\": 0.4647011458873749}]}, \"Id\": \"c97efa50-3b0c-4412-bfe7-dd69810b6624\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64994049072266, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05138535052537918, \"Height\": 0.012483179569244385, \"Left\": 0.3611038327217102, \"Top\": 0.45733240246772766}, \"Polygon\": [{\"X\": 0.3611038327217102, \"Y\": 0.45733240246772766}, {\"X\": 0.4124891757965088, \"Y\": 0.45733240246772766}, {\"X\": 0.4124891757965088, \"Y\": 0.46981558203697205}, {\"X\": 0.3611038327217102, \"Y\": 0.46981558203697205}]}, \"Id\": \"a82837d9-1250-4f57-9099-be8b4604c550\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.22723388671875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005872160196304321, \"Height\": 0.0026700799353420734, \"Left\": 0.4162709712982178, \"Top\": 0.4622782766819}, \"Polygon\": [{\"X\": 0.4162709712982178, \"Y\": 0.4622782766819}, {\"X\": 0.4221431314945221, \"Y\": 0.4622782766819}, {\"X\": 0.4221431314945221, \"Y\": 0.4649483561515808}, {\"X\": 0.4162709712982178, \"Y\": 0.4649483561515808}]}, \"Id\": \"728eb94a-c854-4d80-a86b-51c56df1cb7f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.17443084716797, \"Text\": \"1896933493\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09017179161310196, \"Height\": 0.01061519980430603, \"Left\": 0.4261604845523834, \"Top\": 0.45724111795425415}, \"Polygon\": [{\"X\": 0.4261604845523834, \"Y\": 0.45724111795425415}, {\"X\": 0.5163322687149048, \"Y\": 0.45724111795425415}, {\"X\": 0.5163322687149048, \"Y\": 0.4678563177585602}, {\"X\": 0.4261604845523834, \"Y\": 0.4678563177585602}]}, \"Id\": \"63ee1bf0-268d-45e4-b768-5186c505521a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49056243896484, \"Text\": \"-244\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03272920101881027, \"Height\": 0.009953619912266731, \"Left\": 0.7446429133415222, \"Top\": 0.45766374468803406}, \"Polygon\": [{\"X\": 0.7446429133415222, \"Y\": 0.45766374468803406}, {\"X\": 0.7773721218109131, \"Y\": 0.45766374468803406}, {\"X\": 0.7773721218109131, \"Y\": 0.46761736273765564}, {\"X\": 0.7446429133415222, \"Y\": 0.46761736273765564}]}, \"Id\": \"7f2f616b-bb23-41b5-bcba-1c1c8b514428\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9642562866211, \"Text\": \"8/8/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0688246488571167, \"Height\": 0.013010679744184017, \"Left\": 0.1448035091161728, \"Top\": 0.47602277994155884}, \"Polygon\": [{\"X\": 0.1448035091161728, \"Y\": 0.47602277994155884}, {\"X\": 0.2136281579732895, \"Y\": 0.47602277994155884}, {\"X\": 0.2136281579732895, \"Y\": 0.48903346061706543}, {\"X\": 0.1448035091161728, \"Y\": 0.48903346061706543}]}, \"Id\": \"c4ece52a-dd4d-4ff0-9e8a-8c57b699857b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94036865234375, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035629089921712875, \"Height\": 0.010343019850552082, \"Left\": 0.2318592667579651, \"Top\": 0.4767886698246002}, \"Polygon\": [{\"X\": 0.2318592667579651, \"Y\": 0.4767886698246002}, {\"X\": 0.26748836040496826, \"Y\": 0.4767886698246002}, {\"X\": 0.26748836040496826, \"Y\": 0.48713168501853943}, {\"X\": 0.2318592667579651, \"Y\": 0.48713168501853943}]}, \"Id\": \"8e3f0907-83f1-45b4-a27d-10f5ca9b62e1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66248321533203, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06627660244703293, \"Height\": 0.010329839773476124, \"Left\": 0.2721199095249176, \"Top\": 0.4767681360244751}, \"Polygon\": [{\"X\": 0.2721199095249176, \"Y\": 0.4767681360244751}, {\"X\": 0.33839648962020874, \"Y\": 0.4767681360244751}, {\"X\": 0.33839648962020874, \"Y\": 0.48709797859191895}, {\"X\": 0.2721199095249176, \"Y\": 0.48709797859191895}]}, \"Id\": \"d9d61396-b9d6-4a78-9e13-047153cb4542\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.15074920654297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005704429931938648, \"Height\": 0.002167880069464445, \"Left\": 0.34259581565856934, \"Top\": 0.48196345567703247}, \"Polygon\": [{\"X\": 0.34259581565856934, \"Y\": 0.48196345567703247}, {\"X\": 0.3483002483844757, \"Y\": 0.48196345567703247}, {\"X\": 0.3483002483844757, \"Y\": 0.4841313362121582}, {\"X\": 0.34259581565856934, \"Y\": 0.4841313362121582}]}, \"Id\": \"39eb096b-bde7-4c4d-ad0d-2d739d77c673\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91146087646484, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026911290362477303, \"Height\": 0.009873660281300545, \"Left\": 0.35195568203926086, \"Top\": 0.47716620564460754}, \"Polygon\": [{\"X\": 0.35195568203926086, \"Y\": 0.47716620564460754}, {\"X\": 0.378866970539093, \"Y\": 0.47716620564460754}, {\"X\": 0.378866970539093, \"Y\": 0.48703986406326294}, {\"X\": 0.35195568203926086, \"Y\": 0.48703986406326294}]}, \"Id\": \"ed83f667-03f8-4ed3-9257-7c373583f299\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49462127685547, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05848274007439613, \"Height\": 0.010122600011527538, \"Left\": 0.3845313787460327, \"Top\": 0.47721007466316223}, \"Polygon\": [{\"X\": 0.3845313787460327, \"Y\": 0.47721007466316223}, {\"X\": 0.44301411509513855, \"Y\": 0.47721007466316223}, {\"X\": 0.44301411509513855, \"Y\": 0.48733267188072205}, {\"X\": 0.3845313787460327, \"Y\": 0.48733267188072205}]}, \"Id\": \"a08e8efb-b685-44ef-9426-83c3c4d549b6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.09673309326172, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005822979845106602, \"Height\": 0.002868769923225045, \"Left\": 0.44635072350502014, \"Top\": 0.4816263020038605}, \"Polygon\": [{\"X\": 0.44635072350502014, \"Y\": 0.4816263020038605}, {\"X\": 0.45217370986938477, \"Y\": 0.4816263020038605}, {\"X\": 0.45217370986938477, \"Y\": 0.4844950735569}, {\"X\": 0.44635072350502014, \"Y\": 0.4844950735569}]}, \"Id\": \"66e0df67-0313-40a7-b612-8e61666099a7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48037719726562, \"Text\": \"1966610947\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08989693224430084, \"Height\": 0.010335770435631275, \"Left\": 0.4570614695549011, \"Top\": 0.4769609272480011}, \"Polygon\": [{\"X\": 0.4570614695549011, \"Y\": 0.4769609272480011}, {\"X\": 0.5469583868980408, \"Y\": 0.4769609272480011}, {\"X\": 0.5469583868980408, \"Y\": 0.4872967004776001}, {\"X\": 0.4570614695549011, \"Y\": 0.4872967004776001}]}, \"Id\": \"d3756584-8966-432b-b775-1b2e116c3e7d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75792694091797, \"Text\": \"-116\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03294213116168976, \"Height\": 0.00990017969161272, \"Left\": 0.7445082664489746, \"Top\": 0.477195680141449}, \"Polygon\": [{\"X\": 0.7445082664489746, \"Y\": 0.477195680141449}, {\"X\": 0.7774503827095032, \"Y\": 0.477195680141449}, {\"X\": 0.7774503827095032, \"Y\": 0.4870958626270294}, {\"X\": 0.7445082664489746, \"Y\": 0.4870958626270294}]}, \"Id\": \"3242667a-8ec7-4fcd-b882-347821e7ec35\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.18406677246094, \"Text\": \"7/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06831280142068863, \"Height\": 0.012655540369451046, \"Left\": 0.14536209404468536, \"Top\": 0.4957549571990967}, \"Polygon\": [{\"X\": 0.14536209404468536, \"Y\": 0.4957549571990967}, {\"X\": 0.2136749029159546, \"Y\": 0.4957549571990967}, {\"X\": 0.2136749029159546, \"Y\": 0.5084105134010315}, {\"X\": 0.14536209404468536, \"Y\": 0.5084105134010315}]}, \"Id\": \"1a323747-3e1e-446a-9a53-1c313e8fe63f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42864227294922, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07307536900043488, \"Height\": 0.012390620075166225, \"Left\": 0.23042158782482147, \"Top\": 0.49666035175323486}, \"Polygon\": [{\"X\": 0.23042158782482147, \"Y\": 0.49666035175323486}, {\"X\": 0.30349695682525635, \"Y\": 0.49666035175323486}, {\"X\": 0.30349695682525635, \"Y\": 0.5090509653091431}, {\"X\": 0.23042158782482147, \"Y\": 0.5090509653091431}]}, \"Id\": \"33ba5d45-fb3a-4cc5-a62e-da32f3fd225f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.62967681884766, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005920900031924248, \"Height\": 0.0024137001018971205, \"Left\": 0.306535005569458, \"Top\": 0.5014104247093201}, \"Polygon\": [{\"X\": 0.306535005569458, \"Y\": 0.5014104247093201}, {\"X\": 0.3124558925628662, \"Y\": 0.5014104247093201}, {\"X\": 0.3124558925628662, \"Y\": 0.5038241147994995}, {\"X\": 0.306535005569458, \"Y\": 0.5038241147994995}]}, \"Id\": \"e81ae489-88a2-45e5-a40f-1e3eefb61ce2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70674133300781, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028061240911483765, \"Height\": 0.012476179748773575, \"Left\": 0.31610381603240967, \"Top\": 0.4962702691555023}, \"Polygon\": [{\"X\": 0.31610381603240967, \"Y\": 0.4962702691555023}, {\"X\": 0.34416505694389343, \"Y\": 0.4962702691555023}, {\"X\": 0.34416505694389343, \"Y\": 0.5087464451789856}, {\"X\": 0.31610381603240967, \"Y\": 0.5087464451789856}]}, \"Id\": \"fdece126-b715-421d-98f7-4d79423c1766\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.99687194824219, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005479400046169758, \"Height\": 0.0022823000326752663, \"Left\": 0.34753233194351196, \"Top\": 0.5014376044273376}, \"Polygon\": [{\"X\": 0.34753233194351196, \"Y\": 0.5014376044273376}, {\"X\": 0.35301172733306885, \"Y\": 0.5014376044273376}, {\"X\": 0.35301172733306885, \"Y\": 0.5037199258804321}, {\"X\": 0.34753233194351196, \"Y\": 0.5037199258804321}]}, \"Id\": \"e9fe4348-097c-41b9-ac43-86d21fe950b7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.00467681884766, \"Text\": \"2039726014\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09094954282045364, \"Height\": 0.010427700355648994, \"Left\": 0.3567538559436798, \"Top\": 0.4963858127593994}, \"Polygon\": [{\"X\": 0.3567538559436798, \"Y\": 0.4963858127593994}, {\"X\": 0.44770339131355286, \"Y\": 0.4963858127593994}, {\"X\": 0.44770339131355286, \"Y\": 0.5068135261535645}, {\"X\": 0.3567538559436798, \"Y\": 0.5068135261535645}]}, \"Id\": \"911176a4-cf0e-4657-8493-8d9c7afc8933\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48228454589844, \"Text\": \"-249\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032278239727020264, \"Height\": 0.009898209944367409, \"Left\": 0.7451339960098267, \"Top\": 0.49678751826286316}, \"Polygon\": [{\"X\": 0.7451339960098267, \"Y\": 0.49678751826286316}, {\"X\": 0.7774122357368469, \"Y\": 0.49678751826286316}, {\"X\": 0.7774122357368469, \"Y\": 0.506685733795166}, {\"X\": 0.7451339960098267, \"Y\": 0.506685733795166}]}, \"Id\": \"574a6ecf-8687-4388-97c4-ee0010876b81\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4161148071289, \"Text\": \"2/13/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07753028720617294, \"Height\": 0.012884399853646755, \"Left\": 0.13612861931324005, \"Top\": 0.515245795249939}, \"Polygon\": [{\"X\": 0.13612861931324005, \"Y\": 0.515245795249939}, {\"X\": 0.2136589139699936, \"Y\": 0.515245795249939}, {\"X\": 0.2136589139699936, \"Y\": 0.5281301736831665}, {\"X\": 0.13612861931324005, \"Y\": 0.5281301736831665}]}, \"Id\": \"97bbf8fd-c401-456e-92a0-83c207d82548\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91021728515625, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035337500274181366, \"Height\": 0.010443439707159996, \"Left\": 0.23205971717834473, \"Top\": 0.5159314870834351}, \"Polygon\": [{\"X\": 0.23205971717834473, \"Y\": 0.5159314870834351}, {\"X\": 0.2673972249031067, \"Y\": 0.5159314870834351}, {\"X\": 0.2673972249031067, \"Y\": 0.5263749361038208}, {\"X\": 0.23205971717834473, \"Y\": 0.5263749361038208}]}, \"Id\": \"e468d08a-5a9e-45c9-87c6-d94c790b1ca9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59615325927734, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06538181751966476, \"Height\": 0.010247659869492054, \"Left\": 0.2724703550338745, \"Top\": 0.5161845088005066}, \"Polygon\": [{\"X\": 0.2724703550338745, \"Y\": 0.5161845088005066}, {\"X\": 0.3378521800041199, \"Y\": 0.5161845088005066}, {\"X\": 0.3378521800041199, \"Y\": 0.5264321565628052}, {\"X\": 0.2724703550338745, \"Y\": 0.5264321565628052}]}, \"Id\": \"e7268e60-dfbe-45a3-a49e-bd55a84cbc4c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.79508972167969, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005912969820201397, \"Height\": 0.0025663499254733324, \"Left\": 0.3427075147628784, \"Top\": 0.520980715751648}, \"Polygon\": [{\"X\": 0.3427075147628784, \"Y\": 0.520980715751648}, {\"X\": 0.3486204743385315, \"Y\": 0.520980715751648}, {\"X\": 0.3486204743385315, \"Y\": 0.5235470533370972}, {\"X\": 0.3427075147628784, \"Y\": 0.5235470533370972}]}, \"Id\": \"733671b3-cfe9-4e82-aa3c-4e0b601ce966\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87077331542969, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08168745785951614, \"Height\": 0.01075039990246296, \"Left\": 0.35272714495658875, \"Top\": 0.5157846212387085}, \"Polygon\": [{\"X\": 0.35272714495658875, \"Y\": 0.5157846212387085}, {\"X\": 0.4344145953655243, \"Y\": 0.5157846212387085}, {\"X\": 0.4344145953655243, \"Y\": 0.5265349745750427}, {\"X\": 0.35272714495658875, \"Y\": 0.5265349745750427}]}, \"Id\": \"e57b2b74-d49c-49ec-b72c-7a61700f8826\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.09889221191406, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005629839841276407, \"Height\": 0.0029579000547528267, \"Left\": 0.43819132447242737, \"Top\": 0.5208010077476501}, \"Polygon\": [{\"X\": 0.43819132447242737, \"Y\": 0.5208010077476501}, {\"X\": 0.44382116198539734, \"Y\": 0.5208010077476501}, {\"X\": 0.44382116198539734, \"Y\": 0.5237588882446289}, {\"X\": 0.43819132447242737, \"Y\": 0.5237588882446289}]}, \"Id\": \"c9eb7338-11b1-4fcf-8e96-978811468c8f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.90262603759766, \"Text\": \"2130609679\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09166368097066879, \"Height\": 0.010515759699046612, \"Left\": 0.44779402017593384, \"Top\": 0.5160236358642578}, \"Polygon\": [{\"X\": 0.44779402017593384, \"Y\": 0.5160236358642578}, {\"X\": 0.5394576787948608, \"Y\": 0.5160236358642578}, {\"X\": 0.5394576787948608, \"Y\": 0.5265393853187561}, {\"X\": 0.44779402017593384, \"Y\": 0.5265393853187561}]}, \"Id\": \"490e6347-49b3-4a69-aa61-03a77dde0a1a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25028991699219, \"Text\": \"-127\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03293624892830849, \"Height\": 0.010062200017273426, \"Left\": 0.7445973753929138, \"Top\": 0.5161747932434082}, \"Polygon\": [{\"X\": 0.7445973753929138, \"Y\": 0.5161747932434082}, {\"X\": 0.7775336503982544, \"Y\": 0.5161747932434082}, {\"X\": 0.7775336503982544, \"Y\": 0.5262370109558105}, {\"X\": 0.7445973753929138, \"Y\": 0.5262370109558105}]}, \"Id\": \"e2b0bf13-53ea-40b0-821d-a72ddcf1241d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6371078491211, \"Text\": \"8/1/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06907635927200317, \"Height\": 0.013045559637248516, \"Left\": 0.1445186734199524, \"Top\": 0.5348910093307495}, \"Polygon\": [{\"X\": 0.1445186734199524, \"Y\": 0.5348910093307495}, {\"X\": 0.21359503269195557, \"Y\": 0.5348910093307495}, {\"X\": 0.21359503269195557, \"Y\": 0.5479365587234497}, {\"X\": 0.1445186734199524, \"Y\": 0.5479365587234497}]}, \"Id\": \"54942e26-656d-45d8-ad65-7decc157fac1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28062438964844, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07153929769992828, \"Height\": 0.012549130246043205, \"Left\": 0.23051927983760834, \"Top\": 0.5358644723892212}, \"Polygon\": [{\"X\": 0.23051927983760834, \"Y\": 0.5358644723892212}, {\"X\": 0.3020585775375366, \"Y\": 0.5358644723892212}, {\"X\": 0.3020585775375366, \"Y\": 0.5484136343002319}, {\"X\": 0.23051927983760834, \"Y\": 0.5484136343002319}]}, \"Id\": \"4970c45b-53ee-484c-a91e-6ce25065e063\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.47761535644531, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005595969967544079, \"Height\": 0.002105100080370903, \"Left\": 0.306717187166214, \"Top\": 0.5408902764320374}, \"Polygon\": [{\"X\": 0.306717187166214, \"Y\": 0.5408902764320374}, {\"X\": 0.31231316924095154, \"Y\": 0.5408902764320374}, {\"X\": 0.31231316924095154, \"Y\": 0.5429953932762146}, {\"X\": 0.306717187166214, \"Y\": 0.5429953932762146}]}, \"Id\": \"1315cea7-f95f-46d4-b292-6c639443ecdd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.21552276611328, \"Text\": \"Uber\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036075741052627563, \"Height\": 0.009990519843995571, \"Left\": 0.3167952299118042, \"Top\": 0.5358401536941528}, \"Polygon\": [{\"X\": 0.3167952299118042, \"Y\": 0.5358401536941528}, {\"X\": 0.35287097096443176, \"Y\": 0.5358401536941528}, {\"X\": 0.35287097096443176, \"Y\": 0.5458306670188904}, {\"X\": 0.3167952299118042, \"Y\": 0.5458306670188904}]}, \"Id\": \"0de92abc-47ad-497f-abd3-bcbad198b4f2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.13813018798828, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005475219804793596, \"Height\": 0.0022581000812351704, \"Left\": 0.35660555958747864, \"Top\": 0.5408269166946411}, \"Polygon\": [{\"X\": 0.35660555958747864, \"Y\": 0.5408269166946411}, {\"X\": 0.36208078265190125, \"Y\": 0.5408269166946411}, {\"X\": 0.36208078265190125, \"Y\": 0.543084979057312}, {\"X\": 0.35660555958747864, \"Y\": 0.543084979057312}]}, \"Id\": \"74cf6ff1-c10f-4961-bf0e-7cd098673bb3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.57877349853516, \"Text\": \"2135962828\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09089437872171402, \"Height\": 0.010483980178833008, \"Left\": 0.3659120202064514, \"Top\": 0.5357194542884827}, \"Polygon\": [{\"X\": 0.3659120202064514, \"Y\": 0.5357194542884827}, {\"X\": 0.45680639147758484, \"Y\": 0.5357194542884827}, {\"X\": 0.45680639147758484, \"Y\": 0.5462034344673157}, {\"X\": 0.3659120202064514, \"Y\": 0.5462034344673157}]}, \"Id\": \"27d79cc9-4965-4e63-88c1-d513f635af43\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84085845947266, \"Text\": \"-65\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023249270394444466, \"Height\": 0.00986033957451582, \"Left\": 0.7540419697761536, \"Top\": 0.5359289050102234}, \"Polygon\": [{\"X\": 0.7540419697761536, \"Y\": 0.5359289050102234}, {\"X\": 0.7772912383079529, \"Y\": 0.5359289050102234}, {\"X\": 0.7772912383079529, \"Y\": 0.5457892417907715}, {\"X\": 0.7540419697761536, \"Y\": 0.5457892417907715}]}, \"Id\": \"aa3c56c1-743d-4bf7-9f29-dbc4965041dd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62432861328125, \"Text\": \"5/31/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07719194889068604, \"Height\": 0.01306707039475441, \"Left\": 0.1359284520149231, \"Top\": 0.5544430017471313}, \"Polygon\": [{\"X\": 0.1359284520149231, \"Y\": 0.5544430017471313}, {\"X\": 0.21312040090560913, \"Y\": 0.5544430017471313}, {\"X\": 0.21312040090560913, \"Y\": 0.5675100684165955}, {\"X\": 0.1359284520149231, \"Y\": 0.5675100684165955}]}, \"Id\": \"115b9cf5-16b6-4464-9f6b-42958dfca44e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8840103149414, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047812968492507935, \"Height\": 0.01028352975845337, \"Left\": 0.23116976022720337, \"Top\": 0.5552653670310974}, \"Polygon\": [{\"X\": 0.23116976022720337, \"Y\": 0.5552653670310974}, {\"X\": 0.2789827287197113, \"Y\": 0.5552653670310974}, {\"X\": 0.2789827287197113, \"Y\": 0.5655488967895508}, {\"X\": 0.23116976022720337, \"Y\": 0.5655488967895508}]}, \"Id\": \"b0105691-02e6-4368-80d6-b90624ba1395\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82099914550781, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04059144854545593, \"Height\": 0.010671360418200493, \"Left\": 0.28388485312461853, \"Top\": 0.554952085018158}, \"Polygon\": [{\"X\": 0.28388485312461853, \"Y\": 0.554952085018158}, {\"X\": 0.32447630167007446, \"Y\": 0.554952085018158}, {\"X\": 0.32447630167007446, \"Y\": 0.5656234622001648}, {\"X\": 0.28388485312461853, \"Y\": 0.5656234622001648}]}, \"Id\": \"f7e7c4ba-6921-4f5b-afe5-ebdeec5764dc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.7286148071289, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005424200091511011, \"Height\": 0.0020593299996107817, \"Left\": 0.32897600531578064, \"Top\": 0.5603961944580078}, \"Polygon\": [{\"X\": 0.32897600531578064, \"Y\": 0.5603961944580078}, {\"X\": 0.3344002068042755, \"Y\": 0.5603961944580078}, {\"X\": 0.3344002068042755, \"Y\": 0.5624555349349976}, {\"X\": 0.32897600531578064, \"Y\": 0.5624555349349976}]}, \"Id\": \"8d4e46f8-364a-4912-a6fc-088123ebf220\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6109848022461, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09554699808359146, \"Height\": 0.010199050419032574, \"Left\": 0.3382894992828369, \"Top\": 0.5556633472442627}, \"Polygon\": [{\"X\": 0.3382894992828369, \"Y\": 0.5556633472442627}, {\"X\": 0.4338364899158478, \"Y\": 0.5556633472442627}, {\"X\": 0.4338364899158478, \"Y\": 0.5658624172210693}, {\"X\": 0.3382894992828369, \"Y\": 0.5658624172210693}]}, \"Id\": \"4bb4eecd-36e8-487f-8e83-590a0cc9dfe9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.63330078125, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0059743598103523254, \"Height\": 0.0028097000904381275, \"Left\": 0.43748292326927185, \"Top\": 0.5601515769958496}, \"Polygon\": [{\"X\": 0.43748292326927185, \"Y\": 0.5601515769958496}, {\"X\": 0.4434572756290436, \"Y\": 0.5601515769958496}, {\"X\": 0.4434572756290436, \"Y\": 0.5629612803459167}, {\"X\": 0.43748292326927185, \"Y\": 0.5629612803459167}]}, \"Id\": \"66638eb8-37ff-4b08-beb8-48c5c7ab5dc8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.90642547607422, \"Text\": \"2257980180\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09201893210411072, \"Height\": 0.010670330375432968, \"Left\": 0.44697102904319763, \"Top\": 0.5552232265472412}, \"Polygon\": [{\"X\": 0.44697102904319763, \"Y\": 0.5552232265472412}, {\"X\": 0.5389899611473083, \"Y\": 0.5552232265472412}, {\"X\": 0.5389899611473083, \"Y\": 0.5658935308456421}, {\"X\": 0.44697102904319763, \"Y\": 0.5658935308456421}]}, \"Id\": \"31f318df-3b0f-4745-9dab-4bd53ea0532e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.388916015625, \"Text\": \"-156\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03216522932052612, \"Height\": 0.009775299578905106, \"Left\": 0.7454619407653809, \"Top\": 0.5557795166969299}, \"Polygon\": [{\"X\": 0.7454619407653809, \"Y\": 0.5557795166969299}, {\"X\": 0.777627170085907, \"Y\": 0.5557795166969299}, {\"X\": 0.777627170085907, \"Y\": 0.5655547976493835}, {\"X\": 0.7454619407653809, \"Y\": 0.5655547976493835}]}, \"Id\": \"5f48fbd3-b0fe-45c9-8329-65bdcd0c526a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80892181396484, \"Text\": \"Date\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03485088050365448, \"Height\": 0.009842299856245518, \"Left\": 0.15306507050991058, \"Top\": 0.7746101021766663}, \"Polygon\": [{\"X\": 0.15306507050991058, \"Y\": 0.7746101021766663}, {\"X\": 0.18791595101356506, \"Y\": 0.7746101021766663}, {\"X\": 0.18791595101356506, \"Y\": 0.7844523787498474}, {\"X\": 0.15306507050991058, \"Y\": 0.7844523787498474}]}, \"Id\": \"0c86498c-c59a-4655-9c33-7b6988a0a9b5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28163146972656, \"Text\": \"Description\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08527570962905884, \"Height\": 0.012878700159490108, \"Left\": 0.32998353242874146, \"Top\": 0.7741228938102722}, \"Polygon\": [{\"X\": 0.32998353242874146, \"Y\": 0.7741228938102722}, {\"X\": 0.4152592420578003, \"Y\": 0.7741228938102722}, {\"X\": 0.4152592420578003, \"Y\": 0.7870016098022461}, {\"X\": 0.32998353242874146, \"Y\": 0.7870016098022461}]}, \"Id\": \"239f5031-affe-4ca3-bc11-d253f933d628\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78153228759766, \"Text\": \"Long\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03506758064031601, \"Height\": 0.01266419980674982, \"Left\": 0.41961541771888733, \"Top\": 0.7742812633514404}, \"Polygon\": [{\"X\": 0.41961541771888733, \"Y\": 0.7742812633514404}, {\"X\": 0.45468300580978394, \"Y\": 0.7742812633514404}, {\"X\": 0.45468300580978394, \"Y\": 0.7869454622268677}, {\"X\": 0.41961541771888733, \"Y\": 0.7869454622268677}]}, \"Id\": \"07710349-b702-4983-8cb3-3c750f527212\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86601257324219, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009112300351262093, \"Height\": 0.01001686044037342, \"Left\": 0.45859020948410034, \"Top\": 0.774537205696106}, \"Polygon\": [{\"X\": 0.45859020948410034, \"Y\": 0.774537205696106}, {\"X\": 0.4677025079727173, \"Y\": 0.774537205696106}, {\"X\": 0.4677025079727173, \"Y\": 0.7845540642738342}, {\"X\": 0.45859020948410034, \"Y\": 0.7845540642738342}]}, \"Id\": \"d23aa584-011f-4058-8277-8c4acaf1b77f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19066619873047, \"Text\": \"Withdrawals\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0948340967297554, \"Height\": 0.011010199785232544, \"Left\": 0.5925729274749756, \"Top\": 0.7736759185791016}, \"Polygon\": [{\"X\": 0.5925729274749756, \"Y\": 0.7736759185791016}, {\"X\": 0.6874070167541504, \"Y\": 0.7736759185791016}, {\"X\": 0.6874070167541504, \"Y\": 0.7846860885620117}, {\"X\": 0.5925729274749756, \"Y\": 0.7846860885620117}]}, \"Id\": \"edc0e838-68dd-422e-a869-77e7647b31da\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.43927764892578, \"Text\": \"/\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008531570434570312, \"Height\": 0.013060210272669792, \"Left\": 0.6914165616035461, \"Top\": 0.7735081315040588}, \"Polygon\": [{\"X\": 0.6914165616035461, \"Y\": 0.7735081315040588}, {\"X\": 0.6999481320381165, \"Y\": 0.7735081315040588}, {\"X\": 0.6999481320381165, \"Y\": 0.7865683436393738}, {\"X\": 0.6914165616035461, \"Y\": 0.7865683436393738}]}, \"Id\": \"993b039f-0a16-475b-9f45-d083540e8425\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.72833251953125, \"Text\": \"Deposits\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0630761981010437, \"Height\": 0.01242738962173462, \"Left\": 0.7046803832054138, \"Top\": 0.7743057608604431}, \"Polygon\": [{\"X\": 0.7046803832054138, \"Y\": 0.7743057608604431}, {\"X\": 0.7677565813064575, \"Y\": 0.7743057608604431}, {\"X\": 0.7677565813064575, \"Y\": 0.7867331504821777}, {\"X\": 0.7046803832054138, \"Y\": 0.7867331504821777}]}, \"Id\": \"eec65c0f-f9e5-4354-9a18-3670ac71302d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.97296142578125, \"Text\": \"2/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06854447722434998, \"Height\": 0.013070340268313885, \"Left\": 0.14496268332004547, \"Top\": 0.7931639552116394}, \"Polygon\": [{\"X\": 0.14496268332004547, \"Y\": 0.7931639552116394}, {\"X\": 0.21350716054439545, \"Y\": 0.7931639552116394}, {\"X\": 0.21350716054439545, \"Y\": 0.8062343001365662}, {\"X\": 0.14496268332004547, \"Y\": 0.8062343001365662}]}, \"Id\": \"a6e0ba9e-daad-4c91-8d47-e119b5818f71\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94586944580078, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03598441928625107, \"Height\": 0.010465369559824467, \"Left\": 0.231805682182312, \"Top\": 0.7935836315155029}, \"Polygon\": [{\"X\": 0.231805682182312, \"Y\": 0.7935836315155029}, {\"X\": 0.2677901089191437, \"Y\": 0.7935836315155029}, {\"X\": 0.2677901089191437, \"Y\": 0.804049015045166}, {\"X\": 0.231805682182312, \"Y\": 0.804049015045166}]}, \"Id\": \"6a4ffb3a-c76c-4ef9-a164-2dc86ef890fd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6629867553711, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06624311953783035, \"Height\": 0.010369000025093555, \"Left\": 0.27204111218452454, \"Top\": 0.7936257123947144}, \"Polygon\": [{\"X\": 0.27204111218452454, \"Y\": 0.7936257123947144}, {\"X\": 0.3382842242717743, \"Y\": 0.7936257123947144}, {\"X\": 0.3382842242717743, \"Y\": 0.8039947152137756}, {\"X\": 0.27204111218452454, \"Y\": 0.8039947152137756}]}, \"Id\": \"880dd167-5e3a-451e-9565-03ef279b914b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.98435974121094, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005751749966293573, \"Height\": 0.0025951999705284834, \"Left\": 0.3425985872745514, \"Top\": 0.7987968921661377}, \"Polygon\": [{\"X\": 0.3425985872745514, \"Y\": 0.7987968921661377}, {\"X\": 0.3483503460884094, \"Y\": 0.7987968921661377}, {\"X\": 0.3483503460884094, \"Y\": 0.8013920783996582}, {\"X\": 0.3425985872745514, \"Y\": 0.8013920783996582}]}, \"Id\": \"98169651-6941-4496-96ab-ccd538226771\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7729263305664, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0833488404750824, \"Height\": 0.010568940080702305, \"Left\": 0.3518769443035126, \"Top\": 0.7936694622039795}, \"Polygon\": [{\"X\": 0.3518769443035126, \"Y\": 0.7936694622039795}, {\"X\": 0.43522578477859497, \"Y\": 0.7936694622039795}, {\"X\": 0.43522578477859497, \"Y\": 0.8042383790016174}, {\"X\": 0.3518769443035126, \"Y\": 0.8042383790016174}]}, \"Id\": \"8b2dc4e1-4129-4142-ae89-3fe3e8620fd1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.98389434814453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005827989894896746, \"Height\": 0.0031131000723689795, \"Left\": 0.4382205605506897, \"Top\": 0.798486590385437}, \"Polygon\": [{\"X\": 0.4382205605506897, \"Y\": 0.798486590385437}, {\"X\": 0.44404855370521545, \"Y\": 0.798486590385437}, {\"X\": 0.44404855370521545, \"Y\": 0.8015996813774109}, {\"X\": 0.4382205605506897, \"Y\": 0.8015996813774109}]}, \"Id\": \"6ca57478-01c2-476a-a0e9-88520f672fb7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5894775390625, \"Text\": \"1194089245\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09012693911790848, \"Height\": 0.010607000440359116, \"Left\": 0.44885486364364624, \"Top\": 0.7936853766441345}, \"Polygon\": [{\"X\": 0.44885486364364624, \"Y\": 0.7936853766441345}, {\"X\": 0.5389817953109741, \"Y\": 0.7936853766441345}, {\"X\": 0.5389817953109741, \"Y\": 0.8042923808097839}, {\"X\": 0.44885486364364624, \"Y\": 0.8042923808097839}]}, \"Id\": \"f8db1dea-949f-4cf9-a74b-b3cdf6d87854\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70414733886719, \"Text\": \"-171\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03268278017640114, \"Height\": 0.010219969786703587, \"Left\": 0.7446819543838501, \"Top\": 0.7938873767852783}, \"Polygon\": [{\"X\": 0.7446819543838501, \"Y\": 0.7938873767852783}, {\"X\": 0.7773647308349609, \"Y\": 0.7938873767852783}, {\"X\": 0.7773647308349609, \"Y\": 0.8041073679924011}, {\"X\": 0.7446819543838501, \"Y\": 0.8041073679924011}]}, \"Id\": \"b95a9677-b548-471d-bd0f-4e02b13622c0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44542694091797, \"Text\": \"8/22/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0775541216135025, \"Height\": 0.01300335954874754, \"Left\": 0.13582497835159302, \"Top\": 0.81252521276474}, \"Polygon\": [{\"X\": 0.13582497835159302, \"Y\": 0.81252521276474}, {\"X\": 0.21337909996509552, \"Y\": 0.81252521276474}, {\"X\": 0.21337909996509552, \"Y\": 0.8255285620689392}, {\"X\": 0.13582497835159302, \"Y\": 0.8255285620689392}]}, \"Id\": \"89cc88f3-aac7-4b76-945a-8c419a854b97\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88080596923828, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04784318059682846, \"Height\": 0.010126500390470028, \"Left\": 0.2311602234840393, \"Top\": 0.8134384751319885}, \"Polygon\": [{\"X\": 0.2311602234840393, \"Y\": 0.8134384751319885}, {\"X\": 0.27900341153144836, \"Y\": 0.8134384751319885}, {\"X\": 0.27900341153144836, \"Y\": 0.8235650062561035}, {\"X\": 0.2311602234840393, \"Y\": 0.8235650062561035}]}, \"Id\": \"7daa34af-36c3-4d8e-8019-c81bb4d72d04\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79998016357422, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04036030173301697, \"Height\": 0.010180399753153324, \"Left\": 0.28378060460090637, \"Top\": 0.8134137988090515}, \"Polygon\": [{\"X\": 0.28378060460090637, \"Y\": 0.8134137988090515}, {\"X\": 0.32414090633392334, \"Y\": 0.8134137988090515}, {\"X\": 0.32414090633392334, \"Y\": 0.8235942125320435}, {\"X\": 0.28378060460090637, \"Y\": 0.8235942125320435}]}, \"Id\": \"b11ccde6-d8bc-4c09-b8ed-1fb7aa7dd8d6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.75940704345703, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005587299820035696, \"Height\": 0.0021813400089740753, \"Left\": 0.32880041003227234, \"Top\": 0.818605363368988}, \"Polygon\": [{\"X\": 0.32880041003227234, \"Y\": 0.818605363368988}, {\"X\": 0.3343876898288727, \"Y\": 0.818605363368988}, {\"X\": 0.3343876898288727, \"Y\": 0.820786714553833}, {\"X\": 0.32880041003227234, \"Y\": 0.820786714553833}]}, \"Id\": \"5cbcabc0-2508-49d1-8e4e-20ab55ecb542\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5660400390625, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09424100071191788, \"Height\": 0.010052099823951721, \"Left\": 0.33875709772109985, \"Top\": 0.8136659264564514}, \"Polygon\": [{\"X\": 0.33875709772109985, \"Y\": 0.8136659264564514}, {\"X\": 0.43299809098243713, \"Y\": 0.8136659264564514}, {\"X\": 0.43299809098243713, \"Y\": 0.8237180113792419}, {\"X\": 0.33875709772109985, \"Y\": 0.8237180113792419}]}, \"Id\": \"fc584374-e4b2-4fe2-a0ac-156e2e2d13fc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.74751281738281, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005999539978802204, \"Height\": 0.0029068600852042437, \"Left\": 0.43752044439315796, \"Top\": 0.8181596398353577}, \"Polygon\": [{\"X\": 0.43752044439315796, \"Y\": 0.8181596398353577}, {\"X\": 0.4435199797153473, \"Y\": 0.8181596398353577}, {\"X\": 0.4435199797153473, \"Y\": 0.8210664987564087}, {\"X\": 0.43752044439315796, \"Y\": 0.8210664987564087}]}, \"Id\": \"9e6d4e83-ebc1-44bd-907c-a34cf7ebb59e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38978576660156, \"Text\": \"1232495036\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09099497646093369, \"Height\": 0.01057515013962984, \"Left\": 0.44795891642570496, \"Top\": 0.813240647315979}, \"Polygon\": [{\"X\": 0.44795891642570496, \"Y\": 0.813240647315979}, {\"X\": 0.5389539003372192, \"Y\": 0.813240647315979}, {\"X\": 0.5389539003372192, \"Y\": 0.8238158226013184}, {\"X\": 0.44795891642570496, \"Y\": 0.8238158226013184}]}, \"Id\": \"2f28c6d1-cd49-4464-977f-b560c288086f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.890380859375, \"Text\": \"-44\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02382010966539383, \"Height\": 0.00996019970625639, \"Left\": 0.7538032531738281, \"Top\": 0.8136084079742432}, \"Polygon\": [{\"X\": 0.7538032531738281, \"Y\": 0.8136084079742432}, {\"X\": 0.7776233553886414, \"Y\": 0.8136084079742432}, {\"X\": 0.7776233553886414, \"Y\": 0.82356858253479}, {\"X\": 0.7538032531738281, \"Y\": 0.82356858253479}]}, \"Id\": \"aca627b7-e750-4566-95db-ae0dd621e22d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34636688232422, \"Text\": \"11/1/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07689548283815384, \"Height\": 0.012667049653828144, \"Left\": 0.13636918365955353, \"Top\": 0.8325199484825134}, \"Polygon\": [{\"X\": 0.13636918365955353, \"Y\": 0.8325199484825134}, {\"X\": 0.21326465904712677, \"Y\": 0.8325199484825134}, {\"X\": 0.21326465904712677, \"Y\": 0.8451870083808899}, {\"X\": 0.13636918365955353, \"Y\": 0.8451870083808899}]}, \"Id\": \"801b096a-d396-4402-bb9f-52446729b09d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93806457519531, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03582625091075897, \"Height\": 0.010244430042803288, \"Left\": 0.23183579742908478, \"Top\": 0.8330447673797607}, \"Polygon\": [{\"X\": 0.23183579742908478, \"Y\": 0.8330447673797607}, {\"X\": 0.26766204833984375, \"Y\": 0.8330447673797607}, {\"X\": 0.26766204833984375, \"Y\": 0.8432891964912415}, {\"X\": 0.23183579742908478, \"Y\": 0.8432891964912415}]}, \"Id\": \"e2508570-4241-4519-9779-45655dcd7ac1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64167785644531, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0669795423746109, \"Height\": 0.01025640033185482, \"Left\": 0.27137070894241333, \"Top\": 0.8330748081207275}, \"Polygon\": [{\"X\": 0.27137070894241333, \"Y\": 0.8330748081207275}, {\"X\": 0.33835023641586304, \"Y\": 0.8330748081207275}, {\"X\": 0.33835023641586304, \"Y\": 0.8433312177658081}, {\"X\": 0.27137070894241333, \"Y\": 0.8433312177658081}]}, \"Id\": \"5b667e08-52a0-4c63-b08a-fda61c3c2f39\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.60498809814453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005399339832365513, \"Height\": 0.0021405499428510666, \"Left\": 0.34268471598625183, \"Top\": 0.8381314277648926}, \"Polygon\": [{\"X\": 0.34268471598625183, \"Y\": 0.8381314277648926}, {\"X\": 0.34808406233787537, \"Y\": 0.8381314277648926}, {\"X\": 0.34808406233787537, \"Y\": 0.8402719497680664}, {\"X\": 0.34268471598625183, \"Y\": 0.8402719497680664}]}, \"Id\": \"67452dba-4dda-4a33-bc7a-430e04f9eac4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8676528930664, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02697327919304371, \"Height\": 0.010012139566242695, \"Left\": 0.352072149515152, \"Top\": 0.8332684636116028}, \"Polygon\": [{\"X\": 0.352072149515152, \"Y\": 0.8332684636116028}, {\"X\": 0.37904542684555054, \"Y\": 0.8332684636116028}, {\"X\": 0.37904542684555054, \"Y\": 0.8432806134223938}, {\"X\": 0.352072149515152, \"Y\": 0.8432806134223938}]}, \"Id\": \"cb61a70b-7548-4d6f-9c70-0691e866af59\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54338073730469, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05935186147689819, \"Height\": 0.01070236973464489, \"Left\": 0.3834325969219208, \"Top\": 0.8330371975898743}, \"Polygon\": [{\"X\": 0.3834325969219208, \"Y\": 0.8330371975898743}, {\"X\": 0.44278445839881897, \"Y\": 0.8330371975898743}, {\"X\": 0.44278445839881897, \"Y\": 0.8437395691871643}, {\"X\": 0.3834325969219208, \"Y\": 0.8437395691871643}]}, \"Id\": \"fee9736b-f20c-4de6-b08b-5bc970dc08a5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.42353057861328, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005861429963260889, \"Height\": 0.0030805000569671392, \"Left\": 0.44618532061576843, \"Top\": 0.8377029895782471}, \"Polygon\": [{\"X\": 0.44618532061576843, \"Y\": 0.8377029895782471}, {\"X\": 0.4520467519760132, \"Y\": 0.8377029895782471}, {\"X\": 0.4520467519760132, \"Y\": 0.8407834768295288}, {\"X\": 0.44618532061576843, \"Y\": 0.8407834768295288}]}, \"Id\": \"7c58c5ef-2e1f-4aa1-8dbe-ea21249e4d86\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5372085571289, \"Text\": \"1509173654\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08998087048530579, \"Height\": 0.0106905996799469, \"Left\": 0.4568645656108856, \"Top\": 0.8329856991767883}, \"Polygon\": [{\"X\": 0.4568645656108856, \"Y\": 0.8329856991767883}, {\"X\": 0.5468454360961914, \"Y\": 0.8329856991767883}, {\"X\": 0.5468454360961914, \"Y\": 0.8436763286590576}, {\"X\": 0.4568645656108856, \"Y\": 0.8436763286590576}]}, \"Id\": \"9020693e-723c-47d5-9fbb-17a306d4560f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41638946533203, \"Text\": \"-224\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03262383118271828, \"Height\": 0.00994098000228405, \"Left\": 0.7449572682380676, \"Top\": 0.8332991600036621}, \"Polygon\": [{\"X\": 0.7449572682380676, \"Y\": 0.8332991600036621}, {\"X\": 0.7775810956954956, \"Y\": 0.8332991600036621}, {\"X\": 0.7775810956954956, \"Y\": 0.8432401418685913}, {\"X\": 0.7449572682380676, \"Y\": 0.8432401418685913}]}, \"Id\": \"29a468b6-fb33-4b3e-8b93-2a2f0caec87e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35672760009766, \"Text\": \"5/26/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07727185636758804, \"Height\": 0.013078209944069386, \"Left\": 0.13583147525787354, \"Top\": 0.8517815470695496}, \"Polygon\": [{\"X\": 0.13583147525787354, \"Y\": 0.8517815470695496}, {\"X\": 0.21310333907604218, \"Y\": 0.8517815470695496}, {\"X\": 0.21310333907604218, \"Y\": 0.8648597598075867}, {\"X\": 0.13583147525787354, \"Y\": 0.8648597598075867}]}, \"Id\": \"f8b4657a-f702-4b87-bab8-c4cb2a347a0c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86053466796875, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04053302854299545, \"Height\": 0.009883659891784191, \"Left\": 0.23187245428562164, \"Top\": 0.8527752161026001}, \"Polygon\": [{\"X\": 0.23187245428562164, \"Y\": 0.8527752161026001}, {\"X\": 0.2724054753780365, \"Y\": 0.8527752161026001}, {\"X\": 0.2724054753780365, \"Y\": 0.8626588582992554}, {\"X\": 0.23187245428562164, \"Y\": 0.8626588582992554}]}, \"Id\": \"8e9ea83d-2349-45e5-8a0c-0e794a59372d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74862670898438, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0668703019618988, \"Height\": 0.010306100361049175, \"Left\": 0.27689582109451294, \"Top\": 0.852516770362854}, \"Polygon\": [{\"X\": 0.27689582109451294, \"Y\": 0.852516770362854}, {\"X\": 0.34376612305641174, \"Y\": 0.852516770362854}, {\"X\": 0.34376612305641174, \"Y\": 0.8628228902816772}, {\"X\": 0.27689582109451294, \"Y\": 0.8628228902816772}]}, \"Id\": \"340f03b7-eaf9-469e-b2c8-f48a221abbb5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.75836181640625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005673650186508894, \"Height\": 0.0022004800848662853, \"Left\": 0.3515404462814331, \"Top\": 0.8577292561531067}, \"Polygon\": [{\"X\": 0.3515404462814331, \"Y\": 0.8577292561531067}, {\"X\": 0.357214093208313, \"Y\": 0.8577292561531067}, {\"X\": 0.357214093208313, \"Y\": 0.8599297404289246}, {\"X\": 0.3515404462814331, \"Y\": 0.8599297404289246}]}, \"Id\": \"9ea88e2b-4922-4620-9777-9c7e9e539578\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66121673583984, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0515061616897583, \"Height\": 0.012322429567575455, \"Left\": 0.36104816198349, \"Top\": 0.8526596426963806}, \"Polygon\": [{\"X\": 0.36104816198349, \"Y\": 0.8526596426963806}, {\"X\": 0.4125543236732483, \"Y\": 0.8526596426963806}, {\"X\": 0.4125543236732483, \"Y\": 0.8649820685386658}, {\"X\": 0.36104816198349, \"Y\": 0.8649820685386658}]}, \"Id\": \"86c8a9ce-9a5a-411c-94d6-6eaeb55d64a0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.20513153076172, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006089869886636734, \"Height\": 0.002757469890639186, \"Left\": 0.4161745607852936, \"Top\": 0.857458233833313}, \"Polygon\": [{\"X\": 0.4161745607852936, \"Y\": 0.857458233833313}, {\"X\": 0.42226442694664, \"Y\": 0.857458233833313}, {\"X\": 0.42226442694664, \"Y\": 0.8602157235145569}, {\"X\": 0.4161745607852936, \"Y\": 0.8602157235145569}]}, \"Id\": \"46bf4934-4e61-459f-bdae-de863df728c9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.98056030273438, \"Text\": \"1896933493\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09100905805826187, \"Height\": 0.010338639840483665, \"Left\": 0.4258950352668762, \"Top\": 0.8526843786239624}, \"Polygon\": [{\"X\": 0.4258950352668762, \"Y\": 0.8526843786239624}, {\"X\": 0.5169041156768799, \"Y\": 0.8526843786239624}, {\"X\": 0.5169041156768799, \"Y\": 0.863023042678833}, {\"X\": 0.4258950352668762, \"Y\": 0.863023042678833}]}, \"Id\": \"252dd2ae-d7e0-4399-9548-31ce6772b2ee\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43397521972656, \"Text\": \"-244\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03258800134062767, \"Height\": 0.009681159630417824, \"Left\": 0.7448799014091492, \"Top\": 0.8529972434043884}, \"Polygon\": [{\"X\": 0.7448799014091492, \"Y\": 0.8529972434043884}, {\"X\": 0.7774679064750671, \"Y\": 0.8529972434043884}, {\"X\": 0.7774679064750671, \"Y\": 0.8626784086227417}, {\"X\": 0.7448799014091492, \"Y\": 0.8626784086227417}]}, \"Id\": \"500043c3-2167-4670-8448-8ce71b07fd9a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.81343841552734, \"Text\": \"8/8/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06879837065935135, \"Height\": 0.012824100442230701, \"Left\": 0.14470261335372925, \"Top\": 0.8714891076087952}, \"Polygon\": [{\"X\": 0.14470261335372925, \"Y\": 0.8714891076087952}, {\"X\": 0.2135009765625, \"Y\": 0.8714891076087952}, {\"X\": 0.2135009765625, \"Y\": 0.8843132257461548}, {\"X\": 0.14470261335372925, \"Y\": 0.8843132257461548}]}, \"Id\": \"22c8fe58-b695-48dc-bf0c-2a7e8e3f23a6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93811798095703, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03563487157225609, \"Height\": 0.010212239809334278, \"Left\": 0.23195353150367737, \"Top\": 0.8720695972442627}, \"Polygon\": [{\"X\": 0.23195353150367737, \"Y\": 0.8720695972442627}, {\"X\": 0.26758840680122375, \"Y\": 0.8720695972442627}, {\"X\": 0.26758840680122375, \"Y\": 0.8822818398475647}, {\"X\": 0.23195353150367737, \"Y\": 0.8822818398475647}]}, \"Id\": \"a1b8fdcd-a2a8-4b08-a45c-9f4ba7a0e8a3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64295196533203, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06657426804304123, \"Height\": 0.010329299606382847, \"Left\": 0.2715683579444885, \"Top\": 0.8720582127571106}, \"Polygon\": [{\"X\": 0.2715683579444885, \"Y\": 0.8720582127571106}, {\"X\": 0.33814263343811035, \"Y\": 0.8720582127571106}, {\"X\": 0.33814263343811035, \"Y\": 0.8823875188827515}, {\"X\": 0.2715683579444885, \"Y\": 0.8823875188827515}]}, \"Id\": \"3d9113f4-ba60-4e00-a1e7-faf3ebae1921\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 94.91168212890625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00554894981905818, \"Height\": 0.002161199925467372, \"Left\": 0.34269237518310547, \"Top\": 0.8770553469657898}, \"Polygon\": [{\"X\": 0.34269237518310547, \"Y\": 0.8770553469657898}, {\"X\": 0.34824132919311523, \"Y\": 0.8770553469657898}, {\"X\": 0.34824132919311523, \"Y\": 0.8792165517807007}, {\"X\": 0.34269237518310547, \"Y\": 0.8792165517807007}]}, \"Id\": \"6a0c8423-3981-4d38-906a-e1102dae4635\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90986633300781, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026878660544753075, \"Height\": 0.00974308978766203, \"Left\": 0.3521046042442322, \"Top\": 0.8724733591079712}, \"Polygon\": [{\"X\": 0.3521046042442322, \"Y\": 0.8724733591079712}, {\"X\": 0.3789832592010498, \"Y\": 0.8724733591079712}, {\"X\": 0.3789832592010498, \"Y\": 0.8822164535522461}, {\"X\": 0.3521046042442322, \"Y\": 0.8822164535522461}]}, \"Id\": \"7ec12707-f6da-48ee-b329-e5b76f2d2676\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73334503173828, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.057944849133491516, \"Height\": 0.00999366957694292, \"Left\": 0.3844846487045288, \"Top\": 0.8722805976867676}, \"Polygon\": [{\"X\": 0.3844846487045288, \"Y\": 0.8722805976867676}, {\"X\": 0.4424295127391815, \"Y\": 0.8722805976867676}, {\"X\": 0.4424295127391815, \"Y\": 0.8822742700576782}, {\"X\": 0.3844846487045288, \"Y\": 0.8822742700576782}]}, \"Id\": \"71794c6b-f8a8-46e6-b23d-a2af2b314090\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.19099426269531, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005797069985419512, \"Height\": 0.0027489399071782827, \"Left\": 0.4462539255619049, \"Top\": 0.876906156539917}, \"Polygon\": [{\"X\": 0.4462539255619049, \"Y\": 0.876906156539917}, {\"X\": 0.4520510137081146, \"Y\": 0.876906156539917}, {\"X\": 0.4520510137081146, \"Y\": 0.879655122756958}, {\"X\": 0.4462539255619049, \"Y\": 0.879655122756958}]}, \"Id\": \"2429cd46-cc73-4dba-bea2-79d06b17dd2f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.17894744873047, \"Text\": \"1966610947\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09007140249013901, \"Height\": 0.010397350415587425, \"Left\": 0.4567004144191742, \"Top\": 0.8721251487731934}, \"Polygon\": [{\"X\": 0.4567004144191742, \"Y\": 0.8721251487731934}, {\"X\": 0.5467718243598938, \"Y\": 0.8721251487731934}, {\"X\": 0.5467718243598938, \"Y\": 0.8825225234031677}, {\"X\": 0.4567004144191742, \"Y\": 0.8825225234031677}]}, \"Id\": \"d35f802f-5640-4062-ba91-0dbd66756398\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70368957519531, \"Text\": \"-116\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03316599875688553, \"Height\": 0.00982682965695858, \"Left\": 0.7446339726448059, \"Top\": 0.8723928928375244}, \"Polygon\": [{\"X\": 0.7446339726448059, \"Y\": 0.8723928928375244}, {\"X\": 0.7778000235557556, \"Y\": 0.8723928928375244}, {\"X\": 0.7778000235557556, \"Y\": 0.8822197318077087}, {\"X\": 0.7446339726448059, \"Y\": 0.8822197318077087}]}, \"Id\": \"da92583b-7636-4864-a8de-0064c9a71cad\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32549285888672, \"Text\": \"7/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06832803040742874, \"Height\": 0.012773199938237667, \"Left\": 0.14512063562870026, \"Top\": 0.8910952806472778}, \"Polygon\": [{\"X\": 0.14512063562870026, \"Y\": 0.8910952806472778}, {\"X\": 0.2134486734867096, \"Y\": 0.8910952806472778}, {\"X\": 0.2134486734867096, \"Y\": 0.9038684964179993}, {\"X\": 0.14512063562870026, \"Y\": 0.9038684964179993}]}, \"Id\": \"3355e268-bf84-4141-a12b-a4deba2be487\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3524398803711, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07202857732772827, \"Height\": 0.012452349998056889, \"Left\": 0.2302747219800949, \"Top\": 0.8918363451957703}, \"Polygon\": [{\"X\": 0.2302747219800949, \"Y\": 0.8918363451957703}, {\"X\": 0.3023033142089844, \"Y\": 0.8918363451957703}, {\"X\": 0.3023033142089844, \"Y\": 0.9042887091636658}, {\"X\": 0.2302747219800949, \"Y\": 0.9042887091636658}]}, \"Id\": \"31abcbcf-519a-4be8-9a94-42b3ef195c0f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.47404479980469, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005811970215290785, \"Height\": 0.0023365600500255823, \"Left\": 0.30652132630348206, \"Top\": 0.8967095017433167}, \"Polygon\": [{\"X\": 0.30652132630348206, \"Y\": 0.8967095017433167}, {\"X\": 0.31233328580856323, \"Y\": 0.8967095017433167}, {\"X\": 0.31233328580856323, \"Y\": 0.8990460634231567}, {\"X\": 0.30652132630348206, \"Y\": 0.8990460634231567}]}, \"Id\": \"82e129c8-2759-43ff-9de9-b2c9bb77077d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60417175292969, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02664560079574585, \"Height\": 0.01300134975463152, \"Left\": 0.3166055977344513, \"Top\": 0.8912904262542725}, \"Polygon\": [{\"X\": 0.3166055977344513, \"Y\": 0.8912904262542725}, {\"X\": 0.34325119853019714, \"Y\": 0.8912904262542725}, {\"X\": 0.34325119853019714, \"Y\": 0.9042917490005493}, {\"X\": 0.3166055977344513, \"Y\": 0.9042917490005493}]}, \"Id\": \"b84ea3d7-f8a0-425c-b190-13eaa312cd8a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.04234313964844, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0051032500341534615, \"Height\": 0.0022873301059007645, \"Left\": 0.3477853536605835, \"Top\": 0.89664226770401}, \"Polygon\": [{\"X\": 0.3477853536605835, \"Y\": 0.89664226770401}, {\"X\": 0.3528886139392853, \"Y\": 0.89664226770401}, {\"X\": 0.3528886139392853, \"Y\": 0.8989295959472656}, {\"X\": 0.3477853536605835, \"Y\": 0.8989295959472656}]}, \"Id\": \"0ec40808-9222-45cf-88c2-2012f7bc271d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05558776855469, \"Text\": \"2039726014\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09109179675579071, \"Height\": 0.010344759561121464, \"Left\": 0.3566265106201172, \"Top\": 0.8916869163513184}, \"Polygon\": [{\"X\": 0.3566265106201172, \"Y\": 0.8916869163513184}, {\"X\": 0.4477182924747467, \"Y\": 0.8916869163513184}, {\"X\": 0.4477182924747467, \"Y\": 0.902031660079956}, {\"X\": 0.3566265106201172, \"Y\": 0.902031660079956}]}, \"Id\": \"24d771ee-8096-46c9-8cb2-e584653bf216\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32718658447266, \"Text\": \"-249\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03260483965277672, \"Height\": 0.009966840036213398, \"Left\": 0.7451424598693848, \"Top\": 0.8918997645378113}, \"Polygon\": [{\"X\": 0.7451424598693848, \"Y\": 0.8918997645378113}, {\"X\": 0.7777472734451294, \"Y\": 0.8918997645378113}, {\"X\": 0.7777472734451294, \"Y\": 0.901866614818573}, {\"X\": 0.7451424598693848, \"Y\": 0.901866614818573}]}, \"Id\": \"24b331d6-7ec9-4dc0-8eec-46bdbacefb6e\", \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.99203491210938, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6692200303077698, \"Height\": 0.19555626809597015, \"Left\": 0.11781105399131775, \"Top\": 0.37593579292297363}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.37593579292297363}, {\"X\": 0.7870311141014099, \"Y\": 0.37593579292297363}, {\"X\": 0.7870311141014099, \"Y\": 0.571492075920105}, {\"X\": 0.11781105399131775, \"Y\": 0.571492075920105}]}, \"Id\": \"776964a9-3f07-47cc-9bc5-e94e6bbd4912\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c363a153-2172-4a36-857e-2ff4fdcb2cbc\", \"9f7a8ae0-e58f-45fa-a22e-7bec30b09ec6\", \"d32a9497-582c-4cb0-a526-70ef5c1417c4\", \"85cbbba7-1b9c-47e2-a6c1-e202b4320247\", \"157a9dc6-cb60-4661-a10d-2f812b3ac62c\", \"6c6e2293-8a65-4566-8d90-bdd1c4ec5fb8\", \"c3cdc98b-9866-401f-81ac-ad599d843df9\", \"8316f116-d45a-4227-91a5-8734a6e3cd54\", \"f901af63-e39b-48b2-b31e-a7e5213cf2dc\", \"c07f3736-5d78-4a22-89b3-8643efdf949a\", \"cc6d295c-e3e6-4674-b8c1-376b4ba6a559\", \"84aaef4a-537c-4ac0-b772-b17c5d606684\", \"c3bac87a-004d-414d-bcba-c9268430c6b3\", \"3075cc47-a4bf-404c-bcdb-28250c795589\", \"b9d530d7-6927-475e-86e8-c0d561bf98da\", \"fc17df76-e630-4d3d-9069-c86cbb5c537c\", \"5755eee0-5853-44de-8a9b-f0162863ac92\", \"3865fe27-7632-493d-88d0-c17f28c27eab\", \"7cb95a28-81fa-453b-ac25-f25b21e35b29\", \"f2b30195-5b0d-4273-86d6-6dd97611abf4\", \"a7fdb7ed-e29c-4afe-aea5-3a26f4691fe0\", \"2259378b-99b5-4665-96a1-5b7a2a49c7d1\", \"d6f81c2c-c9bf-4088-b633-12cec85b6279\", \"8e2e6374-7b19-480c-982f-2e9a6e0f455d\", \"6586b2a6-edb8-46b9-bcaf-7dcb10f7426e\", \"48049baa-b485-4921-9ac4-982ab817ccbe\", \"f02c8dc1-0b01-4467-91f1-a9962dfe5d20\", \"3bb0353f-1ac5-42e5-aa36-6e160fbc3f46\", \"1f6c712c-6918-48ea-994b-249a38ffe83f\", \"5fc7b0e7-f9fd-458f-be20-839e0a13e25f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 98.58727264404297, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.018999552354216576, \"Left\": 0.11781105399131775, \"Top\": 0.37593579292297363}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.37593579292297363}, {\"X\": 0.22297419607639313, \"Y\": 0.37593579292297363}, {\"X\": 0.22297419607639313, \"Y\": 0.39493533968925476}, {\"X\": 0.11781105399131775, \"Y\": 0.39493533968925476}]}, \"Id\": \"c363a153-2172-4a36-857e-2ff4fdcb2cbc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a2e51a25-a597-4484-95a6-8f3be25e6626\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 98.91622924804688, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.018999552354216576, \"Left\": 0.22297419607639313, \"Top\": 0.37593579292297363}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.37593579292297363}, {\"X\": 0.5767048001289368, \"Y\": 0.37593579292297363}, {\"X\": 0.5767048001289368, \"Y\": 0.39493533968925476}, {\"X\": 0.22297419607639313, \"Y\": 0.39493533968925476}]}, \"Id\": \"9f7a8ae0-e58f-45fa-a22e-7bec30b09ec6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6ffcdf83-f2da-4414-9231-bfc7fe6daee2\", \"1eda99e6-f9ec-4911-ae08-905ff0f41c82\", \"92403db6-c816-4a0a-a5e6-1c2df4a055fd\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 98.60929870605469, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.018999552354216576, \"Left\": 0.5767048001289368, \"Top\": 0.37593579292297363}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.37593579292297363}, {\"X\": 0.7870311141014099, \"Y\": 0.37593579292297363}, {\"X\": 0.7870311141014099, \"Y\": 0.39493533968925476}, {\"X\": 0.5767048001289368, \"Y\": 0.39493533968925476}]}, \"Id\": \"d32a9497-582c-4cb0-a526-70ef5c1417c4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9b499b63-324d-4d88-82b4-10f51f2e6f8b\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.39137268066406, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.019926350563764572, \"Left\": 0.11781105399131775, \"Top\": 0.39493533968925476}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.39493533968925476}, {\"X\": 0.22297419607639313, \"Y\": 0.39493533968925476}, {\"X\": 0.22297419607639313, \"Y\": 0.41486167907714844}, {\"X\": 0.11781105399131775, \"Y\": 0.41486167907714844}]}, \"Id\": \"85cbbba7-1b9c-47e2-a6c1-e202b4320247\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e07ffc9e-34d2-403e-9f33-8d39bbc9fe9a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.6946792602539, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.019926350563764572, \"Left\": 0.22297419607639313, \"Top\": 0.39493533968925476}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.39493533968925476}, {\"X\": 0.5767048001289368, \"Y\": 0.39493533968925476}, {\"X\": 0.5767048001289368, \"Y\": 0.41486167907714844}, {\"X\": 0.22297419607639313, \"Y\": 0.41486167907714844}]}, \"Id\": \"157a9dc6-cb60-4661-a10d-2f812b3ac62c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"654beef5-4ce4-47ce-9c02-955da4e3d970\", \"275ceac5-d9e1-4c52-9b2a-79a23e782468\", \"4b4e7ba7-c579-4bbf-82fc-5b630d7a04bf\", \"9a7a4bf5-430d-402d-8d46-d0299e529e29\", \"1898310c-5c79-4f28-a2ec-3a079f8a1654\", \"2c1e5528-7e3e-4660-bd77-862277e15ddc\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66380310058594, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.019926350563764572, \"Left\": 0.5767048001289368, \"Top\": 0.39493533968925476}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.39493533968925476}, {\"X\": 0.7870311141014099, \"Y\": 0.39493533968925476}, {\"X\": 0.7870311141014099, \"Y\": 0.41486167907714844}, {\"X\": 0.5767048001289368, \"Y\": 0.41486167907714844}]}, \"Id\": \"6c6e2293-8a65-4566-8d90-bdd1c4ec5fb8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"52ba5776-886e-4c35-8548-8c5eda30b7ec\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.4610366821289, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.018999552354216576, \"Left\": 0.11781105399131775, \"Top\": 0.4148617088794708}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.4148617088794708}, {\"X\": 0.22297419607639313, \"Y\": 0.4148617088794708}, {\"X\": 0.22297419607639313, \"Y\": 0.43386125564575195}, {\"X\": 0.11781105399131775, \"Y\": 0.43386125564575195}]}, \"Id\": \"c3cdc98b-9866-401f-81ac-ad599d843df9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6b2e411b-73d9-4b62-bc98-233e426113bd\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.660400390625, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.018999552354216576, \"Left\": 0.22297419607639313, \"Top\": 0.4148617088794708}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.4148617088794708}, {\"X\": 0.5767048001289368, \"Y\": 0.4148617088794708}, {\"X\": 0.5767048001289368, \"Y\": 0.43386125564575195}, {\"X\": 0.22297419607639313, \"Y\": 0.43386125564575195}]}, \"Id\": \"8316f116-d45a-4227-91a5-8734a6e3cd54\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9b2492b-6af0-49c1-be62-959096240f64\", \"42c8d325-3813-4fc2-a581-c93dfaeb8ffc\", \"0c9adee5-025c-47ed-8941-4d3971f49ffb\", \"09632fbd-4e41-4250-86c9-adb4a5695345\", \"3fb51a7f-b23d-480b-96a8-e238e2d2e168\", \"eba5a9f0-53eb-4a17-9b39-c7abf28621c1\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.52216339111328, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.018999552354216576, \"Left\": 0.5767048001289368, \"Top\": 0.4148617088794708}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.4148617088794708}, {\"X\": 0.7870311141014099, \"Y\": 0.4148617088794708}, {\"X\": 0.7870311141014099, \"Y\": 0.43386125564575195}, {\"X\": 0.5767048001289368, \"Y\": 0.43386125564575195}]}, \"Id\": \"f901af63-e39b-48b2-b31e-a7e5213cf2dc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6d81df8c-8e69-4ecb-a64c-61b44b1cefa7\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.71648406982422, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.019926350563764572, \"Left\": 0.11781105399131775, \"Top\": 0.43386125564575195}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.43386125564575195}, {\"X\": 0.22297419607639313, \"Y\": 0.43386125564575195}, {\"X\": 0.22297419607639313, \"Y\": 0.45378759503364563}, {\"X\": 0.11781105399131775, \"Y\": 0.45378759503364563}]}, \"Id\": \"c07f3736-5d78-4a22-89b3-8643efdf949a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bd71e87b-401a-4363-8d6a-5240b05c6312\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.84144592285156, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.019926350563764572, \"Left\": 0.22297419607639313, \"Top\": 0.43386125564575195}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.43386125564575195}, {\"X\": 0.5767048001289368, \"Y\": 0.43386125564575195}, {\"X\": 0.5767048001289368, \"Y\": 0.45378759503364563}, {\"X\": 0.22297419607639313, \"Y\": 0.45378759503364563}]}, \"Id\": \"cc6d295c-e3e6-4674-b8c1-376b4ba6a559\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"361934af-30c8-4063-b64b-a0d0ec0f71c8\", \"f6063693-08b3-465c-9ab0-5652a2912e85\", \"87f909ab-8bb7-45c8-a136-485cc952e178\", \"b28f2c4f-5ca6-471d-a41b-550df24ab69d\", \"734e5576-674c-4573-a8db-c8542252c7a7\", \"c7f56113-ef6b-48e3-81b5-c078cdd5aec2\", \"6d73e824-0d94-41a7-88f2-efb9a038d4d7\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.57716369628906, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.019926350563764572, \"Left\": 0.5767048001289368, \"Top\": 0.43386125564575195}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.43386125564575195}, {\"X\": 0.7870311141014099, \"Y\": 0.43386125564575195}, {\"X\": 0.7870311141014099, \"Y\": 0.45378759503364563}, {\"X\": 0.5767048001289368, \"Y\": 0.45378759503364563}]}, \"Id\": \"84aaef4a-537c-4ac0-b772-b17c5d606684\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40ea8ae4-ec72-4f23-b85f-c4c2593d1efb\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.44808197021484, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.018999511376023293, \"Left\": 0.11781105399131775, \"Top\": 0.45378759503364563}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.45378759503364563}, {\"X\": 0.22297419607639313, \"Y\": 0.45378759503364563}, {\"X\": 0.22297419607639313, \"Y\": 0.47278711199760437}, {\"X\": 0.11781105399131775, \"Y\": 0.47278711199760437}]}, \"Id\": \"c3bac87a-004d-414d-bcba-c9268430c6b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"15cb9988-f50e-43d1-a5bf-ee75d0e279bd\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.69473266601562, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.018999511376023293, \"Left\": 0.22297419607639313, \"Top\": 0.45378759503364563}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.45378759503364563}, {\"X\": 0.5767048001289368, \"Y\": 0.45378759503364563}, {\"X\": 0.5767048001289368, \"Y\": 0.47278711199760437}, {\"X\": 0.22297419607639313, \"Y\": 0.47278711199760437}]}, \"Id\": \"3075cc47-a4bf-404c-bcdb-28250c795589\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5cc38bd3-7068-4650-9a7b-64733bdec46b\", \"4f422c52-a560-4373-b707-e02f8d0a902b\", \"c97efa50-3b0c-4412-bfe7-dd69810b6624\", \"a82837d9-1250-4f57-9099-be8b4604c550\", \"728eb94a-c854-4d80-a86b-51c56df1cb7f\", \"63ee1bf0-268d-45e4-b768-5186c505521a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.14813232421875, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.018999511376023293, \"Left\": 0.5767048001289368, \"Top\": 0.45378759503364563}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.45378759503364563}, {\"X\": 0.7870311141014099, \"Y\": 0.45378759503364563}, {\"X\": 0.7870311141014099, \"Y\": 0.47278711199760437}, {\"X\": 0.5767048001289368, \"Y\": 0.47278711199760437}]}, \"Id\": \"b9d530d7-6927-475e-86e8-c0d561bf98da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f2f616b-bb23-41b5-bcba-1c1c8b514428\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.6116714477539, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.019926350563764572, \"Left\": 0.11781105399131775, \"Top\": 0.47278711199760437}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.47278711199760437}, {\"X\": 0.22297419607639313, \"Y\": 0.47278711199760437}, {\"X\": 0.22297419607639313, \"Y\": 0.49271345138549805}, {\"X\": 0.11781105399131775, \"Y\": 0.49271345138549805}]}, \"Id\": \"fc17df76-e630-4d3d-9069-c86cbb5c537c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4ece52a-dd4d-4ff0-9e8a-8c57b699857b\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.57788848876953, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.019926350563764572, \"Left\": 0.22297419607639313, \"Top\": 0.47278711199760437}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.47278711199760437}, {\"X\": 0.5767048001289368, \"Y\": 0.47278711199760437}, {\"X\": 0.5767048001289368, \"Y\": 0.49271345138549805}, {\"X\": 0.22297419607639313, \"Y\": 0.49271345138549805}]}, \"Id\": \"5755eee0-5853-44de-8a9b-f0162863ac92\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e3f0907-83f1-45b4-a27d-10f5ca9b62e1\", \"d9d61396-b9d6-4a78-9e13-047153cb4542\", \"39eb096b-bde7-4c4d-ad0d-2d739d77c673\", \"ed83f667-03f8-4ed3-9257-7c373583f299\", \"a08e8efb-b685-44ef-9426-83c3c4d549b6\", \"66e0df67-0313-40a7-b612-8e61666099a7\", \"d3756584-8966-432b-b775-1b2e116c3e7d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.53504180908203, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.019926350563764572, \"Left\": 0.5767048001289368, \"Top\": 0.47278711199760437}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.47278711199760437}, {\"X\": 0.7870311141014099, \"Y\": 0.47278711199760437}, {\"X\": 0.7870311141014099, \"Y\": 0.49271345138549805}, {\"X\": 0.5767048001289368, \"Y\": 0.49271345138549805}]}, \"Id\": \"3865fe27-7632-493d-88d0-c17f28c27eab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3242667a-8ec7-4fcd-b882-347821e7ec35\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.65364074707031, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.019926350563764572, \"Left\": 0.11781105399131775, \"Top\": 0.49271345138549805}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.49271345138549805}, {\"X\": 0.22297419607639313, \"Y\": 0.49271345138549805}, {\"X\": 0.22297419607639313, \"Y\": 0.5126398205757141}, {\"X\": 0.11781105399131775, \"Y\": 0.5126398205757141}]}, \"Id\": \"7cb95a28-81fa-453b-ac25-f25b21e35b29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1a323747-3e1e-446a-9a53-1c313e8fe63f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.75900268554688, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.019926350563764572, \"Left\": 0.22297419607639313, \"Top\": 0.49271345138549805}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.49271345138549805}, {\"X\": 0.5767048001289368, \"Y\": 0.49271345138549805}, {\"X\": 0.5767048001289368, \"Y\": 0.5126398205757141}, {\"X\": 0.22297419607639313, \"Y\": 0.5126398205757141}]}, \"Id\": \"f2b30195-5b0d-4273-86d6-6dd97611abf4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"33ba5d45-fb3a-4cc5-a62e-da32f3fd225f\", \"e81ae489-88a2-45e5-a40f-1e3eefb61ce2\", \"fdece126-b715-421d-98f7-4d79423c1766\", \"e9fe4348-097c-41b9-ac43-86d21fe950b7\", \"911176a4-cf0e-4657-8493-8d9c7afc8933\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.45857238769531, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.019926350563764572, \"Left\": 0.5767048001289368, \"Top\": 0.49271345138549805}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.49271345138549805}, {\"X\": 0.7870311141014099, \"Y\": 0.49271345138549805}, {\"X\": 0.7870311141014099, \"Y\": 0.5126398205757141}, {\"X\": 0.5767048001289368, \"Y\": 0.5126398205757141}]}, \"Id\": \"a7fdb7ed-e29c-4afe-aea5-3a26f4691fe0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"574a6ecf-8687-4388-97c4-ee0010876b81\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.54955291748047, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.01946297287940979, \"Left\": 0.11781105399131775, \"Top\": 0.5126398205757141}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.5126398205757141}, {\"X\": 0.22297419607639313, \"Y\": 0.5126398205757141}, {\"X\": 0.22297419607639313, \"Y\": 0.5321027636528015}, {\"X\": 0.11781105399131775, \"Y\": 0.5321027636528015}]}, \"Id\": \"2259378b-99b5-4665-96a1-5b7a2a49c7d1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"97bbf8fd-c401-456e-92a0-83c207d82548\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.51697540283203, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.01946297287940979, \"Left\": 0.22297419607639313, \"Top\": 0.5126398205757141}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.5126398205757141}, {\"X\": 0.5767048001289368, \"Y\": 0.5126398205757141}, {\"X\": 0.5767048001289368, \"Y\": 0.5321027636528015}, {\"X\": 0.22297419607639313, \"Y\": 0.5321027636528015}]}, \"Id\": \"d6f81c2c-c9bf-4088-b633-12cec85b6279\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e468d08a-5a9e-45c9-87c6-d94c790b1ca9\", \"e7268e60-dfbe-45a3-a49e-bd55a84cbc4c\", \"733671b3-cfe9-4e82-aa3c-4e0b601ce966\", \"e57b2b74-d49c-49ec-b72c-7a61700f8826\", \"c9eb7338-11b1-4fcf-8e96-978811468c8f\", \"490e6347-49b3-4a69-aa61-03a77dde0a1a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.49775695800781, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.01946297287940979, \"Left\": 0.5767048001289368, \"Top\": 0.5126398205757141}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.5126398205757141}, {\"X\": 0.7870311141014099, \"Y\": 0.5126398205757141}, {\"X\": 0.7870311141014099, \"Y\": 0.5321027636528015}, {\"X\": 0.5767048001289368, \"Y\": 0.5321027636528015}]}, \"Id\": \"8e2e6374-7b19-480c-982f-2e9a6e0f455d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2b0bf13-53ea-40b0-821d-a72ddcf1241d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.54756164550781, \"RowIndex\": 9, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.019926350563764572, \"Left\": 0.11781105399131775, \"Top\": 0.5321027636528015}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.5321027636528015}, {\"X\": 0.22297419607639313, \"Y\": 0.5321027636528015}, {\"X\": 0.22297419607639313, \"Y\": 0.5520291328430176}, {\"X\": 0.11781105399131775, \"Y\": 0.5520291328430176}]}, \"Id\": \"6586b2a6-edb8-46b9-bcaf-7dcb10f7426e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54942e26-656d-45d8-ad65-7decc157fac1\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66758728027344, \"RowIndex\": 9, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.019926350563764572, \"Left\": 0.22297419607639313, \"Top\": 0.5321027636528015}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.5321027636528015}, {\"X\": 0.5767048001289368, \"Y\": 0.5321027636528015}, {\"X\": 0.5767048001289368, \"Y\": 0.5520291328430176}, {\"X\": 0.22297419607639313, \"Y\": 0.5520291328430176}]}, \"Id\": \"48049baa-b485-4921-9ac4-982ab817ccbe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4970c45b-53ee-484c-a91e-6ce25065e063\", \"1315cea7-f95f-46d4-b292-6c639443ecdd\", \"0de92abc-47ad-497f-abd3-bcbad198b4f2\", \"74cf6ff1-c10f-4961-bf0e-7cd098673bb3\", \"27d79cc9-4965-4e63-88c1-d513f635af43\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.58116149902344, \"RowIndex\": 9, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.019926350563764572, \"Left\": 0.5767048001289368, \"Top\": 0.5321027636528015}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.5321027636528015}, {\"X\": 0.7870311141014099, \"Y\": 0.5321027636528015}, {\"X\": 0.7870311141014099, \"Y\": 0.5520291328430176}, {\"X\": 0.5767048001289368, \"Y\": 0.5520291328430176}]}, \"Id\": \"f02c8dc1-0b01-4467-91f1-a9962dfe5d20\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aa3c56c1-743d-4bf7-9f29-dbc4965041dd\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.83566284179688, \"RowIndex\": 10, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10516314208507538, \"Height\": 0.019462931901216507, \"Left\": 0.11781105399131775, \"Top\": 0.5520291328430176}, \"Polygon\": [{\"X\": 0.11781105399131775, \"Y\": 0.5520291328430176}, {\"X\": 0.22297419607639313, \"Y\": 0.5520291328430176}, {\"X\": 0.22297419607639313, \"Y\": 0.571492075920105}, {\"X\": 0.11781105399131775, \"Y\": 0.571492075920105}]}, \"Id\": \"3bb0353f-1ac5-42e5-aa36-6e160fbc3f46\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"115b9cf5-16b6-4464-9f6b-42958dfca44e\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.93067932128906, \"RowIndex\": 10, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35373061895370483, \"Height\": 0.019462931901216507, \"Left\": 0.22297419607639313, \"Top\": 0.5520291328430176}, \"Polygon\": [{\"X\": 0.22297419607639313, \"Y\": 0.5520291328430176}, {\"X\": 0.5767048001289368, \"Y\": 0.5520291328430176}, {\"X\": 0.5767048001289368, \"Y\": 0.571492075920105}, {\"X\": 0.22297419607639313, \"Y\": 0.571492075920105}]}, \"Id\": \"1f6c712c-6918-48ea-994b-249a38ffe83f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0105691-02e6-4368-80d6-b90624ba1395\", \"f7e7c4ba-6921-4f5b-afe5-ebdeec5764dc\", \"8d4e46f8-364a-4912-a6fc-088123ebf220\", \"4bb4eecd-36e8-487f-8e83-590a0cc9dfe9\", \"66638eb8-37ff-4b08-beb8-48c5c7ab5dc8\", \"31f318df-3b0f-4745-9dab-4bd53ea0532e\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 98.27898406982422, \"RowIndex\": 10, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21032629907131195, \"Height\": 0.019462931901216507, \"Left\": 0.5767048001289368, \"Top\": 0.5520291328430176}, \"Polygon\": [{\"X\": 0.5767048001289368, \"Y\": 0.5520291328430176}, {\"X\": 0.7870311141014099, \"Y\": 0.5520291328430176}, {\"X\": 0.7870311141014099, \"Y\": 0.571492075920105}, {\"X\": 0.5767048001289368, \"Y\": 0.571492075920105}]}, \"Id\": \"5fc7b0e7-f9fd-458f-be20-839e0a13e25f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f48fbd3-b0fe-45c9-8329-65bdcd0c526a\"]}], \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.98358154296875, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6697976589202881, \"Height\": 0.13760001957416534, \"Left\": 0.11720507591962814, \"Top\": 0.7703458666801453}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.7703458666801453}, {\"X\": 0.7870027422904968, \"Y\": 0.7703458666801453}, {\"X\": 0.7870027422904968, \"Y\": 0.9079458713531494}, {\"X\": 0.11720507591962814, \"Y\": 0.9079458713531494}]}, \"Id\": \"5685498d-d196-42a7-8b40-594d6d886ca9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"329cdd08-3a8b-429b-a395-2f079454b7f3\", \"8105ef05-505d-4c7a-9f0d-e129ab0d2d32\", \"4616cf6a-95bc-48cd-8a30-5d92a39a6e0a\", \"d77062e8-6255-40b8-a99d-cc93811a7031\", \"6bff9490-841d-446c-9323-02a09d74bd15\", \"47cf880c-f0bd-415f-9571-3ac5606117ca\", \"a34f0916-b403-4d23-97e8-d1452d4be539\", \"e5c5b274-9ddd-4243-8ee9-e46cc8e08bd2\", \"fd212514-4972-48aa-8feb-c2fc9a4d3b87\", \"4d12d39a-1ca8-45d7-9008-ff45387f2513\", \"e065d913-0678-4b93-8e55-47b6c224f77b\", \"72302d54-eaad-45c7-bdf3-5f3ecfcf7d7c\", \"cdac14ba-0a05-41d2-afbe-19d4fb02161b\", \"d7405ba0-ea20-4d9a-9c6a-e8bcbe8c360d\", \"474e51d7-a29d-4f9d-b416-3394574e6cbf\", \"05314ea0-dfdb-465f-92e7-1e58bf4ee914\", \"51b896c2-77de-4a98-b75e-7b0b20f93fd2\", \"f85dd051-d806-43c0-a868-76c414b56286\", \"7a791182-1a94-4939-a726-b2f006f8a1ac\", \"020ece80-3375-49b1-9d51-74274f344907\", \"6ce70611-8f5f-4123-807e-5362455715d7\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.49766540527344, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.7703458666801453}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.7703458666801453}, {\"X\": 0.2240537405014038, \"Y\": 0.7703458666801453}, {\"X\": 0.2240537405014038, \"Y\": 0.7900030016899109}, {\"X\": 0.11720507591962814, \"Y\": 0.7900030016899109}]}, \"Id\": \"329cdd08-3a8b-429b-a395-2f079454b7f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c86498c-c59a-4655-9c33-7b6988a0a9b5\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 98.18523406982422, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.7703458666801453}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.7703458666801453}, {\"X\": 0.5764948725700378, \"Y\": 0.7703458666801453}, {\"X\": 0.5764948725700378, \"Y\": 0.7900030016899109}, {\"X\": 0.2240537405014038, \"Y\": 0.7900030016899109}]}, \"Id\": \"8105ef05-505d-4c7a-9f0d-e129ab0d2d32\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"239f5031-affe-4ca3-bc11-d253f933d628\", \"07710349-b702-4983-8cb3-3c750f527212\", \"d23aa584-011f-4058-8277-8c4acaf1b77f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.80974578857422, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.7703458666801453}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.7703458666801453}, {\"X\": 0.7870027422904968, \"Y\": 0.7703458666801453}, {\"X\": 0.7870027422904968, \"Y\": 0.7900030016899109}, {\"X\": 0.5764948725700378, \"Y\": 0.7900030016899109}]}, \"Id\": \"4616cf6a-95bc-48cd-8a30-5d92a39a6e0a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"edc0e838-68dd-422e-a869-77e7647b31da\", \"993b039f-0a16-475b-9f45-d083540e8425\", \"eec65c0f-f9e5-4354-9a18-3670ac71302d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.60704803466797, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.7900030016899109}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.7900030016899109}, {\"X\": 0.2240537405014038, \"Y\": 0.7900030016899109}, {\"X\": 0.2240537405014038, \"Y\": 0.8096601366996765}, {\"X\": 0.11720507591962814, \"Y\": 0.8096601366996765}]}, \"Id\": \"d77062e8-6255-40b8-a99d-cc93811a7031\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a6e0ba9e-daad-4c91-8d47-e119b5818f71\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.82364654541016, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.7900030016899109}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.7900030016899109}, {\"X\": 0.5764948725700378, \"Y\": 0.7900030016899109}, {\"X\": 0.5764948725700378, \"Y\": 0.8096601366996765}, {\"X\": 0.2240537405014038, \"Y\": 0.8096601366996765}]}, \"Id\": \"6bff9490-841d-446c-9323-02a09d74bd15\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a4ffb3a-c76c-4ef9-a164-2dc86ef890fd\", \"880dd167-5e3a-451e-9565-03ef279b914b\", \"98169651-6941-4496-96ab-ccd538226771\", \"8b2dc4e1-4129-4142-ae89-3fe3e8620fd1\", \"6ca57478-01c2-476a-a0e9-88520f672fb7\", \"f8db1dea-949f-4cf9-a74b-b3cdf6d87854\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.16109466552734, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.7900030016899109}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.7900030016899109}, {\"X\": 0.7870027422904968, \"Y\": 0.7900030016899109}, {\"X\": 0.7870027422904968, \"Y\": 0.8096601366996765}, {\"X\": 0.5764948725700378, \"Y\": 0.8096601366996765}]}, \"Id\": \"47cf880c-f0bd-415f-9571-3ac5606117ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b95a9677-b548-471d-bd0f-4e02b13622c0\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.49166107177734, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.8096601366996765}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.8096601366996765}, {\"X\": 0.2240537405014038, \"Y\": 0.8096601366996765}, {\"X\": 0.2240537405014038, \"Y\": 0.8293172717094421}, {\"X\": 0.11720507591962814, \"Y\": 0.8293172717094421}]}, \"Id\": \"a34f0916-b403-4d23-97e8-d1452d4be539\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"89cc88f3-aac7-4b76-945a-8c419a854b97\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.77110290527344, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.8096601366996765}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.8096601366996765}, {\"X\": 0.5764948725700378, \"Y\": 0.8096601366996765}, {\"X\": 0.5764948725700378, \"Y\": 0.8293172717094421}, {\"X\": 0.2240537405014038, \"Y\": 0.8293172717094421}]}, \"Id\": \"e5c5b274-9ddd-4243-8ee9-e46cc8e08bd2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7daa34af-36c3-4d8e-8019-c81bb4d72d04\", \"b11ccde6-d8bc-4c09-b8ed-1fb7aa7dd8d6\", \"5cbcabc0-2508-49d1-8e4e-20ab55ecb542\", \"fc584374-e4b2-4fe2-a0ac-156e2e2d13fc\", \"9e6d4e83-ebc1-44bd-907c-a34cf7ebb59e\", \"2f28c6d1-cd49-4464-977f-b560c288086f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.61103820800781, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.8096601366996765}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.8096601366996765}, {\"X\": 0.7870027422904968, \"Y\": 0.8096601366996765}, {\"X\": 0.7870027422904968, \"Y\": 0.8293172717094421}, {\"X\": 0.5764948725700378, \"Y\": 0.8293172717094421}]}, \"Id\": \"fd212514-4972-48aa-8feb-c2fc9a4d3b87\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aca627b7-e750-4566-95db-ae0dd621e22d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.44573211669922, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.8293172717094421}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.8293172717094421}, {\"X\": 0.2240537405014038, \"Y\": 0.8293172717094421}, {\"X\": 0.2240537405014038, \"Y\": 0.8489744067192078}, {\"X\": 0.11720507591962814, \"Y\": 0.8489744067192078}]}, \"Id\": \"4d12d39a-1ca8-45d7-9008-ff45387f2513\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"801b096a-d396-4402-bb9f-52446729b09d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.5177001953125, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.8293172717094421}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.8293172717094421}, {\"X\": 0.5764948725700378, \"Y\": 0.8293172717094421}, {\"X\": 0.5764948725700378, \"Y\": 0.8489744067192078}, {\"X\": 0.2240537405014038, \"Y\": 0.8489744067192078}]}, \"Id\": \"e065d913-0678-4b93-8e55-47b6c224f77b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2508570-4241-4519-9779-45655dcd7ac1\", \"5b667e08-52a0-4c63-b08a-fda61c3c2f39\", \"67452dba-4dda-4a33-bc7a-430e04f9eac4\", \"cb61a70b-7548-4d6f-9c70-0691e866af59\", \"fee9736b-f20c-4de6-b08b-5bc970dc08a5\", \"7c58c5ef-2e1f-4aa1-8dbe-ea21249e4d86\", \"9020693e-723c-47d5-9fbb-17a306d4560f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.38034057617188, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.8293172717094421}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.8293172717094421}, {\"X\": 0.7870027422904968, \"Y\": 0.8293172717094421}, {\"X\": 0.7870027422904968, \"Y\": 0.8489744067192078}, {\"X\": 0.5764948725700378, \"Y\": 0.8489744067192078}]}, \"Id\": \"72302d54-eaad-45c7-bdf3-5f3ecfcf7d7c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"29a468b6-fb33-4b3e-8b93-2a2f0caec87e\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.26339721679688, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.8489744663238525}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.8489744663238525}, {\"X\": 0.2240537405014038, \"Y\": 0.8489744663238525}, {\"X\": 0.2240537405014038, \"Y\": 0.8686316013336182}, {\"X\": 0.11720507591962814, \"Y\": 0.8686316013336182}]}, \"Id\": \"cdac14ba-0a05-41d2-afbe-19d4fb02161b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8b4657a-f702-4b87-bab8-c4cb2a347a0c\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63653564453125, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.8489744663238525}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.8489744663238525}, {\"X\": 0.5764948725700378, \"Y\": 0.8489744663238525}, {\"X\": 0.5764948725700378, \"Y\": 0.8686316013336182}, {\"X\": 0.2240537405014038, \"Y\": 0.8686316013336182}]}, \"Id\": \"d7405ba0-ea20-4d9a-9c6a-e8bcbe8c360d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e9ea83d-2349-45e5-8a0c-0e794a59372d\", \"340f03b7-eaf9-469e-b2c8-f48a221abbb5\", \"9ea88e2b-4922-4620-9777-9c7e9e539578\", \"86c8a9ce-9a5a-411c-94d6-6eaeb55d64a0\", \"46bf4934-4e61-459f-bdae-de863df728c9\", \"252dd2ae-d7e0-4399-9548-31ce6772b2ee\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.60281372070312, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.8489744663238525}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.8489744663238525}, {\"X\": 0.7870027422904968, \"Y\": 0.8489744663238525}, {\"X\": 0.7870027422904968, \"Y\": 0.8686316013336182}, {\"X\": 0.5764948725700378, \"Y\": 0.8686316013336182}]}, \"Id\": \"474e51d7-a29d-4f9d-b416-3394574e6cbf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"500043c3-2167-4670-8448-8ce71b07fd9a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.40393829345703, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.8686316013336182}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.8686316013336182}, {\"X\": 0.2240537405014038, \"Y\": 0.8686316013336182}, {\"X\": 0.2240537405014038, \"Y\": 0.8882887363433838}, {\"X\": 0.11720507591962814, \"Y\": 0.8882887363433838}]}, \"Id\": \"05314ea0-dfdb-465f-92e7-1e58bf4ee914\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"22c8fe58-b695-48dc-bf0c-2a7e8e3f23a6\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.28910827636719, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.8686316013336182}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.8686316013336182}, {\"X\": 0.5764948725700378, \"Y\": 0.8686316013336182}, {\"X\": 0.5764948725700378, \"Y\": 0.8882887363433838}, {\"X\": 0.2240537405014038, \"Y\": 0.8882887363433838}]}, \"Id\": \"51b896c2-77de-4a98-b75e-7b0b20f93fd2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a1b8fdcd-a2a8-4b08-a45c-9f4ba7a0e8a3\", \"3d9113f4-ba60-4e00-a1e7-faf3ebae1921\", \"6a0c8423-3981-4d38-906a-e1102dae4635\", \"7ec12707-f6da-48ee-b329-e5b76f2d2676\", \"71794c6b-f8a8-46e6-b23d-a2af2b314090\", \"2429cd46-cc73-4dba-bea2-79d06b17dd2f\", \"d35f802f-5640-4062-ba91-0dbd66756398\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.64840698242188, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.8686316013336182}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.8686316013336182}, {\"X\": 0.7870027422904968, \"Y\": 0.8686316013336182}, {\"X\": 0.7870027422904968, \"Y\": 0.8882887363433838}, {\"X\": 0.5764948725700378, \"Y\": 0.8882887363433838}]}, \"Id\": \"f85dd051-d806-43c0-a868-76c414b56286\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da92583b-7636-4864-a8de-0064c9a71cad\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 95.38286590576172, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10684866458177567, \"Height\": 0.01965714432299137, \"Left\": 0.11720507591962814, \"Top\": 0.8882887363433838}, \"Polygon\": [{\"X\": 0.11720507591962814, \"Y\": 0.8882887363433838}, {\"X\": 0.2240537405014038, \"Y\": 0.8882887363433838}, {\"X\": 0.2240537405014038, \"Y\": 0.9079458713531494}, {\"X\": 0.11720507591962814, \"Y\": 0.9079458713531494}]}, \"Id\": \"7a791182-1a94-4939-a726-b2f006f8a1ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3355e268-bf84-4141-a12b-a4deba2be487\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 95.66215515136719, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35244110226631165, \"Height\": 0.01965714432299137, \"Left\": 0.2240537405014038, \"Top\": 0.8882887363433838}, \"Polygon\": [{\"X\": 0.2240537405014038, \"Y\": 0.8882887363433838}, {\"X\": 0.5764948725700378, \"Y\": 0.8882887363433838}, {\"X\": 0.5764948725700378, \"Y\": 0.9079458713531494}, {\"X\": 0.2240537405014038, \"Y\": 0.9079458713531494}]}, \"Id\": \"020ece80-3375-49b1-9d51-74274f344907\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"31abcbcf-519a-4be8-9a94-42b3ef195c0f\", \"82e129c8-2759-43ff-9de9-b2c9bb77077d\", \"b84ea3d7-f8a0-425c-b190-13eaa312cd8a\", \"0ec40808-9222-45cf-88c2-2012f7bc271d\", \"24d771ee-8096-46c9-8cb2-e584653bf216\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 95.6961898803711, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21050788462162018, \"Height\": 0.01965714432299137, \"Left\": 0.5764948725700378, \"Top\": 0.8882887363433838}, \"Polygon\": [{\"X\": 0.5764948725700378, \"Y\": 0.8882887363433838}, {\"X\": 0.7870027422904968, \"Y\": 0.8882887363433838}, {\"X\": 0.7870027422904968, \"Y\": 0.9079458713531494}, {\"X\": 0.5764948725700378, \"Y\": 0.9079458713531494}]}, \"Id\": \"6ce70611-8f5f-4123-807e-5362455715d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"24b331d6-7ec9-4dc0-8eec-46bdbacefb6e\"]}], \"Page\": 1}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"242e3ac5-58c0-4a99-b330-01b2ecdd46ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"87b0e81e-4813-470c-961e-3614543aedd6\", \"f7ad6cd3-331f-4f7f-b17f-708d0ea95607\", \"5d0059ef-564f-42a9-bc16-2545a7cda9b1\", \"9013d78c-fb39-4c62-96c5-d668cef58457\", \"aed11a0b-6a3b-427f-8592-2ccbb79fa8f7\", \"d4649df0-64f8-4562-bd1c-8a8915a35b81\", \"96ead884-b15e-45a9-8188-5a51927f106f\", \"7fa94b3f-f175-4d2e-8c2e-00f5617a9f42\", \"ed48527d-d334-4784-9199-e027ecdde7a9\", \"866626a9-3970-4161-92a3-eea04992f3ff\", \"8d9f37c1-7575-4646-b527-2b7254108387\", \"ae64b4f8-5e36-4928-bfaf-039a745e5a8a\", \"e2288323-448e-4f5a-a411-c06bfe0431b3\", \"4d8a63e2-a854-4dd0-83fa-5cf9a3d680a9\", \"69546b37-3401-49fb-8955-1fa7eb3b5a6e\", \"39121657-6d85-487a-b9bf-edc12ca4b714\", \"86d65fa5-86b5-4dc5-8a9c-2e1161f1bb63\", \"2815b2f9-a11e-4ccf-8ee9-5df7ca20b172\", \"a43ca6e9-9f06-4a99-906b-e9d9dc5d2534\", \"d763d837-6266-4229-a950-4087161d5c2f\", \"3a6a444b-9a61-44bf-a791-970cbf9f04f7\", \"c99031ba-ce39-4bc5-84c9-4984080d919d\", \"f1e78785-cfa8-4d25-87db-1be8c88ce80a\", \"af269bcd-964b-45b4-9ff4-dc7828d26661\", \"c078ad85-8f25-46eb-80ba-b10dedd1b1c5\", \"9258a273-ee5a-4f68-8e5e-390c6c8fa4f3\", \"efa4e95f-230b-42d9-a10b-5f57243f7b5e\", \"787c464a-e47d-419b-9174-9f18b4bf2c8d\", \"63893658-fc4e-43f7-8092-a997cdc68e9d\", \"32088823-5de2-424b-a5ab-6e9e73a833ee\", \"e0462c2f-9410-43af-a294-ed67160edc8d\", \"6dc1ca9f-7a19-41e3-b6fb-5fefef423a67\", \"cd3b7844-44a0-417d-98a1-57b86ac9fb6e\", \"f53c8373-47f5-4034-b9f0-4bbd2d53ed63\", \"082456a6-4b82-4ed3-bfd2-61a6988d158f\", \"ad75a754-aa0a-44d8-8f78-ad8d3f3ba9bc\", \"5dee0524-530a-41fe-b74c-42e27adfe4d5\", \"ccecdb8b-1aaf-4c92-bc07-0f62e02621d3\", \"f928244f-d865-427b-98b0-4bae4c64e85c\", \"6fd086c8-deb7-481b-ace7-cc210856dd30\", \"034f7aa3-0c1f-4f51-a91d-0c446687d14f\", \"b1b8022b-df9e-4b88-a191-e3005b568e5c\", \"e0fcbae6-5be3-45b7-8809-8fe047a32f31\", \"ae087e4a-32a1-40b4-a334-31fda9792ba0\", \"8e8d911f-1d21-4086-97a1-e5386992c22f\", \"2ec16601-f637-4ecb-a40a-233f80f417f2\", \"23376f31-95e5-47f4-adde-18679c8dda53\", \"cb8e6971-0e60-4126-b1e7-b0fa5b8eb70b\", \"6e120ed7-d688-4009-8286-6f3707caba2e\", \"548aafa0-8ca7-4bc1-b6a7-5e48de205914\", \"9b61c6c0-410c-45e9-8a65-9c3317d3599d\", \"9c58ccc4-6c10-4184-af8f-7c941777bf1b\", \"1487433c-4218-4589-b159-4c4e2ee8d655\", \"2415d7e9-21db-4452-a79d-f060b027d728\", \"e0a69455-4c13-4bec-bcd9-ac8c10084741\", \"d5e53760-ba04-430e-9154-08db58afd9ef\", \"ae0159bc-436a-4092-b469-c7f75940d9ec\", \"c11c6338-a6f5-4a34-9580-9dd5442532ca\", \"6c7e591e-f2c5-4232-9e2d-274e5a70e46b\", \"5e4a2eeb-f777-4022-b2cb-727fcacfc6c9\", \"77ab4e66-7ca0-46ac-9c74-e8a9ceb6a0f1\", \"62929386-dda3-4161-be0b-1e78960da5e1\", \"50cc49c9-747c-4e44-bd3a-7bde0caffc83\", \"9d2f3673-f098-4625-804e-649872d7dc5c\", \"75f82fba-500d-41ea-a270-f3af00eb2fd7\", \"dccbb660-aed8-459c-b538-e0e9bd575635\", \"b3465468-e590-4d34-b0e9-ecbbfdf5e5f7\", \"b140d5a9-eb23-4231-9d4d-f0396152656e\", \"15a55fea-6169-411b-9b4f-2c979b2ba2b3\", \"b44c76f8-4a81-47c7-973a-4efd052fe68e\", \"922cd521-a226-41c5-aba4-3543ed2c6cbb\", \"365141b0-f379-4f2b-bedb-a07913d53c81\", \"52bc3271-779b-4cc4-8495-ae45c7d8ab36\", \"0aed238a-6fbf-47b2-bb27-822ee73859f2\", \"34bbef6f-22f0-4e50-9ced-bd13532336f4\", \"55325cc1-af8d-4ee1-a5a9-43525f6ef989\", \"0906fd04-4327-495b-84da-2e1e29a8c535\", \"e0541f23-1813-4f4a-b3b1-9e6b875c1512\", \"041d6135-7aad-426b-9def-9e83810ff3b1\", \"e46f2c75-6435-450f-8676-d7f97b2f993c\", \"a3d10900-5ccf-4f0d-bcdc-8346b481af85\", \"0fdb7163-803f-48cd-9411-065c5f126a56\", \"a433b078-5274-45e5-b173-45d5b926ddd7\", \"cd3e273b-3f38-4e67-80dd-848424464c4b\", \"4fb2d462-9e19-4d54-93f6-dc93f7811290\", \"db58bc02-b5ef-4895-9944-ff8bae8654c3\", \"b729db17-548a-4838-a81d-84f2903960db\", \"b5192ff1-cf00-45e7-b733-febdf6437cb0\", \"2735c43d-ac44-4578-96ca-ec5979cdc286\", \"3d878e90-e9c3-452c-9f32-92d421c41104\", \"7e5425ce-9d56-4363-93f1-82f4b79f44ad\", \"6360fcef-302f-4b14-a1a9-6d66d3bb9b0a\", \"8b676014-d471-4dc1-88ff-4f18307d47f6\", \"879e48ae-6c8c-4cf1-826b-3df214416e6d\", \"712f3291-0896-49fe-a74e-822265b7095e\", \"8fab62de-585f-485d-bd75-198c2654c150\", \"03a5b63c-6afe-4621-a10a-37df3eb16946\", \"8cde68c8-70d2-4e0b-98d6-4ab4543a239b\", \"2bbe7692-9c51-4364-a87c-ea53c6adc147\", \"e14905c9-da69-4d44-a397-8d5ef05313ce\", \"ca860d0b-0a48-4903-a53d-d883e488cc79\", \"9d806238-2269-4910-9eb6-a6d3d839199a\", \"36e81de4-82b1-4651-bc12-6684c0dfce78\", \"5f10353e-54b3-431a-a1a2-9bc7e7ea5e97\", \"da2f724b-0e19-4c8a-a09d-d952f9ec13f9\", \"130f8f0a-0798-4813-a504-1a13817f3859\", \"cf68c4f4-0bb9-4a9a-80ee-846d926c4f4b\", \"425e5040-5763-4957-a11d-93639c4fdd64\", \"1fa0bb2d-5150-4d29-acf6-25572a2c2393\", \"8f1ac6a9-ca0c-4dd7-a3b9-01368ee800be\", \"b02e046e-95e5-45e1-af1f-bf471c235940\", \"81052e39-0749-461d-a19c-e19ef6677ea4\", \"53e69a40-bf93-4175-944a-b03701a94c9f\", \"e8c73eb3-7eff-4961-bdfc-566bd8442172\", \"a653e542-61e0-40da-a8ee-3c605ab9cd1f\", \"8266a369-1701-472c-88a9-45512a3e79fd\", \"109c47cb-6944-4ef0-a0e5-56157c3d453f\", \"df6426c6-1592-4620-91b0-bfd6b80f29b4\", \"0807bdd4-bf25-4210-8316-dc02682943bb\", \"e26ec109-b8c6-4eb4-8e6c-d81b5dec6f7f\", \"100483f5-e988-43d8-ad3f-39949ae7551a\", \"04c67e40-1043-4016-a0f5-2a190a8d46a9\", \"0cb039e2-b538-4de3-8a1e-5c61ada83c60\", \"a9191a66-0d32-4d36-8fd6-58e6917f4ea6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4993896484375, \"Text\": \"2/13/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07713313400745392, \"Height\": 0.012974090874195099, \"Left\": 0.1362224966287613, \"Top\": 0.09430962055921555}, \"Polygon\": [{\"X\": 0.1362224966287613, \"Y\": 0.09430962055921555}, {\"X\": 0.2133556306362152, \"Y\": 0.09430962055921555}, {\"X\": 0.2133556306362152, \"Y\": 0.10728371143341064}, {\"X\": 0.1362224966287613, \"Y\": 0.10728371143341064}]}, \"Id\": \"87b0e81e-4813-470c-961e-3614543aedd6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c3d662e-613d-4239-bbf0-ad95f0baca3c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.78312683105469, \"Text\": \"Food Purchase - McDonalds - 2130609679\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3075634241104126, \"Height\": 0.010744117200374603, \"Left\": 0.23195987939834595, \"Top\": 0.09484871476888657}, \"Polygon\": [{\"X\": 0.23195987939834595, \"Y\": 0.09484871476888657}, {\"X\": 0.5395233035087585, \"Y\": 0.09484871476888657}, {\"X\": 0.5395233035087585, \"Y\": 0.10559283196926117}, {\"X\": 0.23195987939834595, \"Y\": 0.10559283196926117}]}, \"Id\": \"f7ad6cd3-331f-4f7f-b17f-708d0ea95607\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca297e15-3957-495b-b594-d01de7689502\", \"57c08f62-219c-425c-96f0-57aa9bb4321e\", \"e2f984a3-9bcf-4573-b617-4cef47d56a95\", \"729aa744-1e73-49e9-9812-3e0ed2252f99\", \"c2da366b-d1cf-48fd-a24a-c32aa467476c\", \"f4a69915-2480-4e11-9b27-59f670dfb7c3\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.31983184814453, \"Text\": \"-127\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032097578048706055, \"Height\": 0.009980611503124237, \"Left\": 0.745691180229187, \"Top\": 0.09521418064832687}, \"Polygon\": [{\"X\": 0.745691180229187, \"Y\": 0.09521418064832687}, {\"X\": 0.7777887582778931, \"Y\": 0.09521418064832687}, {\"X\": 0.7777887582778931, \"Y\": 0.10519479215145111}, {\"X\": 0.745691180229187, \"Y\": 0.10519479215145111}]}, \"Id\": \"5d0059ef-564f-42a9-bc16-2545a7cda9b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d68f393c-61dd-4e29-95b2-42961740cf29\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6536636352539, \"Text\": \"8/1/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06904619932174683, \"Height\": 0.013210460543632507, \"Left\": 0.14453426003456116, \"Top\": 0.1138426810503006}, \"Polygon\": [{\"X\": 0.14453426003456116, \"Y\": 0.1138426810503006}, {\"X\": 0.21358045935630798, \"Y\": 0.1138426810503006}, {\"X\": 0.21358045935630798, \"Y\": 0.1270531415939331}, {\"X\": 0.14453426003456116, \"Y\": 0.1270531415939331}]}, \"Id\": \"9013d78c-fb39-4c62-96c5-d668cef58457\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"137f4c1f-f7a7-4e1b-bf47-e44b15d0eba2\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.1915512084961, \"Text\": \"Transport - Uber - 2135962828\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2268657386302948, \"Height\": 0.012555064633488655, \"Left\": 0.23020896315574646, \"Top\": 0.11459431052207947}, \"Polygon\": [{\"X\": 0.23020896315574646, \"Y\": 0.11459431052207947}, {\"X\": 0.45707470178604126, \"Y\": 0.11459431052207947}, {\"X\": 0.45707470178604126, \"Y\": 0.12714937329292297}, {\"X\": 0.23020896315574646, \"Y\": 0.12714937329292297}]}, \"Id\": \"aed11a0b-6a3b-427f-8592-2ccbb79fa8f7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce0e824a-ddf0-411b-b7c8-7096f7b3758a\", \"2ab6d0a0-dc0a-4c44-ae88-e6d13672b44c\", \"1e392780-4678-4366-87d8-c124a8d0c755\", \"390d74d5-c835-4c76-8e89-16b6d88580ab\", \"b1cf40f5-c831-4369-a9b3-758b772ddd48\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87921142578125, \"Text\": \"-65\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023279845714569092, \"Height\": 0.009869419038295746, \"Left\": 0.7540016174316406, \"Top\": 0.11491920799016953}, \"Polygon\": [{\"X\": 0.7540016174316406, \"Y\": 0.11491920799016953}, {\"X\": 0.7772814631462097, \"Y\": 0.11491920799016953}, {\"X\": 0.7772814631462097, \"Y\": 0.12478862702846527}, {\"X\": 0.7540016174316406, \"Y\": 0.12478862702846527}]}, \"Id\": \"d4649df0-64f8-4562-bd1c-8a8915a35b81\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8278c57d-2698-4bec-ba1b-5b5ad5d19d09\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.70867156982422, \"Text\": \"5/31/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07818090915679932, \"Height\": 0.012754827737808228, \"Left\": 0.135416179895401, \"Top\": 0.1336934119462967}, \"Polygon\": [{\"X\": 0.135416179895401, \"Y\": 0.1336934119462967}, {\"X\": 0.21359708905220032, \"Y\": 0.1336934119462967}, {\"X\": 0.21359708905220032, \"Y\": 0.14644823968410492}, {\"X\": 0.135416179895401, \"Y\": 0.14644823968410492}]}, \"Id\": \"96ead884-b15e-45a9-8188-5a51927f106f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc5ed506-674d-48eb-a1ab-85163f99b637\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.5411376953125, \"Text\": \"Online Retail - Amazon.com - 2257980180\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30776190757751465, \"Height\": 0.010726439766585827, \"Left\": 0.23127079010009766, \"Top\": 0.13405989110469818}, \"Polygon\": [{\"X\": 0.23127079010009766, \"Y\": 0.13405989110469818}, {\"X\": 0.5390326976776123, \"Y\": 0.13405989110469818}, {\"X\": 0.5390326976776123, \"Y\": 0.14478632807731628}, {\"X\": 0.23127079010009766, \"Y\": 0.14478632807731628}]}, \"Id\": \"7fa94b3f-f175-4d2e-8c2e-00f5617a9f42\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b8fef0-ef94-44c7-a481-9f6377e9840e\", \"c5526604-43b7-4ecc-b6f1-2721c7b350c2\", \"8df5ddc1-3110-41fc-9664-68464ac83229\", \"8c40fb87-bb54-4793-9704-3916129a73b8\", \"1afd13b8-af9d-45b4-be85-51d95460c94d\", \"066f88b1-57f7-49bd-a4fe-465667bc8a88\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.58155059814453, \"Text\": \"-156\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03288769721984863, \"Height\": 0.009998440742492676, \"Left\": 0.7447535991668701, \"Top\": 0.13443805277347565}, \"Polygon\": [{\"X\": 0.7447535991668701, \"Y\": 0.13443805277347565}, {\"X\": 0.7776412963867188, \"Y\": 0.13443805277347565}, {\"X\": 0.7776412963867188, \"Y\": 0.14443649351596832}, {\"X\": 0.7447535991668701, \"Y\": 0.14443649351596832}]}, \"Id\": \"ed48527d-d334-4784-9199-e027ecdde7a9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11d081fb-c23d-473a-adbf-65712a8d91ec\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78851318359375, \"Text\": \"11/10/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08595877885818481, \"Height\": 0.012569800019264221, \"Left\": 0.12741154432296753, \"Top\": 0.1535082906484604}, \"Polygon\": [{\"X\": 0.12741154432296753, \"Y\": 0.1535082906484604}, {\"X\": 0.21337032318115234, \"Y\": 0.1535082906484604}, {\"X\": 0.21337032318115234, \"Y\": 0.1660780906677246}, {\"X\": 0.12741154432296753, \"Y\": 0.1660780906677246}]}, \"Id\": \"866626a9-3970-4161-92a3-eea04992f3ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"18497438-ebc4-4a5f-8fb8-f7d0ab642a31\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.35757446289062, \"Text\": \"Service Charge - Bank - 2270088418\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.26232099533081055, \"Height\": 0.012758276425302029, \"Left\": 0.23087334632873535, \"Top\": 0.1537007838487625}, \"Polygon\": [{\"X\": 0.23087334632873535, \"Y\": 0.1537007838487625}, {\"X\": 0.4931943416595459, \"Y\": 0.1537007838487625}, {\"X\": 0.4931943416595459, \"Y\": 0.16645905375480652}, {\"X\": 0.23087334632873535, \"Y\": 0.16645905375480652}]}, \"Id\": \"8d9f37c1-7575-4646-b527-2b7254108387\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"37020c43-5e37-49ae-aac5-0a3d592c1bdd\", \"5f798911-e2da-451b-9d21-fc553e4c78f8\", \"31842c02-0e38-4efa-a62f-3af7839f64c9\", \"bb8f846c-904b-46f3-8b2b-12c939bfefe7\", \"558906f0-a512-4713-bc14-93087e9a9ce1\", \"273e95ea-3856-43c8-80aa-c5439146f79d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74349975585938, \"Text\": \"-2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014771103858947754, \"Height\": 0.009676650166511536, \"Left\": 0.7623497247695923, \"Top\": 0.1539020538330078}, \"Polygon\": [{\"X\": 0.7623497247695923, \"Y\": 0.1539020538330078}, {\"X\": 0.77712082862854, \"Y\": 0.1539020538330078}, {\"X\": 0.77712082862854, \"Y\": 0.16357870399951935}, {\"X\": 0.7623497247695923, \"Y\": 0.16357870399951935}]}, \"Id\": \"ae64b4f8-5e36-4928-bfaf-039a745e5a8a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53f6c35e-4d06-47b4-9bd5-cb0294777f3a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68668365478516, \"Text\": \"8/11/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07781930267810822, \"Height\": 0.012297794222831726, \"Left\": 0.13576216995716095, \"Top\": 0.17301829159259796}, \"Polygon\": [{\"X\": 0.13576216995716095, \"Y\": 0.17301829159259796}, {\"X\": 0.21358147263526917, \"Y\": 0.17301829159259796}, {\"X\": 0.21358147263526917, \"Y\": 0.1853160858154297}, {\"X\": 0.13576216995716095, \"Y\": 0.1853160858154297}]}, \"Id\": \"e2288323-448e-4f5a-a411-c06bfe0431b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4d05e4a-e85f-4e17-abb8-ab206772772a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.46443176269531, \"Text\": \"Food Purchase - McDonalds - 2350678683\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30671030282974243, \"Height\": 0.010743066668510437, \"Left\": 0.23196858167648315, \"Top\": 0.1732664257287979}, \"Polygon\": [{\"X\": 0.23196858167648315, \"Y\": 0.1732664257287979}, {\"X\": 0.5386788845062256, \"Y\": 0.1732664257287979}, {\"X\": 0.5386788845062256, \"Y\": 0.18400949239730835}, {\"X\": 0.23196858167648315, \"Y\": 0.18400949239730835}]}, \"Id\": \"4d8a63e2-a854-4dd0-83fa-5cf9a3d680a9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2252e21e-3d86-46f1-a87c-af63cbc0a79d\", \"60ae7a79-0210-4725-b0dc-ef260902b2b5\", \"8967bd84-39b1-4a54-b837-a7a1fa211b95\", \"c9efb97a-3015-4567-a868-79a58cbe87fd\", \"5fca0b1c-f4f9-4cdd-ad42-8b4cddf643c6\", \"e6d5a8de-0b6e-4da3-bdd3-b8ec4174c7dc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3505859375, \"Text\": \"-219\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03251701593399048, \"Height\": 0.010037735104560852, \"Left\": 0.7450503706932068, \"Top\": 0.17362593114376068}, \"Polygon\": [{\"X\": 0.7450503706932068, \"Y\": 0.17362593114376068}, {\"X\": 0.7775673866271973, \"Y\": 0.17362593114376068}, {\"X\": 0.7775673866271973, \"Y\": 0.18366366624832153}, {\"X\": 0.7450503706932068, \"Y\": 0.18366366624832153}]}, \"Id\": \"69546b37-3401-49fb-8955-1fa7eb3b5a6e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"43df75cf-05cd-4487-b372-02b4b4313c62\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43997955322266, \"Text\": \"9/19/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07755254209041595, \"Height\": 0.01299576461315155, \"Left\": 0.1356460303068161, \"Top\": 0.19208268821239471}, \"Polygon\": [{\"X\": 0.1356460303068161, \"Y\": 0.19208268821239471}, {\"X\": 0.21319857239723206, \"Y\": 0.19208268821239471}, {\"X\": 0.21319857239723206, \"Y\": 0.20507845282554626}, {\"X\": 0.1356460303068161, \"Y\": 0.20507845282554626}]}, \"Id\": \"39121657-6d85-487a-b9bf-edc12ca4b714\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"250c989a-d96e-499d-b273-10df1212c425\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.60729217529297, \"Text\": \"Food Purchase - Starbucks - 2558819681\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2951607406139374, \"Height\": 0.010619625449180603, \"Left\": 0.2319141924381256, \"Top\": 0.19287492334842682}, \"Polygon\": [{\"X\": 0.2319141924381256, \"Y\": 0.19287492334842682}, {\"X\": 0.527074933052063, \"Y\": 0.19287492334842682}, {\"X\": 0.527074933052063, \"Y\": 0.20349454879760742}, {\"X\": 0.2319141924381256, \"Y\": 0.20349454879760742}]}, \"Id\": \"86d65fa5-86b5-4dc5-8a9c-2e1161f1bb63\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38b2bb32-aaa4-493a-89ca-a80608e58b6b\", \"fc736da3-e150-44f6-9a1b-e7188bf94a54\", \"2c2df598-710b-462f-a504-86f42dcc7c48\", \"720f06fa-e46c-4db5-b854-9d95a09cf311\", \"99ce5dda-48f5-4c28-a1e2-69a544ab223d\", \"a30b7774-38d2-423e-aa62-928d9495f67a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.35111999511719, \"Text\": \"-229\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03269761800765991, \"Height\": 0.009923785924911499, \"Left\": 0.7450959086418152, \"Top\": 0.19318021833896637}, \"Polygon\": [{\"X\": 0.7450959086418152, \"Y\": 0.19318021833896637}, {\"X\": 0.7777935266494751, \"Y\": 0.19318021833896637}, {\"X\": 0.7777935266494751, \"Y\": 0.20310400426387787}, {\"X\": 0.7450959086418152, \"Y\": 0.20310400426387787}]}, \"Id\": \"2815b2f9-a11e-4ccf-8ee9-5df7ca20b172\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d29312e-5131-4f51-baf9-cd2d0aca5831\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48963165283203, \"Text\": \"8/17/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07731977105140686, \"Height\": 0.012818202376365662, \"Left\": 0.13591228425502777, \"Top\": 0.21174553036689758}, \"Polygon\": [{\"X\": 0.13591228425502777, \"Y\": 0.21174553036689758}, {\"X\": 0.21323205530643463, \"Y\": 0.21174553036689758}, {\"X\": 0.21323205530643463, \"Y\": 0.22456373274326324}, {\"X\": 0.13591228425502777, \"Y\": 0.22456373274326324}]}, \"Id\": \"a43ca6e9-9f06-4a99-906b-e9d9dc5d2534\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b420917b-be00-42da-9ef5-01e61a2740c3\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.57574462890625, \"Text\": \"Food Purchase - McDonalds - 2591297145\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30661213397979736, \"Height\": 0.010671259835362434, \"Left\": 0.23198656737804413, \"Top\": 0.21233975887298584}, \"Polygon\": [{\"X\": 0.23198656737804413, \"Y\": 0.21233975887298584}, {\"X\": 0.5385987162590027, \"Y\": 0.21233975887298584}, {\"X\": 0.5385987162590027, \"Y\": 0.22301101684570312}, {\"X\": 0.23198656737804413, \"Y\": 0.22301101684570312}]}, \"Id\": \"d763d837-6266-4229-a950-4087161d5c2f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4a7cbcde-d7db-4ffa-b8ee-226c68cbd86d\", \"02b60736-1a09-4d4c-806f-f4b02c377d4a\", \"86b8b664-f84c-4abc-b617-720ae6b30243\", \"6d5bbeec-83c7-4bc1-bbfb-6a24458f3cd2\", \"bf9283ca-103a-49a2-a932-61ee5a01e29e\", \"da7af845-c505-41d7-b561-4fc179231c33\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.25321960449219, \"Text\": \"-127\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03282427787780762, \"Height\": 0.009858518838882446, \"Left\": 0.7447466850280762, \"Top\": 0.2126932591199875}, \"Polygon\": [{\"X\": 0.7447466850280762, \"Y\": 0.2126932591199875}, {\"X\": 0.7775709629058838, \"Y\": 0.2126932591199875}, {\"X\": 0.7775709629058838, \"Y\": 0.22255177795886993}, {\"X\": 0.7447466850280762, \"Y\": 0.22255177795886993}]}, \"Id\": \"3a6a444b-9a61-44bf-a791-970cbf9f04f7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"031096ed-9d1e-43ac-a37b-f7cfaa03d9b6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76375579833984, \"Text\": \"11/21/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08613085746765137, \"Height\": 0.012899935245513916, \"Left\": 0.1274697184562683, \"Top\": 0.2313116490840912}, \"Polygon\": [{\"X\": 0.1274697184562683, \"Y\": 0.2313116490840912}, {\"X\": 0.21360057592391968, \"Y\": 0.2313116490840912}, {\"X\": 0.21360057592391968, \"Y\": 0.2442115843296051}, {\"X\": 0.1274697184562683, \"Y\": 0.2442115843296051}]}, \"Id\": \"c99031ba-ce39-4bc5-84c9-4984080d919d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2d3b72b-f1a9-4f4e-892d-acca227420be\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.27108001708984, \"Text\": \"Retail Purchase - Sobeys - 2687789993\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28402209281921387, \"Height\": 0.012850791215896606, \"Left\": 0.23189975321292877, \"Top\": 0.2319072037935257}, \"Polygon\": [{\"X\": 0.23189975321292877, \"Y\": 0.2319072037935257}, {\"X\": 0.5159218311309814, \"Y\": 0.2319072037935257}, {\"X\": 0.5159218311309814, \"Y\": 0.2447579950094223}, {\"X\": 0.23189975321292877, \"Y\": 0.2447579950094223}]}, \"Id\": \"f1e78785-cfa8-4d25-87db-1be8c88ce80a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b83830bd-ade9-44f2-abdc-2e15963d67cd\", \"c28ea622-ecc6-4b7d-8e0a-8a6d76f5214b\", \"3292e707-0e45-422f-929a-07a8ea5672a4\", \"38557a9b-480e-4783-9d82-3c661b42a6ba\", \"32feab68-3bbb-4f9a-9323-65b25a8555d4\", \"e6f712fa-d0dd-4b72-a02b-9a6e6cf8c484\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87136840820312, \"Text\": \"-84\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02337658405303955, \"Height\": 0.009748458862304688, \"Left\": 0.7541877627372742, \"Top\": 0.2323625087738037}, \"Polygon\": [{\"X\": 0.7541877627372742, \"Y\": 0.2323625087738037}, {\"X\": 0.7775643467903137, \"Y\": 0.2323625087738037}, {\"X\": 0.7775643467903137, \"Y\": 0.2421109676361084}, {\"X\": 0.7541877627372742, \"Y\": 0.2421109676361084}]}, \"Id\": \"af269bcd-964b-45b4-9ff4-dc7828d26661\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f15947d-46d7-464f-9243-a40954c75b3a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57240295410156, \"Text\": \"7/3/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06856082379817963, \"Height\": 0.012744814157485962, \"Left\": 0.1450960785150528, \"Top\": 0.25096118450164795}, \"Polygon\": [{\"X\": 0.1450960785150528, \"Y\": 0.25096118450164795}, {\"X\": 0.21365690231323242, \"Y\": 0.25096118450164795}, {\"X\": 0.21365690231323242, \"Y\": 0.2637059986591339}, {\"X\": 0.1450960785150528, \"Y\": 0.2637059986591339}]}, \"Id\": \"c078ad85-8f25-46eb-80ba-b10dedd1b1c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d0799e20-c9e0-49f1-b9b1-f060fc0149bc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.75950622558594, \"Text\": \"Transport - Lyft - 2705182570\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21690039336681366, \"Height\": 0.012570737861096859, \"Left\": 0.23061789572238922, \"Top\": 0.2515188455581665}, \"Polygon\": [{\"X\": 0.23061789572238922, \"Y\": 0.2515188455581665}, {\"X\": 0.4475182890892029, \"Y\": 0.2515188455581665}, {\"X\": 0.4475182890892029, \"Y\": 0.26408958435058594}, {\"X\": 0.23061789572238922, \"Y\": 0.26408958435058594}]}, \"Id\": \"9258a273-ee5a-4f68-8e5e-390c6c8fa4f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"398f0ba2-cbdd-438d-ac96-12d996f76e25\", \"5ff3a3fe-d8a1-4988-ab76-585d74aaf642\", \"e4971d65-0b4e-44a8-8b3f-ad347e0ef339\", \"10c72e8c-ba39-4cc3-8e4e-c2dfc1428605\", \"5dc1be96-efbb-4171-b28b-256e89f31ec1\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54851531982422, \"Text\": \"-157\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03270965814590454, \"Height\": 0.009893268346786499, \"Left\": 0.7448585033416748, \"Top\": 0.2518713176250458}, \"Polygon\": [{\"X\": 0.7448585033416748, \"Y\": 0.2518713176250458}, {\"X\": 0.7775681614875793, \"Y\": 0.2518713176250458}, {\"X\": 0.7775681614875793, \"Y\": 0.2617645859718323}, {\"X\": 0.7448585033416748, \"Y\": 0.2617645859718323}]}, \"Id\": \"efa4e95f-230b-42d9-a10b-5f57243f7b5e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e7606e5-797e-439f-99d1-ed59f3230b07\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60498046875, \"Text\": \"4/1/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06906583905220032, \"Height\": 0.012574732303619385, \"Left\": 0.14492353796958923, \"Top\": 0.27079474925994873}, \"Polygon\": [{\"X\": 0.14492353796958923, \"Y\": 0.27079474925994873}, {\"X\": 0.21398937702178955, \"Y\": 0.27079474925994873}, {\"X\": 0.21398937702178955, \"Y\": 0.2833694815635681}, {\"X\": 0.14492353796958923, \"Y\": 0.2833694815635681}]}, \"Id\": \"787c464a-e47d-419b-9174-9f18b4bf2c8d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3595232-c601-4023-b273-549934b60f7b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.98511505126953, \"Text\": \"Transport - Uber - 3020941883\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22487524151802063, \"Height\": 0.012600064277648926, \"Left\": 0.23085615038871765, \"Top\": 0.27127885818481445}, \"Polygon\": [{\"X\": 0.23085615038871765, \"Y\": 0.27127885818481445}, {\"X\": 0.4557313919067383, \"Y\": 0.27127885818481445}, {\"X\": 0.4557313919067383, \"Y\": 0.2838789224624634}, {\"X\": 0.23085615038871765, \"Y\": 0.2838789224624634}]}, \"Id\": \"63893658-fc4e-43f7-8092-a997cdc68e9d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6912f09b-1694-4fd8-8dbd-f899b030826a\", \"bf70a170-0751-4790-bd35-066de20b74ef\", \"0de708b5-14ed-4643-a8c4-5065718b1372\", \"c0b3ed65-9522-40d8-a699-20e16e4186b5\", \"f4dc3b8d-895f-4dfd-9220-449f4aec88bc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.12000274658203, \"Text\": \"-238\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03266000747680664, \"Height\": 0.009942740201950073, \"Left\": 0.7448015213012695, \"Top\": 0.2714892327785492}, \"Polygon\": [{\"X\": 0.7448015213012695, \"Y\": 0.2714892327785492}, {\"X\": 0.7774615287780762, \"Y\": 0.2714892327785492}, {\"X\": 0.7774615287780762, \"Y\": 0.28143197298049927}, {\"X\": 0.7448015213012695, \"Y\": 0.28143197298049927}]}, \"Id\": \"32088823-5de2-424b-a5ab-6e9e73a833ee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4bcef6c2-b025-42e4-9543-01040c1ddeb6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64854431152344, \"Text\": \"12/15/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08647166192531586, \"Height\": 0.013049215078353882, \"Left\": 0.12745006382465363, \"Top\": 0.28994670510292053}, \"Polygon\": [{\"X\": 0.12745006382465363, \"Y\": 0.28994670510292053}, {\"X\": 0.21392172574996948, \"Y\": 0.28994670510292053}, {\"X\": 0.21392172574996948, \"Y\": 0.3029959201812744}, {\"X\": 0.12745006382465363, \"Y\": 0.3029959201812744}]}, \"Id\": \"e0462c2f-9410-43af-a294-ed67160edc8d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f5b87d2-bb0d-4fe5-86df-792d3e203506\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.33502960205078, \"Text\": \"Online Retail - Amazon.com - 3250892832\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30737006664276123, \"Height\": 0.010632514953613281, \"Left\": 0.2312776893377304, \"Top\": 0.2907433807849884}, \"Polygon\": [{\"X\": 0.2312776893377304, \"Y\": 0.2907433807849884}, {\"X\": 0.5386477708816528, \"Y\": 0.2907433807849884}, {\"X\": 0.5386477708816528, \"Y\": 0.3013758957386017}, {\"X\": 0.2312776893377304, \"Y\": 0.3013758957386017}]}, \"Id\": \"6dc1ca9f-7a19-41e3-b6fb-5fefef423a67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0cbc3576-cefd-4c63-82bb-b3e4571a99fe\", \"fcddcec4-e1e2-4610-93e8-887cea0e3629\", \"5dbf79a9-e747-43bb-b41f-d85be4c52b95\", \"cf3b59ef-e6b1-436d-86e2-00f348c4d6d9\", \"7513c2c9-cb35-4b86-af3e-c3bae7b9b18e\", \"5ebf3956-043c-43a4-b8b4-9deaa3ab0ca0\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84349060058594, \"Text\": \"-72\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02316129207611084, \"Height\": 0.009994357824325562, \"Left\": 0.754328191280365, \"Top\": 0.2909839153289795}, \"Polygon\": [{\"X\": 0.754328191280365, \"Y\": 0.2909839153289795}, {\"X\": 0.7774894833564758, \"Y\": 0.2909839153289795}, {\"X\": 0.7774894833564758, \"Y\": 0.30097827315330505}, {\"X\": 0.754328191280365, \"Y\": 0.30097827315330505}]}, \"Id\": \"cd3b7844-44a0-417d-98a1-57b86ac9fb6e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ea80001-1cbd-4cd5-9bca-b7a2488c0409\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6544189453125, \"Text\": \"11/27/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08622586727142334, \"Height\": 0.013328760862350464, \"Left\": 0.12754318118095398, \"Top\": 0.3094073235988617}, \"Polygon\": [{\"X\": 0.12754318118095398, \"Y\": 0.3094073235988617}, {\"X\": 0.21376904845237732, \"Y\": 0.3094073235988617}, {\"X\": 0.21376904845237732, \"Y\": 0.32273608446121216}, {\"X\": 0.12754318118095398, \"Y\": 0.32273608446121216}]}, \"Id\": \"f53c8373-47f5-4034-b9f0-4bbd2d53ed63\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b117715-3170-43d7-930b-634e1850bb20\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.17597961425781, \"Text\": \"Food Purchase - McDonalds - 3288443530\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30773207545280457, \"Height\": 0.01089432742446661, \"Left\": 0.23208560049533844, \"Top\": 0.3101535439491272}, \"Polygon\": [{\"X\": 0.23208560049533844, \"Y\": 0.3101535439491272}, {\"X\": 0.5398176908493042, \"Y\": 0.3101535439491272}, {\"X\": 0.5398176908493042, \"Y\": 0.3210478723049164}, {\"X\": 0.23208560049533844, \"Y\": 0.3210478723049164}]}, \"Id\": \"082456a6-4b82-4ed3-bfd2-61a6988d158f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c8d968e-ab37-4692-bece-ba59c479812a\", \"92e1b7a9-935b-4181-829b-c3d1c48ad30c\", \"42fd4cd6-9db7-4566-a930-269f48315ebb\", \"443080c3-57ab-47d0-a796-3e514f743dcb\", \"e96d2433-2227-4c54-80f4-8898f3f6b57c\", \"717cdd80-7760-451a-9384-dae8ab5c34f6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3015365600586, \"Text\": \"-124\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03231936693191528, \"Height\": 0.00999346375465393, \"Left\": 0.7451906800270081, \"Top\": 0.3106437623500824}, \"Polygon\": [{\"X\": 0.7451906800270081, \"Y\": 0.3106437623500824}, {\"X\": 0.7775100469589233, \"Y\": 0.3106437623500824}, {\"X\": 0.7775100469589233, \"Y\": 0.32063722610473633}, {\"X\": 0.7451906800270081, \"Y\": 0.32063722610473633}]}, \"Id\": \"ad75a754-aa0a-44d8-8f78-ad8d3f3ba9bc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bcf5b93e-217c-4b48-b7f7-1be3c661afa5\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56321716308594, \"Text\": \"6/25/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07757300138473511, \"Height\": 0.013117313385009766, \"Left\": 0.13597486913204193, \"Top\": 0.3291851282119751}, \"Polygon\": [{\"X\": 0.13597486913204193, \"Y\": 0.3291851282119751}, {\"X\": 0.21354787051677704, \"Y\": 0.3291851282119751}, {\"X\": 0.21354787051677704, \"Y\": 0.34230244159698486}, {\"X\": 0.13597486913204193, \"Y\": 0.34230244159698486}]}, \"Id\": \"5dee0524-530a-41fe-b74c-42e27adfe4d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a75b0cfe-ad2c-4604-aa74-774db040d262\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.66411590576172, \"Text\": \"Food Purchase - Tim Hortons - 3454648653\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.31456124782562256, \"Height\": 0.010709351859986782, \"Left\": 0.23212367296218872, \"Top\": 0.32982343435287476}, \"Polygon\": [{\"X\": 0.23212367296218872, \"Y\": 0.32982343435287476}, {\"X\": 0.5466849207878113, \"Y\": 0.32982343435287476}, {\"X\": 0.5466849207878113, \"Y\": 0.3405327796936035}, {\"X\": 0.23212367296218872, \"Y\": 0.3405327796936035}]}, \"Id\": \"ccecdb8b-1aaf-4c92-bc07-0f62e02621d3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"887ca6e9-d553-4dd1-9811-a935a4234449\", \"e30db1ba-7f53-4316-800a-92d235cd9f76\", \"3da07e04-8bf1-407b-9e78-fbc9b97dec17\", \"f94f62e8-7872-4650-8b7a-1f80f691aab3\", \"d83b8217-5fca-4f85-b4fe-6d11ab653a28\", \"e2e1b9a3-4218-4bcf-9fa6-6fe7d844f629\", \"01582cd2-bad6-4bd3-84a9-9bdb08f1e1eb\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41958618164062, \"Text\": \"-199\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032510995864868164, \"Height\": 0.01009070873260498, \"Left\": 0.7449478507041931, \"Top\": 0.3300783932209015}, \"Polygon\": [{\"X\": 0.7449478507041931, \"Y\": 0.3300783932209015}, {\"X\": 0.7774588465690613, \"Y\": 0.3300783932209015}, {\"X\": 0.7774588465690613, \"Y\": 0.34016910195350647}, {\"X\": 0.7449478507041931, \"Y\": 0.34016910195350647}]}, \"Id\": \"f928244f-d865-427b-98b0-4bae4c64e85c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1650b9f9-10de-4c9c-a16e-85c546ca9b05\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54458618164062, \"Text\": \"9/14/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0775950700044632, \"Height\": 0.012706369161605835, \"Left\": 0.13584809005260468, \"Top\": 0.34889665246009827}, \"Polygon\": [{\"X\": 0.13584809005260468, \"Y\": 0.34889665246009827}, {\"X\": 0.21344316005706787, \"Y\": 0.34889665246009827}, {\"X\": 0.21344316005706787, \"Y\": 0.3616030216217041}, {\"X\": 0.13584809005260468, \"Y\": 0.3616030216217041}]}, \"Id\": \"6fd086c8-deb7-481b-ace7-cc210856dd30\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb6309cf-5149-43f2-b96d-b5f54328882c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.0870590209961, \"Text\": \"Retail Purchase - Loblaws - 3631254120\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2929418981075287, \"Height\": 0.010614740662276745, \"Left\": 0.2320486605167389, \"Top\": 0.34932929277420044}, \"Polygon\": [{\"X\": 0.2320486605167389, \"Y\": 0.34932929277420044}, {\"X\": 0.5249905586242676, \"Y\": 0.34932929277420044}, {\"X\": 0.5249905586242676, \"Y\": 0.35994404554367065}, {\"X\": 0.2320486605167389, \"Y\": 0.35994404554367065}]}, \"Id\": \"034f7aa3-0c1f-4f51-a91d-0c446687d14f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28f21da1-09f0-4c7f-8784-f883bf0520ce\", \"b690e26c-425f-41c1-a4b2-e8b5848dc5a4\", \"501ee0c4-465b-41ad-89c3-e8960466dc70\", \"44790b31-fc61-47ad-88e0-f5f2f8c7bdd2\", \"81089346-f04b-45b5-8833-5d720cb2a3ad\", \"a346c755-087f-4fbf-ab3e-3b51d88ce542\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41122436523438, \"Text\": \"-258\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03293675184249878, \"Height\": 0.010006189346313477, \"Left\": 0.74456387758255, \"Top\": 0.349648654460907}, \"Polygon\": [{\"X\": 0.74456387758255, \"Y\": 0.349648654460907}, {\"X\": 0.7775006294250488, \"Y\": 0.349648654460907}, {\"X\": 0.7775006294250488, \"Y\": 0.35965484380722046}, {\"X\": 0.74456387758255, \"Y\": 0.35965484380722046}]}, \"Id\": \"b1b8022b-df9e-4b88-a191-e3005b568e5c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af472af6-37da-442c-9163-94cdae21c7d2\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7696304321289, \"Text\": \"11/15/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08619415760040283, \"Height\": 0.012504756450653076, \"Left\": 0.12749835848808289, \"Top\": 0.36849522590637207}, \"Polygon\": [{\"X\": 0.12749835848808289, \"Y\": 0.36849522590637207}, {\"X\": 0.21369251608848572, \"Y\": 0.36849522590637207}, {\"X\": 0.21369251608848572, \"Y\": 0.38099998235702515}, {\"X\": 0.12749835848808289, \"Y\": 0.38099998235702515}]}, \"Id\": \"e0fcbae6-5be3-45b7-8809-8fe047a32f31\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"142dc170-0684-423c-921d-90d58166f659\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.4019546508789, \"Text\": \"Food Purchase - Tim Hortons - 3666530197\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3150499165058136, \"Height\": 0.011551112867891788, \"Left\": 0.23198865354061127, \"Top\": 0.3682648241519928}, \"Polygon\": [{\"X\": 0.23198865354061127, \"Y\": 0.3682648241519928}, {\"X\": 0.5470385551452637, \"Y\": 0.3682648241519928}, {\"X\": 0.5470385551452637, \"Y\": 0.379815936088562}, {\"X\": 0.23198865354061127, \"Y\": 0.379815936088562}]}, \"Id\": \"ae087e4a-32a1-40b4-a334-31fda9792ba0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dee09a52-b473-41a9-9c40-c1e8e6155035\", \"607ac0dd-24d1-42ab-9850-c500f9be677b\", \"72d9ec17-30e2-4195-a981-cad4ed9aafcf\", \"500a5825-d8f0-468d-9074-90955c1ceee8\", \"cb1623dc-3998-42dd-a918-01c21b1f11f4\", \"41bbe81e-62eb-46fb-b809-6866aa1b04c4\", \"8f4527fb-0165-4b34-ba52-fd4ce74448a6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2457046508789, \"Text\": \"-297\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03220808506011963, \"Height\": 0.00998947024345398, \"Left\": 0.7450774908065796, \"Top\": 0.36923983693122864}, \"Polygon\": [{\"X\": 0.7450774908065796, \"Y\": 0.36923983693122864}, {\"X\": 0.7772855758666992, \"Y\": 0.36923983693122864}, {\"X\": 0.7772855758666992, \"Y\": 0.3792293071746826}, {\"X\": 0.7450774908065796, \"Y\": 0.3792293071746826}]}, \"Id\": \"8e8d911f-1d21-4086-97a1-e5386992c22f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d501102c-b7dd-489a-adfd-6edb58b58d87\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.22985076904297, \"Text\": \"4/7/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06865768134593964, \"Height\": 0.012082695960998535, \"Left\": 0.14505703747272491, \"Top\": 0.3884890675544739}, \"Polygon\": [{\"X\": 0.14505703747272491, \"Y\": 0.3884890675544739}, {\"X\": 0.21371471881866455, \"Y\": 0.3884890675544739}, {\"X\": 0.21371471881866455, \"Y\": 0.4005717635154724}, {\"X\": 0.14505703747272491, \"Y\": 0.4005717635154724}]}, \"Id\": \"2ec16601-f637-4ecb-a40a-233f80f417f2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d2f8ca8e-4614-4326-b5ab-d27d502a2363\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.68557739257812, \"Text\": \"Food Purchase - Tim Hortons - 3746491660\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3155568540096283, \"Height\": 0.010828533209860325, \"Left\": 0.23199428617954254, \"Top\": 0.38846591114997864}, \"Polygon\": [{\"X\": 0.23199428617954254, \"Y\": 0.38846591114997864}, {\"X\": 0.547551155090332, \"Y\": 0.38846591114997864}, {\"X\": 0.547551155090332, \"Y\": 0.3992944359779358}, {\"X\": 0.23199428617954254, \"Y\": 0.3992944359779358}]}, \"Id\": \"23376f31-95e5-47f4-adde-18679c8dda53\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e12d23-ef53-4849-a490-fdd1aeaef335\", \"82eb686c-29af-4c9f-acab-35722d6fd28b\", \"9f1590ef-3311-4030-bc5f-6f78726ec0d5\", \"93b00b95-cbf9-40e8-99bf-dee28309d129\", \"d2cbc75b-c80a-43ae-81f8-81c6de687520\", \"72312ad8-3ff1-4a2b-8718-0331d7975323\", \"9d3b0623-94f2-4a53-b596-215e7ada5a50\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.27971649169922, \"Text\": \"-162\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03218644857406616, \"Height\": 0.0101223886013031, \"Left\": 0.745017409324646, \"Top\": 0.38884437084198}, \"Polygon\": [{\"X\": 0.745017409324646, \"Y\": 0.38884437084198}, {\"X\": 0.7772038578987122, \"Y\": 0.38884437084198}, {\"X\": 0.7772038578987122, \"Y\": 0.3989667594432831}, {\"X\": 0.745017409324646, \"Y\": 0.3989667594432831}]}, \"Id\": \"cb8e6971-0e60-4126-b1e7-b0fa5b8eb70b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"259b7cea-3abb-47d8-9905-8fad6f3a44bb\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32528686523438, \"Text\": \"7/24/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07785235345363617, \"Height\": 0.012797325849533081, \"Left\": 0.1356344372034073, \"Top\": 0.4076719284057617}, \"Polygon\": [{\"X\": 0.1356344372034073, \"Y\": 0.4076719284057617}, {\"X\": 0.21348679065704346, \"Y\": 0.4076719284057617}, {\"X\": 0.21348679065704346, \"Y\": 0.4204692542552948}, {\"X\": 0.1356344372034073, \"Y\": 0.4204692542552948}]}, \"Id\": \"6e120ed7-d688-4009-8286-6f3707caba2e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ecbf250c-cdaa-49bf-bf90-c82a80957d7d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.17545318603516, \"Text\": \"Transport - Lyft - 3750786000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21760773658752441, \"Height\": 0.012649539858102798, \"Left\": 0.23063160479068756, \"Top\": 0.40820983052253723}, \"Polygon\": [{\"X\": 0.23063160479068756, \"Y\": 0.40820983052253723}, {\"X\": 0.4482393264770508, \"Y\": 0.40820983052253723}, {\"X\": 0.4482393264770508, \"Y\": 0.42085936665534973}, {\"X\": 0.23063160479068756, \"Y\": 0.42085936665534973}]}, \"Id\": \"548aafa0-8ca7-4bc1-b6a7-5e48de205914\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f50dec79-5dfa-486b-9ff4-ca874c418653\", \"7b7dfa7f-69e8-46c4-a88c-f98365955fff\", \"510d3acf-3d4e-4f44-aaa5-0bfb3f04a66f\", \"c29e35e4-5045-4eb8-9747-5bdf3aaeba6a\", \"dd268315-0b6b-4d8c-bbea-67820aa12429\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57306671142578, \"Text\": \"-161\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0322454571723938, \"Height\": 0.009880006313323975, \"Left\": 0.744871199131012, \"Top\": 0.40853938460350037}, \"Polygon\": [{\"X\": 0.744871199131012, \"Y\": 0.40853938460350037}, {\"X\": 0.7771166563034058, \"Y\": 0.40853938460350037}, {\"X\": 0.7771166563034058, \"Y\": 0.41841939091682434}, {\"X\": 0.744871199131012, \"Y\": 0.41841939091682434}]}, \"Id\": \"9b61c6c0-410c-45e9-8a65-9c3317d3599d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"827bb06f-4ed7-4c98-b2aa-92d59220305b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6498794555664, \"Text\": \"12/15/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0863652229309082, \"Height\": 0.013114392757415771, \"Left\": 0.12727311253547668, \"Top\": 0.42691853642463684}, \"Polygon\": [{\"X\": 0.12727311253547668, \"Y\": 0.42691853642463684}, {\"X\": 0.2136383354663849, \"Y\": 0.42691853642463684}, {\"X\": 0.2136383354663849, \"Y\": 0.4400329291820526}, {\"X\": 0.12727311253547668, \"Y\": 0.4400329291820526}]}, \"Id\": \"9c58ccc4-6c10-4184-af8f-7c941777bf1b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5ae81324-553d-4bd9-a90b-45a5ab4fbaf1\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.13934326171875, \"Text\": \"Food Purchase - Starbucks - 3882328066\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2963080406188965, \"Height\": 0.010499238967895508, \"Left\": 0.231905996799469, \"Top\": 0.4277670085430145}, \"Polygon\": [{\"X\": 0.231905996799469, \"Y\": 0.4277670085430145}, {\"X\": 0.5282140374183655, \"Y\": 0.4277670085430145}, {\"X\": 0.5282140374183655, \"Y\": 0.43826624751091003}, {\"X\": 0.231905996799469, \"Y\": 0.43826624751091003}]}, \"Id\": \"1487433c-4218-4589-b159-4c4e2ee8d655\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9adcf7d5-0961-48ca-9bdc-bdb8d0a6fbac\", \"c31dffe9-237a-423d-9473-649ab618e211\", \"1ce7116b-ad2d-4baf-b81e-c1cda463f389\", \"42529ffa-d8f5-4f9c-a615-f8cb957fdd01\", \"21781c66-a650-47a9-a711-d36967b03975\", \"2fc7bcae-471d-4070-be6d-e9d47520751e\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59966278076172, \"Text\": \"-178\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03252756595611572, \"Height\": 0.00990036129951477, \"Left\": 0.7448995113372803, \"Top\": 0.4281204044818878}, \"Polygon\": [{\"X\": 0.7448995113372803, \"Y\": 0.4281204044818878}, {\"X\": 0.777427077293396, \"Y\": 0.4281204044818878}, {\"X\": 0.777427077293396, \"Y\": 0.4380207657814026}, {\"X\": 0.7448995113372803, \"Y\": 0.4380207657814026}]}, \"Id\": \"2415d7e9-21db-4452-a79d-f060b027d728\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2cc1d792-4346-482f-ab72-7557a057bc2b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.04286193847656, \"Text\": \"10/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07695811986923218, \"Height\": 0.01279991865158081, \"Left\": 0.13655976951122284, \"Top\": 0.4465947151184082}, \"Polygon\": [{\"X\": 0.13655976951122284, \"Y\": 0.4465947151184082}, {\"X\": 0.21351788938045502, \"Y\": 0.4465947151184082}, {\"X\": 0.21351788938045502, \"Y\": 0.459394633769989}, {\"X\": 0.13655976951122284, \"Y\": 0.459394633769989}]}, \"Id\": \"e0a69455-4c13-4bec-bcd9-ac8c10084741\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb3a3e01-75b1-4671-b607-a7d63ef1c271\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.47461700439453, \"Text\": \"Food Purchase - Tim Hortons - 3993716869\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3154178261756897, \"Height\": 0.010717049241065979, \"Left\": 0.23194162547588348, \"Top\": 0.44711801409721375}, \"Polygon\": [{\"X\": 0.23194162547588348, \"Y\": 0.44711801409721375}, {\"X\": 0.5473594665527344, \"Y\": 0.44711801409721375}, {\"X\": 0.5473594665527344, \"Y\": 0.45783504843711853}, {\"X\": 0.23194162547588348, \"Y\": 0.45783504843711853}]}, \"Id\": \"d5e53760-ba04-430e-9154-08db58afd9ef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cefe2e5-f668-4bb3-bd66-bacb38dfdd8e\", \"3e8b51d1-1ded-42c8-9498-8899df7f40ba\", \"745e6ad2-f83d-4cbe-a0d0-7a2a7379e55b\", \"0bebf41a-846f-4116-b9b5-d57d89c32898\", \"b92892a5-a505-4aad-aea1-41e480c97902\", \"b3b6cb49-6b5d-42fc-8bc1-f0507eb9eb3c\", \"06d8c92f-db5b-4f27-8ad0-5317d2d9f73c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48391723632812, \"Text\": \"-194\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03248542547225952, \"Height\": 0.010086745023727417, \"Left\": 0.7446870803833008, \"Top\": 0.44749876856803894}, \"Polygon\": [{\"X\": 0.7446870803833008, \"Y\": 0.44749876856803894}, {\"X\": 0.7771725058555603, \"Y\": 0.44749876856803894}, {\"X\": 0.7771725058555603, \"Y\": 0.45758551359176636}, {\"X\": 0.7446870803833008, \"Y\": 0.45758551359176636}]}, \"Id\": \"ae0159bc-436a-4092-b469-c7f75940d9ec\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f370621-67e7-47d0-98e6-a2855dedd4c7\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50365447998047, \"Text\": \"5/12/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07779669761657715, \"Height\": 0.012779176235198975, \"Left\": 0.13582661747932434, \"Top\": 0.4662502408027649}, \"Polygon\": [{\"X\": 0.13582661747932434, \"Y\": 0.4662502408027649}, {\"X\": 0.2136233150959015, \"Y\": 0.4662502408027649}, {\"X\": 0.2136233150959015, \"Y\": 0.47902941703796387}, {\"X\": 0.13582661747932434, \"Y\": 0.47902941703796387}]}, \"Id\": \"c11c6338-a6f5-4a34-9580-9dd5442532ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"07f2c6cc-c07b-45d7-8011-5957166e69ff\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.9246826171875, \"Text\": \"Transport - Lyft - 4027406850\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21773460507392883, \"Height\": 0.012528388760983944, \"Left\": 0.23052364587783813, \"Top\": 0.4669449031352997}, \"Polygon\": [{\"X\": 0.23052364587783813, \"Y\": 0.4669449031352997}, {\"X\": 0.44825825095176697, \"Y\": 0.4669449031352997}, {\"X\": 0.44825825095176697, \"Y\": 0.4794732928276062}, {\"X\": 0.23052364587783813, \"Y\": 0.4794732928276062}]}, \"Id\": \"6c7e591e-f2c5-4232-9e2d-274e5a70e46b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc9a60d7-27c8-49d0-9ea4-1506e7aace72\", \"b779a5e7-171d-4356-8301-ba20f84e455c\", \"e8850eb9-5359-42c1-b59b-e2fde1324102\", \"30d2e33c-04be-42b6-b717-77bfee92015a\", \"e1fa7b3e-79e7-4c03-aa6f-cf4bf1760c1e\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.30978393554688, \"Text\": \"-243\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032499730587005615, \"Height\": 0.009737223386764526, \"Left\": 0.7447733879089355, \"Top\": 0.467337965965271}, \"Polygon\": [{\"X\": 0.7447733879089355, \"Y\": 0.467337965965271}, {\"X\": 0.7772731184959412, \"Y\": 0.467337965965271}, {\"X\": 0.7772731184959412, \"Y\": 0.4770751893520355}, {\"X\": 0.7447733879089355, \"Y\": 0.4770751893520355}]}, \"Id\": \"5e4a2eeb-f777-4022-b2cb-727fcacfc6c9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"176d1f67-1d53-4728-aa8d-5dbd50920f95\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48307037353516, \"Text\": \"1/26/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07759565114974976, \"Height\": 0.012883543968200684, \"Left\": 0.13618871569633484, \"Top\": 0.4857978820800781}, \"Polygon\": [{\"X\": 0.13618871569633484, \"Y\": 0.4857978820800781}, {\"X\": 0.2137843668460846, \"Y\": 0.4857978820800781}, {\"X\": 0.2137843668460846, \"Y\": 0.4986814260482788}, {\"X\": 0.13618871569633484, \"Y\": 0.4986814260482788}]}, \"Id\": \"77ab4e66-7ca0-46ac-9c74-e8a9ceb6a0f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40dd97bb-2ac9-412e-875f-03b1f503d700\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.40453338623047, \"Text\": \"Retail Purchase - Loblaws - 4335346753\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.29219672083854675, \"Height\": 0.010677863843739033, \"Left\": 0.23200324177742004, \"Top\": 0.48630648851394653}, \"Polygon\": [{\"X\": 0.23200324177742004, \"Y\": 0.48630648851394653}, {\"X\": 0.5241999626159668, \"Y\": 0.48630648851394653}, {\"X\": 0.5241999626159668, \"Y\": 0.4969843626022339}, {\"X\": 0.23200324177742004, \"Y\": 0.4969843626022339}]}, \"Id\": \"62929386-dda3-4161-be0b-1e78960da5e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a2453794-2c13-4350-8d7b-a0b0aaf44565\", \"186fbd9f-24ed-4a0d-8dd1-6f4954a989e3\", \"72bf6152-25b0-4d64-a90a-d11d2c73cde2\", \"d1a274a9-6898-4615-880c-0aff67e39c1d\", \"7e21de4b-33b6-430f-8521-57199031b2c9\", \"bd8218b0-9f8b-4509-b719-901fe50bc449\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7006607055664, \"Text\": \"-173\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03226065635681152, \"Height\": 0.009938955307006836, \"Left\": 0.7448899745941162, \"Top\": 0.48683345317840576}, \"Polygon\": [{\"X\": 0.7448899745941162, \"Y\": 0.48683345317840576}, {\"X\": 0.7771506309509277, \"Y\": 0.48683345317840576}, {\"X\": 0.7771506309509277, \"Y\": 0.4967724084854126}, {\"X\": 0.7448899745941162, \"Y\": 0.4967724084854126}]}, \"Id\": \"50cc49c9-747c-4e44-bd3a-7bde0caffc83\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"07e79a59-4fcc-457a-af3b-85a9b0e6e3c4\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.90721130371094, \"Text\": \"4/9/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06912511587142944, \"Height\": 0.013134956359863281, \"Left\": 0.1445917785167694, \"Top\": 0.5052213668823242}, \"Polygon\": [{\"X\": 0.1445917785167694, \"Y\": 0.5052213668823242}, {\"X\": 0.21371689438819885, \"Y\": 0.5052213668823242}, {\"X\": 0.21371689438819885, \"Y\": 0.5183563232421875}, {\"X\": 0.1445917785167694, \"Y\": 0.5183563232421875}]}, \"Id\": \"9d2f3673-f098-4625-804e-649872d7dc5c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e3254d74-7e43-4e06-8a52-540cf7f212bb\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.24608612060547, \"Text\": \"Retail Purchase - Sobeys - 4505103520\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2859373390674591, \"Height\": 0.013090431690216064, \"Left\": 0.23197290301322937, \"Top\": 0.5058078765869141}, \"Polygon\": [{\"X\": 0.23197290301322937, \"Y\": 0.5058078765869141}, {\"X\": 0.5179102420806885, \"Y\": 0.5058078765869141}, {\"X\": 0.5179102420806885, \"Y\": 0.5188983082771301}, {\"X\": 0.23197290301322937, \"Y\": 0.5188983082771301}]}, \"Id\": \"75f82fba-500d-41ea-a270-f3af00eb2fd7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6bb97aad-97be-4db5-b2c9-23cacaf147c9\", \"a1c1a7ff-e869-42c9-89c7-86c2cbd8f3e6\", \"47b578cd-88b4-44ea-bab4-8dfb2435c9cd\", \"33bfd9cc-5b99-4dfa-b89e-6a2390540a1e\", \"875312ae-e8ae-4036-8064-e291ea0203b6\", \"7f1e233d-85a0-4c61-be45-c385186667a5\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61919403076172, \"Text\": \"-174\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033023715019226074, \"Height\": 0.01012331247329712, \"Left\": 0.7447885870933533, \"Top\": 0.5063815712928772}, \"Polygon\": [{\"X\": 0.7447885870933533, \"Y\": 0.5063815712928772}, {\"X\": 0.7778123021125793, \"Y\": 0.5063815712928772}, {\"X\": 0.7778123021125793, \"Y\": 0.5165048837661743}, {\"X\": 0.7447885870933533, \"Y\": 0.5165048837661743}]}, \"Id\": \"dccbb660-aed8-459c-b538-e0e9bd575635\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e771b73c-5681-4472-96c9-e752a02a859e\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42842102050781, \"Text\": \"4/10/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07786105573177338, \"Height\": 0.012953042984008789, \"Left\": 0.13565173745155334, \"Top\": 0.5250037908554077}, \"Polygon\": [{\"X\": 0.13565173745155334, \"Y\": 0.5250037908554077}, {\"X\": 0.21351279318332672, \"Y\": 0.5250037908554077}, {\"X\": 0.21351279318332672, \"Y\": 0.5379568338394165}, {\"X\": 0.13565173745155334, \"Y\": 0.5379568338394165}]}, \"Id\": \"b3465468-e590-4d34-b0e9-ecbbfdf5e5f7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7a580507-ba3d-483b-acb3-060b5568d574\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.26178741455078, \"Text\": \"Transport - Uber - 4608033455\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22605304419994354, \"Height\": 0.012680239044129848, \"Left\": 0.23037953674793243, \"Top\": 0.52570641040802}, \"Polygon\": [{\"X\": 0.23037953674793243, \"Y\": 0.52570641040802}, {\"X\": 0.456432580947876, \"Y\": 0.52570641040802}, {\"X\": 0.456432580947876, \"Y\": 0.5383866429328918}, {\"X\": 0.23037953674793243, \"Y\": 0.5383866429328918}]}, \"Id\": \"b140d5a9-eb23-4231-9d4d-f0396152656e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"821f1fb7-bfcf-472a-85c4-d9cc1ca4d287\", \"2d5deebe-dbb1-48e5-b53e-ef6c8e2ec0b8\", \"3d436513-570b-4b2d-ac75-5129d804a885\", \"5a75524d-5366-4145-92b8-2d385582b778\", \"7f682620-95bc-4074-897d-c3f4be90b240\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5941162109375, \"Text\": \"-183\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03209805488586426, \"Height\": 0.00993889570236206, \"Left\": 0.7448493242263794, \"Top\": 0.5260004997253418}, \"Polygon\": [{\"X\": 0.7448493242263794, \"Y\": 0.5260004997253418}, {\"X\": 0.7769473791122437, \"Y\": 0.5260004997253418}, {\"X\": 0.7769473791122437, \"Y\": 0.5359393954277039}, {\"X\": 0.7448493242263794, \"Y\": 0.5359393954277039}]}, \"Id\": \"15a55fea-6169-411b-9b4f-2c979b2ba2b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9db23b0f-7232-4d8a-899b-fa544bf06c3d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.53439331054688, \"Text\": \"6/15/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0770956426858902, \"Height\": 0.013144075870513916, \"Left\": 0.13606205582618713, \"Top\": 0.5444398522377014}, \"Polygon\": [{\"X\": 0.13606205582618713, \"Y\": 0.5444398522377014}, {\"X\": 0.21315769851207733, \"Y\": 0.5444398522377014}, {\"X\": 0.21315769851207733, \"Y\": 0.5575839281082153}, {\"X\": 0.13606205582618713, \"Y\": 0.5575839281082153}]}, \"Id\": \"b44c76f8-4a81-47c7-973a-4efd052fe68e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2826d380-2194-4888-aa1a-31a3a18eb30a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.64173889160156, \"Text\": \"Service Charge - Bank - 4711509600\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.26249557733535767, \"Height\": 0.013258865103125572, \"Left\": 0.23090676963329315, \"Top\": 0.5446017384529114}, \"Polygon\": [{\"X\": 0.23090676963329315, \"Y\": 0.5446017384529114}, {\"X\": 0.493402361869812, \"Y\": 0.5446017384529114}, {\"X\": 0.493402361869812, \"Y\": 0.5578606128692627}, {\"X\": 0.23090676963329315, \"Y\": 0.5578606128692627}]}, \"Id\": \"922cd521-a226-41c5-aba4-3543ed2c6cbb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3b5e7c42-7f5e-4ed2-988f-8538f3186732\", \"5bc32872-f9a4-4ee4-bf7e-d1287f1a7ccd\", \"0a667237-e329-4eef-8860-569dab326df8\", \"267284fe-57fd-40fd-b534-e24393af330d\", \"c7024856-5fa7-4a52-ae9f-e92a4a882ef6\", \"42c3bc1a-fa3e-4186-a1e0-e9877320fba3\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74097442626953, \"Text\": \"-7\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014592230319976807, \"Height\": 0.009826362133026123, \"Left\": 0.7628105282783508, \"Top\": 0.5454667210578918}, \"Polygon\": [{\"X\": 0.7628105282783508, \"Y\": 0.5454667210578918}, {\"X\": 0.7774027585983276, \"Y\": 0.5454667210578918}, {\"X\": 0.7774027585983276, \"Y\": 0.555293083190918}, {\"X\": 0.7628105282783508, \"Y\": 0.555293083190918}]}, \"Id\": \"365141b0-f379-4f2b-bedb-a07913d53c81\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dac4ea27-2ad4-4ae9-82cd-c40160febecc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68729400634766, \"Text\": \"11/10/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0856504887342453, \"Height\": 0.012677907943725586, \"Left\": 0.12755601108074188, \"Top\": 0.5641932487487793}, \"Polygon\": [{\"X\": 0.12755601108074188, \"Y\": 0.5641932487487793}, {\"X\": 0.21320649981498718, \"Y\": 0.5641932487487793}, {\"X\": 0.21320649981498718, \"Y\": 0.5768711566925049}, {\"X\": 0.12755601108074188, \"Y\": 0.5768711566925049}]}, \"Id\": \"52bc3271-779b-4cc4-8495-ae45c7d8ab36\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9d07fd4f-11c9-48c8-b554-80c676c2a12b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.07113647460938, \"Text\": \"Transport - Lyft - 4740375574\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21763953566551208, \"Height\": 0.012607116252183914, \"Left\": 0.23034438490867615, \"Top\": 0.5647373199462891}, \"Polygon\": [{\"X\": 0.23034438490867615, \"Y\": 0.5647373199462891}, {\"X\": 0.44798392057418823, \"Y\": 0.5647373199462891}, {\"X\": 0.44798392057418823, \"Y\": 0.5773444175720215}, {\"X\": 0.23034438490867615, \"Y\": 0.5773444175720215}]}, \"Id\": \"0aed238a-6fbf-47b2-bb27-822ee73859f2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f6ffad1-d6ad-4997-ac62-c229f9a7d1ad\", \"9fb646c9-2019-4db7-81e0-4d456a92f7de\", \"118fd3d2-4fb6-495e-97bb-2cf16c690662\", \"9e48995e-fcf3-4833-966b-5851abc3b516\", \"d3147072-4c08-4973-83bc-8baded94fe5f\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54393768310547, \"Text\": \"-141\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03226882219314575, \"Height\": 0.009783685207366943, \"Left\": 0.7451748847961426, \"Top\": 0.5652767419815063}, \"Polygon\": [{\"X\": 0.7451748847961426, \"Y\": 0.5652767419815063}, {\"X\": 0.7774437069892883, \"Y\": 0.5652767419815063}, {\"X\": 0.7774437069892883, \"Y\": 0.5750604271888733}, {\"X\": 0.7451748847961426, \"Y\": 0.5750604271888733}]}, \"Id\": \"34bbef6f-22f0-4e50-9ced-bd13532336f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39be6a38-9108-415b-9c28-91e6a70e7da6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.29327392578125, \"Text\": \"10/16/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0857979953289032, \"Height\": 0.012660741806030273, \"Left\": 0.12743449211120605, \"Top\": 0.583819568157196}, \"Polygon\": [{\"X\": 0.12743449211120605, \"Y\": 0.583819568157196}, {\"X\": 0.21323248744010925, \"Y\": 0.583819568157196}, {\"X\": 0.21323248744010925, \"Y\": 0.5964803099632263}, {\"X\": 0.12743449211120605, \"Y\": 0.5964803099632263}]}, \"Id\": \"55325cc1-af8d-4ee1-a5a9-43525f6ef989\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"defc18b0-d16a-439c-abf1-9d5bb21c90ba\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.42405700683594, \"Text\": \"Online Retail - Amazon.com - 4790934451\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3070601522922516, \"Height\": 0.010737573727965355, \"Left\": 0.23122815787792206, \"Top\": 0.584231972694397}, \"Polygon\": [{\"X\": 0.23122815787792206, \"Y\": 0.584231972694397}, {\"X\": 0.5382882952690125, \"Y\": 0.584231972694397}, {\"X\": 0.5382882952690125, \"Y\": 0.5949695706367493}, {\"X\": 0.23122815787792206, \"Y\": 0.5949695706367493}]}, \"Id\": \"0906fd04-4327-495b-84da-2e1e29a8c535\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"941983b1-a9dd-49f6-92f2-9c8b12291466\", \"30bd97dd-87a6-42ee-97cd-97d0427d5149\", \"aaa526ae-45f0-4bf7-a9d2-256af0680f17\", \"b6fbce4e-86c2-4f5e-87a2-9c597b28a3a3\", \"79f6fd54-0e51-4998-97e0-697c688295c4\", \"d54efd47-c440-485b-a2f1-178bb7e78a3a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.8148193359375, \"Text\": \"-271\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03238886594772339, \"Height\": 0.009980440139770508, \"Left\": 0.7448071241378784, \"Top\": 0.5845524668693542}, \"Polygon\": [{\"X\": 0.7448071241378784, \"Y\": 0.5845524668693542}, {\"X\": 0.7771959900856018, \"Y\": 0.5845524668693542}, {\"X\": 0.7771959900856018, \"Y\": 0.5945329070091248}, {\"X\": 0.7448071241378784, \"Y\": 0.5945329070091248}]}, \"Id\": \"e0541f23-1813-4f4a-b3b1-9e6b875c1512\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad33497c-68fc-49e4-80e1-d1b8a4f9222d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50120544433594, \"Text\": \"7/27/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07811526954174042, \"Height\": 0.012601792812347412, \"Left\": 0.13558508455753326, \"Top\": 0.6034563183784485}, \"Polygon\": [{\"X\": 0.13558508455753326, \"Y\": 0.6034563183784485}, {\"X\": 0.21370035409927368, \"Y\": 0.6034563183784485}, {\"X\": 0.21370035409927368, \"Y\": 0.6160581111907959}, {\"X\": 0.13558508455753326, \"Y\": 0.6160581111907959}]}, \"Id\": \"041d6135-7aad-426b-9def-9e83810ff3b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce70774b-5478-47b8-85a8-d0f5fd65fa17\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.15205383300781, \"Text\": \"Retail Purchase - Sobeys - 4915649848\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2855898439884186, \"Height\": 0.01286525372415781, \"Left\": 0.2317930907011032, \"Top\": 0.6036768555641174}, \"Polygon\": [{\"X\": 0.2317930907011032, \"Y\": 0.6036768555641174}, {\"X\": 0.5173829197883606, \"Y\": 0.6036768555641174}, {\"X\": 0.5173829197883606, \"Y\": 0.6165421009063721}, {\"X\": 0.2317930907011032, \"Y\": 0.6165421009063721}]}, \"Id\": \"e46f2c75-6435-450f-8676-d7f97b2f993c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"36d12bff-b173-4c99-b637-46e174ed5819\", \"3f60b2f8-17d5-421f-8fa8-d811b39e08e1\", \"bd74c8b8-4643-4396-a3ae-802d98a24627\", \"feddc7f9-864c-4d19-a4f6-1577a31d7329\", \"7070a7ca-435b-4f5f-bcd3-2ce3dc7f413c\", \"76619f9e-62bc-400e-bbed-19ca2c4db134\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5020523071289, \"Text\": \"-257\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03252673149108887, \"Height\": 0.01001673936843872, \"Left\": 0.7448986768722534, \"Top\": 0.6041049957275391}, \"Polygon\": [{\"X\": 0.7448986768722534, \"Y\": 0.6041049957275391}, {\"X\": 0.7774254083633423, \"Y\": 0.6041049957275391}, {\"X\": 0.7774254083633423, \"Y\": 0.6141217350959778}, {\"X\": 0.7448986768722534, \"Y\": 0.6141217350959778}]}, \"Id\": \"a3d10900-5ccf-4f0d-bcdc-8346b481af85\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fb4022e-220b-498e-8e07-7f5ce456b46a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.31690979003906, \"Text\": \"6/22/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07793715596199036, \"Height\": 0.013160109519958496, \"Left\": 0.13548186421394348, \"Top\": 0.6227917671203613}, \"Polygon\": [{\"X\": 0.13548186421394348, \"Y\": 0.6227917671203613}, {\"X\": 0.21341902017593384, \"Y\": 0.6227917671203613}, {\"X\": 0.21341902017593384, \"Y\": 0.6359518766403198}, {\"X\": 0.13548186421394348, \"Y\": 0.6359518766403198}]}, \"Id\": \"0fdb7163-803f-48cd-9411-065c5f126a56\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cfc48292-8240-40d8-8030-2c024cbefa1c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.86537170410156, \"Text\": \"Transport - Lyft - 4973453567\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2161533683538437, \"Height\": 0.013027193956077099, \"Left\": 0.23064987361431122, \"Top\": 0.6233339309692383}, \"Polygon\": [{\"X\": 0.23064987361431122, \"Y\": 0.6233339309692383}, {\"X\": 0.4468032419681549, \"Y\": 0.6233339309692383}, {\"X\": 0.4468032419681549, \"Y\": 0.6363611221313477}, {\"X\": 0.23064987361431122, \"Y\": 0.6363611221313477}]}, \"Id\": \"a433b078-5274-45e5-b173-45d5b926ddd7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab9b5c28-7a15-4500-8466-3a66c574e491\", \"30c9c3cd-d861-4455-adf4-5ef8d2b5c09d\", \"9d426a00-a615-48b0-aead-750adb52f7d1\", \"91a3f6cd-0983-4180-914c-60b31bc567ee\", \"3922c178-1939-4718-9369-5e2a3f542ed6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5853042602539, \"Text\": \"-130\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03260350227355957, \"Height\": 0.009952545166015625, \"Left\": 0.7448318600654602, \"Top\": 0.623857319355011}, \"Polygon\": [{\"X\": 0.7448318600654602, \"Y\": 0.623857319355011}, {\"X\": 0.7774353623390198, \"Y\": 0.623857319355011}, {\"X\": 0.7774353623390198, \"Y\": 0.6338098645210266}, {\"X\": 0.7448318600654602, \"Y\": 0.6338098645210266}]}, \"Id\": \"cd3e273b-3f38-4e67-80dd-848424464c4b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39fd2e80-51ee-46fd-bba2-120946dd1b27\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42524719238281, \"Text\": \"7/28/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0774465948343277, \"Height\": 0.013078629970550537, \"Left\": 0.13577909767627716, \"Top\": 0.6423225402832031}, \"Polygon\": [{\"X\": 0.13577909767627716, \"Y\": 0.6423225402832031}, {\"X\": 0.21322569251060486, \"Y\": 0.6423225402832031}, {\"X\": 0.21322569251060486, \"Y\": 0.6554011702537537}, {\"X\": 0.13577909767627716, \"Y\": 0.6554011702537537}]}, \"Id\": \"4fb2d462-9e19-4d54-93f6-dc93f7811290\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"927a8511-41ce-4af1-aec9-ddc56de13554\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.38572692871094, \"Text\": \"Transport - Uber - 5004776995\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22517630457878113, \"Height\": 0.012829506769776344, \"Left\": 0.23067283630371094, \"Top\": 0.6429767608642578}, \"Polygon\": [{\"X\": 0.23067283630371094, \"Y\": 0.6429767608642578}, {\"X\": 0.45584914088249207, \"Y\": 0.6429767608642578}, {\"X\": 0.45584914088249207, \"Y\": 0.6558062434196472}, {\"X\": 0.23067283630371094, \"Y\": 0.6558062434196472}]}, \"Id\": \"db58bc02-b5ef-4895-9944-ff8bae8654c3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0547fd7d-b036-41e3-8607-b559c0534ec9\", \"02079d12-65dc-4caf-ac09-1f36e9c95ad9\", \"1a21d0c7-71dc-4f61-9363-736396944763\", \"522c3ea9-08bc-40d2-8041-eca5ad3be403\", \"d880bf3d-9061-4fe4-b898-a92854032793\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5735855102539, \"Text\": \"-150\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032749176025390625, \"Height\": 0.010035872459411621, \"Left\": 0.7451016306877136, \"Top\": 0.6433399319648743}, \"Polygon\": [{\"X\": 0.7451016306877136, \"Y\": 0.6433399319648743}, {\"X\": 0.7778508067131042, \"Y\": 0.6433399319648743}, {\"X\": 0.7778508067131042, \"Y\": 0.6533758044242859}, {\"X\": 0.7451016306877136, \"Y\": 0.6533758044242859}]}, \"Id\": \"b729db17-548a-4838-a81d-84f2903960db\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f01666b-e13c-427e-aade-ac84a8f6df8e\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51416015625, \"Text\": \"6/7/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06853057444095612, \"Height\": 0.012372314929962158, \"Left\": 0.14492343366146088, \"Top\": 0.6621837019920349}, \"Polygon\": [{\"X\": 0.14492343366146088, \"Y\": 0.6621837019920349}, {\"X\": 0.213454008102417, \"Y\": 0.6621837019920349}, {\"X\": 0.213454008102417, \"Y\": 0.6745560169219971}, {\"X\": 0.14492343366146088, \"Y\": 0.6745560169219971}]}, \"Id\": \"b5192ff1-cf00-45e7-b733-febdf6437cb0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4838f111-ca39-4134-b740-70b44eed314f\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.46784973144531, \"Text\": \"Retail Purchase - Loblaws - 5476998456\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2932158410549164, \"Height\": 0.010760297067463398, \"Left\": 0.23183295130729675, \"Top\": 0.6623736619949341}, \"Polygon\": [{\"X\": 0.23183295130729675, \"Y\": 0.6623736619949341}, {\"X\": 0.5250487923622131, \"Y\": 0.6623736619949341}, {\"X\": 0.5250487923622131, \"Y\": 0.6731339693069458}, {\"X\": 0.23183295130729675, \"Y\": 0.6731339693069458}]}, \"Id\": \"2735c43d-ac44-4578-96ca-ec5979cdc286\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3a17534c-48e8-48c4-bc21-8b398e241046\", \"8d4f2a11-a77e-43c8-885e-915e98bc422b\", \"5fe190cf-1592-4b84-9509-b34e7eb72b7d\", \"c00fbfa1-2390-40a7-87f9-93915208205c\", \"88c921fc-0fc7-46c2-b317-db5d643dd5da\", \"8daa16e9-8e19-4219-8636-2b89238405f5\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.04617309570312, \"Text\": \"-294\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03253740072250366, \"Height\": 0.009892880916595459, \"Left\": 0.7451913356781006, \"Top\": 0.662922739982605}, \"Polygon\": [{\"X\": 0.7451913356781006, \"Y\": 0.662922739982605}, {\"X\": 0.7777287364006042, \"Y\": 0.662922739982605}, {\"X\": 0.7777287364006042, \"Y\": 0.6728156208992004}, {\"X\": 0.7451913356781006, \"Y\": 0.6728156208992004}]}, \"Id\": \"3d878e90-e9c3-452c-9f32-92d421c41104\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8939658a-0751-4151-8eb6-b6d50264220b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49555206298828, \"Text\": \"7/23/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07748734951019287, \"Height\": 0.013110816478729248, \"Left\": 0.1358220875263214, \"Top\": 0.6814600229263306}, \"Polygon\": [{\"X\": 0.1358220875263214, \"Y\": 0.6814600229263306}, {\"X\": 0.21330943703651428, \"Y\": 0.6814600229263306}, {\"X\": 0.21330943703651428, \"Y\": 0.6945708394050598}, {\"X\": 0.1358220875263214, \"Y\": 0.6945708394050598}]}, \"Id\": \"7e5425ce-9d56-4363-93f1-82f4b79f44ad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06b3e7b6-9d1a-4258-9559-b4df04b4adab\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.04837036132812, \"Text\": \"Retail Purchase - Sobeys - 5505969927\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2843684256076813, \"Height\": 0.012897729873657227, \"Left\": 0.2320227175951004, \"Top\": 0.6820240616798401}, \"Polygon\": [{\"X\": 0.2320227175951004, \"Y\": 0.6820240616798401}, {\"X\": 0.5163911581039429, \"Y\": 0.6820240616798401}, {\"X\": 0.5163911581039429, \"Y\": 0.6949217915534973}, {\"X\": 0.2320227175951004, \"Y\": 0.6949217915534973}]}, \"Id\": \"6360fcef-302f-4b14-a1a9-6d66d3bb9b0a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"48b5bbed-2535-47b1-95ea-c63456943c79\", \"345cc827-b79c-46b2-bb99-7b0cb6db135c\", \"87b9b733-dd9d-4dbb-b9dd-97eb28923095\", \"d6046359-ea80-4635-96c1-330a5cd51220\", \"7402f354-18d2-4d03-9907-2a59392a0d5c\", \"3367acaf-3be8-44bf-9b15-369fc9745309\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.08769989013672, \"Text\": \"-269\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032882094383239746, \"Height\": 0.009864568710327148, \"Left\": 0.744793713092804, \"Top\": 0.6825522184371948}, \"Polygon\": [{\"X\": 0.744793713092804, \"Y\": 0.6825522184371948}, {\"X\": 0.7776758074760437, \"Y\": 0.6825522184371948}, {\"X\": 0.7776758074760437, \"Y\": 0.692416787147522}, {\"X\": 0.744793713092804, \"Y\": 0.692416787147522}]}, \"Id\": \"8b676014-d471-4dc1-88ff-4f18307d47f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83477cfc-dc96-45c6-9106-bbc16f647a5d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57650756835938, \"Text\": \"3/21/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07732328772544861, \"Height\": 0.012909770011901855, \"Left\": 0.13614796102046967, \"Top\": 0.7011279463768005}, \"Polygon\": [{\"X\": 0.13614796102046967, \"Y\": 0.7011279463768005}, {\"X\": 0.21347124874591827, \"Y\": 0.7011279463768005}, {\"X\": 0.21347124874591827, \"Y\": 0.7140377163887024}, {\"X\": 0.13614796102046967, \"Y\": 0.7140377163887024}]}, \"Id\": \"879e48ae-6c8c-4cf1-826b-3df214416e6d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9be9afc3-7ffc-4bf8-aff3-6c89b5545d5d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.98454284667969, \"Text\": \"Transport - Lyft - 5688740948\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21727532148361206, \"Height\": 0.012595958076417446, \"Left\": 0.23049460351467133, \"Top\": 0.7017900347709656}, \"Polygon\": [{\"X\": 0.23049460351467133, \"Y\": 0.7017900347709656}, {\"X\": 0.4477699100971222, \"Y\": 0.7017900347709656}, {\"X\": 0.4477699100971222, \"Y\": 0.714385986328125}, {\"X\": 0.23049460351467133, \"Y\": 0.714385986328125}]}, \"Id\": \"712f3291-0896-49fe-a74e-822265b7095e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74991fc9-62a5-42f1-8fcf-d07416c6a8a1\", \"a2fb4bc6-f7ec-45d8-848a-4329b26e2add\", \"c43dbfda-3edd-45d8-a313-9bdbe384d7f0\", \"f34d6fb3-df41-4c02-a18c-45b036e91938\", \"9355efc4-8dfd-4cc5-bfa9-4bf8586d60e6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83187103271484, \"Text\": \"-52\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023585140705108643, \"Height\": 0.00981992483139038, \"Left\": 0.7540094256401062, \"Top\": 0.7021796703338623}, \"Polygon\": [{\"X\": 0.7540094256401062, \"Y\": 0.7021796703338623}, {\"X\": 0.7775945663452148, \"Y\": 0.7021796703338623}, {\"X\": 0.7775945663452148, \"Y\": 0.7119996547698975}, {\"X\": 0.7540094256401062, \"Y\": 0.7119996547698975}]}, \"Id\": \"8fab62de-585f-485d-bd75-198c2654c150\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"78737934-f6cd-4135-8298-c6559531220d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50719451904297, \"Text\": \"8/27/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07759159803390503, \"Height\": 0.012872397899627686, \"Left\": 0.13597813248634338, \"Top\": 0.7206233143806458}, \"Polygon\": [{\"X\": 0.13597813248634338, \"Y\": 0.7206233143806458}, {\"X\": 0.2135697305202484, \"Y\": 0.7206233143806458}, {\"X\": 0.2135697305202484, \"Y\": 0.7334957122802734}, {\"X\": 0.13597813248634338, \"Y\": 0.7334957122802734}]}, \"Id\": \"03a5b63c-6afe-4621-a10a-37df3eb16946\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38f31aad-0baa-4c3f-ac63-2b0f23f17e1c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.4793472290039, \"Text\": \"Food Purchase - McDonalds - 5798336406\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3073383867740631, \"Height\": 0.01079326681792736, \"Left\": 0.23199710249900818, \"Top\": 0.7210685014724731}, \"Polygon\": [{\"X\": 0.23199710249900818, \"Y\": 0.7210685014724731}, {\"X\": 0.5393354892730713, \"Y\": 0.7210685014724731}, {\"X\": 0.5393354892730713, \"Y\": 0.7318617701530457}, {\"X\": 0.23199710249900818, \"Y\": 0.7318617701530457}]}, \"Id\": \"8cde68c8-70d2-4e0b-98d6-4ab4543a239b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54b12a70-4dcc-4858-a360-a3620c7317a4\", \"1d67551a-06e8-424f-bae6-025451ca7298\", \"860c9f23-0566-4ad3-8291-1f2f99a8457a\", \"a9faa6e8-6f47-449c-b7f5-7ef2ecf75867\", \"3293c11f-08c1-43a7-a45e-e03397b39b7f\", \"5e9bccea-c91e-4675-800d-98c6ed482783\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44096374511719, \"Text\": \"-222\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0322834849357605, \"Height\": 0.009991765022277832, \"Left\": 0.745154857635498, \"Top\": 0.7215343713760376}, \"Polygon\": [{\"X\": 0.745154857635498, \"Y\": 0.7215343713760376}, {\"X\": 0.7774383425712585, \"Y\": 0.7215343713760376}, {\"X\": 0.7774383425712585, \"Y\": 0.7315261363983154}, {\"X\": 0.745154857635498, \"Y\": 0.7315261363983154}]}, \"Id\": \"2bbe7692-9c51-4364-a87c-ea53c6adc147\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"089f74e6-72e5-498c-80e5-344c00a57493\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72518157958984, \"Text\": \"11/25/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08562606573104858, \"Height\": 0.012582600116729736, \"Left\": 0.12771150469779968, \"Top\": 0.7404417395591736}, \"Polygon\": [{\"X\": 0.12771150469779968, \"Y\": 0.7404417395591736}, {\"X\": 0.21333757042884827, \"Y\": 0.7404417395591736}, {\"X\": 0.21333757042884827, \"Y\": 0.7530243396759033}, {\"X\": 0.12771150469779968, \"Y\": 0.7530243396759033}]}, \"Id\": \"e14905c9-da69-4d44-a397-8d5ef05313ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"02a3dbab-cc3a-409d-9c94-89816d29c33c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.362060546875, \"Text\": \"Food Purchase - Starbucks - 5822058649\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2955324053764343, \"Height\": 0.010778585448861122, \"Left\": 0.23214948177337646, \"Top\": 0.7407884001731873}, \"Polygon\": [{\"X\": 0.23214948177337646, \"Y\": 0.7407884001731873}, {\"X\": 0.5276818871498108, \"Y\": 0.7407884001731873}, {\"X\": 0.5276818871498108, \"Y\": 0.751567006111145}, {\"X\": 0.23214948177337646, \"Y\": 0.751567006111145}]}, \"Id\": \"ca860d0b-0a48-4903-a53d-d883e488cc79\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6abf6063-6c65-4c43-b945-697eb3ce8690\", \"fe0403c9-a7b8-4df3-955e-f3ed8f0d2829\", \"53d9bce7-0ecd-4de4-9ed2-44ec79b18806\", \"c4275901-193f-40e1-ab9a-55c80057954c\", \"cf387f76-abb2-4440-a1ea-97eae3b9e328\", \"d3b08063-4f61-47a6-9803-393d5076be51\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49327087402344, \"Text\": \"-169\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03303426504135132, \"Height\": 0.010002493858337402, \"Left\": 0.7445762753486633, \"Top\": 0.7413047552108765}, \"Polygon\": [{\"X\": 0.7445762753486633, \"Y\": 0.7413047552108765}, {\"X\": 0.7776105403900146, \"Y\": 0.7413047552108765}, {\"X\": 0.7776105403900146, \"Y\": 0.7513072490692139}, {\"X\": 0.7445762753486633, \"Y\": 0.7513072490692139}]}, \"Id\": \"9d806238-2269-4910-9eb6-a6d3d839199a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5ff3453-06a2-46b5-a8b3-e9de9b8b7c75\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52819061279297, \"Text\": \"9/19/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0778062641620636, \"Height\": 0.012927711009979248, \"Left\": 0.1357419341802597, \"Top\": 0.7599289417266846}, \"Polygon\": [{\"X\": 0.1357419341802597, \"Y\": 0.7599289417266846}, {\"X\": 0.2135481983423233, \"Y\": 0.7599289417266846}, {\"X\": 0.2135481983423233, \"Y\": 0.7728566527366638}, {\"X\": 0.1357419341802597, \"Y\": 0.7728566527366638}]}, \"Id\": \"36e81de4-82b1-4651-bc12-6684c0dfce78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e54d14c7-046b-46aa-a22d-e90546e2a117\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.53756713867188, \"Text\": \"Retail Purchase - Sobeys - 5948096947\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28550395369529724, \"Height\": 0.012923479080200195, \"Left\": 0.2320382297039032, \"Top\": 0.7604421377182007}, \"Polygon\": [{\"X\": 0.2320382297039032, \"Y\": 0.7604421377182007}, {\"X\": 0.5175421833992004, \"Y\": 0.7604421377182007}, {\"X\": 0.5175421833992004, \"Y\": 0.7733656167984009}, {\"X\": 0.2320382297039032, \"Y\": 0.7733656167984009}]}, \"Id\": \"5f10353e-54b3-431a-a1a2-9bc7e7ea5e97\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"632b8d5b-308c-4c64-9f87-7e7e2c038160\", \"6cddf3c1-b43c-4055-a4cf-fdc7f485b744\", \"9ad8505e-ae50-4b3f-86f3-fbaa19ef34af\", \"dfe8080a-8ab3-4476-a8a9-361dd457c9f9\", \"72af2a39-ac87-4556-b4a9-897a2de45a59\", \"c6a8de1d-8751-4b5e-a9de-87998ca9f456\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44671630859375, \"Text\": \"-250\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03290325403213501, \"Height\": 0.010005533695220947, \"Left\": 0.7447600960731506, \"Top\": 0.7608312368392944}, \"Polygon\": [{\"X\": 0.7447600960731506, \"Y\": 0.7608312368392944}, {\"X\": 0.7776633501052856, \"Y\": 0.7608312368392944}, {\"X\": 0.7776633501052856, \"Y\": 0.7708367705345154}, {\"X\": 0.7447600960731506, \"Y\": 0.7708367705345154}]}, \"Id\": \"da2f724b-0e19-4c8a-a09d-d952f9ec13f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"729fe121-7c16-47eb-b146-f59c50b5c3b6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5707778930664, \"Text\": \"2/25/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07746019959449768, \"Height\": 0.012912333011627197, \"Left\": 0.13617916405200958, \"Top\": 0.7795358896255493}, \"Polygon\": [{\"X\": 0.13617916405200958, \"Y\": 0.7795358896255493}, {\"X\": 0.21363936364650726, \"Y\": 0.7795358896255493}, {\"X\": 0.21363936364650726, \"Y\": 0.7924482226371765}, {\"X\": 0.13617916405200958, \"Y\": 0.7924482226371765}]}, \"Id\": \"130f8f0a-0798-4813-a504-1a13817f3859\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fe2512e-c157-4dd1-8de0-ef13a5adde6d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.55269622802734, \"Text\": \"Retail Purchase - Sobeys - 6030150884\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28550875186920166, \"Height\": 0.01273345947265625, \"Left\": 0.2319692224264145, \"Top\": 0.7800061702728271}, \"Polygon\": [{\"X\": 0.2319692224264145, \"Y\": 0.7800061702728271}, {\"X\": 0.5174779891967773, \"Y\": 0.7800061702728271}, {\"X\": 0.5174779891967773, \"Y\": 0.7927396297454834}, {\"X\": 0.2319692224264145, \"Y\": 0.7927396297454834}]}, \"Id\": \"cf68c4f4-0bb9-4a9a-80ee-846d926c4f4b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"502179b4-d4cd-450a-8393-2a9090711de6\", \"2e82b351-9c9f-4764-ade1-5ea9c164e309\", \"0b55f599-c2a9-4b79-9e5d-c882e9209156\", \"87a81672-7334-4eda-bd53-e10c136ae69a\", \"22a7f864-50fd-4640-a150-696cf0ec5c9f\", \"c04abcc5-e5f5-40c9-a8b0-c14d1eeff8a4\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05768585205078, \"Text\": \"-269\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0328637957572937, \"Height\": 0.009930670261383057, \"Left\": 0.7445918321609497, \"Top\": 0.7804526090621948}, \"Polygon\": [{\"X\": 0.7445918321609497, \"Y\": 0.7804526090621948}, {\"X\": 0.7774556279182434, \"Y\": 0.7804526090621948}, {\"X\": 0.7774556279182434, \"Y\": 0.7903832793235779}, {\"X\": 0.7445918321609497, \"Y\": 0.7903832793235779}]}, \"Id\": \"425e5040-5763-4957-a11d-93639c4fdd64\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c564d11d-8247-40ad-be6d-6d8e899bc4af\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59014892578125, \"Text\": \"7/15/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07780763506889343, \"Height\": 0.013109564781188965, \"Left\": 0.13580995798110962, \"Top\": 0.7990537881851196}, \"Polygon\": [{\"X\": 0.13580995798110962, \"Y\": 0.7990537881851196}, {\"X\": 0.21361759305000305, \"Y\": 0.7990537881851196}, {\"X\": 0.21361759305000305, \"Y\": 0.8121633529663086}, {\"X\": 0.13580995798110962, \"Y\": 0.8121633529663086}]}, \"Id\": \"1fa0bb2d-5150-4d29-acf6-25572a2c2393\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"01864cab-ce05-4a86-b904-569f13d2c653\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.26930236816406, \"Text\": \"Food Purchase - McDonalds - 6031636977\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3067947030067444, \"Height\": 0.010767528787255287, \"Left\": 0.2321111410856247, \"Top\": 0.7994852066040039}, \"Polygon\": [{\"X\": 0.2321111410856247, \"Y\": 0.7994852066040039}, {\"X\": 0.5389058589935303, \"Y\": 0.7994852066040039}, {\"X\": 0.5389058589935303, \"Y\": 0.8102527260780334}, {\"X\": 0.2321111410856247, \"Y\": 0.8102527260780334}]}, \"Id\": \"8f1ac6a9-ca0c-4dd7-a3b9-01368ee800be\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e306d68-81d5-49d4-b630-a06632a3cc18\", \"489fe99e-545a-4e72-a886-08601abb099f\", \"89508bd6-1327-402c-8c04-3616cb8d9bad\", \"b84811c8-f448-4c90-ad6f-81a92e1a7abb\", \"e684cad8-7a87-4dad-a798-33193eb1f0d9\", \"ca319cf7-ccad-4e7a-adea-84797f1fc849\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.10249328613281, \"Text\": \"-287\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03303110599517822, \"Height\": 0.010007739067077637, \"Left\": 0.744537353515625, \"Top\": 0.7998651266098022}, \"Polygon\": [{\"X\": 0.744537353515625, \"Y\": 0.7998651266098022}, {\"X\": 0.7775684595108032, \"Y\": 0.7998651266098022}, {\"X\": 0.7775684595108032, \"Y\": 0.8098728656768799}, {\"X\": 0.744537353515625, \"Y\": 0.8098728656768799}]}, \"Id\": \"b02e046e-95e5-45e1-af1f-bf471c235940\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"87cf314b-30e7-4a3a-bfac-d6f98ba6569a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45254516601562, \"Text\": \"9/2/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06920139491558075, \"Height\": 0.013038992881774902, \"Left\": 0.14432017505168915, \"Top\": 0.8186823129653931}, \"Polygon\": [{\"X\": 0.14432017505168915, \"Y\": 0.8186823129653931}, {\"X\": 0.2135215699672699, \"Y\": 0.8186823129653931}, {\"X\": 0.2135215699672699, \"Y\": 0.831721305847168}, {\"X\": 0.14432017505168915, \"Y\": 0.831721305847168}]}, \"Id\": \"81052e39-0749-461d-a19c-e19ef6677ea4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8866af3d-1eb6-4054-8dac-ab7e82ea7328\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.67723083496094, \"Text\": \"Food Purchase - Tim Hortons - 6052214096\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.31474122405052185, \"Height\": 0.010708642192184925, \"Left\": 0.23193588852882385, \"Top\": 0.8190559148788452}, \"Polygon\": [{\"X\": 0.23193588852882385, \"Y\": 0.8190559148788452}, {\"X\": 0.5466771125793457, \"Y\": 0.8190559148788452}, {\"X\": 0.5466771125793457, \"Y\": 0.8297645449638367}, {\"X\": 0.23193588852882385, \"Y\": 0.8297645449638367}]}, \"Id\": \"53e69a40-bf93-4175-944a-b03701a94c9f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c950b9a-5c1a-4e58-bdf9-24c71d6b9f12\", \"6a81d318-0397-4f0e-9f4b-1e53271f5e75\", \"9027b09e-318f-46fe-b00d-e34d447a42cb\", \"f44864de-3e86-4437-b33e-e8b377277a73\", \"ef59ba4b-738b-4be6-92c6-a728c33e4038\", \"b22a48d3-d931-4ac0-ba06-782ad9d779fa\", \"8e5e7771-0775-4b17-af8b-2ade53040337\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.1867446899414, \"Text\": \"-268\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03258723020553589, \"Height\": 0.010082602500915527, \"Left\": 0.7448662519454956, \"Top\": 0.819438636302948}, \"Polygon\": [{\"X\": 0.7448662519454956, \"Y\": 0.819438636302948}, {\"X\": 0.7774534821510315, \"Y\": 0.819438636302948}, {\"X\": 0.7774534821510315, \"Y\": 0.8295212388038635}, {\"X\": 0.7448662519454956, \"Y\": 0.8295212388038635}]}, \"Id\": \"e8c73eb3-7eff-4961-bdfc-566bd8442172\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2b510e37-3adf-40fd-9438-f651635607d7\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65740203857422, \"Text\": \"11/10/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08689877390861511, \"Height\": 0.013003766536712646, \"Left\": 0.12717920541763306, \"Top\": 0.8379717469215393}, \"Polygon\": [{\"X\": 0.12717920541763306, \"Y\": 0.8379717469215393}, {\"X\": 0.21407797932624817, \"Y\": 0.8379717469215393}, {\"X\": 0.21407797932624817, \"Y\": 0.850975513458252}, {\"X\": 0.12717920541763306, \"Y\": 0.850975513458252}]}, \"Id\": \"a653e542-61e0-40da-a8ee-3c605ab9cd1f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1a5c17f8-416d-43c1-b20a-11cc0fb17831\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.53108978271484, \"Text\": \"Retail Purchase - Loblaws - 6308084189\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.29425203800201416, \"Height\": 0.010726679116487503, \"Left\": 0.23184186220169067, \"Top\": 0.8386465907096863}, \"Polygon\": [{\"X\": 0.23184186220169067, \"Y\": 0.8386465907096863}, {\"X\": 0.5260939002037048, \"Y\": 0.8386465907096863}, {\"X\": 0.5260939002037048, \"Y\": 0.8493732810020447}, {\"X\": 0.23184186220169067, \"Y\": 0.8493732810020447}]}, \"Id\": \"8266a369-1701-472c-88a9-45512a3e79fd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d57677e9-05e8-46c1-bc04-56ca734752e9\", \"e0d4eb35-9611-49b1-a790-dedd6af50160\", \"3a43ca01-5f0f-4976-8a5d-109c31b2e819\", \"9fe600c6-dadb-46b0-8df2-d41b8dce5872\", \"0c30e0f7-93f6-4d23-90d3-e9abea5e7886\", \"73f053d6-5986-4eff-86b1-4af5042f7470\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.23839569091797, \"Text\": \"-127\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0326228141784668, \"Height\": 0.010018229484558105, \"Left\": 0.7445916533470154, \"Top\": 0.8390279412269592}, \"Polygon\": [{\"X\": 0.7445916533470154, \"Y\": 0.8390279412269592}, {\"X\": 0.7772144675254822, \"Y\": 0.8390279412269592}, {\"X\": 0.7772144675254822, \"Y\": 0.8490461707115173}, {\"X\": 0.7445916533470154, \"Y\": 0.8490461707115173}]}, \"Id\": \"109c47cb-6944-4ef0-a0e5-56157c3d453f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61bd9958-d3a5-4c28-9d68-be8a7e5ed656\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56914520263672, \"Text\": \"11/27/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0854729413986206, \"Height\": 0.012395679950714111, \"Left\": 0.12769034504890442, \"Top\": 0.8579861521720886}, \"Polygon\": [{\"X\": 0.12769034504890442, \"Y\": 0.8579861521720886}, {\"X\": 0.21316328644752502, \"Y\": 0.8579861521720886}, {\"X\": 0.21316328644752502, \"Y\": 0.8703818321228027}, {\"X\": 0.12769034504890442, \"Y\": 0.8703818321228027}]}, \"Id\": \"df6426c6-1592-4620-91b0-bfd6b80f29b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a45b81b0-5822-46f8-95c6-1e578ac910d5\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.80130004882812, \"Text\": \"Food Purchase - Tim Hortons - 6335155520\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.31531253457069397, \"Height\": 0.010938024148344994, \"Left\": 0.23195402324199677, \"Top\": 0.8583459258079529}, \"Polygon\": [{\"X\": 0.23195402324199677, \"Y\": 0.8583459258079529}, {\"X\": 0.5472665429115295, \"Y\": 0.8583459258079529}, {\"X\": 0.5472665429115295, \"Y\": 0.86928391456604}, {\"X\": 0.23195402324199677, \"Y\": 0.86928391456604}]}, \"Id\": \"0807bdd4-bf25-4210-8316-dc02682943bb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efb7bf0f-3e67-4ff5-a705-99fc979ca0fb\", \"5900fc92-33d1-4d39-aa74-ffdf230e738b\", \"1aec2851-fed5-4525-adff-4718bb349a5e\", \"29ea276d-7954-49f8-baf8-968b85f7c688\", \"8e177f0e-544c-4eb9-aa84-a3a9e6bec702\", \"da6f4eda-1a61-46cd-91ae-73f51027d284\", \"99521b8f-f0bc-466c-819f-8e252f40d60f\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4901123046875, \"Text\": \"-104\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03245961666107178, \"Height\": 0.009796082973480225, \"Left\": 0.7448418736457825, \"Top\": 0.8588682413101196}, \"Polygon\": [{\"X\": 0.7448418736457825, \"Y\": 0.8588682413101196}, {\"X\": 0.7773014903068542, \"Y\": 0.8588682413101196}, {\"X\": 0.7773014903068542, \"Y\": 0.8686643242835999}, {\"X\": 0.7448418736457825, \"Y\": 0.8686643242835999}]}, \"Id\": \"e26ec109-b8c6-4eb4-8e6c-d81b5dec6f7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c8481d8-8a32-45f9-b168-d20947940d4d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67337036132812, \"Text\": \"11/17/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08663961291313171, \"Height\": 0.012859880924224854, \"Left\": 0.12708377838134766, \"Top\": 0.8771912455558777}, \"Polygon\": [{\"X\": 0.12708377838134766, \"Y\": 0.8771912455558777}, {\"X\": 0.21372339129447937, \"Y\": 0.8771912455558777}, {\"X\": 0.21372339129447937, \"Y\": 0.8900511264801025}, {\"X\": 0.12708377838134766, \"Y\": 0.8900511264801025}]}, \"Id\": \"100483f5-e988-43d8-ad3f-39949ae7551a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4474ae74-b985-44bf-9f48-54cce0906d53\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.39189910888672, \"Text\": \"Retail Purchase - Loblaws - 6407949623\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2926394045352936, \"Height\": 0.01061765942722559, \"Left\": 0.23185192048549652, \"Top\": 0.8779329657554626}, \"Polygon\": [{\"X\": 0.23185192048549652, \"Y\": 0.8779329657554626}, {\"X\": 0.5244913101196289, \"Y\": 0.8779329657554626}, {\"X\": 0.5244913101196289, \"Y\": 0.8885506391525269}, {\"X\": 0.23185192048549652, \"Y\": 0.8885506391525269}]}, \"Id\": \"04c67e40-1043-4016-a0f5-2a190a8d46a9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57fce11e-88d9-468d-85c3-59234b7af0dc\", \"56424528-3506-4f7a-8614-d497ea545ef4\", \"138b8e4b-f6a9-4f50-9279-777017066b73\", \"c3cb1404-0363-45c4-888b-3ca7e3b54cf8\", \"adcb5b47-50e8-4a8b-9c2e-2a719b9abcd8\", \"47c0925d-b8f0-4e29-b5c6-d0388affd346\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4354019165039, \"Text\": \"-67\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02388972043991089, \"Height\": 0.009956121444702148, \"Left\": 0.7535699605941772, \"Top\": 0.8783676624298096}, \"Polygon\": [{\"X\": 0.7535699605941772, \"Y\": 0.8783676624298096}, {\"X\": 0.7774596810340881, \"Y\": 0.8783676624298096}, {\"X\": 0.7774596810340881, \"Y\": 0.8883237838745117}, {\"X\": 0.7535699605941772, \"Y\": 0.8883237838745117}]}, \"Id\": \"0cb039e2-b538-4de3-8a1e-5c61ada83c60\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e452f002-ea69-481a-a179-778de1d245fd\"]}], \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4993896484375, \"Text\": \"2/13/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07713312655687332, \"Height\": 0.012974089942872524, \"Left\": 0.1362224966287613, \"Top\": 0.09430962055921555}, \"Polygon\": [{\"X\": 0.1362224966287613, \"Y\": 0.09430962055921555}, {\"X\": 0.2133556306362152, \"Y\": 0.09430962055921555}, {\"X\": 0.2133556306362152, \"Y\": 0.10728371143341064}, {\"X\": 0.1362224966287613, \"Y\": 0.10728371143341064}]}, \"Id\": \"2c3d662e-613d-4239-bbf0-ad95f0baca3c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92835235595703, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03564557060599327, \"Height\": 0.01038330513983965, \"Left\": 0.23195987939834595, \"Top\": 0.09484871476888657}, \"Polygon\": [{\"X\": 0.23195987939834595, \"Y\": 0.09484871476888657}, {\"X\": 0.2676054537296295, \"Y\": 0.09484871476888657}, {\"X\": 0.2676054537296295, \"Y\": 0.10523202270269394}, {\"X\": 0.23195987939834595, \"Y\": 0.10523202270269394}]}, \"Id\": \"ca297e15-3957-495b-b594-d01de7689502\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61043548583984, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06637589633464813, \"Height\": 0.01045447401702404, \"Left\": 0.27222150564193726, \"Top\": 0.09490738809108734}, \"Polygon\": [{\"X\": 0.27222150564193726, \"Y\": 0.09490738809108734}, {\"X\": 0.3385973870754242, \"Y\": 0.09490738809108734}, {\"X\": 0.3385973870754242, \"Y\": 0.10536186397075653}, {\"X\": 0.27222150564193726, \"Y\": 0.10536186397075653}]}, \"Id\": \"57c08f62-219c-425c-96f0-57aa9bb4321e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.59668731689453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005969009827822447, \"Height\": 0.0023963800631463528, \"Left\": 0.34254133701324463, \"Top\": 0.1000957265496254}, \"Polygon\": [{\"X\": 0.34254133701324463, \"Y\": 0.1000957265496254}, {\"X\": 0.34851035475730896, \"Y\": 0.1000957265496254}, {\"X\": 0.34851035475730896, \"Y\": 0.10249210894107819}, {\"X\": 0.34254133701324463, \"Y\": 0.10249210894107819}]}, \"Id\": \"e2f984a3-9bcf-4573-b617-4cef47d56a95\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83409881591797, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08242163062095642, \"Height\": 0.010475129820406437, \"Left\": 0.35229551792144775, \"Top\": 0.09501740336418152}, \"Polygon\": [{\"X\": 0.35229551792144775, \"Y\": 0.09501740336418152}, {\"X\": 0.4347171485424042, \"Y\": 0.09501740336418152}, {\"X\": 0.4347171485424042, \"Y\": 0.10549253225326538}, {\"X\": 0.35229551792144775, \"Y\": 0.10549253225326538}]}, \"Id\": \"729aa744-1e73-49e9-9812-3e0ed2252f99\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.64644622802734, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005734160076826811, \"Height\": 0.0027946399059146643, \"Left\": 0.4381352365016937, \"Top\": 0.09992703050374985}, \"Polygon\": [{\"X\": 0.4381352365016937, \"Y\": 0.09992703050374985}, {\"X\": 0.443869411945343, \"Y\": 0.09992703050374985}, {\"X\": 0.443869411945343, \"Y\": 0.10272166877985}, {\"X\": 0.4381352365016937, \"Y\": 0.10272166877985}]}, \"Id\": \"c2da366b-d1cf-48fd-a24a-c32aa467476c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.0827407836914, \"Text\": \"2130609679\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09173060208559036, \"Height\": 0.010639083571732044, \"Left\": 0.4477927088737488, \"Top\": 0.0949537456035614}, \"Polygon\": [{\"X\": 0.4477927088737488, \"Y\": 0.0949537456035614}, {\"X\": 0.5395233035087585, \"Y\": 0.0949537456035614}, {\"X\": 0.5395233035087585, \"Y\": 0.10559283196926117}, {\"X\": 0.4477927088737488, \"Y\": 0.10559283196926117}]}, \"Id\": \"f4a69915-2480-4e11-9b27-59f670dfb7c3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31983184814453, \"Text\": \"-127\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032097600400447845, \"Height\": 0.009980609640479088, \"Left\": 0.745691180229187, \"Top\": 0.09521418064832687}, \"Polygon\": [{\"X\": 0.745691180229187, \"Y\": 0.09521418064832687}, {\"X\": 0.7777888178825378, \"Y\": 0.09521418064832687}, {\"X\": 0.7777888178825378, \"Y\": 0.10519479215145111}, {\"X\": 0.745691180229187, \"Y\": 0.10519479215145111}]}, \"Id\": \"d68f393c-61dd-4e29-95b2-42961740cf29\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6536636352539, \"Text\": \"8/1/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06904619932174683, \"Height\": 0.013210459612309933, \"Left\": 0.14453426003456116, \"Top\": 0.1138426810503006}, \"Polygon\": [{\"X\": 0.14453426003456116, \"Y\": 0.1138426810503006}, {\"X\": 0.21358045935630798, \"Y\": 0.1138426810503006}, {\"X\": 0.21358045935630798, \"Y\": 0.1270531415939331}, {\"X\": 0.14453426003456116, \"Y\": 0.1270531415939331}]}, \"Id\": \"137f4c1f-f7a7-4e1b-bf47-e44b15d0eba2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4712142944336, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0734088197350502, \"Height\": 0.012288610450923443, \"Left\": 0.23020896315574646, \"Top\": 0.11486075818538666}, \"Polygon\": [{\"X\": 0.23020896315574646, \"Y\": 0.11486075818538666}, {\"X\": 0.30361777544021606, \"Y\": 0.11486075818538666}, {\"X\": 0.30361777544021606, \"Y\": 0.12714937329292297}, {\"X\": 0.23020896315574646, \"Y\": 0.12714937329292297}]}, \"Id\": \"ce0e824a-ddf0-411b-b7c8-7096f7b3758a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.80957794189453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005675930064171553, \"Height\": 0.002153364010155201, \"Left\": 0.3065860867500305, \"Top\": 0.1196305975317955}, \"Polygon\": [{\"X\": 0.3065860867500305, \"Y\": 0.1196305975317955}, {\"X\": 0.31226202845573425, \"Y\": 0.1196305975317955}, {\"X\": 0.31226202845573425, \"Y\": 0.12178396433591843}, {\"X\": 0.3065860867500305, \"Y\": 0.12178396433591843}]}, \"Id\": \"2ab6d0a0-dc0a-4c44-ae88-e6d13672b44c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.82698822021484, \"Text\": \"Uber\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036360111087560654, \"Height\": 0.010172920301556587, \"Left\": 0.316739559173584, \"Top\": 0.11464355140924454}, \"Polygon\": [{\"X\": 0.316739559173584, \"Y\": 0.11464355140924454}, {\"X\": 0.35309967398643494, \"Y\": 0.11464355140924454}, {\"X\": 0.35309967398643494, \"Y\": 0.12481646984815598}, {\"X\": 0.316739559173584, \"Y\": 0.12481646984815598}]}, \"Id\": \"1e392780-4678-4366-87d8-c124a8d0c755\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.16939544677734, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0054288599640131, \"Height\": 0.002242750022560358, \"Left\": 0.3565528094768524, \"Top\": 0.11957606673240662}, \"Polygon\": [{\"X\": 0.3565528094768524, \"Y\": 0.11957606673240662}, {\"X\": 0.36198166012763977, \"Y\": 0.11957606673240662}, {\"X\": 0.36198166012763977, \"Y\": 0.12181881815195084}, {\"X\": 0.3565528094768524, \"Y\": 0.12181881815195084}]}, \"Id\": \"390d74d5-c835-4c76-8e89-16b6d88580ab\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.68058776855469, \"Text\": \"2135962828\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09126763790845871, \"Height\": 0.010397225618362427, \"Left\": 0.36580705642700195, \"Top\": 0.11459431052207947}, \"Polygon\": [{\"X\": 0.36580705642700195, \"Y\": 0.11459431052207947}, {\"X\": 0.45707470178604126, \"Y\": 0.11459431052207947}, {\"X\": 0.45707470178604126, \"Y\": 0.1249915361404419}, {\"X\": 0.36580705642700195, \"Y\": 0.1249915361404419}]}, \"Id\": \"b1cf40f5-c831-4369-a9b3-758b772ddd48\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87921142578125, \"Text\": \"-65\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023279860615730286, \"Height\": 0.00986941996961832, \"Left\": 0.7540016174316406, \"Top\": 0.11491920799016953}, \"Polygon\": [{\"X\": 0.7540016174316406, \"Y\": 0.11491920799016953}, {\"X\": 0.7772814631462097, \"Y\": 0.11491920799016953}, {\"X\": 0.7772814631462097, \"Y\": 0.12478862702846527}, {\"X\": 0.7540016174316406, \"Y\": 0.12478862702846527}]}, \"Id\": \"8278c57d-2698-4bec-ba1b-5b5ad5d19d09\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70867156982422, \"Text\": \"5/31/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07818091660737991, \"Height\": 0.012754829600453377, \"Left\": 0.135416179895401, \"Top\": 0.1336934119462967}, \"Polygon\": [{\"X\": 0.135416179895401, \"Y\": 0.1336934119462967}, {\"X\": 0.2135971039533615, \"Y\": 0.1336934119462967}, {\"X\": 0.2135971039533615, \"Y\": 0.14644823968410492}, {\"X\": 0.135416179895401, \"Y\": 0.14644823968410492}]}, \"Id\": \"bc5ed506-674d-48eb-a1ab-85163f99b637\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86531829833984, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04770376905798912, \"Height\": 0.01034989021718502, \"Left\": 0.23127079010009766, \"Top\": 0.13405989110469818}, \"Polygon\": [{\"X\": 0.23127079010009766, \"Y\": 0.13405989110469818}, {\"X\": 0.2789745628833771, \"Y\": 0.13405989110469818}, {\"X\": 0.2789745628833771, \"Y\": 0.14440977573394775}, {\"X\": 0.23127079010009766, \"Y\": 0.14440977573394775}]}, \"Id\": \"55b8fef0-ef94-44c7-a481-9f6377e9840e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81977081298828, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0402851402759552, \"Height\": 0.01032475009560585, \"Left\": 0.28384071588516235, \"Top\": 0.13408668339252472}, \"Polygon\": [{\"X\": 0.28384071588516235, \"Y\": 0.13408668339252472}, {\"X\": 0.32412585616111755, \"Y\": 0.13408668339252472}, {\"X\": 0.32412585616111755, \"Y\": 0.14441142976284027}, {\"X\": 0.28384071588516235, \"Y\": 0.14441142976284027}]}, \"Id\": \"c5526604-43b7-4ecc-b6f1-2721c7b350c2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.62771606445312, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005536570213735104, \"Height\": 0.002260450040921569, \"Left\": 0.32881391048431396, \"Top\": 0.13912120461463928}, \"Polygon\": [{\"X\": 0.32881391048431396, \"Y\": 0.13912120461463928}, {\"X\": 0.33435046672821045, \"Y\": 0.13912120461463928}, {\"X\": 0.33435046672821045, \"Y\": 0.1413816511631012}, {\"X\": 0.32881391048431396, \"Y\": 0.1413816511631012}]}, \"Id\": \"8df5ddc1-3110-41fc-9664-68464ac83229\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60472869873047, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09494487941265106, \"Height\": 0.010160069912672043, \"Left\": 0.3385569155216217, \"Top\": 0.13450025022029877}, \"Polygon\": [{\"X\": 0.3385569155216217, \"Y\": 0.13450025022029877}, {\"X\": 0.43350180983543396, \"Y\": 0.13450025022029877}, {\"X\": 0.43350180983543396, \"Y\": 0.1446603238582611}, {\"X\": 0.3385569155216217, \"Y\": 0.1446603238582611}]}, \"Id\": \"8c40fb87-bb54-4793-9704-3916129a73b8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.49024200439453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006029069889336824, \"Height\": 0.0031172800809144974, \"Left\": 0.43758314847946167, \"Top\": 0.1389160305261612}, \"Polygon\": [{\"X\": 0.43758314847946167, \"Y\": 0.1389160305261612}, {\"X\": 0.4436122179031372, \"Y\": 0.1389160305261612}, {\"X\": 0.4436122179031372, \"Y\": 0.14203330874443054}, {\"X\": 0.43758314847946167, \"Y\": 0.14203330874443054}]}, \"Id\": \"1afd13b8-af9d-45b4-be85-51d95460c94d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.83905792236328, \"Text\": \"2257980180\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09225630015134811, \"Height\": 0.010702639818191528, \"Left\": 0.4467763900756836, \"Top\": 0.13408368825912476}, \"Polygon\": [{\"X\": 0.4467763900756836, \"Y\": 0.13408368825912476}, {\"X\": 0.5390326976776123, \"Y\": 0.13408368825912476}, {\"X\": 0.5390326976776123, \"Y\": 0.14478632807731628}, {\"X\": 0.4467763900756836, \"Y\": 0.14478632807731628}]}, \"Id\": \"066f88b1-57f7-49bd-a4fe-465667bc8a88\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58155059814453, \"Text\": \"-156\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03288770094513893, \"Height\": 0.009998450055718422, \"Left\": 0.7447535991668701, \"Top\": 0.13443805277347565}, \"Polygon\": [{\"X\": 0.7447535991668701, \"Y\": 0.13443805277347565}, {\"X\": 0.7776412963867188, \"Y\": 0.13443805277347565}, {\"X\": 0.7776412963867188, \"Y\": 0.14443649351596832}, {\"X\": 0.7447535991668701, \"Y\": 0.14443649351596832}]}, \"Id\": \"11d081fb-c23d-473a-adbf-65712a8d91ec\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78851318359375, \"Text\": \"11/10/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08595877885818481, \"Height\": 0.012569800019264221, \"Left\": 0.12741154432296753, \"Top\": 0.1535082906484604}, \"Polygon\": [{\"X\": 0.12741154432296753, \"Y\": 0.1535082906484604}, {\"X\": 0.21337032318115234, \"Y\": 0.1535082906484604}, {\"X\": 0.21337032318115234, \"Y\": 0.1660780906677246}, {\"X\": 0.12741154432296753, \"Y\": 0.1660780906677246}]}, \"Id\": \"18497438-ebc4-4a5f-8fb8-f7d0ab642a31\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7672348022461, \"Text\": \"Service\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05265948176383972, \"Height\": 0.010334090329706669, \"Left\": 0.23087334632873535, \"Top\": 0.1537957340478897}, \"Polygon\": [{\"X\": 0.23087334632873535, \"Y\": 0.1537957340478897}, {\"X\": 0.2835328280925751, \"Y\": 0.1537957340478897}, {\"X\": 0.2835328280925751, \"Y\": 0.1641298234462738}, {\"X\": 0.23087334632873535, \"Y\": 0.1641298234462738}]}, \"Id\": \"37020c43-5e37-49ae-aac5-0a3d592c1bdd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.31365966796875, \"Text\": \"Charge\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051146380603313446, \"Height\": 0.012754330411553383, \"Left\": 0.28743982315063477, \"Top\": 0.1537047177553177}, \"Polygon\": [{\"X\": 0.28743982315063477, \"Y\": 0.1537047177553177}, {\"X\": 0.3385862112045288, \"Y\": 0.1537047177553177}, {\"X\": 0.3385862112045288, \"Y\": 0.16645905375480652}, {\"X\": 0.28743982315063477, \"Y\": 0.16645905375480652}]}, \"Id\": \"5f798911-e2da-451b-9d21-fc553e4c78f8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.52849578857422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005774039775133133, \"Height\": 0.0023058599326759577, \"Left\": 0.3430481553077698, \"Top\": 0.15879744291305542}, \"Polygon\": [{\"X\": 0.3430481553077698, \"Y\": 0.15879744291305542}, {\"X\": 0.3488222062587738, \"Y\": 0.15879744291305542}, {\"X\": 0.3488222062587738, \"Y\": 0.161103293299675}, {\"X\": 0.3430481553077698, \"Y\": 0.161103293299675}]}, \"Id\": \"31842c02-0e38-4efa-a62f-3af7839f64c9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59500885009766, \"Text\": \"Bank\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03566132113337517, \"Height\": 0.010261699557304382, \"Left\": 0.3532489836215973, \"Top\": 0.15378257632255554}, \"Polygon\": [{\"X\": 0.3532489836215973, \"Y\": 0.15378257632255554}, {\"X\": 0.38891029357910156, \"Y\": 0.15378257632255554}, {\"X\": 0.38891029357910156, \"Y\": 0.16404427587985992}, {\"X\": 0.3532489836215973, \"Y\": 0.16404427587985992}]}, \"Id\": \"bb8f846c-904b-46f3-8b2b-12c939bfefe7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.29945373535156, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005544209852814674, \"Height\": 0.002926839981228113, \"Left\": 0.39246463775634766, \"Top\": 0.15869607031345367}, \"Polygon\": [{\"X\": 0.39246463775634766, \"Y\": 0.15869607031345367}, {\"X\": 0.3980088531970978, \"Y\": 0.15869607031345367}, {\"X\": 0.3980088531970978, \"Y\": 0.16162291169166565}, {\"X\": 0.39246463775634766, \"Y\": 0.16162291169166565}]}, \"Id\": \"558906f0-a512-4713-bc14-93087e9a9ce1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.64159393310547, \"Text\": \"2270088418\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09070917963981628, \"Height\": 0.010536939837038517, \"Left\": 0.4024851620197296, \"Top\": 0.1537007838487625}, \"Polygon\": [{\"X\": 0.4024851620197296, \"Y\": 0.1537007838487625}, {\"X\": 0.4931943416595459, \"Y\": 0.1537007838487625}, {\"X\": 0.4931943416595459, \"Y\": 0.16423772275447845}, {\"X\": 0.4024851620197296, \"Y\": 0.16423772275447845}]}, \"Id\": \"273e95ea-3856-43c8-80aa-c5439146f79d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74349975585938, \"Text\": \"-2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014771100133657455, \"Height\": 0.009676669724285603, \"Left\": 0.7623497247695923, \"Top\": 0.1539020538330078}, \"Polygon\": [{\"X\": 0.7623497247695923, \"Y\": 0.1539020538330078}, {\"X\": 0.77712082862854, \"Y\": 0.1539020538330078}, {\"X\": 0.77712082862854, \"Y\": 0.16357871890068054}, {\"X\": 0.7623497247695923, \"Y\": 0.16357871890068054}]}, \"Id\": \"53f6c35e-4d06-47b4-9bd5-cb0294777f3a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68668365478516, \"Text\": \"8/11/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07781930267810822, \"Height\": 0.012297799810767174, \"Left\": 0.13576216995716095, \"Top\": 0.17301829159259796}, \"Polygon\": [{\"X\": 0.13576216995716095, \"Y\": 0.17301829159259796}, {\"X\": 0.21358147263526917, \"Y\": 0.17301829159259796}, {\"X\": 0.21358147263526917, \"Y\": 0.1853160858154297}, {\"X\": 0.13576216995716095, \"Y\": 0.1853160858154297}]}, \"Id\": \"f4d05e4a-e85f-4e17-abb8-ab206772772a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90941619873047, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035733141005039215, \"Height\": 0.010161659680306911, \"Left\": 0.23196858167648315, \"Top\": 0.17342640459537506}, \"Polygon\": [{\"X\": 0.23196858167648315, \"Y\": 0.17342640459537506}, {\"X\": 0.2677017152309418, \"Y\": 0.17342640459537506}, {\"X\": 0.2677017152309418, \"Y\": 0.18358805775642395}, {\"X\": 0.23196858167648315, \"Y\": 0.18358805775642395}]}, \"Id\": \"2252e21e-3d86-46f1-a87c-af63cbc0a79d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61514282226562, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06591571867465973, \"Height\": 0.010486969724297523, \"Left\": 0.2723848819732666, \"Top\": 0.17335203289985657}, \"Polygon\": [{\"X\": 0.2723848819732666, \"Y\": 0.17335203289985657}, {\"X\": 0.33830058574676514, \"Y\": 0.17335203289985657}, {\"X\": 0.33830058574676514, \"Y\": 0.18383899331092834}, {\"X\": 0.2723848819732666, \"Y\": 0.18383899331092834}]}, \"Id\": \"60ae7a79-0210-4725-b0dc-ef260902b2b5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.33248138427734, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005608229897916317, \"Height\": 0.0022755099926143885, \"Left\": 0.3427364230155945, \"Top\": 0.17845693230628967}, \"Polygon\": [{\"X\": 0.3427364230155945, \"Y\": 0.17845693230628967}, {\"X\": 0.3483446538448334, \"Y\": 0.17845693230628967}, {\"X\": 0.3483446538448334, \"Y\": 0.18073244392871857}, {\"X\": 0.3427364230155945, \"Y\": 0.18073244392871857}]}, \"Id\": \"8967bd84-39b1-4a54-b837-a7a1fa211b95\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85704803466797, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08256319910287857, \"Height\": 0.010411320254206657, \"Left\": 0.35241571068763733, \"Top\": 0.17332693934440613}, \"Polygon\": [{\"X\": 0.35241571068763733, \"Y\": 0.17332693934440613}, {\"X\": 0.4349789023399353, \"Y\": 0.17332693934440613}, {\"X\": 0.4349789023399353, \"Y\": 0.18373826146125793}, {\"X\": 0.35241571068763733, \"Y\": 0.18373826146125793}]}, \"Id\": \"c9efb97a-3015-4567-a868-79a58cbe87fd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.98705291748047, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005616200156509876, \"Height\": 0.0030563799664378166, \"Left\": 0.4382829964160919, \"Top\": 0.17808131873607635}, \"Polygon\": [{\"X\": 0.4382829964160919, \"Y\": 0.17808131873607635}, {\"X\": 0.4438992142677307, \"Y\": 0.17808131873607635}, {\"X\": 0.4438992142677307, \"Y\": 0.18113769590854645}, {\"X\": 0.4382829964160919, \"Y\": 0.18113769590854645}]}, \"Id\": \"5fca0b1c-f4f9-4cdd-ad42-8b4cddf643c6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.08544158935547, \"Text\": \"2350678683\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09124664962291718, \"Height\": 0.010743049904704094, \"Left\": 0.4474322497844696, \"Top\": 0.1732664257287979}, \"Polygon\": [{\"X\": 0.4474322497844696, \"Y\": 0.1732664257287979}, {\"X\": 0.5386788845062256, \"Y\": 0.1732664257287979}, {\"X\": 0.5386788845062256, \"Y\": 0.18400947749614716}, {\"X\": 0.4474322497844696, \"Y\": 0.18400947749614716}]}, \"Id\": \"e6d5a8de-0b6e-4da3-bdd3-b8ec4174c7dc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3505859375, \"Text\": \"-219\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032517001032829285, \"Height\": 0.010037750005722046, \"Left\": 0.7450503706932068, \"Top\": 0.17362593114376068}, \"Polygon\": [{\"X\": 0.7450503706932068, \"Y\": 0.17362593114376068}, {\"X\": 0.7775673866271973, \"Y\": 0.17362593114376068}, {\"X\": 0.7775673866271973, \"Y\": 0.18366368114948273}, {\"X\": 0.7450503706932068, \"Y\": 0.18366368114948273}]}, \"Id\": \"43df75cf-05cd-4487-b372-02b4b4313c62\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43997955322266, \"Text\": \"9/19/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07755254209041595, \"Height\": 0.012995759956538677, \"Left\": 0.1356460303068161, \"Top\": 0.19208268821239471}, \"Polygon\": [{\"X\": 0.1356460303068161, \"Y\": 0.19208268821239471}, {\"X\": 0.21319857239723206, \"Y\": 0.19208268821239471}, {\"X\": 0.21319857239723206, \"Y\": 0.20507845282554626}, {\"X\": 0.1356460303068161, \"Y\": 0.20507845282554626}]}, \"Id\": \"250c989a-d96e-499d-b273-10df1212c425\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93611145019531, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03563810884952545, \"Height\": 0.010154030285775661, \"Left\": 0.2319141924381256, \"Top\": 0.1929781436920166}, \"Polygon\": [{\"X\": 0.2319141924381256, \"Y\": 0.1929781436920166}, {\"X\": 0.26755228638648987, \"Y\": 0.1929781436920166}, {\"X\": 0.26755228638648987, \"Y\": 0.20313216745853424}, {\"X\": 0.2319141924381256, \"Y\": 0.20313216745853424}]}, \"Id\": \"38b2bb32-aaa4-493a-89ca-a80608e58b6b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60542297363281, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06678424030542374, \"Height\": 0.010376100428402424, \"Left\": 0.27162206172943115, \"Top\": 0.19289882481098175}, \"Polygon\": [{\"X\": 0.27162206172943115, \"Y\": 0.19289882481098175}, {\"X\": 0.3384062945842743, \"Y\": 0.19289882481098175}, {\"X\": 0.3384062945842743, \"Y\": 0.2032749205827713}, {\"X\": 0.27162206172943115, \"Y\": 0.2032749205827713}]}, \"Id\": \"fc736da3-e150-44f6-9a1b-e7188bf94a54\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.28060913085938, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005554699804633856, \"Height\": 0.002134310081601143, \"Left\": 0.34266626834869385, \"Top\": 0.19807903468608856}, \"Polygon\": [{\"X\": 0.34266626834869385, \"Y\": 0.19807903468608856}, {\"X\": 0.34822097420692444, \"Y\": 0.19807903468608856}, {\"X\": 0.34822097420692444, \"Y\": 0.20021334290504456}, {\"X\": 0.34266626834869385, \"Y\": 0.20021334290504456}]}, \"Id\": \"2c2df598-710b-462f-a504-86f42dcc7c48\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67691040039062, \"Text\": \"Starbucks\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07152529805898666, \"Height\": 0.010298600420355797, \"Left\": 0.3518874943256378, \"Top\": 0.19293807446956635}, \"Polygon\": [{\"X\": 0.3518874943256378, \"Y\": 0.19293807446956635}, {\"X\": 0.4234127998352051, \"Y\": 0.19293807446956635}, {\"X\": 0.4234127998352051, \"Y\": 0.2032366693019867}, {\"X\": 0.3518874943256378, \"Y\": 0.2032366693019867}]}, \"Id\": \"720f06fa-e46c-4db5-b854-9d95a09cf311\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.9231185913086, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005841650068759918, \"Height\": 0.00320459995418787, \"Left\": 0.42689675092697144, \"Top\": 0.197527214884758}, \"Polygon\": [{\"X\": 0.42689675092697144, \"Y\": 0.197527214884758}, {\"X\": 0.43273839354515076, \"Y\": 0.197527214884758}, {\"X\": 0.43273839354515076, \"Y\": 0.2007318139076233}, {\"X\": 0.42689675092697144, \"Y\": 0.2007318139076233}]}, \"Id\": \"99ce5dda-48f5-4c28-a1e2-69a544ab223d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.22158813476562, \"Text\": \"2558819681\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09024874120950699, \"Height\": 0.010619630105793476, \"Left\": 0.43682625889778137, \"Top\": 0.19287492334842682}, \"Polygon\": [{\"X\": 0.43682625889778137, \"Y\": 0.19287492334842682}, {\"X\": 0.5270749926567078, \"Y\": 0.19287492334842682}, {\"X\": 0.5270749926567078, \"Y\": 0.20349454879760742}, {\"X\": 0.43682625889778137, \"Y\": 0.20349454879760742}]}, \"Id\": \"a30b7774-38d2-423e-aa62-928d9495f67a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35111999511719, \"Text\": \"-229\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03269759938120842, \"Height\": 0.009923780336976051, \"Left\": 0.7450959086418152, \"Top\": 0.19318021833896637}, \"Polygon\": [{\"X\": 0.7450959086418152, \"Y\": 0.19318021833896637}, {\"X\": 0.7777935266494751, \"Y\": 0.19318021833896637}, {\"X\": 0.7777935266494751, \"Y\": 0.20310400426387787}, {\"X\": 0.7450959086418152, \"Y\": 0.20310400426387787}]}, \"Id\": \"0d29312e-5131-4f51-baf9-cd2d0aca5831\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48963165283203, \"Text\": \"8/17/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07731977850198746, \"Height\": 0.012818190269172192, \"Left\": 0.13591228425502777, \"Top\": 0.21174553036689758}, \"Polygon\": [{\"X\": 0.13591228425502777, \"Y\": 0.21174553036689758}, {\"X\": 0.21323205530643463, \"Y\": 0.21174553036689758}, {\"X\": 0.21323205530643463, \"Y\": 0.22456371784210205}, {\"X\": 0.13591228425502777, \"Y\": 0.22456371784210205}]}, \"Id\": \"b420917b-be00-42da-9ef5-01e61a2740c3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92704772949219, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035583898425102234, \"Height\": 0.010186320170760155, \"Left\": 0.23198656737804413, \"Top\": 0.2123900204896927}, \"Polygon\": [{\"X\": 0.23198656737804413, \"Y\": 0.2123900204896927}, {\"X\": 0.26757046580314636, \"Y\": 0.2123900204896927}, {\"X\": 0.26757046580314636, \"Y\": 0.2225763350725174}, {\"X\": 0.23198656737804413, \"Y\": 0.2225763350725174}]}, \"Id\": \"4a7cbcde-d7db-4ffa-b8ee-226c68cbd86d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66357421875, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06690815091133118, \"Height\": 0.010278359986841679, \"Left\": 0.2721327543258667, \"Top\": 0.21233975887298584}, \"Polygon\": [{\"X\": 0.2721327543258667, \"Y\": 0.21233975887298584}, {\"X\": 0.3390409052371979, \"Y\": 0.21233975887298584}, {\"X\": 0.3390409052371979, \"Y\": 0.22261811792850494}, {\"X\": 0.2721327543258667, \"Y\": 0.22261811792850494}]}, \"Id\": \"02b60736-1a09-4d4c-806f-f4b02c377d4a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.999755859375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005772409960627556, \"Height\": 0.002176739973947406, \"Left\": 0.34257397055625916, \"Top\": 0.21755534410476685}, \"Polygon\": [{\"X\": 0.34257397055625916, \"Y\": 0.21755534410476685}, {\"X\": 0.34834638237953186, \"Y\": 0.21755534410476685}, {\"X\": 0.34834638237953186, \"Y\": 0.21973207592964172}, {\"X\": 0.34257397055625916, \"Y\": 0.21973207592964172}]}, \"Id\": \"86b8b664-f84c-4abc-b617-720ae6b30243\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87361145019531, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08158543705940247, \"Height\": 0.010454840026795864, \"Left\": 0.35319316387176514, \"Top\": 0.21245068311691284}, \"Polygon\": [{\"X\": 0.35319316387176514, \"Y\": 0.21245068311691284}, {\"X\": 0.4347786009311676, \"Y\": 0.21245068311691284}, {\"X\": 0.4347786009311676, \"Y\": 0.22290551662445068}, {\"X\": 0.35319316387176514, \"Y\": 0.22290551662445068}]}, \"Id\": \"6d5bbeec-83c7-4bc1-bbfb-6a24458f3cd2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.13743591308594, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005677159875631332, \"Height\": 0.003006190061569214, \"Left\": 0.4382057189941406, \"Top\": 0.2171994149684906}, \"Polygon\": [{\"X\": 0.4382057189941406, \"Y\": 0.2171994149684906}, {\"X\": 0.44388288259506226, \"Y\": 0.2171994149684906}, {\"X\": 0.44388288259506226, \"Y\": 0.22020560503005981}, {\"X\": 0.4382057189941406, \"Y\": 0.22020560503005981}]}, \"Id\": \"bf9283ca-103a-49a2-a932-61ee5a01e29e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.8530044555664, \"Text\": \"2591297145\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09160082042217255, \"Height\": 0.010424399748444557, \"Left\": 0.44699788093566895, \"Top\": 0.21258662641048431}, \"Polygon\": [{\"X\": 0.44699788093566895, \"Y\": 0.21258662641048431}, {\"X\": 0.5385987162590027, \"Y\": 0.21258662641048431}, {\"X\": 0.5385987162590027, \"Y\": 0.22301103174686432}, {\"X\": 0.44699788093566895, \"Y\": 0.22301103174686432}]}, \"Id\": \"da7af845-c505-41d7-b561-4fc179231c33\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25321960449219, \"Text\": \"-127\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032824259251356125, \"Height\": 0.009858519770205021, \"Left\": 0.7447466850280762, \"Top\": 0.2126932591199875}, \"Polygon\": [{\"X\": 0.7447466850280762, \"Y\": 0.2126932591199875}, {\"X\": 0.7775709629058838, \"Y\": 0.2126932591199875}, {\"X\": 0.7775709629058838, \"Y\": 0.22255177795886993}, {\"X\": 0.7447466850280762, \"Y\": 0.22255177795886993}]}, \"Id\": \"031096ed-9d1e-43ac-a37b-f7cfaa03d9b6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76375579833984, \"Text\": \"11/21/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08613084256649017, \"Height\": 0.012899929657578468, \"Left\": 0.1274697184562683, \"Top\": 0.2313116490840912}, \"Polygon\": [{\"X\": 0.1274697184562683, \"Y\": 0.2313116490840912}, {\"X\": 0.21360056102275848, \"Y\": 0.2313116490840912}, {\"X\": 0.21360056102275848, \"Y\": 0.2442115843296051}, {\"X\": 0.1274697184562683, \"Y\": 0.2442115843296051}]}, \"Id\": \"e2d3b72b-f1a9-4f4e-892d-acca227420be\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88069152832031, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04045625030994415, \"Height\": 0.010010089725255966, \"Left\": 0.23189975321292877, \"Top\": 0.2321297973394394}, \"Polygon\": [{\"X\": 0.23189975321292877, \"Y\": 0.2321297973394394}, {\"X\": 0.2723560035228729, \"Y\": 0.2321297973394394}, {\"X\": 0.2723560035228729, \"Y\": 0.24213989078998566}, {\"X\": 0.23189975321292877, \"Y\": 0.24213989078998566}]}, \"Id\": \"b83830bd-ade9-44f2-abdc-2e15963d67cd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57987976074219, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06542576104402542, \"Height\": 0.010253960266709328, \"Left\": 0.27780747413635254, \"Top\": 0.2320416420698166}, \"Polygon\": [{\"X\": 0.27780747413635254, \"Y\": 0.2320416420698166}, {\"X\": 0.34323322772979736, \"Y\": 0.2320416420698166}, {\"X\": 0.34323322772979736, \"Y\": 0.24229559302330017}, {\"X\": 0.27780747413635254, \"Y\": 0.24229559302330017}]}, \"Id\": \"c28ea622-ecc6-4b7d-8e0a-8a6d76f5214b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.50621795654297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005751959979534149, \"Height\": 0.002370459958910942, \"Left\": 0.351591557264328, \"Top\": 0.23715487122535706}, \"Polygon\": [{\"X\": 0.351591557264328, \"Y\": 0.23715487122535706}, {\"X\": 0.35734352469444275, \"Y\": 0.23715487122535706}, {\"X\": 0.35734352469444275, \"Y\": 0.23952533304691315}, {\"X\": 0.351591557264328, \"Y\": 0.23952533304691315}]}, \"Id\": \"3292e707-0e45-422f-929a-07a8ea5672a4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73197174072266, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05224467068910599, \"Height\": 0.012850799597799778, \"Left\": 0.3608909845352173, \"Top\": 0.2319072037935257}, \"Polygon\": [{\"X\": 0.3608909845352173, \"Y\": 0.2319072037935257}, {\"X\": 0.4131356477737427, \"Y\": 0.2319072037935257}, {\"X\": 0.4131356477737427, \"Y\": 0.2447579950094223}, {\"X\": 0.3608909845352173, \"Y\": 0.2447579950094223}]}, \"Id\": \"38557a9b-480e-4783-9d82-3c661b42a6ba\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.94367980957031, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005056850146502256, \"Height\": 0.00295520992949605, \"Left\": 0.41691866517066956, \"Top\": 0.2368641495704651}, \"Polygon\": [{\"X\": 0.41691866517066956, \"Y\": 0.2368641495704651}, {\"X\": 0.4219755232334137, \"Y\": 0.2368641495704651}, {\"X\": 0.4219755232334137, \"Y\": 0.23981936275959015}, {\"X\": 0.41691866517066956, \"Y\": 0.23981936275959015}]}, \"Id\": \"32feab68-3bbb-4f9a-9323-65b25a8555d4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.9840316772461, \"Text\": \"2687789993\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09038113057613373, \"Height\": 0.010408810339868069, \"Left\": 0.4255406856536865, \"Top\": 0.232105553150177}, \"Polygon\": [{\"X\": 0.4255406856536865, \"Y\": 0.232105553150177}, {\"X\": 0.5159218311309814, \"Y\": 0.232105553150177}, {\"X\": 0.5159218311309814, \"Y\": 0.24251435697078705}, {\"X\": 0.4255406856536865, \"Y\": 0.24251435697078705}]}, \"Id\": \"e6f712fa-d0dd-4b72-a02b-9a6e6cf8c484\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87136840820312, \"Text\": \"-84\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023376589640975, \"Height\": 0.009748459793627262, \"Left\": 0.7541877627372742, \"Top\": 0.2323625087738037}, \"Polygon\": [{\"X\": 0.7541877627372742, \"Y\": 0.2323625087738037}, {\"X\": 0.7775643467903137, \"Y\": 0.2323625087738037}, {\"X\": 0.7775643467903137, \"Y\": 0.2421109676361084}, {\"X\": 0.7541877627372742, \"Y\": 0.2421109676361084}]}, \"Id\": \"0f15947d-46d7-464f-9243-a40954c75b3a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57240295410156, \"Text\": \"7/3/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06856081634759903, \"Height\": 0.01274481974542141, \"Left\": 0.1450960785150528, \"Top\": 0.25096118450164795}, \"Polygon\": [{\"X\": 0.1450960785150528, \"Y\": 0.25096118450164795}, {\"X\": 0.21365690231323242, \"Y\": 0.25096118450164795}, {\"X\": 0.21365690231323242, \"Y\": 0.2637059986591339}, {\"X\": 0.1450960785150528, \"Y\": 0.2637059986591339}]}, \"Id\": \"d0799e20-c9e0-49f1-b9b1-f060fc0149bc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37456512451172, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07274948060512543, \"Height\": 0.012264770455658436, \"Left\": 0.23061789572238922, \"Top\": 0.25182482600212097}, \"Polygon\": [{\"X\": 0.23061789572238922, \"Y\": 0.25182482600212097}, {\"X\": 0.30336737632751465, \"Y\": 0.25182482600212097}, {\"X\": 0.30336737632751465, \"Y\": 0.2640896141529083}, {\"X\": 0.23061789572238922, \"Y\": 0.2640896141529083}]}, \"Id\": \"398f0ba2-cbdd-438d-ac96-12d996f76e25\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.71696472167969, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005883200094103813, \"Height\": 0.002317029982805252, \"Left\": 0.3065265119075775, \"Top\": 0.2566874921321869}, \"Polygon\": [{\"X\": 0.3065265119075775, \"Y\": 0.2566874921321869}, {\"X\": 0.3124096989631653, \"Y\": 0.2566874921321869}, {\"X\": 0.3124096989631653, \"Y\": 0.25900453329086304}, {\"X\": 0.3065265119075775, \"Y\": 0.25900453329086304}]}, \"Id\": \"5ff3a3fe-d8a1-4988-ab76-585d74aaf642\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5101547241211, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027841990813612938, \"Height\": 0.012172750197350979, \"Left\": 0.31623268127441406, \"Top\": 0.2515188455581665}, \"Polygon\": [{\"X\": 0.31623268127441406, \"Y\": 0.2515188455581665}, {\"X\": 0.34407466650009155, \"Y\": 0.2515188455581665}, {\"X\": 0.34407466650009155, \"Y\": 0.26369160413742065}, {\"X\": 0.31623268127441406, \"Y\": 0.26369160413742065}]}, \"Id\": \"e4971d65-0b4e-44a8-8b3f-ad347e0ef339\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.12432098388672, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005326359998434782, \"Height\": 0.002345140092074871, \"Left\": 0.34762513637542725, \"Top\": 0.2564982771873474}, \"Polygon\": [{\"X\": 0.34762513637542725, \"Y\": 0.2564982771873474}, {\"X\": 0.3529514968395233, \"Y\": 0.2564982771873474}, {\"X\": 0.3529514968395233, \"Y\": 0.25884342193603516}, {\"X\": 0.34762513637542725, \"Y\": 0.25884342193603516}]}, \"Id\": \"10c72e8c-ba39-4cc3-8e4e-c2dfc1428605\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07151794433594, \"Text\": \"2705182570\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08991724997758865, \"Height\": 0.010251370258629322, \"Left\": 0.3576010465621948, \"Top\": 0.25167229771614075}, \"Polygon\": [{\"X\": 0.3576010465621948, \"Y\": 0.25167229771614075}, {\"X\": 0.4475182890892029, \"Y\": 0.25167229771614075}, {\"X\": 0.4475182890892029, \"Y\": 0.2619236707687378}, {\"X\": 0.3576010465621948, \"Y\": 0.2619236707687378}]}, \"Id\": \"5dc1be96-efbb-4171-b28b-256e89f31ec1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54851531982422, \"Text\": \"-157\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032709699124097824, \"Height\": 0.009893280453979969, \"Left\": 0.7448585033416748, \"Top\": 0.2518713176250458}, \"Polygon\": [{\"X\": 0.7448585033416748, \"Y\": 0.2518713176250458}, {\"X\": 0.7775682210922241, \"Y\": 0.2518713176250458}, {\"X\": 0.7775682210922241, \"Y\": 0.2617645859718323}, {\"X\": 0.7448585033416748, \"Y\": 0.2617645859718323}]}, \"Id\": \"6e7606e5-797e-439f-99d1-ed59f3230b07\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60498046875, \"Text\": \"4/1/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06906583905220032, \"Height\": 0.012574730440974236, \"Left\": 0.14492353796958923, \"Top\": 0.27079474925994873}, \"Polygon\": [{\"X\": 0.14492353796958923, \"Y\": 0.27079474925994873}, {\"X\": 0.21398937702178955, \"Y\": 0.27079474925994873}, {\"X\": 0.21398937702178955, \"Y\": 0.2833694815635681}, {\"X\": 0.14492353796958923, \"Y\": 0.2833694815635681}]}, \"Id\": \"c3595232-c601-4023-b273-549934b60f7b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34458923339844, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07097979635000229, \"Height\": 0.012443239800632, \"Left\": 0.23085615038871765, \"Top\": 0.2714356780052185}, \"Polygon\": [{\"X\": 0.23085615038871765, \"Y\": 0.2714356780052185}, {\"X\": 0.30183595418930054, \"Y\": 0.2714356780052185}, {\"X\": 0.30183595418930054, \"Y\": 0.2838789224624634}, {\"X\": 0.23085615038871765, \"Y\": 0.2838789224624634}]}, \"Id\": \"6912f09b-1694-4fd8-8dbd-f899b030826a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.13829803466797, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005938849877566099, \"Height\": 0.0023731798864901066, \"Left\": 0.3065725266933441, \"Top\": 0.27637651562690735}, \"Polygon\": [{\"X\": 0.3065725266933441, \"Y\": 0.27637651562690735}, {\"X\": 0.3125113844871521, \"Y\": 0.27637651562690735}, {\"X\": 0.3125113844871521, \"Y\": 0.2787497043609619}, {\"X\": 0.3065725266933441, \"Y\": 0.2787497043609619}]}, \"Id\": \"bf70a170-0751-4790-bd35-066de20b74ef\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.01947784423828, \"Text\": \"Uber\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03626888990402222, \"Height\": 0.00998781993985176, \"Left\": 0.3167443573474884, \"Top\": 0.27129217982292175}, \"Polygon\": [{\"X\": 0.3167443573474884, \"Y\": 0.27129217982292175}, {\"X\": 0.3530132472515106, \"Y\": 0.27129217982292175}, {\"X\": 0.3530132472515106, \"Y\": 0.2812800109386444}, {\"X\": 0.3167443573474884, \"Y\": 0.2812800109386444}]}, \"Id\": \"0de708b5-14ed-4643-a8c4-5065718b1372\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.68505096435547, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005749410018324852, \"Height\": 0.0022554700262844563, \"Left\": 0.3565283715724945, \"Top\": 0.2764344811439514}, \"Polygon\": [{\"X\": 0.3565283715724945, \"Y\": 0.2764344811439514}, {\"X\": 0.3622777760028839, \"Y\": 0.2764344811439514}, {\"X\": 0.3622777760028839, \"Y\": 0.2786899507045746}, {\"X\": 0.3565283715724945, \"Y\": 0.2786899507045746}]}, \"Id\": \"c0b3ed65-9522-40d8-a699-20e16e4186b5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.73817443847656, \"Text\": \"3020941883\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08833879977464676, \"Height\": 0.0103278998285532, \"Left\": 0.3673925995826721, \"Top\": 0.27127885818481445}, \"Polygon\": [{\"X\": 0.3673925995826721, \"Y\": 0.27127885818481445}, {\"X\": 0.4557313919067383, \"Y\": 0.27127885818481445}, {\"X\": 0.4557313919067383, \"Y\": 0.2816067636013031}, {\"X\": 0.3673925995826721, \"Y\": 0.2816067636013031}]}, \"Id\": \"f4dc3b8d-895f-4dfd-9220-449f4aec88bc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.12000274658203, \"Text\": \"-238\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032660000026226044, \"Height\": 0.009942740201950073, \"Left\": 0.7448015213012695, \"Top\": 0.2714892327785492}, \"Polygon\": [{\"X\": 0.7448015213012695, \"Y\": 0.2714892327785492}, {\"X\": 0.7774615287780762, \"Y\": 0.2714892327785492}, {\"X\": 0.7774615287780762, \"Y\": 0.28143197298049927}, {\"X\": 0.7448015213012695, \"Y\": 0.28143197298049927}]}, \"Id\": \"4bcef6c2-b025-42e4-9543-01040c1ddeb6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64854431152344, \"Text\": \"12/15/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08647166937589645, \"Height\": 0.013049219734966755, \"Left\": 0.12745006382465363, \"Top\": 0.28994670510292053}, \"Polygon\": [{\"X\": 0.12745006382465363, \"Y\": 0.28994670510292053}, {\"X\": 0.21392172574996948, \"Y\": 0.28994670510292053}, {\"X\": 0.21392172574996948, \"Y\": 0.3029959201812744}, {\"X\": 0.12745006382465363, \"Y\": 0.3029959201812744}]}, \"Id\": \"2f5b87d2-bb0d-4fe5-86df-792d3e203506\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87600708007812, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047682929784059525, \"Height\": 0.010226069949567318, \"Left\": 0.2312776893377304, \"Top\": 0.2908370792865753}, \"Polygon\": [{\"X\": 0.2312776893377304, \"Y\": 0.2908370792865753}, {\"X\": 0.27896061539649963, \"Y\": 0.2908370792865753}, {\"X\": 0.27896061539649963, \"Y\": 0.3010631501674652}, {\"X\": 0.2312776893377304, \"Y\": 0.3010631501674652}]}, \"Id\": \"0cbc3576-cefd-4c63-82bb-b3e4571a99fe\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84368896484375, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04033882915973663, \"Height\": 0.010083699598908424, \"Left\": 0.28391438722610474, \"Top\": 0.29088088870048523}, \"Polygon\": [{\"X\": 0.28391438722610474, \"Y\": 0.29088088870048523}, {\"X\": 0.32425323128700256, \"Y\": 0.29088088870048523}, {\"X\": 0.32425323128700256, \"Y\": 0.3009645938873291}, {\"X\": 0.28391438722610474, \"Y\": 0.3009645938873291}]}, \"Id\": \"fcddcec4-e1e2-4610-93e8-887cea0e3629\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.36278533935547, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0055886199697852135, \"Height\": 0.002172499895095825, \"Left\": 0.32888278365135193, \"Top\": 0.29594525694847107}, \"Polygon\": [{\"X\": 0.32888278365135193, \"Y\": 0.29594525694847107}, {\"X\": 0.3344714045524597, \"Y\": 0.29594525694847107}, {\"X\": 0.3344714045524597, \"Y\": 0.2981177568435669}, {\"X\": 0.32888278365135193, \"Y\": 0.2981177568435669}]}, \"Id\": \"5dbf79a9-e747-43bb-b41f-d85be4c52b95\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45793151855469, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09483964741230011, \"Height\": 0.010020080022513866, \"Left\": 0.33822324872016907, \"Top\": 0.29120582342147827}, \"Polygon\": [{\"X\": 0.33822324872016907, \"Y\": 0.29120582342147827}, {\"X\": 0.43306291103363037, \"Y\": 0.29120582342147827}, {\"X\": 0.43306291103363037, \"Y\": 0.3012259006500244}, {\"X\": 0.33822324872016907, \"Y\": 0.3012259006500244}]}, \"Id\": \"cf3b59ef-e6b1-436d-86e2-00f348c4d6d9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.79186248779297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005578009877353907, \"Height\": 0.0028276999946683645, \"Left\": 0.43774935603141785, \"Top\": 0.29562899470329285}, \"Polygon\": [{\"X\": 0.43774935603141785, \"Y\": 0.29562899470329285}, {\"X\": 0.4433273673057556, \"Y\": 0.29562899470329285}, {\"X\": 0.4433273673057556, \"Y\": 0.29845669865608215}, {\"X\": 0.43774935603141785, \"Y\": 0.29845669865608215}]}, \"Id\": \"7513c2c9-cb35-4b86-af3e-c3bae7b9b18e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.67789459228516, \"Text\": \"3250892832\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09158740192651749, \"Height\": 0.010632550343871117, \"Left\": 0.44706040620803833, \"Top\": 0.2907433807849884}, \"Polygon\": [{\"X\": 0.44706040620803833, \"Y\": 0.2907433807849884}, {\"X\": 0.5386477708816528, \"Y\": 0.2907433807849884}, {\"X\": 0.5386477708816528, \"Y\": 0.3013759255409241}, {\"X\": 0.44706040620803833, \"Y\": 0.3013759255409241}]}, \"Id\": \"5ebf3956-043c-43a4-b8b4-9deaa3ab0ca0\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84349060058594, \"Text\": \"-72\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023161299526691437, \"Height\": 0.009994350373744965, \"Left\": 0.754328191280365, \"Top\": 0.2909839153289795}, \"Polygon\": [{\"X\": 0.754328191280365, \"Y\": 0.2909839153289795}, {\"X\": 0.7774894833564758, \"Y\": 0.2909839153289795}, {\"X\": 0.7774894833564758, \"Y\": 0.30097827315330505}, {\"X\": 0.754328191280365, \"Y\": 0.30097827315330505}]}, \"Id\": \"9ea80001-1cbd-4cd5-9bca-b7a2488c0409\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6544189453125, \"Text\": \"11/27/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08622586727142334, \"Height\": 0.01332878042012453, \"Left\": 0.12754318118095398, \"Top\": 0.3094073235988617}, \"Polygon\": [{\"X\": 0.12754318118095398, \"Y\": 0.3094073235988617}, {\"X\": 0.21376904845237732, \"Y\": 0.3094073235988617}, {\"X\": 0.21376904845237732, \"Y\": 0.32273611426353455}, {\"X\": 0.12754318118095398, \"Y\": 0.32273611426353455}]}, \"Id\": \"7b117715-3170-43d7-930b-634e1850bb20\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93260192871094, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03537759929895401, \"Height\": 0.010358219966292381, \"Left\": 0.23208560049533844, \"Top\": 0.3102697432041168}, \"Polygon\": [{\"X\": 0.23208560049533844, \"Y\": 0.3102697432041168}, {\"X\": 0.26746320724487305, \"Y\": 0.3102697432041168}, {\"X\": 0.26746320724487305, \"Y\": 0.32062795758247375}, {\"X\": 0.23208560049533844, \"Y\": 0.32062795758247375}]}, \"Id\": \"1c8d968e-ab37-4692-bece-ba59c479812a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.649169921875, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06633231788873672, \"Height\": 0.010402319952845573, \"Left\": 0.27212515473365784, \"Top\": 0.31025975942611694}, \"Polygon\": [{\"X\": 0.27212515473365784, \"Y\": 0.31025975942611694}, {\"X\": 0.33845746517181396, \"Y\": 0.31025975942611694}, {\"X\": 0.33845746517181396, \"Y\": 0.32066208124160767}, {\"X\": 0.27212515473365784, \"Y\": 0.32066208124160767}]}, \"Id\": \"92e1b7a9-935b-4181-829b-c3d1c48ad30c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.21047973632812, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005831180140376091, \"Height\": 0.0022319599520415068, \"Left\": 0.3426385819911957, \"Top\": 0.3154486417770386}, \"Polygon\": [{\"X\": 0.3426385819911957, \"Y\": 0.3154486417770386}, {\"X\": 0.3484697639942169, \"Y\": 0.3154486417770386}, {\"X\": 0.3484697639942169, \"Y\": 0.31768059730529785}, {\"X\": 0.3426385819911957, \"Y\": 0.31768059730529785}]}, \"Id\": \"42fd4cd6-9db7-4566-a930-269f48315ebb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78532409667969, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08315339684486389, \"Height\": 0.010691660456359386, \"Left\": 0.35237646102905273, \"Top\": 0.3101535439491272}, \"Polygon\": [{\"X\": 0.35237646102905273, \"Y\": 0.3101535439491272}, {\"X\": 0.4355298578739166, \"Y\": 0.3101535439491272}, {\"X\": 0.4355298578739166, \"Y\": 0.32084518671035767}, {\"X\": 0.35237646102905273, \"Y\": 0.32084518671035767}]}, \"Id\": \"443080c3-57ab-47d0-a796-3e514f743dcb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.54899597167969, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005890990141779184, \"Height\": 0.0033077599946409464, \"Left\": 0.43810826539993286, \"Top\": 0.3150159418582916}, \"Polygon\": [{\"X\": 0.43810826539993286, \"Y\": 0.3150159418582916}, {\"X\": 0.4439992606639862, \"Y\": 0.3150159418582916}, {\"X\": 0.4439992606639862, \"Y\": 0.31832370162010193}, {\"X\": 0.43810826539993286, \"Y\": 0.31832370162010193}]}, \"Id\": \"e96d2433-2227-4c54-80f4-8898f3f6b57c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.92930603027344, \"Text\": \"3288443530\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0921892300248146, \"Height\": 0.010787430219352245, \"Left\": 0.4476284682750702, \"Top\": 0.31026044487953186}, \"Polygon\": [{\"X\": 0.4476284682750702, \"Y\": 0.31026044487953186}, {\"X\": 0.5398176908493042, \"Y\": 0.31026044487953186}, {\"X\": 0.5398176908493042, \"Y\": 0.3210478723049164}, {\"X\": 0.4476284682750702, \"Y\": 0.3210478723049164}]}, \"Id\": \"717cdd80-7760-451a-9384-dae8ab5c34f6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3015365600586, \"Text\": \"-124\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03231929987668991, \"Height\": 0.00999343954026699, \"Left\": 0.7451906800270081, \"Top\": 0.3106437623500824}, \"Polygon\": [{\"X\": 0.7451906800270081, \"Y\": 0.3106437623500824}, {\"X\": 0.7775099873542786, \"Y\": 0.3106437623500824}, {\"X\": 0.7775099873542786, \"Y\": 0.32063719630241394}, {\"X\": 0.7451906800270081, \"Y\": 0.32063719630241394}]}, \"Id\": \"bcf5b93e-217c-4b48-b7f7-1be3c661afa5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56321716308594, \"Text\": \"6/25/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07757300138473511, \"Height\": 0.013117309659719467, \"Left\": 0.13597486913204193, \"Top\": 0.3291851282119751}, \"Polygon\": [{\"X\": 0.13597486913204193, \"Y\": 0.3291851282119751}, {\"X\": 0.21354787051677704, \"Y\": 0.3291851282119751}, {\"X\": 0.21354787051677704, \"Y\": 0.34230244159698486}, {\"X\": 0.13597486913204193, \"Y\": 0.34230244159698486}]}, \"Id\": \"a75b0cfe-ad2c-4604-aa74-774db040d262\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94017791748047, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03531273826956749, \"Height\": 0.010311760008335114, \"Left\": 0.23212367296218872, \"Top\": 0.3298402726650238}, \"Polygon\": [{\"X\": 0.23212367296218872, \"Y\": 0.3298402726650238}, {\"X\": 0.2674364149570465, \"Y\": 0.3298402726650238}, {\"X\": 0.2674364149570465, \"Y\": 0.3401520252227783}, {\"X\": 0.23212367296218872, \"Y\": 0.3401520252227783}]}, \"Id\": \"887ca6e9-d553-4dd1-9811-a935a4234449\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6004867553711, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06613393872976303, \"Height\": 0.01042960025370121, \"Left\": 0.2722198963165283, \"Top\": 0.32982343435287476}, \"Polygon\": [{\"X\": 0.2722198963165283, \"Y\": 0.32982343435287476}, {\"X\": 0.33835384249687195, \"Y\": 0.32982343435287476}, {\"X\": 0.33835384249687195, \"Y\": 0.3402530252933502}, {\"X\": 0.2722198963165283, \"Y\": 0.3402530252933502}]}, \"Id\": \"e30db1ba-7f53-4316-800a-92d235cd9f76\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.86341094970703, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005514950025826693, \"Height\": 0.0021760601084679365, \"Left\": 0.3426761329174042, \"Top\": 0.33506983518600464}, \"Polygon\": [{\"X\": 0.3426761329174042, \"Y\": 0.33506983518600464}, {\"X\": 0.3481910824775696, \"Y\": 0.33506983518600464}, {\"X\": 0.3481910824775696, \"Y\": 0.337245911359787}, {\"X\": 0.3426761329174042, \"Y\": 0.337245911359787}]}, \"Id\": \"3da07e04-8bf1-407b-9e78-fbc9b97dec17\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8307113647461, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02720407024025917, \"Height\": 0.009972509928047657, \"Left\": 0.35180607438087463, \"Top\": 0.33018267154693604}, \"Polygon\": [{\"X\": 0.35180607438087463, \"Y\": 0.33018267154693604}, {\"X\": 0.3790101408958435, \"Y\": 0.33018267154693604}, {\"X\": 0.3790101408958435, \"Y\": 0.3401551842689514}, {\"X\": 0.35180607438087463, \"Y\": 0.3401551842689514}]}, \"Id\": \"f94f62e8-7872-4650-8b7a-1f80f691aab3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51973724365234, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05883029103279114, \"Height\": 0.01070534996688366, \"Left\": 0.38389766216278076, \"Top\": 0.3298274278640747}, \"Polygon\": [{\"X\": 0.38389766216278076, \"Y\": 0.3298274278640747}, {\"X\": 0.4427279531955719, \"Y\": 0.3298274278640747}, {\"X\": 0.4427279531955719, \"Y\": 0.3405327796936035}, {\"X\": 0.38389766216278076, \"Y\": 0.3405327796936035}]}, \"Id\": \"d83b8217-5fca-4f85-b4fe-6d11ab653a28\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.85211181640625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005953719839453697, \"Height\": 0.003315419889986515, \"Left\": 0.44616958498954773, \"Top\": 0.33451390266418457}, \"Polygon\": [{\"X\": 0.44616958498954773, \"Y\": 0.33451390266418457}, {\"X\": 0.4521233141422272, \"Y\": 0.33451390266418457}, {\"X\": 0.4521233141422272, \"Y\": 0.3378293216228485}, {\"X\": 0.44616958498954773, \"Y\": 0.3378293216228485}]}, \"Id\": \"e2e1b9a3-4218-4bcf-9fa6-6fe7d844f629\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04219818115234, \"Text\": \"3454648653\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08995319902896881, \"Height\": 0.010661769658327103, \"Left\": 0.4567317068576813, \"Top\": 0.3298313319683075}, \"Polygon\": [{\"X\": 0.4567317068576813, \"Y\": 0.3298313319683075}, {\"X\": 0.5466849207878113, \"Y\": 0.3298313319683075}, {\"X\": 0.5466849207878113, \"Y\": 0.3404931128025055}, {\"X\": 0.4567317068576813, \"Y\": 0.3404931128025055}]}, \"Id\": \"01582cd2-bad6-4bd3-84a9-9bdb08f1e1eb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41958618164062, \"Text\": \"-199\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03251095116138458, \"Height\": 0.010090700350701809, \"Left\": 0.7449478507041931, \"Top\": 0.3300783932209015}, \"Polygon\": [{\"X\": 0.7449478507041931, \"Y\": 0.3300783932209015}, {\"X\": 0.7774587869644165, \"Y\": 0.3300783932209015}, {\"X\": 0.7774587869644165, \"Y\": 0.34016910195350647}, {\"X\": 0.7449478507041931, \"Y\": 0.34016910195350647}]}, \"Id\": \"1650b9f9-10de-4c9c-a16e-85c546ca9b05\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54458618164062, \"Text\": \"9/14/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0775950700044632, \"Height\": 0.01270637009292841, \"Left\": 0.13584809005260468, \"Top\": 0.34889665246009827}, \"Polygon\": [{\"X\": 0.13584809005260468, \"Y\": 0.34889665246009827}, {\"X\": 0.21344316005706787, \"Y\": 0.34889665246009827}, {\"X\": 0.21344316005706787, \"Y\": 0.3616030216217041}, {\"X\": 0.13584809005260468, \"Y\": 0.3616030216217041}]}, \"Id\": \"bb6309cf-5149-43f2-b96d-b5f54328882c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87394714355469, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04001950845122337, \"Height\": 0.010150640271604061, \"Left\": 0.2320486605167389, \"Top\": 0.349509060382843}, \"Polygon\": [{\"X\": 0.2320486605167389, \"Y\": 0.349509060382843}, {\"X\": 0.27206817269325256, \"Y\": 0.349509060382843}, {\"X\": 0.27206817269325256, \"Y\": 0.35965970158576965}, {\"X\": 0.2320486605167389, \"Y\": 0.35965970158576965}]}, \"Id\": \"28f21da1-09f0-4c7f-8784-f883bf0520ce\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71257781982422, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06673181056976318, \"Height\": 0.010385739617049694, \"Left\": 0.2769322693347931, \"Top\": 0.34932929277420044}, \"Polygon\": [{\"X\": 0.2769322693347931, \"Y\": 0.34932929277420044}, {\"X\": 0.3436640799045563, \"Y\": 0.34932929277420044}, {\"X\": 0.3436640799045563, \"Y\": 0.3597150444984436}, {\"X\": 0.2769322693347931, \"Y\": 0.3597150444984436}]}, \"Id\": \"b690e26c-425f-41c1-a4b2-e8b5848dc5a4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 94.89622497558594, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005779540166258812, \"Height\": 0.0022939499467611313, \"Left\": 0.35152876377105713, \"Top\": 0.3545895218849182}, \"Polygon\": [{\"X\": 0.35152876377105713, \"Y\": 0.3545895218849182}, {\"X\": 0.3573082983493805, \"Y\": 0.3545895218849182}, {\"X\": 0.3573082983493805, \"Y\": 0.3568834662437439}, {\"X\": 0.35152876377105713, \"Y\": 0.3568834662437439}]}, \"Id\": \"501ee0c4-465b-41ad-89c3-e8960466dc70\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56611633300781, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05910060182213783, \"Height\": 0.010191920213401318, \"Left\": 0.36173442006111145, \"Top\": 0.3493970036506653}, \"Polygon\": [{\"X\": 0.36173442006111145, \"Y\": 0.3493970036506653}, {\"X\": 0.420835018157959, \"Y\": 0.3493970036506653}, {\"X\": 0.420835018157959, \"Y\": 0.3595889210700989}, {\"X\": 0.36173442006111145, \"Y\": 0.3595889210700989}]}, \"Id\": \"44790b31-fc61-47ad-88e0-f5f2f8c7bdd2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.84586334228516, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005627159960567951, \"Height\": 0.0030100299045443535, \"Left\": 0.4243110418319702, \"Top\": 0.3541949987411499}, \"Polygon\": [{\"X\": 0.4243110418319702, \"Y\": 0.3541949987411499}, {\"X\": 0.4299381971359253, \"Y\": 0.3541949987411499}, {\"X\": 0.4299381971359253, \"Y\": 0.35720503330230713}, {\"X\": 0.4243110418319702, \"Y\": 0.35720503330230713}]}, \"Id\": \"81089346-f04b-45b5-8833-5d720cb2a3ad\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.62763977050781, \"Text\": \"3631254120\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09148502349853516, \"Height\": 0.010450700297951698, \"Left\": 0.4335055351257324, \"Top\": 0.3494933545589447}, \"Polygon\": [{\"X\": 0.4335055351257324, \"Y\": 0.3494933545589447}, {\"X\": 0.5249905586242676, \"Y\": 0.3494933545589447}, {\"X\": 0.5249905586242676, \"Y\": 0.35994404554367065}, {\"X\": 0.4335055351257324, \"Y\": 0.35994404554367065}]}, \"Id\": \"a346c755-087f-4fbf-ab3e-3b51d88ce542\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41122436523438, \"Text\": \"-258\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0329366996884346, \"Height\": 0.010006150230765343, \"Left\": 0.74456387758255, \"Top\": 0.349648654460907}, \"Polygon\": [{\"X\": 0.74456387758255, \"Y\": 0.349648654460907}, {\"X\": 0.7775006294250488, \"Y\": 0.349648654460907}, {\"X\": 0.7775006294250488, \"Y\": 0.35965481400489807}, {\"X\": 0.74456387758255, \"Y\": 0.35965481400489807}]}, \"Id\": \"af472af6-37da-442c-9163-94cdae21c7d2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7696304321289, \"Text\": \"11/15/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08619414269924164, \"Height\": 0.012504770420491695, \"Left\": 0.12749835848808289, \"Top\": 0.36849522590637207}, \"Polygon\": [{\"X\": 0.12749835848808289, \"Y\": 0.36849522590637207}, {\"X\": 0.21369250118732452, \"Y\": 0.36849522590637207}, {\"X\": 0.21369250118732452, \"Y\": 0.38100001215934753}, {\"X\": 0.12749835848808289, \"Y\": 0.38100001215934753}]}, \"Id\": \"142dc170-0684-423c-921d-90d58166f659\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91856384277344, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03562761843204498, \"Height\": 0.010459160432219505, \"Left\": 0.23198865354061127, \"Top\": 0.36886072158813477}, \"Polygon\": [{\"X\": 0.23198865354061127, \"Y\": 0.36886072158813477}, {\"X\": 0.26761627197265625, \"Y\": 0.36886072158813477}, {\"X\": 0.26761627197265625, \"Y\": 0.3793198764324188}, {\"X\": 0.23198865354061127, \"Y\": 0.3793198764324188}]}, \"Id\": \"dee09a52-b473-41a9-9c40-c1e8e6155035\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62548065185547, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06594572216272354, \"Height\": 0.010614870116114616, \"Left\": 0.2722795605659485, \"Top\": 0.36879849433898926}, \"Polygon\": [{\"X\": 0.2722795605659485, \"Y\": 0.36879849433898926}, {\"X\": 0.33822527527809143, \"Y\": 0.36879849433898926}, {\"X\": 0.33822527527809143, \"Y\": 0.379413366317749}, {\"X\": 0.2722795605659485, \"Y\": 0.379413366317749}]}, \"Id\": \"607ac0dd-24d1-42ab-9850-c500f9be677b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.1959228515625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005208310205489397, \"Height\": 0.0030576400458812714, \"Left\": 0.34305793046951294, \"Top\": 0.37374478578567505}, \"Polygon\": [{\"X\": 0.34305793046951294, \"Y\": 0.37374478578567505}, {\"X\": 0.34826624393463135, \"Y\": 0.37374478578567505}, {\"X\": 0.34826624393463135, \"Y\": 0.3768024444580078}, {\"X\": 0.34305793046951294, \"Y\": 0.3768024444580078}]}, \"Id\": \"72d9ec17-30e2-4195-a981-cad4ed9aafcf\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9142074584961, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026498589664697647, \"Height\": 0.009870319627225399, \"Left\": 0.3521050810813904, \"Top\": 0.3690416216850281}, \"Polygon\": [{\"X\": 0.3521050810813904, \"Y\": 0.3690416216850281}, {\"X\": 0.37860366702079773, \"Y\": 0.3690416216850281}, {\"X\": 0.37860366702079773, \"Y\": 0.37891194224357605}, {\"X\": 0.3521050810813904, \"Y\": 0.37891194224357605}]}, \"Id\": \"500a5825-d8f0-468d-9074-90955c1ceee8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65538024902344, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05871516093611717, \"Height\": 0.010252829641103745, \"Left\": 0.38471299409866333, \"Top\": 0.3695630729198456}, \"Polygon\": [{\"X\": 0.38471299409866333, \"Y\": 0.3695630729198456}, {\"X\": 0.4434281587600708, \"Y\": 0.3695630729198456}, {\"X\": 0.4434281587600708, \"Y\": 0.3798159062862396}, {\"X\": 0.38471299409866333, \"Y\": 0.3798159062862396}]}, \"Id\": \"cb1623dc-3998-42dd-a918-01c21b1f11f4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.65776824951172, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005931680090725422, \"Height\": 0.003074340056627989, \"Left\": 0.44626057147979736, \"Top\": 0.3736725151538849}, \"Polygon\": [{\"X\": 0.44626057147979736, \"Y\": 0.3736725151538849}, {\"X\": 0.4521922469139099, \"Y\": 0.3736725151538849}, {\"X\": 0.4521922469139099, \"Y\": 0.37674686312675476}, {\"X\": 0.44626057147979736, \"Y\": 0.37674686312675476}]}, \"Id\": \"41bbe81e-62eb-46fb-b809-6866aa1b04c4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.84635162353516, \"Text\": \"3666530197\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09100967645645142, \"Height\": 0.011385420337319374, \"Left\": 0.45602887868881226, \"Top\": 0.3682648241519928}, \"Polygon\": [{\"X\": 0.45602887868881226, \"Y\": 0.3682648241519928}, {\"X\": 0.5470385551452637, \"Y\": 0.3682648241519928}, {\"X\": 0.5470385551452637, \"Y\": 0.3796502351760864}, {\"X\": 0.45602887868881226, \"Y\": 0.3796502351760864}]}, \"Id\": \"8f4527fb-0165-4b34-ba52-fd4ce74448a6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2457046508789, \"Text\": \"-297\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03220809996128082, \"Height\": 0.009989440441131592, \"Left\": 0.7450774908065796, \"Top\": 0.36923983693122864}, \"Polygon\": [{\"X\": 0.7450774908065796, \"Y\": 0.36923983693122864}, {\"X\": 0.7772855758666992, \"Y\": 0.36923983693122864}, {\"X\": 0.7772855758666992, \"Y\": 0.37922927737236023}, {\"X\": 0.7450774908065796, \"Y\": 0.37922927737236023}]}, \"Id\": \"d501102c-b7dd-489a-adfd-6edb58b58d87\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.22985076904297, \"Text\": \"4/7/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06865768879652023, \"Height\": 0.012082659639418125, \"Left\": 0.14505703747272491, \"Top\": 0.3884890675544739}, \"Polygon\": [{\"X\": 0.14505703747272491, \"Y\": 0.3884890675544739}, {\"X\": 0.21371473371982574, \"Y\": 0.3884890675544739}, {\"X\": 0.21371473371982574, \"Y\": 0.40057173371315}, {\"X\": 0.14505703747272491, \"Y\": 0.40057173371315}]}, \"Id\": \"d2f8ca8e-4614-4326-b5ab-d27d502a2363\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9216079711914, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0355580598115921, \"Height\": 0.010369510389864445, \"Left\": 0.23199428617954254, \"Top\": 0.3885824680328369}, \"Polygon\": [{\"X\": 0.23199428617954254, \"Y\": 0.3885824680328369}, {\"X\": 0.26755234599113464, \"Y\": 0.3885824680328369}, {\"X\": 0.26755234599113464, \"Y\": 0.3989519774913788}, {\"X\": 0.23199428617954254, \"Y\": 0.3989519774913788}]}, \"Id\": \"54e12d23-ef53-4849-a490-fdd1aeaef335\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62771606445312, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06596606969833374, \"Height\": 0.010592100210487843, \"Left\": 0.27221545577049255, \"Top\": 0.38846591114997864}, \"Polygon\": [{\"X\": 0.27221545577049255, \"Y\": 0.38846591114997864}, {\"X\": 0.3381815254688263, \"Y\": 0.38846591114997864}, {\"X\": 0.3381815254688263, \"Y\": 0.3990580141544342}, {\"X\": 0.27221545577049255, \"Y\": 0.3990580141544342}]}, \"Id\": \"82eb686c-29af-4c9f-acab-35722d6fd28b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.14000701904297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005653690081089735, \"Height\": 0.002263000002130866, \"Left\": 0.3427737057209015, \"Top\": 0.3938288986682892}, \"Polygon\": [{\"X\": 0.3427737057209015, \"Y\": 0.3938288986682892}, {\"X\": 0.3484273850917816, \"Y\": 0.3938288986682892}, {\"X\": 0.3484273850917816, \"Y\": 0.39609190821647644}, {\"X\": 0.3427737057209015, \"Y\": 0.39609190821647644}]}, \"Id\": \"9f1590ef-3311-4030-bc5f-6f78726ec0d5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7628173828125, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02735763043165207, \"Height\": 0.01008703000843525, \"Left\": 0.3516957461833954, \"Top\": 0.38876691460609436}, \"Polygon\": [{\"X\": 0.3516957461833954, \"Y\": 0.38876691460609436}, {\"X\": 0.37905338406562805, \"Y\": 0.38876691460609436}, {\"X\": 0.37905338406562805, \"Y\": 0.39885392785072327}, {\"X\": 0.3516957461833954, \"Y\": 0.39885392785072327}]}, \"Id\": \"93b00b95-cbf9-40e8-99bf-dee28309d129\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50707244873047, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0588519386947155, \"Height\": 0.010183489881455898, \"Left\": 0.38464125990867615, \"Top\": 0.3891109526157379}, \"Polygon\": [{\"X\": 0.38464125990867615, \"Y\": 0.3891109526157379}, {\"X\": 0.44349318742752075, \"Y\": 0.3891109526157379}, {\"X\": 0.44349318742752075, \"Y\": 0.3992944359779358}, {\"X\": 0.38464125990867615, \"Y\": 0.3992944359779358}]}, \"Id\": \"d2cbc75b-c80a-43ae-81f8-81c6de687520\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.35108947753906, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005746840033680201, \"Height\": 0.0027331500314176083, \"Left\": 0.4464474022388458, \"Top\": 0.39359140396118164}, \"Polygon\": [{\"X\": 0.4464474022388458, \"Y\": 0.39359140396118164}, {\"X\": 0.4521942436695099, \"Y\": 0.39359140396118164}, {\"X\": 0.4521942436695099, \"Y\": 0.3963245451450348}, {\"X\": 0.4464474022388458, \"Y\": 0.3963245451450348}]}, \"Id\": \"72312ad8-3ff1-4a2b-8718-0331d7975323\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48870849609375, \"Text\": \"3746491660\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09129510074853897, \"Height\": 0.010530070401728153, \"Left\": 0.45625606179237366, \"Top\": 0.3886379301548004}, \"Polygon\": [{\"X\": 0.45625606179237366, \"Y\": 0.3886379301548004}, {\"X\": 0.547551155090332, \"Y\": 0.3886379301548004}, {\"X\": 0.547551155090332, \"Y\": 0.3991680145263672}, {\"X\": 0.45625606179237366, \"Y\": 0.3991680145263672}]}, \"Id\": \"9d3b0623-94f2-4a53-b596-215e7ada5a50\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27971649169922, \"Text\": \"-162\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03218640014529228, \"Height\": 0.01012239046394825, \"Left\": 0.745017409324646, \"Top\": 0.38884437084198}, \"Polygon\": [{\"X\": 0.745017409324646, \"Y\": 0.38884437084198}, {\"X\": 0.7772037982940674, \"Y\": 0.38884437084198}, {\"X\": 0.7772037982940674, \"Y\": 0.3989667594432831}, {\"X\": 0.745017409324646, \"Y\": 0.3989667594432831}]}, \"Id\": \"259b7cea-3abb-47d8-9905-8fad6f3a44bb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32528686523438, \"Text\": \"7/24/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07785235345363617, \"Height\": 0.012797290459275246, \"Left\": 0.1356344372034073, \"Top\": 0.4076719284057617}, \"Polygon\": [{\"X\": 0.1356344372034073, \"Y\": 0.4076719284057617}, {\"X\": 0.21348679065704346, \"Y\": 0.4076719284057617}, {\"X\": 0.21348679065704346, \"Y\": 0.4204692244529724}, {\"X\": 0.1356344372034073, \"Y\": 0.4204692244529724}]}, \"Id\": \"ecbf250c-cdaa-49bf-bf90-c82a80957d7d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43888092041016, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07221720367670059, \"Height\": 0.012252509593963623, \"Left\": 0.23063160479068756, \"Top\": 0.4086068570613861}, \"Polygon\": [{\"X\": 0.23063160479068756, \"Y\": 0.4086068570613861}, {\"X\": 0.30284878611564636, \"Y\": 0.4086068570613861}, {\"X\": 0.30284878611564636, \"Y\": 0.42085936665534973}, {\"X\": 0.23063160479068756, \"Y\": 0.42085936665534973}]}, \"Id\": \"f50dec79-5dfa-486b-9ff4-ca874c418653\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.06681060791016, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005524309817701578, \"Height\": 0.0022974300663918257, \"Left\": 0.30670201778411865, \"Top\": 0.41337403655052185}, \"Polygon\": [{\"X\": 0.30670201778411865, \"Y\": 0.41337403655052185}, {\"X\": 0.3122263252735138, \"Y\": 0.41337403655052185}, {\"X\": 0.3122263252735138, \"Y\": 0.4156714677810669}, {\"X\": 0.30670201778411865, \"Y\": 0.4156714677810669}]}, \"Id\": \"7b7dfa7f-69e8-46c4-a88c-f98365955fff\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81678009033203, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026921000331640244, \"Height\": 0.012489650398492813, \"Left\": 0.31656980514526367, \"Top\": 0.40820983052253723}, \"Polygon\": [{\"X\": 0.31656980514526367, \"Y\": 0.40820983052253723}, {\"X\": 0.3434908092021942, \"Y\": 0.40820983052253723}, {\"X\": 0.3434908092021942, \"Y\": 0.42069947719573975}, {\"X\": 0.31656980514526367, \"Y\": 0.42069947719573975}]}, \"Id\": \"510d3acf-3d4e-4f44-aaa5-0bfb3f04a66f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.4278564453125, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004825870040804148, \"Height\": 0.0018450600327923894, \"Left\": 0.347851425409317, \"Top\": 0.41345807909965515}, \"Polygon\": [{\"X\": 0.347851425409317, \"Y\": 0.41345807909965515}, {\"X\": 0.35267728567123413, \"Y\": 0.41345807909965515}, {\"X\": 0.35267728567123413, \"Y\": 0.41530314087867737}, {\"X\": 0.347851425409317, \"Y\": 0.41530314087867737}]}, \"Id\": \"c29e35e4-5045-4eb8-9747-5bdf3aaeba6a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.12693786621094, \"Text\": \"3750786000\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0915372371673584, \"Height\": 0.010316450148820877, \"Left\": 0.35670211911201477, \"Top\": 0.4084121882915497}, \"Polygon\": [{\"X\": 0.35670211911201477, \"Y\": 0.4084121882915497}, {\"X\": 0.44823935627937317, \"Y\": 0.4084121882915497}, {\"X\": 0.44823935627937317, \"Y\": 0.41872864961624146}, {\"X\": 0.35670211911201477, \"Y\": 0.41872864961624146}]}, \"Id\": \"dd268315-0b6b-4d8c-bbea-67820aa12429\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57306671142578, \"Text\": \"-161\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0322454608976841, \"Height\": 0.009880020283162594, \"Left\": 0.744871199131012, \"Top\": 0.40853938460350037}, \"Polygon\": [{\"X\": 0.744871199131012, \"Y\": 0.40853938460350037}, {\"X\": 0.7771166563034058, \"Y\": 0.40853938460350037}, {\"X\": 0.7771166563034058, \"Y\": 0.41841939091682434}, {\"X\": 0.744871199131012, \"Y\": 0.41841939091682434}]}, \"Id\": \"827bb06f-4ed7-4c98-b2aa-92d59220305b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6498794555664, \"Text\": \"12/15/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0863652378320694, \"Height\": 0.013114389963448048, \"Left\": 0.12727311253547668, \"Top\": 0.42691853642463684}, \"Polygon\": [{\"X\": 0.12727311253547668, \"Y\": 0.42691853642463684}, {\"X\": 0.21363835036754608, \"Y\": 0.42691853642463684}, {\"X\": 0.21363835036754608, \"Y\": 0.4400329291820526}, {\"X\": 0.12727311253547668, \"Y\": 0.4400329291820526}]}, \"Id\": \"5ae81324-553d-4bd9-a90b-45a5ab4fbaf1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9395523071289, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03545372933149338, \"Height\": 0.01020406000316143, \"Left\": 0.231905996799469, \"Top\": 0.4278671145439148}, \"Polygon\": [{\"X\": 0.231905996799469, \"Y\": 0.4278671145439148}, {\"X\": 0.26735973358154297, \"Y\": 0.4278671145439148}, {\"X\": 0.26735973358154297, \"Y\": 0.4380711615085602}, {\"X\": 0.231905996799469, \"Y\": 0.4380711615085602}]}, \"Id\": \"9adcf7d5-0961-48ca-9bdc-bdb8d0a6fbac\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61663055419922, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06752043962478638, \"Height\": 0.010302569717168808, \"Left\": 0.27101603150367737, \"Top\": 0.42776745557785034}, \"Polygon\": [{\"X\": 0.27101603150367737, \"Y\": 0.42776745557785034}, {\"X\": 0.33853647112846375, \"Y\": 0.42776745557785034}, {\"X\": 0.33853647112846375, \"Y\": 0.43807002902030945}, {\"X\": 0.27101603150367737, \"Y\": 0.43807002902030945}]}, \"Id\": \"c31dffe9-237a-423d-9473-649ab618e211\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.25924682617188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005895279813557863, \"Height\": 0.002181089948862791, \"Left\": 0.3425038754940033, \"Top\": 0.43299034237861633}, \"Polygon\": [{\"X\": 0.3425038754940033, \"Y\": 0.43299034237861633}, {\"X\": 0.34839916229248047, \"Y\": 0.43299034237861633}, {\"X\": 0.34839916229248047, \"Y\": 0.4351714253425598}, {\"X\": 0.3425038754940033, \"Y\": 0.4351714253425598}]}, \"Id\": \"1ce7116b-ad2d-4baf-b81e-c1cda463f389\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74250793457031, \"Text\": \"Starbucks\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07141099125146866, \"Height\": 0.010255520232021809, \"Left\": 0.3521231412887573, \"Top\": 0.42786872386932373}, \"Polygon\": [{\"X\": 0.3521231412887573, \"Y\": 0.42786872386932373}, {\"X\": 0.4235341250896454, \"Y\": 0.42786872386932373}, {\"X\": 0.4235341250896454, \"Y\": 0.43812423944473267}, {\"X\": 0.3521231412887573, \"Y\": 0.43812423944473267}]}, \"Id\": \"42529ffa-d8f5-4f9c-a615-f8cb957fdd01\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.59234619140625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005716340150684118, \"Height\": 0.002461489988490939, \"Left\": 0.4268375635147095, \"Top\": 0.4328341484069824}, \"Polygon\": [{\"X\": 0.4268375635147095, \"Y\": 0.4328341484069824}, {\"X\": 0.43255388736724854, \"Y\": 0.4328341484069824}, {\"X\": 0.43255388736724854, \"Y\": 0.43529564142227173}, {\"X\": 0.4268375635147095, \"Y\": 0.43529564142227173}]}, \"Id\": \"21781c66-a650-47a9-a711-d36967b03975\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.685791015625, \"Text\": \"3882328066\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09155353903770447, \"Height\": 0.010499250143766403, \"Left\": 0.436660498380661, \"Top\": 0.4277670085430145}, \"Polygon\": [{\"X\": 0.436660498380661, \"Y\": 0.4277670085430145}, {\"X\": 0.5282140374183655, \"Y\": 0.4277670085430145}, {\"X\": 0.5282140374183655, \"Y\": 0.43826624751091003}, {\"X\": 0.436660498380661, \"Y\": 0.43826624751091003}]}, \"Id\": \"2fc7bcae-471d-4070-be6d-e9d47520751e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59966278076172, \"Text\": \"-178\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03252764046192169, \"Height\": 0.009900369681417942, \"Left\": 0.7448995113372803, \"Top\": 0.4281204044818878}, \"Polygon\": [{\"X\": 0.7448995113372803, \"Y\": 0.4281204044818878}, {\"X\": 0.7774271368980408, \"Y\": 0.4281204044818878}, {\"X\": 0.7774271368980408, \"Y\": 0.4380207657814026}, {\"X\": 0.7448995113372803, \"Y\": 0.4380207657814026}]}, \"Id\": \"2cc1d792-4346-482f-ab72-7557a057bc2b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.04286193847656, \"Text\": \"10/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07695809751749039, \"Height\": 0.012799940072000027, \"Left\": 0.13655976951122284, \"Top\": 0.4465947151184082}, \"Polygon\": [{\"X\": 0.13655976951122284, \"Y\": 0.4465947151184082}, {\"X\": 0.21351787447929382, \"Y\": 0.4465947151184082}, {\"X\": 0.21351787447929382, \"Y\": 0.4593946635723114}, {\"X\": 0.13655976951122284, \"Y\": 0.4593946635723114}]}, \"Id\": \"eb3a3e01-75b1-4671-b607-a7d63ef1c271\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93544006347656, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035552170127630234, \"Height\": 0.010298499837517738, \"Left\": 0.23194162547588348, \"Top\": 0.4472067058086395}, \"Polygon\": [{\"X\": 0.23194162547588348, \"Y\": 0.4472067058086395}, {\"X\": 0.2674938142299652, \"Y\": 0.4472067058086395}, {\"X\": 0.2674938142299652, \"Y\": 0.4575051963329315}, {\"X\": 0.23194162547588348, \"Y\": 0.4575051963329315}]}, \"Id\": \"8cefe2e5-f668-4bb3-bd66-bacb38dfdd8e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62394714355469, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06653189659118652, \"Height\": 0.01045130006968975, \"Left\": 0.2724832594394684, \"Top\": 0.44711801409721375}, \"Polygon\": [{\"X\": 0.2724832594394684, \"Y\": 0.44711801409721375}, {\"X\": 0.3390151560306549, \"Y\": 0.44711801409721375}, {\"X\": 0.3390151560306549, \"Y\": 0.45756930112838745}, {\"X\": 0.2724832594394684, \"Y\": 0.45756930112838745}]}, \"Id\": \"3e8b51d1-1ded-42c8-9498-8899df7f40ba\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.27183532714844, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0056002200581133366, \"Height\": 0.002140119904652238, \"Left\": 0.3425617218017578, \"Top\": 0.4524349868297577}, \"Polygon\": [{\"X\": 0.3425617218017578, \"Y\": 0.4524349868297577}, {\"X\": 0.3481619358062744, \"Y\": 0.4524349868297577}, {\"X\": 0.3481619358062744, \"Y\": 0.4545751214027405}, {\"X\": 0.3425617218017578, \"Y\": 0.4545751214027405}]}, \"Id\": \"745e6ad2-f83d-4cbe-a0d0-7a2a7379e55b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84961700439453, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027083180844783783, \"Height\": 0.009995739907026291, \"Left\": 0.3519158363342285, \"Top\": 0.44760140776634216}, \"Polygon\": [{\"X\": 0.3519158363342285, \"Y\": 0.44760140776634216}, {\"X\": 0.3789990246295929, \"Y\": 0.44760140776634216}, {\"X\": 0.3789990246295929, \"Y\": 0.45759713649749756}, {\"X\": 0.3519158363342285, \"Y\": 0.45759713649749756}]}, \"Id\": \"0bebf41a-846f-4116-b9b5-d57d89c32898\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70458984375, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05952753871679306, \"Height\": 0.010079859755933285, \"Left\": 0.3840031921863556, \"Top\": 0.44759950041770935}, \"Polygon\": [{\"X\": 0.3840031921863556, \"Y\": 0.44759950041770935}, {\"X\": 0.44353073835372925, \"Y\": 0.44759950041770935}, {\"X\": 0.44353073835372925, \"Y\": 0.4576793611049652}, {\"X\": 0.3840031921863556, \"Y\": 0.4576793611049652}]}, \"Id\": \"b92892a5-a505-4aad-aea1-41e480c97902\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.92436218261719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005636719986796379, \"Height\": 0.002702499972656369, \"Left\": 0.44630974531173706, \"Top\": 0.45216357707977295}, \"Polygon\": [{\"X\": 0.44630974531173706, \"Y\": 0.45216357707977295}, {\"X\": 0.4519464671611786, \"Y\": 0.45216357707977295}, {\"X\": 0.4519464671611786, \"Y\": 0.45486608147621155}, {\"X\": 0.44630974531173706, \"Y\": 0.45486608147621155}]}, \"Id\": \"b3b6cb49-6b5d-42fc-8bc1-f0507eb9eb3c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.01249694824219, \"Text\": \"3993716869\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09153760224580765, \"Height\": 0.010491699911653996, \"Left\": 0.4558218717575073, \"Top\": 0.4473433494567871}, \"Polygon\": [{\"X\": 0.4558218717575073, \"Y\": 0.4473433494567871}, {\"X\": 0.5473594665527344, \"Y\": 0.4473433494567871}, {\"X\": 0.5473594665527344, \"Y\": 0.45783504843711853}, {\"X\": 0.4558218717575073, \"Y\": 0.45783504843711853}]}, \"Id\": \"06d8c92f-db5b-4f27-8ad0-5317d2d9f73c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48391723632812, \"Text\": \"-194\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0324854701757431, \"Height\": 0.010086770169436932, \"Left\": 0.7446870803833008, \"Top\": 0.44749876856803894}, \"Polygon\": [{\"X\": 0.7446870803833008, \"Y\": 0.44749876856803894}, {\"X\": 0.7771725654602051, \"Y\": 0.44749876856803894}, {\"X\": 0.7771725654602051, \"Y\": 0.45758554339408875}, {\"X\": 0.7446870803833008, \"Y\": 0.45758554339408875}]}, \"Id\": \"7f370621-67e7-47d0-98e6-a2855dedd4c7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50365447998047, \"Text\": \"5/12/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07779669761657715, \"Height\": 0.012779179960489273, \"Left\": 0.13582661747932434, \"Top\": 0.4662502408027649}, \"Polygon\": [{\"X\": 0.13582661747932434, \"Y\": 0.4662502408027649}, {\"X\": 0.2136233150959015, \"Y\": 0.4662502408027649}, {\"X\": 0.2136233150959015, \"Y\": 0.47902941703796387}, {\"X\": 0.13582661747932434, \"Y\": 0.47902941703796387}]}, \"Id\": \"07f2c6cc-c07b-45d7-8011-5957166e69ff\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3580551147461, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07266250252723694, \"Height\": 0.012335579842329025, \"Left\": 0.23052364587783813, \"Top\": 0.46713772416114807}, \"Polygon\": [{\"X\": 0.23052364587783813, \"Y\": 0.46713772416114807}, {\"X\": 0.3031861484050751, \"Y\": 0.46713772416114807}, {\"X\": 0.3031861484050751, \"Y\": 0.4794732928276062}, {\"X\": 0.23052364587783813, \"Y\": 0.4794732928276062}]}, \"Id\": \"dc9a60d7-27c8-49d0-9ea4-1506e7aace72\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.8134536743164, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005831069778650999, \"Height\": 0.002176669891923666, \"Left\": 0.3065915107727051, \"Top\": 0.4720495343208313}, \"Polygon\": [{\"X\": 0.3065915107727051, \"Y\": 0.4720495343208313}, {\"X\": 0.31242257356643677, \"Y\": 0.4720495343208313}, {\"X\": 0.31242257356643677, \"Y\": 0.4742262065410614}, {\"X\": 0.3065915107727051, \"Y\": 0.4742262065410614}]}, \"Id\": \"b779a5e7-171d-4356-8301-ba20f84e455c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7103042602539, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027455119416117668, \"Height\": 0.012383139692246914, \"Left\": 0.3164636194705963, \"Top\": 0.4669449031352997}, \"Polygon\": [{\"X\": 0.3164636194705963, \"Y\": 0.4669449031352997}, {\"X\": 0.34391874074935913, \"Y\": 0.4669449031352997}, {\"X\": 0.34391874074935913, \"Y\": 0.4793280363082886}, {\"X\": 0.3164636194705963, \"Y\": 0.4793280363082886}]}, \"Id\": \"e8850eb9-5359-42c1-b59b-e2fde1324102\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.26945495605469, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005437179934233427, \"Height\": 0.00210395990870893, \"Left\": 0.3478286862373352, \"Top\": 0.47201794385910034}, \"Polygon\": [{\"X\": 0.3478286862373352, \"Y\": 0.47201794385910034}, {\"X\": 0.3532658815383911, \"Y\": 0.47201794385910034}, {\"X\": 0.3532658815383911, \"Y\": 0.47412189841270447}, {\"X\": 0.3478286862373352, \"Y\": 0.47412189841270447}]}, \"Id\": \"30d2e33c-04be-42b6-b717-77bfee92015a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47215270996094, \"Text\": \"4027406850\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08952339738607407, \"Height\": 0.010143419727683067, \"Left\": 0.3587348461151123, \"Top\": 0.467038094997406}, \"Polygon\": [{\"X\": 0.3587348461151123, \"Y\": 0.467038094997406}, {\"X\": 0.44825825095176697, \"Y\": 0.467038094997406}, {\"X\": 0.44825825095176697, \"Y\": 0.4771815240383148}, {\"X\": 0.3587348461151123, \"Y\": 0.4771815240383148}]}, \"Id\": \"e1fa7b3e-79e7-4c03-aa6f-cf4bf1760c1e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30978393554688, \"Text\": \"-243\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03249970078468323, \"Height\": 0.009737229906022549, \"Left\": 0.7447733879089355, \"Top\": 0.467337965965271}, \"Polygon\": [{\"X\": 0.7447733879089355, \"Y\": 0.467337965965271}, {\"X\": 0.7772731184959412, \"Y\": 0.467337965965271}, {\"X\": 0.7772731184959412, \"Y\": 0.4770751893520355}, {\"X\": 0.7447733879089355, \"Y\": 0.4770751893520355}]}, \"Id\": \"176d1f67-1d53-4728-aa8d-5dbd50920f95\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48307037353516, \"Text\": \"1/26/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07759565114974976, \"Height\": 0.012883549556136131, \"Left\": 0.13618871569633484, \"Top\": 0.4857978820800781}, \"Polygon\": [{\"X\": 0.13618871569633484, \"Y\": 0.4857978820800781}, {\"X\": 0.2137843668460846, \"Y\": 0.4857978820800781}, {\"X\": 0.2137843668460846, \"Y\": 0.4986814260482788}, {\"X\": 0.13618871569633484, \"Y\": 0.4986814260482788}]}, \"Id\": \"40dd97bb-2ac9-412e-875f-03b1f503d700\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86199951171875, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04025715962052345, \"Height\": 0.010219300165772438, \"Left\": 0.23200324177742004, \"Top\": 0.48642873764038086}, \"Polygon\": [{\"X\": 0.23200324177742004, \"Y\": 0.48642873764038086}, {\"X\": 0.2722603976726532, \"Y\": 0.48642873764038086}, {\"X\": 0.2722603976726532, \"Y\": 0.49664804339408875}, {\"X\": 0.23200324177742004, \"Y\": 0.49664804339408875}]}, \"Id\": \"a2453794-2c13-4350-8d7b-a0b0aaf44565\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7173080444336, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06612727791070938, \"Height\": 0.01033329963684082, \"Left\": 0.2770792245864868, \"Top\": 0.4864329397678375}, \"Polygon\": [{\"X\": 0.2770792245864868, \"Y\": 0.4864329397678375}, {\"X\": 0.3432064950466156, \"Y\": 0.4864329397678375}, {\"X\": 0.3432064950466156, \"Y\": 0.49676623940467834}, {\"X\": 0.2770792245864868, \"Y\": 0.49676623940467834}]}, \"Id\": \"186fbd9f-24ed-4a0d-8dd1-6f4954a989e3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.6408920288086, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006005280185490847, \"Height\": 0.0025017899461090565, \"Left\": 0.3514890670776367, \"Top\": 0.49140664935112}, \"Polygon\": [{\"X\": 0.3514890670776367, \"Y\": 0.49140664935112}, {\"X\": 0.3574943542480469, \"Y\": 0.49140664935112}, {\"X\": 0.3574943542480469, \"Y\": 0.49390843510627747}, {\"X\": 0.3514890670776367, \"Y\": 0.49390843510627747}]}, \"Id\": \"72bf6152-25b0-4d64-a90a-d11d2c73cde2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47811889648438, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059491898864507675, \"Height\": 0.01053525973111391, \"Left\": 0.3613135814666748, \"Top\": 0.48630648851394653}, \"Polygon\": [{\"X\": 0.3613135814666748, \"Y\": 0.48630648851394653}, {\"X\": 0.4208054840564728, \"Y\": 0.48630648851394653}, {\"X\": 0.4208054840564728, \"Y\": 0.49684175848960876}, {\"X\": 0.3613135814666748, \"Y\": 0.49684175848960876}]}, \"Id\": \"d1a274a9-6898-4615-880c-0aff67e39c1d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.74653625488281, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005707569885998964, \"Height\": 0.002667210064828396, \"Left\": 0.4244861304759979, \"Top\": 0.4913046360015869}, \"Polygon\": [{\"X\": 0.4244861304759979, \"Y\": 0.4913046360015869}, {\"X\": 0.430193692445755, \"Y\": 0.4913046360015869}, {\"X\": 0.430193692445755, \"Y\": 0.4939718544483185}, {\"X\": 0.4244861304759979, \"Y\": 0.4939718544483185}]}, \"Id\": \"7e21de4b-33b6-430f-8521-57199031b2c9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.98233032226562, \"Text\": \"4335346753\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08957979083061218, \"Height\": 0.010528559796512127, \"Left\": 0.4346201717853546, \"Top\": 0.4864557981491089}, \"Polygon\": [{\"X\": 0.4346201717853546, \"Y\": 0.4864557981491089}, {\"X\": 0.5241999626159668, \"Y\": 0.4864557981491089}, {\"X\": 0.5241999626159668, \"Y\": 0.4969843626022339}, {\"X\": 0.4346201717853546, \"Y\": 0.4969843626022339}]}, \"Id\": \"bd8218b0-9f8b-4509-b719-901fe50bc449\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7006607055664, \"Text\": \"-173\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032260600477457047, \"Height\": 0.009938949719071388, \"Left\": 0.7448899745941162, \"Top\": 0.48683345317840576}, \"Polygon\": [{\"X\": 0.7448899745941162, \"Y\": 0.48683345317840576}, {\"X\": 0.777150571346283, \"Y\": 0.48683345317840576}, {\"X\": 0.777150571346283, \"Y\": 0.4967724084854126}, {\"X\": 0.7448899745941162, \"Y\": 0.4967724084854126}]}, \"Id\": \"07e79a59-4fcc-457a-af3b-85a9b0e6e3c4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.90721130371094, \"Text\": \"4/9/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06912510097026825, \"Height\": 0.013134930282831192, \"Left\": 0.1445917785167694, \"Top\": 0.5052213668823242}, \"Polygon\": [{\"X\": 0.1445917785167694, \"Y\": 0.5052213668823242}, {\"X\": 0.21371687948703766, \"Y\": 0.5052213668823242}, {\"X\": 0.21371687948703766, \"Y\": 0.5183563232421875}, {\"X\": 0.1445917785167694, \"Y\": 0.5183563232421875}]}, \"Id\": \"e3254d74-7e43-4e06-8a52-540cf7f212bb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88284301757812, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040190041065216064, \"Height\": 0.010252250358462334, \"Left\": 0.23197290301322937, \"Top\": 0.5061764121055603}, \"Polygon\": [{\"X\": 0.23197290301322937, \"Y\": 0.5061764121055603}, {\"X\": 0.27216294407844543, \"Y\": 0.5061764121055603}, {\"X\": 0.27216294407844543, \"Y\": 0.5164286494255066}, {\"X\": 0.23197290301322937, \"Y\": 0.5164286494255066}]}, \"Id\": \"6bb97aad-97be-4db5-b2c9-23cacaf147c9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65557861328125, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06565018743276596, \"Height\": 0.010451899841427803, \"Left\": 0.2772291600704193, \"Top\": 0.5059766173362732}, \"Polygon\": [{\"X\": 0.2772291600704193, \"Y\": 0.5059766173362732}, {\"X\": 0.34287935495376587, \"Y\": 0.5059766173362732}, {\"X\": 0.34287935495376587, \"Y\": 0.5164284706115723}, {\"X\": 0.2772291600704193, \"Y\": 0.5164284706115723}]}, \"Id\": \"a1c1a7ff-e869-42c9-89c7-86c2cbd8f3e6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.23640441894531, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005783869884908199, \"Height\": 0.002524490002542734, \"Left\": 0.35139888525009155, \"Top\": 0.5111007690429688}, \"Polygon\": [{\"X\": 0.35139888525009155, \"Y\": 0.5111007690429688}, {\"X\": 0.3571827709674835, \"Y\": 0.5111007690429688}, {\"X\": 0.3571827709674835, \"Y\": 0.5136252641677856}, {\"X\": 0.35139888525009155, \"Y\": 0.5136252641677856}]}, \"Id\": \"47b578cd-88b4-44ea-bab4-8dfb2435c9cd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69027709960938, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05196449160575867, \"Height\": 0.013090469874441624, \"Left\": 0.3608718514442444, \"Top\": 0.5058078765869141}, \"Polygon\": [{\"X\": 0.3608718514442444, \"Y\": 0.5058078765869141}, {\"X\": 0.41283634305000305, \"Y\": 0.5058078765869141}, {\"X\": 0.41283634305000305, \"Y\": 0.5188983678817749}, {\"X\": 0.3608718514442444, \"Y\": 0.5188983678817749}]}, \"Id\": \"33bfd9cc-5b99-4dfa-b89e-6a2390540a1e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.88448333740234, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006174180191010237, \"Height\": 0.002738049952313304, \"Left\": 0.41614842414855957, \"Top\": 0.5110217928886414}, \"Polygon\": [{\"X\": 0.41614842414855957, \"Y\": 0.5110217928886414}, {\"X\": 0.4223226010799408, \"Y\": 0.5110217928886414}, {\"X\": 0.4223226010799408, \"Y\": 0.5137598514556885}, {\"X\": 0.41614842414855957, \"Y\": 0.5137598514556885}]}, \"Id\": \"875312ae-e8ae-4036-8064-e291ea0203b6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.12693786621094, \"Text\": \"4505103520\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09223070740699768, \"Height\": 0.010859760455787182, \"Left\": 0.4256795346736908, \"Top\": 0.5059841275215149}, \"Polygon\": [{\"X\": 0.4256795346736908, \"Y\": 0.5059841275215149}, {\"X\": 0.5179102420806885, \"Y\": 0.5059841275215149}, {\"X\": 0.5179102420806885, \"Y\": 0.516843855381012}, {\"X\": 0.4256795346736908, \"Y\": 0.516843855381012}]}, \"Id\": \"7f1e233d-85a0-4c61-be45-c385186667a5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61919403076172, \"Text\": \"-174\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03302370011806488, \"Height\": 0.010123340412974358, \"Left\": 0.7447885870933533, \"Top\": 0.5063815712928772}, \"Polygon\": [{\"X\": 0.7447885870933533, \"Y\": 0.5063815712928772}, {\"X\": 0.7778123021125793, \"Y\": 0.5063815712928772}, {\"X\": 0.7778123021125793, \"Y\": 0.5165049433708191}, {\"X\": 0.7447885870933533, \"Y\": 0.5165049433708191}]}, \"Id\": \"e771b73c-5681-4472-96c9-e752a02a859e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42842102050781, \"Text\": \"4/10/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07786106318235397, \"Height\": 0.012953029945492744, \"Left\": 0.13565173745155334, \"Top\": 0.5250037908554077}, \"Polygon\": [{\"X\": 0.13565173745155334, \"Y\": 0.5250037908554077}, {\"X\": 0.21351279318332672, \"Y\": 0.5250037908554077}, {\"X\": 0.21351279318332672, \"Y\": 0.5379568338394165}, {\"X\": 0.13565173745155334, \"Y\": 0.5379568338394165}]}, \"Id\": \"7a580507-ba3d-483b-acb3-060b5568d574\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24497985839844, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07162593305110931, \"Height\": 0.012542069889605045, \"Left\": 0.23037953674793243, \"Top\": 0.5258446335792542}, \"Polygon\": [{\"X\": 0.23037953674793243, \"Y\": 0.5258446335792542}, {\"X\": 0.30200546979904175, \"Y\": 0.5258446335792542}, {\"X\": 0.30200546979904175, \"Y\": 0.5383867025375366}, {\"X\": 0.23037953674793243, \"Y\": 0.5383867025375366}]}, \"Id\": \"821f1fb7-bfcf-472a-85c4-d9cc1ca4d287\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.03252410888672, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005581149831414223, \"Height\": 0.0020719000604003668, \"Left\": 0.30674540996551514, \"Top\": 0.53091961145401}, \"Polygon\": [{\"X\": 0.30674540996551514, \"Y\": 0.53091961145401}, {\"X\": 0.3123265504837036, \"Y\": 0.53091961145401}, {\"X\": 0.3123265504837036, \"Y\": 0.5329915285110474}, {\"X\": 0.30674540996551514, \"Y\": 0.5329915285110474}]}, \"Id\": \"2d5deebe-dbb1-48e5-b53e-ef6c8e2ec0b8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24342346191406, \"Text\": \"Uber\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03613812103867531, \"Height\": 0.009999659843742847, \"Left\": 0.3167192339897156, \"Top\": 0.5257766246795654}, \"Polygon\": [{\"X\": 0.3167192339897156, \"Y\": 0.5257766246795654}, {\"X\": 0.3528573513031006, \"Y\": 0.5257766246795654}, {\"X\": 0.3528573513031006, \"Y\": 0.5357762575149536}, {\"X\": 0.3167192339897156, \"Y\": 0.5357762575149536}]}, \"Id\": \"3d436513-570b-4b2d-ac75-5129d804a885\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.4395523071289, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0055744098499417305, \"Height\": 0.0021333000622689724, \"Left\": 0.35662606358528137, \"Top\": 0.5308414101600647}, \"Polygon\": [{\"X\": 0.35662606358528137, \"Y\": 0.5308414101600647}, {\"X\": 0.36220046877861023, \"Y\": 0.5308414101600647}, {\"X\": 0.36220046877861023, \"Y\": 0.5329747200012207}, {\"X\": 0.35662606358528137, \"Y\": 0.5329747200012207}]}, \"Id\": \"5a75524d-5366-4145-92b8-2d385582b778\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.34843444824219, \"Text\": \"4608033455\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09011378139257431, \"Height\": 0.010394999757409096, \"Left\": 0.36631879210472107, \"Top\": 0.52570641040802}, \"Polygon\": [{\"X\": 0.36631879210472107, \"Y\": 0.52570641040802}, {\"X\": 0.456432580947876, \"Y\": 0.52570641040802}, {\"X\": 0.456432580947876, \"Y\": 0.5361014008522034}, {\"X\": 0.36631879210472107, \"Y\": 0.5361014008522034}]}, \"Id\": \"7f682620-95bc-4074-897d-c3f4be90b240\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5941162109375, \"Text\": \"-183\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03209814056754112, \"Height\": 0.009938900358974934, \"Left\": 0.7448493242263794, \"Top\": 0.5260004997253418}, \"Polygon\": [{\"X\": 0.7448493242263794, \"Y\": 0.5260004997253418}, {\"X\": 0.7769474387168884, \"Y\": 0.5260004997253418}, {\"X\": 0.7769474387168884, \"Y\": 0.5359393954277039}, {\"X\": 0.7448493242263794, \"Y\": 0.5359393954277039}]}, \"Id\": \"9db23b0f-7232-4d8a-899b-fa544bf06c3d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53439331054688, \"Text\": \"6/15/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0770956426858902, \"Height\": 0.013144049793481827, \"Left\": 0.13606205582618713, \"Top\": 0.5444398522377014}, \"Polygon\": [{\"X\": 0.13606205582618713, \"Y\": 0.5444398522377014}, {\"X\": 0.21315769851207733, \"Y\": 0.5444398522377014}, {\"X\": 0.21315769851207733, \"Y\": 0.5575839281082153}, {\"X\": 0.13606205582618713, \"Y\": 0.5575839281082153}]}, \"Id\": \"2826d380-2194-4888-aa1a-31a3a18eb30a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7808609008789, \"Text\": \"Service\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05245180055499077, \"Height\": 0.010156969539821148, \"Left\": 0.23090676963329315, \"Top\": 0.5454472303390503}, \"Polygon\": [{\"X\": 0.23090676963329315, \"Y\": 0.5454472303390503}, {\"X\": 0.2833585739135742, \"Y\": 0.5454472303390503}, {\"X\": 0.2833585739135742, \"Y\": 0.5556042194366455}, {\"X\": 0.23090676963329315, \"Y\": 0.5556042194366455}]}, \"Id\": \"3b5e7c42-7f5e-4ed2-988f-8538f3186732\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.69438171386719, \"Text\": \"Charge\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051071878522634506, \"Height\": 0.01256369985640049, \"Left\": 0.2876337766647339, \"Top\": 0.5452969074249268}, \"Polygon\": [{\"X\": 0.2876337766647339, \"Y\": 0.5452969074249268}, {\"X\": 0.3387056589126587, \"Y\": 0.5452969074249268}, {\"X\": 0.3387056589126587, \"Y\": 0.5578606128692627}, {\"X\": 0.2876337766647339, \"Y\": 0.5578606128692627}]}, \"Id\": \"5bc32872-f9a4-4ee4-bf7e-d1287f1a7ccd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.87577056884766, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005821969825774431, \"Height\": 0.0022670000325888395, \"Left\": 0.3429383337497711, \"Top\": 0.550356924533844}, \"Polygon\": [{\"X\": 0.3429383337497711, \"Y\": 0.550356924533844}, {\"X\": 0.34876030683517456, \"Y\": 0.550356924533844}, {\"X\": 0.34876030683517456, \"Y\": 0.5526239275932312}, {\"X\": 0.3429383337497711, \"Y\": 0.5526239275932312}]}, \"Id\": \"0a667237-e329-4eef-8860-569dab326df8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61961364746094, \"Text\": \"Bank\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03672349825501442, \"Height\": 0.011527259834110737, \"Left\": 0.35268619656562805, \"Top\": 0.5446017384529114}, \"Polygon\": [{\"X\": 0.35268619656562805, \"Y\": 0.5446017384529114}, {\"X\": 0.3894096910953522, \"Y\": 0.5446017384529114}, {\"X\": 0.3894096910953522, \"Y\": 0.556128978729248}, {\"X\": 0.35268619656562805, \"Y\": 0.556128978729248}]}, \"Id\": \"267284fe-57fd-40fd-b534-e24393af330d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.34651184082031, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005942729767411947, \"Height\": 0.002406480023637414, \"Left\": 0.3923742175102234, \"Top\": 0.5502671599388123}, \"Polygon\": [{\"X\": 0.3923742175102234, \"Y\": 0.5502671599388123}, {\"X\": 0.3983169496059418, \"Y\": 0.5502671599388123}, {\"X\": 0.3983169496059418, \"Y\": 0.5526736378669739}, {\"X\": 0.3923742175102234, \"Y\": 0.5526736378669739}]}, \"Id\": \"c7024856-5fa7-4a52-ae9f-e92a4a882ef6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53327941894531, \"Text\": \"4711509600\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0894356369972229, \"Height\": 0.01039201021194458, \"Left\": 0.4039667248725891, \"Top\": 0.5452664494514465}, \"Polygon\": [{\"X\": 0.4039667248725891, \"Y\": 0.5452664494514465}, {\"X\": 0.493402361869812, \"Y\": 0.5452664494514465}, {\"X\": 0.493402361869812, \"Y\": 0.5556584596633911}, {\"X\": 0.4039667248725891, \"Y\": 0.5556584596633911}]}, \"Id\": \"42c3bc1a-fa3e-4186-a1e0-e9877320fba3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74097442626953, \"Text\": \"-7\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014592260122299194, \"Height\": 0.009826400317251682, \"Left\": 0.7628105282783508, \"Top\": 0.5454667210578918}, \"Polygon\": [{\"X\": 0.7628105282783508, \"Y\": 0.5454667210578918}, {\"X\": 0.7774027585983276, \"Y\": 0.5454667210578918}, {\"X\": 0.7774027585983276, \"Y\": 0.555293083190918}, {\"X\": 0.7628105282783508, \"Y\": 0.555293083190918}]}, \"Id\": \"dac4ea27-2ad4-4ae9-82cd-c40160febecc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68729400634766, \"Text\": \"11/10/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0856504887342453, \"Height\": 0.012677949853241444, \"Left\": 0.12755601108074188, \"Top\": 0.5641932487487793}, \"Polygon\": [{\"X\": 0.12755601108074188, \"Y\": 0.5641932487487793}, {\"X\": 0.21320649981498718, \"Y\": 0.5641932487487793}, {\"X\": 0.21320649981498718, \"Y\": 0.5768712162971497}, {\"X\": 0.12755601108074188, \"Y\": 0.5768712162971497}]}, \"Id\": \"9d07fd4f-11c9-48c8-b554-80c676c2a12b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37434387207031, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07388979941606522, \"Height\": 0.012298270128667355, \"Left\": 0.23034438490867615, \"Top\": 0.5650461316108704}, \"Polygon\": [{\"X\": 0.23034438490867615, \"Y\": 0.5650461316108704}, {\"X\": 0.30423417687416077, \"Y\": 0.5650461316108704}, {\"X\": 0.30423417687416077, \"Y\": 0.5773444175720215}, {\"X\": 0.23034438490867615, \"Y\": 0.5773444175720215}]}, \"Id\": \"2f6ffad1-d6ad-4997-ac62-c229f9a7d1ad\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.41874694824219, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005861309822648764, \"Height\": 0.0022177998907864094, \"Left\": 0.30644136667251587, \"Top\": 0.569929301738739}, \"Polygon\": [{\"X\": 0.30644136667251587, \"Y\": 0.569929301738739}, {\"X\": 0.31230267882347107, \"Y\": 0.569929301738739}, {\"X\": 0.31230267882347107, \"Y\": 0.5721470713615417}, {\"X\": 0.30644136667251587, \"Y\": 0.5721470713615417}]}, \"Id\": \"9fb646c9-2019-4db7-81e0-4d456a92f7de\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4682846069336, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027730099856853485, \"Height\": 0.012414730153977871, \"Left\": 0.31624048948287964, \"Top\": 0.564782977104187}, \"Polygon\": [{\"X\": 0.31624048948287964, \"Y\": 0.564782977104187}, {\"X\": 0.3439705967903137, \"Y\": 0.564782977104187}, {\"X\": 0.3439705967903137, \"Y\": 0.5771977305412292}, {\"X\": 0.31624048948287964, \"Y\": 0.5771977305412292}]}, \"Id\": \"118fd3d2-4fb6-495e-97bb-2cf16c690662\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.130859375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005164689850062132, \"Height\": 0.001942549948580563, \"Left\": 0.34776875376701355, \"Top\": 0.5699086785316467}, \"Polygon\": [{\"X\": 0.34776875376701355, \"Y\": 0.5699086785316467}, {\"X\": 0.35293343663215637, \"Y\": 0.5699086785316467}, {\"X\": 0.35293343663215637, \"Y\": 0.5718512535095215}, {\"X\": 0.34776875376701355, \"Y\": 0.5718512535095215}]}, \"Id\": \"9e48995e-fcf3-4833-966b-5851abc3b516\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.96343994140625, \"Text\": \"4740375574\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09099504351615906, \"Height\": 0.010294759646058083, \"Left\": 0.3569888770580292, \"Top\": 0.5647373199462891}, \"Polygon\": [{\"X\": 0.3569888770580292, \"Y\": 0.5647373199462891}, {\"X\": 0.44798392057418823, \"Y\": 0.5647373199462891}, {\"X\": 0.44798392057418823, \"Y\": 0.5750320553779602}, {\"X\": 0.3569888770580292, \"Y\": 0.5750320553779602}]}, \"Id\": \"d3147072-4c08-4973-83bc-8baded94fe5f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54393768310547, \"Text\": \"-141\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03226879984140396, \"Height\": 0.009783660061657429, \"Left\": 0.7451748847961426, \"Top\": 0.5652767419815063}, \"Polygon\": [{\"X\": 0.7451748847961426, \"Y\": 0.5652767419815063}, {\"X\": 0.7774437069892883, \"Y\": 0.5652767419815063}, {\"X\": 0.7774437069892883, \"Y\": 0.5750604271888733}, {\"X\": 0.7451748847961426, \"Y\": 0.5750604271888733}]}, \"Id\": \"39be6a38-9108-415b-9c28-91e6a70e7da6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29327392578125, \"Text\": \"10/16/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.085797980427742, \"Height\": 0.0126607995480299, \"Left\": 0.12743449211120605, \"Top\": 0.583819568157196}, \"Polygon\": [{\"X\": 0.12743449211120605, \"Y\": 0.583819568157196}, {\"X\": 0.21323247253894806, \"Y\": 0.583819568157196}, {\"X\": 0.21323247253894806, \"Y\": 0.5964803695678711}, {\"X\": 0.12743449211120605, \"Y\": 0.5964803695678711}]}, \"Id\": \"defc18b0-d16a-439c-abf1-9d5bb21c90ba\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88516998291016, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0476880818605423, \"Height\": 0.010320070199668407, \"Left\": 0.23122815787792206, \"Top\": 0.5842382311820984}, \"Polygon\": [{\"X\": 0.23122815787792206, \"Y\": 0.5842382311820984}, {\"X\": 0.27891623973846436, \"Y\": 0.5842382311820984}, {\"X\": 0.27891623973846436, \"Y\": 0.5945582985877991}, {\"X\": 0.23122815787792206, \"Y\": 0.5945582985877991}]}, \"Id\": \"941983b1-a9dd-49f6-92f2-9c8b12291466\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84183502197266, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04035314917564392, \"Height\": 0.01033065002411604, \"Left\": 0.2837579548358917, \"Top\": 0.584231972694397}, \"Polygon\": [{\"X\": 0.2837579548358917, \"Y\": 0.584231972694397}, {\"X\": 0.32411110401153564, \"Y\": 0.584231972694397}, {\"X\": 0.32411110401153564, \"Y\": 0.5945626497268677}, {\"X\": 0.2837579548358917, \"Y\": 0.5945626497268677}]}, \"Id\": \"30bd97dd-87a6-42ee-97cd-97d0427d5149\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.94811248779297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005681959912180901, \"Height\": 0.0022568400017917156, \"Left\": 0.3286978006362915, \"Top\": 0.5893181562423706}, \"Polygon\": [{\"X\": 0.3286978006362915, \"Y\": 0.5893181562423706}, {\"X\": 0.33437976241111755, \"Y\": 0.5893181562423706}, {\"X\": 0.33437976241111755, \"Y\": 0.591575026512146}, {\"X\": 0.3286978006362915, \"Y\": 0.591575026512146}]}, \"Id\": \"aaa526ae-45f0-4bf7-a9d2-256af0680f17\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55470275878906, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09500083327293396, \"Height\": 0.009869099594652653, \"Left\": 0.3386968672275543, \"Top\": 0.5848157405853271}, \"Polygon\": [{\"X\": 0.3386968672275543, \"Y\": 0.5848157405853271}, {\"X\": 0.4336977005004883, \"Y\": 0.5848157405853271}, {\"X\": 0.4336977005004883, \"Y\": 0.5946848392486572}, {\"X\": 0.3386968672275543, \"Y\": 0.5946848392486572}]}, \"Id\": \"b6fbce4e-86c2-4f5e-87a2-9c597b28a3a3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.84323120117188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005891050212085247, \"Height\": 0.002520299982279539, \"Left\": 0.43765541911125183, \"Top\": 0.5893859267234802}, \"Polygon\": [{\"X\": 0.43765541911125183, \"Y\": 0.5893859267234802}, {\"X\": 0.44354647397994995, \"Y\": 0.5893859267234802}, {\"X\": 0.44354647397994995, \"Y\": 0.5919061899185181}, {\"X\": 0.43765541911125183, \"Y\": 0.5919061899185181}]}, \"Id\": \"79f6fd54-0e51-4998-97e0-697c688295c4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47126007080078, \"Text\": \"4790934451\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09168233722448349, \"Height\": 0.010655250400304794, \"Left\": 0.4466058909893036, \"Top\": 0.5843143463134766}, \"Polygon\": [{\"X\": 0.4466058909893036, \"Y\": 0.5843143463134766}, {\"X\": 0.5382882356643677, \"Y\": 0.5843143463134766}, {\"X\": 0.5382882356643677, \"Y\": 0.5949695706367493}, {\"X\": 0.4466058909893036, \"Y\": 0.5949695706367493}]}, \"Id\": \"d54efd47-c440-485b-a2f1-178bb7e78a3a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.8148193359375, \"Text\": \"-271\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032388899475336075, \"Height\": 0.009980499744415283, \"Left\": 0.7448071241378784, \"Top\": 0.5845524668693542}, \"Polygon\": [{\"X\": 0.7448071241378784, \"Y\": 0.5845524668693542}, {\"X\": 0.7771959900856018, \"Y\": 0.5845524668693542}, {\"X\": 0.7771959900856018, \"Y\": 0.5945329666137695}, {\"X\": 0.7448071241378784, \"Y\": 0.5945329666137695}]}, \"Id\": \"ad33497c-68fc-49e4-80e1-d1b8a4f9222d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50120544433594, \"Text\": \"7/27/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07811526954174042, \"Height\": 0.012601899914443493, \"Left\": 0.13558508455753326, \"Top\": 0.6034563183784485}, \"Polygon\": [{\"X\": 0.13558508455753326, \"Y\": 0.6034563183784485}, {\"X\": 0.21370035409927368, \"Y\": 0.6034563183784485}, {\"X\": 0.21370035409927368, \"Y\": 0.6160581707954407}, {\"X\": 0.13558508455753326, \"Y\": 0.6160581707954407}]}, \"Id\": \"ce70774b-5478-47b8-85a8-d0f5fd65fa17\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83626556396484, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04070306941866875, \"Height\": 0.010450240224599838, \"Left\": 0.2317930907011032, \"Top\": 0.6036948561668396}, \"Polygon\": [{\"X\": 0.2317930907011032, \"Y\": 0.6036948561668396}, {\"X\": 0.27249616384506226, \"Y\": 0.6036948561668396}, {\"X\": 0.27249616384506226, \"Y\": 0.6141451001167297}, {\"X\": 0.2317930907011032, \"Y\": 0.6141451001167297}]}, \"Id\": \"36d12bff-b173-4c99-b637-46e174ed5819\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62427520751953, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06699608266353607, \"Height\": 0.010526140220463276, \"Left\": 0.2764733135700226, \"Top\": 0.6036768555641174}, \"Polygon\": [{\"X\": 0.2764733135700226, \"Y\": 0.6036768555641174}, {\"X\": 0.34346938133239746, \"Y\": 0.6036768555641174}, {\"X\": 0.34346938133239746, \"Y\": 0.6142029762268066}, {\"X\": 0.2764733135700226, \"Y\": 0.6142029762268066}]}, \"Id\": \"3f60b2f8-17d5-421f-8fa8-d811b39e08e1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 94.55587005615234, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00599699979647994, \"Height\": 0.0025649000890552998, \"Left\": 0.3514188528060913, \"Top\": 0.6087924242019653}, \"Polygon\": [{\"X\": 0.3514188528060913, \"Y\": 0.6087924242019653}, {\"X\": 0.3574158549308777, \"Y\": 0.6087924242019653}, {\"X\": 0.3574158549308777, \"Y\": 0.6113572716712952}, {\"X\": 0.3514188528060913, \"Y\": 0.6113572716712952}]}, \"Id\": \"bd74c8b8-4643-4396-a3ae-802d98a24627\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47663879394531, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05156370997428894, \"Height\": 0.012845800258219242, \"Left\": 0.3608371615409851, \"Top\": 0.6036962866783142}, \"Polygon\": [{\"X\": 0.3608371615409851, \"Y\": 0.6036962866783142}, {\"X\": 0.41240087151527405, \"Y\": 0.6036962866783142}, {\"X\": 0.41240087151527405, \"Y\": 0.6165421009063721}, {\"X\": 0.3608371615409851, \"Y\": 0.6165421009063721}]}, \"Id\": \"feddc7f9-864c-4d19-a4f6-1577a31d7329\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.7801513671875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005833650007843971, \"Height\": 0.002574689919129014, \"Left\": 0.41623345017433167, \"Top\": 0.608780562877655}, \"Polygon\": [{\"X\": 0.41623345017433167, \"Y\": 0.608780562877655}, {\"X\": 0.4220671057701111, \"Y\": 0.608780562877655}, {\"X\": 0.4220671057701111, \"Y\": 0.6113552451133728}, {\"X\": 0.41623345017433167, \"Y\": 0.6113552451133728}]}, \"Id\": \"7070a7ca-435b-4f5f-bcd3-2ce3dc7f413c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63911437988281, \"Text\": \"4915649848\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0925944522023201, \"Height\": 0.01043867040425539, \"Left\": 0.4247884452342987, \"Top\": 0.6038191318511963}, \"Polygon\": [{\"X\": 0.4247884452342987, \"Y\": 0.6038191318511963}, {\"X\": 0.5173829197883606, \"Y\": 0.6038191318511963}, {\"X\": 0.5173829197883606, \"Y\": 0.6142578125}, {\"X\": 0.4247884452342987, \"Y\": 0.6142578125}]}, \"Id\": \"76619f9e-62bc-400e-bbed-19ca2c4db134\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5020523071289, \"Text\": \"-257\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03252670168876648, \"Height\": 0.010016740299761295, \"Left\": 0.7448986768722534, \"Top\": 0.6041049957275391}, \"Polygon\": [{\"X\": 0.7448986768722534, \"Y\": 0.6041049957275391}, {\"X\": 0.7774254083633423, \"Y\": 0.6041049957275391}, {\"X\": 0.7774254083633423, \"Y\": 0.6141217350959778}, {\"X\": 0.7448986768722534, \"Y\": 0.6141217350959778}]}, \"Id\": \"6fb4022e-220b-498e-8e07-7f5ce456b46a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31690979003906, \"Text\": \"6/22/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07793716341257095, \"Height\": 0.013160130009055138, \"Left\": 0.13548186421394348, \"Top\": 0.6227917671203613}, \"Polygon\": [{\"X\": 0.13548186421394348, \"Y\": 0.6227917671203613}, {\"X\": 0.21341902017593384, \"Y\": 0.6227917671203613}, {\"X\": 0.21341902017593384, \"Y\": 0.6359518766403198}, {\"X\": 0.13548186421394348, \"Y\": 0.6359518766403198}]}, \"Id\": \"cfc48292-8240-40d8-8030-2c024cbefa1c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39852142333984, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0726281926035881, \"Height\": 0.012664910405874252, \"Left\": 0.23064987361431122, \"Top\": 0.6236961483955383}, \"Polygon\": [{\"X\": 0.23064987361431122, \"Y\": 0.6236961483955383}, {\"X\": 0.3032780587673187, \"Y\": 0.6236961483955383}, {\"X\": 0.3032780587673187, \"Y\": 0.6363610625267029}, {\"X\": 0.23064987361431122, \"Y\": 0.6363610625267029}]}, \"Id\": \"ab9b5c28-7a15-4500-8466-3a66c574e491\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.29991149902344, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005790859926491976, \"Height\": 0.0024416600354015827, \"Left\": 0.30644986033439636, \"Top\": 0.628550112247467}, \"Polygon\": [{\"X\": 0.30644986033439636, \"Y\": 0.628550112247467}, {\"X\": 0.31224071979522705, \"Y\": 0.628550112247467}, {\"X\": 0.31224071979522705, \"Y\": 0.6309917569160461}, {\"X\": 0.30644986033439636, \"Y\": 0.6309917569160461}]}, \"Id\": \"30c9c3cd-d861-4455-adf4-5ef8d2b5c09d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52416229248047, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02746042050421238, \"Height\": 0.012785869650542736, \"Left\": 0.3164413571357727, \"Top\": 0.6233339309692383}, \"Polygon\": [{\"X\": 0.3164413571357727, \"Y\": 0.6233339309692383}, {\"X\": 0.34390178322792053, \"Y\": 0.6233339309692383}, {\"X\": 0.34390178322792053, \"Y\": 0.6361197829246521}, {\"X\": 0.3164413571357727, \"Y\": 0.6361197829246521}]}, \"Id\": \"9d426a00-a615-48b0-aead-750adb52f7d1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.38792419433594, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005484730005264282, \"Height\": 0.0025021499022841454, \"Left\": 0.34762442111968994, \"Top\": 0.6286956071853638}, \"Polygon\": [{\"X\": 0.34762442111968994, \"Y\": 0.6286956071853638}, {\"X\": 0.3531091511249542, \"Y\": 0.6286956071853638}, {\"X\": 0.3531091511249542, \"Y\": 0.6311977505683899}, {\"X\": 0.34762442111968994, \"Y\": 0.6311977505683899}]}, \"Id\": \"91a3f6cd-0983-4180-914c-60b31bc567ee\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.7163314819336, \"Text\": \"4973453567\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09024021029472351, \"Height\": 0.010486160404980183, \"Left\": 0.3565630316734314, \"Top\": 0.6235493421554565}, \"Polygon\": [{\"X\": 0.3565630316734314, \"Y\": 0.6235493421554565}, {\"X\": 0.4468032419681549, \"Y\": 0.6235493421554565}, {\"X\": 0.4468032419681549, \"Y\": 0.6340355277061462}, {\"X\": 0.3565630316734314, \"Y\": 0.6340355277061462}]}, \"Id\": \"3922c178-1939-4718-9369-5e2a3f542ed6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5853042602539, \"Text\": \"-130\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03260349854826927, \"Height\": 0.009952560067176819, \"Left\": 0.7448318600654602, \"Top\": 0.623857319355011}, \"Polygon\": [{\"X\": 0.7448318600654602, \"Y\": 0.623857319355011}, {\"X\": 0.7774353623390198, \"Y\": 0.623857319355011}, {\"X\": 0.7774353623390198, \"Y\": 0.6338098645210266}, {\"X\": 0.7448318600654602, \"Y\": 0.6338098645210266}]}, \"Id\": \"39fd2e80-51ee-46fd-bba2-120946dd1b27\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42524719238281, \"Text\": \"7/28/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0774465873837471, \"Height\": 0.013078659772872925, \"Left\": 0.13577909767627716, \"Top\": 0.6423225402832031}, \"Polygon\": [{\"X\": 0.13577909767627716, \"Y\": 0.6423225402832031}, {\"X\": 0.21322569251060486, \"Y\": 0.6423225402832031}, {\"X\": 0.21322569251060486, \"Y\": 0.6554011702537537}, {\"X\": 0.13577909767627716, \"Y\": 0.6554011702537537}]}, \"Id\": \"927a8511-41ce-4af1-aec9-ddc56de13554\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45803833007812, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07222907990217209, \"Height\": 0.01228609960526228, \"Left\": 0.23067283630371094, \"Top\": 0.643520176410675}, \"Polygon\": [{\"X\": 0.23067283630371094, \"Y\": 0.643520176410675}, {\"X\": 0.3029019236564636, \"Y\": 0.643520176410675}, {\"X\": 0.3029019236564636, \"Y\": 0.655806303024292}, {\"X\": 0.23067283630371094, \"Y\": 0.655806303024292}]}, \"Id\": \"0547fd7d-b036-41e3-8607-b559c0534ec9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.63668823242188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005668519996106625, \"Height\": 0.0021512999664992094, \"Left\": 0.3066895306110382, \"Top\": 0.6482666730880737}, \"Polygon\": [{\"X\": 0.3066895306110382, \"Y\": 0.6482666730880737}, {\"X\": 0.3123580515384674, \"Y\": 0.6482666730880737}, {\"X\": 0.3123580515384674, \"Y\": 0.6504179835319519}, {\"X\": 0.3066895306110382, \"Y\": 0.6504179835319519}]}, \"Id\": \"02079d12-65dc-4caf-ac09-1f36e9c95ad9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14148712158203, \"Text\": \"Uber\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03632467985153198, \"Height\": 0.010396439582109451, \"Left\": 0.31657150387763977, \"Top\": 0.6429767608642578}, \"Polygon\": [{\"X\": 0.31657150387763977, \"Y\": 0.6429767608642578}, {\"X\": 0.35289618372917175, \"Y\": 0.6429767608642578}, {\"X\": 0.35289618372917175, \"Y\": 0.6533731818199158}, {\"X\": 0.31657150387763977, \"Y\": 0.6533731818199158}]}, \"Id\": \"1a21d0c7-71dc-4f61-9363-736396944763\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.92689514160156, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00595093984156847, \"Height\": 0.002586799906566739, \"Left\": 0.3563792109489441, \"Top\": 0.6481400728225708}, \"Polygon\": [{\"X\": 0.3563792109489441, \"Y\": 0.6481400728225708}, {\"X\": 0.3623301386833191, \"Y\": 0.6481400728225708}, {\"X\": 0.3623301386833191, \"Y\": 0.6507269144058228}, {\"X\": 0.3563792109489441, \"Y\": 0.6507269144058228}]}, \"Id\": \"522c3ea9-08bc-40d2-8041-eca5ad3be403\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.7655258178711, \"Text\": \"5004776995\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08868923783302307, \"Height\": 0.01061179954558611, \"Left\": 0.367159903049469, \"Top\": 0.6430152058601379}, \"Polygon\": [{\"X\": 0.367159903049469, \"Y\": 0.6430152058601379}, {\"X\": 0.45584914088249207, \"Y\": 0.6430152058601379}, {\"X\": 0.45584914088249207, \"Y\": 0.6536269783973694}, {\"X\": 0.367159903049469, \"Y\": 0.6536269783973694}]}, \"Id\": \"d880bf3d-9061-4fe4-b898-a92854032793\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5735855102539, \"Text\": \"-150\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03274916857481003, \"Height\": 0.010035810060799122, \"Left\": 0.7451016306877136, \"Top\": 0.6433399319648743}, \"Polygon\": [{\"X\": 0.7451016306877136, \"Y\": 0.6433399319648743}, {\"X\": 0.7778508067131042, \"Y\": 0.6433399319648743}, {\"X\": 0.7778508067131042, \"Y\": 0.6533757448196411}, {\"X\": 0.7451016306877136, \"Y\": 0.6533757448196411}]}, \"Id\": \"4f01666b-e13c-427e-aade-ac84a8f6df8e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51416015625, \"Text\": \"6/7/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06853058189153671, \"Height\": 0.012372300028800964, \"Left\": 0.14492343366146088, \"Top\": 0.6621837019920349}, \"Polygon\": [{\"X\": 0.14492343366146088, \"Y\": 0.6621837019920349}, {\"X\": 0.213454008102417, \"Y\": 0.6621837019920349}, {\"X\": 0.213454008102417, \"Y\": 0.6745560169219971}, {\"X\": 0.14492343366146088, \"Y\": 0.6745560169219971}]}, \"Id\": \"4838f111-ca39-4134-b740-70b44eed314f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83168029785156, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04096055030822754, \"Height\": 0.010026100091636181, \"Left\": 0.23183295130729675, \"Top\": 0.662818968296051}, \"Polygon\": [{\"X\": 0.23183295130729675, \"Y\": 0.662818968296051}, {\"X\": 0.2727935016155243, \"Y\": 0.662818968296051}, {\"X\": 0.2727935016155243, \"Y\": 0.6728450655937195}, {\"X\": 0.23183295130729675, \"Y\": 0.6728450655937195}]}, \"Id\": \"3a17534c-48e8-48c4-bc21-8b398e241046\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69135284423828, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06704714149236679, \"Height\": 0.010362270288169384, \"Left\": 0.27670758962631226, \"Top\": 0.6626704335212708}, \"Polygon\": [{\"X\": 0.27670758962631226, \"Y\": 0.6626704335212708}, {\"X\": 0.34375473856925964, \"Y\": 0.6626704335212708}, {\"X\": 0.34375473856925964, \"Y\": 0.6730327010154724}, {\"X\": 0.27670758962631226, \"Y\": 0.6730327010154724}]}, \"Id\": \"8d4f2a11-a77e-43c8-885e-915e98bc422b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.79988861083984, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005957489833235741, \"Height\": 0.0023106299340724945, \"Left\": 0.3514803349971771, \"Top\": 0.6678315997123718}, \"Polygon\": [{\"X\": 0.3514803349971771, \"Y\": 0.6678315997123718}, {\"X\": 0.3574378192424774, \"Y\": 0.6678315997123718}, {\"X\": 0.3574378192424774, \"Y\": 0.6701422333717346}, {\"X\": 0.3514803349971771, \"Y\": 0.6701422333717346}]}, \"Id\": \"5fe190cf-1592-4b84-9509-b34e7eb72b7d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44927978515625, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06061254069209099, \"Height\": 0.010320009663701057, \"Left\": 0.36073726415634155, \"Top\": 0.6623736619949341}, \"Polygon\": [{\"X\": 0.36073726415634155, \"Y\": 0.6623736619949341}, {\"X\": 0.42134979367256165, \"Y\": 0.6623736619949341}, {\"X\": 0.42134979367256165, \"Y\": 0.67269366979599}, {\"X\": 0.36073726415634155, \"Y\": 0.67269366979599}]}, \"Id\": \"c00fbfa1-2390-40a7-87f9-93915208205c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.5267105102539, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00566241005435586, \"Height\": 0.002469749888405204, \"Left\": 0.4244380593299866, \"Top\": 0.6677243709564209}, \"Polygon\": [{\"X\": 0.4244380593299866, \"Y\": 0.6677243709564209}, {\"X\": 0.4301004707813263, \"Y\": 0.6677243709564209}, {\"X\": 0.4301004707813263, \"Y\": 0.670194149017334}, {\"X\": 0.4244380593299866, \"Y\": 0.670194149017334}]}, \"Id\": \"88c921fc-0fc7-46c2-b317-db5d643dd5da\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50818634033203, \"Text\": \"5476998456\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09156525880098343, \"Height\": 0.010412169620394707, \"Left\": 0.4334835410118103, \"Top\": 0.6627218127250671}, \"Polygon\": [{\"X\": 0.4334835410118103, \"Y\": 0.6627218127250671}, {\"X\": 0.5250487923622131, \"Y\": 0.6627218127250671}, {\"X\": 0.5250487923622131, \"Y\": 0.6731339693069458}, {\"X\": 0.4334835410118103, \"Y\": 0.6731339693069458}]}, \"Id\": \"8daa16e9-8e19-4219-8636-2b89238405f5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04617309570312, \"Text\": \"-294\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03253740072250366, \"Height\": 0.009892860427498817, \"Left\": 0.7451913356781006, \"Top\": 0.662922739982605}, \"Polygon\": [{\"X\": 0.7451913356781006, \"Y\": 0.662922739982605}, {\"X\": 0.7777287364006042, \"Y\": 0.662922739982605}, {\"X\": 0.7777287364006042, \"Y\": 0.6728156208992004}, {\"X\": 0.7451913356781006, \"Y\": 0.6728156208992004}]}, \"Id\": \"8939658a-0751-4151-8eb6-b6d50264220b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49555206298828, \"Text\": \"7/23/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07748735696077347, \"Height\": 0.013110900297760963, \"Left\": 0.1358220875263214, \"Top\": 0.6814600229263306}, \"Polygon\": [{\"X\": 0.1358220875263214, \"Y\": 0.6814600229263306}, {\"X\": 0.21330945193767548, \"Y\": 0.6814600229263306}, {\"X\": 0.21330945193767548, \"Y\": 0.6945708990097046}, {\"X\": 0.1358220875263214, \"Y\": 0.6945708990097046}]}, \"Id\": \"06b3e7b6-9d1a-4258-9559-b4df04b4adab\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83833312988281, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04076172038912773, \"Height\": 0.010220900177955627, \"Left\": 0.2320227175951004, \"Top\": 0.6822848916053772}, \"Polygon\": [{\"X\": 0.2320227175951004, \"Y\": 0.6822848916053772}, {\"X\": 0.27278444170951843, \"Y\": 0.6822848916053772}, {\"X\": 0.27278444170951843, \"Y\": 0.6925057768821716}, {\"X\": 0.2320227175951004, \"Y\": 0.6925057768821716}]}, \"Id\": \"48b5bbed-2535-47b1-95ea-c63456943c79\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66742706298828, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06679472327232361, \"Height\": 0.010334859602153301, \"Left\": 0.27684664726257324, \"Top\": 0.6821902394294739}, \"Polygon\": [{\"X\": 0.27684664726257324, \"Y\": 0.6821902394294739}, {\"X\": 0.34364137053489685, \"Y\": 0.6821902394294739}, {\"X\": 0.34364137053489685, \"Y\": 0.6925250887870789}, {\"X\": 0.27684664726257324, \"Y\": 0.6925250887870789}]}, \"Id\": \"345cc827-b79c-46b2-bb99-7b0cb6db135c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 94.62859344482422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005671749822795391, \"Height\": 0.0022660500835627317, \"Left\": 0.35170280933380127, \"Top\": 0.6872442960739136}, \"Polygon\": [{\"X\": 0.35170280933380127, \"Y\": 0.6872442960739136}, {\"X\": 0.35737454891204834, \"Y\": 0.6872442960739136}, {\"X\": 0.35737454891204834, \"Y\": 0.6895103454589844}, {\"X\": 0.35170280933380127, \"Y\": 0.6895103454589844}]}, \"Id\": \"87b9b733-dd9d-4dbb-b9dd-97eb28923095\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63117980957031, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050951000303030014, \"Height\": 0.012897740118205547, \"Left\": 0.36119067668914795, \"Top\": 0.6820240616798401}, \"Polygon\": [{\"X\": 0.36119067668914795, \"Y\": 0.6820240616798401}, {\"X\": 0.41214168071746826, \"Y\": 0.6820240616798401}, {\"X\": 0.41214168071746826, \"Y\": 0.6949217915534973}, {\"X\": 0.36119067668914795, \"Y\": 0.6949217915534973}]}, \"Id\": \"d6046359-ea80-4635-96c1-330a5cd51220\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.36323547363281, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006095199845731258, \"Height\": 0.002652060007676482, \"Left\": 0.41621026396751404, \"Top\": 0.6870872378349304}, \"Polygon\": [{\"X\": 0.41621026396751404, \"Y\": 0.6870872378349304}, {\"X\": 0.42230546474456787, \"Y\": 0.6870872378349304}, {\"X\": 0.42230546474456787, \"Y\": 0.6897392868995667}, {\"X\": 0.41621026396751404, \"Y\": 0.6897392868995667}]}, \"Id\": \"7402f354-18d2-4d03-9907-2a59392a0d5c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.16146087646484, \"Text\": \"5505969927\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09074795991182327, \"Height\": 0.010208790190517902, \"Left\": 0.4256432056427002, \"Top\": 0.6824193596839905}, \"Polygon\": [{\"X\": 0.4256432056427002, \"Y\": 0.6824193596839905}, {\"X\": 0.5163911581039429, \"Y\": 0.6824193596839905}, {\"X\": 0.5163911581039429, \"Y\": 0.6926281452178955}, {\"X\": 0.4256432056427002, \"Y\": 0.6926281452178955}]}, \"Id\": \"3367acaf-3be8-44bf-9b15-369fc9745309\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08769989013672, \"Text\": \"-269\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03288210183382034, \"Height\": 0.00986464973539114, \"Left\": 0.744793713092804, \"Top\": 0.6825522184371948}, \"Polygon\": [{\"X\": 0.744793713092804, \"Y\": 0.6825522184371948}, {\"X\": 0.7776758074760437, \"Y\": 0.6825522184371948}, {\"X\": 0.7776758074760437, \"Y\": 0.6924168467521667}, {\"X\": 0.744793713092804, \"Y\": 0.6924168467521667}]}, \"Id\": \"83477cfc-dc96-45c6-9106-bbc16f647a5d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57650756835938, \"Text\": \"3/21/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07732328772544861, \"Height\": 0.01290971040725708, \"Left\": 0.13614796102046967, \"Top\": 0.7011279463768005}, \"Polygon\": [{\"X\": 0.13614796102046967, \"Y\": 0.7011279463768005}, {\"X\": 0.21347124874591827, \"Y\": 0.7011279463768005}, {\"X\": 0.21347124874591827, \"Y\": 0.7140376567840576}, {\"X\": 0.13614796102046967, \"Y\": 0.7140376567840576}]}, \"Id\": \"9be9afc3-7ffc-4bf8-aff3-6c89b5545d5d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27066802978516, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07152429968118668, \"Height\": 0.012436759658157825, \"Left\": 0.23049460351467133, \"Top\": 0.7019492387771606}, \"Polygon\": [{\"X\": 0.23049460351467133, \"Y\": 0.7019492387771606}, {\"X\": 0.3020189106464386, \"Y\": 0.7019492387771606}, {\"X\": 0.3020189106464386, \"Y\": 0.714385986328125}, {\"X\": 0.23049460351467133, \"Y\": 0.714385986328125}]}, \"Id\": \"74991fc9-62a5-42f1-8fcf-d07416c6a8a1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.57707977294922, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00592494010925293, \"Height\": 0.0023737000301480293, \"Left\": 0.3064619302749634, \"Top\": 0.7068364024162292}, \"Polygon\": [{\"X\": 0.3064619302749634, \"Y\": 0.7068364024162292}, {\"X\": 0.3123868703842163, \"Y\": 0.7068364024162292}, {\"X\": 0.3123868703842163, \"Y\": 0.7092100977897644}, {\"X\": 0.3064619302749634, \"Y\": 0.7092100977897644}]}, \"Id\": \"a2fb4bc6-f7ec-45d8-848a-4329b26e2add\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36677551269531, \"Text\": \"Lyft\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02761607989668846, \"Height\": 0.012265359982848167, \"Left\": 0.3165186941623688, \"Top\": 0.7018929719924927}, \"Polygon\": [{\"X\": 0.3165186941623688, \"Y\": 0.7018929719924927}, {\"X\": 0.34413477778434753, \"Y\": 0.7018929719924927}, {\"X\": 0.34413477778434753, \"Y\": 0.7141583561897278}, {\"X\": 0.3165186941623688, \"Y\": 0.7141583561897278}]}, \"Id\": \"c43dbfda-3edd-45d8-a313-9bdbe384d7f0\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.91926574707031, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005065680015832186, \"Height\": 0.0021828599274158478, \"Left\": 0.34794098138809204, \"Top\": 0.7068577408790588}, \"Polygon\": [{\"X\": 0.34794098138809204, \"Y\": 0.7068577408790588}, {\"X\": 0.35300666093826294, \"Y\": 0.7068577408790588}, {\"X\": 0.35300666093826294, \"Y\": 0.7090405821800232}, {\"X\": 0.34794098138809204, \"Y\": 0.7090405821800232}]}, \"Id\": \"f34d6fb3-df41-4c02-a18c-45b036e91938\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.78894805908203, \"Text\": \"5688740948\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09194330126047134, \"Height\": 0.010343019850552082, \"Left\": 0.35582658648490906, \"Top\": 0.7017900347709656}, \"Polygon\": [{\"X\": 0.35582658648490906, \"Y\": 0.7017900347709656}, {\"X\": 0.4477699100971222, \"Y\": 0.7017900347709656}, {\"X\": 0.4477699100971222, \"Y\": 0.7121330499649048}, {\"X\": 0.35582658648490906, \"Y\": 0.7121330499649048}]}, \"Id\": \"9355efc4-8dfd-4cc5-bfa9-4bf8586d60e6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83187103271484, \"Text\": \"-52\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02358517050743103, \"Height\": 0.009819899685680866, \"Left\": 0.7540094256401062, \"Top\": 0.7021796703338623}, \"Polygon\": [{\"X\": 0.7540094256401062, \"Y\": 0.7021796703338623}, {\"X\": 0.7775945663452148, \"Y\": 0.7021796703338623}, {\"X\": 0.7775945663452148, \"Y\": 0.7119995951652527}, {\"X\": 0.7540094256401062, \"Y\": 0.7119995951652527}]}, \"Id\": \"78737934-f6cd-4135-8298-c6559531220d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50719451904297, \"Text\": \"8/27/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07759159803390503, \"Height\": 0.012872399762272835, \"Left\": 0.13597813248634338, \"Top\": 0.7206233143806458}, \"Polygon\": [{\"X\": 0.13597813248634338, \"Y\": 0.7206233143806458}, {\"X\": 0.2135697305202484, \"Y\": 0.7206233143806458}, {\"X\": 0.2135697305202484, \"Y\": 0.7334957122802734}, {\"X\": 0.13597813248634338, \"Y\": 0.7334957122802734}]}, \"Id\": \"38f31aad-0baa-4c3f-ac63-2b0f23f17e1c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92218017578125, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035443101078271866, \"Height\": 0.010450360365211964, \"Left\": 0.23199710249900818, \"Top\": 0.7212032675743103}, \"Polygon\": [{\"X\": 0.23199710249900818, \"Y\": 0.7212032675743103}, {\"X\": 0.26744019985198975, \"Y\": 0.7212032675743103}, {\"X\": 0.26744019985198975, \"Y\": 0.73165363073349}, {\"X\": 0.23199710249900818, \"Y\": 0.73165363073349}]}, \"Id\": \"54b12a70-4dcc-4858-a360-a3620c7317a4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65869140625, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0667378306388855, \"Height\": 0.01051000040024519, \"Left\": 0.27167463302612305, \"Top\": 0.7210685014724731}, \"Polygon\": [{\"X\": 0.27167463302612305, \"Y\": 0.7210685014724731}, {\"X\": 0.33841246366500854, \"Y\": 0.7210685014724731}, {\"X\": 0.33841246366500854, \"Y\": 0.731578528881073}, {\"X\": 0.27167463302612305, \"Y\": 0.731578528881073}]}, \"Id\": \"1d67551a-06e8-424f-bae6-025451ca7298\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.11840057373047, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005910539999604225, \"Height\": 0.0024910999927669764, \"Left\": 0.3426225185394287, \"Top\": 0.7263215184211731}, \"Polygon\": [{\"X\": 0.3426225185394287, \"Y\": 0.7263215184211731}, {\"X\": 0.3485330641269684, \"Y\": 0.7263215184211731}, {\"X\": 0.3485330641269684, \"Y\": 0.728812575340271}, {\"X\": 0.3426225185394287, \"Y\": 0.728812575340271}]}, \"Id\": \"860c9f23-0566-4ad3-8291-1f2f99a8457a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86410522460938, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08026629686355591, \"Height\": 0.010583830066025257, \"Left\": 0.3541783094406128, \"Top\": 0.7212122678756714}, \"Polygon\": [{\"X\": 0.3541783094406128, \"Y\": 0.7212122678756714}, {\"X\": 0.4344446063041687, \"Y\": 0.7212122678756714}, {\"X\": 0.4344446063041687, \"Y\": 0.7317960858345032}, {\"X\": 0.3541783094406128, \"Y\": 0.7317960858345032}]}, \"Id\": \"a9faa6e8-6f47-449c-b7f5-7ef2ecf75867\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.16553497314453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005630489904433489, \"Height\": 0.0029630400240421295, \"Left\": 0.4384571313858032, \"Top\": 0.725978672504425}, \"Polygon\": [{\"X\": 0.4384571313858032, \"Y\": 0.725978672504425}, {\"X\": 0.4440876245498657, \"Y\": 0.725978672504425}, {\"X\": 0.4440876245498657, \"Y\": 0.7289417386054993}, {\"X\": 0.4384571313858032, \"Y\": 0.7289417386054993}]}, \"Id\": \"3293c11f-08c1-43a7-a45e-e03397b39b7f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14717864990234, \"Text\": \"5798336406\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09153853356838226, \"Height\": 0.0106578404083848, \"Left\": 0.4477969706058502, \"Top\": 0.7212038636207581}, \"Polygon\": [{\"X\": 0.4477969706058502, \"Y\": 0.7212038636207581}, {\"X\": 0.5393354892730713, \"Y\": 0.7212038636207581}, {\"X\": 0.5393354892730713, \"Y\": 0.7318617105484009}, {\"X\": 0.4477969706058502, \"Y\": 0.7318617105484009}]}, \"Id\": \"5e9bccea-c91e-4675-800d-98c6ed482783\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44096374511719, \"Text\": \"-222\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0322834812104702, \"Height\": 0.009991739876568317, \"Left\": 0.745154857635498, \"Top\": 0.7215343713760376}, \"Polygon\": [{\"X\": 0.745154857635498, \"Y\": 0.7215343713760376}, {\"X\": 0.7774383425712585, \"Y\": 0.7215343713760376}, {\"X\": 0.7774383425712585, \"Y\": 0.7315261363983154}, {\"X\": 0.745154857635498, \"Y\": 0.7315261363983154}]}, \"Id\": \"089f74e6-72e5-498c-80e5-344c00a57493\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72518157958984, \"Text\": \"11/25/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08562608808279037, \"Height\": 0.012582600116729736, \"Left\": 0.12771150469779968, \"Top\": 0.7404417395591736}, \"Polygon\": [{\"X\": 0.12771150469779968, \"Y\": 0.7404417395591736}, {\"X\": 0.21333758533000946, \"Y\": 0.7404417395591736}, {\"X\": 0.21333758533000946, \"Y\": 0.7530243396759033}, {\"X\": 0.12771150469779968, \"Y\": 0.7530243396759033}]}, \"Id\": \"02a3dbab-cc3a-409d-9c94-89816d29c33c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92723083496094, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035290420055389404, \"Height\": 0.010375379584729671, \"Left\": 0.23214948177337646, \"Top\": 0.7409845590591431}, \"Polygon\": [{\"X\": 0.23214948177337646, \"Y\": 0.7409845590591431}, {\"X\": 0.26743990182876587, \"Y\": 0.7409845590591431}, {\"X\": 0.26743990182876587, \"Y\": 0.7513599395751953}, {\"X\": 0.23214948177337646, \"Y\": 0.7513599395751953}]}, \"Id\": \"6abf6063-6c65-4c43-b945-697eb3ce8690\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64969635009766, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06725575029850006, \"Height\": 0.010525350458920002, \"Left\": 0.27121588587760925, \"Top\": 0.7407884001731873}, \"Polygon\": [{\"X\": 0.27121588587760925, \"Y\": 0.7407884001731873}, {\"X\": 0.3384716510772705, \"Y\": 0.7407884001731873}, {\"X\": 0.3384716510772705, \"Y\": 0.7513137459754944}, {\"X\": 0.27121588587760925, \"Y\": 0.7513137459754944}]}, \"Id\": \"fe0403c9-a7b8-4df3-955e-f3ed8f0d2829\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.37840270996094, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005703540053218603, \"Height\": 0.0023868000134825706, \"Left\": 0.34273087978363037, \"Top\": 0.7459684014320374}, \"Polygon\": [{\"X\": 0.34273087978363037, \"Y\": 0.7459684014320374}, {\"X\": 0.3484344184398651, \"Y\": 0.7459684014320374}, {\"X\": 0.3484344184398651, \"Y\": 0.7483552098274231}, {\"X\": 0.34273087978363037, \"Y\": 0.7483552098274231}]}, \"Id\": \"53d9bce7-0ecd-4de4-9ed2-44ec79b18806\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74364471435547, \"Text\": \"Starbucks\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07058677077293396, \"Height\": 0.01047895010560751, \"Left\": 0.3524733781814575, \"Top\": 0.740805447101593}, \"Polygon\": [{\"X\": 0.3524733781814575, \"Y\": 0.740805447101593}, {\"X\": 0.4230601489543915, \"Y\": 0.740805447101593}, {\"X\": 0.4230601489543915, \"Y\": 0.7512844204902649}, {\"X\": 0.3524733781814575, \"Y\": 0.7512844204902649}]}, \"Id\": \"c4275901-193f-40e1-ab9a-55c80057954c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.6090316772461, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005885479971766472, \"Height\": 0.002985999919474125, \"Left\": 0.42699509859085083, \"Top\": 0.7458400726318359}, \"Polygon\": [{\"X\": 0.42699509859085083, \"Y\": 0.7458400726318359}, {\"X\": 0.43288058042526245, \"Y\": 0.7458400726318359}, {\"X\": 0.43288058042526245, \"Y\": 0.7488260865211487}, {\"X\": 0.42699509859085083, \"Y\": 0.7488260865211487}]}, \"Id\": \"cf387f76-abb2-4440-a1ea-97eae3b9e328\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.8643798828125, \"Text\": \"5822058649\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0908655971288681, \"Height\": 0.010618950240314007, \"Left\": 0.4368163049221039, \"Top\": 0.7409480214118958}, \"Polygon\": [{\"X\": 0.4368163049221039, \"Y\": 0.7409480214118958}, {\"X\": 0.5276818871498108, \"Y\": 0.7409480214118958}, {\"X\": 0.5276818871498108, \"Y\": 0.7515669465065002}, {\"X\": 0.4368163049221039, \"Y\": 0.7515669465065002}]}, \"Id\": \"d3b08063-4f61-47a6-9803-393d5076be51\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49327087402344, \"Text\": \"-169\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03303423896431923, \"Height\": 0.010002540424466133, \"Left\": 0.7445762753486633, \"Top\": 0.7413047552108765}, \"Polygon\": [{\"X\": 0.7445762753486633, \"Y\": 0.7413047552108765}, {\"X\": 0.7776105403900146, \"Y\": 0.7413047552108765}, {\"X\": 0.7776105403900146, \"Y\": 0.7513073086738586}, {\"X\": 0.7445762753486633, \"Y\": 0.7513073086738586}]}, \"Id\": \"a5ff3453-06a2-46b5-a8b3-e9de9b8b7c75\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52819061279297, \"Text\": \"9/19/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0778062716126442, \"Height\": 0.012927760370075703, \"Left\": 0.1357419341802597, \"Top\": 0.7599289417266846}, \"Polygon\": [{\"X\": 0.1357419341802597, \"Y\": 0.7599289417266846}, {\"X\": 0.2135481983423233, \"Y\": 0.7599289417266846}, {\"X\": 0.2135481983423233, \"Y\": 0.7728567123413086}, {\"X\": 0.1357419341802597, \"Y\": 0.7728567123413086}]}, \"Id\": \"e54d14c7-046b-46aa-a22d-e90546e2a117\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85707092285156, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040109340101480484, \"Height\": 0.010204150341451168, \"Left\": 0.2320382297039032, \"Top\": 0.7606772184371948}, \"Polygon\": [{\"X\": 0.2320382297039032, \"Y\": 0.7606772184371948}, {\"X\": 0.2721475660800934, \"Y\": 0.7606772184371948}, {\"X\": 0.2721475660800934, \"Y\": 0.7708813548088074}, {\"X\": 0.2320382297039032, \"Y\": 0.7708813548088074}]}, \"Id\": \"632b8d5b-308c-4c64-9f87-7e7e2c038160\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65975189208984, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06692208349704742, \"Height\": 0.010455739684402943, \"Left\": 0.27678582072257996, \"Top\": 0.7604537606239319}, \"Polygon\": [{\"X\": 0.27678582072257996, \"Y\": 0.7604537606239319}, {\"X\": 0.3437078893184662, \"Y\": 0.7604537606239319}, {\"X\": 0.3437078893184662, \"Y\": 0.7709094882011414}, {\"X\": 0.27678582072257996, \"Y\": 0.7709094882011414}]}, \"Id\": \"6cddf3c1-b43c-4055-a4cf-fdc7f485b744\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.7391357421875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005534439813345671, \"Height\": 0.0021192599087953568, \"Left\": 0.3516135811805725, \"Top\": 0.7657996416091919}, \"Polygon\": [{\"X\": 0.3516135811805725, \"Y\": 0.7657996416091919}, {\"X\": 0.35714802145957947, \"Y\": 0.7657996416091919}, {\"X\": 0.35714802145957947, \"Y\": 0.7679188847541809}, {\"X\": 0.3516135811805725, \"Y\": 0.7679188847541809}]}, \"Id\": \"9ad8505e-ae50-4b3f-86f3-fbaa19ef34af\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72945404052734, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05029531940817833, \"Height\": 0.012923460453748703, \"Left\": 0.36214959621429443, \"Top\": 0.7604421377182007}, \"Polygon\": [{\"X\": 0.36214959621429443, \"Y\": 0.7604421377182007}, {\"X\": 0.41244491934776306, \"Y\": 0.7604421377182007}, {\"X\": 0.41244491934776306, \"Y\": 0.7733656167984009}, {\"X\": 0.36214959621429443, \"Y\": 0.7733656167984009}]}, \"Id\": \"dfe8080a-8ab3-4476-a8a9-361dd457c9f9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.92452239990234, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005868020001798868, \"Height\": 0.0027181399054825306, \"Left\": 0.4164644181728363, \"Top\": 0.7655642628669739}, \"Polygon\": [{\"X\": 0.4164644181728363, \"Y\": 0.7655642628669739}, {\"X\": 0.42233243584632874, \"Y\": 0.7655642628669739}, {\"X\": 0.42233243584632874, \"Y\": 0.768282413482666}, {\"X\": 0.4164644181728363, \"Y\": 0.768282413482666}]}, \"Id\": \"72af2a39-ac87-4556-b4a9-897a2de45a59\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31547546386719, \"Text\": \"5948096947\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09149585664272308, \"Height\": 0.010611199773848057, \"Left\": 0.42604634165763855, \"Top\": 0.7605550289154053}, \"Polygon\": [{\"X\": 0.42604634165763855, \"Y\": 0.7605550289154053}, {\"X\": 0.5175421833992004, \"Y\": 0.7605550289154053}, {\"X\": 0.5175421833992004, \"Y\": 0.771166205406189}, {\"X\": 0.42604634165763855, \"Y\": 0.771166205406189}]}, \"Id\": \"c6a8de1d-8751-4b5e-a9de-87998ca9f456\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44671630859375, \"Text\": \"-250\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03290325030684471, \"Height\": 0.010005559772253036, \"Left\": 0.7447600960731506, \"Top\": 0.7608312368392944}, \"Polygon\": [{\"X\": 0.7447600960731506, \"Y\": 0.7608312368392944}, {\"X\": 0.7776633501052856, \"Y\": 0.7608312368392944}, {\"X\": 0.7776633501052856, \"Y\": 0.7708367705345154}, {\"X\": 0.7447600960731506, \"Y\": 0.7708367705345154}]}, \"Id\": \"729fe121-7c16-47eb-b146-f59c50b5c3b6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5707778930664, \"Text\": \"2/25/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07746019959449768, \"Height\": 0.012912300415337086, \"Left\": 0.13617916405200958, \"Top\": 0.7795358896255493}, \"Polygon\": [{\"X\": 0.13617916405200958, \"Y\": 0.7795358896255493}, {\"X\": 0.21363936364650726, \"Y\": 0.7795358896255493}, {\"X\": 0.21363936364650726, \"Y\": 0.7924482226371765}, {\"X\": 0.13617916405200958, \"Y\": 0.7924482226371765}]}, \"Id\": \"1fe2512e-c157-4dd1-8de0-ef13a5adde6d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88079833984375, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040163878351449966, \"Height\": 0.010231349617242813, \"Left\": 0.2319692224264145, \"Top\": 0.7801990509033203}, \"Polygon\": [{\"X\": 0.2319692224264145, \"Y\": 0.7801990509033203}, {\"X\": 0.27213311195373535, \"Y\": 0.7801990509033203}, {\"X\": 0.27213311195373535, \"Y\": 0.7904304265975952}, {\"X\": 0.2319692224264145, \"Y\": 0.7904304265975952}]}, \"Id\": \"502179b4-d4cd-450a-8393-2a9090711de6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72847747802734, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0666164979338646, \"Height\": 0.01043859962373972, \"Left\": 0.276886910200119, \"Top\": 0.7800310850143433}, \"Polygon\": [{\"X\": 0.276886910200119, \"Y\": 0.7800310850143433}, {\"X\": 0.3435033857822418, \"Y\": 0.7800310850143433}, {\"X\": 0.3435033857822418, \"Y\": 0.7904697060585022}, {\"X\": 0.276886910200119, \"Y\": 0.7904697060585022}]}, \"Id\": \"2e82b351-9c9f-4764-ade1-5ea9c164e309\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.00297546386719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005658240057528019, \"Height\": 0.0022486599627882242, \"Left\": 0.3515355587005615, \"Top\": 0.7853327393531799}, \"Polygon\": [{\"X\": 0.3515355587005615, \"Y\": 0.7853327393531799}, {\"X\": 0.35719379782676697, \"Y\": 0.7853327393531799}, {\"X\": 0.35719379782676697, \"Y\": 0.7875813841819763}, {\"X\": 0.3515355587005615, \"Y\": 0.7875813841819763}]}, \"Id\": \"0b55f599-c2a9-4b79-9e5d-c882e9209156\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64678192138672, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050780680030584335, \"Height\": 0.012733500450849533, \"Left\": 0.36168384552001953, \"Top\": 0.7800061702728271}, \"Polygon\": [{\"X\": 0.36168384552001953, \"Y\": 0.7800061702728271}, {\"X\": 0.41246452927589417, \"Y\": 0.7800061702728271}, {\"X\": 0.41246452927589417, \"Y\": 0.7927396893501282}, {\"X\": 0.36168384552001953, \"Y\": 0.7927396893501282}]}, \"Id\": \"87a81672-7334-4eda-bd53-e10c136ae69a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.81796264648438, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006246570032089949, \"Height\": 0.0028872399125248194, \"Left\": 0.41608110070228577, \"Top\": 0.7850571870803833}, \"Polygon\": [{\"X\": 0.41608110070228577, \"Y\": 0.7850571870803833}, {\"X\": 0.4223276674747467, \"Y\": 0.7850571870803833}, {\"X\": 0.4223276674747467, \"Y\": 0.7879444360733032}, {\"X\": 0.41608110070228577, \"Y\": 0.7879444360733032}]}, \"Id\": \"22a7f864-50fd-4640-a150-696cf0ec5c9f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23918914794922, \"Text\": \"6030150884\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0909571498632431, \"Height\": 0.010476290248334408, \"Left\": 0.42652085423469543, \"Top\": 0.7800951600074768}, \"Polygon\": [{\"X\": 0.42652085423469543, \"Y\": 0.7800951600074768}, {\"X\": 0.5174779891967773, \"Y\": 0.7800951600074768}, {\"X\": 0.5174779891967773, \"Y\": 0.7905714511871338}, {\"X\": 0.42652085423469543, \"Y\": 0.7905714511871338}]}, \"Id\": \"c04abcc5-e5f5-40c9-a8b0-c14d1eeff8a4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05768585205078, \"Text\": \"-269\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03286376968026161, \"Height\": 0.009930700063705444, \"Left\": 0.7445918321609497, \"Top\": 0.7804526090621948}, \"Polygon\": [{\"X\": 0.7445918321609497, \"Y\": 0.7804526090621948}, {\"X\": 0.7774556279182434, \"Y\": 0.7804526090621948}, {\"X\": 0.7774556279182434, \"Y\": 0.7903832793235779}, {\"X\": 0.7445918321609497, \"Y\": 0.7903832793235779}]}, \"Id\": \"c564d11d-8247-40ad-be6d-6d8e899bc4af\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59014892578125, \"Text\": \"7/15/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07780764997005463, \"Height\": 0.013109549880027771, \"Left\": 0.13580995798110962, \"Top\": 0.7990537881851196}, \"Polygon\": [{\"X\": 0.13580995798110962, \"Y\": 0.7990537881851196}, {\"X\": 0.21361760795116425, \"Y\": 0.7990537881851196}, {\"X\": 0.21361760795116425, \"Y\": 0.8121633529663086}, {\"X\": 0.13580995798110962, \"Y\": 0.8121633529663086}]}, \"Id\": \"01864cab-ce05-4a86-b904-569f13d2c653\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9183120727539, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03533108904957771, \"Height\": 0.010247400030493736, \"Left\": 0.2321111410856247, \"Top\": 0.7996568083763123}, \"Polygon\": [{\"X\": 0.2321111410856247, \"Y\": 0.7996568083763123}, {\"X\": 0.2674422264099121, \"Y\": 0.7996568083763123}, {\"X\": 0.2674422264099121, \"Y\": 0.8099042177200317}, {\"X\": 0.2321111410856247, \"Y\": 0.8099042177200317}]}, \"Id\": \"4e306d68-81d5-49d4-b630-a06632a3cc18\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6719741821289, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06639456003904343, \"Height\": 0.01035119965672493, \"Left\": 0.2722749412059784, \"Top\": 0.7996246814727783}, \"Polygon\": [{\"X\": 0.2722749412059784, \"Y\": 0.7996246814727783}, {\"X\": 0.3386695086956024, \"Y\": 0.7996246814727783}, {\"X\": 0.3386695086956024, \"Y\": 0.8099759221076965}, {\"X\": 0.2722749412059784, \"Y\": 0.8099759221076965}]}, \"Id\": \"489fe99e-545a-4e72-a886-08601abb099f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.16661834716797, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00561144994571805, \"Height\": 0.0021742400713264942, \"Left\": 0.3426220715045929, \"Top\": 0.8047924637794495}, \"Polygon\": [{\"X\": 0.3426220715045929, \"Y\": 0.8047924637794495}, {\"X\": 0.34823352098464966, \"Y\": 0.8047924637794495}, {\"X\": 0.34823352098464966, \"Y\": 0.8069667220115662}, {\"X\": 0.3426220715045929, \"Y\": 0.8069667220115662}]}, \"Id\": \"89508bd6-1327-402c-8c04-3616cb8d9bad\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8347396850586, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08213689923286438, \"Height\": 0.01062512956559658, \"Left\": 0.3523474335670471, \"Top\": 0.7994852066040039}, \"Polygon\": [{\"X\": 0.3523474335670471, \"Y\": 0.7994852066040039}, {\"X\": 0.4344843327999115, \"Y\": 0.7994852066040039}, {\"X\": 0.4344843327999115, \"Y\": 0.810110330581665}, {\"X\": 0.3523474335670471, \"Y\": 0.810110330581665}]}, \"Id\": \"b84811c8-f448-4c90-ad6f-81a92e1a7abb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.7150650024414, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0058458298444747925, \"Height\": 0.0031912599224597216, \"Left\": 0.438213974237442, \"Top\": 0.8043712377548218}, \"Polygon\": [{\"X\": 0.438213974237442, \"Y\": 0.8043712377548218}, {\"X\": 0.4440597891807556, \"Y\": 0.8043712377548218}, {\"X\": 0.4440597891807556, \"Y\": 0.8075624704360962}, {\"X\": 0.438213974237442, \"Y\": 0.8075624704360962}]}, \"Id\": \"e684cad8-7a87-4dad-a798-33193eb1f0d9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.30911254882812, \"Text\": \"6031636977\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09140796214342117, \"Height\": 0.0105520598590374, \"Left\": 0.4474979043006897, \"Top\": 0.7997007369995117}, \"Polygon\": [{\"X\": 0.4474979043006897, \"Y\": 0.7997007369995117}, {\"X\": 0.5389058589935303, \"Y\": 0.7997007369995117}, {\"X\": 0.5389058589935303, \"Y\": 0.8102527856826782}, {\"X\": 0.4474979043006897, \"Y\": 0.8102527856826782}]}, \"Id\": \"ca319cf7-ccad-4e7a-adea-84797f1fc849\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.10249328613281, \"Text\": \"-287\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03303110972046852, \"Height\": 0.010007769800722599, \"Left\": 0.744537353515625, \"Top\": 0.7998651266098022}, \"Polygon\": [{\"X\": 0.744537353515625, \"Y\": 0.7998651266098022}, {\"X\": 0.7775684595108032, \"Y\": 0.7998651266098022}, {\"X\": 0.7775684595108032, \"Y\": 0.8098728656768799}, {\"X\": 0.744537353515625, \"Y\": 0.8098728656768799}]}, \"Id\": \"87cf314b-30e7-4a3a-bfac-d6f98ba6569a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45254516601562, \"Text\": \"9/2/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06920138746500015, \"Height\": 0.01303895004093647, \"Left\": 0.14432017505168915, \"Top\": 0.8186823129653931}, \"Polygon\": [{\"X\": 0.14432017505168915, \"Y\": 0.8186823129653931}, {\"X\": 0.2135215699672699, \"Y\": 0.8186823129653931}, {\"X\": 0.2135215699672699, \"Y\": 0.8317212462425232}, {\"X\": 0.14432017505168915, \"Y\": 0.8317212462425232}]}, \"Id\": \"8866af3d-1eb6-4054-8dac-ab7e82ea7328\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88446044921875, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03555474057793617, \"Height\": 0.01039924006909132, \"Left\": 0.23193588852882385, \"Top\": 0.8190559148788452}, \"Polygon\": [{\"X\": 0.23193588852882385, \"Y\": 0.8190559148788452}, {\"X\": 0.2674906253814697, \"Y\": 0.8190559148788452}, {\"X\": 0.2674906253814697, \"Y\": 0.8294551372528076}, {\"X\": 0.23193588852882385, \"Y\": 0.8294551372528076}]}, \"Id\": \"0c950b9a-5c1a-4e58-bdf9-24c71d6b9f12\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6252212524414, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06606359034776688, \"Height\": 0.010459160432219505, \"Left\": 0.2722473442554474, \"Top\": 0.8190675377845764}, \"Polygon\": [{\"X\": 0.2722473442554474, \"Y\": 0.8190675377845764}, {\"X\": 0.33831092715263367, \"Y\": 0.8190675377845764}, {\"X\": 0.33831092715263367, \"Y\": 0.8295267224311829}, {\"X\": 0.2722473442554474, \"Y\": 0.8295267224311829}]}, \"Id\": \"6a81d318-0397-4f0e-9f4b-1e53271f5e75\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.45865631103516, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005602539982646704, \"Height\": 0.0020473499316722155, \"Left\": 0.34271591901779175, \"Top\": 0.8243821859359741}, \"Polygon\": [{\"X\": 0.34271591901779175, \"Y\": 0.8243821859359741}, {\"X\": 0.3483184576034546, \"Y\": 0.8243821859359741}, {\"X\": 0.3483184576034546, \"Y\": 0.826429545879364}, {\"X\": 0.34271591901779175, \"Y\": 0.826429545879364}]}, \"Id\": \"9027b09e-318f-46fe-b00d-e34d447a42cb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89739990234375, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02721698023378849, \"Height\": 0.009964940138161182, \"Left\": 0.35173800587654114, \"Top\": 0.8193058967590332}, \"Polygon\": [{\"X\": 0.35173800587654114, \"Y\": 0.8193058967590332}, {\"X\": 0.3789549767971039, \"Y\": 0.8193058967590332}, {\"X\": 0.3789549767971039, \"Y\": 0.8292708396911621}, {\"X\": 0.35173800587654114, \"Y\": 0.8292708396911621}]}, \"Id\": \"f44864de-3e86-4437-b33e-e8b377277a73\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63468170166016, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05881202965974808, \"Height\": 0.010238340124487877, \"Left\": 0.3841146230697632, \"Top\": 0.8194668889045715}, \"Polygon\": [{\"X\": 0.3841146230697632, \"Y\": 0.8194668889045715}, {\"X\": 0.44292664527893066, \"Y\": 0.8194668889045715}, {\"X\": 0.44292664527893066, \"Y\": 0.8297052383422852}, {\"X\": 0.3841146230697632, \"Y\": 0.8297052383422852}]}, \"Id\": \"ef59ba4b-738b-4be6-92c6-a728c33e4038\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.09169006347656, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006005129776895046, \"Height\": 0.003249139990657568, \"Left\": 0.4462433457374573, \"Top\": 0.8238064646720886}, \"Polygon\": [{\"X\": 0.4462433457374573, \"Y\": 0.8238064646720886}, {\"X\": 0.4522484838962555, \"Y\": 0.8238064646720886}, {\"X\": 0.4522484838962555, \"Y\": 0.8270555734634399}, {\"X\": 0.4462433457374573, \"Y\": 0.8270555734634399}]}, \"Id\": \"b22a48d3-d931-4ac0-ba06-782ad9d779fa\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14847564697266, \"Text\": \"6052214096\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09000570327043533, \"Height\": 0.010617909952998161, \"Left\": 0.45667150616645813, \"Top\": 0.8191466331481934}, \"Polygon\": [{\"X\": 0.45667150616645813, \"Y\": 0.8191466331481934}, {\"X\": 0.5466771721839905, \"Y\": 0.8191466331481934}, {\"X\": 0.5466771721839905, \"Y\": 0.8297645449638367}, {\"X\": 0.45667150616645813, \"Y\": 0.8297645449638367}]}, \"Id\": \"8e5e7771-0775-4b17-af8b-2ade53040337\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1867446899414, \"Text\": \"-268\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03258724883198738, \"Height\": 0.010082599706947803, \"Left\": 0.7448662519454956, \"Top\": 0.819438636302948}, \"Polygon\": [{\"X\": 0.7448662519454956, \"Y\": 0.819438636302948}, {\"X\": 0.7774534821510315, \"Y\": 0.819438636302948}, {\"X\": 0.7774534821510315, \"Y\": 0.8295212388038635}, {\"X\": 0.7448662519454956, \"Y\": 0.8295212388038635}]}, \"Id\": \"2b510e37-3adf-40fd-9438-f651635607d7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65740203857422, \"Text\": \"11/10/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08689875900745392, \"Height\": 0.013003749772906303, \"Left\": 0.12717920541763306, \"Top\": 0.8379717469215393}, \"Polygon\": [{\"X\": 0.12717920541763306, \"Y\": 0.8379717469215393}, {\"X\": 0.21407796442508698, \"Y\": 0.8379717469215393}, {\"X\": 0.21407796442508698, \"Y\": 0.850975513458252}, {\"X\": 0.12717920541763306, \"Y\": 0.850975513458252}]}, \"Id\": \"1a5c17f8-416d-43c1-b20a-11cc0fb17831\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85194396972656, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04060247913002968, \"Height\": 0.010314200073480606, \"Left\": 0.23184186220169067, \"Top\": 0.8387289047241211}, \"Polygon\": [{\"X\": 0.23184186220169067, \"Y\": 0.8387289047241211}, {\"X\": 0.27244433760643005, \"Y\": 0.8387289047241211}, {\"X\": 0.27244433760643005, \"Y\": 0.849043071269989}, {\"X\": 0.23184186220169067, \"Y\": 0.849043071269989}]}, \"Id\": \"d57677e9-05e8-46c1-bc04-56ca734752e9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70565795898438, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06686475872993469, \"Height\": 0.010437499731779099, \"Left\": 0.2771245241165161, \"Top\": 0.8386465907096863}, \"Polygon\": [{\"X\": 0.2771245241165161, \"Y\": 0.8386465907096863}, {\"X\": 0.3439892828464508, \"Y\": 0.8386465907096863}, {\"X\": 0.3439892828464508, \"Y\": 0.8490840792655945}, {\"X\": 0.2771245241165161, \"Y\": 0.8490840792655945}]}, \"Id\": \"e0d4eb35-9611-49b1-a790-dedd6af50160\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.89392852783203, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006012599915266037, \"Height\": 0.002375449985265732, \"Left\": 0.3514083921909332, \"Top\": 0.8437912464141846}, \"Polygon\": [{\"X\": 0.3514083921909332, \"Y\": 0.8437912464141846}, {\"X\": 0.35742101073265076, \"Y\": 0.8437912464141846}, {\"X\": 0.35742101073265076, \"Y\": 0.8461666703224182}, {\"X\": 0.3514083921909332, \"Y\": 0.8461666703224182}]}, \"Id\": \"3a43ca01-5f0f-4976-8a5d-109c31b2e819\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56928253173828, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059702400118112564, \"Height\": 0.010654469951987267, \"Left\": 0.3614886701107025, \"Top\": 0.838718831539154}, \"Polygon\": [{\"X\": 0.3614886701107025, \"Y\": 0.838718831539154}, {\"X\": 0.4211910665035248, \"Y\": 0.838718831539154}, {\"X\": 0.4211910665035248, \"Y\": 0.8493732810020447}, {\"X\": 0.3614886701107025, \"Y\": 0.8493732810020447}]}, \"Id\": \"9fe600c6-dadb-46b0-8df2-d41b8dce5872\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.3901596069336, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005640299990773201, \"Height\": 0.0031125000678002834, \"Left\": 0.42450666427612305, \"Top\": 0.8434308171272278}, \"Polygon\": [{\"X\": 0.42450666427612305, \"Y\": 0.8434308171272278}, {\"X\": 0.4301469624042511, \"Y\": 0.8434308171272278}, {\"X\": 0.4301469624042511, \"Y\": 0.8465433120727539}, {\"X\": 0.42450666427612305, \"Y\": 0.8465433120727539}]}, \"Id\": \"0c30e0f7-93f6-4d23-90d3-e9abea5e7886\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.77555847167969, \"Text\": \"6308084189\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09121865034103394, \"Height\": 0.010524939745664597, \"Left\": 0.4348752498626709, \"Top\": 0.8386867642402649}, \"Polygon\": [{\"X\": 0.4348752498626709, \"Y\": 0.8386867642402649}, {\"X\": 0.5260939002037048, \"Y\": 0.8386867642402649}, {\"X\": 0.5260939002037048, \"Y\": 0.8492116928100586}, {\"X\": 0.4348752498626709, \"Y\": 0.8492116928100586}]}, \"Id\": \"73f053d6-5986-4eff-86b1-4af5042f7470\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23839569091797, \"Text\": \"-127\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032622821629047394, \"Height\": 0.010018260218203068, \"Left\": 0.7445916533470154, \"Top\": 0.8390279412269592}, \"Polygon\": [{\"X\": 0.7445916533470154, \"Y\": 0.8390279412269592}, {\"X\": 0.7772144675254822, \"Y\": 0.8390279412269592}, {\"X\": 0.7772144675254822, \"Y\": 0.8490461707115173}, {\"X\": 0.7445916533470154, \"Y\": 0.8490461707115173}]}, \"Id\": \"61bd9958-d3a5-4c28-9d68-be8a7e5ed656\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56914520263672, \"Text\": \"11/27/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0854729413986206, \"Height\": 0.012395679950714111, \"Left\": 0.12769034504890442, \"Top\": 0.8579861521720886}, \"Polygon\": [{\"X\": 0.12769034504890442, \"Y\": 0.8579861521720886}, {\"X\": 0.21316328644752502, \"Y\": 0.8579861521720886}, {\"X\": 0.21316328644752502, \"Y\": 0.8703818321228027}, {\"X\": 0.12769034504890442, \"Y\": 0.8703818321228027}]}, \"Id\": \"a45b81b0-5822-46f8-95c6-1e578ac910d5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9382553100586, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03560473024845123, \"Height\": 0.010297469794750214, \"Left\": 0.23195402324199677, \"Top\": 0.8584238886833191}, \"Polygon\": [{\"X\": 0.23195402324199677, \"Y\": 0.8584238886833191}, {\"X\": 0.267558753490448, \"Y\": 0.8584238886833191}, {\"X\": 0.267558753490448, \"Y\": 0.8687213659286499}, {\"X\": 0.23195402324199677, \"Y\": 0.8687213659286499}]}, \"Id\": \"efb7bf0f-3e67-4ff5-a705-99fc979ca0fb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66506958007812, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06656301021575928, \"Height\": 0.010429349727928638, \"Left\": 0.27207621932029724, \"Top\": 0.8583459258079529}, \"Polygon\": [{\"X\": 0.27207621932029724, \"Y\": 0.8583459258079529}, {\"X\": 0.3386392295360565, \"Y\": 0.8583459258079529}, {\"X\": 0.3386392295360565, \"Y\": 0.8687752485275269}, {\"X\": 0.27207621932029724, \"Y\": 0.8687752485275269}]}, \"Id\": \"5900fc92-33d1-4d39-aa74-ffdf230e738b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.06275939941406, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0056952498853206635, \"Height\": 0.0022263999562710524, \"Left\": 0.3426811695098877, \"Top\": 0.8635367751121521}, \"Polygon\": [{\"X\": 0.3426811695098877, \"Y\": 0.8635367751121521}, {\"X\": 0.34837642312049866, \"Y\": 0.8635367751121521}, {\"X\": 0.34837642312049866, \"Y\": 0.8657631874084473}, {\"X\": 0.3426811695098877, \"Y\": 0.8657631874084473}]}, \"Id\": \"1aec2851-fed5-4525-adff-4718bb349a5e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90054321289062, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027281619608402252, \"Height\": 0.009909870103001595, \"Left\": 0.35173216462135315, \"Top\": 0.8586567640304565}, \"Polygon\": [{\"X\": 0.35173216462135315, \"Y\": 0.8586567640304565}, {\"X\": 0.3790137767791748, \"Y\": 0.8586567640304565}, {\"X\": 0.3790137767791748, \"Y\": 0.868566632270813}, {\"X\": 0.35173216462135315, \"Y\": 0.868566632270813}]}, \"Id\": \"29ea276d-7954-49f8-baf8-968b85f7c688\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63243865966797, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05973351001739502, \"Height\": 0.01028439961373806, \"Left\": 0.3839949667453766, \"Top\": 0.858999490737915}, \"Polygon\": [{\"X\": 0.3839949667453766, \"Y\": 0.858999490737915}, {\"X\": 0.4437284767627716, \"Y\": 0.858999490737915}, {\"X\": 0.4437284767627716, \"Y\": 0.86928391456604}, {\"X\": 0.3839949667453766, \"Y\": 0.86928391456604}]}, \"Id\": \"8e177f0e-544c-4eb9-aa84-a3a9e6bec702\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.200927734375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00597039982676506, \"Height\": 0.0033301999792456627, \"Left\": 0.4462108016014099, \"Top\": 0.8631051182746887}, \"Polygon\": [{\"X\": 0.4462108016014099, \"Y\": 0.8631051182746887}, {\"X\": 0.4521811902523041, \"Y\": 0.8631051182746887}, {\"X\": 0.4521811902523041, \"Y\": 0.8664352893829346}, {\"X\": 0.4462108016014099, \"Y\": 0.8664352893829346}]}, \"Id\": \"da6f4eda-1a61-46cd-91ae-73f51027d284\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2090835571289, \"Text\": \"6335155520\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.089032381772995, \"Height\": 0.010522039607167244, \"Left\": 0.45823416113853455, \"Top\": 0.8584612607955933}, \"Polygon\": [{\"X\": 0.45823416113853455, \"Y\": 0.8584612607955933}, {\"X\": 0.5472665429115295, \"Y\": 0.8584612607955933}, {\"X\": 0.5472665429115295, \"Y\": 0.8689833283424377}, {\"X\": 0.45823416113853455, \"Y\": 0.8689833283424377}]}, \"Id\": \"99521b8f-f0bc-466c-819f-8e252f40d60f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4901123046875, \"Text\": \"-104\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032459601759910583, \"Height\": 0.00979605969041586, \"Left\": 0.7448418736457825, \"Top\": 0.8588682413101196}, \"Polygon\": [{\"X\": 0.7448418736457825, \"Y\": 0.8588682413101196}, {\"X\": 0.7773014903068542, \"Y\": 0.8588682413101196}, {\"X\": 0.7773014903068542, \"Y\": 0.8686643242835999}, {\"X\": 0.7448418736457825, \"Y\": 0.8686643242835999}]}, \"Id\": \"6c8481d8-8a32-45f9-b168-d20947940d4d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67337036132812, \"Text\": \"11/17/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08663961291313171, \"Height\": 0.012859850190579891, \"Left\": 0.12708377838134766, \"Top\": 0.8771912455558777}, \"Polygon\": [{\"X\": 0.12708377838134766, \"Y\": 0.8771912455558777}, {\"X\": 0.21372339129447937, \"Y\": 0.8771912455558777}, {\"X\": 0.21372339129447937, \"Y\": 0.8900511264801025}, {\"X\": 0.12708377838134766, \"Y\": 0.8900511264801025}]}, \"Id\": \"4474ae74-b985-44bf-9f48-54cce0906d53\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.858642578125, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04075222089886665, \"Height\": 0.010174640454351902, \"Left\": 0.23185192048549652, \"Top\": 0.8781830072402954}, \"Polygon\": [{\"X\": 0.23185192048549652, \"Y\": 0.8781830072402954}, {\"X\": 0.2726041376590729, \"Y\": 0.8781830072402954}, {\"X\": 0.2726041376590729, \"Y\": 0.8883576393127441}, {\"X\": 0.23185192048549652, \"Y\": 0.8883576393127441}]}, \"Id\": \"57fce11e-88d9-468d-85c3-59234b7af0dc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72150421142578, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06692174822092056, \"Height\": 0.01038500014692545, \"Left\": 0.27683284878730774, \"Top\": 0.8779886960983276}, \"Polygon\": [{\"X\": 0.27683284878730774, \"Y\": 0.8779886960983276}, {\"X\": 0.3437545895576477, \"Y\": 0.8779886960983276}, {\"X\": 0.3437545895576477, \"Y\": 0.8883736729621887}, {\"X\": 0.27683284878730774, \"Y\": 0.8883736729621887}]}, \"Id\": \"56424528-3506-4f7a-8614-d497ea545ef4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.50411987304688, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005829670000821352, \"Height\": 0.0022914300207048655, \"Left\": 0.35146743059158325, \"Top\": 0.8831180930137634}, \"Polygon\": [{\"X\": 0.35146743059158325, \"Y\": 0.8831180930137634}, {\"X\": 0.3572970926761627, \"Y\": 0.8831180930137634}, {\"X\": 0.3572970926761627, \"Y\": 0.8854095339775085}, {\"X\": 0.35146743059158325, \"Y\": 0.8854095339775085}]}, \"Id\": \"138b8e4b-f6a9-4f50-9279-777017066b73\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67337036132812, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0594063401222229, \"Height\": 0.010505080223083496, \"Left\": 0.3613155782222748, \"Top\": 0.8779329657554626}, \"Polygon\": [{\"X\": 0.3613155782222748, \"Y\": 0.8779329657554626}, {\"X\": 0.4207219183444977, \"Y\": 0.8779329657554626}, {\"X\": 0.4207219183444977, \"Y\": 0.8884380459785461}, {\"X\": 0.3613155782222748, \"Y\": 0.8884380459785461}]}, \"Id\": \"c3cb1404-0363-45c4-888b-3ca7e3b54cf8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.64840698242188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005624319892376661, \"Height\": 0.0029162599239498377, \"Left\": 0.4243897497653961, \"Top\": 0.8829154372215271}, \"Polygon\": [{\"X\": 0.4243897497653961, \"Y\": 0.8829154372215271}, {\"X\": 0.43001407384872437, \"Y\": 0.8829154372215271}, {\"X\": 0.43001407384872437, \"Y\": 0.8858317136764526}, {\"X\": 0.4243897497653961, \"Y\": 0.8858317136764526}]}, \"Id\": \"adcb5b47-50e8-4a8b-9c2e-2a719b9abcd8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.94537353515625, \"Text\": \"6407949623\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09112150222063065, \"Height\": 0.010551939718425274, \"Left\": 0.43336978554725647, \"Top\": 0.8779987096786499}, \"Polygon\": [{\"X\": 0.43336978554725647, \"Y\": 0.8779987096786499}, {\"X\": 0.5244913101196289, \"Y\": 0.8779987096786499}, {\"X\": 0.5244913101196289, \"Y\": 0.8885506391525269}, {\"X\": 0.43336978554725647, \"Y\": 0.8885506391525269}]}, \"Id\": \"47c0925d-b8f0-4e29-b5c6-d0388affd346\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4354019165039, \"Text\": \"-67\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02388974092900753, \"Height\": 0.00995614007115364, \"Left\": 0.7535699605941772, \"Top\": 0.8783676624298096}, \"Polygon\": [{\"X\": 0.7535699605941772, \"Y\": 0.8783676624298096}, {\"X\": 0.7774596810340881, \"Y\": 0.8783676624298096}, {\"X\": 0.7774596810340881, \"Y\": 0.8883237838745117}, {\"X\": 0.7535699605941772, \"Y\": 0.8883237838745117}]}, \"Id\": \"e452f002-ea69-481a-a179-778de1d245fd\", \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.98026275634766, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6713262796401978, \"Height\": 0.8018535375595093, \"Left\": 0.11657922714948654, \"Top\": 0.09138093143701553}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.09138093143701553}, {\"X\": 0.7879055142402649, \"Y\": 0.09138093143701553}, {\"X\": 0.7879055142402649, \"Y\": 0.8932344317436218}, {\"X\": 0.11657922714948654, \"Y\": 0.8932344317436218}]}, \"Id\": \"a9191a66-0d32-4d36-8fd6-58e6917f4ea6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"73ea2c5e-b8fc-4a5b-9049-b6d55bc02d53\", \"8f6f12c6-8ca0-4802-8e8e-0df0c36ff58a\", \"e18d04fe-378b-4e2c-8707-092ba433ba80\", \"2ec47c88-acbd-4964-958b-fdcc718c47a7\", \"49fbd8ca-5069-4f50-b82f-9b3aa571d6b7\", \"0dfb24ef-1802-4568-a46a-2d788152dd4f\", \"a042e784-b934-40b3-9596-0be177eec7e3\", \"033cd010-f565-4acd-934f-c8c4114dd61c\", \"d6b57be5-906e-434b-8edb-6a5b51bf2b31\", \"2e4eb94a-e369-419f-bc94-2aff33f02396\", \"b72b961a-92e3-43dc-9929-f3bcd90ec904\", \"75584ba4-db20-48fb-b7fd-d55210c021a0\", \"a3efab1f-eabe-4619-bb22-9beddaf726ea\", \"2f38987d-200f-462f-a414-c7ed7113c239\", \"676a1b7d-9aba-433e-8aec-dc022554940f\", \"41e4e46b-9548-4ea6-ad0f-6f49b64d6fd2\", \"445613b1-42d7-4055-b9ab-6e13609eb9f8\", \"b43fb1e7-e702-4b16-8b75-4b71083cd581\", \"9ea94397-2dbb-4413-b22e-0a4ee9cc6941\", \"09ce6650-bddd-422e-99d2-e17fc98e73ec\", \"a6ceea5c-403a-4998-a1a3-02398b9fca9d\", \"b1ec04ba-fa36-4200-bbdf-05bbe2a7b663\", \"1254aaaf-fc25-42a4-8790-329cefde9f26\", \"25a30184-91ce-43ec-b10b-07dd3039eb53\", \"3ae09446-b254-4b79-8c46-5ce26d49c5fc\", \"aae7522f-082d-4dca-b59c-fb6f848352c6\", \"d721b0e4-440e-43e5-b988-8fc7f12ff681\", \"8aa27ee4-4cd6-4313-b361-fcf975fce24d\", \"499940c4-d64f-423c-85c7-01b7fa33062e\", \"fd377faa-d26b-437c-8fe9-86ef991fe1dd\", \"0d278e18-b8ed-4e6c-8f38-c8b0c9d1a5d9\", \"c75c561d-3fdf-4450-850a-e722f4c7c885\", \"5bbb72b0-7b06-46fb-bef3-6f24a0446877\", \"1e95273c-b556-4b97-b391-5dd04777a1fb\", \"8895965e-c9fb-4079-bc89-779718780a99\", \"1202e291-b650-462e-840c-b4276fe93d28\", \"b0d90c41-64fa-4d11-ac1b-85afb246813b\", \"b7a28e1b-22ce-4533-8649-dc1574df5dc5\", \"a01c9eeb-afb7-45b4-8d08-a03f294d1d64\", \"de7edde4-f0d3-40a4-9063-1e733530e81f\", \"d2804ffc-1ec6-4ebf-a5ed-ff8281ece3ff\", \"44cc56b4-d57f-428f-8c7d-d900c7833096\", \"05378c94-8546-468b-a943-dc0f65a3fa78\", \"00e673d3-d594-43f1-b0dc-6208fdfc4dbc\", \"64998446-d294-4fb7-94e6-d1c772492b37\", \"a05cfc4d-f171-4a00-a9ca-09b738cdedf5\", \"6121194c-c636-4f3d-a334-7bd2be8af318\", \"7adeac0e-409c-44a7-b030-a48e11be2d97\", \"afc9c4ab-53c7-4d57-a51b-142d1e9c144c\", \"8d22bd92-bb68-4309-9165-d0db502b1b57\", \"2da9f62f-b6c6-4dd7-a672-6c7adfaf6af2\", \"1a5c8a9b-7339-45f4-ae31-7df3155cbee1\", \"2f9b8d4f-820c-41bd-9bba-5cec9660edab\", \"0ba0bc49-f74d-46e9-84ba-0d747dedb73a\", \"22f183de-d4ca-48c2-9c27-c0f2bc8d4719\", \"ad668306-9906-4ae7-a7a6-9cbebd4912be\", \"de9418fe-e47d-4ca6-b48e-e0d839265a47\", \"5e43bbb7-f981-491d-92e2-6dced7e5f1ad\", \"bcbf52f3-8635-422d-943d-a37a3c111298\", \"e235da1e-3577-4d4b-b4a4-3051614239c8\", \"2924a5b0-a930-45a5-b1a5-b16a6866d676\", \"bb657c86-e849-422b-a665-4d3e4f1e3fd4\", \"405012a7-b828-4cf7-b6b3-3da338891de1\", \"4b1dff5a-285e-4b2b-903f-ca19390ffe91\", \"10962d31-d07c-4f78-bb4f-7310010be89c\", \"fbc05f01-58bf-4673-8238-a9d7a3b2cf04\", \"6611d50a-dbdd-4ea5-b5c8-110ecc7ae39c\", \"7454a357-2a92-4d36-82b4-828b865f3e11\", \"82a3918f-836a-49c9-86e8-8947553a411a\", \"5acfe483-9f83-4948-89ce-05e260da812d\", \"b1be15b7-d0c1-4a8a-9877-1626152dca09\", \"5d2c041a-5488-480c-9b7f-36a49c1510cc\", \"db12cab8-7f58-4014-84ea-d49256302575\", \"6bd239ec-0e20-4702-909f-eda787965386\", \"9f8f567b-637b-48d3-9574-b8661b93b87c\", \"8dd07c3e-7edd-4b00-9321-8f56a7d88cf2\", \"843dc612-83f3-4e8d-9313-053630932625\", \"b40dbcce-39e3-4e47-8f4b-34753cd88064\", \"a93d4106-9261-40be-8276-65e079b25bda\", \"94de5a22-7457-4acd-922b-fec03f9500f9\", \"6139aba2-ace3-4856-ae8b-18a1396d27f1\", \"e1f7578c-04d4-407c-8e67-25bff7e4f3c8\", \"6ac396e7-b866-438d-a9f9-6634b72e0e3c\", \"589ba2fc-b935-414d-b792-64c5d2f467b7\", \"6fead57a-b9d7-40cb-921f-43ec26ce1031\", \"a6d1183e-6ec1-4d0c-a4d2-e797f21d9897\", \"36331c6c-a3ed-49db-8e04-adf5d42f541d\", \"87b87da4-8c9d-4a6d-9381-1ce12e53dee1\", \"1a0ddcbc-28a9-4d3a-9b34-a01dd131f492\", \"b4b5ead0-9258-4fd0-a27c-62894736c3d4\", \"66a585a3-96e4-4a41-82a9-0502d4152985\", \"eafe6758-e187-4245-8449-dcc7acf7362d\", \"0a12f338-a013-485f-a9bd-3a04775df6c5\", \"e84d8b99-d1f2-44ca-a4f1-659ba9129eb7\", \"41263d6f-3323-44a2-953a-d105eb4bb929\", \"52d0e188-47f7-4e1e-86e1-3fb0aa8efa4f\", \"558e1c65-15ae-4a8c-bacf-8f666de8bf05\", \"cabf90b6-41d0-44f1-9cd7-d1ac3b75b258\", \"21238379-18b0-442c-8d7e-cbe27ba75848\", \"f935dfaf-7284-4ef1-84d9-35126516859e\", \"67bdc218-3c3c-4681-99f1-16c7b0bdd7b8\", \"09c11058-632f-4469-bdbd-74eb62792d03\", \"3181ec7d-42a3-4bfc-beaf-1102abcceec4\", \"0628d48a-5c6b-4056-ac0c-ea7f53b5dbfd\", \"5b8bb296-92da-49fe-855a-7b059f9894ff\", \"0a0a30c9-3054-4dc8-815a-85cd51560336\", \"cbcd63ef-c835-4d6d-8ef7-868c65d80a30\", \"68078b42-5b77-47b4-8e76-f6cbce4990de\", \"54e7a2e9-ebe8-46ed-92ce-fcf2123f465a\", \"94e31e01-3989-4eee-ad7b-bea032a6da9e\", \"64f2bec2-0e71-49be-bf04-85afb890a4e0\", \"3be05c13-e746-48a3-8c4d-afa021435f82\", \"e9c211c8-146c-4377-9a88-772e65963890\", \"a5ca5cc1-b053-4416-acbb-0a7dd65c4b04\", \"c51038db-e2e1-4102-982a-9b66bec1b745\", \"88b34f98-3af8-49e8-9cea-0780220992c8\", \"32e80829-cb68-420a-9972-9e293b66b882\", \"fd09e023-efcc-43e3-a8a6-580ef00b2753\", \"ec628dde-54a8-4de0-95bb-f60f44a44a48\", \"b06096aa-d0ee-4e23-84b5-8d8024a5e6de\", \"dfee76e0-8b38-475a-a30e-766c1a6b27f3\", \"57d910aa-efa5-4e0a-bd8c-1726117a2951\", \"0fa89c8c-07eb-43de-be60-8b772c30c518\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.37332916259766, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229095429182053, \"Left\": 0.11657922714948654, \"Top\": 0.09138093143701553}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.09138093143701553}, {\"X\": 0.22097207605838776, \"Y\": 0.09138093143701553}, {\"X\": 0.22097207605838776, \"Y\": 0.11061002314090729}, {\"X\": 0.11657922714948654, \"Y\": 0.11061002314090729}]}, \"Id\": \"73ea2c5e-b8fc-4a5b-9049-b6d55bc02d53\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c3d662e-613d-4239-bbf0-ad95f0baca3c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.08721160888672, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229095429182053, \"Left\": 0.22097207605838776, \"Top\": 0.09138093143701553}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.09138093143701553}, {\"X\": 0.5743017792701721, \"Y\": 0.09138093143701553}, {\"X\": 0.5743017792701721, \"Y\": 0.11061003059148788}, {\"X\": 0.22097207605838776, \"Y\": 0.11061002314090729}]}, \"Id\": \"8f6f12c6-8ca0-4802-8e8e-0df0c36ff58a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ca297e15-3957-495b-b594-d01de7689502\", \"57c08f62-219c-425c-96f0-57aa9bb4321e\", \"e2f984a3-9bcf-4573-b617-4cef47d56a95\", \"729aa744-1e73-49e9-9812-3e0ed2252f99\", \"c2da366b-d1cf-48fd-a24a-c32aa467476c\", \"f4a69915-2480-4e11-9b27-59f670dfb7c3\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.36947631835938, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229095429182053, \"Left\": 0.5743017196655273, \"Top\": 0.09138093143701553}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.09138093143701553}, {\"X\": 0.7879055142402649, \"Y\": 0.09138093143701553}, {\"X\": 0.7879055142402649, \"Y\": 0.11061003059148788}, {\"X\": 0.5743017196655273, \"Y\": 0.11061003059148788}]}, \"Id\": \"e18d04fe-378b-4e2c-8707-092ba433ba80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d68f393c-61dd-4e29-95b2-42961740cf29\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.56497955322266, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.0192291047424078, \"Left\": 0.11657922714948654, \"Top\": 0.11061002314090729}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.11061002314090729}, {\"X\": 0.22097207605838776, \"Y\": 0.11061002314090729}, {\"X\": 0.22097207605838776, \"Y\": 0.12983912229537964}, {\"X\": 0.11657922714948654, \"Y\": 0.12983912229537964}]}, \"Id\": \"2ec47c88-acbd-4964-958b-fdcc718c47a7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"137f4c1f-f7a7-4e1b-bf47-e44b15d0eba2\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.12026977539062, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.0192291047424078, \"Left\": 0.22097207605838776, \"Top\": 0.11061002314090729}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.11061002314090729}, {\"X\": 0.5743017792701721, \"Y\": 0.11061002314090729}, {\"X\": 0.5743017792701721, \"Y\": 0.12983912229537964}, {\"X\": 0.22097207605838776, \"Y\": 0.12983912229537964}]}, \"Id\": \"49fbd8ca-5069-4f50-b82f-9b3aa571d6b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce0e824a-ddf0-411b-b7c8-7096f7b3758a\", \"2ab6d0a0-dc0a-4c44-ae88-e6d13672b44c\", \"1e392780-4678-4366-87d8-c124a8d0c755\", \"390d74d5-c835-4c76-8e89-16b6d88580ab\", \"b1cf40f5-c831-4369-a9b3-758b772ddd48\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.03661346435547, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.0192291047424078, \"Left\": 0.5743017196655273, \"Top\": 0.11061002314090729}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.11061002314090729}, {\"X\": 0.7879055142402649, \"Y\": 0.11061002314090729}, {\"X\": 0.7879055142402649, \"Y\": 0.12983912229537964}, {\"X\": 0.5743017196655273, \"Y\": 0.12983912229537964}]}, \"Id\": \"0dfb24ef-1802-4568-a46a-2d788152dd4f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8278c57d-2698-4bec-ba1b-5b5ad5d19d09\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.23103332519531, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.12983913719654083}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.12983913719654083}, {\"X\": 0.22097207605838776, \"Y\": 0.12983913719654083}, {\"X\": 0.22097207605838776, \"Y\": 0.15099115669727325}, {\"X\": 0.11657922714948654, \"Y\": 0.15099115669727325}]}, \"Id\": \"a042e784-b934-40b3-9596-0be177eec7e3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc5ed506-674d-48eb-a1ab-85163f99b637\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.0292739868164, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.12983913719654083}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.12983913719654083}, {\"X\": 0.5743017792701721, \"Y\": 0.12983913719654083}, {\"X\": 0.5743017792701721, \"Y\": 0.15099115669727325}, {\"X\": 0.22097207605838776, \"Y\": 0.15099115669727325}]}, \"Id\": \"033cd010-f565-4acd-934f-c8c4114dd61c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b8fef0-ef94-44c7-a481-9f6377e9840e\", \"c5526604-43b7-4ecc-b6f1-2721c7b350c2\", \"8df5ddc1-3110-41fc-9664-68464ac83229\", \"8c40fb87-bb54-4793-9704-3916129a73b8\", \"1afd13b8-af9d-45b4-be85-51d95460c94d\", \"066f88b1-57f7-49bd-a4fe-465667bc8a88\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.94136047363281, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.12983913719654083}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.12983913719654083}, {\"X\": 0.7879055142402649, \"Y\": 0.12983913719654083}, {\"X\": 0.7879055142402649, \"Y\": 0.15099115669727325}, {\"X\": 0.5743017196655273, \"Y\": 0.15099115669727325}]}, \"Id\": \"d6b57be5-906e-434b-8edb-6a5b51bf2b31\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11d081fb-c23d-473a-adbf-65712a8d91ec\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.27362823486328, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.017306193709373474, \"Left\": 0.11657922714948654, \"Top\": 0.15099115669727325}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.15099115669727325}, {\"X\": 0.22097207605838776, \"Y\": 0.15099115669727325}, {\"X\": 0.22097207605838776, \"Y\": 0.16829735040664673}, {\"X\": 0.11657922714948654, \"Y\": 0.16829735040664673}]}, \"Id\": \"2e4eb94a-e369-419f-bc94-2aff33f02396\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"18497438-ebc4-4a5f-8fb8-f7d0ab642a31\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.58102416992188, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.017306193709373474, \"Left\": 0.22097207605838776, \"Top\": 0.15099115669727325}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.15099115669727325}, {\"X\": 0.5743017792701721, \"Y\": 0.15099115669727325}, {\"X\": 0.5743017792701721, \"Y\": 0.16829735040664673}, {\"X\": 0.22097207605838776, \"Y\": 0.16829735040664673}]}, \"Id\": \"b72b961a-92e3-43dc-9929-f3bcd90ec904\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"37020c43-5e37-49ae-aac5-0a3d592c1bdd\", \"5f798911-e2da-451b-9d21-fc553e4c78f8\", \"31842c02-0e38-4efa-a62f-3af7839f64c9\", \"bb8f846c-904b-46f3-8b2b-12c939bfefe7\", \"558906f0-a512-4713-bc14-93087e9a9ce1\", \"273e95ea-3856-43c8-80aa-c5439146f79d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.59366607666016, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.017306193709373474, \"Left\": 0.5743017196655273, \"Top\": 0.15099115669727325}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.15099115669727325}, {\"X\": 0.7879055142402649, \"Y\": 0.15099115669727325}, {\"X\": 0.7879055142402649, \"Y\": 0.16829735040664673}, {\"X\": 0.5743017196655273, \"Y\": 0.16829735040664673}]}, \"Id\": \"75584ba4-db20-48fb-b7fd-d55210c021a0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53f6c35e-4d06-47b4-9bd5-cb0294777f3a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.67772674560547, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.02115199714899063, \"Left\": 0.11657922714948654, \"Top\": 0.16829733550548553}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.16829733550548553}, {\"X\": 0.22097207605838776, \"Y\": 0.16829733550548553}, {\"X\": 0.22097207605838776, \"Y\": 0.18944932520389557}, {\"X\": 0.11657922714948654, \"Y\": 0.18944932520389557}]}, \"Id\": \"a3efab1f-eabe-4619-bb22-9beddaf726ea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4d05e4a-e85f-4e17-abb8-ab206772772a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.20378875732422, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.02115199714899063, \"Left\": 0.22097207605838776, \"Top\": 0.16829733550548553}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.16829733550548553}, {\"X\": 0.5743017792701721, \"Y\": 0.16829733550548553}, {\"X\": 0.5743017792701721, \"Y\": 0.18944934010505676}, {\"X\": 0.22097207605838776, \"Y\": 0.18944932520389557}]}, \"Id\": \"2f38987d-200f-462f-a414-c7ed7113c239\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2252e21e-3d86-46f1-a87c-af63cbc0a79d\", \"60ae7a79-0210-4725-b0dc-ef260902b2b5\", \"8967bd84-39b1-4a54-b837-a7a1fa211b95\", \"c9efb97a-3015-4567-a868-79a58cbe87fd\", \"5fca0b1c-f4f9-4cdd-ad42-8b4cddf643c6\", \"e6d5a8de-0b6e-4da3-bdd3-b8ec4174c7dc\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.66078186035156, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.02115199714899063, \"Left\": 0.5743017196655273, \"Top\": 0.16829733550548553}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.16829733550548553}, {\"X\": 0.7879055142402649, \"Y\": 0.16829733550548553}, {\"X\": 0.7879055142402649, \"Y\": 0.18944934010505676}, {\"X\": 0.5743017196655273, \"Y\": 0.18944934010505676}]}, \"Id\": \"676a1b7d-9aba-433e-8aec-dc022554940f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"43df75cf-05cd-4487-b372-02b4b4313c62\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.03738403320312, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922912523150444, \"Left\": 0.11657922714948654, \"Top\": 0.18944934010505676}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.18944934010505676}, {\"X\": 0.22097207605838776, \"Y\": 0.18944934010505676}, {\"X\": 0.22097207605838776, \"Y\": 0.2086784690618515}, {\"X\": 0.11657922714948654, \"Y\": 0.2086784690618515}]}, \"Id\": \"41e4e46b-9548-4ea6-ad0f-6f49b64d6fd2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"250c989a-d96e-499d-b273-10df1212c425\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.35723876953125, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922912523150444, \"Left\": 0.22097207605838776, \"Top\": 0.18944934010505676}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.18944934010505676}, {\"X\": 0.5743017792701721, \"Y\": 0.18944934010505676}, {\"X\": 0.5743017792701721, \"Y\": 0.2086784690618515}, {\"X\": 0.22097207605838776, \"Y\": 0.2086784690618515}]}, \"Id\": \"445613b1-42d7-4055-b9ab-6e13609eb9f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38b2bb32-aaa4-493a-89ca-a80608e58b6b\", \"fc736da3-e150-44f6-9a1b-e7188bf94a54\", \"2c2df598-710b-462f-a504-86f42dcc7c48\", \"720f06fa-e46c-4db5-b854-9d95a09cf311\", \"99ce5dda-48f5-4c28-a1e2-69a544ab223d\", \"a30b7774-38d2-423e-aa62-928d9495f67a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.84808349609375, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922912523150444, \"Left\": 0.5743017196655273, \"Top\": 0.18944934010505676}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.18944934010505676}, {\"X\": 0.7879055142402649, \"Y\": 0.18944934010505676}, {\"X\": 0.7879055142402649, \"Y\": 0.2086784690618515}, {\"X\": 0.5743017196655273, \"Y\": 0.2086784690618515}]}, \"Id\": \"b43fb1e7-e702-4b16-8b75-4b71083cd581\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d29312e-5131-4f51-baf9-cd2d0aca5831\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.52494812011719, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.2086784690618515}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.2086784690618515}, {\"X\": 0.22097207605838776, \"Y\": 0.2086784690618515}, {\"X\": 0.22097207605838776, \"Y\": 0.22790755331516266}, {\"X\": 0.11657922714948654, \"Y\": 0.22790755331516266}]}, \"Id\": \"9ea94397-2dbb-4413-b22e-0a4ee9cc6941\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b420917b-be00-42da-9ef5-01e61a2740c3\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.57874298095703, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.2086784690618515}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.2086784690618515}, {\"X\": 0.5743017792701721, \"Y\": 0.2086784690618515}, {\"X\": 0.5743017792701721, \"Y\": 0.22790755331516266}, {\"X\": 0.22097207605838776, \"Y\": 0.22790755331516266}]}, \"Id\": \"09ce6650-bddd-422e-99d2-e17fc98e73ec\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4a7cbcde-d7db-4ffa-b8ee-226c68cbd86d\", \"02b60736-1a09-4d4c-806f-f4b02c377d4a\", \"86b8b664-f84c-4abc-b617-720ae6b30243\", \"6d5bbeec-83c7-4bc1-bbfb-6a24458f3cd2\", \"bf9283ca-103a-49a2-a932-61ee5a01e29e\", \"da7af845-c505-41d7-b561-4fc179231c33\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.34163665771484, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.2086784690618515}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.2086784690618515}, {\"X\": 0.7879055142402649, \"Y\": 0.2086784690618515}, {\"X\": 0.7879055142402649, \"Y\": 0.22790755331516266}, {\"X\": 0.5743017196655273, \"Y\": 0.22790755331516266}]}, \"Id\": \"a6ceea5c-403a-4998-a1a3-02398b9fca9d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"031096ed-9d1e-43ac-a37b-f7cfaa03d9b6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.4024429321289, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.22790755331516266}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.22790755331516266}, {\"X\": 0.22097207605838776, \"Y\": 0.22790755331516266}, {\"X\": 0.22097207605838776, \"Y\": 0.24905957281589508}, {\"X\": 0.11657922714948654, \"Y\": 0.24905957281589508}]}, \"Id\": \"b1ec04ba-fa36-4200-bbdf-05bbe2a7b663\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e2d3b72b-f1a9-4f4e-892d-acca227420be\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.7160873413086, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.22790755331516266}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.22790755331516266}, {\"X\": 0.5743017792701721, \"Y\": 0.22790755331516266}, {\"X\": 0.5743017792701721, \"Y\": 0.24905957281589508}, {\"X\": 0.22097207605838776, \"Y\": 0.24905957281589508}]}, \"Id\": \"1254aaaf-fc25-42a4-8790-329cefde9f26\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b83830bd-ade9-44f2-abdc-2e15963d67cd\", \"c28ea622-ecc6-4b7d-8e0a-8a6d76f5214b\", \"3292e707-0e45-422f-929a-07a8ea5672a4\", \"38557a9b-480e-4783-9d82-3c661b42a6ba\", \"32feab68-3bbb-4f9a-9323-65b25a8555d4\", \"e6f712fa-d0dd-4b72-a02b-9a6e6cf8c484\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.09716033935547, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.22790755331516266}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.22790755331516266}, {\"X\": 0.7879055142402649, \"Y\": 0.22790755331516266}, {\"X\": 0.7879055142402649, \"Y\": 0.24905957281589508}, {\"X\": 0.5743017196655273, \"Y\": 0.24905957281589508}]}, \"Id\": \"25a30184-91ce-43ec-b10b-07dd3039eb53\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f15947d-46d7-464f-9243-a40954c75b3a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.67731475830078, \"RowIndex\": 9, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.017306193709373474, \"Left\": 0.11657922714948654, \"Top\": 0.24905957281589508}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.24905957281589508}, {\"X\": 0.22097207605838776, \"Y\": 0.24905957281589508}, {\"X\": 0.22097207605838776, \"Y\": 0.26636576652526855}, {\"X\": 0.11657922714948654, \"Y\": 0.26636576652526855}]}, \"Id\": \"3ae09446-b254-4b79-8c46-5ce26d49c5fc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d0799e20-c9e0-49f1-b9b1-f060fc0149bc\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.4522705078125, \"RowIndex\": 9, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.017306193709373474, \"Left\": 0.22097207605838776, \"Top\": 0.24905957281589508}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.24905957281589508}, {\"X\": 0.5743017792701721, \"Y\": 0.24905957281589508}, {\"X\": 0.5743017792701721, \"Y\": 0.26636576652526855}, {\"X\": 0.22097207605838776, \"Y\": 0.26636576652526855}]}, \"Id\": \"aae7522f-082d-4dca-b59c-fb6f848352c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"398f0ba2-cbdd-438d-ac96-12d996f76e25\", \"5ff3a3fe-d8a1-4988-ab76-585d74aaf642\", \"e4971d65-0b4e-44a8-8b3f-ad347e0ef339\", \"10c72e8c-ba39-4cc3-8e4e-c2dfc1428605\", \"5dc1be96-efbb-4171-b28b-256e89f31ec1\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.38442993164062, \"RowIndex\": 9, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.017306193709373474, \"Left\": 0.5743017196655273, \"Top\": 0.24905957281589508}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.24905957281589508}, {\"X\": 0.7879055142402649, \"Y\": 0.24905957281589508}, {\"X\": 0.7879055142402649, \"Y\": 0.26636576652526855}, {\"X\": 0.5743017196655273, \"Y\": 0.26636576652526855}]}, \"Id\": \"d721b0e4-440e-43e5-b988-8fc7f12ff681\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e7606e5-797e-439f-99d1-ed59f3230b07\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.38027954101562, \"RowIndex\": 10, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.26636576652526855}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.26636576652526855}, {\"X\": 0.22097207605838776, \"Y\": 0.26636576652526855}, {\"X\": 0.22097207605838776, \"Y\": 0.287517786026001}, {\"X\": 0.11657922714948654, \"Y\": 0.287517786026001}]}, \"Id\": \"8aa27ee4-4cd6-4313-b361-fcf975fce24d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3595232-c601-4023-b273-549934b60f7b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.06853485107422, \"RowIndex\": 10, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.26636576652526855}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.26636576652526855}, {\"X\": 0.5743017792701721, \"Y\": 0.26636576652526855}, {\"X\": 0.5743017792701721, \"Y\": 0.287517786026001}, {\"X\": 0.22097207605838776, \"Y\": 0.287517786026001}]}, \"Id\": \"499940c4-d64f-423c-85c7-01b7fa33062e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6912f09b-1694-4fd8-8dbd-f899b030826a\", \"bf70a170-0751-4790-bd35-066de20b74ef\", \"0de708b5-14ed-4643-a8c4-5065718b1372\", \"c0b3ed65-9522-40d8-a699-20e16e4186b5\", \"f4dc3b8d-895f-4dfd-9220-449f4aec88bc\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.8779296875, \"RowIndex\": 10, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.26636576652526855}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.26636576652526855}, {\"X\": 0.7879055142402649, \"Y\": 0.26636576652526855}, {\"X\": 0.7879055142402649, \"Y\": 0.287517786026001}, {\"X\": 0.5743017196655273, \"Y\": 0.287517786026001}]}, \"Id\": \"fd377faa-d26b-437c-8fe9-86ef991fe1dd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4bcef6c2-b025-42e4-9543-01040c1ddeb6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.9503402709961, \"RowIndex\": 11, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.287517786026001}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.287517786026001}, {\"X\": 0.22097207605838776, \"Y\": 0.287517786026001}, {\"X\": 0.22097207605838776, \"Y\": 0.30674687027931213}, {\"X\": 0.11657922714948654, \"Y\": 0.30674687027931213}]}, \"Id\": \"0d278e18-b8ed-4e6c-8f38-c8b0c9d1a5d9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f5b87d2-bb0d-4fe5-86df-792d3e203506\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.04651641845703, \"RowIndex\": 11, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.287517786026001}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.287517786026001}, {\"X\": 0.5743017792701721, \"Y\": 0.287517786026001}, {\"X\": 0.5743017792701721, \"Y\": 0.30674687027931213}, {\"X\": 0.22097207605838776, \"Y\": 0.30674687027931213}]}, \"Id\": \"c75c561d-3fdf-4450-850a-e722f4c7c885\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0cbc3576-cefd-4c63-82bb-b3e4571a99fe\", \"fcddcec4-e1e2-4610-93e8-887cea0e3629\", \"5dbf79a9-e747-43bb-b41f-d85be4c52b95\", \"cf3b59ef-e6b1-436d-86e2-00f348c4d6d9\", \"7513c2c9-cb35-4b86-af3e-c3bae7b9b18e\", \"5ebf3956-043c-43a4-b8b4-9deaa3ab0ca0\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.41150665283203, \"RowIndex\": 11, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.287517786026001}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.287517786026001}, {\"X\": 0.7879055142402649, \"Y\": 0.287517786026001}, {\"X\": 0.7879055142402649, \"Y\": 0.30674687027931213}, {\"X\": 0.5743017196655273, \"Y\": 0.30674687027931213}]}, \"Id\": \"5bbb72b0-7b06-46fb-bef3-6f24a0446877\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ea80001-1cbd-4cd5-9bca-b7a2488c0409\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.11746215820312, \"RowIndex\": 12, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922912523150444, \"Left\": 0.11657922714948654, \"Top\": 0.30674687027931213}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.30674687027931213}, {\"X\": 0.22097207605838776, \"Y\": 0.30674687027931213}, {\"X\": 0.22097207605838776, \"Y\": 0.3259759843349457}, {\"X\": 0.11657922714948654, \"Y\": 0.3259759843349457}]}, \"Id\": \"1e95273c-b556-4b97-b391-5dd04777a1fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b117715-3170-43d7-930b-634e1850bb20\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.94406127929688, \"RowIndex\": 12, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922912523150444, \"Left\": 0.22097207605838776, \"Top\": 0.30674687027931213}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.30674687027931213}, {\"X\": 0.5743017792701721, \"Y\": 0.30674687027931213}, {\"X\": 0.5743017792701721, \"Y\": 0.3259759843349457}, {\"X\": 0.22097207605838776, \"Y\": 0.3259759843349457}]}, \"Id\": \"8895965e-c9fb-4079-bc89-779718780a99\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c8d968e-ab37-4692-bece-ba59c479812a\", \"92e1b7a9-935b-4181-829b-c3d1c48ad30c\", \"42fd4cd6-9db7-4566-a930-269f48315ebb\", \"443080c3-57ab-47d0-a796-3e514f743dcb\", \"e96d2433-2227-4c54-80f4-8898f3f6b57c\", \"717cdd80-7760-451a-9384-dae8ab5c34f6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.44091796875, \"RowIndex\": 12, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922912523150444, \"Left\": 0.5743017196655273, \"Top\": 0.30674687027931213}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.30674687027931213}, {\"X\": 0.7879055142402649, \"Y\": 0.30674687027931213}, {\"X\": 0.7879055142402649, \"Y\": 0.3259759843349457}, {\"X\": 0.5743017196655273, \"Y\": 0.3259759843349457}]}, \"Id\": \"1202e291-b650-462e-840c-b4276fe93d28\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bcf5b93e-217c-4b48-b7f7-1be3c661afa5\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.51731872558594, \"RowIndex\": 13, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.3259759843349457}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.3259759843349457}, {\"X\": 0.22097207605838776, \"Y\": 0.3259759843349457}, {\"X\": 0.22097207605838776, \"Y\": 0.34520506858825684}, {\"X\": 0.11657922714948654, \"Y\": 0.34520506858825684}]}, \"Id\": \"b0d90c41-64fa-4d11-ac1b-85afb246813b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a75b0cfe-ad2c-4604-aa74-774db040d262\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.95849609375, \"RowIndex\": 13, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.3259759843349457}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.3259759843349457}, {\"X\": 0.5743017792701721, \"Y\": 0.3259759843349457}, {\"X\": 0.5743017792701721, \"Y\": 0.34520506858825684}, {\"X\": 0.22097207605838776, \"Y\": 0.34520506858825684}]}, \"Id\": \"b7a28e1b-22ce-4533-8649-dc1574df5dc5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"887ca6e9-d553-4dd1-9811-a935a4234449\", \"e30db1ba-7f53-4316-800a-92d235cd9f76\", \"3da07e04-8bf1-407b-9e78-fbc9b97dec17\", \"f94f62e8-7872-4650-8b7a-1f80f691aab3\", \"d83b8217-5fca-4f85-b4fe-6d11ab653a28\", \"e2e1b9a3-4218-4bcf-9fa6-6fe7d844f629\", \"01582cd2-bad6-4bd3-84a9-9bdb08f1e1eb\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.55714416503906, \"RowIndex\": 13, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.3259759843349457}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.3259759843349457}, {\"X\": 0.7879055142402649, \"Y\": 0.3259759843349457}, {\"X\": 0.7879055142402649, \"Y\": 0.34520506858825684}, {\"X\": 0.5743017196655273, \"Y\": 0.34520506858825684}]}, \"Id\": \"a01c9eeb-afb7-45b4-8d08-a03f294d1d64\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1650b9f9-10de-4c9c-a16e-85c546ca9b05\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.43282318115234, \"RowIndex\": 14, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.34520506858825684}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.34520506858825684}, {\"X\": 0.22097207605838776, \"Y\": 0.34520506858825684}, {\"X\": 0.22097207605838776, \"Y\": 0.364434152841568}, {\"X\": 0.11657922714948654, \"Y\": 0.364434152841568}]}, \"Id\": \"de7edde4-f0d3-40a4-9063-1e733530e81f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb6309cf-5149-43f2-b96d-b5f54328882c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.48597717285156, \"RowIndex\": 14, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.34520506858825684}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.34520506858825684}, {\"X\": 0.5743017792701721, \"Y\": 0.34520506858825684}, {\"X\": 0.5743017792701721, \"Y\": 0.364434152841568}, {\"X\": 0.22097207605838776, \"Y\": 0.364434152841568}]}, \"Id\": \"d2804ffc-1ec6-4ebf-a5ed-ff8281ece3ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28f21da1-09f0-4c7f-8784-f883bf0520ce\", \"b690e26c-425f-41c1-a4b2-e8b5848dc5a4\", \"501ee0c4-465b-41ad-89c3-e8960466dc70\", \"44790b31-fc61-47ad-88e0-f5f2f8c7bdd2\", \"81089346-f04b-45b5-8833-5d720cb2a3ad\", \"a346c755-087f-4fbf-ab3e-3b51d88ce542\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.51070404052734, \"RowIndex\": 14, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.34520506858825684}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.34520506858825684}, {\"X\": 0.7879055142402649, \"Y\": 0.34520506858825684}, {\"X\": 0.7879055142402649, \"Y\": 0.364434152841568}, {\"X\": 0.5743017196655273, \"Y\": 0.364434152841568}]}, \"Id\": \"44cc56b4-d57f-428f-8c7d-d900c7833096\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af472af6-37da-442c-9163-94cdae21c7d2\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.49488830566406, \"RowIndex\": 15, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.364434152841568}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.364434152841568}, {\"X\": 0.22097207605838776, \"Y\": 0.364434152841568}, {\"X\": 0.22097207605838776, \"Y\": 0.3855861723423004}, {\"X\": 0.11657922714948654, \"Y\": 0.3855861723423004}]}, \"Id\": \"05378c94-8546-468b-a943-dc0f65a3fa78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"142dc170-0684-423c-921d-90d58166f659\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.08566284179688, \"RowIndex\": 15, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.364434152841568}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.364434152841568}, {\"X\": 0.5743017792701721, \"Y\": 0.364434152841568}, {\"X\": 0.5743017792701721, \"Y\": 0.3855861723423004}, {\"X\": 0.22097207605838776, \"Y\": 0.3855861723423004}]}, \"Id\": \"00e673d3-d594-43f1-b0dc-6208fdfc4dbc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dee09a52-b473-41a9-9c40-c1e8e6155035\", \"607ac0dd-24d1-42ab-9850-c500f9be677b\", \"72d9ec17-30e2-4195-a981-cad4ed9aafcf\", \"500a5825-d8f0-468d-9074-90955c1ceee8\", \"cb1623dc-3998-42dd-a918-01c21b1f11f4\", \"41bbe81e-62eb-46fb-b809-6866aa1b04c4\", \"8f4527fb-0165-4b34-ba52-fd4ce74448a6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.8263931274414, \"RowIndex\": 15, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.364434152841568}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.364434152841568}, {\"X\": 0.7879055142402649, \"Y\": 0.364434152841568}, {\"X\": 0.7879055142402649, \"Y\": 0.3855861723423004}, {\"X\": 0.5743017196655273, \"Y\": 0.3855861723423004}]}, \"Id\": \"64998446-d294-4fb7-94e6-d1c772492b37\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d501102c-b7dd-489a-adfd-6edb58b58d87\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.35820770263672, \"RowIndex\": 16, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.3855861723423004}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.3855861723423004}, {\"X\": 0.22097207605838776, \"Y\": 0.3855861723423004}, {\"X\": 0.22097207605838776, \"Y\": 0.4048152565956116}, {\"X\": 0.11657922714948654, \"Y\": 0.4048152565956116}]}, \"Id\": \"a05cfc4d-f171-4a00-a9ca-09b738cdedf5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d2f8ca8e-4614-4326-b5ab-d27d502a2363\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.3364028930664, \"RowIndex\": 16, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.3855861723423004}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.3855861723423004}, {\"X\": 0.5743017792701721, \"Y\": 0.3855861723423004}, {\"X\": 0.5743017792701721, \"Y\": 0.4048152565956116}, {\"X\": 0.22097207605838776, \"Y\": 0.4048152565956116}]}, \"Id\": \"6121194c-c636-4f3d-a334-7bd2be8af318\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e12d23-ef53-4849-a490-fdd1aeaef335\", \"82eb686c-29af-4c9f-acab-35722d6fd28b\", \"9f1590ef-3311-4030-bc5f-6f78726ec0d5\", \"93b00b95-cbf9-40e8-99bf-dee28309d129\", \"d2cbc75b-c80a-43ae-81f8-81c6de687520\", \"72312ad8-3ff1-4a2b-8718-0331d7975323\", \"9d3b0623-94f2-4a53-b596-215e7ada5a50\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.97737884521484, \"RowIndex\": 16, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.3855861723423004}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.3855861723423004}, {\"X\": 0.7879055142402649, \"Y\": 0.3855861723423004}, {\"X\": 0.7879055142402649, \"Y\": 0.4048152565956116}, {\"X\": 0.5743017196655273, \"Y\": 0.4048152565956116}]}, \"Id\": \"7adeac0e-409c-44a7-b030-a48e11be2d97\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"259b7cea-3abb-47d8-9905-8fad6f3a44bb\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.92342376708984, \"RowIndex\": 17, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922912523150444, \"Left\": 0.11657922714948654, \"Top\": 0.4048152565956116}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.4048152565956116}, {\"X\": 0.22097207605838776, \"Y\": 0.4048152565956116}, {\"X\": 0.22097207605838776, \"Y\": 0.4240443706512451}, {\"X\": 0.11657922714948654, \"Y\": 0.4240443706512451}]}, \"Id\": \"afc9c4ab-53c7-4d57-a51b-142d1e9c144c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ecbf250c-cdaa-49bf-bf90-c82a80957d7d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.59037780761719, \"RowIndex\": 17, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922912523150444, \"Left\": 0.22097207605838776, \"Top\": 0.4048152565956116}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.4048152565956116}, {\"X\": 0.5743017792701721, \"Y\": 0.4048152565956116}, {\"X\": 0.5743017792701721, \"Y\": 0.4240443706512451}, {\"X\": 0.22097207605838776, \"Y\": 0.4240443706512451}]}, \"Id\": \"8d22bd92-bb68-4309-9165-d0db502b1b57\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f50dec79-5dfa-486b-9ff4-ca874c418653\", \"7b7dfa7f-69e8-46c4-a88c-f98365955fff\", \"510d3acf-3d4e-4f44-aaa5-0bfb3f04a66f\", \"c29e35e4-5045-4eb8-9747-5bdf3aaeba6a\", \"dd268315-0b6b-4d8c-bbea-67820aa12429\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.36119079589844, \"RowIndex\": 17, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922912523150444, \"Left\": 0.5743017196655273, \"Top\": 0.4048152565956116}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.4048152565956116}, {\"X\": 0.7879055142402649, \"Y\": 0.4048152565956116}, {\"X\": 0.7879055142402649, \"Y\": 0.4240443706512451}, {\"X\": 0.5743017196655273, \"Y\": 0.4240443706512451}]}, \"Id\": \"2da9f62f-b6c6-4dd7-a672-6c7adfaf6af2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"827bb06f-4ed7-4c98-b2aa-92d59220305b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.91255950927734, \"RowIndex\": 18, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.4240444004535675}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.4240444004535675}, {\"X\": 0.22097207605838776, \"Y\": 0.4240444004535675}, {\"X\": 0.22097207605838776, \"Y\": 0.44327348470687866}, {\"X\": 0.11657922714948654, \"Y\": 0.44327348470687866}]}, \"Id\": \"1a5c8a9b-7339-45f4-ae31-7df3155cbee1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5ae81324-553d-4bd9-a90b-45a5ab4fbaf1\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.70982360839844, \"RowIndex\": 18, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.4240444004535675}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.4240444004535675}, {\"X\": 0.5743017792701721, \"Y\": 0.4240444004535675}, {\"X\": 0.5743017792701721, \"Y\": 0.44327348470687866}, {\"X\": 0.22097207605838776, \"Y\": 0.44327348470687866}]}, \"Id\": \"2f9b8d4f-820c-41bd-9bba-5cec9660edab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9adcf7d5-0961-48ca-9bdc-bdb8d0a6fbac\", \"c31dffe9-237a-423d-9473-649ab618e211\", \"1ce7116b-ad2d-4baf-b81e-c1cda463f389\", \"42529ffa-d8f5-4f9c-a615-f8cb957fdd01\", \"21781c66-a650-47a9-a711-d36967b03975\", \"2fc7bcae-471d-4070-be6d-e9d47520751e\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.4486312866211, \"RowIndex\": 18, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.4240444004535675}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.4240444004535675}, {\"X\": 0.7879055142402649, \"Y\": 0.4240444004535675}, {\"X\": 0.7879055142402649, \"Y\": 0.44327348470687866}, {\"X\": 0.5743017196655273, \"Y\": 0.44327348470687866}]}, \"Id\": \"0ba0bc49-f74d-46e9-84ba-0d747dedb73a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2cc1d792-4346-482f-ab72-7557a057bc2b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.24382781982422, \"RowIndex\": 19, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.44327348470687866}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.44327348470687866}, {\"X\": 0.22097207605838776, \"Y\": 0.44327348470687866}, {\"X\": 0.22097207605838776, \"Y\": 0.4644255042076111}, {\"X\": 0.11657922714948654, \"Y\": 0.4644255042076111}]}, \"Id\": \"22f183de-d4ca-48c2-9c27-c0f2bc8d4719\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb3a3e01-75b1-4671-b607-a7d63ef1c271\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.75236511230469, \"RowIndex\": 19, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.44327348470687866}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.44327348470687866}, {\"X\": 0.5743017792701721, \"Y\": 0.44327348470687866}, {\"X\": 0.5743017792701721, \"Y\": 0.4644255042076111}, {\"X\": 0.22097207605838776, \"Y\": 0.4644255042076111}]}, \"Id\": \"ad668306-9906-4ae7-a7a6-9cbebd4912be\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cefe2e5-f668-4bb3-bd66-bacb38dfdd8e\", \"3e8b51d1-1ded-42c8-9498-8899df7f40ba\", \"745e6ad2-f83d-4cbe-a0d0-7a2a7379e55b\", \"0bebf41a-846f-4116-b9b5-d57d89c32898\", \"b92892a5-a505-4aad-aea1-41e480c97902\", \"b3b6cb49-6b5d-42fc-8bc1-f0507eb9eb3c\", \"06d8c92f-db5b-4f27-8ad0-5317d2d9f73c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.53561401367188, \"RowIndex\": 19, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.44327348470687866}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.44327348470687866}, {\"X\": 0.7879055142402649, \"Y\": 0.44327348470687866}, {\"X\": 0.7879055142402649, \"Y\": 0.4644255042076111}, {\"X\": 0.5743017196655273, \"Y\": 0.4644255042076111}]}, \"Id\": \"de9418fe-e47d-4ca6-b48e-e0d839265a47\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7f370621-67e7-47d0-98e6-a2855dedd4c7\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.66730499267578, \"RowIndex\": 20, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.017306193709373474, \"Left\": 0.11657922714948654, \"Top\": 0.4644255042076111}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.4644255042076111}, {\"X\": 0.22097207605838776, \"Y\": 0.4644255042076111}, {\"X\": 0.22097207605838776, \"Y\": 0.48173171281814575}, {\"X\": 0.11657922714948654, \"Y\": 0.48173168301582336}]}, \"Id\": \"5e43bbb7-f981-491d-92e2-6dced7e5f1ad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"07f2c6cc-c07b-45d7-8011-5957166e69ff\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.70347595214844, \"RowIndex\": 20, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.017306193709373474, \"Left\": 0.22097207605838776, \"Top\": 0.4644255042076111}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.4644255042076111}, {\"X\": 0.5743017792701721, \"Y\": 0.4644255042076111}, {\"X\": 0.5743017792701721, \"Y\": 0.48173168301582336}, {\"X\": 0.22097207605838776, \"Y\": 0.48173171281814575}]}, \"Id\": \"bcbf52f3-8635-422d-943d-a37a3c111298\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc9a60d7-27c8-49d0-9ea4-1506e7aace72\", \"b779a5e7-171d-4356-8301-ba20f84e455c\", \"e8850eb9-5359-42c1-b59b-e2fde1324102\", \"30d2e33c-04be-42b6-b717-77bfee92015a\", \"e1fa7b3e-79e7-4c03-aa6f-cf4bf1760c1e\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.58641815185547, \"RowIndex\": 20, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.017306193709373474, \"Left\": 0.5743017196655273, \"Top\": 0.4644255042076111}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.4644255042076111}, {\"X\": 0.7879055142402649, \"Y\": 0.4644255042076111}, {\"X\": 0.7879055142402649, \"Y\": 0.48173171281814575}, {\"X\": 0.5743017196655273, \"Y\": 0.48173168301582336}]}, \"Id\": \"e235da1e-3577-4d4b-b4a4-3051614239c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"176d1f67-1d53-4728-aa8d-5dbd50920f95\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.59806060791016, \"RowIndex\": 21, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.48173168301582336}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.48173168301582336}, {\"X\": 0.22097207605838776, \"Y\": 0.48173168301582336}, {\"X\": 0.22097207605838776, \"Y\": 0.5028836727142334}, {\"X\": 0.11657922714948654, \"Y\": 0.5028836727142334}]}, \"Id\": \"2924a5b0-a930-45a5-b1a5-b16a6866d676\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40dd97bb-2ac9-412e-875f-03b1f503d700\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.66971588134766, \"RowIndex\": 21, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.48173168301582336}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.48173168301582336}, {\"X\": 0.5743017792701721, \"Y\": 0.48173168301582336}, {\"X\": 0.5743017792701721, \"Y\": 0.5028836727142334}, {\"X\": 0.22097207605838776, \"Y\": 0.5028836727142334}]}, \"Id\": \"bb657c86-e849-422b-a665-4d3e4f1e3fd4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a2453794-2c13-4350-8d7b-a0b0aaf44565\", \"186fbd9f-24ed-4a0d-8dd1-6f4954a989e3\", \"72bf6152-25b0-4d64-a90a-d11d2c73cde2\", \"d1a274a9-6898-4615-880c-0aff67e39c1d\", \"7e21de4b-33b6-430f-8521-57199031b2c9\", \"bd8218b0-9f8b-4509-b719-901fe50bc449\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.3457260131836, \"RowIndex\": 21, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.48173168301582336}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.48173168301582336}, {\"X\": 0.7879055142402649, \"Y\": 0.48173168301582336}, {\"X\": 0.7879055142402649, \"Y\": 0.5028836727142334}, {\"X\": 0.5743017196655273, \"Y\": 0.5028836727142334}]}, \"Id\": \"405012a7-b828-4cf7-b6b3-3da338891de1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"07e79a59-4fcc-457a-af3b-85a9b0e6e3c4\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.62228393554688, \"RowIndex\": 22, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922912523150444, \"Left\": 0.11657922714948654, \"Top\": 0.5028837323188782}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.5028837323188782}, {\"X\": 0.22097207605838776, \"Y\": 0.5028837323188782}, {\"X\": 0.22097207605838776, \"Y\": 0.5221128463745117}, {\"X\": 0.11657922714948654, \"Y\": 0.5221128463745117}]}, \"Id\": \"4b1dff5a-285e-4b2b-903f-ca19390ffe91\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e3254d74-7e43-4e06-8a52-540cf7f212bb\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.54928588867188, \"RowIndex\": 22, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922912523150444, \"Left\": 0.22097207605838776, \"Top\": 0.5028837323188782}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.5028837323188782}, {\"X\": 0.5743017792701721, \"Y\": 0.5028837323188782}, {\"X\": 0.5743017792701721, \"Y\": 0.5221128463745117}, {\"X\": 0.22097207605838776, \"Y\": 0.5221128463745117}]}, \"Id\": \"10962d31-d07c-4f78-bb4f-7310010be89c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6bb97aad-97be-4db5-b2c9-23cacaf147c9\", \"a1c1a7ff-e869-42c9-89c7-86c2cbd8f3e6\", \"47b578cd-88b4-44ea-bab4-8dfb2435c9cd\", \"33bfd9cc-5b99-4dfa-b89e-6a2390540a1e\", \"875312ae-e8ae-4036-8064-e291ea0203b6\", \"7f1e233d-85a0-4c61-be45-c385186667a5\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.28154754638672, \"RowIndex\": 22, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922912523150444, \"Left\": 0.5743017196655273, \"Top\": 0.5028837323188782}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.5028837323188782}, {\"X\": 0.7879055142402649, \"Y\": 0.5028837323188782}, {\"X\": 0.7879055142402649, \"Y\": 0.5221128463745117}, {\"X\": 0.5743017196655273, \"Y\": 0.5221128463745117}]}, \"Id\": \"fbc05f01-58bf-4673-8238-a9d7a3b2cf04\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e771b73c-5681-4472-96c9-e752a02a859e\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.43595886230469, \"RowIndex\": 23, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.5221128463745117}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.5221128463745117}, {\"X\": 0.22097207605838776, \"Y\": 0.5221128463745117}, {\"X\": 0.22097207605838776, \"Y\": 0.5413419604301453}, {\"X\": 0.11657922714948654, \"Y\": 0.5413419604301453}]}, \"Id\": \"6611d50a-dbdd-4ea5-b5c8-110ecc7ae39c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7a580507-ba3d-483b-acb3-060b5568d574\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.35680389404297, \"RowIndex\": 23, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.5221128463745117}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.5221128463745117}, {\"X\": 0.5743017792701721, \"Y\": 0.5221128463745117}, {\"X\": 0.5743017792701721, \"Y\": 0.5413419604301453}, {\"X\": 0.22097207605838776, \"Y\": 0.5413419604301453}]}, \"Id\": \"7454a357-2a92-4d36-82b4-828b865f3e11\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"821f1fb7-bfcf-472a-85c4-d9cc1ca4d287\", \"2d5deebe-dbb1-48e5-b53e-ef6c8e2ec0b8\", \"3d436513-570b-4b2d-ac75-5129d804a885\", \"5a75524d-5366-4145-92b8-2d385582b778\", \"7f682620-95bc-4074-897d-c3f4be90b240\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.0993423461914, \"RowIndex\": 23, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.5221128463745117}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.5221128463745117}, {\"X\": 0.7879055142402649, \"Y\": 0.5221128463745117}, {\"X\": 0.7879055142402649, \"Y\": 0.5413419604301453}, {\"X\": 0.5743017196655273, \"Y\": 0.5413419604301453}]}, \"Id\": \"82a3918f-836a-49c9-86e8-8947553a411a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9db23b0f-7232-4d8a-899b-fa544bf06c3d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.69137573242188, \"RowIndex\": 24, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.5413419008255005}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.5413419008255005}, {\"X\": 0.22097207605838776, \"Y\": 0.5413419008255005}, {\"X\": 0.22097207605838776, \"Y\": 0.560571014881134}, {\"X\": 0.11657922714948654, \"Y\": 0.560571014881134}]}, \"Id\": \"5acfe483-9f83-4948-89ce-05e260da812d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2826d380-2194-4888-aa1a-31a3a18eb30a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.41297149658203, \"RowIndex\": 24, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.5413419008255005}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.5413419008255005}, {\"X\": 0.5743017792701721, \"Y\": 0.5413419008255005}, {\"X\": 0.5743017792701721, \"Y\": 0.560571014881134}, {\"X\": 0.22097207605838776, \"Y\": 0.560571014881134}]}, \"Id\": \"b1be15b7-d0c1-4a8a-9877-1626152dca09\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3b5e7c42-7f5e-4ed2-988f-8538f3186732\", \"5bc32872-f9a4-4ee4-bf7e-d1287f1a7ccd\", \"0a667237-e329-4eef-8860-569dab326df8\", \"267284fe-57fd-40fd-b534-e24393af330d\", \"c7024856-5fa7-4a52-ae9f-e92a4a882ef6\", \"42c3bc1a-fa3e-4186-a1e0-e9877320fba3\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.00640869140625, \"RowIndex\": 24, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.5413419008255005}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.5413419008255005}, {\"X\": 0.7879055142402649, \"Y\": 0.5413419008255005}, {\"X\": 0.7879055142402649, \"Y\": 0.560571014881134}, {\"X\": 0.5743017196655273, \"Y\": 0.560571014881134}]}, \"Id\": \"5d2c041a-5488-480c-9b7f-36a49c1510cc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dac4ea27-2ad4-4ae9-82cd-c40160febecc\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.98973846435547, \"RowIndex\": 25, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.560571014881134}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.560571014881134}, {\"X\": 0.22097207605838776, \"Y\": 0.560571014881134}, {\"X\": 0.22097207605838776, \"Y\": 0.5798001289367676}, {\"X\": 0.11657922714948654, \"Y\": 0.5798001289367676}]}, \"Id\": \"db12cab8-7f58-4014-84ea-d49256302575\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9d07fd4f-11c9-48c8-b554-80c676c2a12b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.12525177001953, \"RowIndex\": 25, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.560571014881134}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.560571014881134}, {\"X\": 0.5743017792701721, \"Y\": 0.560571014881134}, {\"X\": 0.5743017792701721, \"Y\": 0.5798001289367676}, {\"X\": 0.22097207605838776, \"Y\": 0.5798001289367676}]}, \"Id\": \"6bd239ec-0e20-4702-909f-eda787965386\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f6ffad1-d6ad-4997-ac62-c229f9a7d1ad\", \"9fb646c9-2019-4db7-81e0-4d456a92f7de\", \"118fd3d2-4fb6-495e-97bb-2cf16c690662\", \"9e48995e-fcf3-4833-966b-5851abc3b516\", \"d3147072-4c08-4973-83bc-8baded94fe5f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.48212432861328, \"RowIndex\": 25, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.560571014881134}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.560571014881134}, {\"X\": 0.7879055142402649, \"Y\": 0.560571014881134}, {\"X\": 0.7879055142402649, \"Y\": 0.5798001289367676}, {\"X\": 0.5743017196655273, \"Y\": 0.5798001289367676}]}, \"Id\": \"9f8f567b-637b-48d3-9574-b8661b93b87c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39be6a38-9108-415b-9c28-91e6a70e7da6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.2698974609375, \"RowIndex\": 26, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.5798000693321228}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.5798000693321228}, {\"X\": 0.22097207605838776, \"Y\": 0.5798000693321228}, {\"X\": 0.22097207605838776, \"Y\": 0.6009520888328552}, {\"X\": 0.11657922714948654, \"Y\": 0.6009520888328552}]}, \"Id\": \"8dd07c3e-7edd-4b00-9321-8f56a7d88cf2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"defc18b0-d16a-439c-abf1-9d5bb21c90ba\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.09120178222656, \"RowIndex\": 26, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.5798000693321228}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.5798000693321228}, {\"X\": 0.5743017792701721, \"Y\": 0.5798000693321228}, {\"X\": 0.5743017792701721, \"Y\": 0.6009520888328552}, {\"X\": 0.22097207605838776, \"Y\": 0.6009520888328552}]}, \"Id\": \"843dc612-83f3-4e8d-9313-053630932625\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"941983b1-a9dd-49f6-92f2-9c8b12291466\", \"30bd97dd-87a6-42ee-97cd-97d0427d5149\", \"aaa526ae-45f0-4bf7-a9d2-256af0680f17\", \"b6fbce4e-86c2-4f5e-87a2-9c597b28a3a3\", \"79f6fd54-0e51-4998-97e0-697c688295c4\", \"d54efd47-c440-485b-a2f1-178bb7e78a3a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.78425598144531, \"RowIndex\": 26, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.5798000693321228}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.5798000693321228}, {\"X\": 0.7879055142402649, \"Y\": 0.5798000693321228}, {\"X\": 0.7879055142402649, \"Y\": 0.6009520888328552}, {\"X\": 0.5743017196655273, \"Y\": 0.6009520888328552}]}, \"Id\": \"b40dbcce-39e3-4e47-8f4b-34753cd88064\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad33497c-68fc-49e4-80e1-d1b8a4f9222d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.50370788574219, \"RowIndex\": 27, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922912523150444, \"Left\": 0.11657922714948654, \"Top\": 0.6009520888328552}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.6009520888328552}, {\"X\": 0.22097207605838776, \"Y\": 0.6009520888328552}, {\"X\": 0.22097207605838776, \"Y\": 0.6201812028884888}, {\"X\": 0.11657922714948654, \"Y\": 0.6201812028884888}]}, \"Id\": \"a93d4106-9261-40be-8276-65e079b25bda\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce70774b-5478-47b8-85a8-d0f5fd65fa17\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.04403686523438, \"RowIndex\": 27, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922912523150444, \"Left\": 0.22097207605838776, \"Top\": 0.6009520888328552}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.6009520888328552}, {\"X\": 0.5743017792701721, \"Y\": 0.6009520888328552}, {\"X\": 0.5743017792701721, \"Y\": 0.6201812028884888}, {\"X\": 0.22097207605838776, \"Y\": 0.6201812028884888}]}, \"Id\": \"94de5a22-7457-4acd-922b-fec03f9500f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"36d12bff-b173-4c99-b637-46e174ed5819\", \"3f60b2f8-17d5-421f-8fa8-d811b39e08e1\", \"bd74c8b8-4643-4396-a3ae-802d98a24627\", \"feddc7f9-864c-4d19-a4f6-1577a31d7329\", \"7070a7ca-435b-4f5f-bcd3-2ce3dc7f413c\", \"76619f9e-62bc-400e-bbed-19ca2c4db134\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.9345932006836, \"RowIndex\": 27, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922912523150444, \"Left\": 0.5743017196655273, \"Top\": 0.6009520888328552}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.6009520888328552}, {\"X\": 0.7879055142402649, \"Y\": 0.6009520888328552}, {\"X\": 0.7879055142402649, \"Y\": 0.6201812028884888}, {\"X\": 0.5743017196655273, \"Y\": 0.6201812028884888}]}, \"Id\": \"6139aba2-ace3-4856-ae8b-18a1396d27f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fb4022e-220b-498e-8e07-7f5ce456b46a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.94314575195312, \"RowIndex\": 28, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922912523150444, \"Left\": 0.11657922714948654, \"Top\": 0.6201812624931335}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.6201812624931335}, {\"X\": 0.22097207605838776, \"Y\": 0.6201812624931335}, {\"X\": 0.22097207605838776, \"Y\": 0.6394103765487671}, {\"X\": 0.11657922714948654, \"Y\": 0.6394103765487671}]}, \"Id\": \"e1f7578c-04d4-407c-8e67-25bff7e4f3c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cfc48292-8240-40d8-8030-2c024cbefa1c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.50479125976562, \"RowIndex\": 28, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922912523150444, \"Left\": 0.22097207605838776, \"Top\": 0.6201812624931335}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.6201812624931335}, {\"X\": 0.5743017792701721, \"Y\": 0.6201812624931335}, {\"X\": 0.5743017792701721, \"Y\": 0.6394103765487671}, {\"X\": 0.22097207605838776, \"Y\": 0.6394103765487671}]}, \"Id\": \"6ac396e7-b866-438d-a9f9-6634b72e0e3c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab9b5c28-7a15-4500-8466-3a66c574e491\", \"30c9c3cd-d861-4455-adf4-5ef8d2b5c09d\", \"9d426a00-a615-48b0-aead-750adb52f7d1\", \"91a3f6cd-0983-4180-914c-60b31bc567ee\", \"3922c178-1939-4718-9369-5e2a3f542ed6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.32694244384766, \"RowIndex\": 28, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922912523150444, \"Left\": 0.5743017196655273, \"Top\": 0.6201812624931335}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.6201812624931335}, {\"X\": 0.7879055142402649, \"Y\": 0.6201812624931335}, {\"X\": 0.7879055142402649, \"Y\": 0.6394103765487671}, {\"X\": 0.5743017196655273, \"Y\": 0.6394103765487671}]}, \"Id\": \"589ba2fc-b935-414d-b792-64c5d2f467b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39fd2e80-51ee-46fd-bba2-120946dd1b27\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.12004852294922, \"RowIndex\": 29, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.6394103765487671}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.6394103765487671}, {\"X\": 0.22097207605838776, \"Y\": 0.6394103765487671}, {\"X\": 0.22097207605838776, \"Y\": 0.6586394906044006}, {\"X\": 0.11657922714948654, \"Y\": 0.6586394906044006}]}, \"Id\": \"6fead57a-b9d7-40cb-921f-43ec26ce1031\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"927a8511-41ce-4af1-aec9-ddc56de13554\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.0064468383789, \"RowIndex\": 29, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.6394103765487671}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.6394103765487671}, {\"X\": 0.5743017792701721, \"Y\": 0.6394103765487671}, {\"X\": 0.5743017792701721, \"Y\": 0.6586394906044006}, {\"X\": 0.22097207605838776, \"Y\": 0.6586394906044006}]}, \"Id\": \"a6d1183e-6ec1-4d0c-a4d2-e797f21d9897\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0547fd7d-b036-41e3-8607-b559c0534ec9\", \"02079d12-65dc-4caf-ac09-1f36e9c95ad9\", \"1a21d0c7-71dc-4f61-9363-736396944763\", \"522c3ea9-08bc-40d2-8041-eca5ad3be403\", \"d880bf3d-9061-4fe4-b898-a92854032793\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.73408508300781, \"RowIndex\": 29, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.6394103765487671}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.6394103765487671}, {\"X\": 0.7879055142402649, \"Y\": 0.6394103765487671}, {\"X\": 0.7879055142402649, \"Y\": 0.6586394906044006}, {\"X\": 0.5743017196655273, \"Y\": 0.6586394906044006}]}, \"Id\": \"36331c6c-a3ed-49db-8e04-adf5d42f541d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f01666b-e13c-427e-aade-ac84a8f6df8e\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.53317260742188, \"RowIndex\": 30, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.6586394309997559}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.6586394309997559}, {\"X\": 0.22097207605838776, \"Y\": 0.6586394309997559}, {\"X\": 0.22097207605838776, \"Y\": 0.6797914505004883}, {\"X\": 0.11657922714948654, \"Y\": 0.6797914505004883}]}, \"Id\": \"87b87da4-8c9d-4a6d-9381-1ce12e53dee1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4838f111-ca39-4134-b740-70b44eed314f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.1279525756836, \"RowIndex\": 30, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.6586394309997559}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.6586394309997559}, {\"X\": 0.5743017792701721, \"Y\": 0.6586394309997559}, {\"X\": 0.5743017792701721, \"Y\": 0.6797914505004883}, {\"X\": 0.22097207605838776, \"Y\": 0.6797914505004883}]}, \"Id\": \"1a0ddcbc-28a9-4d3a-9b34-a01dd131f492\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3a17534c-48e8-48c4-bc21-8b398e241046\", \"8d4f2a11-a77e-43c8-885e-915e98bc422b\", \"5fe190cf-1592-4b84-9509-b34e7eb72b7d\", \"c00fbfa1-2390-40a7-87f9-93915208205c\", \"88c921fc-0fc7-46c2-b317-db5d643dd5da\", \"8daa16e9-8e19-4219-8636-2b89238405f5\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.71179962158203, \"RowIndex\": 30, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.6586394309997559}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.6586394309997559}, {\"X\": 0.7879055142402649, \"Y\": 0.6586394309997559}, {\"X\": 0.7879055142402649, \"Y\": 0.6797914505004883}, {\"X\": 0.5743017196655273, \"Y\": 0.6797914505004883}]}, \"Id\": \"b4b5ead0-9258-4fd0-a27c-62894736c3d4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8939658a-0751-4151-8eb6-b6d50264220b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.4163818359375, \"RowIndex\": 31, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.017306193709373474, \"Left\": 0.11657922714948654, \"Top\": 0.6797914505004883}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.6797914505004883}, {\"X\": 0.22097207605838776, \"Y\": 0.6797914505004883}, {\"X\": 0.22097206115722656, \"Y\": 0.697097659111023}, {\"X\": 0.11657922714948654, \"Y\": 0.697097659111023}]}, \"Id\": \"66a585a3-96e4-4a41-82a9-0502d4152985\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06b3e7b6-9d1a-4258-9559-b4df04b4adab\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.71055603027344, \"RowIndex\": 31, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.017306193709373474, \"Left\": 0.22097207605838776, \"Top\": 0.6797914505004883}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.6797914505004883}, {\"X\": 0.5743017792701721, \"Y\": 0.6797914505004883}, {\"X\": 0.5743017792701721, \"Y\": 0.697097659111023}, {\"X\": 0.22097207605838776, \"Y\": 0.697097659111023}]}, \"Id\": \"eafe6758-e187-4245-8449-dcc7acf7362d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"48b5bbed-2535-47b1-95ea-c63456943c79\", \"345cc827-b79c-46b2-bb99-7b0cb6db135c\", \"87b9b733-dd9d-4dbb-b9dd-97eb28923095\", \"d6046359-ea80-4635-96c1-330a5cd51220\", \"7402f354-18d2-4d03-9907-2a59392a0d5c\", \"3367acaf-3be8-44bf-9b15-369fc9745309\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.44002532958984, \"RowIndex\": 31, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.017306193709373474, \"Left\": 0.5743017196655273, \"Top\": 0.6797914505004883}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.6797914505004883}, {\"X\": 0.7879055142402649, \"Y\": 0.6797914505004883}, {\"X\": 0.7879055142402649, \"Y\": 0.697097659111023}, {\"X\": 0.5743017196655273, \"Y\": 0.697097659111023}]}, \"Id\": \"0a12f338-a013-485f-a9bd-3a04775df6c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83477cfc-dc96-45c6-9106-bbc16f647a5d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.46981048583984, \"RowIndex\": 32, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.697097659111023}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.697097659111023}, {\"X\": 0.22097206115722656, \"Y\": 0.697097659111023}, {\"X\": 0.22097206115722656, \"Y\": 0.7182496786117554}, {\"X\": 0.11657922714948654, \"Y\": 0.7182496786117554}]}, \"Id\": \"e84d8b99-d1f2-44ca-a4f1-659ba9129eb7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9be9afc3-7ffc-4bf8-aff3-6c89b5545d5d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.4542465209961, \"RowIndex\": 32, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.697097659111023}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.697097659111023}, {\"X\": 0.5743017792701721, \"Y\": 0.697097659111023}, {\"X\": 0.5743017792701721, \"Y\": 0.7182496786117554}, {\"X\": 0.22097207605838776, \"Y\": 0.7182496786117554}]}, \"Id\": \"41263d6f-3323-44a2-953a-d105eb4bb929\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74991fc9-62a5-42f1-8fcf-d07416c6a8a1\", \"a2fb4bc6-f7ec-45d8-848a-4329b26e2add\", \"c43dbfda-3edd-45d8-a313-9bdbe384d7f0\", \"f34d6fb3-df41-4c02-a18c-45b036e91938\", \"9355efc4-8dfd-4cc5-bfa9-4bf8586d60e6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.89762878417969, \"RowIndex\": 32, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.697097659111023}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.697097659111023}, {\"X\": 0.7879055142402649, \"Y\": 0.697097659111023}, {\"X\": 0.7879055142402649, \"Y\": 0.7182496786117554}, {\"X\": 0.5743017196655273, \"Y\": 0.7182496786117554}]}, \"Id\": \"52d0e188-47f7-4e1e-86e1-3fb0aa8efa4f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"78737934-f6cd-4135-8298-c6559531220d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.37899017333984, \"RowIndex\": 33, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.7182496786117554}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.7182496786117554}, {\"X\": 0.22097206115722656, \"Y\": 0.7182496786117554}, {\"X\": 0.22097206115722656, \"Y\": 0.7374787926673889}, {\"X\": 0.11657922714948654, \"Y\": 0.7374787926673889}]}, \"Id\": \"558e1c65-15ae-4a8c-bacf-8f666de8bf05\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"38f31aad-0baa-4c3f-ac63-2b0f23f17e1c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.40288543701172, \"RowIndex\": 33, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.7182496786117554}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.7182496786117554}, {\"X\": 0.5743017792701721, \"Y\": 0.7182496786117554}, {\"X\": 0.5743017792701721, \"Y\": 0.7374787926673889}, {\"X\": 0.22097207605838776, \"Y\": 0.7374787926673889}]}, \"Id\": \"cabf90b6-41d0-44f1-9cd7-d1ac3b75b258\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54b12a70-4dcc-4858-a360-a3620c7317a4\", \"1d67551a-06e8-424f-bae6-025451ca7298\", \"860c9f23-0566-4ad3-8291-1f2f99a8457a\", \"a9faa6e8-6f47-449c-b7f5-7ef2ecf75867\", \"3293c11f-08c1-43a7-a45e-e03397b39b7f\", \"5e9bccea-c91e-4675-800d-98c6ed482783\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.90179443359375, \"RowIndex\": 33, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.7182496786117554}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.7182496786117554}, {\"X\": 0.7879055142402649, \"Y\": 0.7182496786117554}, {\"X\": 0.7879055142402649, \"Y\": 0.7374787926673889}, {\"X\": 0.5743017196655273, \"Y\": 0.7374787926673889}]}, \"Id\": \"21238379-18b0-442c-8d7e-cbe27ba75848\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"089f74e6-72e5-498c-80e5-344c00a57493\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.4920654296875, \"RowIndex\": 34, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.7374787330627441}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.7374787330627441}, {\"X\": 0.22097206115722656, \"Y\": 0.7374787330627441}, {\"X\": 0.22097206115722656, \"Y\": 0.7567078471183777}, {\"X\": 0.11657922714948654, \"Y\": 0.7567078471183777}]}, \"Id\": \"f935dfaf-7284-4ef1-84d9-35126516859e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"02a3dbab-cc3a-409d-9c94-89816d29c33c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.37653350830078, \"RowIndex\": 34, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.7374787330627441}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.7374787330627441}, {\"X\": 0.5743017792701721, \"Y\": 0.7374787330627441}, {\"X\": 0.5743017792701721, \"Y\": 0.7567078471183777}, {\"X\": 0.22097207605838776, \"Y\": 0.7567078471183777}]}, \"Id\": \"67bdc218-3c3c-4681-99f1-16c7b0bdd7b8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6abf6063-6c65-4c43-b945-697eb3ce8690\", \"fe0403c9-a7b8-4df3-955e-f3ed8f0d2829\", \"53d9bce7-0ecd-4de4-9ed2-44ec79b18806\", \"c4275901-193f-40e1-ab9a-55c80057954c\", \"cf387f76-abb2-4440-a1ea-97eae3b9e328\", \"d3b08063-4f61-47a6-9803-393d5076be51\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.05753326416016, \"RowIndex\": 34, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.7374787330627441}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.7374787330627441}, {\"X\": 0.7879055142402649, \"Y\": 0.7374787330627441}, {\"X\": 0.7879055142402649, \"Y\": 0.7567078471183777}, {\"X\": 0.5743017196655273, \"Y\": 0.7567078471183777}]}, \"Id\": \"09c11058-632f-4469-bdbd-74eb62792d03\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5ff3453-06a2-46b5-a8b3-e9de9b8b7c75\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.50521087646484, \"RowIndex\": 35, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.7567078471183777}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.7567078471183777}, {\"X\": 0.22097206115722656, \"Y\": 0.7567078471183777}, {\"X\": 0.22097206115722656, \"Y\": 0.7759369611740112}, {\"X\": 0.11657922714948654, \"Y\": 0.7759369611740112}]}, \"Id\": \"3181ec7d-42a3-4bfc-beaf-1102abcceec4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e54d14c7-046b-46aa-a22d-e90546e2a117\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.76824951171875, \"RowIndex\": 35, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.7567078471183777}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.7567078471183777}, {\"X\": 0.5743017792701721, \"Y\": 0.7567078471183777}, {\"X\": 0.5743017792701721, \"Y\": 0.7759369611740112}, {\"X\": 0.22097207605838776, \"Y\": 0.7759369611740112}]}, \"Id\": \"0628d48a-5c6b-4056-ac0c-ea7f53b5dbfd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"632b8d5b-308c-4c64-9f87-7e7e2c038160\", \"6cddf3c1-b43c-4055-a4cf-fdc7f485b744\", \"9ad8505e-ae50-4b3f-86f3-fbaa19ef34af\", \"dfe8080a-8ab3-4476-a8a9-361dd457c9f9\", \"72af2a39-ac87-4556-b4a9-897a2de45a59\", \"c6a8de1d-8751-4b5e-a9de-87998ca9f456\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.73344421386719, \"RowIndex\": 35, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.7567078471183777}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.7567078471183777}, {\"X\": 0.7879055142402649, \"Y\": 0.7567078471183777}, {\"X\": 0.7879055142402649, \"Y\": 0.7759369611740112}, {\"X\": 0.5743017196655273, \"Y\": 0.7759369611740112}]}, \"Id\": \"5b8bb296-92da-49fe-855a-7b059f9894ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"729fe121-7c16-47eb-b146-f59c50b5c3b6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.85183715820312, \"RowIndex\": 36, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.021152017638087273, \"Left\": 0.11657922714948654, \"Top\": 0.7759369015693665}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.7759369015693665}, {\"X\": 0.22097206115722656, \"Y\": 0.7759369015693665}, {\"X\": 0.22097206115722656, \"Y\": 0.7970889210700989}, {\"X\": 0.11657922714948654, \"Y\": 0.7970889210700989}]}, \"Id\": \"0a0a30c9-3054-4dc8-815a-85cd51560336\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fe2512e-c157-4dd1-8de0-ef13a5adde6d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.921875, \"RowIndex\": 36, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.021152017638087273, \"Left\": 0.22097207605838776, \"Top\": 0.7759369015693665}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.7759369015693665}, {\"X\": 0.5743017792701721, \"Y\": 0.7759369015693665}, {\"X\": 0.5743017792701721, \"Y\": 0.7970889210700989}, {\"X\": 0.22097207605838776, \"Y\": 0.7970889210700989}]}, \"Id\": \"cbcd63ef-c835-4d6d-8ef7-868c65d80a30\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"502179b4-d4cd-450a-8393-2a9090711de6\", \"2e82b351-9c9f-4764-ade1-5ea9c164e309\", \"0b55f599-c2a9-4b79-9e5d-c882e9209156\", \"87a81672-7334-4eda-bd53-e10c136ae69a\", \"22a7f864-50fd-4640-a150-696cf0ec5c9f\", \"c04abcc5-e5f5-40c9-a8b0-c14d1eeff8a4\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.74083709716797, \"RowIndex\": 36, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.021152017638087273, \"Left\": 0.5743017196655273, \"Top\": 0.7759369015693665}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.7759369015693665}, {\"X\": 0.7879055142402649, \"Y\": 0.7759369015693665}, {\"X\": 0.7879055142402649, \"Y\": 0.7970889210700989}, {\"X\": 0.5743017196655273, \"Y\": 0.7970889210700989}]}, \"Id\": \"68078b42-5b77-47b4-8e76-f6cbce4990de\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c564d11d-8247-40ad-be6d-6d8e899bc4af\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.6207275390625, \"RowIndex\": 37, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229166209697723, \"Left\": 0.11657922714948654, \"Top\": 0.7970889210700989}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.7970889210700989}, {\"X\": 0.22097206115722656, \"Y\": 0.7970889210700989}, {\"X\": 0.22097206115722656, \"Y\": 0.8163180947303772}, {\"X\": 0.11657922714948654, \"Y\": 0.8163180947303772}]}, \"Id\": \"54e7a2e9-ebe8-46ed-92ce-fcf2123f465a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"01864cab-ce05-4a86-b904-569f13d2c653\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.52118682861328, \"RowIndex\": 37, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229166209697723, \"Left\": 0.22097207605838776, \"Top\": 0.7970889210700989}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.7970889210700989}, {\"X\": 0.5743017792701721, \"Y\": 0.7970889210700989}, {\"X\": 0.5743017792701721, \"Y\": 0.8163180947303772}, {\"X\": 0.22097207605838776, \"Y\": 0.8163180947303772}]}, \"Id\": \"94e31e01-3989-4eee-ad7b-bea032a6da9e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e306d68-81d5-49d4-b630-a06632a3cc18\", \"489fe99e-545a-4e72-a886-08601abb099f\", \"89508bd6-1327-402c-8c04-3616cb8d9bad\", \"b84811c8-f448-4c90-ad6f-81a92e1a7abb\", \"e684cad8-7a87-4dad-a798-33193eb1f0d9\", \"ca319cf7-ccad-4e7a-adea-84797f1fc849\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.79791259765625, \"RowIndex\": 37, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229166209697723, \"Left\": 0.5743017196655273, \"Top\": 0.7970889210700989}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.7970889210700989}, {\"X\": 0.7879055142402649, \"Y\": 0.7970889210700989}, {\"X\": 0.7879055142402649, \"Y\": 0.8163180947303772}, {\"X\": 0.5743017196655273, \"Y\": 0.8163180947303772}]}, \"Id\": \"64f2bec2-0e71-49be-bf04-85afb890a4e0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"87cf314b-30e7-4a3a-bfac-d6f98ba6569a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.41339874267578, \"RowIndex\": 38, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.019229086115956306, \"Left\": 0.11657922714948654, \"Top\": 0.8163180947303772}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.8163180947303772}, {\"X\": 0.22097206115722656, \"Y\": 0.8163180947303772}, {\"X\": 0.22097206115722656, \"Y\": 0.8355472087860107}, {\"X\": 0.11657922714948654, \"Y\": 0.8355472087860107}]}, \"Id\": \"3be05c13-e746-48a3-8c4d-afa021435f82\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8866af3d-1eb6-4054-8dac-ab7e82ea7328\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.78996276855469, \"RowIndex\": 38, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.019229086115956306, \"Left\": 0.22097207605838776, \"Top\": 0.8163180947303772}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.8163180947303772}, {\"X\": 0.5743017792701721, \"Y\": 0.8163180947303772}, {\"X\": 0.5743017792701721, \"Y\": 0.8355472087860107}, {\"X\": 0.22097207605838776, \"Y\": 0.8355472087860107}]}, \"Id\": \"e9c211c8-146c-4377-9a88-772e65963890\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c950b9a-5c1a-4e58-bdf9-24c71d6b9f12\", \"6a81d318-0397-4f0e-9f4b-1e53271f5e75\", \"9027b09e-318f-46fe-b00d-e34d447a42cb\", \"f44864de-3e86-4437-b33e-e8b377277a73\", \"ef59ba4b-738b-4be6-92c6-a728c33e4038\", \"b22a48d3-d931-4ac0-ba06-782ad9d779fa\", \"8e5e7771-0775-4b17-af8b-2ade53040337\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.43650817871094, \"RowIndex\": 38, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.019229086115956306, \"Left\": 0.5743017196655273, \"Top\": 0.8163180947303772}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.8163180947303772}, {\"X\": 0.7879055142402649, \"Y\": 0.8163180947303772}, {\"X\": 0.7879055142402649, \"Y\": 0.8355472087860107}, {\"X\": 0.5743017196655273, \"Y\": 0.8355472087860107}]}, \"Id\": \"a5ca5cc1-b053-4416-acbb-0a7dd65c4b04\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2b510e37-3adf-40fd-9438-f651635607d7\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.46691131591797, \"RowIndex\": 39, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01922900415956974, \"Left\": 0.11657922714948654, \"Top\": 0.8355472087860107}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.8355472087860107}, {\"X\": 0.22097206115722656, \"Y\": 0.8355472087860107}, {\"X\": 0.22097206115722656, \"Y\": 0.8547762036323547}, {\"X\": 0.11657922714948654, \"Y\": 0.8547762036323547}]}, \"Id\": \"c51038db-e2e1-4102-982a-9b66bec1b745\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1a5c17f8-416d-43c1-b20a-11cc0fb17831\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.62462615966797, \"RowIndex\": 39, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01922900415956974, \"Left\": 0.22097207605838776, \"Top\": 0.8355472087860107}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.8355472087860107}, {\"X\": 0.5743017792701721, \"Y\": 0.8355472087860107}, {\"X\": 0.5743017792701721, \"Y\": 0.8547762036323547}, {\"X\": 0.22097207605838776, \"Y\": 0.8547762036323547}]}, \"Id\": \"88b34f98-3af8-49e8-9cea-0780220992c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d57677e9-05e8-46c1-bc04-56ca734752e9\", \"e0d4eb35-9611-49b1-a790-dedd6af50160\", \"3a43ca01-5f0f-4976-8a5d-109c31b2e819\", \"9fe600c6-dadb-46b0-8df2-d41b8dce5872\", \"0c30e0f7-93f6-4d23-90d3-e9abea5e7886\", \"73f053d6-5986-4eff-86b1-4af5042f7470\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.44737243652344, \"RowIndex\": 39, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01922900415956974, \"Left\": 0.5743017196655273, \"Top\": 0.8355472087860107}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.8355472087860107}, {\"X\": 0.7879055142402649, \"Y\": 0.8355472087860107}, {\"X\": 0.7879055142402649, \"Y\": 0.8547762036323547}, {\"X\": 0.5743017196655273, \"Y\": 0.8547762036323547}]}, \"Id\": \"32e80829-cb68-420a-9972-9e293b66b882\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61bd9958-d3a5-4c28-9d68-be8a7e5ed656\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.55701446533203, \"RowIndex\": 40, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.02115209959447384, \"Left\": 0.11657922714948654, \"Top\": 0.8547762036323547}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.8547762036323547}, {\"X\": 0.22097206115722656, \"Y\": 0.8547762036323547}, {\"X\": 0.22097206115722656, \"Y\": 0.8759282827377319}, {\"X\": 0.11657922714948654, \"Y\": 0.8759282827377319}]}, \"Id\": \"fd09e023-efcc-43e3-a8a6-580ef00b2753\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a45b81b0-5822-46f8-95c6-1e578ac910d5\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.23518371582031, \"RowIndex\": 40, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.02115209959447384, \"Left\": 0.22097207605838776, \"Top\": 0.8547762036323547}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.8547762036323547}, {\"X\": 0.5743017792701721, \"Y\": 0.8547762036323547}, {\"X\": 0.5743017792701721, \"Y\": 0.8759282827377319}, {\"X\": 0.22097207605838776, \"Y\": 0.8759282827377319}]}, \"Id\": \"ec628dde-54a8-4de0-95bb-f60f44a44a48\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"efb7bf0f-3e67-4ff5-a705-99fc979ca0fb\", \"5900fc92-33d1-4d39-aa74-ffdf230e738b\", \"1aec2851-fed5-4525-adff-4718bb349a5e\", \"29ea276d-7954-49f8-baf8-968b85f7c688\", \"8e177f0e-544c-4eb9-aa84-a3a9e6bec702\", \"da6f4eda-1a61-46cd-91ae-73f51027d284\", \"99521b8f-f0bc-466c-819f-8e252f40d60f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.78375244140625, \"RowIndex\": 40, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.02115209959447384, \"Left\": 0.5743017196655273, \"Top\": 0.8547762036323547}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.8547762036323547}, {\"X\": 0.7879055142402649, \"Y\": 0.8547762036323547}, {\"X\": 0.7879055142402649, \"Y\": 0.8759282827377319}, {\"X\": 0.5743017196655273, \"Y\": 0.8759282827377319}]}, \"Id\": \"b06096aa-d0ee-4e23-84b5-8d8024a5e6de\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c8481d8-8a32-45f9-b168-d20947940d4d\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 89.88074493408203, \"RowIndex\": 41, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10439284145832062, \"Height\": 0.01730615273118019, \"Left\": 0.11657922714948654, \"Top\": 0.8759282827377319}, \"Polygon\": [{\"X\": 0.11657922714948654, \"Y\": 0.8759282827377319}, {\"X\": 0.22097206115722656, \"Y\": 0.8759282827377319}, {\"X\": 0.22097206115722656, \"Y\": 0.8932344317436218}, {\"X\": 0.11657922714948654, \"Y\": 0.8932344317436218}]}, \"Id\": \"dfee76e0-8b38-475a-a30e-766c1a6b27f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4474ae74-b985-44bf-9f48-54cce0906d53\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.00733947753906, \"RowIndex\": 41, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35332968831062317, \"Height\": 0.01730615273118019, \"Left\": 0.22097207605838776, \"Top\": 0.8759282827377319}, \"Polygon\": [{\"X\": 0.22097207605838776, \"Y\": 0.8759282827377319}, {\"X\": 0.5743017792701721, \"Y\": 0.8759282827377319}, {\"X\": 0.5743017792701721, \"Y\": 0.8932344317436218}, {\"X\": 0.22097207605838776, \"Y\": 0.8932344317436218}]}, \"Id\": \"57d910aa-efa5-4e0a-bd8c-1726117a2951\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57fce11e-88d9-468d-85c3-59234b7af0dc\", \"56424528-3506-4f7a-8614-d497ea545ef4\", \"138b8e4b-f6a9-4f50-9279-777017066b73\", \"c3cb1404-0363-45c4-888b-3ca7e3b54cf8\", \"adcb5b47-50e8-4a8b-9c2e-2a719b9abcd8\", \"47c0925d-b8f0-4e29-b5c6-d0388affd346\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.86668395996094, \"RowIndex\": 41, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21360377967357635, \"Height\": 0.01730615273118019, \"Left\": 0.5743017196655273, \"Top\": 0.8759282827377319}, \"Polygon\": [{\"X\": 0.5743017196655273, \"Y\": 0.8759282827377319}, {\"X\": 0.7879055142402649, \"Y\": 0.8759282827377319}, {\"X\": 0.7879055142402649, \"Y\": 0.8932344317436218}, {\"X\": 0.5743017196655273, \"Y\": 0.8932344317436218}]}, \"Id\": \"0fa89c8c-07eb-43de-be60-8b772c30c518\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e452f002-ea69-481a-a179-778de1d245fd\"]}], \"Page\": 2}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"e7e9a309-4f54-4d97-8c6f-82c25f3c69b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3614acf0-1780-4a30-88ec-64ad582a7188\", \"a0fd68a4-b87d-45d5-bc9f-b7593c440cda\", \"272e90f7-b853-4164-bc6d-0d9b2f31fb8e\", \"d297da78-72e6-496d-96dc-0f9a2ad411c1\", \"f88a6361-0fab-4d38-99e2-3bace6fca9f8\", \"be0c87f7-102b-4705-8c97-4cbd539c4ded\", \"8a282676-a1c9-4749-8350-5d460442ebc4\", \"66828134-7352-4ced-8302-a1c018f11288\", \"fb6382b6-10c9-4d27-8436-f20e6604dbc5\", \"7addb4f2-955d-4ad4-8b7c-ba9ba688b50e\", \"18d64075-ee67-41b9-9012-5fcca5b7f67c\", \"ee2b1a82-f693-4a94-85ef-70a4a7463ee9\", \"acf59702-5720-41f0-bc91-be77da8e1649\", \"5762d373-b86b-4a9d-b526-912a6c1fe67a\", \"2743d7a6-b11b-4cd4-9403-5ca1c9559a29\", \"880af3ea-87f3-442f-9dc6-a62b5ab0d062\", \"1c483376-200d-400c-9474-5c60543d4997\", \"831a4bae-d0cd-4ceb-9a01-3e92dff87b48\", \"73d4bd28-d2ee-478f-8aa7-2283474ec97c\", \"efb62f8b-431a-4eca-baca-fbea6675236c\", \"518ede7b-1bd4-49a5-9470-a61c1e0b1f00\", \"3ef30f4d-ab76-453b-8f6a-3058de7c9c12\", \"a71f9354-5148-418a-8a51-65bba8283e47\", \"64ee0e5d-e181-4f39-a039-0c6449e6964a\", \"203dca0b-42e9-4edf-bf7b-2326deccd740\", \"2b71664f-bee7-4fa7-8a52-3ef5ac3ddc1d\", \"dfeebe75-c0cb-474c-999a-87c50918326a\", \"35e03511-1729-47b8-a960-5b66263ebb96\", \"23ebd6a3-f14a-4426-b42e-63191f03d2ff\", \"df4846b5-c1e4-4923-b69a-1eeccc42fe73\", \"a0bb404d-c799-40de-b7a2-535d3caf458d\", \"6a0d7738-d943-43f4-a05f-2116142a3437\", \"0f1b24ed-51e7-47ec-97e4-23bf60839d9a\", \"e0368543-c9c3-4616-bd6c-f25e66c859b2\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5810775756836, \"Text\": \"7/23/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07757805287837982, \"Height\": 0.013116635382175446, \"Left\": 0.13576281070709229, \"Top\": 0.09423795342445374}, \"Polygon\": [{\"X\": 0.13576281070709229, \"Y\": 0.09423795342445374}, {\"X\": 0.2133408635854721, \"Y\": 0.09423795342445374}, {\"X\": 0.2133408635854721, \"Y\": 0.10735458135604858}, {\"X\": 0.13576281070709229, \"Y\": 0.10735458135604858}]}, \"Id\": \"3614acf0-1780-4a30-88ec-64ad582a7188\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c8afbe08-abfd-4513-bbbb-310bf9e6a708\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.75210571289062, \"Text\": \"Food Purchase - Starbucks - 6528599341\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2952422797679901, \"Height\": 0.010721675120294094, \"Left\": 0.2319912612438202, \"Top\": 0.09483995288610458}, \"Polygon\": [{\"X\": 0.2319912612438202, \"Y\": 0.09483995288610458}, {\"X\": 0.5272335410118103, \"Y\": 0.09483995288610458}, {\"X\": 0.5272335410118103, \"Y\": 0.10556162148714066}, {\"X\": 0.2319912612438202, \"Y\": 0.10556162148714066}]}, \"Id\": \"a0fd68a4-b87d-45d5-bc9f-b7593c440cda\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dd98bf8c-683a-4411-b8de-a5b5e5b7ce4b\", \"efb39e69-772c-4702-b0c4-3891573da98b\", \"7647fe67-713f-4f65-b1e5-472e5fec5b9f\", \"2fe54222-5059-4bb8-b1d8-a0291c211894\", \"4554d0f3-a55c-4695-83e5-40d8ff1ae87b\", \"41b6475b-3a8d-4075-b0d2-a2ff5ce1b402\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.23395538330078, \"Text\": \"-21\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024147629737854004, \"Height\": 0.009948842227458954, \"Left\": 0.7534107565879822, \"Top\": 0.09530194848775864}, \"Polygon\": [{\"X\": 0.7534107565879822, \"Y\": 0.09530194848775864}, {\"X\": 0.7775583863258362, \"Y\": 0.09530194848775864}, {\"X\": 0.7775583863258362, \"Y\": 0.10525079071521759}, {\"X\": 0.7534107565879822, \"Y\": 0.10525079071521759}]}, \"Id\": \"272e90f7-b853-4164-bc6d-0d9b2f31fb8e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4a826a3-58ad-44be-93ef-acf732496172\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65373992919922, \"Text\": \"8/1/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06908632814884186, \"Height\": 0.013206131756305695, \"Left\": 0.14452297985553741, \"Top\": 0.11384478956460953}, \"Polygon\": [{\"X\": 0.14452297985553741, \"Y\": 0.11384478956460953}, {\"X\": 0.21360930800437927, \"Y\": 0.11384478956460953}, {\"X\": 0.21360930800437927, \"Y\": 0.12705092132091522}, {\"X\": 0.14452297985553741, \"Y\": 0.12705092132091522}]}, \"Id\": \"d297da78-72e6-496d-96dc-0f9a2ad411c1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bce28ed4-84b3-4d93-96ae-7d15580ec3ad\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.49687957763672, \"Text\": \"Service Charge - Bank - 6556484014\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.26312658190727234, \"Height\": 0.012695103883743286, \"Left\": 0.23082314431667328, \"Top\": 0.11437727510929108}, \"Polygon\": [{\"X\": 0.23082314431667328, \"Y\": 0.11437727510929108}, {\"X\": 0.4939497113227844, \"Y\": 0.11437727510929108}, {\"X\": 0.4939497113227844, \"Y\": 0.12707237899303436}, {\"X\": 0.23082314431667328, \"Y\": 0.12707237899303436}]}, \"Id\": \"f88a6361-0fab-4d38-99e2-3bace6fca9f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d8a5ccd6-c9f3-4806-a2c2-9fb9f0c3e6d7\", \"944ccf43-60be-459d-820f-c310452569bb\", \"91df3815-f0cd-40c4-b41e-53510d4e4cb3\", \"ed9d1049-4d8f-4de0-98dd-0143de767216\", \"230c8e93-c7a7-4499-b3f1-0753412dfe1a\", \"b64ee7d3-4ae7-4bce-92b2-a2d44305885b\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56906127929688, \"Text\": \"-5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014541327953338623, \"Height\": 0.009859628975391388, \"Left\": 0.7627560496330261, \"Top\": 0.11480572819709778}, \"Polygon\": [{\"X\": 0.7627560496330261, \"Y\": 0.11480572819709778}, {\"X\": 0.7772973775863647, \"Y\": 0.11480572819709778}, {\"X\": 0.7772973775863647, \"Y\": 0.12466535717248917}, {\"X\": 0.7627560496330261, \"Y\": 0.12466535717248917}]}, \"Id\": \"be0c87f7-102b-4705-8c97-4cbd539c4ded\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0d0996b-4d13-4ddf-a935-e5b637c94006\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.38367462158203, \"Text\": \"3/5/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06838835775852203, \"Height\": 0.013171926140785217, \"Left\": 0.14521197974681854, \"Top\": 0.13350729644298553}, \"Polygon\": [{\"X\": 0.14521197974681854, \"Y\": 0.13350729644298553}, {\"X\": 0.21360033750534058, \"Y\": 0.13350729644298553}, {\"X\": 0.21360033750534058, \"Y\": 0.14667922258377075}, {\"X\": 0.14521197974681854, \"Y\": 0.14667922258377075}]}, \"Id\": \"8a282676-a1c9-4749-8350-5d460442ebc4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"90a31ab3-0b68-4c5a-9283-239837c9090e\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.42593383789062, \"Text\": \"Online Retail - Amazon.com - 6597837385\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30674076080322266, \"Height\": 0.010836630128324032, \"Left\": 0.23128606379032135, \"Top\": 0.13392654061317444}, \"Polygon\": [{\"X\": 0.23128606379032135, \"Y\": 0.13392654061317444}, {\"X\": 0.5380268096923828, \"Y\": 0.13392654061317444}, {\"X\": 0.5380268096923828, \"Y\": 0.14476317167282104}, {\"X\": 0.23128606379032135, \"Y\": 0.14476317167282104}]}, \"Id\": \"66828134-7352-4ced-8302-a1c018f11288\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2304c92d-602f-4eb1-8429-2c660f3613bf\", \"2b3f05b0-166e-4615-8901-54237063f165\", \"51c23298-ada8-47a8-b2da-bbe068675f27\", \"a86c0fda-2f26-4a85-a06b-c76778378462\", \"57e37d06-18f9-433a-aff1-607ca1b4e752\", \"4e9c17a9-6a8b-4b40-833a-34cfddcf5c43\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3831558227539, \"Text\": \"-215\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032196998596191406, \"Height\": 0.010109692811965942, \"Left\": 0.7448340654373169, \"Top\": 0.13435634970664978}, \"Polygon\": [{\"X\": 0.7448340654373169, \"Y\": 0.13435634970664978}, {\"X\": 0.7770310640335083, \"Y\": 0.13435634970664978}, {\"X\": 0.7770310640335083, \"Y\": 0.14446604251861572}, {\"X\": 0.7448340654373169, \"Y\": 0.14446604251861572}]}, \"Id\": \"fb6382b6-10c9-4d27-8436-f20e6604dbc5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc8219a5-5e52-4e43-bb61-aa64c81fabda\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61546325683594, \"Text\": \"2/2/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06829233467578888, \"Height\": 0.013230845332145691, \"Left\": 0.14531315863132477, \"Top\": 0.15306171774864197}, \"Polygon\": [{\"X\": 0.14531315863132477, \"Y\": 0.15306171774864197}, {\"X\": 0.21360549330711365, \"Y\": 0.15306171774864197}, {\"X\": 0.21360549330711365, \"Y\": 0.16629256308078766}, {\"X\": 0.14531315863132477, \"Y\": 0.16629256308078766}]}, \"Id\": \"7addb4f2-955d-4ad4-8b7c-ba9ba688b50e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7bbeb766-9822-4529-a94e-4f30045db4d9\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.64701080322266, \"Text\": \"Food Purchase - Tim Hortons - 6694508417\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3153877258300781, \"Height\": 0.010635826736688614, \"Left\": 0.23184965550899506, \"Top\": 0.1536361128091812}, \"Polygon\": [{\"X\": 0.23184965550899506, \"Y\": 0.1536361128091812}, {\"X\": 0.5472373962402344, \"Y\": 0.1536361128091812}, {\"X\": 0.5472373962402344, \"Y\": 0.16427193582057953}, {\"X\": 0.23184965550899506, \"Y\": 0.16427193582057953}]}, \"Id\": \"18d64075-ee67-41b9-9012-5fcca5b7f67c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ff165682-9b73-43c7-88fb-02962d99649f\", \"f76e6b40-6f96-4772-aa6a-2f55f59fc9e2\", \"66f960ac-14f0-448b-a01f-0a4130e75a10\", \"9ab20a74-b144-4589-bac2-e9d70e6f1694\", \"ea51fa83-b68e-4bca-a9a6-4c7f5ebc55ab\", \"ad193116-9f91-4d5a-8665-0d593e1ff9c4\", \"db001a00-2d0a-40ae-b3d1-19487be83234\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7547836303711, \"Text\": \"-82\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02377527952194214, \"Height\": 0.010022729635238647, \"Left\": 0.7537088394165039, \"Top\": 0.15412892401218414}, \"Polygon\": [{\"X\": 0.7537088394165039, \"Y\": 0.15412892401218414}, {\"X\": 0.777484118938446, \"Y\": 0.15412892401218414}, {\"X\": 0.777484118938446, \"Y\": 0.1641516536474228}, {\"X\": 0.7537088394165039, \"Y\": 0.1641516536474228}]}, \"Id\": \"ee2b1a82-f693-4a94-85ef-70a4a7463ee9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1bf50d0b-5254-4a8c-b989-eda52b6c9435\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.20226287841797, \"Text\": \"12/30/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08636607229709625, \"Height\": 0.012773334980010986, \"Left\": 0.12720702588558197, \"Top\": 0.1729213446378708}, \"Polygon\": [{\"X\": 0.12720702588558197, \"Y\": 0.1729213446378708}, {\"X\": 0.21357309818267822, \"Y\": 0.1729213446378708}, {\"X\": 0.21357309818267822, \"Y\": 0.18569467961788177}, {\"X\": 0.12720702588558197, \"Y\": 0.18569467961788177}]}, \"Id\": \"acf59702-5720-41f0-bc91-be77da8e1649\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5dacdbc3-0817-46d9-91c2-deed5483f07a\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.44160461425781, \"Text\": \"Online Retail - Amazon.com - 7544350060\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30752119421958923, \"Height\": 0.010461665689945221, \"Left\": 0.23121151328086853, \"Top\": 0.1734170764684677}, \"Polygon\": [{\"X\": 0.23121151328086853, \"Y\": 0.1734170764684677}, {\"X\": 0.5387327075004578, \"Y\": 0.1734170764684677}, {\"X\": 0.5387327075004578, \"Y\": 0.18387874960899353}, {\"X\": 0.23121151328086853, \"Y\": 0.18387874960899353}]}, \"Id\": \"5762d373-b86b-4a9d-b526-912a6c1fe67a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"64dfa889-5a73-44d3-a6ac-116d97a562c6\", \"0ae5ad3a-b017-4a20-bceb-0130851d83e1\", \"27a46cc3-9e69-4fd4-b8fe-226eb5627fab\", \"45544f87-ef11-441d-b0df-5487d259e604\", \"fcae863a-4ff1-4db3-a2e1-c58d16b45df2\", \"b3275a00-13e9-43ac-a6d7-306ac05b4b18\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48645782470703, \"Text\": \"-112\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03294062614440918, \"Height\": 0.009924262762069702, \"Left\": 0.744661271572113, \"Top\": 0.17369285225868225}, \"Polygon\": [{\"X\": 0.744661271572113, \"Y\": 0.17369285225868225}, {\"X\": 0.7776018977165222, \"Y\": 0.17369285225868225}, {\"X\": 0.7776018977165222, \"Y\": 0.18361711502075195}, {\"X\": 0.744661271572113, \"Y\": 0.18361711502075195}]}, \"Id\": \"2743d7a6-b11b-4cd4-9403-5ca1c9559a29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2bb6e0d2-936b-4a13-88e7-a3410ef33baa\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3836441040039, \"Text\": \"9/27/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07776233553886414, \"Height\": 0.013052716851234436, \"Left\": 0.1354961097240448, \"Top\": 0.19209106266498566}, \"Polygon\": [{\"X\": 0.1354961097240448, \"Y\": 0.19209106266498566}, {\"X\": 0.21325844526290894, \"Y\": 0.19209106266498566}, {\"X\": 0.21325844526290894, \"Y\": 0.2051437795162201}, {\"X\": 0.1354961097240448, \"Y\": 0.2051437795162201}]}, \"Id\": \"880af3ea-87f3-442f-9dc6-a62b5ab0d062\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c54cb157-c959-4480-a628-4983ac2641b0\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.43863677978516, \"Text\": \"Online Retail - Amazon.com - 7673426647\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3074900507926941, \"Height\": 0.010616770945489407, \"Left\": 0.2312055230140686, \"Top\": 0.19293570518493652}, \"Polygon\": [{\"X\": 0.2312055230140686, \"Y\": 0.19293570518493652}, {\"X\": 0.5386955738067627, \"Y\": 0.19293570518493652}, {\"X\": 0.5386955738067627, \"Y\": 0.2035524696111679}, {\"X\": 0.2312055230140686, \"Y\": 0.2035524696111679}]}, \"Id\": \"1c483376-200d-400c-9474-5c60543d4997\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"573d97e7-b1cb-41ef-8712-fb533b3d8215\", \"64f4ef60-6836-407e-a452-36eb72e68325\", \"f5d3f00b-f997-4121-950c-abe1e5dafd22\", \"5df93852-be47-4acf-ba2e-66f1ea3856f9\", \"14ffca23-b3c8-45a8-b612-be1bc1591058\", \"2b94dd2b-4aca-4c4f-a911-ad438b1f3de5\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83064270019531, \"Text\": \"-4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014431416988372803, \"Height\": 0.009813308715820312, \"Left\": 0.7629349827766418, \"Top\": 0.1932983249425888}, \"Polygon\": [{\"X\": 0.7629349827766418, \"Y\": 0.1932983249425888}, {\"X\": 0.7773663997650146, \"Y\": 0.1932983249425888}, {\"X\": 0.7773663997650146, \"Y\": 0.20311163365840912}, {\"X\": 0.7629349827766418, \"Y\": 0.20311163365840912}]}, \"Id\": \"831a4bae-d0cd-4ceb-9a01-3e92dff87b48\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35172a9d-cdbb-4a82-839a-82df6c1792db\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.46185302734375, \"Text\": \"8/22/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07752911746501923, \"Height\": 0.012940570712089539, \"Left\": 0.13576294481754303, \"Top\": 0.21173523366451263}, \"Polygon\": [{\"X\": 0.13576294481754303, \"Y\": 0.21173523366451263}, {\"X\": 0.21329206228256226, \"Y\": 0.21173523366451263}, {\"X\": 0.21329206228256226, \"Y\": 0.22467580437660217}, {\"X\": 0.13576294481754303, \"Y\": 0.22467580437660217}]}, \"Id\": \"73d4bd28-d2ee-478f-8aa7-2283474ec97c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2775595c-24aa-4359-b307-34cffb0089e7\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.02872467041016, \"Text\": \"Transport - Uber - 7686595684\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22679124772548676, \"Height\": 0.012789486907422543, \"Left\": 0.229874387383461, \"Top\": 0.21222013235092163}, \"Polygon\": [{\"X\": 0.229874387383461, \"Y\": 0.21222013235092163}, {\"X\": 0.45666563510894775, \"Y\": 0.21222013235092163}, {\"X\": 0.45666563510894775, \"Y\": 0.22500962018966675}, {\"X\": 0.229874387383461, \"Y\": 0.22500962018966675}]}, \"Id\": \"efb62f8b-431a-4eca-baca-fbea6675236c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5780a7e3-3f92-44c5-b059-85d648479959\", \"c40d4a5f-b4e1-4615-a7a6-e181d743aa50\", \"267ff1cd-e269-47a4-9bd6-7253bb7a28af\", \"ada87833-7439-40ed-9f02-7814d15c8089\", \"e41cfb5b-4859-45c9-9f83-e660c64a32e5\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74999237060547, \"Text\": \"-57\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023346781730651855, \"Height\": 0.010051697492599487, \"Left\": 0.7540624141693115, \"Top\": 0.21272699534893036}, \"Polygon\": [{\"X\": 0.7540624141693115, \"Y\": 0.21272699534893036}, {\"X\": 0.7774091958999634, \"Y\": 0.21272699534893036}, {\"X\": 0.7774091958999634, \"Y\": 0.22277869284152985}, {\"X\": 0.7540624141693115, \"Y\": 0.22277869284152985}]}, \"Id\": \"518ede7b-1bd4-49a5-9470-a61c1e0b1f00\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d879f428-cdef-41ff-b7e4-251340903219\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 75.90128326416016, \"Text\": \"10/9/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07722048461437225, \"Height\": 0.01279442012310028, \"Left\": 0.1364402025938034, \"Top\": 0.23139050602912903}, \"Polygon\": [{\"X\": 0.1364402025938034, \"Y\": 0.23139050602912903}, {\"X\": 0.21366068720817566, \"Y\": 0.23139050602912903}, {\"X\": 0.21366068720817566, \"Y\": 0.2441849261522293}, {\"X\": 0.1364402025938034, \"Y\": 0.2441849261522293}]}, \"Id\": \"3ef30f4d-ab76-453b-8f6a-3058de7c9c12\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74669150-5a66-4fe1-ba30-ce168dedb49a\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.7554931640625, \"Text\": \"Food Purchase - McDonalds - 7779261930\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.307453453540802, \"Height\": 0.01050500851124525, \"Left\": 0.23187853395938873, \"Top\": 0.2319590300321579}, \"Polygon\": [{\"X\": 0.23187853395938873, \"Y\": 0.2319590300321579}, {\"X\": 0.5393319725990295, \"Y\": 0.2319590300321579}, {\"X\": 0.5393319725990295, \"Y\": 0.24246403574943542}, {\"X\": 0.23187853395938873, \"Y\": 0.24246403574943542}]}, \"Id\": \"a71f9354-5148-418a-8a51-65bba8283e47\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0924f38f-2332-47e1-b4e2-fa7e4ff4fec6\", \"37673b02-296b-4021-b98a-94a973cc0735\", \"c41524dc-dbc1-4818-bbeb-17e2dc06402e\", \"256805bc-5831-4999-a3a6-975086dc3989\", \"e4bfb4ea-9b44-4fa3-aa3e-b2355c520bcf\", \"4a6beabe-5048-4135-81ee-5eca18709ebf\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.85516357421875, \"Text\": \"-64\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023150205612182617, \"Height\": 0.009808018803596497, \"Left\": 0.7542034387588501, \"Top\": 0.23239348828792572}, \"Polygon\": [{\"X\": 0.7542034387588501, \"Y\": 0.23239348828792572}, {\"X\": 0.7773536443710327, \"Y\": 0.23239348828792572}, {\"X\": 0.7773536443710327, \"Y\": 0.24220150709152222}, {\"X\": 0.7542034387588501, \"Y\": 0.24220150709152222}]}, \"Id\": \"64ee0e5d-e181-4f39-a039-0c6449e6964a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e5ebcd8d-d6d4-4559-b5ba-87d1ba8d57c9\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.66636657714844, \"Text\": \"8/31/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07730977237224579, \"Height\": 0.012866318225860596, \"Left\": 0.13615809381008148, \"Top\": 0.25085532665252686}, \"Polygon\": [{\"X\": 0.13615809381008148, \"Y\": 0.25085532665252686}, {\"X\": 0.21346786618232727, \"Y\": 0.25085532665252686}, {\"X\": 0.21346786618232727, \"Y\": 0.26372164487838745}, {\"X\": 0.13615809381008148, \"Y\": 0.26372164487838745}]}, \"Id\": \"203dca0b-42e9-4edf-bf7b-2326deccd740\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d025120-683f-4527-907a-5ef343633586\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.80048370361328, \"Text\": \"Retail Purchase - Loblaws - 8158060902\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.29324817657470703, \"Height\": 0.010650685988366604, \"Left\": 0.23199784755706787, \"Top\": 0.251390665769577}, \"Polygon\": [{\"X\": 0.23199784755706787, \"Y\": 0.251390665769577}, {\"X\": 0.5252460241317749, \"Y\": 0.251390665769577}, {\"X\": 0.5252460241317749, \"Y\": 0.2620413601398468}, {\"X\": 0.23199784755706787, \"Y\": 0.2620413601398468}]}, \"Id\": \"2b71664f-bee7-4fa7-8a52-3ef5ac3ddc1d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f61441b5-1a61-41e1-bfb7-f83f44bb0cfa\", \"1f33181e-7ab8-4a7b-ab05-b7413858189b\", \"f6f9150c-3b21-4071-8168-f301c6c3388e\", \"98c214c6-b253-44b2-87a9-ac5607ae79af\", \"cb552b60-a97e-4f1b-b0bf-c5dc4d6f3931\", \"8f7b8b17-891a-4eb9-84f1-a6c3fb3fd570\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 96.7156753540039, \"Text\": \"-95\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023904263973236084, \"Height\": 0.009912490844726562, \"Left\": 0.7533542513847351, \"Top\": 0.251878023147583}, \"Polygon\": [{\"X\": 0.7533542513847351, \"Y\": 0.251878023147583}, {\"X\": 0.7772585153579712, \"Y\": 0.251878023147583}, {\"X\": 0.7772585153579712, \"Y\": 0.26179051399230957}, {\"X\": 0.7533542513847351, \"Y\": 0.26179051399230957}]}, \"Id\": \"dfeebe75-c0cb-474c-999a-87c50918326a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a415011d-5ca6-4e99-8ef5-432d350080ad\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37860107421875, \"Text\": \"4/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06918329000473022, \"Height\": 0.013031214475631714, \"Left\": 0.1445496380329132, \"Top\": 0.27066367864608765}, \"Polygon\": [{\"X\": 0.1445496380329132, \"Y\": 0.27066367864608765}, {\"X\": 0.21373292803764343, \"Y\": 0.27066367864608765}, {\"X\": 0.21373292803764343, \"Y\": 0.28369489312171936}, {\"X\": 0.1445496380329132, \"Y\": 0.28369489312171936}]}, \"Id\": \"35e03511-1729-47b8-a960-5b66263ebb96\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e6db73b-cc0d-4875-a02a-247f6397d490\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.78849029541016, \"Text\": \"Retail Purchase - Sobeys - 8403287221\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2845550775527954, \"Height\": 0.012944340705871582, \"Left\": 0.23204725980758667, \"Top\": 0.2709953188896179}, \"Polygon\": [{\"X\": 0.23204725980758667, \"Y\": 0.2709953188896179}, {\"X\": 0.5166023373603821, \"Y\": 0.2709953188896179}, {\"X\": 0.5166023373603821, \"Y\": 0.2839396595954895}, {\"X\": 0.23204725980758667, \"Y\": 0.2839396595954895}]}, \"Id\": \"23ebd6a3-f14a-4426-b42e-63191f03d2ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b78560b-b5e1-4cc7-842b-1aa8852598d6\", \"065c3582-99d0-4322-b42a-fa736dd099e6\", \"4381cd8b-0a9d-4f91-8be4-4156d035149d\", \"904fc63e-cdeb-433c-998c-623947b2df39\", \"72c2c1af-26bf-45d1-ba7f-bfeccba7fa63\", \"e8f932fa-82da-4130-a146-8e877436385b\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4859619140625, \"Text\": \"-242\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032343268394470215, \"Height\": 0.009803026914596558, \"Left\": 0.7450992465019226, \"Top\": 0.2715027332305908}, \"Polygon\": [{\"X\": 0.7450992465019226, \"Y\": 0.2715027332305908}, {\"X\": 0.7774425148963928, \"Y\": 0.2715027332305908}, {\"X\": 0.7774425148963928, \"Y\": 0.2813057601451874}, {\"X\": 0.7450992465019226, \"Y\": 0.2813057601451874}]}, \"Id\": \"df4846b5-c1e4-4923-b69a-1eeccc42fe73\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2d3f4997-3700-446c-a5c8-8f254c792fe5\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49118041992188, \"Text\": \"6/6/2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06879013776779175, \"Height\": 0.013033658266067505, \"Left\": 0.14475849270820618, \"Top\": 0.29011982679367065}, \"Polygon\": [{\"X\": 0.14475849270820618, \"Y\": 0.29011982679367065}, {\"X\": 0.21354864537715912, \"Y\": 0.29011982679367065}, {\"X\": 0.21354864537715912, \"Y\": 0.30315348505973816}, {\"X\": 0.14475849270820618, \"Y\": 0.30315348505973816}]}, \"Id\": \"a0bb404d-c799-40de-b7a2-535d3caf458d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4b9dd21-19d0-49cc-b6fb-8c940e1031fb\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.02033233642578, \"Text\": \"Retail Purchase - Loblaws - 8408401968\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2933923304080963, \"Height\": 0.010834229178726673, \"Left\": 0.231943279504776, \"Top\": 0.2905474901199341}, \"Polygon\": [{\"X\": 0.231943279504776, \"Y\": 0.2905474901199341}, {\"X\": 0.5253356099128723, \"Y\": 0.2905474901199341}, {\"X\": 0.5253356099128723, \"Y\": 0.3013817369937897}, {\"X\": 0.231943279504776, \"Y\": 0.3013817369937897}]}, \"Id\": \"6a0d7738-d943-43f4-a05f-2116142a3437\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c2825954-7635-4d60-9b79-a777cbdc4aaa\", \"68778abb-f600-4f1a-9cbf-6d5978a5a268\", \"63568437-0e0f-4eb7-b99d-67252c2cacbb\", \"0c36ac59-3808-4d7a-b26a-ca6adbbf0a90\", \"1ebe079d-b8ab-40cb-87d9-6ea38fbf508d\", \"20cab965-01bd-445d-9ce7-252f22d47aa7\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 98.81950378417969, \"Text\": \"-234\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03292769193649292, \"Height\": 0.010065138339996338, \"Left\": 0.7446840405464172, \"Top\": 0.29102176427841187}, \"Polygon\": [{\"X\": 0.7446840405464172, \"Y\": 0.29102176427841187}, {\"X\": 0.7776117324829102, \"Y\": 0.29102176427841187}, {\"X\": 0.7776117324829102, \"Y\": 0.3010869026184082}, {\"X\": 0.7446840405464172, \"Y\": 0.3010869026184082}]}, \"Id\": \"0f1b24ed-51e7-47ec-97e4-23bf60839d9a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e12473d6-fab3-4c05-ab53-59ed859cb4ea\"]}], \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5810775756836, \"Text\": \"7/23/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07757806777954102, \"Height\": 0.013116645626723766, \"Left\": 0.13576281070709229, \"Top\": 0.09423795342445374}, \"Polygon\": [{\"X\": 0.13576281070709229, \"Y\": 0.09423795342445374}, {\"X\": 0.2133408784866333, \"Y\": 0.09423795342445374}, {\"X\": 0.2133408784866333, \"Y\": 0.10735459625720978}, {\"X\": 0.13576281070709229, \"Y\": 0.10735459625720978}]}, \"Id\": \"c8afbe08-abfd-4513-bbbb-310bf9e6a708\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93107604980469, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03565584123134613, \"Height\": 0.01038995012640953, \"Left\": 0.2319912612438202, \"Top\": 0.09483995288610458}, \"Polygon\": [{\"X\": 0.2319912612438202, \"Y\": 0.09483995288610458}, {\"X\": 0.2676470875740051, \"Y\": 0.09483995288610458}, {\"X\": 0.2676470875740051, \"Y\": 0.10522989928722382}, {\"X\": 0.2319912612438202, \"Y\": 0.10522989928722382}]}, \"Id\": \"dd98bf8c-683a-4411-b8de-a5b5e5b7ce4b\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59227752685547, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0660366415977478, \"Height\": 0.010423369705677032, \"Left\": 0.2723398804664612, \"Top\": 0.09490378946065903}, \"Polygon\": [{\"X\": 0.2723398804664612, \"Y\": 0.09490378946065903}, {\"X\": 0.338376522064209, \"Y\": 0.09490378946065903}, {\"X\": 0.338376522064209, \"Y\": 0.10532715916633606}, {\"X\": 0.2723398804664612, \"Y\": 0.10532715916633606}]}, \"Id\": \"efb39e69-772c-4702-b0c4-3891573da98b\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.90249633789062, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005807629786431789, \"Height\": 0.002347686095163226, \"Left\": 0.3425985872745514, \"Top\": 0.10011924058198929}, \"Polygon\": [{\"X\": 0.3425985872745514, \"Y\": 0.10011924058198929}, {\"X\": 0.34840622544288635, \"Y\": 0.10011924058198929}, {\"X\": 0.34840622544288635, \"Y\": 0.10246692597866058}, {\"X\": 0.3425985872745514, \"Y\": 0.10246692597866058}]}, \"Id\": \"7647fe67-713f-4f65-b1e5-472e5fec5b9f\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66388702392578, \"Text\": \"Starbucks\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07106083631515503, \"Height\": 0.01039675623178482, \"Left\": 0.35234272480010986, \"Top\": 0.09497573971748352}, \"Polygon\": [{\"X\": 0.35234272480010986, \"Y\": 0.09497573971748352}, {\"X\": 0.4234035611152649, \"Y\": 0.09497573971748352}, {\"X\": 0.4234035611152649, \"Y\": 0.10537249594926834}, {\"X\": 0.35234272480010986, \"Y\": 0.10537249594926834}]}, \"Id\": \"2fe54222-5059-4bb8-b1d8-a0291c211894\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.98817443847656, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00599598977714777, \"Height\": 0.002839895896613598, \"Left\": 0.4267781674861908, \"Top\": 0.09997717291116714}, \"Polygon\": [{\"X\": 0.4267781674861908, \"Y\": 0.09997717291116714}, {\"X\": 0.432774156332016, \"Y\": 0.09997717291116714}, {\"X\": 0.432774156332016, \"Y\": 0.10281706601381302}, {\"X\": 0.4267781674861908, \"Y\": 0.10281706601381302}]}, \"Id\": \"4554d0f3-a55c-4695-83e5-40d8ff1ae87b\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43470764160156, \"Text\": \"6528599341\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0905475914478302, \"Height\": 0.010660739615559578, \"Left\": 0.4366859495639801, \"Top\": 0.09490087628364563}, \"Polygon\": [{\"X\": 0.4366859495639801, \"Y\": 0.09490087628364563}, {\"X\": 0.5272335410118103, \"Y\": 0.09490087628364563}, {\"X\": 0.5272335410118103, \"Y\": 0.10556162148714066}, {\"X\": 0.4366859495639801, \"Y\": 0.10556162148714066}]}, \"Id\": \"41b6475b-3a8d-4075-b0d2-a2ff5ce1b402\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23395538330078, \"Text\": \"-21\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0241476409137249, \"Height\": 0.009948840364813805, \"Left\": 0.7534107565879822, \"Top\": 0.09530194848775864}, \"Polygon\": [{\"X\": 0.7534107565879822, \"Y\": 0.09530194848775864}, {\"X\": 0.7775583863258362, \"Y\": 0.09530194848775864}, {\"X\": 0.7775583863258362, \"Y\": 0.10525079071521759}, {\"X\": 0.7534107565879822, \"Y\": 0.10525079071521759}]}, \"Id\": \"f4a826a3-58ad-44be-93ef-acf732496172\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65373992919922, \"Text\": \"8/1/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06908632814884186, \"Height\": 0.013206110335886478, \"Left\": 0.14452297985553741, \"Top\": 0.11384478956460953}, \"Polygon\": [{\"X\": 0.14452297985553741, \"Y\": 0.11384478956460953}, {\"X\": 0.21360930800437927, \"Y\": 0.11384478956460953}, {\"X\": 0.21360930800437927, \"Y\": 0.12705090641975403}, {\"X\": 0.14452297985553741, \"Y\": 0.12705090641975403}]}, \"Id\": \"bce28ed4-84b3-4d93-96ae-7d15580ec3ad\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7625732421875, \"Text\": \"Service\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05248069018125534, \"Height\": 0.010032270103693008, \"Left\": 0.23082314431667328, \"Top\": 0.11482062935829163}, \"Polygon\": [{\"X\": 0.23082314431667328, \"Y\": 0.11482062935829163}, {\"X\": 0.283303827047348, \"Y\": 0.11482062935829163}, {\"X\": 0.283303827047348, \"Y\": 0.12485290318727493}, {\"X\": 0.23082314431667328, \"Y\": 0.12485290318727493}]}, \"Id\": \"d8a5ccd6-c9f3-4806-a2c2-9fb9f0c3e6d7\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49534606933594, \"Text\": \"Charge\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05122702941298485, \"Height\": 0.012459264136850834, \"Left\": 0.2880329191684723, \"Top\": 0.1146131157875061}, \"Polygon\": [{\"X\": 0.2880329191684723, \"Y\": 0.1146131157875061}, {\"X\": 0.33925995230674744, \"Y\": 0.1146131157875061}, {\"X\": 0.33925995230674744, \"Y\": 0.12707237899303436}, {\"X\": 0.2880329191684723, \"Y\": 0.12707237899303436}]}, \"Id\": \"944ccf43-60be-459d-820f-c310452569bb\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.74852752685547, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005995099898427725, \"Height\": 0.002240624977275729, \"Left\": 0.3427693545818329, \"Top\": 0.11967052519321442}, \"Polygon\": [{\"X\": 0.3427693545818329, \"Y\": 0.11967052519321442}, {\"X\": 0.34876444935798645, \"Y\": 0.11967052519321442}, {\"X\": 0.34876444935798645, \"Y\": 0.12191115319728851}, {\"X\": 0.3427693545818329, \"Y\": 0.12191115319728851}]}, \"Id\": \"91df3815-f0cd-40c4-b41e-53510d4e4cb3\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44701385498047, \"Text\": \"Bank\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.034823399037122726, \"Height\": 0.010002590715885162, \"Left\": 0.35305529832839966, \"Top\": 0.11437727510929108}, \"Polygon\": [{\"X\": 0.35305529832839966, \"Y\": 0.11437727510929108}, {\"X\": 0.3878786861896515, \"Y\": 0.11437727510929108}, {\"X\": 0.3878786861896515, \"Y\": 0.12437986582517624}, {\"X\": 0.35305529832839966, \"Y\": 0.12437986582517624}]}, \"Id\": \"ed9d1049-4d8f-4de0-98dd-0143de767216\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.43323516845703, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005846980027854443, \"Height\": 0.0027434839867055416, \"Left\": 0.39250192046165466, \"Top\": 0.11941929161548615}, \"Polygon\": [{\"X\": 0.39250192046165466, \"Y\": 0.11941929161548615}, {\"X\": 0.3983488976955414, \"Y\": 0.11941929161548615}, {\"X\": 0.3983488976955414, \"Y\": 0.12216277420520782}, {\"X\": 0.39250192046165466, \"Y\": 0.12216277420520782}]}, \"Id\": \"230c8e93-c7a7-4499-b3f1-0753412dfe1a\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.0945816040039, \"Text\": \"6556484014\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09202858060598373, \"Height\": 0.01025438029319048, \"Left\": 0.4019211232662201, \"Top\": 0.11466240137815475}, \"Polygon\": [{\"X\": 0.4019211232662201, \"Y\": 0.11466240137815475}, {\"X\": 0.4939497113227844, \"Y\": 0.11466240137815475}, {\"X\": 0.4939497113227844, \"Y\": 0.12491677701473236}, {\"X\": 0.4019211232662201, \"Y\": 0.12491677701473236}]}, \"Id\": \"b64ee7d3-4ae7-4bce-92b2-a2d44305885b\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56906127929688, \"Text\": \"-5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014541350305080414, \"Height\": 0.009859629906713963, \"Left\": 0.7627560496330261, \"Top\": 0.11480572819709778}, \"Polygon\": [{\"X\": 0.7627560496330261, \"Y\": 0.11480572819709778}, {\"X\": 0.7772973775863647, \"Y\": 0.11480572819709778}, {\"X\": 0.7772973775863647, \"Y\": 0.12466535717248917}, {\"X\": 0.7627560496330261, \"Y\": 0.12466535717248917}]}, \"Id\": \"b0d0996b-4d13-4ddf-a935-e5b637c94006\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38367462158203, \"Text\": \"3/5/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06838835775852203, \"Height\": 0.013171919621527195, \"Left\": 0.14521197974681854, \"Top\": 0.13350729644298553}, \"Polygon\": [{\"X\": 0.14521197974681854, \"Y\": 0.13350729644298553}, {\"X\": 0.21360033750534058, \"Y\": 0.13350729644298553}, {\"X\": 0.21360033750534058, \"Y\": 0.14667922258377075}, {\"X\": 0.14521197974681854, \"Y\": 0.14667922258377075}]}, \"Id\": \"90a31ab3-0b68-4c5a-9283-239837c9090e\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8813247680664, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0475989393889904, \"Height\": 0.010355879552662373, \"Left\": 0.23128606379032135, \"Top\": 0.13406284153461456}, \"Polygon\": [{\"X\": 0.23128606379032135, \"Y\": 0.13406284153461456}, {\"X\": 0.27888500690460205, \"Y\": 0.13406284153461456}, {\"X\": 0.27888500690460205, \"Y\": 0.14441871643066406}, {\"X\": 0.23128606379032135, \"Y\": 0.14441871643066406}]}, \"Id\": \"2304c92d-602f-4eb1-8429-2c660f3613bf\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8306655883789, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041232720017433167, \"Height\": 0.010771799832582474, \"Left\": 0.2835442125797272, \"Top\": 0.13392654061317444}, \"Polygon\": [{\"X\": 0.2835442125797272, \"Y\": 0.13392654061317444}, {\"X\": 0.32477691769599915, \"Y\": 0.13392654061317444}, {\"X\": 0.32477691769599915, \"Y\": 0.1446983367204666}, {\"X\": 0.2835442125797272, \"Y\": 0.1446983367204666}]}, \"Id\": \"2b3f05b0-166e-4615-8901-54237063f165\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 95.88082885742188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005576060153543949, \"Height\": 0.0022382100578397512, \"Left\": 0.3287782371044159, \"Top\": 0.1391744166612625}, \"Polygon\": [{\"X\": 0.3287782371044159, \"Y\": 0.1391744166612625}, {\"X\": 0.33435431122779846, \"Y\": 0.1391744166612625}, {\"X\": 0.33435431122779846, \"Y\": 0.1414126306772232}, {\"X\": 0.3287782371044159, \"Y\": 0.1414126306772232}]}, \"Id\": \"51c23298-ada8-47a8-b2da-bbe068675f27\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62305450439453, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08970767259597778, \"Height\": 0.00992031954228878, \"Left\": 0.33859124779701233, \"Top\": 0.13459733128547668}, \"Polygon\": [{\"X\": 0.33859124779701233, \"Y\": 0.13459733128547668}, {\"X\": 0.4282989203929901, \"Y\": 0.13459733128547668}, {\"X\": 0.4282989203929901, \"Y\": 0.14451764523983002}, {\"X\": 0.33859124779701233, \"Y\": 0.14451764523983002}]}, \"Id\": \"a86c0fda-2f26-4a85-a06b-c76778378462\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.87335205078125, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0060769300907850266, \"Height\": 0.003131150035187602, \"Left\": 0.43762660026550293, \"Top\": 0.13889265060424805}, \"Polygon\": [{\"X\": 0.43762660026550293, \"Y\": 0.13889265060424805}, {\"X\": 0.4437035322189331, \"Y\": 0.13889265060424805}, {\"X\": 0.4437035322189331, \"Y\": 0.14202380180358887}, {\"X\": 0.43762660026550293, \"Y\": 0.14202380180358887}]}, \"Id\": \"57e37d06-18f9-433a-aff1-607ca1b4e752\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.46637725830078, \"Text\": \"6597837385\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09144224971532822, \"Height\": 0.010675519704818726, \"Left\": 0.446584552526474, \"Top\": 0.13408765196800232}, \"Polygon\": [{\"X\": 0.446584552526474, \"Y\": 0.13408765196800232}, {\"X\": 0.5380268096923828, \"Y\": 0.13408765196800232}, {\"X\": 0.5380268096923828, \"Y\": 0.14476317167282104}, {\"X\": 0.446584552526474, \"Y\": 0.14476317167282104}]}, \"Id\": \"4e9c17a9-6a8b-4b40-833a-34cfddcf5c43\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3831558227539, \"Text\": \"-215\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032197028398513794, \"Height\": 0.010109709575772285, \"Left\": 0.7448340654373169, \"Top\": 0.13435634970664978}, \"Polygon\": [{\"X\": 0.7448340654373169, \"Y\": 0.13435634970664978}, {\"X\": 0.7770311236381531, \"Y\": 0.13435634970664978}, {\"X\": 0.7770311236381531, \"Y\": 0.14446605741977692}, {\"X\": 0.7448340654373169, \"Y\": 0.14446605741977692}]}, \"Id\": \"dc8219a5-5e52-4e43-bb61-aa64c81fabda\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61546325683594, \"Text\": \"2/2/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06829234212636948, \"Height\": 0.013230839744210243, \"Left\": 0.14531315863132477, \"Top\": 0.15306171774864197}, \"Polygon\": [{\"X\": 0.14531315863132477, \"Y\": 0.15306171774864197}, {\"X\": 0.21360549330711365, \"Y\": 0.15306171774864197}, {\"X\": 0.21360549330711365, \"Y\": 0.16629256308078766}, {\"X\": 0.14531315863132477, \"Y\": 0.16629256308078766}]}, \"Id\": \"7bbeb766-9822-4529-a94e-4f30045db4d9\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91966247558594, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.035989340394735336, \"Height\": 0.010355389676988125, \"Left\": 0.23184965550899506, \"Top\": 0.1536361128091812}, \"Polygon\": [{\"X\": 0.23184965550899506, \"Y\": 0.1536361128091812}, {\"X\": 0.2678390145301819, \"Y\": 0.1536361128091812}, {\"X\": 0.2678390145301819, \"Y\": 0.16399149596691132}, {\"X\": 0.23184965550899506, \"Y\": 0.16399149596691132}]}, \"Id\": \"ff165682-9b73-43c7-88fb-02962d99649f\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6314926147461, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06575962901115417, \"Height\": 0.010245329700410366, \"Left\": 0.2720414996147156, \"Top\": 0.1537110060453415}, \"Polygon\": [{\"X\": 0.2720414996147156, \"Y\": 0.1537110060453415}, {\"X\": 0.33780112862586975, \"Y\": 0.1537110060453415}, {\"X\": 0.33780112862586975, \"Y\": 0.16395632922649384}, {\"X\": 0.2720414996147156, \"Y\": 0.16395632922649384}]}, \"Id\": \"f76e6b40-6f96-4772-aa6a-2f55f59fc9e2\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 95.89077758789062, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005812120158225298, \"Height\": 0.0024556999560445547, \"Left\": 0.3426693081855774, \"Top\": 0.15868212282657623}, \"Polygon\": [{\"X\": 0.3426693081855774, \"Y\": 0.15868212282657623}, {\"X\": 0.3484814167022705, \"Y\": 0.15868212282657623}, {\"X\": 0.3484814167022705, \"Y\": 0.16113781929016113}, {\"X\": 0.3426693081855774, \"Y\": 0.16113781929016113}]}, \"Id\": \"66f960ac-14f0-448b-a01f-0a4130e75a10\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7831802368164, \"Text\": \"Tim\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0272000003606081, \"Height\": 0.010265509597957134, \"Left\": 0.35171499848365784, \"Top\": 0.1538199484348297}, \"Polygon\": [{\"X\": 0.35171499848365784, \"Y\": 0.1538199484348297}, {\"X\": 0.378915011882782, \"Y\": 0.1538199484348297}, {\"X\": 0.378915011882782, \"Y\": 0.16408546268939972}, {\"X\": 0.35171499848365784, \"Y\": 0.16408546268939972}]}, \"Id\": \"9ab20a74-b144-4589-bac2-e9d70e6f1694\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.31961059570312, \"Text\": \"Hortons\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05979841947555542, \"Height\": 0.010428300127387047, \"Left\": 0.3837389647960663, \"Top\": 0.15383252501487732}, \"Polygon\": [{\"X\": 0.3837389647960663, \"Y\": 0.15383252501487732}, {\"X\": 0.4435373842716217, \"Y\": 0.15383252501487732}, {\"X\": 0.4435373842716217, \"Y\": 0.1642608344554901}, {\"X\": 0.3837389647960663, \"Y\": 0.1642608344554901}]}, \"Id\": \"ea51fa83-b68e-4bca-a9a6-4c7f5ebc55ab\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.44474029541016, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006180080119520426, \"Height\": 0.0029586399905383587, \"Left\": 0.4463161826133728, \"Top\": 0.15862222015857697}, \"Polygon\": [{\"X\": 0.4463161826133728, \"Y\": 0.15862222015857697}, {\"X\": 0.4524962604045868, \"Y\": 0.15862222015857697}, {\"X\": 0.4524962604045868, \"Y\": 0.1615808606147766}, {\"X\": 0.4463161826133728, \"Y\": 0.1615808606147766}]}, \"Id\": \"ad193116-9f91-4d5a-8665-0d593e1ff9c4\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53961181640625, \"Text\": \"6694508417\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09155845642089844, \"Height\": 0.010569710284471512, \"Left\": 0.45567893981933594, \"Top\": 0.15370222926139832}, \"Polygon\": [{\"X\": 0.45567893981933594, \"Y\": 0.15370222926139832}, {\"X\": 0.5472373962402344, \"Y\": 0.15370222926139832}, {\"X\": 0.5472373962402344, \"Y\": 0.16427193582057953}, {\"X\": 0.45567893981933594, \"Y\": 0.16427193582057953}]}, \"Id\": \"db001a00-2d0a-40ae-b3d1-19487be83234\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7547836303711, \"Text\": \"-82\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023775260895490646, \"Height\": 0.010022750124335289, \"Left\": 0.7537088394165039, \"Top\": 0.15412892401218414}, \"Polygon\": [{\"X\": 0.7537088394165039, \"Y\": 0.15412892401218414}, {\"X\": 0.777484118938446, \"Y\": 0.15412892401218414}, {\"X\": 0.777484118938446, \"Y\": 0.16415166854858398}, {\"X\": 0.7537088394165039, \"Y\": 0.16415166854858398}]}, \"Id\": \"1bf50d0b-5254-4a8c-b989-eda52b6c9435\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 98.20226287841797, \"Text\": \"12/30/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08636604994535446, \"Height\": 0.01277333963662386, \"Left\": 0.12720702588558197, \"Top\": 0.1729213446378708}, \"Polygon\": [{\"X\": 0.12720702588558197, \"Y\": 0.1729213446378708}, {\"X\": 0.21357308328151703, \"Y\": 0.1729213446378708}, {\"X\": 0.21357308328151703, \"Y\": 0.18569467961788177}, {\"X\": 0.12720702588558197, \"Y\": 0.18569467961788177}]}, \"Id\": \"5dacdbc3-0817-46d9-91c2-deed5483f07a\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89259338378906, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0477900505065918, \"Height\": 0.010220100171864033, \"Left\": 0.23121151328086853, \"Top\": 0.1734212040901184}, \"Polygon\": [{\"X\": 0.23121151328086853, \"Y\": 0.1734212040901184}, {\"X\": 0.2790015637874603, \"Y\": 0.1734212040901184}, {\"X\": 0.2790015637874603, \"Y\": 0.18364129960536957}, {\"X\": 0.23121151328086853, \"Y\": 0.18364129960536957}]}, \"Id\": \"64dfa889-5a73-44d3-a6ac-116d97a562c6\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81822967529297, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057198017835617, \"Height\": 0.010194020345807076, \"Left\": 0.28369179368019104, \"Top\": 0.17344310879707336}, \"Polygon\": [{\"X\": 0.28369179368019104, \"Y\": 0.17344310879707336}, {\"X\": 0.3242637813091278, \"Y\": 0.17344310879707336}, {\"X\": 0.3242637813091278, \"Y\": 0.1836371272802353}, {\"X\": 0.28369179368019104, \"Y\": 0.1836371272802353}]}, \"Id\": \"0ae5ad3a-b017-4a20-bceb-0130851d83e1\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.92855834960938, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005593500100076199, \"Height\": 0.002374859992414713, \"Left\": 0.32881608605384827, \"Top\": 0.1783687323331833}, \"Polygon\": [{\"X\": 0.32881608605384827, \"Y\": 0.1783687323331833}, {\"X\": 0.33440959453582764, \"Y\": 0.1783687323331833}, {\"X\": 0.33440959453582764, \"Y\": 0.18074358999729156}, {\"X\": 0.32881608605384827, \"Y\": 0.18074358999729156}]}, \"Id\": \"27a46cc3-9e69-4fd4-b8fe-226eb5627fab\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 98.96704864501953, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09752187877893448, \"Height\": 0.010180789977312088, \"Left\": 0.33796781301498413, \"Top\": 0.17369796335697174}, \"Polygon\": [{\"X\": 0.33796781301498413, \"Y\": 0.17369796335697174}, {\"X\": 0.435489684343338, \"Y\": 0.17369796335697174}, {\"X\": 0.435489684343338, \"Y\": 0.18387874960899353}, {\"X\": 0.33796781301498413, \"Y\": 0.18387874960899353}]}, \"Id\": \"45544f87-ef11-441d-b0df-5487d259e604\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 95.45558166503906, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0060433801263570786, \"Height\": 0.0029702798929065466, \"Left\": 0.43764108419418335, \"Top\": 0.17818312346935272}, \"Polygon\": [{\"X\": 0.43764108419418335, \"Y\": 0.17818312346935272}, {\"X\": 0.443684458732605, \"Y\": 0.17818312346935272}, {\"X\": 0.443684458732605, \"Y\": 0.18115340173244476}, {\"X\": 0.43764108419418335, \"Y\": 0.18115340173244476}]}, \"Id\": \"fcae863a-4ff1-4db3-a2e1-c58d16b45df2\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58759307861328, \"Text\": \"7544350060\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09119659662246704, \"Height\": 0.010412289761006832, \"Left\": 0.4475361108779907, \"Top\": 0.1734170764684677}, \"Polygon\": [{\"X\": 0.4475361108779907, \"Y\": 0.1734170764684677}, {\"X\": 0.5387327075004578, \"Y\": 0.1734170764684677}, {\"X\": 0.5387327075004578, \"Y\": 0.18382936716079712}, {\"X\": 0.4475361108779907, \"Y\": 0.18382936716079712}]}, \"Id\": \"b3275a00-13e9-43ac-a6d7-306ac05b4b18\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48645782470703, \"Text\": \"-112\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03294060006737709, \"Height\": 0.009924249723553658, \"Left\": 0.744661271572113, \"Top\": 0.17369285225868225}, \"Polygon\": [{\"X\": 0.744661271572113, \"Y\": 0.17369285225868225}, {\"X\": 0.7776018977165222, \"Y\": 0.17369285225868225}, {\"X\": 0.7776018977165222, \"Y\": 0.18361710011959076}, {\"X\": 0.744661271572113, \"Y\": 0.18361710011959076}]}, \"Id\": \"2bb6e0d2-936b-4a13-88e7-a3410ef33baa\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3836441040039, \"Text\": \"9/27/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07776234298944473, \"Height\": 0.01305271964520216, \"Left\": 0.1354961097240448, \"Top\": 0.19209106266498566}, \"Polygon\": [{\"X\": 0.1354961097240448, \"Y\": 0.19209106266498566}, {\"X\": 0.21325844526290894, \"Y\": 0.19209106266498566}, {\"X\": 0.21325844526290894, \"Y\": 0.2051437795162201}, {\"X\": 0.1354961097240448, \"Y\": 0.2051437795162201}]}, \"Id\": \"c54cb157-c959-4480-a628-4983ac2641b0\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86338806152344, \"Text\": \"Online\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047753479331731796, \"Height\": 0.010189790278673172, \"Left\": 0.2312055230140686, \"Top\": 0.19302619993686676}, \"Polygon\": [{\"X\": 0.2312055230140686, \"Y\": 0.19302619993686676}, {\"X\": 0.2789590060710907, \"Y\": 0.19302619993686676}, {\"X\": 0.2789590060710907, \"Y\": 0.20321598649024963}, {\"X\": 0.2312055230140686, \"Y\": 0.20321598649024963}]}, \"Id\": \"573d97e7-b1cb-41ef-8712-fb533b3d8215\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81197357177734, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040687620639801025, \"Height\": 0.010155940428376198, \"Left\": 0.28371864557266235, \"Top\": 0.19304078817367554}, \"Polygon\": [{\"X\": 0.28371864557266235, \"Y\": 0.19304078817367554}, {\"X\": 0.3244062662124634, \"Y\": 0.19304078817367554}, {\"X\": 0.3244062662124634, \"Y\": 0.20319673418998718}, {\"X\": 0.28371864557266235, \"Y\": 0.20319673418998718}]}, \"Id\": \"64f4ef60-6836-407e-a452-36eb72e68325\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 95.55948638916016, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005585799925029278, \"Height\": 0.002277120016515255, \"Left\": 0.32879889011383057, \"Top\": 0.19788429141044617}, \"Polygon\": [{\"X\": 0.32879889011383057, \"Y\": 0.19788429141044617}, {\"X\": 0.3343847095966339, \"Y\": 0.19788429141044617}, {\"X\": 0.3343847095966339, \"Y\": 0.200161412358284}, {\"X\": 0.32879889011383057, \"Y\": 0.200161412358284}]}, \"Id\": \"f5d3f00b-f997-4121-950c-abe1e5dafd22\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42609405517578, \"Text\": \"Amazon.com\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09217514097690582, \"Height\": 0.01026154961436987, \"Left\": 0.33865275979042053, \"Top\": 0.19329091906547546}, \"Polygon\": [{\"X\": 0.33865275979042053, \"Y\": 0.19329091906547546}, {\"X\": 0.43082788586616516, \"Y\": 0.19329091906547546}, {\"X\": 0.43082788586616516, \"Y\": 0.2035524696111679}, {\"X\": 0.33865275979042053, \"Y\": 0.2035524696111679}]}, \"Id\": \"5df93852-be47-4acf-ba2e-66f1ea3856f9\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.94319152832031, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006035639904439449, \"Height\": 0.0029082600958645344, \"Left\": 0.4375464618206024, \"Top\": 0.19770561158657074}, \"Polygon\": [{\"X\": 0.4375464618206024, \"Y\": 0.19770561158657074}, {\"X\": 0.44358208775520325, \"Y\": 0.19770561158657074}, {\"X\": 0.44358208775520325, \"Y\": 0.200613871216774}, {\"X\": 0.4375464618206024, \"Y\": 0.200613871216774}]}, \"Id\": \"14ffca23-b3c8-45a8-b612-be1bc1591058\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.02770233154297, \"Text\": \"7673426647\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09103769063949585, \"Height\": 0.010393939912319183, \"Left\": 0.4476579427719116, \"Top\": 0.19293570518493652}, \"Polygon\": [{\"X\": 0.4476579427719116, \"Y\": 0.19293570518493652}, {\"X\": 0.5386956334114075, \"Y\": 0.19293570518493652}, {\"X\": 0.5386956334114075, \"Y\": 0.2033296376466751}, {\"X\": 0.4476579427719116, \"Y\": 0.2033296376466751}]}, \"Id\": \"2b94dd2b-4aca-4c4f-a911-ad438b1f3de5\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83064270019531, \"Text\": \"-4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01443140022456646, \"Height\": 0.009813309647142887, \"Left\": 0.7629349827766418, \"Top\": 0.1932983249425888}, \"Polygon\": [{\"X\": 0.7629349827766418, \"Y\": 0.1932983249425888}, {\"X\": 0.7773663997650146, \"Y\": 0.1932983249425888}, {\"X\": 0.7773663997650146, \"Y\": 0.20311163365840912}, {\"X\": 0.7629349827766418, \"Y\": 0.20311163365840912}]}, \"Id\": \"35172a9d-cdbb-4a82-839a-82df6c1792db\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46185302734375, \"Text\": \"8/22/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07752911746501923, \"Height\": 0.012940569780766964, \"Left\": 0.13576294481754303, \"Top\": 0.21173523366451263}, \"Polygon\": [{\"X\": 0.13576294481754303, \"Y\": 0.21173523366451263}, {\"X\": 0.21329206228256226, \"Y\": 0.21173523366451263}, {\"X\": 0.21329206228256226, \"Y\": 0.22467580437660217}, {\"X\": 0.13576294481754303, \"Y\": 0.22467580437660217}]}, \"Id\": \"2775595c-24aa-4359-b307-34cffb0089e7\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14366149902344, \"Text\": \"Transport\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0721629410982132, \"Height\": 0.0122884102165699, \"Left\": 0.229874387383461, \"Top\": 0.21272121369838715}, \"Polygon\": [{\"X\": 0.229874387383461, \"Y\": 0.21272121369838715}, {\"X\": 0.3020373284816742, \"Y\": 0.21272121369838715}, {\"X\": 0.3020373284816742, \"Y\": 0.22500962018966675}, {\"X\": 0.229874387383461, \"Y\": 0.22500962018966675}]}, \"Id\": \"5780a7e3-3f92-44c5-b059-85d648479959\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.53672790527344, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005792149808257818, \"Height\": 0.00234734988771379, \"Left\": 0.30651402473449707, \"Top\": 0.21751302480697632}, \"Polygon\": [{\"X\": 0.30651402473449707, \"Y\": 0.21751302480697632}, {\"X\": 0.31230616569519043, \"Y\": 0.21751302480697632}, {\"X\": 0.31230616569519043, \"Y\": 0.21986037492752075}, {\"X\": 0.30651402473449707, \"Y\": 0.21986037492752075}]}, \"Id\": \"c40d4a5f-b4e1-4615-a7a6-e181d743aa50\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 98.39435577392578, \"Text\": \"Uber\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03660833090543747, \"Height\": 0.010217489674687386, \"Left\": 0.31674227118492126, \"Top\": 0.21254786849021912}, \"Polygon\": [{\"X\": 0.31674227118492126, \"Y\": 0.21254786849021912}, {\"X\": 0.35335060954093933, \"Y\": 0.21254786849021912}, {\"X\": 0.35335060954093933, \"Y\": 0.22276535630226135}, {\"X\": 0.31674227118492126, \"Y\": 0.22276535630226135}]}, \"Id\": \"267ff1cd-e269-47a4-9bd6-7253bb7a28af\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.70244598388672, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00580117991194129, \"Height\": 0.0025420200545340776, \"Left\": 0.35645321011543274, \"Top\": 0.2173948436975479}, \"Polygon\": [{\"X\": 0.35645321011543274, \"Y\": 0.2173948436975479}, {\"X\": 0.36225438117980957, \"Y\": 0.2173948436975479}, {\"X\": 0.36225438117980957, \"Y\": 0.21993686258792877}, {\"X\": 0.35645321011543274, \"Y\": 0.21993686258792877}]}, \"Id\": \"ada87833-7439-40ed-9f02-7814d15c8089\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36643981933594, \"Text\": \"7686595684\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09100212901830673, \"Height\": 0.01066594012081623, \"Left\": 0.36566346883773804, \"Top\": 0.21222013235092163}, \"Polygon\": [{\"X\": 0.36566346883773804, \"Y\": 0.21222013235092163}, {\"X\": 0.45666560530662537, \"Y\": 0.21222013235092163}, {\"X\": 0.45666560530662537, \"Y\": 0.2228860706090927}, {\"X\": 0.36566346883773804, \"Y\": 0.2228860706090927}]}, \"Id\": \"e41cfb5b-4859-45c9-9f83-e660c64a32e5\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74999237060547, \"Text\": \"-57\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023346740752458572, \"Height\": 0.010051700286567211, \"Left\": 0.7540624141693115, \"Top\": 0.21272699534893036}, \"Polygon\": [{\"X\": 0.7540624141693115, \"Y\": 0.21272699534893036}, {\"X\": 0.7774091362953186, \"Y\": 0.21272699534893036}, {\"X\": 0.7774091362953186, \"Y\": 0.22277869284152985}, {\"X\": 0.7540624141693115, \"Y\": 0.22277869284152985}]}, \"Id\": \"d879f428-cdef-41ff-b7e4-251340903219\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 75.90128326416016, \"Text\": \"10/9/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07722049206495285, \"Height\": 0.01279440987855196, \"Left\": 0.1364402025938034, \"Top\": 0.23139050602912903}, \"Polygon\": [{\"X\": 0.1364402025938034, \"Y\": 0.23139050602912903}, {\"X\": 0.21366068720817566, \"Y\": 0.23139050602912903}, {\"X\": 0.21366068720817566, \"Y\": 0.24418491125106812}, {\"X\": 0.1364402025938034, \"Y\": 0.24418491125106812}]}, \"Id\": \"74669150-5a66-4fe1-ba30-ce168dedb49a\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91242218017578, \"Text\": \"Food\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03566436842083931, \"Height\": 0.010249029844999313, \"Left\": 0.23187853395938873, \"Top\": 0.23198851943016052}, \"Polygon\": [{\"X\": 0.23187853395938873, \"Y\": 0.23198851943016052}, {\"X\": 0.26754289865493774, \"Y\": 0.23198851943016052}, {\"X\": 0.26754289865493774, \"Y\": 0.24223755300045013}, {\"X\": 0.23187853395938873, \"Y\": 0.24223755300045013}]}, \"Id\": \"0924f38f-2332-47e1-b4e2-fa7e4ff4fec6\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6280517578125, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06666599959135056, \"Height\": 0.010256079956889153, \"Left\": 0.27157509326934814, \"Top\": 0.23202481865882874}, \"Polygon\": [{\"X\": 0.27157509326934814, \"Y\": 0.23202481865882874}, {\"X\": 0.3382411003112793, \"Y\": 0.23202481865882874}, {\"X\": 0.3382411003112793, \"Y\": 0.24228090047836304}, {\"X\": 0.27157509326934814, \"Y\": 0.24228090047836304}]}, \"Id\": \"37673b02-296b-4021-b98a-94a973cc0735\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.6422348022461, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005707580130547285, \"Height\": 0.002323240041732788, \"Left\": 0.34264108538627625, \"Top\": 0.23709067702293396}, \"Polygon\": [{\"X\": 0.34264108538627625, \"Y\": 0.23709067702293396}, {\"X\": 0.3483486771583557, \"Y\": 0.23709067702293396}, {\"X\": 0.3483486771583557, \"Y\": 0.23941391706466675}, {\"X\": 0.34264108538627625, \"Y\": 0.23941391706466675}]}, \"Id\": \"c41524dc-dbc1-4818-bbeb-17e2dc06402e\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85273742675781, \"Text\": \"McDonalds\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08148130774497986, \"Height\": 0.010409969836473465, \"Left\": 0.3527110517024994, \"Top\": 0.2319590300321579}, \"Polygon\": [{\"X\": 0.3527110517024994, \"Y\": 0.2319590300321579}, {\"X\": 0.43419235944747925, \"Y\": 0.2319590300321579}, {\"X\": 0.43419235944747925, \"Y\": 0.24236899614334106}, {\"X\": 0.3527110517024994, \"Y\": 0.24236899614334106}]}, \"Id\": \"256805bc-5831-4999-a3a6-975086dc3989\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.2839584350586, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005625090096145868, \"Height\": 0.0029976500663906336, \"Left\": 0.43835246562957764, \"Top\": 0.2367665022611618}, \"Polygon\": [{\"X\": 0.43835246562957764, \"Y\": 0.2367665022611618}, {\"X\": 0.44397756457328796, \"Y\": 0.2367665022611618}, {\"X\": 0.44397756457328796, \"Y\": 0.23976415395736694}, {\"X\": 0.43835246562957764, \"Y\": 0.23976415395736694}]}, \"Id\": \"e4bfb4ea-9b44-4fa3-aa3e-b2355c520bcf\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.21353149414062, \"Text\": \"7779261930\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09113182872533798, \"Height\": 0.010413380339741707, \"Left\": 0.44820016622543335, \"Top\": 0.23205065727233887}, \"Polygon\": [{\"X\": 0.44820016622543335, \"Y\": 0.23205065727233887}, {\"X\": 0.5393319725990295, \"Y\": 0.23205065727233887}, {\"X\": 0.5393319725990295, \"Y\": 0.24246403574943542}, {\"X\": 0.44820016622543335, \"Y\": 0.24246403574943542}]}, \"Id\": \"4a6beabe-5048-4135-81ee-5eca18709ebf\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85516357421875, \"Text\": \"-64\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02315020002424717, \"Height\": 0.009808029979467392, \"Left\": 0.7542034387588501, \"Top\": 0.23239348828792572}, \"Polygon\": [{\"X\": 0.7542034387588501, \"Y\": 0.23239348828792572}, {\"X\": 0.7773536443710327, \"Y\": 0.23239348828792572}, {\"X\": 0.7773536443710327, \"Y\": 0.2422015219926834}, {\"X\": 0.7542034387588501, \"Y\": 0.2422015219926834}]}, \"Id\": \"e5ebcd8d-d6d4-4559-b5ba-87d1ba8d57c9\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66636657714844, \"Text\": \"8/31/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07730977982282639, \"Height\": 0.012866309843957424, \"Left\": 0.13615809381008148, \"Top\": 0.25085532665252686}, \"Polygon\": [{\"X\": 0.13615809381008148, \"Y\": 0.25085532665252686}, {\"X\": 0.21346788108348846, \"Y\": 0.25085532665252686}, {\"X\": 0.21346788108348846, \"Y\": 0.26372164487838745}, {\"X\": 0.13615809381008148, \"Y\": 0.26372164487838745}]}, \"Id\": \"3d025120-683f-4527-907a-5ef343633586\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89038848876953, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040310319513082504, \"Height\": 0.010243000462651253, \"Left\": 0.23199784755706787, \"Top\": 0.25151047110557556}, \"Polygon\": [{\"X\": 0.23199784755706787, \"Y\": 0.25151047110557556}, {\"X\": 0.2723081707954407, \"Y\": 0.25151047110557556}, {\"X\": 0.2723081707954407, \"Y\": 0.26175346970558167}, {\"X\": 0.23199784755706787, \"Y\": 0.26175346970558167}]}, \"Id\": \"f61441b5-1a61-41e1-bfb7-f83f44bb0cfa\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68658447265625, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06693518161773682, \"Height\": 0.01029300969094038, \"Left\": 0.2766517996788025, \"Top\": 0.2515103220939636}, \"Polygon\": [{\"X\": 0.2766517996788025, \"Y\": 0.2515103220939636}, {\"X\": 0.3435869812965393, \"Y\": 0.2515103220939636}, {\"X\": 0.3435869812965393, \"Y\": 0.2618033289909363}, {\"X\": 0.2766517996788025, \"Y\": 0.2618033289909363}]}, \"Id\": \"1f33181e-7ab8-4a7b-ab05-b7413858189b\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.30213165283203, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0058520701713860035, \"Height\": 0.002467379905283451, \"Left\": 0.3514346778392792, \"Top\": 0.2565911114215851}, \"Polygon\": [{\"X\": 0.3514346778392792, \"Y\": 0.2565911114215851}, {\"X\": 0.3572867512702942, \"Y\": 0.2565911114215851}, {\"X\": 0.3572867512702942, \"Y\": 0.25905847549438477}, {\"X\": 0.3514346778392792, \"Y\": 0.25905847549438477}]}, \"Id\": \"f6f9150c-3b21-4071-8168-f301c6c3388e\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55326080322266, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05974709987640381, \"Height\": 0.010274330154061317, \"Left\": 0.3609132766723633, \"Top\": 0.251390665769577}, \"Polygon\": [{\"X\": 0.3609132766723633, \"Y\": 0.251390665769577}, {\"X\": 0.4206603765487671, \"Y\": 0.251390665769577}, {\"X\": 0.4206603765487671, \"Y\": 0.2616649866104126}, {\"X\": 0.3609132766723633, \"Y\": 0.2616649866104126}]}, \"Id\": \"98c214c6-b253-44b2-87a9-ac5607ae79af\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.95004272460938, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005762959830462933, \"Height\": 0.003069190075621009, \"Left\": 0.4243120551109314, \"Top\": 0.25630974769592285}, \"Polygon\": [{\"X\": 0.4243120551109314, \"Y\": 0.25630974769592285}, {\"X\": 0.4300750195980072, \"Y\": 0.25630974769592285}, {\"X\": 0.4300750195980072, \"Y\": 0.25937893986701965}, {\"X\": 0.4243120551109314, \"Y\": 0.25937893986701965}]}, \"Id\": \"cb552b60-a97e-4f1b-b0bf-c5dc4d6f3931\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42051696777344, \"Text\": \"8158060902\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.091392882168293, \"Height\": 0.010471110232174397, \"Left\": 0.4338531196117401, \"Top\": 0.2515702545642853}, \"Polygon\": [{\"X\": 0.4338531196117401, \"Y\": 0.2515702545642853}, {\"X\": 0.5252460241317749, \"Y\": 0.2515702545642853}, {\"X\": 0.5252460241317749, \"Y\": 0.2620413601398468}, {\"X\": 0.4338531196117401, \"Y\": 0.2620413601398468}]}, \"Id\": \"8f7b8b17-891a-4eb9-84f1-a6c3fb3fd570\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 96.7156753540039, \"Text\": \"-95\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02390424907207489, \"Height\": 0.0099124601110816, \"Left\": 0.7533542513847351, \"Top\": 0.251878023147583}, \"Polygon\": [{\"X\": 0.7533542513847351, \"Y\": 0.251878023147583}, {\"X\": 0.7772585153579712, \"Y\": 0.251878023147583}, {\"X\": 0.7772585153579712, \"Y\": 0.2617904841899872}, {\"X\": 0.7533542513847351, \"Y\": 0.2617904841899872}]}, \"Id\": \"a415011d-5ca6-4e99-8ef5-432d350080ad\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37860107421875, \"Text\": \"4/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06918329745531082, \"Height\": 0.013031220063567162, \"Left\": 0.1445496380329132, \"Top\": 0.27066367864608765}, \"Polygon\": [{\"X\": 0.1445496380329132, \"Y\": 0.27066367864608765}, {\"X\": 0.21373294293880463, \"Y\": 0.27066367864608765}, {\"X\": 0.21373294293880463, \"Y\": 0.28369489312171936}, {\"X\": 0.1445496380329132, \"Y\": 0.28369489312171936}]}, \"Id\": \"1e6db73b-cc0d-4875-a02a-247f6397d490\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84673309326172, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0400555394589901, \"Height\": 0.010265960358083248, \"Left\": 0.23204725980758667, \"Top\": 0.27125653624534607}, \"Polygon\": [{\"X\": 0.23204725980758667, \"Y\": 0.27125653624534607}, {\"X\": 0.27210280299186707, \"Y\": 0.27125653624534607}, {\"X\": 0.27210280299186707, \"Y\": 0.2815225124359131}, {\"X\": 0.23204725980758667, \"Y\": 0.2815225124359131}]}, \"Id\": \"4b78560b-b5e1-4cc7-842b-1aa8852598d6\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67028045654297, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06711091846227646, \"Height\": 0.010336699895560741, \"Left\": 0.27665069699287415, \"Top\": 0.27124208211898804}, \"Polygon\": [{\"X\": 0.27665069699287415, \"Y\": 0.27124208211898804}, {\"X\": 0.3437616229057312, \"Y\": 0.27124208211898804}, {\"X\": 0.3437616229057312, \"Y\": 0.28157877922058105}, {\"X\": 0.27665069699287415, \"Y\": 0.28157877922058105}]}, \"Id\": \"065c3582-99d0-4322-b42a-fa736dd099e6\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.93539428710938, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005765900015830994, \"Height\": 0.002521499991416931, \"Left\": 0.35149911046028137, \"Top\": 0.276194304227829}, \"Polygon\": [{\"X\": 0.35149911046028137, \"Y\": 0.276194304227829}, {\"X\": 0.35726499557495117, \"Y\": 0.276194304227829}, {\"X\": 0.35726499557495117, \"Y\": 0.2787157893180847}, {\"X\": 0.35149911046028137, \"Y\": 0.2787157893180847}]}, \"Id\": \"4381cd8b-0a9d-4f91-8be4-4156d035149d\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68731689453125, \"Text\": \"Sobeys\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05130729079246521, \"Height\": 0.012944339774549007, \"Left\": 0.36147862672805786, \"Top\": 0.2709953188896179}, \"Polygon\": [{\"X\": 0.36147862672805786, \"Y\": 0.2709953188896179}, {\"X\": 0.41278591752052307, \"Y\": 0.2709953188896179}, {\"X\": 0.41278591752052307, \"Y\": 0.2839396595954895}, {\"X\": 0.36147862672805786, \"Y\": 0.2839396595954895}]}, \"Id\": \"904fc63e-cdeb-433c-998c-623947b2df39\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.43991088867188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005885300226509571, \"Height\": 0.0031206700950860977, \"Left\": 0.4164554178714752, \"Top\": 0.2758735120296478}, \"Polygon\": [{\"X\": 0.4164554178714752, \"Y\": 0.2758735120296478}, {\"X\": 0.4223407208919525, \"Y\": 0.2758735120296478}, {\"X\": 0.4223407208919525, \"Y\": 0.2789941728115082}, {\"X\": 0.4164554178714752, \"Y\": 0.2789941728115082}]}, \"Id\": \"72c2c1af-26bf-45d1-ba7f-bfeccba7fa63\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 98.15132904052734, \"Text\": \"8403287221\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09058911353349686, \"Height\": 0.010632489807903767, \"Left\": 0.4260132312774658, \"Top\": 0.2711881399154663}, \"Polygon\": [{\"X\": 0.4260132312774658, \"Y\": 0.2711881399154663}, {\"X\": 0.5166023373603821, \"Y\": 0.2711881399154663}, {\"X\": 0.5166023373603821, \"Y\": 0.2818206250667572}, {\"X\": 0.4260132312774658, \"Y\": 0.2818206250667572}]}, \"Id\": \"e8f932fa-82da-4130-a146-8e877436385b\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4859619140625, \"Text\": \"-242\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03234324976801872, \"Height\": 0.009803029708564281, \"Left\": 0.7450992465019226, \"Top\": 0.2715027332305908}, \"Polygon\": [{\"X\": 0.7450992465019226, \"Y\": 0.2715027332305908}, {\"X\": 0.7774425148963928, \"Y\": 0.2715027332305908}, {\"X\": 0.7774425148963928, \"Y\": 0.2813057601451874}, {\"X\": 0.7450992465019226, \"Y\": 0.2813057601451874}]}, \"Id\": \"2d3f4997-3700-446c-a5c8-8f254c792fe5\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49118041992188, \"Text\": \"6/6/2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06879012286663055, \"Height\": 0.013033660128712654, \"Left\": 0.14475849270820618, \"Top\": 0.29011982679367065}, \"Polygon\": [{\"X\": 0.14475849270820618, \"Y\": 0.29011982679367065}, {\"X\": 0.21354861557483673, \"Y\": 0.29011982679367065}, {\"X\": 0.21354861557483673, \"Y\": 0.30315348505973816}, {\"X\": 0.14475849270820618, \"Y\": 0.30315348505973816}]}, \"Id\": \"c4b9dd21-19d0-49cc-b6fb-8c940e1031fb\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8770523071289, \"Text\": \"Retail\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04027748107910156, \"Height\": 0.010138270445168018, \"Left\": 0.231943279504776, \"Top\": 0.29090777039527893}, \"Polygon\": [{\"X\": 0.231943279504776, \"Y\": 0.29090777039527893}, {\"X\": 0.27222076058387756, \"Y\": 0.29090777039527893}, {\"X\": 0.27222076058387756, \"Y\": 0.3010460436344147}, {\"X\": 0.231943279504776, \"Y\": 0.3010460436344147}]}, \"Id\": \"c2825954-7635-4d60-9b79-a777cbdc4aaa\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6580810546875, \"Text\": \"Purchase\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06671477109193802, \"Height\": 0.01040646992623806, \"Left\": 0.276756227016449, \"Top\": 0.2906557321548462}, \"Polygon\": [{\"X\": 0.276756227016449, \"Y\": 0.2906557321548462}, {\"X\": 0.3434709906578064, \"Y\": 0.2906557321548462}, {\"X\": 0.3434709906578064, \"Y\": 0.3010621964931488}, {\"X\": 0.276756227016449, \"Y\": 0.3010621964931488}]}, \"Id\": \"68778abb-f600-4f1a-9cbf-6d5978a5a268\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.8847427368164, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005790300201624632, \"Height\": 0.00243668002076447, \"Left\": 0.35168400406837463, \"Top\": 0.29584622383117676}, \"Polygon\": [{\"X\": 0.35168400406837463, \"Y\": 0.29584622383117676}, {\"X\": 0.35747429728507996, \"Y\": 0.29584622383117676}, {\"X\": 0.35747429728507996, \"Y\": 0.2982828915119171}, {\"X\": 0.35168400406837463, \"Y\": 0.2982828915119171}]}, \"Id\": \"63568437-0e0f-4eb7-b99d-67252c2cacbb\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63289642333984, \"Text\": \"Loblaws\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05896059051156044, \"Height\": 0.010560399852693081, \"Left\": 0.3614928722381592, \"Top\": 0.2905474901199341}, \"Polygon\": [{\"X\": 0.3614928722381592, \"Y\": 0.2905474901199341}, {\"X\": 0.4204534590244293, \"Y\": 0.2905474901199341}, {\"X\": 0.4204534590244293, \"Y\": 0.30110791325569153}, {\"X\": 0.3614928722381592, \"Y\": 0.30110791325569153}]}, \"Id\": \"0c36ac59-3808-4d7a-b26a-ca6adbbf0a90\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.70024108886719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005306260194629431, \"Height\": 0.002614550059661269, \"Left\": 0.42458033561706543, \"Top\": 0.2957617938518524}, \"Polygon\": [{\"X\": 0.42458033561706543, \"Y\": 0.2957617938518524}, {\"X\": 0.4298866093158722, \"Y\": 0.2957617938518524}, {\"X\": 0.4298866093158722, \"Y\": 0.2983763515949249}, {\"X\": 0.42458033561706543, \"Y\": 0.2983763515949249}]}, \"Id\": \"1ebe079d-b8ab-40cb-87d9-6ea38fbf508d\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36898040771484, \"Text\": \"8408401968\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09188228100538254, \"Height\": 0.010551899671554565, \"Left\": 0.4334533214569092, \"Top\": 0.2908298075199127}, \"Polygon\": [{\"X\": 0.4334533214569092, \"Y\": 0.2908298075199127}, {\"X\": 0.5253356099128723, \"Y\": 0.2908298075199127}, {\"X\": 0.5253356099128723, \"Y\": 0.3013817071914673}, {\"X\": 0.4334533214569092, \"Y\": 0.3013817071914673}]}, \"Id\": \"20cab965-01bd-445d-9ce7-252f22d47aa7\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 98.81950378417969, \"Text\": \"-234\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03292768821120262, \"Height\": 0.010065140202641487, \"Left\": 0.7446840405464172, \"Top\": 0.29102176427841187}, \"Polygon\": [{\"X\": 0.7446840405464172, \"Y\": 0.29102176427841187}, {\"X\": 0.7776117324829102, \"Y\": 0.29102176427841187}, {\"X\": 0.7776117324829102, \"Y\": 0.3010869026184082}, {\"X\": 0.7446840405464172, \"Y\": 0.3010869026184082}]}, \"Id\": \"e12473d6-fab3-4c05-ab53-59ed859cb4ea\", \"Page\": 3}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.99076080322266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6696476340293884, \"Height\": 0.215739905834198, \"Left\": 0.1174735575914383, \"Top\": 0.0908224880695343}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.0908224880695343}, {\"X\": 0.7871211767196655, \"Y\": 0.0908224880695343}, {\"X\": 0.7871211767196655, \"Y\": 0.3065623939037323}, {\"X\": 0.1174735575914383, \"Y\": 0.3065623939037323}]}, \"Id\": \"e0368543-c9c3-4616-bd6c-f25e66c859b2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8874f03-6f84-4113-8603-ff651209fffa\", \"ed0d04c9-5bc8-42c3-a83b-4779d976445b\", \"869619e2-5240-46a1-b34e-32178a22e3b1\", \"f3870dbd-e3de-4bf2-9e8f-369e1464e5f9\", \"bcaf08d5-9a99-4260-94ae-0bae96dd3cde\", \"654b8509-30cf-4206-b2b1-7e5cdea04d4f\", \"d01d2489-5a8e-44c8-8a3c-da283930d666\", \"3868af18-2634-47d8-80f6-062243e88e27\", \"02e1ab28-532d-46c9-b52f-45cc0d1f0fde\", \"7b80ea8f-3564-491e-b302-d564efbbc19f\", \"38bedec0-76a7-4b19-9f08-5e92f16f90d9\", \"c5919258-e24c-4fd6-bad6-441c7fa532c8\", \"4f546689-0393-4485-99a1-eb31cab9dd44\", \"1a1dad5d-2dc2-4fb0-83d1-2755de7dcfb1\", \"ced1352c-7651-479c-8c14-b1d2b2848055\", \"f3cf5f86-e41c-4f27-afe4-bba71dc09a67\", \"016e8776-37bf-4cec-9a22-9b7a40b0572d\", \"a0664433-3972-4af5-8808-6e3aa6466815\", \"3cb0d7b8-3ae5-4d76-b463-27a443bb2ca4\", \"c156b983-6803-4cb7-81c7-571bd7beec95\", \"9d33ba8e-c5bf-42c1-a546-0b5bb564c05d\", \"4c64afc9-fa77-44d1-8bff-a85cd6e3f65c\", \"11ae0eea-8850-4520-86a4-819fa25f01c7\", \"0d8a82ad-10af-41a7-b43a-c7d307de5110\", \"8f75d035-3970-48b5-9f83-a2fe8317279e\", \"fc0c7171-639d-4796-a45b-e0ce1101de29\", \"98fabae4-3ed8-4844-a268-e7ca51261a62\", \"3704661d-196f-4f19-b59e-442e3a7e2122\", \"f6973d1c-4e7f-44f9-8032-0089ecbdcf78\", \"0a338d45-9433-4cf1-a0c2-b843d95d4dc2\", \"9f0503a3-bd23-45a3-90e2-4eec1ee4c2d5\", \"4e791efc-a0b3-4a4e-9a65-2f5522baa135\", \"1c1ecb8e-a2d0-472c-be3a-32f1c39005d0\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 96.44819641113281, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890910014510155, \"Left\": 0.1174735575914383, \"Top\": 0.0908224880695343}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.0908224880695343}, {\"X\": 0.22329051792621613, \"Y\": 0.0908224880695343}, {\"X\": 0.22329051792621613, \"Y\": 0.1107133999466896}, {\"X\": 0.1174735575914383, \"Y\": 0.1107133999466896}]}, \"Id\": \"f8874f03-6f84-4113-8603-ff651209fffa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c8afbe08-abfd-4513-bbbb-310bf9e6a708\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.05615234375, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890910014510155, \"Left\": 0.22329050302505493, \"Top\": 0.0908224880695343}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.0908224880695343}, {\"X\": 0.5754872560501099, \"Y\": 0.0908224880695343}, {\"X\": 0.5754872560501099, \"Y\": 0.1107133999466896}, {\"X\": 0.22329050302505493, \"Y\": 0.1107133999466896}]}, \"Id\": \"ed0d04c9-5bc8-42c3-a83b-4779d976445b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dd98bf8c-683a-4411-b8de-a5b5e5b7ce4b\", \"efb39e69-772c-4702-b0c4-3891573da98b\", \"7647fe67-713f-4f65-b1e5-472e5fec5b9f\", \"2fe54222-5059-4bb8-b1d8-a0291c211894\", \"4554d0f3-a55c-4695-83e5-40d8ff1ae87b\", \"41b6475b-3a8d-4075-b0d2-a2ff5ce1b402\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 97.0098876953125, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890910014510155, \"Left\": 0.5754872560501099, \"Top\": 0.0908224880695343}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.0908224880695343}, {\"X\": 0.7871211767196655, \"Y\": 0.0908224880695343}, {\"X\": 0.7871211767196655, \"Y\": 0.1107133999466896}, {\"X\": 0.5754872560501099, \"Y\": 0.1107133999466896}]}, \"Id\": \"869619e2-5240-46a1-b34e-32178a22e3b1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f4a826a3-58ad-44be-93ef-acf732496172\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.09449768066406, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890910014510155, \"Left\": 0.1174735575914383, \"Top\": 0.1107133999466896}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.1107133999466896}, {\"X\": 0.22329051792621613, \"Y\": 0.1107133999466896}, {\"X\": 0.22329051792621613, \"Y\": 0.1306043118238449}, {\"X\": 0.1174735575914383, \"Y\": 0.1306043118238449}]}, \"Id\": \"f3870dbd-e3de-4bf2-9e8f-369e1464e5f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bce28ed4-84b3-4d93-96ae-7d15580ec3ad\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.7383804321289, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890910014510155, \"Left\": 0.22329050302505493, \"Top\": 0.1107133999466896}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.1107133999466896}, {\"X\": 0.5754872560501099, \"Y\": 0.1107133999466896}, {\"X\": 0.5754872560501099, \"Y\": 0.1306043118238449}, {\"X\": 0.22329050302505493, \"Y\": 0.1306043118238449}]}, \"Id\": \"bcaf08d5-9a99-4260-94ae-0bae96dd3cde\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d8a5ccd6-c9f3-4806-a2c2-9fb9f0c3e6d7\", \"944ccf43-60be-459d-820f-c310452569bb\", \"91df3815-f0cd-40c4-b41e-53510d4e4cb3\", \"ed9d1049-4d8f-4de0-98dd-0143de767216\", \"230c8e93-c7a7-4499-b3f1-0753412dfe1a\", \"b64ee7d3-4ae7-4bce-92b2-a2d44305885b\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.55652618408203, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890910014510155, \"Left\": 0.5754872560501099, \"Top\": 0.1107133999466896}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.1107133999466896}, {\"X\": 0.7871211767196655, \"Y\": 0.1107133999466896}, {\"X\": 0.7871211767196655, \"Y\": 0.1306043118238449}, {\"X\": 0.5754872560501099, \"Y\": 0.1306043118238449}]}, \"Id\": \"654b8509-30cf-4206-b2b1-7e5cdea04d4f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b0d0996b-4d13-4ddf-a935-e5b637c94006\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.12942504882812, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890910014510155, \"Left\": 0.1174735575914383, \"Top\": 0.1306043118238449}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.1306043118238449}, {\"X\": 0.22329051792621613, \"Y\": 0.1306043118238449}, {\"X\": 0.22329051792621613, \"Y\": 0.15049521625041962}, {\"X\": 0.1174735575914383, \"Y\": 0.15049521625041962}]}, \"Id\": \"d01d2489-5a8e-44c8-8a3c-da283930d666\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"90a31ab3-0b68-4c5a-9283-239837c9090e\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.469482421875, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890910014510155, \"Left\": 0.22329050302505493, \"Top\": 0.1306043118238449}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.1306043118238449}, {\"X\": 0.5754872560501099, \"Y\": 0.1306043118238449}, {\"X\": 0.5754872560501099, \"Y\": 0.15049521625041962}, {\"X\": 0.22329050302505493, \"Y\": 0.15049521625041962}]}, \"Id\": \"3868af18-2634-47d8-80f6-062243e88e27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2304c92d-602f-4eb1-8429-2c660f3613bf\", \"2b3f05b0-166e-4615-8901-54237063f165\", \"51c23298-ada8-47a8-b2da-bbe068675f27\", \"a86c0fda-2f26-4a85-a06b-c76778378462\", \"57e37d06-18f9-433a-aff1-607ca1b4e752\", \"4e9c17a9-6a8b-4b40-833a-34cfddcf5c43\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.143310546875, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890910014510155, \"Left\": 0.5754872560501099, \"Top\": 0.1306043118238449}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.1306043118238449}, {\"X\": 0.7871211767196655, \"Y\": 0.1306043118238449}, {\"X\": 0.7871211767196655, \"Y\": 0.15049521625041962}, {\"X\": 0.5754872560501099, \"Y\": 0.15049521625041962}]}, \"Id\": \"02e1ab28-532d-46c9-b52f-45cc0d1f0fde\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc8219a5-5e52-4e43-bb61-aa64c81fabda\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.39256286621094, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.018870869651436806, \"Left\": 0.1174735575914383, \"Top\": 0.15049521625041962}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.15049521625041962}, {\"X\": 0.22329051792621613, \"Y\": 0.15049521625041962}, {\"X\": 0.22329051792621613, \"Y\": 0.16936609148979187}, {\"X\": 0.1174735575914383, \"Y\": 0.16936609148979187}]}, \"Id\": \"7b80ea8f-3564-491e-b302-d564efbbc19f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7bbeb766-9822-4529-a94e-4f30045db4d9\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.46368408203125, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.018870869651436806, \"Left\": 0.22329050302505493, \"Top\": 0.15049521625041962}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.15049521625041962}, {\"X\": 0.5754872560501099, \"Y\": 0.15049521625041962}, {\"X\": 0.5754872560501099, \"Y\": 0.16936609148979187}, {\"X\": 0.22329050302505493, \"Y\": 0.16936609148979187}]}, \"Id\": \"38bedec0-76a7-4b19-9f08-5e92f16f90d9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ff165682-9b73-43c7-88fb-02962d99649f\", \"f76e6b40-6f96-4772-aa6a-2f55f59fc9e2\", \"66f960ac-14f0-448b-a01f-0a4130e75a10\", \"9ab20a74-b144-4589-bac2-e9d70e6f1694\", \"ea51fa83-b68e-4bca-a9a6-4c7f5ebc55ab\", \"ad193116-9f91-4d5a-8665-0d593e1ff9c4\", \"db001a00-2d0a-40ae-b3d1-19487be83234\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.25318145751953, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.018870869651436806, \"Left\": 0.5754872560501099, \"Top\": 0.15049521625041962}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.15049521625041962}, {\"X\": 0.7871211767196655, \"Y\": 0.15049521625041962}, {\"X\": 0.7871211767196655, \"Y\": 0.16936609148979187}, {\"X\": 0.5754872560501099, \"Y\": 0.16936609148979187}]}, \"Id\": \"c5919258-e24c-4fd6-bad6-441c7fa532c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1bf50d0b-5254-4a8c-b989-eda52b6c9435\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.44904327392578, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890930503606796, \"Left\": 0.1174735575914383, \"Top\": 0.16936609148979187}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.16936609148979187}, {\"X\": 0.22329051792621613, \"Y\": 0.16936609148979187}, {\"X\": 0.22329051792621613, \"Y\": 0.18925702571868896}, {\"X\": 0.1174735575914383, \"Y\": 0.18925702571868896}]}, \"Id\": \"4f546689-0393-4485-99a1-eb31cab9dd44\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5dacdbc3-0817-46d9-91c2-deed5483f07a\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.57748413085938, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890930503606796, \"Left\": 0.22329050302505493, \"Top\": 0.16936609148979187}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.16936609148979187}, {\"X\": 0.5754872560501099, \"Y\": 0.16936609148979187}, {\"X\": 0.5754872560501099, \"Y\": 0.18925702571868896}, {\"X\": 0.22329050302505493, \"Y\": 0.18925702571868896}]}, \"Id\": \"1a1dad5d-2dc2-4fb0-83d1-2755de7dcfb1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"64dfa889-5a73-44d3-a6ac-116d97a562c6\", \"0ae5ad3a-b017-4a20-bceb-0130851d83e1\", \"27a46cc3-9e69-4fd4-b8fe-226eb5627fab\", \"45544f87-ef11-441d-b0df-5487d259e604\", \"fcae863a-4ff1-4db3-a2e1-c58d16b45df2\", \"b3275a00-13e9-43ac-a6d7-306ac05b4b18\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.5674057006836, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890930503606796, \"Left\": 0.5754872560501099, \"Top\": 0.16936609148979187}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.16936609148979187}, {\"X\": 0.7871211767196655, \"Y\": 0.16936609148979187}, {\"X\": 0.7871211767196655, \"Y\": 0.18925702571868896}, {\"X\": 0.5754872560501099, \"Y\": 0.18925702571868896}]}, \"Id\": \"ced1352c-7651-479c-8c14-b1d2b2848055\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2bb6e0d2-936b-4a13-88e7-a3410ef33baa\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.13263702392578, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019380880519747734, \"Left\": 0.1174735575914383, \"Top\": 0.18925702571868896}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.18925702571868896}, {\"X\": 0.22329051792621613, \"Y\": 0.18925702571868896}, {\"X\": 0.22329051792621613, \"Y\": 0.20863790810108185}, {\"X\": 0.1174735575914383, \"Y\": 0.20863790810108185}]}, \"Id\": \"f3cf5f86-e41c-4f27-afe4-bba71dc09a67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c54cb157-c959-4480-a628-4983ac2641b0\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.6322250366211, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019380880519747734, \"Left\": 0.22329050302505493, \"Top\": 0.18925702571868896}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.18925702571868896}, {\"X\": 0.5754872560501099, \"Y\": 0.18925702571868896}, {\"X\": 0.5754872560501099, \"Y\": 0.20863790810108185}, {\"X\": 0.22329050302505493, \"Y\": 0.20863790810108185}]}, \"Id\": \"016e8776-37bf-4cec-9a22-9b7a40b0572d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"573d97e7-b1cb-41ef-8712-fb533b3d8215\", \"64f4ef60-6836-407e-a452-36eb72e68325\", \"f5d3f00b-f997-4121-950c-abe1e5dafd22\", \"5df93852-be47-4acf-ba2e-66f1ea3856f9\", \"14ffca23-b3c8-45a8-b612-be1bc1591058\", \"2b94dd2b-4aca-4c4f-a911-ad438b1f3de5\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.42243194580078, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019380880519747734, \"Left\": 0.5754872560501099, \"Top\": 0.18925702571868896}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.18925702571868896}, {\"X\": 0.7871211767196655, \"Y\": 0.18925702571868896}, {\"X\": 0.7871211767196655, \"Y\": 0.20863790810108185}, {\"X\": 0.5754872560501099, \"Y\": 0.20863790810108185}]}, \"Id\": \"a0664433-3972-4af5-8808-6e3aa6466815\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35172a9d-cdbb-4a82-839a-82df6c1792db\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.84105682373047, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890910014510155, \"Left\": 0.1174735575914383, \"Top\": 0.20863789319992065}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.20863789319992065}, {\"X\": 0.22329051792621613, \"Y\": 0.20863789319992065}, {\"X\": 0.22329051792621613, \"Y\": 0.22852879762649536}, {\"X\": 0.1174735575914383, \"Y\": 0.22852879762649536}]}, \"Id\": \"3cb0d7b8-3ae5-4d76-b463-27a443bb2ca4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2775595c-24aa-4359-b307-34cffb0089e7\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.65201568603516, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890910014510155, \"Left\": 0.22329050302505493, \"Top\": 0.20863789319992065}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.20863789319992065}, {\"X\": 0.5754872560501099, \"Y\": 0.20863789319992065}, {\"X\": 0.5754872560501099, \"Y\": 0.22852879762649536}, {\"X\": 0.22329050302505493, \"Y\": 0.22852879762649536}]}, \"Id\": \"c156b983-6803-4cb7-81c7-571bd7beec95\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5780a7e3-3f92-44c5-b059-85d648479959\", \"c40d4a5f-b4e1-4615-a7a6-e181d743aa50\", \"267ff1cd-e269-47a4-9bd6-7253bb7a28af\", \"ada87833-7439-40ed-9f02-7814d15c8089\", \"e41cfb5b-4859-45c9-9f83-e660c64a32e5\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.41584014892578, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890910014510155, \"Left\": 0.5754872560501099, \"Top\": 0.20863789319992065}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.20863789319992065}, {\"X\": 0.7871211767196655, \"Y\": 0.20863789319992065}, {\"X\": 0.7871211767196655, \"Y\": 0.22852879762649536}, {\"X\": 0.5754872560501099, \"Y\": 0.22852879762649536}]}, \"Id\": \"9d33ba8e-c5bf-42c1-a546-0b5bb564c05d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d879f428-cdef-41ff-b7e4-251340903219\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.74054718017578, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890910014510155, \"Left\": 0.1174735575914383, \"Top\": 0.22852881252765656}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.22852881252765656}, {\"X\": 0.22329051792621613, \"Y\": 0.22852881252765656}, {\"X\": 0.22329051792621613, \"Y\": 0.24841971695423126}, {\"X\": 0.1174735575914383, \"Y\": 0.24841971695423126}]}, \"Id\": \"4c64afc9-fa77-44d1-8bff-a85cd6e3f65c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"74669150-5a66-4fe1-ba30-ce168dedb49a\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.70437622070312, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890910014510155, \"Left\": 0.22329050302505493, \"Top\": 0.22852881252765656}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.22852881252765656}, {\"X\": 0.5754872560501099, \"Y\": 0.22852881252765656}, {\"X\": 0.5754872560501099, \"Y\": 0.24841971695423126}, {\"X\": 0.22329050302505493, \"Y\": 0.24841971695423126}]}, \"Id\": \"11ae0eea-8850-4520-86a4-819fa25f01c7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0924f38f-2332-47e1-b4e2-fa7e4ff4fec6\", \"37673b02-296b-4021-b98a-94a973cc0735\", \"c41524dc-dbc1-4818-bbeb-17e2dc06402e\", \"256805bc-5831-4999-a3a6-975086dc3989\", \"e4bfb4ea-9b44-4fa3-aa3e-b2355c520bcf\", \"4a6beabe-5048-4135-81ee-5eca18709ebf\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.46064758300781, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890910014510155, \"Left\": 0.5754872560501099, \"Top\": 0.22852881252765656}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.22852881252765656}, {\"X\": 0.7871211767196655, \"Y\": 0.22852881252765656}, {\"X\": 0.7871211767196655, \"Y\": 0.24841971695423126}, {\"X\": 0.5754872560501099, \"Y\": 0.24841971695423126}]}, \"Id\": \"0d8a82ad-10af-41a7-b43a-c7d307de5110\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e5ebcd8d-d6d4-4559-b5ba-87d1ba8d57c9\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.53193664550781, \"RowIndex\": 9, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.018870869651436806, \"Left\": 0.1174735575914383, \"Top\": 0.24841971695423126}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.24841971695423126}, {\"X\": 0.22329051792621613, \"Y\": 0.24841971695423126}, {\"X\": 0.22329051792621613, \"Y\": 0.2672905921936035}, {\"X\": 0.1174735575914383, \"Y\": 0.2672905921936035}]}, \"Id\": \"8f75d035-3970-48b5-9f83-a2fe8317279e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d025120-683f-4527-907a-5ef343633586\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.3852767944336, \"RowIndex\": 9, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.018870869651436806, \"Left\": 0.22329050302505493, \"Top\": 0.24841971695423126}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.24841971695423126}, {\"X\": 0.5754872560501099, \"Y\": 0.24841971695423126}, {\"X\": 0.5754872560501099, \"Y\": 0.2672905921936035}, {\"X\": 0.22329050302505493, \"Y\": 0.2672905921936035}]}, \"Id\": \"fc0c7171-639d-4796-a45b-e0ce1101de29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f61441b5-1a61-41e1-bfb7-f83f44bb0cfa\", \"1f33181e-7ab8-4a7b-ab05-b7413858189b\", \"f6f9150c-3b21-4071-8168-f301c6c3388e\", \"98c214c6-b253-44b2-87a9-ac5607ae79af\", \"cb552b60-a97e-4f1b-b0bf-c5dc4d6f3931\", \"8f7b8b17-891a-4eb9-84f1-a6c3fb3fd570\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.06977081298828, \"RowIndex\": 9, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.018870869651436806, \"Left\": 0.5754872560501099, \"Top\": 0.24841971695423126}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.24841971695423126}, {\"X\": 0.7871211767196655, \"Y\": 0.24841971695423126}, {\"X\": 0.7871211767196655, \"Y\": 0.2672905921936035}, {\"X\": 0.5754872560501099, \"Y\": 0.2672905921936035}]}, \"Id\": \"98fabae4-3ed8-4844-a268-e7ca51261a62\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a415011d-5ca6-4e99-8ef5-432d350080ad\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.53836059570312, \"RowIndex\": 10, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019890930503606796, \"Left\": 0.1174735575914383, \"Top\": 0.2672905921936035}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.2672905921936035}, {\"X\": 0.22329051792621613, \"Y\": 0.2672905921936035}, {\"X\": 0.22329051792621613, \"Y\": 0.2871815264225006}, {\"X\": 0.1174735575914383, \"Y\": 0.2871815264225006}]}, \"Id\": \"3704661d-196f-4f19-b59e-442e3a7e2122\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e6db73b-cc0d-4875-a02a-247f6397d490\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.70794677734375, \"RowIndex\": 10, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019890930503606796, \"Left\": 0.22329050302505493, \"Top\": 0.2672905921936035}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.2672905921936035}, {\"X\": 0.5754872560501099, \"Y\": 0.2672905921936035}, {\"X\": 0.5754872560501099, \"Y\": 0.2871815264225006}, {\"X\": 0.22329050302505493, \"Y\": 0.2871815264225006}]}, \"Id\": \"f6973d1c-4e7f-44f9-8032-0089ecbdcf78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b78560b-b5e1-4cc7-842b-1aa8852598d6\", \"065c3582-99d0-4322-b42a-fa736dd099e6\", \"4381cd8b-0a9d-4f91-8be4-4156d035149d\", \"904fc63e-cdeb-433c-998c-623947b2df39\", \"72c2c1af-26bf-45d1-ba7f-bfeccba7fa63\", \"e8f932fa-82da-4130-a146-8e877436385b\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 99.51958465576172, \"RowIndex\": 10, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019890930503606796, \"Left\": 0.5754872560501099, \"Top\": 0.2672905921936035}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.2672905921936035}, {\"X\": 0.7871211767196655, \"Y\": 0.2672905921936035}, {\"X\": 0.7871211767196655, \"Y\": 0.2871815264225006}, {\"X\": 0.5754872560501099, \"Y\": 0.2871815264225006}]}, \"Id\": \"0a338d45-9433-4cf1-a0c2-b843d95d4dc2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2d3f4997-3700-446c-a5c8-8f254c792fe5\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 95.2582778930664, \"RowIndex\": 11, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10581695288419724, \"Height\": 0.019380880519747734, \"Left\": 0.1174735575914383, \"Top\": 0.2871815264225006}, \"Polygon\": [{\"X\": 0.1174735575914383, \"Y\": 0.2871815264225006}, {\"X\": 0.22329051792621613, \"Y\": 0.2871815264225006}, {\"X\": 0.22329051792621613, \"Y\": 0.3065623939037323}, {\"X\": 0.1174735575914383, \"Y\": 0.3065623939037323}]}, \"Id\": \"9f0503a3-bd23-45a3-90e2-4eec1ee4c2d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4b9dd21-19d0-49cc-b6fb-8c940e1031fb\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 98.18761444091797, \"RowIndex\": 11, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.35219675302505493, \"Height\": 0.019380880519747734, \"Left\": 0.22329050302505493, \"Top\": 0.2871815264225006}, \"Polygon\": [{\"X\": 0.22329050302505493, \"Y\": 0.2871815264225006}, {\"X\": 0.5754872560501099, \"Y\": 0.2871815264225006}, {\"X\": 0.5754872560501099, \"Y\": 0.3065623939037323}, {\"X\": 0.22329050302505493, \"Y\": 0.3065623939037323}]}, \"Id\": \"4e791efc-a0b3-4a4e-9a65-2f5522baa135\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c2825954-7635-4d60-9b79-a777cbdc4aaa\", \"68778abb-f600-4f1a-9cbf-6d5978a5a268\", \"63568437-0e0f-4eb7-b99d-67252c2cacbb\", \"0c36ac59-3808-4d7a-b26a-ca6adbbf0a90\", \"1ebe079d-b8ab-40cb-87d9-6ea38fbf508d\", \"20cab965-01bd-445d-9ce7-252f22d47aa7\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 97.88209533691406, \"RowIndex\": 11, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21163390576839447, \"Height\": 0.019380880519747734, \"Left\": 0.5754872560501099, \"Top\": 0.2871815264225006}, \"Polygon\": [{\"X\": 0.5754872560501099, \"Y\": 0.2871815264225006}, {\"X\": 0.7871211767196655, \"Y\": 0.2871815264225006}, {\"X\": 0.7871211767196655, \"Y\": 0.3065623939037323}, {\"X\": 0.5754872560501099, \"Y\": 0.3065623939037323}]}, \"Id\": \"1c1ecb8e-a2d0-472c-be3a-32f1c39005d0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e12473d6-fab3-4c05-ab53-59ed859cb4ea\"]}], \"Page\": 3}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"09ec7564-89e7-4152-9b47-b42573ea0348\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"09ec7564-89e7-4152-9b47-b42573ea0348\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"559961\", \"date\": \"Thu, 10 Jun 2021 00:57:39 GMT\"}, \"RetryAttempts\": 0}}"
  },
  {
    "path": "src-python/tests/data/gib_multi_page_tables.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 2}, \"JobStatus\": \"SUCCEEDED\", \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"e8610e55-7a61-4bd0-a9ff-583a4dc69459\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9d1d6da4-e5b6-4855-bcad-a5fde5eeb782\", \"0720f217-1689-4398-95aa-f4eb58694db0\", \"2ad3a18b-0ce2-48cc-82fc-34bbf28e8624\", \"acad82f7-7d22-4015-8ae1-ac5270f6d3b7\", \"9ec7937d-8e16-4901-ae90-33b067f8a79e\", \"fc652dda-c18f-4c4b-9e1d-5ebd821caa5f\", \"edcc7503-acc2-4e0b-9266-f30532416c91\", \"0d38591a-d3e7-44aa-a593-08e682b990a5\", \"558c29f9-d633-4eeb-b80b-07da8329bbea\", \"595fffd7-4998-49c4-a1e7-1b30226afe21\", \"5dff9305-aeb5-42f4-947b-de8e75cad052\", \"3e5213c9-c499-4e54-9084-014ed6cfe824\", \"bbdbb69c-68f7-4cfd-84e1-4218e1b6adff\", \"3270e4a7-929f-400e-814e-fae74a18ed42\", \"f7610a7c-9469-443c-a9b2-bab9b017c637\", \"c295588c-dc44-4835-a3fc-d568c60141ef\", \"0188d1a5-a331-4050-81dd-3b4cf64223da\", \"aee65974-0662-4e42-9ecd-211cc6cdb30f\", \"d65f46ee-d029-4d5e-ab63-4f5d30cb8574\", \"55994e3f-ffb6-4cf9-b71b-055f2276c7a0\", \"496f63ad-5d10-4657-b800-a8527aca813f\", \"af4613f5-930e-484d-9d63-eba08ab1ed14\", \"447886cf-c3b5-448c-a106-a401bf595ce2\", \"6da62836-1f8f-4b41-b613-a9af3fc08d9f\", \"d49a754e-3f43-4054-aac2-e62a3ef92da1\", \"373dd8ff-ff6c-4b3a-9575-2ab1ec94c260\", \"315a1757-823a-4b43-bff7-9c9e5d4d60e7\", \"6eed915a-dec1-41f5-9d7d-ae900cb1f259\", \"4e083419-aa1e-4b77-bf35-d65c0e587bca\", \"da289b6f-e004-48be-a3b1-10e0ed8ab99f\", \"fed02fb4-1996-4a15-98dc-29da193cc476\", \"47c6097f-02d5-4432-8423-13c05fbfacbd\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81260681152344, \"Text\": \"Some tables on page 1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17916783690452576, \"Height\": 0.014348836615681648, \"Left\": 0.11755222082138062, \"Top\": 0.13153012096881866}, \"Polygon\": [{\"X\": 0.11755222082138062, \"Y\": 0.13153012096881866}, {\"X\": 0.29672005772590637, \"Y\": 0.13153012096881866}, {\"X\": 0.29672005772590637, \"Y\": 0.14587895572185516}, {\"X\": 0.11755222082138062, \"Y\": 0.14587895572185516}]}, \"Id\": \"9d1d6da4-e5b6-4855-bcad-a5fde5eeb782\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b2126437-38c0-41f5-b853-e645ff3b752c\", \"0532e358-aaab-4418-992a-7031535cecff\", \"66ddf4aa-cb6a-4de7-8509-0d542e709f30\", \"b517b087-e2fe-4db3-9f7b-e49175a734cf\", \"d688845d-466b-4be3-b1c7-e97db794467b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37139892578125, \"Text\": \"Page 1 - Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547955721616745, \"Height\": 0.014157186262309551, \"Left\": 0.12731410562992096, \"Top\": 0.1877196729183197}, \"Polygon\": [{\"X\": 0.12731410562992096, \"Y\": 0.1877196729183197}, {\"X\": 0.28210967779159546, \"Y\": 0.1877196729183197}, {\"X\": 0.28210967779159546, \"Y\": 0.20187684893608093}, {\"X\": 0.12731410562992096, \"Y\": 0.20187684893608093}]}, \"Id\": \"0720f217-1689-4398-95aa-f4eb58694db0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4238d1ee-21c0-4219-8d1f-1c6bc4fdb503\", \"678698ce-5b69-4085-bf53-2be05117f8d3\", \"56255c49-fdea-44d3-bc15-f96b6f7e92f4\", \"85ad3549-2326-4a0b-9755-8401af79c8e4\", \"f0efb295-d2fc-4f5e-9d44-421282d10309\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.1639175415039, \"Text\": \"Page 1 - Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15558192133903503, \"Height\": 0.013727729208767414, \"Left\": 0.34742024540901184, \"Top\": 0.18795108795166016}, \"Polygon\": [{\"X\": 0.34742024540901184, \"Y\": 0.18795108795166016}, {\"X\": 0.5030021667480469, \"Y\": 0.18795108795166016}, {\"X\": 0.5030021667480469, \"Y\": 0.2016788125038147}, {\"X\": 0.34742024540901184, \"Y\": 0.2016788125038147}]}, \"Id\": \"2ad3a18b-0ce2-48cc-82fc-34bbf28e8624\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06ce6806-8d58-4d49-8730-75570ddf4957\", \"cd6f437f-7bca-4434-99b0-0ece0af2ec12\", \"1a8eeb07-1a6a-4ee4-b8bf-571dda7a4f0e\", \"ba5c87d7-c0d4-4d9b-ac78-f607fb695c49\", \"9fc02742-e3c5-408d-9269-e0aaa25907af\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.48368835449219, \"Text\": \"Page 1 - Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15520042181015015, \"Height\": 0.014681236818432808, \"Left\": 0.5386240482330322, \"Top\": 0.18781091272830963}, \"Polygon\": [{\"X\": 0.5386240482330322, \"Y\": 0.18781091272830963}, {\"X\": 0.6938244700431824, \"Y\": 0.18781091272830963}, {\"X\": 0.6938244700431824, \"Y\": 0.2024921476840973}, {\"X\": 0.5386240482330322, \"Y\": 0.2024921476840973}]}, \"Id\": \"acad82f7-7d22-4015-8ae1-ac5270f6d3b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"03b35ec6-1c99-466c-91a6-5fcdcacba492\", \"50330a9a-de56-4e84-bef2-7f4f22932ba0\", \"a7b64037-60a0-4d1d-9893-cc487c7217cc\", \"08d7d8a4-fa81-465d-9840-b65a094af5d0\", \"1a97191b-08fd-44a8-9c0b-c65b27abc76a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.90036010742188, \"Text\": \"Page 1 - Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1559058129787445, \"Height\": 0.013881698250770569, \"Left\": 0.12727898359298706, \"Top\": 0.20716533064842224}, \"Polygon\": [{\"X\": 0.12727898359298706, \"Y\": 0.20716533064842224}, {\"X\": 0.28318479657173157, \"Y\": 0.20716533064842224}, {\"X\": 0.28318479657173157, \"Y\": 0.2210470288991928}, {\"X\": 0.12727898359298706, \"Y\": 0.2210470288991928}]}, \"Id\": \"9ec7937d-8e16-4901-ae90-33b067f8a79e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"727dfe9d-3918-41fd-9379-9af2ec33d178\", \"ac9030d6-9bb8-4261-a38d-7e6ff4970927\", \"a7c60e29-252a-4ab6-9c24-d62286db1ffc\", \"59a479f0-eff2-4f0c-8053-cbb701aa8330\", \"cf42b156-bd9b-48fc-b871-891145d36211\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.98780822753906, \"Text\": \"Page 1 - Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1555802971124649, \"Height\": 0.013797806575894356, \"Left\": 0.3473963141441345, \"Top\": 0.2070954144001007}, \"Polygon\": [{\"X\": 0.3473963141441345, \"Y\": 0.2070954144001007}, {\"X\": 0.5029765963554382, \"Y\": 0.2070954144001007}, {\"X\": 0.5029765963554382, \"Y\": 0.22089321911334991}, {\"X\": 0.3473963141441345, \"Y\": 0.22089321911334991}]}, \"Id\": \"fc652dda-c18f-4c4b-9e1d-5ebd821caa5f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23e61974-47f5-42a9-b51d-81df40c2db19\", \"c60cbb52-21cb-42e8-864c-0311542cadcf\", \"dbb07221-0692-4621-800c-2ae43ac778dc\", \"124eeea5-6045-4d62-baab-9065f2f25501\", \"46b641a2-3d1e-4abc-ac1d-ac57b5bce933\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.09537506103516, \"Text\": \"Page 1 - Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1552393138408661, \"Height\": 0.01379911694675684, \"Left\": 0.5385319590568542, \"Top\": 0.2071310579776764}, \"Polygon\": [{\"X\": 0.5385319590568542, \"Y\": 0.2071310579776764}, {\"X\": 0.6937713027000427, \"Y\": 0.2071310579776764}, {\"X\": 0.6937713027000427, \"Y\": 0.22093017399311066}, {\"X\": 0.5385319590568542, \"Y\": 0.22093017399311066}]}, \"Id\": \"edcc7503-acc2-4e0b-9266-f30532416c91\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cc05b12-5f48-44b7-a910-355c2dce8083\", \"1c6fc696-e099-4049-8e17-908c7337b4c5\", \"2f6c6f57-0537-4b2e-b8eb-6f7bc5e6609b\", \"a75b0763-291d-4337-8705-dd6d13f51bf1\", \"5096a702-6583-4392-ba00-a7a39340cd5a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.4270248413086, \"Text\": \"Page 1 - Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15708187222480774, \"Height\": 0.015131208114326, \"Left\": 0.1266448199748993, \"Top\": 0.2256062626838684}, \"Polygon\": [{\"X\": 0.1266448199748993, \"Y\": 0.2256062626838684}, {\"X\": 0.28372669219970703, \"Y\": 0.2256062626838684}, {\"X\": 0.28372669219970703, \"Y\": 0.24073746800422668}, {\"X\": 0.1266448199748993, \"Y\": 0.24073746800422668}]}, \"Id\": \"0d38591a-d3e7-44aa-a593-08e682b990a5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"278f8a41-b66a-473f-a44c-8c9a5b27185f\", \"03c10a6c-b64f-4d54-80f6-4c3f97090b4b\", \"de6f0529-43f9-4e37-b5d5-95eff9a3b3f4\", \"556f0412-d9e9-4f65-9df8-66bb530248cf\", \"e5728f63-a1bb-4dc0-b481-e60b45c0e820\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.6739730834961, \"Text\": \"Page 1 - Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15656110644340515, \"Height\": 0.015129240229725838, \"Left\": 0.34676358103752136, \"Top\": 0.22576037049293518}, \"Polygon\": [{\"X\": 0.34676358103752136, \"Y\": 0.22576037049293518}, {\"X\": 0.5033246874809265, \"Y\": 0.22576037049293518}, {\"X\": 0.5033246874809265, \"Y\": 0.24088960886001587}, {\"X\": 0.34676358103752136, \"Y\": 0.24088960886001587}]}, \"Id\": \"558c29f9-d633-4eeb-b80b-07da8329bbea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"01f853f0-5522-4570-ba00-5b3429c7f06d\", \"630f633b-6434-4994-8547-7a31098f6be3\", \"d4befc86-4a78-49b7-812c-277aa4b9c4db\", \"afc5c3a1-239b-4ce3-a5db-70aea2f6c8bb\", \"8b09c545-5f26-46e1-b053-e7b4fa170ccc\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.72953033447266, \"Text\": \"Page 1 - Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15565377473831177, \"Height\": 0.014588643796741962, \"Left\": 0.5382199883460999, \"Top\": 0.22611850500106812}, \"Polygon\": [{\"X\": 0.5382199883460999, \"Y\": 0.22611850500106812}, {\"X\": 0.6938737630844116, \"Y\": 0.22611850500106812}, {\"X\": 0.6938737630844116, \"Y\": 0.2407071441411972}, {\"X\": 0.5382199883460999, \"Y\": 0.2407071441411972}]}, \"Id\": \"595fffd7-4998-49c4-a1e7-1b30226afe21\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b2d38c64-996b-4f31-93eb-a95d621b9eed\", \"f056f475-e900-4d6c-afe0-b5edebe4706b\", \"2ec711d2-cd1d-42a5-aabc-97e0986177d5\", \"d1ab4abb-22eb-417b-9038-d854a794485a\", \"a2cf4bae-ec94-4b5e-b927-ea4ded059ffe\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.46280670166016, \"Text\": \"Page 1 - Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17193268239498138, \"Height\": 0.015927577391266823, \"Left\": 0.07409178465604782, \"Top\": 0.30202826857566833}, \"Polygon\": [{\"X\": 0.07409178465604782, \"Y\": 0.30202826857566833}, {\"X\": 0.2460244596004486, \"Y\": 0.30202826857566833}, {\"X\": 0.2460244596004486, \"Y\": 0.3179558515548706}, {\"X\": 0.07409178465604782, \"Y\": 0.3179558515548706}]}, \"Id\": \"5dff9305-aeb5-42f4-947b-de8e75cad052\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb256baa-0610-44fd-b545-733c9f5c6dcd\", \"113e61ca-c9cf-410d-b321-1ff91634707f\", \"d4347917-36e5-4812-b4e8-d3595b3860e3\", \"7695786f-2875-432b-a232-0b43811477d0\", \"190bb004-3ea7-481b-9c36-4c6f939216ff\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.9873275756836, \"Text\": \"Page 1 - Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17021211981773376, \"Height\": 0.015553923323750496, \"Left\": 0.27411171793937683, \"Top\": 0.3020567297935486}, \"Polygon\": [{\"X\": 0.27411171793937683, \"Y\": 0.3020567297935486}, {\"X\": 0.4443238377571106, \"Y\": 0.3020567297935486}, {\"X\": 0.4443238377571106, \"Y\": 0.31761065125465393}, {\"X\": 0.27411171793937683, \"Y\": 0.31761065125465393}]}, \"Id\": \"3e5213c9-c499-4e54-9084-014ed6cfe824\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1410821-8f33-40d5-92a8-9cea8c23fcf2\", \"0b3cec6a-2c73-4893-a244-f03f00927fdd\", \"fd7e743c-8b8b-4982-8ca7-04bf5dc2eae0\", \"0ee29540-2f2c-41d7-9236-ac5d57434431\", \"4c9b7560-64b2-4b4d-844d-b1889e372dae\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.75637817382812, \"Text\": \"Page 1 - Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16932019591331482, \"Height\": 0.015834929421544075, \"Left\": 0.47305700182914734, \"Top\": 0.30203333497047424}, \"Polygon\": [{\"X\": 0.47305700182914734, \"Y\": 0.30203333497047424}, {\"X\": 0.6423771977424622, \"Y\": 0.30203333497047424}, {\"X\": 0.6423771977424622, \"Y\": 0.31786826252937317}, {\"X\": 0.47305700182914734, \"Y\": 0.31786826252937317}]}, \"Id\": \"bbdbb69c-68f7-4cfd-84e1-4218e1b6adff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"73600fc9-98e4-442d-bae9-63531852b617\", \"c8c672ad-b2a6-4338-bbc3-696c1faa44b6\", \"56485b0b-012e-41d4-92da-1b6aea786161\", \"a7d57712-8acf-4760-a8aa-c9aeb8eaaaaf\", \"85a7b409-916a-4802-87bc-78fd5d9df9bc\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.88320922851562, \"Text\": \"Page 1 - Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1709003895521164, \"Height\": 0.01556668896228075, \"Left\": 0.7076572775840759, \"Top\": 0.30191361904144287}, \"Polygon\": [{\"X\": 0.7076572775840759, \"Y\": 0.30191361904144287}, {\"X\": 0.8785576820373535, \"Y\": 0.30191361904144287}, {\"X\": 0.8785576820373535, \"Y\": 0.31748029589653015}, {\"X\": 0.7076572775840759, \"Y\": 0.31748029589653015}]}, \"Id\": \"3270e4a7-929f-400e-814e-fae74a18ed42\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"068945c0-f691-42bf-aaeb-1b329135583a\", \"22f36a18-76d6-4bfe-be6a-3ed42d8fe5c2\", \"f56bbb21-d152-4e47-87da-a3562cc7e8a4\", \"ba4b0749-7995-4c68-85d8-d080643388c4\", \"baddfdc3-80c6-40e7-aeca-77b311186aa7\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.90262603759766, \"Text\": \"Page 1 - Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17115803062915802, \"Height\": 0.0164965707808733, \"Left\": 0.07440507411956787, \"Top\": 0.3243785798549652}, \"Polygon\": [{\"X\": 0.07440507411956787, \"Y\": 0.3243785798549652}, {\"X\": 0.2455631047487259, \"Y\": 0.3243785798549652}, {\"X\": 0.2455631047487259, \"Y\": 0.34087514877319336}, {\"X\": 0.07440507411956787, \"Y\": 0.34087514877319336}]}, \"Id\": \"f7610a7c-9469-443c-a9b2-bab9b017c637\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db39560a-3130-4391-8e8c-9e02a4c4f4fd\", \"d9d4f701-03f4-45c6-9feb-47abf26e69ea\", \"2a5972d8-7a18-4ce2-a153-2954a477ebeb\", \"d78d32db-c689-4bfc-a1f6-353107862a37\", \"2d84ae85-f8c7-410d-8a16-6c603bc8d66f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.14266204833984, \"Text\": \"Page 1 - Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1704295575618744, \"Height\": 0.015695123001933098, \"Left\": 0.273968905210495, \"Top\": 0.3240283727645874}, \"Polygon\": [{\"X\": 0.273968905210495, \"Y\": 0.3240283727645874}, {\"X\": 0.4443984627723694, \"Y\": 0.3240283727645874}, {\"X\": 0.4443984627723694, \"Y\": 0.33972349762916565}, {\"X\": 0.273968905210495, \"Y\": 0.33972349762916565}]}, \"Id\": \"c295588c-dc44-4835-a3fc-d568c60141ef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c6dd4a34-7090-4381-9b0a-7e214cf387cf\", \"a0a2b5e0-0cdb-44e6-85da-a9c7cdc2beb9\", \"c9534d1d-8a23-40eb-a875-f0dc020924a3\", \"fae0facf-02b7-425a-b28e-0916e7efac46\", \"32032173-e77f-4747-abfc-123c88e68cc7\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.8399429321289, \"Text\": \"Page 1 - Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16962939500808716, \"Height\": 0.016312478110194206, \"Left\": 0.4731886684894562, \"Top\": 0.3242461681365967}, \"Polygon\": [{\"X\": 0.4731886684894562, \"Y\": 0.3242461681365967}, {\"X\": 0.6428180932998657, \"Y\": 0.3242461681365967}, {\"X\": 0.6428180932998657, \"Y\": 0.34055864810943604}, {\"X\": 0.4731886684894562, \"Y\": 0.34055864810943604}]}, \"Id\": \"0188d1a5-a331-4050-81dd-3b4cf64223da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"983351dc-a920-4913-a8bc-3a34b016d401\", \"7123d9c3-1f4b-437c-93c1-96b80a4d1d14\", \"7cbd3646-e2d4-43bd-b49f-041ec5e8dcf4\", \"2e61ea30-6d11-4493-ae75-c653776dc200\", \"33bb7bd1-21e7-4d55-9854-8db0b611e0e8\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.15933227539062, \"Text\": \"Page 1 - Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17058640718460083, \"Height\": 0.015713002532720566, \"Left\": 0.7081078886985779, \"Top\": 0.32441446185112}, \"Polygon\": [{\"X\": 0.7081078886985779, \"Y\": 0.32441446185112}, {\"X\": 0.8786942958831787, \"Y\": 0.32441446185112}, {\"X\": 0.8786942958831787, \"Y\": 0.34012746810913086}, {\"X\": 0.7081078886985779, \"Y\": 0.34012746810913086}]}, \"Id\": \"aee65974-0662-4e42-9ecd-211cc6cdb30f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"242e264b-1784-4c4b-995a-d625ed58fa82\", \"6f114d75-8d2a-4262-8a72-02b6d4b81235\", \"9a6f382f-a6d1-4859-a813-310de8483a11\", \"40308837-4d02-45fb-9b48-b1fa0f531b01\", \"7689fd04-2830-41cf-9f52-a633dad1c3d5\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.01719665527344, \"Text\": \"Page 1 - Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1704978346824646, \"Height\": 0.015597304329276085, \"Left\": 0.07540828734636307, \"Top\": 0.3462474048137665}, \"Polygon\": [{\"X\": 0.07540828734636307, \"Y\": 0.3462474048137665}, {\"X\": 0.24590611457824707, \"Y\": 0.3462474048137665}, {\"X\": 0.24590611457824707, \"Y\": 0.3618447184562683}, {\"X\": 0.07540828734636307, \"Y\": 0.3618447184562683}]}, \"Id\": \"d65f46ee-d029-4d5e-ab63-4f5d30cb8574\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39ac4139-cb39-487c-a7ae-a29af8037095\", \"d1ba0c48-6ab6-454a-bbad-2bc8a0db2e98\", \"7645a73b-e9dc-446c-9d1c-c5c6b0b6dd3b\", \"8a6069c9-82ae-4450-aa77-d7c3dc3acb0d\", \"204c509a-1a78-4e9b-96fc-39f316ea76a9\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.13983917236328, \"Text\": \"Page 1 - Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1700495034456253, \"Height\": 0.01618683524429798, \"Left\": 0.2739756405353546, \"Top\": 0.346578985452652}, \"Polygon\": [{\"X\": 0.2739756405353546, \"Y\": 0.346578985452652}, {\"X\": 0.4440251588821411, \"Y\": 0.346578985452652}, {\"X\": 0.4440251588821411, \"Y\": 0.3627658486366272}, {\"X\": 0.2739756405353546, \"Y\": 0.3627658486366272}]}, \"Id\": \"55994e3f-ffb6-4cf9-b71b-055f2276c7a0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"872257a2-4070-4d79-bc3c-e05a48536020\", \"751ba84b-dfea-4406-bdab-dd947dd94508\", \"ad6c89ff-9289-4042-b889-78a0fbdbd8fb\", \"e7b22e6b-cdb3-4405-aebd-423fffca8795\", \"0a01e289-e940-4514-9388-b65701674a0b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.84598541259766, \"Text\": \"Page 1 - Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17028707265853882, \"Height\": 0.015307938680052757, \"Left\": 0.4721059799194336, \"Top\": 0.3463464081287384}, \"Polygon\": [{\"X\": 0.4721059799194336, \"Y\": 0.3463464081287384}, {\"X\": 0.6423930525779724, \"Y\": 0.3463464081287384}, {\"X\": 0.6423930525779724, \"Y\": 0.3616543412208557}, {\"X\": 0.4721059799194336, \"Y\": 0.3616543412208557}]}, \"Id\": \"496f63ad-5d10-4657-b800-a8527aca813f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d53071f-98bd-444b-bc50-914c7cd7d87f\", \"a0e283b4-b7d9-4a71-9f44-559a5032b9d5\", \"fc21b0bc-32dd-4511-8e68-6337010b4e5f\", \"15776def-7048-480e-9618-94629664de24\", \"b8deeeeb-40d2-428e-9ba8-a6b67d66fd36\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.96582794189453, \"Text\": \"Page 1 - Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1719789206981659, \"Height\": 0.016334151849150658, \"Left\": 0.7067148089408875, \"Top\": 0.3462326228618622}, \"Polygon\": [{\"X\": 0.7067148089408875, \"Y\": 0.3462326228618622}, {\"X\": 0.878693699836731, \"Y\": 0.3462326228618622}, {\"X\": 0.878693699836731, \"Y\": 0.3625667691230774}, {\"X\": 0.7067148089408875, \"Y\": 0.3625667691230774}]}, \"Id\": \"af4613f5-930e-484d-9d63-eba08ab1ed14\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b494ccc4-0639-443d-b0bc-a6b0e5a3e54e\", \"f705a862-a4ad-4955-93a0-7a0b4d9effd9\", \"e4bfff90-7a2b-4ba4-a430-9fe516a11283\", \"5faa2aaf-a833-4d96-be69-708b0ab38868\", \"3df3a459-7304-462b-81df-591f2b5be12d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45335388183594, \"Text\": \"Page 1 - Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16970354318618774, \"Height\": 0.015483766794204712, \"Left\": 0.0755971297621727, \"Top\": 0.36873483657836914}, \"Polygon\": [{\"X\": 0.0755971297621727, \"Y\": 0.36873483657836914}, {\"X\": 0.24530068039894104, \"Y\": 0.36873483657836914}, {\"X\": 0.24530068039894104, \"Y\": 0.38421860337257385}, {\"X\": 0.0755971297621727, \"Y\": 0.38421860337257385}]}, \"Id\": \"447886cf-c3b5-448c-a106-a401bf595ce2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a72de43-f38b-493b-b3ec-ea0bcf164187\", \"2d7cf95a-3ef5-48a7-af50-1372394d8c0b\", \"b6517db0-6fb4-49fe-9d94-44b7f0cb3eb2\", \"57f3a6f2-5423-4ef2-9b86-f3fc295160fb\", \"65324fb8-b696-4601-9beb-9cd46302dac8\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.03327178955078, \"Text\": \"Page 1 - Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17109166085720062, \"Height\": 0.016420915722846985, \"Left\": 0.27297165989875793, \"Top\": 0.36871451139450073}, \"Polygon\": [{\"X\": 0.27297165989875793, \"Y\": 0.36871451139450073}, {\"X\": 0.44406333565711975, \"Y\": 0.36871451139450073}, {\"X\": 0.44406333565711975, \"Y\": 0.3851354122161865}, {\"X\": 0.27297165989875793, \"Y\": 0.3851354122161865}]}, \"Id\": \"6da62836-1f8f-4b41-b613-a9af3fc08d9f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e12ad6fb-038e-428a-83da-efae26f56d6f\", \"26596d66-a726-441a-a534-cc4d88e4ed46\", \"1b673c24-220a-4ced-aef1-3099f5f433a8\", \"2fddb181-33a8-4454-a6ee-9909c536310b\", \"3b08d288-74a7-4171-9257-1c5d0a3b7b4f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.13301086425781, \"Text\": \"Page 1 - Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1702284812927246, \"Height\": 0.01571516878902912, \"Left\": 0.47235050797462463, \"Top\": 0.368561714887619}, \"Polygon\": [{\"X\": 0.47235050797462463, \"Y\": 0.368561714887619}, {\"X\": 0.6425789594650269, \"Y\": 0.368561714887619}, {\"X\": 0.6425789594650269, \"Y\": 0.3842768669128418}, {\"X\": 0.47235050797462463, \"Y\": 0.3842768669128418}]}, \"Id\": \"d49a754e-3f43-4054-aac2-e62a3ef92da1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2d498bc1-71a5-4a4e-990d-0d9d9397abef\", \"26ba1671-2e18-438b-80cd-3c4ca6d35280\", \"107e119b-c885-4885-aa12-3d9350ea45bc\", \"97ff95ce-efa0-46cb-b38a-6b519ff05579\", \"1c5c9009-16c5-4352-a847-01da81fe1596\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.40216064453125, \"Text\": \"Page 1 - Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17133159935474396, \"Height\": 0.01557937078177929, \"Left\": 0.7074726819992065, \"Top\": 0.36866307258605957}, \"Polygon\": [{\"X\": 0.7074726819992065, \"Y\": 0.36866307258605957}, {\"X\": 0.8788043260574341, \"Y\": 0.36866307258605957}, {\"X\": 0.8788043260574341, \"Y\": 0.384242445230484}, {\"X\": 0.7074726819992065, \"Y\": 0.384242445230484}]}, \"Id\": \"373dd8ff-ff6c-4b3a-9575-2ab1ec94c260\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ed8a91e0-25ea-4acd-b95b-2da2838fc535\", \"1eb7bfe0-acd9-4ec1-b779-859b31924815\", \"a3d09017-5928-470d-9a12-a588662a6624\", \"65686e49-1d46-42ff-bd12-e4bbd4d25ed2\", \"6604c6bb-7b49-4433-b334-c59bd402c77e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2850570678711, \"Text\": \"Page 1 - Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17096003890037537, \"Height\": 0.015663785859942436, \"Left\": 0.07515698671340942, \"Top\": 0.39067721366882324}, \"Polygon\": [{\"X\": 0.07515698671340942, \"Y\": 0.39067721366882324}, {\"X\": 0.2461170256137848, \"Y\": 0.39067721366882324}, {\"X\": 0.2461170256137848, \"Y\": 0.40634098649024963}, {\"X\": 0.07515698671340942, \"Y\": 0.40634098649024963}]}, \"Id\": \"315a1757-823a-4b43-bff7-9c9e5d4d60e7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2cf2970e-0d40-4b22-b22b-d3f1c131abd0\", \"d39c888e-b143-4344-a064-71aef70dfa46\", \"6be2acf7-e7a8-4fe1-8425-7b15d8d77de9\", \"3b8aa305-8e8f-4fc3-87fb-76ee2f5121e6\", \"cf7201dc-c40a-49bf-bf39-b7d911549e3a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.30815887451172, \"Text\": \"Page 1 - Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16994379460811615, \"Height\": 0.015449519269168377, \"Left\": 0.2740427255630493, \"Top\": 0.39041972160339355}, \"Polygon\": [{\"X\": 0.2740427255630493, \"Y\": 0.39041972160339355}, {\"X\": 0.44398653507232666, \"Y\": 0.39041972160339355}, {\"X\": 0.44398653507232666, \"Y\": 0.4058692455291748}, {\"X\": 0.2740427255630493, \"Y\": 0.4058692455291748}]}, \"Id\": \"6eed915a-dec1-41f5-9d7d-ae900cb1f259\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53886bd2-d75a-4330-810b-27b84f6c1bdf\", \"865c2f88-c05e-4cbe-8927-fb0a51960792\", \"dfd7a203-60fd-4d44-8fd9-eb3b69baec00\", \"ef7bfa76-c1ca-4baf-80a3-991812c462c1\", \"f7442352-6d02-4d4a-88a7-38d7224fcbfd\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05916595458984, \"Text\": \"Page 1 - Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16999375820159912, \"Height\": 0.016701137647032738, \"Left\": 0.4724659323692322, \"Top\": 0.3905758857727051}, \"Polygon\": [{\"X\": 0.4724659323692322, \"Y\": 0.3905758857727051}, {\"X\": 0.6424596905708313, \"Y\": 0.3905758857727051}, {\"X\": 0.6424596905708313, \"Y\": 0.40727704763412476}, {\"X\": 0.4724659323692322, \"Y\": 0.40727704763412476}]}, \"Id\": \"4e083419-aa1e-4b77-bf35-d65c0e587bca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4b88fc8-9412-437a-81ee-993a0348fda4\", \"03afa24d-b188-4c91-bace-4c5ac004e604\", \"4b7969bb-485f-4084-94ac-af8eeca0b067\", \"b4e8c023-9c05-485c-aeaf-d2d61bb4e5a3\", \"9f9ac368-de82-4aa3-ac53-9429fee79ec9\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.24467468261719, \"Text\": \"Page 1 - Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1711801439523697, \"Height\": 0.015702975913882256, \"Left\": 0.7074642777442932, \"Top\": 0.3904447853565216}, \"Polygon\": [{\"X\": 0.7074642777442932, \"Y\": 0.3904447853565216}, {\"X\": 0.8786444664001465, \"Y\": 0.3904447853565216}, {\"X\": 0.8786444664001465, \"Y\": 0.4061477780342102}, {\"X\": 0.7074642777442932, \"Y\": 0.4061477780342102}]}, \"Id\": \"da289b6f-e004-48be-a3b1-10e0ed8ab99f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d4e1e5d5-93d1-445e-bc9c-fbdc39fb137d\", \"033d6cff-2e8d-4a67-ac3c-4cdd2e8dbe25\", \"15344615-b6a3-45ad-b770-56e1da42bdc5\", \"cb314e41-f28d-46fc-9676-3c239a9c1216\", \"f1fdc537-92b6-42de-8bfd-26c4d1e879f8\"]}], \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65574645996094, \"Text\": \"Some\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04477361962199211, \"Height\": 0.011192440055310726, \"Left\": 0.11755222082138062, \"Top\": 0.1321023851633072}, \"Polygon\": [{\"X\": 0.11755222082138062, \"Y\": 0.1321023851633072}, {\"X\": 0.16232584416866302, \"Y\": 0.1321023851633072}, {\"X\": 0.16232584416866302, \"Y\": 0.1432948261499405}, {\"X\": 0.11755222082138062, \"Y\": 0.1432948261499405}]}, \"Id\": \"b2126437-38c0-41f5-b853-e645ff3b752c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74077606201172, \"Text\": \"tables\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04765712097287178, \"Height\": 0.011495229788124561, \"Left\": 0.16703706979751587, \"Top\": 0.13153012096881866}, \"Polygon\": [{\"X\": 0.16703706979751587, \"Y\": 0.13153012096881866}, {\"X\": 0.21469418704509735, \"Y\": 0.13153012096881866}, {\"X\": 0.21469418704509735, \"Y\": 0.14302535355091095}, {\"X\": 0.16703706979751587, \"Y\": 0.14302535355091095}]}, \"Id\": \"0532e358-aaab-4418-992a-7031535cecff\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97775268554688, \"Text\": \"on\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.020193539559841156, \"Height\": 0.00856482982635498, \"Left\": 0.2192964255809784, \"Top\": 0.13468296825885773}, \"Polygon\": [{\"X\": 0.2192964255809784, \"Y\": 0.13468296825885773}, {\"X\": 0.23948997259140015, \"Y\": 0.13468296825885773}, {\"X\": 0.23948997259140015, \"Y\": 0.1432477980852127}, {\"X\": 0.2192964255809784, \"Y\": 0.1432477980852127}]}, \"Id\": \"66ddf4aa-cb6a-4de7-8509-0d542e709f30\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94715118408203, \"Text\": \"page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03870762139558792, \"Height\": 0.011343839578330517, \"Left\": 0.2444072812795639, \"Top\": 0.13453511893749237}, \"Polygon\": [{\"X\": 0.2444072812795639, \"Y\": 0.13453511893749237}, {\"X\": 0.2831149101257324, \"Y\": 0.13453511893749237}, {\"X\": 0.2831149101257324, \"Y\": 0.14587895572185516}, {\"X\": 0.2444072812795639, \"Y\": 0.14587895572185516}]}, \"Id\": \"b517b087-e2fe-4db3-9f7b-e49175a734cf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74162292480469, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008776579983532429, \"Height\": 0.01100969035178423, \"Left\": 0.2879434823989868, \"Top\": 0.13220809400081635}, \"Polygon\": [{\"X\": 0.2879434823989868, \"Y\": 0.13220809400081635}, {\"X\": 0.29672005772590637, \"Y\": 0.13220809400081635}, {\"X\": 0.29672005772590637, \"Y\": 0.1432177871465683}, {\"X\": 0.2879434823989868, \"Y\": 0.1432177871465683}]}, \"Id\": \"d688845d-466b-4be3-b1c7-e97db794467b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.172607421875, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03762008994817734, \"Height\": 0.013773449696600437, \"Left\": 0.12731410562992096, \"Top\": 0.18810339272022247}, \"Polygon\": [{\"X\": 0.12731410562992096, \"Y\": 0.18810339272022247}, {\"X\": 0.1649341881275177, \"Y\": 0.18810339272022247}, {\"X\": 0.1649341881275177, \"Y\": 0.20187684893608093}, {\"X\": 0.12731410562992096, \"Y\": 0.20187684893608093}]}, \"Id\": \"4238d1ee-21c0-4219-8d1f-1c6bc4fdb503\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87335968017578, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008331519551575184, \"Height\": 0.010681239888072014, \"Left\": 0.1704600602388382, \"Top\": 0.18820981681346893}, \"Polygon\": [{\"X\": 0.1704600602388382, \"Y\": 0.18820981681346893}, {\"X\": 0.1787915825843811, \"Y\": 0.18820981681346893}, {\"X\": 0.1787915825843811, \"Y\": 0.1988910585641861}, {\"X\": 0.1704600602388382, \"Y\": 0.1988910585641861}]}, \"Id\": \"678698ce-5b69-4085-bf53-2be05117f8d3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.52286529541016, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006022030021995306, \"Height\": 0.002538749948143959, \"Left\": 0.1840410679578781, \"Top\": 0.1933649480342865}, \"Polygon\": [{\"X\": 0.1840410679578781, \"Y\": 0.1933649480342865}, {\"X\": 0.19006310403347015, \"Y\": 0.1933649480342865}, {\"X\": 0.19006310403347015, \"Y\": 0.1959037035703659}, {\"X\": 0.1840410679578781, \"Y\": 0.1959037035703659}]}, \"Id\": \"56255c49-fdea-44d3-bc15-f96b6f7e92f4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80078887939453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04562599956989288, \"Height\": 0.011216459795832634, \"Left\": 0.19423770904541016, \"Top\": 0.18799102306365967}, \"Polygon\": [{\"X\": 0.19423770904541016, \"Y\": 0.18799102306365967}, {\"X\": 0.23986370861530304, \"Y\": 0.18799102306365967}, {\"X\": 0.23986370861530304, \"Y\": 0.19920748472213745}, {\"X\": 0.19423770904541016, \"Y\": 0.19920748472213745}]}, \"Id\": \"85ad3549-2326-4a0b-9755-8401af79c8e4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48738098144531, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0375102199614048, \"Height\": 0.011070829816162586, \"Left\": 0.24459946155548096, \"Top\": 0.1877196729183197}, \"Polygon\": [{\"X\": 0.24459946155548096, \"Y\": 0.1877196729183197}, {\"X\": 0.28210967779159546, \"Y\": 0.1877196729183197}, {\"X\": 0.28210967779159546, \"Y\": 0.19879050552845}, {\"X\": 0.24459946155548096, \"Y\": 0.19879050552845}]}, \"Id\": \"f0efb295-d2fc-4f5e-9d44-421282d10309\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.97615051269531, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03783627972006798, \"Height\": 0.013628309592604637, \"Left\": 0.34742024540901184, \"Top\": 0.18805049359798431}, \"Polygon\": [{\"X\": 0.34742024540901184, \"Y\": 0.18805049359798431}, {\"X\": 0.3852565288543701, \"Y\": 0.18805049359798431}, {\"X\": 0.3852565288543701, \"Y\": 0.2016788125038147}, {\"X\": 0.34742024540901184, \"Y\": 0.2016788125038147}]}, \"Id\": \"06ce6806-8d58-4d49-8730-75570ddf4957\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81169128417969, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008497060276567936, \"Height\": 0.010744139552116394, \"Left\": 0.390324205160141, \"Top\": 0.18817254900932312}, \"Polygon\": [{\"X\": 0.390324205160141, \"Y\": 0.18817254900932312}, {\"X\": 0.39882126450538635, \"Y\": 0.18817254900932312}, {\"X\": 0.39882126450538635, \"Y\": 0.19891668856143951}, {\"X\": 0.390324205160141, \"Y\": 0.19891668856143951}]}, \"Id\": \"cd6f437f-7bca-4434-99b0-0ece0af2ec12\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.81804656982422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005797599907964468, \"Height\": 0.0026002300437539816, \"Left\": 0.40416932106018066, \"Top\": 0.19331595301628113}, \"Polygon\": [{\"X\": 0.40416932106018066, \"Y\": 0.19331595301628113}, {\"X\": 0.40996691584587097, \"Y\": 0.19331595301628113}, {\"X\": 0.40996691584587097, \"Y\": 0.19591617584228516}, {\"X\": 0.40416932106018066, \"Y\": 0.19591617584228516}]}, \"Id\": \"1a8eeb07-1a6a-4ee4-b8bf-571dda7a4f0e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77215576171875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04582158103585243, \"Height\": 0.011276939883828163, \"Left\": 0.41407400369644165, \"Top\": 0.18795108795166016}, \"Polygon\": [{\"X\": 0.41407400369644165, \"Y\": 0.18795108795166016}, {\"X\": 0.4598955810070038, \"Y\": 0.18795108795166016}, {\"X\": 0.4598955810070038, \"Y\": 0.19922803342342377}, {\"X\": 0.41407400369644165, \"Y\": 0.19922803342342377}]}, \"Id\": \"ba5c87d7-c0d4-4d9b-ac78-f607fb695c49\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44156646728516, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03815469145774841, \"Height\": 0.011052249930799007, \"Left\": 0.46484747529029846, \"Top\": 0.1880303919315338}, \"Polygon\": [{\"X\": 0.46484747529029846, \"Y\": 0.1880303919315338}, {\"X\": 0.5030021667480469, \"Y\": 0.1880303919315338}, {\"X\": 0.5030021667480469, \"Y\": 0.1990826427936554}, {\"X\": 0.46484747529029846, \"Y\": 0.1990826427936554}]}, \"Id\": \"9fc02742-e3c5-408d-9269-e0aaa25907af\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.50362396240234, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03595004975795746, \"Height\": 0.01417435985058546, \"Left\": 0.5386240482330322, \"Top\": 0.18831779062747955}, \"Polygon\": [{\"X\": 0.5386240482330322, \"Y\": 0.18831779062747955}, {\"X\": 0.5745741128921509, \"Y\": 0.18831779062747955}, {\"X\": 0.5745741128921509, \"Y\": 0.2024921476840973}, {\"X\": 0.5386240482330322, \"Y\": 0.2024921476840973}]}, \"Id\": \"03b35ec6-1c99-466c-91a6-5fcdcacba492\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81118774414062, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00831920001655817, \"Height\": 0.010835629887878895, \"Left\": 0.5812742114067078, \"Top\": 0.18813008069992065}, \"Polygon\": [{\"X\": 0.5812742114067078, \"Y\": 0.18813008069992065}, {\"X\": 0.5895934104919434, \"Y\": 0.18813008069992065}, {\"X\": 0.5895934104919434, \"Y\": 0.19896571338176727}, {\"X\": 0.5812742114067078, \"Y\": 0.19896571338176727}]}, \"Id\": \"50330a9a-de56-4e84-bef2-7f4f22932ba0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 94.92777252197266, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006088499911129475, \"Height\": 0.002408179920166731, \"Left\": 0.5947747230529785, \"Top\": 0.1933431625366211}, \"Polygon\": [{\"X\": 0.5947747230529785, \"Y\": 0.1933431625366211}, {\"X\": 0.6008632183074951, \"Y\": 0.1933431625366211}, {\"X\": 0.6008632183074951, \"Y\": 0.1957513391971588}, {\"X\": 0.5947747230529785, \"Y\": 0.1957513391971588}]}, \"Id\": \"a7b64037-60a0-4d1d-9893-cc487c7217cc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66805267333984, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046539559960365295, \"Height\": 0.011455330066382885, \"Left\": 0.6043344140052795, \"Top\": 0.18781091272830963}, \"Polygon\": [{\"X\": 0.6043344140052795, \"Y\": 0.18781091272830963}, {\"X\": 0.6508739590644836, \"Y\": 0.18781091272830963}, {\"X\": 0.6508739590644836, \"Y\": 0.1992662400007248}, {\"X\": 0.6043344140052795, \"Y\": 0.1992662400007248}]}, \"Id\": \"08d7d8a4-fa81-465d-9840-b65a094af5d0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5077896118164, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038222070783376694, \"Height\": 0.011097489856183529, \"Left\": 0.6556023955345154, \"Top\": 0.18809948861598969}, \"Polygon\": [{\"X\": 0.6556023955345154, \"Y\": 0.18809948861598969}, {\"X\": 0.6938244700431824, \"Y\": 0.18809948861598969}, {\"X\": 0.6938244700431824, \"Y\": 0.1991969794034958}, {\"X\": 0.6556023955345154, \"Y\": 0.1991969794034958}]}, \"Id\": \"1a97191b-08fd-44a8-9c0b-c65b27abc76a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.01918029785156, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03830625116825104, \"Height\": 0.013881679624319077, \"Left\": 0.12727898359298706, \"Top\": 0.20716533064842224}, \"Polygon\": [{\"X\": 0.12727898359298706, \"Y\": 0.20716533064842224}, {\"X\": 0.1655852347612381, \"Y\": 0.20716533064842224}, {\"X\": 0.1655852347612381, \"Y\": 0.22104701399803162}, {\"X\": 0.12727898359298706, \"Y\": 0.22104701399803162}]}, \"Id\": \"727dfe9d-3918-41fd-9379-9af2ec33d178\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84551239013672, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008159499615430832, \"Height\": 0.010868499986827374, \"Left\": 0.17062970995903015, \"Top\": 0.20732606947422028}, \"Polygon\": [{\"X\": 0.17062970995903015, \"Y\": 0.20732606947422028}, {\"X\": 0.17878921329975128, \"Y\": 0.20732606947422028}, {\"X\": 0.17878921329975128, \"Y\": 0.21819457411766052}, {\"X\": 0.17062970995903015, \"Y\": 0.21819457411766052}]}, \"Id\": \"ac9030d6-9bb8-4261-a38d-7e6ff4970927\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.63269805908203, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005834110081195831, \"Height\": 0.0022825798951089382, \"Left\": 0.1840832233428955, \"Top\": 0.21269667148590088}, \"Polygon\": [{\"X\": 0.1840832233428955, \"Y\": 0.21269667148590088}, {\"X\": 0.18991732597351074, \"Y\": 0.21269667148590088}, {\"X\": 0.18991732597351074, \"Y\": 0.21497924625873566}, {\"X\": 0.1840832233428955, \"Y\": 0.21497924625873566}]}, \"Id\": \"a7c60e29-252a-4ab6-9c24-d62286db1ffc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7897720336914, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04513106122612953, \"Height\": 0.011172129772603512, \"Left\": 0.1945791244506836, \"Top\": 0.20717394351959229}, \"Polygon\": [{\"X\": 0.1945791244506836, \"Y\": 0.20717394351959229}, {\"X\": 0.23971018195152283, \"Y\": 0.20717394351959229}, {\"X\": 0.23971018195152283, \"Y\": 0.21834607422351837}, {\"X\": 0.1945791244506836, \"Y\": 0.21834607422351837}]}, \"Id\": \"59a479f0-eff2-4f0c-8053-cbb701aa8330\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.21463775634766, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03834319859743118, \"Height\": 0.010882199741899967, \"Left\": 0.24484160542488098, \"Top\": 0.20733407139778137}, \"Polygon\": [{\"X\": 0.24484160542488098, \"Y\": 0.20733407139778137}, {\"X\": 0.28318479657173157, \"Y\": 0.20733407139778137}, {\"X\": 0.28318479657173157, \"Y\": 0.21821627020835876}, {\"X\": 0.24484160542488098, \"Y\": 0.21821627020835876}]}, \"Id\": \"cf42b156-bd9b-48fc-b871-891145d36211\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.15889739990234, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03762603923678398, \"Height\": 0.01363465003669262, \"Left\": 0.3473963141441345, \"Top\": 0.20725855231285095}, \"Polygon\": [{\"X\": 0.3473963141441345, \"Y\": 0.20725855231285095}, {\"X\": 0.3850223422050476, \"Y\": 0.20725855231285095}, {\"X\": 0.3850223422050476, \"Y\": 0.22089320421218872}, {\"X\": 0.3473963141441345, \"Y\": 0.22089320421218872}]}, \"Id\": \"23e61974-47f5-42a9-b51d-81df40c2db19\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75996398925781, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008290950208902359, \"Height\": 0.01093129999935627, \"Left\": 0.3904518485069275, \"Top\": 0.2073039710521698}, \"Polygon\": [{\"X\": 0.3904518485069275, \"Y\": 0.2073039710521698}, {\"X\": 0.39874279499053955, \"Y\": 0.2073039710521698}, {\"X\": 0.39874279499053955, \"Y\": 0.21823526918888092}, {\"X\": 0.3904518485069275, \"Y\": 0.21823526918888092}]}, \"Id\": \"c60cbb52-21cb-42e8-864c-0311542cadcf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.65235900878906, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005922120064496994, \"Height\": 0.0023968599271029234, \"Left\": 0.40391507744789124, \"Top\": 0.2126564383506775}, \"Polygon\": [{\"X\": 0.40391507744789124, \"Y\": 0.2126564383506775}, {\"X\": 0.40983718633651733, \"Y\": 0.2126564383506775}, {\"X\": 0.40983718633651733, \"Y\": 0.21505330502986908}, {\"X\": 0.40391507744789124, \"Y\": 0.21505330502986908}]}, \"Id\": \"dbb07221-0692-4621-800c-2ae43ac778dc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80437469482422, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04559088125824928, \"Height\": 0.011246389709413052, \"Left\": 0.41410312056541443, \"Top\": 0.2070954144001007}, \"Polygon\": [{\"X\": 0.41410312056541443, \"Y\": 0.2070954144001007}, {\"X\": 0.4596939980983734, \"Y\": 0.2070954144001007}, {\"X\": 0.4596939980983734, \"Y\": 0.21834179759025574}, {\"X\": 0.41410312056541443, \"Y\": 0.21834179759025574}]}, \"Id\": \"124eeea5-6045-4d62-baab-9065f2f25501\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5634765625, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038031160831451416, \"Height\": 0.010872909799218178, \"Left\": 0.4649454355239868, \"Top\": 0.20732761919498444}, \"Polygon\": [{\"X\": 0.4649454355239868, \"Y\": 0.20732761919498444}, {\"X\": 0.5029765963554382, \"Y\": 0.20732761919498444}, {\"X\": 0.5029765963554382, \"Y\": 0.21820053458213806}, {\"X\": 0.4649454355239868, \"Y\": 0.21820053458213806}]}, \"Id\": \"46b641a2-3d1e-4abc-ac1d-ac57b5bce933\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.98257446289062, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03710044175386429, \"Height\": 0.01376274973154068, \"Left\": 0.5385319590568542, \"Top\": 0.20716741681098938}, \"Polygon\": [{\"X\": 0.5385319590568542, \"Y\": 0.20716741681098938}, {\"X\": 0.5756323933601379, \"Y\": 0.20716741681098938}, {\"X\": 0.5756323933601379, \"Y\": 0.22093017399311066}, {\"X\": 0.5385319590568542, \"Y\": 0.22093017399311066}]}, \"Id\": \"8cc05b12-5f48-44b7-a910-355c2dce8083\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83283996582031, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008332910016179085, \"Height\": 0.010959330014884472, \"Left\": 0.5812909603118896, \"Top\": 0.20725899934768677}, \"Polygon\": [{\"X\": 0.5812909603118896, \"Y\": 0.20725899934768677}, {\"X\": 0.5896238684654236, \"Y\": 0.20725899934768677}, {\"X\": 0.5896238684654236, \"Y\": 0.21821832656860352}, {\"X\": 0.5812909603118896, \"Y\": 0.21821832656860352}]}, \"Id\": \"1c6fc696-e099-4049-8e17-908c7337b4c5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.33763885498047, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0058707501739263535, \"Height\": 0.002191239967942238, \"Left\": 0.5948605537414551, \"Top\": 0.21271508932113647}, \"Polygon\": [{\"X\": 0.5948605537414551, \"Y\": 0.21271508932113647}, {\"X\": 0.6007313132286072, \"Y\": 0.21271508932113647}, {\"X\": 0.6007313132286072, \"Y\": 0.21490633487701416}, {\"X\": 0.5948605537414551, \"Y\": 0.21490633487701416}]}, \"Id\": \"2f6c6f57-0537-4b2e-b8eb-6f7bc5e6609b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8619155883789, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04526263847947121, \"Height\": 0.011145570315420628, \"Left\": 0.6049388647079468, \"Top\": 0.2071310579776764}, \"Polygon\": [{\"X\": 0.6049388647079468, \"Y\": 0.2071310579776764}, {\"X\": 0.6502014994621277, \"Y\": 0.2071310579776764}, {\"X\": 0.6502014994621277, \"Y\": 0.21827663481235504}, {\"X\": 0.6049388647079468, \"Y\": 0.21827663481235504}]}, \"Id\": \"a75b0763-291d-4337-8705-dd6d13f51bf1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46189880371094, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038134898990392685, \"Height\": 0.01108906976878643, \"Left\": 0.6556364297866821, \"Top\": 0.207254558801651}, \"Polygon\": [{\"X\": 0.6556364297866821, \"Y\": 0.207254558801651}, {\"X\": 0.6937713027000427, \"Y\": 0.207254558801651}, {\"X\": 0.6937713027000427, \"Y\": 0.21834363043308258}, {\"X\": 0.6556364297866821, \"Y\": 0.21834363043308258}]}, \"Id\": \"5096a702-6583-4392-ba00-a7a39340cd5a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49526977539062, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03883194923400879, \"Height\": 0.01464604027569294, \"Left\": 0.1266448199748993, \"Top\": 0.2260914295911789}, \"Polygon\": [{\"X\": 0.1266448199748993, \"Y\": 0.2260914295911789}, {\"X\": 0.16547676920890808, \"Y\": 0.2260914295911789}, {\"X\": 0.16547676920890808, \"Y\": 0.24073746800422668}, {\"X\": 0.1266448199748993, \"Y\": 0.24073746800422668}]}, \"Id\": \"278f8a41-b66a-473f-a44c-8c9a5b27185f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81803894042969, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00870543997734785, \"Height\": 0.01083036046475172, \"Left\": 0.17036618292331696, \"Top\": 0.22625821828842163}, \"Polygon\": [{\"X\": 0.17036618292331696, \"Y\": 0.22625821828842163}, {\"X\": 0.17907162010669708, \"Y\": 0.22625821828842163}, {\"X\": 0.17907162010669708, \"Y\": 0.23708857595920563}, {\"X\": 0.17036618292331696, \"Y\": 0.23708857595920563}]}, \"Id\": \"03c10a6c-b64f-4d54-80f6-4c3f97090b4b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.14463806152344, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005984189920127392, \"Height\": 0.0022936800960451365, \"Left\": 0.18412718176841736, \"Top\": 0.23179107904434204}, \"Polygon\": [{\"X\": 0.18412718176841736, \"Y\": 0.23179107904434204}, {\"X\": 0.19011136889457703, \"Y\": 0.23179107904434204}, {\"X\": 0.19011136889457703, \"Y\": 0.23408475518226624}, {\"X\": 0.18412718176841736, \"Y\": 0.23408475518226624}]}, \"Id\": \"de6f0529-43f9-4e37-b5d5-95eff9a3b3f4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8069076538086, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045310430228710175, \"Height\": 0.011265870183706284, \"Left\": 0.1942025125026703, \"Top\": 0.2260092943906784}, \"Polygon\": [{\"X\": 0.1942025125026703, \"Y\": 0.2260092943906784}, {\"X\": 0.23951293528079987, \"Y\": 0.2260092943906784}, {\"X\": 0.23951293528079987, \"Y\": 0.237275168299675}, {\"X\": 0.1942025125026703, \"Y\": 0.237275168299675}]}, \"Id\": \"556f0412-d9e9-4f65-9df8-66bb530248cf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.87028503417969, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03828474134206772, \"Height\": 0.012615160085260868, \"Left\": 0.2454419583082199, \"Top\": 0.2256062626838684}, \"Polygon\": [{\"X\": 0.2454419583082199, \"Y\": 0.2256062626838684}, {\"X\": 0.28372669219970703, \"Y\": 0.2256062626838684}, {\"X\": 0.28372669219970703, \"Y\": 0.2382214218378067}, {\"X\": 0.2454419583082199, \"Y\": 0.2382214218378067}]}, \"Id\": \"e5728f63-a1bb-4dc0-b481-e60b45c0e820\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.66064453125, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038625821471214294, \"Height\": 0.015070989727973938, \"Left\": 0.34676358103752136, \"Top\": 0.22581861913204193}, \"Polygon\": [{\"X\": 0.34676358103752136, \"Y\": 0.22581861913204193}, {\"X\": 0.38538938760757446, \"Y\": 0.22581861913204193}, {\"X\": 0.38538938760757446, \"Y\": 0.24088960886001587}, {\"X\": 0.34676358103752136, \"Y\": 0.24088960886001587}]}, \"Id\": \"01f853f0-5522-4570-ba00-5b3429c7f06d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7360610961914, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00878128968179226, \"Height\": 0.01079609990119934, \"Left\": 0.3902128338813782, \"Top\": 0.22630029916763306}, \"Polygon\": [{\"X\": 0.3902128338813782, \"Y\": 0.22630029916763306}, {\"X\": 0.398994117975235, \"Y\": 0.22630029916763306}, {\"X\": 0.398994117975235, \"Y\": 0.2370963990688324}, {\"X\": 0.3902128338813782, \"Y\": 0.2370963990688324}]}, \"Id\": \"630f633b-6434-4994-8547-7a31098f6be3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.81195068359375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005835529882460833, \"Height\": 0.00244721001945436, \"Left\": 0.40421026945114136, \"Top\": 0.23162871599197388}, \"Polygon\": [{\"X\": 0.40421026945114136, \"Y\": 0.23162871599197388}, {\"X\": 0.4100458025932312, \"Y\": 0.23162871599197388}, {\"X\": 0.4100458025932312, \"Y\": 0.23407593369483948}, {\"X\": 0.40421026945114136, \"Y\": 0.23407593369483948}]}, \"Id\": \"d4befc86-4a78-49b7-812c-277aa4b9c4db\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75494384765625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.046145979315042496, \"Height\": 0.01181607972830534, \"Left\": 0.4134097695350647, \"Top\": 0.22576037049293518}, \"Polygon\": [{\"X\": 0.4134097695350647, \"Y\": 0.22576037049293518}, {\"X\": 0.4595557451248169, \"Y\": 0.22576037049293518}, {\"X\": 0.4595557451248169, \"Y\": 0.2375764548778534}, {\"X\": 0.4134097695350647, \"Y\": 0.2375764548778534}]}, \"Id\": \"afc5c3a1-239b-4ce3-a5db-70aea2f6c8bb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4062728881836, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038412850350141525, \"Height\": 0.011121540330350399, \"Left\": 0.4649118483066559, \"Top\": 0.2261718511581421}, \"Polygon\": [{\"X\": 0.4649118483066559, \"Y\": 0.2261718511581421}, {\"X\": 0.5033246874809265, \"Y\": 0.2261718511581421}, {\"X\": 0.5033246874809265, \"Y\": 0.23729339241981506}, {\"X\": 0.4649118483066559, \"Y\": 0.23729339241981506}]}, \"Id\": \"8b09c545-5f26-46e1-b053-e7b4fa170ccc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49781036376953, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036835961043834686, \"Height\": 0.014570550061762333, \"Left\": 0.5382199883460999, \"Top\": 0.22613660991191864}, \"Polygon\": [{\"X\": 0.5382199883460999, \"Y\": 0.22613660991191864}, {\"X\": 0.5750559568405151, \"Y\": 0.22613660991191864}, {\"X\": 0.5750559568405151, \"Y\": 0.2407071590423584}, {\"X\": 0.5382199883460999, \"Y\": 0.2407071590423584}]}, \"Id\": \"b2d38c64-996b-4f31-93eb-a95d621b9eed\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76638793945312, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008979500271379948, \"Height\": 0.010805009864270687, \"Left\": 0.5810137987136841, \"Top\": 0.22627019882202148}, \"Polygon\": [{\"X\": 0.5810137987136841, \"Y\": 0.22627019882202148}, {\"X\": 0.5899932980537415, \"Y\": 0.22627019882202148}, {\"X\": 0.5899932980537415, \"Y\": 0.23707520961761475}, {\"X\": 0.5810137987136841, \"Y\": 0.23707520961761475}]}, \"Id\": \"f056f475-e900-4d6c-afe0-b5edebe4706b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 95.9862289428711, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005932730156928301, \"Height\": 0.0021321598906069994, \"Left\": 0.594891369342804, \"Top\": 0.2319004088640213}, \"Polygon\": [{\"X\": 0.594891369342804, \"Y\": 0.2319004088640213}, {\"X\": 0.6008241176605225, \"Y\": 0.2319004088640213}, {\"X\": 0.6008241176605225, \"Y\": 0.23403257131576538}, {\"X\": 0.594891369342804, \"Y\": 0.23403257131576538}]}, \"Id\": \"2ec711d2-cd1d-42a5-aabc-97e0986177d5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73915100097656, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04592496156692505, \"Height\": 0.011139740236103535, \"Left\": 0.6044839024543762, \"Top\": 0.22611850500106812}, \"Polygon\": [{\"X\": 0.6044839024543762, \"Y\": 0.22611850500106812}, {\"X\": 0.6504088640213013, \"Y\": 0.22611850500106812}, {\"X\": 0.6504088640213013, \"Y\": 0.23725824058055878}, {\"X\": 0.6044839024543762, \"Y\": 0.23725824058055878}]}, \"Id\": \"d1ab4abb-22eb-417b-9038-d854a794485a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6580810546875, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038091760128736496, \"Height\": 0.011132669635117054, \"Left\": 0.6557819843292236, \"Top\": 0.2262069284915924}, \"Polygon\": [{\"X\": 0.6557819843292236, \"Y\": 0.2262069284915924}, {\"X\": 0.6938737630844116, \"Y\": 0.2262069284915924}, {\"X\": 0.6938737630844116, \"Y\": 0.23733960092067719}, {\"X\": 0.6557819843292236, \"Y\": 0.23733960092067719}]}, \"Id\": \"a2cf4bae-ec94-4b5e-b927-ea4ded059ffe\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.25470733642578, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03974638134241104, \"Height\": 0.013995709829032421, \"Left\": 0.07409178465604782, \"Top\": 0.3039601743221283}, \"Polygon\": [{\"X\": 0.07409178465604782, \"Y\": 0.3039601743221283}, {\"X\": 0.11383816599845886, \"Y\": 0.3039601743221283}, {\"X\": 0.11383816599845886, \"Y\": 0.317955881357193}, {\"X\": 0.07409178465604782, \"Y\": 0.317955881357193}]}, \"Id\": \"eb256baa-0610-44fd-b545-733c9f5c6dcd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57391357421875, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008665869943797588, \"Height\": 0.01068061962723732, \"Left\": 0.11826462298631668, \"Top\": 0.3039150536060333}, \"Polygon\": [{\"X\": 0.11826462298631668, \"Y\": 0.3039150536060333}, {\"X\": 0.12693049013614655, \"Y\": 0.3039150536060333}, {\"X\": 0.12693049013614655, \"Y\": 0.31459566950798035}, {\"X\": 0.11826462298631668, \"Y\": 0.31459566950798035}]}, \"Id\": \"113e61ca-c9cf-410d-b321-1ff91634707f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.1164779663086, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005802469793707132, \"Height\": 0.002386509906500578, \"Left\": 0.13186465203762054, \"Top\": 0.30926114320755005}, \"Polygon\": [{\"X\": 0.13186465203762054, \"Y\": 0.30926114320755005}, {\"X\": 0.13766711950302124, \"Y\": 0.30926114320755005}, {\"X\": 0.13766711950302124, \"Y\": 0.3116476535797119}, {\"X\": 0.13186465203762054, \"Y\": 0.3116476535797119}]}, \"Id\": \"d4347917-36e5-4812-b4e8-d3595b3860e3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7668228149414, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0526682585477829, \"Height\": 0.012844829820096493, \"Left\": 0.14238764345645905, \"Top\": 0.30202826857566833}, \"Polygon\": [{\"X\": 0.14238764345645905, \"Y\": 0.30202826857566833}, {\"X\": 0.19505590200424194, \"Y\": 0.30202826857566833}, {\"X\": 0.19505590200424194, \"Y\": 0.3148730993270874}, {\"X\": 0.14238764345645905, \"Y\": 0.3148730993270874}]}, \"Id\": \"7695786f-2875-432b-a232-0b43811477d0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.60211944580078, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045062191784381866, \"Height\": 0.012399129569530487, \"Left\": 0.20096224546432495, \"Top\": 0.3023182451725006}, \"Polygon\": [{\"X\": 0.20096224546432495, \"Y\": 0.3023182451725006}, {\"X\": 0.24602444469928741, \"Y\": 0.3023182451725006}, {\"X\": 0.24602444469928741, \"Y\": 0.3147173821926117}, {\"X\": 0.20096224546432495, \"Y\": 0.3147173821926117}]}, \"Id\": \"190bb004-3ea7-481b-9c36-4c6f939216ff\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.22298431396484, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037475138902664185, \"Height\": 0.013730970211327076, \"Left\": 0.27411171793937683, \"Top\": 0.30387967824935913}, \"Polygon\": [{\"X\": 0.27411171793937683, \"Y\": 0.30387967824935913}, {\"X\": 0.311586856842041, \"Y\": 0.30387967824935913}, {\"X\": 0.311586856842041, \"Y\": 0.31761065125465393}, {\"X\": 0.27411171793937683, \"Y\": 0.31761065125465393}]}, \"Id\": \"d1410821-8f33-40d5-92a8-9cea8c23fcf2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62638092041016, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009051240049302578, \"Height\": 0.010711530223488808, \"Left\": 0.3163191080093384, \"Top\": 0.3038783669471741}, \"Polygon\": [{\"X\": 0.3163191080093384, \"Y\": 0.3038783669471741}, {\"X\": 0.32537034153938293, \"Y\": 0.3038783669471741}, {\"X\": 0.32537034153938293, \"Y\": 0.31458988785743713}, {\"X\": 0.3163191080093384, \"Y\": 0.31458988785743713}]}, \"Id\": \"0b3cec6a-2c73-4893-a244-f03f00927fdd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.88341522216797, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005890179891139269, \"Height\": 0.0023388199042528868, \"Left\": 0.33048951625823975, \"Top\": 0.3092213571071625}, \"Polygon\": [{\"X\": 0.33048951625823975, \"Y\": 0.3092213571071625}, {\"X\": 0.3363797068595886, \"Y\": 0.3092213571071625}, {\"X\": 0.3363797068595886, \"Y\": 0.31156018376350403}, {\"X\": 0.33048951625823975, \"Y\": 0.31156018376350403}]}, \"Id\": \"fd7e743c-8b8b-4982-8ca7-04bf5dc2eae0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77884674072266, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0529254786670208, \"Height\": 0.012780340388417244, \"Left\": 0.340670108795166, \"Top\": 0.3020567297935486}, \"Polygon\": [{\"X\": 0.340670108795166, \"Y\": 0.3020567297935486}, {\"X\": 0.3935955762863159, \"Y\": 0.3020567297935486}, {\"X\": 0.3935955762863159, \"Y\": 0.3148370683193207}, {\"X\": 0.340670108795166, \"Y\": 0.3148370683193207}]}, \"Id\": \"0ee29540-2f2c-41d7-9236-ac5d57434431\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42500305175781, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04520339146256447, \"Height\": 0.012409799732267857, \"Left\": 0.3991204500198364, \"Top\": 0.30232518911361694}, \"Polygon\": [{\"X\": 0.3991204500198364, \"Y\": 0.30232518911361694}, {\"X\": 0.4443238377571106, \"Y\": 0.30232518911361694}, {\"X\": 0.4443238377571106, \"Y\": 0.3147349953651428}, {\"X\": 0.3991204500198364, \"Y\": 0.3147349953651428}]}, \"Id\": \"4c9b7560-64b2-4b4d-844d-b1889e372dae\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.21432495117188, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03742830082774162, \"Height\": 0.013879220001399517, \"Left\": 0.47305700182914734, \"Top\": 0.30398908257484436}, \"Polygon\": [{\"X\": 0.47305700182914734, \"Y\": 0.30398908257484436}, {\"X\": 0.5104852914810181, \"Y\": 0.30398908257484436}, {\"X\": 0.5104852914810181, \"Y\": 0.31786829233169556}, {\"X\": 0.47305700182914734, \"Y\": 0.31786829233169556}]}, \"Id\": \"73600fc9-98e4-442d-bae9-63531852b617\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35099029541016, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008781099691987038, \"Height\": 0.010516339913010597, \"Left\": 0.5153563022613525, \"Top\": 0.3040083944797516}, \"Polygon\": [{\"X\": 0.5153563022613525, \"Y\": 0.3040083944797516}, {\"X\": 0.5241373777389526, \"Y\": 0.3040083944797516}, {\"X\": 0.5241373777389526, \"Y\": 0.31452473998069763}, {\"X\": 0.5153563022613525, \"Y\": 0.31452473998069763}]}, \"Id\": \"c8c672ad-b2a6-4338-bbc3-696c1faa44b6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.40737915039062, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005814829841256142, \"Height\": 0.0021775299683213234, \"Left\": 0.5288643836975098, \"Top\": 0.30932414531707764}, \"Polygon\": [{\"X\": 0.5288643836975098, \"Y\": 0.30932414531707764}, {\"X\": 0.5346792340278625, \"Y\": 0.30932414531707764}, {\"X\": 0.5346792340278625, \"Y\": 0.311501681804657}, {\"X\": 0.5288643836975098, \"Y\": 0.311501681804657}]}, \"Id\": \"56485b0b-012e-41d4-92da-1b6aea786161\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40576934814453, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05235955864191055, \"Height\": 0.012903899885714054, \"Left\": 0.539114236831665, \"Top\": 0.30203333497047424}, \"Polygon\": [{\"X\": 0.539114236831665, \"Y\": 0.30203333497047424}, {\"X\": 0.5914738178253174, \"Y\": 0.30203333497047424}, {\"X\": 0.5914738178253174, \"Y\": 0.3149372339248657}, {\"X\": 0.539114236831665, \"Y\": 0.3149372339248657}]}, \"Id\": \"a7d57712-8acf-4760-a8aa-c9aeb8eaaaaf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40342712402344, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04436802864074707, \"Height\": 0.012437350116670132, \"Left\": 0.5980091691017151, \"Top\": 0.30232763290405273}, \"Polygon\": [{\"X\": 0.5980091691017151, \"Y\": 0.30232763290405273}, {\"X\": 0.6423771977424622, \"Y\": 0.30232763290405273}, {\"X\": 0.6423771977424622, \"Y\": 0.31476497650146484}, {\"X\": 0.5980091691017151, \"Y\": 0.31476497650146484}]}, \"Id\": \"85a7b409-916a-4802-87bc-78fd5d9df9bc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.06179809570312, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03759169951081276, \"Height\": 0.013406000100076199, \"Left\": 0.7076572775840759, \"Top\": 0.3040742874145508}, \"Polygon\": [{\"X\": 0.7076572775840759, \"Y\": 0.3040742874145508}, {\"X\": 0.7452489733695984, \"Y\": 0.3040742874145508}, {\"X\": 0.7452489733695984, \"Y\": 0.31748029589653015}, {\"X\": 0.7076572775840759, \"Y\": 0.31748029589653015}]}, \"Id\": \"068945c0-f691-42bf-aaeb-1b329135583a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46147918701172, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008899330161511898, \"Height\": 0.010624170303344727, \"Left\": 0.7502259016036987, \"Top\": 0.3039707541465759}, \"Polygon\": [{\"X\": 0.7502259016036987, \"Y\": 0.3039707541465759}, {\"X\": 0.7591252326965332, \"Y\": 0.3039707541465759}, {\"X\": 0.7591252326965332, \"Y\": 0.31459492444992065}, {\"X\": 0.7502259016036987, \"Y\": 0.31459492444992065}]}, \"Id\": \"22f36a18-76d6-4bfe-be6a-3ed42d8fe5c2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.78227233886719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006063989829272032, \"Height\": 0.002253419952467084, \"Left\": 0.7641253471374512, \"Top\": 0.3092603087425232}, \"Polygon\": [{\"X\": 0.7641253471374512, \"Y\": 0.3092603087425232}, {\"X\": 0.7701893448829651, \"Y\": 0.3092603087425232}, {\"X\": 0.7701893448829651, \"Y\": 0.3115137219429016}, {\"X\": 0.7641253471374512, \"Y\": 0.3115137219429016}]}, \"Id\": \"f56bbb21-d152-4e47-87da-a3562cc7e8a4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6269302368164, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052189890295267105, \"Height\": 0.013116680085659027, \"Left\": 0.77476966381073, \"Top\": 0.30191361904144287}, \"Polygon\": [{\"X\": 0.77476966381073, \"Y\": 0.30191361904144287}, {\"X\": 0.8269595503807068, \"Y\": 0.30191361904144287}, {\"X\": 0.8269595503807068, \"Y\": 0.3150303065776825}, {\"X\": 0.77476966381073, \"Y\": 0.3150303065776825}]}, \"Id\": \"ba4b0749-7995-4c68-85d8-d080643388c4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48355102539062, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045694198459386826, \"Height\": 0.012591030448675156, \"Left\": 0.8328633904457092, \"Top\": 0.302104115486145}, \"Polygon\": [{\"X\": 0.8328633904457092, \"Y\": 0.302104115486145}, {\"X\": 0.8785576224327087, \"Y\": 0.302104115486145}, {\"X\": 0.8785576224327087, \"Y\": 0.3146951496601105}, {\"X\": 0.8328633904457092, \"Y\": 0.3146951496601105}]}, \"Id\": \"baddfdc3-80c6-40e7-aeca-77b311186aa7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.54119873046875, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039198506623506546, \"Height\": 0.015275299549102783, \"Left\": 0.07440507411956787, \"Top\": 0.3255998492240906}, \"Polygon\": [{\"X\": 0.07440507411956787, \"Y\": 0.3255998492240906}, {\"X\": 0.11360357701778412, \"Y\": 0.3255998492240906}, {\"X\": 0.11360357701778412, \"Y\": 0.34087514877319336}, {\"X\": 0.07440507411956787, \"Y\": 0.34087514877319336}]}, \"Id\": \"db39560a-3130-4391-8e8c-9e02a4c4f4fd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44763946533203, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00888233445584774, \"Height\": 0.010699779726564884, \"Left\": 0.1184062659740448, \"Top\": 0.3261753022670746}, \"Polygon\": [{\"X\": 0.1184062659740448, \"Y\": 0.3261753022670746}, {\"X\": 0.1272885948419571, \"Y\": 0.3261753022670746}, {\"X\": 0.1272885948419571, \"Y\": 0.3368750810623169}, {\"X\": 0.1184062659740448, \"Y\": 0.3368750810623169}]}, \"Id\": \"d9d4f701-03f4-45c6-9feb-47abf26e69ea\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.70585632324219, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006009390112012625, \"Height\": 0.0024665300734341145, \"Left\": 0.13185982406139374, \"Top\": 0.33135199546813965}, \"Polygon\": [{\"X\": 0.13185982406139374, \"Y\": 0.33135199546813965}, {\"X\": 0.1378692090511322, \"Y\": 0.33135199546813965}, {\"X\": 0.1378692090511322, \"Y\": 0.3338185250759125}, {\"X\": 0.13185982406139374, \"Y\": 0.3338185250759125}]}, \"Id\": \"2a5972d8-7a18-4ce2-a153-2954a477ebeb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8238525390625, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052200350910425186, \"Height\": 0.0126366401091218, \"Left\": 0.14245344698429108, \"Top\": 0.32483476400375366}, \"Polygon\": [{\"X\": 0.14245344698429108, \"Y\": 0.32483476400375366}, {\"X\": 0.19465379416942596, \"Y\": 0.32483476400375366}, {\"X\": 0.19465379416942596, \"Y\": 0.3374713957309723}, {\"X\": 0.14245344698429108, \"Y\": 0.3374713957309723}]}, \"Id\": \"d78d32db-c689-4bfc-a1f6-353107862a37\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.99457550048828, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04469253867864609, \"Height\": 0.012736519798636436, \"Left\": 0.2008705586194992, \"Top\": 0.3243785798549652}, \"Polygon\": [{\"X\": 0.2008705586194992, \"Y\": 0.3243785798549652}, {\"X\": 0.2455631047487259, \"Y\": 0.3243785798549652}, {\"X\": 0.2455631047487259, \"Y\": 0.3371151089668274}, {\"X\": 0.2008705586194992, \"Y\": 0.3371151089668274}]}, \"Id\": \"2d84ae85-f8c7-410d-8a16-6c603bc8d66f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23416137695312, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03734859824180603, \"Height\": 0.013740040361881256, \"Left\": 0.273968905210495, \"Top\": 0.325983464717865}, \"Polygon\": [{\"X\": 0.273968905210495, \"Y\": 0.325983464717865}, {\"X\": 0.311317503452301, \"Y\": 0.325983464717865}, {\"X\": 0.311317503452301, \"Y\": 0.33972349762916565}, {\"X\": 0.273968905210495, \"Y\": 0.33972349762916565}]}, \"Id\": \"c6dd4a34-7090-4381-9b0a-7e214cf387cf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25637817382812, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009275590069591999, \"Height\": 0.01066690031439066, \"Left\": 0.31625688076019287, \"Top\": 0.3261912167072296}, \"Polygon\": [{\"X\": 0.31625688076019287, \"Y\": 0.3261912167072296}, {\"X\": 0.325532466173172, \"Y\": 0.3261912167072296}, {\"X\": 0.325532466173172, \"Y\": 0.3368581235408783}, {\"X\": 0.31625688076019287, \"Y\": 0.3368581235408783}]}, \"Id\": \"a0a2b5e0-0cdb-44e6-85da-a9c7cdc2beb9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.094482421875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005714119877666235, \"Height\": 0.0023673400282859802, \"Left\": 0.3305550515651703, \"Top\": 0.33137229084968567}, \"Polygon\": [{\"X\": 0.3305550515651703, \"Y\": 0.33137229084968567}, {\"X\": 0.33626917004585266, \"Y\": 0.33137229084968567}, {\"X\": 0.33626917004585266, \"Y\": 0.33373963832855225}, {\"X\": 0.3305550515651703, \"Y\": 0.33373963832855225}]}, \"Id\": \"c9534d1d-8a23-40eb-a875-f0dc020924a3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71748352050781, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052574820816516876, \"Height\": 0.012855829671025276, \"Left\": 0.3405773341655731, \"Top\": 0.3240283727645874}, \"Polygon\": [{\"X\": 0.3405773341655731, \"Y\": 0.3240283727645874}, {\"X\": 0.3931521475315094, \"Y\": 0.3240283727645874}, {\"X\": 0.3931521475315094, \"Y\": 0.33688420057296753}, {\"X\": 0.3405773341655731, \"Y\": 0.33688420057296753}]}, \"Id\": \"fae0facf-02b7-425a-b28e-0916e7efac46\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41080474853516, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04527688026428223, \"Height\": 0.012389250099658966, \"Left\": 0.39912155270576477, \"Top\": 0.32450491189956665}, \"Polygon\": [{\"X\": 0.39912155270576477, \"Y\": 0.32450491189956665}, {\"X\": 0.444398432970047, \"Y\": 0.32450491189956665}, {\"X\": 0.444398432970047, \"Y\": 0.336894154548645}, {\"X\": 0.39912155270576477, \"Y\": 0.336894154548645}]}, \"Id\": \"32032173-e77f-4747-abfc-123c88e68cc7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08805847167969, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036595530807971954, \"Height\": 0.01478859968483448, \"Left\": 0.4731886684894562, \"Top\": 0.3257700502872467}, \"Polygon\": [{\"X\": 0.4731886684894562, \"Y\": 0.3257700502872467}, {\"X\": 0.5097842216491699, \"Y\": 0.3257700502872467}, {\"X\": 0.5097842216491699, \"Y\": 0.34055864810943604}, {\"X\": 0.4731886684894562, \"Y\": 0.34055864810943604}]}, \"Id\": \"983351dc-a920-4913-a8bc-3a34b016d401\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.67361450195312, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009272940456867218, \"Height\": 0.010684420354664326, \"Left\": 0.515312910079956, \"Top\": 0.32621628046035767}, \"Polygon\": [{\"X\": 0.515312910079956, \"Y\": 0.32621628046035767}, {\"X\": 0.5245858430862427, \"Y\": 0.32621628046035767}, {\"X\": 0.5245858430862427, \"Y\": 0.3369007110595703}, {\"X\": 0.515312910079956, \"Y\": 0.3369007110595703}]}, \"Id\": \"7123d9c3-1f4b-437c-93c1-96b80a4d1d14\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.37055206298828, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005771220196038485, \"Height\": 0.0023860300425440073, \"Left\": 0.5290751457214355, \"Top\": 0.3313181698322296}, \"Polygon\": [{\"X\": 0.5290751457214355, \"Y\": 0.3313181698322296}, {\"X\": 0.5348463654518127, \"Y\": 0.3313181698322296}, {\"X\": 0.5348463654518127, \"Y\": 0.3337042033672333}, {\"X\": 0.5290751457214355, \"Y\": 0.3337042033672333}]}, \"Id\": \"7cbd3646-e2d4-43bd-b49f-041ec5e8dcf4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.681396484375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051896560937166214, \"Height\": 0.013235430233180523, \"Left\": 0.5393001437187195, \"Top\": 0.3242461681365967}, \"Polygon\": [{\"X\": 0.5393001437187195, \"Y\": 0.3242461681365967}, {\"X\": 0.5911967158317566, \"Y\": 0.3242461681365967}, {\"X\": 0.5911967158317566, \"Y\": 0.3374815881252289}, {\"X\": 0.5393001437187195, \"Y\": 0.3374815881252289}]}, \"Id\": \"2e61ea30-6d11-4493-ae75-c653776dc200\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38611602783203, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04536280035972595, \"Height\": 0.012599700130522251, \"Left\": 0.5974553227424622, \"Top\": 0.3244258165359497}, \"Polygon\": [{\"X\": 0.5974553227424622, \"Y\": 0.3244258165359497}, {\"X\": 0.6428180932998657, \"Y\": 0.3244258165359497}, {\"X\": 0.6428180932998657, \"Y\": 0.33702552318573}, {\"X\": 0.5974553227424622, \"Y\": 0.33702552318573}]}, \"Id\": \"33bb7bd1-21e7-4d55-9854-8db0b611e0e8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.03925323486328, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03766816109418869, \"Height\": 0.014046049676835537, \"Left\": 0.7081078886985779, \"Top\": 0.32608142495155334}, \"Polygon\": [{\"X\": 0.7081078886985779, \"Y\": 0.32608142495155334}, {\"X\": 0.7457760572433472, \"Y\": 0.32608142495155334}, {\"X\": 0.7457760572433472, \"Y\": 0.34012746810913086}, {\"X\": 0.7081078886985779, \"Y\": 0.34012746810913086}]}, \"Id\": \"242e264b-1784-4c4b-995a-d625ed58fa82\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74966430664062, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009077699854969978, \"Height\": 0.010627600364387035, \"Left\": 0.7501975893974304, \"Top\": 0.3262193202972412}, \"Polygon\": [{\"X\": 0.7501975893974304, \"Y\": 0.3262193202972412}, {\"X\": 0.7592753171920776, \"Y\": 0.3262193202972412}, {\"X\": 0.7592753171920776, \"Y\": 0.3368469178676605}, {\"X\": 0.7501975893974304, \"Y\": 0.3368469178676605}]}, \"Id\": \"6f114d75-8d2a-4262-8a72-02b6d4b81235\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.76210021972656, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005716079846024513, \"Height\": 0.002254039980471134, \"Left\": 0.764297366142273, \"Top\": 0.3314210772514343}, \"Polygon\": [{\"X\": 0.764297366142273, \"Y\": 0.3314210772514343}, {\"X\": 0.7700134515762329, \"Y\": 0.3314210772514343}, {\"X\": 0.7700134515762329, \"Y\": 0.3336751163005829}, {\"X\": 0.764297366142273, \"Y\": 0.3336751163005829}]}, \"Id\": \"9a6f382f-a6d1-4859-a813-310de8483a11\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70358276367188, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05213924124836922, \"Height\": 0.012913200072944164, \"Left\": 0.7740889191627502, \"Top\": 0.32441446185112}, \"Polygon\": [{\"X\": 0.7740889191627502, \"Y\": 0.32441446185112}, {\"X\": 0.826228141784668, \"Y\": 0.32441446185112}, {\"X\": 0.826228141784668, \"Y\": 0.33732765913009644}, {\"X\": 0.7740889191627502, \"Y\": 0.33732765913009644}]}, \"Id\": \"40308837-4d02-45fb-9b48-b1fa0f531b01\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54203796386719, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04575210064649582, \"Height\": 0.012532520107924938, \"Left\": 0.8329421877861023, \"Top\": 0.3244597911834717}, \"Polygon\": [{\"X\": 0.8329421877861023, \"Y\": 0.3244597911834717}, {\"X\": 0.8786942958831787, \"Y\": 0.3244597911834717}, {\"X\": 0.8786942958831787, \"Y\": 0.3369923233985901}, {\"X\": 0.8329421877861023, \"Y\": 0.3369923233985901}]}, \"Id\": \"7689fd04-2830-41cf-9f52-a633dad1c3d5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2501220703125, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03741154074668884, \"Height\": 0.013736920431256294, \"Left\": 0.07540828734636307, \"Top\": 0.34810781478881836}, \"Polygon\": [{\"X\": 0.07540828734636307, \"Y\": 0.34810781478881836}, {\"X\": 0.11281982809305191, \"Y\": 0.34810781478881836}, {\"X\": 0.11281982809305191, \"Y\": 0.3618447184562683}, {\"X\": 0.07540828734636307, \"Y\": 0.3618447184562683}]}, \"Id\": \"39ac4139-cb39-487c-a7ae-a29af8037095\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8436050415039, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008327829651534557, \"Height\": 0.010734730400145054, \"Left\": 0.11851202696561813, \"Top\": 0.3481406271457672}, \"Polygon\": [{\"X\": 0.11851202696561813, \"Y\": 0.3481406271457672}, {\"X\": 0.12683986127376556, \"Y\": 0.3481406271457672}, {\"X\": 0.12683986127376556, \"Y\": 0.3588753640651703}, {\"X\": 0.11851202696561813, \"Y\": 0.3588753640651703}]}, \"Id\": \"d1ba0c48-6ab6-454a-bbad-2bc8a0db2e98\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.81485748291016, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004878719802945852, \"Height\": 0.002389610046520829, \"Left\": 0.13246764242649078, \"Top\": 0.3534364402294159}, \"Polygon\": [{\"X\": 0.13246764242649078, \"Y\": 0.3534364402294159}, {\"X\": 0.13734635710716248, \"Y\": 0.3534364402294159}, {\"X\": 0.13734635710716248, \"Y\": 0.3558260500431061}, {\"X\": 0.13246764242649078, \"Y\": 0.3558260500431061}]}, \"Id\": \"7645a73b-e9dc-446c-9d1c-c5c6b0b6dd3b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77751159667969, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05259117856621742, \"Height\": 0.013016900047659874, \"Left\": 0.14222243428230286, \"Top\": 0.3462474048137665}, \"Polygon\": [{\"X\": 0.14222243428230286, \"Y\": 0.3462474048137665}, {\"X\": 0.19481360912322998, \"Y\": 0.3462474048137665}, {\"X\": 0.19481360912322998, \"Y\": 0.3592643141746521}, {\"X\": 0.14222243428230286, \"Y\": 0.3592643141746521}]}, \"Id\": \"8a6069c9-82ae-4450-aa77-d7c3dc3acb0d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.39987182617188, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044862810522317886, \"Height\": 0.012665750458836555, \"Left\": 0.2010432928800583, \"Top\": 0.34661272168159485}, \"Polygon\": [{\"X\": 0.2010432928800583, \"Y\": 0.34661272168159485}, {\"X\": 0.24590611457824707, \"Y\": 0.34661272168159485}, {\"X\": 0.24590611457824707, \"Y\": 0.35927847027778625}, {\"X\": 0.2010432928800583, \"Y\": 0.35927847027778625}]}, \"Id\": \"204c509a-1a78-4e9b-96fc-39f316ea76a9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.6397476196289, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03732382878661156, \"Height\": 0.01533638034015894, \"Left\": 0.2739756405353546, \"Top\": 0.3474295139312744}, \"Polygon\": [{\"X\": 0.2739756405353546, \"Y\": 0.3474295139312744}, {\"X\": 0.31129947304725647, \"Y\": 0.3474295139312744}, {\"X\": 0.31129947304725647, \"Y\": 0.3627658784389496}, {\"X\": 0.2739756405353546, \"Y\": 0.3627658784389496}]}, \"Id\": \"872257a2-4070-4d79-bc3c-e05a48536020\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82432556152344, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008801150135695934, \"Height\": 0.010606230236589909, \"Left\": 0.316468745470047, \"Top\": 0.3485362231731415}, \"Polygon\": [{\"X\": 0.316468745470047, \"Y\": 0.3485362231731415}, {\"X\": 0.3252699077129364, \"Y\": 0.3485362231731415}, {\"X\": 0.3252699077129364, \"Y\": 0.3591424524784088}, {\"X\": 0.316468745470047, \"Y\": 0.3591424524784088}]}, \"Id\": \"751ba84b-dfea-4406-bdab-dd947dd94508\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.8975601196289, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00572500005364418, \"Height\": 0.0022094000596553087, \"Left\": 0.330386221408844, \"Top\": 0.3535793721675873}, \"Polygon\": [{\"X\": 0.330386221408844, \"Y\": 0.3535793721675873}, {\"X\": 0.3361112177371979, \"Y\": 0.3535793721675873}, {\"X\": 0.3361112177371979, \"Y\": 0.3557887673377991}, {\"X\": 0.330386221408844, \"Y\": 0.3557887673377991}]}, \"Id\": \"ad6c89ff-9289-4042-b889-78a0fbdbd8fb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75626373291016, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052701469510793686, \"Height\": 0.012695980258286, \"Left\": 0.3398066759109497, \"Top\": 0.346578985452652}, \"Polygon\": [{\"X\": 0.3398066759109497, \"Y\": 0.346578985452652}, {\"X\": 0.3925081491470337, \"Y\": 0.346578985452652}, {\"X\": 0.3925081491470337, \"Y\": 0.3592749834060669}, {\"X\": 0.3398066759109497, \"Y\": 0.3592749834060669}]}, \"Id\": \"e7b22e6b-cdb3-4405-aebd-423fffca8795\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5813217163086, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044921599328517914, \"Height\": 0.012590079568326473, \"Left\": 0.3991036117076874, \"Top\": 0.3466518223285675}, \"Polygon\": [{\"X\": 0.3991036117076874, \"Y\": 0.3466518223285675}, {\"X\": 0.4440251886844635, \"Y\": 0.3466518223285675}, {\"X\": 0.4440251886844635, \"Y\": 0.35924190282821655}, {\"X\": 0.3991036117076874, \"Y\": 0.35924190282821655}]}, \"Id\": \"0a01e289-e940-4514-9388-b65701674a0b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.88397216796875, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03866012021899223, \"Height\": 0.01404512021690607, \"Left\": 0.4721059799194336, \"Top\": 0.3476092219352722}, \"Polygon\": [{\"X\": 0.4721059799194336, \"Y\": 0.3476092219352722}, {\"X\": 0.5107660889625549, \"Y\": 0.3476092219352722}, {\"X\": 0.5107660889625549, \"Y\": 0.3616543412208557}, {\"X\": 0.4721059799194336, \"Y\": 0.3616543412208557}]}, \"Id\": \"4d53071f-98bd-444b-bc50-914c7cd7d87f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.570068359375, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008453230373561382, \"Height\": 0.010762330144643784, \"Left\": 0.5155605673789978, \"Top\": 0.3481294810771942}, \"Polygon\": [{\"X\": 0.5155605673789978, \"Y\": 0.3481294810771942}, {\"X\": 0.5240138173103333, \"Y\": 0.3481294810771942}, {\"X\": 0.5240138173103333, \"Y\": 0.3588918149471283}, {\"X\": 0.5155605673789978, \"Y\": 0.3588918149471283}]}, \"Id\": \"a0e283b4-b7d9-4a71-9f44-559a5032b9d5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.47915649414062, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0057998900301754475, \"Height\": 0.00216630008071661, \"Left\": 0.5289219617843628, \"Top\": 0.35361722111701965}, \"Polygon\": [{\"X\": 0.5289219617843628, \"Y\": 0.35361722111701965}, {\"X\": 0.534721851348877, \"Y\": 0.35361722111701965}, {\"X\": 0.534721851348877, \"Y\": 0.35578352212905884}, {\"X\": 0.5289219617843628, \"Y\": 0.35578352212905884}]}, \"Id\": \"fc21b0bc-32dd-4511-8e68-6337010b4e5f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64803314208984, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053226251155138016, \"Height\": 0.013102199882268906, \"Left\": 0.5391141176223755, \"Top\": 0.3463464081287384}, \"Polygon\": [{\"X\": 0.5391141176223755, \"Y\": 0.3463464081287384}, {\"X\": 0.592340350151062, \"Y\": 0.3463464081287384}, {\"X\": 0.592340350151062, \"Y\": 0.3594486117362976}, {\"X\": 0.5391141176223755, \"Y\": 0.3594486117362976}]}, \"Id\": \"15776def-7048-480e-9618-94629664de24\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64873504638672, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04474109038710594, \"Height\": 0.012716240249574184, \"Left\": 0.5976519584655762, \"Top\": 0.34658610820770264}, \"Polygon\": [{\"X\": 0.5976519584655762, \"Y\": 0.34658610820770264}, {\"X\": 0.6423930525779724, \"Y\": 0.34658610820770264}, {\"X\": 0.6423930525779724, \"Y\": 0.3593023419380188}, {\"X\": 0.5976519584655762, \"Y\": 0.3593023419380188}]}, \"Id\": \"b8deeeeb-40d2-428e-9ba8-a6b67d66fd36\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.19695281982422, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03842949867248535, \"Height\": 0.01495394017547369, \"Left\": 0.7067148089408875, \"Top\": 0.34761282801628113}, \"Polygon\": [{\"X\": 0.7067148089408875, \"Y\": 0.34761282801628113}, {\"X\": 0.7451443076133728, \"Y\": 0.34761282801628113}, {\"X\": 0.7451443076133728, \"Y\": 0.3625667691230774}, {\"X\": 0.7067148089408875, \"Y\": 0.3625667691230774}]}, \"Id\": \"b494ccc4-0639-443d-b0bc-a6b0e5a3e54e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84996795654297, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008565460331737995, \"Height\": 0.010617219842970371, \"Left\": 0.7504464387893677, \"Top\": 0.34854772686958313}, \"Polygon\": [{\"X\": 0.7504464387893677, \"Y\": 0.34854772686958313}, {\"X\": 0.7590119242668152, \"Y\": 0.34854772686958313}, {\"X\": 0.7590119242668152, \"Y\": 0.3591649532318115}, {\"X\": 0.7504464387893677, \"Y\": 0.3591649532318115}]}, \"Id\": \"f705a862-a4ad-4955-93a0-7a0b4d9effd9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.19269561767578, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0056199501268565655, \"Height\": 0.0021818000823259354, \"Left\": 0.7643475532531738, \"Top\": 0.35350435972213745}, \"Polygon\": [{\"X\": 0.7643475532531738, \"Y\": 0.35350435972213745}, {\"X\": 0.7699674963951111, \"Y\": 0.35350435972213745}, {\"X\": 0.7699674963951111, \"Y\": 0.35568615794181824}, {\"X\": 0.7643475532531738, \"Y\": 0.35568615794181824}]}, \"Id\": \"e4bfff90-7a2b-4ba4-a430-9fe516a11283\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83672332763672, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052523400634527206, \"Height\": 0.013048579916357994, \"Left\": 0.7744333148002625, \"Top\": 0.3462326228618622}, \"Polygon\": [{\"X\": 0.7744333148002625, \"Y\": 0.3462326228618622}, {\"X\": 0.8269566893577576, \"Y\": 0.3462326228618622}, {\"X\": 0.8269566893577576, \"Y\": 0.3592812120914459}, {\"X\": 0.7744333148002625, \"Y\": 0.3592812120914459}]}, \"Id\": \"5faa2aaf-a833-4d96-be69-708b0ab38868\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7528076171875, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045740339905023575, \"Height\": 0.012761229649186134, \"Left\": 0.8329532742500305, \"Top\": 0.34653031826019287}, \"Polygon\": [{\"X\": 0.8329532742500305, \"Y\": 0.34653031826019287}, {\"X\": 0.8786936402320862, \"Y\": 0.34653031826019287}, {\"X\": 0.8786936402320862, \"Y\": 0.35929155349731445}, {\"X\": 0.8329532742500305, \"Y\": 0.35929155349731445}]}, \"Id\": \"3df3a459-7304-462b-81df-591f2b5be12d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14002227783203, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03741570562124252, \"Height\": 0.013834440149366856, \"Left\": 0.0755971297621727, \"Top\": 0.3703841269016266}, \"Polygon\": [{\"X\": 0.0755971297621727, \"Y\": 0.3703841269016266}, {\"X\": 0.11301283538341522, \"Y\": 0.3703841269016266}, {\"X\": 0.11301283538341522, \"Y\": 0.38421857357025146}, {\"X\": 0.0755971297621727, \"Y\": 0.38421857357025146}]}, \"Id\": \"9a72de43-f38b-493b-b3ec-ea0bcf164187\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85254669189453, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008165275678038597, \"Height\": 0.010739799588918686, \"Left\": 0.11863761395215988, \"Top\": 0.3705728054046631}, \"Polygon\": [{\"X\": 0.11863761395215988, \"Y\": 0.3705728054046631}, {\"X\": 0.12680289149284363, \"Y\": 0.3705728054046631}, {\"X\": 0.12680289149284363, \"Y\": 0.38131260871887207}, {\"X\": 0.11863761395215988, \"Y\": 0.38131260871887207}]}, \"Id\": \"2d7cf95a-3ef5-48a7-af50-1372394d8c0b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.82621002197266, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004889720119535923, \"Height\": 0.0024719000793993473, \"Left\": 0.13248476386070251, \"Top\": 0.37587255239486694}, \"Polygon\": [{\"X\": 0.13248476386070251, \"Y\": 0.37587255239486694}, {\"X\": 0.13737447559833527, \"Y\": 0.37587255239486694}, {\"X\": 0.13737447559833527, \"Y\": 0.37834444642066956}, {\"X\": 0.13248476386070251, \"Y\": 0.37834444642066956}]}, \"Id\": \"b6517db0-6fb4-49fe-9d94-44b7f0cb3eb2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78827667236328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05274511128664017, \"Height\": 0.012963560409843922, \"Left\": 0.1423618048429489, \"Top\": 0.36873483657836914}, \"Polygon\": [{\"X\": 0.1423618048429489, \"Y\": 0.36873483657836914}, {\"X\": 0.19510690867900848, \"Y\": 0.36873483657836914}, {\"X\": 0.19510690867900848, \"Y\": 0.3816983997821808}, {\"X\": 0.1423618048429489, \"Y\": 0.3816983997821808}]}, \"Id\": \"57f3a6f2-5423-4ef2-9b86-f3fc295160fb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65969848632812, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04477855935692787, \"Height\": 0.012687530368566513, \"Left\": 0.20052213966846466, \"Top\": 0.3689104914665222}, \"Polygon\": [{\"X\": 0.20052213966846466, \"Y\": 0.3689104914665222}, {\"X\": 0.24530069530010223, \"Y\": 0.3689104914665222}, {\"X\": 0.24530069530010223, \"Y\": 0.38159802556037903}, {\"X\": 0.20052213966846466, \"Y\": 0.38159802556037903}]}, \"Id\": \"65324fb8-b696-4601-9beb-9cd46302dac8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.82401275634766, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03881974145770073, \"Height\": 0.01541312038898468, \"Left\": 0.27297165989875793, \"Top\": 0.36972227692604065}, \"Polygon\": [{\"X\": 0.27297165989875793, \"Y\": 0.36972227692604065}, {\"X\": 0.31179139018058777, \"Y\": 0.36972227692604065}, {\"X\": 0.31179139018058777, \"Y\": 0.3851354122161865}, {\"X\": 0.27297165989875793, \"Y\": 0.3851354122161865}]}, \"Id\": \"e12ad6fb-038e-428a-83da-efae26f56d6f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83505249023438, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008623089641332626, \"Height\": 0.01088596973568201, \"Left\": 0.3164861500263214, \"Top\": 0.37061983346939087}, \"Polygon\": [{\"X\": 0.3164861500263214, \"Y\": 0.37061983346939087}, {\"X\": 0.32510924339294434, \"Y\": 0.37061983346939087}, {\"X\": 0.32510924339294434, \"Y\": 0.3815057873725891}, {\"X\": 0.3164861500263214, \"Y\": 0.3815057873725891}]}, \"Id\": \"26596d66-a726-441a-a534-cc4d88e4ed46\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.30903625488281, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005852249916642904, \"Height\": 0.0024136900901794434, \"Left\": 0.33044129610061646, \"Top\": 0.375832736492157}, \"Polygon\": [{\"X\": 0.33044129610061646, \"Y\": 0.375832736492157}, {\"X\": 0.3362935483455658, \"Y\": 0.375832736492157}, {\"X\": 0.3362935483455658, \"Y\": 0.3782464265823364}, {\"X\": 0.33044129610061646, \"Y\": 0.3782464265823364}]}, \"Id\": \"1b673c24-220a-4ced-aef1-3099f5f433a8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.6648941040039, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05260493978857994, \"Height\": 0.012781299650669098, \"Left\": 0.34052589535713196, \"Top\": 0.36871451139450073}, \"Polygon\": [{\"X\": 0.34052589535713196, \"Y\": 0.36871451139450073}, {\"X\": 0.3931308388710022, \"Y\": 0.36871451139450073}, {\"X\": 0.3931308388710022, \"Y\": 0.38149580359458923}, {\"X\": 0.34052589535713196, \"Y\": 0.38149580359458923}]}, \"Id\": \"2fddb181-33a8-4454-a6ee-9909c536310b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53337097167969, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04490827023983002, \"Height\": 0.012605910189449787, \"Left\": 0.3991551101207733, \"Top\": 0.36904916167259216}, \"Polygon\": [{\"X\": 0.3991551101207733, \"Y\": 0.36904916167259216}, {\"X\": 0.44406336545944214, \"Y\": 0.36904916167259216}, {\"X\": 0.44406336545944214, \"Y\": 0.3816550672054291}, {\"X\": 0.3991551101207733, \"Y\": 0.3816550672054291}]}, \"Id\": \"3b08d288-74a7-4171-9257-1c5d0a3b7b4f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08014678955078, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03788093850016594, \"Height\": 0.013915570452809334, \"Left\": 0.47235050797462463, \"Top\": 0.3703612983226776}, \"Polygon\": [{\"X\": 0.47235050797462463, \"Y\": 0.3703612983226776}, {\"X\": 0.5102314352989197, \"Y\": 0.3703612983226776}, {\"X\": 0.5102314352989197, \"Y\": 0.3842768669128418}, {\"X\": 0.47235050797462463, \"Y\": 0.3842768669128418}]}, \"Id\": \"2d498bc1-71a5-4a4e-990d-0d9d9397abef\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84268188476562, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008341699838638306, \"Height\": 0.010872440412640572, \"Left\": 0.5154660940170288, \"Top\": 0.3705776631832123}, \"Polygon\": [{\"X\": 0.5154660940170288, \"Y\": 0.3705776631832123}, {\"X\": 0.5238078236579895, \"Y\": 0.3705776631832123}, {\"X\": 0.5238078236579895, \"Y\": 0.3814500868320465}, {\"X\": 0.5154660940170288, \"Y\": 0.3814500868320465}]}, \"Id\": \"26ba1671-2e18-438b-80cd-3c4ca6d35280\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.70076751708984, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005678560119122267, \"Height\": 0.0023820200003683567, \"Left\": 0.5291629433631897, \"Top\": 0.3760248124599457}, \"Polygon\": [{\"X\": 0.5291629433631897, \"Y\": 0.3760248124599457}, {\"X\": 0.5348414778709412, \"Y\": 0.3760248124599457}, {\"X\": 0.5348414778709412, \"Y\": 0.378406822681427}, {\"X\": 0.5291629433631897, \"Y\": 0.378406822681427}]}, \"Id\": \"107e119b-c885-4885-aa12-3d9350ea45bc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.41999816894531, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05273979902267456, \"Height\": 0.013154969550669193, \"Left\": 0.5392040610313416, \"Top\": 0.368561714887619}, \"Polygon\": [{\"X\": 0.5392040610313416, \"Y\": 0.368561714887619}, {\"X\": 0.5919438600540161, \"Y\": 0.368561714887619}, {\"X\": 0.5919438600540161, \"Y\": 0.38171666860580444}, {\"X\": 0.5392040610313416, \"Y\": 0.38171666860580444}]}, \"Id\": \"97ff95ce-efa0-46cb-b38a-6b519ff05579\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62147521972656, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04527625814080238, \"Height\": 0.012805379927158356, \"Left\": 0.5973026752471924, \"Top\": 0.3689163029193878}, \"Polygon\": [{\"X\": 0.5973026752471924, \"Y\": 0.3689163029193878}, {\"X\": 0.6425789594650269, \"Y\": 0.3689163029193878}, {\"X\": 0.6425789594650269, \"Y\": 0.3817216753959656}, {\"X\": 0.5973026752471924, \"Y\": 0.3817216753959656}]}, \"Id\": \"1c5c9009-16c5-4352-a847-01da81fe1596\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.03257751464844, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03798310086131096, \"Height\": 0.013764419592916965, \"Left\": 0.7074726819992065, \"Top\": 0.3704780340194702}, \"Polygon\": [{\"X\": 0.7074726819992065, \"Y\": 0.3704780340194702}, {\"X\": 0.745455801486969, \"Y\": 0.3704780340194702}, {\"X\": 0.745455801486969, \"Y\": 0.384242445230484}, {\"X\": 0.7074726819992065, \"Y\": 0.384242445230484}]}, \"Id\": \"ed8a91e0-25ea-4acd-b95b-2da2838fc535\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83956909179688, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008502899669110775, \"Height\": 0.010787270031869411, \"Left\": 0.7503585815429688, \"Top\": 0.37064504623413086}, \"Polygon\": [{\"X\": 0.7503585815429688, \"Y\": 0.37064504623413086}, {\"X\": 0.7588614821434021, \"Y\": 0.37064504623413086}, {\"X\": 0.7588614821434021, \"Y\": 0.38143232464790344}, {\"X\": 0.7503585815429688, \"Y\": 0.38143232464790344}]}, \"Id\": \"1eb7bfe0-acd9-4ec1-b779-859b31924815\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.62496948242188, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005773540120571852, \"Height\": 0.0022706598974764347, \"Left\": 0.7642289996147156, \"Top\": 0.3759309947490692}, \"Polygon\": [{\"X\": 0.7642289996147156, \"Y\": 0.3759309947490692}, {\"X\": 0.770002543926239, \"Y\": 0.3759309947490692}, {\"X\": 0.770002543926239, \"Y\": 0.3782016634941101}, {\"X\": 0.7642289996147156, \"Y\": 0.3782016634941101}]}, \"Id\": \"a3d09017-5928-470d-9a12-a588662a6624\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7652816772461, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05358225852251053, \"Height\": 0.013053390197455883, \"Left\": 0.7738403081893921, \"Top\": 0.36866307258605957}, \"Polygon\": [{\"X\": 0.7738403081893921, \"Y\": 0.36866307258605957}, {\"X\": 0.827422559261322, \"Y\": 0.36866307258605957}, {\"X\": 0.827422559261322, \"Y\": 0.38171645998954773}, {\"X\": 0.7738403081893921, \"Y\": 0.38171645998954773}]}, \"Id\": \"65686e49-1d46-42ff-bd12-e4bbd4d25ed2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7483901977539, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04581879824399948, \"Height\": 0.012753009796142578, \"Left\": 0.832985520362854, \"Top\": 0.36891672015190125}, \"Polygon\": [{\"X\": 0.832985520362854, \"Y\": 0.36891672015190125}, {\"X\": 0.8788043260574341, \"Y\": 0.36891672015190125}, {\"X\": 0.8788043260574341, \"Y\": 0.3816697299480438}, {\"X\": 0.832985520362854, \"Y\": 0.3816697299480438}]}, \"Id\": \"6604c6bb-7b49-4433-b334-c59bd402c77e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9195556640625, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03817018121480942, \"Height\": 0.013612999580800533, \"Left\": 0.07515698671340942, \"Top\": 0.3927280008792877}, \"Polygon\": [{\"X\": 0.07515698671340942, \"Y\": 0.3927280008792877}, {\"X\": 0.11332716792821884, \"Y\": 0.3927280008792877}, {\"X\": 0.11332716792821884, \"Y\": 0.40634098649024963}, {\"X\": 0.07515698671340942, \"Y\": 0.40634098649024963}]}, \"Id\": \"2cf2970e-0d40-4b22-b22b-d3f1c131abd0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8481674194336, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008209159597754478, \"Height\": 0.010929419659078121, \"Left\": 0.1184670627117157, \"Top\": 0.3927227854728699}, \"Polygon\": [{\"X\": 0.1184670627117157, \"Y\": 0.3927227854728699}, {\"X\": 0.12667621672153473, \"Y\": 0.3927227854728699}, {\"X\": 0.12667621672153473, \"Y\": 0.40365222096443176}, {\"X\": 0.1184670627117157, \"Y\": 0.40365222096443176}]}, \"Id\": \"d39c888e-b143-4344-a064-71aef70dfa46\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.79835510253906, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005637609865516424, \"Height\": 0.0022766899783164263, \"Left\": 0.13191285729408264, \"Top\": 0.3980695307254791}, \"Polygon\": [{\"X\": 0.13191285729408264, \"Y\": 0.3980695307254791}, {\"X\": 0.1375504732131958, \"Y\": 0.3980695307254791}, {\"X\": 0.1375504732131958, \"Y\": 0.40034621953964233}, {\"X\": 0.13191285729408264, \"Y\": 0.40034621953964233}]}, \"Id\": \"6be2acf7-e7a8-4fe1-8425-7b15d8d77de9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78919982910156, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05266745015978813, \"Height\": 0.012894700281322002, \"Left\": 0.14227871596813202, \"Top\": 0.39067721366882324}, \"Polygon\": [{\"X\": 0.14227871596813202, \"Y\": 0.39067721366882324}, {\"X\": 0.19494616985321045, \"Y\": 0.39067721366882324}, {\"X\": 0.19494616985321045, \"Y\": 0.4035719037055969}, {\"X\": 0.14227871596813202, \"Y\": 0.4035719037055969}]}, \"Id\": \"3b8aa305-8e8f-4fc3-87fb-76ee2f5121e6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07003021240234, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045601800084114075, \"Height\": 0.01253432035446167, \"Left\": 0.20051522552967072, \"Top\": 0.3911892771720886}, \"Polygon\": [{\"X\": 0.20051522552967072, \"Y\": 0.3911892771720886}, {\"X\": 0.2461170256137848, \"Y\": 0.3911892771720886}, {\"X\": 0.2461170256137848, \"Y\": 0.4037235975265503}, {\"X\": 0.20051522552967072, \"Y\": 0.4037235975265503}]}, \"Id\": \"cf7201dc-c40a-49bf-bf39-b7d911549e3a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.10928344726562, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038260988891124725, \"Height\": 0.012995880097150803, \"Left\": 0.2740427255630493, \"Top\": 0.3928734064102173}, \"Polygon\": [{\"X\": 0.2740427255630493, \"Y\": 0.3928734064102173}, {\"X\": 0.31230372190475464, \"Y\": 0.3928734064102173}, {\"X\": 0.31230372190475464, \"Y\": 0.4058692753314972}, {\"X\": 0.2740427255630493, \"Y\": 0.4058692753314972}]}, \"Id\": \"53886bd2-d75a-4330-810b-27b84f6c1bdf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76432037353516, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00858973991125822, \"Height\": 0.010893880389630795, \"Left\": 0.3165328800678253, \"Top\": 0.3928240239620209}, \"Polygon\": [{\"X\": 0.3165328800678253, \"Y\": 0.3928240239620209}, {\"X\": 0.3251226246356964, \"Y\": 0.3928240239620209}, {\"X\": 0.3251226246356964, \"Y\": 0.40371790528297424}, {\"X\": 0.3165328800678253, \"Y\": 0.40371790528297424}]}, \"Id\": \"865c2f88-c05e-4cbe-8927-fb0a51960792\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.2244873046875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005801700055599213, \"Height\": 0.0024264000821858644, \"Left\": 0.3303823471069336, \"Top\": 0.39797309041023254}, \"Polygon\": [{\"X\": 0.3303823471069336, \"Y\": 0.39797309041023254}, {\"X\": 0.3361840546131134, \"Y\": 0.39797309041023254}, {\"X\": 0.3361840546131134, \"Y\": 0.40039950609207153}, {\"X\": 0.3303823471069336, \"Y\": 0.40039950609207153}]}, \"Id\": \"dfd7a203-60fd-4d44-8fd9-eb3b69baec00\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7816390991211, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05273852124810219, \"Height\": 0.013404429890215397, \"Left\": 0.34010565280914307, \"Top\": 0.39041972160339355}, \"Polygon\": [{\"X\": 0.34010565280914307, \"Y\": 0.39041972160339355}, {\"X\": 0.39284417033195496, \"Y\": 0.39041972160339355}, {\"X\": 0.39284417033195496, \"Y\": 0.4038241505622864}, {\"X\": 0.34010565280914307, \"Y\": 0.4038241505622864}]}, \"Id\": \"ef7bfa76-c1ca-4baf-80a3-991812c462c1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66107177734375, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04460914060473442, \"Height\": 0.012324489653110504, \"Left\": 0.39937740564346313, \"Top\": 0.39127108454704285}, \"Polygon\": [{\"X\": 0.39937740564346313, \"Y\": 0.39127108454704285}, {\"X\": 0.44398653507232666, \"Y\": 0.39127108454704285}, {\"X\": 0.44398653507232666, \"Y\": 0.40359556674957275}, {\"X\": 0.39937740564346313, \"Y\": 0.40359556674957275}]}, \"Id\": \"f7442352-6d02-4d4a-88a7-38d7224fcbfd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.72833251953125, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037616610527038574, \"Height\": 0.015354050323367119, \"Left\": 0.4724659323692322, \"Top\": 0.3919230103492737}, \"Polygon\": [{\"X\": 0.4724659323692322, \"Y\": 0.3919230103492737}, {\"X\": 0.5100825428962708, \"Y\": 0.3919230103492737}, {\"X\": 0.5100825428962708, \"Y\": 0.40727704763412476}, {\"X\": 0.4724659323692322, \"Y\": 0.40727704763412476}]}, \"Id\": \"b4b88fc8-9412-437a-81ee-993a0348fda4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83297729492188, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008291199803352356, \"Height\": 0.010890199802815914, \"Left\": 0.5155488848686218, \"Top\": 0.39278659224510193}, \"Polygon\": [{\"X\": 0.5155488848686218, \"Y\": 0.39278659224510193}, {\"X\": 0.5238401293754578, \"Y\": 0.39278659224510193}, {\"X\": 0.5238401293754578, \"Y\": 0.4036768078804016}, {\"X\": 0.5155488848686218, \"Y\": 0.4036768078804016}]}, \"Id\": \"03afa24d-b188-4c91-bace-4c5ac004e604\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.27002716064453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005546960048377514, \"Height\": 0.0023849999997764826, \"Left\": 0.5291309356689453, \"Top\": 0.39796900749206543}, \"Polygon\": [{\"X\": 0.5291309356689453, \"Y\": 0.39796900749206543}, {\"X\": 0.5346779227256775, \"Y\": 0.39796900749206543}, {\"X\": 0.5346779227256775, \"Y\": 0.4003539979457855}, {\"X\": 0.5291309356689453, \"Y\": 0.4003539979457855}]}, \"Id\": \"4b7969bb-485f-4084-94ac-af8eeca0b067\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81189727783203, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0527675598859787, \"Height\": 0.013238999992609024, \"Left\": 0.5390292406082153, \"Top\": 0.3905758857727051}, \"Polygon\": [{\"X\": 0.5390292406082153, \"Y\": 0.3905758857727051}, {\"X\": 0.5917968153953552, \"Y\": 0.3905758857727051}, {\"X\": 0.5917968153953552, \"Y\": 0.4038149118423462}, {\"X\": 0.5390292406082153, \"Y\": 0.4038149118423462}]}, \"Id\": \"b4e8c023-9c05-485c-aeaf-d2d61bb4e5a3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.652587890625, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045297328382730484, \"Height\": 0.012621279805898666, \"Left\": 0.5971623659133911, \"Top\": 0.39116784930229187}, \"Polygon\": [{\"X\": 0.5971623659133911, \"Y\": 0.39116784930229187}, {\"X\": 0.6424596905708313, \"Y\": 0.39116784930229187}, {\"X\": 0.6424596905708313, \"Y\": 0.40378913283348083}, {\"X\": 0.5971623659133911, \"Y\": 0.40378913283348083}]}, \"Id\": \"9f9ac368-de82-4aa3-ac53-9429fee79ec9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.9841079711914, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03841535001993179, \"Height\": 0.013389980420470238, \"Left\": 0.7074642777442932, \"Top\": 0.3927578032016754}, \"Polygon\": [{\"X\": 0.7074642777442932, \"Y\": 0.3927578032016754}, {\"X\": 0.7458796501159668, \"Y\": 0.3927578032016754}, {\"X\": 0.7458796501159668, \"Y\": 0.4061477780342102}, {\"X\": 0.7074642777442932, \"Y\": 0.4061477780342102}]}, \"Id\": \"d4e1e5d5-93d1-445e-bc9c-fbdc39fb137d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85355377197266, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008366459980607033, \"Height\": 0.010793459601700306, \"Left\": 0.7505125403404236, \"Top\": 0.39281120896339417}, \"Polygon\": [{\"X\": 0.7505125403404236, \"Y\": 0.39281120896339417}, {\"X\": 0.7588790059089661, \"Y\": 0.39281120896339417}, {\"X\": 0.7588790059089661, \"Y\": 0.403604656457901}, {\"X\": 0.7505125403404236, \"Y\": 0.403604656457901}]}, \"Id\": \"033d6cff-2e8d-4a67-ac3c-4cdd2e8dbe25\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.83843231201172, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0058858999982476234, \"Height\": 0.0023044999688863754, \"Left\": 0.7641676664352417, \"Top\": 0.3980284333229065}, \"Polygon\": [{\"X\": 0.7641676664352417, \"Y\": 0.3980284333229065}, {\"X\": 0.7700535655021667, \"Y\": 0.3980284333229065}, {\"X\": 0.7700535655021667, \"Y\": 0.4003329277038574}, {\"X\": 0.7641676664352417, \"Y\": 0.4003329277038574}]}, \"Id\": \"15344615-b6a3-45ad-b770-56e1da42bdc5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8018798828125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05316390097141266, \"Height\": 0.013320880010724068, \"Left\": 0.77374267578125, \"Top\": 0.3904447853565216}, \"Polygon\": [{\"X\": 0.77374267578125, \"Y\": 0.3904447853565216}, {\"X\": 0.8269066214561462, \"Y\": 0.3904447853565216}, {\"X\": 0.8269066214561462, \"Y\": 0.4037656784057617}, {\"X\": 0.77374267578125, \"Y\": 0.4037656784057617}]}, \"Id\": \"cb314e41-f28d-46fc-9676-3c239a9c1216\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74540710449219, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04573269933462143, \"Height\": 0.012693529948592186, \"Left\": 0.8329116702079773, \"Top\": 0.3911087214946747}, \"Polygon\": [{\"X\": 0.8329116702079773, \"Y\": 0.3911087214946747}, {\"X\": 0.8786444067955017, \"Y\": 0.3911087214946747}, {\"X\": 0.8786444067955017, \"Y\": 0.4038022458553314}, {\"X\": 0.8329116702079773, \"Y\": 0.4038022458553314}]}, \"Id\": \"f1fdc537-92b6-42de-8bfd-26c4d1e879f8\", \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.94020080566406, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.9030452966690063, \"Height\": 0.1102231815457344, \"Left\": 0.06733553856611252, \"Top\": 0.29824984073638916}, \"Polygon\": [{\"X\": 0.06733553856611252, \"Y\": 0.29824984073638916}, {\"X\": 0.9703808426856995, \"Y\": 0.29824984073638916}, {\"X\": 0.9703808426856995, \"Y\": 0.40847301483154297}, {\"X\": 0.06733553856611252, \"Y\": 0.40847301483154297}]}, \"Id\": \"fed02fb4-1996-4a15-98dc-29da193cc476\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7febfc0a-63de-4ff2-9989-217ed420924d\", \"5e032c4d-7894-4a33-b37b-8f28c87a88f0\", \"3cec9743-0cc7-40fa-aef2-ce05c6760c96\", \"0204b15b-3d9c-43db-8016-993e630d4ca8\", \"c0ec9d3f-928c-4693-a4b5-cfd811fa3919\", \"05397668-fd47-4f09-8144-8a83b8dad698\", \"267616bf-6341-4276-a4c8-eca1d1c3c862\", \"fa220284-e1ac-4039-8bd8-34ad26194e97\", \"594913de-6c65-44fc-9209-d0432253dfe9\", \"d4174356-da35-4d59-9da0-c285f0284e63\", \"a6b9de71-cf0d-47fe-b215-830743fb2762\", \"e91fa7c4-16d3-410a-80d4-31793d160ecf\", \"8e5aa6c2-bd2c-4565-a3ff-2809ae584066\", \"9c24565d-a6ce-4a4e-b18f-a75b1698cfb9\", \"e7a60fcd-905b-4e42-bfb8-9c772b87de00\", \"499f7002-04d0-4409-aa29-93fe26133d29\", \"a9db6edd-7eae-4a8a-8e1c-2e1ae228610f\", \"42350eb4-65a9-4683-9dc4-c567fe51c635\", \"58821a8c-a94f-4156-8201-9f90ac77d0b9\", \"ba52b965-4423-4e5a-a15b-3ce6eb1c5594\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.28119659423828, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19734007120132446, \"Height\": 0.02097904495894909, \"Left\": 0.06733553856611252, \"Top\": 0.29824984073638916}, \"Polygon\": [{\"X\": 0.06733553856611252, \"Y\": 0.29824984073638916}, {\"X\": 0.2646756172180176, \"Y\": 0.29824984073638916}, {\"X\": 0.2646756172180176, \"Y\": 0.3192288875579834}, {\"X\": 0.06733553856611252, \"Y\": 0.3192288875579834}]}, \"Id\": \"7febfc0a-63de-4ff2-9989-217ed420924d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb256baa-0610-44fd-b545-733c9f5c6dcd\", \"113e61ca-c9cf-410d-b321-1ff91634707f\", \"d4347917-36e5-4812-b4e8-d3595b3860e3\", \"7695786f-2875-432b-a232-0b43811477d0\", \"190bb004-3ea7-481b-9c36-4c6f939216ff\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.39550018310547, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19948506355285645, \"Height\": 0.02097904495894909, \"Left\": 0.2646756172180176, \"Top\": 0.29824984073638916}, \"Polygon\": [{\"X\": 0.2646756172180176, \"Y\": 0.29824984073638916}, {\"X\": 0.464160680770874, \"Y\": 0.29824984073638916}, {\"X\": 0.464160680770874, \"Y\": 0.3192288875579834}, {\"X\": 0.2646756172180176, \"Y\": 0.3192288875579834}]}, \"Id\": \"5e032c4d-7894-4a33-b37b-8f28c87a88f0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1410821-8f33-40d5-92a8-9cea8c23fcf2\", \"0b3cec6a-2c73-4893-a244-f03f00927fdd\", \"fd7e743c-8b8b-4982-8ca7-04bf5dc2eae0\", \"0ee29540-2f2c-41d7-9236-ac5d57434431\", \"4c9b7560-64b2-4b4d-844d-b1889e372dae\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 95.88163757324219, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2338050901889801, \"Height\": 0.02097904495894909, \"Left\": 0.464160680770874, \"Top\": 0.29824984073638916}, \"Polygon\": [{\"X\": 0.464160680770874, \"Y\": 0.29824984073638916}, {\"X\": 0.6979658007621765, \"Y\": 0.29824984073638916}, {\"X\": 0.6979658007621765, \"Y\": 0.3192288875579834}, {\"X\": 0.464160680770874, \"Y\": 0.3192288875579834}]}, \"Id\": \"3cec9743-0cc7-40fa-aef2-ce05c6760c96\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"73600fc9-98e4-442d-bae9-63531852b617\", \"c8c672ad-b2a6-4338-bbc3-696c1faa44b6\", \"56485b0b-012e-41d4-92da-1b6aea786161\", \"a7d57712-8acf-4760-a8aa-c9aeb8eaaaaf\", \"85a7b409-916a-4802-87bc-78fd5d9df9bc\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 95.2698974609375, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27241507172584534, \"Height\": 0.02097904495894909, \"Left\": 0.6979657411575317, \"Top\": 0.29824984073638916}, \"Polygon\": [{\"X\": 0.6979657411575317, \"Y\": 0.29824984073638916}, {\"X\": 0.9703808426856995, \"Y\": 0.29824984073638916}, {\"X\": 0.9703807830810547, \"Y\": 0.3192288875579834}, {\"X\": 0.6979657411575317, \"Y\": 0.3192288875579834}]}, \"Id\": \"0204b15b-3d9c-43db-8016-993e630d4ca8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"068945c0-f691-42bf-aaeb-1b329135583a\", \"22f36a18-76d6-4bfe-be6a-3ed42d8fe5c2\", \"f56bbb21-d152-4e47-87da-a3562cc7e8a4\", \"ba4b0749-7995-4c68-85d8-d080643388c4\", \"baddfdc3-80c6-40e7-aeca-77b311186aa7\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.26142120361328, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19734007120132446, \"Height\": 0.02231103554368019, \"Left\": 0.06733553856611252, \"Top\": 0.3192288875579834}, \"Polygon\": [{\"X\": 0.06733553856611252, \"Y\": 0.3192288875579834}, {\"X\": 0.2646756172180176, \"Y\": 0.3192288875579834}, {\"X\": 0.2646756172180176, \"Y\": 0.3415399193763733}, {\"X\": 0.06733553856611252, \"Y\": 0.3415399193763733}]}, \"Id\": \"c0ec9d3f-928c-4693-a4b5-cfd811fa3919\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db39560a-3130-4391-8e8c-9e02a4c4f4fd\", \"d9d4f701-03f4-45c6-9feb-47abf26e69ea\", \"2a5972d8-7a18-4ce2-a153-2954a477ebeb\", \"d78d32db-c689-4bfc-a1f6-353107862a37\", \"2d84ae85-f8c7-410d-8a16-6c603bc8d66f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.16730499267578, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19948506355285645, \"Height\": 0.02231103554368019, \"Left\": 0.2646756172180176, \"Top\": 0.3192288875579834}, \"Polygon\": [{\"X\": 0.2646756172180176, \"Y\": 0.3192288875579834}, {\"X\": 0.464160680770874, \"Y\": 0.3192288875579834}, {\"X\": 0.464160680770874, \"Y\": 0.3415399193763733}, {\"X\": 0.2646756172180176, \"Y\": 0.3415399193763733}]}, \"Id\": \"05397668-fd47-4f09-8144-8a83b8dad698\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c6dd4a34-7090-4381-9b0a-7e214cf387cf\", \"a0a2b5e0-0cdb-44e6-85da-a9c7cdc2beb9\", \"c9534d1d-8a23-40eb-a875-f0dc020924a3\", \"fae0facf-02b7-425a-b28e-0916e7efac46\", \"32032173-e77f-4747-abfc-123c88e68cc7\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.35790252685547, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2338050901889801, \"Height\": 0.02231103554368019, \"Left\": 0.464160680770874, \"Top\": 0.3192288875579834}, \"Polygon\": [{\"X\": 0.464160680770874, \"Y\": 0.3192288875579834}, {\"X\": 0.6979658007621765, \"Y\": 0.3192288875579834}, {\"X\": 0.6979658007621765, \"Y\": 0.3415399193763733}, {\"X\": 0.464160680770874, \"Y\": 0.3415399193763733}]}, \"Id\": \"267616bf-6341-4276-a4c8-eca1d1c3c862\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"983351dc-a920-4913-a8bc-3a34b016d401\", \"7123d9c3-1f4b-437c-93c1-96b80a4d1d14\", \"7cbd3646-e2d4-43bd-b49f-041ec5e8dcf4\", \"2e61ea30-6d11-4493-ae75-c653776dc200\", \"33bb7bd1-21e7-4d55-9854-8db0b611e0e8\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.49563598632812, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27241507172584534, \"Height\": 0.02231103554368019, \"Left\": 0.6979657411575317, \"Top\": 0.3192288875579834}, \"Polygon\": [{\"X\": 0.6979657411575317, \"Y\": 0.3192288875579834}, {\"X\": 0.9703807830810547, \"Y\": 0.3192288875579834}, {\"X\": 0.9703807830810547, \"Y\": 0.3415399193763733}, {\"X\": 0.6979657411575317, \"Y\": 0.3415399193763733}]}, \"Id\": \"fa220284-e1ac-4039-8bd8-34ad26194e97\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"242e264b-1784-4c4b-995a-d625ed58fa82\", \"6f114d75-8d2a-4262-8a72-02b6d4b81235\", \"9a6f382f-a6d1-4859-a813-310de8483a11\", \"40308837-4d02-45fb-9b48-b1fa0f531b01\", \"7689fd04-2830-41cf-9f52-a633dad1c3d5\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.59313201904297, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19734007120132446, \"Height\": 0.02231103554368019, \"Left\": 0.06733553856611252, \"Top\": 0.3415399193763733}, \"Polygon\": [{\"X\": 0.06733553856611252, \"Y\": 0.3415399193763733}, {\"X\": 0.2646756172180176, \"Y\": 0.3415399193763733}, {\"X\": 0.2646756172180176, \"Y\": 0.3638509511947632}, {\"X\": 0.06733553856611252, \"Y\": 0.3638509511947632}]}, \"Id\": \"594913de-6c65-44fc-9209-d0432253dfe9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39ac4139-cb39-487c-a7ae-a29af8037095\", \"d1ba0c48-6ab6-454a-bbad-2bc8a0db2e98\", \"7645a73b-e9dc-446c-9d1c-c5c6b0b6dd3b\", \"8a6069c9-82ae-4450-aa77-d7c3dc3acb0d\", \"204c509a-1a78-4e9b-96fc-39f316ea76a9\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.63055419921875, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19948506355285645, \"Height\": 0.02231103554368019, \"Left\": 0.2646756172180176, \"Top\": 0.3415399193763733}, \"Polygon\": [{\"X\": 0.2646756172180176, \"Y\": 0.3415399193763733}, {\"X\": 0.464160680770874, \"Y\": 0.3415399193763733}, {\"X\": 0.464160680770874, \"Y\": 0.3638509511947632}, {\"X\": 0.2646756172180176, \"Y\": 0.3638509511947632}]}, \"Id\": \"d4174356-da35-4d59-9da0-c285f0284e63\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"872257a2-4070-4d79-bc3c-e05a48536020\", \"751ba84b-dfea-4406-bdab-dd947dd94508\", \"ad6c89ff-9289-4042-b889-78a0fbdbd8fb\", \"e7b22e6b-cdb3-4405-aebd-423fffca8795\", \"0a01e289-e940-4514-9388-b65701674a0b\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.72270202636719, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2338050901889801, \"Height\": 0.02231103554368019, \"Left\": 0.464160680770874, \"Top\": 0.3415399193763733}, \"Polygon\": [{\"X\": 0.464160680770874, \"Y\": 0.3415399193763733}, {\"X\": 0.6979658007621765, \"Y\": 0.3415399193763733}, {\"X\": 0.6979658007621765, \"Y\": 0.3638509511947632}, {\"X\": 0.464160680770874, \"Y\": 0.3638509511947632}]}, \"Id\": \"a6b9de71-cf0d-47fe-b215-830743fb2762\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d53071f-98bd-444b-bc50-914c7cd7d87f\", \"a0e283b4-b7d9-4a71-9f44-559a5032b9d5\", \"fc21b0bc-32dd-4511-8e68-6337010b4e5f\", \"15776def-7048-480e-9618-94629664de24\", \"b8deeeeb-40d2-428e-9ba8-a6b67d66fd36\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.49590301513672, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27241507172584534, \"Height\": 0.02231103554368019, \"Left\": 0.6979657411575317, \"Top\": 0.3415399193763733}, \"Polygon\": [{\"X\": 0.6979657411575317, \"Y\": 0.3415399193763733}, {\"X\": 0.9703807830810547, \"Y\": 0.3415399193763733}, {\"X\": 0.9703807830810547, \"Y\": 0.3638509511947632}, {\"X\": 0.6979657411575317, \"Y\": 0.3638509511947632}]}, \"Id\": \"e91fa7c4-16d3-410a-80d4-31793d160ecf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b494ccc4-0639-443d-b0bc-a6b0e5a3e54e\", \"f705a862-a4ad-4955-93a0-7a0b4d9effd9\", \"e4bfff90-7a2b-4ba4-a430-9fe516a11283\", \"5faa2aaf-a833-4d96-be69-708b0ab38868\", \"3df3a459-7304-462b-81df-591f2b5be12d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.72869873046875, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19734007120132446, \"Height\": 0.02231103554368019, \"Left\": 0.06733553856611252, \"Top\": 0.3638509511947632}, \"Polygon\": [{\"X\": 0.06733553856611252, \"Y\": 0.3638509511947632}, {\"X\": 0.2646756172180176, \"Y\": 0.3638509511947632}, {\"X\": 0.2646756172180176, \"Y\": 0.3861619830131531}, {\"X\": 0.06733553856611252, \"Y\": 0.3861619830131531}]}, \"Id\": \"8e5aa6c2-bd2c-4565-a3ff-2809ae584066\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a72de43-f38b-493b-b3ec-ea0bcf164187\", \"2d7cf95a-3ef5-48a7-af50-1372394d8c0b\", \"b6517db0-6fb4-49fe-9d94-44b7f0cb3eb2\", \"57f3a6f2-5423-4ef2-9b86-f3fc295160fb\", \"65324fb8-b696-4601-9beb-9cd46302dac8\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.76827239990234, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19948506355285645, \"Height\": 0.02231103554368019, \"Left\": 0.2646756172180176, \"Top\": 0.3638509511947632}, \"Polygon\": [{\"X\": 0.2646756172180176, \"Y\": 0.3638509511947632}, {\"X\": 0.464160680770874, \"Y\": 0.3638509511947632}, {\"X\": 0.464160680770874, \"Y\": 0.3861619830131531}, {\"X\": 0.2646756172180176, \"Y\": 0.3861619830131531}]}, \"Id\": \"9c24565d-a6ce-4a4e-b18f-a75b1698cfb9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e12ad6fb-038e-428a-83da-efae26f56d6f\", \"26596d66-a726-441a-a534-cc4d88e4ed46\", \"1b673c24-220a-4ced-aef1-3099f5f433a8\", \"2fddb181-33a8-4454-a6ee-9909c536310b\", \"3b08d288-74a7-4171-9257-1c5d0a3b7b4f\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.7442626953125, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2338050901889801, \"Height\": 0.02231103554368019, \"Left\": 0.464160680770874, \"Top\": 0.3638509511947632}, \"Polygon\": [{\"X\": 0.464160680770874, \"Y\": 0.3638509511947632}, {\"X\": 0.6979658007621765, \"Y\": 0.3638509511947632}, {\"X\": 0.6979658007621765, \"Y\": 0.3861619830131531}, {\"X\": 0.464160680770874, \"Y\": 0.3861619830131531}]}, \"Id\": \"e7a60fcd-905b-4e42-bfb8-9c772b87de00\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2d498bc1-71a5-4a4e-990d-0d9d9397abef\", \"26ba1671-2e18-438b-80cd-3c4ca6d35280\", \"107e119b-c885-4885-aa12-3d9350ea45bc\", \"97ff95ce-efa0-46cb-b38a-6b519ff05579\", \"1c5c9009-16c5-4352-a847-01da81fe1596\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.56546783447266, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27241507172584534, \"Height\": 0.02231103554368019, \"Left\": 0.6979657411575317, \"Top\": 0.3638509511947632}, \"Polygon\": [{\"X\": 0.6979657411575317, \"Y\": 0.3638509511947632}, {\"X\": 0.9703807830810547, \"Y\": 0.3638509511947632}, {\"X\": 0.9703807830810547, \"Y\": 0.3861619830131531}, {\"X\": 0.6979657411575317, \"Y\": 0.3861619830131531}]}, \"Id\": \"499f7002-04d0-4409-aa29-93fe26133d29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ed8a91e0-25ea-4acd-b95b-2da2838fc535\", \"1eb7bfe0-acd9-4ec1-b779-859b31924815\", \"a3d09017-5928-470d-9a12-a588662a6624\", \"65686e49-1d46-42ff-bd12-e4bbd4d25ed2\", \"6604c6bb-7b49-4433-b334-c59bd402c77e\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 92.80814361572266, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19734007120132446, \"Height\": 0.02231103554368019, \"Left\": 0.06733553856611252, \"Top\": 0.3861619830131531}, \"Polygon\": [{\"X\": 0.06733553856611252, \"Y\": 0.3861619830131531}, {\"X\": 0.2646756172180176, \"Y\": 0.3861619830131531}, {\"X\": 0.2646756172180176, \"Y\": 0.40847301483154297}, {\"X\": 0.06733553856611252, \"Y\": 0.40847301483154297}]}, \"Id\": \"a9db6edd-7eae-4a8a-8e1c-2e1ae228610f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2cf2970e-0d40-4b22-b22b-d3f1c131abd0\", \"d39c888e-b143-4344-a064-71aef70dfa46\", \"6be2acf7-e7a8-4fe1-8425-7b15d8d77de9\", \"3b8aa305-8e8f-4fc3-87fb-76ee2f5121e6\", \"cf7201dc-c40a-49bf-bf39-b7d911549e3a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 95.03988647460938, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19948506355285645, \"Height\": 0.02231103554368019, \"Left\": 0.2646756172180176, \"Top\": 0.3861619830131531}, \"Polygon\": [{\"X\": 0.2646756172180176, \"Y\": 0.3861619830131531}, {\"X\": 0.464160680770874, \"Y\": 0.3861619830131531}, {\"X\": 0.464160680770874, \"Y\": 0.40847301483154297}, {\"X\": 0.2646756172180176, \"Y\": 0.40847301483154297}]}, \"Id\": \"42350eb4-65a9-4683-9dc4-c567fe51c635\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53886bd2-d75a-4330-810b-27b84f6c1bdf\", \"865c2f88-c05e-4cbe-8927-fb0a51960792\", \"dfd7a203-60fd-4d44-8fd9-eb3b69baec00\", \"ef7bfa76-c1ca-4baf-80a3-991812c462c1\", \"f7442352-6d02-4d4a-88a7-38d7224fcbfd\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.3416748046875, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2338050901889801, \"Height\": 0.02231103554368019, \"Left\": 0.464160680770874, \"Top\": 0.3861619830131531}, \"Polygon\": [{\"X\": 0.464160680770874, \"Y\": 0.3861619830131531}, {\"X\": 0.6979658007621765, \"Y\": 0.3861619830131531}, {\"X\": 0.6979658007621765, \"Y\": 0.40847301483154297}, {\"X\": 0.464160680770874, \"Y\": 0.40847301483154297}]}, \"Id\": \"58821a8c-a94f-4156-8201-9f90ac77d0b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4b88fc8-9412-437a-81ee-993a0348fda4\", \"03afa24d-b188-4c91-bace-4c5ac004e604\", \"4b7969bb-485f-4084-94ac-af8eeca0b067\", \"b4e8c023-9c05-485c-aeaf-d2d61bb4e5a3\", \"9f9ac368-de82-4aa3-ac53-9429fee79ec9\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 97.39998626708984, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27241507172584534, \"Height\": 0.02231103554368019, \"Left\": 0.6979657411575317, \"Top\": 0.3861619830131531}, \"Polygon\": [{\"X\": 0.6979657411575317, \"Y\": 0.3861619830131531}, {\"X\": 0.9703807830810547, \"Y\": 0.3861619830131531}, {\"X\": 0.9703808426856995, \"Y\": 0.40847301483154297}, {\"X\": 0.6979657411575317, \"Y\": 0.40847301483154297}]}, \"Id\": \"ba52b965-4423-4e5a-a15b-3ce6eb1c5594\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d4e1e5d5-93d1-445e-bc9c-fbdc39fb137d\", \"033d6cff-2e8d-4a67-ac3c-4cdd2e8dbe25\", \"15344615-b6a3-45ad-b770-56e1da42bdc5\", \"cb314e41-f28d-46fc-9676-3c239a9c1216\", \"f1fdc537-92b6-42de-8bfd-26c4d1e879f8\"]}], \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.816650390625, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6999058127403259, \"Height\": 0.05799851566553116, \"Left\": 0.11674140393733978, \"Top\": 0.18354526162147522}, \"Polygon\": [{\"X\": 0.11674140393733978, \"Y\": 0.18354526162147522}, {\"X\": 0.8166472315788269, \"Y\": 0.18354526162147522}, {\"X\": 0.8166472315788269, \"Y\": 0.24154378473758698}, {\"X\": 0.11674140393733978, \"Y\": 0.24154378473758698}]}, \"Id\": \"47c6097f-02d5-4432-8423-13c05fbfacbd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"42e5d01c-44f0-4a51-9c73-3ff602bc0406\", \"b2c70ad3-2e80-4b6d-a63f-4c47957e8030\", \"54829a03-e1fb-45e3-ab4a-9b162a158c81\", \"e81a8932-090b-45c3-ae0b-b10c25a834e2\", \"bc0fbed9-8a28-4778-92f5-f2a5aaaa9617\", \"520a1533-06fd-4895-b5bb-07aa5f1b095c\", \"6cf7c287-480c-4a5a-a80e-41ddbfcc9185\", \"b1a0f31f-78ea-433b-9277-e9514992100b\", \"148830d9-8909-4088-83f0-765fac619a61\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.54949188232422, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22376799583435059, \"Height\": 0.019332844763994217, \"Left\": 0.11674140393733978, \"Top\": 0.18354526162147522}, \"Polygon\": [{\"X\": 0.11674140393733978, \"Y\": 0.18354526162147522}, {\"X\": 0.34050941467285156, \"Y\": 0.18354526162147522}, {\"X\": 0.34050941467285156, \"Y\": 0.20287810266017914}, {\"X\": 0.11674140393733978, \"Y\": 0.20287810266017914}]}, \"Id\": \"42e5d01c-44f0-4a51-9c73-3ff602bc0406\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4238d1ee-21c0-4219-8d1f-1c6bc4fdb503\", \"678698ce-5b69-4085-bf53-2be05117f8d3\", \"56255c49-fdea-44d3-bc15-f96b6f7e92f4\", \"85ad3549-2326-4a0b-9755-8401af79c8e4\", \"f0efb295-d2fc-4f5e-9d44-421282d10309\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.50360870361328, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.18843616545200348, \"Height\": 0.019332844763994217, \"Left\": 0.3405093848705292, \"Top\": 0.18354526162147522}, \"Polygon\": [{\"X\": 0.3405093848705292, \"Y\": 0.18354526162147522}, {\"X\": 0.5289455652236938, \"Y\": 0.18354526162147522}, {\"X\": 0.5289455652236938, \"Y\": 0.20287810266017914}, {\"X\": 0.3405093848705292, \"Y\": 0.20287810266017914}]}, \"Id\": \"b2c70ad3-2e80-4b6d-a63f-4c47957e8030\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"06ce6806-8d58-4d49-8730-75570ddf4957\", \"cd6f437f-7bca-4434-99b0-0ece0af2ec12\", \"1a8eeb07-1a6a-4ee4-b8bf-571dda7a4f0e\", \"ba5c87d7-c0d4-4d9b-ac78-f607fb695c49\", \"9fc02742-e3c5-408d-9269-e0aaa25907af\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.44891357421875, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28770166635513306, \"Height\": 0.019332844763994217, \"Left\": 0.5289455652236938, \"Top\": 0.18354526162147522}, \"Polygon\": [{\"X\": 0.5289455652236938, \"Y\": 0.18354526162147522}, {\"X\": 0.8166472315788269, \"Y\": 0.18354526162147522}, {\"X\": 0.8166472315788269, \"Y\": 0.20287810266017914}, {\"X\": 0.5289455652236938, \"Y\": 0.20287810266017914}]}, \"Id\": \"54829a03-e1fb-45e3-ab4a-9b162a158c81\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"03b35ec6-1c99-466c-91a6-5fcdcacba492\", \"50330a9a-de56-4e84-bef2-7f4f22932ba0\", \"a7b64037-60a0-4d1d-9893-cc487c7217cc\", \"08d7d8a4-fa81-465d-9840-b65a094af5d0\", \"1a97191b-08fd-44a8-9c0b-c65b27abc76a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.12342071533203, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22376799583435059, \"Height\": 0.018999511376023293, \"Left\": 0.11674140393733978, \"Top\": 0.20287811756134033}, \"Polygon\": [{\"X\": 0.11674140393733978, \"Y\": 0.20287811756134033}, {\"X\": 0.34050941467285156, \"Y\": 0.20287811756134033}, {\"X\": 0.34050941467285156, \"Y\": 0.22187763452529907}, {\"X\": 0.11674140393733978, \"Y\": 0.22187763452529907}]}, \"Id\": \"e81a8932-090b-45c3-ae0b-b10c25a834e2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"727dfe9d-3918-41fd-9379-9af2ec33d178\", \"ac9030d6-9bb8-4261-a38d-7e6ff4970927\", \"a7c60e29-252a-4ab6-9c24-d62286db1ffc\", \"59a479f0-eff2-4f0c-8053-cbb701aa8330\", \"cf42b156-bd9b-48fc-b871-891145d36211\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.5654525756836, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.18843616545200348, \"Height\": 0.018999511376023293, \"Left\": 0.3405093848705292, \"Top\": 0.20287811756134033}, \"Polygon\": [{\"X\": 0.3405093848705292, \"Y\": 0.20287811756134033}, {\"X\": 0.5289455652236938, \"Y\": 0.20287811756134033}, {\"X\": 0.5289455652236938, \"Y\": 0.22187763452529907}, {\"X\": 0.3405093848705292, \"Y\": 0.22187763452529907}]}, \"Id\": \"bc0fbed9-8a28-4778-92f5-f2a5aaaa9617\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23e61974-47f5-42a9-b51d-81df40c2db19\", \"c60cbb52-21cb-42e8-864c-0311542cadcf\", \"dbb07221-0692-4621-800c-2ae43ac778dc\", \"124eeea5-6045-4d62-baab-9065f2f25501\", \"46b641a2-3d1e-4abc-ac1d-ac57b5bce933\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 99.42998504638672, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28770166635513306, \"Height\": 0.018999511376023293, \"Left\": 0.5289455652236938, \"Top\": 0.20287811756134033}, \"Polygon\": [{\"X\": 0.5289455652236938, \"Y\": 0.20287811756134033}, {\"X\": 0.8166472315788269, \"Y\": 0.20287811756134033}, {\"X\": 0.8166472315788269, \"Y\": 0.22187763452529907}, {\"X\": 0.5289455652236938, \"Y\": 0.22187763452529907}]}, \"Id\": \"520a1533-06fd-4895-b5bb-07aa5f1b095c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cc05b12-5f48-44b7-a910-355c2dce8083\", \"1c6fc696-e099-4049-8e17-908c7337b4c5\", \"2f6c6f57-0537-4b2e-b8eb-6f7bc5e6609b\", \"a75b0763-291d-4337-8705-dd6d13f51bf1\", \"5096a702-6583-4392-ba00-a7a39340cd5a\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.17787170410156, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22376799583435059, \"Height\": 0.0196661576628685, \"Left\": 0.11674140393733978, \"Top\": 0.22187761962413788}, \"Polygon\": [{\"X\": 0.11674140393733978, \"Y\": 0.22187761962413788}, {\"X\": 0.34050941467285156, \"Y\": 0.22187761962413788}, {\"X\": 0.34050941467285156, \"Y\": 0.24154376983642578}, {\"X\": 0.11674140393733978, \"Y\": 0.24154376983642578}]}, \"Id\": \"6cf7c287-480c-4a5a-a80e-41ddbfcc9185\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"278f8a41-b66a-473f-a44c-8c9a5b27185f\", \"03c10a6c-b64f-4d54-80f6-4c3f97090b4b\", \"de6f0529-43f9-4e37-b5d5-95eff9a3b3f4\", \"556f0412-d9e9-4f65-9df8-66bb530248cf\", \"e5728f63-a1bb-4dc0-b481-e60b45c0e820\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.66092681884766, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.18843616545200348, \"Height\": 0.0196661576628685, \"Left\": 0.3405093848705292, \"Top\": 0.22187761962413788}, \"Polygon\": [{\"X\": 0.3405093848705292, \"Y\": 0.22187761962413788}, {\"X\": 0.5289455652236938, \"Y\": 0.22187761962413788}, {\"X\": 0.5289455652236938, \"Y\": 0.24154378473758698}, {\"X\": 0.3405093848705292, \"Y\": 0.24154376983642578}]}, \"Id\": \"b1a0f31f-78ea-433b-9277-e9514992100b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"01f853f0-5522-4570-ba00-5b3429c7f06d\", \"630f633b-6434-4994-8547-7a31098f6be3\", \"d4befc86-4a78-49b7-812c-277aa4b9c4db\", \"afc5c3a1-239b-4ce3-a5db-70aea2f6c8bb\", \"8b09c545-5f26-46e1-b053-e7b4fa170ccc\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.12202453613281, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28770166635513306, \"Height\": 0.0196661576628685, \"Left\": 0.5289455652236938, \"Top\": 0.22187761962413788}, \"Polygon\": [{\"X\": 0.5289455652236938, \"Y\": 0.22187761962413788}, {\"X\": 0.8166472315788269, \"Y\": 0.22187761962413788}, {\"X\": 0.8166472315788269, \"Y\": 0.24154378473758698}, {\"X\": 0.5289455652236938, \"Y\": 0.24154378473758698}]}, \"Id\": \"148830d9-8909-4088-83f0-765fac619a61\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b2d38c64-996b-4f31-93eb-a95d621b9eed\", \"f056f475-e900-4d6c-afe0-b5edebe4706b\", \"2ec711d2-cd1d-42a5-aabc-97e0986177d5\", \"d1ab4abb-22eb-417b-9038-d854a794485a\", \"a2cf4bae-ec94-4b5e-b927-ea4ded059ffe\"]}], \"Page\": 1}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"5f146db3-4d4a-4add-8da1-e6828f1ce877\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f7a1313b-709c-4499-b4bd-c41aee699854\", \"abecb393-4892-48f3-81ec-d560582e156b\", \"d7c1b22c-eabb-40c6-893a-eb256aab4bc7\", \"c2e94ec4-7d99-4b96-bcb1-ffca7dac6798\", \"3464030d-fa61-417c-9d59-89cf24a46004\", \"076167eb-0c27-4f3d-97f0-79aeb1c0649f\", \"f8213531-a45f-4367-96a5-6746b99b6ae8\", \"2fc9e364-0bcc-478d-9c11-4353ad2a4ab4\", \"6d05faf7-de8f-4279-9bba-6c3cb2052f54\", \"3483608a-7ca6-448b-8a3b-c2092ef5f468\", \"3378af4c-2b04-459d-8b41-4458b14428bf\", \"a2e15b15-9ae9-4e53-932c-027b7d327f52\", \"c81cad8c-f52f-451c-9f5e-191976c60e11\", \"b22143dd-7a50-4c99-9930-0ea0aeab87df\", \"e9ec1743-b1e0-450b-8018-25e5aa055ef9\", \"22b1cc9f-214e-4885-adf6-890e432fe0b8\", \"e7fe2208-13f5-4a9a-aa20-79e53ea9e90b\", \"df1b5ace-31de-48a6-86ee-578554fd928c\", \"a167093a-2cab-4549-a8bc-9bf9bbff770a\", \"7dbd9332-71ff-457d-8e51-adf5d8c49b6e\", \"f9318c2c-e3c7-491d-b7c9-2bc57da1e5e0\", \"8eaddac4-f899-4da9-a1a6-7c567c1dcff4\", \"1eb64425-238f-470b-9d82-4c4d5ed8ba41\", \"d715ff2e-416f-4e33-ad7c-af6dc30b6ba4\", \"519a6096-7d6a-473f-ba3b-a9c111147746\", \"fec55d73-291f-419b-8ae0-16589593093c\", \"f5082f6f-5ca2-4f7c-bb3a-67046de2d9fe\", \"2be45c90-91ee-44c3-88de-cc33c4dc9d29\", \"1e0468d4-6393-4630-9384-833beb167b12\", \"4a63272b-3630-46a0-a415-6487bf9f3b98\", \"7910ed2d-cb58-4a24-a54e-128c08f3812d\", \"f27f4911-ee5b-4209-9a14-8bd0fefa312d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.85546112060547, \"Text\": \"Some tables on page 2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17982542514801025, \"Height\": 0.01406317763030529, \"Left\": 0.11705344915390015, \"Top\": 0.09476127475500107}, \"Polygon\": [{\"X\": 0.11705344915390015, \"Y\": 0.09476127475500107}, {\"X\": 0.2968788743019104, \"Y\": 0.09476127475500107}, {\"X\": 0.2968788743019104, \"Y\": 0.10882445424795151}, {\"X\": 0.11705344915390015, \"Y\": 0.10882445424795151}]}, \"Id\": \"f7a1313b-709c-4499-b4bd-c41aee699854\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9b8b5ed-2887-4f47-bd99-cc65eb9aab7c\", \"da4d37de-fbcd-485d-ad1a-cfa3534e8194\", \"5e891bd9-010f-4427-8bc8-f86c5090d13e\", \"beefdc2f-594f-4030-94ec-b6ea31c5fb2d\", \"2fceb2fe-e113-4f4f-9680-d320246d2789\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.81219482421875, \"Text\": \"Page 2 - Value 1.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15599240362644196, \"Height\": 0.01354680210351944, \"Left\": 0.1271834820508957, \"Top\": 0.1326518952846527}, \"Polygon\": [{\"X\": 0.1271834820508957, \"Y\": 0.1326518952846527}, {\"X\": 0.28317588567733765, \"Y\": 0.1326518952846527}, {\"X\": 0.28317588567733765, \"Y\": 0.14619870483875275}, {\"X\": 0.1271834820508957, \"Y\": 0.14619870483875275}]}, \"Id\": \"abecb393-4892-48f3-81ec-d560582e156b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"21e211a9-3735-4be7-9848-c931cb98c2ea\", \"efae7fbc-976a-4b23-840c-9820ebe0ed56\", \"b494aa28-6486-40bd-b307-c0d73e4c07e4\", \"194a0890-baf9-4fd0-ac1f-896194b5d83c\", \"3ecff234-b276-4b33-bcdc-bb9929063548\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.9024429321289, \"Text\": \"Page 2 - Value 1.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15582743287086487, \"Height\": 0.013688546605408192, \"Left\": 0.34716251492500305, \"Top\": 0.13253413140773773}, \"Polygon\": [{\"X\": 0.34716251492500305, \"Y\": 0.13253413140773773}, {\"X\": 0.5029899477958679, \"Y\": 0.13253413140773773}, {\"X\": 0.5029899477958679, \"Y\": 0.14622268080711365}, {\"X\": 0.34716251492500305, \"Y\": 0.14622268080711365}]}, \"Id\": \"d7c1b22c-eabb-40c6-893a-eb256aab4bc7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53e6871d-01e1-4ebd-9cab-214c112c5040\", \"73572aef-bbfa-4c03-accb-d84f5fcad4b9\", \"061c8825-10b5-42be-b8a7-7c5ed6889742\", \"b370e734-d02f-4a5d-af84-180ccf7e95c3\", \"2ff71749-0162-417b-ad91-759e457d59e6\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.72601318359375, \"Text\": \"Page 2 - Value 1.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15556970238685608, \"Height\": 0.013723162934184074, \"Left\": 0.5383362174034119, \"Top\": 0.13255266845226288}, \"Polygon\": [{\"X\": 0.5383362174034119, \"Y\": 0.13255266845226288}, {\"X\": 0.6939058899879456, \"Y\": 0.13255266845226288}, {\"X\": 0.6939058899879456, \"Y\": 0.1462758332490921}, {\"X\": 0.5383362174034119, \"Y\": 0.1462758332490921}]}, \"Id\": \"c2e94ec4-7d99-4b96-bcb1-ffca7dac6798\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8e9f4d3-532a-4216-96bc-97f77f3b5649\", \"6a1e21d3-e3e9-4ca4-9f25-705233c5be4f\", \"9dde5689-941a-4eee-af02-8c61e308fa7b\", \"06dfddad-dc23-450a-8162-0979ce1c36bf\", \"a23f464e-8def-418a-a178-87b9c303068e\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.74634552001953, \"Text\": \"Page 2 - Value 1.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1555253118276596, \"Height\": 0.013778031803667545, \"Left\": 0.12774981558322906, \"Top\": 0.15154822170734406}, \"Polygon\": [{\"X\": 0.12774981558322906, \"Y\": 0.15154822170734406}, {\"X\": 0.28327512741088867, \"Y\": 0.15154822170734406}, {\"X\": 0.28327512741088867, \"Y\": 0.16532625257968903}, {\"X\": 0.12774981558322906, \"Y\": 0.16532625257968903}]}, \"Id\": \"3464030d-fa61-417c-9d59-89cf24a46004\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"64dfce16-bb56-4215-a643-071154da8cbc\", \"0e2e879e-b89f-448a-8bd7-9fe9e79f741f\", \"cda930f5-165b-4fab-956f-1bfe62b0942c\", \"290b93f5-3e5f-411c-8519-b0838911af81\", \"960da10d-3e6d-4529-8406-82837d58b085\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.0541763305664, \"Text\": \"Page 2 - Value 1.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15558505058288574, \"Height\": 0.01375054195523262, \"Left\": 0.3476318120956421, \"Top\": 0.15142442286014557}, \"Polygon\": [{\"X\": 0.3476318120956421, \"Y\": 0.15142442286014557}, {\"X\": 0.5032168626785278, \"Y\": 0.15142442286014557}, {\"X\": 0.5032168626785278, \"Y\": 0.1651749610900879}, {\"X\": 0.3476318120956421, \"Y\": 0.1651749610900879}]}, \"Id\": \"076167eb-0c27-4f3d-97f0-79aeb1c0649f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f9b298db-3d82-413b-bcc9-53af28db792e\", \"7067f154-221b-4b20-9344-1632ae3c8424\", \"e2e0b206-2027-44e4-9e3e-a2bbc3aa5ae4\", \"07bf69b1-8d69-4e19-b673-a1485977db73\", \"eaf08e35-5729-4dbb-bb11-9af0ff9ffa47\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.83998107910156, \"Text\": \"Page 2 - Value 1.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15553832054138184, \"Height\": 0.013747647404670715, \"Left\": 0.538318395614624, \"Top\": 0.15145443379878998}, \"Polygon\": [{\"X\": 0.538318395614624, \"Y\": 0.15145443379878998}, {\"X\": 0.6938567161560059, \"Y\": 0.15145443379878998}, {\"X\": 0.6938567161560059, \"Y\": 0.1652020812034607}, {\"X\": 0.538318395614624, \"Y\": 0.1652020812034607}]}, \"Id\": \"f8213531-a45f-4367-96a5-6746b99b6ae8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aa3bef43-7b8a-4217-aa70-7dc4de63326e\", \"3eabb3bd-28e4-492d-8d1a-a846de737815\", \"3791cc39-250b-4c7f-91a3-312bb91394ce\", \"10c2e224-7700-40ab-a36d-540e353023dd\", \"8371390a-648a-4ab2-818d-8cafddd44dd8\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07515716552734, \"Text\": \"Page 2 - Value 1.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15523681044578552, \"Height\": 0.013922149315476418, \"Left\": 0.12765464186668396, \"Top\": 0.17065085470676422}, \"Polygon\": [{\"X\": 0.12765464186668396, \"Y\": 0.17065085470676422}, {\"X\": 0.2828914523124695, \"Y\": 0.17065085470676422}, {\"X\": 0.2828914523124695, \"Y\": 0.1845729947090149}, {\"X\": 0.12765464186668396, \"Y\": 0.1845729947090149}]}, \"Id\": \"2fc9e364-0bcc-478d-9c11-4353ad2a4ab4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c24dc7f-6443-4e32-b457-d9c5af5945b7\", \"0d6009be-f4fe-4fc0-961f-328d54c7a3ae\", \"d08693d5-e358-46ec-9b3a-2e09a3de3992\", \"1635d391-1824-4243-9363-1b628abfadfb\", \"ab5e89d1-e5bd-4fe8-a258-218a37bcf617\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.17304229736328, \"Text\": \"Page 2 - Value 1.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15523800253868103, \"Height\": 0.013827265240252018, \"Left\": 0.34759601950645447, \"Top\": 0.17071065306663513}, \"Polygon\": [{\"X\": 0.34759601950645447, \"Y\": 0.17071065306663513}, {\"X\": 0.5028340220451355, \"Y\": 0.17071065306663513}, {\"X\": 0.5028340220451355, \"Y\": 0.18453791737556458}, {\"X\": 0.34759601950645447, \"Y\": 0.18453791737556458}]}, \"Id\": \"6d05faf7-de8f-4279-9bba-6c3cb2052f54\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28fe11c6-9d5b-46a5-9edf-2ea328065f60\", \"36e443c5-7f49-4e3c-b519-f1c817cf491d\", \"4177f8f4-2081-463f-84e7-024185ca2a78\", \"a3a48042-3b08-4aef-89a5-fa7bfb588eec\", \"50e78283-31bb-423c-855e-65d49b1bbdb8\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.02874755859375, \"Text\": \"Page 2 - Value 1.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15575890243053436, \"Height\": 0.013952932320535183, \"Left\": 0.5380759835243225, \"Top\": 0.17063330113887787}, \"Polygon\": [{\"X\": 0.5380759835243225, \"Y\": 0.17063330113887787}, {\"X\": 0.6938349008560181, \"Y\": 0.17063330113887787}, {\"X\": 0.6938349008560181, \"Y\": 0.18458622694015503}, {\"X\": 0.5380759835243225, \"Y\": 0.18458622694015503}]}, \"Id\": \"3483608a-7ca6-448b-8a3b-c2092ef5f468\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f12d4bf-b117-4eae-b84c-5c722e7b565c\", \"24ea9c75-202c-49fc-aec2-cb52ca233fdd\", \"063ae755-b1e9-4683-b6cc-39276b52c65f\", \"35ebf6f8-2526-40fe-99ce-04c3b64d86a9\", \"736f3a1b-bf69-4bdf-9387-d635d4d7af33\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.81474304199219, \"Text\": \"Page 2 - Value 2.1.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1713583916425705, \"Height\": 0.015957117080688477, \"Left\": 0.0746513307094574, \"Top\": 0.2467852532863617}, \"Polygon\": [{\"X\": 0.0746513307094574, \"Y\": 0.2467852532863617}, {\"X\": 0.2460097223520279, \"Y\": 0.2467852532863617}, {\"X\": 0.2460097223520279, \"Y\": 0.26274237036705017}, {\"X\": 0.0746513307094574, \"Y\": 0.26274237036705017}]}, \"Id\": \"3378af4c-2b04-459d-8b41-4458b14428bf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"48c8410f-6729-4f0c-8059-b94327f5e154\", \"6ae57d2c-8b7f-461c-a2c5-a02766124979\", \"44d435bc-f057-4a6f-ba47-92df7efa19d7\", \"8f436112-da96-460c-9481-f9f76264bf0f\", \"d9ff4d10-82f8-483c-9071-a291c1206942\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.06187438964844, \"Text\": \"Page 2 - Value 2.1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1709093302488327, \"Height\": 0.01659737341105938, \"Left\": 0.2732657492160797, \"Top\": 0.24647016823291779}, \"Polygon\": [{\"X\": 0.2732657492160797, \"Y\": 0.24647016823291779}, {\"X\": 0.4441750645637512, \"Y\": 0.24647016823291779}, {\"X\": 0.4441750645637512, \"Y\": 0.2630675435066223}, {\"X\": 0.2732657492160797, \"Y\": 0.2630675435066223}]}, \"Id\": \"a2e15b15-9ae9-4e53-932c-027b7d327f52\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2104b27b-a8bc-4bc2-92de-fb8b76bb20c4\", \"5349d9d1-ec1a-431e-92c7-9a4fefe14b80\", \"9a750883-bb96-4c14-9695-998dcdd93b22\", \"a1d74cd7-3116-4f21-b346-2038cdc2f062\", \"ad1a45eb-1dfa-4f92-abfc-3f1c4a719718\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.5484619140625, \"Text\": \"Page 2 - Value 2.1.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16975905001163483, \"Height\": 0.01660030521452427, \"Left\": 0.4726485013961792, \"Top\": 0.24666708707809448}, \"Polygon\": [{\"X\": 0.4726485013961792, \"Y\": 0.24666708707809448}, {\"X\": 0.6424075365066528, \"Y\": 0.24666708707809448}, {\"X\": 0.6424075365066528, \"Y\": 0.2632673978805542}, {\"X\": 0.4726485013961792, \"Y\": 0.2632673978805542}]}, \"Id\": \"c81cad8c-f52f-451c-9f5e-191976c60e11\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d376f6ab-8e8d-4ad9-a4d5-ac950411a260\", \"ec60630a-dfe3-44a7-943b-dab84508ba9b\", \"acbca14c-884f-4f36-9676-258af9becc22\", \"00a84a76-0dbe-4183-afe6-1829cd273760\", \"6e191a43-84ea-48dd-97e6-f70a8fa9e8ef\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.6279296875, \"Text\": \"Page 2 - Value 2.1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17204661667346954, \"Height\": 0.015744710341095924, \"Left\": 0.7065343260765076, \"Top\": 0.24672864377498627}, \"Polygon\": [{\"X\": 0.7065343260765076, \"Y\": 0.24672864377498627}, {\"X\": 0.8785809278488159, \"Y\": 0.24672864377498627}, {\"X\": 0.8785809278488159, \"Y\": 0.26247334480285645}, {\"X\": 0.7065343260765076, \"Y\": 0.26247334480285645}]}, \"Id\": \"b22143dd-7a50-4c99-9930-0ea0aeab87df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"adecebe0-bc57-40da-b427-2bc5d0fdb305\", \"2889cff1-fa51-46c4-9e24-845492fb6055\", \"10632c58-883b-4326-aa23-f66c89989623\", \"125aa767-49f2-49f3-afe0-eab90397a180\", \"8e9468a6-9e8d-46f4-b74b-64c83448e067\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.02496337890625, \"Text\": \"Page 2 - Value 2.2.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17076610028743744, \"Height\": 0.01673589088022709, \"Left\": 0.07479499280452728, \"Top\": 0.26879435777664185}, \"Polygon\": [{\"X\": 0.07479499280452728, \"Y\": 0.26879435777664185}, {\"X\": 0.24556109309196472, \"Y\": 0.26879435777664185}, {\"X\": 0.24556109309196472, \"Y\": 0.2855302393436432}, {\"X\": 0.07479499280452728, \"Y\": 0.2855302393436432}]}, \"Id\": \"e9ec1743-b1e0-450b-8018-25e5aa055ef9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"75619d84-d779-4c24-b80c-fe6942b6422a\", \"4448161a-e0c5-4925-85da-d556f0df7dc6\", \"e30eb34c-22e5-469d-848c-0777d8968774\", \"cfa2f8f1-51f4-4ed3-8c39-f42f27c56e97\", \"388782a7-0473-46f3-9e10-5ee0bd22d0f7\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.0172348022461, \"Text\": \"Page 2 - Value 2.2.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17071419954299927, \"Height\": 0.016355838626623154, \"Left\": 0.2734314501285553, \"Top\": 0.2687523365020752}, \"Polygon\": [{\"X\": 0.2734314501285553, \"Y\": 0.2687523365020752}, {\"X\": 0.44414564967155457, \"Y\": 0.2687523365020752}, {\"X\": 0.44414564967155457, \"Y\": 0.28510817885398865}, {\"X\": 0.2734314501285553, \"Y\": 0.28510817885398865}]}, \"Id\": \"22b1cc9f-214e-4885-adf6-890e432fe0b8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6d0276ed-f483-496d-b7ac-d590ab9fc57f\", \"eefacd71-7132-42df-ae6f-65676bbab02d\", \"1f28949e-e79d-4aee-ba01-c5bd0051eb65\", \"386c547e-0699-4b2c-a181-1f421a014f64\", \"a51f5233-3c83-46bf-ba6c-d6e8d16fc494\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.8463134765625, \"Text\": \"Page 2 - Value 2.2.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1702103316783905, \"Height\": 0.015660874545574188, \"Left\": 0.4722763001918793, \"Top\": 0.26858261227607727}, \"Polygon\": [{\"X\": 0.4722763001918793, \"Y\": 0.26858261227607727}, {\"X\": 0.6424866318702698, \"Y\": 0.26858261227607727}, {\"X\": 0.6424866318702698, \"Y\": 0.28424346446990967}, {\"X\": 0.4722763001918793, \"Y\": 0.28424346446990967}]}, \"Id\": \"e7fe2208-13f5-4a9a-aa20-79e53ea9e90b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5eacbdaf-7544-493a-9a03-d783d597be0e\", \"9227126d-af1b-44e8-8afb-9e9c0388eb1e\", \"185e1b9f-02ae-49b8-ac69-0ee2ca64f48a\", \"ddff3ed6-31e4-4dfc-a6d3-77cf8f1630ed\", \"6e502795-60b6-4ffa-bb4a-81f9ed68b0ec\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.98757934570312, \"Text\": \"Page 2 - Value 2.2.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17182044684886932, \"Height\": 0.01644202135503292, \"Left\": 0.7066991925239563, \"Top\": 0.2685427963733673}, \"Polygon\": [{\"X\": 0.7066991925239563, \"Y\": 0.2685427963733673}, {\"X\": 0.8785196542739868, \"Y\": 0.2685427963733673}, {\"X\": 0.8785196542739868, \"Y\": 0.284984827041626}, {\"X\": 0.7066991925239563, \"Y\": 0.284984827041626}]}, \"Id\": \"df1b5ace-31de-48a6-86ee-578554fd928c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b16cf0c-0ca7-4212-a1bf-e5496b5236b1\", \"0a175941-5cfb-4087-8e42-434b18cdffed\", \"c5eebc50-6ee6-49c0-a645-2fbd942ff3ac\", \"3e56254e-cd94-4a8e-b2bf-038d6b296f26\", \"ab66cb16-c439-4080-aead-31574a3da490\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.93170928955078, \"Text\": \"Page 2 - Value 2.3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17081210017204285, \"Height\": 0.015697209164500237, \"Left\": 0.07525941729545593, \"Top\": 0.290689080953598}, \"Polygon\": [{\"X\": 0.07525941729545593, \"Y\": 0.290689080953598}, {\"X\": 0.24607151746749878, \"Y\": 0.290689080953598}, {\"X\": 0.24607151746749878, \"Y\": 0.3063862919807434}, {\"X\": 0.07525941729545593, \"Y\": 0.3063862919807434}]}, \"Id\": \"a167093a-2cab-4549-a8bc-9bf9bbff770a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"89e32d06-d792-46cf-b09d-8ec532b5b10e\", \"925f338f-e5d8-432f-b350-1d08bbe57035\", \"e2d0ffe0-5b79-46fa-85e9-43a09741e1de\", \"3a404f57-827b-4edc-b4f2-0951e9df5e0a\", \"6dffd902-69f4-447d-ae85-8156ce69ac14\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.0680160522461, \"Text\": \"Page 2 - Value 2.3.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1698666512966156, \"Height\": 0.014985589310526848, \"Left\": 0.2741442024707794, \"Top\": 0.2906530797481537}, \"Polygon\": [{\"X\": 0.2741442024707794, \"Y\": 0.2906530797481537}, {\"X\": 0.444010853767395, \"Y\": 0.2906530797481537}, {\"X\": 0.444010853767395, \"Y\": 0.3056386709213257}, {\"X\": 0.2741442024707794, \"Y\": 0.3056386709213257}]}, \"Id\": \"7dbd9332-71ff-457d-8e51-adf5d8c49b6e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a77be656-c5cd-4ddf-ae44-799da7e59bb6\", \"7a81d844-92eb-4359-94b4-28a4587d0419\", \"aab362fb-4324-46cd-829e-a5bfc2634e72\", \"7126f3f8-6fb0-41ec-94e2-522cb29fb3fb\", \"9683997c-ebda-4d79-a247-81802332eb54\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.09426879882812, \"Text\": \"Page 2 - Value 2.3.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17081379890441895, \"Height\": 0.015868542715907097, \"Left\": 0.4715512990951538, \"Top\": 0.29060307145118713}, \"Polygon\": [{\"X\": 0.4715512990951538, \"Y\": 0.29060307145118713}, {\"X\": 0.6423650979995728, \"Y\": 0.29060307145118713}, {\"X\": 0.6423650979995728, \"Y\": 0.3064716160297394}, {\"X\": 0.4715512990951538, \"Y\": 0.3064716160297394}]}, \"Id\": \"f9318c2c-e3c7-491d-b7c9-2bc57da1e5e0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b335649-0594-40cf-853a-c4a62b480d12\", \"2dff1a9a-9e9a-481f-8630-bb5445b3abdf\", \"11f4a7ae-24ca-458c-acf7-a160bc043841\", \"a3cd391c-ba40-4a75-80ee-3d58685923e8\", \"8c0a9f4f-0394-47f5-9cd0-a4fb19d76ff7\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.20276641845703, \"Text\": \"Page 2 - Value 2.3.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17127932608127594, \"Height\": 0.015538844279944897, \"Left\": 0.7075167894363403, \"Top\": 0.2904960513114929}, \"Polygon\": [{\"X\": 0.7075167894363403, \"Y\": 0.2904960513114929}, {\"X\": 0.8787961006164551, \"Y\": 0.2904960513114929}, {\"X\": 0.8787961006164551, \"Y\": 0.3060348927974701}, {\"X\": 0.7075167894363403, \"Y\": 0.3060348927974701}]}, \"Id\": \"8eaddac4-f899-4da9-a1a6-7c567c1dcff4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cf00ce65-7781-4884-b668-b121f88e31af\", \"ddc46a8d-3411-481f-b2d0-584981f70e4c\", \"1a44ba0f-a7b2-46bf-96f1-fff060f0b821\", \"bd1d44cb-5972-4111-ba20-92b956bfddf9\", \"befa0f4e-5b85-44d4-abf5-d8198852bc37\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.32333374023438, \"Text\": \"Page 2 - Value 2.4.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16937828063964844, \"Height\": 0.015369268134236336, \"Left\": 0.07557940483093262, \"Top\": 0.3133399188518524}, \"Polygon\": [{\"X\": 0.07557940483093262, \"Y\": 0.3133399188518524}, {\"X\": 0.24495768547058105, \"Y\": 0.3133399188518524}, {\"X\": 0.24495768547058105, \"Y\": 0.3287091851234436}, {\"X\": 0.07557940483093262, \"Y\": 0.3287091851234436}]}, \"Id\": \"1eb64425-238f-470b-9d82-4c4d5ed8ba41\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f6ca31a-9301-4b91-be6e-811e434c5196\", \"4e2b2430-9179-4d00-8df4-f34795aec3ae\", \"e5a683f3-1c35-41a8-aec6-e3d4410663d0\", \"68822bdf-7fb0-4b14-8cb1-60b3c7668a47\", \"7d61b15d-cd7f-445e-9425-cf35f04f8f27\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41339111328125, \"Text\": \"Page 2 - Value 2.4.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17020031809806824, \"Height\": 0.015450659207999706, \"Left\": 0.2738732099533081, \"Top\": 0.31321629881858826}, \"Polygon\": [{\"X\": 0.2738732099533081, \"Y\": 0.31321629881858826}, {\"X\": 0.44407352805137634, \"Y\": 0.31321629881858826}, {\"X\": 0.44407352805137634, \"Y\": 0.32866695523262024}, {\"X\": 0.2738732099533081, \"Y\": 0.32866695523262024}]}, \"Id\": \"d715ff2e-416f-4e33-ad7c-af6dc30b6ba4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"68910322-267f-4bd2-a835-64b4d0f29878\", \"80f7bf9f-5ea5-4411-adff-3c04eb419d97\", \"5dc14535-4682-480a-9be6-8ad300250b25\", \"3a6decc8-92e7-411b-bc46-e32d19a45102\", \"f7bd0f20-69ae-43fc-a944-4af2774ae253\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.24716186523438, \"Text\": \"Page 2 - Value 2.4.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17006568610668182, \"Height\": 0.015721937641501427, \"Left\": 0.4723489284515381, \"Top\": 0.3132396936416626}, \"Polygon\": [{\"X\": 0.4723489284515381, \"Y\": 0.3132396936416626}, {\"X\": 0.6424146294593811, \"Y\": 0.3132396936416626}, {\"X\": 0.6424146294593811, \"Y\": 0.32896164059638977}, {\"X\": 0.4723489284515381, \"Y\": 0.32896164059638977}]}, \"Id\": \"519a6096-7d6a-473f-ba3b-a9c111147746\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2a7de84d-41e1-4d53-ba4f-65971c583dff\", \"3a38900c-f918-4df8-8180-4c101797beee\", \"d25d8bf4-2120-40e6-b9d1-f33a127cd685\", \"3682fb0a-ac05-4ac4-8d25-02d42b90e74f\", \"41d3f386-e60f-4dc7-8773-71280511a017\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.45143127441406, \"Text\": \"Page 2 - Value 2.4.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17114239931106567, \"Height\": 0.01551731862127781, \"Left\": 0.7075825929641724, \"Top\": 0.31325584650039673}, \"Polygon\": [{\"X\": 0.7075825929641724, \"Y\": 0.31325584650039673}, {\"X\": 0.878724992275238, \"Y\": 0.31325584650039673}, {\"X\": 0.878724992275238, \"Y\": 0.32877317070961}, {\"X\": 0.7075825929641724, \"Y\": 0.32877317070961}]}, \"Id\": \"fec55d73-291f-419b-8ae0-16589593093c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39bede29-2941-4174-b054-53c46383017c\", \"c4e9888d-e403-43ff-a358-665999b0896c\", \"c3140450-1eca-4188-915a-a66232187081\", \"11160e59-6a27-4f9b-ab4b-dd50ff0cee86\", \"0332d490-84d3-44bf-b075-f3a952e7d230\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.26448822021484, \"Text\": \"Page 2 - Value 2.5.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17008468508720398, \"Height\": 0.015600389800965786, \"Left\": 0.0756092518568039, \"Top\": 0.3352903425693512}, \"Polygon\": [{\"X\": 0.0756092518568039, \"Y\": 0.3352903425693512}, {\"X\": 0.24569393694400787, \"Y\": 0.3352903425693512}, {\"X\": 0.24569393694400787, \"Y\": 0.35089072585105896}, {\"X\": 0.0756092518568039, \"Y\": 0.35089072585105896}]}, \"Id\": \"f5082f6f-5ca2-4f7c-bb3a-67046de2d9fe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f0b1b84-1303-481b-98e8-08fabee05e69\", \"550b194a-c2f9-4826-8ce8-8bbbef96b957\", \"2a33a507-71ef-4c64-bb53-d674328d7a1a\", \"f639642c-eec1-40ca-8440-035bf276fb30\", \"0e3594c0-7cb5-4fd7-b6b5-0e2d438c7c69\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.18487548828125, \"Text\": \"Page 2 - Value 2.5.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1702440083026886, \"Height\": 0.015398558229207993, \"Left\": 0.27404990792274475, \"Top\": 0.335245281457901}, \"Polygon\": [{\"X\": 0.27404990792274475, \"Y\": 0.335245281457901}, {\"X\": 0.44429391622543335, \"Y\": 0.335245281457901}, {\"X\": 0.44429391622543335, \"Y\": 0.3506438434123993}, {\"X\": 0.27404990792274475, \"Y\": 0.3506438434123993}]}, \"Id\": \"2be45c90-91ee-44c3-88de-cc33c4dc9d29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ee5e40e9-2b05-4bfb-99ec-1736465782c1\", \"738d4449-9f45-4856-b2cd-14a16dceb25b\", \"5018a705-e4fa-479a-833b-abbeac4b2d9f\", \"57be096b-f79a-4823-81b8-7caf5b7bec2f\", \"b6ccf81f-f3b2-466f-a15e-910bb2aa9ad9\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.20111846923828, \"Text\": \"Page 2 - Value 2.5.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17075204849243164, \"Height\": 0.015554400160908699, \"Left\": 0.47178444266319275, \"Top\": 0.33523786067962646}, \"Polygon\": [{\"X\": 0.47178444266319275, \"Y\": 0.33523786067962646}, {\"X\": 0.642536461353302, \"Y\": 0.33523786067962646}, {\"X\": 0.642536461353302, \"Y\": 0.35079225897789}, {\"X\": 0.47178444266319275, \"Y\": 0.35079225897789}]}, \"Id\": \"1e0468d4-6393-4630-9384-833beb167b12\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80881820-0737-41f9-be84-01cb90cdddcc\", \"1294d484-8d19-4a13-a533-e746f7576521\", \"8b2bc440-e927-465b-8704-24c186535b1a\", \"c03dfc2e-cc4d-4ce4-98b9-60dd9c2c148f\", \"ddbc8536-91c7-4019-8fd8-4d6051a212fe\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.20120239257812, \"Text\": \"Page 2 - Value 2.5.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17106443643569946, \"Height\": 0.015356424264609814, \"Left\": 0.7076103091239929, \"Top\": 0.33519670367240906}, \"Polygon\": [{\"X\": 0.7076103091239929, \"Y\": 0.33519670367240906}, {\"X\": 0.8786747455596924, \"Y\": 0.33519670367240906}, {\"X\": 0.8786747455596924, \"Y\": 0.35055312514305115}, {\"X\": 0.7076103091239929, \"Y\": 0.35055312514305115}]}, \"Id\": \"4a63272b-3630-46a0-a415-6487bf9f3b98\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"472d8d1c-1771-44e6-b803-8748d58925f0\", \"accd3325-60ee-44cd-bcd5-b662577f96de\", \"b4a0048d-dc98-4f81-b124-1ccab677dfb1\", \"edd72f54-9058-4487-a6c5-d5c0061a97f8\", \"c77dee3a-f376-4ea0-8087-855c181a1053\"]}], \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70915222167969, \"Text\": \"Some\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04505529999732971, \"Height\": 0.011164274998009205, \"Left\": 0.11705344915390015, \"Top\": 0.09500807523727417}, \"Polygon\": [{\"X\": 0.11705344915390015, \"Y\": 0.09500807523727417}, {\"X\": 0.16210874915122986, \"Y\": 0.09500807523727417}, {\"X\": 0.16210874915122986, \"Y\": 0.1061723530292511}, {\"X\": 0.11705344915390015, \"Y\": 0.1061723530292511}]}, \"Id\": \"c9b8b5ed-2887-4f47-bd99-cc65eb9aab7c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82203674316406, \"Text\": \"tables\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04821654036641121, \"Height\": 0.01137582864612341, \"Left\": 0.16640280187129974, \"Top\": 0.09476127475500107}, \"Polygon\": [{\"X\": 0.16640280187129974, \"Y\": 0.09476127475500107}, {\"X\": 0.21461933851242065, \"Y\": 0.09476127475500107}, {\"X\": 0.21461933851242065, \"Y\": 0.10613710433244705}, {\"X\": 0.16640280187129974, \"Y\": 0.10613710433244705}]}, \"Id\": \"da4d37de-fbcd-485d-ad1a-cfa3534e8194\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9740219116211, \"Text\": \"on\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02009803056716919, \"Height\": 0.008539840579032898, \"Left\": 0.2192462831735611, \"Top\": 0.09756292402744293}, \"Polygon\": [{\"X\": 0.2192462831735611, \"Y\": 0.09756292402744293}, {\"X\": 0.23934431374073029, \"Y\": 0.09756292402744293}, {\"X\": 0.23934431374073029, \"Y\": 0.10610276460647583}, {\"X\": 0.2192462831735611, \"Y\": 0.10610276460647583}]}, \"Id\": \"5e891bd9-010f-4427-8bc8-f86c5090d13e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95553588867188, \"Text\": \"page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03818083181977272, \"Height\": 0.011309714056551456, \"Left\": 0.24474301934242249, \"Top\": 0.09751474112272263}, \"Polygon\": [{\"X\": 0.24474301934242249, \"Y\": 0.09751474112272263}, {\"X\": 0.2829238474369049, \"Y\": 0.09751474112272263}, {\"X\": 0.2829238474369049, \"Y\": 0.10882445424795151}, {\"X\": 0.24474301934242249, \"Y\": 0.10882445424795151}]}, \"Id\": \"beefdc2f-594f-4030-94ec-b6ea31c5fb2d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81658172607422, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009244049899280071, \"Height\": 0.010854494757950306, \"Left\": 0.28763481974601746, \"Top\": 0.09519311785697937}, \"Polygon\": [{\"X\": 0.28763481974601746, \"Y\": 0.09519311785697937}, {\"X\": 0.2968788743019104, \"Y\": 0.09519311785697937}, {\"X\": 0.2968788743019104, \"Y\": 0.1060476154088974}, {\"X\": 0.28763481974601746, \"Y\": 0.1060476154088974}]}, \"Id\": \"2fceb2fe-e113-4f4f-9680-d320246d2789\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07682037353516, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038012418895959854, \"Height\": 0.01347254030406475, \"Left\": 0.1271834820508957, \"Top\": 0.13272616267204285}, \"Polygon\": [{\"X\": 0.1271834820508957, \"Y\": 0.13272616267204285}, {\"X\": 0.16519589722156525, \"Y\": 0.13272616267204285}, {\"X\": 0.16519589722156525, \"Y\": 0.14619870483875275}, {\"X\": 0.1271834820508957, \"Y\": 0.14619870483875275}]}, \"Id\": \"21e211a9-3735-4be7-9848-c931cb98c2ea\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85182189941406, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00905322004109621, \"Height\": 0.010739799588918686, \"Left\": 0.16999882459640503, \"Top\": 0.1328614354133606}, \"Polygon\": [{\"X\": 0.16999882459640503, \"Y\": 0.1328614354133606}, {\"X\": 0.17905203998088837, \"Y\": 0.1328614354133606}, {\"X\": 0.17905203998088837, \"Y\": 0.14360123872756958}, {\"X\": 0.16999882459640503, \"Y\": 0.14360123872756958}]}, \"Id\": \"efae7fbc-976a-4b23-840c-9820ebe0ed56\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.82694244384766, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006019600201398134, \"Height\": 0.0022144101094454527, \"Left\": 0.18399785459041595, \"Top\": 0.138251394033432}, \"Polygon\": [{\"X\": 0.18399785459041595, \"Y\": 0.138251394033432}, {\"X\": 0.1900174468755722, \"Y\": 0.138251394033432}, {\"X\": 0.1900174468755722, \"Y\": 0.14046581089496613}, {\"X\": 0.18399785459041595, \"Y\": 0.14046581089496613}]}, \"Id\": \"b494aa28-6486-40bd-b307-c0d73e4c07e4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89546966552734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045680150389671326, \"Height\": 0.011179929599165916, \"Left\": 0.19412100315093994, \"Top\": 0.1326518952846527}, \"Polygon\": [{\"X\": 0.19412100315093994, \"Y\": 0.1326518952846527}, {\"X\": 0.23980115354061127, \"Y\": 0.1326518952846527}, {\"X\": 0.23980115354061127, \"Y\": 0.14383183419704437}, {\"X\": 0.19412100315093994, \"Y\": 0.14383183419704437}]}, \"Id\": \"194a0890-baf9-4fd0-ac1f-896194b5d83c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40992736816406, \"Text\": \"1.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038166120648384094, \"Height\": 0.010658159852027893, \"Left\": 0.24500977993011475, \"Top\": 0.1328645646572113}, \"Polygon\": [{\"X\": 0.24500977993011475, \"Y\": 0.1328645646572113}, {\"X\": 0.28317588567733765, \"Y\": 0.1328645646572113}, {\"X\": 0.28317588567733765, \"Y\": 0.1435227245092392}, {\"X\": 0.24500977993011475, \"Y\": 0.1435227245092392}]}, \"Id\": \"3ecff234-b276-4b33-bcdc-bb9929063548\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04559326171875, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0379849411547184, \"Height\": 0.013471799902617931, \"Left\": 0.34716251492500305, \"Top\": 0.13275088369846344}, \"Polygon\": [{\"X\": 0.34716251492500305, \"Y\": 0.13275088369846344}, {\"X\": 0.38514745235443115, \"Y\": 0.13275088369846344}, {\"X\": 0.38514745235443115, \"Y\": 0.14622268080711365}, {\"X\": 0.34716251492500305, \"Y\": 0.14622268080711365}]}, \"Id\": \"53e6871d-01e1-4ebd-9cab-214c112c5040\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65130615234375, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009395419619977474, \"Height\": 0.010821379721164703, \"Left\": 0.38978615403175354, \"Top\": 0.13281886279582977}, \"Polygon\": [{\"X\": 0.38978615403175354, \"Y\": 0.13281886279582977}, {\"X\": 0.3991815745830536, \"Y\": 0.13281886279582977}, {\"X\": 0.3991815745830536, \"Y\": 0.14364023506641388}, {\"X\": 0.38978615403175354, \"Y\": 0.14364023506641388}]}, \"Id\": \"73572aef-bbfa-4c03-accb-d84f5fcad4b9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.73212432861328, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005867150146514177, \"Height\": 0.002588320057839155, \"Left\": 0.40404629707336426, \"Top\": 0.1378496140241623}, \"Polygon\": [{\"X\": 0.40404629707336426, \"Y\": 0.1378496140241623}, {\"X\": 0.40991345047950745, \"Y\": 0.1378496140241623}, {\"X\": 0.40991345047950745, \"Y\": 0.14043793082237244}, {\"X\": 0.40404629707336426, \"Y\": 0.14043793082237244}]}, \"Id\": \"061c8825-10b5-42be-b8a7-7c5ed6889742\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78524017333984, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045927248895168304, \"Height\": 0.011377260088920593, \"Left\": 0.4139287769794464, \"Top\": 0.13253413140773773}, \"Polygon\": [{\"X\": 0.4139287769794464, \"Y\": 0.13253413140773773}, {\"X\": 0.4598560333251953, \"Y\": 0.13253413140773773}, {\"X\": 0.4598560333251953, \"Y\": 0.14391139149665833}, {\"X\": 0.4139287769794464, \"Y\": 0.14391139149665833}]}, \"Id\": \"b370e734-d02f-4a5d-af84-180ccf7e95c3\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29794311523438, \"Text\": \"1.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03822777047753334, \"Height\": 0.010917400009930134, \"Left\": 0.4647621810436249, \"Top\": 0.13268928229808807}, \"Polygon\": [{\"X\": 0.4647621810436249, \"Y\": 0.13268928229808807}, {\"X\": 0.5029899477958679, \"Y\": 0.13268928229808807}, {\"X\": 0.5029899477958679, \"Y\": 0.14360667765140533}, {\"X\": 0.4647621810436249, \"Y\": 0.14360667765140533}]}, \"Id\": \"2ff71749-0162-417b-ad91-759e457d59e6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.92269134521484, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03731086105108261, \"Height\": 0.013567459769546986, \"Left\": 0.5383362174034119, \"Top\": 0.1327083706855774}, \"Polygon\": [{\"X\": 0.5383362174034119, \"Y\": 0.1327083706855774}, {\"X\": 0.5756470561027527, \"Y\": 0.1327083706855774}, {\"X\": 0.5756470561027527, \"Y\": 0.1462758332490921}, {\"X\": 0.5383362174034119, \"Y\": 0.1462758332490921}]}, \"Id\": \"f8e9f4d3-532a-4216-96bc-97f77f3b5649\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79573822021484, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009264039807021618, \"Height\": 0.01092038955539465, \"Left\": 0.5808177590370178, \"Top\": 0.13273070752620697}, \"Polygon\": [{\"X\": 0.5808177590370178, \"Y\": 0.13273070752620697}, {\"X\": 0.5900818109512329, \"Y\": 0.13273070752620697}, {\"X\": 0.5900818109512329, \"Y\": 0.1436510980129242}, {\"X\": 0.5808177590370178, \"Y\": 0.1436510980129242}]}, \"Id\": \"6a1e21d3-e3e9-4ca4-9f25-705233c5be4f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.6173324584961, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005944599863141775, \"Height\": 0.0022255301009863615, \"Left\": 0.5948210954666138, \"Top\": 0.13824725151062012}, \"Polygon\": [{\"X\": 0.5948210954666138, \"Y\": 0.13824725151062012}, {\"X\": 0.6007657051086426, \"Y\": 0.13824725151062012}, {\"X\": 0.6007657051086426, \"Y\": 0.14047278463840485}, {\"X\": 0.5948210954666138, \"Y\": 0.14047278463840485}]}, \"Id\": \"9dde5689-941a-4eee-af02-8c61e308fa7b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77674865722656, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04594653844833374, \"Height\": 0.011221789754927158, \"Left\": 0.6044063568115234, \"Top\": 0.13255266845226288}, \"Polygon\": [{\"X\": 0.6044063568115234, \"Y\": 0.13255266845226288}, {\"X\": 0.6503528952598572, \"Y\": 0.13255266845226288}, {\"X\": 0.6503528952598572, \"Y\": 0.14377446472644806}, {\"X\": 0.6044063568115234, \"Y\": 0.14377446472644806}]}, \"Id\": \"06dfddad-dc23-450a-8162-0979ce1c36bf\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.51754760742188, \"Text\": \"1.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03818250074982643, \"Height\": 0.010791580192744732, \"Left\": 0.6557233929634094, \"Top\": 0.13283678889274597}, \"Polygon\": [{\"X\": 0.6557233929634094, \"Y\": 0.13283678889274597}, {\"X\": 0.6939058899879456, \"Y\": 0.13283678889274597}, {\"X\": 0.6939058899879456, \"Y\": 0.14362837374210358}, {\"X\": 0.6557233929634094, \"Y\": 0.14362837374210358}]}, \"Id\": \"a23f464e-8def-418a-a178-87b9c303068e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11028289794922, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03742377832531929, \"Height\": 0.013472650200128555, \"Left\": 0.12774981558322906, \"Top\": 0.15185362100601196}, \"Polygon\": [{\"X\": 0.12774981558322906, \"Y\": 0.15185362100601196}, {\"X\": 0.16517360508441925, \"Y\": 0.15185362100601196}, {\"X\": 0.16517360508441925, \"Y\": 0.16532626748085022}, {\"X\": 0.12774981558322906, \"Y\": 0.16532626748085022}]}, \"Id\": \"64dfce16-bb56-4215-a643-071154da8cbc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88755798339844, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008959859609603882, \"Height\": 0.010743049904704094, \"Left\": 0.17019669711589813, \"Top\": 0.15182019770145416}, \"Polygon\": [{\"X\": 0.17019669711589813, \"Y\": 0.15182019770145416}, {\"X\": 0.17915655672550201, \"Y\": 0.15182019770145416}, {\"X\": 0.17915655672550201, \"Y\": 0.1625632494688034}, {\"X\": 0.17019669711589813, \"Y\": 0.1625632494688034}]}, \"Id\": \"0e2e879e-b89f-448a-8bd7-9fe9e79f741f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.92523193359375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005976390093564987, \"Height\": 0.002213309984654188, \"Left\": 0.18407125771045685, \"Top\": 0.15726381540298462}, \"Polygon\": [{\"X\": 0.18407125771045685, \"Y\": 0.15726381540298462}, {\"X\": 0.19004765152931213, \"Y\": 0.15726381540298462}, {\"X\": 0.19004765152931213, \"Y\": 0.1594771295785904}, {\"X\": 0.18407125771045685, \"Y\": 0.1594771295785904}]}, \"Id\": \"cda930f5-165b-4fab-956f-1bfe62b0942c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8672103881836, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04533372074365616, \"Height\": 0.011180950328707695, \"Left\": 0.1943521946668625, \"Top\": 0.15154822170734406}, \"Polygon\": [{\"X\": 0.1943521946668625, \"Y\": 0.15154822170734406}, {\"X\": 0.23968592286109924, \"Y\": 0.15154822170734406}, {\"X\": 0.23968592286109924, \"Y\": 0.1627291738986969}, {\"X\": 0.1943521946668625, \"Y\": 0.1627291738986969}]}, \"Id\": \"290b93f5-3e5f-411c-8519-b0838911af81\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.94145965576172, \"Text\": \"1.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038521308451890945, \"Height\": 0.011064429767429829, \"Left\": 0.24475382268428802, \"Top\": 0.15175855159759521}, \"Polygon\": [{\"X\": 0.24475382268428802, \"Y\": 0.15175855159759521}, {\"X\": 0.28327512741088867, \"Y\": 0.15175855159759521}, {\"X\": 0.28327512741088867, \"Y\": 0.16282297670841217}, {\"X\": 0.24475382268428802, \"Y\": 0.16282297670841217}]}, \"Id\": \"960da10d-3e6d-4529-8406-82837d58b085\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.99669647216797, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0382370799779892, \"Height\": 0.01316124014556408, \"Left\": 0.3476318120956421, \"Top\": 0.15201371908187866}, \"Polygon\": [{\"X\": 0.3476318120956421, \"Y\": 0.15201371908187866}, {\"X\": 0.3858688771724701, \"Y\": 0.15201371908187866}, {\"X\": 0.3858688771724701, \"Y\": 0.1651749610900879}, {\"X\": 0.3476318120956421, \"Y\": 0.1651749610900879}]}, \"Id\": \"f9b298db-3d82-413b-bcc9-53af28db792e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69825744628906, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009123450145125389, \"Height\": 0.010782710276544094, \"Left\": 0.38997840881347656, \"Top\": 0.15183278918266296}, \"Polygon\": [{\"X\": 0.38997840881347656, \"Y\": 0.15183278918266296}, {\"X\": 0.3991018533706665, \"Y\": 0.15183278918266296}, {\"X\": 0.3991018533706665, \"Y\": 0.16261549293994904}, {\"X\": 0.38997840881347656, \"Y\": 0.16261549293994904}]}, \"Id\": \"7067f154-221b-4b20-9344-1632ae3c8424\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.15332794189453, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.006021889857947826, \"Height\": 0.0025072700809687376, \"Left\": 0.403883159160614, \"Top\": 0.1570868045091629}, \"Polygon\": [{\"X\": 0.403883159160614, \"Y\": 0.1570868045091629}, {\"X\": 0.4099050462245941, \"Y\": 0.1570868045091629}, {\"X\": 0.4099050462245941, \"Y\": 0.1595940738916397}, {\"X\": 0.403883159160614, \"Y\": 0.1595940738916397}]}, \"Id\": \"e2e0b206-2027-44e4-9e3e-a2bbc3aa5ae4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85543060302734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045949868857860565, \"Height\": 0.011365359649062157, \"Left\": 0.4138273298740387, \"Top\": 0.15142442286014557}, \"Polygon\": [{\"X\": 0.4138273298740387, \"Y\": 0.15142442286014557}, {\"X\": 0.45977720618247986, \"Y\": 0.15142442286014557}, {\"X\": 0.45977720618247986, \"Y\": 0.16278977692127228}, {\"X\": 0.4138273298740387, \"Y\": 0.16278977692127228}]}, \"Id\": \"07bf69b1-8d69-4e19-b673-a1485977db73\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5671615600586, \"Text\": \"1.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03849766030907631, \"Height\": 0.011074529960751534, \"Left\": 0.4647192060947418, \"Top\": 0.15170922875404358}, \"Polygon\": [{\"X\": 0.4647192060947418, \"Y\": 0.15170922875404358}, {\"X\": 0.5032168626785278, \"Y\": 0.15170922875404358}, {\"X\": 0.5032168626785278, \"Y\": 0.16278375685214996}, {\"X\": 0.4647192060947418, \"Y\": 0.16278375685214996}]}, \"Id\": \"eaf08e35-5729-4dbb-bb11-9af0ff9ffa47\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04464721679688, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03729410097002983, \"Height\": 0.013365539722144604, \"Left\": 0.538318395614624, \"Top\": 0.1518365442752838}, \"Polygon\": [{\"X\": 0.538318395614624, \"Y\": 0.1518365442752838}, {\"X\": 0.575612485408783, \"Y\": 0.1518365442752838}, {\"X\": 0.575612485408783, \"Y\": 0.1652020812034607}, {\"X\": 0.538318395614624, \"Y\": 0.1652020812034607}]}, \"Id\": \"aa3bef43-7b8a-4217-aa70-7dc4de63326e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.821044921875, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009285449981689453, \"Height\": 0.010762030258774757, \"Left\": 0.580794095993042, \"Top\": 0.1518392264842987}, \"Polygon\": [{\"X\": 0.580794095993042, \"Y\": 0.1518392264842987}, {\"X\": 0.5900795459747314, \"Y\": 0.1518392264842987}, {\"X\": 0.5900795459747314, \"Y\": 0.1626012623310089}, {\"X\": 0.580794095993042, \"Y\": 0.1626012623310089}]}, \"Id\": \"3eabb3bd-28e4-492d-8d1a-a846de737815\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.17196655273438, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005859099794179201, \"Height\": 0.0023110199254006147, \"Left\": 0.5949835777282715, \"Top\": 0.15714412927627563}, \"Polygon\": [{\"X\": 0.5949835777282715, \"Y\": 0.15714412927627563}, {\"X\": 0.6008427143096924, \"Y\": 0.15714412927627563}, {\"X\": 0.6008427143096924, \"Y\": 0.15945515036582947}, {\"X\": 0.5949835777282715, \"Y\": 0.15945515036582947}]}, \"Id\": \"3791cc39-250b-4c7f-91a3-312bb91394ce\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79206085205078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045926958322525024, \"Height\": 0.011288650333881378, \"Left\": 0.6044042706489563, \"Top\": 0.15145443379878998}, \"Polygon\": [{\"X\": 0.6044042706489563, \"Y\": 0.15145443379878998}, {\"X\": 0.6503312587738037, \"Y\": 0.15145443379878998}, {\"X\": 0.6503312587738037, \"Y\": 0.16274307668209076}, {\"X\": 0.6044042706489563, \"Y\": 0.16274307668209076}]}, \"Id\": \"10c2e224-7700-40ab-a36d-540e353023dd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37017059326172, \"Text\": \"1.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0381195992231369, \"Height\": 0.010968640446662903, \"Left\": 0.6557371020317078, \"Top\": 0.15180093050003052}, \"Polygon\": [{\"X\": 0.6557371020317078, \"Y\": 0.15180093050003052}, {\"X\": 0.6938567161560059, \"Y\": 0.15180093050003052}, {\"X\": 0.6938567161560059, \"Y\": 0.16276957094669342}, {\"X\": 0.6557371020317078, \"Y\": 0.16276957094669342}]}, \"Id\": \"8371390a-648a-4ab2-818d-8cafddd44dd8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39085388183594, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037580061703920364, \"Height\": 0.013554500415921211, \"Left\": 0.12765464186668396, \"Top\": 0.17101849615573883}, \"Polygon\": [{\"X\": 0.12765464186668396, \"Y\": 0.17101849615573883}, {\"X\": 0.16523469984531403, \"Y\": 0.17101849615573883}, {\"X\": 0.16523469984531403, \"Y\": 0.1845729947090149}, {\"X\": 0.12765464186668396, \"Y\": 0.1845729947090149}]}, \"Id\": \"4c24dc7f-6443-4e32-b457-d9c5af5945b7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78012084960938, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009298349730670452, \"Height\": 0.010607150383293629, \"Left\": 0.17009958624839783, \"Top\": 0.17112275958061218}, \"Polygon\": [{\"X\": 0.17009958624839783, \"Y\": 0.17112275958061218}, {\"X\": 0.17939794063568115, \"Y\": 0.17112275958061218}, {\"X\": 0.17939794063568115, \"Y\": 0.18172991275787354}, {\"X\": 0.17009958624839783, \"Y\": 0.18172991275787354}]}, \"Id\": \"0d6009be-f4fe-4fc0-961f-328d54c7a3ae\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.94463348388672, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0057727801613509655, \"Height\": 0.0023130199406296015, \"Left\": 0.18421542644500732, \"Top\": 0.17635440826416016}, \"Polygon\": [{\"X\": 0.18421542644500732, \"Y\": 0.17635440826416016}, {\"X\": 0.18998821079730988, \"Y\": 0.17635440826416016}, {\"X\": 0.18998821079730988, \"Y\": 0.17866742610931396}, {\"X\": 0.18421542644500732, \"Y\": 0.17866742610931396}]}, \"Id\": \"d08693d5-e358-46ec-9b3a-2e09a3de3992\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87007904052734, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0452851802110672, \"Height\": 0.011133230291306973, \"Left\": 0.19438792765140533, \"Top\": 0.17065085470676422}, \"Polygon\": [{\"X\": 0.19438792765140533, \"Y\": 0.17065085470676422}, {\"X\": 0.23967310786247253, \"Y\": 0.17065085470676422}, {\"X\": 0.23967310786247253, \"Y\": 0.18178407847881317}, {\"X\": 0.19438792765140533, \"Y\": 0.18178407847881317}]}, \"Id\": \"1635d391-1824-4243-9363-1b628abfadfb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39009857177734, \"Text\": \"1.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038010548800230026, \"Height\": 0.011098049581050873, \"Left\": 0.24488089978694916, \"Top\": 0.1708873063325882}, \"Polygon\": [{\"X\": 0.24488089978694916, \"Y\": 0.1708873063325882}, {\"X\": 0.2828914523124695, \"Y\": 0.1708873063325882}, {\"X\": 0.2828914523124695, \"Y\": 0.18198534846305847}, {\"X\": 0.24488089978694916, \"Y\": 0.18198534846305847}]}, \"Id\": \"ab5e89d1-e5bd-4fe8-a258-218a37bcf617\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3176498413086, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037650998681783676, \"Height\": 0.013582220301032066, \"Left\": 0.34759601950645447, \"Top\": 0.17095570266246796}, \"Polygon\": [{\"X\": 0.34759601950645447, \"Y\": 0.17095570266246796}, {\"X\": 0.38524702191352844, \"Y\": 0.17095570266246796}, {\"X\": 0.38524702191352844, \"Y\": 0.18453791737556458}, {\"X\": 0.34759601950645447, \"Y\": 0.18453791737556458}]}, \"Id\": \"28fe11c6-9d5b-46a5-9edf-2ea328065f60\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66902923583984, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0093595702201128, \"Height\": 0.010676519945263863, \"Left\": 0.3899271786212921, \"Top\": 0.17110171914100647}, \"Polygon\": [{\"X\": 0.3899271786212921, \"Y\": 0.17110171914100647}, {\"X\": 0.39928674697875977, \"Y\": 0.17110171914100647}, {\"X\": 0.39928674697875977, \"Y\": 0.18177823722362518}, {\"X\": 0.3899271786212921, \"Y\": 0.18177823722362518}]}, \"Id\": \"36e443c5-7f49-4e3c-b519-f1c817cf491d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.32879638671875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005175179801881313, \"Height\": 0.002630610018968582, \"Left\": 0.40453001856803894, \"Top\": 0.17610423266887665}, \"Polygon\": [{\"X\": 0.40453001856803894, \"Y\": 0.17610423266887665}, {\"X\": 0.40970519185066223, \"Y\": 0.17610423266887665}, {\"X\": 0.40970519185066223, \"Y\": 0.17873483896255493}, {\"X\": 0.40453001856803894, \"Y\": 0.17873483896255493}]}, \"Id\": \"4177f8f4-2081-463f-84e7-024185ca2a78\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87249755859375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04499128833413124, \"Height\": 0.011128179728984833, \"Left\": 0.4146619439125061, \"Top\": 0.17071065306663513}, \"Polygon\": [{\"X\": 0.4146619439125061, \"Y\": 0.17071065306663513}, {\"X\": 0.45965322852134705, \"Y\": 0.17071065306663513}, {\"X\": 0.45965322852134705, \"Y\": 0.18183882534503937}, {\"X\": 0.4146619439125061, \"Y\": 0.18183882534503937}]}, \"Id\": \"a3a48042-3b08-4aef-89a5-fa7bfb588eec\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.67726135253906, \"Text\": \"1.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038953639566898346, \"Height\": 0.010366990230977535, \"Left\": 0.46388036012649536, \"Top\": 0.17076684534549713}, \"Polygon\": [{\"X\": 0.46388036012649536, \"Y\": 0.17076684534549713}, {\"X\": 0.5028340220451355, \"Y\": 0.17076684534549713}, {\"X\": 0.5028340220451355, \"Y\": 0.18113383650779724}, {\"X\": 0.46388036012649536, \"Y\": 0.18113383650779724}]}, \"Id\": \"50e78283-31bb-423c-855e-65d49b1bbdb8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.70118713378906, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03761620074510574, \"Height\": 0.013663290068507195, \"Left\": 0.5380759835243225, \"Top\": 0.17092293500900269}, \"Polygon\": [{\"X\": 0.5380759835243225, \"Y\": 0.17092293500900269}, {\"X\": 0.5756921768188477, \"Y\": 0.17092293500900269}, {\"X\": 0.5756921768188477, \"Y\": 0.18458622694015503}, {\"X\": 0.5380759835243225, \"Y\": 0.18458622694015503}]}, \"Id\": \"1f12d4bf-b117-4eae-b84c-5c722e7b565c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83887481689453, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00937660038471222, \"Height\": 0.01070650015026331, \"Left\": 0.580805778503418, \"Top\": 0.17103849351406097}, \"Polygon\": [{\"X\": 0.580805778503418, \"Y\": 0.17103849351406097}, {\"X\": 0.5901824235916138, \"Y\": 0.17103849351406097}, {\"X\": 0.5901824235916138, \"Y\": 0.1817449927330017}, {\"X\": 0.580805778503418, \"Y\": 0.1817449927330017}]}, \"Id\": \"24ea9c75-202c-49fc-aec2-cb52ca233fdd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.07855224609375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005718260072171688, \"Height\": 0.002475900109857321, \"Left\": 0.5952247381210327, \"Top\": 0.17613230645656586}, \"Polygon\": [{\"X\": 0.5952247381210327, \"Y\": 0.17613230645656586}, {\"X\": 0.6009430289268494, \"Y\": 0.17613230645656586}, {\"X\": 0.6009430289268494, \"Y\": 0.17860819399356842}, {\"X\": 0.5952247381210327, \"Y\": 0.17860819399356842}]}, \"Id\": \"063ae755-b1e9-4683-b6cc-39276b52c65f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81085205078125, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04602935165166855, \"Height\": 0.011176889762282372, \"Left\": 0.604547917842865, \"Top\": 0.17063330113887787}, \"Polygon\": [{\"X\": 0.604547917842865, \"Y\": 0.17063330113887787}, {\"X\": 0.6505772471427917, \"Y\": 0.17063330113887787}, {\"X\": 0.6505772471427917, \"Y\": 0.1818101853132248}, {\"X\": 0.604547917842865, \"Y\": 0.1818101853132248}]}, \"Id\": \"35ebf6f8-2526-40fe-99ce-04c3b64d86a9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71426391601562, \"Text\": \"1.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03793245181441307, \"Height\": 0.010891770012676716, \"Left\": 0.6559024453163147, \"Top\": 0.17099516093730927}, \"Polygon\": [{\"X\": 0.6559024453163147, \"Y\": 0.17099516093730927}, {\"X\": 0.6938349008560181, \"Y\": 0.17099516093730927}, {\"X\": 0.6938349008560181, \"Y\": 0.1818869262933731}, {\"X\": 0.6559024453163147, \"Y\": 0.1818869262933731}]}, \"Id\": \"736f3a1b-bf69-4bdf-9387-d635d4d7af33\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.77438354492188, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03814728930592537, \"Height\": 0.014368060044944286, \"Left\": 0.0746513307094574, \"Top\": 0.2483743131160736}, \"Polygon\": [{\"X\": 0.0746513307094574, \"Y\": 0.2483743131160736}, {\"X\": 0.11279861629009247, \"Y\": 0.2483743131160736}, {\"X\": 0.11279861629009247, \"Y\": 0.26274237036705017}, {\"X\": 0.0746513307094574, \"Y\": 0.26274237036705017}]}, \"Id\": \"48c8410f-6729-4f0c-8059-b94327f5e154\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70512390136719, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009271309711039066, \"Height\": 0.010820750147104263, \"Left\": 0.1178755909204483, \"Top\": 0.24869567155838013}, \"Polygon\": [{\"X\": 0.1178755909204483, \"Y\": 0.24869567155838013}, {\"X\": 0.1271468997001648, \"Y\": 0.24869567155838013}, {\"X\": 0.1271468997001648, \"Y\": 0.2595164179801941}, {\"X\": 0.1178755909204483, \"Y\": 0.2595164179801941}]}, \"Id\": \"6ae57d2c-8b7f-461c-a2c5-a02766124979\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.27687072753906, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0058245002292096615, \"Height\": 0.002606600057333708, \"Left\": 0.13215027749538422, \"Top\": 0.25367480516433716}, \"Polygon\": [{\"X\": 0.13215027749538422, \"Y\": 0.25367480516433716}, {\"X\": 0.1379747837781906, \"Y\": 0.25367480516433716}, {\"X\": 0.1379747837781906, \"Y\": 0.25628140568733215}, {\"X\": 0.13215027749538422, \"Y\": 0.25628140568733215}]}, \"Id\": \"44d435bc-f057-4a6f-ba47-92df7efa19d7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67548370361328, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05405360087752342, \"Height\": 0.013142799958586693, \"Left\": 0.141422837972641, \"Top\": 0.2467852532863617}, \"Polygon\": [{\"X\": 0.141422837972641, \"Y\": 0.2467852532863617}, {\"X\": 0.1954764425754547, \"Y\": 0.2467852532863617}, {\"X\": 0.1954764425754547, \"Y\": 0.25992804765701294}, {\"X\": 0.141422837972641, \"Y\": 0.25992804765701294}]}, \"Id\": \"8f436112-da96-460c-9481-f9f76264bf0f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.641845703125, \"Text\": \"2.1.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04506576061248779, \"Height\": 0.012706460431218147, \"Left\": 0.2009439617395401, \"Top\": 0.2468305230140686}, \"Polygon\": [{\"X\": 0.2009439617395401, \"Y\": 0.2468305230140686}, {\"X\": 0.2460097223520279, \"Y\": 0.2468305230140686}, {\"X\": 0.2460097223520279, \"Y\": 0.2595369815826416}, {\"X\": 0.2009439617395401, \"Y\": 0.2595369815826416}]}, \"Id\": \"d9ff4d10-82f8-483c-9071-a291c1206942\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.85249328613281, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037852250039577484, \"Height\": 0.015276160091161728, \"Left\": 0.2732657492160797, \"Top\": 0.2477913796901703}, \"Polygon\": [{\"X\": 0.2732657492160797, \"Y\": 0.2477913796901703}, {\"X\": 0.3111180067062378, \"Y\": 0.2477913796901703}, {\"X\": 0.3111180067062378, \"Y\": 0.2630675435066223}, {\"X\": 0.2732657492160797, \"Y\": 0.2630675435066223}]}, \"Id\": \"2104b27b-a8bc-4bc2-92de-fb8b76bb20c4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77505493164062, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00947451964020729, \"Height\": 0.010885019786655903, \"Left\": 0.31590673327445984, \"Top\": 0.24858728051185608}, \"Polygon\": [{\"X\": 0.31590673327445984, \"Y\": 0.24858728051185608}, {\"X\": 0.32538124918937683, \"Y\": 0.24858728051185608}, {\"X\": 0.32538124918937683, \"Y\": 0.2594723105430603}, {\"X\": 0.31590673327445984, \"Y\": 0.2594723105430603}]}, \"Id\": \"5349d9d1-ec1a-431e-92c7-9a4fefe14b80\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.49544525146484, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005970300175249577, \"Height\": 0.0025201099924743176, \"Left\": 0.33025532960891724, \"Top\": 0.2536860406398773}, \"Polygon\": [{\"X\": 0.33025532960891724, \"Y\": 0.2536860406398773}, {\"X\": 0.33622562885284424, \"Y\": 0.2536860406398773}, {\"X\": 0.33622562885284424, \"Y\": 0.2562061548233032}, {\"X\": 0.33025532960891724, \"Y\": 0.2562061548233032}]}, \"Id\": \"9a750883-bb96-4c14-9695-998dcdd93b22\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7435302734375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05348837003111839, \"Height\": 0.013087489642202854, \"Left\": 0.34001949429512024, \"Top\": 0.24647016823291779}, \"Polygon\": [{\"X\": 0.34001949429512024, \"Y\": 0.24647016823291779}, {\"X\": 0.39350786805152893, \"Y\": 0.24647016823291779}, {\"X\": 0.39350786805152893, \"Y\": 0.25955766439437866}, {\"X\": 0.34001949429512024, \"Y\": 0.25955766439437866}]}, \"Id\": \"a1d74cd7-3116-4f21-b346-2038cdc2f062\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.44287872314453, \"Text\": \"2.1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04509545862674713, \"Height\": 0.012553449720144272, \"Left\": 0.3990795910358429, \"Top\": 0.24686959385871887}, \"Polygon\": [{\"X\": 0.3990795910358429, \"Y\": 0.24686959385871887}, {\"X\": 0.4441750645637512, \"Y\": 0.24686959385871887}, {\"X\": 0.4441750645637512, \"Y\": 0.25942304730415344}, {\"X\": 0.3990795910358429, \"Y\": 0.25942304730415344}]}, \"Id\": \"ad1a45eb-1dfa-4f92-abfc-3f1c4a719718\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.80052185058594, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03674894943833351, \"Height\": 0.014970649965107441, \"Left\": 0.4726485013961792, \"Top\": 0.24829675257205963}, \"Polygon\": [{\"X\": 0.4726485013961792, \"Y\": 0.24829675257205963}, {\"X\": 0.5093974471092224, \"Y\": 0.24829675257205963}, {\"X\": 0.5093974471092224, \"Y\": 0.2632673978805542}, {\"X\": 0.4726485013961792, \"Y\": 0.2632673978805542}]}, \"Id\": \"d376f6ab-8e8d-4ad9-a4d5-ac950411a260\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.81621551513672, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009673469699919224, \"Height\": 0.010774140246212482, \"Left\": 0.5149784684181213, \"Top\": 0.24871826171875}, \"Polygon\": [{\"X\": 0.5149784684181213, \"Y\": 0.24871826171875}, {\"X\": 0.5246519446372986, \"Y\": 0.24871826171875}, {\"X\": 0.5246519446372986, \"Y\": 0.2594923973083496}, {\"X\": 0.5149784684181213, \"Y\": 0.2594923973083496}]}, \"Id\": \"ec60630a-dfe3-44a7-943b-dab84508ba9b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.93202209472656, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005800940096378326, \"Height\": 0.0025988600682467222, \"Left\": 0.5291537642478943, \"Top\": 0.25357601046562195}, \"Polygon\": [{\"X\": 0.5291537642478943, \"Y\": 0.25357601046562195}, {\"X\": 0.5349547266960144, \"Y\": 0.25357601046562195}, {\"X\": 0.5349547266960144, \"Y\": 0.25617486238479614}, {\"X\": 0.5291537642478943, \"Y\": 0.25617486238479614}]}, \"Id\": \"acbca14c-884f-4f36-9676-258af9becc22\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.816162109375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05327019840478897, \"Height\": 0.013158559799194336, \"Left\": 0.5385038256645203, \"Top\": 0.24666708707809448}, \"Polygon\": [{\"X\": 0.5385038256645203, \"Y\": 0.24666708707809448}, {\"X\": 0.5917739868164062, \"Y\": 0.24666708707809448}, {\"X\": 0.5917739868164062, \"Y\": 0.2598256468772888}, {\"X\": 0.5385038256645203, \"Y\": 0.2598256468772888}]}, \"Id\": \"00a84a76-0dbe-4183-afe6-1829cd273760\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37738800048828, \"Text\": \"2.1.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04464209824800491, \"Height\": 0.012484479695558548, \"Left\": 0.5977653861045837, \"Top\": 0.24691522121429443}, \"Polygon\": [{\"X\": 0.5977653861045837, \"Y\": 0.24691522121429443}, {\"X\": 0.6424074769020081, \"Y\": 0.24691522121429443}, {\"X\": 0.6424074769020081, \"Y\": 0.2593997120857239}, {\"X\": 0.5977653861045837, \"Y\": 0.2593997120857239}]}, \"Id\": \"6e191a43-84ea-48dd-97e6-f70a8fa9e8ef\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.30745697021484, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03867710009217262, \"Height\": 0.013913719914853573, \"Left\": 0.7065343260765076, \"Top\": 0.2485595941543579}, \"Polygon\": [{\"X\": 0.7065343260765076, \"Y\": 0.2485595941543579}, {\"X\": 0.7452114224433899, \"Y\": 0.2485595941543579}, {\"X\": 0.7452114224433899, \"Y\": 0.26247331500053406}, {\"X\": 0.7065343260765076, \"Y\": 0.26247331500053406}]}, \"Id\": \"adecebe0-bc57-40da-b427-2bc5d0fdb305\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25587463378906, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009286640211939812, \"Height\": 0.010863889940083027, \"Left\": 0.74998539686203, \"Top\": 0.24860309064388275}, \"Polygon\": [{\"X\": 0.74998539686203, \"Y\": 0.24860309064388275}, {\"X\": 0.759272038936615, \"Y\": 0.24860309064388275}, {\"X\": 0.759272038936615, \"Y\": 0.2594669759273529}, {\"X\": 0.74998539686203, \"Y\": 0.2594669759273529}]}, \"Id\": \"2889cff1-fa51-46c4-9e24-845492fb6055\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.17198944091797, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005747800227254629, \"Height\": 0.00241991993971169, \"Left\": 0.7643647193908691, \"Top\": 0.2537875473499298}, \"Polygon\": [{\"X\": 0.7643647193908691, \"Y\": 0.2537875473499298}, {\"X\": 0.7701125144958496, \"Y\": 0.2537875473499298}, {\"X\": 0.7701125144958496, \"Y\": 0.2562074661254883}, {\"X\": 0.7643647193908691, \"Y\": 0.2562074661254883}]}, \"Id\": \"10632c58-883b-4326-aa23-f66c89989623\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80500793457031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052368998527526855, \"Height\": 0.01290102954953909, \"Left\": 0.7743228673934937, \"Top\": 0.24672864377498627}, \"Polygon\": [{\"X\": 0.7743228673934937, \"Y\": 0.24672864377498627}, {\"X\": 0.8266918659210205, \"Y\": 0.24672864377498627}, {\"X\": 0.8266918659210205, \"Y\": 0.25962966680526733}, {\"X\": 0.7743228673934937, \"Y\": 0.25962966680526733}]}, \"Id\": \"125aa767-49f2-49f3-afe0-eab90397a180\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59932708740234, \"Text\": \"2.1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04544559866189957, \"Height\": 0.012692729942500591, \"Left\": 0.8331353068351746, \"Top\": 0.2467728704214096}, \"Polygon\": [{\"X\": 0.8331353068351746, \"Y\": 0.2467728704214096}, {\"X\": 0.8785809278488159, \"Y\": 0.2467728704214096}, {\"X\": 0.8785809278488159, \"Y\": 0.25946560502052307}, {\"X\": 0.8331353068351746, \"Y\": 0.25946560502052307}]}, \"Id\": \"8e9468a6-9e8d-46f4-b74b-64c83448e067\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49214935302734, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03874246031045914, \"Height\": 0.01579844020307064, \"Left\": 0.07479499280452728, \"Top\": 0.2697317898273468}, \"Polygon\": [{\"X\": 0.07479499280452728, \"Y\": 0.2697317898273468}, {\"X\": 0.11353745311498642, \"Y\": 0.2697317898273468}, {\"X\": 0.11353745311498642, \"Y\": 0.2855302393436432}, {\"X\": 0.07479499280452728, \"Y\": 0.2855302393436432}]}, \"Id\": \"75619d84-d779-4c24-b80c-fe6942b6422a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.77635192871094, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009206599555909634, \"Height\": 0.010757659561932087, \"Left\": 0.11787644773721695, \"Top\": 0.2706466615200043}, \"Polygon\": [{\"X\": 0.11787644773721695, \"Y\": 0.2706466615200043}, {\"X\": 0.12708304822444916, \"Y\": 0.2706466615200043}, {\"X\": 0.12708304822444916, \"Y\": 0.2814043164253235}, {\"X\": 0.11787644773721695, \"Y\": 0.2814043164253235}]}, \"Id\": \"4448161a-e0c5-4925-85da-d556f0df7dc6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.97042846679688, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005020080134272575, \"Height\": 0.0024374399799853563, \"Left\": 0.13249699771404266, \"Top\": 0.27590885758399963}, \"Polygon\": [{\"X\": 0.13249699771404266, \"Y\": 0.27590885758399963}, {\"X\": 0.1375170797109604, \"Y\": 0.27590885758399963}, {\"X\": 0.1375170797109604, \"Y\": 0.27834630012512207}, {\"X\": 0.13249699771404266, \"Y\": 0.27834630012512207}]}, \"Id\": \"e30eb34c-22e5-469d-848c-0777d8968774\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76937866210938, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052465468645095825, \"Height\": 0.012840479612350464, \"Left\": 0.1421274095773697, \"Top\": 0.26879435777664185}, \"Polygon\": [{\"X\": 0.1421274095773697, \"Y\": 0.26879435777664185}, {\"X\": 0.19459287822246552, \"Y\": 0.26879435777664185}, {\"X\": 0.19459287822246552, \"Y\": 0.2816348373889923}, {\"X\": 0.1421274095773697, \"Y\": 0.2816348373889923}]}, \"Id\": \"cfa2f8f1-51f4-4ed3-8c39-f42f27c56e97\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11649322509766, \"Text\": \"2.2.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04496853053569794, \"Height\": 0.013112779706716537, \"Left\": 0.20059257745742798, \"Top\": 0.2688124179840088}, \"Polygon\": [{\"X\": 0.20059257745742798, \"Y\": 0.2688124179840088}, {\"X\": 0.24556110799312592, \"Y\": 0.2688124179840088}, {\"X\": 0.24556110799312592, \"Y\": 0.2819252014160156}, {\"X\": 0.20059257745742798, \"Y\": 0.2819252014160156}]}, \"Id\": \"388782a7-0473-46f3-9e10-5ee0bd22d0f7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.74783325195312, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03797512874007225, \"Height\": 0.015249930322170258, \"Left\": 0.2734314501285553, \"Top\": 0.2698582708835602}, \"Polygon\": [{\"X\": 0.2734314501285553, \"Y\": 0.2698582708835602}, {\"X\": 0.31140658259391785, \"Y\": 0.2698582708835602}, {\"X\": 0.31140658259391785, \"Y\": 0.28510820865631104}, {\"X\": 0.2734314501285553, \"Y\": 0.28510820865631104}]}, \"Id\": \"6d0276ed-f483-496d-b7ac-d590ab9fc57f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80765533447266, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009172149933874607, \"Height\": 0.010944279842078686, \"Left\": 0.3160216510295868, \"Top\": 0.27052322030067444}, \"Polygon\": [{\"X\": 0.3160216510295868, \"Y\": 0.27052322030067444}, {\"X\": 0.3251937925815582, \"Y\": 0.27052322030067444}, {\"X\": 0.3251937925815582, \"Y\": 0.2814674973487854}, {\"X\": 0.3160216510295868, \"Y\": 0.2814674973487854}]}, \"Id\": \"eefacd71-7132-42df-ae6f-65676bbab02d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.3929443359375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005846879910677671, \"Height\": 0.0024735499173402786, \"Left\": 0.3303926885128021, \"Top\": 0.27581751346588135}, \"Polygon\": [{\"X\": 0.3303926885128021, \"Y\": 0.27581751346588135}, {\"X\": 0.3362395763397217, \"Y\": 0.27581751346588135}, {\"X\": 0.3362395763397217, \"Y\": 0.2782910466194153}, {\"X\": 0.3303926885128021, \"Y\": 0.2782910466194153}]}, \"Id\": \"1f28949e-e79d-4aee-ba01-c5bd0051eb65\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81636047363281, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052381351590156555, \"Height\": 0.012757539749145508, \"Left\": 0.3408379852771759, \"Top\": 0.2687523365020752}, \"Polygon\": [{\"X\": 0.3408379852771759, \"Y\": 0.2687523365020752}, {\"X\": 0.39321935176849365, \"Y\": 0.2687523365020752}, {\"X\": 0.39321935176849365, \"Y\": 0.2815098762512207}, {\"X\": 0.3408379852771759, \"Y\": 0.2815098762512207}]}, \"Id\": \"386c547e-0699-4b2c-a181-1f421a014f64\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32138061523438, \"Text\": \"2.2.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04503079876303673, \"Height\": 0.012707410380244255, \"Left\": 0.3991148769855499, \"Top\": 0.26900017261505127}, \"Polygon\": [{\"X\": 0.3991148769855499, \"Y\": 0.26900017261505127}, {\"X\": 0.44414567947387695, \"Y\": 0.26900017261505127}, {\"X\": 0.44414567947387695, \"Y\": 0.2817075848579407}, {\"X\": 0.3991148769855499, \"Y\": 0.2817075848579407}]}, \"Id\": \"a51f5233-3c83-46bf-ba6c-d6e8d16fc494\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.06269073486328, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037963058799505234, \"Height\": 0.013867929577827454, \"Left\": 0.4722763001918793, \"Top\": 0.27037549018859863}, \"Polygon\": [{\"X\": 0.4722763001918793, \"Y\": 0.27037549018859863}, {\"X\": 0.5102393627166748, \"Y\": 0.27037549018859863}, {\"X\": 0.5102393627166748, \"Y\": 0.2842434346675873}, {\"X\": 0.4722763001918793, \"Y\": 0.2842434346675873}]}, \"Id\": \"5eacbdaf-7544-493a-9a03-d783d597be0e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70536041259766, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00952985044568777, \"Height\": 0.010926499962806702, \"Left\": 0.5148593187332153, \"Top\": 0.2706063985824585}, \"Polygon\": [{\"X\": 0.5148593187332153, \"Y\": 0.2706063985824585}, {\"X\": 0.5243891477584839, \"Y\": 0.2706063985824585}, {\"X\": 0.5243891477584839, \"Y\": 0.2815329134464264}, {\"X\": 0.5148593187332153, \"Y\": 0.2815329134464264}]}, \"Id\": \"9227126d-af1b-44e8-8afb-9e9c0388eb1e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.59859466552734, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005771860014647245, \"Height\": 0.0024609901010990143, \"Left\": 0.5292177796363831, \"Top\": 0.2758493721485138}, \"Polygon\": [{\"X\": 0.5292177796363831, \"Y\": 0.2758493721485138}, {\"X\": 0.5349896550178528, \"Y\": 0.2758493721485138}, {\"X\": 0.5349896550178528, \"Y\": 0.2783103585243225}, {\"X\": 0.5292177796363831, \"Y\": 0.2783103585243225}]}, \"Id\": \"185e1b9f-02ae-49b8-ac69-0ee2ca64f48a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55180358886719, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05278056114912033, \"Height\": 0.013103500008583069, \"Left\": 0.539156436920166, \"Top\": 0.26858261227607727}, \"Polygon\": [{\"X\": 0.539156436920166, \"Y\": 0.26858261227607727}, {\"X\": 0.5919370055198669, \"Y\": 0.26858261227607727}, {\"X\": 0.5919370055198669, \"Y\": 0.28168609738349915}, {\"X\": 0.539156436920166, \"Y\": 0.28168609738349915}]}, \"Id\": \"ddff3ed6-31e4-4dfc-a6d3-77cf8f1630ed\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3131332397461, \"Text\": \"2.2.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04511839151382446, \"Height\": 0.012852439656853676, \"Left\": 0.5973682403564453, \"Top\": 0.2688724100589752}, \"Polygon\": [{\"X\": 0.5973682403564453, \"Y\": 0.2688724100589752}, {\"X\": 0.6424866318702698, \"Y\": 0.2688724100589752}, {\"X\": 0.6424866318702698, \"Y\": 0.28172484040260315}, {\"X\": 0.5973682403564453, \"Y\": 0.28172484040260315}]}, \"Id\": \"6e502795-60b6-4ffa-bb4a-81f9ed68b0ec\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.23764038085938, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03829555958509445, \"Height\": 0.014973379671573639, \"Left\": 0.7066991925239563, \"Top\": 0.2700114846229553}, \"Polygon\": [{\"X\": 0.7066991925239563, \"Y\": 0.2700114846229553}, {\"X\": 0.7449947595596313, \"Y\": 0.2700114846229553}, {\"X\": 0.7449947595596313, \"Y\": 0.28498485684394836}, {\"X\": 0.7066991925239563, \"Y\": 0.28498485684394836}]}, \"Id\": \"7b16cf0c-0ca7-4212-a1bf-e5496b5236b1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65850067138672, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009127429686486721, \"Height\": 0.010923960246145725, \"Left\": 0.7499082684516907, \"Top\": 0.2705315053462982}, \"Polygon\": [{\"X\": 0.7499082684516907, \"Y\": 0.2705315053462982}, {\"X\": 0.7590357065200806, \"Y\": 0.2705315053462982}, {\"X\": 0.7590357065200806, \"Y\": 0.28145545721054077}, {\"X\": 0.7499082684516907, \"Y\": 0.28145545721054077}]}, \"Id\": \"0a175941-5cfb-4087-8e42-434b18cdffed\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.7575454711914, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005638999864459038, \"Height\": 0.002318589948117733, \"Left\": 0.7643542289733887, \"Top\": 0.27595335245132446}, \"Polygon\": [{\"X\": 0.7643542289733887, \"Y\": 0.27595335245132446}, {\"X\": 0.7699931859970093, \"Y\": 0.27595335245132446}, {\"X\": 0.7699931859970093, \"Y\": 0.27827194333076477}, {\"X\": 0.7643542289733887, \"Y\": 0.27827194333076477}]}, \"Id\": \"c5eebc50-6ee6-49c0-a645-2fbd942ff3ac\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75348663330078, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05377214029431343, \"Height\": 0.013753769919276237, \"Left\": 0.7735174894332886, \"Top\": 0.2685427963733673}, \"Polygon\": [{\"X\": 0.7735174894332886, \"Y\": 0.2685427963733673}, {\"X\": 0.8272896409034729, \"Y\": 0.2685427963733673}, {\"X\": 0.8272896409034729, \"Y\": 0.2822965681552887}, {\"X\": 0.7735174894332886, \"Y\": 0.2822965681552887}]}, \"Id\": \"3e56254e-cd94-4a8e-b2bf-038d6b296f26\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53072357177734, \"Text\": \"2.2.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04557986184954643, \"Height\": 0.012767319567501545, \"Left\": 0.8329397439956665, \"Top\": 0.26893386244773865}, \"Polygon\": [{\"X\": 0.8329397439956665, \"Y\": 0.26893386244773865}, {\"X\": 0.878519594669342, \"Y\": 0.26893386244773865}, {\"X\": 0.878519594669342, \"Y\": 0.2817011773586273}, {\"X\": 0.8329397439956665, \"Y\": 0.2817011773586273}]}, \"Id\": \"ab66cb16-c439-4080-aead-31574a3da490\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08819580078125, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03792785480618477, \"Height\": 0.01369846984744072, \"Left\": 0.07525941729545593, \"Top\": 0.2926878333091736}, \"Polygon\": [{\"X\": 0.07525941729545593, \"Y\": 0.2926878333091736}, {\"X\": 0.113187275826931, \"Y\": 0.2926878333091736}, {\"X\": 0.113187275826931, \"Y\": 0.3063862919807434}, {\"X\": 0.07525941729545593, \"Y\": 0.3063862919807434}]}, \"Id\": \"89e32d06-d792-46cf-b09d-8ec532b5b10e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83625793457031, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00917007029056549, \"Height\": 0.010876069776713848, \"Left\": 0.11792057752609253, \"Top\": 0.29278773069381714}, \"Polygon\": [{\"X\": 0.11792057752609253, \"Y\": 0.29278773069381714}, {\"X\": 0.12709064781665802, \"Y\": 0.29278773069381714}, {\"X\": 0.12709064781665802, \"Y\": 0.30366379022598267}, {\"X\": 0.11792057752609253, \"Y\": 0.30366379022598267}]}, \"Id\": \"925f338f-e5d8-432f-b350-1d08bbe57035\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.85345458984375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00567894009873271, \"Height\": 0.0021971699316054583, \"Left\": 0.13193805515766144, \"Top\": 0.2980818450450897}, \"Polygon\": [{\"X\": 0.13193805515766144, \"Y\": 0.2980818450450897}, {\"X\": 0.13761700689792633, \"Y\": 0.2980818450450897}, {\"X\": 0.13761700689792633, \"Y\": 0.30027902126312256}, {\"X\": 0.13193805515766144, \"Y\": 0.30027902126312256}]}, \"Id\": \"e2d0ffe0-5b79-46fa-85e9-43a09741e1de\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79344177246094, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05269667133688927, \"Height\": 0.012868380174040794, \"Left\": 0.14235149323940277, \"Top\": 0.290689080953598}, \"Polygon\": [{\"X\": 0.14235149323940277, \"Y\": 0.290689080953598}, {\"X\": 0.19504816830158234, \"Y\": 0.290689080953598}, {\"X\": 0.19504816830158234, \"Y\": 0.30355745553970337}, {\"X\": 0.14235149323940277, \"Y\": 0.30355745553970337}]}, \"Id\": \"3a404f57-827b-4edc-b4f2-0951e9df5e0a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.08721923828125, \"Text\": \"2.3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04562433063983917, \"Height\": 0.012468639761209488, \"Left\": 0.2004472017288208, \"Top\": 0.29121214151382446}, \"Polygon\": [{\"X\": 0.2004472017288208, \"Y\": 0.29121214151382446}, {\"X\": 0.24607153236865997, \"Y\": 0.29121214151382446}, {\"X\": 0.24607153236865997, \"Y\": 0.30368077754974365}, {\"X\": 0.2004472017288208, \"Y\": 0.30368077754974365}]}, \"Id\": \"6dffd902-69f4-447d-ae85-8156ce69ac14\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.96405792236328, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03821796178817749, \"Height\": 0.0127545902505517, \"Left\": 0.2741442024707794, \"Top\": 0.29288408160209656}, \"Polygon\": [{\"X\": 0.2741442024707794, \"Y\": 0.29288408160209656}, {\"X\": 0.3123621642589569, \"Y\": 0.29288408160209656}, {\"X\": 0.3123621642589569, \"Y\": 0.3056386709213257}, {\"X\": 0.2741442024707794, \"Y\": 0.3056386709213257}]}, \"Id\": \"a77be656-c5cd-4ddf-ae44-799da7e59bb6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82113647460938, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009359749965369701, \"Height\": 0.011004200205206871, \"Left\": 0.3160589337348938, \"Top\": 0.29273220896720886}, \"Polygon\": [{\"X\": 0.3160589337348938, \"Y\": 0.29273220896720886}, {\"X\": 0.3254186809062958, \"Y\": 0.29273220896720886}, {\"X\": 0.3254186809062958, \"Y\": 0.3037363886833191}, {\"X\": 0.3160589337348938, \"Y\": 0.3037363886833191}]}, \"Id\": \"7a81d844-92eb-4359-94b4-28a4587d0419\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.33220672607422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005714649800211191, \"Height\": 0.0024782998953014612, \"Left\": 0.3303987681865692, \"Top\": 0.29794496297836304}, \"Polygon\": [{\"X\": 0.3303987681865692, \"Y\": 0.29794496297836304}, {\"X\": 0.33611342310905457, \"Y\": 0.29794496297836304}, {\"X\": 0.33611342310905457, \"Y\": 0.300423264503479}, {\"X\": 0.3303987681865692, \"Y\": 0.300423264503479}]}, \"Id\": \"aab362fb-4324-46cd-829e-a5bfc2634e72\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5924301147461, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05284256115555763, \"Height\": 0.013027160428464413, \"Left\": 0.34048953652381897, \"Top\": 0.2906530797481537}, \"Polygon\": [{\"X\": 0.34048953652381897, \"Y\": 0.2906530797481537}, {\"X\": 0.3933320939540863, \"Y\": 0.2906530797481537}, {\"X\": 0.3933320939540863, \"Y\": 0.3036802411079407}, {\"X\": 0.34048953652381897, \"Y\": 0.3036802411079407}]}, \"Id\": \"7126f3f8-6fb0-41ec-94e2-522cb29fb3fb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63024139404297, \"Text\": \"2.3.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04481640085577965, \"Height\": 0.012437039986252785, \"Left\": 0.3991944491863251, \"Top\": 0.2912312150001526}, \"Polygon\": [{\"X\": 0.3991944491863251, \"Y\": 0.2912312150001526}, {\"X\": 0.444010853767395, \"Y\": 0.2912312150001526}, {\"X\": 0.444010853767395, \"Y\": 0.3036682605743408}, {\"X\": 0.3991944491863251, \"Y\": 0.3036682605743408}]}, \"Id\": \"9683997c-ebda-4d79-a247-81802332eb54\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.52019500732422, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039544638246297836, \"Height\": 0.014214999973773956, \"Left\": 0.4715512990951538, \"Top\": 0.292256623506546}, \"Polygon\": [{\"X\": 0.4715512990951538, \"Y\": 0.292256623506546}, {\"X\": 0.5110959410667419, \"Y\": 0.292256623506546}, {\"X\": 0.5110959410667419, \"Y\": 0.3064716160297394}, {\"X\": 0.4715512990951538, \"Y\": 0.3064716160297394}]}, \"Id\": \"4b335649-0594-40cf-853a-c4a62b480d12\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79800415039062, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009374129585921764, \"Height\": 0.011047200299799442, \"Left\": 0.5149123668670654, \"Top\": 0.29269981384277344}, \"Polygon\": [{\"X\": 0.5149123668670654, \"Y\": 0.29269981384277344}, {\"X\": 0.5242865085601807, \"Y\": 0.29269981384277344}, {\"X\": 0.5242865085601807, \"Y\": 0.3037469983100891}, {\"X\": 0.5149123668670654, \"Y\": 0.3037469983100891}]}, \"Id\": \"2dff1a9a-9e9a-481f-8630-bb5445b3abdf\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.65547943115234, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00546415988355875, \"Height\": 0.002445799997076392, \"Left\": 0.5292814373970032, \"Top\": 0.29797258973121643}, \"Polygon\": [{\"X\": 0.5292814373970032, \"Y\": 0.29797258973121643}, {\"X\": 0.5347455739974976, \"Y\": 0.29797258973121643}, {\"X\": 0.5347455739974976, \"Y\": 0.3004184067249298}, {\"X\": 0.5292814373970032, \"Y\": 0.3004184067249298}]}, \"Id\": \"11f4a7ae-24ca-458c-acf7-a160bc043841\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82889556884766, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0532277412712574, \"Height\": 0.013158380053937435, \"Left\": 0.5384901165962219, \"Top\": 0.29060307145118713}, \"Polygon\": [{\"X\": 0.5384901165962219, \"Y\": 0.29060307145118713}, {\"X\": 0.5917178392410278, \"Y\": 0.29060307145118713}, {\"X\": 0.5917178392410278, \"Y\": 0.30376145243644714}, {\"X\": 0.5384901165962219, \"Y\": 0.30376145243644714}]}, \"Id\": \"a3cd391c-ba40-4a75-80ee-3d58685923e8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66878509521484, \"Text\": \"2.3.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04497785121202469, \"Height\": 0.012483219616115093, \"Left\": 0.5973872542381287, \"Top\": 0.2912292778491974}, \"Polygon\": [{\"X\": 0.5973872542381287, \"Y\": 0.2912292778491974}, {\"X\": 0.6423650979995728, \"Y\": 0.2912292778491974}, {\"X\": 0.6423650979995728, \"Y\": 0.30371248722076416}, {\"X\": 0.5973872542381287, \"Y\": 0.30371248722076416}]}, \"Id\": \"8c0a9f4f-0394-47f5-9cd0-a4fb19d76ff7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05699920654297, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038925640285015106, \"Height\": 0.01344287022948265, \"Left\": 0.7075167894363403, \"Top\": 0.29259204864501953}, \"Polygon\": [{\"X\": 0.7075167894363403, \"Y\": 0.29259204864501953}, {\"X\": 0.746442437171936, \"Y\": 0.29259204864501953}, {\"X\": 0.746442437171936, \"Y\": 0.3060349225997925}, {\"X\": 0.7075167894363403, \"Y\": 0.3060349225997925}]}, \"Id\": \"cf00ce65-7781-4884-b668-b121f88e31af\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8051528930664, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009411689825356007, \"Height\": 0.010993179865181446, \"Left\": 0.7498873472213745, \"Top\": 0.29272907972335815}, \"Polygon\": [{\"X\": 0.7498873472213745, \"Y\": 0.29272907972335815}, {\"X\": 0.7592990398406982, \"Y\": 0.29272907972335815}, {\"X\": 0.7592990398406982, \"Y\": 0.3037222623825073}, {\"X\": 0.7498873472213745, \"Y\": 0.3037222623825073}]}, \"Id\": \"ddc46a8d-3411-481f-b2d0-584981f70e4c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.65795135498047, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0056929998099803925, \"Height\": 0.0023579599801450968, \"Left\": 0.7642340064048767, \"Top\": 0.29800716042518616}, \"Polygon\": [{\"X\": 0.7642340064048767, \"Y\": 0.29800716042518616}, {\"X\": 0.7699270248413086, \"Y\": 0.29800716042518616}, {\"X\": 0.7699270248413086, \"Y\": 0.3003651201725006}, {\"X\": 0.7642340064048767, \"Y\": 0.3003651201725006}]}, \"Id\": \"1a44ba0f-a7b2-46bf-96f1-fff060f0b821\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73406219482422, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052789099514484406, \"Height\": 0.013477049767971039, \"Left\": 0.7740147113800049, \"Top\": 0.2904960513114929}, \"Polygon\": [{\"X\": 0.7740147113800049, \"Y\": 0.2904960513114929}, {\"X\": 0.8268038034439087, \"Y\": 0.2904960513114929}, {\"X\": 0.8268038034439087, \"Y\": 0.30397310853004456}, {\"X\": 0.7740147113800049, \"Y\": 0.30397310853004456}]}, \"Id\": \"bd1d44cb-5972-4111-ba20-92b956bfddf9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75968170166016, \"Text\": \"2.3.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04595790058374405, \"Height\": 0.0125983702018857, \"Left\": 0.8328381776809692, \"Top\": 0.2911728024482727}, \"Polygon\": [{\"X\": 0.8328381776809692, \"Y\": 0.2911728024482727}, {\"X\": 0.8787961006164551, \"Y\": 0.2911728024482727}, {\"X\": 0.8787961006164551, \"Y\": 0.30377116799354553}, {\"X\": 0.8328381776809692, \"Y\": 0.30377116799354553}]}, \"Id\": \"befa0f4e-5b85-44d4-abf5-d8198852bc37\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.23625183105469, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037513844668865204, \"Height\": 0.013660949654877186, \"Left\": 0.07557940483093262, \"Top\": 0.3150482475757599}, \"Polygon\": [{\"X\": 0.07557940483093262, \"Y\": 0.3150482475757599}, {\"X\": 0.11309324949979782, \"Y\": 0.3150482475757599}, {\"X\": 0.11309324949979782, \"Y\": 0.3287091851234436}, {\"X\": 0.07557940483093262, \"Y\": 0.3287091851234436}]}, \"Id\": \"3f6ca31a-9301-4b91-be6e-811e434c5196\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87828826904297, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009003030136227608, \"Height\": 0.01071481965482235, \"Left\": 0.11800438910722733, \"Top\": 0.3151758909225464}, \"Polygon\": [{\"X\": 0.11800438910722733, \"Y\": 0.3151758909225464}, {\"X\": 0.12700742483139038, \"Y\": 0.3151758909225464}, {\"X\": 0.12700742483139038, \"Y\": 0.3258907198905945}, {\"X\": 0.11800438910722733, \"Y\": 0.3258907198905945}]}, \"Id\": \"4e2b2430-9179-4d00-8df4-f34795aec3ae\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.970458984375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004670190159231424, \"Height\": 0.002278089988976717, \"Left\": 0.1325337141752243, \"Top\": 0.3203562796115875}, \"Polygon\": [{\"X\": 0.1325337141752243, \"Y\": 0.3203562796115875}, {\"X\": 0.1372039020061493, \"Y\": 0.3203562796115875}, {\"X\": 0.1372039020061493, \"Y\": 0.32263436913490295}, {\"X\": 0.1325337141752243, \"Y\": 0.32263436913490295}]}, \"Id\": \"e5a683f3-1c35-41a8-aec6-e3d4410663d0\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83657836914062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05231205001473427, \"Height\": 0.012754799798130989, \"Left\": 0.1422739028930664, \"Top\": 0.3133399188518524}, \"Polygon\": [{\"X\": 0.1422739028930664, \"Y\": 0.3133399188518524}, {\"X\": 0.19458594918251038, \"Y\": 0.3133399188518524}, {\"X\": 0.19458594918251038, \"Y\": 0.32609471678733826}, {\"X\": 0.1422739028930664, \"Y\": 0.32609471678733826}]}, \"Id\": \"68822bdf-7fb0-4b14-8cb1-60b3c7668a47\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69508361816406, \"Text\": \"2.4.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044255491346120834, \"Height\": 0.012312949635088444, \"Left\": 0.20070217549800873, \"Top\": 0.3135344684123993}, \"Polygon\": [{\"X\": 0.20070217549800873, \"Y\": 0.3135344684123993}, {\"X\": 0.24495767056941986, \"Y\": 0.3135344684123993}, {\"X\": 0.24495767056941986, \"Y\": 0.32584741711616516}, {\"X\": 0.20070217549800873, \"Y\": 0.32584741711616516}]}, \"Id\": \"7d61b15d-cd7f-445e-9425-cf35f04f8f27\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.21177673339844, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037800200283527374, \"Height\": 0.01365164015442133, \"Left\": 0.2738732099533081, \"Top\": 0.31501534581184387}, \"Polygon\": [{\"X\": 0.2738732099533081, \"Y\": 0.31501534581184387}, {\"X\": 0.3116734027862549, \"Y\": 0.31501534581184387}, {\"X\": 0.3116734027862549, \"Y\": 0.3286669850349426}, {\"X\": 0.2738732099533081, \"Y\": 0.3286669850349426}]}, \"Id\": \"68910322-267f-4bd2-a835-64b4d0f29878\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83570861816406, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00919291004538536, \"Height\": 0.010836959816515446, \"Left\": 0.3160867691040039, \"Top\": 0.31514960527420044}, \"Polygon\": [{\"X\": 0.3160867691040039, \"Y\": 0.31514960527420044}, {\"X\": 0.32527968287467957, \"Y\": 0.31514960527420044}, {\"X\": 0.32527968287467957, \"Y\": 0.3259865641593933}, {\"X\": 0.3160867691040039, \"Y\": 0.3259865641593933}]}, \"Id\": \"80f7bf9f-5ea5-4411-adff-3c04eb419d97\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.51795196533203, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005506909918040037, \"Height\": 0.0023180500138550997, \"Left\": 0.33057457208633423, \"Top\": 0.320438951253891}, \"Polygon\": [{\"X\": 0.33057457208633423, \"Y\": 0.320438951253891}, {\"X\": 0.33608147501945496, \"Y\": 0.320438951253891}, {\"X\": 0.33608147501945496, \"Y\": 0.3227570056915283}, {\"X\": 0.33057457208633423, \"Y\": 0.3227570056915283}]}, \"Id\": \"5dc14535-4682-480a-9be6-8ad300250b25\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83505249023438, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05212661996483803, \"Height\": 0.01280979998409748, \"Left\": 0.3411564230918884, \"Top\": 0.31321629881858826}, \"Polygon\": [{\"X\": 0.3411564230918884, \"Y\": 0.31321629881858826}, {\"X\": 0.39328303933143616, \"Y\": 0.31321629881858826}, {\"X\": 0.39328303933143616, \"Y\": 0.3260261118412018}, {\"X\": 0.3411564230918884, \"Y\": 0.3260261118412018}]}, \"Id\": \"3a6decc8-92e7-411b-bc46-e32d19a45102\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66650390625, \"Text\": \"2.4.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044776931405067444, \"Height\": 0.012285679578781128, \"Left\": 0.3992966115474701, \"Top\": 0.3136143684387207}, \"Polygon\": [{\"X\": 0.3992966115474701, \"Y\": 0.3136143684387207}, {\"X\": 0.44407352805137634, \"Y\": 0.3136143684387207}, {\"X\": 0.44407352805137634, \"Y\": 0.32590004801750183}, {\"X\": 0.3992966115474701, \"Y\": 0.32590004801750183}]}, \"Id\": \"f7bd0f20-69ae-43fc-a944-4af2774ae253\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.11239624023438, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03786816820502281, \"Height\": 0.013998780399560928, \"Left\": 0.4723489284515381, \"Top\": 0.31496286392211914}, \"Polygon\": [{\"X\": 0.4723489284515381, \"Y\": 0.31496286392211914}, {\"X\": 0.5102170705795288, \"Y\": 0.31496286392211914}, {\"X\": 0.5102170705795288, \"Y\": 0.32896164059638977}, {\"X\": 0.4723489284515381, \"Y\": 0.32896164059638977}]}, \"Id\": \"2a7de84d-41e1-4d53-ba4f-65971c583dff\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78553771972656, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009395170025527477, \"Height\": 0.010865559801459312, \"Left\": 0.5149189829826355, \"Top\": 0.3152051866054535}, \"Polygon\": [{\"X\": 0.5149189829826355, \"Y\": 0.3152051866054535}, {\"X\": 0.5243141651153564, \"Y\": 0.3152051866054535}, {\"X\": 0.5243141651153564, \"Y\": 0.32607075572013855}, {\"X\": 0.5149189829826355, \"Y\": 0.32607075572013855}]}, \"Id\": \"3a38900c-f918-4df8-8180-4c101797beee\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.00335693359375, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0054377601481974125, \"Height\": 0.002240049885585904, \"Left\": 0.5292466282844543, \"Top\": 0.32041195034980774}, \"Polygon\": [{\"X\": 0.5292466282844543, \"Y\": 0.32041195034980774}, {\"X\": 0.5346843600273132, \"Y\": 0.32041195034980774}, {\"X\": 0.5346843600273132, \"Y\": 0.32265201210975647}, {\"X\": 0.5292466282844543, \"Y\": 0.32265201210975647}]}, \"Id\": \"d25d8bf4-2120-40e6-b9d1-f33a127cd685\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67638397216797, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05280590057373047, \"Height\": 0.012892100028693676, \"Left\": 0.539074718952179, \"Top\": 0.3132396936416626}, \"Polygon\": [{\"X\": 0.539074718952179, \"Y\": 0.3132396936416626}, {\"X\": 0.5918806195259094, \"Y\": 0.3132396936416626}, {\"X\": 0.5918806195259094, \"Y\": 0.32613179087638855}, {\"X\": 0.539074718952179, \"Y\": 0.32613179087638855}]}, \"Id\": \"3682fb0a-ac05-4ac4-8d25-02d42b90e74f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65816497802734, \"Text\": \"2.4.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04465010017156601, \"Height\": 0.012506869621574879, \"Left\": 0.5977646112442017, \"Top\": 0.3136042654514313}, \"Polygon\": [{\"X\": 0.5977646112442017, \"Y\": 0.3136042654514313}, {\"X\": 0.6424146890640259, \"Y\": 0.3136042654514313}, {\"X\": 0.6424146890640259, \"Y\": 0.3261111378669739}, {\"X\": 0.5977646112442017, \"Y\": 0.3261111378669739}]}, \"Id\": \"41d3f386-e60f-4dc7-8773-71280511a017\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.03038787841797, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037816040217876434, \"Height\": 0.01384469959884882, \"Left\": 0.7075825929641724, \"Top\": 0.31492847204208374}, \"Polygon\": [{\"X\": 0.7075825929641724, \"Y\": 0.31492847204208374}, {\"X\": 0.7453986406326294, \"Y\": 0.31492847204208374}, {\"X\": 0.7453986406326294, \"Y\": 0.32877317070961}, {\"X\": 0.7075825929641724, \"Y\": 0.32877317070961}]}, \"Id\": \"39bede29-2941-4174-b054-53c46383017c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7965316772461, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009149559773504734, \"Height\": 0.010902469977736473, \"Left\": 0.7499951124191284, \"Top\": 0.31508132815361023}, \"Polygon\": [{\"X\": 0.7499951124191284, \"Y\": 0.31508132815361023}, {\"X\": 0.75914466381073, \"Y\": 0.31508132815361023}, {\"X\": 0.75914466381073, \"Y\": 0.32598379254341125}, {\"X\": 0.7499951124191284, \"Y\": 0.32598379254341125}]}, \"Id\": \"c4e9888d-e403-43ff-a358-665999b0896c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 93.91449737548828, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005276460200548172, \"Height\": 0.002162039978429675, \"Left\": 0.7644793391227722, \"Top\": 0.32051700353622437}, \"Polygon\": [{\"X\": 0.7644793391227722, \"Y\": 0.32051700353622437}, {\"X\": 0.7697557806968689, \"Y\": 0.32051700353622437}, {\"X\": 0.7697557806968689, \"Y\": 0.3226790428161621}, {\"X\": 0.7644793391227722, \"Y\": 0.3226790428161621}]}, \"Id\": \"c3140450-1eca-4188-915a-a66232187081\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.789794921875, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05324063077569008, \"Height\": 0.01346123032271862, \"Left\": 0.7740498781204224, \"Top\": 0.31325584650039673}, \"Polygon\": [{\"X\": 0.7740498781204224, \"Y\": 0.31325584650039673}, {\"X\": 0.8272905349731445, \"Y\": 0.31325584650039673}, {\"X\": 0.8272905349731445, \"Y\": 0.3267170786857605}, {\"X\": 0.7740498781204224, \"Y\": 0.3267170786857605}]}, \"Id\": \"11160e59-6a27-4f9b-ab4b-dd50ff0cee86\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72592163085938, \"Text\": \"2.4.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04577106982469559, \"Height\": 0.012381419539451599, \"Left\": 0.832953929901123, \"Top\": 0.3134864866733551}, \"Polygon\": [{\"X\": 0.832953929901123, \"Y\": 0.3134864866733551}, {\"X\": 0.878724992275238, \"Y\": 0.3134864866733551}, {\"X\": 0.878724992275238, \"Y\": 0.3258679211139679}, {\"X\": 0.832953929901123, \"Y\": 0.3258679211139679}]}, \"Id\": \"0332d490-84d3-44bf-b075-f3a952e7d230\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3166732788086, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03752028942108154, \"Height\": 0.013643980026245117, \"Left\": 0.0756092518568039, \"Top\": 0.33724677562713623}, \"Polygon\": [{\"X\": 0.0756092518568039, \"Y\": 0.33724677562713623}, {\"X\": 0.11312954127788544, \"Y\": 0.33724677562713623}, {\"X\": 0.11312954127788544, \"Y\": 0.35089075565338135}, {\"X\": 0.0756092518568039, \"Y\": 0.35089075565338135}]}, \"Id\": \"4f0b1b84-1303-481b-98e8-08fabee05e69\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89191436767578, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008858894929289818, \"Height\": 0.010778119787573814, \"Left\": 0.11808117479085922, \"Top\": 0.3373889923095703}, \"Polygon\": [{\"X\": 0.11808117479085922, \"Y\": 0.3373889923095703}, {\"X\": 0.1269400715827942, \"Y\": 0.3373889923095703}, {\"X\": 0.1269400715827942, \"Y\": 0.3481671214103699}, {\"X\": 0.11808117479085922, \"Y\": 0.3481671214103699}]}, \"Id\": \"550b194a-c2f9-4826-8ce8-8bbbef96b957\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.46170806884766, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00572192994877696, \"Height\": 0.0023507499136030674, \"Left\": 0.13188336789608002, \"Top\": 0.3425790071487427}, \"Polygon\": [{\"X\": 0.13188336789608002, \"Y\": 0.3425790071487427}, {\"X\": 0.13760529458522797, \"Y\": 0.3425790071487427}, {\"X\": 0.13760529458522797, \"Y\": 0.3449297547340393}, {\"X\": 0.13188336789608002, \"Y\": 0.3449297547340393}]}, \"Id\": \"2a33a507-71ef-4c64-bb53-d674328d7a1a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71353149414062, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05211146920919418, \"Height\": 0.012907859869301319, \"Left\": 0.14178189635276794, \"Top\": 0.3352903425693512}, \"Polygon\": [{\"X\": 0.14178189635276794, \"Y\": 0.3352903425693512}, {\"X\": 0.19389337301254272, \"Y\": 0.3352903425693512}, {\"X\": 0.19389337301254272, \"Y\": 0.34819820523262024}, {\"X\": 0.14178189635276794, \"Y\": 0.34819820523262024}]}, \"Id\": \"f639642c-eec1-40ca-8440-035bf276fb30\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.93863677978516, \"Text\": \"2.5.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04487663879990578, \"Height\": 0.012601779773831367, \"Left\": 0.2008173018693924, \"Top\": 0.3357608914375305}, \"Polygon\": [{\"X\": 0.2008173018693924, \"Y\": 0.3357608914375305}, {\"X\": 0.24569393694400787, \"Y\": 0.3357608914375305}, {\"X\": 0.24569393694400787, \"Y\": 0.34836268424987793}, {\"X\": 0.2008173018693924, \"Y\": 0.34836268424987793}]}, \"Id\": \"0e3594c0-7cb5-4fd7-b6b5-0e2d438c7c69\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1041259765625, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03833584114909172, \"Height\": 0.013326110318303108, \"Left\": 0.27404990792274475, \"Top\": 0.33731773495674133}, \"Polygon\": [{\"X\": 0.27404990792274475, \"Y\": 0.33731773495674133}, {\"X\": 0.3123857378959656, \"Y\": 0.33731773495674133}, {\"X\": 0.3123857378959656, \"Y\": 0.3506438434123993}, {\"X\": 0.27404990792274475, \"Y\": 0.3506438434123993}]}, \"Id\": \"ee5e40e9-2b05-4bfb-99ec-1736465782c1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76237487792969, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00925108976662159, \"Height\": 0.010887679643929005, \"Left\": 0.31606075167655945, \"Top\": 0.33727890253067017}, \"Polygon\": [{\"X\": 0.31606075167655945, \"Y\": 0.33727890253067017}, {\"X\": 0.3253118395805359, \"Y\": 0.33727890253067017}, {\"X\": 0.3253118395805359, \"Y\": 0.3481665849685669}, {\"X\": 0.31606075167655945, \"Y\": 0.3481665849685669}]}, \"Id\": \"738d4449-9f45-4856-b2cd-14a16dceb25b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.52119445800781, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005768029950559139, \"Height\": 0.00236364989541471, \"Left\": 0.3304196298122406, \"Top\": 0.34250882267951965}, \"Polygon\": [{\"X\": 0.3304196298122406, \"Y\": 0.34250882267951965}, {\"X\": 0.3361876606941223, \"Y\": 0.34250882267951965}, {\"X\": 0.3361876606941223, \"Y\": 0.34487247467041016}, {\"X\": 0.3304196298122406, \"Y\": 0.34487247467041016}]}, \"Id\": \"5018a705-e4fa-479a-833b-abbeac4b2d9f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.976318359375, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052502669394016266, \"Height\": 0.012730020098388195, \"Left\": 0.34053000807762146, \"Top\": 0.335245281457901}, \"Polygon\": [{\"X\": 0.34053000807762146, \"Y\": 0.335245281457901}, {\"X\": 0.39303267002105713, \"Y\": 0.335245281457901}, {\"X\": 0.39303267002105713, \"Y\": 0.34797531366348267}, {\"X\": 0.34053000807762146, \"Y\": 0.34797531366348267}]}, \"Id\": \"57be096b-f79a-4823-81b8-7caf5b7bec2f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56038665771484, \"Text\": \"2.5.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04500342160463333, \"Height\": 0.012461639940738678, \"Left\": 0.3992905020713806, \"Top\": 0.335763543844223}, \"Polygon\": [{\"X\": 0.3992905020713806, \"Y\": 0.335763543844223}, {\"X\": 0.44429391622543335, \"Y\": 0.335763543844223}, {\"X\": 0.44429391622543335, \"Y\": 0.3482251763343811}, {\"X\": 0.3992905020713806, \"Y\": 0.3482251763343811}]}, \"Id\": \"b6ccf81f-f3b2-466f-a15e-910bb2aa9ad9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.87674713134766, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039503131061792374, \"Height\": 0.013505309820175171, \"Left\": 0.47178444266319275, \"Top\": 0.33728691935539246}, \"Polygon\": [{\"X\": 0.47178444266319275, \"Y\": 0.33728691935539246}, {\"X\": 0.5112875699996948, \"Y\": 0.33728691935539246}, {\"X\": 0.5112875699996948, \"Y\": 0.3507922291755676}, {\"X\": 0.47178444266319275, \"Y\": 0.3507922291755676}]}, \"Id\": \"80881820-0737-41f9-be84-01cb90cdddcc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79766082763672, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009318900294601917, \"Height\": 0.010746040381491184, \"Left\": 0.515047013759613, \"Top\": 0.33734646439552307}, \"Polygon\": [{\"X\": 0.515047013759613, \"Y\": 0.33734646439552307}, {\"X\": 0.5243659019470215, \"Y\": 0.33734646439552307}, {\"X\": 0.5243659019470215, \"Y\": 0.3480924963951111}, {\"X\": 0.515047013759613, \"Y\": 0.3480924963951111}]}, \"Id\": \"1294d484-8d19-4a13-a533-e746f7576521\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.86931610107422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005591929890215397, \"Height\": 0.002247750060632825, \"Left\": 0.5290775299072266, \"Top\": 0.3425789773464203}, \"Polygon\": [{\"X\": 0.5290775299072266, \"Y\": 0.3425789773464203}, {\"X\": 0.5346694588661194, \"Y\": 0.3425789773464203}, {\"X\": 0.5346694588661194, \"Y\": 0.34482672810554504}, {\"X\": 0.5290775299072266, \"Y\": 0.34482672810554504}]}, \"Id\": \"8b2bc440-e927-465b-8704-24c186535b1a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8174819946289, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052261099219322205, \"Height\": 0.013095919974148273, \"Left\": 0.5395187735557556, \"Top\": 0.33523786067962646}, \"Polygon\": [{\"X\": 0.5395187735557556, \"Y\": 0.33523786067962646}, {\"X\": 0.591779887676239, \"Y\": 0.33523786067962646}, {\"X\": 0.591779887676239, \"Y\": 0.34833377599716187}, {\"X\": 0.5395187735557556, \"Y\": 0.34833377599716187}]}, \"Id\": \"c03dfc2e-cc4d-4ce4-98b9-60dd9c2c148f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64439392089844, \"Text\": \"2.5.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045194361358881, \"Height\": 0.01249643974006176, \"Left\": 0.5973420739173889, \"Top\": 0.33578628301620483}, \"Polygon\": [{\"X\": 0.5973420739173889, \"Y\": 0.33578628301620483}, {\"X\": 0.642536461353302, \"Y\": 0.33578628301620483}, {\"X\": 0.642536461353302, \"Y\": 0.34828272461891174}, {\"X\": 0.5973420739173889, \"Y\": 0.34828272461891174}]}, \"Id\": \"ddbc8536-91c7-4019-8fd8-4d6051a212fe\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3434066772461, \"Text\": \"Page\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03880409896373749, \"Height\": 0.012993570417165756, \"Left\": 0.7076103091239929, \"Top\": 0.3375595808029175}, \"Polygon\": [{\"X\": 0.7076103091239929, \"Y\": 0.3375595808029175}, {\"X\": 0.7464144229888916, \"Y\": 0.3375595808029175}, {\"X\": 0.7464144229888916, \"Y\": 0.35055315494537354}, {\"X\": 0.7076103091239929, \"Y\": 0.35055315494537354}]}, \"Id\": \"472d8d1c-1771-44e6-b803-8748d58925f0\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81965637207031, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009050630033016205, \"Height\": 0.010833430103957653, \"Left\": 0.7501046657562256, \"Top\": 0.3372668921947479}, \"Polygon\": [{\"X\": 0.7501046657562256, \"Y\": 0.3372668921947479}, {\"X\": 0.7591552734375, \"Y\": 0.3372668921947479}, {\"X\": 0.7591552734375, \"Y\": 0.34810033440589905}, {\"X\": 0.7501046657562256, \"Y\": 0.34810033440589905}]}, \"Id\": \"accd3325-60ee-44cd-bcd5-b662577f96de\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.45687103271484, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.005782399792224169, \"Height\": 0.0022636998910456896, \"Left\": 0.7641856074333191, \"Top\": 0.34259548783302307}, \"Polygon\": [{\"X\": 0.7641856074333191, \"Y\": 0.34259548783302307}, {\"X\": 0.7699679732322693, \"Y\": 0.34259548783302307}, {\"X\": 0.7699679732322693, \"Y\": 0.34485921263694763}, {\"X\": 0.7641856074333191, \"Y\": 0.34485921263694763}]}, \"Id\": \"b4a0048d-dc98-4f81-b124-1ccab677dfb1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 83.68342590332031, \"Text\": \"Value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052558720111846924, \"Height\": 0.012850739993155003, \"Left\": 0.774295449256897, \"Top\": 0.33519670367240906}, \"Polygon\": [{\"X\": 0.774295449256897, \"Y\": 0.33519670367240906}, {\"X\": 0.8268541693687439, \"Y\": 0.33519670367240906}, {\"X\": 0.8268541693687439, \"Y\": 0.3480474352836609}, {\"X\": 0.774295449256897, \"Y\": 0.3480474352836609}]}, \"Id\": \"edd72f54-9058-4487-a6c5-d5c0061a97f8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7026596069336, \"Text\": \"2.5.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04584670066833496, \"Height\": 0.012719309888780117, \"Left\": 0.8328281044960022, \"Top\": 0.33569422364234924}, \"Polygon\": [{\"X\": 0.8328281044960022, \"Y\": 0.33569422364234924}, {\"X\": 0.8786748051643372, \"Y\": 0.33569422364234924}, {\"X\": 0.8786748051643372, \"Y\": 0.34841352701187134}, {\"X\": 0.8328281044960022, \"Y\": 0.34841352701187134}]}, \"Id\": \"c77dee3a-f376-4ea0-8087-855c181a1053\", \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.96034240722656, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.9050774574279785, \"Height\": 0.11094175279140472, \"Left\": 0.06644244492053986, \"Top\": 0.2424079328775406}, \"Polygon\": [{\"X\": 0.06644244492053986, \"Y\": 0.2424079328775406}, {\"X\": 0.9715198874473572, \"Y\": 0.2424079328775406}, {\"X\": 0.9715198874473572, \"Y\": 0.3533496856689453}, {\"X\": 0.06644244492053986, \"Y\": 0.3533496856689453}]}, \"Id\": \"7910ed2d-cb58-4a24-a54e-128c08f3812d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6dfbb838-23f3-4feb-909e-163833978716\", \"b20e04a1-7570-4e3f-8a2c-9fde24d3d9a6\", \"4400e517-2c4a-468f-a1be-442b515f1b3a\", \"79f82e1c-405d-408b-8abd-2880814224af\", \"9dd18632-048d-451b-866b-9b6ecb3fb066\", \"712eae33-648c-406f-b7eb-19ff7b651a40\", \"0708892b-ac63-4003-a1d6-8153f4d10b0f\", \"38e058f8-a515-49c2-a4ce-de31bb3e5309\", \"b3c394e2-2c1d-4424-b71d-65f3a8ab4313\", \"45c75a26-45c7-47e5-9465-363be83e763b\", \"b34430ca-299b-42b4-8d0d-17bbb5611169\", \"093db7a7-be2b-41c3-8454-9cb8c0ea3224\", \"5a57b540-5fd8-4e47-b437-e055ce74f340\", \"6e8c43dd-da32-4a48-a1f6-c9bc5263677c\", \"6e33857c-9990-41ba-9a08-20e7f4c4ee29\", \"cafbc1bb-14cd-497c-83ef-cd00105e95c8\", \"1187fc19-8f46-419d-b69c-f14df46407f9\", \"789b7635-762e-4030-b66a-ce3747dd9813\", \"8e074b0b-53bb-40d3-9ee2-ee6073028543\", \"8ccef19d-bc47-45fa-9815-1da159ae72a9\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.17064666748047, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1987786889076233, \"Height\": 0.021655313670635223, \"Left\": 0.06644244492053986, \"Top\": 0.2424079328775406}, \"Polygon\": [{\"X\": 0.06644244492053986, \"Y\": 0.2424079328775406}, {\"X\": 0.26522114872932434, \"Y\": 0.2424079328775406}, {\"X\": 0.26522114872932434, \"Y\": 0.2640632390975952}, {\"X\": 0.06644244492053986, \"Y\": 0.2640632390975952}]}, \"Id\": \"6dfbb838-23f3-4feb-909e-163833978716\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"48c8410f-6729-4f0c-8059-b94327f5e154\", \"6ae57d2c-8b7f-461c-a2c5-a02766124979\", \"44d435bc-f057-4a6f-ba47-92df7efa19d7\", \"8f436112-da96-460c-9481-f9f76264bf0f\", \"d9ff4d10-82f8-483c-9071-a291c1206942\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.50445556640625, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19877870380878448, \"Height\": 0.021655313670635223, \"Left\": 0.26522114872932434, \"Top\": 0.2424079328775406}, \"Polygon\": [{\"X\": 0.26522114872932434, \"Y\": 0.2424079328775406}, {\"X\": 0.46399986743927, \"Y\": 0.2424079328775406}, {\"X\": 0.46399986743927, \"Y\": 0.2640632390975952}, {\"X\": 0.26522114872932434, \"Y\": 0.2640632390975952}]}, \"Id\": \"b20e04a1-7570-4e3f-8a2c-9fde24d3d9a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2104b27b-a8bc-4bc2-92de-fb8b76bb20c4\", \"5349d9d1-ec1a-431e-92c7-9a4fefe14b80\", \"9a750883-bb96-4c14-9695-998dcdd93b22\", \"a1d74cd7-3116-4f21-b346-2038cdc2f062\", \"ad1a45eb-1dfa-4f92-abfc-3f1c4a719718\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.96694946289062, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23472793400287628, \"Height\": 0.021655313670635223, \"Left\": 0.46399983763694763, \"Top\": 0.2424079328775406}, \"Polygon\": [{\"X\": 0.46399983763694763, \"Y\": 0.2424079328775406}, {\"X\": 0.6987277865409851, \"Y\": 0.2424079328775406}, {\"X\": 0.6987277865409851, \"Y\": 0.2640632390975952}, {\"X\": 0.46399983763694763, \"Y\": 0.2640632390975952}]}, \"Id\": \"4400e517-2c4a-468f-a1be-442b515f1b3a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d376f6ab-8e8d-4ad9-a4d5-ac950411a260\", \"ec60630a-dfe3-44a7-943b-dab84508ba9b\", \"acbca14c-884f-4f36-9676-258af9becc22\", \"00a84a76-0dbe-4183-afe6-1829cd273760\", \"6e191a43-84ea-48dd-97e6-f70a8fa9e8ef\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.14635467529297, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27279213070869446, \"Height\": 0.021655313670635223, \"Left\": 0.6987277865409851, \"Top\": 0.2424079328775406}, \"Polygon\": [{\"X\": 0.6987277865409851, \"Y\": 0.2424079328775406}, {\"X\": 0.971519947052002, \"Y\": 0.2424079328775406}, {\"X\": 0.971519947052002, \"Y\": 0.2640632390975952}, {\"X\": 0.6987277865409851, \"Y\": 0.2640632390975952}]}, \"Id\": \"79f82e1c-405d-408b-8abd-2880814224af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"adecebe0-bc57-40da-b427-2bc5d0fdb305\", \"2889cff1-fa51-46c4-9e24-845492fb6055\", \"10632c58-883b-4326-aa23-f66c89989623\", \"125aa767-49f2-49f3-afe0-eab90397a180\", \"8e9468a6-9e8d-46f4-b74b-64c83448e067\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.66307830810547, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1987786889076233, \"Height\": 0.022321615368127823, \"Left\": 0.06644244492053986, \"Top\": 0.2640632390975952}, \"Polygon\": [{\"X\": 0.06644244492053986, \"Y\": 0.2640632390975952}, {\"X\": 0.26522114872932434, \"Y\": 0.2640632390975952}, {\"X\": 0.26522114872932434, \"Y\": 0.28638485074043274}, {\"X\": 0.06644244492053986, \"Y\": 0.28638485074043274}]}, \"Id\": \"9dd18632-048d-451b-866b-9b6ecb3fb066\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"75619d84-d779-4c24-b80c-fe6942b6422a\", \"4448161a-e0c5-4925-85da-d556f0df7dc6\", \"e30eb34c-22e5-469d-848c-0777d8968774\", \"cfa2f8f1-51f4-4ed3-8c39-f42f27c56e97\", \"388782a7-0473-46f3-9e10-5ee0bd22d0f7\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.74401092529297, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19877870380878448, \"Height\": 0.022321615368127823, \"Left\": 0.26522114872932434, \"Top\": 0.2640632390975952}, \"Polygon\": [{\"X\": 0.26522114872932434, \"Y\": 0.2640632390975952}, {\"X\": 0.46399986743927, \"Y\": 0.2640632390975952}, {\"X\": 0.46399986743927, \"Y\": 0.28638485074043274}, {\"X\": 0.26522114872932434, \"Y\": 0.28638485074043274}]}, \"Id\": \"712eae33-648c-406f-b7eb-19ff7b651a40\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6d0276ed-f483-496d-b7ac-d590ab9fc57f\", \"eefacd71-7132-42df-ae6f-65676bbab02d\", \"1f28949e-e79d-4aee-ba01-c5bd0051eb65\", \"386c547e-0699-4b2c-a181-1f421a014f64\", \"a51f5233-3c83-46bf-ba6c-d6e8d16fc494\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.68985748291016, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23472793400287628, \"Height\": 0.022321615368127823, \"Left\": 0.46399983763694763, \"Top\": 0.2640632390975952}, \"Polygon\": [{\"X\": 0.46399983763694763, \"Y\": 0.2640632390975952}, {\"X\": 0.6987277865409851, \"Y\": 0.2640632390975952}, {\"X\": 0.6987277865409851, \"Y\": 0.28638485074043274}, {\"X\": 0.46399983763694763, \"Y\": 0.28638485074043274}]}, \"Id\": \"0708892b-ac63-4003-a1d6-8153f4d10b0f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5eacbdaf-7544-493a-9a03-d783d597be0e\", \"9227126d-af1b-44e8-8afb-9e9c0388eb1e\", \"185e1b9f-02ae-49b8-ac69-0ee2ca64f48a\", \"ddff3ed6-31e4-4dfc-a6d3-77cf8f1630ed\", \"6e502795-60b6-4ffa-bb4a-81f9ed68b0ec\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.37332916259766, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27279213070869446, \"Height\": 0.022321615368127823, \"Left\": 0.6987277865409851, \"Top\": 0.2640632390975952}, \"Polygon\": [{\"X\": 0.6987277865409851, \"Y\": 0.2640632390975952}, {\"X\": 0.971519947052002, \"Y\": 0.2640632390975952}, {\"X\": 0.971519947052002, \"Y\": 0.28638485074043274}, {\"X\": 0.6987277865409851, \"Y\": 0.28638485074043274}]}, \"Id\": \"38e058f8-a515-49c2-a4ce-de31bb3e5309\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b16cf0c-0ca7-4212-a1bf-e5496b5236b1\", \"0a175941-5cfb-4087-8e42-434b18cdffed\", \"c5eebc50-6ee6-49c0-a645-2fbd942ff3ac\", \"3e56254e-cd94-4a8e-b2bf-038d6b296f26\", \"ab66cb16-c439-4080-aead-31574a3da490\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.65885925292969, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1987786889076233, \"Height\": 0.022321615368127823, \"Left\": 0.06644244492053986, \"Top\": 0.2863848805427551}, \"Polygon\": [{\"X\": 0.06644244492053986, \"Y\": 0.2863848805427551}, {\"X\": 0.26522114872932434, \"Y\": 0.2863848805427551}, {\"X\": 0.26522114872932434, \"Y\": 0.30870649218559265}, {\"X\": 0.06644244492053986, \"Y\": 0.30870649218559265}]}, \"Id\": \"b3c394e2-2c1d-4424-b71d-65f3a8ab4313\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"89e32d06-d792-46cf-b09d-8ec532b5b10e\", \"925f338f-e5d8-432f-b350-1d08bbe57035\", \"e2d0ffe0-5b79-46fa-85e9-43a09741e1de\", \"3a404f57-827b-4edc-b4f2-0951e9df5e0a\", \"6dffd902-69f4-447d-ae85-8156ce69ac14\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.74080657958984, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19877870380878448, \"Height\": 0.022321615368127823, \"Left\": 0.26522114872932434, \"Top\": 0.2863848805427551}, \"Polygon\": [{\"X\": 0.26522114872932434, \"Y\": 0.2863848805427551}, {\"X\": 0.46399986743927, \"Y\": 0.2863848805427551}, {\"X\": 0.46399986743927, \"Y\": 0.30870649218559265}, {\"X\": 0.26522114872932434, \"Y\": 0.30870649218559265}]}, \"Id\": \"45c75a26-45c7-47e5-9465-363be83e763b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a77be656-c5cd-4ddf-ae44-799da7e59bb6\", \"7a81d844-92eb-4359-94b4-28a4587d0419\", \"aab362fb-4324-46cd-829e-a5bfc2634e72\", \"7126f3f8-6fb0-41ec-94e2-522cb29fb3fb\", \"9683997c-ebda-4d79-a247-81802332eb54\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.7680892944336, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23472793400287628, \"Height\": 0.022321615368127823, \"Left\": 0.46399983763694763, \"Top\": 0.2863848805427551}, \"Polygon\": [{\"X\": 0.46399983763694763, \"Y\": 0.2863848805427551}, {\"X\": 0.6987277865409851, \"Y\": 0.2863848805427551}, {\"X\": 0.6987277865409851, \"Y\": 0.30870649218559265}, {\"X\": 0.46399983763694763, \"Y\": 0.30870649218559265}]}, \"Id\": \"b34430ca-299b-42b4-8d0d-17bbb5611169\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4b335649-0594-40cf-853a-c4a62b480d12\", \"2dff1a9a-9e9a-481f-8630-bb5445b3abdf\", \"11f4a7ae-24ca-458c-acf7-a160bc043841\", \"a3cd391c-ba40-4a75-80ee-3d58685923e8\", \"8c0a9f4f-0394-47f5-9cd0-a4fb19d76ff7\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.35847473144531, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27279213070869446, \"Height\": 0.022321615368127823, \"Left\": 0.6987277865409851, \"Top\": 0.2863848805427551}, \"Polygon\": [{\"X\": 0.6987277865409851, \"Y\": 0.2863848805427551}, {\"X\": 0.971519947052002, \"Y\": 0.2863848805427551}, {\"X\": 0.971519947052002, \"Y\": 0.30870649218559265}, {\"X\": 0.6987277865409851, \"Y\": 0.30870649218559265}]}, \"Id\": \"093db7a7-be2b-41c3-8454-9cb8c0ea3224\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cf00ce65-7781-4884-b668-b121f88e31af\", \"ddc46a8d-3411-481f-b2d0-584981f70e4c\", \"1a44ba0f-a7b2-46bf-96f1-fff060f0b821\", \"bd1d44cb-5972-4111-ba20-92b956bfddf9\", \"befa0f4e-5b85-44d4-abf5-d8198852bc37\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.81633758544922, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1987786889076233, \"Height\": 0.022321615368127823, \"Left\": 0.06644244492053986, \"Top\": 0.30870649218559265}, \"Polygon\": [{\"X\": 0.06644244492053986, \"Y\": 0.30870649218559265}, {\"X\": 0.26522114872932434, \"Y\": 0.30870649218559265}, {\"X\": 0.26522114872932434, \"Y\": 0.3310281038284302}, {\"X\": 0.06644244492053986, \"Y\": 0.3310281038284302}]}, \"Id\": \"5a57b540-5fd8-4e47-b437-e055ce74f340\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f6ca31a-9301-4b91-be6e-811e434c5196\", \"4e2b2430-9179-4d00-8df4-f34795aec3ae\", \"e5a683f3-1c35-41a8-aec6-e3d4410663d0\", \"68822bdf-7fb0-4b14-8cb1-60b3c7668a47\", \"7d61b15d-cd7f-445e-9425-cf35f04f8f27\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.7585678100586, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19877870380878448, \"Height\": 0.022321615368127823, \"Left\": 0.26522114872932434, \"Top\": 0.30870649218559265}, \"Polygon\": [{\"X\": 0.26522114872932434, \"Y\": 0.30870649218559265}, {\"X\": 0.46399986743927, \"Y\": 0.30870649218559265}, {\"X\": 0.46399986743927, \"Y\": 0.3310281038284302}, {\"X\": 0.26522114872932434, \"Y\": 0.3310281038284302}]}, \"Id\": \"6e8c43dd-da32-4a48-a1f6-c9bc5263677c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"68910322-267f-4bd2-a835-64b4d0f29878\", \"80f7bf9f-5ea5-4411-adff-3c04eb419d97\", \"5dc14535-4682-480a-9be6-8ad300250b25\", \"3a6decc8-92e7-411b-bc46-e32d19a45102\", \"f7bd0f20-69ae-43fc-a944-4af2774ae253\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.7396240234375, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23472793400287628, \"Height\": 0.022321615368127823, \"Left\": 0.46399983763694763, \"Top\": 0.30870649218559265}, \"Polygon\": [{\"X\": 0.46399983763694763, \"Y\": 0.30870649218559265}, {\"X\": 0.6987277865409851, \"Y\": 0.30870649218559265}, {\"X\": 0.6987277865409851, \"Y\": 0.3310281038284302}, {\"X\": 0.46399983763694763, \"Y\": 0.3310281038284302}]}, \"Id\": \"6e33857c-9990-41ba-9a08-20e7f4c4ee29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2a7de84d-41e1-4d53-ba4f-65971c583dff\", \"3a38900c-f918-4df8-8180-4c101797beee\", \"d25d8bf4-2120-40e6-b9d1-f33a127cd685\", \"3682fb0a-ac05-4ac4-8d25-02d42b90e74f\", \"41d3f386-e60f-4dc7-8773-71280511a017\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.58053588867188, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27279213070869446, \"Height\": 0.022321615368127823, \"Left\": 0.6987277865409851, \"Top\": 0.30870649218559265}, \"Polygon\": [{\"X\": 0.6987277865409851, \"Y\": 0.30870649218559265}, {\"X\": 0.971519947052002, \"Y\": 0.30870649218559265}, {\"X\": 0.9715198874473572, \"Y\": 0.3310281038284302}, {\"X\": 0.6987277865409851, \"Y\": 0.3310281038284302}]}, \"Id\": \"cafbc1bb-14cd-497c-83ef-cd00105e95c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39bede29-2941-4174-b054-53c46383017c\", \"c4e9888d-e403-43ff-a358-665999b0896c\", \"c3140450-1eca-4188-915a-a66232187081\", \"11160e59-6a27-4f9b-ab4b-dd50ff0cee86\", \"0332d490-84d3-44bf-b075-f3a952e7d230\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.30326843261719, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1987786889076233, \"Height\": 0.02232159487903118, \"Left\": 0.06644244492053986, \"Top\": 0.3310281038284302}, \"Polygon\": [{\"X\": 0.06644244492053986, \"Y\": 0.3310281038284302}, {\"X\": 0.26522114872932434, \"Y\": 0.3310281038284302}, {\"X\": 0.26522114872932434, \"Y\": 0.3533496856689453}, {\"X\": 0.06644244492053986, \"Y\": 0.3533496856689453}]}, \"Id\": \"1187fc19-8f46-419d-b69c-f14df46407f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f0b1b84-1303-481b-98e8-08fabee05e69\", \"550b194a-c2f9-4826-8ce8-8bbbef96b957\", \"2a33a507-71ef-4c64-bb53-d674328d7a1a\", \"f639642c-eec1-40ca-8440-035bf276fb30\", \"0e3594c0-7cb5-4fd7-b6b5-0e2d438c7c69\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.48491668701172, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19877870380878448, \"Height\": 0.02232159487903118, \"Left\": 0.26522114872932434, \"Top\": 0.3310281038284302}, \"Polygon\": [{\"X\": 0.26522114872932434, \"Y\": 0.3310281038284302}, {\"X\": 0.46399986743927, \"Y\": 0.3310281038284302}, {\"X\": 0.46399986743927, \"Y\": 0.3533496856689453}, {\"X\": 0.26522114872932434, \"Y\": 0.3533496856689453}]}, \"Id\": \"789b7635-762e-4030-b66a-ce3747dd9813\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ee5e40e9-2b05-4bfb-99ec-1736465782c1\", \"738d4449-9f45-4856-b2cd-14a16dceb25b\", \"5018a705-e4fa-479a-833b-abbeac4b2d9f\", \"57be096b-f79a-4823-81b8-7caf5b7bec2f\", \"b6ccf81f-f3b2-466f-a15e-910bb2aa9ad9\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.86457824707031, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23472793400287628, \"Height\": 0.02232159487903118, \"Left\": 0.46399983763694763, \"Top\": 0.3310281038284302}, \"Polygon\": [{\"X\": 0.46399983763694763, \"Y\": 0.3310281038284302}, {\"X\": 0.6987277865409851, \"Y\": 0.3310281038284302}, {\"X\": 0.6987277865409851, \"Y\": 0.3533496856689453}, {\"X\": 0.46399983763694763, \"Y\": 0.3533496856689453}]}, \"Id\": \"8e074b0b-53bb-40d3-9ee2-ee6073028543\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"80881820-0737-41f9-be84-01cb90cdddcc\", \"1294d484-8d19-4a13-a533-e746f7576521\", \"8b2bc440-e927-465b-8704-24c186535b1a\", \"c03dfc2e-cc4d-4ce4-98b9-60dd9c2c148f\", \"ddbc8536-91c7-4019-8fd8-4d6051a212fe\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.52098083496094, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.27279213070869446, \"Height\": 0.02232159487903118, \"Left\": 0.6987277865409851, \"Top\": 0.3310281038284302}, \"Polygon\": [{\"X\": 0.6987277865409851, \"Y\": 0.3310281038284302}, {\"X\": 0.9715198874473572, \"Y\": 0.3310281038284302}, {\"X\": 0.9715198874473572, \"Y\": 0.3533496856689453}, {\"X\": 0.6987277865409851, \"Y\": 0.3533496856689453}]}, \"Id\": \"8ccef19d-bc47-45fa-9815-1da159ae72a9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"472d8d1c-1771-44e6-b803-8748d58925f0\", \"accd3325-60ee-44cd-bcd5-b662577f96de\", \"b4a0048d-dc98-4f81-b124-1ccab677dfb1\", \"edd72f54-9058-4487-a6c5-d5c0061a97f8\", \"c77dee3a-f376-4ea0-8087-855c181a1053\"]}], \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.76181030273438, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6985930800437927, \"Height\": 0.058126118034124374, \"Left\": 0.11779038608074188, \"Top\": 0.12793505191802979}, \"Polygon\": [{\"X\": 0.11779038608074188, \"Y\": 0.12793505191802979}, {\"X\": 0.8163834810256958, \"Y\": 0.12793505191802979}, {\"X\": 0.8163834810256958, \"Y\": 0.18606117367744446}, {\"X\": 0.11779038608074188, \"Y\": 0.18606117367744446}]}, \"Id\": \"f27f4911-ee5b-4209-9a14-8bd0fefa312d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c017f7b9-03ee-4b56-a2ef-d20382dffda8\", \"269f5f59-d730-4b56-a534-3034799048dc\", \"cdd2e989-84f0-4a59-a0fe-60fa2a54f45e\", \"027c405d-3780-4e77-8453-b374d86c0881\", \"792e3cb4-acd9-4b4a-9ef7-9c6f11578fd9\", \"4ed1dd74-86c4-4b6b-9ec0-654d5bd49efb\", \"268b939e-3709-4065-847c-2ba788600b2c\", \"6a8fa308-2212-4fbc-8cb6-7fe35bbf2d35\", \"eee18be4-3332-4189-8318-36733bd1e53b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 93.93006896972656, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2238864302635193, \"Height\": 0.019596802070736885, \"Left\": 0.11779038608074188, \"Top\": 0.12793505191802979}, \"Polygon\": [{\"X\": 0.11779038608074188, \"Y\": 0.12793505191802979}, {\"X\": 0.34167683124542236, \"Y\": 0.12793505191802979}, {\"X\": 0.34167683124542236, \"Y\": 0.14753185212612152}, {\"X\": 0.11779038608074188, \"Y\": 0.14753185212612152}]}, \"Id\": \"c017f7b9-03ee-4b56-a2ef-d20382dffda8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"21e211a9-3735-4be7-9848-c931cb98c2ea\", \"efae7fbc-976a-4b23-840c-9820ebe0ed56\", \"b494aa28-6486-40bd-b307-c0d73e4c07e4\", \"194a0890-baf9-4fd0-ac1f-896194b5d83c\", \"3ecff234-b276-4b33-bcdc-bb9929063548\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.31324768066406, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19021932780742645, \"Height\": 0.019596802070736885, \"Left\": 0.34167683124542236, \"Top\": 0.12793505191802979}, \"Polygon\": [{\"X\": 0.34167683124542236, \"Y\": 0.12793505191802979}, {\"X\": 0.53189617395401, \"Y\": 0.12793505191802979}, {\"X\": 0.53189617395401, \"Y\": 0.14753185212612152}, {\"X\": 0.34167683124542236, \"Y\": 0.14753185212612152}]}, \"Id\": \"269f5f59-d730-4b56-a534-3034799048dc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"53e6871d-01e1-4ebd-9cab-214c112c5040\", \"73572aef-bbfa-4c03-accb-d84f5fcad4b9\", \"061c8825-10b5-42be-b8a7-7c5ed6889742\", \"b370e734-d02f-4a5d-af84-180ccf7e95c3\", \"2ff71749-0162-417b-ad91-759e457d59e6\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.4607925415039, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2844872772693634, \"Height\": 0.019596802070736885, \"Left\": 0.53189617395401, \"Top\": 0.12793505191802979}, \"Polygon\": [{\"X\": 0.53189617395401, \"Y\": 0.12793505191802979}, {\"X\": 0.816383421421051, \"Y\": 0.12793505191802979}, {\"X\": 0.816383421421051, \"Y\": 0.14753185212612152}, {\"X\": 0.53189617395401, \"Y\": 0.14753185212612152}]}, \"Id\": \"cdd2e989-84f0-4a59-a0fe-60fa2a54f45e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8e9f4d3-532a-4216-96bc-97f77f3b5649\", \"6a1e21d3-e3e9-4ca4-9f25-705233c5be4f\", \"9dde5689-941a-4eee-af02-8c61e308fa7b\", \"06dfddad-dc23-450a-8162-0979ce1c36bf\", \"a23f464e-8def-418a-a178-87b9c303068e\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.73753356933594, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2238864302635193, \"Height\": 0.018932504579424858, \"Left\": 0.11779038608074188, \"Top\": 0.14753186702728271}, \"Polygon\": [{\"X\": 0.11779038608074188, \"Y\": 0.14753186702728271}, {\"X\": 0.34167683124542236, \"Y\": 0.14753186702728271}, {\"X\": 0.34167683124542236, \"Y\": 0.16646437346935272}, {\"X\": 0.11779038608074188, \"Y\": 0.16646437346935272}]}, \"Id\": \"027c405d-3780-4e77-8453-b374d86c0881\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"64dfce16-bb56-4215-a643-071154da8cbc\", \"0e2e879e-b89f-448a-8bd7-9fe9e79f741f\", \"cda930f5-165b-4fab-956f-1bfe62b0942c\", \"290b93f5-3e5f-411c-8519-b0838911af81\", \"960da10d-3e6d-4529-8406-82837d58b085\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.76879119873047, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19021932780742645, \"Height\": 0.018932504579424858, \"Left\": 0.34167683124542236, \"Top\": 0.14753186702728271}, \"Polygon\": [{\"X\": 0.34167683124542236, \"Y\": 0.14753186702728271}, {\"X\": 0.53189617395401, \"Y\": 0.14753186702728271}, {\"X\": 0.53189617395401, \"Y\": 0.16646437346935272}, {\"X\": 0.34167683124542236, \"Y\": 0.16646437346935272}]}, \"Id\": \"792e3cb4-acd9-4b4a-9ef7-9c6f11578fd9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f9b298db-3d82-413b-bcc9-53af28db792e\", \"7067f154-221b-4b20-9344-1632ae3c8424\", \"e2e0b206-2027-44e4-9e3e-a2bbc3aa5ae4\", \"07bf69b1-8d69-4e19-b673-a1485977db73\", \"eaf08e35-5729-4dbb-bb11-9af0ff9ffa47\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.70633697509766, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2844872772693634, \"Height\": 0.018932504579424858, \"Left\": 0.53189617395401, \"Top\": 0.14753186702728271}, \"Polygon\": [{\"X\": 0.53189617395401, \"Y\": 0.14753186702728271}, {\"X\": 0.816383421421051, \"Y\": 0.14753186702728271}, {\"X\": 0.816383421421051, \"Y\": 0.16646437346935272}, {\"X\": 0.53189617395401, \"Y\": 0.16646437346935272}]}, \"Id\": \"4ed1dd74-86c4-4b6b-9ec0-654d5bd49efb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"aa3bef43-7b8a-4217-aa70-7dc4de63326e\", \"3eabb3bd-28e4-492d-8d1a-a846de737815\", \"3791cc39-250b-4c7f-91a3-312bb91394ce\", \"10c2e224-7700-40ab-a36d-540e353023dd\", \"8371390a-648a-4ab2-818d-8cafddd44dd8\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 96.58226013183594, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2238864302635193, \"Height\": 0.01959681138396263, \"Left\": 0.11779038608074188, \"Top\": 0.16646435856819153}, \"Polygon\": [{\"X\": 0.11779038608074188, \"Y\": 0.16646435856819153}, {\"X\": 0.34167683124542236, \"Y\": 0.16646435856819153}, {\"X\": 0.34167683124542236, \"Y\": 0.18606117367744446}, {\"X\": 0.11779038608074188, \"Y\": 0.18606117367744446}]}, \"Id\": \"268b939e-3709-4065-847c-2ba788600b2c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4c24dc7f-6443-4e32-b457-d9c5af5945b7\", \"0d6009be-f4fe-4fc0-961f-328d54c7a3ae\", \"d08693d5-e358-46ec-9b3a-2e09a3de3992\", \"1635d391-1824-4243-9363-1b628abfadfb\", \"ab5e89d1-e5bd-4fe8-a258-218a37bcf617\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.47122192382812, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19021932780742645, \"Height\": 0.01959681138396263, \"Left\": 0.34167683124542236, \"Top\": 0.16646435856819153}, \"Polygon\": [{\"X\": 0.34167683124542236, \"Y\": 0.16646435856819153}, {\"X\": 0.53189617395401, \"Y\": 0.16646435856819153}, {\"X\": 0.53189617395401, \"Y\": 0.18606117367744446}, {\"X\": 0.34167683124542236, \"Y\": 0.18606117367744446}]}, \"Id\": \"6a8fa308-2212-4fbc-8cb6-7fe35bbf2d35\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28fe11c6-9d5b-46a5-9edf-2ea328065f60\", \"36e443c5-7f49-4e3c-b519-f1c817cf491d\", \"4177f8f4-2081-463f-84e7-024185ca2a78\", \"a3a48042-3b08-4aef-89a5-fa7bfb588eec\", \"50e78283-31bb-423c-855e-65d49b1bbdb8\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.6669692993164, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2844872772693634, \"Height\": 0.01959681138396263, \"Left\": 0.53189617395401, \"Top\": 0.16646435856819153}, \"Polygon\": [{\"X\": 0.53189617395401, \"Y\": 0.16646435856819153}, {\"X\": 0.816383421421051, \"Y\": 0.16646435856819153}, {\"X\": 0.816383421421051, \"Y\": 0.18606117367744446}, {\"X\": 0.53189617395401, \"Y\": 0.18606117367744446}]}, \"Id\": \"eee18be4-3332-4189-8318-36733bd1e53b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1f12d4bf-b117-4eae-b84c-5c722e7b565c\", \"24ea9c75-202c-49fc-aec2-cb52ca233fdd\", \"063ae755-b1e9-4683-b6cc-39276b52c65f\", \"35ebf6f8-2526-40fe-99ce-04c3b64d86a9\", \"736f3a1b-bf69-4bdf-9387-d635d4d7af33\"]}], \"Page\": 2}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"1795721e-78d4-47ba-9d3e-c5ac6f0037fa\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"1795721e-78d4-47ba-9d3e-c5ac6f0037fa\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"239125\", \"date\": \"Thu, 06 May 2021 20:58:01 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/gib_multi_tables_multi_page_sample.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 3}, \"JobStatus\": \"SUCCEEDED\", \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.000400237477151677, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.0005257856100797653}, {\"X\": 0.9995997548103333, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.9994742274284363}]}, \"Id\": \"9bfbb45f-c0b9-464d-bf68-cbb3ec6915aa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b30a4e21-3bc1-4470-adf1-ae159098a7e5\", \"1308e8d5-755f-4cf7-902f-d5f32e213045\", \"588a5356-c640-40c1-8926-63e56bdda41e\", \"82dd0ad6-3f9e-4bfc-8079-475f3236fdb9\", \"a7b9e62b-1cce-42ba-9dd4-62fe2e6ff60d\", \"809890c9-1be8-4251-8cbf-00ceb96541f0\", \"0fddcbaf-529e-425a-a191-e3624d0ec445\", \"d0e25bb0-8f45-4c91-8f8e-ff9dc9cd57f1\", \"661b4a26-e901-433d-9b55-d7e440c47037\", \"b9d9c437-7243-4294-a8e7-526175d088f6\", \"4894d2ba-0479-4196-9cbd-c0fea4d28762\", \"97a63c27-4fc4-490e-9efd-3dafa29e0079\", \"e445030d-9c67-4786-b918-afa23735dbc8\", \"07897c5a-df3e-4e36-aa44-27398d79c026\", \"13c55c7a-656d-455c-b9f2-539896bac5ea\", \"d6738d51-c3df-493f-a0d1-7fb2f5f7dd8b\", \"76fc8301-c6ba-4735-a0cd-26c0c7695350\", \"767a79d5-2b39-4015-86d8-b4c123c13f48\", \"e4637441-20d0-4032-a0d0-b4a2ab561c73\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.94975280761719, \"Text\": \"This is a test\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09039883315563202, \"Height\": 0.012123295105993748, \"Left\": 0.11696350574493408, \"Top\": 0.09391415119171143}, \"Polygon\": [{\"X\": 0.11723154038190842, \"Y\": 0.09391415119171143}, {\"X\": 0.2073623389005661, \"Y\": 0.09525132924318314}, {\"X\": 0.20709429681301117, \"Y\": 0.1060374453663826}, {\"X\": 0.11696350574493408, \"Y\": 0.10470027476549149}]}, \"Id\": \"b30a4e21-3bc1-4470-adf1-ae159098a7e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fce84e04-82bf-41b7-af8d-2cc1c85fa2d4\", \"5b167cb7-ba3b-4413-b8c4-e0a612b462a0\", \"1f4f9807-2b31-450a-b4b0-28c60411384a\", \"7aab73a9-7838-46e7-bb67-5a947c0f6759\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65319061279297, \"Text\": \"Table 1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05437193810939789, \"Height\": 0.01138316560536623, \"Left\": 0.11648466438055038, \"Top\": 0.7754037976264954}, \"Polygon\": [{\"X\": 0.11674758791923523, \"Y\": 0.7754037976264954}, {\"X\": 0.17085659503936768, \"Y\": 0.7762065529823303}, {\"X\": 0.17059367895126343, \"Y\": 0.7867869734764099}, {\"X\": 0.11648466438055038, \"Y\": 0.785984218120575}]}, \"Id\": \"1308e8d5-755f-4cf7-902f-d5f32e213045\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b57380e3-e707-42c6-bd61-71a8e79c7a41\", \"67182cd4-88d8-4bdc-84cb-3a3edae1e34d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88773345947266, \"Text\": \"Row1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040959183126688004, \"Height\": 0.012133519165217876, \"Left\": 0.1271905153989792, \"Top\": 0.8327863812446594}, \"Polygon\": [{\"X\": 0.1274770349264145, \"Y\": 0.8327863812446594}, {\"X\": 0.1681496948003769, \"Y\": 0.8333897590637207}, {\"X\": 0.1678631752729416, \"Y\": 0.8449198603630066}, {\"X\": 0.1271905153989792, \"Y\": 0.8443164825439453}]}, \"Id\": \"588a5356-c640-40c1-8926-63e56bdda41e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11dfc512-dd7c-405c-b4c5-218505b4ad8e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 94.79811096191406, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05145234242081642, \"Height\": 0.012839102186262608, \"Left\": 0.27896225452423096, \"Top\": 0.8323113918304443}, \"Polygon\": [{\"X\": 0.2792624533176422, \"Y\": 0.8323113918304443}, {\"X\": 0.3304145932197571, \"Y\": 0.8330702781677246}, {\"X\": 0.3301143944263458, \"Y\": 0.8451505303382874}, {\"X\": 0.27896225452423096, \"Y\": 0.8443916440010071}]}, \"Id\": \"82dd0ad6-3f9e-4bfc-8079-475f3236fdb9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fe4c0428-3162-459b-96ab-bab8ca1466b1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82137298583984, \"Text\": \"Row2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057870805263519, \"Height\": 0.011043025180697441, \"Left\": 0.12680980563163757, \"Top\": 0.8503602743148804}, \"Polygon\": [{\"X\": 0.127069354057312, \"Y\": 0.8503602743148804}, {\"X\": 0.16738851368427277, \"Y\": 0.8509584665298462}, {\"X\": 0.16712895035743713, \"Y\": 0.8614032864570618}, {\"X\": 0.12680980563163757, \"Y\": 0.8608051538467407}]}, \"Id\": \"a7b9e62b-1cce-42ba-9dd4-62fe2e6ff60d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1546013e-1a39-4bf5-ae1d-048821be79be\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 96.68659973144531, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050711557269096375, \"Height\": 0.013867169618606567, \"Left\": 0.2793285548686981, \"Top\": 0.8495529890060425}, \"Polygon\": [{\"X\": 0.2796545922756195, \"Y\": 0.8495529890060425}, {\"X\": 0.3300400972366333, \"Y\": 0.8503004908561707}, {\"X\": 0.3297140896320343, \"Y\": 0.8634201884269714}, {\"X\": 0.2793285548686981, \"Y\": 0.8626726269721985}]}, \"Id\": \"809890c9-1be8-4251-8cbf-00ceb96541f0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88434600830078, \"Text\": \"Row3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04029073938727379, \"Height\": 0.011043551377952099, \"Left\": 0.12695689499378204, \"Top\": 0.8679498434066772}, \"Polygon\": [{\"X\": 0.12721656262874603, \"Y\": 0.8679498434066772}, {\"X\": 0.16724762320518494, \"Y\": 0.8685437440872192}, {\"X\": 0.16698795557022095, \"Y\": 0.8789933919906616}, {\"X\": 0.12695689499378204, \"Y\": 0.8783994913101196}]}, \"Id\": \"0fddcbaf-529e-425a-a191-e3624d0ec445\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a82b262-e3e0-4dbe-aeee-83f644fd9e22\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 92.30506896972656, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051766179502010345, \"Height\": 0.01284286379814148, \"Left\": 0.2789941430091858, \"Top\": 0.8672682642936707}, \"Polygon\": [{\"X\": 0.27929434180259705, \"Y\": 0.8672682642936707}, {\"X\": 0.33076032996177673, \"Y\": 0.8680317997932434}, {\"X\": 0.33046016097068787, \"Y\": 0.8801111578941345}, {\"X\": 0.2789941430091858, \"Y\": 0.8793476223945618}]}, \"Id\": \"d0e25bb0-8f45-4c91-8f8e-ff9dc9cd57f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"08034517-396e-4ffd-ad39-c248932f5050\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.96064758300781, \"Text\": \"Row4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057518392801285, \"Height\": 0.010992870666086674, \"Left\": 0.12726719677448273, \"Top\": 0.8855724930763245}, \"Polygon\": [{\"X\": 0.12752550840377808, \"Y\": 0.8855724930763245}, {\"X\": 0.16784238815307617, \"Y\": 0.8861706852912903}, {\"X\": 0.16758407652378082, \"Y\": 0.8965653777122498}, {\"X\": 0.12726719677448273, \"Y\": 0.8959672451019287}]}, \"Id\": \"661b4a26-e901-433d-9b55-d7e440c47037\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ef8bd19c-2a40-427d-93ce-cdebfb3919cc\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 97.8868637084961, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050722748041152954, \"Height\": 0.013898242264986038, \"Left\": 0.2795186936855316, \"Top\": 0.8848941922187805}, \"Polygon\": [{\"X\": 0.2798455059528351, \"Y\": 0.8848941922187805}, {\"X\": 0.33024144172668457, \"Y\": 0.885641872882843}, {\"X\": 0.3299146592617035, \"Y\": 0.8987924456596375}, {\"X\": 0.2795186936855316, \"Y\": 0.898044764995575}]}, \"Id\": \"b9d9c437-7243-4294-a8e7-526175d088f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"611d80e9-835e-4819-b393-73015c209508\"]}], \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91342163085938, \"Text\": \"This\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03030039556324482, \"Height\": 0.011231677606701851, \"Left\": 0.11696350574493408, \"Top\": 0.09391415119171143}, \"Polygon\": [{\"X\": 0.11723154038190842, \"Y\": 0.09391415119171143}, {\"X\": 0.14726389944553375, \"Y\": 0.09435971081256866}, {\"X\": 0.14699585735797882, \"Y\": 0.10514583438634872}, {\"X\": 0.11696350574493408, \"Y\": 0.10470027476549149}]}, \"Id\": \"fce84e04-82bf-41b7-af8d-2cc1c85fa2d4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98242950439453, \"Text\": \"is\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011502022854983807, \"Height\": 0.010372092947363853, \"Left\": 0.15074943006038666, \"Top\": 0.09461034834384918}, \"Polygon\": [{\"X\": 0.15100303292274475, \"Y\": 0.09461034834384918}, {\"X\": 0.16225145757198334, \"Y\": 0.09477723389863968}, {\"X\": 0.16199785470962524, \"Y\": 0.10498244315385818}, {\"X\": 0.15074943006038666, \"Y\": 0.10481556504964828}]}, \"Id\": \"5b167cb7-ba3b-4413-b8c4-e0a612b462a0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94478607177734, \"Text\": \"a\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008565030060708523, \"Height\": 0.008241244591772556, \"Left\": 0.16605357825756073, \"Top\": 0.09673254936933517}, \"Polygon\": [{\"X\": 0.16625528037548065, \"Y\": 0.09673254936933517}, {\"X\": 0.17461860179901123, \"Y\": 0.09685663133859634}, {\"X\": 0.17441688477993011, \"Y\": 0.10497379302978516}, {\"X\": 0.16605357825756073, \"Y\": 0.10484971851110458}]}, \"Id\": \"1f4f9807-2b31-450a-b4b0-28c60411384a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95838165283203, \"Text\": \"test\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029635604470968246, \"Height\": 0.01048458181321621, \"Left\": 0.17772550880908966, \"Top\": 0.09486488997936249}, \"Polygon\": [{\"X\": 0.17797522246837616, \"Y\": 0.09486488997936249}, {\"X\": 0.2073611170053482, \"Y\": 0.09530086070299149}, {\"X\": 0.2071114033460617, \"Y\": 0.10534947365522385}, {\"X\": 0.17772550880908966, \"Y\": 0.10491351038217545}]}, \"Id\": \"7aab73a9-7838-46e7-bb67-5a947c0f6759\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83452606201172, \"Text\": \"Table\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0411611869931221, \"Height\": 0.011187171563506126, \"Left\": 0.11648466438055038, \"Top\": 0.7754037976264954}, \"Polygon\": [{\"X\": 0.11674758791923523, \"Y\": 0.7754037976264954}, {\"X\": 0.15764585137367249, \"Y\": 0.7760105729103088}, {\"X\": 0.15738292038440704, \"Y\": 0.7865909934043884}, {\"X\": 0.11648466438055038, \"Y\": 0.785984218120575}]}, \"Id\": \"b57380e3-e707-42c6-bd61-71a8e79c7a41\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47185516357422, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009038480930030346, \"Height\": 0.010187939740717411, \"Left\": 0.16181714832782745, \"Top\": 0.7761155962944031}, \"Polygon\": [{\"X\": 0.16206707060337067, \"Y\": 0.7761155962944031}, {\"X\": 0.17085562646389008, \"Y\": 0.7762459516525269}, {\"X\": 0.17060568928718567, \"Y\": 0.7863035202026367}, {\"X\": 0.16181714832782745, \"Y\": 0.7861731052398682}]}, \"Id\": \"67182cd4-88d8-4bdc-84cb-3a3edae1e34d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88773345947266, \"Text\": \"Row1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040959183126688004, \"Height\": 0.012133519165217876, \"Left\": 0.1271905153989792, \"Top\": 0.8327863812446594}, \"Polygon\": [{\"X\": 0.1274770349264145, \"Y\": 0.8327863812446594}, {\"X\": 0.1681496948003769, \"Y\": 0.8333897590637207}, {\"X\": 0.1678631752729416, \"Y\": 0.8449198603630066}, {\"X\": 0.1271905153989792, \"Y\": 0.8443164825439453}]}, \"Id\": \"11dfc512-dd7c-405c-b4c5-218505b4ad8e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 94.79811096191406, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05145234242081642, \"Height\": 0.012839102186262608, \"Left\": 0.27896225452423096, \"Top\": 0.8323113918304443}, \"Polygon\": [{\"X\": 0.2792624533176422, \"Y\": 0.8323113918304443}, {\"X\": 0.3304145932197571, \"Y\": 0.8330702781677246}, {\"X\": 0.3301143944263458, \"Y\": 0.8451505303382874}, {\"X\": 0.27896225452423096, \"Y\": 0.8443916440010071}]}, \"Id\": \"fe4c0428-3162-459b-96ab-bab8ca1466b1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82137298583984, \"Text\": \"Row2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057870805263519, \"Height\": 0.011043025180697441, \"Left\": 0.12680980563163757, \"Top\": 0.8503602743148804}, \"Polygon\": [{\"X\": 0.127069354057312, \"Y\": 0.8503602743148804}, {\"X\": 0.16738851368427277, \"Y\": 0.8509584665298462}, {\"X\": 0.16712895035743713, \"Y\": 0.8614032864570618}, {\"X\": 0.12680980563163757, \"Y\": 0.8608051538467407}]}, \"Id\": \"1546013e-1a39-4bf5-ae1d-048821be79be\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.68659973144531, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050711557269096375, \"Height\": 0.013867169618606567, \"Left\": 0.2793285548686981, \"Top\": 0.8495529890060425}, \"Polygon\": [{\"X\": 0.2796545922756195, \"Y\": 0.8495529890060425}, {\"X\": 0.3300400972366333, \"Y\": 0.8503004908561707}, {\"X\": 0.3297140896320343, \"Y\": 0.8634201884269714}, {\"X\": 0.2793285548686981, \"Y\": 0.8626726269721985}]}, \"Id\": \"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88434600830078, \"Text\": \"Row3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04029073938727379, \"Height\": 0.011043551377952099, \"Left\": 0.12695689499378204, \"Top\": 0.8679498434066772}, \"Polygon\": [{\"X\": 0.12721656262874603, \"Y\": 0.8679498434066772}, {\"X\": 0.16724762320518494, \"Y\": 0.8685437440872192}, {\"X\": 0.16698795557022095, \"Y\": 0.8789933919906616}, {\"X\": 0.12695689499378204, \"Y\": 0.8783994913101196}]}, \"Id\": \"6a82b262-e3e0-4dbe-aeee-83f644fd9e22\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 92.30506896972656, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051766179502010345, \"Height\": 0.01284286379814148, \"Left\": 0.2789941430091858, \"Top\": 0.8672682642936707}, \"Polygon\": [{\"X\": 0.27929434180259705, \"Y\": 0.8672682642936707}, {\"X\": 0.33076032996177673, \"Y\": 0.8680317997932434}, {\"X\": 0.33046016097068787, \"Y\": 0.8801111578941345}, {\"X\": 0.2789941430091858, \"Y\": 0.8793476223945618}]}, \"Id\": \"08034517-396e-4ffd-ad39-c248932f5050\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96064758300781, \"Text\": \"Row4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057518392801285, \"Height\": 0.010992870666086674, \"Left\": 0.12726719677448273, \"Top\": 0.8855724930763245}, \"Polygon\": [{\"X\": 0.12752550840377808, \"Y\": 0.8855724930763245}, {\"X\": 0.16784238815307617, \"Y\": 0.8861706852912903}, {\"X\": 0.16758407652378082, \"Y\": 0.8965653777122498}, {\"X\": 0.12726719677448273, \"Y\": 0.8959672451019287}]}, \"Id\": \"ef8bd19c-2a40-427d-93ce-cdebfb3919cc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.8868637084961, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050722748041152954, \"Height\": 0.013898242264986038, \"Left\": 0.2795186936855316, \"Top\": 0.8848941922187805}, \"Polygon\": [{\"X\": 0.2798455059528351, \"Y\": 0.8848941922187805}, {\"X\": 0.33024144172668457, \"Y\": 0.885641872882843}, {\"X\": 0.3299146592617035, \"Y\": 0.8987924456596375}, {\"X\": 0.2795186936855316, \"Y\": 0.898044764995575}]}, \"Id\": \"611d80e9-835e-4819-b393-73015c209508\", \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.88973236083984, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30756470561027527, \"Height\": 0.07569561898708344, \"Left\": 0.1173487976193428, \"Top\": 0.8275023698806763}, \"Polygon\": [{\"X\": 0.1191171184182167, \"Y\": 0.8275023698806763}, {\"X\": 0.4249134957790375, \"Y\": 0.8320391178131104}, {\"X\": 0.4231451749801636, \"Y\": 0.9031980037689209}, {\"X\": 0.1173487976193428, \"Y\": 0.898661196231842}]}, \"Id\": \"4894d2ba-0479-4196-9cbd-c0fea4d28762\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0f87aa6-785e-499c-97ce-45cd54e81e46\", \"37d4aa52-4dd1-4d75-a36c-45d11bf87ff9\", \"fba9ab24-25ee-44c8-94e8-b6fa5384045a\", \"9c55a617-03db-46ef-b88f-7bb15d63612a\", \"b3eb8a3c-9d15-470b-b484-2d4b1007edca\", \"95d42fcd-3df2-4695-ab93-866f075f878e\", \"79b64ab0-9743-4212-9fe6-a32a4ea93c29\", \"af448929-2e1e-499b-bbb0-c4fb9597a411\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 83.76207733154297, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15188688039779663, \"Height\": 0.019870350137352943, \"Left\": 0.11867917329072952, \"Top\": 0.8275023698806763}, \"Polygon\": [{\"X\": 0.1191171184182167, \"Y\": 0.8275023698806763}, {\"X\": 0.27056604623794556, \"Y\": 0.8297492861747742}, {\"X\": 0.2701281011104584, \"Y\": 0.8473727107048035}, {\"X\": 0.11867917329072952, \"Y\": 0.8451258540153503}]}, \"Id\": \"e0f87aa6-785e-499c-97ce-45cd54e81e46\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11dfc512-dd7c-405c-b4c5-218505b4ad8e\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 94.88778686523438, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547853797674179, \"Height\": 0.01991335116326809, \"Left\": 0.27012813091278076, \"Top\": 0.8297492861747742}, \"Polygon\": [{\"X\": 0.27056607604026794, \"Y\": 0.8297492861747742}, {\"X\": 0.4249134957790375, \"Y\": 0.8320391774177551}, {\"X\": 0.4244755506515503, \"Y\": 0.8496626019477844}, {\"X\": 0.27012813091278076, \"Y\": 0.8473727107048035}]}, \"Id\": \"37d4aa52-4dd1-4d75-a36c-45d11bf87ff9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fe4c0428-3162-459b-96ab-bab8ca1466b1\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.21428680419922, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15188688039779663, \"Height\": 0.019870350137352943, \"Left\": 0.11824122071266174, \"Top\": 0.8451257944107056}, \"Polygon\": [{\"X\": 0.11867917329072952, \"Y\": 0.8451257944107056}, {\"X\": 0.2701281011104584, \"Y\": 0.8473727107048035}, {\"X\": 0.2696901559829712, \"Y\": 0.8649961352348328}, {\"X\": 0.11824122071266174, \"Y\": 0.8627492785453796}]}, \"Id\": \"fba9ab24-25ee-44c8-94e8-b6fa5384045a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1546013e-1a39-4bf5-ae1d-048821be79be\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.70003509521484, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547853797674179, \"Height\": 0.01991335116326809, \"Left\": 0.2696901857852936, \"Top\": 0.8473727107048035}, \"Polygon\": [{\"X\": 0.27012813091278076, \"Y\": 0.8473727107048035}, {\"X\": 0.4244755506515503, \"Y\": 0.8496626019477844}, {\"X\": 0.4240376055240631, \"Y\": 0.8672860860824585}, {\"X\": 0.2696901857852936, \"Y\": 0.8649961948394775}]}, \"Id\": \"9c55a617-03db-46ef-b88f-7bb15d63612a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.45426177978516, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15188688039779663, \"Height\": 0.019870350137352943, \"Left\": 0.11780327558517456, \"Top\": 0.8627492785453796}, \"Polygon\": [{\"X\": 0.11824122816324234, \"Y\": 0.8627492785453796}, {\"X\": 0.2696901559829712, \"Y\": 0.8649961352348328}, {\"X\": 0.269252210855484, \"Y\": 0.8826196193695068}, {\"X\": 0.11780327558517456, \"Y\": 0.8803727030754089}]}, \"Id\": \"b3eb8a3c-9d15-470b-b484-2d4b1007edca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a82b262-e3e0-4dbe-aeee-83f644fd9e22\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.84454345703125, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547853797674179, \"Height\": 0.01991335116326809, \"Left\": 0.2692522406578064, \"Top\": 0.8649961352348328}, \"Polygon\": [{\"X\": 0.2696901857852936, \"Y\": 0.8649961352348328}, {\"X\": 0.4240376055240631, \"Y\": 0.8672860264778137}, {\"X\": 0.4235996603965759, \"Y\": 0.8849095106124878}, {\"X\": 0.2692522406578064, \"Y\": 0.8826196193695068}]}, \"Id\": \"95d42fcd-3df2-4695-ab93-866f075f878e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"08034517-396e-4ffd-ad39-c248932f5050\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.50825500488281, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1519034057855606, \"Height\": 0.02053534798324108, \"Left\": 0.1173488050699234, \"Top\": 0.8803727626800537}, \"Polygon\": [{\"X\": 0.11780327558517456, \"Y\": 0.8803727626800537}, {\"X\": 0.269252210855484, \"Y\": 0.8826196789741516}, {\"X\": 0.26879772543907166, \"Y\": 0.9009081125259399}, {\"X\": 0.1173488050699234, \"Y\": 0.898661196231842}]}, \"Id\": \"79b64ab0-9743-4212-9fe6-a32a4ea93c29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ef8bd19c-2a40-427d-93ce-cdebfb3919cc\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 73.1482162475586, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15480190515518188, \"Height\": 0.020578349009156227, \"Left\": 0.26879775524139404, \"Top\": 0.8826196789741516}, \"Polygon\": [{\"X\": 0.269252210855484, \"Y\": 0.8826196789741516}, {\"X\": 0.4235996603965759, \"Y\": 0.8849095702171326}, {\"X\": 0.42314520478248596, \"Y\": 0.9031980037689209}, {\"X\": 0.26879775524139404, \"Y\": 0.9009081125259399}]}, \"Id\": \"af448929-2e1e-499b-bbb0-c4fb9597a411\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"611d80e9-835e-4819-b393-73015c209508\"]}], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 38.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03106166608631611, \"Height\": 0.011229692958295345, \"Left\": 0.280687153339386, \"Top\": 0.8330909013748169}, \"Polygon\": [{\"X\": 0.28095486760139465, \"Y\": 0.8330909013748169}, {\"X\": 0.31174883246421814, \"Y\": 0.8335477709770203}, {\"X\": 0.3114811182022095, \"Y\": 0.8443205952644348}, {\"X\": 0.280687153339386, \"Y\": 0.8438637256622314}]}, \"Id\": \"97a63c27-4fc4-490e-9efd-3dafa29e0079\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e445030d-9c67-4786-b918-afa23735dbc8\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"fe4c0428-3162-459b-96ab-bab8ca1466b1\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 38.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009743972681462765, \"Height\": 0.009884046390652657, \"Left\": 0.3206232786178589, \"Top\": 0.833858847618103}, \"Polygon\": [{\"X\": 0.3208653926849365, \"Y\": 0.833858847618103}, {\"X\": 0.3303672671318054, \"Y\": 0.8339998126029968}, {\"X\": 0.3301251232624054, \"Y\": 0.843742847442627}, {\"X\": 0.3206232786178589, \"Y\": 0.8436018824577332}]}, \"Id\": \"e445030d-9c67-4786-b918-afa23735dbc8\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 36.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04079622030258179, \"Height\": 0.01292468886822462, \"Left\": 0.28063613176345825, \"Top\": 0.8501228094100952}, \"Polygon\": [{\"X\": 0.2809423804283142, \"Y\": 0.8501228094100952}, {\"X\": 0.32143235206604004, \"Y\": 0.8507235050201416}, {\"X\": 0.3211261034011841, \"Y\": 0.8630474805831909}, {\"X\": 0.28063613176345825, \"Y\": 0.8624467849731445}]}, \"Id\": \"07897c5a-df3e-4e36-aa44-27398d79c026\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"13c55c7a-656d-455c-b9f2-539896bac5ea\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 36.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01011290866881609, \"Height\": 0.01071246899664402, \"Left\": 0.3204089105129242, \"Top\": 0.8513528108596802}, \"Polygon\": [{\"X\": 0.3206714987754822, \"Y\": 0.8513528108596802}, {\"X\": 0.330521821975708, \"Y\": 0.8514989614486694}, {\"X\": 0.33025923371315, \"Y\": 0.862065315246582}, {\"X\": 0.3204089105129242, \"Y\": 0.8619191646575928}]}, \"Id\": \"13c55c7a-656d-455c-b9f2-539896bac5ea\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 34.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03632185980677605, \"Height\": 0.012207869440317154, \"Left\": 0.2807246148586273, \"Top\": 0.8683528900146484}, \"Polygon\": [{\"X\": 0.28101471066474915, \"Y\": 0.8683528900146484}, {\"X\": 0.31704646348953247, \"Y\": 0.8688874840736389}, {\"X\": 0.31675639748573303, \"Y\": 0.8805608153343201}, {\"X\": 0.2807246148586273, \"Y\": 0.8800262212753296}]}, \"Id\": \"d6738d51-c3df-493f-a0d1-7fb2f5f7dd8b\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"76fc8301-c6ba-4735-a0cd-26c0c7695350\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"08034517-396e-4ffd-ad39-c248932f5050\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 34.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010387061163783073, \"Height\": 0.010699293576180935, \"Left\": 0.321044385433197, \"Top\": 0.8691129684448242}, \"Polygon\": [{\"X\": 0.3213065266609192, \"Y\": 0.8691129684448242}, {\"X\": 0.33143144845962524, \"Y\": 0.8692631721496582}, {\"X\": 0.3311693072319031, \"Y\": 0.8798123002052307}, {\"X\": 0.321044385433197, \"Y\": 0.8796620965003967}]}, \"Id\": \"76fc8301-c6ba-4735-a0cd-26c0c7695350\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 24.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0325065441429615, \"Height\": 0.011595095507800579, \"Left\": 0.27988433837890625, \"Top\": 0.8859044909477234}, \"Polygon\": [{\"X\": 0.2801606059074402, \"Y\": 0.8859044909477234}, {\"X\": 0.31239086389541626, \"Y\": 0.8863826990127563}, {\"X\": 0.3121146261692047, \"Y\": 0.8974996209144592}, {\"X\": 0.27988433837890625, \"Y\": 0.897021472454071}]}, \"Id\": \"767a79d5-2b39-4015-86d8-b4c123c13f48\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e4637441-20d0-4032-a0d0-b4a2ab561c73\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"611d80e9-835e-4819-b393-73015c209508\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 24.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11696496605873108, \"Height\": 0.01724802702665329, \"Left\": 0.30474287271499634, \"Top\": 0.8834880590438843}, \"Polygon\": [{\"X\": 0.3051284849643707, \"Y\": 0.8834880590438843}, {\"X\": 0.4217078387737274, \"Y\": 0.8852176070213318}, {\"X\": 0.42132219672203064, \"Y\": 0.9007360935211182}, {\"X\": 0.30474287271499634, \"Y\": 0.8990064859390259}]}, \"Id\": \"e4637441-20d0-4032-a0d0-b4a2ab561c73\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"ee355be2-cd03-4cac-91d7-1f5fd4547869\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8d79bff3-295c-4030-8d90-8f20b7416fe5\", \"30807a5e-fdfb-449c-a24f-4f9c1248a660\", \"3a8b90a8-a6fc-4448-aac2-061c83831436\", \"c9760ac6-8ee9-4580-8d73-7a1e558c54d8\", \"b3142495-5e24-4db4-aae2-11714cd9469a\", \"accc9ae1-d07d-4777-942b-a667864c0b94\", \"c4e1af0c-cb1e-490b-9f07-290a3e3bb1ad\", \"a4a1531c-f8fb-4bb5-b829-55d5827657de\", \"41e9e280-c1f6-49bc-83c4-faf72d3bb97e\", \"462f6e95-7544-4c5e-87e6-b32f4266f01b\", \"69697498-3262-4b54-8806-9d5312656bd1\", \"8e01d373-ec7e-477d-92d5-45bedd5ae5e2\", \"b1f29d2f-5d8b-4d9c-8e47-2ff0285a3a77\", \"eafcfd6f-afa2-4179-a92b-6b2a74a7eda3\", \"1dc489cc-9322-4538-b72d-1949c398426c\", \"8b62cba6-191c-4a84-a1f0-33bcc7e70045\", \"f71ec5f6-a71f-4d86-adb5-568bbf9151ed\", \"1e4df697-eedd-48ad-b5f0-da524c1669d7\", \"5b5598f3-0068-4f10-97bb-8720dd963aca\", \"8bbc3f4f-0354-4999-a001-4585631bb7fe\", \"b5e061ec-05be-48d5-83fc-6719fdd4397a\", \"d205000f-4f25-4cf4-86aa-da486d7fe94c\", \"b8fe40f9-9409-4d8b-881b-798ad47558f4\", \"fdea44f1-98c2-499b-bcdf-e1125803b442\", \"31b5a194-b3a3-42d5-9d38-c799e25b7993\", \"9ba62b1e-56e5-4ff0-bb44-68857cee029a\", \"4abf59cf-e74a-44ac-ab09-b18f90aa3e93\", \"83efca41-a78b-4683-b9a5-4e55fac4f65a\", \"595abd47-37ad-4507-8671-a4df7dce8727\", \"5cd0dfaa-f65e-4ece-8e45-211710bf3dbb\", \"774eb534-bcc9-450b-bba6-29dda7a1e9ce\", \"f67bf240-5f9e-423f-a45e-8bef17c9350a\", \"1cd9cc72-430c-4ad7-b551-0843fb42abb1\", \"6d8399b6-1142-4a28-89f5-47624905156c\", \"c5ca2612-76a1-4cf8-8b91-f7f4235a618c\", \"480d9dc7-94c1-4942-bdbf-ccbc30af9483\", \"5e363bb0-3464-4d5f-9755-47054b130293\", \"5070b0ce-2bce-47ad-8a5e-eb13c45d993e\", \"fcb77abe-b63e-47ef-a578-67e32112c200\", \"ad95455b-09fc-4c57-baa8-32af40376e66\", \"c6050c59-580c-4e3d-b06f-6e9963357a57\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.93040466308594, \"Text\": \"Row5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040123794227838516, \"Height\": 0.009720906615257263, \"Left\": 0.1270298957824707, \"Top\": 0.09563247859477997}, \"Polygon\": [{\"X\": 0.1270298957824707, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.10535338521003723}, {\"X\": 0.1270298957824707, \"Y\": 0.10535338521003723}]}, \"Id\": \"8d79bff3-295c-4030-8d90-8f20b7416fe5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57572e8c-e006-4729-a744-071a2913a17b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.94255065917969, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04988139122724533, \"Height\": 0.011624237522482872, \"Left\": 0.27981695532798767, \"Top\": 0.09497342258691788}, \"Polygon\": [{\"X\": 0.27981695532798767, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.1065976545214653}, {\"X\": 0.27981695532798767, \"Y\": 0.1065976545214653}]}, \"Id\": \"30807a5e-fdfb-449c-a24f-4f9c1248a660\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63478fb4-f00d-48bc-a17e-c38c97827bab\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.95655059814453, \"Text\": \"Row6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04041338339447975, \"Height\": 0.009645976126194, \"Left\": 0.12708434462547302, \"Top\": 0.11311991512775421}, \"Polygon\": [{\"X\": 0.12708434462547302, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.12276589125394821}, {\"X\": 0.12708434462547302, \"Y\": 0.12276589125394821}]}, \"Id\": \"3a8b90a8-a6fc-4448-aac2-061c83831436\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.20793914794922, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04917134717106819, \"Height\": 0.011841125786304474, \"Left\": 0.2796783149242401, \"Top\": 0.11246911436319351}, \"Polygon\": [{\"X\": 0.2796783149242401, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.12431024014949799}, {\"X\": 0.2796783149242401, \"Y\": 0.12431024014949799}]}, \"Id\": \"c9760ac6-8ee9-4580-8d73-7a1e558c54d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f907df7-d511-47aa-9b37-a02e9d5b89fe\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.69717407226562, \"Text\": \"Row7\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04046971723437309, \"Height\": 0.009632812812924385, \"Left\": 0.12697625160217285, \"Top\": 0.13067635893821716}, \"Polygon\": [{\"X\": 0.12697625160217285, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.1403091698884964}, {\"X\": 0.12697625160217285, \"Y\": 0.1403091698884964}]}, \"Id\": \"b3142495-5e24-4db4-aae2-11714cd9469a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"287e484f-72af-4402-b4d6-5694e22f71ce\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 92.4416275024414, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04979715868830681, \"Height\": 0.011570983566343784, \"Left\": 0.2795606553554535, \"Top\": 0.1302001178264618}, \"Polygon\": [{\"X\": 0.2795606553554535, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1417710930109024}, {\"X\": 0.2795606553554535, \"Y\": 0.1417710930109024}]}, \"Id\": \"accc9ae1-d07d-4777-942b-a667864c0b94\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90674591064453, \"Text\": \"Row8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04012669250369072, \"Height\": 0.009689707309007645, \"Left\": 0.12716782093048096, \"Top\": 0.1482255607843399}, \"Polygon\": [{\"X\": 0.12716782093048096, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.15791526436805725}, {\"X\": 0.12716782093048096, \"Y\": 0.15791526436805725}]}, \"Id\": \"c4e1af0c-cb1e-490b-9f07-290a3e3bb1ad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4520624-da46-449a-8c5d-d1ff6760ed7a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 93.18978881835938, \"Text\": \"Col2 8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049434106796979904, \"Height\": 0.011289082467556, \"Left\": 0.27998238801956177, \"Top\": 0.14770057797431946}, \"Polygon\": [{\"X\": 0.27998238801956177, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.15898966789245605}, {\"X\": 0.27998238801956177, \"Y\": 0.15898966789245605}]}, \"Id\": \"a4a1531c-f8fb-4bb5-b829-55d5827657de\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9043c3f4-eefd-44ee-9863-15f8414bd0fc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83174133300781, \"Text\": \"Table 2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05320717394351959, \"Height\": 0.010385172441601753, \"Left\": 0.11726021021604538, \"Top\": 0.7515733242034912}, \"Polygon\": [{\"X\": 0.11726021021604538, \"Y\": 0.7515733242034912}, {\"X\": 0.17046739161014557, \"Y\": 0.7515733242034912}, {\"X\": 0.17046739161014557, \"Y\": 0.7619584798812866}, {\"X\": 0.11726021021604538, \"Y\": 0.7619584798812866}]}, \"Id\": \"41e9e280-c1f6-49bc-83c4-faf72d3bb97e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55ae1faf-5c76-4fb7-85f7-bb6598b455ad\", \"39382dfb-9f13-48db-91d4-c9e55fabf295\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88533020019531, \"Text\": \"Row1b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032783001661301, \"Height\": 0.01021028682589531, \"Left\": 0.12708768248558044, \"Top\": 0.8090674877166748}, \"Polygon\": [{\"X\": 0.12708768248558044, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8192777633666992}, {\"X\": 0.12708768248558044, \"Y\": 0.8192777633666992}]}, \"Id\": \"462f6e95-7544-4c5e-87e6-b32f4266f01b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"961c306d-398a-4454-9543-330ab9dfc6bd\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.90635681152344, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049399349838495255, \"Height\": 0.012244140729308128, \"Left\": 0.279590904712677, \"Top\": 0.8086855411529541}, \"Polygon\": [{\"X\": 0.279590904712677, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8209297060966492}, {\"X\": 0.279590904712677, \"Y\": 0.8209297060966492}]}, \"Id\": \"69697498-3262-4b54-8806-9d5312656bd1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63731384277344, \"Text\": \"Row2b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032414570450783, \"Height\": 0.010286783799529076, \"Left\": 0.126973956823349, \"Top\": 0.8265323042869568}, \"Polygon\": [{\"X\": 0.126973956823349, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8368191123008728}, {\"X\": 0.126973956823349, \"Y\": 0.8368191123008728}]}, \"Id\": \"8e01d373-ec7e-477d-92d5-45bedd5ae5e2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a7b36d1-e101-4473-a6be-7a7b3e9d4b61\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.07293701171875, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04959582909941673, \"Height\": 0.012468261644244194, \"Left\": 0.27947625517845154, \"Top\": 0.8259990215301514}, \"Polygon\": [{\"X\": 0.27947625517845154, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8384672999382019}, {\"X\": 0.27947625517845154, \"Y\": 0.8384672999382019}]}, \"Id\": \"b1f29d2f-5d8b-4d9c-8e47-2ff0285a3a77\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8224868774414, \"Text\": \"Row3b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04970686882734299, \"Height\": 0.010225260630249977, \"Left\": 0.12732942402362823, \"Top\": 0.8442525863647461}, \"Polygon\": [{\"X\": 0.12732942402362823, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8544778823852539}, {\"X\": 0.12732942402362823, \"Y\": 0.8544778823852539}]}, \"Id\": \"eafcfd6f-afa2-4179-a92b-6b2a74a7eda3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a25f0257-0bda-4b43-9109-22b748d9832c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 93.67516326904297, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05053584650158882, \"Height\": 0.012188313528895378, \"Left\": 0.2791886627674103, \"Top\": 0.8436267375946045}, \"Polygon\": [{\"X\": 0.2791886627674103, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8558149933815002}, {\"X\": 0.2791886627674103, \"Y\": 0.8558149933815002}]}, \"Id\": \"1dc489cc-9322-4538-b72d-1949c398426c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.9431381225586, \"Text\": \"Row4b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05011677369475365, \"Height\": 0.010186523199081421, \"Left\": 0.1272517591714859, \"Top\": 0.8617580533027649}, \"Polygon\": [{\"X\": 0.1272517591714859, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8719446063041687}, {\"X\": 0.1272517591714859, \"Y\": 0.8719446063041687}]}, \"Id\": \"8b62cba6-191c-4a84-a1f0-33bcc7e70045\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"312fa634-72be-4b16-9d11-d26c5fe704ed\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.51168060302734, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049513284116983414, \"Height\": 0.012050699442625046, \"Left\": 0.2797173261642456, \"Top\": 0.8614722490310669}, \"Polygon\": [{\"X\": 0.2797173261642456, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.873522937297821}, {\"X\": 0.2797173261642456, \"Y\": 0.873522937297821}]}, \"Id\": \"f71ec5f6-a71f-4d86-adb5-568bbf9151ed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83299056-9247-48a6-a6c2-51db9de923f9\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8187026977539, \"Text\": \"Row5b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05004899948835373, \"Height\": 0.01007918268442154, \"Left\": 0.12729330360889435, \"Top\": 0.8793925642967224}, \"Polygon\": [{\"X\": 0.12729330360889435, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8894717693328857}, {\"X\": 0.12729330360889435, \"Y\": 0.8894717693328857}]}, \"Id\": \"1e4df697-eedd-48ad-b5f0-da524c1669d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f273eb1e-2b7d-4387-accf-6be37f13b269\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 86.34605407714844, \"Text\": \"Col1 8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04926806315779686, \"Height\": 0.011909586377441883, \"Left\": 0.2798742949962616, \"Top\": 0.8788388967514038}, \"Polygon\": [{\"X\": 0.2798742949962616, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8907484412193298}, {\"X\": 0.2798742949962616, \"Y\": 0.8907484412193298}]}, \"Id\": \"5b5598f3-0068-4f10-97bb-8720dd963aca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\"]}], \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93040466308594, \"Text\": \"Row5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040123794227838516, \"Height\": 0.009720906615257263, \"Left\": 0.1270298957824707, \"Top\": 0.09563247859477997}, \"Polygon\": [{\"X\": 0.1270298957824707, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.10535338521003723}, {\"X\": 0.1270298957824707, \"Y\": 0.10535338521003723}]}, \"Id\": \"57572e8c-e006-4729-a744-071a2913a17b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.94255065917969, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04988139122724533, \"Height\": 0.011624237522482872, \"Left\": 0.27981695532798767, \"Top\": 0.09497342258691788}, \"Polygon\": [{\"X\": 0.27981695532798767, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.1065976545214653}, {\"X\": 0.27981695532798767, \"Y\": 0.1065976545214653}]}, \"Id\": \"63478fb4-f00d-48bc-a17e-c38c97827bab\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95655059814453, \"Text\": \"Row6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04041338339447975, \"Height\": 0.009645976126194, \"Left\": 0.12708434462547302, \"Top\": 0.11311991512775421}, \"Polygon\": [{\"X\": 0.12708434462547302, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.12276589125394821}, {\"X\": 0.12708434462547302, \"Y\": 0.12276589125394821}]}, \"Id\": \"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.20793914794922, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04917134717106819, \"Height\": 0.011841125786304474, \"Left\": 0.2796783149242401, \"Top\": 0.11246911436319351}, \"Polygon\": [{\"X\": 0.2796783149242401, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.12431024014949799}, {\"X\": 0.2796783149242401, \"Y\": 0.12431024014949799}]}, \"Id\": \"3f907df7-d511-47aa-9b37-a02e9d5b89fe\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.69717407226562, \"Text\": \"Row7\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04046971723437309, \"Height\": 0.009632812812924385, \"Left\": 0.12697625160217285, \"Top\": 0.13067635893821716}, \"Polygon\": [{\"X\": 0.12697625160217285, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.1403091698884964}, {\"X\": 0.12697625160217285, \"Y\": 0.1403091698884964}]}, \"Id\": \"287e484f-72af-4402-b4d6-5694e22f71ce\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 92.4416275024414, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04979715868830681, \"Height\": 0.011570983566343784, \"Left\": 0.2795606553554535, \"Top\": 0.1302001178264618}, \"Polygon\": [{\"X\": 0.2795606553554535, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1417710930109024}, {\"X\": 0.2795606553554535, \"Y\": 0.1417710930109024}]}, \"Id\": \"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90674591064453, \"Text\": \"Row8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04012669250369072, \"Height\": 0.009689707309007645, \"Left\": 0.12716782093048096, \"Top\": 0.1482255607843399}, \"Polygon\": [{\"X\": 0.12716782093048096, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.15791526436805725}, {\"X\": 0.12716782093048096, \"Y\": 0.15791526436805725}]}, \"Id\": \"b4520624-da46-449a-8c5d-d1ff6760ed7a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 93.18978881835938, \"Text\": \"Col2 8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049434106796979904, \"Height\": 0.011289082467556, \"Left\": 0.27998238801956177, \"Top\": 0.14770057797431946}, \"Polygon\": [{\"X\": 0.27998238801956177, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.15898966789245605}, {\"X\": 0.27998238801956177, \"Y\": 0.15898966789245605}]}, \"Id\": \"9043c3f4-eefd-44ee-9863-15f8414bd0fc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91995239257812, \"Text\": \"Table\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03991733491420746, \"Height\": 0.010385172441601753, \"Left\": 0.11726021021604538, \"Top\": 0.7515733242034912}, \"Polygon\": [{\"X\": 0.11726021021604538, \"Y\": 0.7515733242034912}, {\"X\": 0.15717755258083344, \"Y\": 0.7515733242034912}, {\"X\": 0.15717755258083344, \"Y\": 0.7619584798812866}, {\"X\": 0.11726021021604538, \"Y\": 0.7619584798812866}]}, \"Id\": \"55ae1faf-5c76-4fb7-85f7-bb6598b455ad\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74353790283203, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008835392072796822, \"Height\": 0.009949625469744205, \"Left\": 0.1616320013999939, \"Top\": 0.7519487142562866}, \"Polygon\": [{\"X\": 0.1616320013999939, \"Y\": 0.7519487142562866}, {\"X\": 0.17046739161014557, \"Y\": 0.7519487142562866}, {\"X\": 0.17046739161014557, \"Y\": 0.7618983387947083}, {\"X\": 0.1616320013999939, \"Y\": 0.7618983387947083}]}, \"Id\": \"39382dfb-9f13-48db-91d4-c9e55fabf295\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88533020019531, \"Text\": \"Row1b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032783001661301, \"Height\": 0.01021028682589531, \"Left\": 0.12708768248558044, \"Top\": 0.8090674877166748}, \"Polygon\": [{\"X\": 0.12708768248558044, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8192777633666992}, {\"X\": 0.12708768248558044, \"Y\": 0.8192777633666992}]}, \"Id\": \"961c306d-398a-4454-9543-330ab9dfc6bd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.90635681152344, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049399349838495255, \"Height\": 0.012244140729308128, \"Left\": 0.279590904712677, \"Top\": 0.8086855411529541}, \"Polygon\": [{\"X\": 0.279590904712677, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8209297060966492}, {\"X\": 0.279590904712677, \"Y\": 0.8209297060966492}]}, \"Id\": \"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63731384277344, \"Text\": \"Row2b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032414570450783, \"Height\": 0.010286783799529076, \"Left\": 0.126973956823349, \"Top\": 0.8265323042869568}, \"Polygon\": [{\"X\": 0.126973956823349, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8368191123008728}, {\"X\": 0.126973956823349, \"Y\": 0.8368191123008728}]}, \"Id\": \"9a7b36d1-e101-4473-a6be-7a7b3e9d4b61\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.07293701171875, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04959582909941673, \"Height\": 0.012468261644244194, \"Left\": 0.27947625517845154, \"Top\": 0.8259990215301514}, \"Polygon\": [{\"X\": 0.27947625517845154, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8384672999382019}, {\"X\": 0.27947625517845154, \"Y\": 0.8384672999382019}]}, \"Id\": \"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8224868774414, \"Text\": \"Row3b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04970686882734299, \"Height\": 0.010225260630249977, \"Left\": 0.12732942402362823, \"Top\": 0.8442525863647461}, \"Polygon\": [{\"X\": 0.12732942402362823, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8544778823852539}, {\"X\": 0.12732942402362823, \"Y\": 0.8544778823852539}]}, \"Id\": \"a25f0257-0bda-4b43-9109-22b748d9832c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 93.67516326904297, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05053584650158882, \"Height\": 0.012188313528895378, \"Left\": 0.2791886627674103, \"Top\": 0.8436267375946045}, \"Polygon\": [{\"X\": 0.2791886627674103, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8558149933815002}, {\"X\": 0.2791886627674103, \"Y\": 0.8558149933815002}]}, \"Id\": \"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9431381225586, \"Text\": \"Row4b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05011677369475365, \"Height\": 0.010186523199081421, \"Left\": 0.1272517591714859, \"Top\": 0.8617580533027649}, \"Polygon\": [{\"X\": 0.1272517591714859, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8719446063041687}, {\"X\": 0.1272517591714859, \"Y\": 0.8719446063041687}]}, \"Id\": \"312fa634-72be-4b16-9d11-d26c5fe704ed\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.51168060302734, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049513284116983414, \"Height\": 0.012050699442625046, \"Left\": 0.2797173261642456, \"Top\": 0.8614722490310669}, \"Polygon\": [{\"X\": 0.2797173261642456, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.873522937297821}, {\"X\": 0.2797173261642456, \"Y\": 0.873522937297821}]}, \"Id\": \"83299056-9247-48a6-a6c2-51db9de923f9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8187026977539, \"Text\": \"Row5b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05004899948835373, \"Height\": 0.01007918268442154, \"Left\": 0.12729330360889435, \"Top\": 0.8793925642967224}, \"Polygon\": [{\"X\": 0.12729330360889435, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8894717693328857}, {\"X\": 0.12729330360889435, \"Y\": 0.8894717693328857}]}, \"Id\": \"f273eb1e-2b7d-4387-accf-6be37f13b269\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 86.34605407714844, \"Text\": \"Col1 8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04926806315779686, \"Height\": 0.011909586377441883, \"Left\": 0.2798742949962616, \"Top\": 0.8788388967514038}, \"Polygon\": [{\"X\": 0.2798742949962616, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8907484412193298}, {\"X\": 0.2798742949962616, \"Y\": 0.8907484412193298}]}, \"Id\": \"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\", \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.85924530029297, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30584248900413513, \"Height\": 0.08837133646011353, \"Left\": 0.11849294602870941, \"Top\": 0.8050735592842102}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8934448957443237}, {\"X\": 0.11849294602870941, \"Y\": 0.8934448957443237}]}, \"Id\": \"8bbc3f4f-0354-4999-a001-4585631bb7fe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3ed74a67-865a-4eab-9d00-9c6494b2d8b7\", \"46cc3c0a-aba4-43b1-bfc7-85987e4b624d\", \"a3fa28eb-a8a7-4872-b273-89a4020c3288\", \"c8c1f3a9-abee-4881-b25e-301eb8668141\", \"5d25c7c2-05bc-4680-a11b-5700bc1a6e8f\", \"eb5fccde-3b16-440f-ad9d-a71bda8c9ef7\", \"56bb0e03-8d9b-4a01-ae9e-3e921ed161f3\", \"fa534006-0f9f-4363-95bc-a521612991a1\", \"28b82e78-67a3-4f10-ad82-3e950314cf7f\", \"f83cf1e2-4e8b-447f-ae0c-49cdf452cfef\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.06130981445312, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.017607828602194786, \"Left\": 0.11849294602870941, \"Top\": 0.8050735592842102}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8050735592842102}, {\"X\": 0.2692399322986603, \"Y\": 0.8050735592842102}, {\"X\": 0.2692399322986603, \"Y\": 0.8226813673973083}, {\"X\": 0.11849294602870941, \"Y\": 0.8226813673973083}]}, \"Id\": \"3ed74a67-865a-4eab-9d00-9c6494b2d8b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"961c306d-398a-4454-9543-330ab9dfc6bd\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.2547607421875, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.017607828602194786, \"Left\": 0.26923996210098267, \"Top\": 0.8050735592842102}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8226813673973083}, {\"X\": 0.26923996210098267, \"Y\": 0.8226813673973083}]}, \"Id\": \"46cc3c0a-aba4-43b1-bfc7-85987e4b624d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.40906524658203, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.018272217363119125, \"Left\": 0.11849294602870941, \"Top\": 0.8226813673973083}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8226813673973083}, {\"X\": 0.2692399322986603, \"Y\": 0.8226813673973083}, {\"X\": 0.2692399322986603, \"Y\": 0.8409535884857178}, {\"X\": 0.11849294602870941, \"Y\": 0.8409535884857178}]}, \"Id\": \"a3fa28eb-a8a7-4872-b273-89a4020c3288\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a7b36d1-e101-4473-a6be-7a7b3e9d4b61\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.21881103515625, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.018272217363119125, \"Left\": 0.26923996210098267, \"Top\": 0.8226813673973083}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8226813673973083}, {\"X\": 0.42433542013168335, \"Y\": 0.8226813673973083}, {\"X\": 0.42433542013168335, \"Y\": 0.8409535884857178}, {\"X\": 0.26923996210098267, \"Y\": 0.8409535884857178}]}, \"Id\": \"c8c1f3a9-abee-4881-b25e-301eb8668141\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.650146484375, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.017607828602194786, \"Left\": 0.11849294602870941, \"Top\": 0.8409535884857178}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8409535884857178}, {\"X\": 0.2692399322986603, \"Y\": 0.8409535884857178}, {\"X\": 0.2692399322986603, \"Y\": 0.8585613965988159}, {\"X\": 0.11849294602870941, \"Y\": 0.8585613965988159}]}, \"Id\": \"5d25c7c2-05bc-4680-a11b-5700bc1a6e8f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a25f0257-0bda-4b43-9109-22b748d9832c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.34754180908203, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.017607828602194786, \"Left\": 0.26923996210098267, \"Top\": 0.8409535884857178}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8409535884857178}, {\"X\": 0.42433542013168335, \"Y\": 0.8409535884857178}, {\"X\": 0.42433542013168335, \"Y\": 0.8585613965988159}, {\"X\": 0.26923996210098267, \"Y\": 0.8585613965988159}]}, \"Id\": \"eb5fccde-3b16-440f-ad9d-a71bda8c9ef7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.59342956542969, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.017607828602194786, \"Left\": 0.11849294602870941, \"Top\": 0.8585614562034607}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8585614562034607}, {\"X\": 0.2692399322986603, \"Y\": 0.8585614562034607}, {\"X\": 0.2692399322986603, \"Y\": 0.8761692643165588}, {\"X\": 0.11849294602870941, \"Y\": 0.8761692643165588}]}, \"Id\": \"56bb0e03-8d9b-4a01-ae9e-3e921ed161f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"312fa634-72be-4b16-9d11-d26c5fe704ed\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.52392578125, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.017607828602194786, \"Left\": 0.26923996210098267, \"Top\": 0.8585614562034607}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8585614562034607}, {\"X\": 0.42433542013168335, \"Y\": 0.8585614562034607}, {\"X\": 0.42433542013168335, \"Y\": 0.8761692643165588}, {\"X\": 0.26923996210098267, \"Y\": 0.8761692643165588}]}, \"Id\": \"fa534006-0f9f-4363-95bc-a521612991a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83299056-9247-48a6-a6c2-51db9de923f9\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.53343200683594, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.01727563515305519, \"Left\": 0.11849294602870941, \"Top\": 0.8761692643165588}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8761692643165588}, {\"X\": 0.2692399322986603, \"Y\": 0.8761692643165588}, {\"X\": 0.2692399322986603, \"Y\": 0.8934448957443237}, {\"X\": 0.11849294602870941, \"Y\": 0.8934448957443237}]}, \"Id\": \"28b82e78-67a3-4f10-ad82-3e950314cf7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f273eb1e-2b7d-4387-accf-6be37f13b269\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.83329772949219, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.01727563515305519, \"Left\": 0.26923996210098267, \"Top\": 0.8761692643165588}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8761692643165588}, {\"X\": 0.42433542013168335, \"Y\": 0.8761692643165588}, {\"X\": 0.42433542013168335, \"Y\": 0.8934448957443237}, {\"X\": 0.26923996210098267, \"Y\": 0.8934448957443237}]}, \"Id\": \"f83cf1e2-4e8b-447f-ae0c-49cdf452cfef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\"]}], \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.82941436767578, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3062293529510498, \"Height\": 0.07103625684976578, \"Left\": 0.11796987056732178, \"Top\": 0.09130068868398666}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.16233694553375244}, {\"X\": 0.11796987056732178, \"Y\": 0.16233694553375244}]}, \"Id\": \"b5e061ec-05be-48d5-83fc-6719fdd4397a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3c6a866-d57a-45e7-8f0b-242506006cf9\", \"09bc52d1-39f8-4bed-9cb2-fa5085382709\", \"8596ed02-5d59-460b-a340-ad8466580e55\", \"55e4c934-3251-4b95-8467-3f34aaa6129a\", \"b36859bc-3d0c-4aa8-8c1c-cece7b4d40ea\", \"45e2e454-d80d-4e62-9996-393dc74b1121\", \"254b1566-e826-49ff-bf6c-fde6afec1843\", \"97c55dd3-9f51-4076-9108-4a29e9c2e87f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.3082504272461, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.01759308949112892, \"Left\": 0.11796987056732178, \"Top\": 0.09130068868398666}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.09130068868398666}, {\"X\": 0.269619345664978, \"Y\": 0.09130068868398666}, {\"X\": 0.269619345664978, \"Y\": 0.10889377444982529}, {\"X\": 0.11796987056732178, \"Y\": 0.10889377444982529}]}, \"Id\": \"c3c6a866-d57a-45e7-8f0b-242506006cf9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57572e8c-e006-4729-a744-071a2913a17b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.64373779296875, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.01759308949112892, \"Left\": 0.26961931586265564, \"Top\": 0.09130068868398666}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.10889377444982529}, {\"X\": 0.26961931586265564, \"Y\": 0.10889377444982529}]}, \"Id\": \"09bc52d1-39f8-4bed-9cb2-fa5085382709\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63478fb4-f00d-48bc-a17e-c38c97827bab\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.72313690185547, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.01759308949112892, \"Left\": 0.11796987056732178, \"Top\": 0.10889378190040588}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.10889378190040588}, {\"X\": 0.269619345664978, \"Y\": 0.10889378190040588}, {\"X\": 0.269619345664978, \"Y\": 0.1264868676662445}, {\"X\": 0.11796987056732178, \"Y\": 0.1264868676662445}]}, \"Id\": \"8596ed02-5d59-460b-a340-ad8466580e55\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.54305267333984, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.01759308949112892, \"Left\": 0.26961931586265564, \"Top\": 0.10889378190040588}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.10889378190040588}, {\"X\": 0.4241992235183716, \"Y\": 0.10889378190040588}, {\"X\": 0.4241992235183716, \"Y\": 0.1264868676662445}, {\"X\": 0.26961931586265564, \"Y\": 0.1264868676662445}]}, \"Id\": \"55e4c934-3251-4b95-8467-3f34aaa6129a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f907df7-d511-47aa-9b37-a02e9d5b89fe\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.60491180419922, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.01759308949112892, \"Left\": 0.11796987056732178, \"Top\": 0.1264868676662445}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.1264868676662445}, {\"X\": 0.269619345664978, \"Y\": 0.1264868676662445}, {\"X\": 0.269619345664978, \"Y\": 0.14407995343208313}, {\"X\": 0.11796987056732178, \"Y\": 0.14407995343208313}]}, \"Id\": \"b36859bc-3d0c-4aa8-8c1c-cece7b4d40ea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"287e484f-72af-4402-b4d6-5694e22f71ce\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.60810852050781, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.01759308949112892, \"Left\": 0.26961931586265564, \"Top\": 0.1264868676662445}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.1264868676662445}, {\"X\": 0.4241992235183716, \"Y\": 0.1264868676662445}, {\"X\": 0.4241992235183716, \"Y\": 0.14407995343208313}, {\"X\": 0.26961931586265564, \"Y\": 0.14407995343208313}]}, \"Id\": \"45e2e454-d80d-4e62-9996-393dc74b1121\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.2337646484375, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.018256988376379013, \"Left\": 0.11796987056732178, \"Top\": 0.14407995343208313}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.14407995343208313}, {\"X\": 0.269619345664978, \"Y\": 0.14407995343208313}, {\"X\": 0.269619345664978, \"Y\": 0.16233694553375244}, {\"X\": 0.11796987056732178, \"Y\": 0.16233694553375244}]}, \"Id\": \"254b1566-e826-49ff-bf6c-fde6afec1843\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4520624-da46-449a-8c5d-d1ff6760ed7a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.28562927246094, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.018256988376379013, \"Left\": 0.26961931586265564, \"Top\": 0.14407995343208313}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.14407995343208313}, {\"X\": 0.4241992235183716, \"Y\": 0.14407995343208313}, {\"X\": 0.4241992235183716, \"Y\": 0.16233694553375244}, {\"X\": 0.26961931586265564, \"Y\": 0.16233694553375244}]}, \"Id\": \"97c55dd3-9f51-4076-9108-4a29e9c2e87f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9043c3f4-eefd-44ee-9863-15f8414bd0fc\"]}], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 70.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04080376774072647, \"Height\": 0.012146667577326298, \"Left\": 0.1275845319032669, \"Top\": 0.14723552763462067}, \"Polygon\": [{\"X\": 0.1275845319032669, \"Y\": 0.14723552763462067}, {\"X\": 0.16838829219341278, \"Y\": 0.14723552763462067}, {\"X\": 0.16838829219341278, \"Y\": 0.15938220918178558}, {\"X\": 0.1275845319032669, \"Y\": 0.15938220918178558}]}, \"Id\": \"d205000f-4f25-4cf4-86aa-da486d7fe94c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"b8fe40f9-9409-4d8b-881b-798ad47558f4\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b4520624-da46-449a-8c5d-d1ff6760ed7a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 70.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051009856164455414, \"Height\": 0.013037841767072678, \"Left\": 0.2793886661529541, \"Top\": 0.14748966693878174}, \"Polygon\": [{\"X\": 0.2793886661529541, \"Y\": 0.14748966693878174}, {\"X\": 0.3303985297679901, \"Y\": 0.14748966693878174}, {\"X\": 0.3303985297679901, \"Y\": 0.16052751243114471}, {\"X\": 0.2793886661529541, \"Y\": 0.16052751243114471}]}, \"Id\": \"b8fe40f9-9409-4d8b-881b-798ad47558f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9043c3f4-eefd-44ee-9863-15f8414bd0fc\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 64.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04149603471159935, \"Height\": 0.012072814628481865, \"Left\": 0.12697917222976685, \"Top\": 0.12986759841442108}, \"Polygon\": [{\"X\": 0.12697917222976685, \"Y\": 0.12986759841442108}, {\"X\": 0.1684751957654953, \"Y\": 0.12986759841442108}, {\"X\": 0.1684751957654953, \"Y\": 0.1419404149055481}, {\"X\": 0.12697917222976685, \"Y\": 0.1419404149055481}]}, \"Id\": \"fdea44f1-98c2-499b-bcdf-e1125803b442\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"31b5a194-b3a3-42d5-9d38-c799e25b7993\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"287e484f-72af-4402-b4d6-5694e22f71ce\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 64.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04902755469083786, \"Height\": 0.011648702435195446, \"Left\": 0.28054115176200867, \"Top\": 0.13007806241512299}, \"Polygon\": [{\"X\": 0.28054115176200867, \"Y\": 0.13007806241512299}, {\"X\": 0.3295687139034271, \"Y\": 0.13007806241512299}, {\"X\": 0.3295687139034271, \"Y\": 0.1417267620563507}, {\"X\": 0.28054115176200867, \"Y\": 0.1417267620563507}]}, \"Id\": \"31b5a194-b3a3-42d5-9d38-c799e25b7993\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 58.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04198792204260826, \"Height\": 0.010439880192279816, \"Left\": 0.12652923166751862, \"Top\": 0.11325248330831528}, \"Polygon\": [{\"X\": 0.12652923166751862, \"Y\": 0.11325248330831528}, {\"X\": 0.16851715743541718, \"Y\": 0.11325248330831528}, {\"X\": 0.16851715743541718, \"Y\": 0.12369236350059509}, {\"X\": 0.12652923166751862, \"Y\": 0.12369236350059509}]}, \"Id\": \"9ba62b1e-56e5-4ff0-bb44-68857cee029a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"4abf59cf-e74a-44ac-ab09-b18f90aa3e93\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 58.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050854239612817764, \"Height\": 0.011525492183864117, \"Left\": 0.2799079716205597, \"Top\": 0.11298011988401413}, \"Polygon\": [{\"X\": 0.2799079716205597, \"Y\": 0.11298011988401413}, {\"X\": 0.33076220750808716, \"Y\": 0.11298011988401413}, {\"X\": 0.33076220750808716, \"Y\": 0.12450561672449112}, {\"X\": 0.2799079716205597, \"Y\": 0.12450561672449112}]}, \"Id\": \"4abf59cf-e74a-44ac-ab09-b18f90aa3e93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f907df7-d511-47aa-9b37-a02e9d5b89fe\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0512690432369709, \"Height\": 0.01191292330622673, \"Left\": 0.1272997260093689, \"Top\": 0.8790102601051331}, \"Polygon\": [{\"X\": 0.1272997260093689, \"Y\": 0.8790102601051331}, {\"X\": 0.1785687655210495, \"Y\": 0.8790102601051331}, {\"X\": 0.1785687655210495, \"Y\": 0.8909232020378113}, {\"X\": 0.1272997260093689, \"Y\": 0.8909232020378113}]}, \"Id\": \"83efca41-a78b-4683-b9a5-4e55fac4f65a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"595abd47-37ad-4507-8671-a4df7dce8727\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"f273eb1e-2b7d-4387-accf-6be37f13b269\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04891815036535263, \"Height\": 0.01130110677331686, \"Left\": 0.2808762192726135, \"Top\": 0.8796005845069885}, \"Polygon\": [{\"X\": 0.2808762192726135, \"Y\": 0.8796005845069885}, {\"X\": 0.32979437708854675, \"Y\": 0.8796005845069885}, {\"X\": 0.32979437708854675, \"Y\": 0.8909016847610474}, {\"X\": 0.2808762192726135, \"Y\": 0.8909016847610474}]}, \"Id\": \"595abd47-37ad-4507-8671-a4df7dce8727\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04099826142191887, \"Height\": 0.010334157384932041, \"Left\": 0.1273859590291977, \"Top\": 0.09506723284721375}, \"Polygon\": [{\"X\": 0.1273859590291977, \"Y\": 0.09506723284721375}, {\"X\": 0.16838422417640686, \"Y\": 0.09506723284721375}, {\"X\": 0.16838422417640686, \"Y\": 0.10540138930082321}, {\"X\": 0.1273859590291977, \"Y\": 0.10540138930082321}]}, \"Id\": \"5cd0dfaa-f65e-4ece-8e45-211710bf3dbb\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"774eb534-bcc9-450b-bba6-29dda7a1e9ce\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"57572e8c-e006-4729-a744-071a2913a17b\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05071747675538063, \"Height\": 0.011595336720347404, \"Left\": 0.2795299291610718, \"Top\": 0.09485869109630585}, \"Polygon\": [{\"X\": 0.2795299291610718, \"Y\": 0.09485869109630585}, {\"X\": 0.3302474021911621, \"Y\": 0.09485869109630585}, {\"X\": 0.3302474021911621, \"Y\": 0.1064540296792984}, {\"X\": 0.2795299291610718, \"Y\": 0.1064540296792984}]}, \"Id\": \"774eb534-bcc9-450b-bba6-29dda7a1e9ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63478fb4-f00d-48bc-a17e-c38c97827bab\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 41.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02974407933652401, \"Height\": 0.010709634982049465, \"Left\": 0.2804167866706848, \"Top\": 0.8621594905853271}, \"Polygon\": [{\"X\": 0.2804167866706848, \"Y\": 0.8621594905853271}, {\"X\": 0.31016087532043457, \"Y\": 0.8621594905853271}, {\"X\": 0.31016087532043457, \"Y\": 0.8728691339492798}, {\"X\": 0.2804167866706848, \"Y\": 0.8728691339492798}]}, \"Id\": \"f67bf240-5f9e-423f-a45e-8bef17c9350a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1cd9cc72-430c-4ad7-b551-0843fb42abb1\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"83299056-9247-48a6-a6c2-51db9de923f9\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 41.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009026515297591686, \"Height\": 0.010598388500511646, \"Left\": 0.3221786916255951, \"Top\": 0.8621411323547363}, \"Polygon\": [{\"X\": 0.3221786916255951, \"Y\": 0.8621411323547363}, {\"X\": 0.33120521903038025, \"Y\": 0.8621411323547363}, {\"X\": 0.33120521903038025, \"Y\": 0.8727394938468933}, {\"X\": 0.3221786916255951, \"Y\": 0.8727394938468933}]}, \"Id\": \"1cd9cc72-430c-4ad7-b551-0843fb42abb1\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 40.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030433082953095436, \"Height\": 0.011113199405372143, \"Left\": 0.2809098958969116, \"Top\": 0.8442106246948242}, \"Polygon\": [{\"X\": 0.2809098958969116, \"Y\": 0.8442106246948242}, {\"X\": 0.3113429546356201, \"Y\": 0.8442106246948242}, {\"X\": 0.3113429546356201, \"Y\": 0.8553237915039062}, {\"X\": 0.2809098958969116, \"Y\": 0.8553237915039062}]}, \"Id\": \"6d8399b6-1142-4a28-89f5-47624905156c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c5ca2612-76a1-4cf8-8b91-f7f4235a618c\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 40.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00924529880285263, \"Height\": 0.010148925706744194, \"Left\": 0.32168227434158325, \"Top\": 0.8447158336639404}, \"Polygon\": [{\"X\": 0.32168227434158325, \"Y\": 0.8447158336639404}, {\"X\": 0.3309275805950165, \"Y\": 0.8447158336639404}, {\"X\": 0.3309275805950165, \"Y\": 0.8548647165298462}, {\"X\": 0.32168227434158325, \"Y\": 0.8548647165298462}]}, \"Id\": \"c5ca2612-76a1-4cf8-8b91-f7f4235a618c\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03259711712598801, \"Height\": 0.011426025070250034, \"Left\": 0.279588520526886, \"Top\": 0.8087468147277832}, \"Polygon\": [{\"X\": 0.279588520526886, \"Y\": 0.8087468147277832}, {\"X\": 0.3121856451034546, \"Y\": 0.8087468147277832}, {\"X\": 0.3121856451034546, \"Y\": 0.8201728463172913}, {\"X\": 0.279588520526886, \"Y\": 0.8201728463172913}]}, \"Id\": \"480d9dc7-94c1-4942-bdbf-ccbc30af9483\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"5e363bb0-3464-4d5f-9755-47054b130293\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009856361895799637, \"Height\": 0.010775065049529076, \"Left\": 0.32141733169555664, \"Top\": 0.8093059062957764}, \"Polygon\": [{\"X\": 0.32141733169555664, \"Y\": 0.8093059062957764}, {\"X\": 0.3312736749649048, \"Y\": 0.8093059062957764}, {\"X\": 0.3312736749649048, \"Y\": 0.8200809955596924}, {\"X\": 0.32141733169555664, \"Y\": 0.8200809955596924}]}, \"Id\": \"5e363bb0-3464-4d5f-9755-47054b130293\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03189631924033165, \"Height\": 0.010591634549200535, \"Left\": 0.27988201379776, \"Top\": 0.8272466659545898}, \"Polygon\": [{\"X\": 0.27988201379776, \"Y\": 0.8272466659545898}, {\"X\": 0.31177833676338196, \"Y\": 0.8272466659545898}, {\"X\": 0.31177833676338196, \"Y\": 0.8378382921218872}, {\"X\": 0.27988201379776, \"Y\": 0.8378382921218872}]}, \"Id\": \"5070b0ce-2bce-47ad-8a5e-eb13c45d993e\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"fcb77abe-b63e-47ef-a578-67e32112c200\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009518061764538288, \"Height\": 0.009988118894398212, \"Left\": 0.3216318190097809, \"Top\": 0.8274956941604614}, \"Polygon\": [{\"X\": 0.3216318190097809, \"Y\": 0.8274956941604614}, {\"X\": 0.3311498761177063, \"Y\": 0.8274956941604614}, {\"X\": 0.3311498761177063, \"Y\": 0.837483823299408}, {\"X\": 0.3216318190097809, \"Y\": 0.837483823299408}]}, \"Id\": \"fcb77abe-b63e-47ef-a578-67e32112c200\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 10.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04504936933517456, \"Height\": 0.01098950207233429, \"Left\": 0.11694080382585526, \"Top\": 0.7518727779388428}, \"Polygon\": [{\"X\": 0.11694080382585526, \"Y\": 0.7518727779388428}, {\"X\": 0.1619901806116104, \"Y\": 0.7518727779388428}, {\"X\": 0.1619901806116104, \"Y\": 0.7628623247146606}, {\"X\": 0.11694080382585526, \"Y\": 0.7628623247146606}]}, \"Id\": \"ad95455b-09fc-4c57-baa8-32af40376e66\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c6050c59-580c-4e3d-b06f-6e9963357a57\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"55ae1faf-5c76-4fb7-85f7-bb6598b455ad\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 10.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009425626136362553, \"Height\": 0.01021061185747385, \"Left\": 0.1619901806116104, \"Top\": 0.7521825432777405}, \"Polygon\": [{\"X\": 0.1619901806116104, \"Y\": 0.7521825432777405}, {\"X\": 0.1714158058166504, \"Y\": 0.7521825432777405}, {\"X\": 0.1714158058166504, \"Y\": 0.7623931765556335}, {\"X\": 0.1619901806116104, \"Y\": 0.7623931765556335}]}, \"Id\": \"c6050c59-580c-4e3d-b06f-6e9963357a57\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39382dfb-9f13-48db-91d4-c9e55fabf295\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.000400237477151677, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.0005257856100797653}, {\"X\": 0.9995997548103333, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.9994742274284363}]}, \"Id\": \"fc767e53-6f12-483c-bbc7-a8139557bfc4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a6ab0b0e-8feb-4cd3-8cbe-d3db7d4c6b54\", \"6d5cfcea-a819-40a2-ade8-bd2a41c0e65f\", \"df088141-c738-4ea4-a36a-eee4ebdef71c\", \"79685631-6245-49c0-a951-17d09c21d578\", \"395d8728-375d-4327-9091-10e37a3e76bb\", \"143c5316-e1b7-4a6e-8ae7-4718321f50cb\", \"cf8e09a1-c317-40c1-9c45-e830e14167d5\", \"74c6bcc1-48f5-4105-921a-0fc81561349d\", \"f5316249-bf5a-4d5b-95db-5cd2e0545732\", \"f1aeef81-7b6d-4079-95ea-8ed53aff5457\", \"c0cc1be5-4a9f-437d-b5e1-31f46f675ecd\", \"dc7bf528-a1c8-4c73-9e08-75c347bc12e8\", \"7f8acdcc-2c3e-4e39-b2aa-da1d0bfab29a\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82660675048828, \"Text\": \"Row6b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05098580941557884, \"Height\": 0.011656317859888077, \"Left\": 0.12676970660686493, \"Top\": 0.09446584433317184}, \"Polygon\": [{\"X\": 0.12704066932201385, \"Y\": 0.09446584433317184}, {\"X\": 0.17775550484657288, \"Y\": 0.0952182486653328}, {\"X\": 0.17748454213142395, \"Y\": 0.10612215846776962}, {\"X\": 0.12676970660686493, \"Y\": 0.10536976158618927}]}, \"Id\": \"a6ab0b0e-8feb-4cd3-8cbe-d3db7d4c6b54\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5bff76b6-ae8e-4e66-b85f-77792f55a047\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 97.33594512939453, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050728343427181244, \"Height\": 0.013503748923540115, \"Left\": 0.2791037857532501, \"Top\": 0.09440571814775467}, \"Polygon\": [{\"X\": 0.27942079305648804, \"Y\": 0.09440571814775467}, {\"X\": 0.32983213663101196, \"Y\": 0.09515361487865448}, {\"X\": 0.32951515913009644, \"Y\": 0.10790946334600449}, {\"X\": 0.2791037857532501, \"Y\": 0.10716156661510468}]}, \"Id\": \"6d5cfcea-a819-40a2-ade8-bd2a41c0e65f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"700c0612-1d56-4af2-9f6b-537d304386cd\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64236450195312, \"Text\": \"Row7b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05090001970529556, \"Height\": 0.011833332479000092, \"Left\": 0.12696722149848938, \"Top\": 0.11194874346256256}, \"Polygon\": [{\"X\": 0.12724262475967407, \"Y\": 0.11194874346256256}, {\"X\": 0.17786724865436554, \"Y\": 0.11269981414079666}, {\"X\": 0.17759184539318085, \"Y\": 0.12378207594156265}, {\"X\": 0.12696722149848938, \"Y\": 0.12303101271390915}]}, \"Id\": \"df088141-c738-4ea4-a36a-eee4ebdef71c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b48897e-3886-414f-8d96-5861ec818907\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 95.99404907226562, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05158643051981926, \"Height\": 0.012942059896886349, \"Left\": 0.27875372767448425, \"Top\": 0.11202514916658401}, \"Polygon\": [{\"X\": 0.2790564298629761, \"Y\": 0.11202514916658401}, {\"X\": 0.330340176820755, \"Y\": 0.11278599500656128}, {\"X\": 0.3300374448299408, \"Y\": 0.12496720999479294}, {\"X\": 0.27875372767448425, \"Y\": 0.12420637160539627}]}, \"Id\": \"79685631-6245-49c0-a951-17d09c21d578\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83966064453125, \"Text\": \"Row8b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05077642947435379, \"Height\": 0.01085337158292532, \"Left\": 0.1270284354686737, \"Top\": 0.13003452122211456}, \"Polygon\": [{\"X\": 0.12727950513362885, \"Y\": 0.13003452122211456}, {\"X\": 0.1778048574924469, \"Y\": 0.13078412413597107}, {\"X\": 0.17755377292633057, \"Y\": 0.14088790118694305}, {\"X\": 0.1270284354686737, \"Y\": 0.14013829827308655}]}, \"Id\": \"395d8728-375d-4327-9091-10e37a3e76bb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19ebd05f-2064-40a1-af45-5bf4bb2b9720\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 97.21160125732422, \"Text\": \"Col2_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05060119181871414, \"Height\": 0.013671496883034706, \"Left\": 0.27921262383461, \"Top\": 0.12942373752593994}, \"Polygon\": [{\"X\": 0.27953383326530457, \"Y\": 0.12942373752593994}, {\"X\": 0.32981380820274353, \"Y\": 0.13016968965530396}, {\"X\": 0.32949259877204895, \"Y\": 0.1430952250957489}, {\"X\": 0.27921262383461, \"Y\": 0.14234928786754608}]}, \"Id\": \"143c5316-e1b7-4a6e-8ae7-4718321f50cb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\"]}], \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82660675048828, \"Text\": \"Row6b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05098580941557884, \"Height\": 0.011656317859888077, \"Left\": 0.12676970660686493, \"Top\": 0.09446584433317184}, \"Polygon\": [{\"X\": 0.12704066932201385, \"Y\": 0.09446584433317184}, {\"X\": 0.17775550484657288, \"Y\": 0.0952182486653328}, {\"X\": 0.17748454213142395, \"Y\": 0.10612215846776962}, {\"X\": 0.12676970660686493, \"Y\": 0.10536976158618927}]}, \"Id\": \"5bff76b6-ae8e-4e66-b85f-77792f55a047\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.33594512939453, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050728343427181244, \"Height\": 0.013503748923540115, \"Left\": 0.2791037857532501, \"Top\": 0.09440571814775467}, \"Polygon\": [{\"X\": 0.27942079305648804, \"Y\": 0.09440571814775467}, {\"X\": 0.32983213663101196, \"Y\": 0.09515361487865448}, {\"X\": 0.32951515913009644, \"Y\": 0.10790946334600449}, {\"X\": 0.2791037857532501, \"Y\": 0.10716156661510468}]}, \"Id\": \"700c0612-1d56-4af2-9f6b-537d304386cd\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64236450195312, \"Text\": \"Row7b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05090001970529556, \"Height\": 0.011833332479000092, \"Left\": 0.12696722149848938, \"Top\": 0.11194874346256256}, \"Polygon\": [{\"X\": 0.12724262475967407, \"Y\": 0.11194874346256256}, {\"X\": 0.17786724865436554, \"Y\": 0.11269981414079666}, {\"X\": 0.17759184539318085, \"Y\": 0.12378207594156265}, {\"X\": 0.12696722149848938, \"Y\": 0.12303101271390915}]}, \"Id\": \"0b48897e-3886-414f-8d96-5861ec818907\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 95.99404907226562, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05158643051981926, \"Height\": 0.012942059896886349, \"Left\": 0.27875372767448425, \"Top\": 0.11202514916658401}, \"Polygon\": [{\"X\": 0.2790564298629761, \"Y\": 0.11202514916658401}, {\"X\": 0.330340176820755, \"Y\": 0.11278599500656128}, {\"X\": 0.3300374448299408, \"Y\": 0.12496720999479294}, {\"X\": 0.27875372767448425, \"Y\": 0.12420637160539627}]}, \"Id\": \"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83966064453125, \"Text\": \"Row8b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05077642947435379, \"Height\": 0.01085337158292532, \"Left\": 0.1270284354686737, \"Top\": 0.13003452122211456}, \"Polygon\": [{\"X\": 0.12727950513362885, \"Y\": 0.13003452122211456}, {\"X\": 0.1778048574924469, \"Y\": 0.13078412413597107}, {\"X\": 0.17755377292633057, \"Y\": 0.14088790118694305}, {\"X\": 0.1270284354686737, \"Y\": 0.14013829827308655}]}, \"Id\": \"19ebd05f-2064-40a1-af45-5bf4bb2b9720\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.21160125732422, \"Text\": \"Col2_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05060119181871414, \"Height\": 0.013671496883034706, \"Left\": 0.27921262383461, \"Top\": 0.12942373752593994}, \"Polygon\": [{\"X\": 0.27953383326530457, \"Y\": 0.12942373752593994}, {\"X\": 0.32981380820274353, \"Y\": 0.13016968965530396}, {\"X\": 0.32949259877204895, \"Y\": 0.1430952250957489}, {\"X\": 0.27921262383461, \"Y\": 0.14234928786754608}]}, \"Id\": \"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\", \"Page\": 3}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.88400268554688, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30704912543296814, \"Height\": 0.05798517167568207, \"Left\": 0.11730676889419556, \"Top\": 0.08864963054656982}, \"Polygon\": [{\"X\": 0.11863500624895096, \"Y\": 0.08864963054656982}, {\"X\": 0.4243558943271637, \"Y\": 0.09318529069423676}, {\"X\": 0.4230276644229889, \"Y\": 0.1466348022222519}, {\"X\": 0.11730676889419556, \"Y\": 0.14209914207458496}]}, \"Id\": \"cf8e09a1-c317-40c1-9c45-e830e14167d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6cbde6a5-b1f1-4f20-bac1-d64bf8f23b27\", \"248e8170-9874-4b54-b61b-24b880aa1fe0\", \"ff1bc55a-d031-4982-bef5-21ce60c43230\", \"39ddbcff-6a8d-4c03-9fa6-15e1d1eb6e78\", \"2c39f515-ead5-49e7-bde5-0b3a9d4e4b67\", \"95b47127-c671-4bb0-94fa-21f4e6ad1755\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 71.59398651123047, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15295107662677765, \"Height\": 0.02052159234881401, \"Left\": 0.1181812584400177, \"Top\": 0.08864963054656982}, \"Polygon\": [{\"X\": 0.11863500624895096, \"Y\": 0.08864963054656982}, {\"X\": 0.27113234996795654, \"Y\": 0.09091207385063171}, {\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}, {\"X\": 0.1181812584400177, \"Y\": 0.10690877586603165}]}, \"Id\": \"6cbde6a5-b1f1-4f20-bac1-d64bf8f23b27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5bff76b6-ae8e-4e66-b85f-77792f55a047\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 94.80577850341797, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.153677299618721, \"Height\": 0.020532365888357162, \"Left\": 0.2706786096096039, \"Top\": 0.09091207385063171}, \"Polygon\": [{\"X\": 0.27113234996795654, \"Y\": 0.09091207385063171}, {\"X\": 0.4243558943271637, \"Y\": 0.09318529069423676}, {\"X\": 0.42390215396881104, \"Y\": 0.11144443601369858}, {\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}]}, \"Id\": \"248e8170-9874-4b54-b61b-24b880aa1fe0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"700c0612-1d56-4af2-9f6b-537d304386cd\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 96.32347106933594, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15293458104133606, \"Height\": 0.019857630133628845, \"Left\": 0.11774401366710663, \"Top\": 0.10690877586603165}, \"Polygon\": [{\"X\": 0.1181812584400177, \"Y\": 0.10690877586603165}, {\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}, {\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}, {\"X\": 0.11774401366710663, \"Y\": 0.1245039626955986}]}, \"Id\": \"ff1bc55a-d031-4982-bef5-21ce60c43230\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b48897e-3886-414f-8d96-5861ec818907\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 95.25926971435547, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15366080403327942, \"Height\": 0.019868405535817146, \"Left\": 0.2702413499355316, \"Top\": 0.10917121917009354}, \"Polygon\": [{\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}, {\"X\": 0.42390215396881104, \"Y\": 0.11144443601369858}, {\"X\": 0.42346489429473877, \"Y\": 0.12903961539268494}, {\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}]}, \"Id\": \"39ddbcff-6a8d-4c03-9fa6-15e1d1eb6e78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 95.24032592773438, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15293458104133606, \"Height\": 0.0198576208204031, \"Left\": 0.11730676889419556, \"Top\": 0.1245039626955986}, \"Polygon\": [{\"X\": 0.11774401366710663, \"Y\": 0.1245039626955986}, {\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}, {\"X\": 0.26980409026145935, \"Y\": 0.14436158537864685}, {\"X\": 0.11730676889419556, \"Y\": 0.14209914207458496}]}, \"Id\": \"2c39f515-ead5-49e7-bde5-0b3a9d4e4b67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19ebd05f-2064-40a1-af45-5bf4bb2b9720\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 79.30333709716797, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15366080403327942, \"Height\": 0.0198683962225914, \"Left\": 0.26980409026145935, \"Top\": 0.1267663985490799}, \"Polygon\": [{\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}, {\"X\": 0.42346489429473877, \"Y\": 0.12903961539268494}, {\"X\": 0.4230276644229889, \"Y\": 0.1466348022222519}, {\"X\": 0.26980409026145935, \"Y\": 0.14436158537864685}]}, \"Id\": \"95b47127-c671-4bb0-94fa-21f4e6ad1755\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\"]}], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 69.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053037382662296295, \"Height\": 0.011863872408866882, \"Left\": 0.12560312449932098, \"Top\": 0.13018786907196045}, \"Polygon\": [{\"X\": 0.1258784979581833, \"Y\": 0.13018786907196045}, {\"X\": 0.17864051461219788, \"Y\": 0.13097065687179565}, {\"X\": 0.17836514115333557, \"Y\": 0.14205174148082733}, {\"X\": 0.12560312449932098, \"Y\": 0.14126896858215332}]}, \"Id\": \"74c6bcc1-48f5-4105-921a-0fc81561349d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"f5316249-bf5a-4d5b-95db-5cd2e0545732\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"19ebd05f-2064-40a1-af45-5bf4bb2b9720\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 69.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052074331790208817, \"Height\": 0.012668600305914879, \"Left\": 0.2790188789367676, \"Top\": 0.12979111075401306}, \"Polygon\": [{\"X\": 0.2793146073818207, \"Y\": 0.12979111075401306}, {\"X\": 0.3310932219028473, \"Y\": 0.1305592954158783}, {\"X\": 0.3307974934577942, \"Y\": 0.1424597054719925}, {\"X\": 0.2790188789367676, \"Y\": 0.14169152081012726}]}, \"Id\": \"f5316249-bf5a-4d5b-95db-5cd2e0545732\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 54.000003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050488073378801346, \"Height\": 0.012472798116505146, \"Left\": 0.12750546634197235, \"Top\": 0.1119389533996582}, \"Polygon\": [{\"X\": 0.12779691815376282, \"Y\": 0.1119389533996582}, {\"X\": 0.1779935359954834, \"Y\": 0.11268366873264313}, {\"X\": 0.17770209908485413, \"Y\": 0.12441174685955048}, {\"X\": 0.12750546634197235, \"Y\": 0.12366703152656555}]}, \"Id\": \"f1aeef81-7b6d-4079-95ea-8ed53aff5457\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c0cc1be5-4a9f-437d-b5e1-31f46f675ecd\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"0b48897e-3886-414f-8d96-5861ec818907\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 54.000003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05023081600666046, \"Height\": 0.012434698641300201, \"Left\": 0.27983802556991577, \"Top\": 0.1121588796377182}, \"Polygon\": [{\"X\": 0.2801286280155182, \"Y\": 0.1121588796377182}, {\"X\": 0.3300688564777374, \"Y\": 0.1128997877240181}, {\"X\": 0.329778254032135, \"Y\": 0.1245935782790184}, {\"X\": 0.27983802556991577, \"Y\": 0.12385266274213791}]}, \"Id\": \"c0cc1be5-4a9f-437d-b5e1-31f46f675ecd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033533789217472076, \"Height\": 0.011719416826963425, \"Left\": 0.2783830165863037, \"Top\": 0.09511911123991013}, \"Polygon\": [{\"X\": 0.2786619961261749, \"Y\": 0.09511911123991013}, {\"X\": 0.3119167983531952, \"Y\": 0.09561248123645782}, {\"X\": 0.31163784861564636, \"Y\": 0.10683852434158325}, {\"X\": 0.2783830165863037, \"Y\": 0.10634516179561615}]}, \"Id\": \"dc7bf528-a1c8-4c73-9e08-75c347bc12e8\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"7f8acdcc-2c3e-4e39-b2aa-da1d0bfab29a\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"700c0612-1d56-4af2-9f6b-537d304386cd\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010154496878385544, \"Height\": 0.011597048491239548, \"Left\": 0.32046273350715637, \"Top\": 0.09502559900283813}, \"Polygon\": [{\"X\": 0.3207472860813141, \"Y\": 0.09502559900283813}, {\"X\": 0.330617219209671, \"Y\": 0.09517203271389008}, {\"X\": 0.3303326666355133, \"Y\": 0.10662265121936798}, {\"X\": 0.32046273350715637, \"Y\": 0.10647621750831604}]}, \"Id\": \"7f8acdcc-2c3e-4e39-b2aa-da1d0bfab29a\", \"EntityTypes\": [\"VALUE\"], \"Page\": 3}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"51774f3b-4edd-4ea8-ac36-20b9603a85b4\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"51774f3b-4edd-4ea8-ac36-20b9603a85b4\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"83989\", \"date\": \"Wed, 15 Dec 2021 18:07:05 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/in-table-footer.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1.0,\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 3.817784204329655e-07\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 8.450797963632795e-07,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"c4e1c65c-7b23-4cad-bc07-0de5ddf73b89\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dc687271-173a-47a9-b581-74337d199af1\",\n                        \"764cdea2-1266-450f-b0b8-b741ea747b96\",\n                        \"53fd0ce2-a8f9-480f-9520-b94ae886e004\",\n                        \"f8050894-ef58-4ea0-9a70-fa4355660acf\",\n                        \"771cbba5-1dfc-4b6a-99a9-b1baaaff744a\",\n                        \"dd5b881d-0087-4872-b7dc-d22d924b9e5c\",\n                        \"7cc7b93a-5e30-44a6-b0fc-b86cd47eaf4d\",\n                        \"09778d89-85a6-4c66-bc00-356940903659\",\n                        \"7bbb3c99-9338-4363-b07b-42cb8b59c90f\",\n                        \"b4671d94-64fa-445d-9fb5-88a52ab947e4\",\n                        \"60d7372d-2be7-41ec-bcf8-8368a174146b\",\n                        \"663f1324-0e46-4179-af3a-094f46ee1327\",\n                        \"745d0c87-80fd-4611-aaae-fb79d0d5a709\",\n                        \"2de9836e-e19d-431e-9271-ff9f7198a06c\",\n                        \"c05a693f-0761-424a-87b1-99b38ff9d0b3\",\n                        \"87fdd47f-0ba1-4de8-b308-3e3df147f824\",\n                        \"0d566556-c85f-4d46-9871-736d7624ce07\",\n                        \"f2340d54-675f-471d-bb35-56ac3a346993\",\n                        \"3e5233c5-84c3-442a-a157-2d9edef84118\",\n                        \"413d2e31-b42b-485d-ab7a-50dd934a4177\",\n                        \"fc004139-87fc-4124-859c-d73d276351e3\",\n                        \"7ff29c02-7c44-40b2-8c10-0958a5269aa8\",\n                        \"e16f76c7-4936-49e3-9d20-5163d4d77da2\",\n                        \"92064c7b-be44-4c32-8cb8-8c3bd1e9ac99\",\n                        \"7c00f24b-ccc2-4375-826c-958c430abc7d\",\n                        \"34e358b4-6662-4bf5-a0e7-9a78afac5c0a\",\n                        \"1a8705e1-7994-4cf3-920b-ca15695c9af1\",\n                        \"8503a57f-4d99-4baf-bf49-6c3d7ea95af8\",\n                        \"02a867d0-fa5b-4104-8e69-5f7d4df63fef\",\n                        \"e43e996e-bb63-4905-a346-311e99a5edc0\",\n                        \"78b6b2da-e188-46c4-8cf7-2c5f672018c1\",\n                        \"14608e45-e9cd-42c4-b2d9-0a7794f88842\",\n                        \"7c8c1a2f-116f-41ea-99a7-cbadce54f187\",\n                        \"77ce52e2-dff2-43b5-8da0-66507bd52417\",\n                        \"d3572334-2ea4-4980-933b-6d948ecb12cc\",\n                        \"f3cf906a-ca6b-4fd5-8522-a0a165d9469e\",\n                        \"14b0329b-2cba-40c5-bb36-adfbde4beab5\",\n                        \"fded7c98-4ded-4de4-b01c-d2466f669200\",\n                        \"2159ec78-416b-4785-b1bc-e485da743a51\",\n                        \"9b99c31d-b454-4cfa-af88-454153a70991\",\n                        \"bf5777e2-f423-4e5c-a37d-2d5c7b084be1\",\n                        \"6827cd2b-fbb2-449d-bda8-87ea797b90dc\",\n                        \"c099b3d1-35ea-4cd0-979b-85703407e8f0\",\n                        \"4962b35e-34e7-477e-8d85-7acdbf6d71fb\",\n                        \"a7cb7953-f608-4b58-85a1-7ff059cb0f3b\",\n                        \"8ca26627-b6a9-4ae0-bec2-2f3934c42b69\",\n                        \"afd336ff-4e31-4a4d-9e11-35e2aedd35c2\",\n                        \"e8d3d62c-cfb1-48db-a58e-d07cba2d2137\",\n                        \"ba173b0d-4d29-4d8b-8ec5-d3995767f343\",\n                        \"6ec0c78d-b61e-48a3-abc6-9378361c750b\",\n                        \"521ebe70-57fd-49fd-b680-39bf233d3181\",\n                        \"cb874199-81d0-4787-aa9b-fa58ddc5f23c\",\n                        \"8f8e33ea-2c51-415e-b5ca-189a47c60381\",\n                        \"df1b7a81-62dc-45dd-911b-3af2eb5a000d\",\n                        \"076c99f1-6836-41ab-9832-f276547960db\",\n                        \"e218018c-e869-4752-bc69-8853ee17e885\",\n                        \"ed8432d6-ee00-482c-9280-be831c5b66d2\",\n                        \"79082bf5-096e-49ad-ad57-40a696b71e8e\",\n                        \"4fef6238-66ee-4448-8814-84e22535c374\",\n                        \"6239c29d-1247-4f4a-8f31-cec548e0aefc\",\n                        \"c7dce60d-ba34-4eab-b264-6bf2e46a75d6\",\n                        \"98160e68-4288-4acb-b147-e4b730e05c63\",\n                        \"7dfb4ce0-ab97-493f-b7a1-fc8d3c394f72\",\n                        \"3a1ec0a3-f8d7-4b5d-a0c0-d62ed80e082b\",\n                        \"d1b00e5f-a8c7-4eee-9eda-25d043187221\",\n                        \"eee02c64-cdbe-4d3f-b8fd-a9fa376a802b\",\n                        \"a302efbf-3939-42e2-9725-a9853202363e\",\n                        \"f082f77d-13e3-4ad7-a593-0abd07a42dc3\",\n                        \"1c77417e-997c-45e6-846b-3e32106222e4\",\n                        \"83e9f5aa-e379-45f7-b853-f567a33cf036\",\n                        \"5d1b50e4-7ccb-4307-b910-044facb94db5\",\n                        \"0d339427-6496-40c7-9cee-bc4c63e27ccb\",\n                        \"c615af07-2ef7-4e0f-9bbc-5716d3efae9e\",\n                        \"d1c9bbd6-ab81-4569-9c69-6bde1bd9b67d\",\n                        \"d87a803b-a4bc-4edc-b08a-c53449618ba0\",\n                        \"c9a38f93-1691-4452-ab39-c4f624b203d5\",\n                        \"4bdb8f5c-a1a2-4739-88b0-e8395d32d82b\",\n                        \"8b95d8db-82d8-4c5c-b0e7-a881d35da464\",\n                        \"2a6d0d87-ddd2-4c0f-8d1a-dc01370c8616\",\n                        \"3e8a306a-1d2a-48eb-82ef-c9b4376a32e9\",\n                        \"a259a585-b1ce-4c0e-901a-097b83bec105\",\n                        \"c99fe475-c012-4da5-a829-175e792eb308\",\n                        \"45b274cf-d802-4402-a303-4eaab3ff1f04\",\n                        \"4bab865b-1868-4f3f-bfe3-763dc219dca6\",\n                        \"349a6443-4b65-441a-a389-ca6bd85818ef\",\n                        \"9cc4bfbe-914d-4053-9b08-0301708029dd\",\n                        \"56d7f94c-e56a-4696-9f8f-4d9c35cee811\",\n                        \"361c619b-f13c-4119-8fed-48edf2285825\",\n                        \"3a864bdb-6d5d-4396-ae13-b867b963db6c\",\n                        \"06028bd0-3114-4c6e-b168-c7e8300faf2a\",\n                        \"e83027fc-a1da-4de7-8a12-4cca80983358\",\n                        \"85273cde-d99f-42d0-8358-e453e97e2bc9\",\n                        \"339f7f37-ebfa-488e-9d90-e59693a68c34\",\n                        \"e98b97ae-a8d5-4fb5-a134-b6be69f9896e\",\n                        \"2664ca39-30c2-466b-9243-5ff9ce2bb421\",\n                        \"5005bf38-82ad-4b6a-9725-3cad968a10da\",\n                        \"33d4fca6-6756-452d-943a-3378c6cff8fe\",\n                        \"b55749d5-2f69-4b4f-833f-87ddd61fe1f8\",\n                        \"d95f2f00-c7c1-44de-be24-21c41ab49447\",\n                        \"71e4b8ef-55fb-4e81-bbc4-20c0e5184b50\",\n                        \"dd7c96be-2557-462c-9bf2-d1e8e0506735\",\n                        \"8763ca8d-17aa-4275-9602-be90a1426976\",\n                        \"71922ec8-9c02-48f2-bab3-33c0a57b5af4\",\n                        \"850ecf06-53c0-49bf-b340-1ba01fc6d538\",\n                        \"230cfc5b-2d99-4751-9467-e92ecd71805e\",\n                        \"352876b1-c8be-499b-886b-924399a2db80\",\n                        \"d37a6e02-cb90-4ef6-8ae0-085a9f663c58\",\n                        \"3cbda003-ef50-4a5f-a5ff-e87468ce6196\",\n                        \"9df22f51-391c-4d47-b8d7-9633ef66420d\",\n                        \"35c58109-1dcf-46ee-8e06-25fb5c7ccceb\",\n                        \"adcea467-b190-41ee-b8d6-c10b0cebe001\",\n                        \"486177f4-4bfe-4fa9-be22-8f45ede15478\",\n                        \"c810f18e-707d-4cf0-8bcb-c9e28909eac3\",\n                        \"105884e2-2364-4186-9962-fb552baa8608\",\n                        \"d85e9110-8bde-47c1-bbcc-0f0a881620e2\",\n                        \"3c7e6703-86c7-47d0-a7b8-bc75717cde53\",\n                        \"863ced4e-2372-4466-aabc-6c89158fa912\",\n                        \"3ec0adf1-29a5-45c5-9dea-25fb61da3a57\",\n                        \"167fe7a8-cb3f-41fb-98bf-af26b59320ed\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87736511230469,\n            \"Text\": \"Name (not your trade name)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14438293874263763,\n                    \"Height\": 0.009670631028711796,\n                    \"Left\": 0.058571863919496536,\n                    \"Top\": 0.04696989059448242\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058571863919496536,\n                        \"Y\": 0.04706183820962906\n                    },\n                    {\n                        \"X\": 0.20294778048992157,\n                        \"Y\": 0.04696989059448242\n                    },\n                    {\n                        \"X\": 0.20295479893684387,\n                        \"Y\": 0.056548625230789185\n                    },\n                    {\n                        \"X\": 0.058578360825777054,\n                        \"Y\": 0.05664052069187164\n                    }\n                ]\n            },\n            \"Id\": \"dc687271-173a-47a9-b581-74337d199af1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0080e252-7e54-4d22-bf95-4f8e25cd0fd5\",\n                        \"fd02b1c0-d36b-4f08-b2ca-a7f44a748238\",\n                        \"0dbd7328-9c09-4b92-9494-d08ce8201b98\",\n                        \"72809027-24bd-4f5a-af51-31dfd56b1e56\",\n                        \"cdd74d8f-b9ab-43ff-8226-42bdc2ba75ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89263153076172,\n            \"Text\": \"Employer identification number (EIN)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19849872589111328,\n                    \"Height\": 0.00982936192303896,\n                    \"Left\": 0.5119485855102539,\n                    \"Top\": 0.046757545322179794\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5119485855102539,\n                        \"Y\": 0.0468839555978775\n                    },\n                    {\n                        \"X\": 0.7104383707046509,\n                        \"Y\": 0.046757545322179794\n                    },\n                    {\n                        \"X\": 0.7104473114013672,\n                        \"Y\": 0.05646056681871414\n                    },\n                    {\n                        \"X\": 0.5119568109512329,\n                        \"Y\": 0.05658690631389618\n                    }\n                ]\n            },\n            \"Id\": \"764cdea2-1266-450f-b0b8-b741ea747b96\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"37573b9a-1fee-49ba-9547-78abb55ecdff\",\n                        \"36e16691-d79c-4e3f-bc3f-073e2fdcbe92\",\n                        \"119480b2-4f88-4435-a754-564ed50634de\",\n                        \"f06a23ab-6dcd-4298-905f-2c050ea9be92\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.23714447021484,\n            \"Text\": \"Correcting quarter 4 (1,2,3,4)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18230000138282776,\n                    \"Height\": 0.010430310852825642,\n                    \"Left\": 0.7588735222816467,\n                    \"Top\": 0.04664601758122444\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7588735222816467,\n                        \"Y\": 0.04676210880279541\n                    },\n                    {\n                        \"X\": 0.9411630630493164,\n                        \"Y\": 0.04664601758122444\n                    },\n                    {\n                        \"X\": 0.9411734938621521,\n                        \"Y\": 0.05696030333638191\n                    },\n                    {\n                        \"X\": 0.7588832378387451,\n                        \"Y\": 0.05707633122801781\n                    }\n                ]\n            },\n            \"Id\": \"53fd0ce2-a8f9-480f-9520-b94ae886e004\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a147316a-bdfa-40f1-bd73-6e9e96fa47c9\",\n                        \"cd7b5301-6863-42d2-a6c8-e04ced210224\",\n                        \"8dae914c-66e5-49dc-9c1c-479c08f85354\",\n                        \"3e3a4294-f5cc-409d-abf4-9d456a40794e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.894287109375,\n            \"Text\": \"Correcting calendar year (YYYY)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1787344068288803,\n                    \"Height\": 0.009890689514577389,\n                    \"Left\": 0.758865475654602,\n                    \"Top\": 0.0618814155459404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.758865475654602,\n                        \"Y\": 0.061995141208171844\n                    },\n                    {\n                        \"X\": 0.9375900030136108,\n                        \"Y\": 0.0618814155459404\n                    },\n                    {\n                        \"X\": 0.9375998973846436,\n                        \"Y\": 0.07165843993425369\n                    },\n                    {\n                        \"X\": 0.7588747143745422,\n                        \"Y\": 0.07177210599184036\n                    }\n                ]\n            },\n            \"Id\": \"f8050894-ef58-4ea0-9a70-fa4355660acf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"021f3e95-8476-498c-9c80-bbaf509f8799\",\n                        \"540d4c6f-db59-4271-a26f-5fbdb769c8af\",\n                        \"285dda18-3b32-4ec3-8adb-2e378eb81e13\",\n                        \"727da63f-45fe-4337-8610-0e7f0365a9fb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.13969421386719,\n            \"Text\": \"Larry D. Mitchem\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10546842962503433,\n                    \"Height\": 0.011418181471526623,\n                    \"Left\": 0.06015770882368088,\n                    \"Top\": 0.06972107291221619\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06015770882368088,\n                        \"Y\": 0.06978815793991089\n                    },\n                    {\n                        \"X\": 0.16561797261238098,\n                        \"Y\": 0.06972107291221619\n                    },\n                    {\n                        \"X\": 0.1656261384487152,\n                        \"Y\": 0.08107221871614456\n                    },\n                    {\n                        \"X\": 0.060165416449308395,\n                        \"Y\": 0.08113925904035568\n                    }\n                ]\n            },\n            \"Id\": \"771cbba5-1dfc-4b6a-99a9-b1baaaff744a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7a50b29b-9ad4-4cee-bb9f-bcc99dfa1630\",\n                        \"9440e001-ebf8-4567-b2a0-9581ff9178b4\",\n                        \"54431908-401e-4edd-aad8-b1dac54b5856\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86986541748047,\n            \"Text\": \"3598432712\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07362813502550125,\n                    \"Height\": 0.008565395139157772,\n                    \"Left\": 0.592512309551239,\n                    \"Top\": 0.0699782595038414\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.592512309551239,\n                        \"Y\": 0.07002508640289307\n                    },\n                    {\n                        \"X\": 0.6661326885223389,\n                        \"Y\": 0.0699782595038414\n                    },\n                    {\n                        \"X\": 0.6661404371261597,\n                        \"Y\": 0.07849685102701187\n                    },\n                    {\n                        \"X\": 0.5925198197364807,\n                        \"Y\": 0.07854365557432175\n                    }\n                ]\n            },\n            \"Id\": \"dd5b881d-0087-4872-b7dc-d22d924b9e5c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ee6eebca-06c3-4dce-87e4-68707f518185\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83879089355469,\n            \"Text\": \"2022\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029090192168951035,\n                    \"Height\": 0.008565448224544525,\n                    \"Left\": 0.8326036334037781,\n                    \"Top\": 0.07800041139125824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8326036334037781,\n                        \"Y\": 0.07801889628171921\n                    },\n                    {\n                        \"X\": 0.8616853952407837,\n                        \"Y\": 0.07800041139125824\n                    },\n                    {\n                        \"X\": 0.861693799495697,\n                        \"Y\": 0.0865473747253418\n                    },\n                    {\n                        \"X\": 0.8326119184494019,\n                        \"Y\": 0.08656585961580276\n                    }\n                ]\n            },\n            \"Id\": \"7cc7b93a-5e30-44a6-b0fc-b86cd47eaf4d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"025ee5f0-0a61-4e37-a0e3-244a4844feeb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.21063232421875,\n            \"Text\": \"Part 3:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04585834592580795,\n                    \"Height\": 0.00988536886870861,\n                    \"Left\": 0.06467170268297195,\n                    \"Top\": 0.0930095911026001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06467170268297195,\n                        \"Y\": 0.09303872287273407\n                    },\n                    {\n                        \"X\": 0.11052317172288895,\n                        \"Y\": 0.0930095911026001\n                    },\n                    {\n                        \"X\": 0.1105300560593605,\n                        \"Y\": 0.10286585241556168\n                    },\n                    {\n                        \"X\": 0.06467841565608978,\n                        \"Y\": 0.10289496183395386\n                    }\n                ]\n            },\n            \"Id\": \"09778d89-85a6-4c66-bc00-356940903659\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2e4c1eea-9a22-45d4-8a19-dd4758711844\",\n                        \"6c4c4620-9a59-4fe7-a280-e787dc48b264\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8641128540039,\n            \"Text\": \"Enter the corrections for this quarter. If any line doesn't apply, leave it blank. (continued)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6126416325569153,\n                    \"Height\": 0.012826316058635712,\n                    \"Left\": 0.1237064003944397,\n                    \"Top\": 0.09271078556776047\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1237064003944397,\n                        \"Y\": 0.09309995174407959\n                    },\n                    {\n                        \"X\": 0.7363364100456238,\n                        \"Y\": 0.09271078556776047\n                    },\n                    {\n                        \"X\": 0.736348032951355,\n                        \"Y\": 0.10514819622039795\n                    },\n                    {\n                        \"X\": 0.12371513992547989,\n                        \"Y\": 0.10553710162639618\n                    }\n                ]\n            },\n            \"Id\": \"7bbb3c99-9338-4363-b07b-42cb8b59c90f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7fecd636-43be-4c66-8b76-43b8c432ca2f\",\n                        \"2b95b28a-c85b-4746-aeb5-02223d9a8293\",\n                        \"dea98ee0-7332-42b3-9c02-995860997075\",\n                        \"9aed7e77-48f6-4d5b-9fd7-7ebe10fd636a\",\n                        \"ca7ff975-a27a-46ad-ae2a-69591761f04d\",\n                        \"1e2eac36-1c62-4296-ae75-40b84afb2e75\",\n                        \"3659cade-cba6-4ae3-9d4c-89239d626fef\",\n                        \"eba48834-d4f4-4a7f-afe6-ba18e98c0e85\",\n                        \"682fc38e-3109-4e72-aba0-3abcb98906a5\",\n                        \"cef2fa54-d69b-4662-b3a8-a04d914b4b37\",\n                        \"1e26a9a2-57fb-4e44-b415-7776668f0222\",\n                        \"461d95c0-c50a-4c00-8f2b-610703105285\",\n                        \"973823ff-df1a-48aa-8dd1-93d90778945d\",\n                        \"1158eeaf-2de0-4f04-bdf1-5d62f40deb4d\",\n                        \"78074986-d0a4-41dd-ba32-dcd69a0a1cf2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.27297973632812,\n            \"Text\": \"Column 1\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05651171877980232,\n                    \"Height\": 0.008472414687275887,\n                    \"Left\": 0.3358669877052307,\n                    \"Top\": 0.10998037457466125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3358669877052307,\n                        \"Y\": 0.11001623421907425\n                    },\n                    {\n                        \"X\": 0.39237189292907715,\n                        \"Y\": 0.10998037457466125\n                    },\n                    {\n                        \"X\": 0.39237868785858154,\n                        \"Y\": 0.11841694265604019\n                    },\n                    {\n                        \"X\": 0.3358735740184784,\n                        \"Y\": 0.11845278739929199\n                    }\n                ]\n            },\n            \"Id\": \"b4671d94-64fa-445d-9fb5-88a52ab947e4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3a5adf15-9d47-4c8b-b769-fccca100124f\",\n                        \"5701dec9-a164-4a86-b80b-7e12a6030a62\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51903533935547,\n            \"Text\": \"Column 2\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.059933148324489594,\n                    \"Height\": 0.00894899945706129,\n                    \"Left\": 0.4875633418560028,\n                    \"Top\": 0.10940349102020264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4875633418560028,\n                        \"Y\": 0.10944151878356934\n                    },\n                    {\n                        \"X\": 0.547488808631897,\n                        \"Y\": 0.10940349102020264\n                    },\n                    {\n                        \"X\": 0.547496497631073,\n                        \"Y\": 0.1183144748210907\n                    },\n                    {\n                        \"X\": 0.4875708520412445,\n                        \"Y\": 0.1183524876832962\n                    }\n                ]\n            },\n            \"Id\": \"60d7372d-2be7-41ec-bcf8-8368a174146b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"955e3376-2cdd-42d4-9876-fbcd5ff5a8e4\",\n                        \"4aa2f917-2533-4a61-bf61-59c76e0a0350\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.74002075195312,\n            \"Text\": \"Column 3\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.059416141360998154,\n                    \"Height\": 0.008827967569231987,\n                    \"Left\": 0.6408791542053223,\n                    \"Top\": 0.10932232439517975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6408791542053223,\n                        \"Y\": 0.10936002433300018\n                    },\n                    {\n                        \"X\": 0.7002871632575989,\n                        \"Y\": 0.10932232439517975\n                    },\n                    {\n                        \"X\": 0.7002952694892883,\n                        \"Y\": 0.11811260133981705\n                    },\n                    {\n                        \"X\": 0.6408870220184326,\n                        \"Y\": 0.11815028637647629\n                    }\n                ]\n            },\n            \"Id\": \"663f1324-0e46-4179-af3a-094f46ee1327\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"21596cad-317e-4a6b-9ea9-fbdaf20d6f15\",\n                        \"48cf4ea8-7c32-4ba3-b870-6741068f8a2f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96096801757812,\n            \"Text\": \"Total corrected\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08531153947114944,\n                    \"Height\": 0.007864152081310749,\n                    \"Left\": 0.317202627658844,\n                    \"Top\": 0.125738263130188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.317202627658844,\n                        \"Y\": 0.12579235434532166\n                    },\n                    {\n                        \"X\": 0.40250787138938904,\n                        \"Y\": 0.125738263130188\n                    },\n                    {\n                        \"X\": 0.40251415967941284,\n                        \"Y\": 0.13354834914207458\n                    },\n                    {\n                        \"X\": 0.3172087073326111,\n                        \"Y\": 0.13360241055488586\n                    }\n                ]\n            },\n            \"Id\": \"745d0c87-80fd-4611-aaae-fb79d0d5a709\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3c9d6dd2-34c3-415a-bec4-3f97692422d5\",\n                        \"daa50c3a-8784-4333-9ef7-f49965464e43\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92398834228516,\n            \"Text\": \"Amount originally\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09813642501831055,\n                    \"Height\": 0.00942332111299038,\n                    \"Left\": 0.4691864252090454,\n                    \"Top\": 0.12515316903591156\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4691864252090454,\n                        \"Y\": 0.12521539628505707\n                    },\n                    {\n                        \"X\": 0.5673146843910217,\n                        \"Y\": 0.12515316903591156\n                    },\n                    {\n                        \"X\": 0.567322850227356,\n                        \"Y\": 0.13451430201530457\n                    },\n                    {\n                        \"X\": 0.469194233417511,\n                        \"Y\": 0.13457649946212769\n                    }\n                ]\n            },\n            \"Id\": \"2de9836e-e19d-431e-9271-ff9f7198a06c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a40b660a-7d69-47a2-ab2a-b98d6c48b8ad\",\n                        \"9c7fe81b-36a0-46ed-b965-bc9c07eb264e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82482147216797,\n            \"Text\": \"Difference\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.057507459074258804,\n                    \"Height\": 0.008109101094305515,\n                    \"Left\": 0.6345090270042419,\n                    \"Top\": 0.12505072355270386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6345090270042419,\n                        \"Y\": 0.1250871866941452\n                    },\n                    {\n                        \"X\": 0.6920090317726135,\n                        \"Y\": 0.12505072355270386\n                    },\n                    {\n                        \"X\": 0.6920164823532104,\n                        \"Y\": 0.13312338292598724\n                    },\n                    {\n                        \"X\": 0.6345162391662598,\n                        \"Y\": 0.1331598311662674\n                    }\n                ]\n            },\n            \"Id\": \"c05a693f-0761-424a-87b1-99b38ff9d0b3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"45b834ab-9921-457e-b81e-151c534c191e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8550033569336,\n            \"Text\": \"amount (for ALL\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08917169272899628,\n                    \"Height\": 0.00910029374063015,\n                    \"Left\": 0.3165409564971924,\n                    \"Top\": 0.13564851880073547\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3165409564971924,\n                        \"Y\": 0.13570502400398254\n                    },\n                    {\n                        \"X\": 0.4057053327560425,\n                        \"Y\": 0.13564851880073547\n                    },\n                    {\n                        \"X\": 0.40571266412734985,\n                        \"Y\": 0.1446923315525055\n                    },\n                    {\n                        \"X\": 0.3165479898452759,\n                        \"Y\": 0.14474880695343018\n                    }\n                ]\n            },\n            \"Id\": \"87fdd47f-0ba1-4de8-b308-3e3df147f824\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"40a3f8ce-8b80-406d-98c3-d31489ae4827\",\n                        \"2f3b5b62-5018-4e96-9ff4-1f614af721e6\",\n                        \"a3b96c9e-b36d-4f84-9567-2f69d40ed843\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85746002197266,\n            \"Text\": \"reported or as\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07808235287666321,\n                    \"Height\": 0.008668387308716774,\n                    \"Left\": 0.4697243571281433,\n                    \"Top\": 0.13515527546405792\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4697243571281433,\n                        \"Y\": 0.1352047473192215\n                    },\n                    {\n                        \"X\": 0.547799289226532,\n                        \"Y\": 0.13515527546405792\n                    },\n                    {\n                        \"X\": 0.5478066802024841,\n                        \"Y\": 0.14377419650554657\n                    },\n                    {\n                        \"X\": 0.46973153948783875,\n                        \"Y\": 0.14382365345954895\n                    }\n                ]\n            },\n            \"Id\": \"0d566556-c85f-4d46-9871-736d7624ce07\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"58160441-61c4-4830-854f-c00fa15a57e5\",\n                        \"21ec8bbb-76dc-49c8-aad4-8b979a4b1a19\",\n                        \"a0ff1d52-0f2e-48c6-bc7e-b3bda368bc67\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89292907714844,\n            \"Text\": \"(If this amount is a\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10138798505067825,\n                    \"Height\": 0.009012321010231972,\n                    \"Left\": 0.6346863508224487,\n                    \"Top\": 0.13490067422389984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6346863508224487,\n                        \"Y\": 0.1349649280309677\n                    },\n                    {\n                        \"X\": 0.7360659837722778,\n                        \"Y\": 0.13490067422389984\n                    },\n                    {\n                        \"X\": 0.7360743284225464,\n                        \"Y\": 0.14384877681732178\n                    },\n                    {\n                        \"X\": 0.6346943378448486,\n                        \"Y\": 0.14391300082206726\n                    }\n                ]\n            },\n            \"Id\": \"f2340d54-675f-471d-bb35-56ac3a346993\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9d9da5d5-f87e-4db9-b0c2-a6d123f4fbed\",\n                        \"6472b3bb-a327-494e-ab66-3c5a06d84adb\",\n                        \"de97ea75-326a-43ad-9df1-7ff2381dd324\",\n                        \"73a22328-76d5-4716-bbed-bb8176d69c2f\",\n                        \"f6915eda-a360-4c6a-a843-3e4afce0ef10\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.58934783935547,\n            \"Text\": \"employees)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06280651688575745,\n                    \"Height\": 0.009139125235378742,\n                    \"Left\": 0.3169885277748108,\n                    \"Top\": 0.144908607006073\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3169885277748108,\n                        \"Y\": 0.14494839310646057\n                    },\n                    {\n                        \"X\": 0.37978774309158325,\n                        \"Y\": 0.144908607006073\n                    },\n                    {\n                        \"X\": 0.37979504466056824,\n                        \"Y\": 0.15400797128677368\n                    },\n                    {\n                        \"X\": 0.3169955909252167,\n                        \"Y\": 0.15404772758483887\n                    }\n                ]\n            },\n            \"Id\": \"3e5233c5-84c3-442a-a157-2d9edef84118\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"78c73fda-b6a8-4eee-afd4-64801d1fc0a8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96892547607422,\n            \"Text\": \"previously corrected\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11300665885210037,\n                    \"Height\": 0.009638968855142593,\n                    \"Left\": 0.4695375859737396,\n                    \"Top\": 0.14386574923992157\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4695375859737396,\n                        \"Y\": 0.14393733441829681\n                    },\n                    {\n                        \"X\": 0.5825358629226685,\n                        \"Y\": 0.14386574923992157\n                    },\n                    {\n                        \"X\": 0.5825442671775818,\n                        \"Y\": 0.1534331887960434\n                    },\n                    {\n                        \"X\": 0.4695455729961395,\n                        \"Y\": 0.15350472927093506\n                    }\n                ]\n            },\n            \"Id\": \"413d2e31-b42b-485d-ab7a-50dd934a4177\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7a5ec70-52e2-42ef-bf9b-303055182a5d\",\n                        \"8cc2c5b9-8d1e-4930-8ad1-24b9806b270d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 85.90087890625,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010175778530538082,\n                    \"Height\": 0.0023913050536066294,\n                    \"Left\": 0.4475417137145996,\n                    \"Top\": 0.15271027386188507\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4475417137145996,\n                        \"Y\": 0.152716726064682\n                    },\n                    {\n                        \"X\": 0.4577155113220215,\n                        \"Y\": 0.15271027386188507\n                    },\n                    {\n                        \"X\": 0.4577174782752991,\n                        \"Y\": 0.1550951451063156\n                    },\n                    {\n                        \"X\": 0.4475436806678772,\n                        \"Y\": 0.15510158240795135\n                    }\n                ]\n            },\n            \"Id\": \"fc004139-87fc-4124-859c-d73d276351e3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f28a8ee7-15e2-43c8-8c57-963ece1e0bb5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.29859924316406,\n            \"Text\": \"=\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009397167712450027,\n                    \"Height\": 0.004594726487994194,\n                    \"Left\": 0.6011793613433838,\n                    \"Top\": 0.15030373632907867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011793613433838,\n                        \"Y\": 0.1503096967935562\n                    },\n                    {\n                        \"X\": 0.6105724573135376,\n                        \"Y\": 0.15030373632907867\n                    },\n                    {\n                        \"X\": 0.6105765104293823,\n                        \"Y\": 0.15489251911640167\n                    },\n                    {\n                        \"X\": 0.6011834144592285,\n                        \"Y\": 0.15489846467971802\n                    }\n                ]\n            },\n            \"Id\": \"7ff29c02-7c44-40b2-8c10-0958a5269aa8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2e80a18f-83ff-4786-ae45-a952be3f83ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8824691772461,\n            \"Text\": \"negative number,\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09583821147680283,\n                    \"Height\": 0.009339043870568275,\n                    \"Left\": 0.6348156929016113,\n                    \"Top\": 0.14419719576835632\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6348156929016113,\n                        \"Y\": 0.14425790309906006\n                    },\n                    {\n                        \"X\": 0.7306452393531799,\n                        \"Y\": 0.14419719576835632\n                    },\n                    {\n                        \"X\": 0.7306538820266724,\n                        \"Y\": 0.1534755676984787\n                    },\n                    {\n                        \"X\": 0.6348239779472351,\n                        \"Y\": 0.15353624522686005\n                    }\n                ]\n            },\n            \"Id\": \"e16f76c7-4936-49e3-9d20-5163d4d77da2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5b413ca0-675d-44ff-b33d-61ce42a4b274\",\n                        \"090aa3e5-8553-492e-b5d5-54c4b52c4c44\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73898315429688,\n            \"Text\": \"(for ALL employees)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10895147919654846,\n                    \"Height\": 0.009576819837093353,\n                    \"Left\": 0.4697246253490448,\n                    \"Top\": 0.1537371426820755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4697246253490448,\n                        \"Y\": 0.15380612015724182\n                    },\n                    {\n                        \"X\": 0.5786678194999695,\n                        \"Y\": 0.1537371426820755\n                    },\n                    {\n                        \"X\": 0.5786761045455933,\n                        \"Y\": 0.16324502229690552\n                    },\n                    {\n                        \"X\": 0.4697325825691223,\n                        \"Y\": 0.16331395506858826\n                    }\n                ]\n            },\n            \"Id\": \"92064c7b-be44-4c32-8cb8-8c3bd1e9ac99\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8c345b09-a9d2-4b01-a23e-9387ff6aca51\",\n                        \"501c8822-b32b-4a29-a44e-d1d535f9b4a2\",\n                        \"0b1f0639-81c6-495a-8998-6b27cd03edbd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91886901855469,\n            \"Text\": \"use a minus sign.)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09904222935438156,\n                    \"Height\": 0.009459818713366985,\n                    \"Left\": 0.6348837018013,\n                    \"Top\": 0.15386255085468292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6348837018013,\n                        \"Y\": 0.15392525494098663\n                    },\n                    {\n                        \"X\": 0.7339171171188354,\n                        \"Y\": 0.15386255085468292\n                    },\n                    {\n                        \"X\": 0.7339259386062622,\n                        \"Y\": 0.16325969994068146\n                    },\n                    {\n                        \"X\": 0.6348921060562134,\n                        \"Y\": 0.16332237422466278\n                    }\n                ]\n            },\n            \"Id\": \"7c00f24b-ccc2-4375-826c-958c430abc7d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b81fd7f4-25a2-416f-bd76-30b7688c6f1a\",\n                        \"9530ab38-5d19-4d77-a76f-374b14e4246b\",\n                        \"6bb193a1-37ad-4469-88a7-5e9b57afb6e8\",\n                        \"5757b200-3d88-4ddb-a1fa-845e36fdc02f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95639038085938,\n            \"Text\": \"33a.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02614554762840271,\n                    \"Height\": 0.00842417310923338,\n                    \"Left\": 0.06195109710097313,\n                    \"Top\": 0.17620757222175598\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06195109710097313,\n                        \"Y\": 0.17622409760951996\n                    },\n                    {\n                        \"X\": 0.08809084445238113,\n                        \"Y\": 0.17620757222175598\n                    },\n                    {\n                        \"X\": 0.08809664100408554,\n                        \"Y\": 0.18461522459983826\n                    },\n                    {\n                        \"X\": 0.06195680797100067,\n                        \"Y\": 0.18463173508644104\n                    }\n                ]\n            },\n            \"Id\": \"34e358b4-6662-4bf5-a0e7-9a78afac5c0a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4dbd27bc-7437-436a-bb76-5763cc20c2fc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91110229492188,\n            \"Text\": \"Qualified wages paid March 13\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19230173528194427,\n                    \"Height\": 0.010450196452438831,\n                    \"Left\": 0.1054147258400917,\n                    \"Top\": 0.17593634128570557\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1054147258400917,\n                        \"Y\": 0.17605793476104736\n                    },\n                    {\n                        \"X\": 0.29770854115486145,\n                        \"Y\": 0.17593634128570557\n                    },\n                    {\n                        \"X\": 0.2977164685726166,\n                        \"Y\": 0.1862650215625763\n                    },\n                    {\n                        \"X\": 0.10542191565036774,\n                        \"Y\": 0.18638654053211212\n                    }\n                ]\n            },\n            \"Id\": \"1a8705e1-7994-4cf3-920b-ca15695c9af1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"352441d5-0111-4d22-9926-9ffd7120b658\",\n                        \"88cfdfa3-f282-47c7-b5b6-c5b83505afeb\",\n                        \"982e45cb-964e-424e-bbb1-ea69c032c966\",\n                        \"ffe25321-088e-432d-a96c-8ca1d0605fa2\",\n                        \"42c76fd9-ef1a-4d9d-8113-9aeaed70252d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 94.86527252197266,\n            \"Text\": \"200 00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08155762404203415,\n                    \"Height\": 0.008600198663771152,\n                    \"Left\": 0.37623080611228943,\n                    \"Top\": 0.1808820515871048\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37623080611228943,\n                        \"Y\": 0.1809336096048355\n                    },\n                    {\n                        \"X\": 0.4577813148498535,\n                        \"Y\": 0.1808820515871048\n                    },\n                    {\n                        \"X\": 0.4577884078025818,\n                        \"Y\": 0.18943072855472565\n                    },\n                    {\n                        \"X\": 0.3762376308441162,\n                        \"Y\": 0.18948225677013397\n                    }\n                ]\n            },\n            \"Id\": \"8503a57f-4d99-4baf-bf49-6c3d7ea95af8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"809f3dc5-9fb2-4771-a3b2-f4c307c917f9\",\n                        \"fa7c59ab-5407-4b95-a8fa-390ba5b8bbd9\",\n                        \"9dd99b83-4ab6-434f-acf0-38262ea1c5b0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 80.3970718383789,\n            \"Text\": \"100.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05690998211503029,\n                    \"Height\": 0.011519885621964931,\n                    \"Left\": 0.5288791060447693,\n                    \"Top\": 0.18085455894470215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5288791060447693,\n                        \"Y\": 0.1808905303478241\n                    },\n                    {\n                        \"X\": 0.5857789516448975,\n                        \"Y\": 0.18085455894470215\n                    },\n                    {\n                        \"X\": 0.5857890844345093,\n                        \"Y\": 0.1923384964466095\n                    },\n                    {\n                        \"X\": 0.5288889408111572,\n                        \"Y\": 0.19237443804740906\n                    }\n                ]\n            },\n            \"Id\": \"02a867d0-fa5b-4104-8e69-5f7d4df63fef\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b210b1b4-6202-48b9-b808-36236e16ad17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.15103912353516,\n            \"Text\": \"=\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.008992861956357956,\n                    \"Height\": 0.00499907648190856,\n                    \"Left\": 0.6014484763145447,\n                    \"Top\": 0.18225298821926117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6014484763145447,\n                        \"Y\": 0.18225868046283722\n                    },\n                    {\n                        \"X\": 0.6104369163513184,\n                        \"Y\": 0.18225298821926117\n                    },\n                    {\n                        \"X\": 0.6104413270950317,\n                        \"Y\": 0.1872463971376419\n                    },\n                    {\n                        \"X\": 0.6014528870582581,\n                        \"Y\": 0.18725207448005676\n                    }\n                ]\n            },\n            \"Id\": \"e43e996e-bb63-4905-a346-311e99a5edc0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"78dd4dfd-0ba2-4bb1-bd51-7c2716887d48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85304260253906,\n            \"Text\": \"through March 31, 2020, for the\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19574755430221558,\n                    \"Height\": 0.010391437448561192,\n                    \"Left\": 0.10513660311698914,\n                    \"Top\": 0.18570567667484283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10513660311698914,\n                        \"Y\": 0.18582937121391296\n                    },\n                    {\n                        \"X\": 0.3008762300014496,\n                        \"Y\": 0.18570567667484283\n                    },\n                    {\n                        \"X\": 0.3008841574192047,\n                        \"Y\": 0.1959734708070755\n                    },\n                    {\n                        \"X\": 0.10514374822378159,\n                        \"Y\": 0.19609710574150085\n                    }\n                ]\n            },\n            \"Id\": \"78b6b2da-e188-46c4-8cf7-2c5f672018c1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1f630bb5-4e04-49a9-962f-978ed27dc220\",\n                        \"f809a56a-351e-418f-aac3-27b358660de6\",\n                        \"1cfea09d-04a5-4b0f-b866-07fab6a56844\",\n                        \"892b77c5-68c5-4fec-b5be-f97e0a63b595\",\n                        \"8ef08e33-529a-4285-ae77-51b91197ab67\",\n                        \"33500a62-2745-4cb8-83f4-9c4fac16a0fb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 87.44955444335938,\n            \"Text\": \"100.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055328454822301865,\n                    \"Height\": 0.01220959797501564,\n                    \"Left\": 0.6826525926589966,\n                    \"Top\": 0.18042537569999695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6826525926589966,\n                        \"Y\": 0.1804603487253189\n                    },\n                    {\n                        \"X\": 0.737969696521759,\n                        \"Y\": 0.18042537569999695\n                    },\n                    {\n                        \"X\": 0.7379810810089111,\n                        \"Y\": 0.19260002672672272\n                    },\n                    {\n                        \"X\": 0.6826637387275696,\n                        \"Y\": 0.1926349699497223\n                    }\n                ]\n            },\n            \"Id\": \"14608e45-e9cd-42c4-b2d9-0a7794f88842\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b6cca33-3c94-4c65-b694-782e740154a0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84312438964844,\n            \"Text\": \"employee retention credit*\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16512735188007355,\n                    \"Height\": 0.010775092989206314,\n                    \"Left\": 0.10573139041662216,\n                    \"Top\": 0.19605964422225952\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10573139041662216,\n                        \"Y\": 0.19616393744945526\n                    },\n                    {\n                        \"X\": 0.27085062861442566,\n                        \"Y\": 0.19605964422225952\n                    },\n                    {\n                        \"X\": 0.2708587348461151,\n                        \"Y\": 0.20673049986362457\n                    },\n                    {\n                        \"X\": 0.1057388186454773,\n                        \"Y\": 0.20683473348617554\n                    }\n                ]\n            },\n            \"Id\": \"7c8c1a2f-116f-41ea-99a7-cbadce54f187\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c7eddbbf-0bdb-40ef-b652-b4d7396d7fc8\",\n                        \"ce3ad516-8259-4248-a375-3e1893ecf4fe\",\n                        \"6ad080f1-fa44-457b-bf74-3131de55e46a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86707305908203,\n            \"Text\": \"Use line 33a to correct only the second quarter of 2020.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2454262375831604,\n                    \"Height\": 0.00904457364231348,\n                    \"Left\": 0.3226238787174225,\n                    \"Top\": 0.19912683963775635\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3226238787174225,\n                        \"Y\": 0.19928182661533356\n                    },\n                    {\n                        \"X\": 0.5680423378944397,\n                        \"Y\": 0.19912683963775635\n                    },\n                    {\n                        \"X\": 0.5680500864982605,\n                        \"Y\": 0.2080165147781372\n                    },\n                    {\n                        \"X\": 0.32263079285621643,\n                        \"Y\": 0.20817141234874725\n                    }\n                ]\n            },\n            \"Id\": \"77ce52e2-dff2-43b5-8da0-66507bd52417\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13859db3-5559-4568-b1c4-b64160b2a208\",\n                        \"2763226e-b62a-4c3a-8d94-d2bcd9695906\",\n                        \"49182a97-c583-4af7-8f2b-eb59da24208b\",\n                        \"80e03e12-68fc-4597-bb19-973806f9645b\",\n                        \"57e03145-f39e-4ff3-aa1d-efb57e05c5d9\",\n                        \"a9417aaf-8832-476a-b64f-6b6a7fb7d3aa\",\n                        \"ca23e7fd-5db0-44f5-8810-8645dbe38ab4\",\n                        \"90fa01db-a28a-4a68-a6f4-147012cc91e9\",\n                        \"3556bcc0-baa3-43e3-9f95-cb2b1e0564df\",\n                        \"72893b6c-523d-4c6e-b6f6-d1ea950bc67a\",\n                        \"51013915-1cf1-4128-93ff-5dd24236e53e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51358795166016,\n            \"Text\": \"(Form 941 or 941-SS, line 24)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1713639199733734,\n                    \"Height\": 0.010661412961781025,\n                    \"Left\": 0.10561611503362656,\n                    \"Top\": 0.20629623532295227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10561611503362656,\n                        \"Y\": 0.2064044028520584\n                    },\n                    {\n                        \"X\": 0.2769719958305359,\n                        \"Y\": 0.20629623532295227\n                    },\n                    {\n                        \"X\": 0.27698004245758057,\n                        \"Y\": 0.21684953570365906\n                    },\n                    {\n                        \"X\": 0.10562346130609512,\n                        \"Y\": 0.21695764362812042\n                    }\n                ]\n            },\n            \"Id\": \"d3572334-2ea4-4980-933b-6d948ecb12cc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a8062e1e-9e3a-4d0d-a0c1-5797f1436159\",\n                        \"b26098a6-debe-4809-a2dd-c4b3e79457a5\",\n                        \"03eca0ac-f281-4780-9fb8-d55673a4c7ba\",\n                        \"9b93ea06-fbde-412c-b2f0-240af73285db\",\n                        \"d79deac8-8d1d-4fc2-86b9-612e83a5791a\",\n                        \"a8673706-99ff-4fcb-b303-8bf2685af2ed\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9325180053711,\n            \"Text\": \"33b. Deferred amount of the\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1905079483985901,\n                    \"Height\": 0.008849947713315487,\n                    \"Left\": 0.06089235842227936,\n                    \"Top\": 0.2285906970500946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06089235842227936,\n                        \"Y\": 0.22871080040931702\n                    },\n                    {\n                        \"X\": 0.25139373540878296,\n                        \"Y\": 0.2285906970500946\n                    },\n                    {\n                        \"X\": 0.25140029191970825,\n                        \"Y\": 0.23732058703899384\n                    },\n                    {\n                        \"X\": 0.06089828535914421,\n                        \"Y\": 0.23744064569473267\n                    }\n                ]\n            },\n            \"Id\": \"f3cf906a-ca6b-4fd5-8522-a0a165d9469e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6ba74f1c-58ea-419d-9742-9fddeede2ee5\",\n                        \"bdf2f96f-82d9-4301-a5b5-8cdec9b67194\",\n                        \"79046930-5fb6-4cd1-a470-7d1addd6f64f\",\n                        \"62f7a8ca-7b64-4db9-8f96-61a14fb6ee72\",\n                        \"281a63db-4988-473d-b7d8-518f3d3a026b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 89.76747131347656,\n            \"Text\": \"210.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08283252269029617,\n                    \"Height\": 0.01222586166113615,\n                    \"Left\": 0.3751921057701111,\n                    \"Top\": 0.23412086069583893\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3751921057701111,\n                        \"Y\": 0.23417305946350098\n                    },\n                    {\n                        \"X\": 0.45801451802253723,\n                        \"Y\": 0.23412086069583893\n                    },\n                    {\n                        \"X\": 0.45802462100982666,\n                        \"Y\": 0.2462945580482483\n                    },\n                    {\n                        \"X\": 0.3752018213272095,\n                        \"Y\": 0.24634672701358795\n                    }\n                ]\n            },\n            \"Id\": \"14b0329b-2cba-40c5-bb36-adfbde4beab5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e4197016-b0a3-409b-8da5-14a969811c91\",\n                        \"a28f96b7-39b3-467e-bde2-057f2a3ba9a4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 80.9785385131836,\n            \"Text\": \"120.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05605108663439751,\n                    \"Height\": 0.01186947152018547,\n                    \"Left\": 0.5294727087020874,\n                    \"Top\": 0.23394015431404114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5294727087020874,\n                        \"Y\": 0.23397548496723175\n                    },\n                    {\n                        \"X\": 0.5855134129524231,\n                        \"Y\": 0.23394015431404114\n                    },\n                    {\n                        \"X\": 0.585523784160614,\n                        \"Y\": 0.24577432870864868\n                    },\n                    {\n                        \"X\": 0.5294828414916992,\n                        \"Y\": 0.2458096295595169\n                    }\n                ]\n            },\n            \"Id\": \"fded7c98-4ded-4de4-b01c-d2466f669200\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3e14b7a9-3bc8-4607-97a4-8de9c4215f2d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.24295806884766,\n            \"Text\": \"=\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009387693367898464,\n                    \"Height\": 0.004370951559394598,\n                    \"Left\": 0.601214587688446,\n                    \"Top\": 0.23593702912330627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.601214587688446,\n                        \"Y\": 0.23594294488430023\n                    },\n                    {\n                        \"X\": 0.6105983853340149,\n                        \"Y\": 0.23593702912330627\n                    },\n                    {\n                        \"X\": 0.6106022596359253,\n                        \"Y\": 0.24030207097530365\n                    },\n                    {\n                        \"X\": 0.6012184023857117,\n                        \"Y\": 0.2403079867362976\n                    }\n                ]\n            },\n            \"Id\": \"2159ec78-416b-4785-b1bc-e485da743a51\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9185cf32-9f6d-4f10-8d24-dbbb66655aa6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93633270263672,\n            \"Text\": \"employee share of social\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15613694489002228,\n                    \"Height\": 0.010191450826823711,\n                    \"Left\": 0.10550272464752197,\n                    \"Top\": 0.23908604681491852\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10550272464752197,\n                        \"Y\": 0.2391844242811203\n                    },\n                    {\n                        \"X\": 0.2616320550441742,\n                        \"Y\": 0.23908604681491852\n                    },\n                    {\n                        \"X\": 0.26163968443870544,\n                        \"Y\": 0.2491791695356369\n                    },\n                    {\n                        \"X\": 0.10550975054502487,\n                        \"Y\": 0.2492774873971939\n                    }\n                ]\n            },\n            \"Id\": \"9b99c31d-b454-4cfa-af88-454153a70991\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"81281da4-ef0d-410f-b2a0-996c0591e64d\",\n                        \"2a87bc52-17df-4526-a94b-12d6c3ba7e11\",\n                        \"f47df568-d096-4e2d-8842-673837488d32\",\n                        \"cbd3312b-c636-4d45-b6e1-ebde52e458eb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 87.79374694824219,\n            \"Text\": \"90.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04935430362820625,\n                    \"Height\": 0.012386838905513287,\n                    \"Left\": 0.6888339519500732,\n                    \"Top\": 0.23400524258613586\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6888339519500732,\n                        \"Y\": 0.23403634130954742\n                    },\n                    {\n                        \"X\": 0.738176703453064,\n                        \"Y\": 0.23400524258613586\n                    },\n                    {\n                        \"X\": 0.7381882667541504,\n                        \"Y\": 0.24636100232601166\n                    },\n                    {\n                        \"X\": 0.6888452768325806,\n                        \"Y\": 0.24639208614826202\n                    }\n                ]\n            },\n            \"Id\": \"bf5777e2-f423-4e5c-a37d-2d5c7b084be1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e5b0e7bb-a085-471f-b2e0-eb33b7d0c98a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9508285522461,\n            \"Text\": \"security tax included on Form\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1858394742012024,\n                    \"Height\": 0.010414510034024715,\n                    \"Left\": 0.10527303814888,\n                    \"Top\": 0.24876053631305695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10527303814888,\n                        \"Y\": 0.24887757003307343\n                    },\n                    {\n                        \"X\": 0.29110461473464966,\n                        \"Y\": 0.24876053631305695\n                    },\n                    {\n                        \"X\": 0.2911125123500824,\n                        \"Y\": 0.2590580880641937\n                    },\n                    {\n                        \"X\": 0.10528020560741425,\n                        \"Y\": 0.25917503237724304\n                    }\n                ]\n            },\n            \"Id\": \"6827cd2b-fbb2-449d-bda8-87ea797b90dc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b6ca5031-1b8d-4eb6-8098-4210cf7a3c41\",\n                        \"64fc9bff-165c-4ed2-a3c1-c1e2d510bc41\",\n                        \"85fcecbf-5213-44f0-af15-d5af156fd591\",\n                        \"8fb4e22a-4880-4990-83b3-91da66c3e1c7\",\n                        \"a57b4473-604a-4198-b1c6-670b5b67e5ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82260131835938,\n            \"Text\": \"Use line 33b to correct only the third and fourth quarters of 2020.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2862373888492584,\n                    \"Height\": 0.009058402851223946,\n                    \"Left\": 0.3225351572036743,\n                    \"Top\": 0.2523967921733856\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3225351572036743,\n                        \"Y\": 0.252577006816864\n                    },\n                    {\n                        \"X\": 0.6087646484375,\n                        \"Y\": 0.2523967921733856\n                    },\n                    {\n                        \"X\": 0.6087725162506104,\n                        \"Y\": 0.261275053024292\n                    },\n                    {\n                        \"X\": 0.32254207134246826,\n                        \"Y\": 0.2614551782608032\n                    }\n                ]\n            },\n            \"Id\": \"c099b3d1-35ea-4cd0-979b-85703407e8f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"209544d1-507b-459b-b87c-8eccef48914e\",\n                        \"47d92a32-f442-4c9f-b734-77e61f6d1518\",\n                        \"9b5481dc-ea5f-441c-b38a-acbad0a74c44\",\n                        \"d381565f-cc71-4c93-a3a1-86e135c81235\",\n                        \"e12fc79f-87b6-436d-b956-b0381520d448\",\n                        \"5b59acf8-0822-4894-8cdd-778538821ec5\",\n                        \"78522d46-ab9c-4efd-b78c-7059f95ee687\",\n                        \"a6156362-3d86-436b-9d00-d72a4ba46462\",\n                        \"a522e533-dc41-4c49-aeff-6052ae0d0b93\",\n                        \"1c96c760-2b33-4454-a33e-50cebb87daa9\",\n                        \"a6d6d8b6-9768-4de8-afdf-6fac4f4a06c9\",\n                        \"2b11bd8c-2a4f-4019-85ca-0702ac4313c6\",\n                        \"93c1420f-ec86-4f49-a336-743a736d9f34\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.62075805664062,\n            \"Text\": \"941 or 941-SS, line 13b*\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14711812138557434,\n                    \"Height\": 0.009952117688953876,\n                    \"Left\": 0.10516314208507538,\n                    \"Top\": 0.258790522813797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10516314208507538,\n                        \"Y\": 0.25888311862945557\n                    },\n                    {\n                        \"X\": 0.2522738575935364,\n                        \"Y\": 0.258790522813797\n                    },\n                    {\n                        \"X\": 0.2522812485694885,\n                        \"Y\": 0.2686501145362854\n                    },\n                    {\n                        \"X\": 0.10517000406980515,\n                        \"Y\": 0.2687426507472992\n                    }\n                ]\n            },\n            \"Id\": \"4962b35e-34e7-477e-8d85-7acdbf6d71fb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a45af00c-c88d-44e1-9880-562caef6b8b6\",\n                        \"83bb5bb7-92e8-4bb4-82ac-f47f93ff1280\",\n                        \"eec1145d-5b48-4305-9b43-1cc5469e9662\",\n                        \"86e7951c-5319-4076-929c-23c8f51b4063\",\n                        \"521155fd-0465-4b4c-b00c-a0ace6540d8c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71337890625,\n            \"Text\": \"(Form 941 or 941-SS, line 24)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17153577506542206,\n                    \"Height\": 0.010553142055869102,\n                    \"Left\": 0.10553040355443954,\n                    \"Top\": 0.26936042308807373\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10553040355443954,\n                        \"Y\": 0.2694683074951172\n                    },\n                    {\n                        \"X\": 0.2770582437515259,\n                        \"Y\": 0.26936042308807373\n                    },\n                    {\n                        \"X\": 0.277066171169281,\n                        \"Y\": 0.2798057198524475\n                    },\n                    {\n                        \"X\": 0.10553767532110214,\n                        \"Y\": 0.2799135744571686\n                    }\n                ]\n            },\n            \"Id\": \"a7cb7953-f608-4b58-85a1-7ff059cb0f3b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"de3848fb-d1ce-4e74-b36f-4d9de534bacf\",\n                        \"5274692d-5a31-4ad5-b621-fa784568b3dc\",\n                        \"68f20c00-4a38-4436-9bac-fde523b9e945\",\n                        \"68a67742-07f1-4678-887c-16bbd47696b2\",\n                        \"f32803de-f2c9-47c6-bc90-2611ace63fdd\",\n                        \"87c030c1-746c-451b-9706-919d52238cc9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.67326354980469,\n            \"Text\": \"34.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01830662414431572,\n                    \"Height\": 0.008375938050448895,\n                    \"Left\": 0.0635172426700592,\n                    \"Top\": 0.2894729971885681\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0635172426700592,\n                        \"Y\": 0.28948450088500977\n                    },\n                    {\n                        \"X\": 0.081818126142025,\n                        \"Y\": 0.2894729971885681\n                    },\n                    {\n                        \"X\": 0.08182387053966522,\n                        \"Y\": 0.2978374660015106\n                    },\n                    {\n                        \"X\": 0.06352293491363525,\n                        \"Y\": 0.2978489398956299\n                    }\n                ]\n            },\n            \"Id\": \"8ca26627-b6a9-4ae0-bec2-2f3934c42b69\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b05bd6c7-4572-43e7-9e84-a36848ccec85\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93879699707031,\n            \"Text\": \"Qualified health plan expenses\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1912498027086258,\n                    \"Height\": 0.010826805606484413,\n                    \"Left\": 0.10525456070899963,\n                    \"Top\": 0.2890775501728058\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10525456070899963,\n                        \"Y\": 0.289197713136673\n                    },\n                    {\n                        \"X\": 0.2964961528778076,\n                        \"Y\": 0.2890775501728058\n                    },\n                    {\n                        \"X\": 0.2965043783187866,\n                        \"Y\": 0.29978424310684204\n                    },\n                    {\n                        \"X\": 0.10526201128959656,\n                        \"Y\": 0.29990434646606445\n                    }\n                ]\n            },\n            \"Id\": \"afd336ff-4e31-4a4d-9e11-35e2aedd35c2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"91804ae5-d9c7-47db-ac93-695f91aacb60\",\n                        \"46444dca-796f-4242-9e5c-5a023381cbc0\",\n                        \"0db80c2a-20a8-4eb7-851f-12cfc8c5e4b0\",\n                        \"0900d465-3901-419b-9135-7a6763500b1b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91377258300781,\n            \"Text\": \"allocable to wages reported on\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19419938325881958,\n                    \"Height\": 0.010076853446662426,\n                    \"Left\": 0.10521402955055237,\n                    \"Top\": 0.2997386157512665\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10521402955055237,\n                        \"Y\": 0.29986056685447693\n                    },\n                    {\n                        \"X\": 0.2994057536125183,\n                        \"Y\": 0.2997386157512665\n                    },\n                    {\n                        \"X\": 0.29941341280937195,\n                        \"Y\": 0.3096935749053955\n                    },\n                    {\n                        \"X\": 0.10522095859050751,\n                        \"Y\": 0.3098154664039612\n                    }\n                ]\n            },\n            \"Id\": \"e8d3d62c-cfb1-48db-a58e-d07cba2d2137\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"aa2af6f8-9be7-432e-961c-0fccc376ce83\",\n                        \"707c4e01-4033-4ed4-b8f5-0b4b499cf547\",\n                        \"5628e910-83e9-4c1f-a12e-e0a00ff6d54d\",\n                        \"98435a17-57d2-45b2-8027-e5f7920efc01\",\n                        \"a15424de-54d0-4660-bc90-c8035e71f7a0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 86.8571548461914,\n            \"Text\": \"220.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08233658969402313,\n                    \"Height\": 0.01214607059955597,\n                    \"Left\": 0.3754517138004303,\n                    \"Top\": 0.29474717378616333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3754517138004303,\n                        \"Y\": 0.294798880815506\n                    },\n                    {\n                        \"X\": 0.45777827501296997,\n                        \"Y\": 0.29474717378616333\n                    },\n                    {\n                        \"X\": 0.45778828859329224,\n                        \"Y\": 0.30684155225753784\n                    },\n                    {\n                        \"X\": 0.3754613697528839,\n                        \"Y\": 0.3068932294845581\n                    }\n                ]\n            },\n            \"Id\": \"ba173b0d-4d29-4d8b-8ec5-d3995767f343\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5376c8a6-7fef-404a-aebe-49d1b5a9ad4e\",\n                        \"95749d5d-63c7-4d11-90e0-d9549d5a624d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 93.65704345703125,\n            \"Text\": \"130.00 =\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.081654392182827,\n                    \"Height\": 0.012261617928743362,\n                    \"Left\": 0.5288495421409607,\n                    \"Top\": 0.29473787546157837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5288495421409607,\n                        \"Y\": 0.2947891652584076\n                    },\n                    {\n                        \"X\": 0.6104930639266968,\n                        \"Y\": 0.29473787546157837\n                    },\n                    {\n                        \"X\": 0.6105039119720459,\n                        \"Y\": 0.3069482445716858\n                    },\n                    {\n                        \"X\": 0.5288599729537964,\n                        \"Y\": 0.30699947476387024\n                    }\n                ]\n            },\n            \"Id\": \"6ec0c78d-b61e-48a3-abc6-9378361c750b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"35bca987-b8a3-445a-a20c-cce2445ce0cb\",\n                        \"c5c38b1b-5564-4574-a92f-d987021ff0e6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 88.80714416503906,\n            \"Text\": \"90.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049848522990942,\n                    \"Height\": 0.011761963367462158,\n                    \"Left\": 0.6886180639266968,\n                    \"Top\": 0.2949804961681366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6886180639266968,\n                        \"Y\": 0.29501181840896606\n                    },\n                    {\n                        \"X\": 0.738455593585968,\n                        \"Y\": 0.2949804961681366\n                    },\n                    {\n                        \"X\": 0.7384665608406067,\n                        \"Y\": 0.3067111670970917\n                    },\n                    {\n                        \"X\": 0.6886287927627563,\n                        \"Y\": 0.30674245953559875\n                    }\n                ]\n            },\n            \"Id\": \"521ebe70-57fd-49fd-b680-39bf233d3181\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7cf3780f-a559-4cde-a713-10fe8f8b5e9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.63618469238281,\n            \"Text\": \"Form 941 or 941-SS, line 24*\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17598555982112885,\n                    \"Height\": 0.009923798032104969,\n                    \"Left\": 0.10557776689529419,\n                    \"Top\": 0.30939123034477234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10557776689529419,\n                        \"Y\": 0.30950167775154114\n                    },\n                    {\n                        \"X\": 0.28155583143234253,\n                        \"Y\": 0.30939123034477234\n                    },\n                    {\n                        \"X\": 0.28156334161758423,\n                        \"Y\": 0.3192046284675598\n                    },\n                    {\n                        \"X\": 0.10558459907770157,\n                        \"Y\": 0.3193150460720062\n                    }\n                ]\n            },\n            \"Id\": \"cb874199-81d0-4787-aa9b-fa58ddc5f23c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"088b957a-b8c4-4939-9b57-8b86d4520885\",\n                        \"68f8aa65-f70f-4947-a293-80fe40f46f94\",\n                        \"af63e84f-13fc-47cd-bacc-16825ccb6c66\",\n                        \"7bb2b78b-74fb-4727-9419-51b6de1938e2\",\n                        \"bdf5847d-b1f8-43d0-90b1-b472ea8484ea\",\n                        \"537afa9e-a92f-49fb-a2a1-6bb6da27aa12\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8479995727539,\n            \"Text\": \"Use line 34 to correct only the second quarter of 2020.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23999159038066864,\n                    \"Height\": 0.009167484007775784,\n                    \"Left\": 0.3225236237049103,\n                    \"Top\": 0.3130318820476532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3225236237049103,\n                        \"Y\": 0.3131824731826782\n                    },\n                    {\n                        \"X\": 0.5625073909759521,\n                        \"Y\": 0.3130318820476532\n                    },\n                    {\n                        \"X\": 0.5625151991844177,\n                        \"Y\": 0.3220488429069519\n                    },\n                    {\n                        \"X\": 0.3225306272506714,\n                        \"Y\": 0.32219937443733215\n                    }\n                ]\n            },\n            \"Id\": \"8f8e33ea-2c51-415e-b5ca-189a47c60381\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"821853f0-b5f7-4f20-bb27-cba75979ae0f\",\n                        \"a1b1afe0-302b-49ae-ae2b-9ae6839abddb\",\n                        \"47cd07cd-117f-4d60-8bc7-e8df17b6ed76\",\n                        \"bf02d2f9-53f7-4a68-89e9-321089bfb2c8\",\n                        \"d5674b57-acaf-4157-a95d-bdbacd1fc283\",\n                        \"01c96d7f-276d-4843-bd05-744b02d9534a\",\n                        \"19980346-24bd-4244-b6e4-4833e5eb02df\",\n                        \"19e4e41a-c888-422e-acc3-b87fc9674f85\",\n                        \"9d32acb9-cda4-494a-9f6f-639f1329068f\",\n                        \"9304a8c5-74da-473d-ae78-1243e7165380\",\n                        \"85744ff3-d7e1-4157-a185-41b733f40555\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51216125488281,\n            \"Text\": \"(Form 941 or 941-SS, line 25)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17124970257282257,\n                    \"Height\": 0.010664992034435272,\n                    \"Left\": 0.10549190640449524,\n                    \"Top\": 0.3197248876094818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10549190640449524,\n                        \"Y\": 0.31983232498168945\n                    },\n                    {\n                        \"X\": 0.2767335772514343,\n                        \"Y\": 0.3197248876094818\n                    },\n                    {\n                        \"X\": 0.2767415940761566,\n                        \"Y\": 0.3302825391292572\n                    },\n                    {\n                        \"X\": 0.1054992526769638,\n                        \"Y\": 0.3303898870944977\n                    }\n                ]\n            },\n            \"Id\": \"df1b7a81-62dc-45dd-911b-3af2eb5a000d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a9fe55dc-6006-4862-9ce7-e3ba779b4dfa\",\n                        \"c2e6acaa-ab21-4483-bcbe-cfa5f82e8d21\",\n                        \"4e83a7f9-7a31-4acb-9abe-26826df6e789\",\n                        \"086ed5f2-5030-412f-bcbf-6372fe706145\",\n                        \"13831359-95a2-4f1d-a6a4-aa43b78614f9\",\n                        \"53408ee5-e43f-4c4f-9494-a02d1cdcdcd9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81531524658203,\n            \"Text\": \"Caution: Lines 35-40 apply only to quarters beginning after March 31, 2021.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4464203417301178,\n                    \"Height\": 0.011227736249566078,\n                    \"Left\": 0.05853691324591637,\n                    \"Top\": 0.3442460000514984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05853691324591637,\n                        \"Y\": 0.34452566504478455\n                    },\n                    {\n                        \"X\": 0.5049479603767395,\n                        \"Y\": 0.3442460000514984\n                    },\n                    {\n                        \"X\": 0.5049572587013245,\n                        \"Y\": 0.3551942706108093\n                    },\n                    {\n                        \"X\": 0.0585443377494812,\n                        \"Y\": 0.35547375679016113\n                    }\n                ]\n            },\n            \"Id\": \"076c99f1-6836-41ab-9832-f276547960db\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"48ac3d74-f119-48ce-b9a0-9d274ec6611f\",\n                        \"413032b0-4ea6-4c1c-9e20-5ce6ab29fd22\",\n                        \"071199e0-6682-45e3-b537-c27f695aa65b\",\n                        \"ec83dae7-bc23-473b-b089-48b4466509cb\",\n                        \"90598a7b-008a-4cd5-89d3-f43e3e97a207\",\n                        \"1bb8fd7f-604d-4fbf-aa56-69a1a82cfa13\",\n                        \"be65ba68-7f00-413b-90e5-6ea2dd3020c6\",\n                        \"2134088f-f244-4e8f-9921-fbc505062044\",\n                        \"749bbfae-c304-4702-95af-883804acb387\",\n                        \"e77f5fbc-e5ee-4e44-b83e-3412d1914638\",\n                        \"be9fd715-4656-4403-b172-17e9e0fdfa0d\",\n                        \"d6c674b3-73bc-49a0-a45a-7ccf870dfe23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.8596420288086,\n            \"Text\": \"35.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018254796043038368,\n                    \"Height\": 0.008129538968205452,\n                    \"Left\": 0.06351625174283981,\n                    \"Top\": 0.365373432636261\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06351625174283981,\n                        \"Y\": 0.3653848469257355\n                    },\n                    {\n                        \"X\": 0.08176547288894653,\n                        \"Y\": 0.365373432636261\n                    },\n                    {\n                        \"X\": 0.08177105337381363,\n                        \"Y\": 0.3734915554523468\n                    },\n                    {\n                        \"X\": 0.06352177262306213,\n                        \"Y\": 0.3735029697418213\n                    }\n                ]\n            },\n            \"Id\": \"e218018c-e869-4752-bc69-8853ee17e885\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e69cbb2d-3279-45d1-bded-446fee6f1172\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90612030029297,\n            \"Text\": \"Qualified sick leave wages for\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18283867835998535,\n                    \"Height\": 0.01039346493780613,\n                    \"Left\": 0.10582323372364044,\n                    \"Top\": 0.3650880455970764\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10582323372364044,\n                        \"Y\": 0.3652024567127228\n                    },\n                    {\n                        \"X\": 0.28865405917167664,\n                        \"Y\": 0.3650880455970764\n                    },\n                    {\n                        \"X\": 0.288661926984787,\n                        \"Y\": 0.3753671944141388\n                    },\n                    {\n                        \"X\": 0.10583038628101349,\n                        \"Y\": 0.375481516122818\n                    }\n                ]\n            },\n            \"Id\": \"ed8432d6-ee00-482c-9280-be831c5b66d2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0b8e5d86-2a1e-486a-9e5b-818d19e8ccfb\",\n                        \"2b139f9a-6c39-4b29-bc15-291574bb7c3a\",\n                        \"aa2090e0-8650-4f32-a963-35f06e5a3f87\",\n                        \"57980083-caf8-4508-ac6d-b173d3bdf089\",\n                        \"b4b40a5a-d9d6-48b9-9a8a-bade1f3ccada\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 92.54530334472656,\n            \"Text\": \"230.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08228085190057755,\n                    \"Height\": 0.01242020446807146,\n                    \"Left\": 0.37544888257980347,\n                    \"Top\": 0.3704783022403717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37544888257980347,\n                        \"Y\": 0.37052974104881287\n                    },\n                    {\n                        \"X\": 0.45771947503089905,\n                        \"Y\": 0.3704783022403717\n                    },\n                    {\n                        \"X\": 0.4577297270298004,\n                        \"Y\": 0.3828470706939697\n                    },\n                    {\n                        \"X\": 0.3754587471485138,\n                        \"Y\": 0.3828984797000885\n                    }\n                ]\n            },\n            \"Id\": \"79082bf5-096e-49ad-ad57-40a696b71e8e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"39af1d49-789e-40dd-ab1e-1973d54caaf1\",\n                        \"3f4e932d-2304-48fb-bd4c-b1c9a16afac1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 88.6269302368164,\n            \"Text\": \"140.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05741075798869133,\n                    \"Height\": 0.01299196109175682,\n                    \"Left\": 0.5287108421325684,\n                    \"Top\": 0.3702261745929718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287108421325684,\n                        \"Y\": 0.370262086391449\n                    },\n                    {\n                        \"X\": 0.5861102342605591,\n                        \"Y\": 0.3702261745929718\n                    },\n                    {\n                        \"X\": 0.5861216187477112,\n                        \"Y\": 0.38318225741386414\n                    },\n                    {\n                        \"X\": 0.5287219285964966,\n                        \"Y\": 0.3832181394100189\n                    }\n                ]\n            },\n            \"Id\": \"4fef6238-66ee-4448-8814-84e22535c374\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"92938ed0-ba2b-459c-91ff-ce72ab0cfca1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.71869659423828,\n            \"Text\": \"=\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009547950699925423,\n                    \"Height\": 0.0045936875976622105,\n                    \"Left\": 0.6011710166931152,\n                    \"Top\": 0.37197285890579224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011710166931152,\n                        \"Y\": 0.3719788193702698\n                    },\n                    {\n                        \"X\": 0.6107149124145508,\n                        \"Y\": 0.37197285890579224\n                    },\n                    {\n                        \"X\": 0.6107189655303955,\n                        \"Y\": 0.3765605688095093\n                    },\n                    {\n                        \"X\": 0.60117506980896,\n                        \"Y\": 0.3765665292739868\n                    }\n                ]\n            },\n            \"Id\": \"6239c29d-1247-4f4a-8f31-cec548e0aefc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ba189ad3-167b-4dbd-9803-cdaa0deba1a5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87812805175781,\n            \"Text\": \"leave taken after March 31, 2021\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19727687537670135,\n                    \"Height\": 0.009589319117367268,\n                    \"Left\": 0.10513628274202347,\n                    \"Top\": 0.37548547983169556\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10513628274202347,\n                        \"Y\": 0.3756088316440582\n                    },\n                    {\n                        \"X\": 0.30240586400032043,\n                        \"Y\": 0.37548547983169556\n                    },\n                    {\n                        \"X\": 0.3024131655693054,\n                        \"Y\": 0.38495150208473206\n                    },\n                    {\n                        \"X\": 0.10514286905527115,\n                        \"Y\": 0.38507479429244995\n                    }\n                ]\n            },\n            \"Id\": \"c7dce60d-ba34-4eab-b264-6bf2e46a75d6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6015ee89-784e-4553-94b6-8d490e705537\",\n                        \"69473469-f88f-4596-8377-49a45f54ffac\",\n                        \"61680c47-cd23-499f-ab20-529ed3ae98a6\",\n                        \"ed6d51a3-5e24-4bac-ba78-8c8848b32280\",\n                        \"6de8957f-33a7-47f5-ac79-88c8375f387e\",\n                        \"bd5d5d05-07d1-40fa-9c42-5604b99c741c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 87.86308288574219,\n            \"Text\": \"90.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049315184354782104,\n                    \"Height\": 0.012190680019557476,\n                    \"Left\": 0.689001739025116,\n                    \"Top\": 0.3702683448791504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.689001739025116,\n                        \"Y\": 0.37029919028282166\n                    },\n                    {\n                        \"X\": 0.7383055090904236,\n                        \"Y\": 0.3702683448791504\n                    },\n                    {\n                        \"X\": 0.7383168935775757,\n                        \"Y\": 0.38242822885513306\n                    },\n                    {\n                        \"X\": 0.689012885093689,\n                        \"Y\": 0.38245904445648193\n                    }\n                ]\n            },\n            \"Id\": \"98160e68-4288-4acb-b147-e4b730e05c63\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ba1a6e76-6d4d-4e85-bea7-9f1b893bda27\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.62745666503906,\n            \"Text\": \"(Form 941 or 941-SS, line 23)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16808564960956573,\n                    \"Height\": 0.01064208708703518,\n                    \"Left\": 0.10567844659090042,\n                    \"Top\": 0.38516122102737427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10567844659090042,\n                        \"Y\": 0.3852662742137909\n                    },\n                    {\n                        \"X\": 0.27375608682632446,\n                        \"Y\": 0.38516122102737427\n                    },\n                    {\n                        \"X\": 0.27376410365104675,\n                        \"Y\": 0.39569833874702454\n                    },\n                    {\n                        \"X\": 0.1056857779622078,\n                        \"Y\": 0.395803302526474\n                    }\n                ]\n            },\n            \"Id\": \"7dfb4ce0-ab97-493f-b7a1-fc8d3c394f72\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c0fe1de8-3513-46c5-a63f-23b2eee13ec0\",\n                        \"6ee9eafc-da0f-49aa-bed0-731af3530c6e\",\n                        \"172f36a9-7dc8-4b10-abd0-5554c8725699\",\n                        \"4eee168d-a044-4edd-93c9-46e1fcc6c5b8\",\n                        \"edd1c55a-d1a8-46ce-a400-6ea6f5e0612a\",\n                        \"0f30fa76-a600-4c44-a7e8-cb1cd6efb01c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.80213928222656,\n            \"Text\": \"36.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018161946907639503,\n                    \"Height\": 0.008172146044671535,\n                    \"Left\": 0.06351035088300705,\n                    \"Top\": 0.41086676716804504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06351035088300705,\n                        \"Y\": 0.41087809205055237\n                    },\n                    {\n                        \"X\": 0.08166669309139252,\n                        \"Y\": 0.41086676716804504\n                    },\n                    {\n                        \"X\": 0.0816722959280014,\n                        \"Y\": 0.41902756690979004\n                    },\n                    {\n                        \"X\": 0.06351590156555176,\n                        \"Y\": 0.41903892159461975\n                    }\n                ]\n            },\n            \"Id\": \"3a1ec0a3-f8d7-4b5d-a0c0-d62ed80e082b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"399d54f6-0fec-40c3-9ec8-f585116d5556\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92327880859375,\n            \"Text\": \"Qualified health plan expenses\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19105291366577148,\n                    \"Height\": 0.010504099540412426,\n                    \"Left\": 0.10548035800457001,\n                    \"Top\": 0.41051146388053894\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10548035800457001,\n                        \"Y\": 0.4106306731700897\n                    },\n                    {\n                        \"X\": 0.2965252995491028,\n                        \"Y\": 0.41051146388053894\n                    },\n                    {\n                        \"X\": 0.2965332567691803,\n                        \"Y\": 0.42089638113975525\n                    },\n                    {\n                        \"X\": 0.10548758506774902,\n                        \"Y\": 0.42101556062698364\n                    }\n                ]\n            },\n            \"Id\": \"d1b00e5f-a8c7-4eee-9eda-25d043187221\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9b2f4c19-15f6-475f-9974-ee150c1664d7\",\n                        \"13ea1576-d9bc-4d05-b640-bd00145f38d3\",\n                        \"eb06f05c-0893-42e8-8798-be5cdf12918b\",\n                        \"859e0a5d-abfc-449e-82b3-b61bc4ddcfa1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 92.43965911865234,\n            \"Text\": \"240.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05794569477438927,\n                    \"Height\": 0.01244847197085619,\n                    \"Left\": 0.37531670928001404,\n                    \"Top\": 0.4158790111541748\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37531670928001404,\n                        \"Y\": 0.4159151613712311\n                    },\n                    {\n                        \"X\": 0.4332522451877594,\n                        \"Y\": 0.4158790111541748\n                    },\n                    {\n                        \"X\": 0.4332624077796936,\n                        \"Y\": 0.42829135060310364\n                    },\n                    {\n                        \"X\": 0.37532663345336914,\n                        \"Y\": 0.4283275008201599\n                    }\n                ]\n            },\n            \"Id\": \"eee02c64-cdbe-4d3f-b8fd-a9fa376a802b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"43be48c6-de0c-459c-a2b5-81427608e67b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.13249969482422,\n            \"Text\": \"-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010289106518030167,\n                    \"Height\": 0.002751680789515376,\n                    \"Left\": 0.44739171862602234,\n                    \"Top\": 0.4180038869380951\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44739171862602234,\n                        \"Y\": 0.41801032423973083\n                    },\n                    {\n                        \"X\": 0.45767855644226074,\n                        \"Y\": 0.4180038869380951\n                    },\n                    {\n                        \"X\": 0.4576808214187622,\n                        \"Y\": 0.42074915766716003\n                    },\n                    {\n                        \"X\": 0.4473939836025238,\n                        \"Y\": 0.4207555651664734\n                    }\n                ]\n            },\n            \"Id\": \"a302efbf-3939-42e2-9725-a9853202363e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"42a8f8fd-07cc-4ef5-813e-f9c3dedbfde2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88842010498047,\n            \"Text\": \"allocable to qualified sick leave\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19464193284511566,\n                    \"Height\": 0.010398424230515957,\n                    \"Left\": 0.10532832890748978,\n                    \"Top\": 0.42085200548171997\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10532832890748978,\n                        \"Y\": 0.42097342014312744\n                    },\n                    {\n                        \"X\": 0.2999623417854309,\n                        \"Y\": 0.42085200548171997\n                    },\n                    {\n                        \"X\": 0.29997026920318604,\n                        \"Y\": 0.4311290979385376\n                    },\n                    {\n                        \"X\": 0.10533548146486282,\n                        \"Y\": 0.4312504529953003\n                    }\n                ]\n            },\n            \"Id\": \"f082f77d-13e3-4ad7-a593-0abd07a42dc3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a069d73-a554-427f-8887-53a5d11d8fac\",\n                        \"eb7cf71b-ff4b-448b-a175-55ca3005bf72\",\n                        \"764c3abb-cd1d-4136-bce9-3a895bdc7652\",\n                        \"087913a5-d22d-4117-baac-d505e32938ba\",\n                        \"9d0388b1-f674-481f-acdb-0bd440163b96\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 68.8900375366211,\n            \"Text\": \"150.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05753207206726074,\n                    \"Height\": 0.012098479084670544,\n                    \"Left\": 0.5287590622901917,\n                    \"Top\": 0.41574129462242126\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287590622901917,\n                        \"Y\": 0.41577720642089844\n                    },\n                    {\n                        \"X\": 0.5862805843353271,\n                        \"Y\": 0.41574129462242126\n                    },\n                    {\n                        \"X\": 0.5862911343574524,\n                        \"Y\": 0.4278039336204529\n                    },\n                    {\n                        \"X\": 0.5287694334983826,\n                        \"Y\": 0.4278397858142853\n                    }\n                ]\n            },\n            \"Id\": \"1c77417e-997c-45e6-846b-3e32106222e4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"79b2ec2e-601d-47a7-94e6-d75a83d8f521\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.95614624023438,\n            \"Text\": \"=\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009264691732823849,\n                    \"Height\": 0.005182179156690836,\n                    \"Left\": 0.6013018488883972,\n                    \"Top\": 0.4173119366168976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6013018488883972,\n                        \"Y\": 0.4173176884651184\n                    },\n                    {\n                        \"X\": 0.6105619668960571,\n                        \"Y\": 0.4173119366168976\n                    },\n                    {\n                        \"X\": 0.6105665564537048,\n                        \"Y\": 0.42248833179473877\n                    },\n                    {\n                        \"X\": 0.6013064384460449,\n                        \"Y\": 0.422494113445282\n                    }\n                ]\n            },\n            \"Id\": \"83e9f5aa-e379-45f7-b853-f567a33cf036\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6bb1e016-9c01-4c35-b3c6-7383e983d821\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 87.9940185546875,\n            \"Text\": \"90.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04932050779461861,\n                    \"Height\": 0.012370050884783268,\n                    \"Left\": 0.6886778473854065,\n                    \"Top\": 0.4155575633049011\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6886778473854065,\n                        \"Y\": 0.4155883193016052\n                    },\n                    {\n                        \"X\": 0.7379868030548096,\n                        \"Y\": 0.4155575633049011\n                    },\n                    {\n                        \"X\": 0.737998366355896,\n                        \"Y\": 0.4278968572616577\n                    },\n                    {\n                        \"X\": 0.6886891722679138,\n                        \"Y\": 0.4279276132583618\n                    }\n                ]\n            },\n            \"Id\": \"5d1b50e4-7ccb-4307-b910-044facb94db5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7aeba67-4cd6-401c-bd9f-ccf2ba7773c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9030990600586,\n            \"Text\": \"wages for leave taken after\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1705828458070755,\n                    \"Height\": 0.010304748080670834,\n                    \"Left\": 0.10487339645624161,\n                    \"Top\": 0.4306122064590454\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10487339645624161,\n                        \"Y\": 0.4307185411453247\n                    },\n                    {\n                        \"X\": 0.2754484713077545,\n                        \"Y\": 0.4306122064590454\n                    },\n                    {\n                        \"X\": 0.2754562497138977,\n                        \"Y\": 0.4408106803894043\n                    },\n                    {\n                        \"X\": 0.10488049685955048,\n                        \"Y\": 0.4409169554710388\n                    }\n                ]\n            },\n            \"Id\": \"0d339427-6496-40c7-9cee-bc4c63e27ccb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"87005e29-5773-4012-8d46-ce5a8391301e\",\n                        \"90a91f57-dfd6-48d5-ac06-24c638134860\",\n                        \"0d329832-7be0-4cac-8623-ee4fbd1d43e1\",\n                        \"fdb0079e-dcab-434b-9166-fd81c7bbc69f\",\n                        \"17e9378a-5c54-41cf-94ff-482474520b88\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90884399414062,\n            \"Text\": \"March 31, 2021 (Form 941 or\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17378956079483032,\n                    \"Height\": 0.010732588358223438,\n                    \"Left\": 0.10552758723497391,\n                    \"Top\": 0.4407632648944855\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10552758723497391,\n                        \"Y\": 0.44087153673171997\n                    },\n                    {\n                        \"X\": 0.27930906414985657,\n                        \"Y\": 0.4407632648944855\n                    },\n                    {\n                        \"X\": 0.27931714057922363,\n                        \"Y\": 0.4513876438140869\n                    },\n                    {\n                        \"X\": 0.10553497821092606,\n                        \"Y\": 0.45149585604667664\n                    }\n                ]\n            },\n            \"Id\": \"c615af07-2ef7-4e0f-9bbc-5716d3efae9e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a2cdd6a4-b71e-4c34-ad95-fa8ec0df750d\",\n                        \"56f516a2-2dd0-4e8c-87c1-2c233658aa49\",\n                        \"4a8fb786-efa3-4f65-9315-ef6573b75424\",\n                        \"beefc999-0cef-49b1-b8d9-8efa5d0fce9b\",\n                        \"532726a7-f198-4dbf-adfe-c5ba063f2a07\",\n                        \"c3afa90a-1344-4312-9a28-b277ee894495\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4794692993164,\n            \"Text\": \"941-SS, line 24)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09380991756916046,\n                    \"Height\": 0.010703051462769508,\n                    \"Left\": 0.10520079731941223,\n                    \"Top\": 0.4511607587337494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10520079731941223,\n                        \"Y\": 0.4512191712856293\n                    },\n                    {\n                        \"X\": 0.1990029364824295,\n                        \"Y\": 0.4511607587337494\n                    },\n                    {\n                        \"X\": 0.1990107148885727,\n                        \"Y\": 0.46180543303489685\n                    },\n                    {\n                        \"X\": 0.10520821064710617,\n                        \"Y\": 0.46186381578445435\n                    }\n                ]\n            },\n            \"Id\": \"d1c9bbd6-ab81-4569-9c69-6bde1bd9b67d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6493d997-ae96-404b-b5ef-9afe715b6290\",\n                        \"ae84df34-e9f1-4431-b6ba-1ee3ffd16c3f\",\n                        \"24ea16cc-4ef3-4a02-bfc3-510072e260de\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9541015625,\n            \"Text\": \"37.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01813887618482113,\n                    \"Height\": 0.008162067271769047,\n                    \"Left\": 0.06357889622449875,\n                    \"Top\": 0.47138798236846924\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06357889622449875,\n                        \"Y\": 0.4713992476463318\n                    },\n                    {\n                        \"X\": 0.08171217143535614,\n                        \"Y\": 0.47138798236846924\n                    },\n                    {\n                        \"X\": 0.08171776682138443,\n                        \"Y\": 0.47953876852989197\n                    },\n                    {\n                        \"X\": 0.06358443945646286,\n                        \"Y\": 0.4795500636100769\n                    }\n                ]\n            },\n            \"Id\": \"d87a803b-a4bc-4edc-b08a-c53449618ba0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f29ab35f-c10d-4707-837b-932da690fea2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95716857910156,\n            \"Text\": \"Amounts under certain\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14354288578033447,\n                    \"Height\": 0.008495578542351723,\n                    \"Left\": 0.10482832789421082,\n                    \"Top\": 0.47128796577453613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10482832789421082,\n                        \"Y\": 0.4713772237300873\n                    },\n                    {\n                        \"X\": 0.2483649104833603,\n                        \"Y\": 0.47128796577453613\n                    },\n                    {\n                        \"X\": 0.2483712136745453,\n                        \"Y\": 0.47969430685043335\n                    },\n                    {\n                        \"X\": 0.1048341765999794,\n                        \"Y\": 0.4797835350036621\n                    }\n                ]\n            },\n            \"Id\": \"c9a38f93-1691-4452-ab39-c4f624b203d5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15e2fefc-e2f7-418b-8f28-206173ebbdbc\",\n                        \"c6ec4eb3-aad6-4c6d-acc7-f323e876a429\",\n                        \"c0521400-1157-4fd5-a3a5-02cb5603563a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91232299804688,\n            \"Text\": \"collectively bargained\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13630704581737518,\n                    \"Height\": 0.010379654355347157,\n                    \"Left\": 0.10560070723295212,\n                    \"Top\": 0.48141351342201233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10560070723295212,\n                        \"Y\": 0.48149824142456055\n                    },\n                    {\n                        \"X\": 0.24190004169940948,\n                        \"Y\": 0.48141351342201233\n                    },\n                    {\n                        \"X\": 0.2419077455997467,\n                        \"Y\": 0.4917084872722626\n                    },\n                    {\n                        \"X\": 0.10560786724090576,\n                        \"Y\": 0.491793155670166\n                    }\n                ]\n            },\n            \"Id\": \"4bdb8f5c-a1a2-4739-88b0-e8395d32d82b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b65ba672-6133-48f6-b55f-5b47dbe1805d\",\n                        \"4b36ca5f-de43-4e77-8d2c-77d61d27544e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 89.78782653808594,\n            \"Text\": \"250.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08206461369991302,\n                    \"Height\": 0.012353023514151573,\n                    \"Left\": 0.3756330609321594,\n                    \"Top\": 0.4764115810394287\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3756330609321594,\n                        \"Y\": 0.47646260261535645\n                    },\n                    {\n                        \"X\": 0.45768746733665466,\n                        \"Y\": 0.4764115810394287\n                    },\n                    {\n                        \"X\": 0.45769768953323364,\n                        \"Y\": 0.4887136220932007\n                    },\n                    {\n                        \"X\": 0.37564289569854736,\n                        \"Y\": 0.48876461386680603\n                    }\n                ]\n            },\n            \"Id\": \"8b95d8db-82d8-4c5c-b0e7-a881d35da464\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dd90e20b-90a6-438e-ae4f-9c644f4c76a2\",\n                        \"7e3944fe-1519-4dc7-81a1-48d761f23d0e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 91.17464447021484,\n            \"Text\": \"160.00 =\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08159743994474411,\n                    \"Height\": 0.011766058392822742,\n                    \"Left\": 0.529114305973053,\n                    \"Top\": 0.4763672947883606\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.529114305973053,\n                        \"Y\": 0.47641804814338684\n                    },\n                    {\n                        \"X\": 0.6107013821601868,\n                        \"Y\": 0.4763672947883606\n                    },\n                    {\n                        \"X\": 0.6107117533683777,\n                        \"Y\": 0.4880826771259308\n                    },\n                    {\n                        \"X\": 0.52912437915802,\n                        \"Y\": 0.48813337087631226\n                    }\n                ]\n            },\n            \"Id\": \"2a6d0d87-ddd2-4c0f-8d1a-dc01370c8616\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9097f55d-a9a5-4cf7-893f-a2e079873104\",\n                        \"5547fb53-a0e1-4186-805e-a56c785b21e6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 58.42528533935547,\n            \"Text\": \"90.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04958689585328102,\n                    \"Height\": 0.012102179229259491,\n                    \"Left\": 0.6887965798377991,\n                    \"Top\": 0.4760252833366394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6887965798377991,\n                        \"Y\": 0.4760560989379883\n                    },\n                    {\n                        \"X\": 0.7383722066879272,\n                        \"Y\": 0.4760252833366394\n                    },\n                    {\n                        \"X\": 0.7383834719657898,\n                        \"Y\": 0.4880966544151306\n                    },\n                    {\n                        \"X\": 0.6888076663017273,\n                        \"Y\": 0.4881274402141571\n                    }\n                ]\n            },\n            \"Id\": \"3e8a306a-1d2a-48eb-82ef-c9b4376a32e9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d570772a-dfb0-4823-838e-77202e3dc7ea\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9189453125,\n            \"Text\": \"agreements allocable to\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15003354847431183,\n                    \"Height\": 0.010170388035476208,\n                    \"Left\": 0.10555913299322128,\n                    \"Top\": 0.49137043952941895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10555913299322128,\n                        \"Y\": 0.49146366119384766\n                    },\n                    {\n                        \"X\": 0.25558510422706604,\n                        \"Y\": 0.49137043952941895\n                    },\n                    {\n                        \"X\": 0.2555926740169525,\n                        \"Y\": 0.5014476776123047\n                    },\n                    {\n                        \"X\": 0.10556615144014359,\n                        \"Y\": 0.5015408396720886\n                    }\n                ]\n            },\n            \"Id\": \"a259a585-b1ce-4c0e-901a-097b83bec105\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"432fb44e-3185-4821-ab7e-1b7de6b12cee\",\n                        \"898a1345-3fdf-4521-b20f-901eba3ef485\",\n                        \"71b90d46-6d3b-4c58-bd94-c28bc7607502\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9351577758789,\n            \"Text\": \"qualified sick leave wages for\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1844489574432373,\n                    \"Height\": 0.01054263487458229,\n                    \"Left\": 0.10571426898241043,\n                    \"Top\": 0.5014373064041138\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10571426898241043,\n                        \"Y\": 0.5015518665313721\n                    },\n                    {\n                        \"X\": 0.29015523195266724,\n                        \"Y\": 0.5014373064041138\n                    },\n                    {\n                        \"X\": 0.29016321897506714,\n                        \"Y\": 0.511865496635437\n                    },\n                    {\n                        \"X\": 0.10572153329849243,\n                        \"Y\": 0.5119799375534058\n                    }\n                ]\n            },\n            \"Id\": \"c99fe475-c012-4da5-a829-175e792eb308\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0b6c2081-e114-4993-acb5-a04f60b15027\",\n                        \"d78af635-507c-4859-8449-e9c5842d08d4\",\n                        \"a7e22ff6-c6ce-4e70-a388-e7f67581ba82\",\n                        \"86703745-c561-41ba-9f52-b1bbd83820a2\",\n                        \"42036e51-6ad2-4984-9127-043fa96be4e3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8470230102539,\n            \"Text\": \"leave taken after March 31,\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16920092701911926,\n                    \"Height\": 0.00998571328818798,\n                    \"Left\": 0.10547450929880142,\n                    \"Top\": 0.5118607878684998\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547450929880142,\n                        \"Y\": 0.511965811252594\n                    },\n                    {\n                        \"X\": 0.2746679186820984,\n                        \"Y\": 0.5118607878684998\n                    },\n                    {\n                        \"X\": 0.2746754288673401,\n                        \"Y\": 0.5217415690422058\n                    },\n                    {\n                        \"X\": 0.10548138618469238,\n                        \"Y\": 0.5218465328216553\n                    }\n                ]\n            },\n            \"Id\": \"45b274cf-d802-4402-a303-4eaab3ff1f04\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9062eb26-0bba-4c35-ba29-89355c059aeb\",\n                        \"0c1314bb-c22f-4bf2-b18c-0af92cffae5a\",\n                        \"9b634e51-2b2c-48a0-a193-918ff2487d45\",\n                        \"7bb54b19-1232-49df-a756-8689a1b19fc8\",\n                        \"fac10a9c-593f-4875-b05b-f10e233aaad5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69529724121094,\n            \"Text\": \"2021 (Form 941 or 941-SS,\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1588376760482788,\n                    \"Height\": 0.010367432609200478,\n                    \"Left\": 0.10547694563865662,\n                    \"Top\": 0.5213402509689331\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547694563865662,\n                        \"Y\": 0.5214387774467468\n                    },\n                    {\n                        \"X\": 0.26430684328079224,\n                        \"Y\": 0.5213402509689331\n                    },\n                    {\n                        \"X\": 0.2643146216869354,\n                        \"Y\": 0.5316092371940613\n                    },\n                    {\n                        \"X\": 0.10548409819602966,\n                        \"Y\": 0.5317077040672302\n                    }\n                ]\n            },\n            \"Id\": \"4bab865b-1868-4f3f-bfe3-763dc219dca6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3250bfbf-dc04-4a4f-ac42-0a4ffda86154\",\n                        \"86aaad99-d23b-4774-b2cc-b04504856f43\",\n                        \"39c0b032-cc5b-486a-8b4d-98ae0eb899fd\",\n                        \"bd0110d7-87a5-4abe-ba73-4c0b5b11963c\",\n                        \"c805d41f-d78b-40f6-b420-6251c4ca184f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.78308868408203,\n            \"Text\": \"line 25)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0420476458966732,\n                    \"Height\": 0.010704739019274712,\n                    \"Left\": 0.10537387430667877,\n                    \"Top\": 0.5318372845649719\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10537387430667877,\n                        \"Y\": 0.5318633317947388\n                    },\n                    {\n                        \"X\": 0.14741390943527222,\n                        \"Y\": 0.5318372845649719\n                    },\n                    {\n                        \"X\": 0.14742152392864227,\n                        \"Y\": 0.5425159335136414\n                    },\n                    {\n                        \"X\": 0.1053813025355339,\n                        \"Y\": 0.5425419807434082\n                    }\n                ]\n            },\n            \"Id\": \"349a6443-4b65-441a-a389-ca6bd85818ef\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5040c51-7dd9-4e33-b351-774541325ed5\",\n                        \"db6d773a-781c-43cc-ba98-9d1f6e9a5a18\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.17853546142578,\n            \"Text\": \"38.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018019642680883408,\n                    \"Height\": 0.008393949829041958,\n                    \"Left\": 0.06357311457395554,\n                    \"Top\": 0.5549718141555786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06357311457395554,\n                        \"Y\": 0.5549829602241516\n                    },\n                    {\n                        \"X\": 0.08158700168132782,\n                        \"Y\": 0.5549718141555786\n                    },\n                    {\n                        \"X\": 0.08159276098012924,\n                        \"Y\": 0.5633546113967896\n                    },\n                    {\n                        \"X\": 0.06357882171869278,\n                        \"Y\": 0.5633657574653625\n                    }\n                ]\n            },\n            \"Id\": \"9cc4bfbe-914d-4053-9b08-0301708029dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e56ebd87-584e-4821-847e-398a5aef25f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92414855957031,\n            \"Text\": \"Qualified family leave wages for\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19239728152751923,\n                    \"Height\": 0.0106730405241251,\n                    \"Left\": 0.10540248453617096,\n                    \"Top\": 0.5545486211776733\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10540248453617096,\n                        \"Y\": 0.5546677708625793\n                    },\n                    {\n                        \"X\": 0.29779165983200073,\n                        \"Y\": 0.5545486211776733\n                    },\n                    {\n                        \"X\": 0.2977997660636902,\n                        \"Y\": 0.5651026368141174\n                    },\n                    {\n                        \"X\": 0.10540983080863953,\n                        \"Y\": 0.5652216672897339\n                    }\n                ]\n            },\n            \"Id\": \"56d7f94c-e56a-4696-9f8f-4d9c35cee811\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0f704525-e7b6-49e9-8280-17ed950da8d2\",\n                        \"2e87a207-cfd3-4fc3-9e41-0d4e52a36d56\",\n                        \"948f7b1c-2619-4f33-8855-3fa4778d36d8\",\n                        \"59da2176-9fe7-418c-a59d-6d0330b561ee\",\n                        \"3c73b1f8-639c-4cdf-8d2e-460d43d4c1a2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83050537109375,\n            \"Text\": \"leave taken after March 31, 2021\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19448800384998322,\n                    \"Height\": 0.009820324368774891,\n                    \"Left\": 0.10547243058681488,\n                    \"Top\": 0.5645463466644287\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547243058681488,\n                        \"Y\": 0.5646666884422302\n                    },\n                    {\n                        \"X\": 0.29995298385620117,\n                        \"Y\": 0.5645463466644287\n                    },\n                    {\n                        \"X\": 0.2999604344367981,\n                        \"Y\": 0.5742464065551758\n                    },\n                    {\n                        \"X\": 0.1054791808128357,\n                        \"Y\": 0.5743666887283325\n                    }\n                ]\n            },\n            \"Id\": \"361c619b-f13c-4119-8fed-48edf2285825\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"64fee6ce-798f-414b-9da3-236179dfe3be\",\n                        \"a6baca82-38ad-42ab-a33b-c1246e9778f8\",\n                        \"7e3d7a86-738a-4c9e-809d-0c518ee2100d\",\n                        \"073c88c3-1bc4-4163-8b9f-51c9da38ec97\",\n                        \"303605f4-7bc9-445b-86d5-963fdf6577e2\",\n                        \"028fc832-3230-48a5-bdd0-8c3cda71acb4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 83.634521484375,\n            \"Text\": \"260.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08226726204156876,\n                    \"Height\": 0.012075106613337994,\n                    \"Left\": 0.37540701031684875,\n                    \"Top\": 0.5597386360168457\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37540701031684875,\n                        \"Y\": 0.5597895383834839\n                    },\n                    {\n                        \"X\": 0.45766428112983704,\n                        \"Y\": 0.5597386360168457\n                    },\n                    {\n                        \"X\": 0.4576742649078369,\n                        \"Y\": 0.5717628598213196\n                    },\n                    {\n                        \"X\": 0.3754166066646576,\n                        \"Y\": 0.5718137621879578\n                    }\n                ]\n            },\n            \"Id\": \"3a864bdb-6d5d-4396-ae13-b867b963db6c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1bc27faf-5b74-4d4d-bb91-2acc7ded950d\",\n                        \"5a44bc51-741d-4f65-ad66-6d1359f387c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 91.38346099853516,\n            \"Text\": \"170.00 =\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08137696236371994,\n                    \"Height\": 0.011835792101919651,\n                    \"Left\": 0.5292506217956543,\n                    \"Top\": 0.5596962571144104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5292506217956543,\n                        \"Y\": 0.5597466230392456\n                    },\n                    {\n                        \"X\": 0.6106171607971191,\n                        \"Y\": 0.5596962571144104\n                    },\n                    {\n                        \"X\": 0.6106275916099548,\n                        \"Y\": 0.5714817047119141\n                    },\n                    {\n                        \"X\": 0.5292607545852661,\n                        \"Y\": 0.5715320110321045\n                    }\n                ]\n            },\n            \"Id\": \"06028bd0-3114-4c6e-b168-c7e8300faf2a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"91eb2ca8-e205-49df-8912-2bcf0cc22218\",\n                        \"c3bc7c7d-898d-4024-b775-efca651e852f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 87.49694061279297,\n            \"Text\": \"90.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049384985119104385,\n                    \"Height\": 0.012342097237706184,\n                    \"Left\": 0.6891568303108215,\n                    \"Top\": 0.559844970703125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6891568303108215,\n                        \"Y\": 0.55987548828125\n                    },\n                    {\n                        \"X\": 0.7385303378105164,\n                        \"Y\": 0.559844970703125\n                    },\n                    {\n                        \"X\": 0.738541841506958,\n                        \"Y\": 0.5721564888954163\n                    },\n                    {\n                        \"X\": 0.6891681551933289,\n                        \"Y\": 0.572187066078186\n                    }\n                ]\n            },\n            \"Id\": \"e83027fc-a1da-4de7-8a12-4cca80983358\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a73141e6-e921-4dfc-9627-a7afe8a21ef8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.05265808105469,\n            \"Text\": \"(Form 941 or 941-SS, line 26)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.167027547955513,\n                    \"Height\": 0.010601373389363289,\n                    \"Left\": 0.10536479204893112,\n                    \"Top\": 0.5748290419578552\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10536479204893112,\n                        \"Y\": 0.574932336807251\n                    },\n                    {\n                        \"X\": 0.272384375333786,\n                        \"Y\": 0.5748290419578552\n                    },\n                    {\n                        \"X\": 0.2723923325538635,\n                        \"Y\": 0.5853272080421448\n                    },\n                    {\n                        \"X\": 0.10537209361791611,\n                        \"Y\": 0.585430383682251\n                    }\n                ]\n            },\n            \"Id\": \"85273cde-d99f-42d0-8358-e453e97e2bc9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dc41073a-ea15-4485-9382-780589b29d19\",\n                        \"c5b74c67-e522-466a-9004-1b1f64e5e17a\",\n                        \"59bb145b-f63f-4c50-ab4b-d83b87f8c62b\",\n                        \"a7d72bfc-2140-4b7a-9e47-918aaa54d852\",\n                        \"384b82a8-c4dd-47fd-84c1-5d829e724254\",\n                        \"241de273-d9f4-4b32-a25b-42aedd81e0eb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81829071044922,\n            \"Text\": \"39.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018287312239408493,\n                    \"Height\": 0.008483701385557652,\n                    \"Left\": 0.06341315805912018,\n                    \"Top\": 0.6077509522438049\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06341315805912018,\n                        \"Y\": 0.6077622175216675\n                    },\n                    {\n                        \"X\": 0.08169465512037277,\n                        \"Y\": 0.6077509522438049\n                    },\n                    {\n                        \"X\": 0.08170047402381897,\n                        \"Y\": 0.6162233948707581\n                    },\n                    {\n                        \"X\": 0.0634189248085022,\n                        \"Y\": 0.6162346601486206\n                    }\n                ]\n            },\n            \"Id\": \"339f7f37-ebfa-488e-9d90-e59693a68c34\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"edee9ce9-749d-4e75-b8f2-887c6b7582f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91938018798828,\n            \"Text\": \"Qualified health plan expenses\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19122567772865295,\n                    \"Height\": 0.010738014243543148,\n                    \"Left\": 0.10533466190099716,\n                    \"Top\": 0.6073494553565979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10533466190099716,\n                        \"Y\": 0.6074674725532532\n                    },\n                    {\n                        \"X\": 0.2965521812438965,\n                        \"Y\": 0.6073494553565979\n                    },\n                    {\n                        \"X\": 0.2965603470802307,\n                        \"Y\": 0.6179695129394531\n                    },\n                    {\n                        \"X\": 0.10534205287694931,\n                        \"Y\": 0.6180874705314636\n                    }\n                ]\n            },\n            \"Id\": \"e98b97ae-a8d5-4fb5-a134-b6be69f9896e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0fd53106-e29d-4dd1-8eda-95cb4f7d1a88\",\n                        \"9f2d2b16-0bf7-4939-8217-57a2ff652f74\",\n                        \"96fe9d84-0e3e-49a0-b6f3-fccfc559f677\",\n                        \"28cbe259-0945-43a0-826c-607f4406d641\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91241455078125,\n            \"Text\": \"allocable to qualified family\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17118418216705322,\n                    \"Height\": 0.010631679557263851,\n                    \"Left\": 0.1053697019815445,\n                    \"Top\": 0.6177541017532349\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1053697019815445,\n                        \"Y\": 0.6178597211837769\n                    },\n                    {\n                        \"X\": 0.2765458822250366,\n                        \"Y\": 0.6177541017532349\n                    },\n                    {\n                        \"X\": 0.2765538692474365,\n                        \"Y\": 0.6282802820205688\n                    },\n                    {\n                        \"X\": 0.10537702590227127,\n                        \"Y\": 0.6283857822418213\n                    }\n                ]\n            },\n            \"Id\": \"2664ca39-30c2-466b-9243-5ff9ce2bb421\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9642bf50-f26c-43dd-ae1a-1d187bdce4a5\",\n                        \"bfbbe94d-dfe7-4952-be76-0c15f6c1c884\",\n                        \"05eda9ce-f2c5-49f9-a550-ec9c8eae824d\",\n                        \"f43acb6b-ddc4-4a15-b812-94fd0045b544\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 85.13406372070312,\n            \"Text\": \"270.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08234617859125137,\n                    \"Height\": 0.0115057909861207,\n                    \"Left\": 0.3753643333911896,\n                    \"Top\": 0.6128948926925659\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3753643333911896,\n                        \"Y\": 0.6129457354545593\n                    },\n                    {\n                        \"X\": 0.4577009975910187,\n                        \"Y\": 0.6128948926925659\n                    },\n                    {\n                        \"X\": 0.45771050453186035,\n                        \"Y\": 0.6243499517440796\n                    },\n                    {\n                        \"X\": 0.3753734529018402,\n                        \"Y\": 0.6244006752967834\n                    }\n                ]\n            },\n            \"Id\": \"5005bf38-82ad-4b6a-9725-3cad968a10da\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"56dec224-0f0d-4362-a8e5-f3e5a7e0847d\",\n                        \"068aa091-886a-43f4-8a4f-b30085836770\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.44874572753906,\n            \"Text\": \"190.00 =\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08273797482252121,\n                    \"Height\": 0.011900625191628933,\n                    \"Left\": 0.5279643535614014,\n                    \"Top\": 0.61283940076828\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5279643535614014,\n                        \"Y\": 0.6128904223442078\n                    },\n                    {\n                        \"X\": 0.6106917858123779,\n                        \"Y\": 0.61283940076828\n                    },\n                    {\n                        \"X\": 0.6107023358345032,\n                        \"Y\": 0.624688982963562\n                    },\n                    {\n                        \"X\": 0.5279744863510132,\n                        \"Y\": 0.6247400045394897\n                    }\n                ]\n            },\n            \"Id\": \"33d4fca6-6756-452d-943a-3378c6cff8fe\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"82861a70-59fd-4c66-9307-7bb38c3ea8ef\",\n                        \"3570aeaf-08d3-4fb1-88e5-552bfd01a2e7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 70.3722152709961,\n            \"Text\": \"80.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04909403622150421,\n                    \"Height\": 0.01186253409832716,\n                    \"Left\": 0.6894717812538147,\n                    \"Top\": 0.6127375960350037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6894717812538147,\n                        \"Y\": 0.6127678751945496\n                    },\n                    {\n                        \"X\": 0.7385547757148743,\n                        \"Y\": 0.6127375960350037\n                    },\n                    {\n                        \"X\": 0.7385658621788025,\n                        \"Y\": 0.6245698928833008\n                    },\n                    {\n                        \"X\": 0.6894826889038086,\n                        \"Y\": 0.6246001124382019\n                    }\n                ]\n            },\n            \"Id\": \"b55749d5-2f69-4b4f-833f-87ddd61fe1f8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c4efeaf0-263e-4db2-9447-69d6c05e90ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91336059570312,\n            \"Text\": \"leave wages for leave taken\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1726529449224472,\n                    \"Height\": 0.010410316288471222,\n                    \"Left\": 0.10547255724668503,\n                    \"Top\": 0.6276711821556091\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547255724668503,\n                        \"Y\": 0.627777636051178\n                    },\n                    {\n                        \"X\": 0.27811765670776367,\n                        \"Y\": 0.6276711821556091\n                    },\n                    {\n                        \"X\": 0.27812549471855164,\n                        \"Y\": 0.6379750967025757\n                    },\n                    {\n                        \"X\": 0.10547972470521927,\n                        \"Y\": 0.6380814909934998\n                    }\n                ]\n            },\n            \"Id\": \"d95f2f00-c7c1-44de-be24-21c41ab49447\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6d36655b-dc59-4df9-9c6e-5b01c602d428\",\n                        \"e7a05957-b295-4bd3-8768-f313a2a7aad6\",\n                        \"e36134cb-186b-4fb1-aee6-d1dfcb3bc996\",\n                        \"4acc45aa-35cf-46ac-b0b9-8b3edb69635a\",\n                        \"bf231e40-a2ef-4dbd-aa1b-0a98e1ca382d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87184143066406,\n            \"Text\": \"after March 31, 2021 (Form 941\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1885538548231125,\n                    \"Height\": 0.010735224932432175,\n                    \"Left\": 0.10572205483913422,\n                    \"Top\": 0.6376733183860779\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10572205483913422,\n                        \"Y\": 0.6377894878387451\n                    },\n                    {\n                        \"X\": 0.2942677438259125,\n                        \"Y\": 0.6376733183860779\n                    },\n                    {\n                        \"X\": 0.2942759096622467,\n                        \"Y\": 0.6482924222946167\n                    },\n                    {\n                        \"X\": 0.10572944581508636,\n                        \"Y\": 0.6484085321426392\n                    }\n                ]\n            },\n            \"Id\": \"71e4b8ef-55fb-4e81-bbc4-20c0e5184b50\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"558eadcd-9ed4-42bd-97fe-960ee17b2e00\",\n                        \"fe7cf899-78a8-491e-9e13-47c3b6ecd783\",\n                        \"427d386d-9fbe-4af0-ad0d-17857649ca58\",\n                        \"8e815a1a-dbe4-46a7-b714-c1ccf9b0c166\",\n                        \"5f128176-4c31-4609-8913-bfe5a254b7b6\",\n                        \"d3ceabcf-34bd-4bdf-96c5-719724d6b53d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.44849395751953,\n            \"Text\": \"or 941-SS, line 27)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10894254595041275,\n                    \"Height\": 0.010758696123957634,\n                    \"Left\": 0.10526762902736664,\n                    \"Top\": 0.6480247378349304\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10526762902736664,\n                        \"Y\": 0.6480917930603027\n                    },\n                    {\n                        \"X\": 0.21420228481292725,\n                        \"Y\": 0.6480247378349304\n                    },\n                    {\n                        \"X\": 0.2142101675271988,\n                        \"Y\": 0.6587163805961609\n                    },\n                    {\n                        \"X\": 0.10527506470680237,\n                        \"Y\": 0.6587834358215332\n                    }\n                ]\n            },\n            \"Id\": \"dd7c96be-2557-462c-9bf2-d1e8e0506735\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"761e05c5-5b27-40ac-b65a-cceff9b75504\",\n                        \"eb67223a-9efc-43f2-bf5c-358f9e785dd1\",\n                        \"a7b3b22d-5ea7-4830-bdd0-135d279e297e\",\n                        \"165d76b4-387c-43ad-8474-5b94fe262d5e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90946960449219,\n            \"Text\": \"40.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01845517009496689,\n                    \"Height\": 0.008299182169139385,\n                    \"Left\": 0.06323353946208954,\n                    \"Top\": 0.6762095093727112\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06323353946208954,\n                        \"Y\": 0.6762208342552185\n                    },\n                    {\n                        \"X\": 0.08168301731348038,\n                        \"Y\": 0.6762095093727112\n                    },\n                    {\n                        \"X\": 0.08168870955705643,\n                        \"Y\": 0.6844973564147949\n                    },\n                    {\n                        \"X\": 0.06323917955160141,\n                        \"Y\": 0.6845086812973022\n                    }\n                ]\n            },\n            \"Id\": \"8763ca8d-17aa-4275-9602-be90a1426976\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23e5ceb1-ae57-47fc-9730-4b9846e7a9c1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96173858642578,\n            \"Text\": \"Amounts under certain\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1403934508562088,\n                    \"Height\": 0.00865254271775484,\n                    \"Left\": 0.10476794838905334,\n                    \"Top\": 0.6759806275367737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10476794838905334,\n                        \"Y\": 0.6760669350624084\n                    },\n                    {\n                        \"X\": 0.2451549917459488,\n                        \"Y\": 0.6759806275367737\n                    },\n                    {\n                        \"X\": 0.24516141414642334,\n                        \"Y\": 0.6845468878746033\n                    },\n                    {\n                        \"X\": 0.10477390885353088,\n                        \"Y\": 0.6846331357955933\n                    }\n                ]\n            },\n            \"Id\": \"71922ec8-9c02-48f2-bab3-33c0a57b5af4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5d7f9a11-db64-4ac0-a395-76106346740c\",\n                        \"2ed350a6-7b4c-4d04-b882-4197843491b0\",\n                        \"f3caf714-1c07-4c7b-9b3f-07810d3b0e75\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94316101074219,\n            \"Text\": \"collectively bargained\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1336895376443863,\n                    \"Height\": 0.010382700711488724,\n                    \"Left\": 0.10545242577791214,\n                    \"Top\": 0.6857686638832092\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10545242577791214,\n                        \"Y\": 0.6858507990837097\n                    },\n                    {\n                        \"X\": 0.2391342669725418,\n                        \"Y\": 0.6857686638832092\n                    },\n                    {\n                        \"X\": 0.23914195597171783,\n                        \"Y\": 0.6960692405700684\n                    },\n                    {\n                        \"X\": 0.10545959323644638,\n                        \"Y\": 0.6961513757705688\n                    }\n                ]\n            },\n            \"Id\": \"850ecf06-53c0-49bf-b340-1ba01fc6d538\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"abb14090-4147-4747-8ee5-e2481b10a36c\",\n                        \"fc82fa50-4f37-4779-852e-ba2ca6db479d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 92.56787109375,\n            \"Text\": \"280.00 -\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08216395974159241,\n                    \"Height\": 0.01184898242354393,\n                    \"Left\": 0.37560856342315674,\n                    \"Top\": 0.6808942556381226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37560856342315674,\n                        \"Y\": 0.6809447407722473\n                    },\n                    {\n                        \"X\": 0.4577627182006836,\n                        \"Y\": 0.6808942556381226\n                    },\n                    {\n                        \"X\": 0.45777252316474915,\n                        \"Y\": 0.692692756652832\n                    },\n                    {\n                        \"X\": 0.37561798095703125,\n                        \"Y\": 0.6927432417869568\n                    }\n                ]\n            },\n            \"Id\": \"230cfc5b-2d99-4751-9467-e92ecd71805e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2739a1e2-7db9-4db9-b74e-c1e0f15455c1\",\n                        \"b3e6a291-c660-4ad9-bb84-b87ccff0effa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 89.1475601196289,\n            \"Text\": \"200.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05665505677461624,\n                    \"Height\": 0.012027198448777199,\n                    \"Left\": 0.5287208557128906,\n                    \"Top\": 0.6806973218917847\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287208557128906,\n                        \"Y\": 0.6807321906089783\n                    },\n                    {\n                        \"X\": 0.585365355014801,\n                        \"Y\": 0.6806973218917847\n                    },\n                    {\n                        \"X\": 0.5853759050369263,\n                        \"Y\": 0.6926897764205933\n                    },\n                    {\n                        \"X\": 0.528731107711792,\n                        \"Y\": 0.6927245259284973\n                    }\n                ]\n            },\n            \"Id\": \"352876b1-c8be-499b-886b-924399a2db80\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2114e01-37f2-4b42-aef2-f0cd3b2c2efc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.82980346679688,\n            \"Text\": \"=\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009729930199682713,\n                    \"Height\": 0.004366033244878054,\n                    \"Left\": 0.601038932800293,\n                    \"Top\": 0.6823516488075256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.601038932800293,\n                        \"Y\": 0.682357668876648\n                    },\n                    {\n                        \"X\": 0.6107649803161621,\n                        \"Y\": 0.6823516488075256\n                    },\n                    {\n                        \"X\": 0.6107688546180725,\n                        \"Y\": 0.6867117285728455\n                    },\n                    {\n                        \"X\": 0.6010428071022034,\n                        \"Y\": 0.686717689037323\n                    }\n                ]\n            },\n            \"Id\": \"d37a6e02-cb90-4ef6-8ae0-085a9f663c58\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2c3c58a-baa5-4edd-8d27-451c85afa2e8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 73.4174575805664,\n            \"Text\": \"80.00\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04911355674266815,\n                    \"Height\": 0.011708112433552742,\n                    \"Left\": 0.6893496513366699,\n                    \"Top\": 0.6807962656021118\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6893496513366699,\n                        \"Y\": 0.6808264851570129\n                    },\n                    {\n                        \"X\": 0.7384522557258606,\n                        \"Y\": 0.6807962656021118\n                    },\n                    {\n                        \"X\": 0.7384632229804993,\n                        \"Y\": 0.6924742460250854\n                    },\n                    {\n                        \"X\": 0.6893603801727295,\n                        \"Y\": 0.6925044059753418\n                    }\n                ]\n            },\n            \"Id\": \"3cbda003-ef50-4a5f-a5ff-e87468ce6196\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cb18125d-6c1d-4207-9724-a3589939533a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81273651123047,\n            \"Text\": \"agreements allocable to\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14760944247245789,\n                    \"Height\": 0.010378324426710606,\n                    \"Left\": 0.10557080060243607,\n                    \"Top\": 0.6961088180541992\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10557080060243607,\n                        \"Y\": 0.6961994767189026\n                    },\n                    {\n                        \"X\": 0.25317251682281494,\n                        \"Y\": 0.6961088180541992\n                    },\n                    {\n                        \"X\": 0.25318023562431335,\n                        \"Y\": 0.7063965797424316\n                    },\n                    {\n                        \"X\": 0.10557796061038971,\n                        \"Y\": 0.7064871788024902\n                    }\n                ]\n            },\n            \"Id\": \"9df22f51-391c-4d47-b8d7-9633ef66420d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b48abc2-224a-48f2-87a4-426555a58738\",\n                        \"6e95aaed-2fcc-4319-a617-87f6101b4ff7\",\n                        \"6bb70176-5716-4ecf-862c-4438e748dfb1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93374633789062,\n            \"Text\": \"qualified family leave wages for\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1926853507757187,\n                    \"Height\": 0.010388247668743134,\n                    \"Left\": 0.10523929446935654,\n                    \"Top\": 0.7062501907348633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10523929446935654,\n                        \"Y\": 0.7063684463500977\n                    },\n                    {\n                        \"X\": 0.2979167401790619,\n                        \"Y\": 0.7062501907348633\n                    },\n                    {\n                        \"X\": 0.29792463779449463,\n                        \"Y\": 0.7165202498435974\n                    },\n                    {\n                        \"X\": 0.10524643957614899,\n                        \"Y\": 0.716638445854187\n                    }\n                ]\n            },\n            \"Id\": \"35c58109-1dcf-46ee-8e06-25fb5c7ccceb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7ece973-7e1e-4289-8e28-cef7b360584b\",\n                        \"b0b93496-773b-40fb-a8c7-c76ae48a4181\",\n                        \"848bf3d9-bb6a-46d2-b05d-a8edb11ddcad\",\n                        \"48b42c4f-837f-431b-b16b-bf77d1941993\",\n                        \"9d512a0a-20e4-48d0-8697-0c82c5b2c1fd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70320129394531,\n            \"Text\": \"leave taken after March 31, 2021\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1969115138053894,\n                    \"Height\": 0.009708353318274021,\n                    \"Left\": 0.10548854619264603,\n                    \"Top\": 0.7160509824752808\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10548854619264603,\n                        \"Y\": 0.7161718010902405\n                    },\n                    {\n                        \"X\": 0.3023926615715027,\n                        \"Y\": 0.7160509824752808\n                    },\n                    {\n                        \"X\": 0.30240005254745483,\n                        \"Y\": 0.7256386280059814\n                    },\n                    {\n                        \"X\": 0.10549521446228027,\n                        \"Y\": 0.7257593870162964\n                    }\n                ]\n            },\n            \"Id\": \"adcea467-b190-41ee-b8d6-c10b0cebe001\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8bce3b74-9f2b-4798-b112-1fa521dc1a92\",\n                        \"c2792e24-d0c2-4cd7-8547-618d4f9911ad\",\n                        \"156c908e-5cb1-4bb9-8b6f-124a8beab890\",\n                        \"8aa402d3-e9ef-4366-9100-59fdcacab8fa\",\n                        \"eb4b0f12-fba2-4e44-ace5-13d13fdac7b3\",\n                        \"663a4690-b7ea-45e4-adf0-72c1824b1380\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3594970703125,\n            \"Text\": \"(Form 941 or 941-SS, line 28)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1681889146566391,\n                    \"Height\": 0.010743229649960995,\n                    \"Left\": 0.10563378036022186,\n                    \"Top\": 0.7262629270553589\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10563378036022186,\n                        \"Y\": 0.7263660430908203\n                    },\n                    {\n                        \"X\": 0.2738146185874939,\n                        \"Y\": 0.7262629270553589\n                    },\n                    {\n                        \"X\": 0.27382269501686096,\n                        \"Y\": 0.7369031310081482\n                    },\n                    {\n                        \"X\": 0.1056411862373352,\n                        \"Y\": 0.7370061278343201\n                    }\n                ]\n            },\n            \"Id\": \"486177f4-4bfe-4fa9-be22-8f45ede15478\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f89799ba-4352-416c-9c74-0d78e049dcac\",\n                        \"ff32e496-5adb-4367-866c-b8bd5fc2bb62\",\n                        \"a0012923-fef1-432f-85fc-4994c2c1f96d\",\n                        \"1cdf6221-e301-4b82-9b07-dde3d3d06404\",\n                        \"e28ba636-7b05-45a7-9fd1-4222b2dbdea8\",\n                        \"af85462e-a1c6-4c6f-9c2a-12760c26ce20\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.19245147705078,\n            \"Text\": \"Next\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02828747220337391,\n                    \"Height\": 0.01026951801031828,\n                    \"Left\": 0.8857768177986145,\n                    \"Top\": 0.7435584664344788\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8857768177986145,\n                        \"Y\": 0.7435757517814636\n                    },\n                    {\n                        \"X\": 0.9140539765357971,\n                        \"Y\": 0.7435584664344788\n                    },\n                    {\n                        \"X\": 0.9140642881393433,\n                        \"Y\": 0.7538106441497803\n                    },\n                    {\n                        \"X\": 0.8857869505882263,\n                        \"Y\": 0.7538279891014099\n                    }\n                ]\n            },\n            \"Id\": \"c810f18e-707d-4cf0-8bcb-c9e28909eac3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5af7d355-5086-4a82-bf6b-fc700cc5bcd8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9282455444336,\n            \"Text\": \"Page 4\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039504293352365494,\n                    \"Height\": 0.011966641992330551,\n                    \"Left\": 0.058601584285497665,\n                    \"Top\": 0.7591003179550171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058601584285497665,\n                        \"Y\": 0.7591245174407959\n                    },\n                    {\n                        \"X\": 0.09809760004281998,\n                        \"Y\": 0.7591003179550171\n                    },\n                    {\n                        \"X\": 0.09810587763786316,\n                        \"Y\": 0.7710428237915039\n                    },\n                    {\n                        \"X\": 0.05860968306660652,\n                        \"Y\": 0.7710669636726379\n                    }\n                ]\n            },\n            \"Id\": \"105884e2-2364-4186-9962-fb552baa8608\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"47566f7d-6f59-42e3-ac25-84fd72024911\",\n                        \"bedcf074-57be-4248-b5f0-0fa56e6ab8e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91353607177734,\n            \"Text\": \"Form\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026771502569317818,\n                    \"Height\": 0.007686253637075424,\n                    \"Left\": 0.7950714826583862,\n                    \"Top\": 0.7615756988525391\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7950714826583862,\n                        \"Y\": 0.7615920305252075\n                    },\n                    {\n                        \"X\": 0.8218355774879456,\n                        \"Y\": 0.7615756988525391\n                    },\n                    {\n                        \"X\": 0.8218429684638977,\n                        \"Y\": 0.7692455649375916\n                    },\n                    {\n                        \"X\": 0.7950788140296936,\n                        \"Y\": 0.7692619562149048\n                    }\n                ]\n            },\n            \"Id\": \"d85e9110-8bde-47c1-bbcc-0f0a881620e2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6dd4dab7-69c9-4ca8-96a3-d4d681c47e0f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6680908203125,\n            \"Text\": \"941-X\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04556391015648842,\n                    \"Height\": 0.01035858504474163,\n                    \"Left\": 0.8245484828948975,\n                    \"Top\": 0.7589908242225647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8245484828948975,\n                        \"Y\": 0.7590187191963196\n                    },\n                    {\n                        \"X\": 0.8701022267341614,\n                        \"Y\": 0.7589908242225647\n                    },\n                    {\n                        \"X\": 0.8701123595237732,\n                        \"Y\": 0.7693215608596802\n                    },\n                    {\n                        \"X\": 0.8245584964752197,\n                        \"Y\": 0.7693493962287903\n                    }\n                ]\n            },\n            \"Id\": \"3c7e6703-86c7-47d0-a7b8-bc75717cde53\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cc62f52d-0ea9-4375-85fd-40e62a55b654\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.48590850830078,\n            \"Text\": \"(Rev. 7-2021)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06839247047901154,\n                    \"Height\": 0.009749873541295528,\n                    \"Left\": 0.8729642033576965,\n                    \"Top\": 0.7613953948020935\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8729642033576965,\n                        \"Y\": 0.7614372372627258\n                    },\n                    {\n                        \"X\": 0.9413468837738037,\n                        \"Y\": 0.7613953948020935\n                    },\n                    {\n                        \"X\": 0.9413567185401917,\n                        \"Y\": 0.7711035013198853\n                    },\n                    {\n                        \"X\": 0.8729737997055054,\n                        \"Y\": 0.7711452841758728\n                    }\n                ]\n            },\n            \"Id\": \"863ced4e-2372-4466-aabc-6c89158fa912\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9cb5a08d-7d93-41ba-9f4b-e7e7946c9bbb\",\n                        \"2b42a364-cc98-4e86-bdce-7721a7a8202d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91944122314453,\n            \"Text\": \"Name\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.031797152012586594,\n                    \"Height\": 0.007467587478458881,\n                    \"Left\": 0.05857193470001221,\n                    \"Top\": 0.04714705049991608\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05857193470001221,\n                        \"Y\": 0.04716729745268822\n                    },\n                    {\n                        \"X\": 0.09036394953727722,\n                        \"Y\": 0.04714705049991608\n                    },\n                    {\n                        \"X\": 0.0903690904378891,\n                        \"Y\": 0.05459440127015114\n                    },\n                    {\n                        \"X\": 0.05857698619365692,\n                        \"Y\": 0.05461464077234268\n                    }\n                ]\n            },\n            \"Id\": \"0080e252-7e54-4d22-bf95-4f8e25cd0fd5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81407165527344,\n            \"Text\": \"(not\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020844733342528343,\n                    \"Height\": 0.009366266429424286,\n                    \"Left\": 0.09327679127454758,\n                    \"Top\": 0.047064993530511856\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09327679127454758,\n                        \"Y\": 0.04707826301455498\n                    },\n                    {\n                        \"X\": 0.11411498486995697,\n                        \"Y\": 0.047064993530511856\n                    },\n                    {\n                        \"X\": 0.11412152647972107,\n                        \"Y\": 0.05641799420118332\n                    },\n                    {\n                        \"X\": 0.0932832583785057,\n                        \"Y\": 0.056431256234645844\n                    }\n                ]\n            },\n            \"Id\": \"fd02b1c0-d36b-4f08-b2ca-a7f44a748238\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88748168945312,\n            \"Text\": \"your\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02398187853395939,\n                    \"Height\": 0.008034278638660908,\n                    \"Left\": 0.11531897634267807,\n                    \"Top\": 0.04857012256979942\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11531897634267807,\n                        \"Y\": 0.04858539253473282\n                    },\n                    {\n                        \"X\": 0.13929517567157745,\n                        \"Y\": 0.04857012256979942\n                    },\n                    {\n                        \"X\": 0.1393008530139923,\n                        \"Y\": 0.056589141488075256\n                    },\n                    {\n                        \"X\": 0.11532458662986755,\n                        \"Y\": 0.056604404002428055\n                    }\n                ]\n            },\n            \"Id\": \"0dbd7328-9c09-4b92-9494-d08ce8201b98\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87812042236328,\n            \"Text\": \"trade\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0273433867841959,\n                    \"Height\": 0.007742830086499453,\n                    \"Left\": 0.14117054641246796,\n                    \"Top\": 0.047105155885219574\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14117054641246796,\n                        \"Y\": 0.047122567892074585\n                    },\n                    {\n                        \"X\": 0.1685083657503128,\n                        \"Y\": 0.047105155885219574\n                    },\n                    {\n                        \"X\": 0.1685139238834381,\n                        \"Y\": 0.054830584675073624\n                    },\n                    {\n                        \"X\": 0.1411760300397873,\n                        \"Y\": 0.05484798923134804\n                    }\n                ]\n            },\n            \"Id\": \"72809027-24bd-4f5a-af51-31dfd56b1e56\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8876953125,\n            \"Text\": \"name)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03229548782110214,\n                    \"Height\": 0.009553177282214165,\n                    \"Left\": 0.17065927386283875,\n                    \"Top\": 0.04696989059448242\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17065927386283875,\n                        \"Y\": 0.04699045419692993\n                    },\n                    {\n                        \"X\": 0.20294778048992157,\n                        \"Y\": 0.04696989059448242\n                    },\n                    {\n                        \"X\": 0.20295476913452148,\n                        \"Y\": 0.05650251731276512\n                    },\n                    {\n                        \"X\": 0.1706661432981491,\n                        \"Y\": 0.056523069739341736\n                    }\n                ]\n            },\n            \"Id\": \"cdd74d8f-b9ab-43ff-8226-42bdc2ba75ca\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94864654541016,\n            \"Text\": \"Employer\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05279126018285751,\n                    \"Height\": 0.009658102877438068,\n                    \"Left\": 0.5119486451148987,\n                    \"Top\": 0.046928804367780685\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5119486451148987,\n                        \"Y\": 0.046962421387434006\n                    },\n                    {\n                        \"X\": 0.5647315382957458,\n                        \"Y\": 0.046928804367780685\n                    },\n                    {\n                        \"X\": 0.5647399425506592,\n                        \"Y\": 0.05655331164598465\n                    },\n                    {\n                        \"X\": 0.5119568109512329,\n                        \"Y\": 0.05658690631389618\n                    }\n                ]\n            },\n            \"Id\": \"37573b9a-1fee-49ba-9547-78abb55ecdff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85570526123047,\n            \"Text\": \"identification\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07181471586227417,\n                    \"Height\": 0.008030511438846588,\n                    \"Left\": 0.5664927959442139,\n                    \"Top\": 0.046882957220077515\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5664927959442139,\n                        \"Y\": 0.04692868888378143\n                    },\n                    {\n                        \"X\": 0.638300359249115,\n                        \"Y\": 0.046882957220077515\n                    },\n                    {\n                        \"X\": 0.638307511806488,\n                        \"Y\": 0.054867759346961975\n                    },\n                    {\n                        \"X\": 0.5664997100830078,\n                        \"Y\": 0.0549134686589241\n                    }\n                ]\n            },\n            \"Id\": \"36e16691-d79c-4e3f-bc3f-073e2fdcbe92\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89611053466797,\n            \"Text\": \"number\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0429045632481575,\n                    \"Height\": 0.007901986129581928,\n                    \"Left\": 0.6411002278327942,\n                    \"Top\": 0.046995148062705994\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6411002278327942,\n                        \"Y\": 0.04702246934175491\n                    },\n                    {\n                        \"X\": 0.6839975714683533,\n                        \"Y\": 0.046995148062705994\n                    },\n                    {\n                        \"X\": 0.6840047836303711,\n                        \"Y\": 0.05486982688307762\n                    },\n                    {\n                        \"X\": 0.6411073207855225,\n                        \"Y\": 0.054897136986255646\n                    }\n                ]\n            },\n            \"Id\": \"119480b2-4f88-4435-a754-564ed50634de\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87007141113281,\n            \"Text\": \"(EIN)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02437099628150463,\n                    \"Height\": 0.009713836945593357,\n                    \"Left\": 0.6860763430595398,\n                    \"Top\": 0.046757545322179794\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6860763430595398,\n                        \"Y\": 0.04677306115627289\n                    },\n                    {\n                        \"X\": 0.7104383707046509,\n                        \"Y\": 0.046757545322179794\n                    },\n                    {\n                        \"X\": 0.7104473114013672,\n                        \"Y\": 0.05645587667822838\n                    },\n                    {\n                        \"X\": 0.6860852241516113,\n                        \"Y\": 0.05647138133645058\n                    }\n                ]\n            },\n            \"Id\": \"f06a23ab-6dcd-4298-905f-2c050ea9be92\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9375,\n            \"Text\": \"Correcting\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05608341097831726,\n                    \"Height\": 0.009456240572035313,\n                    \"Left\": 0.7588738203048706,\n                    \"Top\": 0.047081440687179565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7588738203048706,\n                        \"Y\": 0.04711715131998062\n                    },\n                    {\n                        \"X\": 0.8149481415748596,\n                        \"Y\": 0.047081440687179565\n                    },\n                    {\n                        \"X\": 0.8149572610855103,\n                        \"Y\": 0.05650198832154274\n                    },\n                    {\n                        \"X\": 0.7588827610015869,\n                        \"Y\": 0.0565376803278923\n                    }\n                ]\n            },\n            \"Id\": \"a147316a-bdfa-40f1-bd73-6e9e96fa47c9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75827026367188,\n            \"Text\": \"quarter\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03896033391356468,\n                    \"Height\": 0.009075273759663105,\n                    \"Left\": 0.8175340890884399,\n                    \"Top\": 0.04739530012011528\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8175340890884399,\n                        \"Y\": 0.04742010682821274\n                    },\n                    {\n                        \"X\": 0.8564855456352234,\n                        \"Y\": 0.04739530012011528\n                    },\n                    {\n                        \"X\": 0.8564944267272949,\n                        \"Y\": 0.056445781141519547\n                    },\n                    {\n                        \"X\": 0.8175428509712219,\n                        \"Y\": 0.05647057294845581\n                    }\n                ]\n            },\n            \"Id\": \"cd7b5301-6863-42d2-a6c8-e04ced210224\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7911605834961,\n            \"Text\": \"4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0077927373349666595,\n                    \"Height\": 0.008123870007693768,\n                    \"Left\": 0.8663153052330017,\n                    \"Top\": 0.0488840751349926\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8663153052330017,\n                        \"Y\": 0.04888903349637985\n                    },\n                    {\n                        \"X\": 0.8741000294685364,\n                        \"Y\": 0.0488840751349926\n                    },\n                    {\n                        \"X\": 0.8741080164909363,\n                        \"Y\": 0.05700299143791199\n                    },\n                    {\n                        \"X\": 0.8663232922554016,\n                        \"Y\": 0.05700794607400894\n                    }\n                ]\n            },\n            \"Id\": \"8dae914c-66e5-49dc-9c1c-479c08f85354\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 85.46163940429688,\n            \"Text\": \"(1,2,3,4)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05036914721131325,\n                    \"Height\": 0.009872796013951302,\n                    \"Left\": 0.890803873538971,\n                    \"Top\": 0.04664601758122444\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.890803873538971,\n                        \"Y\": 0.0466780923306942\n                    },\n                    {\n                        \"X\": 0.9411630630493164,\n                        \"Y\": 0.04664601758122444\n                    },\n                    {\n                        \"X\": 0.9411730170249939,\n                        \"Y\": 0.056486763060092926\n                    },\n                    {\n                        \"X\": 0.8908136487007141,\n                        \"Y\": 0.05651881545782089\n                    }\n                ]\n            },\n            \"Id\": \"3e3a4294-f5cc-409d-abf4-9d456a40794e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92581939697266,\n            \"Text\": \"Correcting\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05940772593021393,\n                    \"Height\": 0.009672126732766628,\n                    \"Left\": 0.7588655948638916,\n                    \"Top\": 0.06209997832775116\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7588655948638916,\n                        \"Y\": 0.062137775123119354\n                    },\n                    {\n                        \"X\": 0.8182640075683594,\n                        \"Y\": 0.06209997832775116\n                    },\n                    {\n                        \"X\": 0.8182733058929443,\n                        \"Y\": 0.07173433154821396\n                    },\n                    {\n                        \"X\": 0.7588747143745422,\n                        \"Y\": 0.07177210599184036\n                    }\n                ]\n            },\n            \"Id\": \"021f3e95-8476-498c-9c80-bbaf509f8799\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83203125,\n            \"Text\": \"calendar\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04761810600757599,\n                    \"Height\": 0.00799112394452095,\n                    \"Left\": 0.8210009932518005,\n                    \"Top\": 0.06223362311720848\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8210009932518005,\n                        \"Y\": 0.06226391717791557\n                    },\n                    {\n                        \"X\": 0.868611216545105,\n                        \"Y\": 0.06223362311720848\n                    },\n                    {\n                        \"X\": 0.8686190843582153,\n                        \"Y\": 0.07019446790218353\n                    },\n                    {\n                        \"X\": 0.8210086822509766,\n                        \"Y\": 0.07022474706172943\n                    }\n                ]\n            },\n            \"Id\": \"540d4c6f-db59-4271-a26f-5fbdb769c8af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96958923339844,\n            \"Text\": \"year\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02585499919950962,\n                    \"Height\": 0.007744187954813242,\n                    \"Left\": 0.8705771565437317,\n                    \"Top\": 0.06392240524291992\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8705771565437317,\n                        \"Y\": 0.06393884867429733\n                    },\n                    {\n                        \"X\": 0.8964244723320007,\n                        \"Y\": 0.06392240524291992\n                    },\n                    {\n                        \"X\": 0.8964321613311768,\n                        \"Y\": 0.07165015488862991\n                    },\n                    {\n                        \"X\": 0.8705847859382629,\n                        \"Y\": 0.07166659086942673\n                    }\n                ]\n            },\n            \"Id\": \"285dda18-3b32-4ec3-8adb-2e378eb81e13\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8497085571289,\n            \"Text\": \"(YYYY)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036908529698848724,\n                    \"Height\": 0.009706519544124603,\n                    \"Left\": 0.9006912708282471,\n                    \"Top\": 0.0618814155459404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9006912708282471,\n                        \"Y\": 0.061904896050691605\n                    },\n                    {\n                        \"X\": 0.9375900030136108,\n                        \"Y\": 0.0618814155459404\n                    },\n                    {\n                        \"X\": 0.937599778175354,\n                        \"Y\": 0.07156446576118469\n                    },\n                    {\n                        \"X\": 0.9007009267807007,\n                        \"Y\": 0.071587935090065\n                    }\n                ]\n            },\n            \"Id\": \"727da63f-45fe-4337-8610-0e7f0365a9fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85315704345703,\n            \"Text\": \"Larry\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033705390989780426,\n                    \"Height\": 0.011130394414067268,\n                    \"Left\": 0.06015787646174431,\n                    \"Top\": 0.07000885903835297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06015787646174431,\n                        \"Y\": 0.07003029435873032\n                    },\n                    {\n                        \"X\": 0.09385558217763901,\n                        \"Y\": 0.07000885903835297\n                    },\n                    {\n                        \"X\": 0.09386326372623444,\n                        \"Y\": 0.08111783862113953\n                    },\n                    {\n                        \"X\": 0.060165416449308395,\n                        \"Y\": 0.08113925904035568\n                    }\n                ]\n            },\n            \"Id\": \"7a50b29b-9ad4-4cee-bb9f-bcc99dfa1630\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.99385833740234,\n            \"Text\": \"D.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013095901347696781,\n                    \"Height\": 0.008458447642624378,\n                    \"Left\": 0.09603936225175858,\n                    \"Top\": 0.0701206848025322\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09603936225175858,\n                        \"Y\": 0.07012901455163956\n                    },\n                    {\n                        \"X\": 0.10912936925888062,\n                        \"Y\": 0.0701206848025322\n                    },\n                    {\n                        \"X\": 0.10913526266813278,\n                        \"Y\": 0.07857081294059753\n                    },\n                    {\n                        \"X\": 0.09604521095752716,\n                        \"Y\": 0.0785791352391243\n                    }\n                ]\n            },\n            \"Id\": \"9440e001-ebf8-4567-b2a0-9581ff9178b4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57205963134766,\n            \"Text\": \"Mitchem\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05263514444231987,\n                    \"Height\": 0.008792039938271046,\n                    \"Left\": 0.11298913508653641,\n                    \"Top\": 0.06972107291221619\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11298913508653641,\n                        \"Y\": 0.06975454837083817\n                    },\n                    {\n                        \"X\": 0.16561797261238098,\n                        \"Y\": 0.06972107291221619\n                    },\n                    {\n                        \"X\": 0.16562427580356598,\n                        \"Y\": 0.07847965508699417\n                    },\n                    {\n                        \"X\": 0.11299525201320648,\n                        \"Y\": 0.07851311564445496\n                    }\n                ]\n            },\n            \"Id\": \"54431908-401e-4edd-aad8-b1dac54b5856\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86986541748047,\n            \"Text\": \"3598432712\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07362813502550125,\n                    \"Height\": 0.008565395139157772,\n                    \"Left\": 0.592512309551239,\n                    \"Top\": 0.0699782595038414\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.592512309551239,\n                        \"Y\": 0.07002508640289307\n                    },\n                    {\n                        \"X\": 0.6661326885223389,\n                        \"Y\": 0.0699782595038414\n                    },\n                    {\n                        \"X\": 0.6661404371261597,\n                        \"Y\": 0.07849685102701187\n                    },\n                    {\n                        \"X\": 0.5925198197364807,\n                        \"Y\": 0.07854365557432175\n                    }\n                ]\n            },\n            \"Id\": \"ee6eebca-06c3-4dce-87e4-68707f518185\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83879089355469,\n            \"Text\": \"2022\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029090192168951035,\n                    \"Height\": 0.008565448224544525,\n                    \"Left\": 0.8326036334037781,\n                    \"Top\": 0.07800041139125824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8326036334037781,\n                        \"Y\": 0.07801889628171921\n                    },\n                    {\n                        \"X\": 0.8616853952407837,\n                        \"Y\": 0.07800041139125824\n                    },\n                    {\n                        \"X\": 0.861693799495697,\n                        \"Y\": 0.0865473747253418\n                    },\n                    {\n                        \"X\": 0.8326119184494019,\n                        \"Y\": 0.08656585961580276\n                    }\n                ]\n            },\n            \"Id\": \"025ee5f0-0a61-4e37-a0e3-244a4844feeb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92237091064453,\n            \"Text\": \"Part\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030404342338442802,\n                    \"Height\": 0.009875551797449589,\n                    \"Left\": 0.06467170268297195,\n                    \"Top\": 0.09301941096782684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06467170268297195,\n                        \"Y\": 0.09303872287273407\n                    },\n                    {\n                        \"X\": 0.09506922215223312,\n                        \"Y\": 0.09301941096782684\n                    },\n                    {\n                        \"X\": 0.0950760468840599,\n                        \"Y\": 0.10287566483020782\n                    },\n                    {\n                        \"X\": 0.06467841565608978,\n                        \"Y\": 0.10289496183395386\n                    }\n                ]\n            },\n            \"Id\": \"2e4c1eea-9a22-45d4-8a19-dd4758711844\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.49889373779297,\n            \"Text\": \"3:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012363639660179615,\n                    \"Height\": 0.009824732318520546,\n                    \"Left\": 0.09816640615463257,\n                    \"Top\": 0.09303998202085495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09816640615463257,\n                        \"Y\": 0.09304782748222351\n                    },\n                    {\n                        \"X\": 0.11052319407463074,\n                        \"Y\": 0.09303998202085495\n                    },\n                    {\n                        \"X\": 0.11053004860877991,\n                        \"Y\": 0.10285686701536179\n                    },\n                    {\n                        \"X\": 0.09817321598529816,\n                        \"Y\": 0.10286471247673035\n                    }\n                ]\n            },\n            \"Id\": \"6c4c4620-9a59-4fe7-a280-e787dc48b264\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93655395507812,\n            \"Text\": \"Enter\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038330163806676865,\n                    \"Height\": 0.00947344396263361,\n                    \"Left\": 0.12370647490024567,\n                    \"Top\": 0.09318747371435165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12370647490024567,\n                        \"Y\": 0.0932118147611618\n                    },\n                    {\n                        \"X\": 0.16202986240386963,\n                        \"Y\": 0.09318747371435165\n                    },\n                    {\n                        \"X\": 0.16203664243221283,\n                        \"Y\": 0.10263658314943314\n                    },\n                    {\n                        \"X\": 0.12371312081813812,\n                        \"Y\": 0.10266091674566269\n                    }\n                ]\n            },\n            \"Id\": \"7fecd636-43be-4c66-8b76-43b8c432ca2f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98046875,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022996436804533005,\n                    \"Height\": 0.00943040568381548,\n                    \"Left\": 0.16492459177970886,\n                    \"Top\": 0.0932554379105568\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16492459177970886,\n                        \"Y\": 0.09327004104852676\n                    },\n                    {\n                        \"X\": 0.187914177775383,\n                        \"Y\": 0.0932554379105568\n                    },\n                    {\n                        \"X\": 0.18792103230953217,\n                        \"Y\": 0.10267125070095062\n                    },\n                    {\n                        \"X\": 0.16493135690689087,\n                        \"Y\": 0.10268584638834\n                    }\n                ]\n            },\n            \"Id\": \"2b95b28a-c85b-4746-aeb5-02223d9a8293\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66458129882812,\n            \"Text\": \"corrections\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08124914020299911,\n                    \"Height\": 0.009626167826354504,\n                    \"Left\": 0.191513329744339,\n                    \"Top\": 0.09319593012332916\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.191513329744339,\n                        \"Y\": 0.09324754029512405\n                    },\n                    {\n                        \"X\": 0.2727552056312561,\n                        \"Y\": 0.09319593012332916\n                    },\n                    {\n                        \"X\": 0.2727624773979187,\n                        \"Y\": 0.10277051478624344\n                    },\n                    {\n                        \"X\": 0.1915203034877777,\n                        \"Y\": 0.10282209515571594\n                    }\n                ]\n            },\n            \"Id\": \"dea98ee0-7332-42b3-9c02-995860997075\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98296356201172,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021014349535107613,\n                    \"Height\": 0.009525342844426632,\n                    \"Left\": 0.27602118253707886,\n                    \"Top\": 0.09312084317207336\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27602118253707886,\n                        \"Y\": 0.09313418716192245\n                    },\n                    {\n                        \"X\": 0.29702821373939514,\n                        \"Y\": 0.09312084317207336\n                    },\n                    {\n                        \"X\": 0.2970355451107025,\n                        \"Y\": 0.10263285040855408\n                    },\n                    {\n                        \"X\": 0.27602842450141907,\n                        \"Y\": 0.10264618694782257\n                    }\n                ]\n            },\n            \"Id\": \"9aed7e77-48f6-4d5b-9fd7-7ebe10fd636a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98503112792969,\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02666713297367096,\n                    \"Height\": 0.00963569339364767,\n                    \"Left\": 0.2995963394641876,\n                    \"Top\": 0.09304941445589066\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2995963394641876,\n                        \"Y\": 0.09306634962558746\n                    },\n                    {\n                        \"X\": 0.3262559473514557,\n                        \"Y\": 0.09304941445589066\n                    },\n                    {\n                        \"X\": 0.3262634575366974,\n                        \"Y\": 0.10266818106174469\n                    },\n                    {\n                        \"X\": 0.29960373044013977,\n                        \"Y\": 0.1026851087808609\n                    }\n                ]\n            },\n            \"Id\": \"ca7ff975-a27a-46ad-ae2a-69591761f04d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71025085449219,\n            \"Text\": \"quarter.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05531945079565048,\n                    \"Height\": 0.011598366312682629,\n                    \"Left\": 0.32960888743400574,\n                    \"Top\": 0.09353334456682205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32960888743400574,\n                        \"Y\": 0.09356848150491714\n                    },\n                    {\n                        \"X\": 0.38491904735565186,\n                        \"Y\": 0.09353334456682205\n                    },\n                    {\n                        \"X\": 0.38492831587791443,\n                        \"Y\": 0.10509660094976425\n                    },\n                    {\n                        \"X\": 0.3296179175376892,\n                        \"Y\": 0.10513170808553696\n                    }\n                ]\n            },\n            \"Id\": \"1e2eac36-1c62-4296-ae75-40b84afb2e75\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65461730957031,\n            \"Text\": \"If\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009825327433645725,\n                    \"Height\": 0.009689509868621826,\n                    \"Left\": 0.389535129070282,\n                    \"Top\": 0.09292484819889069\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.389535129070282,\n                        \"Y\": 0.09293108433485031\n                    },\n                    {\n                        \"X\": 0.39935263991355896,\n                        \"Y\": 0.09292484819889069\n                    },\n                    {\n                        \"X\": 0.39936044812202454,\n                        \"Y\": 0.10260812193155289\n                    },\n                    {\n                        \"X\": 0.38954290747642517,\n                        \"Y\": 0.10261435806751251\n                    }\n                ]\n            },\n            \"Id\": \"3659cade-cba6-4ae3-9d4c-89239d626fef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98703002929688,\n            \"Text\": \"any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02481825463473797,\n                    \"Height\": 0.009635928086936474,\n                    \"Left\": 0.4028218686580658,\n                    \"Top\": 0.0953584536910057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4028218686580658,\n                        \"Y\": 0.0953742116689682\n                    },\n                    {\n                        \"X\": 0.42763224244117737,\n                        \"Y\": 0.0953584536910057\n                    },\n                    {\n                        \"X\": 0.4276401102542877,\n                        \"Y\": 0.10497863590717316\n                    },\n                    {\n                        \"X\": 0.402829647064209,\n                        \"Y\": 0.10499438643455505\n                    }\n                ]\n            },\n            \"Id\": \"eba48834-d4f4-4a7f-afe6-ba18e98c0e85\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96443939208984,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0254615880548954,\n                    \"Height\": 0.00997386034578085,\n                    \"Left\": 0.4308437705039978,\n                    \"Top\": 0.09297440946102142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4308437705039978,\n                        \"Y\": 0.09299057722091675\n                    },\n                    {\n                        \"X\": 0.4562970995903015,\n                        \"Y\": 0.09297440946102142\n                    },\n                    {\n                        \"X\": 0.4563053548336029,\n                        \"Y\": 0.10293211042881012\n                    },\n                    {\n                        \"X\": 0.43085193634033203,\n                        \"Y\": 0.10294827073812485\n                    }\n                ]\n            },\n            \"Id\": \"682fc38e-3109-4e72-aba0-3abcb98906a5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97171783447266,\n            \"Text\": \"doesn't\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053251661360263824,\n                    \"Height\": 0.009838998317718506,\n                    \"Left\": 0.45992419123649597,\n                    \"Top\": 0.0930180773139\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45992419123649597,\n                        \"Y\": 0.09305190294981003\n                    },\n                    {\n                        \"X\": 0.5131675004959106,\n                        \"Y\": 0.0930180773139\n                    },\n                    {\n                        \"X\": 0.5131758451461792,\n                        \"Y\": 0.10282327234745026\n                    },\n                    {\n                        \"X\": 0.4599323570728302,\n                        \"Y\": 0.1028570756316185\n                    }\n                ]\n            },\n            \"Id\": \"cef2fa54-d69b-4662-b3a8-a04d914b4b37\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91314697265625,\n            \"Text\": \"apply,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04191755875945091,\n                    \"Height\": 0.012147077359259129,\n                    \"Left\": 0.5166046619415283,\n                    \"Top\": 0.093140609562397\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5166046619415283,\n                        \"Y\": 0.09316723048686981\n                    },\n                    {\n                        \"X\": 0.5585117340087891,\n                        \"Y\": 0.093140609562397\n                    },\n                    {\n                        \"X\": 0.5585222244262695,\n                        \"Y\": 0.10526107996702194\n                    },\n                    {\n                        \"X\": 0.5166150331497192,\n                        \"Y\": 0.10528768599033356\n                    }\n                ]\n            },\n            \"Id\": \"1e26a9a2-57fb-4e44-b415-7776668f0222\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91043853759766,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036736585199832916,\n                    \"Height\": 0.009622854180634022,\n                    \"Left\": 0.5629754662513733,\n                    \"Top\": 0.09313705563545227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5629754662513733,\n                        \"Y\": 0.09316039085388184\n                    },\n                    {\n                        \"X\": 0.5997035503387451,\n                        \"Y\": 0.09313705563545227\n                    },\n                    {\n                        \"X\": 0.5997120141983032,\n                        \"Y\": 0.10273659229278564\n                    },\n                    {\n                        \"X\": 0.5629838109016418,\n                        \"Y\": 0.10275991261005402\n                    }\n                ]\n            },\n            \"Id\": \"461d95c0-c50a-4c00-8f2b-610703105285\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8966293334961,\n            \"Text\": \"it\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009575034491717815,\n                    \"Height\": 0.009625512175261974,\n                    \"Left\": 0.6036965847015381,\n                    \"Top\": 0.09308739006519318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6036965847015381,\n                        \"Y\": 0.09309346973896027\n                    },\n                    {\n                        \"X\": 0.6132630705833435,\n                        \"Y\": 0.09308739006519318\n                    },\n                    {\n                        \"X\": 0.6132716536521912,\n                        \"Y\": 0.10270682722330093\n                    },\n                    {\n                        \"X\": 0.603705108165741,\n                        \"Y\": 0.10271289944648743\n                    }\n                ]\n            },\n            \"Id\": \"973823ff-df1a-48aa-8dd1-93d90778945d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48909759521484,\n            \"Text\": \"blank.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04254359006881714,\n                    \"Height\": 0.010058420710265636,\n                    \"Left\": 0.6163626313209534,\n                    \"Top\": 0.09291545301675797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6163626313209534,\n                        \"Y\": 0.09294246882200241\n                    },\n                    {\n                        \"X\": 0.6588971614837646,\n                        \"Y\": 0.09291545301675797\n                    },\n                    {\n                        \"X\": 0.6589062213897705,\n                        \"Y\": 0.10294687002897263\n                    },\n                    {\n                        \"X\": 0.6163715720176697,\n                        \"Y\": 0.10297387093305588\n                    }\n                ]\n            },\n            \"Id\": \"1158eeaf-2de0-4f04-bdf1-5d62f40deb4d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91473388671875,\n            \"Text\": \"(continued)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07337452471256256,\n                    \"Height\": 0.012038886547088623,\n                    \"Left\": 0.6629733443260193,\n                    \"Top\": 0.09298056364059448\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6629733443260193,\n                        \"Y\": 0.09302716702222824\n                    },\n                    {\n                        \"X\": 0.7363366484642029,\n                        \"Y\": 0.09298056364059448\n                    },\n                    {\n                        \"X\": 0.7363479137420654,\n                        \"Y\": 0.10497287660837173\n                    },\n                    {\n                        \"X\": 0.6629842519760132,\n                        \"Y\": 0.1050194501876831\n                    }\n                ]\n            },\n            \"Id\": \"78074986-d0a4-41dd-ba32-dcd69a0a1cf2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8310775756836,\n            \"Text\": \"Column\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046288661658763885,\n                    \"Height\": 0.00846592616289854,\n                    \"Left\": 0.3358669877052307,\n                    \"Top\": 0.10998685657978058\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3358669877052307,\n                        \"Y\": 0.11001623421907425\n                    },\n                    {\n                        \"X\": 0.3821488916873932,\n                        \"Y\": 0.10998685657978058\n                    },\n                    {\n                        \"X\": 0.3821556270122528,\n                        \"Y\": 0.11842342466115952\n                    },\n                    {\n                        \"X\": 0.3358735740184784,\n                        \"Y\": 0.11845278739929199\n                    }\n                ]\n            },\n            \"Id\": \"3a5adf15-9d47-4c8b-b769-fccca100124f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.71487426757812,\n            \"Text\": \"1\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006151990499347448,\n                    \"Height\": 0.008011233992874622,\n                    \"Left\": 0.3862265646457672,\n                    \"Top\": 0.11021865904331207\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3862265646457672,\n                        \"Y\": 0.11022256314754486\n                    },\n                    {\n                        \"X\": 0.39237210154533386,\n                        \"Y\": 0.11021865904331207\n                    },\n                    {\n                        \"X\": 0.3923785388469696,\n                        \"Y\": 0.11822599917650223\n                    },\n                    {\n                        \"X\": 0.38623297214508057,\n                        \"Y\": 0.11822989583015442\n                    }\n                ]\n            },\n            \"Id\": \"5701dec9-a164-4a86-b80b-7e12a6030a62\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89307403564453,\n            \"Text\": \"Column\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04897196963429451,\n                    \"Height\": 0.00889140460640192,\n                    \"Left\": 0.4875633418560028,\n                    \"Top\": 0.10941044241189957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4875633418560028,\n                        \"Y\": 0.10944151878356934\n                    },\n                    {\n                        \"X\": 0.536527693271637,\n                        \"Y\": 0.10941044241189957\n                    },\n                    {\n                        \"X\": 0.5365353226661682,\n                        \"Y\": 0.11827078461647034\n                    },\n                    {\n                        \"X\": 0.48757079243659973,\n                        \"Y\": 0.11830184608697891\n                    }\n                ]\n            },\n            \"Id\": \"955e3376-2cdd-42d4-9876-fbcd5ff5a8e4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.14498138427734,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.00854936521500349,\n                    \"Height\": 0.00854331161826849,\n                    \"Left\": 0.5389471054077148,\n                    \"Top\": 0.1097765788435936\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5389471054077148,\n                        \"Y\": 0.10978200286626816\n                    },\n                    {\n                        \"X\": 0.5474891066551208,\n                        \"Y\": 0.1097765788435936\n                    },\n                    {\n                        \"X\": 0.547496497631073,\n                        \"Y\": 0.1183144748210907\n                    },\n                    {\n                        \"X\": 0.538954496383667,\n                        \"Y\": 0.11831989139318466\n                    }\n                ]\n            },\n            \"Id\": \"4aa2f917-2533-4a61-bf61-59c76e0a0350\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27798461914062,\n            \"Text\": \"Column\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048476409167051315,\n                    \"Height\": 0.008730652742087841,\n                    \"Left\": 0.6408791542053223,\n                    \"Top\": 0.10932926833629608\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6408791542053223,\n                        \"Y\": 0.10936002433300018\n                    },\n                    {\n                        \"X\": 0.6893475651741028,\n                        \"Y\": 0.10932926833629608\n                    },\n                    {\n                        \"X\": 0.6893555521965027,\n                        \"Y\": 0.1180291697382927\n                    },\n                    {\n                        \"X\": 0.6408869624137878,\n                        \"Y\": 0.1180599182844162\n                    }\n                ]\n            },\n            \"Id\": \"21596cad-317e-4a6b-9ea9-fbdaf20d6f15\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.20204162597656,\n            \"Text\": \"3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.008266768418252468,\n                    \"Height\": 0.008504120633006096,\n                    \"Left\": 0.6920285224914551,\n                    \"Top\": 0.10961372405290604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6920285224914551,\n                        \"Y\": 0.10961896181106567\n                    },\n                    {\n                        \"X\": 0.7002874612808228,\n                        \"Y\": 0.10961372405290604\n                    },\n                    {\n                        \"X\": 0.7002952694892883,\n                        \"Y\": 0.11811260133981705\n                    },\n                    {\n                        \"X\": 0.6920363306999207,\n                        \"Y\": 0.11811784654855728\n                    }\n                ]\n            },\n            \"Id\": \"48cf4ea8-7c32-4ba3-b870-6741068f8a2f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93724060058594,\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02849446050822735,\n                    \"Height\": 0.007752055302262306,\n                    \"Left\": 0.317202627658844,\n                    \"Top\": 0.12577427923679352\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.317202627658844,\n                        \"Y\": 0.12579235434532166\n                    },\n                    {\n                        \"X\": 0.3456909954547882,\n                        \"Y\": 0.12577427923679352\n                    },\n                    {\n                        \"X\": 0.3456971049308777,\n                        \"Y\": 0.13350827991962433\n                    },\n                    {\n                        \"X\": 0.3172086477279663,\n                        \"Y\": 0.13352634012699127\n                    }\n                ]\n            },\n            \"Id\": \"3c9d6dd2-34c3-415a-bec4-3f97692422d5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98470306396484,\n            \"Text\": \"corrected\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05502195656299591,\n                    \"Height\": 0.007609353866428137,\n                    \"Left\": 0.3474922180175781,\n                    \"Top\": 0.1259738653898239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3474922180175781,\n                        \"Y\": 0.1260087490081787\n                    },\n                    {\n                        \"X\": 0.40250805020332336,\n                        \"Y\": 0.1259738653898239\n                    },\n                    {\n                        \"X\": 0.40251415967941284,\n                        \"Y\": 0.13354834914207458\n                    },\n                    {\n                        \"X\": 0.34749817848205566,\n                        \"Y\": 0.1335832178592682\n                    }\n                ]\n            },\n            \"Id\": \"daa50c3a-8784-4333-9ef7-f49965464e43\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97500610351562,\n            \"Text\": \"Amount\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04514288529753685,\n                    \"Height\": 0.00793209858238697,\n                    \"Left\": 0.4691864252090454,\n                    \"Top\": 0.1251867711544037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4691864252090454,\n                        \"Y\": 0.12521539628505707\n                    },\n                    {\n                        \"X\": 0.5143225789070129,\n                        \"Y\": 0.1251867711544037\n                    },\n                    {\n                        \"X\": 0.5143293142318726,\n                        \"Y\": 0.13309027254581451\n                    },\n                    {\n                        \"X\": 0.4691930115222931,\n                        \"Y\": 0.1331188678741455\n                    }\n                ]\n            },\n            \"Id\": \"a40b660a-7d69-47a2-ab2a-b98d6c48b8ad\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87296295166016,\n            \"Text\": \"originally\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05186941847205162,\n                    \"Height\": 0.009177296422421932,\n                    \"Left\": 0.5154534578323364,\n                    \"Top\": 0.1253698766231537\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5154534578323364,\n                        \"Y\": 0.1254027634859085\n                    },\n                    {\n                        \"X\": 0.567314863204956,\n                        \"Y\": 0.1253698766231537\n                    },\n                    {\n                        \"X\": 0.567322850227356,\n                        \"Y\": 0.13451430201530457\n                    },\n                    {\n                        \"X\": 0.5154612064361572,\n                        \"Y\": 0.1345471739768982\n                    }\n                ]\n            },\n            \"Id\": \"9c7fe81b-36a0-46ed-b965-bc9c07eb264e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82482147216797,\n            \"Text\": \"Difference\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.057507459074258804,\n                    \"Height\": 0.008109101094305515,\n                    \"Left\": 0.6345090270042419,\n                    \"Top\": 0.12505072355270386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6345090270042419,\n                        \"Y\": 0.1250871866941452\n                    },\n                    {\n                        \"X\": 0.6920090317726135,\n                        \"Y\": 0.12505072355270386\n                    },\n                    {\n                        \"X\": 0.6920164823532104,\n                        \"Y\": 0.13312338292598724\n                    },\n                    {\n                        \"X\": 0.6345162391662598,\n                        \"Y\": 0.1331598311662674\n                    }\n                ]\n            },\n            \"Id\": \"45b834ab-9921-457e-b81e-151c534c191e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95472717285156,\n            \"Text\": \"amount\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04321403056383133,\n                    \"Height\": 0.007603583857417107,\n                    \"Left\": 0.3165411055088043,\n                    \"Top\": 0.13588187098503113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3165411055088043,\n                        \"Y\": 0.13590925931930542\n                    },\n                    {\n                        \"X\": 0.3597491383552551,\n                        \"Y\": 0.13588187098503113\n                    },\n                    {\n                        \"X\": 0.35975515842437744,\n                        \"Y\": 0.14345808327198029\n                    },\n                    {\n                        \"X\": 0.3165470063686371,\n                        \"Y\": 0.14348545670509338\n                    }\n                ]\n            },\n            \"Id\": \"40a3f8ce-8b80-406d-98c3-d31489ae4827\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80393981933594,\n            \"Text\": \"(for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019540444016456604,\n                    \"Height\": 0.009056179784238338,\n                    \"Left\": 0.3623977601528168,\n                    \"Top\": 0.13566358387470245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3623977601528168,\n                        \"Y\": 0.13567596673965454\n                    },\n                    {\n                        \"X\": 0.38193097710609436,\n                        \"Y\": 0.13566358387470245\n                    },\n                    {\n                        \"X\": 0.38193821907043457,\n                        \"Y\": 0.14470738172531128\n                    },\n                    {\n                        \"X\": 0.3624049425125122,\n                        \"Y\": 0.14471976459026337\n                    }\n                ]\n            },\n            \"Id\": \"2f3b5b62-5018-4e96-9ff4-1f614af721e6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80633544921875,\n            \"Text\": \"ALL\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022511327639222145,\n                    \"Height\": 0.007619528565555811,\n                    \"Left\": 0.38320019841194153,\n                    \"Top\": 0.13568103313446045\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38320019841194153,\n                        \"Y\": 0.13569529354572296\n                    },\n                    {\n                        \"X\": 0.40570536255836487,\n                        \"Y\": 0.13568103313446045\n                    },\n                    {\n                        \"X\": 0.40571150183677673,\n                        \"Y\": 0.1432863026857376\n                    },\n                    {\n                        \"X\": 0.3832062780857086,\n                        \"Y\": 0.14330056309700012\n                    }\n                ]\n            },\n            \"Id\": \"a3b96c9e-b36d-4f84-9567-2f69d40ed843\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97859191894531,\n            \"Text\": \"reported\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04855930432677269,\n                    \"Height\": 0.008649677038192749,\n                    \"Left\": 0.4697243571281433,\n                    \"Top\": 0.1351739764213562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4697243571281433,\n                        \"Y\": 0.1352047473192215\n                    },\n                    {\n                        \"X\": 0.5182763338088989,\n                        \"Y\": 0.1351739764213562\n                    },\n                    {\n                        \"X\": 0.5182836651802063,\n                        \"Y\": 0.14379289746284485\n                    },\n                    {\n                        \"X\": 0.46973153948783875,\n                        \"Y\": 0.14382365345954895\n                    }\n                ]\n            },\n            \"Id\": \"58160441-61c4-4830-854f-c00fa15a57e5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8116455078125,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012631460092961788,\n                    \"Height\": 0.006234235595911741,\n                    \"Left\": 0.5202754139900208,\n                    \"Top\": 0.13652896881103516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5202754139900208,\n                        \"Y\": 0.13653697073459625\n                    },\n                    {\n                        \"X\": 0.5329015254974365,\n                        \"Y\": 0.13652896881103516\n                    },\n                    {\n                        \"X\": 0.5329068899154663,\n                        \"Y\": 0.14275521039962769\n                    },\n                    {\n                        \"X\": 0.5202807188034058,\n                        \"Y\": 0.1427631974220276\n                    }\n                ]\n            },\n            \"Id\": \"21ec8bbb-76dc-49c8-aad4-8b979a4b1a19\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78215026855469,\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01379062794148922,\n                    \"Height\": 0.006227036006748676,\n                    \"Left\": 0.5340152382850647,\n                    \"Top\": 0.13660778105258942\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5340152382850647,\n                        \"Y\": 0.136616513133049\n                    },\n                    {\n                        \"X\": 0.5478005409240723,\n                        \"Y\": 0.13660778105258942\n                    },\n                    {\n                        \"X\": 0.547805905342102,\n                        \"Y\": 0.14282608032226562\n                    },\n                    {\n                        \"X\": 0.5340206027030945,\n                        \"Y\": 0.14283481240272522\n                    }\n                ]\n            },\n            \"Id\": \"a0ff1d52-0f2e-48c6-bc7e-b3bda368bc67\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76380920410156,\n            \"Text\": \"(If\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012725623324513435,\n                    \"Height\": 0.00889777485281229,\n                    \"Left\": 0.6346864104270935,\n                    \"Top\": 0.13501521944999695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6346864104270935,\n                        \"Y\": 0.13502328097820282\n                    },\n                    {\n                        \"X\": 0.6474040150642395,\n                        \"Y\": 0.13501521944999695\n                    },\n                    {\n                        \"X\": 0.6474120020866394,\n                        \"Y\": 0.1439049392938614\n                    },\n                    {\n                        \"X\": 0.6346943378448486,\n                        \"Y\": 0.14391300082206726\n                    }\n                ]\n            },\n            \"Id\": \"9d9da5d5-f87e-4db9-b0c2-a6d123f4fbed\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94158172607422,\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020812558010220528,\n                    \"Height\": 0.007704257965087891,\n                    \"Left\": 0.6488439440727234,\n                    \"Top\": 0.13504165410995483\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6488439440727234,\n                        \"Y\": 0.1350548416376114\n                    },\n                    {\n                        \"X\": 0.6696495413780212,\n                        \"Y\": 0.13504165410995483\n                    },\n                    {\n                        \"X\": 0.66965651512146,\n                        \"Y\": 0.14273272454738617\n                    },\n                    {\n                        \"X\": 0.6488509178161621,\n                        \"Y\": 0.14274591207504272\n                    }\n                ]\n            },\n            \"Id\": \"6472b3bb-a327-494e-ab66-3c5a06d84adb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94532012939453,\n            \"Text\": \"amount\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04339513182640076,\n                    \"Height\": 0.00775800459086895,\n                    \"Left\": 0.6719971299171448,\n                    \"Top\": 0.13520590960979462\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6719971299171448,\n                        \"Y\": 0.13523340225219727\n                    },\n                    {\n                        \"X\": 0.7153850793838501,\n                        \"Y\": 0.13520590960979462\n                    },\n                    {\n                        \"X\": 0.7153922319412231,\n                        \"Y\": 0.14293642342090607\n                    },\n                    {\n                        \"X\": 0.6720041632652283,\n                        \"Y\": 0.14296390116214752\n                    }\n                ]\n            },\n            \"Id\": \"de97ea75-326a-43ad-9df1-7ff2381dd324\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9202880859375,\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010002740658819675,\n                    \"Height\": 0.007739267311990261,\n                    \"Left\": 0.7169862985610962,\n                    \"Top\": 0.13490644097328186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7169862985610962,\n                        \"Y\": 0.13491277396678925\n                    },\n                    {\n                        \"X\": 0.7269818782806396,\n                        \"Y\": 0.13490644097328186\n                    },\n                    {\n                        \"X\": 0.7269890308380127,\n                        \"Y\": 0.1426393687725067\n                    },\n                    {\n                        \"X\": 0.716993510723114,\n                        \"Y\": 0.1426457017660141\n                    }\n                ]\n            },\n            \"Id\": \"73a22328-76d5-4716-bbed-bb8176d69c2f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89363098144531,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007322373334318399,\n                    \"Height\": 0.0060656191781163216,\n                    \"Left\": 0.7287508845329285,\n                    \"Top\": 0.1366661638021469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7287508845329285,\n                        \"Y\": 0.1366707980632782\n                    },\n                    {\n                        \"X\": 0.7360675930976868,\n                        \"Y\": 0.1366661638021469\n                    },\n                    {\n                        \"X\": 0.7360732555389404,\n                        \"Y\": 0.14272715151309967\n                    },\n                    {\n                        \"X\": 0.7287565469741821,\n                        \"Y\": 0.14273178577423096\n                    }\n                ]\n            },\n            \"Id\": \"f6915eda-a360-4c6a-a843-3e4afce0ef10\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58934783935547,\n            \"Text\": \"employees)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06280651688575745,\n                    \"Height\": 0.009139125235378742,\n                    \"Left\": 0.3169885277748108,\n                    \"Top\": 0.144908607006073\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3169885277748108,\n                        \"Y\": 0.14494839310646057\n                    },\n                    {\n                        \"X\": 0.37978774309158325,\n                        \"Y\": 0.144908607006073\n                    },\n                    {\n                        \"X\": 0.37979504466056824,\n                        \"Y\": 0.15400797128677368\n                    },\n                    {\n                        \"X\": 0.3169955909252167,\n                        \"Y\": 0.15404772758483887\n                    }\n                ]\n            },\n            \"Id\": \"78c73fda-b6a8-4eee-afd4-64801d1fc0a8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97074127197266,\n            \"Text\": \"previously\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05651826038956642,\n                    \"Height\": 0.009069172665476799,\n                    \"Left\": 0.46953803300857544,\n                    \"Top\": 0.1444355547428131\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46953803300857544,\n                        \"Y\": 0.14447134733200073\n                    },\n                    {\n                        \"X\": 0.5260485410690308,\n                        \"Y\": 0.1444355547428131\n                    },\n                    {\n                        \"X\": 0.5260562896728516,\n                        \"Y\": 0.15346895158290863\n                    },\n                    {\n                        \"X\": 0.4695455729961395,\n                        \"Y\": 0.15350472927093506\n                    }\n                ]\n            },\n            \"Id\": \"e7a5ec70-52e2-42ef-bf9b-303055182a5d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96710968017578,\n            \"Text\": \"corrected\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053750377148389816,\n                    \"Height\": 0.008200601674616337,\n                    \"Left\": 0.5287926197052002,\n                    \"Top\": 0.14386574923992157\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287926197052002,\n                        \"Y\": 0.1438997983932495\n                    },\n                    {\n                        \"X\": 0.5825358629226685,\n                        \"Y\": 0.14386574923992157\n                    },\n                    {\n                        \"X\": 0.5825430154800415,\n                        \"Y\": 0.15203233063220978\n                    },\n                    {\n                        \"X\": 0.5287996530532837,\n                        \"Y\": 0.15206636488437653\n                    }\n                ]\n            },\n            \"Id\": \"8cc2c5b9-8d1e-4930-8ad1-24b9806b270d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 85.90087890625,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010175778530538082,\n                    \"Height\": 0.0023913050536066294,\n                    \"Left\": 0.4475417137145996,\n                    \"Top\": 0.15271027386188507\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4475417137145996,\n                        \"Y\": 0.152716726064682\n                    },\n                    {\n                        \"X\": 0.4577155113220215,\n                        \"Y\": 0.15271027386188507\n                    },\n                    {\n                        \"X\": 0.4577174782752991,\n                        \"Y\": 0.1550951451063156\n                    },\n                    {\n                        \"X\": 0.4475436806678772,\n                        \"Y\": 0.15510158240795135\n                    }\n                ]\n            },\n            \"Id\": \"f28a8ee7-15e2-43c8-8c57-963ece1e0bb5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.29859924316406,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009397167712450027,\n                    \"Height\": 0.004594726487994194,\n                    \"Left\": 0.6011793613433838,\n                    \"Top\": 0.15030373632907867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011793613433838,\n                        \"Y\": 0.1503096967935562\n                    },\n                    {\n                        \"X\": 0.6105724573135376,\n                        \"Y\": 0.15030373632907867\n                    },\n                    {\n                        \"X\": 0.6105765104293823,\n                        \"Y\": 0.15489251911640167\n                    },\n                    {\n                        \"X\": 0.6011834144592285,\n                        \"Y\": 0.15489846467971802\n                    }\n                ]\n            },\n            \"Id\": \"2e80a18f-83ff-4786-ae45-a952be3f83ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89132690429688,\n            \"Text\": \"negative\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047079019248485565,\n                    \"Height\": 0.009195896796882153,\n                    \"Left\": 0.6348157525062561,\n                    \"Top\": 0.14434035122394562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6348157525062561,\n                        \"Y\": 0.1443701684474945\n                    },\n                    {\n                        \"X\": 0.6818864345550537,\n                        \"Y\": 0.14434035122394562\n                    },\n                    {\n                        \"X\": 0.6818947792053223,\n                        \"Y\": 0.15350644290447235\n                    },\n                    {\n                        \"X\": 0.6348239779472351,\n                        \"Y\": 0.15353624522686005\n                    }\n                ]\n            },\n            \"Id\": \"5b413ca0-675d-44ff-b33d-61ce42a4b274\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87361145019531,\n            \"Text\": \"number,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046148791909217834,\n                    \"Height\": 0.008933589793741703,\n                    \"Left\": 0.6845047473907471,\n                    \"Top\": 0.14419719576835632\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6845047473907471,\n                        \"Y\": 0.14422643184661865\n                    },\n                    {\n                        \"X\": 0.7306452393531799,\n                        \"Y\": 0.14419719576835632\n                    },\n                    {\n                        \"X\": 0.7306535243988037,\n                        \"Y\": 0.1531015783548355\n                    },\n                    {\n                        \"X\": 0.6845129132270813,\n                        \"Y\": 0.15313078463077545\n                    }\n                ]\n            },\n            \"Id\": \"090aa3e5-8553-492e-b5d5-54c4b52c4c44\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81869506835938,\n            \"Text\": \"(for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020056435838341713,\n                    \"Height\": 0.009267929941415787,\n                    \"Left\": 0.4697246551513672,\n                    \"Top\": 0.1538199633359909\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4697246551513672,\n                        \"Y\": 0.15383265912532806\n                    },\n                    {\n                        \"X\": 0.48977330327033997,\n                        \"Y\": 0.1538199633359909\n                    },\n                    {\n                        \"X\": 0.48978111147880554,\n                        \"Y\": 0.16307520866394043\n                    },\n                    {\n                        \"X\": 0.4697323739528656,\n                        \"Y\": 0.1630879044532776\n                    }\n                ]\n            },\n            \"Id\": \"8c345b09-a9d2-4b01-a23e-9387ff6aca51\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84029388427734,\n            \"Text\": \"ALL\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021525459364056587,\n                    \"Height\": 0.007860366255044937,\n                    \"Left\": 0.4915121793746948,\n                    \"Top\": 0.15377870202064514\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4915121793746948,\n                        \"Y\": 0.15379232168197632\n                    },\n                    {\n                        \"X\": 0.5130309462547302,\n                        \"Y\": 0.15377870202064514\n                    },\n                    {\n                        \"X\": 0.5130376219749451,\n                        \"Y\": 0.1616254448890686\n                    },\n                    {\n                        \"X\": 0.4915187656879425,\n                        \"Y\": 0.16163906455039978\n                    }\n                ]\n            },\n            \"Id\": \"501c8822-b32b-4a29-a44e-d1d535f9b4a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55794525146484,\n            \"Text\": \"employees)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0625787004828453,\n                    \"Height\": 0.009525339119136333,\n                    \"Left\": 0.5160974264144897,\n                    \"Top\": 0.15375928580760956\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5160974264144897,\n                        \"Y\": 0.1537988930940628\n                    },\n                    {\n                        \"X\": 0.5786678194999695,\n                        \"Y\": 0.15375928580760956\n                    },\n                    {\n                        \"X\": 0.5786761045455933,\n                        \"Y\": 0.16324502229690552\n                    },\n                    {\n                        \"X\": 0.5161054730415344,\n                        \"Y\": 0.16328461468219757\n                    }\n                ]\n            },\n            \"Id\": \"0b1f0639-81c6-495a-8998-6b27cd03edbd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94341278076172,\n            \"Text\": \"use\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02011493407189846,\n                    \"Height\": 0.005982914939522743,\n                    \"Left\": 0.6348852515220642,\n                    \"Top\": 0.15561383962631226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6348852515220642,\n                        \"Y\": 0.1556265652179718\n                    },\n                    {\n                        \"X\": 0.654994785785675,\n                        \"Y\": 0.15561383962631226\n                    },\n                    {\n                        \"X\": 0.6550001502037048,\n                        \"Y\": 0.1615840196609497\n                    },\n                    {\n                        \"X\": 0.6348905563354492,\n                        \"Y\": 0.16159674525260925\n                    }\n                ]\n            },\n            \"Id\": \"b81fd7f4-25a2-416f-bd76-30b7688c6f1a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8669204711914,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.007017088122665882,\n                    \"Height\": 0.005962657276540995,\n                    \"Left\": 0.6574178338050842,\n                    \"Top\": 0.1556302309036255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6574178338050842,\n                        \"Y\": 0.15563467144966125\n                    },\n                    {\n                        \"X\": 0.6644294857978821,\n                        \"Y\": 0.1556302309036255\n                    },\n                    {\n                        \"X\": 0.6644349098205566,\n                        \"Y\": 0.16158846020698547\n                    },\n                    {\n                        \"X\": 0.657423198223114,\n                        \"Y\": 0.16159288585186005\n                    }\n                ]\n            },\n            \"Id\": \"9530ab38-5d19-4d77-a76f-374b14e4246b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93167114257812,\n            \"Text\": \"minus\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0344293937087059,\n                    \"Height\": 0.007998415268957615,\n                    \"Left\": 0.6668416261672974,\n                    \"Top\": 0.1538849025964737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6668416261672974,\n                        \"Y\": 0.1539066880941391\n                    },\n                    {\n                        \"X\": 0.7012636661529541,\n                        \"Y\": 0.1538849025964737\n                    },\n                    {\n                        \"X\": 0.7012709975242615,\n                        \"Y\": 0.16186153888702393\n                    },\n                    {\n                        \"X\": 0.6668488383293152,\n                        \"Y\": 0.16188330948352814\n                    }\n                ]\n            },\n            \"Id\": \"6bb193a1-37ad-4469-88a7-5e9b57afb6e8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93348693847656,\n            \"Text\": \"sign.)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030349118635058403,\n                    \"Height\": 0.009416352026164532,\n                    \"Left\": 0.7035768032073975,\n                    \"Top\": 0.15386255085468292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7035768032073975,\n                        \"Y\": 0.1538817584514618\n                    },\n                    {\n                        \"X\": 0.7339171171188354,\n                        \"Y\": 0.15386255085468292\n                    },\n                    {\n                        \"X\": 0.7339259386062622,\n                        \"Y\": 0.16325969994068146\n                    },\n                    {\n                        \"X\": 0.7035855054855347,\n                        \"Y\": 0.16327890753746033\n                    }\n                ]\n            },\n            \"Id\": \"5757b200-3d88-4ddb-a1fa-845e36fdc02f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95639038085938,\n            \"Text\": \"33a.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02614554762840271,\n                    \"Height\": 0.00842417310923338,\n                    \"Left\": 0.06195109710097313,\n                    \"Top\": 0.17620757222175598\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06195109710097313,\n                        \"Y\": 0.17622409760951996\n                    },\n                    {\n                        \"X\": 0.08809084445238113,\n                        \"Y\": 0.17620757222175598\n                    },\n                    {\n                        \"X\": 0.08809664100408554,\n                        \"Y\": 0.18461522459983826\n                    },\n                    {\n                        \"X\": 0.06195680797100067,\n                        \"Y\": 0.18463173508644104\n                    }\n                ]\n            },\n            \"Id\": \"4dbd27bc-7437-436a-bb76-5763cc20c2fc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85771179199219,\n            \"Text\": \"Qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055528249591588974,\n                    \"Height\": 0.008494737558066845,\n                    \"Left\": 0.1054147258400917,\n                    \"Top\": 0.17602282762527466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1054147258400917,\n                        \"Y\": 0.17605793476104736\n                    },\n                    {\n                        \"X\": 0.16093690693378448,\n                        \"Y\": 0.17602282762527466\n                    },\n                    {\n                        \"X\": 0.16094297170639038,\n                        \"Y\": 0.18448247015476227\n                    },\n                    {\n                        \"X\": 0.10542061924934387,\n                        \"Y\": 0.18451756238937378\n                    }\n                ]\n            },\n            \"Id\": \"352441d5-0111-4d22-9926-9ffd7120b658\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92289733886719,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04185105487704277,\n                    \"Height\": 0.008766368962824345,\n                    \"Left\": 0.16378465294837952,\n                    \"Top\": 0.17758329212665558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16378465294837952,\n                        \"Y\": 0.17760974168777466\n                    },\n                    {\n                        \"X\": 0.20562928915023804,\n                        \"Y\": 0.17758329212665558\n                    },\n                    {\n                        \"X\": 0.20563571155071259,\n                        \"Y\": 0.18632321059703827\n                    },\n                    {\n                        \"X\": 0.16379092633724213,\n                        \"Y\": 0.18634966015815735\n                    }\n                ]\n            },\n            \"Id\": \"88cfdfa3-f282-47c7-b5b6-c5b83505afeb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96690368652344,\n            \"Text\": \"paid\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027385981753468513,\n                    \"Height\": 0.01003514975309372,\n                    \"Left\": 0.20898817479610443,\n                    \"Top\": 0.17609547078609467\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20898817479610443,\n                        \"Y\": 0.17611278593540192\n                    },\n                    {\n                        \"X\": 0.23636668920516968,\n                        \"Y\": 0.17609547078609467\n                    },\n                    {\n                        \"X\": 0.2363741546869278,\n                        \"Y\": 0.18611331284046173\n                    },\n                    {\n                        \"X\": 0.20899555087089539,\n                        \"Y\": 0.18613062798976898\n                    }\n                ]\n            },\n            \"Id\": \"982e45cb-964e-424e-bbb1-ea69c032c966\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94572448730469,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03923679515719414,\n                    \"Height\": 0.008393333293497562,\n                    \"Left\": 0.2397904098033905,\n                    \"Top\": 0.17609064280986786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2397904098033905,\n                        \"Y\": 0.17611545324325562\n                    },\n                    {\n                        \"X\": 0.27902084589004517,\n                        \"Y\": 0.17609064280986786\n                    },\n                    {\n                        \"X\": 0.27902722358703613,\n                        \"Y\": 0.18445917963981628\n                    },\n                    {\n                        \"X\": 0.23979666829109192,\n                        \"Y\": 0.18448397517204285\n                    }\n                ]\n            },\n            \"Id\": \"ffe25321-088e-432d-a96c-8ca1d0605fa2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86229705810547,\n            \"Text\": \"13\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014599490910768509,\n                    \"Height\": 0.008252264931797981,\n                    \"Left\": 0.2831155061721802,\n                    \"Top\": 0.17611739039421082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2831155061721802,\n                        \"Y\": 0.1761266142129898\n                    },\n                    {\n                        \"X\": 0.297708660364151,\n                        \"Y\": 0.17611739039421082\n                    },\n                    {\n                        \"X\": 0.2977150082588196,\n                        \"Y\": 0.18436042964458466\n                    },\n                    {\n                        \"X\": 0.283121794462204,\n                        \"Y\": 0.18436965346336365\n                    }\n                ]\n            },\n            \"Id\": \"42c76fd9-ef1a-4d9d-8113-9aeaed70252d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.71907043457031,\n            \"Text\": \"200\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02265915647149086,\n                    \"Height\": 0.008517930284142494,\n                    \"Left\": 0.3762308359146118,\n                    \"Top\": 0.18096432089805603\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3762308359146118,\n                        \"Y\": 0.18097864091396332\n                    },\n                    {\n                        \"X\": 0.3988831341266632,\n                        \"Y\": 0.18096432089805603\n                    },\n                    {\n                        \"X\": 0.3988899886608124,\n                        \"Y\": 0.18946793675422668\n                    },\n                    {\n                        \"X\": 0.3762376308441162,\n                        \"Y\": 0.18948225677013397\n                    }\n                ]\n            },\n            \"Id\": \"809f3dc5-9fb2-4771-a3b2-f4c307c917f9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.19066619873047,\n            \"Text\": \"00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015285025350749493,\n                    \"Height\": 0.008276929147541523,\n                    \"Left\": 0.4172520041465759,\n                    \"Top\": 0.1808980256319046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4172520041465759,\n                        \"Y\": 0.18090768158435822\n                    },\n                    {\n                        \"X\": 0.4325302541255951,\n                        \"Y\": 0.1808980256319046\n                    },\n                    {\n                        \"X\": 0.4325370192527771,\n                        \"Y\": 0.18916529417037964\n                    },\n                    {\n                        \"X\": 0.41725873947143555,\n                        \"Y\": 0.18917495012283325\n                    }\n                ]\n            },\n            \"Id\": \"fa7c59ab-5407-4b95-a8fa-390ba5b8bbd9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.68609619140625,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010339267551898956,\n                    \"Height\": 0.0025952577125281096,\n                    \"Left\": 0.44744598865509033,\n                    \"Top\": 0.1830245554447174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44744598865509033,\n                        \"Y\": 0.1830310821533203\n                    },\n                    {\n                        \"X\": 0.4577831029891968,\n                        \"Y\": 0.1830245554447174\n                    },\n                    {\n                        \"X\": 0.4577852487564087,\n                        \"Y\": 0.18561327457427979\n                    },\n                    {\n                        \"X\": 0.44744813442230225,\n                        \"Y\": 0.18561981618404388\n                    }\n                ]\n            },\n            \"Id\": \"9dd99b83-4ab6-434f-acf0-38262ea1c5b0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 80.3970718383789,\n            \"Text\": \"100.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05690998211503029,\n                    \"Height\": 0.011519885621964931,\n                    \"Left\": 0.5288791060447693,\n                    \"Top\": 0.18085455894470215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5288791060447693,\n                        \"Y\": 0.1808905303478241\n                    },\n                    {\n                        \"X\": 0.5857789516448975,\n                        \"Y\": 0.18085455894470215\n                    },\n                    {\n                        \"X\": 0.5857890844345093,\n                        \"Y\": 0.1923384964466095\n                    },\n                    {\n                        \"X\": 0.5288889408111572,\n                        \"Y\": 0.19237443804740906\n                    }\n                ]\n            },\n            \"Id\": \"b210b1b4-6202-48b9-b808-36236e16ad17\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.15103912353516,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.008992861956357956,\n                    \"Height\": 0.00499907648190856,\n                    \"Left\": 0.6014484763145447,\n                    \"Top\": 0.18225298821926117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6014484763145447,\n                        \"Y\": 0.18225868046283722\n                    },\n                    {\n                        \"X\": 0.6104369163513184,\n                        \"Y\": 0.18225298821926117\n                    },\n                    {\n                        \"X\": 0.6104413270950317,\n                        \"Y\": 0.1872463971376419\n                    },\n                    {\n                        \"X\": 0.6014528870582581,\n                        \"Y\": 0.18725207448005676\n                    }\n                ]\n            },\n            \"Id\": \"78dd4dfd-0ba2-4bb1-bd51-7c2716887d48\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98422241210938,\n            \"Text\": \"through\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04899873584508896,\n                    \"Height\": 0.010263742879033089,\n                    \"Left\": 0.10513662546873093,\n                    \"Top\": 0.18583336472511292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10513662546873093,\n                        \"Y\": 0.18586432933807373\n                    },\n                    {\n                        \"X\": 0.1541280448436737,\n                        \"Y\": 0.18583336472511292\n                    },\n                    {\n                        \"X\": 0.15413536131381989,\n                        \"Y\": 0.19606615602970123\n                    },\n                    {\n                        \"X\": 0.10514374822378159,\n                        \"Y\": 0.19609710574150085\n                    }\n                ]\n            },\n            \"Id\": \"1f630bb5-4e04-49a9-962f-978ed27dc220\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88139343261719,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040390703827142715,\n                    \"Height\": 0.008312287740409374,\n                    \"Left\": 0.1580992043018341,\n                    \"Top\": 0.1858443021774292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1580992043018341,\n                        \"Y\": 0.18586982786655426\n                    },\n                    {\n                        \"X\": 0.19848385453224182,\n                        \"Y\": 0.1858443021774292\n                    },\n                    {\n                        \"X\": 0.19848991930484772,\n                        \"Y\": 0.19413107633590698\n                    },\n                    {\n                        \"X\": 0.15810513496398926,\n                        \"Y\": 0.19415658712387085\n                    }\n                ]\n            },\n            \"Id\": \"f809a56a-351e-418f-aac3-27b358660de6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48143005371094,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018714550882577896,\n                    \"Height\": 0.009605358354747295,\n                    \"Left\": 0.20116497576236725,\n                    \"Top\": 0.18593811988830566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20116497576236725,\n                        \"Y\": 0.18594993650913239\n                    },\n                    {\n                        \"X\": 0.21987242996692657,\n                        \"Y\": 0.18593811988830566\n                    },\n                    {\n                        \"X\": 0.21987952291965485,\n                        \"Y\": 0.19553165137767792\n                    },\n                    {\n                        \"X\": 0.20117200911045074,\n                        \"Y\": 0.19554346799850464\n                    }\n                ]\n            },\n            \"Id\": \"1cfea09d-04a5-4b0f-b866-07fab6a56844\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85197448730469,\n            \"Text\": \"2020,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032939352095127106,\n                    \"Height\": 0.009432402439415455,\n                    \"Left\": 0.223029226064682,\n                    \"Top\": 0.18599441647529602\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.223029226064682,\n                        \"Y\": 0.18601523339748383\n                    },\n                    {\n                        \"X\": 0.25596147775650024,\n                        \"Y\": 0.18599441647529602\n                    },\n                    {\n                        \"X\": 0.2559685707092285,\n                        \"Y\": 0.1954060196876526\n                    },\n                    {\n                        \"X\": 0.22303619980812073,\n                        \"Y\": 0.1954268217086792\n                    }\n                ]\n            },\n            \"Id\": \"892b77c5-68c5-4fec-b5be-f97e0a63b595\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94841003417969,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018713101744651794,\n                    \"Height\": 0.008301779627799988,\n                    \"Left\": 0.2588771879673004,\n                    \"Top\": 0.18572038412094116\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2588771879673004,\n                        \"Y\": 0.18573221564292908\n                    },\n                    {\n                        \"X\": 0.2775839865207672,\n                        \"Y\": 0.18572038412094116\n                    },\n                    {\n                        \"X\": 0.2775903046131134,\n                        \"Y\": 0.19401034712791443\n                    },\n                    {\n                        \"X\": 0.25888344645500183,\n                        \"Y\": 0.19402216374874115\n                    }\n                ]\n            },\n            \"Id\": \"8ef08e33-529a-4285-ae77-51b91197ab67\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97083282470703,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020910250023007393,\n                    \"Height\": 0.008154415525496006,\n                    \"Left\": 0.2799724340438843,\n                    \"Top\": 0.1859203428030014\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2799724340438843,\n                        \"Y\": 0.18593354523181915\n                    },\n                    {\n                        \"X\": 0.3008764088153839,\n                        \"Y\": 0.1859203428030014\n                    },\n                    {\n                        \"X\": 0.3008826673030853,\n                        \"Y\": 0.1940615475177765\n                    },\n                    {\n                        \"X\": 0.2799786329269409,\n                        \"Y\": 0.19407474994659424\n                    }\n                ]\n            },\n            \"Id\": \"33500a62-2745-4cb8-83f4-9c4fac16a0fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.44955444335938,\n            \"Text\": \"100.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055328454822301865,\n                    \"Height\": 0.01220959797501564,\n                    \"Left\": 0.6826525926589966,\n                    \"Top\": 0.18042537569999695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6826525926589966,\n                        \"Y\": 0.1804603487253189\n                    },\n                    {\n                        \"X\": 0.737969696521759,\n                        \"Y\": 0.18042537569999695\n                    },\n                    {\n                        \"X\": 0.7379810810089111,\n                        \"Y\": 0.19260002672672272\n                    },\n                    {\n                        \"X\": 0.6826637387275696,\n                        \"Y\": 0.1926349699497223\n                    }\n                ]\n            },\n            \"Id\": \"7b6cca33-3c94-4c65-b694-782e740154a0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.953369140625,\n            \"Text\": \"employee\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.060949984937906265,\n                    \"Height\": 0.010709292255342007,\n                    \"Left\": 0.10573139041662216,\n                    \"Top\": 0.19612544775009155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10573139041662216,\n                        \"Y\": 0.19616393744945526\n                    },\n                    {\n                        \"X\": 0.1666736900806427,\n                        \"Y\": 0.19612544775009155\n                    },\n                    {\n                        \"X\": 0.16668137907981873,\n                        \"Y\": 0.20679627358913422\n                    },\n                    {\n                        \"X\": 0.1057388186454773,\n                        \"Y\": 0.20683473348617554\n                    }\n                ]\n            },\n            \"Id\": \"c7eddbbf-0bdb-40ef-b652-b4d7396d7fc8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84843444824219,\n            \"Text\": \"retention\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05606696382164955,\n                    \"Height\": 0.008240035735070705,\n                    \"Left\": 0.16954980790615082,\n                    \"Top\": 0.1962122619152069\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16954980790615082,\n                        \"Y\": 0.1962476670742035\n                    },\n                    {\n                        \"X\": 0.22561068832874298,\n                        \"Y\": 0.1962122619152069\n                    },\n                    {\n                        \"X\": 0.22561676800251007,\n                        \"Y\": 0.2044169008731842\n                    },\n                    {\n                        \"X\": 0.16955572366714478,\n                        \"Y\": 0.2044522911310196\n                    }\n                ]\n            },\n            \"Id\": \"ce3ad516-8259-4248-a375-3e1893ecf4fe\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72757720947266,\n            \"Text\": \"credit*\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04160037264227867,\n                    \"Height\": 0.008328239433467388,\n                    \"Left\": 0.22925662994384766,\n                    \"Top\": 0.19614334404468536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22925662994384766,\n                        \"Y\": 0.19616961479187012\n                    },\n                    {\n                        \"X\": 0.27085068821907043,\n                        \"Y\": 0.19614334404468536\n                    },\n                    {\n                        \"X\": 0.2708570063114166,\n                        \"Y\": 0.20444533228874207\n                    },\n                    {\n                        \"X\": 0.2292627990245819,\n                        \"Y\": 0.20447158813476562\n                    }\n                ]\n            },\n            \"Id\": \"6ad080f1-fa44-457b-bf74-3131de55e46a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63047790527344,\n            \"Text\": \"Use\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018436629325151443,\n                    \"Height\": 0.007172015029937029,\n                    \"Left\": 0.3226238787174225,\n                    \"Top\": 0.19927018880844116\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3226238787174225,\n                        \"Y\": 0.19928182661533356\n                    },\n                    {\n                        \"X\": 0.34105488657951355,\n                        \"Y\": 0.19927018880844116\n                    },\n                    {\n                        \"X\": 0.34106048941612244,\n                        \"Y\": 0.2064305692911148\n                    },\n                    {\n                        \"X\": 0.322629451751709,\n                        \"Y\": 0.2064422070980072\n                    }\n                ]\n            },\n            \"Id\": \"13859db3-5559-4568-b1c4-b64160b2a208\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9306411743164,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016153395175933838,\n                    \"Height\": 0.0070203919894993305,\n                    \"Left\": 0.34293437004089355,\n                    \"Top\": 0.1993245780467987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34293437004089355,\n                        \"Y\": 0.1993347853422165\n                    },\n                    {\n                        \"X\": 0.3590822219848633,\n                        \"Y\": 0.1993245780467987\n                    },\n                    {\n                        \"X\": 0.3590877652168274,\n                        \"Y\": 0.20633478462696075\n                    },\n                    {\n                        \"X\": 0.3429398834705353,\n                        \"Y\": 0.20634497702121735\n                    }\n                ]\n            },\n            \"Id\": \"2763226e-b62a-4c3a-8d94-d2bcd9695906\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89241027832031,\n            \"Text\": \"33a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016917752102017403,\n                    \"Height\": 0.0066025154665112495,\n                    \"Left\": 0.3610577881336212,\n                    \"Top\": 0.19980622828006744\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3610577881336212,\n                        \"Y\": 0.19981691241264343\n                    },\n                    {\n                        \"X\": 0.37797024846076965,\n                        \"Y\": 0.19980622828006744\n                    },\n                    {\n                        \"X\": 0.3779755234718323,\n                        \"Y\": 0.20639806985855103\n                    },\n                    {\n                        \"X\": 0.36106300354003906,\n                        \"Y\": 0.20640875399112701\n                    }\n                ]\n            },\n            \"Id\": \"49182a97-c583-4af7-8f2b-eb59da24208b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9256820678711,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009962857700884342,\n                    \"Height\": 0.0063314479775726795,\n                    \"Left\": 0.37945497035980225,\n                    \"Top\": 0.199983611702919\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37945497035980225,\n                        \"Y\": 0.1999898999929428\n                    },\n                    {\n                        \"X\": 0.3894127607345581,\n                        \"Y\": 0.199983611702919\n                    },\n                    {\n                        \"X\": 0.389417827129364,\n                        \"Y\": 0.2063087671995163\n                    },\n                    {\n                        \"X\": 0.37946003675460815,\n                        \"Y\": 0.2063150554895401\n                    }\n                ]\n            },\n            \"Id\": \"80e03e12-68fc-4597-bb19-973806f9645b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92704772949219,\n            \"Text\": \"correct\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0316864550113678,\n                    \"Height\": 0.006683769170194864,\n                    \"Left\": 0.3913588225841522,\n                    \"Top\": 0.19987547397613525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3913588225841522,\n                        \"Y\": 0.1998954713344574\n                    },\n                    {\n                        \"X\": 0.42303985357284546,\n                        \"Y\": 0.19987547397613525\n                    },\n                    {\n                        \"X\": 0.42304527759552,\n                        \"Y\": 0.20653924345970154\n                    },\n                    {\n                        \"X\": 0.391364187002182,\n                        \"Y\": 0.20655924081802368\n                    }\n                ]\n            },\n            \"Id\": \"57e03145-f39e-4ff3-aa1d-efb57e05c5d9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98846435546875,\n            \"Text\": \"only\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019674615934491158,\n                    \"Height\": 0.008608161471784115,\n                    \"Left\": 0.42491415143013,\n                    \"Top\": 0.19949869811534882\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42491415143013,\n                        \"Y\": 0.1995111107826233\n                    },\n                    {\n                        \"X\": 0.44458168745040894,\n                        \"Y\": 0.19949869811534882\n                    },\n                    {\n                        \"X\": 0.4445887804031372,\n                        \"Y\": 0.20809443295001984\n                    },\n                    {\n                        \"X\": 0.4249211847782135,\n                        \"Y\": 0.2081068605184555\n                    }\n                ]\n            },\n            \"Id\": \"a9417aaf-8832-476a-b64f-6b6a7fb7d3aa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99114227294922,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014630372636020184,\n                    \"Height\": 0.006946943700313568,\n                    \"Left\": 0.4458780288696289,\n                    \"Top\": 0.1994718611240387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4458780288696289,\n                        \"Y\": 0.1994810849428177\n                    },\n                    {\n                        \"X\": 0.46050262451171875,\n                        \"Y\": 0.1994718611240387\n                    },\n                    {\n                        \"X\": 0.4605083763599396,\n                        \"Y\": 0.20640957355499268\n                    },\n                    {\n                        \"X\": 0.44588375091552734,\n                        \"Y\": 0.20641879737377167\n                    }\n                ]\n            },\n            \"Id\": \"ca23e7fd-5db0-44f5-8810-8645dbe38ab4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9488525390625,\n            \"Text\": \"second\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033473674207925797,\n                    \"Height\": 0.007127463351935148,\n                    \"Left\": 0.4623357951641083,\n                    \"Top\": 0.19943970441818237\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4623357951641083,\n                        \"Y\": 0.19946083426475525\n                    },\n                    {\n                        \"X\": 0.49580347537994385,\n                        \"Y\": 0.19943970441818237\n                    },\n                    {\n                        \"X\": 0.4958094656467438,\n                        \"Y\": 0.20654603838920593\n                    },\n                    {\n                        \"X\": 0.4623417258262634,\n                        \"Y\": 0.2065671682357788\n                    }\n                ]\n            },\n            \"Id\": \"90fa01db-a28a-4a68-a6f4-147012cc91e9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85039520263672,\n            \"Text\": \"quarter\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0323050282895565,\n                    \"Height\": 0.007798612583428621,\n                    \"Left\": 0.49771758913993835,\n                    \"Top\": 0.20007307827472687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49771758913993835,\n                        \"Y\": 0.20009347796440125\n                    },\n                    {\n                        \"X\": 0.5300159454345703,\n                        \"Y\": 0.20007307827472687\n                    },\n                    {\n                        \"X\": 0.5300226211547852,\n                        \"Y\": 0.20785130560398102\n                    },\n                    {\n                        \"X\": 0.49772417545318604,\n                        \"Y\": 0.2078716903924942\n                    }\n                ]\n            },\n            \"Id\": \"3556bcc0-baa3-43e3-9f95-cb2b1e0564df\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88507843017578,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009696898981928825,\n                    \"Height\": 0.0070347716100513935,\n                    \"Left\": 0.5319700837135315,\n                    \"Top\": 0.19939078390598297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5319700837135315,\n                        \"Y\": 0.19939689338207245\n                    },\n                    {\n                        \"X\": 0.5416609644889832,\n                        \"Y\": 0.19939078390598297\n                    },\n                    {\n                        \"X\": 0.5416669845581055,\n                        \"Y\": 0.206419438123703\n                    },\n                    {\n                        \"X\": 0.5319761633872986,\n                        \"Y\": 0.20642554759979248\n                    }\n                ]\n            },\n            \"Id\": \"72893b6c-523d-4c6e-b6f6-d1ea950bc67a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56767272949219,\n            \"Text\": \"2020.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025019729509949684,\n                    \"Height\": 0.006754993461072445,\n                    \"Left\": 0.5430291295051575,\n                    \"Top\": 0.19983597099781036\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5430291295051575,\n                        \"Y\": 0.19985176622867584\n                    },\n                    {\n                        \"X\": 0.5680429935455322,\n                        \"Y\": 0.19983597099781036\n                    },\n                    {\n                        \"X\": 0.5680488348007202,\n                        \"Y\": 0.2065751701593399\n                    },\n                    {\n                        \"X\": 0.5430349111557007,\n                        \"Y\": 0.20659096539020538\n                    }\n                ]\n            },\n            \"Id\": \"51013915-1cf1-4128-93ff-5dd24236e53e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8546142578125,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034414272755384445,\n                    \"Height\": 0.010384957306087017,\n                    \"Left\": 0.10561618208885193,\n                    \"Top\": 0.20647214353084564\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10561618208885193,\n                        \"Y\": 0.20649386942386627\n                    },\n                    {\n                        \"X\": 0.1400230973958969,\n                        \"Y\": 0.20647214353084564\n                    },\n                    {\n                        \"X\": 0.14003045856952667,\n                        \"Y\": 0.2168353945016861\n                    },\n                    {\n                        \"X\": 0.10562339425086975,\n                        \"Y\": 0.21685710549354553\n                    }\n                ]\n            },\n            \"Id\": \"a8062e1e-9e3a-4d0d-a0c1-5797f1436159\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.53733825683594,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020478948950767517,\n                    \"Height\": 0.008309009484946728,\n                    \"Left\": 0.1427844613790512,\n                    \"Top\": 0.20641827583312988\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1427844613790512,\n                        \"Y\": 0.20643119513988495\n                    },\n                    {\n                        \"X\": 0.1632574498653412,\n                        \"Y\": 0.20641827583312988\n                    },\n                    {\n                        \"X\": 0.16326341032981873,\n                        \"Y\": 0.21471436321735382\n                    },\n                    {\n                        \"X\": 0.14279034733772278,\n                        \"Y\": 0.2147272825241089\n                    }\n                ]\n            },\n            \"Id\": \"b26098a6-debe-4809-a2dd-c4b3e79457a5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93562316894531,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013132376596331596,\n                    \"Height\": 0.006589238066226244,\n                    \"Left\": 0.1679995208978653,\n                    \"Top\": 0.20803654193878174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1679995208978653,\n                        \"Y\": 0.20804482698440552\n                    },\n                    {\n                        \"X\": 0.18112713098526,\n                        \"Y\": 0.20803654193878174\n                    },\n                    {\n                        \"X\": 0.18113189935684204,\n                        \"Y\": 0.21461749076843262\n                    },\n                    {\n                        \"X\": 0.16800425946712494,\n                        \"Y\": 0.2146257758140564\n                    }\n                ]\n            },\n            \"Id\": \"03eca0ac-f281-4780-9fb8-d55673a4c7ba\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.84873962402344,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04789982736110687,\n                    \"Height\": 0.009818486869335175,\n                    \"Left\": 0.1836519092321396,\n                    \"Top\": 0.20632490515708923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1836519092321396,\n                        \"Y\": 0.20635513961315155\n                    },\n                    {\n                        \"X\": 0.23154444992542267,\n                        \"Y\": 0.20632490515708923\n                    },\n                    {\n                        \"X\": 0.23155173659324646,\n                        \"Y\": 0.21611317992210388\n                    },\n                    {\n                        \"X\": 0.18365900218486786,\n                        \"Y\": 0.216143399477005\n                    }\n                ]\n            },\n            \"Id\": \"9b93ea06-fbde-412c-b2f0-240af73285db\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.17766571044922,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020789092406630516,\n                    \"Height\": 0.00835339818149805,\n                    \"Left\": 0.23490053415298462,\n                    \"Top\": 0.2063758820295334\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23490053415298462,\n                        \"Y\": 0.20638899505138397\n                    },\n                    {\n                        \"X\": 0.2556833326816559,\n                        \"Y\": 0.2063758820295334\n                    },\n                    {\n                        \"X\": 0.2556896209716797,\n                        \"Y\": 0.21471616625785828\n                    },\n                    {\n                        \"X\": 0.23490674793720245,\n                        \"Y\": 0.21472927927970886\n                    }\n                ]\n            },\n            \"Id\": \"d79deac8-8d1d-4fc2-86b9-612e83a5791a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72752380371094,\n            \"Text\": \"24)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018564395606517792,\n                    \"Height\": 0.01041858084499836,\n                    \"Left\": 0.2584156394004822,\n                    \"Top\": 0.2064426690340042\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2584156394004822,\n                        \"Y\": 0.20645438134670258\n                    },\n                    {\n                        \"X\": 0.27697211503982544,\n                        \"Y\": 0.2064426690340042\n                    },\n                    {\n                        \"X\": 0.27698004245758057,\n                        \"Y\": 0.21684953570365906\n                    },\n                    {\n                        \"X\": 0.25842347741127014,\n                        \"Y\": 0.21686124801635742\n                    }\n                ]\n            },\n            \"Id\": \"a8673706-99ff-4fcb-b303-8bf2685af2ed\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76256561279297,\n            \"Text\": \"33b.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0271772388368845,\n                    \"Height\": 0.008677639067173004,\n                    \"Left\": 0.06089240312576294,\n                    \"Top\": 0.22876299917697906\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06089240312576294,\n                        \"Y\": 0.228780135512352\n                    },\n                    {\n                        \"X\": 0.08806367218494415,\n                        \"Y\": 0.22876299917697906\n                    },\n                    {\n                        \"X\": 0.08806964010000229,\n                        \"Y\": 0.23742352426052094\n                    },\n                    {\n                        \"X\": 0.06089828535914421,\n                        \"Y\": 0.23744064569473267\n                    }\n                ]\n            },\n            \"Id\": \"6ba74f1c-58ea-419d-9742-9fddeede2ee5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95246124267578,\n            \"Text\": \"Deferred\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05561361461877823,\n                    \"Height\": 0.008675375021994114,\n                    \"Left\": 0.10538680851459503,\n                    \"Top\": 0.22864769399166107\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10538680851459503,\n                        \"Y\": 0.2286827564239502\n                    },\n                    {\n                        \"X\": 0.16099423170089722,\n                        \"Y\": 0.22864769399166107\n                    },\n                    {\n                        \"X\": 0.16100043058395386,\n                        \"Y\": 0.23728802800178528\n                    },\n                    {\n                        \"X\": 0.10539282113313675,\n                        \"Y\": 0.23732306063175201\n                    }\n                ]\n            },\n            \"Id\": \"bdf2f96f-82d9-4301-a5b5-8cdec9b67194\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98169708251953,\n            \"Text\": \"amount\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04868160933256149,\n                    \"Height\": 0.008232816122472286,\n                    \"Left\": 0.1635115146636963,\n                    \"Top\": 0.22912931442260742\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1635115146636963,\n                        \"Y\": 0.22916001081466675\n                    },\n                    {\n                        \"X\": 0.21218709647655487,\n                        \"Y\": 0.22912931442260742\n                    },\n                    {\n                        \"X\": 0.21219313144683838,\n                        \"Y\": 0.23733146488666534\n                    },\n                    {\n                        \"X\": 0.16351741552352905,\n                        \"Y\": 0.23736213147640228\n                    }\n                ]\n            },\n            \"Id\": \"79046930-5fb6-4cd1-a470-7d1addd6f64f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97518157958984,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013332557864487171,\n                    \"Height\": 0.008421552367508411,\n                    \"Left\": 0.21519064903259277,\n                    \"Top\": 0.22878724336624146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21519064903259277,\n                        \"Y\": 0.22879564762115479\n                    },\n                    {\n                        \"X\": 0.22851696610450745,\n                        \"Y\": 0.22878724336624146\n                    },\n                    {\n                        \"X\": 0.22852320969104767,\n                        \"Y\": 0.23720039427280426\n                    },\n                    {\n                        \"X\": 0.2151968628168106,\n                        \"Y\": 0.2372087985277176\n                    }\n                ]\n            },\n            \"Id\": \"62f7a8ca-7b64-4db9-8f96-61a14fb6ee72\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99067687988281,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02072005532681942,\n                    \"Height\": 0.008355662226676941,\n                    \"Left\": 0.23068015277385712,\n                    \"Top\": 0.22885745763778687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23068015277385712,\n                        \"Y\": 0.22887051105499268\n                    },\n                    {\n                        \"X\": 0.2513939440250397,\n                        \"Y\": 0.22885745763778687\n                    },\n                    {\n                        \"X\": 0.2514002025127411,\n                        \"Y\": 0.237200066447258\n                    },\n                    {\n                        \"X\": 0.23068635165691376,\n                        \"Y\": 0.2372131198644638\n                    }\n                ]\n            },\n            \"Id\": \"281a63db-4988-473d-b7d8-518f3d3a026b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 81.76475524902344,\n            \"Text\": \"210.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05749612674117088,\n                    \"Height\": 0.012209893204271793,\n                    \"Left\": 0.3751921057701111,\n                    \"Top\": 0.23413683474063873\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3751921057701111,\n                        \"Y\": 0.23417305946350098\n                    },\n                    {\n                        \"X\": 0.4326782524585724,\n                        \"Y\": 0.23413683474063873\n                    },\n                    {\n                        \"X\": 0.43268823623657227,\n                        \"Y\": 0.2463105171918869\n                    },\n                    {\n                        \"X\": 0.3752018213272095,\n                        \"Y\": 0.24634672701358795\n                    }\n                ]\n            },\n            \"Id\": \"e4197016-b0a3-409b-8da5-14a969811c91\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.77018737792969,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0105988048017025,\n                    \"Height\": 0.0028589193243533373,\n                    \"Left\": 0.44742000102996826,\n                    \"Top\": 0.2364363968372345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44742000102996826,\n                        \"Y\": 0.23644307255744934\n                    },\n                    {\n                        \"X\": 0.45801645517349243,\n                        \"Y\": 0.2364363968372345\n                    },\n                    {\n                        \"X\": 0.45801880955696106,\n                        \"Y\": 0.23928864300251007\n                    },\n                    {\n                        \"X\": 0.4474223554134369,\n                        \"Y\": 0.23929531872272491\n                    }\n                ]\n            },\n            \"Id\": \"a28f96b7-39b3-467e-bde2-057f2a3ba9a4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 80.9785385131836,\n            \"Text\": \"120.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05605108663439751,\n                    \"Height\": 0.01186947152018547,\n                    \"Left\": 0.5294727087020874,\n                    \"Top\": 0.23394015431404114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5294727087020874,\n                        \"Y\": 0.23397548496723175\n                    },\n                    {\n                        \"X\": 0.5855134129524231,\n                        \"Y\": 0.23394015431404114\n                    },\n                    {\n                        \"X\": 0.585523784160614,\n                        \"Y\": 0.24577432870864868\n                    },\n                    {\n                        \"X\": 0.5294828414916992,\n                        \"Y\": 0.2458096295595169\n                    }\n                ]\n            },\n            \"Id\": \"3e14b7a9-3bc8-4607-97a4-8de9c4215f2d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.24295806884766,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009387693367898464,\n                    \"Height\": 0.004370951559394598,\n                    \"Left\": 0.601214587688446,\n                    \"Top\": 0.23593702912330627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.601214587688446,\n                        \"Y\": 0.23594294488430023\n                    },\n                    {\n                        \"X\": 0.6105983853340149,\n                        \"Y\": 0.23593702912330627\n                    },\n                    {\n                        \"X\": 0.6106022596359253,\n                        \"Y\": 0.24030207097530365\n                    },\n                    {\n                        \"X\": 0.6012184023857117,\n                        \"Y\": 0.2403079867362976\n                    }\n                ]\n            },\n            \"Id\": \"9185cf32-9f6d-4f10-8d24-dbbb66655aa6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93208312988281,\n            \"Text\": \"employee\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06138330698013306,\n                    \"Height\": 0.009969139471650124,\n                    \"Left\": 0.10550283640623093,\n                    \"Top\": 0.23930835723876953\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10550283640623093,\n                        \"Y\": 0.23934702575206757\n                    },\n                    {\n                        \"X\": 0.16687899827957153,\n                        \"Y\": 0.23930835723876953\n                    },\n                    {\n                        \"X\": 0.16688615083694458,\n                        \"Y\": 0.24923883378505707\n                    },\n                    {\n                        \"X\": 0.10550975054502487,\n                        \"Y\": 0.2492774873971939\n                    }\n                ]\n            },\n            \"Id\": \"81281da4-ef0d-410f-b2a0-996c0591e64d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96746063232422,\n            \"Text\": \"share\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03544209897518158,\n                    \"Height\": 0.008387867361307144,\n                    \"Left\": 0.1697215586900711,\n                    \"Top\": 0.23917892575263977\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1697215586900711,\n                        \"Y\": 0.23920126259326935\n                    },\n                    {\n                        \"X\": 0.20515751838684082,\n                        \"Y\": 0.23917892575263977\n                    },\n                    {\n                        \"X\": 0.20516365766525269,\n                        \"Y\": 0.24754448235034943\n                    },\n                    {\n                        \"X\": 0.16972757875919342,\n                        \"Y\": 0.2475668042898178\n                    }\n                ]\n            },\n            \"Id\": \"2a87bc52-17df-4526-a94b-12d6c3ba7e11\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97028350830078,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013334664516150951,\n                    \"Height\": 0.008356611244380474,\n                    \"Left\": 0.2081209272146225,\n                    \"Top\": 0.23923052847385406\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2081209272146225,\n                        \"Y\": 0.2392389178276062\n                    },\n                    {\n                        \"X\": 0.22144941985607147,\n                        \"Y\": 0.23923052847385406\n                    },\n                    {\n                        \"X\": 0.22145558893680573,\n                        \"Y\": 0.24757874011993408\n                    },\n                    {\n                        \"X\": 0.20812706649303436,\n                        \"Y\": 0.24758712947368622\n                    }\n                ]\n            },\n            \"Id\": \"f47df568-d096-4e2d-8842-673837488d32\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87548828125,\n            \"Text\": \"social\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.037630558013916016,\n                    \"Height\": 0.008532995358109474,\n                    \"Left\": 0.22400791943073273,\n                    \"Top\": 0.23908604681491852\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22400791943073273,\n                        \"Y\": 0.23910975456237793\n                    },\n                    {\n                        \"X\": 0.2616320550441742,\n                        \"Y\": 0.23908604681491852\n                    },\n                    {\n                        \"X\": 0.26163849234580994,\n                        \"Y\": 0.24759534001350403\n                    },\n                    {\n                        \"X\": 0.22401422262191772,\n                        \"Y\": 0.24761903285980225\n                    }\n                ]\n            },\n            \"Id\": \"cbd3312b-c636-4d45-b6e1-ebde52e458eb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.79374694824219,\n            \"Text\": \"90.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04935430362820625,\n                    \"Height\": 0.012386838905513287,\n                    \"Left\": 0.6888339519500732,\n                    \"Top\": 0.23400524258613586\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6888339519500732,\n                        \"Y\": 0.23403634130954742\n                    },\n                    {\n                        \"X\": 0.738176703453064,\n                        \"Y\": 0.23400524258613586\n                    },\n                    {\n                        \"X\": 0.7381882667541504,\n                        \"Y\": 0.24636100232601166\n                    },\n                    {\n                        \"X\": 0.6888452768325806,\n                        \"Y\": 0.24639208614826202\n                    }\n                ]\n            },\n            \"Id\": \"e5b0e7bb-a085-471f-b2e0-eb33b7d0c98a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97758483886719,\n            \"Text\": \"security\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.050973668694496155,\n                    \"Height\": 0.010079558938741684,\n                    \"Left\": 0.10527320951223373,\n                    \"Top\": 0.24909548461437225\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10527320951223373,\n                        \"Y\": 0.2491275817155838\n                    },\n                    {\n                        \"X\": 0.15623968839645386,\n                        \"Y\": 0.24909548461437225\n                    },\n                    {\n                        \"X\": 0.15624688565731049,\n                        \"Y\": 0.2591429650783539\n                    },\n                    {\n                        \"X\": 0.10528020560741425,\n                        \"Y\": 0.25917503237724304\n                    }\n                ]\n            },\n            \"Id\": \"b6ca5031-1b8d-4eb6-8098-4210cf7a3c41\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94671630859375,\n            \"Text\": \"tax\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019959496334195137,\n                    \"Height\": 0.008039257489144802,\n                    \"Left\": 0.15843245387077332,\n                    \"Top\": 0.2492244392633438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15843245387077332,\n                        \"Y\": 0.24923700094223022\n                    },\n                    {\n                        \"X\": 0.1783861368894577,\n                        \"Y\": 0.2492244392633438\n                    },\n                    {\n                        \"X\": 0.1783919483423233,\n                        \"Y\": 0.25725114345550537\n                    },\n                    {\n                        \"X\": 0.15843819081783295,\n                        \"Y\": 0.2572636902332306\n                    }\n                ]\n            },\n            \"Id\": \"64fc9bff-165c-4ed2-a3c1-c1e2d510bc41\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9616470336914,\n            \"Text\": \"included\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05397693067789078,\n                    \"Height\": 0.008546954020857811,\n                    \"Left\": 0.18136915564537048,\n                    \"Top\": 0.24879565834999084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18136915564537048,\n                        \"Y\": 0.248829647898674\n                    },\n                    {\n                        \"X\": 0.23533974587917328,\n                        \"Y\": 0.24879565834999084\n                    },\n                    {\n                        \"X\": 0.23534607887268066,\n                        \"Y\": 0.25730863213539124\n                    },\n                    {\n                        \"X\": 0.18137532472610474,\n                        \"Y\": 0.2573426067829132\n                    }\n                ]\n            },\n            \"Id\": \"85fcecbf-5213-44f0-af15-d5af156fd591\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89981842041016,\n            \"Text\": \"on\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016164505854249,\n                    \"Height\": 0.006584732327610254,\n                    \"Left\": 0.23837386071681976,\n                    \"Top\": 0.25053536891937256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23837386071681976,\n                        \"Y\": 0.25054556131362915\n                    },\n                    {\n                        \"X\": 0.25453341007232666,\n                        \"Y\": 0.25053536891937256\n                    },\n                    {\n                        \"X\": 0.254538357257843,\n                        \"Y\": 0.25710994005203247\n                    },\n                    {\n                        \"X\": 0.23837877810001373,\n                        \"Y\": 0.2571201026439667\n                    }\n                ]\n            },\n            \"Id\": \"8fb4e22a-4880-4990-83b3-91da66c3e1c7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9683837890625,\n            \"Text\": \"Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033104363828897476,\n                    \"Height\": 0.008529335260391235,\n                    \"Left\": 0.2580067813396454,\n                    \"Top\": 0.24876917898654938\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2580067813396454,\n                        \"Y\": 0.24879001080989838\n                    },\n                    {\n                        \"X\": 0.29110464453697205,\n                        \"Y\": 0.24876917898654938\n                    },\n                    {\n                        \"X\": 0.29111114144325256,\n                        \"Y\": 0.2572776675224304\n                    },\n                    {\n                        \"X\": 0.25801321864128113,\n                        \"Y\": 0.2572984993457794\n                    }\n                ]\n            },\n            \"Id\": \"a57b4473-604a-4198-b1c6-670b5b67e5ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4524154663086,\n            \"Text\": \"Use\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018562279641628265,\n                    \"Height\": 0.007003505248576403,\n                    \"Left\": 0.3225351572036743,\n                    \"Top\": 0.2525835931301117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3225351572036743,\n                        \"Y\": 0.25259527564048767\n                    },\n                    {\n                        \"X\": 0.34109196066856384,\n                        \"Y\": 0.2525835931301117\n                    },\n                    {\n                        \"X\": 0.3410974442958832,\n                        \"Y\": 0.25957542657852173\n                    },\n                    {\n                        \"X\": 0.32254061102867126,\n                        \"Y\": 0.2595871090888977\n                    }\n                ]\n            },\n            \"Id\": \"209544d1-507b-459b-b87c-8eccef48914e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90892028808594,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016167784109711647,\n                    \"Height\": 0.006780331023037434,\n                    \"Left\": 0.3429746925830841,\n                    \"Top\": 0.25263795256614685\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3429746925830841,\n                        \"Y\": 0.25264811515808105\n                    },\n                    {\n                        \"X\": 0.3591371178627014,\n                        \"Y\": 0.25263795256614685\n                    },\n                    {\n                        \"X\": 0.3591424822807312,\n                        \"Y\": 0.2594081163406372\n                    },\n                    {\n                        \"X\": 0.3429800271987915,\n                        \"Y\": 0.2594182789325714\n                    }\n                ]\n            },\n            \"Id\": \"47d92a32-f442-4c9f-b734-77e61f6d1518\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7090072631836,\n            \"Text\": \"33b\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017075981944799423,\n                    \"Height\": 0.006813399493694305,\n                    \"Left\": 0.3612305819988251,\n                    \"Top\": 0.2526799142360687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3612305819988251,\n                        \"Y\": 0.2526906728744507\n                    },\n                    {\n                        \"X\": 0.37830111384391785,\n                        \"Y\": 0.2526799142360687\n                    },\n                    {\n                        \"X\": 0.3783065676689148,\n                        \"Y\": 0.25948259234428406\n                    },\n                    {\n                        \"X\": 0.36123597621917725,\n                        \"Y\": 0.25949332118034363\n                    }\n                ]\n            },\n            \"Id\": \"9b5481dc-ea5f-441c-b38a-acbad0a74c44\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94222259521484,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009631164371967316,\n                    \"Height\": 0.006304275710135698,\n                    \"Left\": 0.3803599774837494,\n                    \"Top\": 0.253196120262146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3803599774837494,\n                        \"Y\": 0.2532021999359131\n                    },\n                    {\n                        \"X\": 0.3899860680103302,\n                        \"Y\": 0.253196120262146\n                    },\n                    {\n                        \"X\": 0.3899911344051361,\n                        \"Y\": 0.2594943344593048\n                    },\n                    {\n                        \"X\": 0.3803650140762329,\n                        \"Y\": 0.2595004141330719\n                    }\n                ]\n            },\n            \"Id\": \"d381565f-cc71-4c93-a3a1-86e135c81235\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9463119506836,\n            \"Text\": \"correct\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03203199803829193,\n                    \"Height\": 0.006472350563853979,\n                    \"Left\": 0.3918517529964447,\n                    \"Top\": 0.253187894821167\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3918517529964447,\n                        \"Y\": 0.2532080411911011\n                    },\n                    {\n                        \"X\": 0.4238784909248352,\n                        \"Y\": 0.253187894821167\n                    },\n                    {\n                        \"X\": 0.42388373613357544,\n                        \"Y\": 0.25964006781578064\n                    },\n                    {\n                        \"X\": 0.39185693860054016,\n                        \"Y\": 0.2596602439880371\n                    }\n                ]\n            },\n            \"Id\": \"e12fc79f-87b6-436d-b956-b0381520d448\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98462677001953,\n            \"Text\": \"only\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019228048622608185,\n                    \"Height\": 0.008517911657691002,\n                    \"Left\": 0.42534634470939636,\n                    \"Top\": 0.2528170943260193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42534634470939636,\n                        \"Y\": 0.2528291940689087\n                    },\n                    {\n                        \"X\": 0.44456735253334045,\n                        \"Y\": 0.2528170943260193\n                    },\n                    {\n                        \"X\": 0.44457438588142395,\n                        \"Y\": 0.26132291555404663\n                    },\n                    {\n                        \"X\": 0.4253532886505127,\n                        \"Y\": 0.26133501529693604\n                    }\n                ]\n            },\n            \"Id\": \"5b59acf8-0822-4894-8cdd-778538821ec5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99120330810547,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014621144160628319,\n                    \"Height\": 0.007014247588813305,\n                    \"Left\": 0.44643697142601013,\n                    \"Top\": 0.2526634633541107\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44643697142601013,\n                        \"Y\": 0.2526726722717285\n                    },\n                    {\n                        \"X\": 0.4610522985458374,\n                        \"Y\": 0.2526634633541107\n                    },\n                    {\n                        \"X\": 0.461058109998703,\n                        \"Y\": 0.2596684992313385\n                    },\n                    {\n                        \"X\": 0.44644275307655334,\n                        \"Y\": 0.2596777081489563\n                    }\n                ]\n            },\n            \"Id\": \"78522d46-ab9c-4efd-b78c-7059f95ee687\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97054290771484,\n            \"Text\": \"third\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02085738815367222,\n                    \"Height\": 0.00704669114202261,\n                    \"Left\": 0.462875634431839,\n                    \"Top\": 0.2524755001068115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.462875634431839,\n                        \"Y\": 0.2524886429309845\n                    },\n                    {\n                        \"X\": 0.4837271273136139,\n                        \"Y\": 0.2524755001068115\n                    },\n                    {\n                        \"X\": 0.48373302817344666,\n                        \"Y\": 0.2595090866088867\n                    },\n                    {\n                        \"X\": 0.46288150548934937,\n                        \"Y\": 0.2595221996307373\n                    }\n                ]\n            },\n            \"Id\": \"a6156362-3d86-436b-9d00-d72a4ba46462\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96748352050781,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017390135675668716,\n                    \"Height\": 0.00696389377117157,\n                    \"Left\": 0.4859093129634857,\n                    \"Top\": 0.2525573670864105\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4859093129634857,\n                        \"Y\": 0.2525683045387268\n                    },\n                    {\n                        \"X\": 0.5032935738563538,\n                        \"Y\": 0.2525573670864105\n                    },\n                    {\n                        \"X\": 0.5032994747161865,\n                        \"Y\": 0.2595103085041046\n                    },\n                    {\n                        \"X\": 0.4859151542186737,\n                        \"Y\": 0.2595212459564209\n                    }\n                ]\n            },\n            \"Id\": \"a522e533-dc41-4c49-aeff-6052ae0d0b93\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89840698242188,\n            \"Text\": \"fourth\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02652449533343315,\n                    \"Height\": 0.007158145774155855,\n                    \"Left\": 0.504731297492981,\n                    \"Top\": 0.25248974561691284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.504731297492981,\n                        \"Y\": 0.25250646471977234\n                    },\n                    {\n                        \"X\": 0.5312496423721313,\n                        \"Y\": 0.25248974561691284\n                    },\n                    {\n                        \"X\": 0.5312557816505432,\n                        \"Y\": 0.2596312165260315\n                    },\n                    {\n                        \"X\": 0.504737377166748,\n                        \"Y\": 0.2596479058265686\n                    }\n                ]\n            },\n            \"Id\": \"1c96c760-2b33-4454-a33e-50cebb87daa9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73995971679688,\n            \"Text\": \"quarters\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036792755126953125,\n                    \"Height\": 0.008074815385043621,\n                    \"Left\": 0.5337181091308594,\n                    \"Top\": 0.25324746966362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5337181091308594,\n                        \"Y\": 0.25327062606811523\n                    },\n                    {\n                        \"X\": 0.570503830909729,\n                        \"Y\": 0.25324746966362\n                    },\n                    {\n                        \"X\": 0.5705108642578125,\n                        \"Y\": 0.26129913330078125\n                    },\n                    {\n                        \"X\": 0.5337250232696533,\n                        \"Y\": 0.2613222897052765\n                    }\n                ]\n            },\n            \"Id\": \"a6d6d8b6-9768-4de8-afdf-6fac4f4a06c9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85620880126953,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0094408905133605,\n                    \"Height\": 0.006973305717110634,\n                    \"Left\": 0.5727995038032532,\n                    \"Top\": 0.25256118178367615\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5727995038032532,\n                        \"Y\": 0.2525671124458313\n                    },\n                    {\n                        \"X\": 0.5822343230247498,\n                        \"Y\": 0.25256118178367615\n                    },\n                    {\n                        \"X\": 0.5822404026985168,\n                        \"Y\": 0.2595285475254059\n                    },\n                    {\n                        \"X\": 0.5728055834770203,\n                        \"Y\": 0.25953447818756104\n                    }\n                ]\n            },\n            \"Id\": \"2b11bd8c-2a4f-4019-85ca-0702ac4313c6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.32643127441406,\n            \"Text\": \"2020.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02497083507478237,\n                    \"Height\": 0.006816555745899677,\n                    \"Left\": 0.5838003754615784,\n                    \"Top\": 0.2530009150505066\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5838003754615784,\n                        \"Y\": 0.2530166208744049\n                    },\n                    {\n                        \"X\": 0.608765184879303,\n                        \"Y\": 0.2530009150505066\n                    },\n                    {\n                        \"X\": 0.6087712049484253,\n                        \"Y\": 0.2598017454147339\n                    },\n                    {\n                        \"X\": 0.5838063359260559,\n                        \"Y\": 0.2598174512386322\n                    }\n                ]\n            },\n            \"Id\": \"93c1420f-ec86-4f49-a336-743a736d9f34\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92729187011719,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021741321310400963,\n                    \"Height\": 0.009020211175084114,\n                    \"Left\": 0.10516314208507538,\n                    \"Top\": 0.2588694393634796\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10516314208507538,\n                        \"Y\": 0.25888311862945557\n                    },\n                    {\n                        \"X\": 0.1268981248140335,\n                        \"Y\": 0.2588694393634796\n                    },\n                    {\n                        \"X\": 0.1269044578075409,\n                        \"Y\": 0.267875999212265\n                    },\n                    {\n                        \"X\": 0.10516941547393799,\n                        \"Y\": 0.2678896486759186\n                    }\n                ]\n            },\n            \"Id\": \"a45af00c-c88d-44e1-9880-562caef6b8b6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88582611083984,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014647221192717552,\n                    \"Height\": 0.0065400563180446625,\n                    \"Left\": 0.13043028116226196,\n                    \"Top\": 0.2609686851501465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13043028116226196,\n                        \"Y\": 0.26097792387008667\n                    },\n                    {\n                        \"X\": 0.14507286250591278,\n                        \"Y\": 0.2609686851501465\n                    },\n                    {\n                        \"X\": 0.14507749676704407,\n                        \"Y\": 0.26749953627586365\n                    },\n                    {\n                        \"X\": 0.13043488562107086,\n                        \"Y\": 0.26750874519348145\n                    }\n                ]\n            },\n            \"Id\": \"83bb5bb7-92e8-4bb4-82ac-f47f93ff1280\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.84732818603516,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047841425985097885,\n                    \"Height\": 0.009408797137439251,\n                    \"Left\": 0.14778898656368256,\n                    \"Top\": 0.25930705666542053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14778898656368256,\n                        \"Y\": 0.2593371570110321\n                    },\n                    {\n                        \"X\": 0.19562356173992157,\n                        \"Y\": 0.25930705666542053\n                    },\n                    {\n                        \"X\": 0.19563041627407074,\n                        \"Y\": 0.2686857581138611\n                    },\n                    {\n                        \"X\": 0.1477956622838974,\n                        \"Y\": 0.26871582865715027\n                    }\n                ]\n            },\n            \"Id\": \"eec1145d-5b48-4305-9b43-1cc5469e9662\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8355712890625,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.022850876674056053,\n                    \"Height\": 0.008378035388886929,\n                    \"Left\": 0.19885662198066711,\n                    \"Top\": 0.2590988874435425\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19885662198066711,\n                        \"Y\": 0.25911328196525574\n                    },\n                    {\n                        \"X\": 0.22170130908489227,\n                        \"Y\": 0.2590988874435425\n                    },\n                    {\n                        \"X\": 0.2217075079679489,\n                        \"Y\": 0.2674625515937805\n                    },\n                    {\n                        \"X\": 0.19886274635791779,\n                        \"Y\": 0.2674769461154938\n                    }\n                ]\n            },\n            \"Id\": \"86e7951c-5319-4076-929c-23c8f51b4063\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60778045654297,\n            \"Text\": \"13b*\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027203742414712906,\n                    \"Height\": 0.008395548909902573,\n                    \"Left\": 0.22507664561271667,\n                    \"Top\": 0.25911930203437805\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22507664561271667,\n                        \"Y\": 0.259136438369751\n                    },\n                    {\n                        \"X\": 0.2522740960121155,\n                        \"Y\": 0.25911930203437805\n                    },\n                    {\n                        \"X\": 0.2522803843021393,\n                        \"Y\": 0.2674977481365204\n                    },\n                    {\n                        \"X\": 0.2250828593969345,\n                        \"Y\": 0.2675148546695709\n                    }\n                ]\n            },\n            \"Id\": \"521155fd-0465-4b4c-b00c-a0ace6540d8c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89261627197266,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03424069657921791,\n                    \"Height\": 0.01027187705039978,\n                    \"Left\": 0.10553044080734253,\n                    \"Top\": 0.26950037479400635\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10553044080734253,\n                        \"Y\": 0.26952192187309265\n                    },\n                    {\n                        \"X\": 0.13976386189460754,\n                        \"Y\": 0.26950037479400635\n                    },\n                    {\n                        \"X\": 0.13977113366127014,\n                        \"Y\": 0.2797507345676422\n                    },\n                    {\n                        \"X\": 0.10553757846355438,\n                        \"Y\": 0.2797722816467285\n                    }\n                ]\n            },\n            \"Id\": \"de3848fb-d1ce-4e74-b36f-4d9de534bacf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91986846923828,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020699096843600273,\n                    \"Height\": 0.008476420305669308,\n                    \"Left\": 0.1427680104970932,\n                    \"Top\": 0.26946204900741577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1427680104970932,\n                        \"Y\": 0.2694750726222992\n                    },\n                    {\n                        \"X\": 0.16346102952957153,\n                        \"Y\": 0.26946204900741577\n                    },\n                    {\n                        \"X\": 0.16346709430217743,\n                        \"Y\": 0.2779254615306854\n                    },\n                    {\n                        \"X\": 0.14277401566505432,\n                        \"Y\": 0.27793848514556885\n                    }\n                ]\n            },\n            \"Id\": \"5274692d-5a31-4ad5-b621-fa784568b3dc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92733764648438,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013185306452214718,\n                    \"Height\": 0.00671469746157527,\n                    \"Left\": 0.16791798174381256,\n                    \"Top\": 0.2711694836616516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16791798174381256,\n                        \"Y\": 0.2711777687072754\n                    },\n                    {\n                        \"X\": 0.18109843134880066,\n                        \"Y\": 0.2711694836616516\n                    },\n                    {\n                        \"X\": 0.18110328912734985,\n                        \"Y\": 0.2778759002685547\n                    },\n                    {\n                        \"X\": 0.16792280972003937,\n                        \"Y\": 0.27788418531417847\n                    }\n                ]\n            },\n            \"Id\": \"68f20c00-4a38-4436-9bac-fde523b9e945\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.40266418457031,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04771580547094345,\n                    \"Height\": 0.00962279923260212,\n                    \"Left\": 0.18371225893497467,\n                    \"Top\": 0.26951703429222107\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18371225893497467,\n                        \"Y\": 0.2695470452308655\n                    },\n                    {\n                        \"X\": 0.23142091929912567,\n                        \"Y\": 0.26951703429222107\n                    },\n                    {\n                        \"X\": 0.23142805695533752,\n                        \"Y\": 0.2791098356246948\n                    },\n                    {\n                        \"X\": 0.1837192177772522,\n                        \"Y\": 0.27913981676101685\n                    }\n                ]\n            },\n            \"Id\": \"68a67742-07f1-4678-887c-16bbd47696b2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.41681671142578,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02063613198697567,\n                    \"Height\": 0.008482865989208221,\n                    \"Left\": 0.235137939453125,\n                    \"Top\": 0.2693738043308258\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.235137939453125,\n                        \"Y\": 0.26938679814338684\n                    },\n                    {\n                        \"X\": 0.25576770305633545,\n                        \"Y\": 0.2693738043308258\n                    },\n                    {\n                        \"X\": 0.2557740807533264,\n                        \"Y\": 0.277843713760376\n                    },\n                    {\n                        \"X\": 0.2351442575454712,\n                        \"Y\": 0.2778566777706146\n                    }\n                ]\n            },\n            \"Id\": \"f32803de-f2c9-47c6-bc90-2611ace63fdd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7209701538086,\n            \"Text\": \"24)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01861656829714775,\n                    \"Height\": 0.010379231534898281,\n                    \"Left\": 0.25844961404800415,\n                    \"Top\": 0.2694381773471832\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25844961404800415,\n                        \"Y\": 0.2694498896598816\n                    },\n                    {\n                        \"X\": 0.27705830335617065,\n                        \"Y\": 0.2694381773471832\n                    },\n                    {\n                        \"X\": 0.277066171169281,\n                        \"Y\": 0.2798057198524475\n                    },\n                    {\n                        \"X\": 0.2584574222564697,\n                        \"Y\": 0.2798174321651459\n                    }\n                ]\n            },\n            \"Id\": \"87c030c1-746c-451b-9706-919d52238cc9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67326354980469,\n            \"Text\": \"34.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01830662414431572,\n                    \"Height\": 0.008375938050448895,\n                    \"Left\": 0.0635172426700592,\n                    \"Top\": 0.2894729971885681\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0635172426700592,\n                        \"Y\": 0.28948450088500977\n                    },\n                    {\n                        \"X\": 0.081818126142025,\n                        \"Y\": 0.2894729971885681\n                    },\n                    {\n                        \"X\": 0.08182387053966522,\n                        \"Y\": 0.2978374660015106\n                    },\n                    {\n                        \"X\": 0.06352293491363525,\n                        \"Y\": 0.2978489398956299\n                    }\n                ]\n            },\n            \"Id\": \"b05bd6c7-4572-43e7-9e84-a36848ccec85\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90145874023438,\n            \"Text\": \"Qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05568761005997658,\n                    \"Height\": 0.008995169773697853,\n                    \"Left\": 0.10525456070899963,\n                    \"Top\": 0.2891627252101898\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10525456070899963,\n                        \"Y\": 0.289197713136673\n                    },\n                    {\n                        \"X\": 0.16093574464321136,\n                        \"Y\": 0.2891627252101898\n                    },\n                    {\n                        \"X\": 0.1609421670436859,\n                        \"Y\": 0.29812291264533997\n                    },\n                    {\n                        \"X\": 0.10526079684495926,\n                        \"Y\": 0.2981579005718231\n                    }\n                ]\n            },\n            \"Id\": \"91804ae5-d9c7-47db-ac93-695f91aacb60\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96812438964844,\n            \"Text\": \"health\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03892502188682556,\n                    \"Height\": 0.008315758779644966,\n                    \"Left\": 0.16413117945194244,\n                    \"Top\": 0.2895064353942871\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16413117945194244,\n                        \"Y\": 0.289530873298645\n                    },\n                    {\n                        \"X\": 0.20305012166500092,\n                        \"Y\": 0.2895064353942871\n                    },\n                    {\n                        \"X\": 0.203056201338768,\n                        \"Y\": 0.2977977395057678\n                    },\n                    {\n                        \"X\": 0.16413713991641998,\n                        \"Y\": 0.29782217741012573\n                    }\n                ]\n            },\n            \"Id\": \"46444dca-796f-4242-9e5c-5a023381cbc0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93511199951172,\n            \"Text\": \"plan\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02690020017325878,\n                    \"Height\": 0.010125599801540375,\n                    \"Left\": 0.20660115778446198,\n                    \"Top\": 0.2895555794239044\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20660115778446198,\n                        \"Y\": 0.28957247734069824\n                    },\n                    {\n                        \"X\": 0.233493834733963,\n                        \"Y\": 0.2895555794239044\n                    },\n                    {\n                        \"X\": 0.2335013598203659,\n                        \"Y\": 0.29966428875923157\n                    },\n                    {\n                        \"X\": 0.2066085785627365,\n                        \"Y\": 0.2996811866760254\n                    }\n                ]\n            },\n            \"Id\": \"0db80c2a-20a8-4eb7-851f-12cfc8c5e4b0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95051574707031,\n            \"Text\": \"expenses\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.059388693422079086,\n                    \"Height\": 0.008695042692124844,\n                    \"Left\": 0.23711568117141724,\n                    \"Top\": 0.2911264896392822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23711568117141724,\n                        \"Y\": 0.2911638021469116\n                    },\n                    {\n                        \"X\": 0.2964977025985718,\n                        \"Y\": 0.2911264896392822\n                    },\n                    {\n                        \"X\": 0.2965043783187866,\n                        \"Y\": 0.29978424310684204\n                    },\n                    {\n                        \"X\": 0.23712213337421417,\n                        \"Y\": 0.29982155561447144\n                    }\n                ]\n            },\n            \"Id\": \"0900d465-3901-419b-9135-7a6763500b1b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81944274902344,\n            \"Text\": \"allocable\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05658159404993057,\n                    \"Height\": 0.008407466113567352,\n                    \"Left\": 0.10521402955055237,\n                    \"Top\": 0.2998250424861908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10521402955055237,\n                        \"Y\": 0.29986056685447693\n                    },\n                    {\n                        \"X\": 0.16178962588310242,\n                        \"Y\": 0.2998250424861908\n                    },\n                    {\n                        \"X\": 0.16179563105106354,\n                        \"Y\": 0.3081969916820526\n                    },\n                    {\n                        \"X\": 0.10521985590457916,\n                        \"Y\": 0.30823248624801636\n                    }\n                ]\n            },\n            \"Id\": \"aa2af6f8-9be7-432e-961c-0fccc376ce83\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.950439453125,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013409601524472237,\n                    \"Height\": 0.007702144794166088,\n                    \"Left\": 0.16460801661014557,\n                    \"Top\": 0.300279825925827\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16460801661014557,\n                        \"Y\": 0.30028823018074036\n                    },\n                    {\n                        \"X\": 0.17801204323768616,\n                        \"Y\": 0.300279825925827\n                    },\n                    {\n                        \"X\": 0.17801761627197266,\n                        \"Y\": 0.3079735338687897\n                    },\n                    {\n                        \"X\": 0.1646135449409485,\n                        \"Y\": 0.3079819679260254\n                    }\n                ]\n            },\n            \"Id\": \"707c4e01-4033-4ed4-b8f5-0b4b499cf547\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8839340209961,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04156830161809921,\n                    \"Height\": 0.008442550897598267,\n                    \"Left\": 0.18112698197364807,\n                    \"Top\": 0.301325261592865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18112698197364807,\n                        \"Y\": 0.3013513684272766\n                    },\n                    {\n                        \"X\": 0.22268906235694885,\n                        \"Y\": 0.301325261592865\n                    },\n                    {\n                        \"X\": 0.22269529104232788,\n                        \"Y\": 0.309741735458374\n                    },\n                    {\n                        \"X\": 0.18113309144973755,\n                        \"Y\": 0.30976781249046326\n                    }\n                ]\n            },\n            \"Id\": \"5628e910-83e9-4c1f-a12e-e0a00ff6d54d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97907257080078,\n            \"Text\": \"reported\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05441596731543541,\n                    \"Height\": 0.009280647151172161,\n                    \"Left\": 0.2259419709444046,\n                    \"Top\": 0.30017516016960144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2259419709444046,\n                        \"Y\": 0.3002093434333801\n                    },\n                    {\n                        \"X\": 0.2803508937358856,\n                        \"Y\": 0.30017516016960144\n                    },\n                    {\n                        \"X\": 0.2803579270839691,\n                        \"Y\": 0.3094216585159302\n                    },\n                    {\n                        \"X\": 0.22594882547855377,\n                        \"Y\": 0.3094558119773865\n                    }\n                ]\n            },\n            \"Id\": \"98435a17-57d2-45b2-8027-e5f7920efc01\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93600463867188,\n            \"Text\": \"on\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016469264402985573,\n                    \"Height\": 0.006519710179418325,\n                    \"Left\": 0.28294286131858826,\n                    \"Top\": 0.3015262484550476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28294286131858826,\n                        \"Y\": 0.30153658986091614\n                    },\n                    {\n                        \"X\": 0.29940712451934814,\n                        \"Y\": 0.3015262484550476\n                    },\n                    {\n                        \"X\": 0.2994121313095093,\n                        \"Y\": 0.30803561210632324\n                    },\n                    {\n                        \"X\": 0.282947838306427,\n                        \"Y\": 0.3080459535121918\n                    }\n                ]\n            },\n            \"Id\": \"a15424de-54d0-4660-bc90-c8035e71f7a0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 78.41211700439453,\n            \"Text\": \"220.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.056863751262426376,\n                    \"Height\": 0.0121300695464015,\n                    \"Left\": 0.3754517138004303,\n                    \"Top\": 0.2947631776332855\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3754517138004303,\n                        \"Y\": 0.294798880815506\n                    },\n                    {\n                        \"X\": 0.43230554461479187,\n                        \"Y\": 0.2947631776332855\n                    },\n                    {\n                        \"X\": 0.432315468788147,\n                        \"Y\": 0.30685755610466003\n                    },\n                    {\n                        \"X\": 0.3754613697528839,\n                        \"Y\": 0.3068932294845581\n                    }\n                ]\n            },\n            \"Id\": \"5376c8a6-7fef-404a-aebe-49d1b5a9ad4e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.30220031738281,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01039585005491972,\n                    \"Height\": 0.0027010233607143164,\n                    \"Left\": 0.4473865032196045,\n                    \"Top\": 0.29697105288505554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4473865032196045,\n                        \"Y\": 0.29697757959365845\n                    },\n                    {\n                        \"X\": 0.457780122756958,\n                        \"Y\": 0.29697105288505554\n                    },\n                    {\n                        \"X\": 0.4577823579311371,\n                        \"Y\": 0.29966557025909424\n                    },\n                    {\n                        \"X\": 0.4473887085914612,\n                        \"Y\": 0.29967209696769714\n                    }\n                ]\n            },\n            \"Id\": \"95749d5d-63c7-4d11-90e0-d9549d5a624d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.92329406738281,\n            \"Text\": \"130.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05720026418566704,\n                    \"Height\": 0.012246256694197655,\n                    \"Left\": 0.5288495421409607,\n                    \"Top\": 0.29475322365760803\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5288495421409607,\n                        \"Y\": 0.2947891652584076\n                    },\n                    {\n                        \"X\": 0.5860390663146973,\n                        \"Y\": 0.29475322365760803\n                    },\n                    {\n                        \"X\": 0.5860497951507568,\n                        \"Y\": 0.30696359276771545\n                    },\n                    {\n                        \"X\": 0.5288599729537964,\n                        \"Y\": 0.30699947476387024\n                    }\n                ]\n            },\n            \"Id\": \"35bca987-b8a3-445a-a20c-cce2445ce0cb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.39078521728516,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009371447376906872,\n                    \"Height\": 0.004823919851332903,\n                    \"Left\": 0.6011272668838501,\n                    \"Top\": 0.29625648260116577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011272668838501,\n                        \"Y\": 0.29626235365867615\n                    },\n                    {\n                        \"X\": 0.6104944348335266,\n                        \"Y\": 0.29625648260116577\n                    },\n                    {\n                        \"X\": 0.6104986667633057,\n                        \"Y\": 0.3010745048522949\n                    },\n                    {\n                        \"X\": 0.6011314988136292,\n                        \"Y\": 0.3010804057121277\n                    }\n                ]\n            },\n            \"Id\": \"c5c38b1b-5564-4574-a92f-d987021ff0e6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.80714416503906,\n            \"Text\": \"90.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049848522990942,\n                    \"Height\": 0.011761963367462158,\n                    \"Left\": 0.6886180639266968,\n                    \"Top\": 0.2949804961681366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6886180639266968,\n                        \"Y\": 0.29501181840896606\n                    },\n                    {\n                        \"X\": 0.738455593585968,\n                        \"Y\": 0.2949804961681366\n                    },\n                    {\n                        \"X\": 0.7384665608406067,\n                        \"Y\": 0.3067111670970917\n                    },\n                    {\n                        \"X\": 0.6886287927627563,\n                        \"Y\": 0.30674245953559875\n                    }\n                ]\n            },\n            \"Id\": \"7cf3780f-a559-4cde-a713-10fe8f8b5e9b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95663452148438,\n            \"Text\": \"Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033403828740119934,\n                    \"Height\": 0.008232900872826576,\n                    \"Left\": 0.10557787120342255,\n                    \"Top\": 0.3096330463886261\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10557787120342255,\n                        \"Y\": 0.30965399742126465\n                    },\n                    {\n                        \"X\": 0.13897587358951569,\n                        \"Y\": 0.3096330463886261\n                    },\n                    {\n                        \"X\": 0.13898169994354248,\n                        \"Y\": 0.3178449869155884\n                    },\n                    {\n                        \"X\": 0.10558358579874039,\n                        \"Y\": 0.31786593794822693\n                    }\n                ]\n            },\n            \"Id\": \"088b957a-b8c4-4939-9b57-8b86d4520885\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76294708251953,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021867476403713226,\n                    \"Height\": 0.00833972916007042,\n                    \"Left\": 0.14126822352409363,\n                    \"Top\": 0.30958080291748047\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14126822352409363,\n                        \"Y\": 0.3095945119857788\n                    },\n                    {\n                        \"X\": 0.16312973201274872,\n                        \"Y\": 0.30958080291748047\n                    },\n                    {\n                        \"X\": 0.16313570737838745,\n                        \"Y\": 0.31790679693222046\n                    },\n                    {\n                        \"X\": 0.14127413928508759,\n                        \"Y\": 0.3179205060005188\n                    }\n                ]\n            },\n            \"Id\": \"68f8aa65-f70f-4947-a293-80fe40f46f94\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9397201538086,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013441590592265129,\n                    \"Height\": 0.006786358077079058,\n                    \"Left\": 0.16744810342788696,\n                    \"Top\": 0.31109708547592163\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16744810342788696,\n                        \"Y\": 0.31110551953315735\n                    },\n                    {\n                        \"X\": 0.18088477849960327,\n                        \"Y\": 0.31109708547592163\n                    },\n                    {\n                        \"X\": 0.18088969588279724,\n                        \"Y\": 0.3178750276565552\n                    },\n                    {\n                        \"X\": 0.16745297610759735,\n                        \"Y\": 0.3178834319114685\n                    }\n                ]\n            },\n            \"Id\": \"af63e84f-13fc-47cd-bacc-16825ccb6c66\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.88893127441406,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04784811660647392,\n                    \"Height\": 0.009678378701210022,\n                    \"Left\": 0.18387272953987122,\n                    \"Top\": 0.3095875382423401\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18387272953987122,\n                        \"Y\": 0.3096175789833069\n                    },\n                    {\n                        \"X\": 0.23171366751194,\n                        \"Y\": 0.3095875382423401\n                    },\n                    {\n                        \"X\": 0.23172084987163544,\n                        \"Y\": 0.3192358911037445\n                    },\n                    {\n                        \"X\": 0.18387973308563232,\n                        \"Y\": 0.3192659318447113\n                    }\n                ]\n            },\n            \"Id\": \"7bb2b78b-74fb-4727-9419-51b6de1938e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80073547363281,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02225215919315815,\n                    \"Height\": 0.008168519474565983,\n                    \"Left\": 0.23541921377182007,\n                    \"Top\": 0.309619665145874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23541921377182007,\n                        \"Y\": 0.30963361263275146\n                    },\n                    {\n                        \"X\": 0.25766521692276,\n                        \"Y\": 0.309619665145874\n                    },\n                    {\n                        \"X\": 0.25767138600349426,\n                        \"Y\": 0.3177742063999176\n                    },\n                    {\n                        \"X\": 0.23542529344558716,\n                        \"Y\": 0.31778818368911743\n                    }\n                ]\n            },\n            \"Id\": \"bdf5847d-b1f8-43d0-90b1-b472ea8484ea\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4681396484375,\n            \"Text\": \"24*\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020861800760030746,\n                    \"Height\": 0.008282971568405628,\n                    \"Left\": 0.2607003450393677,\n                    \"Top\": 0.30939123034477234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2607003450393677,\n                        \"Y\": 0.30940431356430054\n                    },\n                    {\n                        \"X\": 0.28155583143234253,\n                        \"Y\": 0.30939123034477234\n                    },\n                    {\n                        \"X\": 0.2815621495246887,\n                        \"Y\": 0.3176611363887787\n                    },\n                    {\n                        \"X\": 0.2607066035270691,\n                        \"Y\": 0.3176742196083069\n                    }\n                ]\n            },\n            \"Id\": \"537afa9e-a92f-49fb-a2a1-6bb6da27aa12\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54081726074219,\n            \"Text\": \"Use\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01852979138493538,\n                    \"Height\": 0.0072725978679955006,\n                    \"Left\": 0.3225236237049103,\n                    \"Top\": 0.313170850276947\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3225236237049103,\n                        \"Y\": 0.3131824731826782\n                    },\n                    {\n                        \"X\": 0.3410477042198181,\n                        \"Y\": 0.313170850276947\n                    },\n                    {\n                        \"X\": 0.34105339646339417,\n                        \"Y\": 0.32043182849884033\n                    },\n                    {\n                        \"X\": 0.32252925634384155,\n                        \"Y\": 0.32044345140457153\n                    }\n                ]\n            },\n            \"Id\": \"821853f0-b5f7-4f20-bb27-cba75979ae0f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86615753173828,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015912551432847977,\n                    \"Height\": 0.006919341627508402,\n                    \"Left\": 0.3430343270301819,\n                    \"Top\": 0.3132864534854889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3430343270301819,\n                        \"Y\": 0.31329643726348877\n                    },\n                    {\n                        \"X\": 0.3589414060115814,\n                        \"Y\": 0.3132864534854889\n                    },\n                    {\n                        \"X\": 0.35894688963890076,\n                        \"Y\": 0.3201958239078522\n                    },\n                    {\n                        \"X\": 0.34303975105285645,\n                        \"Y\": 0.32020580768585205\n                    }\n                ]\n            },\n            \"Id\": \"a1b1afe0-302b-49ae-ae2b-9ae6839abddb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85419464111328,\n            \"Text\": \"34\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011290018446743488,\n                    \"Height\": 0.006634884048253298,\n                    \"Left\": 0.3611057698726654,\n                    \"Top\": 0.3135767877101898\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3611057698726654,\n                        \"Y\": 0.3135838806629181\n                    },\n                    {\n                        \"X\": 0.3723905086517334,\n                        \"Y\": 0.3135767877101898\n                    },\n                    {\n                        \"X\": 0.372395783662796,\n                        \"Y\": 0.32020458579063416\n                    },\n                    {\n                        \"X\": 0.36111101508140564,\n                        \"Y\": 0.3202116787433624\n                    }\n                ]\n            },\n            \"Id\": \"47cd07cd-117f-4d60-8bc7-e8df17b6ed76\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93911743164062,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009564990177750587,\n                    \"Height\": 0.0063265226781368256,\n                    \"Left\": 0.374346524477005,\n                    \"Top\": 0.31387248635292053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.374346524477005,\n                        \"Y\": 0.31387847661972046\n                    },\n                    {\n                        \"X\": 0.38390645384788513,\n                        \"Y\": 0.31387248635292053\n                    },\n                    {\n                        \"X\": 0.38391152024269104,\n                        \"Y\": 0.32019299268722534\n                    },\n                    {\n                        \"X\": 0.3743515908718109,\n                        \"Y\": 0.32019898295402527\n                    }\n                ]\n            },\n            \"Id\": \"bf02d2f9-53f7-4a68-89e9-321089bfb2c8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95419311523438,\n            \"Text\": \"correct\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03226011246442795,\n                    \"Height\": 0.006708781234920025,\n                    \"Left\": 0.38612180948257446,\n                    \"Top\": 0.3138059675693512\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38612180948257446,\n                        \"Y\": 0.31382620334625244\n                    },\n                    {\n                        \"X\": 0.41837647557258606,\n                        \"Y\": 0.3138059675693512\n                    },\n                    {\n                        \"X\": 0.418381929397583,\n                        \"Y\": 0.32049450278282166\n                    },\n                    {\n                        \"X\": 0.38612717390060425,\n                        \"Y\": 0.3205147385597229\n                    }\n                ]\n            },\n            \"Id\": \"d5674b57-acaf-4157-a95d-bdbacd1fc283\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98823547363281,\n            \"Text\": \"only\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019136512652039528,\n                    \"Height\": 0.00860550720244646,\n                    \"Left\": 0.4199375808238983,\n                    \"Top\": 0.3134317696094513\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4199375808238983,\n                        \"Y\": 0.31344377994537354\n                    },\n                    {\n                        \"X\": 0.4390670359134674,\n                        \"Y\": 0.3134317696094513\n                    },\n                    {\n                        \"X\": 0.4390740990638733,\n                        \"Y\": 0.32202526926994324\n                    },\n                    {\n                        \"X\": 0.4199445843696594,\n                        \"Y\": 0.3220372796058655\n                    }\n                ]\n            },\n            \"Id\": \"01c96d7f-276d-4843-bd05-744b02d9534a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9901351928711,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014992053620517254,\n                    \"Height\": 0.0070760007947683334,\n                    \"Left\": 0.4407382607460022,\n                    \"Top\": 0.3133068382740021\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4407382607460022,\n                        \"Y\": 0.3133162558078766\n                    },\n                    {\n                        \"X\": 0.45572447776794434,\n                        \"Y\": 0.3133068382740021\n                    },\n                    {\n                        \"X\": 0.4557303190231323,\n                        \"Y\": 0.32037344574928284\n                    },\n                    {\n                        \"X\": 0.4407441020011902,\n                        \"Y\": 0.32038283348083496\n                    }\n                ]\n            },\n            \"Id\": \"19980346-24bd-4244-b6e4-4833e5eb02df\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90650939941406,\n            \"Text\": \"second\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03319090977311134,\n                    \"Height\": 0.0072263190522789955,\n                    \"Left\": 0.45770251750946045,\n                    \"Top\": 0.3132524788379669\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45770251750946045,\n                        \"Y\": 0.31327328085899353\n                    },\n                    {\n                        \"X\": 0.4908873736858368,\n                        \"Y\": 0.3132524788379669\n                    },\n                    {\n                        \"X\": 0.4908934235572815,\n                        \"Y\": 0.32045796513557434\n                    },\n                    {\n                        \"X\": 0.4577085077762604,\n                        \"Y\": 0.32047879695892334\n                    }\n                ]\n            },\n            \"Id\": \"19e4e41a-c888-422e-acc3-b87fc9674f85\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80123901367188,\n            \"Text\": \"quarter\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03211371228098869,\n                    \"Height\": 0.008523222990334034,\n                    \"Left\": 0.4921360909938812,\n                    \"Top\": 0.3135697543621063\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4921360909938812,\n                        \"Y\": 0.3135899007320404\n                    },\n                    {\n                        \"X\": 0.5242425203323364,\n                        \"Y\": 0.3135697543621063\n                    },\n                    {\n                        \"X\": 0.524249792098999,\n                        \"Y\": 0.322072833776474\n                    },\n                    {\n                        \"X\": 0.49214327335357666,\n                        \"Y\": 0.3220929801464081\n                    }\n                ]\n            },\n            \"Id\": \"9d32acb9-cda4-494a-9f6f-639f1329068f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82788848876953,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009349496103823185,\n                    \"Height\": 0.007076145149767399,\n                    \"Left\": 0.5265796184539795,\n                    \"Top\": 0.3132413327693939\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5265796184539795,\n                        \"Y\": 0.3132472038269043\n                    },\n                    {\n                        \"X\": 0.5359230041503906,\n                        \"Y\": 0.3132413327693939\n                    },\n                    {\n                        \"X\": 0.5359290838241577,\n                        \"Y\": 0.32031163573265076\n                    },\n                    {\n                        \"X\": 0.5265856385231018,\n                        \"Y\": 0.32031747698783875\n                    }\n                ]\n            },\n            \"Id\": \"9304a8c5-74da-473d-ae78-1243e7165380\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65946197509766,\n            \"Text\": \"2020.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02493741549551487,\n                    \"Height\": 0.006794152781367302,\n                    \"Left\": 0.5375763773918152,\n                    \"Top\": 0.31366226077079773\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5375763773918152,\n                        \"Y\": 0.31367790699005127\n                    },\n                    {\n                        \"X\": 0.5625079274177551,\n                        \"Y\": 0.31366226077079773\n                    },\n                    {\n                        \"X\": 0.5625138282775879,\n                        \"Y\": 0.32044076919555664\n                    },\n                    {\n                        \"X\": 0.5375822186470032,\n                        \"Y\": 0.3204564154148102\n                    }\n                ]\n            },\n            \"Id\": \"85744ff3-d7e1-4157-a185-41b733f40555\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89227294921875,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034206654876470566,\n                    \"Height\": 0.010206237435340881,\n                    \"Left\": 0.10549193620681763,\n                    \"Top\": 0.3198595941066742\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10549193620681763,\n                        \"Y\": 0.31988105177879333\n                    },\n                    {\n                        \"X\": 0.13969136774539948,\n                        \"Y\": 0.3198595941066742\n                    },\n                    {\n                        \"X\": 0.1396985948085785,\n                        \"Y\": 0.3300444185733795\n                    },\n                    {\n                        \"X\": 0.1054990291595459,\n                        \"Y\": 0.33006584644317627\n                    }\n                ]\n            },\n            \"Id\": \"a9fe55dc-6006-4862-9ce7-e3ba779b4dfa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89826965332031,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020549746230244637,\n                    \"Height\": 0.008561603724956512,\n                    \"Left\": 0.14277096092700958,\n                    \"Top\": 0.31979605555534363\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14277096092700958,\n                        \"Y\": 0.3198089301586151\n                    },\n                    {\n                        \"X\": 0.1633145660161972,\n                        \"Y\": 0.31979605555534363\n                    },\n                    {\n                        \"X\": 0.16332070529460907,\n                        \"Y\": 0.32834476232528687\n                    },\n                    {\n                        \"X\": 0.14277702569961548,\n                        \"Y\": 0.32835766673088074\n                    }\n                ]\n            },\n            \"Id\": \"c2e6acaa-ab21-4483-bcbe-cfa5f82e8d21\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94943237304688,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013220460154116154,\n                    \"Height\": 0.006853475235402584,\n                    \"Left\": 0.1679113805294037,\n                    \"Top\": 0.3213386833667755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1679113805294037,\n                        \"Y\": 0.3213469684123993\n                    },\n                    {\n                        \"X\": 0.18112687766551971,\n                        \"Y\": 0.3213386833667755\n                    },\n                    {\n                        \"X\": 0.18113183975219727,\n                        \"Y\": 0.3281838595867157\n                    },\n                    {\n                        \"X\": 0.16791631281375885,\n                        \"Y\": 0.3281921446323395\n                    }\n                ]\n            },\n            \"Id\": \"4e83a7f9-7a31-4acb-9abe-26826df6e789\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.43603515625,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04771679639816284,\n                    \"Height\": 0.009619935415685177,\n                    \"Left\": 0.18368761241436005,\n                    \"Top\": 0.3198052942752838\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18368761241436005,\n                        \"Y\": 0.31983521580696106\n                    },\n                    {\n                        \"X\": 0.23139727115631104,\n                        \"Y\": 0.3198052942752838\n                    },\n                    {\n                        \"X\": 0.2314044088125229,\n                        \"Y\": 0.3293953239917755\n                    },\n                    {\n                        \"X\": 0.18369457125663757,\n                        \"Y\": 0.32942524552345276\n                    }\n                ]\n            },\n            \"Id\": \"086ed5f2-5030-412f-bcbf-6372fe706145\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.29949188232422,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020940691232681274,\n                    \"Height\": 0.008511618711054325,\n                    \"Left\": 0.2348303496837616,\n                    \"Top\": 0.3197712004184723\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2348303496837616,\n                        \"Y\": 0.31978434324264526\n                    },\n                    {\n                        \"X\": 0.2557646334171295,\n                        \"Y\": 0.3197712004184723\n                    },\n                    {\n                        \"X\": 0.25577104091644287,\n                        \"Y\": 0.32826972007751465\n                    },\n                    {\n                        \"X\": 0.23483668267726898,\n                        \"Y\": 0.32828283309936523\n                    }\n                ]\n            },\n            \"Id\": \"13831359-95a2-4f1d-a6a4-aa43b78614f9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.59744262695312,\n            \"Text\": \"25)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018381500616669655,\n                    \"Height\": 0.010476818308234215,\n                    \"Left\": 0.2583601176738739,\n                    \"Top\": 0.3198172450065613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2583601176738739,\n                        \"Y\": 0.31982874870300293\n                    },\n                    {\n                        \"X\": 0.2767336368560791,\n                        \"Y\": 0.3198172450065613\n                    },\n                    {\n                        \"X\": 0.2767415940761566,\n                        \"Y\": 0.3302825391292572\n                    },\n                    {\n                        \"X\": 0.25836798548698425,\n                        \"Y\": 0.33029404282569885\n                    }\n                ]\n            },\n            \"Id\": \"53408ee5-e43f-4c4f-9494-a02d1cdcdcd9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.44974517822266,\n            \"Text\": \"Caution:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05228947103023529,\n                    \"Height\": 0.008556252345442772,\n                    \"Left\": 0.058536939322948456,\n                    \"Top\": 0.3445349931716919\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058536939322948456,\n                        \"Y\": 0.34456774592399597\n                    },\n                    {\n                        \"X\": 0.1108204647898674,\n                        \"Y\": 0.3445349931716919\n                    },\n                    {\n                        \"X\": 0.11082641035318375,\n                        \"Y\": 0.35305851697921753\n                    },\n                    {\n                        \"X\": 0.05854272097349167,\n                        \"Y\": 0.3530912399291992\n                    }\n                ]\n            },\n            \"Id\": \"48ac3d74-f119-48ce-b9a0-9d274ec6611f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73799896240234,\n            \"Text\": \"Lines\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.031413521617650986,\n                    \"Height\": 0.008330795913934708,\n                    \"Left\": 0.11406359821557999,\n                    \"Top\": 0.3446955382823944\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11406359821557999,\n                        \"Y\": 0.3447152376174927\n                    },\n                    {\n                        \"X\": 0.1454712152481079,\n                        \"Y\": 0.3446955382823944\n                    },\n                    {\n                        \"X\": 0.14547711610794067,\n                        \"Y\": 0.3530066907405853\n                    },\n                    {\n                        \"X\": 0.11406940966844559,\n                        \"Y\": 0.3530263602733612\n                    }\n                ]\n            },\n            \"Id\": \"413032b0-4ea6-4c1c-9e20-5ce6ab29fd22\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65908813476562,\n            \"Text\": \"35-40\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03710019960999489,\n                    \"Height\": 0.008546912111341953,\n                    \"Left\": 0.14838135242462158,\n                    \"Top\": 0.3444461524486542\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14838135242462158,\n                        \"Y\": 0.3444693684577942\n                    },\n                    {\n                        \"X\": 0.18547534942626953,\n                        \"Y\": 0.3444461524486542\n                    },\n                    {\n                        \"X\": 0.18548154830932617,\n                        \"Y\": 0.35296982526779175\n                    },\n                    {\n                        \"X\": 0.14838741719722748,\n                        \"Y\": 0.35299304127693176\n                    }\n                ]\n            },\n            \"Id\": \"071199e0-6682-45e3-b537-c27f695aa65b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94052124023438,\n            \"Text\": \"apply\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032883502542972565,\n                    \"Height\": 0.010537760332226753,\n                    \"Left\": 0.18812502920627594,\n                    \"Top\": 0.3447166383266449\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18812502920627594,\n                        \"Y\": 0.3447372317314148\n                    },\n                    {\n                        \"X\": 0.22100074589252472,\n                        \"Y\": 0.3447166383266449\n                    },\n                    {\n                        \"X\": 0.2210085242986679,\n                        \"Y\": 0.3552338182926178\n                    },\n                    {\n                        \"X\": 0.18813267350196838,\n                        \"Y\": 0.3552543818950653\n                    }\n                ]\n            },\n            \"Id\": \"ec83dae7-bc23-473b-b089-48b4466509cb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98596954345703,\n            \"Text\": \"only\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024652745574712753,\n                    \"Height\": 0.010641979984939098,\n                    \"Left\": 0.2237308770418167,\n                    \"Top\": 0.3446512818336487\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2237308770418167,\n                        \"Y\": 0.3446667194366455\n                    },\n                    {\n                        \"X\": 0.24837565422058105,\n                        \"Y\": 0.3446512818336487\n                    },\n                    {\n                        \"X\": 0.24838362634181976,\n                        \"Y\": 0.3552778363227844\n                    },\n                    {\n                        \"X\": 0.22373875975608826,\n                        \"Y\": 0.35529327392578125\n                    }\n                ]\n            },\n            \"Id\": \"90598a7b-008a-4cd5-89d3-f43e3e97a207\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98663330078125,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013247397728264332,\n                    \"Height\": 0.007913279347121716,\n                    \"Left\": 0.2509100139141083,\n                    \"Top\": 0.34509509801864624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2509100139141083,\n                        \"Y\": 0.3451034128665924\n                    },\n                    {\n                        \"X\": 0.2641514241695404,\n                        \"Y\": 0.34509509801864624\n                    },\n                    {\n                        \"X\": 0.26415738463401794,\n                        \"Y\": 0.35300010442733765\n                    },\n                    {\n                        \"X\": 0.2509159445762634,\n                        \"Y\": 0.3530083894729614\n                    }\n                ]\n            },\n            \"Id\": \"1bb8fd7f-604d-4fbf-aa56-69a1a82cfa13\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77802276611328,\n            \"Text\": \"quarters\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04857741668820381,\n                    \"Height\": 0.010181300342082977,\n                    \"Left\": 0.2669849991798401,\n                    \"Top\": 0.3448741137981415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2669849991798401,\n                        \"Y\": 0.3449045419692993\n                    },\n                    {\n                        \"X\": 0.31555455923080444,\n                        \"Y\": 0.3448741137981415\n                    },\n                    {\n                        \"X\": 0.3155624270439148,\n                        \"Y\": 0.3550250232219696\n                    },\n                    {\n                        \"X\": 0.2669926881790161,\n                        \"Y\": 0.35505542159080505\n                    }\n                ]\n            },\n            \"Id\": \"be65ba68-7f00-413b-90e5-6ea2dd3020c6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88843536376953,\n            \"Text\": \"beginning\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05815822631120682,\n                    \"Height\": 0.010925179347395897,\n                    \"Left\": 0.3187791109085083,\n                    \"Top\": 0.34438565373420715\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3187791109085083,\n                        \"Y\": 0.3444220721721649\n                    },\n                    {\n                        \"X\": 0.3769286572933197,\n                        \"Y\": 0.34438565373420715\n                    },\n                    {\n                        \"X\": 0.3769373595714569,\n                        \"Y\": 0.35527440905570984\n                    },\n                    {\n                        \"X\": 0.3187875747680664,\n                        \"Y\": 0.3553108274936676\n                    }\n                ]\n            },\n            \"Id\": \"2134088f-f244-4e8f-9921-fbc505062044\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9791488647461,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027248267084360123,\n                    \"Height\": 0.008548692800104618,\n                    \"Left\": 0.37985867261886597,\n                    \"Top\": 0.3444860279560089\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37985867261886597,\n                        \"Y\": 0.34450310468673706\n                    },\n                    {\n                        \"X\": 0.40710002183914185,\n                        \"Y\": 0.3444860279560089\n                    },\n                    {\n                        \"X\": 0.4071069359779358,\n                        \"Y\": 0.353017657995224\n                    },\n                    {\n                        \"X\": 0.37986549735069275,\n                        \"Y\": 0.35303473472595215\n                    }\n                ]\n            },\n            \"Id\": \"749bbfae-c304-4702-95af-883804acb387\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96051788330078,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.037467703223228455,\n                    \"Height\": 0.008550921455025673,\n                    \"Left\": 0.4100707769393921,\n                    \"Top\": 0.3445402979850769\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4100707769393921,\n                        \"Y\": 0.3445637822151184\n                    },\n                    {\n                        \"X\": 0.44753146171569824,\n                        \"Y\": 0.3445402979850769\n                    },\n                    {\n                        \"X\": 0.44753849506378174,\n                        \"Y\": 0.3530677855014801\n                    },\n                    {\n                        \"X\": 0.4100777208805084,\n                        \"Y\": 0.3530912399291992\n                    }\n                ]\n            },\n            \"Id\": \"e77f5fbc-e5ee-4e44-b83e-3412d1914638\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60456848144531,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018514515832066536,\n                    \"Height\": 0.009669376537203789,\n                    \"Left\": 0.4504702091217041,\n                    \"Top\": 0.3445303440093994\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4504702091217041,\n                        \"Y\": 0.3445419371128082\n                    },\n                    {\n                        \"X\": 0.4689766466617584,\n                        \"Y\": 0.3445303440093994\n                    },\n                    {\n                        \"X\": 0.4689847230911255,\n                        \"Y\": 0.35418814420700073\n                    },\n                    {\n                        \"X\": 0.450478196144104,\n                        \"Y\": 0.35419973731040955\n                    }\n                ]\n            },\n            \"Id\": \"be9fd715-4656-4403-b172-17e9e0fdfa0d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81310272216797,\n            \"Text\": \"2021.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032825153321027756,\n                    \"Height\": 0.008540371432900429,\n                    \"Left\": 0.47213035821914673,\n                    \"Top\": 0.34462231397628784\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47213035821914673,\n                        \"Y\": 0.34464287757873535\n                    },\n                    {\n                        \"X\": 0.5049483180046082,\n                        \"Y\": 0.34462231397628784\n                    },\n                    {\n                        \"X\": 0.504955530166626,\n                        \"Y\": 0.3531421422958374\n                    },\n                    {\n                        \"X\": 0.4721374809741974,\n                        \"Y\": 0.3531627058982849\n                    }\n                ]\n            },\n            \"Id\": \"d6c674b3-73bc-49a0-a45a-7ccf870dfe23\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.8596420288086,\n            \"Text\": \"35.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018254796043038368,\n                    \"Height\": 0.008129538968205452,\n                    \"Left\": 0.06351625174283981,\n                    \"Top\": 0.365373432636261\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06351625174283981,\n                        \"Y\": 0.3653848469257355\n                    },\n                    {\n                        \"X\": 0.08176547288894653,\n                        \"Y\": 0.365373432636261\n                    },\n                    {\n                        \"X\": 0.08177105337381363,\n                        \"Y\": 0.3734915554523468\n                    },\n                    {\n                        \"X\": 0.06352177262306213,\n                        \"Y\": 0.3735029697418213\n                    }\n                ]\n            },\n            \"Id\": \"e69cbb2d-3279-45d1-bded-446fee6f1172\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80095672607422,\n            \"Text\": \"Qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05426087602972984,\n                    \"Height\": 0.008522103540599346,\n                    \"Left\": 0.10582323372364044,\n                    \"Top\": 0.3651685118675232\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10582323372364044,\n                        \"Y\": 0.3652024567127228\n                    },\n                    {\n                        \"X\": 0.1600780189037323,\n                        \"Y\": 0.3651685118675232\n                    },\n                    {\n                        \"X\": 0.16008411347866058,\n                        \"Y\": 0.373656690120697\n                    },\n                    {\n                        \"X\": 0.1058291420340538,\n                        \"Y\": 0.3736906051635742\n                    }\n                ]\n            },\n            \"Id\": \"0b8e5d86-2a1e-486a-9e5b-818d19e8ccfb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93743896484375,\n            \"Text\": \"sick\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025609295815229416,\n                    \"Height\": 0.00821873638778925,\n                    \"Left\": 0.16334198415279388,\n                    \"Top\": 0.36531832814216614\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16334198415279388,\n                        \"Y\": 0.36533433198928833\n                    },\n                    {\n                        \"X\": 0.18894530832767487,\n                        \"Y\": 0.36531832814216614\n                    },\n                    {\n                        \"X\": 0.1889512836933136,\n                        \"Y\": 0.3735210597515106\n                    },\n                    {\n                        \"X\": 0.16334787011146545,\n                        \"Y\": 0.3735370635986328\n                    }\n                ]\n            },\n            \"Id\": \"2b139f9a-6c39-4b29-bc15-291574bb7c3a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8881607055664,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03251416236162186,\n                    \"Height\": 0.008150821551680565,\n                    \"Left\": 0.1916349083185196,\n                    \"Top\": 0.36538568139076233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1916349083185196,\n                        \"Y\": 0.36540600657463074\n                    },\n                    {\n                        \"X\": 0.22414304316043854,\n                        \"Y\": 0.36538568139076233\n                    },\n                    {\n                        \"X\": 0.22414907813072205,\n                        \"Y\": 0.37351617217063904\n                    },\n                    {\n                        \"X\": 0.19164083898067474,\n                        \"Y\": 0.37353649735450745\n                    }\n                ]\n            },\n            \"Id\": \"aa2090e0-8650-4f32-a963-35f06e5a3f87\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93433380126953,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04085581377148628,\n                    \"Height\": 0.008631821721792221,\n                    \"Left\": 0.2266446352005005,\n                    \"Top\": 0.36677414178848267\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2266446352005005,\n                        \"Y\": 0.3667997121810913\n                    },\n                    {\n                        \"X\": 0.26749393343925476,\n                        \"Y\": 0.36677414178848267\n                    },\n                    {\n                        \"X\": 0.26750046014785767,\n                        \"Y\": 0.37538042664527893\n                    },\n                    {\n                        \"X\": 0.22665102779865265,\n                        \"Y\": 0.3754059672355652\n                    }\n                ]\n            },\n            \"Id\": \"57980083-caf8-4508-ac6d-b173d3bdf089\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96968078613281,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018161827698349953,\n                    \"Height\": 0.008285610005259514,\n                    \"Left\": 0.270498663187027,\n                    \"Top\": 0.3652176260948181\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.270498663187027,\n                        \"Y\": 0.3652289807796478\n                    },\n                    {\n                        \"X\": 0.2886541485786438,\n                        \"Y\": 0.3652176260948181\n                    },\n                    {\n                        \"X\": 0.2886604964733124,\n                        \"Y\": 0.37349188327789307\n                    },\n                    {\n                        \"X\": 0.2705049216747284,\n                        \"Y\": 0.3735032379627228\n                    }\n                ]\n            },\n            \"Id\": \"b4b40a5a-d9d6-48b9-9a8a-bade1f3ccada\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.0862808227539,\n            \"Text\": \"230.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05784660205245018,\n                    \"Height\": 0.012404920533299446,\n                    \"Left\": 0.37544888257980347,\n                    \"Top\": 0.3704935610294342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37544888257980347,\n                        \"Y\": 0.37052974104881287\n                    },\n                    {\n                        \"X\": 0.43328532576560974,\n                        \"Y\": 0.3704935610294342\n                    },\n                    {\n                        \"X\": 0.43329545855522156,\n                        \"Y\": 0.3828623294830322\n                    },\n                    {\n                        \"X\": 0.3754587471485138,\n                        \"Y\": 0.3828984797000885\n                    }\n                ]\n            },\n            \"Id\": \"39af1d49-789e-40dd-ab1e-1973d54caaf1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.00431823730469,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01016963366419077,\n                    \"Height\": 0.0025649219751358032,\n                    \"Left\": 0.4475538432598114,\n                    \"Top\": 0.3727569878101349\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4475538432598114,\n                        \"Y\": 0.37276333570480347\n                    },\n                    {\n                        \"X\": 0.4577213525772095,\n                        \"Y\": 0.3727569878101349\n                    },\n                    {\n                        \"X\": 0.457723468542099,\n                        \"Y\": 0.3753155469894409\n                    },\n                    {\n                        \"X\": 0.4475559592247009,\n                        \"Y\": 0.3753218948841095\n                    }\n                ]\n            },\n            \"Id\": \"3f4e932d-2304-48fb-bd4c-b1c9a16afac1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.6269302368164,\n            \"Text\": \"140.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05741075798869133,\n                    \"Height\": 0.01299196109175682,\n                    \"Left\": 0.5287108421325684,\n                    \"Top\": 0.3702261745929718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287108421325684,\n                        \"Y\": 0.370262086391449\n                    },\n                    {\n                        \"X\": 0.5861102342605591,\n                        \"Y\": 0.3702261745929718\n                    },\n                    {\n                        \"X\": 0.5861216187477112,\n                        \"Y\": 0.38318225741386414\n                    },\n                    {\n                        \"X\": 0.5287219285964966,\n                        \"Y\": 0.3832181394100189\n                    }\n                ]\n            },\n            \"Id\": \"92938ed0-ba2b-459c-91ff-ce72ab0cfca1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.71869659423828,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009547950699925423,\n                    \"Height\": 0.0045936875976622105,\n                    \"Left\": 0.6011710166931152,\n                    \"Top\": 0.37197285890579224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011710166931152,\n                        \"Y\": 0.3719788193702698\n                    },\n                    {\n                        \"X\": 0.6107149124145508,\n                        \"Y\": 0.37197285890579224\n                    },\n                    {\n                        \"X\": 0.6107189655303955,\n                        \"Y\": 0.3765605688095093\n                    },\n                    {\n                        \"X\": 0.60117506980896,\n                        \"Y\": 0.3765665292739868\n                    }\n                ]\n            },\n            \"Id\": \"ba189ad3-167b-4dbd-9803-cdaa0deba1a5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85694122314453,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03217814862728119,\n                    \"Height\": 0.007967586629092693,\n                    \"Left\": 0.105136439204216,\n                    \"Top\": 0.3758135735988617\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.105136439204216,\n                        \"Y\": 0.3758336901664734\n                    },\n                    {\n                        \"X\": 0.13730895519256592,\n                        \"Y\": 0.3758135735988617\n                    },\n                    {\n                        \"X\": 0.1373145878314972,\n                        \"Y\": 0.38376104831695557\n                    },\n                    {\n                        \"X\": 0.10514196753501892,\n                        \"Y\": 0.38378116488456726\n                    }\n                ]\n            },\n            \"Id\": \"6015ee89-784e-4553-94b6-8d490e705537\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92695617675781,\n            \"Text\": \"taken\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03503448888659477,\n                    \"Height\": 0.008336004801094532,\n                    \"Left\": 0.14024581015110016,\n                    \"Top\": 0.3756161034107208\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14024581015110016,\n                        \"Y\": 0.3756380081176758\n                    },\n                    {\n                        \"X\": 0.1752742975950241,\n                        \"Y\": 0.3756161034107208\n                    },\n                    {\n                        \"X\": 0.17528030276298523,\n                        \"Y\": 0.3839302361011505\n                    },\n                    {\n                        \"X\": 0.14025171101093292,\n                        \"Y\": 0.3839521110057831\n                    }\n                ]\n            },\n            \"Id\": \"69473469-f88f-4596-8377-49a45f54ffac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95784759521484,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029455389827489853,\n                    \"Height\": 0.008439560420811176,\n                    \"Left\": 0.17814476788043976,\n                    \"Top\": 0.3755447566509247\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17814476788043976,\n                        \"Y\": 0.3755631744861603\n                    },\n                    {\n                        \"X\": 0.20759396255016327,\n                        \"Y\": 0.3755447566509247\n                    },\n                    {\n                        \"X\": 0.20760014653205872,\n                        \"Y\": 0.3839659094810486\n                    },\n                    {\n                        \"X\": 0.17815086245536804,\n                        \"Y\": 0.3839843273162842\n                    }\n                ]\n            },\n            \"Id\": \"61680c47-cd23-499f-ab20-529ed3ae98a6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93161010742188,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03933807834982872,\n                    \"Height\": 0.008260254748165607,\n                    \"Left\": 0.21043474972248077,\n                    \"Top\": 0.3755759000778198\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21043474972248077,\n                        \"Y\": 0.3756004869937897\n                    },\n                    {\n                        \"X\": 0.24976664781570435,\n                        \"Y\": 0.3755759000778198\n                    },\n                    {\n                        \"X\": 0.2497728168964386,\n                        \"Y\": 0.3838115632534027\n                    },\n                    {\n                        \"X\": 0.21044079959392548,\n                        \"Y\": 0.38383615016937256\n                    }\n                ]\n            },\n            \"Id\": \"ed6d51a3-5e24-4bac-ba78-8c8848b32280\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61740112304688,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01887676864862442,\n                    \"Height\": 0.009242718107998371,\n                    \"Left\": 0.25282859802246094,\n                    \"Top\": 0.3757397532463074\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25282859802246094,\n                        \"Y\": 0.3757515549659729\n                    },\n                    {\n                        \"X\": 0.27169835567474365,\n                        \"Y\": 0.3757397532463074\n                    },\n                    {\n                        \"X\": 0.27170535922050476,\n                        \"Y\": 0.38497069478034973\n                    },\n                    {\n                        \"X\": 0.25283554196357727,\n                        \"Y\": 0.38498246669769287\n                    }\n                ]\n            },\n            \"Id\": \"6de8957f-33a7-47f5-ac79-88c8375f387e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97799682617188,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027683354914188385,\n                    \"Height\": 0.008227929472923279,\n                    \"Left\": 0.2747289538383484,\n                    \"Top\": 0.3756440579891205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2747289538383484,\n                        \"Y\": 0.37566137313842773\n                    },\n                    {\n                        \"X\": 0.30240598320961,\n                        \"Y\": 0.3756440579891205\n                    },\n                    {\n                        \"X\": 0.3024123013019562,\n                        \"Y\": 0.3838546872138977\n                    },\n                    {\n                        \"X\": 0.2747352123260498,\n                        \"Y\": 0.38387197256088257\n                    }\n                ]\n            },\n            \"Id\": \"bd5d5d05-07d1-40fa-9c42-5604b99c741c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.86308288574219,\n            \"Text\": \"90.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049315184354782104,\n                    \"Height\": 0.012190680019557476,\n                    \"Left\": 0.689001739025116,\n                    \"Top\": 0.3702683448791504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.689001739025116,\n                        \"Y\": 0.37029919028282166\n                    },\n                    {\n                        \"X\": 0.7383055090904236,\n                        \"Y\": 0.3702683448791504\n                    },\n                    {\n                        \"X\": 0.7383168935775757,\n                        \"Y\": 0.38242822885513306\n                    },\n                    {\n                        \"X\": 0.689012885093689,\n                        \"Y\": 0.38245904445648193\n                    }\n                ]\n            },\n            \"Id\": \"ba1a6e76-6d4d-4e85-bea7-9f1b893bda27\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8545913696289,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03310680016875267,\n                    \"Height\": 0.010268377140164375,\n                    \"Left\": 0.10567844659090042,\n                    \"Top\": 0.38524559140205383\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10567844659090042,\n                        \"Y\": 0.3852662742137909\n                    },\n                    {\n                        \"X\": 0.1387779861688614,\n                        \"Y\": 0.38524559140205383\n                    },\n                    {\n                        \"X\": 0.1387852430343628,\n                        \"Y\": 0.3954932987689972\n                    },\n                    {\n                        \"X\": 0.10568557679653168,\n                        \"Y\": 0.39551395177841187\n                    }\n                ]\n            },\n            \"Id\": \"c0fe1de8-3513-46c5-a63f-23b2eee13ec0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.850830078125,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02057395502924919,\n                    \"Height\": 0.008413362316787243,\n                    \"Left\": 0.14191535115242004,\n                    \"Top\": 0.38524922728538513\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14191535115242004,\n                        \"Y\": 0.3852621018886566\n                    },\n                    {\n                        \"X\": 0.16248327493667603,\n                        \"Y\": 0.38524922728538513\n                    },\n                    {\n                        \"X\": 0.16248929500579834,\n                        \"Y\": 0.39364975690841675\n                    },\n                    {\n                        \"X\": 0.14192131161689758,\n                        \"Y\": 0.39366260170936584\n                    }\n                ]\n            },\n            \"Id\": \"6ee9eafc-da0f-49aa-bed0-731af3530c6e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9233627319336,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012402486987411976,\n                    \"Height\": 0.006861341651529074,\n                    \"Left\": 0.16722123324871063,\n                    \"Top\": 0.3867681622505188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16722123324871063,\n                        \"Y\": 0.3867759108543396\n                    },\n                    {\n                        \"X\": 0.17961876094341278,\n                        \"Y\": 0.3867681622505188\n                    },\n                    {\n                        \"X\": 0.17962372303009033,\n                        \"Y\": 0.3936217725276947\n                    },\n                    {\n                        \"X\": 0.1672261655330658,\n                        \"Y\": 0.3936295211315155\n                    }\n                ]\n            },\n            \"Id\": \"172f36a9-7dc8-4b10-abd0-5554c8725699\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.09564208984375,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0468178354203701,\n                    \"Height\": 0.009778108447790146,\n                    \"Left\": 0.18213807046413422,\n                    \"Top\": 0.3852407932281494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18213807046413422,\n                        \"Y\": 0.38527002930641174\n                    },\n                    {\n                        \"X\": 0.2289486676454544,\n                        \"Y\": 0.3852407932281494\n                    },\n                    {\n                        \"X\": 0.22895590960979462,\n                        \"Y\": 0.39498963952064514\n                    },\n                    {\n                        \"X\": 0.1821451485157013,\n                        \"Y\": 0.39501890540122986\n                    }\n                ]\n            },\n            \"Id\": \"4eee168d-a044-4edd-93c9-46e1fcc6c5b8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.45884704589844,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01996731199324131,\n                    \"Height\": 0.008263486437499523,\n                    \"Left\": 0.23250524699687958,\n                    \"Top\": 0.3852611482143402\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23250524699687958,\n                        \"Y\": 0.38527360558509827\n                    },\n                    {\n                        \"X\": 0.2524663507938385,\n                        \"Y\": 0.3852611482143402\n                    },\n                    {\n                        \"X\": 0.25247254967689514,\n                        \"Y\": 0.39351215958595276\n                    },\n                    {\n                        \"X\": 0.23251138627529144,\n                        \"Y\": 0.3935246169567108\n                    }\n                ]\n            },\n            \"Id\": \"edd1c55a-d1a8-46ce-a400-6ea6f5e0612a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58150482177734,\n            \"Text\": \"23)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017963852733373642,\n                    \"Height\": 0.010420111007988453,\n                    \"Left\": 0.2558002471923828,\n                    \"Top\": 0.38528943061828613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2558002471923828,\n                        \"Y\": 0.3853006660938263\n                    },\n                    {\n                        \"X\": 0.2737561762332916,\n                        \"Y\": 0.38528943061828613\n                    },\n                    {\n                        \"X\": 0.27376410365104675,\n                        \"Y\": 0.39569833874702454\n                    },\n                    {\n                        \"X\": 0.2558080852031708,\n                        \"Y\": 0.3957095444202423\n                    }\n                ]\n            },\n            \"Id\": \"0f30fa76-a600-4c44-a7e8-cb1cd6efb01c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 90.80213928222656,\n            \"Text\": \"36.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018161946907639503,\n                    \"Height\": 0.008172146044671535,\n                    \"Left\": 0.06351035088300705,\n                    \"Top\": 0.41086676716804504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06351035088300705,\n                        \"Y\": 0.41087809205055237\n                    },\n                    {\n                        \"X\": 0.08166669309139252,\n                        \"Y\": 0.41086676716804504\n                    },\n                    {\n                        \"X\": 0.0816722959280014,\n                        \"Y\": 0.41902756690979004\n                    },\n                    {\n                        \"X\": 0.06351590156555176,\n                        \"Y\": 0.41903892159461975\n                    }\n                ]\n            },\n            \"Id\": \"399d54f6-0fec-40c3-9ec8-f585116d5556\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87422943115234,\n            \"Text\": \"Qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055237289518117905,\n                    \"Height\": 0.008563149720430374,\n                    \"Left\": 0.10548035800457001,\n                    \"Top\": 0.41059622168540955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10548035800457001,\n                        \"Y\": 0.4106306731700897\n                    },\n                    {\n                        \"X\": 0.16071152687072754,\n                        \"Y\": 0.41059622168540955\n                    },\n                    {\n                        \"X\": 0.1607176512479782,\n                        \"Y\": 0.41912490129470825\n                    },\n                    {\n                        \"X\": 0.10548629611730576,\n                        \"Y\": 0.4191593527793884\n                    }\n                ]\n            },\n            \"Id\": \"9b2f4c19-15f6-475f-9974-ee150c1664d7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97294616699219,\n            \"Text\": \"health\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03890407830476761,\n                    \"Height\": 0.008376097306609154,\n                    \"Left\": 0.16415677964687347,\n                    \"Top\": 0.4107109606266022\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16415677964687347,\n                        \"Y\": 0.41073521971702576\n                    },\n                    {\n                        \"X\": 0.20305472612380981,\n                        \"Y\": 0.4107109606266022\n                    },\n                    {\n                        \"X\": 0.20306085050106049,\n                        \"Y\": 0.4190627932548523\n                    },\n                    {\n                        \"X\": 0.1641627699136734,\n                        \"Y\": 0.4190870523452759\n                    }\n                ]\n            },\n            \"Id\": \"13ea1576-d9bc-4d05-b640-bd00145f38d3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94281768798828,\n            \"Text\": \"plan\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02659202553331852,\n                    \"Height\": 0.010008805431425571,\n                    \"Left\": 0.2070438712835312,\n                    \"Top\": 0.4109433889389038\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2070438712835312,\n                        \"Y\": 0.41095998883247375\n                    },\n                    {\n                        \"X\": 0.23362845182418823,\n                        \"Y\": 0.4109433889389038\n                    },\n                    {\n                        \"X\": 0.23363590240478516,\n                        \"Y\": 0.42093563079833984\n                    },\n                    {\n                        \"X\": 0.20705121755599976,\n                        \"Y\": 0.4209522008895874\n                    }\n                ]\n            },\n            \"Id\": \"eb06f05c-0893-42e8-8798-be5cdf12918b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90311431884766,\n            \"Text\": \"expenses\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05947325751185417,\n                    \"Height\": 0.00858801044523716,\n                    \"Left\": 0.23705998063087463,\n                    \"Top\": 0.4122960865497589\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23705998063087463,\n                        \"Y\": 0.4123331904411316\n                    },\n                    {\n                        \"X\": 0.2965266704559326,\n                        \"Y\": 0.4122960865497589\n                    },\n                    {\n                        \"X\": 0.2965332269668579,\n                        \"Y\": 0.42084699869155884\n                    },\n                    {\n                        \"X\": 0.2370663583278656,\n                        \"Y\": 0.4208841025829315\n                    }\n                ]\n            },\n            \"Id\": \"859e0a5d-abfc-449e-82b3-b61bc4ddcfa1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 92.43965911865234,\n            \"Text\": \"240.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05794569477438927,\n                    \"Height\": 0.01244847197085619,\n                    \"Left\": 0.37531670928001404,\n                    \"Top\": 0.4158790111541748\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37531670928001404,\n                        \"Y\": 0.4159151613712311\n                    },\n                    {\n                        \"X\": 0.4332522451877594,\n                        \"Y\": 0.4158790111541748\n                    },\n                    {\n                        \"X\": 0.4332624077796936,\n                        \"Y\": 0.42829135060310364\n                    },\n                    {\n                        \"X\": 0.37532663345336914,\n                        \"Y\": 0.4283275008201599\n                    }\n                ]\n            },\n            \"Id\": \"43be48c6-de0c-459c-a2b5-81427608e67b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.13249969482422,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010289106518030167,\n                    \"Height\": 0.002751680789515376,\n                    \"Left\": 0.44739171862602234,\n                    \"Top\": 0.4180038869380951\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44739171862602234,\n                        \"Y\": 0.41801032423973083\n                    },\n                    {\n                        \"X\": 0.45767855644226074,\n                        \"Y\": 0.4180038869380951\n                    },\n                    {\n                        \"X\": 0.4576808214187622,\n                        \"Y\": 0.42074915766716003\n                    },\n                    {\n                        \"X\": 0.4473939836025238,\n                        \"Y\": 0.4207555651664734\n                    }\n                ]\n            },\n            \"Id\": \"42a8f8fd-07cc-4ef5-813e-f9c3dedbfde2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76609802246094,\n            \"Text\": \"allocable\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05654578283429146,\n                    \"Height\": 0.008391021750867367,\n                    \"Left\": 0.10532832890748978,\n                    \"Top\": 0.4209381639957428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10532832890748978,\n                        \"Y\": 0.42097342014312744\n                    },\n                    {\n                        \"X\": 0.1618681252002716,\n                        \"Y\": 0.4209381639957428\n                    },\n                    {\n                        \"X\": 0.16187411546707153,\n                        \"Y\": 0.4292939305305481\n                    },\n                    {\n                        \"X\": 0.10533414781093597,\n                        \"Y\": 0.42932918667793274\n                    }\n                ]\n            },\n            \"Id\": \"0a069d73-a554-427f-8887-53a5d11d8fac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96013641357422,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013335645198822021,\n                    \"Height\": 0.007909364998340607,\n                    \"Left\": 0.16461507976055145,\n                    \"Top\": 0.421324759721756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16461507976055145,\n                        \"Y\": 0.42133307456970215\n                    },\n                    {\n                        \"X\": 0.17794501781463623,\n                        \"Y\": 0.421324759721756\n                    },\n                    {\n                        \"X\": 0.17795072495937347,\n                        \"Y\": 0.4292258322238922\n                    },\n                    {\n                        \"X\": 0.1646207571029663,\n                        \"Y\": 0.4292341470718384\n                    }\n                ]\n            },\n            \"Id\": \"eb7cf71b-ff4b-448b-a175-55ca3005bf72\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92532348632812,\n            \"Text\": \"qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05385203659534454,\n                    \"Height\": 0.010277138091623783,\n                    \"Left\": 0.18144869804382324,\n                    \"Top\": 0.4209258556365967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18144869804382324,\n                        \"Y\": 0.4209594428539276\n                    },\n                    {\n                        \"X\": 0.23529310524463654,\n                        \"Y\": 0.4209258556365967\n                    },\n                    {\n                        \"X\": 0.23530073463916779,\n                        \"Y\": 0.43116942048072815\n                    },\n                    {\n                        \"X\": 0.18145611882209778,\n                        \"Y\": 0.4312029778957367\n                    }\n                ]\n            },\n            \"Id\": \"764c3abb-cd1d-4136-bce9-3a895bdc7652\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91851043701172,\n            \"Text\": \"sick\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025963934138417244,\n                    \"Height\": 0.008222125470638275,\n                    \"Left\": 0.23822973668575287,\n                    \"Top\": 0.4210512042045593\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23822973668575287,\n                        \"Y\": 0.42106738686561584\n                    },\n                    {\n                        \"X\": 0.26418745517730713,\n                        \"Y\": 0.4210512042045593\n                    },\n                    {\n                        \"X\": 0.26419368386268616,\n                        \"Y\": 0.4292571544647217\n                    },\n                    {\n                        \"X\": 0.23823586106300354,\n                        \"Y\": 0.4292733371257782\n                    }\n                ]\n            },\n            \"Id\": \"087913a5-d22d-4117-baac-d505e32938ba\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8720474243164,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032743729650974274,\n                    \"Height\": 0.008209780789911747,\n                    \"Left\": 0.267225056886673,\n                    \"Top\": 0.42101994156837463\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.267225056886673,\n                        \"Y\": 0.4210403561592102\n                    },\n                    {\n                        \"X\": 0.29996249079704285,\n                        \"Y\": 0.42101994156837463\n                    },\n                    {\n                        \"X\": 0.29996877908706665,\n                        \"Y\": 0.42920932173728943\n                    },\n                    {\n                        \"X\": 0.2672312557697296,\n                        \"Y\": 0.4292297065258026\n                    }\n                ]\n            },\n            \"Id\": \"9d0388b1-f674-481f-acdb-0bd440163b96\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 68.8900375366211,\n            \"Text\": \"150.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05753207206726074,\n                    \"Height\": 0.012098479084670544,\n                    \"Left\": 0.5287590622901917,\n                    \"Top\": 0.41574129462242126\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287590622901917,\n                        \"Y\": 0.41577720642089844\n                    },\n                    {\n                        \"X\": 0.5862805843353271,\n                        \"Y\": 0.41574129462242126\n                    },\n                    {\n                        \"X\": 0.5862911343574524,\n                        \"Y\": 0.4278039336204529\n                    },\n                    {\n                        \"X\": 0.5287694334983826,\n                        \"Y\": 0.4278397858142853\n                    }\n                ]\n            },\n            \"Id\": \"79b2ec2e-601d-47a7-94e6-d75a83d8f521\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.95614624023438,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009264691732823849,\n                    \"Height\": 0.005182179156690836,\n                    \"Left\": 0.6013018488883972,\n                    \"Top\": 0.4173119366168976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6013018488883972,\n                        \"Y\": 0.4173176884651184\n                    },\n                    {\n                        \"X\": 0.6105619668960571,\n                        \"Y\": 0.4173119366168976\n                    },\n                    {\n                        \"X\": 0.6105665564537048,\n                        \"Y\": 0.42248833179473877\n                    },\n                    {\n                        \"X\": 0.6013064384460449,\n                        \"Y\": 0.422494113445282\n                    }\n                ]\n            },\n            \"Id\": \"6bb1e016-9c01-4c35-b3c6-7383e983d821\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.9940185546875,\n            \"Text\": \"90.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04932050779461861,\n                    \"Height\": 0.012370050884783268,\n                    \"Left\": 0.6886778473854065,\n                    \"Top\": 0.4155575633049011\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6886778473854065,\n                        \"Y\": 0.4155883193016052\n                    },\n                    {\n                        \"X\": 0.7379868030548096,\n                        \"Y\": 0.4155575633049011\n                    },\n                    {\n                        \"X\": 0.737998366355896,\n                        \"Y\": 0.4278968572616577\n                    },\n                    {\n                        \"X\": 0.6886891722679138,\n                        \"Y\": 0.4279276132583618\n                    }\n                ]\n            },\n            \"Id\": \"e7aeba67-4cd6-401c-bd9f-ccf2ba7773c2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91629791259766,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04161914065480232,\n                    \"Height\": 0.008532701060175896,\n                    \"Left\": 0.10487457364797592,\n                    \"Top\": 0.4323842525482178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10487457364797592,\n                        \"Y\": 0.43241018056869507\n                    },\n                    {\n                        \"X\": 0.14648766815662384,\n                        \"Y\": 0.4323842525482178\n                    },\n                    {\n                        \"X\": 0.14649371802806854,\n                        \"Y\": 0.4408910274505615\n                    },\n                    {\n                        \"X\": 0.10488049685955048,\n                        \"Y\": 0.4409169554710388\n                    }\n                ]\n            },\n            \"Id\": \"87005e29-5773-4012-8d46-ce5a8391301e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95777893066406,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018829388543963432,\n                    \"Height\": 0.008344579488039017,\n                    \"Left\": 0.14899198710918427,\n                    \"Top\": 0.4306792914867401\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14899198710918427,\n                        \"Y\": 0.43069103360176086\n                    },\n                    {\n                        \"X\": 0.16781538724899292,\n                        \"Y\": 0.4306792914867401\n                    },\n                    {\n                        \"X\": 0.16782137751579285,\n                        \"Y\": 0.4390121400356293\n                    },\n                    {\n                        \"X\": 0.1489979326725006,\n                        \"Y\": 0.43902388215065\n                    }\n                ]\n            },\n            \"Id\": \"90a91f57-dfd6-48d5-ac06-24c638134860\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8590087890625,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03296075761318207,\n                    \"Height\": 0.008303947746753693,\n                    \"Left\": 0.17059999704360962,\n                    \"Top\": 0.43075528740882874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17059999704360962,\n                        \"Y\": 0.43077582120895386\n                    },\n                    {\n                        \"X\": 0.2035546898841858,\n                        \"Y\": 0.43075528740882874\n                    },\n                    {\n                        \"X\": 0.20356076955795288,\n                        \"Y\": 0.4390386939048767\n                    },\n                    {\n                        \"X\": 0.17060597240924835,\n                        \"Y\": 0.43905922770500183\n                    }\n                ]\n            },\n            \"Id\": \"0d329832-7be0-4cac-8623-ee4fbd1d43e1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80509185791016,\n            \"Text\": \"taken\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03528015315532684,\n                    \"Height\": 0.008367066271603107,\n                    \"Left\": 0.20688964426517487,\n                    \"Top\": 0.4307487905025482\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20688964426517487,\n                        \"Y\": 0.43077078461647034\n                    },\n                    {\n                        \"X\": 0.24216356873512268,\n                        \"Y\": 0.4307487905025482\n                    },\n                    {\n                        \"X\": 0.2421697974205017,\n                        \"Y\": 0.4390938878059387\n                    },\n                    {\n                        \"X\": 0.20689578354358673,\n                        \"Y\": 0.43911585211753845\n                    }\n                ]\n            },\n            \"Id\": \"fdb0079e-dcab-434b-9166-fd81c7bbc69f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97732543945312,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029717635363340378,\n                    \"Height\": 0.008081061765551567,\n                    \"Left\": 0.24573718011379242,\n                    \"Top\": 0.43088528513908386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24573718011379242,\n                        \"Y\": 0.4309037923812866\n                    },\n                    {\n                        \"X\": 0.27544867992401123,\n                        \"Y\": 0.43088528513908386\n                    },\n                    {\n                        \"X\": 0.2754548192024231,\n                        \"Y\": 0.4389478266239166\n                    },\n                    {\n                        \"X\": 0.24574322998523712,\n                        \"Y\": 0.4389663338661194\n                    }\n                ]\n            },\n            \"Id\": \"17e9378a-5c54-41cf-94ff-482474520b88\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88928985595703,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039881087839603424,\n                    \"Height\": 0.00842306762933731,\n                    \"Left\": 0.10552765429019928,\n                    \"Top\": 0.4409486949443817\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10552765429019928,\n                        \"Y\": 0.44097355008125305\n                    },\n                    {\n                        \"X\": 0.14540277421474457,\n                        \"Y\": 0.4409486949443817\n                    },\n                    {\n                        \"X\": 0.1454087495803833,\n                        \"Y\": 0.4493469297885895\n                    },\n                    {\n                        \"X\": 0.10553350299596786,\n                        \"Y\": 0.4493717551231384\n                    }\n                ]\n            },\n            \"Id\": \"a2cdd6a4-b71e-4c34-ad95-fa8ec0df750d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80550384521484,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018836045637726784,\n                    \"Height\": 0.009504083544015884,\n                    \"Left\": 0.14852693676948547,\n                    \"Top\": 0.44115540385246277\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14852693676948547,\n                        \"Y\": 0.44116711616516113\n                    },\n                    {\n                        \"X\": 0.16735614836215973,\n                        \"Y\": 0.44115540385246277\n                    },\n                    {\n                        \"X\": 0.1673629730939865,\n                        \"Y\": 0.4506477415561676\n                    },\n                    {\n                        \"X\": 0.14853370189666748,\n                        \"Y\": 0.45065948367118835\n                    }\n                ]\n            },\n            \"Id\": \"56f516a2-2dd0-4e8c-87c1-2c233658aa49\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97003936767578,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02901466004550457,\n                    \"Height\": 0.00852661207318306,\n                    \"Left\": 0.16996589303016663,\n                    \"Top\": 0.4409046173095703\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16996589303016663,\n                        \"Y\": 0.44092270731925964\n                    },\n                    {\n                        \"X\": 0.19897432625293732,\n                        \"Y\": 0.4409046173095703\n                    },\n                    {\n                        \"X\": 0.19898055493831635,\n                        \"Y\": 0.4494131803512573\n                    },\n                    {\n                        \"X\": 0.1699720174074173,\n                        \"Y\": 0.44943124055862427\n                    }\n                ]\n            },\n            \"Id\": \"4a8fb786-efa3-4f65-9315-ef6573b75424\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90979766845703,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03440805897116661,\n                    \"Height\": 0.010645781643688679,\n                    \"Left\": 0.20336173474788666,\n                    \"Top\": 0.4407891631126404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20336173474788666,\n                        \"Y\": 0.44081059098243713\n                    },\n                    {\n                        \"X\": 0.23776187002658844,\n                        \"Y\": 0.4407891631126404\n                    },\n                    {\n                        \"X\": 0.23776979744434357,\n                        \"Y\": 0.45141351222991943\n                    },\n                    {\n                        \"X\": 0.20336952805519104,\n                        \"Y\": 0.4514349400997162\n                    }\n                ]\n            },\n            \"Id\": \"beefc999-0cef-49b1-b8d9-8efa5d0fce9b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92271423339844,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020575348287820816,\n                    \"Height\": 0.008364665322005749,\n                    \"Left\": 0.2408420443534851,\n                    \"Top\": 0.44094905257225037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2408420443534851,\n                        \"Y\": 0.4409618675708771\n                    },\n                    {\n                        \"X\": 0.26141107082366943,\n                        \"Y\": 0.44094905257225037\n                    },\n                    {\n                        \"X\": 0.2614173889160156,\n                        \"Y\": 0.4493008852005005\n                    },\n                    {\n                        \"X\": 0.24084828794002533,\n                        \"Y\": 0.4493137001991272\n                    }\n                ]\n            },\n            \"Id\": \"532726a7-f198-4dbf-adfe-c5ba063f2a07\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95570373535156,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013223816640675068,\n                    \"Height\": 0.006737374700605869,\n                    \"Left\": 0.2660917639732361,\n                    \"Top\": 0.44261234998703003\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2660917639732361,\n                        \"Y\": 0.44262057542800903\n                    },\n                    {\n                        \"X\": 0.2793104648590088,\n                        \"Y\": 0.44261234998703003\n                    },\n                    {\n                        \"X\": 0.2793155908584595,\n                        \"Y\": 0.44934147596359253\n                    },\n                    {\n                        \"X\": 0.2660968601703644,\n                        \"Y\": 0.4493497312068939\n                    }\n                ]\n            },\n            \"Id\": \"c3afa90a-1344-4312-9a28-b277ee894495\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.77876281738281,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047796446830034256,\n                    \"Height\": 0.009938593953847885,\n                    \"Left\": 0.10520079731941223,\n                    \"Top\": 0.45118942856788635\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10520079731941223,\n                        \"Y\": 0.4512191712856293\n                    },\n                    {\n                        \"X\": 0.1529901772737503,\n                        \"Y\": 0.45118942856788635\n                    },\n                    {\n                        \"X\": 0.1529972404241562,\n                        \"Y\": 0.46109825372695923\n                    },\n                    {\n                        \"X\": 0.10520769655704498,\n                        \"Y\": 0.46112799644470215\n                    }\n                ]\n            },\n            \"Id\": \"6493d997-ae96-404b-b5ef-9afe715b6290\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83118438720703,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020704258233308792,\n                    \"Height\": 0.008433399721980095,\n                    \"Left\": 0.15655823051929474,\n                    \"Top\": 0.4512627124786377\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15655823051929474,\n                        \"Y\": 0.45127561688423157\n                    },\n                    {\n                        \"X\": 0.17725640535354614,\n                        \"Y\": 0.4512627124786377\n                    },\n                    {\n                        \"X\": 0.17726249992847443,\n                        \"Y\": 0.45968323945999146\n                    },\n                    {\n                        \"X\": 0.15656426548957825,\n                        \"Y\": 0.45969611406326294\n                    }\n                ]\n            },\n            \"Id\": \"ae84df34-e9f1-4431-b6ba-1ee3ffd16c3f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82846069335938,\n            \"Text\": \"24)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01936299167573452,\n                    \"Height\": 0.010520813055336475,\n                    \"Left\": 0.17964772880077362,\n                    \"Top\": 0.4512966573238373\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17964772880077362,\n                        \"Y\": 0.4513087272644043\n                    },\n                    {\n                        \"X\": 0.19900302588939667,\n                        \"Y\": 0.4512966573238373\n                    },\n                    {\n                        \"X\": 0.1990107148885727,\n                        \"Y\": 0.46180543303489685\n                    },\n                    {\n                        \"X\": 0.17965534329414368,\n                        \"Y\": 0.4618174731731415\n                    }\n                ]\n            },\n            \"Id\": \"24ea16cc-4ef3-4a02-bfc3-510072e260de\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9541015625,\n            \"Text\": \"37.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01813887618482113,\n                    \"Height\": 0.008162067271769047,\n                    \"Left\": 0.06357889622449875,\n                    \"Top\": 0.47138798236846924\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06357889622449875,\n                        \"Y\": 0.4713992476463318\n                    },\n                    {\n                        \"X\": 0.08171217143535614,\n                        \"Y\": 0.47138798236846924\n                    },\n                    {\n                        \"X\": 0.08171776682138443,\n                        \"Y\": 0.47953876852989197\n                    },\n                    {\n                        \"X\": 0.06358443945646286,\n                        \"Y\": 0.4795500636100769\n                    }\n                ]\n            },\n            \"Id\": \"f29ab35f-c10d-4707-837b-932da690fea2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97663879394531,\n            \"Text\": \"Amounts\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05667591467499733,\n                    \"Height\": 0.008382068946957588,\n                    \"Left\": 0.10482832789421082,\n                    \"Top\": 0.471341997385025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10482832789421082,\n                        \"Y\": 0.4713772237300873\n                    },\n                    {\n                        \"X\": 0.1614982634782791,\n                        \"Y\": 0.471341997385025\n                    },\n                    {\n                        \"X\": 0.16150423884391785,\n                        \"Y\": 0.479688823223114\n                    },\n                    {\n                        \"X\": 0.10483413934707642,\n                        \"Y\": 0.47972404956817627\n                    }\n                ]\n            },\n            \"Id\": \"15e2fefc-e2f7-418b-8f28-206173ebbdbc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94439697265625,\n            \"Text\": \"under\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036764323711395264,\n                    \"Height\": 0.008396980352699757,\n                    \"Left\": 0.16481460630893707,\n                    \"Top\": 0.4713492691516876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16481460630893707,\n                        \"Y\": 0.471372127532959\n                    },\n                    {\n                        \"X\": 0.20157280564308167,\n                        \"Y\": 0.4713492691516876\n                    },\n                    {\n                        \"X\": 0.20157893002033234,\n                        \"Y\": 0.47972339391708374\n                    },\n                    {\n                        \"X\": 0.1648206263780594,\n                        \"Y\": 0.4797462522983551\n                    }\n                ]\n            },\n            \"Id\": \"c6ec4eb3-aad6-4c6d-acc7-f323e876a429\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95046997070312,\n            \"Text\": \"certain\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04312862455844879,\n                    \"Height\": 0.008290133439004421,\n                    \"Left\": 0.20524252951145172,\n                    \"Top\": 0.4713495671749115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20524252951145172,\n                        \"Y\": 0.4713763892650604\n                    },\n                    {\n                        \"X\": 0.24836495518684387,\n                        \"Y\": 0.4713495671749115\n                    },\n                    {\n                        \"X\": 0.2483711540699005,\n                        \"Y\": 0.47961291670799255\n                    },\n                    {\n                        \"X\": 0.20524859428405762,\n                        \"Y\": 0.4796397089958191\n                    }\n                ]\n            },\n            \"Id\": \"c0521400-1157-4fd5-a3a5-02cb5603563a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95281982421875,\n            \"Text\": \"collectively\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06986630707979202,\n                    \"Height\": 0.010281944647431374,\n                    \"Left\": 0.10560070723295212,\n                    \"Top\": 0.4814548194408417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10560070723295212,\n                        \"Y\": 0.48149824142456055\n                    },\n                    {\n                        \"X\": 0.1754596084356308,\n                        \"Y\": 0.4814548194408417\n                    },\n                    {\n                        \"X\": 0.17546701431274414,\n                        \"Y\": 0.4916933476924896\n                    },\n                    {\n                        \"X\": 0.10560782998800278,\n                        \"Y\": 0.4917367398738861\n                    }\n                ]\n            },\n            \"Id\": \"b65ba672-6133-48f6-b55f-5b47dbe1805d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87181854248047,\n            \"Text\": \"bargained\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0634346753358841,\n                    \"Height\": 0.010269015096127987,\n                    \"Left\": 0.1784730702638626,\n                    \"Top\": 0.48147886991500854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1784730702638626,\n                        \"Y\": 0.48151829838752747\n                    },\n                    {\n                        \"X\": 0.24190010130405426,\n                        \"Y\": 0.48147886991500854\n                    },\n                    {\n                        \"X\": 0.2419077455997467,\n                        \"Y\": 0.4917084872722626\n                    },\n                    {\n                        \"X\": 0.17848047614097595,\n                        \"Y\": 0.4917478859424591\n                    }\n                ]\n            },\n            \"Id\": \"4b36ca5f-de43-4e77-8d2c-77d61d27544e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 82.35147857666016,\n            \"Text\": \"250.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05716290324926376,\n                    \"Height\": 0.01233754027634859,\n                    \"Left\": 0.3756330609321594,\n                    \"Top\": 0.4764270782470703\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3756330609321594,\n                        \"Y\": 0.47646260261535645\n                    },\n                    {\n                        \"X\": 0.43278589844703674,\n                        \"Y\": 0.4764270782470703\n                    },\n                    {\n                        \"X\": 0.4327959716320038,\n                        \"Y\": 0.4887290894985199\n                    },\n                    {\n                        \"X\": 0.37564289569854736,\n                        \"Y\": 0.48876461386680603\n                    }\n                ]\n            },\n            \"Id\": \"dd90e20b-90a6-438e-ae4f-9c644f4c76a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.22417449951172,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010100885294377804,\n                    \"Height\": 0.002938215620815754,\n                    \"Left\": 0.4475909471511841,\n                    \"Top\": 0.47872355580329895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4475909471511841,\n                        \"Y\": 0.47872984409332275\n                    },\n                    {\n                        \"X\": 0.45768940448760986,\n                        \"Y\": 0.47872355580329895\n                    },\n                    {\n                        \"X\": 0.45769181847572327,\n                        \"Y\": 0.481655478477478\n                    },\n                    {\n                        \"X\": 0.4475933611392975,\n                        \"Y\": 0.48166176676750183\n                    }\n                ]\n            },\n            \"Id\": \"7e3944fe-1519-4dc7-81a1-48d761f23d0e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 83.5316390991211,\n            \"Text\": \"160.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05659313127398491,\n                    \"Height\": 0.011750510893762112,\n                    \"Left\": 0.529114305973053,\n                    \"Top\": 0.476382851600647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.529114305973053,\n                        \"Y\": 0.47641804814338684\n                    },\n                    {\n                        \"X\": 0.5856971740722656,\n                        \"Y\": 0.476382851600647\n                    },\n                    {\n                        \"X\": 0.5857074856758118,\n                        \"Y\": 0.4880982041358948\n                    },\n                    {\n                        \"X\": 0.52912437915802,\n                        \"Y\": 0.48813337087631226\n                    }\n                ]\n            },\n            \"Id\": \"9097f55d-a9a5-4cf7-893f-a2e079873104\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.8176498413086,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009538175538182259,\n                    \"Height\": 0.004969369154423475,\n                    \"Left\": 0.6011689901351929,\n                    \"Top\": 0.4779130518436432\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011689901351929,\n                        \"Y\": 0.47791898250579834\n                    },\n                    {\n                        \"X\": 0.6107027530670166,\n                        \"Y\": 0.4779130518436432\n                    },\n                    {\n                        \"X\": 0.61070716381073,\n                        \"Y\": 0.4828765094280243\n                    },\n                    {\n                        \"X\": 0.6011733412742615,\n                        \"Y\": 0.48288244009017944\n                    }\n                ]\n            },\n            \"Id\": \"5547fb53-a0e1-4186-805e-a56c785b21e6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 58.42528533935547,\n            \"Text\": \"90.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04958689585328102,\n                    \"Height\": 0.012102179229259491,\n                    \"Left\": 0.6887965798377991,\n                    \"Top\": 0.4760252833366394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6887965798377991,\n                        \"Y\": 0.4760560989379883\n                    },\n                    {\n                        \"X\": 0.7383722066879272,\n                        \"Y\": 0.4760252833366394\n                    },\n                    {\n                        \"X\": 0.7383834719657898,\n                        \"Y\": 0.4880966544151306\n                    },\n                    {\n                        \"X\": 0.6888076663017273,\n                        \"Y\": 0.4881274402141571\n                    }\n                ]\n            },\n            \"Id\": \"d570772a-dfb0-4823-838e-77202e3dc7ea\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92013549804688,\n            \"Text\": \"agreements\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0743507519364357,\n                    \"Height\": 0.009985937736928463,\n                    \"Left\": 0.10555922985076904,\n                    \"Top\": 0.4915549159049988\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10555922985076904,\n                        \"Y\": 0.4916010797023773\n                    },\n                    {\n                        \"X\": 0.1799027919769287,\n                        \"Y\": 0.4915549159049988\n                    },\n                    {\n                        \"X\": 0.17990998923778534,\n                        \"Y\": 0.5014947056770325\n                    },\n                    {\n                        \"X\": 0.10556615144014359,\n                        \"Y\": 0.5015408396720886\n                    }\n                ]\n            },\n            \"Id\": \"432fb44e-3185-4821-ab7e-1b7de6b12cee\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87181854248047,\n            \"Text\": \"allocable\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05632835626602173,\n                    \"Height\": 0.008398989215493202,\n                    \"Left\": 0.183338925242424,\n                    \"Top\": 0.49138033390045166\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.183338925242424,\n                        \"Y\": 0.4914153516292572\n                    },\n                    {\n                        \"X\": 0.23966103792190552,\n                        \"Y\": 0.49138033390045166\n                    },\n                    {\n                        \"X\": 0.23966728150844574,\n                        \"Y\": 0.49974435567855835\n                    },\n                    {\n                        \"X\": 0.1833449900150299,\n                        \"Y\": 0.4997793436050415\n                    }\n                ]\n            },\n            \"Id\": \"898a1345-3fdf-4521-b20f-901eba3ef485\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96487426757812,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012613891623914242,\n                    \"Height\": 0.007894596084952354,\n                    \"Left\": 0.24297738075256348,\n                    \"Top\": 0.49168285727500916\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24297738075256348,\n                        \"Y\": 0.49169066548347473\n                    },\n                    {\n                        \"X\": 0.25558534264564514,\n                        \"Y\": 0.49168285727500916\n                    },\n                    {\n                        \"X\": 0.2555912733078003,\n                        \"Y\": 0.4995696246623993\n                    },\n                    {\n                        \"X\": 0.24298328161239624,\n                        \"Y\": 0.49957743287086487\n                    }\n                ]\n            },\n            \"Id\": \"71b90d46-6d3b-4c58-bd94-c28bc7607502\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9228744506836,\n            \"Text\": \"qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05364546924829483,\n                    \"Height\": 0.01037465501576662,\n                    \"Left\": 0.10571426898241043,\n                    \"Top\": 0.5015185475349426\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10571426898241043,\n                        \"Y\": 0.5015518665313721\n                    },\n                    {\n                        \"X\": 0.15935233235359192,\n                        \"Y\": 0.5015185475349426\n                    },\n                    {\n                        \"X\": 0.15935973823070526,\n                        \"Y\": 0.5118598937988281\n                    },\n                    {\n                        \"X\": 0.10572147369384766,\n                        \"Y\": 0.5118932127952576\n                    }\n                ]\n            },\n            \"Id\": \"0b6c2081-e114-4993-acb5-a04f60b15027\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93453979492188,\n            \"Text\": \"sick\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025982342660427094,\n                    \"Height\": 0.008307711221277714,\n                    \"Left\": 0.16209203004837036,\n                    \"Top\": 0.5015735030174255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16209203004837036,\n                        \"Y\": 0.5015895962715149\n                    },\n                    {\n                        \"X\": 0.18806834518909454,\n                        \"Y\": 0.5015735030174255\n                    },\n                    {\n                        \"X\": 0.18807438015937805,\n                        \"Y\": 0.5098650455474854\n                    },\n                    {\n                        \"X\": 0.1620979905128479,\n                        \"Y\": 0.5098811984062195\n                    }\n                ]\n            },\n            \"Id\": \"d78af635-507c-4859-8449-e9c5842d08d4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88133239746094,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03378242626786232,\n                    \"Height\": 0.008440556935966015,\n                    \"Left\": 0.191011443734169,\n                    \"Top\": 0.5014926791191101\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.191011443734169,\n                        \"Y\": 0.501513659954071\n                    },\n                    {\n                        \"X\": 0.224787637591362,\n                        \"Y\": 0.5014926791191101\n                    },\n                    {\n                        \"X\": 0.22479386627674103,\n                        \"Y\": 0.5099122524261475\n                    },\n                    {\n                        \"X\": 0.19101758301258087,\n                        \"Y\": 0.5099332332611084\n                    }\n                ]\n            },\n            \"Id\": \"a7e22ff6-c6ce-4e70-a388-e7f67581ba82\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94930267333984,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04120628163218498,\n                    \"Height\": 0.008809031918644905,\n                    \"Left\": 0.22750476002693176,\n                    \"Top\": 0.5030953288078308\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22750476002693176,\n                        \"Y\": 0.5031209588050842\n                    },\n                    {\n                        \"X\": 0.2687043845653534,\n                        \"Y\": 0.5030953288078308\n                    },\n                    {\n                        \"X\": 0.26871103048324585,\n                        \"Y\": 0.5118787884712219\n                    },\n                    {\n                        \"X\": 0.22751127183437347,\n                        \"Y\": 0.5119043588638306\n                    }\n                ]\n            },\n            \"Id\": \"86703745-c561-41ba-9f52-b1bbd83820a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98774719238281,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0184883251786232,\n                    \"Height\": 0.008218809962272644,\n                    \"Left\": 0.271673321723938,\n                    \"Top\": 0.5016067624092102\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.271673321723938,\n                        \"Y\": 0.5016182065010071\n                    },\n                    {\n                        \"X\": 0.2901553809642792,\n                        \"Y\": 0.5016067624092102\n                    },\n                    {\n                        \"X\": 0.290161669254303,\n                        \"Y\": 0.5098140835762024\n                    },\n                    {\n                        \"X\": 0.271679550409317,\n                        \"Y\": 0.5098255276679993\n                    }\n                ]\n            },\n            \"Id\": \"42036e51-6ad2-4984-9127-043fa96be4e3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9149398803711,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032884638756513596,\n                    \"Height\": 0.008225570432841778,\n                    \"Left\": 0.1054745689034462,\n                    \"Top\": 0.5120304226875305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1054745689034462,\n                        \"Y\": 0.5120508670806885\n                    },\n                    {\n                        \"X\": 0.1383533924818039,\n                        \"Y\": 0.5120304226875305\n                    },\n                    {\n                        \"X\": 0.1383592039346695,\n                        \"Y\": 0.5202355980873108\n                    },\n                    {\n                        \"X\": 0.10548028349876404,\n                        \"Y\": 0.5202560424804688\n                    }\n                ]\n            },\n            \"Id\": \"9062eb26-0bba-4c35-ba29-89355c059aeb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93785858154297,\n            \"Text\": \"taken\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03579810634255409,\n                    \"Height\": 0.008341575972735882,\n                    \"Left\": 0.14109376072883606,\n                    \"Top\": 0.511929988861084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14109376072883606,\n                        \"Y\": 0.5119522213935852\n                    },\n                    {\n                        \"X\": 0.17688585817813873,\n                        \"Y\": 0.511929988861084\n                    },\n                    {\n                        \"X\": 0.17689187824726105,\n                        \"Y\": 0.5202493667602539\n                    },\n                    {\n                        \"X\": 0.14109967648983002,\n                        \"Y\": 0.5202715396881104\n                    }\n                ]\n            },\n            \"Id\": \"0c1314bb-c22f-4bf2-b18c-0af92cffae5a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9725112915039,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030292309820652008,\n                    \"Height\": 0.008226425386965275,\n                    \"Left\": 0.17999443411827087,\n                    \"Top\": 0.5120418071746826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17999443411827087,\n                        \"Y\": 0.5120605826377869\n                    },\n                    {\n                        \"X\": 0.21028070151805878,\n                        \"Y\": 0.5120418071746826\n                    },\n                    {\n                        \"X\": 0.21028673648834229,\n                        \"Y\": 0.5202494263648987\n                    },\n                    {\n                        \"X\": 0.18000037968158722,\n                        \"Y\": 0.5202682614326477\n                    }\n                ]\n            },\n            \"Id\": \"9b634e51-2b2c-48a0-a193-918ff2487d45\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93209075927734,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03999260812997818,\n                    \"Height\": 0.008359967730939388,\n                    \"Left\": 0.21314233541488647,\n                    \"Top\": 0.5118741393089294\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21314233541488647,\n                        \"Y\": 0.5118989944458008\n                    },\n                    {\n                        \"X\": 0.25312867760658264,\n                        \"Y\": 0.5118741393089294\n                    },\n                    {\n                        \"X\": 0.25313493609428406,\n                        \"Y\": 0.5202093124389648\n                    },\n                    {\n                        \"X\": 0.21314847469329834,\n                        \"Y\": 0.5202341079711914\n                    }\n                ]\n            },\n            \"Id\": \"7bb54b19-1232-49df-a756-8689a1b19fc8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.47772979736328,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018563641235232353,\n                    \"Height\": 0.00982865784317255,\n                    \"Left\": 0.2561118006706238,\n                    \"Top\": 0.5119244456291199\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2561118006706238,\n                        \"Y\": 0.5119359493255615\n                    },\n                    {\n                        \"X\": 0.27466797828674316,\n                        \"Y\": 0.5119244456291199\n                    },\n                    {\n                        \"X\": 0.2746754288673401,\n                        \"Y\": 0.5217415690422058\n                    },\n                    {\n                        \"X\": 0.2561191916465759,\n                        \"Y\": 0.5217530727386475\n                    }\n                ]\n            },\n            \"Id\": \"fac10a9c-593f-4875-b05b-f10e233aaad5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9788818359375,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02886202745139599,\n                    \"Height\": 0.00866992212831974,\n                    \"Left\": 0.10547696799039841,\n                    \"Top\": 0.5214496850967407\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547696799039841,\n                        \"Y\": 0.5214675664901733\n                    },\n                    {\n                        \"X\": 0.13433288037776947,\n                        \"Y\": 0.5214496850967407\n                    },\n                    {\n                        \"X\": 0.13433898985385895,\n                        \"Y\": 0.5301017165184021\n                    },\n                    {\n                        \"X\": 0.10548298805952072,\n                        \"Y\": 0.5301195979118347\n                    }\n                ]\n            },\n            \"Id\": \"3250bfbf-dc04-4a4f-ac42-0a4ffda86154\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94584655761719,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03475898876786232,\n                    \"Height\": 0.010290486738085747,\n                    \"Left\": 0.13810312747955322,\n                    \"Top\": 0.5213969945907593\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13810312747955322,\n                        \"Y\": 0.5214185118675232\n                    },\n                    {\n                        \"X\": 0.1728547066450119,\n                        \"Y\": 0.5213969945907593\n                    },\n                    {\n                        \"X\": 0.17286211252212524,\n                        \"Y\": 0.5316659212112427\n                    },\n                    {\n                        \"X\": 0.13811039924621582,\n                        \"Y\": 0.5316874384880066\n                    }\n                ]\n            },\n            \"Id\": \"86aaad99-d23b-4774-b2cc-b04504856f43\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95069122314453,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020616300404071808,\n                    \"Height\": 0.008444667793810368,\n                    \"Left\": 0.17575238645076752,\n                    \"Top\": 0.5215296745300293\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17575238645076752,\n                        \"Y\": 0.5215424299240112\n                    },\n                    {\n                        \"X\": 0.19636252522468567,\n                        \"Y\": 0.5215296745300293\n                    },\n                    {\n                        \"X\": 0.19636867940425873,\n                        \"Y\": 0.5299615859985352\n                    },\n                    {\n                        \"X\": 0.1757584810256958,\n                        \"Y\": 0.5299743413925171\n                    }\n                ]\n            },\n            \"Id\": \"39c0b032-cc5b-486a-8b4d-98ae0eb899fd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93850708007812,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013097216375172138,\n                    \"Height\": 0.006654150318354368,\n                    \"Left\": 0.2010093629360199,\n                    \"Top\": 0.5232166051864624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2010093629360199,\n                        \"Y\": 0.5232247710227966\n                    },\n                    {\n                        \"X\": 0.21410168707370758,\n                        \"Y\": 0.5232166051864624\n                    },\n                    {\n                        \"X\": 0.21410657465457916,\n                        \"Y\": 0.529862642288208\n                    },\n                    {\n                        \"X\": 0.20101423561573029,\n                        \"Y\": 0.5298707485198975\n                    }\n                ]\n            },\n            \"Id\": \"bd0110d7-87a5-4abe-ba73-4c0b5b11963c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.66258239746094,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048201195895671844,\n                    \"Height\": 0.009727497585117817,\n                    \"Left\": 0.2161131203174591,\n                    \"Top\": 0.521515429019928\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2161131203174591,\n                        \"Y\": 0.5215453505516052\n                    },\n                    {\n                        \"X\": 0.2643069922924042,\n                        \"Y\": 0.521515429019928\n                    },\n                    {\n                        \"X\": 0.26431432366371155,\n                        \"Y\": 0.5312130451202393\n                    },\n                    {\n                        \"X\": 0.21612027287483215,\n                        \"Y\": 0.5312429666519165\n                    }\n                ]\n            },\n            \"Id\": \"c805d41f-d78b-40f6-b420-6251c4ca184f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90939331054688,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020720625296235085,\n                    \"Height\": 0.008427410386502743,\n                    \"Left\": 0.10537387430667877,\n                    \"Top\": 0.5318504571914673\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10537387430667877,\n                        \"Y\": 0.5318633317947388\n                    },\n                    {\n                        \"X\": 0.12608857452869415,\n                        \"Y\": 0.5318504571914673\n                    },\n                    {\n                        \"X\": 0.1260945051908493,\n                        \"Y\": 0.5402650833129883\n                    },\n                    {\n                        \"X\": 0.10537973046302795,\n                        \"Y\": 0.540277898311615\n                    }\n                ]\n            },\n            \"Id\": \"c5040c51-7dd9-4e33-b351-774541325ed5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65677642822266,\n            \"Text\": \"25)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0184192955493927,\n                    \"Height\": 0.010680626146495342,\n                    \"Left\": 0.12900222837924957,\n                    \"Top\": 0.5318467617034912\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12900222837924957,\n                        \"Y\": 0.5318581461906433\n                    },\n                    {\n                        \"X\": 0.1474139243364334,\n                        \"Y\": 0.5318467617034912\n                    },\n                    {\n                        \"X\": 0.14742152392864227,\n                        \"Y\": 0.5425159335136414\n                    },\n                    {\n                        \"X\": 0.12900973856449127,\n                        \"Y\": 0.5425273776054382\n                    }\n                ]\n            },\n            \"Id\": \"db6d773a-781c-43cc-ba98-9d1f6e9a5a18\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.17853546142578,\n            \"Text\": \"38.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018019642680883408,\n                    \"Height\": 0.008393949829041958,\n                    \"Left\": 0.06357311457395554,\n                    \"Top\": 0.5549718141555786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06357311457395554,\n                        \"Y\": 0.5549829602241516\n                    },\n                    {\n                        \"X\": 0.08158700168132782,\n                        \"Y\": 0.5549718141555786\n                    },\n                    {\n                        \"X\": 0.08159276098012924,\n                        \"Y\": 0.5633546113967896\n                    },\n                    {\n                        \"X\": 0.06357882171869278,\n                        \"Y\": 0.5633657574653625\n                    }\n                ]\n            },\n            \"Id\": \"e56ebd87-584e-4821-847e-398a5aef25f9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84894561767578,\n            \"Text\": \"Qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.054617542773485184,\n                    \"Height\": 0.008808793500065804,\n                    \"Left\": 0.10540248453617096,\n                    \"Top\": 0.5546339154243469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10540248453617096,\n                        \"Y\": 0.5546677708625793\n                    },\n                    {\n                        \"X\": 0.16001373529434204,\n                        \"Y\": 0.5546339154243469\n                    },\n                    {\n                        \"X\": 0.16002003848552704,\n                        \"Y\": 0.5634089708328247\n                    },\n                    {\n                        \"X\": 0.10540859401226044,\n                        \"Y\": 0.5634427666664124\n                    }\n                ]\n            },\n            \"Id\": \"0f704525-e7b6-49e9-8280-17ed950da8d2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.942138671875,\n            \"Text\": \"family\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03739962354302406,\n                    \"Height\": 0.010325959883630276,\n                    \"Left\": 0.16251541674137115,\n                    \"Top\": 0.5548604130744934\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16251541674137115,\n                        \"Y\": 0.5548835396766663\n                    },\n                    {\n                        \"X\": 0.19990749657154083,\n                        \"Y\": 0.5548604130744934\n                    },\n                    {\n                        \"X\": 0.19991503655910492,\n                        \"Y\": 0.5651631951332092\n                    },\n                    {\n                        \"X\": 0.1625228077173233,\n                        \"Y\": 0.5651863813400269\n                    }\n                ]\n            },\n            \"Id\": \"2e87a207-cfd3-4fc3-9e41-0d4e52a36d56\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91529083251953,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03179830312728882,\n                    \"Height\": 0.008409515954554081,\n                    \"Left\": 0.20266027748584747,\n                    \"Top\": 0.5548590421676636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20266027748584747,\n                        \"Y\": 0.5548787713050842\n                    },\n                    {\n                        \"X\": 0.23445232212543488,\n                        \"Y\": 0.5548590421676636\n                    },\n                    {\n                        \"X\": 0.2344585806131363,\n                        \"Y\": 0.5632489323616028\n                    },\n                    {\n                        \"X\": 0.20266641676425934,\n                        \"Y\": 0.5632686018943787\n                    }\n                ]\n            },\n            \"Id\": \"948f7b1c-2619-4f33-8855-3fa4778d36d8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9441146850586,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0402757003903389,\n                    \"Height\": 0.00822789128869772,\n                    \"Left\": 0.23691603541374207,\n                    \"Top\": 0.5565645694732666\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23691603541374207,\n                        \"Y\": 0.5565895438194275\n                    },\n                    {\n                        \"X\": 0.27718549966812134,\n                        \"Y\": 0.5565645694732666\n                    },\n                    {\n                        \"X\": 0.27719172835350037,\n                        \"Y\": 0.564767599105835\n                    },\n                    {\n                        \"X\": 0.23692214488983154,\n                        \"Y\": 0.5647925138473511\n                    }\n                ]\n            },\n            \"Id\": \"59da2176-9fe7-418c-a59d-6d0330b561ee\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9702377319336,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017851408571004868,\n                    \"Height\": 0.008220898918807507,\n                    \"Left\": 0.279946893453598,\n                    \"Top\": 0.5549870133399963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.279946893453598,\n                        \"Y\": 0.5549980401992798\n                    },\n                    {\n                        \"X\": 0.297791987657547,\n                        \"Y\": 0.5549870133399963\n                    },\n                    {\n                        \"X\": 0.2977983057498932,\n                        \"Y\": 0.5631968379020691\n                    },\n                    {\n                        \"X\": 0.27995315194129944,\n                        \"Y\": 0.5632078647613525\n                    }\n                ]\n            },\n            \"Id\": \"3c73b1f8-639c-4cdf-8d2e-460d43d4c1a2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88862609863281,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03186943754553795,\n                    \"Height\": 0.00838178489357233,\n                    \"Left\": 0.10547246783971786,\n                    \"Top\": 0.5646933317184448\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547246783971786,\n                        \"Y\": 0.5647130608558655\n                    },\n                    {\n                        \"X\": 0.13733598589897156,\n                        \"Y\": 0.5646933317184448\n                    },\n                    {\n                        \"X\": 0.13734190165996552,\n                        \"Y\": 0.5730554461479187\n                    },\n                    {\n                        \"X\": 0.10547828674316406,\n                        \"Y\": 0.5730751156806946\n                    }\n                ]\n            },\n            \"Id\": \"64fee6ce-798f-414b-9da3-236179dfe3be\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93873596191406,\n            \"Text\": \"taken\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03411399945616722,\n                    \"Height\": 0.008458065800368786,\n                    \"Left\": 0.140344500541687,\n                    \"Top\": 0.5646786093711853\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.140344500541687,\n                        \"Y\": 0.5646997690200806\n                    },\n                    {\n                        \"X\": 0.17445240914821625,\n                        \"Y\": 0.5646786093711853\n                    },\n                    {\n                        \"X\": 0.17445850372314453,\n                        \"Y\": 0.5731155872344971\n                    },\n                    {\n                        \"X\": 0.14035049080848694,\n                        \"Y\": 0.5731366872787476\n                    }\n                ]\n            },\n            \"Id\": \"a6baca82-38ad-42ab-a33b-c1246e9778f8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95758819580078,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028659548610448837,\n                    \"Height\": 0.008141736499965191,\n                    \"Left\": 0.1782415360212326,\n                    \"Top\": 0.5649253129959106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1782415360212326,\n                        \"Y\": 0.5649430751800537\n                    },\n                    {\n                        \"X\": 0.206895112991333,\n                        \"Y\": 0.5649253129959106\n                    },\n                    {\n                        \"X\": 0.20690108835697174,\n                        \"Y\": 0.5730493664741516\n                    },\n                    {\n                        \"X\": 0.17824742197990417,\n                        \"Y\": 0.5730670690536499\n                    }\n                ]\n            },\n            \"Id\": \"7e3d7a86-738a-4c9e-809d-0c518ee2100d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96153259277344,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038478296250104904,\n                    \"Height\": 0.008449681103229523,\n                    \"Left\": 0.20976117253303528,\n                    \"Top\": 0.5645783543586731\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20976117253303528,\n                        \"Y\": 0.5646021366119385\n                    },\n                    {\n                        \"X\": 0.2482331395149231,\n                        \"Y\": 0.5645783543586731\n                    },\n                    {\n                        \"X\": 0.24823947250843048,\n                        \"Y\": 0.5730042457580566\n                    },\n                    {\n                        \"X\": 0.20976737141609192,\n                        \"Y\": 0.573028028011322\n                    }\n                ]\n            },\n            \"Id\": \"073c88c3-1bc4-4163-8b9f-51c9da38ec97\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.44940185546875,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017794035375118256,\n                    \"Height\": 0.009395641274750233,\n                    \"Left\": 0.25208330154418945,\n                    \"Top\": 0.56488037109375\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25208330154418945,\n                        \"Y\": 0.5648913979530334\n                    },\n                    {\n                        \"X\": 0.26987019181251526,\n                        \"Y\": 0.56488037109375\n                    },\n                    {\n                        \"X\": 0.2698773145675659,\n                        \"Y\": 0.5742650032043457\n                    },\n                    {\n                        \"X\": 0.25209033489227295,\n                        \"Y\": 0.5742760300636292\n                    }\n                ]\n            },\n            \"Id\": \"303605f4-7bc9-445b-86d5-963fdf6577e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78717803955078,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02698003128170967,\n                    \"Height\": 0.008275313302874565,\n                    \"Left\": 0.2729795277118683,\n                    \"Top\": 0.5648268461227417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2729795277118683,\n                        \"Y\": 0.5648435354232788\n                    },\n                    {\n                        \"X\": 0.2999531924724579,\n                        \"Y\": 0.5648268461227417\n                    },\n                    {\n                        \"X\": 0.29995954036712646,\n                        \"Y\": 0.5730854868888855\n                    },\n                    {\n                        \"X\": 0.2729857861995697,\n                        \"Y\": 0.5731021761894226\n                    }\n                ]\n            },\n            \"Id\": \"028fc832-3230-48a5-bdd0-8c3cda71acb4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 71.1121826171875,\n            \"Text\": \"260.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05788668990135193,\n                    \"Height\": 0.012060017324984074,\n                    \"Left\": 0.37540701031684875,\n                    \"Top\": 0.5597537159919739\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37540701031684875,\n                        \"Y\": 0.5597895383834839\n                    },\n                    {\n                        \"X\": 0.43328383564949036,\n                        \"Y\": 0.5597537159919739\n                    },\n                    {\n                        \"X\": 0.4332937002182007,\n                        \"Y\": 0.5717779397964478\n                    },\n                    {\n                        \"X\": 0.3754166066646576,\n                        \"Y\": 0.5718137621879578\n                    }\n                ]\n            },\n            \"Id\": \"1bc27faf-5b74-4d4d-bb91-2acc7ded950d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.15684509277344,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010094214230775833,\n                    \"Height\": 0.0025394491385668516,\n                    \"Left\": 0.44757404923439026,\n                    \"Top\": 0.5620090365409851\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44757404923439026,\n                        \"Y\": 0.5620152950286865\n                    },\n                    {\n                        \"X\": 0.45766615867614746,\n                        \"Y\": 0.5620090365409851\n                    },\n                    {\n                        \"X\": 0.457668274641037,\n                        \"Y\": 0.5645422339439392\n                    },\n                    {\n                        \"X\": 0.4475761353969574,\n                        \"Y\": 0.5645484924316406\n                    }\n                ]\n            },\n            \"Id\": \"5a44bc51-741d-4f65-ad66-6d1359f387c2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 83.64823913574219,\n            \"Text\": \"170.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05654788762331009,\n                    \"Height\": 0.01182042621076107,\n                    \"Left\": 0.5292506217956543,\n                    \"Top\": 0.5597116351127625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5292506217956543,\n                        \"Y\": 0.5597466230392456\n                    },\n                    {\n                        \"X\": 0.5857881903648376,\n                        \"Y\": 0.5597116351127625\n                    },\n                    {\n                        \"X\": 0.5857985019683838,\n                        \"Y\": 0.5714970827102661\n                    },\n                    {\n                        \"X\": 0.5292607545852661,\n                        \"Y\": 0.5715320110321045\n                    }\n                ]\n            },\n            \"Id\": \"91eb2ca8-e205-49df-8912-2bcf0cc22218\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.11868286132812,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009458561427891254,\n                    \"Height\": 0.004481032956391573,\n                    \"Left\": 0.6011639833450317,\n                    \"Top\": 0.5613093376159668\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6011639833450317,\n                        \"Y\": 0.5613152384757996\n                    },\n                    {\n                        \"X\": 0.6106185913085938,\n                        \"Y\": 0.5613093376159668\n                    },\n                    {\n                        \"X\": 0.6106225252151489,\n                        \"Y\": 0.5657845139503479\n                    },\n                    {\n                        \"X\": 0.6011679172515869,\n                        \"Y\": 0.5657904148101807\n                    }\n                ]\n            },\n            \"Id\": \"c3bc7c7d-898d-4024-b775-efca651e852f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.49694061279297,\n            \"Text\": \"90.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049384985119104385,\n                    \"Height\": 0.012342097237706184,\n                    \"Left\": 0.6891568303108215,\n                    \"Top\": 0.559844970703125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6891568303108215,\n                        \"Y\": 0.55987548828125\n                    },\n                    {\n                        \"X\": 0.7385303378105164,\n                        \"Y\": 0.559844970703125\n                    },\n                    {\n                        \"X\": 0.738541841506958,\n                        \"Y\": 0.5721564888954163\n                    },\n                    {\n                        \"X\": 0.6891681551933289,\n                        \"Y\": 0.572187066078186\n                    }\n                ]\n            },\n            \"Id\": \"a73141e6-e921-4dfc-9627-a7afe8a21ef8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85856628417969,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033328827470541,\n                    \"Height\": 0.010302601382136345,\n                    \"Left\": 0.10536479204893112,\n                    \"Top\": 0.5749117136001587\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10536479204893112,\n                        \"Y\": 0.574932336807251\n                    },\n                    {\n                        \"X\": 0.13868632912635803,\n                        \"Y\": 0.5749117136001587\n                    },\n                    {\n                        \"X\": 0.13869361579418182,\n                        \"Y\": 0.5851936936378479\n                    },\n                    {\n                        \"X\": 0.10537194460630417,\n                        \"Y\": 0.5852143168449402\n                    }\n                ]\n            },\n            \"Id\": \"dc41073a-ea15-4485-9382-780589b29d19\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79067993164062,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02039162442088127,\n                    \"Height\": 0.008474212139844894,\n                    \"Left\": 0.14124347269535065,\n                    \"Top\": 0.5749385952949524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14124347269535065,\n                        \"Y\": 0.5749512314796448\n                    },\n                    {\n                        \"X\": 0.16162902116775513,\n                        \"Y\": 0.5749385952949524\n                    },\n                    {\n                        \"X\": 0.16163508594036102,\n                        \"Y\": 0.5834001898765564\n                    },\n                    {\n                        \"X\": 0.14124947786331177,\n                        \"Y\": 0.5834128260612488\n                    }\n                ]\n            },\n            \"Id\": \"c5b74c67-e522-466a-9004-1b1f64e5e17a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9124526977539,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012516177259385586,\n                    \"Height\": 0.006895999424159527,\n                    \"Left\": 0.16620680689811707,\n                    \"Top\": 0.576360821723938\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16620680689811707,\n                        \"Y\": 0.5763685703277588\n                    },\n                    {\n                        \"X\": 0.17871800065040588,\n                        \"Y\": 0.576360821723938\n                    },\n                    {\n                        \"X\": 0.17872297763824463,\n                        \"Y\": 0.5832490921020508\n                    },\n                    {\n                        \"X\": 0.16621175408363342,\n                        \"Y\": 0.5832568407058716\n                    }\n                ]\n            },\n            \"Id\": \"59bb145b-f63f-4c50-ab4b-d83b87f8c62b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.02973937988281,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04603779688477516,\n                    \"Height\": 0.009667446836829185,\n                    \"Left\": 0.18143707513809204,\n                    \"Top\": 0.5749198794364929\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18143707513809204,\n                        \"Y\": 0.5749483704566956\n                    },\n                    {\n                        \"X\": 0.22746771574020386,\n                        \"Y\": 0.5749198794364929\n                    },\n                    {\n                        \"X\": 0.2274748682975769,\n                        \"Y\": 0.58455890417099\n                    },\n                    {\n                        \"X\": 0.18144406378269196,\n                        \"Y\": 0.5845873355865479\n                    }\n                ]\n            },\n            \"Id\": \"a7d72bfc-2140-4b7a-9e47-918aaa54d852\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5213394165039,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019755378365516663,\n                    \"Height\": 0.008296354673802853,\n                    \"Left\": 0.23096346855163574,\n                    \"Top\": 0.574934184551239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23096346855163574,\n                        \"Y\": 0.5749463438987732\n                    },\n                    {\n                        \"X\": 0.25071263313293457,\n                        \"Y\": 0.574934184551239\n                    },\n                    {\n                        \"X\": 0.2507188320159912,\n                        \"Y\": 0.5832182765007019\n                    },\n                    {\n                        \"X\": 0.2309696227312088,\n                        \"Y\": 0.5832304954528809\n                    }\n                ]\n            },\n            \"Id\": \"384b82a8-c4dd-47fd-84c1-5d829e724254\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.20317840576172,\n            \"Text\": \"26)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018008841201663017,\n                    \"Height\": 0.010310246609151363,\n                    \"Left\": 0.25438350439071655,\n                    \"Top\": 0.5750280618667603\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25438350439071655,\n                        \"Y\": 0.5750392079353333\n                    },\n                    {\n                        \"X\": 0.27238452434539795,\n                        \"Y\": 0.5750280618667603\n                    },\n                    {\n                        \"X\": 0.2723923325538635,\n                        \"Y\": 0.5853272080421448\n                    },\n                    {\n                        \"X\": 0.25439125299453735,\n                        \"Y\": 0.585338294506073\n                    }\n                ]\n            },\n            \"Id\": \"241de273-d9f4-4b32-a25b-42aedd81e0eb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81829071044922,\n            \"Text\": \"39.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018287312239408493,\n                    \"Height\": 0.008483701385557652,\n                    \"Left\": 0.06341315805912018,\n                    \"Top\": 0.6077509522438049\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06341315805912018,\n                        \"Y\": 0.6077622175216675\n                    },\n                    {\n                        \"X\": 0.08169465512037277,\n                        \"Y\": 0.6077509522438049\n                    },\n                    {\n                        \"X\": 0.08170047402381897,\n                        \"Y\": 0.6162233948707581\n                    },\n                    {\n                        \"X\": 0.0634189248085022,\n                        \"Y\": 0.6162346601486206\n                    }\n                ]\n            },\n            \"Id\": \"edee9ce9-749d-4e75-b8f2-887c6b7582f9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90711975097656,\n            \"Text\": \"Qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0556328259408474,\n                    \"Height\": 0.008740745484828949,\n                    \"Left\": 0.10533466190099716,\n                    \"Top\": 0.6074331402778625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10533466190099716,\n                        \"Y\": 0.6074674725532532\n                    },\n                    {\n                        \"X\": 0.16096124053001404,\n                        \"Y\": 0.6074331402778625\n                    },\n                    {\n                        \"X\": 0.16096748411655426,\n                        \"Y\": 0.6161395907402039\n                    },\n                    {\n                        \"X\": 0.10534071922302246,\n                        \"Y\": 0.6161739230155945\n                    }\n                ]\n            },\n            \"Id\": \"0fd53106-e29d-4dd1-8eda-95cb4f7d1a88\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95804595947266,\n            \"Text\": \"health\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038755469024181366,\n                    \"Height\": 0.008527309633791447,\n                    \"Left\": 0.16417978703975677,\n                    \"Top\": 0.6075912117958069\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16417978703975677,\n                        \"Y\": 0.6076151132583618\n                    },\n                    {\n                        \"X\": 0.2029290348291397,\n                        \"Y\": 0.6075912117958069\n                    },\n                    {\n                        \"X\": 0.20293526351451874,\n                        \"Y\": 0.6160946488380432\n                    },\n                    {\n                        \"X\": 0.16418589651584625,\n                        \"Y\": 0.6161185503005981\n                    }\n                ]\n            },\n            \"Id\": \"9f2d2b16-0bf7-4939-8217-57a2ff652f74\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89755249023438,\n            \"Text\": \"plan\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02666439674794674,\n                    \"Height\": 0.009957964532077312,\n                    \"Left\": 0.20681481063365936,\n                    \"Top\": 0.6076549291610718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20681481063365936,\n                        \"Y\": 0.6076713800430298\n                    },\n                    {\n                        \"X\": 0.2334718108177185,\n                        \"Y\": 0.6076549291610718\n                    },\n                    {\n                        \"X\": 0.23347920179367065,\n                        \"Y\": 0.617596447467804\n                    },\n                    {\n                        \"X\": 0.20682211220264435,\n                        \"Y\": 0.617612898349762\n                    }\n                ]\n            },\n            \"Id\": \"96fe9d84-0e3e-49a0-b6f3-fccfc559f677\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.914794921875,\n            \"Text\": \"expenses\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0595279224216938,\n                    \"Height\": 0.008726947009563446,\n                    \"Left\": 0.23703241348266602,\n                    \"Top\": 0.6092792749404907\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23703241348266602,\n                        \"Y\": 0.6093160510063171\n                    },\n                    {\n                        \"X\": 0.29655367136001587,\n                        \"Y\": 0.6092792749404907\n                    },\n                    {\n                        \"X\": 0.2965603470802307,\n                        \"Y\": 0.6179695129394531\n                    },\n                    {\n                        \"X\": 0.23703889548778534,\n                        \"Y\": 0.6180062294006348\n                    }\n                ]\n            },\n            \"Id\": \"28cbe259-0945-43a0-826c-607f4406d641\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85031127929688,\n            \"Text\": \"allocable\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05650712922215462,\n                    \"Height\": 0.008490839041769505,\n                    \"Left\": 0.10536976158618927,\n                    \"Top\": 0.6179111003875732\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10536976158618927,\n                        \"Y\": 0.6179459691047668\n                    },\n                    {\n                        \"X\": 0.1618708223104477,\n                        \"Y\": 0.6179111003875732\n                    },\n                    {\n                        \"X\": 0.1618768870830536,\n                        \"Y\": 0.6263671517372131\n                    },\n                    {\n                        \"X\": 0.10537564754486084,\n                        \"Y\": 0.626401960849762\n                    }\n                ]\n            },\n            \"Id\": \"9642bf50-f26c-43dd-ae1a-1d187bdce4a5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96540069580078,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013440271839499474,\n                    \"Height\": 0.008063139393925667,\n                    \"Left\": 0.16463609039783478,\n                    \"Top\": 0.6182474493980408\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16463609039783478,\n                        \"Y\": 0.6182557344436646\n                    },\n                    {\n                        \"X\": 0.1780705451965332,\n                        \"Y\": 0.6182474493980408\n                    },\n                    {\n                        \"X\": 0.17807637155056,\n                        \"Y\": 0.6263023018836975\n                    },\n                    {\n                        \"X\": 0.16464188694953918,\n                        \"Y\": 0.6263105869293213\n                    }\n                ]\n            },\n            \"Id\": \"bfbbe94d-dfe7-4952-be76-0c15f6c1c884\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91524505615234,\n            \"Text\": \"qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053807199001312256,\n                    \"Height\": 0.010126462206244469,\n                    \"Left\": 0.18162216246128082,\n                    \"Top\": 0.6178576350212097\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18162216246128082,\n                        \"Y\": 0.6178907752037048\n                    },\n                    {\n                        \"X\": 0.23542185127735138,\n                        \"Y\": 0.6178576350212097\n                    },\n                    {\n                        \"X\": 0.23542936146259308,\n                        \"Y\": 0.62795090675354\n                    },\n                    {\n                        \"X\": 0.181629478931427,\n                        \"Y\": 0.6279840469360352\n                    }\n                ]\n            },\n            \"Id\": \"05eda9ce-f2c5-49f9-a550-ec9c8eae824d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9186782836914,\n            \"Text\": \"family\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03854488953948021,\n                    \"Height\": 0.010549908503890038,\n                    \"Left\": 0.2380089908838272,\n                    \"Top\": 0.6177541017532349\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2380089908838272,\n                        \"Y\": 0.6177778840065002\n                    },\n                    {\n                        \"X\": 0.2765458822250366,\n                        \"Y\": 0.6177541017532349\n                    },\n                    {\n                        \"X\": 0.2765538692474365,\n                        \"Y\": 0.6282802820205688\n                    },\n                    {\n                        \"X\": 0.23801684379577637,\n                        \"Y\": 0.6283040046691895\n                    }\n                ]\n            },\n            \"Id\": \"f43acb6b-ddc4-4a15-b812-94fd0045b544\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 73.58047485351562,\n            \"Text\": \"270.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05820601433515549,\n                    \"Height\": 0.011490895412862301,\n                    \"Left\": 0.3753643333911896,\n                    \"Top\": 0.6129097938537598\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3753643333911896,\n                        \"Y\": 0.6129457354545593\n                    },\n                    {\n                        \"X\": 0.43356093764305115,\n                        \"Y\": 0.6129097938537598\n                    },\n                    {\n                        \"X\": 0.43357032537460327,\n                        \"Y\": 0.6243647933006287\n                    },\n                    {\n                        \"X\": 0.3753734529018402,\n                        \"Y\": 0.6244006752967834\n                    }\n                ]\n            },\n            \"Id\": \"56dec224-0f0d-4362-a8e5-f3e5a7e0847d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.68766021728516,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010197887197136879,\n                    \"Height\": 0.0026341755874454975,\n                    \"Left\": 0.4475073218345642,\n                    \"Top\": 0.6153576970100403\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4475073218345642,\n                        \"Y\": 0.6153639554977417\n                    },\n                    {\n                        \"X\": 0.4577030539512634,\n                        \"Y\": 0.6153576970100403\n                    },\n                    {\n                        \"X\": 0.45770522952079773,\n                        \"Y\": 0.6179855465888977\n                    },\n                    {\n                        \"X\": 0.4475094974040985,\n                        \"Y\": 0.6179918646812439\n                    }\n                ]\n            },\n            \"Id\": \"068aa091-886a-43f4-8a4f-b30085836770\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 82.15393829345703,\n            \"Text\": \"190.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05790714919567108,\n                    \"Height\": 0.011885304003953934,\n                    \"Left\": 0.5279643535614014,\n                    \"Top\": 0.6128547191619873\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5279643535614014,\n                        \"Y\": 0.6128904223442078\n                    },\n                    {\n                        \"X\": 0.585861086845398,\n                        \"Y\": 0.6128547191619873\n                    },\n                    {\n                        \"X\": 0.5858715176582336,\n                        \"Y\": 0.6247043013572693\n                    },\n                    {\n                        \"X\": 0.5279744863510132,\n                        \"Y\": 0.6247400045394897\n                    }\n                ]\n            },\n            \"Id\": \"82861a70-59fd-4c66-9307-7bb38c3ea8ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.7435531616211,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009698562324047089,\n                    \"Height\": 0.004284301307052374,\n                    \"Left\": 0.6009987592697144,\n                    \"Top\": 0.6148093342781067\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6009987592697144,\n                        \"Y\": 0.614815354347229\n                    },\n                    {\n                        \"X\": 0.6106935739517212,\n                        \"Y\": 0.6148093342781067\n                    },\n                    {\n                        \"X\": 0.610697329044342,\n                        \"Y\": 0.6190876960754395\n                    },\n                    {\n                        \"X\": 0.60100257396698,\n                        \"Y\": 0.619093656539917\n                    }\n                ]\n            },\n            \"Id\": \"3570aeaf-08d3-4fb1-88e5-552bfd01a2e7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 70.3722152709961,\n            \"Text\": \"80.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04909403622150421,\n                    \"Height\": 0.01186253409832716,\n                    \"Left\": 0.6894717812538147,\n                    \"Top\": 0.6127375960350037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6894717812538147,\n                        \"Y\": 0.6127678751945496\n                    },\n                    {\n                        \"X\": 0.7385547757148743,\n                        \"Y\": 0.6127375960350037\n                    },\n                    {\n                        \"X\": 0.7385658621788025,\n                        \"Y\": 0.6245698928833008\n                    },\n                    {\n                        \"X\": 0.6894826889038086,\n                        \"Y\": 0.6246001124382019\n                    }\n                ]\n            },\n            \"Id\": \"c4efeaf0-263e-4db2-9447-69d6c05e90ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87567901611328,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03292262554168701,\n                    \"Height\": 0.00837965402752161,\n                    \"Left\": 0.10547255724668503,\n                    \"Top\": 0.6277573108673096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10547255724668503,\n                        \"Y\": 0.627777636051178\n                    },\n                    {\n                        \"X\": 0.13838925957679749,\n                        \"Y\": 0.6277573108673096\n                    },\n                    {\n                        \"X\": 0.13839517533779144,\n                        \"Y\": 0.6361166834831238\n                    },\n                    {\n                        \"X\": 0.10547836869955063,\n                        \"Y\": 0.6361369490623474\n                    }\n                ]\n            },\n            \"Id\": \"6d36655b-dc59-4df9-9c6e-5b01c602d428\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93550872802734,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04170867055654526,\n                    \"Height\": 0.008881120011210442,\n                    \"Left\": 0.14095574617385864,\n                    \"Top\": 0.629178524017334\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14095574617385864,\n                        \"Y\": 0.6292042136192322\n                    },\n                    {\n                        \"X\": 0.18265800178050995,\n                        \"Y\": 0.629178524017334\n                    },\n                    {\n                        \"X\": 0.1826644092798233,\n                        \"Y\": 0.638033926486969\n                    },\n                    {\n                        \"X\": 0.14096203446388245,\n                        \"Y\": 0.6380596160888672\n                    }\n                ]\n            },\n            \"Id\": \"e7a05957-b295-4bd3-8768-f313a2a7aad6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96099853515625,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018768372014164925,\n                    \"Height\": 0.008153660222887993,\n                    \"Left\": 0.18578125536441803,\n                    \"Top\": 0.6279789209365845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18578125536441803,\n                        \"Y\": 0.6279904842376709\n                    },\n                    {\n                        \"X\": 0.20454365015029907,\n                        \"Y\": 0.6279789209365845\n                    },\n                    {\n                        \"X\": 0.2045496255159378,\n                        \"Y\": 0.6361209750175476\n                    },\n                    {\n                        \"X\": 0.185787171125412,\n                        \"Y\": 0.636132538318634\n                    }\n                ]\n            },\n            \"Id\": \"e36134cb-186b-4fb1-aee6-d1dfcb3bc996\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90558624267578,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03288436681032181,\n                    \"Height\": 0.008446735329926014,\n                    \"Left\": 0.20744268596172333,\n                    \"Top\": 0.6277332901954651\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20744268596172333,\n                        \"Y\": 0.6277535557746887\n                    },\n                    {\n                        \"X\": 0.24032075703144073,\n                        \"Y\": 0.6277332901954651\n                    },\n                    {\n                        \"X\": 0.24032704532146454,\n                        \"Y\": 0.6361597180366516\n                    },\n                    {\n                        \"X\": 0.20744886994361877,\n                        \"Y\": 0.6361799836158752\n                    }\n                ]\n            },\n            \"Id\": \"4acc45aa-35cf-46ac-b0b9-8b3edb69635a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88902282714844,\n            \"Text\": \"taken\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03508723899722099,\n                    \"Height\": 0.008279897272586823,\n                    \"Left\": 0.24303682148456573,\n                    \"Top\": 0.6278308629989624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24303682148456573,\n                        \"Y\": 0.6278524994850159\n                    },\n                    {\n                        \"X\": 0.2781177759170532,\n                        \"Y\": 0.6278308629989624\n                    },\n                    {\n                        \"X\": 0.278124064207077,\n                        \"Y\": 0.6360891461372375\n                    },\n                    {\n                        \"X\": 0.24304300546646118,\n                        \"Y\": 0.636110782623291\n                    }\n                ]\n            },\n            \"Id\": \"bf231e40-a2ef-4dbd-aa1b-0a98e1ca382d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.979248046875,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03003605827689171,\n                    \"Height\": 0.008158563636243343,\n                    \"Left\": 0.1057223528623581,\n                    \"Top\": 0.6382013559341431\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1057223528623581,\n                        \"Y\": 0.6382198333740234\n                    },\n                    {\n                        \"X\": 0.13575264811515808,\n                        \"Y\": 0.6382013559341431\n                    },\n                    {\n                        \"X\": 0.1357584148645401,\n                        \"Y\": 0.6463414430618286\n                    },\n                    {\n                        \"X\": 0.10572801530361176,\n                        \"Y\": 0.646359920501709\n                    }\n                ]\n            },\n            \"Id\": \"558eadcd-9ed4-42bd-97fe-960ee17b2e00\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93363952636719,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03927229717373848,\n                    \"Height\": 0.008603882975876331,\n                    \"Left\": 0.13858377933502197,\n                    \"Top\": 0.6379154324531555\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13858377933502197,\n                        \"Y\": 0.6379395723342896\n                    },\n                    {\n                        \"X\": 0.1778498739004135,\n                        \"Y\": 0.6379154324531555\n                    },\n                    {\n                        \"X\": 0.17785608768463135,\n                        \"Y\": 0.6464951038360596\n                    },\n                    {\n                        \"X\": 0.13858985900878906,\n                        \"Y\": 0.6465193033218384\n                    }\n                ]\n            },\n            \"Id\": \"fe7cf899-78a8-491e-9e13-47c3b6ecd783\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7048568725586,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01797456666827202,\n                    \"Height\": 0.009672651067376137,\n                    \"Left\": 0.181362122297287,\n                    \"Top\": 0.6378365159034729\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.181362122297287,\n                        \"Y\": 0.6378475427627563\n                    },\n                    {\n                        \"X\": 0.19932961463928223,\n                        \"Y\": 0.6378365159034729\n                    },\n                    {\n                        \"X\": 0.1993366926908493,\n                        \"Y\": 0.6474980711936951\n                    },\n                    {\n                        \"X\": 0.1813691258430481,\n                        \"Y\": 0.6475091576576233\n                    }\n                ]\n            },\n            \"Id\": \"427d386d-9fbe-4af0-ad0d-17857649ca58\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93683624267578,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028423456475138664,\n                    \"Height\": 0.008833537809550762,\n                    \"Left\": 0.2032856047153473,\n                    \"Top\": 0.6377118825912476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2032856047153473,\n                        \"Y\": 0.6377294063568115\n                    },\n                    {\n                        \"X\": 0.2317025065422058,\n                        \"Y\": 0.6377118825912476\n                    },\n                    {\n                        \"X\": 0.2317090630531311,\n                        \"Y\": 0.646527886390686\n                    },\n                    {\n                        \"X\": 0.20329205691814423,\n                        \"Y\": 0.64654541015625\n                    }\n                ]\n            },\n            \"Id\": \"8e815a1a-dbe4-46a7-b714-c1ccf9b0c166\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8477554321289,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034229326993227005,\n                    \"Height\": 0.010575848631560802,\n                    \"Left\": 0.2358483076095581,\n                    \"Top\": 0.6377525925636292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2358483076095581,\n                        \"Y\": 0.6377736330032349\n                    },\n                    {\n                        \"X\": 0.2700696289539337,\n                        \"Y\": 0.6377525925636292\n                    },\n                    {\n                        \"X\": 0.2700776159763336,\n                        \"Y\": 0.6483073234558105\n                    },\n                    {\n                        \"X\": 0.23585617542266846,\n                        \"Y\": 0.648328423500061\n                    }\n                ]\n            },\n            \"Id\": \"5f128176-4c31-4609-8913-bfe5a254b7b6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82868194580078,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02116410620510578,\n                    \"Height\": 0.008780593052506447,\n                    \"Left\": 0.27311041951179504,\n                    \"Top\": 0.6377378702163696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27311041951179504,\n                        \"Y\": 0.6377509236335754\n                    },\n                    {\n                        \"X\": 0.29426780343055725,\n                        \"Y\": 0.6377378702163696\n                    },\n                    {\n                        \"X\": 0.29427453875541687,\n                        \"Y\": 0.6465054154396057\n                    },\n                    {\n                        \"X\": 0.2731170952320099,\n                        \"Y\": 0.6465184688568115\n                    }\n                ]\n            },\n            \"Id\": \"d3ceabcf-34bd-4bdf-96c5-719724d6b53d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72103881835938,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013215235434472561,\n                    \"Height\": 0.006574786733835936,\n                    \"Left\": 0.10526902973651886,\n                    \"Top\": 0.6501052975654602\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10526902973651886,\n                        \"Y\": 0.6501134037971497\n                    },\n                    {\n                        \"X\": 0.1184796690940857,\n                        \"Y\": 0.6501052975654602\n                    },\n                    {\n                        \"X\": 0.118484266102314,\n                        \"Y\": 0.656671941280365\n                    },\n                    {\n                        \"X\": 0.10527360439300537,\n                        \"Y\": 0.6566800475120544\n                    }\n                ]\n            },\n            \"Id\": \"761e05c5-5b27-40ac-b65a-cceff9b75504\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.59539031982422,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04781058058142662,\n                    \"Height\": 0.009951307438313961,\n                    \"Left\": 0.12080436944961548,\n                    \"Top\": 0.6480528116226196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12080436944961548,\n                        \"Y\": 0.6480822563171387\n                    },\n                    {\n                        \"X\": 0.16860780119895935,\n                        \"Y\": 0.6480528116226196\n                    },\n                    {\n                        \"X\": 0.1686149537563324,\n                        \"Y\": 0.6579746603965759\n                    },\n                    {\n                        \"X\": 0.120811328291893,\n                        \"Y\": 0.658004105091095\n                    }\n                ]\n            },\n            \"Id\": \"eb67223a-9efc-43f2-bf5c-358f9e785dd1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.14177703857422,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02058594301342964,\n                    \"Height\": 0.00864478200674057,\n                    \"Left\": 0.17228510975837708,\n                    \"Top\": 0.6481898427009583\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17228510975837708,\n                        \"Y\": 0.6482025384902954\n                    },\n                    {\n                        \"X\": 0.19286476075649261,\n                        \"Y\": 0.6481898427009583\n                    },\n                    {\n                        \"X\": 0.19287104904651642,\n                        \"Y\": 0.6568219661712646\n                    },\n                    {\n                        \"X\": 0.1722913384437561,\n                        \"Y\": 0.6568346619606018\n                    }\n                ]\n            },\n            \"Id\": \"a7b3b22d-5ea7-4830-bdd0-135d279e297e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.3357925415039,\n            \"Text\": \"27)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018569931387901306,\n                    \"Height\": 0.010584770701825619,\n                    \"Left\": 0.19564023613929749,\n                    \"Top\": 0.6481430530548096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19564023613929749,\n                        \"Y\": 0.6481544375419617\n                    },\n                    {\n                        \"X\": 0.2142023742198944,\n                        \"Y\": 0.6481430530548096\n                    },\n                    {\n                        \"X\": 0.2142101675271988,\n                        \"Y\": 0.6587163805961609\n                    },\n                    {\n                        \"X\": 0.1956479549407959,\n                        \"Y\": 0.6587278246879578\n                    }\n                ]\n            },\n            \"Id\": \"165d76b4-387c-43ad-8474-5b94fe262d5e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90946960449219,\n            \"Text\": \"40.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01845517009496689,\n                    \"Height\": 0.008299182169139385,\n                    \"Left\": 0.06323353946208954,\n                    \"Top\": 0.6762095093727112\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06323353946208954,\n                        \"Y\": 0.6762208342552185\n                    },\n                    {\n                        \"X\": 0.08168301731348038,\n                        \"Y\": 0.6762095093727112\n                    },\n                    {\n                        \"X\": 0.08168870955705643,\n                        \"Y\": 0.6844973564147949\n                    },\n                    {\n                        \"X\": 0.06323917955160141,\n                        \"Y\": 0.6845086812973022\n                    }\n                ]\n            },\n            \"Id\": \"23e5ceb1-ae57-47fc-9730-4b9846e7a9c1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9532470703125,\n            \"Text\": \"Amounts\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05526826158165932,\n                    \"Height\": 0.008429846726357937,\n                    \"Left\": 0.10476794838905334,\n                    \"Top\": 0.6760329604148865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10476794838905334,\n                        \"Y\": 0.6760669350624084\n                    },\n                    {\n                        \"X\": 0.16003020107746124,\n                        \"Y\": 0.6760329604148865\n                    },\n                    {\n                        \"X\": 0.16003620624542236,\n                        \"Y\": 0.6844288110733032\n                    },\n                    {\n                        \"X\": 0.10477378964424133,\n                        \"Y\": 0.6844627857208252\n                    }\n                ]\n            },\n            \"Id\": \"5d7f9a11-db64-4ac0-a395-76106346740c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96456909179688,\n            \"Text\": \"under\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03627175837755203,\n                    \"Height\": 0.008491852320730686,\n                    \"Left\": 0.16351822018623352,\n                    \"Top\": 0.6760701537132263\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16351822018623352,\n                        \"Y\": 0.6760924458503723\n                    },\n                    {\n                        \"X\": 0.19978377223014832,\n                        \"Y\": 0.6760701537132263\n                    },\n                    {\n                        \"X\": 0.19978997111320496,\n                        \"Y\": 0.6845397353172302\n                    },\n                    {\n                        \"X\": 0.1635242998600006,\n                        \"Y\": 0.6845620274543762\n                    }\n                ]\n            },\n            \"Id\": \"2ed350a6-7b4c-4d04-b882-4197843491b0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96739959716797,\n            \"Text\": \"certain\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0422724224627018,\n                    \"Height\": 0.008355623111128807,\n                    \"Left\": 0.20288899540901184,\n                    \"Top\": 0.676217257976532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20288899540901184,\n                        \"Y\": 0.676243245601654\n                    },\n                    {\n                        \"X\": 0.24515517055988312,\n                        \"Y\": 0.676217257976532\n                    },\n                    {\n                        \"X\": 0.24516141414642334,\n                        \"Y\": 0.6845468878746033\n                    },\n                    {\n                        \"X\": 0.20289508998394012,\n                        \"Y\": 0.6845728754997253\n                    }\n                ]\n            },\n            \"Id\": \"f3caf714-1c07-4c7b-9b3f-07810d3b0e75\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95208740234375,\n            \"Text\": \"collectively\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06919709593057632,\n                    \"Height\": 0.01034307200461626,\n                    \"Left\": 0.10545242577791214,\n                    \"Top\": 0.6858083009719849\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10545242577791214,\n                        \"Y\": 0.6858507990837097\n                    },\n                    {\n                        \"X\": 0.17464208602905273,\n                        \"Y\": 0.6858083009719849\n                    },\n                    {\n                        \"X\": 0.17464952170848846,\n                        \"Y\": 0.696108877658844\n                    },\n                    {\n                        \"X\": 0.10545959323644638,\n                        \"Y\": 0.6961513757705688\n                    }\n                ]\n            },\n            \"Id\": \"abb14090-4147-4747-8ee5-e2481b10a36c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93423461914062,\n            \"Text\": \"bargained\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06172322854399681,\n                    \"Height\": 0.01021419558674097,\n                    \"Left\": 0.17741869390010834,\n                    \"Top\": 0.6858465671539307\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17741869390010834,\n                        \"Y\": 0.6858844757080078\n                    },\n                    {\n                        \"X\": 0.23913432657718658,\n                        \"Y\": 0.6858465671539307\n                    },\n                    {\n                        \"X\": 0.23914192616939545,\n                        \"Y\": 0.6960228085517883\n                    },\n                    {\n                        \"X\": 0.1774260550737381,\n                        \"Y\": 0.6960607171058655\n                    }\n                ]\n            },\n            \"Id\": \"fc82fa50-4f37-4779-852e-ba2ca6db479d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.57376098632812,\n            \"Text\": \"280.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05699460953474045,\n                    \"Height\": 0.011833512224256992,\n                    \"Left\": 0.37560856342315674,\n                    \"Top\": 0.6809096932411194\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37560856342315674,\n                        \"Y\": 0.6809447407722473\n                    },\n                    {\n                        \"X\": 0.4325934946537018,\n                        \"Y\": 0.6809096932411194\n                    },\n                    {\n                        \"X\": 0.4326031506061554,\n                        \"Y\": 0.6927081942558289\n                    },\n                    {\n                        \"X\": 0.37561798095703125,\n                        \"Y\": 0.6927432417869568\n                    }\n                ]\n            },\n            \"Id\": \"2739a1e2-7db9-4db9-b74e-c1e0f15455c1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.56198120117188,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010148853994905949,\n                    \"Height\": 0.0026419193018227816,\n                    \"Left\": 0.4476178288459778,\n                    \"Top\": 0.6830279231071472\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4476178288459778,\n                        \"Y\": 0.6830341815948486\n                    },\n                    {\n                        \"X\": 0.45776450634002686,\n                        \"Y\": 0.6830279231071472\n                    },\n                    {\n                        \"X\": 0.45776668190956116,\n                        \"Y\": 0.685663640499115\n                    },\n                    {\n                        \"X\": 0.4476200044155121,\n                        \"Y\": 0.6856698393821716\n                    }\n                ]\n            },\n            \"Id\": \"b3e6a291-c660-4ad9-bb84-b87ccff0effa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 89.1475601196289,\n            \"Text\": \"200.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05665505677461624,\n                    \"Height\": 0.012027198448777199,\n                    \"Left\": 0.5287208557128906,\n                    \"Top\": 0.6806973218917847\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5287208557128906,\n                        \"Y\": 0.6807321906089783\n                    },\n                    {\n                        \"X\": 0.585365355014801,\n                        \"Y\": 0.6806973218917847\n                    },\n                    {\n                        \"X\": 0.5853759050369263,\n                        \"Y\": 0.6926897764205933\n                    },\n                    {\n                        \"X\": 0.528731107711792,\n                        \"Y\": 0.6927245259284973\n                    }\n                ]\n            },\n            \"Id\": \"f2114e01-37f2-4b42-aef2-f0cd3b2c2efc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.82980346679688,\n            \"Text\": \"=\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009729930199682713,\n                    \"Height\": 0.004366033244878054,\n                    \"Left\": 0.601038932800293,\n                    \"Top\": 0.6823516488075256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.601038932800293,\n                        \"Y\": 0.682357668876648\n                    },\n                    {\n                        \"X\": 0.6107649803161621,\n                        \"Y\": 0.6823516488075256\n                    },\n                    {\n                        \"X\": 0.6107688546180725,\n                        \"Y\": 0.6867117285728455\n                    },\n                    {\n                        \"X\": 0.6010428071022034,\n                        \"Y\": 0.686717689037323\n                    }\n                ]\n            },\n            \"Id\": \"f2c3c58a-baa5-4edd-8d27-451c85afa2e8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 73.4174575805664,\n            \"Text\": \"80.00\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04911355674266815,\n                    \"Height\": 0.011708112433552742,\n                    \"Left\": 0.6893496513366699,\n                    \"Top\": 0.6807962656021118\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6893496513366699,\n                        \"Y\": 0.6808264851570129\n                    },\n                    {\n                        \"X\": 0.7384522557258606,\n                        \"Y\": 0.6807962656021118\n                    },\n                    {\n                        \"X\": 0.7384632229804993,\n                        \"Y\": 0.6924742460250854\n                    },\n                    {\n                        \"X\": 0.6893603801727295,\n                        \"Y\": 0.6925044059753418\n                    }\n                ]\n            },\n            \"Id\": \"cb18125d-6c1d-4207-9724-a3589939533a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71819305419922,\n            \"Text\": \"agreements\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07286908477544785,\n                    \"Height\": 0.010059596039354801,\n                    \"Left\": 0.10557099431753159,\n                    \"Top\": 0.696427583694458\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10557099431753159,\n                        \"Y\": 0.6964722871780396\n                    },\n                    {\n                        \"X\": 0.17843282222747803,\n                        \"Y\": 0.696427583694458\n                    },\n                    {\n                        \"X\": 0.17844007909297943,\n                        \"Y\": 0.7064424157142639\n                    },\n                    {\n                        \"X\": 0.10557796061038971,\n                        \"Y\": 0.7064871788024902\n                    }\n                ]\n            },\n            \"Id\": \"7b48abc2-224a-48f2-87a4-426555a58738\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7612075805664,\n            \"Text\": \"allocable\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05584096536040306,\n                    \"Height\": 0.008410097099840641,\n                    \"Left\": 0.18144243955612183,\n                    \"Top\": 0.6961185932159424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18144243955612183,\n                        \"Y\": 0.6961528658866882\n                    },\n                    {\n                        \"X\": 0.23727716505527496,\n                        \"Y\": 0.6961185932159424\n                    },\n                    {\n                        \"X\": 0.23728340864181519,\n                        \"Y\": 0.7044944167137146\n                    },\n                    {\n                        \"X\": 0.18144850432872772,\n                        \"Y\": 0.7045286893844604\n                    }\n                ]\n            },\n            \"Id\": \"6e95aaed-2fcc-4319-a617-87f6101b4ff7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95883178710938,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01305784285068512,\n                    \"Height\": 0.008020089939236641,\n                    \"Left\": 0.24012087285518646,\n                    \"Top\": 0.6963486671447754\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24012087285518646,\n                        \"Y\": 0.6963566541671753\n                    },\n                    {\n                        \"X\": 0.25317269563674927,\n                        \"Y\": 0.6963486671447754\n                    },\n                    {\n                        \"X\": 0.2531787157058716,\n                        \"Y\": 0.7043607234954834\n                    },\n                    {\n                        \"X\": 0.2401268631219864,\n                        \"Y\": 0.7043687105178833\n                    }\n                ]\n            },\n            \"Id\": \"6bb70176-5716-4ecf-862c-4438e748dfb1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93424987792969,\n            \"Text\": \"qualified\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05349304899573326,\n                    \"Height\": 0.009763741865754128,\n                    \"Left\": 0.10523952543735504,\n                    \"Top\": 0.7066716551780701\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10523952543735504,\n                        \"Y\": 0.7067044377326965\n                    },\n                    {\n                        \"X\": 0.15872560441493988,\n                        \"Y\": 0.7066716551780701\n                    },\n                    {\n                        \"X\": 0.1587325781583786,\n                        \"Y\": 0.716402530670166\n                    },\n                    {\n                        \"X\": 0.10524629801511765,\n                        \"Y\": 0.7164353728294373\n                    }\n                ]\n            },\n            \"Id\": \"e7ece973-7e1e-4289-8e28-cef7b360584b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92466735839844,\n            \"Text\": \"family\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03713670372962952,\n                    \"Height\": 0.010292799212038517,\n                    \"Left\": 0.16110214591026306,\n                    \"Top\": 0.7063114047050476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16110214591026306,\n                        \"Y\": 0.7063341736793518\n                    },\n                    {\n                        \"X\": 0.19823133945465088,\n                        \"Y\": 0.7063114047050476\n                    },\n                    {\n                        \"X\": 0.19823884963989258,\n                        \"Y\": 0.716581404209137\n                    },\n                    {\n                        \"X\": 0.16110950708389282,\n                        \"Y\": 0.7166041731834412\n                    }\n                ]\n            },\n            \"Id\": \"b0b93496-773b-40fb-a8c7-c76ae48a4181\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87876892089844,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03229488432407379,\n                    \"Height\": 0.008385923691093922,\n                    \"Left\": 0.20119549334049225,\n                    \"Top\": 0.7063524723052979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20119549334049225,\n                        \"Y\": 0.7063722610473633\n                    },\n                    {\n                        \"X\": 0.233484148979187,\n                        \"Y\": 0.7063524723052979\n                    },\n                    {\n                        \"X\": 0.23349037766456604,\n                        \"Y\": 0.7147185802459717\n                    },\n                    {\n                        \"X\": 0.20120161771774292,\n                        \"Y\": 0.7147383689880371\n                    }\n                ]\n            },\n            \"Id\": \"848bf3d9-bb6a-46d2-b05d-a8edb11ddcad\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95500183105469,\n            \"Text\": \"wages\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04068693891167641,\n                    \"Height\": 0.008396200835704803,\n                    \"Left\": 0.23616436123847961,\n                    \"Top\": 0.7079494595527649\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23616436123847961,\n                        \"Y\": 0.7079744338989258\n                    },\n                    {\n                        \"X\": 0.27684491872787476,\n                        \"Y\": 0.7079494595527649\n                    },\n                    {\n                        \"X\": 0.2768512964248657,\n                        \"Y\": 0.7163206934928894\n                    },\n                    {\n                        \"X\": 0.23617058992385864,\n                        \"Y\": 0.7163456678390503\n                    }\n                ]\n            },\n            \"Id\": \"48b42c4f-837f-431b-b16b-bf77d1941993\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97606658935547,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017979826778173447,\n                    \"Height\": 0.008185917511582375,\n                    \"Left\": 0.2799433767795563,\n                    \"Top\": 0.7064582109451294\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2799433767795563,\n                        \"Y\": 0.7064692378044128\n                    },\n                    {\n                        \"X\": 0.2979169189929962,\n                        \"Y\": 0.7064582109451294\n                    },\n                    {\n                        \"X\": 0.29792320728302,\n                        \"Y\": 0.714633047580719\n                    },\n                    {\n                        \"X\": 0.2799496054649353,\n                        \"Y\": 0.7146440744400024\n                    }\n                ]\n            },\n            \"Id\": \"9d512a0a-20e4-48d0-8697-0c82c5b2c1fd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87875366210938,\n            \"Text\": \"leave\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0320330485701561,\n                    \"Height\": 0.008233784697949886,\n                    \"Left\": 0.10548873245716095,\n                    \"Top\": 0.7164192199707031\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10548873245716095,\n                        \"Y\": 0.7164388298988342\n                    },\n                    {\n                        \"X\": 0.13751596212387085,\n                        \"Y\": 0.7164192199707031\n                    },\n                    {\n                        \"X\": 0.13752177357673645,\n                        \"Y\": 0.7246333360671997\n                    },\n                    {\n                        \"X\": 0.10549444705247879,\n                        \"Y\": 0.7246530055999756\n                    }\n                ]\n            },\n            \"Id\": \"8bce3b74-9f2b-4798-b112-1fa521dc1a92\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88633728027344,\n            \"Text\": \"taken\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03498576954007149,\n                    \"Height\": 0.008235604502260685,\n                    \"Left\": 0.14028581976890564,\n                    \"Top\": 0.7163063883781433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14028581976890564,\n                        \"Y\": 0.7163278460502625\n                    },\n                    {\n                        \"X\": 0.17526565492153168,\n                        \"Y\": 0.7163063883781433\n                    },\n                    {\n                        \"X\": 0.17527158558368683,\n                        \"Y\": 0.7245205640792847\n                    },\n                    {\n                        \"X\": 0.14029164612293243,\n                        \"Y\": 0.724541962146759\n                    }\n                ]\n            },\n            \"Id\": \"c2792e24-d0c2-4cd7-8547-618d4f9911ad\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92452239990234,\n            \"Text\": \"after\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029323596507310867,\n                    \"Height\": 0.008427457883954048,\n                    \"Left\": 0.17843542993068695,\n                    \"Top\": 0.7161197662353516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17843542993068695,\n                        \"Y\": 0.7161377668380737\n                    },\n                    {\n                        \"X\": 0.20775285363197327,\n                        \"Y\": 0.7161197662353516\n                    },\n                    {\n                        \"X\": 0.2077590376138687,\n                        \"Y\": 0.7245292663574219\n                    },\n                    {\n                        \"X\": 0.17844152450561523,\n                        \"Y\": 0.724547266960144\n                    }\n                ]\n            },\n            \"Id\": \"156c908e-5cb1-4bb9-8b6f-124a8beab890\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94111633300781,\n            \"Text\": \"March\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.038871798664331436,\n                    \"Height\": 0.00844183936715126,\n                    \"Left\": 0.21070407330989838,\n                    \"Top\": 0.7160834074020386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21070407330989838,\n                        \"Y\": 0.7161072492599487\n                    },\n                    {\n                        \"X\": 0.24956955015659332,\n                        \"Y\": 0.7160834074020386\n                    },\n                    {\n                        \"X\": 0.24957586824893951,\n                        \"Y\": 0.7245014309883118\n                    },\n                    {\n                        \"X\": 0.21071027219295502,\n                        \"Y\": 0.7245252728462219\n                    }\n                ]\n            },\n            \"Id\": \"8aa402d3-e9ef-4366-9100-59fdcacab8fa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.66064453125,\n            \"Text\": \"31,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.018444335088133812,\n                    \"Height\": 0.009556726552546024,\n                    \"Left\": 0.2530207335948944,\n                    \"Top\": 0.7161121964454651\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2530207335948944,\n                        \"Y\": 0.7161235213279724\n                    },\n                    {\n                        \"X\": 0.27145782113075256,\n                        \"Y\": 0.7161121964454651\n                    },\n                    {\n                        \"X\": 0.2714650630950928,\n                        \"Y\": 0.72565758228302\n                    },\n                    {\n                        \"X\": 0.25302791595458984,\n                        \"Y\": 0.7256689071655273\n                    }\n                ]\n            },\n            \"Id\": \"eb4b0f12-fba2-4e44-ace5-13d13fdac7b3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92784118652344,\n            \"Text\": \"2021\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027703365311026573,\n                    \"Height\": 0.00829336978495121,\n                    \"Left\": 0.2746957838535309,\n                    \"Top\": 0.7161865830421448\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2746957838535309,\n                        \"Y\": 0.7162035703659058\n                    },\n                    {\n                        \"X\": 0.30239278078079224,\n                        \"Y\": 0.7161865830421448\n                    },\n                    {\n                        \"X\": 0.3023991584777832,\n                        \"Y\": 0.7244629859924316\n                    },\n                    {\n                        \"X\": 0.2747020721435547,\n                        \"Y\": 0.7244799137115479\n                    }\n                ]\n            },\n            \"Id\": \"663a4690-b7ea-45e4-adf0-72c1824b1380\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72818756103516,\n            \"Text\": \"(Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03320666030049324,\n                    \"Height\": 0.010469898581504822,\n                    \"Left\": 0.10563378036022186,\n                    \"Top\": 0.7263456583023071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10563378036022186,\n                        \"Y\": 0.7263660430908203\n                    },\n                    {\n                        \"X\": 0.13883303105831146,\n                        \"Y\": 0.7263456583023071\n                    },\n                    {\n                        \"X\": 0.1388404369354248,\n                        \"Y\": 0.7367952466011047\n                    },\n                    {\n                        \"X\": 0.10564105212688446,\n                        \"Y\": 0.7368155717849731\n                    }\n                ]\n            },\n            \"Id\": \"f89799ba-4352-416c-9c74-0d78e049dcac\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81958770751953,\n            \"Text\": \"941\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020301809534430504,\n                    \"Height\": 0.008517631329596043,\n                    \"Left\": 0.14197209477424622,\n                    \"Top\": 0.7263877391815186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14197209477424622,\n                        \"Y\": 0.7264001965522766\n                    },\n                    {\n                        \"X\": 0.162267804145813,\n                        \"Y\": 0.7263877391815186\n                    },\n                    {\n                        \"X\": 0.16227389872074127,\n                        \"Y\": 0.7348929047584534\n                    },\n                    {\n                        \"X\": 0.14197812974452972,\n                        \"Y\": 0.7349053621292114\n                    }\n                ]\n            },\n            \"Id\": \"ff32e496-5adb-4367-866c-b8bd5fc2bb62\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91123962402344,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.012266265228390694,\n                    \"Height\": 0.006732573267072439,\n                    \"Left\": 0.16737431287765503,\n                    \"Top\": 0.7280492782592773\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16737431287765503,\n                        \"Y\": 0.728056788444519\n                    },\n                    {\n                        \"X\": 0.17963570356369019,\n                        \"Y\": 0.7280492782592773\n                    },\n                    {\n                        \"X\": 0.17964057624340057,\n                        \"Y\": 0.7347743511199951\n                    },\n                    {\n                        \"X\": 0.16737914085388184,\n                        \"Y\": 0.7347818613052368\n                    }\n                ]\n            },\n            \"Id\": \"a0012923-fef1-432f-85fc-4994c2c1f96d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.35807800292969,\n            \"Text\": \"941-SS,\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.045905303210020065,\n                    \"Height\": 0.009735087864100933,\n                    \"Left\": 0.18266518414020538,\n                    \"Top\": 0.7263838648796082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18266518414020538,\n                        \"Y\": 0.7264119982719421\n                    },\n                    {\n                        \"X\": 0.22856327891349792,\n                        \"Y\": 0.7263838648796082\n                    },\n                    {\n                        \"X\": 0.22857049107551575,\n                        \"Y\": 0.7360908389091492\n                    },\n                    {\n                        \"X\": 0.18267221748828888,\n                        \"Y\": 0.7361189723014832\n                    }\n                ]\n            },\n            \"Id\": \"1cdf6221-e301-4b82-9b07-dde3d3d06404\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76122283935547,\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019758835434913635,\n                    \"Height\": 0.008349328301846981,\n                    \"Left\": 0.23258964717388153,\n                    \"Top\": 0.7264528274536133\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23258964717388153,\n                        \"Y\": 0.7264649271965027\n                    },\n                    {\n                        \"X\": 0.25234222412109375,\n                        \"Y\": 0.7264528274536133\n                    },\n                    {\n                        \"X\": 0.25234848260879517,\n                        \"Y\": 0.734790027141571\n                    },\n                    {\n                        \"X\": 0.23259584605693817,\n                        \"Y\": 0.7348021268844604\n                    }\n                ]\n            },\n            \"Id\": \"e28ba636-7b05-45a7-9fd1-4222b2dbdea8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57870483398438,\n            \"Text\": \"28)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017935391515493393,\n                    \"Height\": 0.010323026217520237,\n                    \"Left\": 0.25588729977607727,\n                    \"Top\": 0.7265910506248474\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25588729977607727,\n                        \"Y\": 0.7266020774841309\n                    },\n                    {\n                        \"X\": 0.273814857006073,\n                        \"Y\": 0.7265910506248474\n                    },\n                    {\n                        \"X\": 0.27382269501686096,\n                        \"Y\": 0.7369031310081482\n                    },\n                    {\n                        \"X\": 0.25589507818222046,\n                        \"Y\": 0.7369140982627869\n                    }\n                ]\n            },\n            \"Id\": \"af85462e-a1c6-4c6f-9c2a-12760c26ce20\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.19245147705078,\n            \"Text\": \"Next\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02828747220337391,\n                    \"Height\": 0.01026951801031828,\n                    \"Left\": 0.8857768177986145,\n                    \"Top\": 0.7435584664344788\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8857768177986145,\n                        \"Y\": 0.7435757517814636\n                    },\n                    {\n                        \"X\": 0.9140539765357971,\n                        \"Y\": 0.7435584664344788\n                    },\n                    {\n                        \"X\": 0.9140642881393433,\n                        \"Y\": 0.7538106441497803\n                    },\n                    {\n                        \"X\": 0.8857869505882263,\n                        \"Y\": 0.7538279891014099\n                    }\n                ]\n            },\n            \"Id\": \"5af7d355-5086-4a82-bf6b-fc700cc5bcd8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92749786376953,\n            \"Text\": \"Page\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026468360796570778,\n                    \"Height\": 0.009357515722513199,\n                    \"Left\": 0.05860334634780884,\n                    \"Top\": 0.761709451675415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05860334634780884,\n                        \"Y\": 0.761725664138794\n                    },\n                    {\n                        \"X\": 0.08506528288125992,\n                        \"Y\": 0.761709451675415\n                    },\n                    {\n                        \"X\": 0.08507170528173447,\n                        \"Y\": 0.7710508108139038\n                    },\n                    {\n                        \"X\": 0.05860968306660652,\n                        \"Y\": 0.7710669636726379\n                    }\n                ]\n            },\n            \"Id\": \"47566f7d-6f59-42e3-ac25-84fd72024911\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9289779663086,\n            \"Text\": \"4\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.010393857024610043,\n                    \"Height\": 0.010170352645218372,\n                    \"Left\": 0.08771078288555145,\n                    \"Top\": 0.7591003179550171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08771078288555145,\n                        \"Y\": 0.7591066956520081\n                    },\n                    {\n                        \"X\": 0.09809760004281998,\n                        \"Y\": 0.7591003179550171\n                    },\n                    {\n                        \"X\": 0.09810464084148407,\n                        \"Y\": 0.7692643404006958\n                    },\n                    {\n                        \"X\": 0.08771779388189316,\n                        \"Y\": 0.7692707180976868\n                    }\n                ]\n            },\n            \"Id\": \"bedcf074-57be-4248-b5f0-0fa56e6ab8e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91353607177734,\n            \"Text\": \"Form\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026771502569317818,\n                    \"Height\": 0.007686253637075424,\n                    \"Left\": 0.7950714826583862,\n                    \"Top\": 0.7615756988525391\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7950714826583862,\n                        \"Y\": 0.7615920305252075\n                    },\n                    {\n                        \"X\": 0.8218355774879456,\n                        \"Y\": 0.7615756988525391\n                    },\n                    {\n                        \"X\": 0.8218429684638977,\n                        \"Y\": 0.7692455649375916\n                    },\n                    {\n                        \"X\": 0.7950788140296936,\n                        \"Y\": 0.7692619562149048\n                    }\n                ]\n            },\n            \"Id\": \"6dd4dab7-69c9-4ca8-96a3-d4d681c47e0f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6680908203125,\n            \"Text\": \"941-X\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04556391015648842,\n                    \"Height\": 0.01035858504474163,\n                    \"Left\": 0.8245484828948975,\n                    \"Top\": 0.7589908242225647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8245484828948975,\n                        \"Y\": 0.7590187191963196\n                    },\n                    {\n                        \"X\": 0.8701022267341614,\n                        \"Y\": 0.7589908242225647\n                    },\n                    {\n                        \"X\": 0.8701123595237732,\n                        \"Y\": 0.7693215608596802\n                    },\n                    {\n                        \"X\": 0.8245584964752197,\n                        \"Y\": 0.7693493962287903\n                    }\n                ]\n            },\n            \"Id\": \"cc62f52d-0ea9-4375-85fd-40e62a55b654\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.13298797607422,\n            \"Text\": \"(Rev.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025568470358848572,\n                    \"Height\": 0.009238241240382195,\n                    \"Left\": 0.8729643821716309,\n                    \"Top\": 0.7615669369697571\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8729643821716309,\n                        \"Y\": 0.761582612991333\n                    },\n                    {\n                        \"X\": 0.8985236287117004,\n                        \"Y\": 0.7615669369697571\n                    },\n                    {\n                        \"X\": 0.8985328674316406,\n                        \"Y\": 0.7707895636558533\n                    },\n                    {\n                        \"X\": 0.8729735016822815,\n                        \"Y\": 0.7708051800727844\n                    }\n                ]\n            },\n            \"Id\": \"9cb5a08d-7d93-41ba-9f4b-e7e7946c9bbb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83883666992188,\n            \"Text\": \"7-2021)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03987228497862816,\n                    \"Height\": 0.009732434526085854,\n                    \"Left\": 0.9014844298362732,\n                    \"Top\": 0.7613953948020935\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9014844298362732,\n                        \"Y\": 0.7614198327064514\n                    },\n                    {\n                        \"X\": 0.9413468837738037,\n                        \"Y\": 0.7613953948020935\n                    },\n                    {\n                        \"X\": 0.9413567185401917,\n                        \"Y\": 0.7711035013198853\n                    },\n                    {\n                        \"X\": 0.9014940857887268,\n                        \"Y\": 0.7711278796195984\n                    }\n                ]\n            },\n            \"Id\": \"2b42a364-cc98-4e86-bdce-7721a7a8202d\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 98.291015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8859681487083435,\n                    \"Height\": 0.04649852216243744,\n                    \"Left\": 0.057264722883701324,\n                    \"Top\": 0.04406261444091797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.057264722883701324,\n                        \"Y\": 0.04462689533829689\n                    },\n                    {\n                        \"X\": 0.9431862831115723,\n                        \"Y\": 0.04406261444091797\n                    },\n                    {\n                        \"X\": 0.9432328939437866,\n                        \"Y\": 0.0899982750415802\n                    },\n                    {\n                        \"X\": 0.05729585513472557,\n                        \"Y\": 0.09056113660335541\n                    }\n                ]\n            },\n            \"Id\": \"3ec0adf1-29a5-45c5-9dea-25fb61da3a57\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"50938023-57fa-4536-9582-6f5734ae3892\",\n                        \"a9bbe478-3bd4-41a0-a019-b4de62da6263\",\n                        \"e587cb51-b174-4cd9-a2cd-e129bfe35296\",\n                        \"17449642-1760-4dde-a718-a846529c9923\",\n                        \"3995d384-f556-4c0f-8f5f-67a8b378c1f0\",\n                        \"b263f3b1-6627-44b1-94a6-92d81d9d33f9\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 79.8828125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.44830504059791565,\n                    \"Height\": 0.016849404200911522,\n                    \"Left\": 0.057264722883701324,\n                    \"Top\": 0.04434135928750038\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.057264722883701324,\n                        \"Y\": 0.04462689533829689\n                    },\n                    {\n                        \"X\": 0.5055556893348694,\n                        \"Y\": 0.04434135928750038\n                    },\n                    {\n                        \"X\": 0.5055697560310364,\n                        \"Y\": 0.060905490070581436\n                    },\n                    {\n                        \"X\": 0.05727594718337059,\n                        \"Y\": 0.06119076535105705\n                    }\n                ]\n            },\n            \"Id\": \"50938023-57fa-4536-9582-6f5734ae3892\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0080e252-7e54-4d22-bf95-4f8e25cd0fd5\",\n                        \"fd02b1c0-d36b-4f08-b2ca-a7f44a748238\",\n                        \"0dbd7328-9c09-4b92-9494-d08ce8201b98\",\n                        \"72809027-24bd-4f5a-af51-31dfd56b1e56\",\n                        \"cdd74d8f-b9ab-43ff-8226-42bdc2ba75ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.220703125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.24722738564014435,\n                    \"Height\": 0.016721587628126144,\n                    \"Left\": 0.5055556893348694,\n                    \"Top\": 0.04418390244245529\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5055556893348694,\n                        \"Y\": 0.04434135928750038\n                    },\n                    {\n                        \"X\": 0.7527675032615662,\n                        \"Y\": 0.04418390244245529\n                    },\n                    {\n                        \"X\": 0.7527831196784973,\n                        \"Y\": 0.06074817106127739\n                    },\n                    {\n                        \"X\": 0.5055697560310364,\n                        \"Y\": 0.060905490070581436\n                    }\n                ]\n            },\n            \"Id\": \"a9bbe478-3bd4-41a0-a019-b4de62da6263\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"37573b9a-1fee-49ba-9547-78abb55ecdff\",\n                        \"36e16691-d79c-4e3f-bc3f-073e2fdcbe92\",\n                        \"119480b2-4f88-4435-a754-564ed50634de\",\n                        \"f06a23ab-6dcd-4298-905f-2c050ea9be92\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.904296875,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19043558835983276,\n                    \"Height\": 0.01668555662035942,\n                    \"Left\": 0.7527675032615662,\n                    \"Top\": 0.04406261444091797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7527675032615662,\n                        \"Y\": 0.04418390244245529\n                    },\n                    {\n                        \"X\": 0.9431862831115723,\n                        \"Y\": 0.04406261444091797\n                    },\n                    {\n                        \"X\": 0.9432030916213989,\n                        \"Y\": 0.06062699854373932\n                    },\n                    {\n                        \"X\": 0.7527831196784973,\n                        \"Y\": 0.06074817106127739\n                    }\n                ]\n            },\n            \"Id\": \"e587cb51-b174-4cd9-a2cd-e129bfe35296\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a147316a-bdfa-40f1-bd73-6e9e96fa47c9\",\n                        \"cd7b5301-6863-42d2-a6c8-e04ced210224\",\n                        \"8dae914c-66e5-49dc-9c1c-479c08f85354\",\n                        \"3e3a4294-f5cc-409d-abf4-9d456a40794e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.8671875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4483187198638916,\n                    \"Height\": 0.02965565025806427,\n                    \"Left\": 0.05727594718337059,\n                    \"Top\": 0.060905490070581436\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05727594718337059,\n                        \"Y\": 0.06119076535105705\n                    },\n                    {\n                        \"X\": 0.5055697560310364,\n                        \"Y\": 0.060905490070581436\n                    },\n                    {\n                        \"X\": 0.5055946707725525,\n                        \"Y\": 0.0902763232588768\n                    },\n                    {\n                        \"X\": 0.05729585513472557,\n                        \"Y\": 0.09056113660335541\n                    }\n                ]\n            },\n            \"Id\": \"17449642-1760-4dde-a718-a846529c9923\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7a50b29b-9ad4-4cee-bb9f-bcc99dfa1630\",\n                        \"9440e001-ebf8-4567-b2a0-9581ff9178b4\",\n                        \"54431908-401e-4edd-aad8-b1dac54b5856\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 60.9375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.24724100530147552,\n                    \"Height\": 0.029528148472309113,\n                    \"Left\": 0.5055697560310364,\n                    \"Top\": 0.06074817106127739\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5055697560310364,\n                        \"Y\": 0.060905490070581436\n                    },\n                    {\n                        \"X\": 0.7527831196784973,\n                        \"Y\": 0.06074817106127739\n                    },\n                    {\n                        \"X\": 0.7528107762336731,\n                        \"Y\": 0.09011925756931305\n                    },\n                    {\n                        \"X\": 0.5055946707725525,\n                        \"Y\": 0.0902763232588768\n                    }\n                ]\n            },\n            \"Id\": \"3995d384-f556-4c0f-8f5f-67a8b378c1f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ee6eebca-06c3-4dce-87e4-68707f518185\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.474609375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1904497593641281,\n                    \"Height\": 0.02949226088821888,\n                    \"Left\": 0.7527831196784973,\n                    \"Top\": 0.06062699854373932\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7527831196784973,\n                        \"Y\": 0.06074817106127739\n                    },\n                    {\n                        \"X\": 0.9432030916213989,\n                        \"Y\": 0.06062699854373932\n                    },\n                    {\n                        \"X\": 0.9432328939437866,\n                        \"Y\": 0.0899982750415802\n                    },\n                    {\n                        \"X\": 0.7528107762336731,\n                        \"Y\": 0.09011925756931305\n                    }\n                ]\n            },\n            \"Id\": \"b263f3b1-6627-44b1-94a6-92d81d9d33f9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"021f3e95-8476-498c-9c80-bbaf509f8799\",\n                        \"540d4c6f-db59-4271-a26f-5fbdb769c8af\",\n                        \"285dda18-3b32-4ec3-8adb-2e378eb81e13\",\n                        \"727da63f-45fe-4337-8610-0e7f0365a9fb\",\n                        \"025ee5f0-0a61-4e37-a0e3-244a4844feeb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.755859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6865562200546265,\n                    \"Height\": 0.6284528374671936,\n                    \"Left\": 0.056994762271642685,\n                    \"Top\": 0.10759346187114716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.056994762271642685,\n                        \"Y\": 0.10802885890007019\n                    },\n                    {\n                        \"X\": 0.7429619431495667,\n                        \"Y\": 0.10759346187114716\n                    },\n                    {\n                        \"X\": 0.7435509562492371,\n                        \"Y\": 0.7356259226799011\n                    },\n                    {\n                        \"X\": 0.05742036551237106,\n                        \"Y\": 0.736046314239502\n                    }\n                ]\n            },\n            \"Id\": \"167fe7a8-cb3f-41fb-98bf-af26b59320ed\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fa2ef28f-e4c1-43a6-a33b-49ff7adc8b35\",\n                        \"2531f20e-26c4-4d62-8609-9b32998a4da2\",\n                        \"56722d2b-efe4-454d-a889-55597b3ef583\",\n                        \"2bf63071-5e66-4be7-9d89-0d2a1f3ceb9e\",\n                        \"69927c99-a3b1-46ce-bb87-8e9490be4527\",\n                        \"c2c94b1b-54c3-458e-ba95-83fc637ecac1\",\n                        \"2675de89-2657-4150-86a7-7f9f39e6d7bd\",\n                        \"3282defb-b8c5-4caf-a2b3-9b8406fe625b\",\n                        \"f81600a6-c3c9-4a69-89e0-e0e8194c9025\",\n                        \"f95fd99f-fea7-4185-bab3-83850b9b7a24\",\n                        \"48e52744-7354-4c48-af4c-a5088873a007\",\n                        \"76d33a07-5580-47fe-a537-29938f030e78\",\n                        \"2c0dc7f9-6549-4d27-aaf8-c3836c447861\",\n                        \"d36c8a9e-9a37-4501-9e42-c868b81b8d1a\",\n                        \"c5b0385d-3232-464c-9907-7ac5291bc9cd\",\n                        \"b2b11938-9111-442e-b0df-6c1607aa0aa0\",\n                        \"a41d54d7-11f8-4d5f-8e54-2f7e71a8ca5a\",\n                        \"43e32d61-0163-4804-84bd-30b604d71555\",\n                        \"2dc0273d-6bd5-4e47-af35-d44dd260f8b1\",\n                        \"a39712b0-b464-4825-ae02-3b81a1c6b6d3\",\n                        \"9fec3c0c-381a-4f97-9c55-0c4b6655715a\",\n                        \"32a65f8b-d245-422f-90e4-f4118c7f8925\",\n                        \"58817ee0-86cd-48af-841f-246e90573540\",\n                        \"00b55eb1-ad43-4659-b9ac-14a98531b3d5\",\n                        \"a8c0eec7-b4cb-44b7-9954-261e1d5d76f9\",\n                        \"44f85b1e-17c7-47ac-ab27-d1ff565b3c5b\",\n                        \"91ed9f32-926c-411e-b7b4-291fd605825b\",\n                        \"b902fd1c-c8dd-47c3-8da6-817b9ec6e300\",\n                        \"13e2838b-3489-4b55-967d-efd04863428f\",\n                        \"0495c9c1-91ae-4ebc-9394-76fac935fb49\",\n                        \"f91325ca-2a47-4e74-8cfb-f42618e0f0ae\",\n                        \"ce296e49-018a-4061-a236-8a0e71c39a02\",\n                        \"f9399a0b-3e2b-4cd6-a166-309cd78de14a\",\n                        \"e2957279-e921-4d13-8a61-8bec3f89d3e7\",\n                        \"3b483657-620c-46be-82d0-fa5c1a684449\",\n                        \"1d198f6e-2c9d-42d8-a46b-9781aa8757e3\",\n                        \"95190485-e3b5-4c86-a61e-4dea069f9be2\",\n                        \"4f5e5734-dc40-4851-adf6-d64bb21d0120\",\n                        \"1d16431b-fcb0-4f38-b4ca-e631b5b130b8\",\n                        \"e95017f3-1db9-483c-be59-531997b8330a\",\n                        \"50c17152-090e-408d-9112-3b429dc1c269\",\n                        \"b68d4698-db91-499b-9f30-9a28461811f9\",\n                        \"eb5c7896-7204-4781-ba4e-7ad733fd987c\",\n                        \"2f17c32b-4991-43f9-88e6-62edecbdc793\",\n                        \"9791ae08-f5b0-4aef-b33e-c88a8e814f06\",\n                        \"63de62fd-d607-40c1-9e41-b7428f56a100\",\n                        \"2bfeaf73-3d99-472e-9af6-5610867ca68c\",\n                        \"e049f261-81ac-4984-8318-7d5c6d34655a\",\n                        \"26b88649-8c31-4ffe-892d-fe5dd859f55a\",\n                        \"efbb3a5f-6cd0-4468-9ad5-e5f34c0bb7be\",\n                        \"fb016e36-b069-4af6-b06a-cb533ea06191\",\n                        \"775a904f-bf4c-49ef-ad87-4317d51baf03\",\n                        \"e2c15c3e-4a1b-4d73-bfb9-f18f3b6a58bc\",\n                        \"97ef444c-5be8-4ef5-a881-e96758a408e3\",\n                        \"14029c09-036f-4e5a-bd16-8b3bc27f7549\",\n                        \"c21e12f9-d826-4e41-af49-f07833a94175\",\n                        \"5271cf48-3ba5-4928-8c07-517e9575dd73\",\n                        \"d624ed1f-06e1-4222-8a3d-2752d58f29a1\",\n                        \"effa1196-788e-411b-8693-facff29e82fd\",\n                        \"dc7bd643-d3da-4613-ad36-cf6c50050920\",\n                        \"99750b47-3517-4d94-8e12-af235361fea1\",\n                        \"bedcc421-7954-45a2-8ed0-c2720e42b6c5\",\n                        \"641b3a9e-048d-4360-998b-5428c7b0e7eb\",\n                        \"d806cd09-efd8-4b22-b09a-307036658e8d\",\n                        \"08afb62d-2301-4284-82f4-b03bee8d0980\",\n                        \"f68743ba-a440-4c88-9e0a-afcff11f2835\",\n                        \"0ebb1cdd-07d1-490e-aff2-15fd12b80516\",\n                        \"bce9eedd-16f3-4cfd-805b-887496c926b6\",\n                        \"b3450900-4797-4d7e-b686-7c19c2402074\",\n                        \"0e1c8bb1-28bc-4bc5-98d3-0ea536a53733\",\n                        \"7e5dcda2-ea64-4886-9929-19c7b5ce58b2\",\n                        \"7d6d1910-82ef-4452-b7a2-12658a738543\",\n                        \"c6307354-d831-4645-99a6-853f40fb433c\",\n                        \"6d7e62ad-4501-4227-bdb4-b0f316ebf684\",\n                        \"5c1904fb-f602-4355-8ad7-9de46777d193\",\n                        \"f271738e-0b08-4ef1-9557-1f6fd665c2d6\",\n                        \"432cd068-7bd5-4981-bcbe-6cbc9ead9e67\",\n                        \"88e7b093-81a3-45db-b740-b812270162c8\",\n                        \"e4d4f396-c733-4656-b871-28476d8652af\",\n                        \"99decca7-ca80-4b2e-b6d0-4eabf07ba05c\",\n                        \"1a69e5b6-87b9-445b-ad83-4366956469df\",\n                        \"dab4a3de-137b-4ca3-a020-d341114ad079\",\n                        \"da14d82c-5116-4e71-a095-2e41844a7a4d\",\n                        \"ffa0a23c-07e5-4b6e-beb4-25657ae219b4\",\n                        \"a5871df0-ed24-48dc-995e-d54e269694a8\",\n                        \"214871d7-3cb6-4e46-91fe-439a411b166a\",\n                        \"71cac3fd-120c-4d73-b5ae-39f28d367691\",\n                        \"3be6797f-a7fb-4207-ba5c-4b7e6b415b4b\",\n                        \"b120503b-215a-442a-83ef-1bdca87eebca\",\n                        \"b3d76f3a-c922-4436-bacd-283f1651d014\",\n                        \"4d5884a2-0189-478f-aee0-8196c1967e46\",\n                        \"e633056e-3406-44a8-800c-67f5579f513b\",\n                        \"9a3324ab-9546-413f-b4b4-24be3d7602f7\",\n                        \"4971f758-8295-485a-90fa-7ed60d6e79d7\",\n                        \"56910bdd-3253-4cb1-8a40-da1afff03892\",\n                        \"4fd420d1-3304-4035-9eec-ea0cbba566d5\",\n                        \"a5608627-bb8f-4fdf-b76f-e437103f199e\",\n                        \"a2c4b12a-203c-446b-b869-ce95b976b5fd\"\n                    ]\n                },\n                {\n                    \"Type\": \"MERGED_CELL\",\n                    \"Ids\": [\n                        \"2fea3f5f-1692-45db-b3b5-9baca81abd4e\",\n                        \"743de05a-83e9-4ef5-93d2-62c8270f0fef\",\n                        \"89ac572f-227d-4834-bcbe-1b0c63643fca\",\n                        \"d640e47b-cb35-4107-92b3-093266fd693c\",\n                        \"fb33d156-5083-45a1-9fa3-bf53ee65df53\",\n                        \"ed406cde-6cc3-4fb8-a080-096f61efb73c\",\n                        \"70d5eb86-a9b9-4033-a6af-806a271d1f80\",\n                        \"c4249cf8-10ea-4cbd-93da-024ec627daa4\",\n                        \"8109957a-3f54-4f41-a611-7882bec8c27a\",\n                        \"2bfcd877-baf9-487f-a07a-60c3d7addcd1\"\n                    ]\n                },\n                {\n                    \"Type\": \"TITLE\",\n                    \"Ids\": [\n                        \"2864ad89-5414-4a85-b81f-da68cd770246\"\n                    ]\n                },\n                {\n                    \"Type\": \"FOOTER\",\n                    \"Ids\": [\n                        \"9961a6a9-f770-4f54-9a82-f0680ca8b932\",\n                        \"3eb7f848-f8dc-483f-b9ca-b58acb2b1ec6\",\n                        \"8981e015-7ee6-4536-8efe-7af0142ed5f5\",\n                        \"18b11a1e-5341-4458-a9d3-4bc5f6dbba6a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"STRUCTURED\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 62.6953125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036640241742134094,\n                    \"Height\": 0.06594808399677277,\n                    \"Left\": 0.056994762271642685,\n                    \"Top\": 0.10800563544034958\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.056994762271642685,\n                        \"Y\": 0.10802885890007019\n                    },\n                    {\n                        \"X\": 0.0935894101858139,\n                        \"Y\": 0.10800563544034958\n                    },\n                    {\n                        \"X\": 0.09363500773906708,\n                        \"Y\": 0.1739305704832077\n                    },\n                    {\n                        \"X\": 0.05703943967819214,\n                        \"Y\": 0.17395371198654175\n                    }\n                ]\n            },\n            \"Id\": \"fa2ef28f-e4c1-43a6-a33b-49ff7adc8b35\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.359375,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22371773421764374,\n                    \"Height\": 0.06606690585613251,\n                    \"Left\": 0.0935894101858139,\n                    \"Top\": 0.10786367207765579\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0935894101858139,\n                        \"Y\": 0.10800563544034958\n                    },\n                    {\n                        \"X\": 0.31725597381591797,\n                        \"Y\": 0.10786367207765579\n                    },\n                    {\n                        \"X\": 0.31730714440345764,\n                        \"Y\": 0.1737891137599945\n                    },\n                    {\n                        \"X\": 0.09363500773906708,\n                        \"Y\": 0.1739305704832077\n                    }\n                ]\n            },\n            \"Id\": \"2531f20e-26c4-4d62-8609-9b32998a4da2\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.4765625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11777477711439133,\n                    \"Height\": 0.06600017100572586,\n                    \"Left\": 0.31725597381591797,\n                    \"Top\": 0.10778895020484924\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31725597381591797,\n                        \"Y\": 0.10786367207765579\n                    },\n                    {\n                        \"X\": 0.43497660756111145,\n                        \"Y\": 0.10778895020484924\n                    },\n                    {\n                        \"X\": 0.4350307285785675,\n                        \"Y\": 0.17371466755867004\n                    },\n                    {\n                        \"X\": 0.31730714440345764,\n                        \"Y\": 0.1737891137599945\n                    }\n                ]\n            },\n            \"Id\": \"56722d2b-efe4-454d-a889-55597b3ef583\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3a5adf15-9d47-4c8b-b769-fccca100124f\",\n                        \"5701dec9-a164-4a86-b80b-7e12a6030a62\",\n                        \"3c9d6dd2-34c3-415a-bec4-3f97692422d5\",\n                        \"daa50c3a-8784-4333-9ef7-f49965464e43\",\n                        \"40a3f8ce-8b80-406d-98c3-d31489ae4827\",\n                        \"2f3b5b62-5018-4e96-9ff4-1f614af721e6\",\n                        \"a3b96c9e-b36d-4f84-9567-2f69d40ed843\",\n                        \"78c73fda-b6a8-4eee-afd4-64801d1fc0a8\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.57421875,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03458656743168831,\n                    \"Height\": 0.06594763696193695,\n                    \"Left\": 0.43497660756111145,\n                    \"Top\": 0.1077670305967331\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43497660756111145,\n                        \"Y\": 0.10778895020484924\n                    },\n                    {\n                        \"X\": 0.46950817108154297,\n                        \"Y\": 0.1077670305967331\n                    },\n                    {\n                        \"X\": 0.46956318616867065,\n                        \"Y\": 0.17369283735752106\n                    },\n                    {\n                        \"X\": 0.4350307285785675,\n                        \"Y\": 0.17371466755867004\n                    }\n                ]\n            },\n            \"Id\": \"2bf63071-5e66-4be7-9d89-0d2a1f3ceb9e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f28a8ee7-15e2-43c8-8c57-963ece1e0bb5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.310546875,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.118564672768116,\n                    \"Height\": 0.06600102037191391,\n                    \"Left\": 0.46950817108154297,\n                    \"Top\": 0.10769180953502655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46950817108154297,\n                        \"Y\": 0.1077670305967331\n                    },\n                    {\n                        \"X\": 0.5880149006843567,\n                        \"Y\": 0.10769180953502655\n                    },\n                    {\n                        \"X\": 0.5880728363990784,\n                        \"Y\": 0.173617884516716\n                    },\n                    {\n                        \"X\": 0.46956318616867065,\n                        \"Y\": 0.17369283735752106\n                    }\n                ]\n            },\n            \"Id\": \"69927c99-a3b1-46ce-bb87-8e9490be4527\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"955e3376-2cdd-42d4-9876-fbcd5ff5a8e4\",\n                        \"4aa2f917-2533-4a61-bf61-59c76e0a0350\",\n                        \"a40b660a-7d69-47a2-ab2a-b98d6c48b8ad\",\n                        \"9c7fe81b-36a0-46ed-b965-bc9c07eb264e\",\n                        \"58160441-61c4-4830-854f-c00fa15a57e5\",\n                        \"21ec8bbb-76dc-49c8-aad4-8b979a4b1a19\",\n                        \"a0ff1d52-0f2e-48c6-bc7e-b3bda368bc67\",\n                        \"e7a5ec70-52e2-42ef-bf9b-303055182a5d\",\n                        \"8cc2c5b9-8d1e-4930-8ad1-24b9806b270d\",\n                        \"8c345b09-a9d2-4b01-a23e-9387ff6aca51\",\n                        \"501c8822-b32b-4a29-a44e-d1d535f9b4a2\",\n                        \"0b1f0639-81c6-495a-8998-6b27cd03edbd\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 70.556640625,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035375598818063736,\n                    \"Height\": 0.065948486328125,\n                    \"Left\": 0.5880149006843567,\n                    \"Top\": 0.107669398188591\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5880149006843567,\n                        \"Y\": 0.10769180953502655\n                    },\n                    {\n                        \"X\": 0.6233316659927368,\n                        \"Y\": 0.107669398188591\n                    },\n                    {\n                        \"X\": 0.6233904957771301,\n                        \"Y\": 0.17359554767608643\n                    },\n                    {\n                        \"X\": 0.5880728363990784,\n                        \"Y\": 0.173617884516716\n                    }\n                ]\n            },\n            \"Id\": \"c2c94b1b-54c3-458e-ba95-83fc637ecac1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2e80a18f-83ff-4786-ae45-a952be3f83ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.408203125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1196921169757843,\n                    \"Height\": 0.06600208580493927,\n                    \"Left\": 0.6233316659927368,\n                    \"Top\": 0.10759346187114716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6233316659927368,\n                        \"Y\": 0.107669398188591\n                    },\n                    {\n                        \"X\": 0.7429619431495667,\n                        \"Y\": 0.10759346187114716\n                    },\n                    {\n                        \"X\": 0.7430238127708435,\n                        \"Y\": 0.17351989448070526\n                    },\n                    {\n                        \"X\": 0.6233904957771301,\n                        \"Y\": 0.17359554767608643\n                    }\n                ]\n            },\n            \"Id\": \"2675de89-2657-4150-86a7-7f9f39e6d7bd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"21596cad-317e-4a6b-9ea9-fbdaf20d6f15\",\n                        \"48cf4ea8-7c32-4ba3-b870-6741068f8a2f\",\n                        \"45b834ab-9921-457e-b81e-151c534c191e\",\n                        \"9d9da5d5-f87e-4db9-b0c2-a6d123f4fbed\",\n                        \"6472b3bb-a327-494e-ab66-3c5a06d84adb\",\n                        \"de97ea75-326a-43ad-9df1-7ff2381dd324\",\n                        \"73a22328-76d5-4716-bbed-bb8176d69c2f\",\n                        \"f6915eda-a360-4c6a-a843-3e4afce0ef10\",\n                        \"5b413ca0-675d-44ff-b33d-61ce42a4b274\",\n                        \"090aa3e5-8553-492e-b5d5-54c4b52c4c44\",\n                        \"b81fd7f4-25a2-416f-bd76-30b7688c6f1a\",\n                        \"9530ab38-5d19-4d77-a76f-374b14e4246b\",\n                        \"6bb193a1-37ad-4469-88a7-5e9b57afb6e8\",\n                        \"5757b200-3d88-4ddb-a1fa-845e36fdc02f\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.8203125,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03690188005566597,\n                    \"Height\": 0.02306206524372101,\n                    \"Left\": 0.05674905702471733,\n                    \"Top\": 0.1739305704832077\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05674905702471733,\n                        \"Y\": 0.17395390570163727\n                    },\n                    {\n                        \"X\": 0.09363500773906708,\n                        \"Y\": 0.1739305704832077\n                    },\n                    {\n                        \"X\": 0.0936509370803833,\n                        \"Y\": 0.19696934521198273\n                    },\n                    {\n                        \"X\": 0.056764669716358185,\n                        \"Y\": 0.1969926357269287\n                    }\n                ]\n            },\n            \"Id\": \"3282defb-b8c5-4caf-a2b3-9b8406fe625b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4dbd27bc-7437-436a-bb76-5763cc20c2fc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.28515625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22369003295898438,\n                    \"Height\": 0.023180220276117325,\n                    \"Left\": 0.09363500773906708,\n                    \"Top\": 0.1737891137599945\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09363500773906708,\n                        \"Y\": 0.1739305704832077\n                    },\n                    {\n                        \"X\": 0.31730714440345764,\n                        \"Y\": 0.1737891137599945\n                    },\n                    {\n                        \"X\": 0.31732502579689026,\n                        \"Y\": 0.19682806730270386\n                    },\n                    {\n                        \"X\": 0.0936509370803833,\n                        \"Y\": 0.19696934521198273\n                    }\n                ]\n            },\n            \"Id\": \"f81600a6-c3c9-4a69-89e0-e0e8194c9025\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"352441d5-0111-4d22-9926-9ffd7120b658\",\n                        \"88cfdfa3-f282-47c7-b5b6-c5b83505afeb\",\n                        \"982e45cb-964e-424e-bbb1-ea69c032c966\",\n                        \"ffe25321-088e-432d-a96c-8ca1d0605fa2\",\n                        \"42c76fd9-ef1a-4d9d-8113-9aeaed70252d\",\n                        \"1f630bb5-4e04-49a9-962f-978ed27dc220\",\n                        \"f809a56a-351e-418f-aac3-27b358660de6\",\n                        \"1cfea09d-04a5-4b0f-b866-07fab6a56844\",\n                        \"892b77c5-68c5-4fec-b5be-f97e0a63b595\",\n                        \"8ef08e33-529a-4285-ae77-51b91197ab67\",\n                        \"33500a62-2745-4cb8-83f4-9c4fac16a0fb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.203125,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11774250864982605,\n                    \"Height\": 0.023113396018743515,\n                    \"Left\": 0.31730714440345764,\n                    \"Top\": 0.17371466755867004\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31730714440345764,\n                        \"Y\": 0.1737891137599945\n                    },\n                    {\n                        \"X\": 0.4350307285785675,\n                        \"Y\": 0.17371466755867004\n                    },\n                    {\n                        \"X\": 0.4350496530532837,\n                        \"Y\": 0.19675371050834656\n                    },\n                    {\n                        \"X\": 0.31732502579689026,\n                        \"Y\": 0.19682806730270386\n                    }\n                ]\n            },\n            \"Id\": \"f95fd99f-fea7-4185-bab3-83850b9b7a24\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"809f3dc5-9fb2-4771-a3b2-f4c307c917f9\",\n                        \"fa7c59ab-5407-4b95-a8fa-390ba5b8bbd9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.765625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034551654011011124,\n                    \"Height\": 0.023060878738760948,\n                    \"Left\": 0.4350307285785675,\n                    \"Top\": 0.17369283735752106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4350307285785675,\n                        \"Y\": 0.17371466755867004\n                    },\n                    {\n                        \"X\": 0.46956318616867065,\n                        \"Y\": 0.17369283735752106\n                    },\n                    {\n                        \"X\": 0.4695824086666107,\n                        \"Y\": 0.19673189520835876\n                    },\n                    {\n                        \"X\": 0.4350496530532837,\n                        \"Y\": 0.19675371050834656\n                    }\n                ]\n            },\n            \"Id\": \"48e52744-7354-4c48-af4c-a5088873a007\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dd99b83-4ab6-434f-acf0-38262ea1c5b0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.744140625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11852993816137314,\n                    \"Height\": 0.02311401441693306,\n                    \"Left\": 0.46956318616867065,\n                    \"Top\": 0.173617884516716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46956318616867065,\n                        \"Y\": 0.17369283735752106\n                    },\n                    {\n                        \"X\": 0.5880728363990784,\n                        \"Y\": 0.173617884516716\n                    },\n                    {\n                        \"X\": 0.588093101978302,\n                        \"Y\": 0.19665704667568207\n                    },\n                    {\n                        \"X\": 0.4695824086666107,\n                        \"Y\": 0.19673189520835876\n                    }\n                ]\n            },\n            \"Id\": \"76d33a07-5580-47fe-a537-29938f030e78\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b210b1b4-6202-48b9-b808-36236e16ad17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 66.30859375,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035338208079338074,\n                    \"Height\": 0.023061498999595642,\n                    \"Left\": 0.5880728363990784,\n                    \"Top\": 0.17359554767608643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5880728363990784,\n                        \"Y\": 0.173617884516716\n                    },\n                    {\n                        \"X\": 0.6233904957771301,\n                        \"Y\": 0.17359554767608643\n                    },\n                    {\n                        \"X\": 0.6234110593795776,\n                        \"Y\": 0.19663473963737488\n                    },\n                    {\n                        \"X\": 0.588093101978302,\n                        \"Y\": 0.19665704667568207\n                    }\n                ]\n            },\n            \"Id\": \"2c0dc7f9-6549-4d27-aaf8-c3836c447861\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"78dd4dfd-0ba2-4bb1-bd51-7c2716887d48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.841796875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11965488642454147,\n                    \"Height\": 0.023114848881959915,\n                    \"Left\": 0.6233904957771301,\n                    \"Top\": 0.17351989448070526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6233904957771301,\n                        \"Y\": 0.17359554767608643\n                    },\n                    {\n                        \"X\": 0.7430238127708435,\n                        \"Y\": 0.17351989448070526\n                    },\n                    {\n                        \"X\": 0.7430453896522522,\n                        \"Y\": 0.19655917584896088\n                    },\n                    {\n                        \"X\": 0.6234110593795776,\n                        \"Y\": 0.19663473963737488\n                    }\n                ]\n            },\n            \"Id\": \"d36c8a9e-9a37-4501-9e42-c868b81b8d1a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b6cca33-3c94-4c65-b694-782e740154a0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.8203125,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03690723329782486,\n                    \"Height\": 0.030338039621710777,\n                    \"Left\": 0.056764669716358185,\n                    \"Top\": 0.19696934521198273\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.056764669716358185,\n                        \"Y\": 0.1969926357269287\n                    },\n                    {\n                        \"X\": 0.0936509370803833,\n                        \"Y\": 0.19696934521198273\n                    },\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    },\n                    {\n                        \"X\": 0.056785210967063904,\n                        \"Y\": 0.22730737924575806\n                    }\n                ]\n            },\n            \"Id\": \"c5b0385d-3232-464c-9907-7ac5291bc9cd\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 92.28515625,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22369763255119324,\n                    \"Height\": 0.030456053093075752,\n                    \"Left\": 0.0936509370803833,\n                    \"Top\": 0.19682806730270386\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0936509370803833,\n                        \"Y\": 0.19696934521198273\n                    },\n                    {\n                        \"X\": 0.31732502579689026,\n                        \"Y\": 0.19682806730270386\n                    },\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    },\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    }\n                ]\n            },\n            \"Id\": \"b2b11938-9111-442e-b0df-6c1607aa0aa0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c7eddbbf-0bdb-40ef-b652-b4d7396d7fc8\",\n                        \"ce3ad516-8259-4248-a375-3e1893ecf4fe\",\n                        \"6ad080f1-fa44-457b-bf74-3131de55e46a\",\n                        \"a8062e1e-9e3a-4d0d-a0c1-5797f1436159\",\n                        \"b26098a6-debe-4809-a2dd-c4b3e79457a5\",\n                        \"03eca0ac-f281-4780-9fb8-d55673a4c7ba\",\n                        \"9b93ea06-fbde-412c-b2f0-240af73285db\",\n                        \"d79deac8-8d1d-4fc2-86b9-612e83a5791a\",\n                        \"a8673706-99ff-4fcb-b303-8bf2685af2ed\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.80859375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11774951219558716,\n                    \"Height\": 0.030389372259378433,\n                    \"Left\": 0.31732502579689026,\n                    \"Top\": 0.19675371050834656\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31732502579689026,\n                        \"Y\": 0.19682806730270386\n                    },\n                    {\n                        \"X\": 0.4350496530532837,\n                        \"Y\": 0.19675371050834656\n                    },\n                    {\n                        \"X\": 0.4350745379924774,\n                        \"Y\": 0.22706885635852814\n                    },\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    }\n                ]\n            },\n            \"Id\": \"a41d54d7-11f8-4d5f-8e54-2f7e71a8ca5a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13859db3-5559-4568-b1c4-b64160b2a208\",\n                        \"2763226e-b62a-4c3a-8d94-d2bcd9695906\",\n                        \"49182a97-c583-4af7-8f2b-eb59da24208b\",\n                        \"80e03e12-68fc-4597-bb19-973806f9645b\",\n                        \"57e03145-f39e-4ff3-aa1d-efb57e05c5d9\",\n                        \"a9417aaf-8832-476a-b64f-6b6a7fb7d3aa\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.80859375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03455802798271179,\n                    \"Height\": 0.030336951836943626,\n                    \"Left\": 0.4350496530532837,\n                    \"Top\": 0.19673189520835876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4350496530532837,\n                        \"Y\": 0.19675371050834656\n                    },\n                    {\n                        \"X\": 0.4695824086666107,\n                        \"Y\": 0.19673189520835876\n                    },\n                    {\n                        \"X\": 0.4696076810359955,\n                        \"Y\": 0.22704707086086273\n                    },\n                    {\n                        \"X\": 0.4350745379924774,\n                        \"Y\": 0.22706885635852814\n                    }\n                ]\n            },\n            \"Id\": \"43e32d61-0163-4804-84bd-30b604d71555\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ca23e7fd-5db0-44f5-8810-8645dbe38ab4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.80859375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11853736639022827,\n                    \"Height\": 0.030390029773116112,\n                    \"Left\": 0.4695824086666107,\n                    \"Top\": 0.19665704667568207\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4695824086666107,\n                        \"Y\": 0.19673189520835876\n                    },\n                    {\n                        \"X\": 0.588093101978302,\n                        \"Y\": 0.19665704667568207\n                    },\n                    {\n                        \"X\": 0.5881197452545166,\n                        \"Y\": 0.22697235643863678\n                    },\n                    {\n                        \"X\": 0.4696076810359955,\n                        \"Y\": 0.22704707086086273\n                    }\n                ]\n            },\n            \"Id\": \"2dc0273d-6bd5-4e47-af35-d44dd260f8b1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"90fa01db-a28a-4a68-a6f4-147012cc91e9\",\n                        \"3556bcc0-baa3-43e3-9f95-cb2b1e0564df\",\n                        \"72893b6c-523d-4c6e-b6f6-d1ea950bc67a\",\n                        \"51013915-1cf1-4128-93ff-5dd24236e53e\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.80859375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035345010459423065,\n                    \"Height\": 0.030337609350681305,\n                    \"Left\": 0.588093101978302,\n                    \"Top\": 0.19663473963737488\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.588093101978302,\n                        \"Y\": 0.19665704667568207\n                    },\n                    {\n                        \"X\": 0.6234110593795776,\n                        \"Y\": 0.19663473963737488\n                    },\n                    {\n                        \"X\": 0.6234381198883057,\n                        \"Y\": 0.22695007920265198\n                    },\n                    {\n                        \"X\": 0.5881197452545166,\n                        \"Y\": 0.22697235643863678\n                    }\n                ]\n            },\n            \"Id\": \"a39712b0-b464-4825-ae02-3b81a1c6b6d3\",\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.80859375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11932527273893356,\n                    \"Height\": 0.03039068728685379,\n                    \"Left\": 0.6234110593795776,\n                    \"Top\": 0.19655939936637878\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6234110593795776,\n                        \"Y\": 0.19663473963737488\n                    },\n                    {\n                        \"X\": 0.7427079081535339,\n                        \"Y\": 0.19655939936637878\n                    },\n                    {\n                        \"X\": 0.7427363395690918,\n                        \"Y\": 0.22687485814094543\n                    },\n                    {\n                        \"X\": 0.6234381198883057,\n                        \"Y\": 0.22695007920265198\n                    }\n                ]\n            },\n            \"Id\": \"9fec3c0c-381a-4f97-9c55-0c4b6655715a\",\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 70.80078125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03690262883901596,\n                    \"Height\": 0.023062927648425102,\n                    \"Left\": 0.056785210967063904,\n                    \"Top\": 0.22728411853313446\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.056785210967063904,\n                        \"Y\": 0.22730737924575806\n                    },\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    },\n                    {\n                        \"X\": 0.09368783980607986,\n                        \"Y\": 0.2503238320350647\n                    },\n                    {\n                        \"X\": 0.05680081993341446,\n                        \"Y\": 0.2503470480442047\n                    }\n                ]\n            },\n            \"Id\": \"32a65f8b-d245-422f-90e4-f4118c7f8925\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6ba74f1c-58ea-419d-9742-9fddeede2ee5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.796875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2236945629119873,\n                    \"Height\": 0.023180736228823662,\n                    \"Left\": 0.09367190301418304,\n                    \"Top\": 0.2271430790424347\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    },\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    },\n                    {\n                        \"X\": 0.31736645102500916,\n                        \"Y\": 0.25018295645713806\n                    },\n                    {\n                        \"X\": 0.09368783980607986,\n                        \"Y\": 0.2503238320350647\n                    }\n                ]\n            },\n            \"Id\": \"58817ee0-86cd-48af-841f-246e90573540\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bdf2f96f-82d9-4301-a5b5-8cdec9b67194\",\n                        \"79046930-5fb6-4cd1-a470-7d1addd6f64f\",\n                        \"62f7a8ca-7b64-4db9-8f96-61a14fb6ee72\",\n                        \"281a63db-4988-473d-b7d8-518f3d3a026b\",\n                        \"81281da4-ef0d-410f-b2a0-996c0591e64d\",\n                        \"2a87bc52-17df-4526-a94b-12d6c3ba7e11\",\n                        \"f47df568-d096-4e2d-8842-673837488d32\",\n                        \"cbd3312b-c636-4d45-b6e1-ebde52e458eb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.93359375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11774489283561707,\n                    \"Height\": 0.02311410941183567,\n                    \"Left\": 0.31734856963157654,\n                    \"Top\": 0.22706885635852814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    },\n                    {\n                        \"X\": 0.4350745379924774,\n                        \"Y\": 0.22706885635852814\n                    },\n                    {\n                        \"X\": 0.4350934624671936,\n                        \"Y\": 0.25010883808135986\n                    },\n                    {\n                        \"X\": 0.31736645102500916,\n                        \"Y\": 0.25018295645713806\n                    }\n                ]\n            },\n            \"Id\": \"00b55eb1-ad43-4659-b9ac-14a98531b3d5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e4197016-b0a3-409b-8da5-14a969811c91\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 58.88671875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034552354365587234,\n                    \"Height\": 0.02306174859404564,\n                    \"Left\": 0.4350745379924774,\n                    \"Top\": 0.22704707086086273\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4350745379924774,\n                        \"Y\": 0.22706885635852814\n                    },\n                    {\n                        \"X\": 0.4696076810359955,\n                        \"Y\": 0.22704707086086273\n                    },\n                    {\n                        \"X\": 0.46962690353393555,\n                        \"Y\": 0.25008708238601685\n                    },\n                    {\n                        \"X\": 0.4350934624671936,\n                        \"Y\": 0.25010883808135986\n                    }\n                ]\n            },\n            \"Id\": \"a8c0eec7-b4cb-44b7-9954-261e1d5d76f9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a28f96b7-39b3-467e-bde2-057f2a3ba9a4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.42578125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11853233724832535,\n                    \"Height\": 0.023114727810025215,\n                    \"Left\": 0.4696076810359955,\n                    \"Top\": 0.22697235643863678\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4696076810359955,\n                        \"Y\": 0.22704707086086273\n                    },\n                    {\n                        \"X\": 0.5881197452545166,\n                        \"Y\": 0.22697235643863678\n                    },\n                    {\n                        \"X\": 0.5881400108337402,\n                        \"Y\": 0.25001245737075806\n                    },\n                    {\n                        \"X\": 0.46962690353393555,\n                        \"Y\": 0.25008708238601685\n                    }\n                ]\n            },\n            \"Id\": \"44f85b1e-17c7-47ac-ab27-d1ff565b3c5b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3e14b7a9-3bc8-4607-97a4-8de9c4215f2d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.33203125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03533892333507538,\n                    \"Height\": 0.023062365129590034,\n                    \"Left\": 0.5881197452545166,\n                    \"Top\": 0.22695007920265198\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5881197452545166,\n                        \"Y\": 0.22697235643863678\n                    },\n                    {\n                        \"X\": 0.6234381198883057,\n                        \"Y\": 0.22695007920265198\n                    },\n                    {\n                        \"X\": 0.6234586834907532,\n                        \"Y\": 0.24999020993709564\n                    },\n                    {\n                        \"X\": 0.5881400108337402,\n                        \"Y\": 0.25001245737075806\n                    }\n                ]\n            },\n            \"Id\": \"91ed9f32-926c-411e-b7b4-291fd605825b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9185cf32-9f6d-4f10-8d24-dbbb66655aa6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.5234375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11965730786323547,\n                    \"Height\": 0.023115558549761772,\n                    \"Left\": 0.6234381198883057,\n                    \"Top\": 0.22687464952468872\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6234381198883057,\n                        \"Y\": 0.22695007920265198\n                    },\n                    {\n                        \"X\": 0.7430738210678101,\n                        \"Y\": 0.22687464952468872\n                    },\n                    {\n                        \"X\": 0.7430954575538635,\n                        \"Y\": 0.24991486966609955\n                    },\n                    {\n                        \"X\": 0.6234586834907532,\n                        \"Y\": 0.24999020993709564\n                    }\n                ]\n            },\n            \"Id\": \"b902fd1c-c8dd-47c3-8da6-817b9ec6e300\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e5b0e7bb-a085-471f-b2e0-eb33b7d0c98a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 70.80078125,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03691301494836807,\n                    \"Height\": 0.03761513531208038,\n                    \"Left\": 0.05680081993341446,\n                    \"Top\": 0.2503238320350647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05680081993341446,\n                        \"Y\": 0.2503470480442047\n                    },\n                    {\n                        \"X\": 0.09368783980607986,\n                        \"Y\": 0.2503238320350647\n                    },\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    },\n                    {\n                        \"X\": 0.05682629346847534,\n                        \"Y\": 0.2879389524459839\n                    }\n                ]\n            },\n            \"Id\": \"13e2838b-3489-4b55-967d-efd04863428f\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.796875,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22370781004428864,\n                    \"Height\": 0.0377328097820282,\n                    \"Left\": 0.09368783980607986,\n                    \"Top\": 0.25018295645713806\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09368783980607986,\n                        \"Y\": 0.2503238320350647\n                    },\n                    {\n                        \"X\": 0.31736645102500916,\n                        \"Y\": 0.25018295645713806\n                    },\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    },\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    }\n                ]\n            },\n            \"Id\": \"0495c9c1-91ae-4ebc-9394-76fac935fb49\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b6ca5031-1b8d-4eb6-8098-4210cf7a3c41\",\n                        \"64fc9bff-165c-4ed2-a3c1-c1e2d510bc41\",\n                        \"85fcecbf-5213-44f0-af15-d5af156fd591\",\n                        \"8fb4e22a-4880-4990-83b3-91da66c3e1c7\",\n                        \"a57b4473-604a-4198-b1c6-670b5b67e5ef\",\n                        \"a45af00c-c88d-44e1-9880-562caef6b8b6\",\n                        \"83bb5bb7-92e8-4bb4-82ac-f47f93ff1280\",\n                        \"eec1145d-5b48-4305-9b43-1cc5469e9662\",\n                        \"86e7951c-5319-4076-929c-23c8f51b4063\",\n                        \"521155fd-0465-4b4c-b00c-a0ace6540d8c\",\n                        \"de3848fb-d1ce-4e74-b36f-4d9de534bacf\",\n                        \"5274692d-5a31-4ad5-b621-fa784568b3dc\",\n                        \"68f20c00-4a38-4436-9bac-fde523b9e945\",\n                        \"68a67742-07f1-4678-887c-16bbd47696b2\",\n                        \"f32803de-f2c9-47c6-bc90-2611ace63fdd\",\n                        \"87c030c1-746c-451b-9706-919d52238cc9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.7109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11775786429643631,\n                    \"Height\": 0.037666384130716324,\n                    \"Left\": 0.31736645102500916,\n                    \"Top\": 0.25010883808135986\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31736645102500916,\n                        \"Y\": 0.25018295645713806\n                    },\n                    {\n                        \"X\": 0.4350934624671936,\n                        \"Y\": 0.25010883808135986\n                    },\n                    {\n                        \"X\": 0.43512433767318726,\n                        \"Y\": 0.28770121932029724\n                    },\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    }\n                ]\n            },\n            \"Id\": \"f91325ca-2a47-4e74-8cfb-f42618e0f0ae\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"209544d1-507b-459b-b87c-8eccef48914e\",\n                        \"47d92a32-f442-4c9f-b734-77e61f6d1518\",\n                        \"9b5481dc-ea5f-441c-b38a-acbad0a74c44\",\n                        \"d381565f-cc71-4c93-a3a1-86e135c81235\",\n                        \"e12fc79f-87b6-436d-b956-b0381520d448\",\n                        \"5b59acf8-0822-4894-8cdd-778538821ec5\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.7109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0345647968351841,\n                    \"Height\": 0.03761414811015129,\n                    \"Left\": 0.4350934624671936,\n                    \"Top\": 0.25008708238601685\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4350934624671936,\n                        \"Y\": 0.25010883808135986\n                    },\n                    {\n                        \"X\": 0.46962690353393555,\n                        \"Y\": 0.25008708238601685\n                    },\n                    {\n                        \"X\": 0.4696582555770874,\n                        \"Y\": 0.287679523229599\n                    },\n                    {\n                        \"X\": 0.43512433767318726,\n                        \"Y\": 0.28770121932029724\n                    }\n                ]\n            },\n            \"Id\": \"ce296e49-018a-4061-a236-8a0e71c39a02\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"78522d46-ab9c-4efd-b78c-7059f95ee687\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.7109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11854616552591324,\n                    \"Height\": 0.03766707703471184,\n                    \"Left\": 0.46962690353393555,\n                    \"Top\": 0.25001245737075806\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46962690353393555,\n                        \"Y\": 0.25008708238601685\n                    },\n                    {\n                        \"X\": 0.5881400108337402,\n                        \"Y\": 0.25001245737075806\n                    },\n                    {\n                        \"X\": 0.5881730914115906,\n                        \"Y\": 0.28760504722595215\n                    },\n                    {\n                        \"X\": 0.4696582555770874,\n                        \"Y\": 0.287679523229599\n                    }\n                ]\n            },\n            \"Id\": \"f9399a0b-3e2b-4cd6-a166-309cd78de14a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6156362-3d86-436b-9d00-d72a4ba46462\",\n                        \"a522e533-dc41-4c49-aeff-6052ae0d0b93\",\n                        \"1c96c760-2b33-4454-a33e-50cebb87daa9\",\n                        \"a6d6d8b6-9768-4de8-afdf-6fac4f4a06c9\",\n                        \"2b11bd8c-2a4f-4019-85ca-0702ac4313c6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.7109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03535221889615059,\n                    \"Height\": 0.037614841014146805,\n                    \"Left\": 0.5881400108337402,\n                    \"Top\": 0.24999020993709564\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5881400108337402,\n                        \"Y\": 0.25001245737075806\n                    },\n                    {\n                        \"X\": 0.6234586834907532,\n                        \"Y\": 0.24999020993709564\n                    },\n                    {\n                        \"X\": 0.6234922409057617,\n                        \"Y\": 0.2875828444957733\n                    },\n                    {\n                        \"X\": 0.5881730914115906,\n                        \"Y\": 0.28760504722595215\n                    }\n                ]\n            },\n            \"Id\": \"e2957279-e921-4d13-8a61-8bec3f89d3e7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"93c1420f-ec86-4f49-a336-743a736d9f34\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.7109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11933451145887375,\n                    \"Height\": 0.03766777366399765,\n                    \"Left\": 0.6234586834907532,\n                    \"Top\": 0.24991507828235626\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6234586834907532,\n                        \"Y\": 0.24999020993709564\n                    },\n                    {\n                        \"X\": 0.7427579164505005,\n                        \"Y\": 0.24991507828235626\n                    },\n                    {\n                        \"X\": 0.7427932024002075,\n                        \"Y\": 0.28750789165496826\n                    },\n                    {\n                        \"X\": 0.6234922409057617,\n                        \"Y\": 0.2875828444957733\n                    }\n                ]\n            },\n            \"Id\": \"3b483657-620c-46be-82d0-fa5c1a684449\",\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 67.919921875,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03690347447991371,\n                    \"Height\": 0.023063911125063896,\n                    \"Left\": 0.05682629346847534,\n                    \"Top\": 0.28791576623916626\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05682629346847534,\n                        \"Y\": 0.2879389524459839\n                    },\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    },\n                    {\n                        \"X\": 0.09372977167367935,\n                        \"Y\": 0.31095653772354126\n                    },\n                    {\n                        \"X\": 0.056841906160116196,\n                        \"Y\": 0.3109796941280365\n                    }\n                ]\n            },\n            \"Id\": \"1d198f6e-2c9d-42d8-a46b-9781aa8757e3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b05bd6c7-4572-43e7-9e84-a36848ccec85\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.9453125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22369970381259918,\n                    \"Height\": 0.02318132482469082,\n                    \"Left\": 0.09371383488178253,\n                    \"Top\": 0.2877752184867859\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    },\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    },\n                    {\n                        \"X\": 0.3174135386943817,\n                        \"Y\": 0.3108161389827728\n                    },\n                    {\n                        \"X\": 0.09372977167367935,\n                        \"Y\": 0.31095653772354126\n                    }\n                ]\n            },\n            \"Id\": \"95190485-e3b5-4c86-a61e-4dea069f9be2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"91804ae5-d9c7-47db-ac93-695f91aacb60\",\n                        \"46444dca-796f-4242-9e5c-5a023381cbc0\",\n                        \"0db80c2a-20a8-4eb7-851f-12cfc8c5e4b0\",\n                        \"0900d465-3901-419b-9135-7a6763500b1b\",\n                        \"aa2af6f8-9be7-432e-961c-0fccc376ce83\",\n                        \"707c4e01-4033-4ed4-b8f5-0b4b499cf547\",\n                        \"5628e910-83e9-4c1f-a12e-e0a00ff6d54d\",\n                        \"98435a17-57d2-45b2-8027-e5f7920efc01\",\n                        \"a15424de-54d0-4660-bc90-c8035e71f7a0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 72.0703125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11774759739637375,\n                    \"Height\": 0.023114921525120735,\n                    \"Left\": 0.3173956573009491,\n                    \"Top\": 0.28770121932029724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    },\n                    {\n                        \"X\": 0.43512433767318726,\n                        \"Y\": 0.28770121932029724\n                    },\n                    {\n                        \"X\": 0.43514326214790344,\n                        \"Y\": 0.31074225902557373\n                    },\n                    {\n                        \"X\": 0.3174135386943817,\n                        \"Y\": 0.3108161389827728\n                    }\n                ]\n            },\n            \"Id\": \"4f5e5734-dc40-4851-adf6-d64bb21d0120\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5376c8a6-7fef-404a-aebe-49d1b5a9ad4e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 51.7578125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034553151577711105,\n                    \"Height\": 0.023062733933329582,\n                    \"Left\": 0.43512433767318726,\n                    \"Top\": 0.287679523229599\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43512433767318726,\n                        \"Y\": 0.28770121932029724\n                    },\n                    {\n                        \"X\": 0.4696582555770874,\n                        \"Y\": 0.287679523229599\n                    },\n                    {\n                        \"X\": 0.46967747807502747,\n                        \"Y\": 0.3107205927371979\n                    },\n                    {\n                        \"X\": 0.43514326214790344,\n                        \"Y\": 0.31074225902557373\n                    }\n                ]\n            },\n            \"Id\": \"1d16431b-fcb0-4f38-b4ca-e631b5b130b8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"95749d5d-63c7-4d11-90e0-d9549d5a624d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.025390625,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11853506416082382,\n                    \"Height\": 0.02311553806066513,\n                    \"Left\": 0.4696582555770874,\n                    \"Top\": 0.28760504722595215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4696582555770874,\n                        \"Y\": 0.287679523229599\n                    },\n                    {\n                        \"X\": 0.5881730914115906,\n                        \"Y\": 0.28760504722595215\n                    },\n                    {\n                        \"X\": 0.5881932973861694,\n                        \"Y\": 0.3106462061405182\n                    },\n                    {\n                        \"X\": 0.46967747807502747,\n                        \"Y\": 0.3107205927371979\n                    }\n                ]\n            },\n            \"Id\": \"e95017f3-1db9-483c-be59-531997b8330a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"35bca987-b8a3-445a-a20c-cce2445ce0cb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 57.470703125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03533973544836044,\n                    \"Height\": 0.023063350468873978,\n                    \"Left\": 0.5881730914115906,\n                    \"Top\": 0.2875828444957733\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5881730914115906,\n                        \"Y\": 0.28760504722595215\n                    },\n                    {\n                        \"X\": 0.6234922409057617,\n                        \"Y\": 0.2875828444957733\n                    },\n                    {\n                        \"X\": 0.6235128045082092,\n                        \"Y\": 0.31062403321266174\n                    },\n                    {\n                        \"X\": 0.5881932973861694,\n                        \"Y\": 0.3106462061405182\n                    }\n                ]\n            },\n            \"Id\": \"50c17152-090e-408d-9112-3b429dc1c269\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c5c38b1b-5564-4574-a92f-d987021ff0e6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.123046875,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11966006457805634,\n                    \"Height\": 0.02311636693775654,\n                    \"Left\": 0.6234922409057617,\n                    \"Top\": 0.28750768303871155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6234922409057617,\n                        \"Y\": 0.2875828444957733\n                    },\n                    {\n                        \"X\": 0.7431306838989258,\n                        \"Y\": 0.28750768303871155\n                    },\n                    {\n                        \"X\": 0.7431523203849792,\n                        \"Y\": 0.31054896116256714\n                    },\n                    {\n                        \"X\": 0.6235128045082092,\n                        \"Y\": 0.31062403321266174\n                    }\n                ]\n            },\n            \"Id\": \"b68d4698-db91-499b-9f30-9a28461811f9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7cf3780f-a559-4cde-a713-10fe8f8b5e9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 67.919921875,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036905474960803986,\n                    \"Height\": 0.02548968978226185,\n                    \"Left\": 0.056841906160116196,\n                    \"Top\": 0.31095653772354126\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.056841906160116196,\n                        \"Y\": 0.3109796941280365\n                    },\n                    {\n                        \"X\": 0.09372977167367935,\n                        \"Y\": 0.31095653772354126\n                    },\n                    {\n                        \"X\": 0.09374737739562988,\n                        \"Y\": 0.3364230990409851\n                    },\n                    {\n                        \"X\": 0.05685916170477867,\n                        \"Y\": 0.33644622564315796\n                    }\n                ]\n            },\n            \"Id\": \"eb5c7896-7204-4781-ba4e-7ad733fd987c\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.9453125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2237035483121872,\n                    \"Height\": 0.025606956332921982,\n                    \"Left\": 0.09372977167367935,\n                    \"Top\": 0.3108161389827728\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09372977167367935,\n                        \"Y\": 0.31095653772354126\n                    },\n                    {\n                        \"X\": 0.3174135386943817,\n                        \"Y\": 0.3108161389827728\n                    },\n                    {\n                        \"X\": 0.31743329763412476,\n                        \"Y\": 0.3362829089164734\n                    },\n                    {\n                        \"X\": 0.09374737739562988,\n                        \"Y\": 0.3364230990409851\n                    }\n                ]\n            },\n            \"Id\": \"2f17c32b-4991-43f9-88e6-62edecbdc793\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"088b957a-b8c4-4939-9b57-8b86d4520885\",\n                        \"68f8aa65-f70f-4947-a293-80fe40f46f94\",\n                        \"af63e84f-13fc-47cd-bacc-16825ccb6c66\",\n                        \"7bb2b78b-74fb-4727-9419-51b6de1938e2\",\n                        \"bdf5847d-b1f8-43d0-90b1-b472ea8484ea\",\n                        \"537afa9e-a92f-49fb-a2a1-6bb6da27aa12\",\n                        \"a9fe55dc-6006-4862-9ce7-e3ba779b4dfa\",\n                        \"c2e6acaa-ab21-4483-bcbe-cfa5f82e8d21\",\n                        \"4e83a7f9-7a31-4acb-9abe-26826df6e789\",\n                        \"086ed5f2-5030-412f-bcbf-6372fe706145\",\n                        \"13831359-95a2-4f1d-a6a4-aa43b78614f9\",\n                        \"53408ee5-e43f-4c4f-9494-a02d1cdcdcd9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1177506148815155,\n                    \"Height\": 0.025540657341480255,\n                    \"Left\": 0.3174135386943817,\n                    \"Top\": 0.31074225902557373\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3174135386943817,\n                        \"Y\": 0.3108161389827728\n                    },\n                    {\n                        \"X\": 0.43514326214790344,\n                        \"Y\": 0.31074225902557373\n                    },\n                    {\n                        \"X\": 0.4351641535758972,\n                        \"Y\": 0.33620911836624146\n                    },\n                    {\n                        \"X\": 0.31743329763412476,\n                        \"Y\": 0.3362829089164734\n                    }\n                ]\n            },\n            \"Id\": \"9791ae08-f5b0-4aef-b33e-c88a8e814f06\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"821853f0-b5f7-4f20-bb27-cba75979ae0f\",\n                        \"a1b1afe0-302b-49ae-ae2b-9ae6839abddb\",\n                        \"47cd07cd-117f-4d60-8bc7-e8df17b6ed76\",\n                        \"bf02d2f9-53f7-4a68-89e9-321089bfb2c8\",\n                        \"d5674b57-acaf-4157-a95d-bdbacd1fc283\",\n                        \"01c96d7f-276d-4843-bd05-744b02d9534a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034555476158857346,\n                    \"Height\": 0.02548854798078537,\n                    \"Left\": 0.43514326214790344,\n                    \"Top\": 0.3107205927371979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43514326214790344,\n                        \"Y\": 0.31074225902557373\n                    },\n                    {\n                        \"X\": 0.46967747807502747,\n                        \"Y\": 0.3107205927371979\n                    },\n                    {\n                        \"X\": 0.4696987271308899,\n                        \"Y\": 0.336187481880188\n                    },\n                    {\n                        \"X\": 0.4351641535758972,\n                        \"Y\": 0.33620911836624146\n                    }\n                ]\n            },\n            \"Id\": \"63de62fd-d607-40c1-9e41-b7428f56a100\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"19980346-24bd-4244-b6e4-4833e5eb02df\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11853823065757751,\n                    \"Height\": 0.025541285052895546,\n                    \"Left\": 0.46967747807502747,\n                    \"Top\": 0.3106462061405182\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46967747807502747,\n                        \"Y\": 0.3107205927371979\n                    },\n                    {\n                        \"X\": 0.5881932973861694,\n                        \"Y\": 0.3106462061405182\n                    },\n                    {\n                        \"X\": 0.588215708732605,\n                        \"Y\": 0.33611321449279785\n                    },\n                    {\n                        \"X\": 0.4696987271308899,\n                        \"Y\": 0.336187481880188\n                    }\n                ]\n            },\n            \"Id\": \"2bfeaf73-3d99-472e-9af6-5610867ca68c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"19e4e41a-c888-422e-acc3-b87fc9674f85\",\n                        \"9d32acb9-cda4-494a-9f6f-639f1329068f\",\n                        \"9304a8c5-74da-473d-ae78-1243e7165380\",\n                        \"85744ff3-d7e1-4157-a185-41b733f40555\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03534220904111862,\n                    \"Height\": 0.02548917569220066,\n                    \"Left\": 0.5881932973861694,\n                    \"Top\": 0.31062403321266174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5881932973861694,\n                        \"Y\": 0.3106462061405182\n                    },\n                    {\n                        \"X\": 0.6235128045082092,\n                        \"Y\": 0.31062403321266174\n                    },\n                    {\n                        \"X\": 0.6235355138778687,\n                        \"Y\": 0.3360910713672638\n                    },\n                    {\n                        \"X\": 0.588215708732605,\n                        \"Y\": 0.33611321449279785\n                    }\n                ]\n            },\n            \"Id\": \"e049f261-81ac-4984-8318-7d5c6d34655a\",\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 53.125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11932588368654251,\n                    \"Height\": 0.025541914626955986,\n                    \"Left\": 0.6235128045082092,\n                    \"Top\": 0.31054916977882385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6235128045082092,\n                        \"Y\": 0.31062403321266174\n                    },\n                    {\n                        \"X\": 0.7428147792816162,\n                        \"Y\": 0.31054916977882385\n                    },\n                    {\n                        \"X\": 0.7428386807441711,\n                        \"Y\": 0.33601629734039307\n                    },\n                    {\n                        \"X\": 0.6235355138778687,\n                        \"Y\": 0.3360910713672638\n                    }\n                ]\n            },\n            \"Id\": \"26b88649-8c31-4ffe-892d-fe5dd859f55a\",\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03690667077898979,\n                    \"Height\": 0.0267028771340847,\n                    \"Left\": 0.05685916170477867,\n                    \"Top\": 0.3364230990409851\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05685916170477867,\n                        \"Y\": 0.33644622564315796\n                    },\n                    {\n                        \"X\": 0.09374737739562988,\n                        \"Y\": 0.3364230990409851\n                    },\n                    {\n                        \"X\": 0.09376583248376846,\n                        \"Y\": 0.36310288310050964\n                    },\n                    {\n                        \"X\": 0.05687723681330681,\n                        \"Y\": 0.3631259799003601\n                    }\n                ]\n            },\n            \"Id\": \"efbb3a5f-6cd0-4468-9ad5-e5f34c0bb7be\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"48ac3d74-f119-48ce-b9a0-9d274ec6611f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22370664775371552,\n                    \"Height\": 0.026819979771971703,\n                    \"Left\": 0.09374737739562988,\n                    \"Top\": 0.3362829089164734\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09374737739562988,\n                        \"Y\": 0.3364230990409851\n                    },\n                    {\n                        \"X\": 0.31743329763412476,\n                        \"Y\": 0.3362829089164734\n                    },\n                    {\n                        \"X\": 0.3174540400505066,\n                        \"Y\": 0.36296290159225464\n                    },\n                    {\n                        \"X\": 0.09376583248376846,\n                        \"Y\": 0.36310288310050964\n                    }\n                ]\n            },\n            \"Id\": \"fb016e36-b069-4af6-b06a-cb533ea06191\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"413032b0-4ea6-4c1c-9e20-5ce6ab29fd22\",\n                        \"071199e0-6682-45e3-b537-c27f695aa65b\",\n                        \"ec83dae7-bc23-473b-b089-48b4466509cb\",\n                        \"90598a7b-008a-4cd5-89d3-f43e3e97a207\",\n                        \"1bb8fd7f-604d-4fbf-aa56-69a1a82cfa13\",\n                        \"be65ba68-7f00-413b-90e5-6ea2dd3020c6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11775275319814682,\n                    \"Height\": 0.026753783226013184,\n                    \"Left\": 0.31743329763412476,\n                    \"Top\": 0.33620911836624146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31743329763412476,\n                        \"Y\": 0.3362829089164734\n                    },\n                    {\n                        \"X\": 0.4351641535758972,\n                        \"Y\": 0.33620911836624146\n                    },\n                    {\n                        \"X\": 0.4351860582828522,\n                        \"Y\": 0.36288923025131226\n                    },\n                    {\n                        \"X\": 0.3174540400505066,\n                        \"Y\": 0.36296290159225464\n                    }\n                ]\n            },\n            \"Id\": \"775a904f-bf4c-49ef-ad87-4317d51baf03\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2134088f-f244-4e8f-9921-fbc505062044\",\n                        \"749bbfae-c304-4702-95af-883804acb387\",\n                        \"e77f5fbc-e5ee-4e44-b83e-3412d1914638\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03455682098865509,\n                    \"Height\": 0.026701752096414566,\n                    \"Left\": 0.4351641535758972,\n                    \"Top\": 0.336187481880188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4351641535758972,\n                        \"Y\": 0.33620911836624146\n                    },\n                    {\n                        \"X\": 0.4696987271308899,\n                        \"Y\": 0.336187481880188\n                    },\n                    {\n                        \"X\": 0.4697209894657135,\n                        \"Y\": 0.3628676235675812\n                    },\n                    {\n                        \"X\": 0.4351860582828522,\n                        \"Y\": 0.36288923025131226\n                    }\n                ]\n            },\n            \"Id\": \"e2c15c3e-4a1b-4d73-bfb9-f18f3b6a58bc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"be9fd715-4656-4403-b172-17e9e0fdfa0d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1185404434800148,\n                    \"Height\": 0.02675441838800907,\n                    \"Left\": 0.4696987271308899,\n                    \"Top\": 0.33611321449279785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4696987271308899,\n                        \"Y\": 0.336187481880188\n                    },\n                    {\n                        \"X\": 0.588215708732605,\n                        \"Y\": 0.33611321449279785\n                    },\n                    {\n                        \"X\": 0.5882391333580017,\n                        \"Y\": 0.3627934753894806\n                    },\n                    {\n                        \"X\": 0.4697209894657135,\n                        \"Y\": 0.3628676235675812\n                    }\n                ]\n            },\n            \"Id\": \"97ef444c-5be8-4ef5-a881-e96758a408e3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d6c674b3-73bc-49a0-a45a-7ccf870dfe23\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035343632102012634,\n                    \"Height\": 0.026702387258410454,\n                    \"Left\": 0.588215708732605,\n                    \"Top\": 0.3360910713672638\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.588215708732605,\n                        \"Y\": 0.33611321449279785\n                    },\n                    {\n                        \"X\": 0.6235355138778687,\n                        \"Y\": 0.3360910713672638\n                    },\n                    {\n                        \"X\": 0.6235593557357788,\n                        \"Y\": 0.3627713620662689\n                    },\n                    {\n                        \"X\": 0.5882391333580017,\n                        \"Y\": 0.3627934753894806\n                    }\n                ]\n            },\n            \"Id\": \"14029c09-036f-4e5a-bd16-8b3bc27f7549\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11932817101478577,\n                    \"Height\": 0.02675505355000496,\n                    \"Left\": 0.6235355138778687,\n                    \"Top\": 0.33601629734039307\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6235355138778687,\n                        \"Y\": 0.3360910713672638\n                    },\n                    {\n                        \"X\": 0.7428386807441711,\n                        \"Y\": 0.33601629734039307\n                    },\n                    {\n                        \"X\": 0.7428637146949768,\n                        \"Y\": 0.36269670724868774\n                    },\n                    {\n                        \"X\": 0.6235593557357788,\n                        \"Y\": 0.3627713620662689\n                    }\n                ]\n            },\n            \"Id\": \"c21e12f9-d826-4e41-af49-f07833a94175\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 58.642578125,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036630064249038696,\n                    \"Height\": 0.04610739275813103,\n                    \"Left\": 0.05716763809323311,\n                    \"Top\": 0.36310288310050964\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05716763809323311,\n                        \"Y\": 0.3631258010864258\n                    },\n                    {\n                        \"X\": 0.09376583248376846,\n                        \"Y\": 0.36310288310050964\n                    },\n                    {\n                        \"X\": 0.0937977060675621,\n                        \"Y\": 0.4091874361038208\n                    },\n                    {\n                        \"X\": 0.05719887092709541,\n                        \"Y\": 0.40921029448509216\n                    }\n                ]\n            },\n            \"Id\": \"5271cf48-3ba5-4928-8c07-517e9575dd73\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e69cbb2d-3279-45d1-bded-446fee6f1172\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.3046875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22372397780418396,\n                    \"Height\": 0.046224530786275864,\n                    \"Left\": 0.09376583248376846,\n                    \"Top\": 0.36296290159225464\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09376583248376846,\n                        \"Y\": 0.36310288310050964\n                    },\n                    {\n                        \"X\": 0.3174540400505066,\n                        \"Y\": 0.36296290159225464\n                    },\n                    {\n                        \"X\": 0.3174898028373718,\n                        \"Y\": 0.40904781222343445\n                    },\n                    {\n                        \"X\": 0.0937977060675621,\n                        \"Y\": 0.4091874361038208\n                    }\n                ]\n            },\n            \"Id\": \"d624ed1f-06e1-4222-8a3d-2752d58f29a1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0b8e5d86-2a1e-486a-9e5b-818d19e8ccfb\",\n                        \"2b139f9a-6c39-4b29-bc15-291574bb7c3a\",\n                        \"aa2090e0-8650-4f32-a963-35f06e5a3f87\",\n                        \"57980083-caf8-4508-ac6d-b173d3bdf089\",\n                        \"b4b40a5a-d9d6-48b9-9a8a-bade1f3ccada\",\n                        \"6015ee89-784e-4553-94b6-8d490e705537\",\n                        \"69473469-f88f-4596-8377-49a45f54ffac\",\n                        \"61680c47-cd23-499f-ab20-529ed3ae98a6\",\n                        \"ed6d51a3-5e24-4bac-ba78-8c8848b32280\",\n                        \"6de8957f-33a7-47f5-ac79-88c8375f387e\",\n                        \"bd5d5d05-07d1-40fa-9c42-5604b99c741c\",\n                        \"c0fe1de8-3513-46c5-a63f-23b2eee13ec0\",\n                        \"6ee9eafc-da0f-49aa-bed0-731af3530c6e\",\n                        \"172f36a9-7dc8-4b10-abd0-5554c8725699\",\n                        \"4eee168d-a044-4edd-93c9-46e1fcc6c5b8\",\n                        \"edd1c55a-d1a8-46ce-a400-6ea6f5e0612a\",\n                        \"0f30fa76-a600-4c44-a7e8-cb1cd6efb01c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.763671875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11776987463235855,\n                    \"Height\": 0.04615858197212219,\n                    \"Left\": 0.3174540400505066,\n                    \"Top\": 0.36288923025131226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3174540400505066,\n                        \"Y\": 0.36296290159225464\n                    },\n                    {\n                        \"X\": 0.4351860582828522,\n                        \"Y\": 0.36288923025131226\n                    },\n                    {\n                        \"X\": 0.43522390723228455,\n                        \"Y\": 0.4089743494987488\n                    },\n                    {\n                        \"X\": 0.3174898028373718,\n                        \"Y\": 0.40904781222343445\n                    }\n                ]\n            },\n            \"Id\": \"effa1196-788e-411b-8693-facff29e82fd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"39af1d49-789e-40dd-ab1e-1973d54caaf1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.423828125,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03457335755228996,\n                    \"Height\": 0.04610670730471611,\n                    \"Left\": 0.4351860582828522,\n                    \"Top\": 0.3628676235675812\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4351860582828522,\n                        \"Y\": 0.36288923025131226\n                    },\n                    {\n                        \"X\": 0.4697209894657135,\n                        \"Y\": 0.3628676235675812\n                    },\n                    {\n                        \"X\": 0.46975943446159363,\n                        \"Y\": 0.4089527726173401\n                    },\n                    {\n                        \"X\": 0.43522390723228455,\n                        \"Y\": 0.4089743494987488\n                    }\n                ]\n            },\n            \"Id\": \"dc7bd643-d3da-4613-ad36-cf6c50050920\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3f4e932d-2304-48fb-bd4c-b1c9a16afac1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.255859375,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11855869740247726,\n                    \"Height\": 0.04615931957960129,\n                    \"Left\": 0.4697209894657135,\n                    \"Top\": 0.3627934753894806\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4697209894657135,\n                        \"Y\": 0.3628676235675812\n                    },\n                    {\n                        \"X\": 0.5882391333580017,\n                        \"Y\": 0.3627934753894806\n                    },\n                    {\n                        \"X\": 0.588279664516449,\n                        \"Y\": 0.40887880325317383\n                    },\n                    {\n                        \"X\": 0.46975943446159363,\n                        \"Y\": 0.4089527726173401\n                    }\n                ]\n            },\n            \"Id\": \"99750b47-3517-4d94-8e12-af235361fea1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"92938ed0-ba2b-459c-91ff-ce72ab0cfca1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.966796875,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035361308604478836,\n                    \"Height\": 0.046107444912195206,\n                    \"Left\": 0.5882391333580017,\n                    \"Top\": 0.3627713620662689\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5882391333580017,\n                        \"Y\": 0.3627934753894806\n                    },\n                    {\n                        \"X\": 0.6235593557357788,\n                        \"Y\": 0.3627713620662689\n                    },\n                    {\n                        \"X\": 0.6236004829406738,\n                        \"Y\": 0.40885674953460693\n                    },\n                    {\n                        \"X\": 0.588279664516449,\n                        \"Y\": 0.40887880325317383\n                    }\n                ]\n            },\n            \"Id\": \"bedcc421-7954-45a2-8ed0-c2720e42b6c5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ba189ad3-167b-4dbd-9803-cdaa0deba1a5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.353515625,\n            \"RowIndex\": 9,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1196850836277008,\n                    \"Height\": 0.046160269528627396,\n                    \"Left\": 0.6235593557357788,\n                    \"Top\": 0.36269649863243103\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6235593557357788,\n                        \"Y\": 0.3627713620662689\n                    },\n                    {\n                        \"X\": 0.7432011961936951,\n                        \"Y\": 0.36269649863243103\n                    },\n                    {\n                        \"X\": 0.7432444095611572,\n                        \"Y\": 0.40878209471702576\n                    },\n                    {\n                        \"X\": 0.6236004829406738,\n                        \"Y\": 0.40885674953460693\n                    }\n                ]\n            },\n            \"Id\": \"641b3a9e-048d-4360-998b-5428c7b0e7eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ba1a6e76-6d4d-4e85-bea7-9f1b893bda27\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.765625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036640770733356476,\n                    \"Height\": 0.06066278740763664,\n                    \"Left\": 0.05719887092709541,\n                    \"Top\": 0.4091874361038208\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05719887092709541,\n                        \"Y\": 0.40921029448509216\n                    },\n                    {\n                        \"X\": 0.0937977060675621,\n                        \"Y\": 0.4091874361038208\n                    },\n                    {\n                        \"X\": 0.09383963793516159,\n                        \"Y\": 0.46982747316360474\n                    },\n                    {\n                        \"X\": 0.05723996460437775,\n                        \"Y\": 0.46985024213790894\n                    }\n                ]\n            },\n            \"Id\": \"d806cd09-efd8-4b22-b09a-307036658e8d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"399d54f6-0fec-40c3-9ec8-f585116d5556\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.013671875,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22373919188976288,\n                    \"Height\": 0.0607796385884285,\n                    \"Left\": 0.0937977060675621,\n                    \"Top\": 0.40904781222343445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0937977060675621,\n                        \"Y\": 0.4091874361038208\n                    },\n                    {\n                        \"X\": 0.3174898028373718,\n                        \"Y\": 0.40904781222343445\n                    },\n                    {\n                        \"X\": 0.3175368905067444,\n                        \"Y\": 0.4696883261203766\n                    },\n                    {\n                        \"X\": 0.09383963793516159,\n                        \"Y\": 0.46982747316360474\n                    }\n                ]\n            },\n            \"Id\": \"08afb62d-2301-4284-82f4-b03bee8d0980\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9b2f4c19-15f6-475f-9974-ee150c1664d7\",\n                        \"13ea1576-d9bc-4d05-b640-bd00145f38d3\",\n                        \"eb06f05c-0893-42e8-8798-be5cdf12918b\",\n                        \"859e0a5d-abfc-449e-82b3-b61bc4ddcfa1\",\n                        \"0a069d73-a554-427f-8887-53a5d11d8fac\",\n                        \"eb7cf71b-ff4b-448b-a175-55ca3005bf72\",\n                        \"764c3abb-cd1d-4136-bce9-3a895bdc7652\",\n                        \"087913a5-d22d-4117-baac-d505e32938ba\",\n                        \"9d0388b1-f674-481f-acdb-0bd440163b96\",\n                        \"87005e29-5773-4012-8d46-ce5a8391301e\",\n                        \"90a91f57-dfd6-48d5-ac06-24c638134860\",\n                        \"0d329832-7be0-4cac-8623-ee4fbd1d43e1\",\n                        \"fdb0079e-dcab-434b-9166-fd81c7bbc69f\",\n                        \"17e9378a-5c54-41cf-94ff-482474520b88\",\n                        \"a2cdd6a4-b71e-4c34-ad95-fa8ec0df750d\",\n                        \"56f516a2-2dd0-4e8c-87c1-2c233658aa49\",\n                        \"4a8fb786-efa3-4f65-9315-ef6573b75424\",\n                        \"beefc999-0cef-49b1-b8d9-8efa5d0fce9b\",\n                        \"532726a7-f198-4dbf-adfe-c5ba063f2a07\",\n                        \"c3afa90a-1344-4312-9a28-b277ee894495\",\n                        \"6493d997-ae96-404b-b5ef-9afe715b6290\",\n                        \"ae84df34-e9f1-4431-b6ba-1ee3ffd16c3f\",\n                        \"24ea16cc-4ef3-4a02-bfc3-510072e260de\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 84.326171875,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11778388172388077,\n                    \"Height\": 0.06071397662162781,\n                    \"Left\": 0.3174898028373718,\n                    \"Top\": 0.4089743494987488\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3174898028373718,\n                        \"Y\": 0.40904781222343445\n                    },\n                    {\n                        \"X\": 0.43522390723228455,\n                        \"Y\": 0.4089743494987488\n                    },\n                    {\n                        \"X\": 0.435273677110672,\n                        \"Y\": 0.46961507201194763\n                    },\n                    {\n                        \"X\": 0.3175368905067444,\n                        \"Y\": 0.4696883261203766\n                    }\n                ]\n            },\n            \"Id\": \"f68743ba-a440-4c88-9e0a-afcff11f2835\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"43be48c6-de0c-459c-a2b5-81427608e67b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 60.595703125,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034586101770401,\n                    \"Height\": 0.060662295669317245,\n                    \"Left\": 0.43522390723228455,\n                    \"Top\": 0.4089527726173401\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43522390723228455,\n                        \"Y\": 0.4089743494987488\n                    },\n                    {\n                        \"X\": 0.46975943446159363,\n                        \"Y\": 0.4089527726173401\n                    },\n                    {\n                        \"X\": 0.46981000900268555,\n                        \"Y\": 0.4695935845375061\n                    },\n                    {\n                        \"X\": 0.435273677110672,\n                        \"Y\": 0.46961507201194763\n                    }\n                ]\n            },\n            \"Id\": \"0ebb1cdd-07d1-490e-aff2-15fd12b80516\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"42a8f8fd-07cc-4ef5-813e-f9c3dedbfde2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.96484375,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11857356876134872,\n                    \"Height\": 0.06071478873491287,\n                    \"Left\": 0.46975943446159363,\n                    \"Top\": 0.40887880325317383\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46975943446159363,\n                        \"Y\": 0.4089527726173401\n                    },\n                    {\n                        \"X\": 0.588279664516449,\n                        \"Y\": 0.40887880325317383\n                    },\n                    {\n                        \"X\": 0.588333010673523,\n                        \"Y\": 0.46951985359191895\n                    },\n                    {\n                        \"X\": 0.46981000900268555,\n                        \"Y\": 0.4695935845375061\n                    }\n                ]\n            },\n            \"Id\": \"bce9eedd-16f3-4cfd-805b-887496c926b6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"79b2ec2e-601d-47a7-94e6-d75a83d8f521\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 67.236328125,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03537491708993912,\n                    \"Height\": 0.06066310778260231,\n                    \"Left\": 0.588279664516449,\n                    \"Top\": 0.40885674953460693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.588279664516449,\n                        \"Y\": 0.40887880325317383\n                    },\n                    {\n                        \"X\": 0.6236004829406738,\n                        \"Y\": 0.40885674953460693\n                    },\n                    {\n                        \"X\": 0.6236546039581299,\n                        \"Y\": 0.4694978892803192\n                    },\n                    {\n                        \"X\": 0.588333010673523,\n                        \"Y\": 0.46951985359191895\n                    }\n                ]\n            },\n            \"Id\": \"b3450900-4797-4d7e-b686-7c19c2402074\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6bb1e016-9c01-4c35-b3c6-7383e983d821\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.0625,\n            \"RowIndex\": 10,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1197008267045021,\n                    \"Height\": 0.06071581318974495,\n                    \"Left\": 0.6236004829406738,\n                    \"Top\": 0.40878209471702576\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6236004829406738,\n                        \"Y\": 0.40885674953460693\n                    },\n                    {\n                        \"X\": 0.7432444095611572,\n                        \"Y\": 0.40878209471702576\n                    },\n                    {\n                        \"X\": 0.743301272392273,\n                        \"Y\": 0.46942347288131714\n                    },\n                    {\n                        \"X\": 0.6236546039581299,\n                        \"Y\": 0.4694978892803192\n                    }\n                ]\n            },\n            \"Id\": \"0e1c8bb1-28bc-4bc5-98d3-0ea536a53733\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e7aeba67-4cd6-401c-bd9f-ccf2ba7773c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 60.400390625,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03665713220834732,\n                    \"Height\": 0.08310401439666748,\n                    \"Left\": 0.05723996460437775,\n                    \"Top\": 0.46982747316360474\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05723996460437775,\n                        \"Y\": 0.46985024213790894\n                    },\n                    {\n                        \"X\": 0.09383963793516159,\n                        \"Y\": 0.46982747316360474\n                    },\n                    {\n                        \"X\": 0.09389709681272507,\n                        \"Y\": 0.5529088377952576\n                    },\n                    {\n                        \"X\": 0.0572962686419487,\n                        \"Y\": 0.5529314875602722\n                    }\n                ]\n            },\n            \"Id\": \"7e5dcda2-ea64-4886-9929-19c7b5ce58b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f29ab35f-c10d-4707-837b-932da690fea2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.94140625,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22376175224781036,\n                    \"Height\": 0.08322050422430038,\n                    \"Left\": 0.09383963793516159,\n                    \"Top\": 0.4696883261203766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09383963793516159,\n                        \"Y\": 0.46982747316360474\n                    },\n                    {\n                        \"X\": 0.3175368905067444,\n                        \"Y\": 0.4696883261203766\n                    },\n                    {\n                        \"X\": 0.31760138273239136,\n                        \"Y\": 0.5527703166007996\n                    },\n                    {\n                        \"X\": 0.09389709681272507,\n                        \"Y\": 0.5529088377952576\n                    }\n                ]\n            },\n            \"Id\": \"7d6d1910-82ef-4452-b7a2-12658a738543\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15e2fefc-e2f7-418b-8f28-206173ebbdbc\",\n                        \"c6ec4eb3-aad6-4c6d-acc7-f323e876a429\",\n                        \"c0521400-1157-4fd5-a3a5-02cb5603563a\",\n                        \"b65ba672-6133-48f6-b55f-5b47dbe1805d\",\n                        \"4b36ca5f-de43-4e77-8d2c-77d61d27544e\",\n                        \"432fb44e-3185-4821-ab7e-1b7de6b12cee\",\n                        \"898a1345-3fdf-4521-b20f-901eba3ef485\",\n                        \"71b90d46-6d3b-4c58-bd94-c28bc7607502\",\n                        \"0b6c2081-e114-4993-acb5-a04f60b15027\",\n                        \"d78af635-507c-4859-8449-e9c5842d08d4\",\n                        \"a7e22ff6-c6ce-4e70-a388-e7f67581ba82\",\n                        \"86703745-c561-41ba-9f52-b1bbd83820a2\",\n                        \"42036e51-6ad2-4984-9127-043fa96be4e3\",\n                        \"9062eb26-0bba-4c35-ba29-89355c059aeb\",\n                        \"0c1314bb-c22f-4bf2-b18c-0af92cffae5a\",\n                        \"9b634e51-2b2c-48a0-a193-918ff2487d45\",\n                        \"7bb54b19-1232-49df-a756-8689a1b19fc8\",\n                        \"fac10a9c-593f-4875-b05b-f10e233aaad5\",\n                        \"3250bfbf-dc04-4a4f-ac42-0a4ffda86154\",\n                        \"86aaad99-d23b-4774-b2cc-b04504856f43\",\n                        \"39c0b032-cc5b-486a-8b4d-98ae0eb899fd\",\n                        \"bd0110d7-87a5-4abe-ba73-4c0b5b11963c\",\n                        \"c805d41f-d78b-40f6-b420-6251c4ca184f\",\n                        \"c5040c51-7dd9-4e33-b351-774541325ed5\",\n                        \"db6d773a-781c-43cc-ba98-9d1f6e9a5a18\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.25390625,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11780501902103424,\n                    \"Height\": 0.08315523713827133,\n                    \"Left\": 0.3175368905067444,\n                    \"Top\": 0.46961507201194763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3175368905067444,\n                        \"Y\": 0.4696883261203766\n                    },\n                    {\n                        \"X\": 0.435273677110672,\n                        \"Y\": 0.46961507201194763\n                    },\n                    {\n                        \"X\": 0.43534189462661743,\n                        \"Y\": 0.5526974201202393\n                    },\n                    {\n                        \"X\": 0.31760138273239136,\n                        \"Y\": 0.5527703166007996\n                    }\n                ]\n            },\n            \"Id\": \"c6307354-d831-4645-99a6-853f40fb433c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dd90e20b-90a6-438e-ae4f-9c644f4c76a2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.23046875,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034605614840984344,\n                    \"Height\": 0.08310382068157196,\n                    \"Left\": 0.435273677110672,\n                    \"Top\": 0.4695935845375061\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.435273677110672,\n                        \"Y\": 0.46961507201194763\n                    },\n                    {\n                        \"X\": 0.46981000900268555,\n                        \"Y\": 0.4695935845375061\n                    },\n                    {\n                        \"X\": 0.46987929940223694,\n                        \"Y\": 0.5526760220527649\n                    },\n                    {\n                        \"X\": 0.43534189462661743,\n                        \"Y\": 0.5526974201202393\n                    }\n                ]\n            },\n            \"Id\": \"6d7e62ad-4501-4227-bdb4-b0f316ebf684\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7e3944fe-1519-4dc7-81a1-48d761f23d0e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.892578125,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11859601736068726,\n                    \"Height\": 0.08315616846084595,\n                    \"Left\": 0.46981000900268555,\n                    \"Top\": 0.46951985359191895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46981000900268555,\n                        \"Y\": 0.4695935845375061\n                    },\n                    {\n                        \"X\": 0.588333010673523,\n                        \"Y\": 0.46951985359191895\n                    },\n                    {\n                        \"X\": 0.5884060263633728,\n                        \"Y\": 0.5526026487350464\n                    },\n                    {\n                        \"X\": 0.46987929940223694,\n                        \"Y\": 0.5526760220527649\n                    }\n                ]\n            },\n            \"Id\": \"5c1904fb-f602-4355-8ad7-9de46777d193\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9097f55d-a9a5-4cf7-893f-a2e079873104\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 67.96875,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03539576008915901,\n                    \"Height\": 0.08310475200414658,\n                    \"Left\": 0.588333010673523,\n                    \"Top\": 0.4694978892803192\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.588333010673523,\n                        \"Y\": 0.46951985359191895\n                    },\n                    {\n                        \"X\": 0.6236546039581299,\n                        \"Y\": 0.4694978892803192\n                    },\n                    {\n                        \"X\": 0.6237287521362305,\n                        \"Y\": 0.5525807738304138\n                    },\n                    {\n                        \"X\": 0.5884060263633728,\n                        \"Y\": 0.5526026487350464\n                    }\n                ]\n            },\n            \"Id\": \"f271738e-0b08-4ef1-9557-1f6fd665c2d6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5547fb53-a0e1-4186-805e-a56c785b21e6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.990234375,\n            \"RowIndex\": 11,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11972463130950928,\n                    \"Height\": 0.08315730839967728,\n                    \"Left\": 0.6236546039581299,\n                    \"Top\": 0.46942347288131714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6236546039581299,\n                        \"Y\": 0.4694978892803192\n                    },\n                    {\n                        \"X\": 0.743301272392273,\n                        \"Y\": 0.46942347288131714\n                    },\n                    {\n                        \"X\": 0.7433792352676392,\n                        \"Y\": 0.552506685256958\n                    },\n                    {\n                        \"X\": 0.6237287521362305,\n                        \"Y\": 0.5525807738304138\n                    }\n                ]\n            },\n            \"Id\": \"432cd068-7bd5-4981-bcbe-6cbc9ead9e67\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d570772a-dfb0-4823-838e-77202e3dc7ea\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 58.154296875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0366373173892498,\n                    \"Height\": 0.0527850016951561,\n                    \"Left\": 0.0572962686419487,\n                    \"Top\": 0.5529088377952576\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0572962686419487,\n                        \"Y\": 0.5529314875602722\n                    },\n                    {\n                        \"X\": 0.09389709681272507,\n                        \"Y\": 0.5529088377952576\n                    },\n                    {\n                        \"X\": 0.0939335823059082,\n                        \"Y\": 0.605671226978302\n                    },\n                    {\n                        \"X\": 0.057332027703523636,\n                        \"Y\": 0.6056938171386719\n                    }\n                ]\n            },\n            \"Id\": \"88e7b093-81a3-45db-b740-b812270162c8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e56ebd87-584e-4821-847e-398a5aef25f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.62109375,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22374525666236877,\n                    \"Height\": 0.05290091410279274,\n                    \"Left\": 0.09389709681272507,\n                    \"Top\": 0.5527703166007996\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09389709681272507,\n                        \"Y\": 0.5529088377952576\n                    },\n                    {\n                        \"X\": 0.31760138273239136,\n                        \"Y\": 0.5527703166007996\n                    },\n                    {\n                        \"X\": 0.31764236092567444,\n                        \"Y\": 0.6055331230163574\n                    },\n                    {\n                        \"X\": 0.0939335823059082,\n                        \"Y\": 0.605671226978302\n                    }\n                ]\n            },\n            \"Id\": \"e4d4f396-c733-4656-b871-28476d8652af\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0f704525-e7b6-49e9-8280-17ed950da8d2\",\n                        \"2e87a207-cfd3-4fc3-9e41-0d4e52a36d56\",\n                        \"948f7b1c-2619-4f33-8855-3fa4778d36d8\",\n                        \"59da2176-9fe7-418c-a59d-6d0330b561ee\",\n                        \"3c73b1f8-639c-4cdf-8d2e-460d43d4c1a2\",\n                        \"64fee6ce-798f-414b-9da3-236179dfe3be\",\n                        \"a6baca82-38ad-42ab-a33b-c1246e9778f8\",\n                        \"7e3d7a86-738a-4c9e-809d-0c518ee2100d\",\n                        \"073c88c3-1bc4-4163-8b9f-51c9da38ec97\",\n                        \"303605f4-7bc9-445b-86d5-963fdf6577e2\",\n                        \"028fc832-3230-48a5-bdd0-8c3cda71acb4\",\n                        \"dc41073a-ea15-4485-9382-780589b29d19\",\n                        \"c5b74c67-e522-466a-9004-1b1f64e5e17a\",\n                        \"59bb145b-f63f-4c50-ab4b-d83b87f8c62b\",\n                        \"a7d72bfc-2140-4b7a-9e47-918aaa54d852\",\n                        \"384b82a8-c4dd-47fd-84c1-5d829e724254\",\n                        \"241de273-d9f4-4b32-a25b-42aedd81e0eb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 82.080078125,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11778383702039719,\n                    \"Height\": 0.05283571779727936,\n                    \"Left\": 0.31760138273239136,\n                    \"Top\": 0.5526974201202393\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31760138273239136,\n                        \"Y\": 0.5527703166007996\n                    },\n                    {\n                        \"X\": 0.43534189462661743,\n                        \"Y\": 0.5526974201202393\n                    },\n                    {\n                        \"X\": 0.43538522720336914,\n                        \"Y\": 0.6054604649543762\n                    },\n                    {\n                        \"X\": 0.31764236092567444,\n                        \"Y\": 0.6055331230163574\n                    }\n                ]\n            },\n            \"Id\": \"99decca7-ca80-4b2e-b6d0-4eabf07ba05c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1bc27faf-5b74-4d4d-bb91-2acc7ded950d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 58.984375,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034581415355205536,\n                    \"Height\": 0.05278442054986954,\n                    \"Left\": 0.43534189462661743,\n                    \"Top\": 0.5526760220527649\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43534189462661743,\n                        \"Y\": 0.5526974201202393\n                    },\n                    {\n                        \"X\": 0.46987929940223694,\n                        \"Y\": 0.5526760220527649\n                    },\n                    {\n                        \"X\": 0.46992331743240356,\n                        \"Y\": 0.6054391264915466\n                    },\n                    {\n                        \"X\": 0.43538522720336914,\n                        \"Y\": 0.6054604649543762\n                    }\n                ]\n            },\n            \"Id\": \"1a69e5b6-87b9-445b-ad83-4366956469df\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5a44bc51-741d-4f65-ad66-6d1359f387c2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.572265625,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11857309937477112,\n                    \"Height\": 0.05283648520708084,\n                    \"Left\": 0.46987929940223694,\n                    \"Top\": 0.5526026487350464\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46987929940223694,\n                        \"Y\": 0.5526760220527649\n                    },\n                    {\n                        \"X\": 0.5884060263633728,\n                        \"Y\": 0.5526026487350464\n                    },\n                    {\n                        \"X\": 0.5884523987770081,\n                        \"Y\": 0.6053659915924072\n                    },\n                    {\n                        \"X\": 0.46992331743240356,\n                        \"Y\": 0.6054391264915466\n                    }\n                ]\n            },\n            \"Id\": \"dab4a3de-137b-4ca3-a020-d341114ad079\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"91eb2ca8-e205-49df-8912-2bcf0cc22218\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 65.4296875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035369813442230225,\n                    \"Height\": 0.05278518795967102,\n                    \"Left\": 0.5884060263633728,\n                    \"Top\": 0.5525807738304138\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5884060263633728,\n                        \"Y\": 0.5526026487350464\n                    },\n                    {\n                        \"X\": 0.6237287521362305,\n                        \"Y\": 0.5525807738304138\n                    },\n                    {\n                        \"X\": 0.623775839805603,\n                        \"Y\": 0.6053441762924194\n                    },\n                    {\n                        \"X\": 0.5884523987770081,\n                        \"Y\": 0.6053659915924072\n                    }\n                ]\n            },\n            \"Id\": \"da14d82c-5116-4e71-a095-2e41844a7a4d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c3bc7c7d-898d-4024-b775-efca651e852f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.669921875,\n            \"RowIndex\": 12,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11969996243715286,\n                    \"Height\": 0.05283746123313904,\n                    \"Left\": 0.6237287521362305,\n                    \"Top\": 0.552506685256958\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6237287521362305,\n                        \"Y\": 0.5525807738304138\n                    },\n                    {\n                        \"X\": 0.7433792352676392,\n                        \"Y\": 0.552506685256958\n                    },\n                    {\n                        \"X\": 0.7434287071228027,\n                        \"Y\": 0.6052703261375427\n                    },\n                    {\n                        \"X\": 0.623775839805603,\n                        \"Y\": 0.6053441762924194\n                    }\n                ]\n            },\n            \"Id\": \"ffa0a23c-07e5-4b6e-beb4-25657ae219b4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a73141e6-e921-4dfc-9627-a7afe8a21ef8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.033203125,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0366489551961422,\n                    \"Height\": 0.06855614483356476,\n                    \"Left\": 0.057332027703523636,\n                    \"Top\": 0.605671226978302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.057332027703523636,\n                        \"Y\": 0.6056938171386719\n                    },\n                    {\n                        \"X\": 0.0939335823059082,\n                        \"Y\": 0.605671226978302\n                    },\n                    {\n                        \"X\": 0.09398098289966583,\n                        \"Y\": 0.6742048859596252\n                    },\n                    {\n                        \"X\": 0.05737847089767456,\n                        \"Y\": 0.6742273569107056\n                    }\n                ]\n            },\n            \"Id\": \"a5871df0-ed24-48dc-995e-d54e269694a8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"edee9ce9-749d-4e75-b8f2-887c6b7582f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.939453125,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22376199066638947,\n                    \"Height\": 0.06867173314094543,\n                    \"Left\": 0.0939335823059082,\n                    \"Top\": 0.6055331230163574\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0939335823059082,\n                        \"Y\": 0.605671226978302\n                    },\n                    {\n                        \"X\": 0.31764236092567444,\n                        \"Y\": 0.6055331230163574\n                    },\n                    {\n                        \"X\": 0.3176955580711365,\n                        \"Y\": 0.6740673184394836\n                    },\n                    {\n                        \"X\": 0.09398098289966583,\n                        \"Y\": 0.6742048859596252\n                    }\n                ]\n            },\n            \"Id\": \"214871d7-3cb6-4e46-91fe-439a411b166a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0fd53106-e29d-4dd1-8eda-95cb4f7d1a88\",\n                        \"9f2d2b16-0bf7-4939-8217-57a2ff652f74\",\n                        \"96fe9d84-0e3e-49a0-b6f3-fccfc559f677\",\n                        \"28cbe259-0945-43a0-826c-607f4406d641\",\n                        \"9642bf50-f26c-43dd-ae1a-1d187bdce4a5\",\n                        \"bfbbe94d-dfe7-4952-be76-0c15f6c1c884\",\n                        \"05eda9ce-f2c5-49f9-a550-ec9c8eae824d\",\n                        \"f43acb6b-ddc4-4a15-b812-94fd0045b544\",\n                        \"6d36655b-dc59-4df9-9c6e-5b01c602d428\",\n                        \"e7a05957-b295-4bd3-8768-f313a2a7aad6\",\n                        \"e36134cb-186b-4fb1-aee6-d1dfcb3bc996\",\n                        \"4acc45aa-35cf-46ac-b0b9-8b3edb69635a\",\n                        \"bf231e40-a2ef-4dbd-aa1b-0a98e1ca382d\",\n                        \"558eadcd-9ed4-42bd-97fe-960ee17b2e00\",\n                        \"fe7cf899-78a8-491e-9e13-47c3b6ecd783\",\n                        \"427d386d-9fbe-4af0-ad0d-17857649ca58\",\n                        \"8e815a1a-dbe4-46a7-b714-c1ccf9b0c166\",\n                        \"5f128176-4c31-4609-8913-bfe5a254b7b6\",\n                        \"d3ceabcf-34bd-4bdf-96c5-719724d6b53d\",\n                        \"761e05c5-5b27-40ac-b65a-cceff9b75504\",\n                        \"eb67223a-9efc-43f2-bf5c-358f9e785dd1\",\n                        \"a7b3b22d-5ea7-4830-bdd0-135d279e297e\",\n                        \"165d76b4-387c-43ad-8474-5b94fe262d5e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.349609375,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11779914051294327,\n                    \"Height\": 0.06860685348510742,\n                    \"Left\": 0.31764236092567444,\n                    \"Top\": 0.6054604649543762\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31764236092567444,\n                        \"Y\": 0.6055331230163574\n                    },\n                    {\n                        \"X\": 0.43538522720336914,\n                        \"Y\": 0.6054604649543762\n                    },\n                    {\n                        \"X\": 0.4354414939880371,\n                        \"Y\": 0.6739948987960815\n                    },\n                    {\n                        \"X\": 0.3176955580711365,\n                        \"Y\": 0.6740673184394836\n                    }\n                ]\n            },\n            \"Id\": \"71cac3fd-120c-4d73-b5ae-39f28d367691\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"56dec224-0f0d-4362-a8e5-f3e5a7e0847d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.86328125,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03459526225924492,\n                    \"Height\": 0.06855577230453491,\n                    \"Left\": 0.43538522720336914,\n                    \"Top\": 0.6054391264915466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43538522720336914,\n                        \"Y\": 0.6054604649543762\n                    },\n                    {\n                        \"X\": 0.46992331743240356,\n                        \"Y\": 0.6054391264915466\n                    },\n                    {\n                        \"X\": 0.46998047828674316,\n                        \"Y\": 0.6739736795425415\n                    },\n                    {\n                        \"X\": 0.4354414939880371,\n                        \"Y\": 0.6739948987960815\n                    }\n                ]\n            },\n            \"Id\": \"3be6797f-a7fb-4207-ba5c-4b7e6b415b4b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"068aa091-886a-43f4-8a4f-b30085836770\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.890625,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11858933418989182,\n                    \"Height\": 0.06860770285129547,\n                    \"Left\": 0.46992331743240356,\n                    \"Top\": 0.6053659915924072\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46992331743240356,\n                        \"Y\": 0.6054391264915466\n                    },\n                    {\n                        \"X\": 0.5884523987770081,\n                        \"Y\": 0.6053659915924072\n                    },\n                    {\n                        \"X\": 0.588512659072876,\n                        \"Y\": 0.6739007830619812\n                    },\n                    {\n                        \"X\": 0.46998047828674316,\n                        \"Y\": 0.6739736795425415\n                    }\n                ]\n            },\n            \"Id\": \"b120503b-215a-442a-83ef-1bdca87eebca\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"82861a70-59fd-4c66-9307-7bb38c3ea8ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 66.40625,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03538459539413452,\n                    \"Height\": 0.06855662167072296,\n                    \"Left\": 0.5884523987770081,\n                    \"Top\": 0.6053441762924194\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5884523987770081,\n                        \"Y\": 0.6053659915924072\n                    },\n                    {\n                        \"X\": 0.623775839805603,\n                        \"Y\": 0.6053441762924194\n                    },\n                    {\n                        \"X\": 0.6238369941711426,\n                        \"Y\": 0.673879086971283\n                    },\n                    {\n                        \"X\": 0.588512659072876,\n                        \"Y\": 0.6739007830619812\n                    }\n                ]\n            },\n            \"Id\": \"b3d76f3a-c922-4436-bacd-283f1651d014\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3570aeaf-08d3-4fb1-88e5-552bfd01a2e7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.98828125,\n            \"RowIndex\": 13,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11971715092658997,\n                    \"Height\": 0.06860876083374023,\n                    \"Left\": 0.623775839805603,\n                    \"Top\": 0.6052703261375427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.623775839805603,\n                        \"Y\": 0.6053441762924194\n                    },\n                    {\n                        \"X\": 0.7434287071228027,\n                        \"Y\": 0.6052703261375427\n                    },\n                    {\n                        \"X\": 0.7434929609298706,\n                        \"Y\": 0.6738054752349854\n                    },\n                    {\n                        \"X\": 0.6238369941711426,\n                        \"Y\": 0.673879086971283\n                    }\n                ]\n            },\n            \"Id\": \"4d5884a2-0189-478f-aee0-8196c1967e46\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c4efeaf0-263e-4db2-9447-69d6c05e90ef\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 60.302734375,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03664526343345642,\n                    \"Height\": 0.061841435730457306,\n                    \"Left\": 0.05737847089767456,\n                    \"Top\": 0.6742048859596252\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05737847089767456,\n                        \"Y\": 0.6742273569107056\n                    },\n                    {\n                        \"X\": 0.09398098289966583,\n                        \"Y\": 0.6742048859596252\n                    },\n                    {\n                        \"X\": 0.09402373433113098,\n                        \"Y\": 0.7360238432884216\n                    },\n                    {\n                        \"X\": 0.05742036551237106,\n                        \"Y\": 0.736046314239502\n                    }\n                ]\n            },\n            \"Id\": \"e633056e-3406-44a8-800c-67f5579f513b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"23e5ceb1-ae57-47fc-9730-4b9846e7a9c1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.74609375,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22376258671283722,\n                    \"Height\": 0.06195656582713127,\n                    \"Left\": 0.09398098289966583,\n                    \"Top\": 0.6740673184394836\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09398098289966583,\n                        \"Y\": 0.6742048859596252\n                    },\n                    {\n                        \"X\": 0.3176955580711365,\n                        \"Y\": 0.6740673184394836\n                    },\n                    {\n                        \"X\": 0.31774356961250305,\n                        \"Y\": 0.735886812210083\n                    },\n                    {\n                        \"X\": 0.09402373433113098,\n                        \"Y\": 0.7360238432884216\n                    }\n                ]\n            },\n            \"Id\": \"9a3324ab-9546-413f-b4b4-24be3d7602f7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5d7f9a11-db64-4ac0-a395-76106346740c\",\n                        \"2ed350a6-7b4c-4d04-b882-4197843491b0\",\n                        \"f3caf714-1c07-4c7b-9b3f-07810d3b0e75\",\n                        \"abb14090-4147-4747-8ee5-e2481b10a36c\",\n                        \"fc82fa50-4f37-4779-852e-ba2ca6db479d\",\n                        \"7b48abc2-224a-48f2-87a4-426555a58738\",\n                        \"6e95aaed-2fcc-4319-a617-87f6101b4ff7\",\n                        \"6bb70176-5716-4ecf-862c-4438e748dfb1\",\n                        \"e7ece973-7e1e-4289-8e28-cef7b360584b\",\n                        \"b0b93496-773b-40fb-a8c7-c76ae48a4181\",\n                        \"848bf3d9-bb6a-46d2-b05d-a8edb11ddcad\",\n                        \"48b42c4f-837f-431b-b16b-bf77d1941993\",\n                        \"9d512a0a-20e4-48d0-8697-0c82c5b2c1fd\",\n                        \"8bce3b74-9f2b-4798-b112-1fa521dc1a92\",\n                        \"c2792e24-d0c2-4cd7-8547-618d4f9911ad\",\n                        \"156c908e-5cb1-4bb9-8b6f-124a8beab890\",\n                        \"8aa402d3-e9ef-4366-9100-59fdcacab8fa\",\n                        \"eb4b0f12-fba2-4e44-ace5-13d13fdac7b3\",\n                        \"663a4690-b7ea-45e4-adf0-72c1824b1380\",\n                        \"f89799ba-4352-416c-9c74-0d78e049dcac\",\n                        \"ff32e496-5adb-4367-866c-b8bd5fc2bb62\",\n                        \"a0012923-fef1-432f-85fc-4994c2c1f96d\",\n                        \"1cdf6221-e301-4b82-9b07-dde3d3d06404\",\n                        \"e28ba636-7b05-45a7-9fd1-4222b2dbdea8\",\n                        \"af85462e-a1c6-4c6f-9c2a-12760c26ce20\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 85.05859375,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11779668927192688,\n                    \"Height\": 0.061891887336969376,\n                    \"Left\": 0.3176955580711365,\n                    \"Top\": 0.6739948987960815\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3176955580711365,\n                        \"Y\": 0.6740673184394836\n                    },\n                    {\n                        \"X\": 0.4354414939880371,\n                        \"Y\": 0.6739948987960815\n                    },\n                    {\n                        \"X\": 0.43549224734306335,\n                        \"Y\": 0.73581463098526\n                    },\n                    {\n                        \"X\": 0.31774356961250305,\n                        \"Y\": 0.735886812210083\n                    }\n                ]\n            },\n            \"Id\": \"4971f758-8295-485a-90fa-7ed60d6e79d7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2739a1e2-7db9-4db9-b74e-c1e0f15455c1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 61.083984375,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03459055721759796,\n                    \"Height\": 0.061840977519750595,\n                    \"Left\": 0.4354414939880371,\n                    \"Top\": 0.6739736795425415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4354414939880371,\n                        \"Y\": 0.6739948987960815\n                    },\n                    {\n                        \"X\": 0.46998047828674316,\n                        \"Y\": 0.6739736795425415\n                    },\n                    {\n                        \"X\": 0.47003206610679626,\n                        \"Y\": 0.7357934713363647\n                    },\n                    {\n                        \"X\": 0.43549224734306335,\n                        \"Y\": 0.73581463098526\n                    }\n                ]\n            },\n            \"Id\": \"56910bdd-3253-4cb1-8a40-da1afff03892\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b3e6a291-c660-4ad9-bb84-b87ccff0effa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.697265625,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11858651787042618,\n                    \"Height\": 0.06189269945025444,\n                    \"Left\": 0.46998047828674316,\n                    \"Top\": 0.6739007830619812\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46998047828674316,\n                        \"Y\": 0.6739736795425415\n                    },\n                    {\n                        \"X\": 0.588512659072876,\n                        \"Y\": 0.6739007830619812\n                    },\n                    {\n                        \"X\": 0.5885670185089111,\n                        \"Y\": 0.7357208728790283\n                    },\n                    {\n                        \"X\": 0.47003206610679626,\n                        \"Y\": 0.7357934713363647\n                    }\n                ]\n            },\n            \"Id\": \"4fd420d1-3304-4035-9eec-ea0cbba566d5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2114e01-37f2-4b42-aef2-f0cd3b2c2efc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 67.822265625,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035379521548748016,\n                    \"Height\": 0.06184178963303566,\n                    \"Left\": 0.588512659072876,\n                    \"Top\": 0.673879086971283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.588512659072876,\n                        \"Y\": 0.6739007830619812\n                    },\n                    {\n                        \"X\": 0.6238369941711426,\n                        \"Y\": 0.673879086971283\n                    },\n                    {\n                        \"X\": 0.6238921880722046,\n                        \"Y\": 0.7356992363929749\n                    },\n                    {\n                        \"X\": 0.5885670185089111,\n                        \"Y\": 0.7357208728790283\n                    }\n                ]\n            },\n            \"Id\": \"a5608627-bb8f-4fdf-b76f-e437103f199e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f2c3c58a-baa5-4edd-8d27-451c85afa2e8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 89.794921875,\n            \"RowIndex\": 14,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11971396207809448,\n                    \"Height\": 0.06189372017979622,\n                    \"Left\": 0.6238369941711426,\n                    \"Top\": 0.6738054752349854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6238369941711426,\n                        \"Y\": 0.673879086971283\n                    },\n                    {\n                        \"X\": 0.7434929609298706,\n                        \"Y\": 0.6738054752349854\n                    },\n                    {\n                        \"X\": 0.7435509562492371,\n                        \"Y\": 0.7356259226799011\n                    },\n                    {\n                        \"X\": 0.6238921880722046,\n                        \"Y\": 0.7356992363929749\n                    }\n                ]\n            },\n            \"Id\": \"a2c4b12a-203c-446b-b869-ce95b976b5fd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cb18125d-6c1d-4207-9724-a3589939533a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 65.8203125,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036632463335990906,\n                    \"Height\": 0.05337662249803543,\n                    \"Left\": 0.05703943967819214,\n                    \"Top\": 0.1739305704832077\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05703943967819214,\n                        \"Y\": 0.17395371198654175\n                    },\n                    {\n                        \"X\": 0.09363500773906708,\n                        \"Y\": 0.1739305704832077\n                    },\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    },\n                    {\n                        \"X\": 0.05707559734582901,\n                        \"Y\": 0.22730720043182373\n                    }\n                ]\n            },\n            \"Id\": \"2fea3f5f-1692-45db-b3b5-9baca81abd4e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3282defb-b8c5-4caf-a2b3-9b8406fe625b\",\n                        \"c5b0385d-3232-464c-9907-7ac5291bc9cd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 92.28515625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22371357679367065,\n                    \"Height\": 0.053495001047849655,\n                    \"Left\": 0.09363500773906708,\n                    \"Top\": 0.1737891137599945\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09363500773906708,\n                        \"Y\": 0.1739305704832077\n                    },\n                    {\n                        \"X\": 0.31730714440345764,\n                        \"Y\": 0.1737891137599945\n                    },\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    },\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    }\n                ]\n            },\n            \"Id\": \"743de05a-83e9-4ef5-93d2-62c8270f0fef\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f81600a6-c3c9-4a69-89e0-e0e8194c9025\",\n                        \"b2b11938-9111-442e-b0df-6c1607aa0aa0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 53.80859375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4257487952709198,\n                    \"Height\": 0.030583903193473816,\n                    \"Left\": 0.31732502579689026,\n                    \"Top\": 0.19655917584896088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31732502579689026,\n                        \"Y\": 0.19682806730270386\n                    },\n                    {\n                        \"X\": 0.7430453896522522,\n                        \"Y\": 0.19655917584896088\n                    },\n                    {\n                        \"X\": 0.7430738210678101,\n                        \"Y\": 0.22687464952468872\n                    },\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    }\n                ]\n            },\n            \"Id\": \"89ac572f-227d-4834-bcbe-1b0c63643fca\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a41d54d7-11f8-4d5f-8e54-2f7e71a8ca5a\",\n                        \"43e32d61-0163-4804-84bd-30b604d71555\",\n                        \"2dc0273d-6bd5-4e47-af35-d44dd260f8b1\",\n                        \"a39712b0-b464-4825-ae02-3b81a1c6b6d3\",\n                        \"9fec3c0c-381a-4f97-9c55-0c4b6655715a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 70.80078125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03663823753595352,\n                    \"Height\": 0.0606546513736248,\n                    \"Left\": 0.05707559734582901,\n                    \"Top\": 0.22728411853313446\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05707559734582901,\n                        \"Y\": 0.22730720043182373\n                    },\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    },\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    },\n                    {\n                        \"X\": 0.057116687297821045,\n                        \"Y\": 0.28793877363204956\n                    }\n                ]\n            },\n            \"Id\": \"d640e47b-cb35-4107-92b3-093266fd693c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"32a65f8b-d245-422f-90e4-f4118c7f8925\",\n                        \"13e2838b-3489-4b55-967d-efd04863428f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 91.796875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22372375428676605,\n                    \"Height\": 0.060772690922021866,\n                    \"Left\": 0.09367190301418304,\n                    \"Top\": 0.2271430790424347\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09367190301418304,\n                        \"Y\": 0.22728411853313446\n                    },\n                    {\n                        \"X\": 0.31734856963157654,\n                        \"Y\": 0.2271430790424347\n                    },\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    },\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    }\n                ]\n            },\n            \"Id\": \"fb33d156-5083-45a1-9fa3-bf53ee65df53\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"58817ee0-86cd-48af-841f-246e90573540\",\n                        \"0495c9c1-91ae-4ebc-9394-76fac935fb49\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 53.7109375,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4257642328739166,\n                    \"Height\": 0.03786034137010574,\n                    \"Left\": 0.31736645102500916,\n                    \"Top\": 0.24991486966609955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31736645102500916,\n                        \"Y\": 0.25018295645713806\n                    },\n                    {\n                        \"X\": 0.7430954575538635,\n                        \"Y\": 0.24991486966609955\n                    },\n                    {\n                        \"X\": 0.7431306838989258,\n                        \"Y\": 0.28750768303871155\n                    },\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    }\n                ]\n            },\n            \"Id\": \"ed406cde-6cc3-4fb8-a080-096f61efb73c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f91325ca-2a47-4e74-8cfb-f42618e0f0ae\",\n                        \"ce296e49-018a-4061-a236-8a0e71c39a02\",\n                        \"f9399a0b-3e2b-4cd6-a166-309cd78de14a\",\n                        \"e2957279-e921-4d13-8a61-8bec3f89d3e7\",\n                        \"3b483657-620c-46be-82d0-fa5c1a684449\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 67.919921875,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036630693823099136,\n                    \"Height\": 0.04853026568889618,\n                    \"Left\": 0.057116687297821045,\n                    \"Top\": 0.28791576623916626\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.057116687297821045,\n                        \"Y\": 0.28793877363204956\n                    },\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    },\n                    {\n                        \"X\": 0.09374737739562988,\n                        \"Y\": 0.3364230990409851\n                    },\n                    {\n                        \"X\": 0.05714955925941467,\n                        \"Y\": 0.33644604682922363\n                    }\n                ]\n            },\n            \"Id\": \"70d5eb86-a9b9-4033-a6af-806a271d1f80\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1d198f6e-2c9d-42d8-a46b-9781aa8757e3\",\n                        \"eb5c7896-7204-4781-ba4e-7ad733fd987c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 93.9453125,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 2,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22371947765350342,\n                    \"Height\": 0.04864789545536041,\n                    \"Left\": 0.09371383488178253,\n                    \"Top\": 0.2877752184867859\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09371383488178253,\n                        \"Y\": 0.28791576623916626\n                    },\n                    {\n                        \"X\": 0.3173956573009491,\n                        \"Y\": 0.2877752184867859\n                    },\n                    {\n                        \"X\": 0.31743329763412476,\n                        \"Y\": 0.3362829089164734\n                    },\n                    {\n                        \"X\": 0.09374737739562988,\n                        \"Y\": 0.3364230990409851\n                    }\n                ]\n            },\n            \"Id\": \"c4249cf8-10ea-4cbd-93da-024ec627daa4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"95190485-e3b5-4c86-a61e-4dea069f9be2\",\n                        \"2f17c32b-4991-43f9-88e6-62edecbdc793\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 53.125,\n            \"RowIndex\": 7,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4257626533508301,\n                    \"Height\": 0.025733966380357742,\n                    \"Left\": 0.3174135386943817,\n                    \"Top\": 0.31054896116256714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3174135386943817,\n                        \"Y\": 0.3108161389827728\n                    },\n                    {\n                        \"X\": 0.7431523203849792,\n                        \"Y\": 0.31054896116256714\n                    },\n                    {\n                        \"X\": 0.7431761622428894,\n                        \"Y\": 0.33601608872413635\n                    },\n                    {\n                        \"X\": 0.31743329763412476,\n                        \"Y\": 0.3362829089164734\n                    }\n                ]\n            },\n            \"Id\": \"8109957a-3f54-4f41-a611-7882bec8c27a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9791ae08-f5b0-4aef-b33e-c88a8e814f06\",\n                        \"63de62fd-d607-40c1-9e41-b7428f56a100\",\n                        \"2bfeaf73-3d99-472e-9af6-5610867ca68c\",\n                        \"e049f261-81ac-4984-8318-7d5c6d34655a\",\n                        \"26b88649-8c31-4ffe-892d-fe5dd859f55a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"FOOTER\"\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 63.330078125,\n            \"RowIndex\": 8,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 7,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6860516667366028,\n                    \"Height\": 0.027109701186418533,\n                    \"Left\": 0.05714955925941467,\n                    \"Top\": 0.33601608872413635\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05714955925941467,\n                        \"Y\": 0.33644604682922363\n                    },\n                    {\n                        \"X\": 0.7431761622428894,\n                        \"Y\": 0.33601608872413635\n                    },\n                    {\n                        \"X\": 0.7432011961936951,\n                        \"Y\": 0.36269649863243103\n                    },\n                    {\n                        \"X\": 0.05716763809323311,\n                        \"Y\": 0.3631258010864258\n                    }\n                ]\n            },\n            \"Id\": \"2bfcd877-baf9-487f-a07a-60c3d7addcd1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"efbb3a5f-6cd0-4468-9ad5-e5f34c0bb7be\",\n                        \"fb016e36-b069-4af6-b06a-cb533ea06191\",\n                        \"775a904f-bf4c-49ef-ad87-4317d51baf03\",\n                        \"e2c15c3e-4a1b-4d73-bfb9-f18f3b6a58bc\",\n                        \"97ef444c-5be8-4ef5-a881-e96758a408e3\",\n                        \"14029c09-036f-4e5a-bd16-8b3bc27f7549\",\n                        \"c21e12f9-d826-4e41-af49-f07833a94175\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TITLE\",\n            \"Confidence\": 94.482421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6709544658660889,\n                    \"Height\": 0.013723303563892841,\n                    \"Left\": 0.0638686940073967,\n                    \"Top\": 0.09200440347194672\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0638686940073967,\n                        \"Y\": 0.09243062883615494\n                    },\n                    {\n                        \"X\": 0.7348107099533081,\n                        \"Y\": 0.09200440347194672\n                    },\n                    {\n                        \"X\": 0.7348231673240662,\n                        \"Y\": 0.10530179738998413\n                    },\n                    {\n                        \"X\": 0.06387773901224136,\n                        \"Y\": 0.10572770982980728\n                    }\n                ]\n            },\n            \"Id\": \"2864ad89-5414-4a85-b81f-da68cd770246\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2e4c1eea-9a22-45d4-8a19-dd4758711844\",\n                        \"6c4c4620-9a59-4fe7-a280-e787dc48b264\",\n                        \"7fecd636-43be-4c66-8b76-43b8c432ca2f\",\n                        \"2b95b28a-c85b-4746-aeb5-02223d9a8293\",\n                        \"dea98ee0-7332-42b3-9c02-995860997075\",\n                        \"9aed7e77-48f6-4d5b-9fd7-7ebe10fd636a\",\n                        \"ca7ff975-a27a-46ad-ae2a-69591761f04d\",\n                        \"1e2eac36-1c62-4296-ae75-40b84afb2e75\",\n                        \"3659cade-cba6-4ae3-9d4c-89239d626fef\",\n                        \"eba48834-d4f4-4a7f-afe6-ba18e98c0e85\",\n                        \"682fc38e-3109-4e72-aba0-3abcb98906a5\",\n                        \"cef2fa54-d69b-4662-b3a8-a04d914b4b37\",\n                        \"1e26a9a2-57fb-4e44-b415-7776668f0222\",\n                        \"461d95c0-c50a-4c00-8f2b-610703105285\",\n                        \"973823ff-df1a-48aa-8dd1-93d90778945d\",\n                        \"1158eeaf-2de0-4f04-bdf1-5d62f40deb4d\",\n                        \"78074986-d0a4-41dd-ba32-dcd69a0a1cf2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"FOOTER\",\n            \"Confidence\": 84.9609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.42595890164375305,\n                    \"Height\": 0.029767144471406937,\n                    \"Left\": 0.3158623278141022,\n                    \"Top\": 0.19656948745250702\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3158623278141022,\n                        \"Y\": 0.19683849811553955\n                    },\n                    {\n                        \"X\": 0.7417935729026794,\n                        \"Y\": 0.19656948745250702\n                    },\n                    {\n                        \"X\": 0.7418212294578552,\n                        \"Y\": 0.22606804966926575\n                    },\n                    {\n                        \"X\": 0.3158852159976959,\n                        \"Y\": 0.22633662819862366\n                    }\n                ]\n            },\n            \"Id\": \"9961a6a9-f770-4f54-9a82-f0680ca8b932\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13859db3-5559-4568-b1c4-b64160b2a208\",\n                        \"2763226e-b62a-4c3a-8d94-d2bcd9695906\",\n                        \"49182a97-c583-4af7-8f2b-eb59da24208b\",\n                        \"80e03e12-68fc-4597-bb19-973806f9645b\",\n                        \"57e03145-f39e-4ff3-aa1d-efb57e05c5d9\",\n                        \"a9417aaf-8832-476a-b64f-6b6a7fb7d3aa\",\n                        \"ca23e7fd-5db0-44f5-8810-8645dbe38ab4\",\n                        \"90fa01db-a28a-4a68-a6f4-147012cc91e9\",\n                        \"3556bcc0-baa3-43e3-9f95-cb2b1e0564df\",\n                        \"72893b6c-523d-4c6e-b6f6-d1ea950bc67a\",\n                        \"51013915-1cf1-4128-93ff-5dd24236e53e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"FOOTER\",\n            \"Confidence\": 90.576171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.42675670981407166,\n                    \"Height\": 0.037022050470113754,\n                    \"Left\": 0.31574714183807373,\n                    \"Top\": 0.24976368248462677\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31574714183807373,\n                        \"Y\": 0.2500323951244354\n                    },\n                    {\n                        \"X\": 0.7424693703651428,\n                        \"Y\": 0.24976368248462677\n                    },\n                    {\n                        \"X\": 0.742503821849823,\n                        \"Y\": 0.28651756048202515\n                    },\n                    {\n                        \"X\": 0.31577563285827637,\n                        \"Y\": 0.28678572177886963\n                    }\n                ]\n            },\n            \"Id\": \"3eb7f848-f8dc-483f-b9ca-b58acb2b1ec6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"209544d1-507b-459b-b87c-8eccef48914e\",\n                        \"47d92a32-f442-4c9f-b734-77e61f6d1518\",\n                        \"9b5481dc-ea5f-441c-b38a-acbad0a74c44\",\n                        \"d381565f-cc71-4c93-a3a1-86e135c81235\",\n                        \"e12fc79f-87b6-436d-b956-b0381520d448\",\n                        \"5b59acf8-0822-4894-8cdd-778538821ec5\",\n                        \"78522d46-ab9c-4efd-b78c-7059f95ee687\",\n                        \"a6156362-3d86-436b-9d00-d72a4ba46462\",\n                        \"a522e533-dc41-4c49-aeff-6052ae0d0b93\",\n                        \"1c96c760-2b33-4454-a33e-50cebb87daa9\",\n                        \"a6d6d8b6-9768-4de8-afdf-6fac4f4a06c9\",\n                        \"2b11bd8c-2a4f-4019-85ca-0702ac4313c6\",\n                        \"93c1420f-ec86-4f49-a336-743a736d9f34\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"FOOTER\",\n            \"Confidence\": 71.09375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4259714186191559,\n                    \"Height\": 0.023480908945202827,\n                    \"Left\": 0.3159506916999817,\n                    \"Top\": 0.31045687198638916\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3159506916999817,\n                        \"Y\": 0.3107241988182068\n                    },\n                    {\n                        \"X\": 0.7419003248214722,\n                        \"Y\": 0.31045687198638916\n                    },\n                    {\n                        \"X\": 0.7419220805168152,\n                        \"Y\": 0.33367079496383667\n                    },\n                    {\n                        \"X\": 0.31596869230270386,\n                        \"Y\": 0.33393779397010803\n                    }\n                ]\n            },\n            \"Id\": \"8981e015-7ee6-4536-8efe-7af0142ed5f5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"821853f0-b5f7-4f20-bb27-cba75979ae0f\",\n                        \"a1b1afe0-302b-49ae-ae2b-9ae6839abddb\",\n                        \"47cd07cd-117f-4d60-8bc7-e8df17b6ed76\",\n                        \"bf02d2f9-53f7-4a68-89e9-321089bfb2c8\",\n                        \"d5674b57-acaf-4157-a95d-bdbacd1fc283\",\n                        \"01c96d7f-276d-4843-bd05-744b02d9534a\",\n                        \"19980346-24bd-4244-b6e4-4833e5eb02df\",\n                        \"19e4e41a-c888-422e-acc3-b87fc9674f85\",\n                        \"9d32acb9-cda4-494a-9f6f-639f1329068f\",\n                        \"9304a8c5-74da-473d-ae78-1243e7165380\",\n                        \"85744ff3-d7e1-4157-a185-41b733f40555\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"FOOTER\",\n            \"Confidence\": 62.060546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8839805722236633,\n                    \"Height\": 0.016022024676203728,\n                    \"Left\": 0.058050647377967834,\n                    \"Top\": 0.7417933940887451\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.058050647377967834,\n                        \"Y\": 0.7423348426818848\n                    },\n                    {\n                        \"X\": 0.942015528678894,\n                        \"Y\": 0.7417933940887451\n                    },\n                    {\n                        \"X\": 0.94203120470047,\n                        \"Y\": 0.7572744488716125\n                    },\n                    {\n                        \"X\": 0.0580611415207386,\n                        \"Y\": 0.757815420627594\n                    }\n                ]\n            },\n            \"Id\": \"18b11a1e-5341-4458-a9d3-4bc5f6dbba6a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5af7d355-5086-4a82-bf6b-fc700cc5bcd8\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/in-table-title.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1.0,\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 1.7762869902071543e-05\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 2.652220473464695e-06,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"6c7bd74c-bf83-438c-8a81-0a4b12d6c89f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8c9c4e91-4c5e-4689-83e2-615d5d15759f\",\n                        \"4b860923-89c0-4393-a99a-fbd8c545fc08\",\n                        \"c365a3ef-5e09-4a42-8414-767a5a1c802d\",\n                        \"c729ba6d-ada8-444f-abad-e8acf53a6b38\",\n                        \"e9391226-0080-441d-b082-70c66c008dc0\",\n                        \"e5a751ee-b2ec-4cc4-b8f5-715e69be448c\",\n                        \"ce938e2c-1280-4584-b515-939ac9f66efc\",\n                        \"bb238552-4614-4e7e-873f-3e271e76a5bd\",\n                        \"2a6b0959-2740-4e66-b69a-adcf60621d37\",\n                        \"2c51d695-e63a-4c33-8ebb-303058be268e\",\n                        \"f52ed2dc-64e7-422e-b76d-ea360fdb0c06\",\n                        \"087796e4-8ab6-4f1e-a56f-ddc97fcf642b\",\n                        \"fb35bd1b-ffe9-482d-90e1-24bc9d23dc31\",\n                        \"cd964afe-710a-4fc7-bfa6-e9b490f68e22\",\n                        \"e31d3c32-8bc5-4304-90cf-22d10a3fcf1d\",\n                        \"09adfbf5-fe65-4043-bf54-870581c59d57\",\n                        \"75bd6b1b-0ebd-4a2d-86f0-60a001992af1\",\n                        \"c4e97317-040c-418f-aaad-07f435095118\",\n                        \"a27d59de-0a66-44bd-a2a7-619f67ead5d7\",\n                        \"72e0f5d1-5e98-4edb-9483-c4b6763a5dfa\",\n                        \"528e0ddc-87a7-44d8-bebf-435644828e30\",\n                        \"4c008455-fa58-4a7e-b3e5-6e061e5d549b\",\n                        \"9df72dc6-5800-497a-9a9c-24b4795db8d8\",\n                        \"a68e9d57-30b6-49a9-a94b-adbab368fb37\",\n                        \"e21ab40d-ad31-4d83-bb97-2c1d74cf143e\",\n                        \"6ed211d0-7120-45d9-9dda-49e5e598f306\",\n                        \"2f0a4db2-a90a-41a7-aa30-bf1dbaf0541b\",\n                        \"20ebea33-b192-4087-94d6-7c01b2e8bcb7\",\n                        \"49b18db4-67e4-4e66-872c-b26ada93d880\",\n                        \"459e559a-09c8-4881-a8d3-e3d7667eb4be\",\n                        \"dc85339d-e6c8-4077-86a3-35adc970fd44\",\n                        \"9715e662-b582-4622-ae4a-77a8e6470654\",\n                        \"24592b2b-c70a-45fa-9f36-f7f61e1975b5\",\n                        \"4d48a90e-dce0-408e-adb5-dd59a4067f2d\",\n                        \"3f9fe6a7-0506-4fdb-bd77-8130ebf9dc00\",\n                        \"13e1595e-a352-4d6a-a29e-b11f050e539e\",\n                        \"ac11954b-f86d-4c0c-bbcb-ce63f09eae81\",\n                        \"8e9011d9-dde4-4472-a2d3-d57330eabae0\",\n                        \"51ae6158-0829-41ba-89bf-f932808f17a4\",\n                        \"de7c103d-8bf3-4580-9641-fa675ccb923c\",\n                        \"966d8ebc-5d06-40a5-ab5d-a63317f6a5ae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93769836425781,\n            \"Text\": \"Title\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035652536898851395,\n                    \"Height\": 0.0364089272916317,\n                    \"Left\": 0.8047793507575989,\n                    \"Top\": 0.016497064381837845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8047793507575989,\n                        \"Y\": 0.016532985493540764\n                    },\n                    {\n                        \"X\": 0.8403782248497009,\n                        \"Y\": 0.016497064381837845\n                    },\n                    {\n                        \"X\": 0.8404318690299988,\n                        \"Y\": 0.05287013202905655\n                    },\n                    {\n                        \"X\": 0.8048324584960938,\n                        \"Y\": 0.05290599167346954\n                    }\n                ]\n            },\n            \"Id\": \"8c9c4e91-4c5e-4689-83e2-615d5d15759f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2788d5ae-dd68-4f0c-8d71-845dfe1a516c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36800384521484,\n            \"Text\": \"LEAD & COPPER - Tested at Customers' Taps: Testing is done every 3 years. Most recent tests were done in 2019.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8114973306655884,\n                    \"Height\": 0.0422239676117897,\n                    \"Left\": 0.038169652223587036,\n                    \"Top\": 0.18443220853805542\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.038169652223587036,\n                        \"Y\": 0.1852445900440216\n                    },\n                    {\n                        \"X\": 0.8496057391166687,\n                        \"Y\": 0.18443220853805542\n                    },\n                    {\n                        \"X\": 0.849666953086853,\n                        \"Y\": 0.2258453518152237\n                    },\n                    {\n                        \"X\": 0.03821736201643944,\n                        \"Y\": 0.22665616869926453\n                    }\n                ]\n            },\n            \"Id\": \"4b860923-89c0-4393-a99a-fbd8c545fc08\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a33dbc39-2fef-442f-8a54-7580204ef828\",\n                        \"0a56211f-825e-42ff-ae90-21b2ec589dbd\",\n                        \"de0f8527-d768-4e62-9e0f-299ae66a47e1\",\n                        \"563fe2db-665a-428b-87fd-f0a72c20344a\",\n                        \"6d1a70dd-37a8-4a3d-9691-5ab504ae9930\",\n                        \"966da8d5-71f2-4bd8-ab0d-39e35a0feec0\",\n                        \"6dbb409b-c878-45aa-a715-1ef54bed4cb3\",\n                        \"1b66133e-34d7-4341-9d62-607d449e985c\",\n                        \"2325bf57-97b8-41f4-810e-3914efc738f8\",\n                        \"e721b988-9fbd-4ef7-84c2-48f2e5599858\",\n                        \"fcca6a2d-56ec-43f8-b0c9-565738acb78c\",\n                        \"f770b8de-ae83-42de-95e1-16b42242a87f\",\n                        \"dafdd846-6091-433f-ad75-23a6b04b4d0a\",\n                        \"74645236-201f-4afd-96a1-e17bf2d0f70b\",\n                        \"381f4bee-bbfc-4b1a-92f3-d41d9e8e3df1\",\n                        \"71806ffe-4ad4-44ad-8e18-729d346da0af\",\n                        \"6d29bc3f-56ad-4987-90fe-f9219516939a\",\n                        \"9706b6c2-19f3-4afe-82e5-49cd490021a9\",\n                        \"c9124825-c17f-466c-a80c-4f90e87a9834\",\n                        \"1ee8f799-5eb4-4af1-8431-74432de74488\",\n                        \"4f01abc3-153f-4642-aed0-71961c5abe46\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.17696380615234,\n            \"Text\": \"EPA's Action Level - for a\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.183205246925354,\n                    \"Height\": 0.03235821798443794,\n                    \"Left\": 0.10768422484397888,\n                    \"Top\": 0.2539122998714447\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10768422484397888,\n                        \"Y\": 0.2540951073169708\n                    },\n                    {\n                        \"X\": 0.29084914922714233,\n                        \"Y\": 0.2539122998714447\n                    },\n                    {\n                        \"X\": 0.2908894717693329,\n                        \"Y\": 0.2860880196094513\n                    },\n                    {\n                        \"X\": 0.1077221930027008,\n                        \"Y\": 0.28627052903175354\n                    }\n                ]\n            },\n            \"Id\": \"c365a3ef-5e09-4a42-8414-767a5a1c802d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d15cacb7-9fc4-47b0-a5b0-ec1d25a3ebd3\",\n                        \"ac8a317b-3f8b-4b66-a6fa-1d8da81a328a\",\n                        \"34e6ab38-8837-41de-a4ad-e4786102e8fe\",\n                        \"6258e764-4d80-4b2e-8c07-4912179e43da\",\n                        \"fcee693b-c36e-4fd8-b571-f9f7dc2ac482\",\n                        \"ce6dd7a9-855e-4f67-822c-f83a82c10263\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.79248809814453,\n            \"Text\": \"Ideal Goal\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07399066537618637,\n                    \"Height\": 0.031055428087711334,\n                    \"Left\": 0.3092661201953888,\n                    \"Top\": 0.2548249363899231\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3092661201953888,\n                        \"Y\": 0.25489872694015503\n                    },\n                    {\n                        \"X\": 0.3832167983055115,\n                        \"Y\": 0.2548249363899231\n                    },\n                    {\n                        \"X\": 0.38325679302215576,\n                        \"Y\": 0.28580668568611145\n                    },\n                    {\n                        \"X\": 0.30930519104003906,\n                        \"Y\": 0.28588035702705383\n                    }\n                ]\n            },\n            \"Id\": \"c729ba6d-ada8-444f-abad-e8acf53a6b38\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9b687a40-c96f-4ce1-800f-f45b9e9f229b\",\n                        \"e549fa13-9259-4e57-89d4-c038686e4d00\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70391082763672,\n            \"Text\": \"90% of PWD\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09827624261379242,\n                    \"Height\": 0.03161826729774475,\n                    \"Left\": 0.4194265902042389,\n                    \"Top\": 0.25438055396080017\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4194265902042389,\n                        \"Y\": 0.2544785737991333\n                    },\n                    {\n                        \"X\": 0.5176604390144348,\n                        \"Y\": 0.25438055396080017\n                    },\n                    {\n                        \"X\": 0.5177028179168701,\n                        \"Y\": 0.28590092062950134\n                    },\n                    {\n                        \"X\": 0.4194677472114563,\n                        \"Y\": 0.2859988212585449\n                    }\n                ]\n            },\n            \"Id\": \"e9391226-0080-441d-b082-70c66c008dc0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b951c9d-7f18-4cfe-9fc8-208bb3ca825d\",\n                        \"b3720ee8-7085-4a17-a7a2-003750d0abfe\",\n                        \"42e033fe-ef6a-492c-ab73-75bc9ad4d24c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.63784790039062,\n            \"Text\": \"Number of homes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13222450017929077,\n                    \"Height\": 0.03224165737628937,\n                    \"Left\": 0.5556541681289673,\n                    \"Top\": 0.25447359681129456\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5556541681289673,\n                        \"Y\": 0.2546055018901825\n                    },\n                    {\n                        \"X\": 0.687833309173584,\n                        \"Y\": 0.25447359681129456\n                    },\n                    {\n                        \"X\": 0.6878786683082581,\n                        \"Y\": 0.2865835726261139\n                    },\n                    {\n                        \"X\": 0.5556978583335876,\n                        \"Y\": 0.2867152690887451\n                    }\n                ]\n            },\n            \"Id\": \"e5a751ee-b2ec-4cc4-b8f5-715e69be448c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"07c4de8d-2dca-4440-b5e4-d3eb4e78da36\",\n                        \"efa5077e-36df-4511-8489-95f562c356cc\",\n                        \"e25c892e-ddd4-4e1b-a86b-d4b3dffb73b0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82270050048828,\n            \"Text\": \"Violation\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0671735480427742,\n                    \"Height\": 0.03163660317659378,\n                    \"Left\": 0.7076250314712524,\n                    \"Top\": 0.2548553943634033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7076250314712524,\n                        \"Y\": 0.25492236018180847\n                    },\n                    {\n                        \"X\": 0.7747528553009033,\n                        \"Y\": 0.2548553943634033\n                    },\n                    {\n                        \"X\": 0.774798572063446,\n                        \"Y\": 0.28642508387565613\n                    },\n                    {\n                        \"X\": 0.7076699137687683,\n                        \"Y\": 0.2864919900894165\n                    }\n                ]\n            },\n            \"Id\": \"ce938e2c-1280-4584-b515-939ac9f66efc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"febb41ed-4faa-4269-b335-c975f7762351\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95270538330078,\n            \"Text\": \"Source\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051843151450157166,\n                    \"Height\": 0.030669117346405983,\n                    \"Left\": 0.8431529402732849,\n                    \"Top\": 0.2551644444465637\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8431529402732849,\n                        \"Y\": 0.255216121673584\n                    },\n                    {\n                        \"X\": 0.894950270652771,\n                        \"Y\": 0.2551644444465637\n                    },\n                    {\n                        \"X\": 0.8949961066246033,\n                        \"Y\": 0.28578194975852966\n                    },\n                    {\n                        \"X\": 0.8431981205940247,\n                        \"Y\": 0.28583353757858276\n                    }\n                ]\n            },\n            \"Id\": \"bb238552-4614-4e7e-873f-3e271e76a5bd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"67b8ead9-0950-4871-ac38-683e9aa3b7d6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85883331298828,\n            \"Text\": \"representative sampling\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17786578834056854,\n                    \"Height\": 0.041556354612112045,\n                    \"Left\": 0.11028224974870682,\n                    \"Top\": 0.30307531356811523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11028224974870682,\n                        \"Y\": 0.30325233936309814\n                    },\n                    {\n                        \"X\": 0.28809618949890137,\n                        \"Y\": 0.30307531356811523\n                    },\n                    {\n                        \"X\": 0.28814804553985596,\n                        \"Y\": 0.34445497393608093\n                    },\n                    {\n                        \"X\": 0.11033112555742264,\n                        \"Y\": 0.3446316719055176\n                    }\n                ]\n            },\n            \"Id\": \"2a6b0959-2740-4e66-b69a-adcf60621d37\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"20493465-b093-4ad0-bf8d-13d010326951\",\n                        \"3676927c-cdd0-443f-8b49-6f74a175f562\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.74777221679688,\n            \"Text\": \"(EPA's\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04662078991532326,\n                    \"Height\": 0.039938077330589294,\n                    \"Left\": 0.322643905878067,\n                    \"Top\": 0.3020908534526825\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.322643905878067,\n                        \"Y\": 0.30213722586631775\n                    },\n                    {\n                        \"X\": 0.36921343207359314,\n                        \"Y\": 0.3020908534526825\n                    },\n                    {\n                        \"X\": 0.3692646920681,\n                        \"Y\": 0.3419826328754425\n                    },\n                    {\n                        \"X\": 0.32269442081451416,\n                        \"Y\": 0.3420289158821106\n                    }\n                ]\n            },\n            \"Id\": \"2c51d695-e63a-4c33-8ebb-303058be268e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"25127e4d-e3d6-4733-a467-4c67384bb865\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.59358215332031,\n            \"Text\": \"customers' homes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13628557324409485,\n                    \"Height\": 0.03392239287495613,\n                    \"Left\": 0.4004732370376587,\n                    \"Top\": 0.30284130573272705\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4004732370376587,\n                        \"Y\": 0.30297693610191345\n                    },\n                    {\n                        \"X\": 0.5367131233215332,\n                        \"Y\": 0.30284130573272705\n                    },\n                    {\n                        \"X\": 0.5367588400840759,\n                        \"Y\": 0.336628258228302\n                    },\n                    {\n                        \"X\": 0.4005171060562134,\n                        \"Y\": 0.3367636799812317\n                    }\n                ]\n            },\n            \"Id\": \"f52ed2dc-64e7-422e-b76d-ea360fdb0c06\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f20c8316-da5d-43dc-8ab7-7668e35a152b\",\n                        \"21f3e87c-dd9b-4b6b-87b2-6d97706de536\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96038818359375,\n            \"Text\": \"considered to have\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1385413408279419,\n                    \"Height\": 0.03380606696009636,\n                    \"Left\": 0.5521256327629089,\n                    \"Top\": 0.30254676938056946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5521256327629089,\n                        \"Y\": 0.3026846647262573\n                    },\n                    {\n                        \"X\": 0.6906193494796753,\n                        \"Y\": 0.30254676938056946\n                    },\n                    {\n                        \"X\": 0.6906669735908508,\n                        \"Y\": 0.33621516823768616\n                    },\n                    {\n                        \"X\": 0.5521714091300964,\n                        \"Y\": 0.3363528549671173\n                    }\n                ]\n            },\n            \"Id\": \"087796e4-8ab6-4f1e-a56f-ddc97fcf642b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7188a4aa-4e1c-477e-b356-a048ec71cc70\",\n                        \"4d3a6117-9922-4afd-b220-12ef169f11b2\",\n                        \"4ff130c7-dc4f-4dcd-9a88-de2e005a31d2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94078063964844,\n            \"Text\": \"of customer homes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14181774854660034,\n                    \"Height\": 0.03411747142672539,\n                    \"Left\": 0.12819145619869232,\n                    \"Top\": 0.35257211327552795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12819145619869232,\n                        \"Y\": 0.3527129590511322\n                    },\n                    {\n                        \"X\": 0.26996690034866333,\n                        \"Y\": 0.35257211327552795\n                    },\n                    {\n                        \"X\": 0.27000921964645386,\n                        \"Y\": 0.3865489959716797\n                    },\n                    {\n                        \"X\": 0.12823182344436646,\n                        \"Y\": 0.38668960332870483\n                    }\n                ]\n            },\n            \"Id\": \"fb35bd1b-ffe9-482d-90e1-24bc9d23dc31\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"aa2d2177-64a3-4f51-a182-61d847dd35c8\",\n                        \"61a94d1f-4756-40c3-ad7b-ebfda40a2b29\",\n                        \"82bef8bf-7dc8-4cbf-baab-d116dd72c129\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.52544403076172,\n            \"Text\": \"MCLG)\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051179707050323486,\n                    \"Height\": 0.04154125601053238,\n                    \"Left\": 0.3202211260795593,\n                    \"Top\": 0.35273823142051697\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3202211260795593,\n                        \"Y\": 0.3527890145778656\n                    },\n                    {\n                        \"X\": 0.37134748697280884,\n                        \"Y\": 0.35273823142051697\n                    },\n                    {\n                        \"X\": 0.3714008331298828,\n                        \"Y\": 0.3942287862300873\n                    },\n                    {\n                        \"X\": 0.32027363777160645,\n                        \"Y\": 0.39427947998046875\n                    }\n                ]\n            },\n            \"Id\": \"cd964afe-710a-4fc7-bfa6-e9b490f68e22\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5704d9f6-2d2e-4a7b-87e7-c1f7e4020392\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.923828125,\n            \"Text\": \"were less than\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10726409405469894,\n                    \"Height\": 0.0339864082634449,\n                    \"Left\": 0.4147905111312866,\n                    \"Top\": 0.35260990262031555\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4147905111312866,\n                        \"Y\": 0.3527164161205292\n                    },\n                    {\n                        \"X\": 0.5220089554786682,\n                        \"Y\": 0.35260990262031555\n                    },\n                    {\n                        \"X\": 0.5220546126365662,\n                        \"Y\": 0.38648998737335205\n                    },\n                    {\n                        \"X\": 0.4148346781730652,\n                        \"Y\": 0.38659632205963135\n                    }\n                ]\n            },\n            \"Id\": \"e31d3c32-8bc5-4304-90cf-22d10a3fcf1d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"854d02ca-c38a-42ce-92fd-f769409f164d\",\n                        \"eafc1d69-c3f1-459d-903d-8b2a1375a27d\",\n                        \"0215dfa5-73dd-4faa-a2d5-6c3ae324c07c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96246337890625,\n            \"Text\": \"elevated levels\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11002575606107712,\n                    \"Height\": 0.03400305286049843,\n                    \"Left\": 0.5665510892868042,\n                    \"Top\": 0.3525119721889496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5665510892868042,\n                        \"Y\": 0.3526211977005005\n                    },\n                    {\n                        \"X\": 0.6765291094779968,\n                        \"Y\": 0.3525119721889496\n                    },\n                    {\n                        \"X\": 0.6765768527984619,\n                        \"Y\": 0.38640594482421875\n                    },\n                    {\n                        \"X\": 0.5665973424911499,\n                        \"Y\": 0.3865150213241577\n                    }\n                ]\n            },\n            \"Id\": \"09adfbf5-fe65-4043-bf54-870581c59d57\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0b41b37b-58a4-4360-8d54-ba5fef46c83a\",\n                        \"94d78290-b8f8-481e-bfa3-01fb503aec8d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.67485046386719,\n            \"Text\": \"Corrosion of house-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13831010460853577,\n                    \"Height\": 0.03274931013584137,\n                    \"Left\": 0.7902629375457764,\n                    \"Top\": 0.414760023355484\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7902629375457764,\n                        \"Y\": 0.41489696502685547\n                    },\n                    {\n                        \"X\": 0.92852383852005,\n                        \"Y\": 0.414760023355484\n                    },\n                    {\n                        \"X\": 0.9285730719566345,\n                        \"Y\": 0.4473726153373718\n                    },\n                    {\n                        \"X\": 0.7903103828430176,\n                        \"Y\": 0.4475093483924866\n                    }\n                ]\n            },\n            \"Id\": \"75bd6b1b-0ebd-4a2d-86f0-60a001992af1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6c920fef-8d78-403c-8dbc-b6ce0a8b4162\",\n                        \"deaa1f59-d364-490a-b075-0f3ea03cf572\",\n                        \"a6072afa-23d9-44ac-a804-c493723a2d8d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96353149414062,\n            \"Text\": \"90% of homes must test\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18218952417373657,\n                    \"Height\": 0.03481198102235794,\n                    \"Left\": 0.1083236038684845,\n                    \"Top\": 0.45728927850723267\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1083236038684845,\n                        \"Y\": 0.45746931433677673\n                    },\n                    {\n                        \"X\": 0.2904697060585022,\n                        \"Y\": 0.45728927850723267\n                    },\n                    {\n                        \"X\": 0.29051312804222107,\n                        \"Y\": 0.49192148447036743\n                    },\n                    {\n                        \"X\": 0.10836447775363922,\n                        \"Y\": 0.49210125207901\n                    }\n                ]\n            },\n            \"Id\": \"c4e97317-040c-418f-aaad-07f435095118\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5ba760ee-ca2e-4349-a855-5514672bacbb\",\n                        \"25e1b4f7-b09a-46bc-87b0-258ce31a2fdd\",\n                        \"241349f5-c4d5-43e0-909c-261cf507012f\",\n                        \"b21fce9c-9b4c-4709-b2fc-b910aefde3c0\",\n                        \"8c63a569-60ee-469a-bcf7-b32910ceaf35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90953063964844,\n            \"Text\": \"Lead\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034360725432634354,\n                    \"Height\": 0.032948072999715805,\n                    \"Left\": 0.03952061012387276,\n                    \"Top\": 0.48696860671043396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03952061012387276,\n                        \"Y\": 0.48700249195098877\n                    },\n                    {\n                        \"X\": 0.07384294271469116,\n                        \"Y\": 0.48696860671043396\n                    },\n                    {\n                        \"X\": 0.07388133555650711,\n                        \"Y\": 0.51988285779953\n                    },\n                    {\n                        \"X\": 0.039558541029691696,\n                        \"Y\": 0.5199166536331177\n                    }\n                ]\n            },\n            \"Id\": \"a27d59de-0a66-44bd-a2a7-619f67ead5d7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3791145b-dce0-4cb1-834f-c5bbd442f22d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.86260986328125,\n            \"Text\": \"0 ppb\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04181576147675514,\n                    \"Height\": 0.04227675497531891,\n                    \"Left\": 0.3250478208065033,\n                    \"Top\": 0.4870891571044922\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3250478208065033,\n                        \"Y\": 0.48713040351867676\n                    },\n                    {\n                        \"X\": 0.36680933833122253,\n                        \"Y\": 0.4870891571044922\n                    },\n                    {\n                        \"X\": 0.36686357855796814,\n                        \"Y\": 0.5293247699737549\n                    },\n                    {\n                        \"X\": 0.3251013457775116,\n                        \"Y\": 0.5293658971786499\n                    }\n                ]\n            },\n            \"Id\": \"72e0f5d1-5e98-4edb-9483-c4b6763a5dfa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0c18c7d3-e6f1-456e-bee0-5967a9e34989\",\n                        \"7a8cb7a9-5e48-41d4-8469-bf433f47c17f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92823028564453,\n            \"Text\": \"3.0 ppb\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05580608546733856,\n                    \"Height\": 0.04284365102648735,\n                    \"Left\": 0.44104790687561035,\n                    \"Top\": 0.4870271384716034\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44104790687561035,\n                        \"Y\": 0.4870821535587311\n                    },\n                    {\n                        \"X\": 0.4967968165874481,\n                        \"Y\": 0.4870271384716034\n                    },\n                    {\n                        \"X\": 0.4968540072441101,\n                        \"Y\": 0.5298158526420593\n                    },\n                    {\n                        \"X\": 0.44110414385795593,\n                        \"Y\": 0.5298708081245422\n                    }\n                ]\n            },\n            \"Id\": \"528e0ddc-87a7-44d8-bebf-435644828e30\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3e881681-2bf8-470b-8568-7b99005b7c6c\",\n                        \"2569688b-31b8-449c-9c86-be6063b3611d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96599578857422,\n            \"Text\": \"2 out of 99\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08054492622613907,\n                    \"Height\": 0.03395380079746246,\n                    \"Left\": 0.5810791850090027,\n                    \"Top\": 0.4864555597305298\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5810791850090027,\n                        \"Y\": 0.4865350127220154\n                    },\n                    {\n                        \"X\": 0.6615765690803528,\n                        \"Y\": 0.4864555597305298\n                    },\n                    {\n                        \"X\": 0.6616241335868835,\n                        \"Y\": 0.520330011844635\n                    },\n                    {\n                        \"X\": 0.5811256170272827,\n                        \"Y\": 0.520409345626831\n                    }\n                ]\n            },\n            \"Id\": \"4c008455-fa58-4a7e-b3e5-6e061e5d549b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7fd4961a-653f-47cc-a90c-9931d8e37720\",\n                        \"2b41e160-eb95-4676-af2c-cf4456974459\",\n                        \"22c6a9a9-43ac-47c0-aba0-c2efca7f76fc\",\n                        \"82fe85be-3e8d-4059-b4e7-f92b8757826a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9166030883789,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01963092014193535,\n                    \"Height\": 0.035225801169872284,\n                    \"Left\": 0.7318691611289978,\n                    \"Top\": 0.48611071705818176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7318691611289978,\n                        \"Y\": 0.4861300587654114\n                    },\n                    {\n                        \"X\": 0.7514494061470032,\n                        \"Y\": 0.48611071705818176\n                    },\n                    {\n                        \"X\": 0.7515000700950623,\n                        \"Y\": 0.5213172435760498\n                    },\n                    {\n                        \"X\": 0.731919527053833,\n                        \"Y\": 0.521336555480957\n                    }\n                ]\n            },\n            \"Id\": \"9df72dc6-5800-497a-9a9c-24b4795db8d8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4fd1b81f-00e2-4141-aa9a-ee3ef6a76327\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.48551940917969,\n            \"Text\": \"hold plumbing;\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1043509915471077,\n                    \"Height\": 0.040750693529844284,\n                    \"Left\": 0.790415346622467,\n                    \"Top\": 0.4627860486507416\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.790415346622467,\n                        \"Y\": 0.4628891050815582\n                    },\n                    {\n                        \"X\": 0.8947054743766785,\n                        \"Y\": 0.4627860486507416\n                    },\n                    {\n                        \"X\": 0.8947663307189941,\n                        \"Y\": 0.503433883190155\n                    },\n                    {\n                        \"X\": 0.7904744744300842,\n                        \"Y\": 0.5035367608070374\n                    }\n                ]\n            },\n            \"Id\": \"a68e9d57-30b6-49a9-a94b-adbab368fb37\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f9d037a1-fcbf-42f7-a3bf-486074e4c09f\",\n                        \"80d6b7af-2e13-4ebb-82be-9de7c0a4ee61\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90736389160156,\n            \"Text\": \"less than 15 ppb\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1203591376543045,\n                    \"Height\": 0.04225826635956764,\n                    \"Left\": 0.13912875950336456,\n                    \"Top\": 0.5142484307289124\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13912875950336456,\n                        \"Y\": 0.5143670439720154\n                    },\n                    {\n                        \"X\": 0.25943559408187866,\n                        \"Y\": 0.5142484307289124\n                    },\n                    {\n                        \"X\": 0.25948789715766907,\n                        \"Y\": 0.5563883185386658\n                    },\n                    {\n                        \"X\": 0.1391790211200714,\n                        \"Y\": 0.5565066933631897\n                    }\n                ]\n            },\n            \"Id\": \"e21ab40d-ad31-4d83-bb97-2c1d74cf143e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"888f83d4-5484-4f9f-a2b3-d1fc490928c3\",\n                        \"6107f9e7-29dc-445c-a826-122e4ef7e747\",\n                        \"30715f61-bbb7-4242-b5e2-7d612e8b9fff\",\n                        \"5b51a4f6-9c8b-4d90-9c11-ec0b8a43d9d8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83260345458984,\n            \"Text\": \"Erosion of natural\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12395896017551422,\n                    \"Height\": 0.03223620727658272,\n                    \"Left\": 0.7907651662826538,\n                    \"Top\": 0.510938286781311\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7907651662826538,\n                        \"Y\": 0.5110604166984558\n                    },\n                    {\n                        \"X\": 0.9146758317947388,\n                        \"Y\": 0.510938286781311\n                    },\n                    {\n                        \"X\": 0.9147241115570068,\n                        \"Y\": 0.5430524945259094\n                    },\n                    {\n                        \"X\": 0.7908118963241577,\n                        \"Y\": 0.5431744456291199\n                    }\n                ]\n            },\n            \"Id\": \"6ed211d0-7120-45d9-9dda-49e5e598f306\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7dab57d8-d01e-41b2-a46f-3209edaf0b72\",\n                        \"6327031a-4580-42f5-a0c8-025e442ac40a\",\n                        \"9fce9932-1618-4b8c-89f6-ab51a1c63266\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96377563476562,\n            \"Text\": \"deposits\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05978472903370857,\n                    \"Height\": 0.0405004508793354,\n                    \"Left\": 0.7901022434234619,\n                    \"Top\": 0.5586140751838684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7901022434234619,\n                        \"Y\": 0.5586728453636169\n                    },\n                    {\n                        \"X\": 0.849827229976654,\n                        \"Y\": 0.5586140751838684\n                    },\n                    {\n                        \"X\": 0.8498870134353638,\n                        \"Y\": 0.5990558862686157\n                    },\n                    {\n                        \"X\": 0.7901610732078552,\n                        \"Y\": 0.5991145372390747\n                    }\n                ]\n            },\n            \"Id\": \"2f0a4db2-a90a-41a7-aa30-bf1dbaf0541b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b544a722-d45e-4f54-bed4-3e32f20666f0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7977294921875,\n            \"Text\": \"Corrosion of house-\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1382124423980713,\n                    \"Height\": 0.032272402197122574,\n                    \"Left\": 0.7905401587486267,\n                    \"Top\": 0.6196907758712769\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7905401587486267,\n                        \"Y\": 0.6198262572288513\n                    },\n                    {\n                        \"X\": 0.9287040829658508,\n                        \"Y\": 0.6196907758712769\n                    },\n                    {\n                        \"X\": 0.928752601146698,\n                        \"Y\": 0.651827871799469\n                    },\n                    {\n                        \"X\": 0.7905868887901306,\n                        \"Y\": 0.6519631743431091\n                    }\n                ]\n            },\n            \"Id\": \"20ebea33-b192-4087-94d6-7c01b2e8bcb7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b23bb8f-e75c-4739-8ff4-bbc5bd8d38a1\",\n                        \"6318bdf1-601a-4d92-8e09-563775425b10\",\n                        \"d8010fac-2e13-45c7-9b25-3c1dd6d85eb4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.09468078613281,\n            \"Text\": \"hold plumbing;\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10400139540433884,\n                    \"Height\": 0.04051417484879494,\n                    \"Left\": 0.7905310988426208,\n                    \"Top\": 0.6670125126838684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7905310988426208,\n                        \"Y\": 0.6671142578125\n                    },\n                    {\n                        \"X\": 0.8944720029830933,\n                        \"Y\": 0.6670125126838684\n                    },\n                    {\n                        \"X\": 0.8945325016975403,\n                        \"Y\": 0.7074251770973206\n                    },\n                    {\n                        \"X\": 0.7905898690223694,\n                        \"Y\": 0.707526683807373\n                    }\n                ]\n            },\n            \"Id\": \"49b18db4-67e4-4e66-872c-b26ada93d880\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"97467448-4bae-4a2a-8fbb-2276488963a7\",\n                        \"b136222a-2187-4195-95b6-d9846b3f5a91\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96881103515625,\n            \"Text\": \"90% of homes must test\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18226328492164612,\n                    \"Height\": 0.033561863005161285,\n                    \"Left\": 0.10828837007284164,\n                    \"Top\": 0.7103971242904663\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10828837007284164,\n                        \"Y\": 0.7105751037597656\n                    },\n                    {\n                        \"X\": 0.29050981998443604,\n                        \"Y\": 0.7103971242904663\n                    },\n                    {\n                        \"X\": 0.29055163264274597,\n                        \"Y\": 0.743781328201294\n                    },\n                    {\n                        \"X\": 0.10832776129245758,\n                        \"Y\": 0.7439590096473694\n                    }\n                ]\n            },\n            \"Id\": \"459e559a-09c8-4881-a8d3-e3d7667eb4be\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2d386a35-65e9-44d5-a5c2-71dcd07795e4\",\n                        \"cb6dbf40-fe65-4dd8-a69a-e63838d90ba0\",\n                        \"e7b71233-c375-4070-8869-1ecc35914057\",\n                        \"19fa0ba4-faee-459c-b3c5-66c7a6e8a584\",\n                        \"a1bbb864-34db-43a6-9851-a22a5df3b015\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81612396240234,\n            \"Text\": \"Erosion of natural\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12388227134943008,\n                    \"Height\": 0.03225839138031006,\n                    \"Left\": 0.790888249874115,\n                    \"Top\": 0.7151899337768555\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.790888249874115,\n                        \"Y\": 0.7153108716011047\n                    },\n                    {\n                        \"X\": 0.914722204208374,\n                        \"Y\": 0.7151899337768555\n                    },\n                    {\n                        \"X\": 0.9147705435752869,\n                        \"Y\": 0.7473276257514954\n                    },\n                    {\n                        \"X\": 0.7909350395202637,\n                        \"Y\": 0.7474483251571655\n                    }\n                ]\n            },\n            \"Id\": \"dc85339d-e6c8-4077-86a3-35adc970fd44\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"67c31229-7042-49d9-92b4-1adc9e3dcff1\",\n                        \"e8e10803-0d0b-4231-8ffa-8f93577e7fa1\",\n                        \"fc63b034-f289-4841-af5f-d7285d83dd13\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96431732177734,\n            \"Text\": \"Copper\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05337032303214073,\n                    \"Height\": 0.04241953417658806,\n                    \"Left\": 0.03934139758348465,\n                    \"Top\": 0.7379059195518494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03934139758348465,\n                        \"Y\": 0.7379579544067383\n                    },\n                    {\n                        \"X\": 0.09266199171543121,\n                        \"Y\": 0.7379059195518494\n                    },\n                    {\n                        \"X\": 0.09271172434091568,\n                        \"Y\": 0.7802735567092896\n                    },\n                    {\n                        \"X\": 0.03939022123813629,\n                        \"Y\": 0.7803254723548889\n                    }\n                ]\n            },\n            \"Id\": \"9715e662-b582-4622-ae4a-77a8e6470654\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"376e7632-8495-4330-bd54-58cf32834899\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88311767578125,\n            \"Text\": \"1.3 ppm\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06078870967030525,\n                    \"Height\": 0.04178512468934059,\n                    \"Left\": 0.31581050157546997,\n                    \"Top\": 0.7380245923995972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31581050157546997,\n                        \"Y\": 0.7380838394165039\n                    },\n                    {\n                        \"X\": 0.3765454888343811,\n                        \"Y\": 0.7380245923995972\n                    },\n                    {\n                        \"X\": 0.3765992224216461,\n                        \"Y\": 0.779750645160675\n                    },\n                    {\n                        \"X\": 0.3158632218837738,\n                        \"Y\": 0.7798097133636475\n                    }\n                ]\n            },\n            \"Id\": \"24592b2b-c70a-45fa-9f36-f7f61e1975b5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f27c3ce2-4182-4a7b-af8b-a6f5b56c50d1\",\n                        \"e9c68889-6770-4a96-ace8-9414a050e6f6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95027923583984,\n            \"Text\": \"0.28 ppm\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07077039778232574,\n                    \"Height\": 0.04193207994103432,\n                    \"Left\": 0.4332227110862732,\n                    \"Top\": 0.737945020198822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4332227110862732,\n                        \"Y\": 0.7380139827728271\n                    },\n                    {\n                        \"X\": 0.5039370656013489,\n                        \"Y\": 0.737945020198822\n                    },\n                    {\n                        \"X\": 0.5039930939674377,\n                        \"Y\": 0.7798082828521729\n                    },\n                    {\n                        \"X\": 0.43327757716178894,\n                        \"Y\": 0.7798771262168884\n                    }\n                ]\n            },\n            \"Id\": \"4d48a90e-dce0-408e-adb5-dd59a4067f2d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1aff4695-16f0-498b-a6b3-827a6ac3ce21\",\n                        \"e45857c2-7b61-44ee-ab9a-2dc2af4215f6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 92.56748962402344,\n            \"Text\": \"0 out of 99\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08180207014083862,\n                    \"Height\": 0.033775169402360916,\n                    \"Left\": 0.5806127786636353,\n                    \"Top\": 0.7378319501876831\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5806127786636353,\n                        \"Y\": 0.7379117012023926\n                    },\n                    {\n                        \"X\": 0.662367582321167,\n                        \"Y\": 0.7378319501876831\n                    },\n                    {\n                        \"X\": 0.6624148488044739,\n                        \"Y\": 0.7715275287628174\n                    },\n                    {\n                        \"X\": 0.5806589126586914,\n                        \"Y\": 0.7716071605682373\n                    }\n                ]\n            },\n            \"Id\": \"3f9fe6a7-0506-4fdb-bd77-8130ebf9dc00\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"af9e1526-c5c7-4603-804b-3bb6b70153a0\",\n                        \"45f7fc9f-a8a8-44d0-91ee-ded35f1d7d5c\",\n                        \"fdde832f-994e-4c08-a85c-16d7a89110a1\",\n                        \"5c1e8729-4ae5-4484-9db1-a87af8cc29b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97539520263672,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020493630319833755,\n                    \"Height\": 0.03273798152804375,\n                    \"Left\": 0.7311685681343079,\n                    \"Top\": 0.7384752631187439\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7311685681343079,\n                        \"Y\": 0.7384951710700989\n                    },\n                    {\n                        \"X\": 0.7516151070594788,\n                        \"Y\": 0.7384752631187439\n                    },\n                    {\n                        \"X\": 0.7516621947288513,\n                        \"Y\": 0.7711933255195618\n                    },\n                    {\n                        \"X\": 0.7312153577804565,\n                        \"Y\": 0.7712132334709167\n                    }\n                ]\n            },\n            \"Id\": \"13e1595e-a352-4d6a-a29e-b11f050e539e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c62030e3-be48-4b3d-acea-62d3cb373c7a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88214111328125,\n            \"Text\": \"less than 1.3 ppm\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13076648116111755,\n                    \"Height\": 0.041666317731142044,\n                    \"Left\": 0.1337629109621048,\n                    \"Top\": 0.7668057680130005\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1337629109621048,\n                        \"Y\": 0.7669330835342407\n                    },\n                    {\n                        \"X\": 0.26447775959968567,\n                        \"Y\": 0.7668057680130005\n                    },\n                    {\n                        \"X\": 0.26452937722206116,\n                        \"Y\": 0.8083450198173523\n                    },\n                    {\n                        \"X\": 0.13381235301494598,\n                        \"Y\": 0.8084720969200134\n                    }\n                ]\n            },\n            \"Id\": \"ac11954b-f86d-4c0c-bbcb-ce63f09eae81\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"222fd30a-73b8-4faa-8ab1-f6d00ceb01cc\",\n                        \"1a84b059-ec31-4a19-83b6-939af2fb5fe2\",\n                        \"c7008f2e-e77c-4978-8e07-9900787ada11\",\n                        \"d29d3856-8c6d-43cf-a550-041514615259\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.58081817626953,\n            \"Text\": \"deposits;\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06306667625904083,\n                    \"Height\": 0.039143066853284836,\n                    \"Left\": 0.7903621196746826,\n                    \"Top\": 0.7634880542755127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7903621196746826,\n                        \"Y\": 0.7635494470596313\n                    },\n                    {\n                        \"X\": 0.8533709645271301,\n                        \"Y\": 0.7634880542755127\n                    },\n                    {\n                        \"X\": 0.853428840637207,\n                        \"Y\": 0.8025698661804199\n                    },\n                    {\n                        \"X\": 0.7904189825057983,\n                        \"Y\": 0.802631139755249\n                    }\n                ]\n            },\n            \"Id\": \"8e9011d9-dde4-4472-a2d3-d57330eabae0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3d51207f-6f08-4970-8f4e-2e20f16a37aa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86286163330078,\n            \"Text\": \"Leaching from wood\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14254100620746613,\n                    \"Height\": 0.039732467383146286,\n                    \"Left\": 0.7907981872558594,\n                    \"Top\": 0.810985803604126\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7907981872558594,\n                        \"Y\": 0.811124324798584\n                    },\n                    {\n                        \"X\": 0.9332793354988098,\n                        \"Y\": 0.810985803604126\n                    },\n                    {\n                        \"X\": 0.9333391785621643,\n                        \"Y\": 0.8505800366401672\n                    },\n                    {\n                        \"X\": 0.7908557653427124,\n                        \"Y\": 0.8507182598114014\n                    }\n                ]\n            },\n            \"Id\": \"51ae6158-0829-41ba-89bf-f932808f17a4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5f0c75dc-7ea4-48f8-a648-607fbb1237b9\",\n                        \"0f95a394-d172-43c0-a50b-c0f82d15f832\",\n                        \"5adc4dc3-26f5-42c6-9b1e-4c333ad1c62a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.60367584228516,\n            \"Text\": \"preservatives\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09453941136598587,\n                    \"Height\": 0.03860701993107796,\n                    \"Left\": 0.7904151678085327,\n                    \"Top\": 0.8607068061828613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7904151678085327,\n                        \"Y\": 0.8607984185218811\n                    },\n                    {\n                        \"X\": 0.8848971128463745,\n                        \"Y\": 0.8607068061828613\n                    },\n                    {\n                        \"X\": 0.884954571723938,\n                        \"Y\": 0.8992223739624023\n                    },\n                    {\n                        \"X\": 0.7904711961746216,\n                        \"Y\": 0.8993138074874878\n                    }\n                ]\n            },\n            \"Id\": \"de7c103d-8bf3-4580-9641-fa675ccb923c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e2ba540e-73e0-415e-b333-9a0e0fe99663\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93769836425781,\n            \"Text\": \"Title\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.035652536898851395,\n                    \"Height\": 0.0364089272916317,\n                    \"Left\": 0.8047793507575989,\n                    \"Top\": 0.016497064381837845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8047793507575989,\n                        \"Y\": 0.016532985493540764\n                    },\n                    {\n                        \"X\": 0.8403782248497009,\n                        \"Y\": 0.016497064381837845\n                    },\n                    {\n                        \"X\": 0.8404318690299988,\n                        \"Y\": 0.05287013202905655\n                    },\n                    {\n                        \"X\": 0.8048324584960938,\n                        \"Y\": 0.05290599167346954\n                    }\n                ]\n            },\n            \"Id\": \"2788d5ae-dd68-4f0c-8d71-845dfe1a516c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96796417236328,\n            \"Text\": \"LEAD\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05443011596798897,\n                    \"Height\": 0.0333949476480484,\n                    \"Left\": 0.038169652223587036,\n                    \"Top\": 0.1851901412010193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.038169652223587036,\n                        \"Y\": 0.1852445900440216\n                    },\n                    {\n                        \"X\": 0.09256062656641006,\n                        \"Y\": 0.1851901412010193\n                    },\n                    {\n                        \"X\": 0.0925997719168663,\n                        \"Y\": 0.21853071451187134\n                    },\n                    {\n                        \"X\": 0.03820806369185448,\n                        \"Y\": 0.2185850888490677\n                    }\n                ]\n            },\n            \"Id\": \"a33dbc39-2fef-442f-8a54-7580204ef828\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.84153747558594,\n            \"Text\": \"&\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.013059793971478939,\n                    \"Height\": 0.03334428369998932,\n                    \"Left\": 0.09623459726572037,\n                    \"Top\": 0.1853649765253067\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09623459726572037,\n                        \"Y\": 0.18537801504135132\n                    },\n                    {\n                        \"X\": 0.10925503820180893,\n                        \"Y\": 0.1853649765253067\n                    },\n                    {\n                        \"X\": 0.10929439216852188,\n                        \"Y\": 0.2186962366104126\n                    },\n                    {\n                        \"X\": 0.09627377986907959,\n                        \"Y\": 0.21870926022529602\n                    }\n                ]\n            },\n            \"Id\": \"0a56211f-825e-42ff-ae90-21b2ec589dbd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83695220947266,\n            \"Text\": \"COPPER\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08166893571615219,\n                    \"Height\": 0.033735599368810654,\n                    \"Left\": 0.11265290528535843,\n                    \"Top\": 0.1853782832622528\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11265290528535843,\n                        \"Y\": 0.18546000123023987\n                    },\n                    {\n                        \"X\": 0.1942809522151947,\n                        \"Y\": 0.1853782832622528\n                    },\n                    {\n                        \"X\": 0.19432184100151062,\n                        \"Y\": 0.21903228759765625\n                    },\n                    {\n                        \"X\": 0.1126926839351654,\n                        \"Y\": 0.21911388635635376\n                    }\n                ]\n            },\n            \"Id\": \"de0f8527-d768-4e62-9e0f-299ae66a47e1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.05974578857422,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.008359910920262337,\n                    \"Height\": 0.007001691963523626,\n                    \"Left\": 0.19799941778182983,\n                    \"Top\": 0.20117472112178802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19799941778182983,\n                        \"Y\": 0.20118308067321777\n                    },\n                    {\n                        \"X\": 0.20635080337524414,\n                        \"Y\": 0.20117472112178802\n                    },\n                    {\n                        \"X\": 0.20635934174060822,\n                        \"Y\": 0.20816805958747864\n                    },\n                    {\n                        \"X\": 0.19800792634487152,\n                        \"Y\": 0.2081764042377472\n                    }\n                ]\n            },\n            \"Id\": \"563fe2db-665a-428b-87fd-f0a72c20344a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90418243408203,\n            \"Text\": \"Tested\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.046147629618644714,\n                    \"Height\": 0.032410603016614914,\n                    \"Left\": 0.21048055589199066,\n                    \"Top\": 0.1858191043138504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21048055589199066,\n                        \"Y\": 0.18586526811122894\n                    },\n                    {\n                        \"X\": 0.25658807158470154,\n                        \"Y\": 0.1858191043138504\n                    },\n                    {\n                        \"X\": 0.2566281855106354,\n                        \"Y\": 0.21818362176418304\n                    },\n                    {\n                        \"X\": 0.21052008867263794,\n                        \"Y\": 0.21822971105575562\n                    }\n                ]\n            },\n            \"Id\": \"6d1a70dd-37a8-4a3d-9691-5ab504ae9930\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98224639892578,\n            \"Text\": \"at\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015051794238388538,\n                    \"Height\": 0.02832617424428463,\n                    \"Left\": 0.2594901919364929,\n                    \"Top\": 0.18942536413669586\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2594901919364929,\n                        \"Y\": 0.18944038450717926\n                    },\n                    {\n                        \"X\": 0.27450668811798096,\n                        \"Y\": 0.18942536413669586\n                    },\n                    {\n                        \"X\": 0.274541974067688,\n                        \"Y\": 0.21773652732372284\n                    },\n                    {\n                        \"X\": 0.259525328874588,\n                        \"Y\": 0.21775153279304504\n                    }\n                ]\n            },\n            \"Id\": \"966da8d5-71f2-4bd8-ab0d-39e35a0feec0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.94263458251953,\n            \"Text\": \"Customers'\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07900834828615189,\n                    \"Height\": 0.03159079700708389,\n                    \"Left\": 0.27760374546051025,\n                    \"Top\": 0.18620221316814423\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27760374546051025,\n                        \"Y\": 0.1862812638282776\n                    },\n                    {\n                        \"X\": 0.3565717339515686,\n                        \"Y\": 0.18620221316814423\n                    },\n                    {\n                        \"X\": 0.35661208629608154,\n                        \"Y\": 0.21771405637264252\n                    },\n                    {\n                        \"X\": 0.277643084526062,\n                        \"Y\": 0.21779300272464752\n                    }\n                ]\n            },\n            \"Id\": \"6dbb409b-c878-45aa-a715-1ef54bed4cb3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90968322753906,\n            \"Text\": \"Taps:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03621753305196762,\n                    \"Height\": 0.039867889136075974,\n                    \"Left\": 0.35886138677597046,\n                    \"Top\": 0.18600669503211975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35886138677597046,\n                        \"Y\": 0.1860428899526596\n                    },\n                    {\n                        \"X\": 0.3950273096561432,\n                        \"Y\": 0.18600669503211975\n                    },\n                    {\n                        \"X\": 0.3950789272785187,\n                        \"Y\": 0.22583843767642975\n                    },\n                    {\n                        \"X\": 0.3589124083518982,\n                        \"Y\": 0.22587458789348602\n                    }\n                ]\n            },\n            \"Id\": \"1b66133e-34d7-4341-9d62-607d449e985c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96745300292969,\n            \"Text\": \"Testing\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04743096977472305,\n                    \"Height\": 0.03858865797519684,\n                    \"Left\": 0.3996880352497101,\n                    \"Top\": 0.18664777278900146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3996880352497101,\n                        \"Y\": 0.18669520318508148\n                    },\n                    {\n                        \"X\": 0.4470682740211487,\n                        \"Y\": 0.18664777278900146\n                    },\n                    {\n                        \"X\": 0.44711899757385254,\n                        \"Y\": 0.22518907487392426\n                    },\n                    {\n                        \"X\": 0.39973804354667664,\n                        \"Y\": 0.2252364307641983\n                    }\n                ]\n            },\n            \"Id\": \"2325bf57-97b8-41f4-810e-3914efc738f8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9615249633789,\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0116902319714427,\n                    \"Height\": 0.032711490988731384,\n                    \"Left\": 0.44995051622390747,\n                    \"Top\": 0.18564851582050323\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44995051622390747,\n                        \"Y\": 0.18566016852855682\n                    },\n                    {\n                        \"X\": 0.4615975320339203,\n                        \"Y\": 0.18564851582050323\n                    },\n                    {\n                        \"X\": 0.46164077520370483,\n                        \"Y\": 0.21834835410118103\n                    },\n                    {\n                        \"X\": 0.4499936103820801,\n                        \"Y\": 0.21836000680923462\n                    }\n                ]\n            },\n            \"Id\": \"e721b988-9fbd-4ef7-84c2-48f2e5599858\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9378890991211,\n            \"Text\": \"done\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033911366015672684,\n                    \"Height\": 0.03211068734526634,\n                    \"Left\": 0.4647802412509918,\n                    \"Top\": 0.18581955134868622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4647802412509918,\n                        \"Y\": 0.18585345149040222\n                    },\n                    {\n                        \"X\": 0.4986487030982971,\n                        \"Y\": 0.18581955134868622\n                    },\n                    {\n                        \"X\": 0.4986916184425354,\n                        \"Y\": 0.21789637207984924\n                    },\n                    {\n                        \"X\": 0.4648227095603943,\n                        \"Y\": 0.21793024241924286\n                    }\n                ]\n            },\n            \"Id\": \"fcca6a2d-56ec-43f8-b0c9-565738acb78c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9658203125,\n            \"Text\": \"every\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03755577281117439,\n                    \"Height\": 0.0316811203956604,\n                    \"Left\": 0.5017651319503784,\n                    \"Top\": 0.1941051036119461\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5017651319503784,\n                        \"Y\": 0.1941426545381546\n                    },\n                    {\n                        \"X\": 0.5392780900001526,\n                        \"Y\": 0.1941051036119461\n                    },\n                    {\n                        \"X\": 0.5393209457397461,\n                        \"Y\": 0.22574874758720398\n                    },\n                    {\n                        \"X\": 0.5018075108528137,\n                        \"Y\": 0.2257862240076065\n                    }\n                ]\n            },\n            \"Id\": \"f770b8de-ae83-42de-95e1-16b42242a87f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88339233398438,\n            \"Text\": \"3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009672046639025211,\n                    \"Height\": 0.031191615387797356,\n                    \"Left\": 0.5417137742042542,\n                    \"Top\": 0.1865854263305664\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5417137742042542,\n                        \"Y\": 0.18659506738185883\n                    },\n                    {\n                        \"X\": 0.5513434410095215,\n                        \"Y\": 0.1865854263305664\n                    },\n                    {\n                        \"X\": 0.5513858199119568,\n                        \"Y\": 0.21776741743087769\n                    },\n                    {\n                        \"X\": 0.5417559742927551,\n                        \"Y\": 0.2177770435810089\n                    }\n                ]\n            },\n            \"Id\": \"dafdd846-6091-433f-ad75-23a6b04b4d0a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90953826904297,\n            \"Text\": \"years.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0404827781021595,\n                    \"Height\": 0.032507337629795074,\n                    \"Left\": 0.5536061525344849,\n                    \"Top\": 0.1936337947845459\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5536061525344849,\n                        \"Y\": 0.1936742663383484\n                    },\n                    {\n                        \"X\": 0.5940442681312561,\n                        \"Y\": 0.1936337947845459\n                    },\n                    {\n                        \"X\": 0.5940889120101929,\n                        \"Y\": 0.22610072791576385\n                    },\n                    {\n                        \"X\": 0.5536502599716187,\n                        \"Y\": 0.22614113986492157\n                    }\n                ]\n            },\n            \"Id\": \"74645236-201f-4afd-96a1-e17bf2d0f70b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9703369140625,\n            \"Text\": \"Most\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03691675513982773,\n                    \"Height\": 0.031701937317848206,\n                    \"Left\": 0.5972714424133301,\n                    \"Top\": 0.18630176782608032\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5972714424133301,\n                        \"Y\": 0.18633869290351868\n                    },\n                    {\n                        \"X\": 0.634144127368927,\n                        \"Y\": 0.18630176782608032\n                    },\n                    {\n                        \"X\": 0.634188175201416,\n                        \"Y\": 0.21796685457229614\n                    },\n                    {\n                        \"X\": 0.5973150134086609,\n                        \"Y\": 0.21800372004508972\n                    }\n                ]\n            },\n            \"Id\": \"381f4bee-bbfc-4b1a-92f3-d41d9e8e3df1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9714584350586,\n            \"Text\": \"recent\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04372771084308624,\n                    \"Height\": 0.029063120484352112,\n                    \"Left\": 0.6365834474563599,\n                    \"Top\": 0.18918687105178833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6365834474563599,\n                        \"Y\": 0.18923060595989227\n                    },\n                    {\n                        \"X\": 0.680270254611969,\n                        \"Y\": 0.18918687105178833\n                    },\n                    {\n                        \"X\": 0.6803111433982849,\n                        \"Y\": 0.21820631623268127\n                    },\n                    {\n                        \"X\": 0.6366238594055176,\n                        \"Y\": 0.21824999153614044\n                    }\n                ]\n            },\n            \"Id\": \"71806ffe-4ad4-44ad-8e18-729d346da0af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98309326171875,\n            \"Text\": \"tests\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03354436531662941,\n                    \"Height\": 0.028707167133688927,\n                    \"Left\": 0.6826438903808594,\n                    \"Top\": 0.18942299485206604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6826438903808594,\n                        \"Y\": 0.1894565373659134\n                    },\n                    {\n                        \"X\": 0.7161474227905273,\n                        \"Y\": 0.18942299485206604\n                    },\n                    {\n                        \"X\": 0.7161882519721985,\n                        \"Y\": 0.21809667348861694\n                    },\n                    {\n                        \"X\": 0.6826843619346619,\n                        \"Y\": 0.21813015639781952\n                    }\n                ]\n            },\n            \"Id\": \"6d29bc3f-56ad-4987-90fe-f9219516939a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93932342529297,\n            \"Text\": \"were\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033839814364910126,\n                    \"Height\": 0.023575283586978912,\n                    \"Left\": 0.7190719842910767,\n                    \"Top\": 0.1942320019006729\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7190719842910767,\n                        \"Y\": 0.19426584243774414\n                    },\n                    {\n                        \"X\": 0.7528778910636902,\n                        \"Y\": 0.1942320019006729\n                    },\n                    {\n                        \"X\": 0.7529117465019226,\n                        \"Y\": 0.21777349710464478\n                    },\n                    {\n                        \"X\": 0.7191055417060852,\n                        \"Y\": 0.21780729293823242\n                    }\n                ]\n            },\n            \"Id\": \"9706b6c2-19f3-4afe-82e5-49cd490021a9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92205810546875,\n            \"Text\": \"done\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034048788249492645,\n                    \"Height\": 0.03174310922622681,\n                    \"Left\": 0.7558175921440125,\n                    \"Top\": 0.1860542595386505\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7558175921440125,\n                        \"Y\": 0.18608830869197845\n                    },\n                    {\n                        \"X\": 0.7898202538490295,\n                        \"Y\": 0.1860542595386505\n                    },\n                    {\n                        \"X\": 0.7898663878440857,\n                        \"Y\": 0.21776337921619415\n                    },\n                    {\n                        \"X\": 0.7558632493019104,\n                        \"Y\": 0.21779736876487732\n                    }\n                ]\n            },\n            \"Id\": \"c9124825-c17f-466c-a80c-4f90e87a9834\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94862365722656,\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0128184724599123,\n                    \"Height\": 0.03043612278997898,\n                    \"Left\": 0.7925595641136169,\n                    \"Top\": 0.18704438209533691\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7925595641136169,\n                        \"Y\": 0.18705716729164124\n                    },\n                    {\n                        \"X\": 0.8053335547447205,\n                        \"Y\": 0.18704438209533691\n                    },\n                    {\n                        \"X\": 0.8053780198097229,\n                        \"Y\": 0.21746774017810822\n                    },\n                    {\n                        \"X\": 0.7926038503646851,\n                        \"Y\": 0.21748051047325134\n                    }\n                ]\n            },\n            \"Id\": \"1ee8f799-5eb4-4af1-8431-74432de74488\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92266845703125,\n            \"Text\": \"2019.\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040691178292036057,\n                    \"Height\": 0.03209720551967621,\n                    \"Left\": 0.808964192867279,\n                    \"Top\": 0.18593339622020721\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.808964192867279,\n                        \"Y\": 0.1859740912914276\n                    },\n                    {\n                        \"X\": 0.8496079444885254,\n                        \"Y\": 0.18593339622020721\n                    },\n                    {\n                        \"X\": 0.8496553301811218,\n                        \"Y\": 0.217989981174469\n                    },\n                    {\n                        \"X\": 0.8090110421180725,\n                        \"Y\": 0.21803060173988342\n                    }\n                ]\n            },\n            \"Id\": \"4f01abc3-153f-4642-aed0-71961c5abe46\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84135437011719,\n            \"Text\": \"EPA's\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.041261423379182816,\n                    \"Height\": 0.030937664210796356,\n                    \"Left\": 0.10768573731184006,\n                    \"Top\": 0.2553328573703766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10768573731184006,\n                        \"Y\": 0.255374014377594\n                    },\n                    {\n                        \"X\": 0.14891019463539124,\n                        \"Y\": 0.2553328573703766\n                    },\n                    {\n                        \"X\": 0.14894716441631317,\n                        \"Y\": 0.2862294614315033\n                    },\n                    {\n                        \"X\": 0.1077221930027008,\n                        \"Y\": 0.28627052903175354\n                    }\n                ]\n            },\n            \"Id\": \"d15cacb7-9fc4-47b0-a5b0-ec1d25a3ebd3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93536376953125,\n            \"Text\": \"Action\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04924309626221657,\n                    \"Height\": 0.03069610521197319,\n                    \"Left\": 0.15133355557918549,\n                    \"Top\": 0.25540751218795776\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15133355557918549,\n                        \"Y\": 0.2554566264152527\n                    },\n                    {\n                        \"X\": 0.20053935050964355,\n                        \"Y\": 0.25540751218795776\n                    },\n                    {\n                        \"X\": 0.20057666301727295,\n                        \"Y\": 0.2860546112060547\n                    },\n                    {\n                        \"X\": 0.15137025713920593,\n                        \"Y\": 0.28610363602638245\n                    }\n                ]\n            },\n            \"Id\": \"ac8a317b-3f8b-4b66-a6fa-1d8da81a328a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96068572998047,\n            \"Text\": \"Level\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03927032649517059,\n                    \"Height\": 0.031069787219166756,\n                    \"Left\": 0.20425957441329956,\n                    \"Top\": 0.2548275887966156\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20425957441329956,\n                        \"Y\": 0.25486674904823303\n                    },\n                    {\n                        \"X\": 0.24349159002304077,\n                        \"Y\": 0.2548275887966156\n                    },\n                    {\n                        \"X\": 0.24352990090847015,\n                        \"Y\": 0.28585827350616455\n                    },\n                    {\n                        \"X\": 0.20429739356040955,\n                        \"Y\": 0.2858973741531372\n                    }\n                ]\n            },\n            \"Id\": \"34e6ab38-8837-41de-a4ad-e4786102e8fe\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.59454345703125,\n            \"Text\": \"-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.006470394786447287,\n                    \"Height\": 0.00806344859302044,\n                    \"Left\": 0.24694016575813293,\n                    \"Top\": 0.2683115601539612\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24694016575813293,\n                        \"Y\": 0.2683179974555969\n                    },\n                    {\n                        \"X\": 0.253400593996048,\n                        \"Y\": 0.2683115601539612\n                    },\n                    {\n                        \"X\": 0.25341054797172546,\n                        \"Y\": 0.27636855840682983\n                    },\n                    {\n                        \"X\": 0.24695011973381042,\n                        \"Y\": 0.2763749957084656\n                    }\n                ]\n            },\n            \"Id\": \"6258e764-4d80-4b2e-8c07-4912179e43da\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.78617858886719,\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02312951348721981,\n                    \"Height\": 0.03210118040442467,\n                    \"Left\": 0.2565450966358185,\n                    \"Top\": 0.2539235055446625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2565450966358185,\n                        \"Y\": 0.25394654273986816\n                    },\n                    {\n                        \"X\": 0.2796345353126526,\n                        \"Y\": 0.2539235055446625\n                    },\n                    {\n                        \"X\": 0.27967458963394165,\n                        \"Y\": 0.28600168228149414\n                    },\n                    {\n                        \"X\": 0.25658485293388367,\n                        \"Y\": 0.28602468967437744\n                    }\n                ]\n            },\n            \"Id\": \"fcee693b-c36e-4fd8-b571-f9f7dc2ac482\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94367218017578,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.008606890216469765,\n                    \"Height\": 0.023933816701173782,\n                    \"Left\": 0.28228244185447693,\n                    \"Top\": 0.26203787326812744\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28228244185447693,\n                        \"Y\": 0.2620464265346527\n                    },\n                    {\n                        \"X\": 0.29085931181907654,\n                        \"Y\": 0.26203787326812744\n                    },\n                    {\n                        \"X\": 0.29088932275772095,\n                        \"Y\": 0.28596311807632446\n                    },\n                    {\n                        \"X\": 0.2823123335838318,\n                        \"Y\": 0.28597167134284973\n                    }\n                ]\n            },\n            \"Id\": \"ce6dd7a9-855e-4f67-822c-f83a82c10263\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60625457763672,\n            \"Text\": \"Ideal\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0363025963306427,\n                    \"Height\": 0.030902976170182228,\n                    \"Left\": 0.30926626920700073,\n                    \"Top\": 0.25497740507125854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30926626920700073,\n                        \"Y\": 0.2550135850906372\n                    },\n                    {\n                        \"X\": 0.3455294966697693,\n                        \"Y\": 0.25497740507125854\n                    },\n                    {\n                        \"X\": 0.34556886553764343,\n                        \"Y\": 0.28584423661231995\n                    },\n                    {\n                        \"X\": 0.30930519104003906,\n                        \"Y\": 0.28588035702705383\n                    }\n                ]\n            },\n            \"Id\": \"9b687a40-c96f-4ce1-800f-f45b9e9f229b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97870635986328,\n            \"Text\": \"Goal\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03462590277194977,\n                    \"Height\": 0.030943911522626877,\n                    \"Left\": 0.3486308157444,\n                    \"Top\": 0.2548249363899231\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3486308157444,\n                        \"Y\": 0.25485944747924805\n                    },\n                    {\n                        \"X\": 0.3832167983055115,\n                        \"Y\": 0.2548249363899231\n                    },\n                    {\n                        \"X\": 0.3832567036151886,\n                        \"Y\": 0.2857343852519989\n                    },\n                    {\n                        \"X\": 0.34867027401924133,\n                        \"Y\": 0.28576886653900146\n                    }\n                ]\n            },\n            \"Id\": \"e549fa13-9259-4e57-89d4-c038686e4d00\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86742401123047,\n            \"Text\": \"90%\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.036810752004384995,\n                    \"Height\": 0.031553737819194794,\n                    \"Left\": 0.4194265902042389,\n                    \"Top\": 0.25444188714027405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4194265902042389,\n                        \"Y\": 0.2544785737991333\n                    },\n                    {\n                        \"X\": 0.45619574189186096,\n                        \"Y\": 0.25444188714027405\n                    },\n                    {\n                        \"X\": 0.4562373459339142,\n                        \"Y\": 0.2859589755535126\n                    },\n                    {\n                        \"X\": 0.4194677174091339,\n                        \"Y\": 0.28599563241004944\n                    }\n                ]\n            },\n            \"Id\": \"7b951c9d-7f18-4cfe-9fc8-208bb3ca825d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.44313049316406,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017007891088724136,\n                    \"Height\": 0.030355457216501236,\n                    \"Left\": 0.45846429467201233,\n                    \"Top\": 0.25521427392959595\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45846429467201233,\n                        \"Y\": 0.25523120164871216\n                    },\n                    {\n                        \"X\": 0.4754319190979004,\n                        \"Y\": 0.25521427392959595\n                    },\n                    {\n                        \"X\": 0.47547218203544617,\n                        \"Y\": 0.2855527997016907\n                    },\n                    {\n                        \"X\": 0.4585043787956238,\n                        \"Y\": 0.2855697274208069\n                    }\n                ]\n            },\n            \"Id\": \"b3720ee8-7085-4a17-a7a2-003750d0abfe\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80116271972656,\n            \"Text\": \"PWD\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03964254632592201,\n                    \"Height\": 0.03098279796540737,\n                    \"Left\": 0.4780602753162384,\n                    \"Top\": 0.2549575865268707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4780602753162384,\n                        \"Y\": 0.2549971044063568\n                    },\n                    {\n                        \"X\": 0.5176612138748169,\n                        \"Y\": 0.2549575865268707\n                    },\n                    {\n                        \"X\": 0.5177028179168701,\n                        \"Y\": 0.28590092062950134\n                    },\n                    {\n                        \"X\": 0.4781014025211334,\n                        \"Y\": 0.28594037890434265\n                    }\n                ]\n            },\n            \"Id\": \"42e033fe-ef6a-492c-ab73-75bc9ad4d24c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98609161376953,\n            \"Text\": \"Number\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06146464869379997,\n                    \"Height\": 0.03217104822397232,\n                    \"Left\": 0.5556541681289673,\n                    \"Top\": 0.2545442283153534\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5556541681289673,\n                        \"Y\": 0.2546055018901825\n                    },\n                    {\n                        \"X\": 0.6170743703842163,\n                        \"Y\": 0.2545442283153534\n                    },\n                    {\n                        \"X\": 0.6171188354492188,\n                        \"Y\": 0.2866540551185608\n                    },\n                    {\n                        \"X\": 0.5556978583335876,\n                        \"Y\": 0.2867152690887451\n                    }\n                ]\n            },\n            \"Id\": \"07c4de8d-2dca-4440-b5e4-d3eb4e78da36\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.9545669555664,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016476977616548538,\n                    \"Height\": 0.03156981244683266,\n                    \"Left\": 0.6192881464958191,\n                    \"Top\": 0.2548779547214508\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6192881464958191,\n                        \"Y\": 0.2548943758010864\n                    },\n                    {\n                        \"X\": 0.6357212066650391,\n                        \"Y\": 0.2548779547214508\n                    },\n                    {\n                        \"X\": 0.6357651352882385,\n                        \"Y\": 0.2864314019680023\n                    },\n                    {\n                        \"X\": 0.6193318963050842,\n                        \"Y\": 0.28644779324531555\n                    }\n                ]\n            },\n            \"Id\": \"efa5077e-36df-4511-8489-95f562c356cc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97289276123047,\n            \"Text\": \"homes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04973649978637695,\n                    \"Height\": 0.030369697138667107,\n                    \"Left\": 0.6381411552429199,\n                    \"Top\": 0.25555622577667236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6381411552429199,\n                        \"Y\": 0.2556058168411255\n                    },\n                    {\n                        \"X\": 0.6878347992897034,\n                        \"Y\": 0.25555622577667236\n                    },\n                    {\n                        \"X\": 0.6878776550292969,\n                        \"Y\": 0.28587639331817627\n                    },\n                    {\n                        \"X\": 0.6381834149360657,\n                        \"Y\": 0.2859259247779846\n                    }\n                ]\n            },\n            \"Id\": \"e25c892e-ddd4-4e1b-a86b-d4b3dffb73b0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82270050048828,\n            \"Text\": \"Violation\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0671735480427742,\n                    \"Height\": 0.03163660317659378,\n                    \"Left\": 0.7076250314712524,\n                    \"Top\": 0.2548553943634033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7076250314712524,\n                        \"Y\": 0.25492236018180847\n                    },\n                    {\n                        \"X\": 0.7747528553009033,\n                        \"Y\": 0.2548553943634033\n                    },\n                    {\n                        \"X\": 0.774798572063446,\n                        \"Y\": 0.28642508387565613\n                    },\n                    {\n                        \"X\": 0.7076699137687683,\n                        \"Y\": 0.2864919900894165\n                    }\n                ]\n            },\n            \"Id\": \"febb41ed-4faa-4269-b335-c975f7762351\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95270538330078,\n            \"Text\": \"Source\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051843151450157166,\n                    \"Height\": 0.030669117346405983,\n                    \"Left\": 0.8431529402732849,\n                    \"Top\": 0.2551644444465637\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8431529402732849,\n                        \"Y\": 0.255216121673584\n                    },\n                    {\n                        \"X\": 0.894950270652771,\n                        \"Y\": 0.2551644444465637\n                    },\n                    {\n                        \"X\": 0.8949961066246033,\n                        \"Y\": 0.28578194975852966\n                    },\n                    {\n                        \"X\": 0.8431981205940247,\n                        \"Y\": 0.28583353757858276\n                    }\n                ]\n            },\n            \"Id\": \"67b8ead9-0950-4871-ac38-683e9aa3b7d6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88607025146484,\n            \"Text\": \"representative\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10691346973180771,\n                    \"Height\": 0.040460821241140366,\n                    \"Left\": 0.11028346419334412,\n                    \"Top\": 0.3041708469390869\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11028346419334412,\n                        \"Y\": 0.304277241230011\n                    },\n                    {\n                        \"X\": 0.21714752912521362,\n                        \"Y\": 0.3041708469390869\n                    },\n                    {\n                        \"X\": 0.21719692647457123,\n                        \"Y\": 0.34452545642852783\n                    },\n                    {\n                        \"X\": 0.11033112555742264,\n                        \"Y\": 0.3446316719055176\n                    }\n                ]\n            },\n            \"Id\": \"20493465-b093-4ad0-bf8d-13d010326951\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83158874511719,\n            \"Text\": \"sampling\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0674792006611824,\n                    \"Height\": 0.041370585560798645,\n                    \"Left\": 0.2206687480211258,\n                    \"Top\": 0.30307531356811523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2206687480211258,\n                        \"Y\": 0.3031424283981323\n                    },\n                    {\n                        \"X\": 0.28809618949890137,\n                        \"Y\": 0.30307531356811523\n                    },\n                    {\n                        \"X\": 0.2881479263305664,\n                        \"Y\": 0.34437888860702515\n                    },\n                    {\n                        \"X\": 0.2207193523645401,\n                        \"Y\": 0.3444458842277527\n                    }\n                ]\n            },\n            \"Id\": \"3676927c-cdd0-443f-8b49-6f74a175f562\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74777221679688,\n            \"Text\": \"(EPA's\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04662078991532326,\n                    \"Height\": 0.039938077330589294,\n                    \"Left\": 0.322643905878067,\n                    \"Top\": 0.3020908534526825\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.322643905878067,\n                        \"Y\": 0.30213722586631775\n                    },\n                    {\n                        \"X\": 0.36921343207359314,\n                        \"Y\": 0.3020908534526825\n                    },\n                    {\n                        \"X\": 0.3692646920681,\n                        \"Y\": 0.3419826328754425\n                    },\n                    {\n                        \"X\": 0.32269442081451416,\n                        \"Y\": 0.3420289158821106\n                    }\n                ]\n            },\n            \"Id\": \"25127e4d-e3d6-4733-a467-4c67384bb865\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.20834350585938,\n            \"Text\": \"customers'\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08318845182657242,\n                    \"Height\": 0.03311346471309662,\n                    \"Left\": 0.4004742205142975,\n                    \"Top\": 0.30365023016929626\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4004742205142975,\n                        \"Y\": 0.3037330210208893\n                    },\n                    {\n                        \"X\": 0.48361870646476746,\n                        \"Y\": 0.30365023016929626\n                    },\n                    {\n                        \"X\": 0.4836626946926117,\n                        \"Y\": 0.3366810381412506\n                    },\n                    {\n                        \"X\": 0.4005171060562134,\n                        \"Y\": 0.3367636799812317\n                    }\n                ]\n            },\n            \"Id\": \"f20c8316-da5d-43dc-8ab7-7668e35a152b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97882843017578,\n            \"Text\": \"homes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05008476600050926,\n                    \"Height\": 0.03346870839595795,\n                    \"Left\": 0.4866735637187958,\n                    \"Top\": 0.30284130573272705\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4866735637187958,\n                        \"Y\": 0.3028911352157593\n                    },\n                    {\n                        \"X\": 0.5367131233215332,\n                        \"Y\": 0.30284130573272705\n                    },\n                    {\n                        \"X\": 0.536758303642273,\n                        \"Y\": 0.33626025915145874\n                    },\n                    {\n                        \"X\": 0.486718088388443,\n                        \"Y\": 0.3363099992275238\n                    }\n                ]\n            },\n            \"Id\": \"21f3e87c-dd9b-4b6b-87b2-6d97706de536\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95851135253906,\n            \"Text\": \"considered\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08128757774829865,\n                    \"Height\": 0.033749062567949295,\n                    \"Left\": 0.5521256327629089,\n                    \"Top\": 0.3026037812232971\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5521256327629089,\n                        \"Y\": 0.3026846647262573\n                    },\n                    {\n                        \"X\": 0.6333663463592529,\n                        \"Y\": 0.3026037812232971\n                    },\n                    {\n                        \"X\": 0.6334131956100464,\n                        \"Y\": 0.33627209067344666\n                    },\n                    {\n                        \"X\": 0.5521714091300964,\n                        \"Y\": 0.3363528549671173\n                    }\n                ]\n            },\n            \"Id\": \"7188a4aa-4e1c-477e-b356-a048ec71cc70\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94952392578125,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016071317717432976,\n                    \"Height\": 0.02954157628118992,\n                    \"Left\": 0.6362994313240051,\n                    \"Top\": 0.30662763118743896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6362994313240051,\n                        \"Y\": 0.3066435754299164\n                    },\n                    {\n                        \"X\": 0.6523293852806091,\n                        \"Y\": 0.30662763118743896\n                    },\n                    {\n                        \"X\": 0.6523707509040833,\n                        \"Y\": 0.3361532688140869\n                    },\n                    {\n                        \"X\": 0.6363404989242554,\n                        \"Y\": 0.33616921305656433\n                    }\n                ]\n            },\n            \"Id\": \"4d3a6117-9922-4afd-b220-12ef169f11b2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97312927246094,\n            \"Text\": \"have\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03504756838083267,\n                    \"Height\": 0.032711755484342575,\n                    \"Left\": 0.6556188464164734,\n                    \"Top\": 0.30311456322669983\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6556188464164734,\n                        \"Y\": 0.30314940214157104\n                    },\n                    {\n                        \"X\": 0.6906201839447021,\n                        \"Y\": 0.30311456322669983\n                    },\n                    {\n                        \"X\": 0.6906663775444031,\n                        \"Y\": 0.3357914984226227\n                    },\n                    {\n                        \"X\": 0.6556645631790161,\n                        \"Y\": 0.3358263075351715\n                    }\n                ]\n            },\n            \"Id\": \"4ff130c7-dc4f-4dcd-9a88-de2e005a31d2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91032409667969,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015519389882683754,\n                    \"Height\": 0.033397868275642395,\n                    \"Left\": 0.12819145619869232,\n                    \"Top\": 0.35269758105278015\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12819145619869232,\n                        \"Y\": 0.3527129590511322\n                    },\n                    {\n                        \"X\": 0.1436709761619568,\n                        \"Y\": 0.35269758105278015\n                    },\n                    {\n                        \"X\": 0.14371083676815033,\n                        \"Y\": 0.3860800862312317\n                    },\n                    {\n                        \"X\": 0.12823112308979034,\n                        \"Y\": 0.38609543442726135\n                    }\n                ]\n            },\n            \"Id\": \"aa2d2177-64a3-4f51-a182-61d847dd35c8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94104766845703,\n            \"Text\": \"customer\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07005235552787781,\n                    \"Height\": 0.028426675125956535,\n                    \"Left\": 0.1472778618335724,\n                    \"Top\": 0.3575228452682495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1472778618335724,\n                        \"Y\": 0.35759237408638\n                    },\n                    {\n                        \"X\": 0.21729549765586853,\n                        \"Y\": 0.3575228452682495\n                    },\n                    {\n                        \"X\": 0.2173302173614502,\n                        \"Y\": 0.38588008284568787\n                    },\n                    {\n                        \"X\": 0.14731177687644958,\n                        \"Y\": 0.3859495222568512\n                    }\n                ]\n            },\n            \"Id\": \"61a94d1f-4756-40c3-ad7b-ebfda40a2b29\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9709701538086,\n            \"Text\": \"homes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049333468079566956,\n                    \"Height\": 0.033360663801431656,\n                    \"Left\": 0.2206757366657257,\n                    \"Top\": 0.35323721170425415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2206757366657257,\n                        \"Y\": 0.35328617691993713\n                    },\n                    {\n                        \"X\": 0.2699677348136902,\n                        \"Y\": 0.35323721170425415\n                    },\n                    {\n                        \"X\": 0.27000921964645386,\n                        \"Y\": 0.3865489959716797\n                    },\n                    {\n                        \"X\": 0.22071655094623566,\n                        \"Y\": 0.3865978717803955\n                    }\n                ]\n            },\n            \"Id\": \"82bef8bf-7dc8-4cbf-baab-d116dd72c129\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52544403076172,\n            \"Text\": \"MCLG)\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.051179707050323486,\n                    \"Height\": 0.04154125601053238,\n                    \"Left\": 0.3202211260795593,\n                    \"Top\": 0.35273823142051697\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3202211260795593,\n                        \"Y\": 0.3527890145778656\n                    },\n                    {\n                        \"X\": 0.37134748697280884,\n                        \"Y\": 0.35273823142051697\n                    },\n                    {\n                        \"X\": 0.3714008331298828,\n                        \"Y\": 0.3942287862300873\n                    },\n                    {\n                        \"X\": 0.32027363777160645,\n                        \"Y\": 0.39427947998046875\n                    }\n                ]\n            },\n            \"Id\": \"5704d9f6-2d2e-4a7b-87e7-c1f7e4020392\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91162109375,\n            \"Text\": \"were\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.037940800189971924,\n                    \"Height\": 0.02432146482169628,\n                    \"Left\": 0.41480255126953125,\n                    \"Top\": 0.36190664768218994\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41480255126953125,\n                        \"Y\": 0.3619442880153656\n                    },\n                    {\n                        \"X\": 0.4527113139629364,\n                        \"Y\": 0.36190664768218994\n                    },\n                    {\n                        \"X\": 0.4527433514595032,\n                        \"Y\": 0.3861905336380005\n                    },\n                    {\n                        \"X\": 0.414834201335907,\n                        \"Y\": 0.38622811436653137\n                    }\n                ]\n            },\n            \"Id\": \"854d02ca-c38a-42ce-92fd-f769409f164d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88972473144531,\n            \"Text\": \"less\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029444577172398567,\n                    \"Height\": 0.03390917181968689,\n                    \"Left\": 0.45566222071647644,\n                    \"Top\": 0.3526465892791748\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45566222071647644,\n                        \"Y\": 0.35267579555511475\n                    },\n                    {\n                        \"X\": 0.4850616753101349,\n                        \"Y\": 0.3526465892791748\n                    },\n                    {\n                        \"X\": 0.48510679602622986,\n                        \"Y\": 0.38652661442756653\n                    },\n                    {\n                        \"X\": 0.455706924200058,\n                        \"Y\": 0.3865557610988617\n                    }\n                ]\n            },\n            \"Id\": \"eafc1d69-c3f1-459d-903d-8b2a1375a27d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97012329101562,\n            \"Text\": \"than\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034165918827056885,\n                    \"Height\": 0.03265227749943733,\n                    \"Left\": 0.4878881573677063,\n                    \"Top\": 0.353468120098114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4878881573677063,\n                        \"Y\": 0.3535020053386688\n                    },\n                    {\n                        \"X\": 0.5220101475715637,\n                        \"Y\": 0.353468120098114\n                    },\n                    {\n                        \"X\": 0.5220540761947632,\n                        \"Y\": 0.3860865533351898\n                    },\n                    {\n                        \"X\": 0.48793160915374756,\n                        \"Y\": 0.38612040877342224\n                    }\n                ]\n            },\n            \"Id\": \"0215dfa5-73dd-4faa-a2d5-6c3ae324c07c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9725341796875,\n            \"Text\": \"elevated\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0628679171204567,\n                    \"Height\": 0.03353084623813629,\n                    \"Left\": 0.5665510892868042,\n                    \"Top\": 0.35255879163742065\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5665510892868042,\n                        \"Y\": 0.3526211977005005\n                    },\n                    {\n                        \"X\": 0.6293724775314331,\n                        \"Y\": 0.35255879163742065\n                    },\n                    {\n                        \"X\": 0.6294190287590027,\n                        \"Y\": 0.38602733612060547\n                    },\n                    {\n                        \"X\": 0.5665967464447021,\n                        \"Y\": 0.38608965277671814\n                    }\n                ]\n            },\n            \"Id\": \"0b41b37b-58a4-4360-8d54-ba5fef46c83a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95240020751953,\n            \"Text\": \"levels\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043468065559864044,\n                    \"Height\": 0.03392922133207321,\n                    \"Left\": 0.6331087946891785,\n                    \"Top\": 0.35251978039741516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6331087946891785,\n                        \"Y\": 0.35256290435791016\n                    },\n                    {\n                        \"X\": 0.6765291094779968,\n                        \"Y\": 0.35251978039741516\n                    },\n                    {\n                        \"X\": 0.6765768527984619,\n                        \"Y\": 0.38640594482421875\n                    },\n                    {\n                        \"X\": 0.6331559419631958,\n                        \"Y\": 0.38644900918006897\n                    }\n                ]\n            },\n            \"Id\": \"94d78290-b8f8-481e-bfa3-01fb503aec8d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.49565887451172,\n            \"Text\": \"Corrosion\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06808340549468994,\n                    \"Height\": 0.03223199397325516,\n                    \"Left\": 0.7902629375457764,\n                    \"Top\": 0.4148295819759369\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7902629375457764,\n                        \"Y\": 0.41489696502685547\n                    },\n                    {\n                        \"X\": 0.8582987189292908,\n                        \"Y\": 0.4148295819759369\n                    },\n                    {\n                        \"X\": 0.8583463430404663,\n                        \"Y\": 0.4469943046569824\n                    },\n                    {\n                        \"X\": 0.790309727191925,\n                        \"Y\": 0.44706156849861145\n                    }\n                ]\n            },\n            \"Id\": \"6c920fef-8d78-403c-8dbc-b6ce0a8b4162\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98915100097656,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015162006951868534,\n                    \"Height\": 0.031739410012960434,\n                    \"Left\": 0.8617692589759827,\n                    \"Top\": 0.4155227541923523\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8617692589759827,\n                        \"Y\": 0.4155377447605133\n                    },\n                    {\n                        \"X\": 0.8768840432167053,\n                        \"Y\": 0.4155227541923523\n                    },\n                    {\n                        \"X\": 0.8769312500953674,\n                        \"Y\": 0.4472472369670868\n                    },\n                    {\n                        \"X\": 0.8618162870407104,\n                        \"Y\": 0.447262167930603\n                    }\n                ]\n            },\n            \"Id\": \"deaa1f59-d364-490a-b075-0f3ea03cf572\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.53974151611328,\n            \"Text\": \"house-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04873252287507057,\n                    \"Height\": 0.03231034427881241,\n                    \"Left\": 0.8798405528068542,\n                    \"Top\": 0.41511040925979614\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8798405528068542,\n                        \"Y\": 0.41515862941741943\n                    },\n                    {\n                        \"X\": 0.9285243153572083,\n                        \"Y\": 0.41511040925979614\n                    },\n                    {\n                        \"X\": 0.9285730719566345,\n                        \"Y\": 0.4473726153373718\n                    },\n                    {\n                        \"X\": 0.8798885941505432,\n                        \"Y\": 0.44742074608802795\n                    }\n                ]\n            },\n            \"Id\": \"a6072afa-23d9-44ac-a804-c493723a2d8d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91661834716797,\n            \"Text\": \"90%\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0356430783867836,\n                    \"Height\": 0.034175433218479156,\n                    \"Left\": 0.1083236038684845,\n                    \"Top\": 0.45743411779403687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1083236038684845,\n                        \"Y\": 0.45746931433677673\n                    },\n                    {\n                        \"X\": 0.14392590522766113,\n                        \"Y\": 0.45743411779403687\n                    },\n                    {\n                        \"X\": 0.1439666897058487,\n                        \"Y\": 0.49157440662384033\n                    },\n                    {\n                        \"X\": 0.10836389660835266,\n                        \"Y\": 0.4916095435619354\n                    }\n                ]\n            },\n            \"Id\": \"5ba760ee-ca2e-4349-a855-5514672bacbb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9860610961914,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015213115140795708,\n                    \"Height\": 0.03315449878573418,\n                    \"Left\": 0.14775145053863525,\n                    \"Top\": 0.45800188183784485\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14775145053863525,\n                        \"Y\": 0.45801687240600586\n                    },\n                    {\n                        \"X\": 0.16292472183704376,\n                        \"Y\": 0.45800188183784485\n                    },\n                    {\n                        \"X\": 0.16296455264091492,\n                        \"Y\": 0.4911414086818695\n                    },\n                    {\n                        \"X\": 0.1477910876274109,\n                        \"Y\": 0.49115636944770813\n                    }\n                ]\n            },\n            \"Id\": \"25e1b4f7-b09a-46bc-87b0-258ce31a2fdd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.955078125,\n            \"Text\": \"homes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048727087676525116,\n                    \"Height\": 0.03304667770862579,\n                    \"Left\": 0.16693121194839478,\n                    \"Top\": 0.4589967429637909\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16693121194839478,\n                        \"Y\": 0.45904484391212463\n                    },\n                    {\n                        \"X\": 0.21561792492866516,\n                        \"Y\": 0.4589967429637909\n                    },\n                    {\n                        \"X\": 0.2156582921743393,\n                        \"Y\": 0.49199536442756653\n                    },\n                    {\n                        \"X\": 0.16697093844413757,\n                        \"Y\": 0.4920434057712555\n                    }\n                ]\n            },\n            \"Id\": \"241349f5-c4d5-43e0-909c-261cf507012f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98418426513672,\n            \"Text\": \"must\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03819086030125618,\n                    \"Height\": 0.029339123517274857,\n                    \"Left\": 0.21984416246414185,\n                    \"Top\": 0.46227630972862244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21984416246414185,\n                        \"Y\": 0.46231400966644287\n                    },\n                    {\n                        \"X\": 0.25799867510795593,\n                        \"Y\": 0.46227630972862244\n                    },\n                    {\n                        \"X\": 0.2580350339412689,\n                        \"Y\": 0.49157777428627014\n                    },\n                    {\n                        \"X\": 0.21988005936145782,\n                        \"Y\": 0.4916154146194458\n                    }\n                ]\n            },\n            \"Id\": \"b21fce9c-9b4c-4709-b2fc-b910aefde3c0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9757080078125,\n            \"Text\": \"test\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02954144775867462,\n                    \"Height\": 0.029765363782644272,\n                    \"Left\": 0.26097163558006287,\n                    \"Top\": 0.46214067935943604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26097163558006287,\n                        \"Y\": 0.4621698260307312\n                    },\n                    {\n                        \"X\": 0.2904758155345917,\n                        \"Y\": 0.46214067935943604\n                    },\n                    {\n                        \"X\": 0.2905130684375763,\n                        \"Y\": 0.49187690019607544\n                    },\n                    {\n                        \"X\": 0.26100853085517883,\n                        \"Y\": 0.4919060170650482\n                    }\n                ]\n            },\n            \"Id\": \"8c63a569-60ee-469a-bcf7-b32910ceaf35\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90953063964844,\n            \"Text\": \"Lead\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.034360725432634354,\n                    \"Height\": 0.032948072999715805,\n                    \"Left\": 0.03952061012387276,\n                    \"Top\": 0.48696860671043396\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03952061012387276,\n                        \"Y\": 0.48700249195098877\n                    },\n                    {\n                        \"X\": 0.07384294271469116,\n                        \"Y\": 0.48696860671043396\n                    },\n                    {\n                        \"X\": 0.07388133555650711,\n                        \"Y\": 0.51988285779953\n                    },\n                    {\n                        \"X\": 0.039558541029691696,\n                        \"Y\": 0.5199166536331177\n                    }\n                ]\n            },\n            \"Id\": \"3791145b-dce0-4cb1-834f-c5bbd442f22d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.84878540039062,\n            \"Text\": \"0\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009890835732221603,\n                    \"Height\": 0.0320400670170784,\n                    \"Left\": 0.32504841685295105,\n                    \"Top\": 0.4875923693180084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32504841685295105,\n                        \"Y\": 0.4876021146774292\n                    },\n                    {\n                        \"X\": 0.33489853143692017,\n                        \"Y\": 0.4875923693180084\n                    },\n                    {\n                        \"X\": 0.33493924140930176,\n                        \"Y\": 0.5196227431297302\n                    },\n                    {\n                        \"X\": 0.3250890076160431,\n                        \"Y\": 0.5196324586868286\n                    }\n                ]\n            },\n            \"Id\": \"0c18c7d3-e6f1-456e-bee0-5967a9e34989\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87642669677734,\n            \"Text\": \"ppb\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02811071090400219,\n                    \"Height\": 0.04226325452327728,\n                    \"Left\": 0.3387528657913208,\n                    \"Top\": 0.4870891571044922\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3387528657913208,\n                        \"Y\": 0.48711687326431274\n                    },\n                    {\n                        \"X\": 0.36680933833122253,\n                        \"Y\": 0.4870891571044922\n                    },\n                    {\n                        \"X\": 0.36686357855796814,\n                        \"Y\": 0.5293247699737549\n                    },\n                    {\n                        \"X\": 0.3388066291809082,\n                        \"Y\": 0.5293524265289307\n                    }\n                ]\n            },\n            \"Id\": \"7a8cb7a9-5e48-41d4-8469-bf433f47c17f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96464538574219,\n            \"Text\": \"3.0\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02362922765314579,\n                    \"Height\": 0.033021967858076096,\n                    \"Left\": 0.4410480260848999,\n                    \"Top\": 0.48714566230773926\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4410480260848999,\n                        \"Y\": 0.48716893792152405\n                    },\n                    {\n                        \"X\": 0.464633584022522,\n                        \"Y\": 0.48714566230773926\n                    },\n                    {\n                        \"X\": 0.46467724442481995,\n                        \"Y\": 0.5201443433761597\n                    },\n                    {\n                        \"X\": 0.441091388463974,\n                        \"Y\": 0.5201675891876221\n                    }\n                ]\n            },\n            \"Id\": \"3e881681-2bf8-470b-8568-7b99005b7c6c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89181518554688,\n            \"Text\": \"ppb\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028406133875250816,\n                    \"Height\": 0.042816657572984695,\n                    \"Left\": 0.46844786405563354,\n                    \"Top\": 0.4870271384716034\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46844786405563354,\n                        \"Y\": 0.48705512285232544\n                    },\n                    {\n                        \"X\": 0.4967968165874481,\n                        \"Y\": 0.4870271384716034\n                    },\n                    {\n                        \"X\": 0.4968540072441101,\n                        \"Y\": 0.5298158526420593\n                    },\n                    {\n                        \"X\": 0.46850454807281494,\n                        \"Y\": 0.529843807220459\n                    }\n                ]\n            },\n            \"Id\": \"2569688b-31b8-449c-9c86-be6063b3611d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95684051513672,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.009568985551595688,\n                    \"Height\": 0.032847922295331955,\n                    \"Left\": 0.5810802578926086,\n                    \"Top\": 0.48729753494262695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5810802578926086,\n                        \"Y\": 0.4873069226741791\n                    },\n                    {\n                        \"X\": 0.5906041264533997,\n                        \"Y\": 0.48729753494262695\n                    },\n                    {\n                        \"X\": 0.5906492471694946,\n                        \"Y\": 0.5201360583305359\n                    },\n                    {\n                        \"X\": 0.5811252593994141,\n                        \"Y\": 0.5201454758644104\n                    }\n                ]\n            },\n            \"Id\": \"7fd4961a-653f-47cc-a90c-9931d8e37720\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9816665649414,\n            \"Text\": \"out\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0250063706189394,\n                    \"Height\": 0.02820851467549801,\n                    \"Left\": 0.5943266153335571,\n                    \"Top\": 0.49172788858413696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5943266153335571,\n                        \"Y\": 0.4917525053024292\n                    },\n                    {\n                        \"X\": 0.6192939281463623,\n                        \"Y\": 0.49172788858413696\n                    },\n                    {\n                        \"X\": 0.6193329691886902,\n                        \"Y\": 0.5199117660522461\n                    },\n                    {\n                        \"X\": 0.5943653583526611,\n                        \"Y\": 0.5199363827705383\n                    }\n                ]\n            },\n            \"Id\": \"2b41e160-eb95-4676-af2c-cf4456974459\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97773742675781,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01550724171102047,\n                    \"Height\": 0.03354860097169876,\n                    \"Left\": 0.6226691007614136,\n                    \"Top\": 0.48647868633270264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6226691007614136,\n                        \"Y\": 0.48649394512176514\n                    },\n                    {\n                        \"X\": 0.6381296515464783,\n                        \"Y\": 0.48647868633270264\n                    },\n                    {\n                        \"X\": 0.6381763815879822,\n                        \"Y\": 0.5200120806694031\n                    },\n                    {\n                        \"X\": 0.6227156519889832,\n                        \"Y\": 0.5200272798538208\n                    }\n                ]\n            },\n            \"Id\": \"22c6a9a9-43ac-47c0-aba0-c2efca7f76fc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94772338867188,\n            \"Text\": \"99\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020096994936466217,\n                    \"Height\": 0.033114954829216,\n                    \"Left\": 0.6415271162986755,\n                    \"Top\": 0.48723483085632324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6415271162986755,\n                        \"Y\": 0.48725461959838867\n                    },\n                    {\n                        \"X\": 0.6615777015686035,\n                        \"Y\": 0.48723483085632324\n                    },\n                    {\n                        \"X\": 0.6616241335868835,\n                        \"Y\": 0.520330011844635\n                    },\n                    {\n                        \"X\": 0.6415732502937317,\n                        \"Y\": 0.5203498005867004\n                    }\n                ]\n            },\n            \"Id\": \"82fe85be-3e8d-4059-b4e7-f92b8757826a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9166030883789,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01963092014193535,\n                    \"Height\": 0.035225801169872284,\n                    \"Left\": 0.7318691611289978,\n                    \"Top\": 0.48611071705818176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7318691611289978,\n                        \"Y\": 0.4861300587654114\n                    },\n                    {\n                        \"X\": 0.7514494061470032,\n                        \"Y\": 0.48611071705818176\n                    },\n                    {\n                        \"X\": 0.7515000700950623,\n                        \"Y\": 0.5213172435760498\n                    },\n                    {\n                        \"X\": 0.731919527053833,\n                        \"Y\": 0.521336555480957\n                    }\n                ]\n            },\n            \"Id\": \"4fd1b81f-00e2-4141-aa9a-ee3ef6a76327\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99579620361328,\n            \"Text\": \"hold\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030326081439852715,\n                    \"Height\": 0.032159969210624695,\n                    \"Left\": 0.790415346622467,\n                    \"Top\": 0.462859183549881\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.790415346622467,\n                        \"Y\": 0.4628891050815582\n                    },\n                    {\n                        \"X\": 0.8206942677497864,\n                        \"Y\": 0.462859183549881\n                    },\n                    {\n                        \"X\": 0.8207414150238037,\n                        \"Y\": 0.494989275932312\n                    },\n                    {\n                        \"X\": 0.790462076663971,\n                        \"Y\": 0.49501916766166687\n                    }\n                ]\n            },\n            \"Id\": \"f9d037a1-fcbf-42f7-a3bf-486074e4c09f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.97523498535156,\n            \"Text\": \"plumbing;\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07040099054574966,\n                    \"Height\": 0.040634650737047195,\n                    \"Left\": 0.8243653178215027,\n                    \"Top\": 0.4628686308860779\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8243653178215027,\n                        \"Y\": 0.462938129901886\n                    },\n                    {\n                        \"X\": 0.894705593585968,\n                        \"Y\": 0.4628686308860779\n                    },\n                    {\n                        \"X\": 0.8947663307189941,\n                        \"Y\": 0.503433883190155\n                    },\n                    {\n                        \"X\": 0.8244248628616333,\n                        \"Y\": 0.5035032629966736\n                    }\n                ]\n            },\n            \"Id\": \"80d6b7af-2e13-4ebb-82be-9de7c0a4ee61\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7919921875,\n            \"Text\": \"less\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028184643015265465,\n                    \"Height\": 0.03352713584899902,\n                    \"Left\": 0.13912875950336456,\n                    \"Top\": 0.5143393278121948\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13912875950336456,\n                        \"Y\": 0.5143670439720154\n                    },\n                    {\n                        \"X\": 0.16727307438850403,\n                        \"Y\": 0.5143393278121948\n                    },\n                    {\n                        \"X\": 0.16731341183185577,\n                        \"Y\": 0.5478387475013733\n                    },\n                    {\n                        \"X\": 0.13916870951652527,\n                        \"Y\": 0.5478664636611938\n                    }\n                ]\n            },\n            \"Id\": \"888f83d4-5484-4f9f-a2b3-d1fc490928c3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98625183105469,\n            \"Text\": \"than\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033487871289253235,\n                    \"Height\": 0.03289135918021202,\n                    \"Left\": 0.17082352936267853,\n                    \"Top\": 0.5148259401321411\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17082352936267853,\n                        \"Y\": 0.5148589015007019\n                    },\n                    {\n                        \"X\": 0.2042713612318039,\n                        \"Y\": 0.5148259401321411\n                    },\n                    {\n                        \"X\": 0.20431140065193176,\n                        \"Y\": 0.547684371471405\n                    },\n                    {\n                        \"X\": 0.17086313664913177,\n                        \"Y\": 0.5477173328399658\n                    }\n                ]\n            },\n            \"Id\": \"6107f9e7-29dc-445c-a826-122e4ef7e747\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94834899902344,\n            \"Text\": \"15\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01916355825960636,\n                    \"Height\": 0.03259502351284027,\n                    \"Left\": 0.20862026512622833,\n                    \"Top\": 0.5149067044258118\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20862026512622833,\n                        \"Y\": 0.5149255394935608\n                    },\n                    {\n                        \"X\": 0.22774381935596466,\n                        \"Y\": 0.5149067044258118\n                    },\n                    {\n                        \"X\": 0.22778382897377014,\n                        \"Y\": 0.5474829077720642\n                    },\n                    {\n                        \"X\": 0.2086600363254547,\n                        \"Y\": 0.5475017428398132\n                    }\n                ]\n            },\n            \"Id\": \"30715f61-bbb7-4242-b5e2-7d612e8b9fff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9028549194336,\n            \"Text\": \"ppb\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02776995673775673,\n                    \"Height\": 0.04183467477560043,\n                    \"Left\": 0.23171794414520264,\n                    \"Top\": 0.5145809650421143\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23171794414520264,\n                        \"Y\": 0.5146082639694214\n                    },\n                    {\n                        \"X\": 0.2594360113143921,\n                        \"Y\": 0.5145809650421143\n                    },\n                    {\n                        \"X\": 0.25948789715766907,\n                        \"Y\": 0.5563883185386658\n                    },\n                    {\n                        \"X\": 0.2317693531513214,\n                        \"Y\": 0.5564156174659729\n                    }\n                ]\n            },\n            \"Id\": \"5b51a4f6-9c8b-4d90-9c11-ec0b8a43d9d8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.59271240234375,\n            \"Text\": \"Erosion\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.052011944353580475,\n                    \"Height\": 0.031783707439899445,\n                    \"Left\": 0.7907657027244568,\n                    \"Top\": 0.5113720297813416\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7907657027244568,\n                        \"Y\": 0.5114232897758484\n                    },\n                    {\n                        \"X\": 0.8427308201789856,\n                        \"Y\": 0.5113720297813416\n                    },\n                    {\n                        \"X\": 0.842777669429779,\n                        \"Y\": 0.5431045889854431\n                    },\n                    {\n                        \"X\": 0.7908118963241577,\n                        \"Y\": 0.5431557297706604\n                    }\n                ]\n            },\n            \"Id\": \"7dab57d8-d01e-41b2-a46f-3209edaf0b72\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97769927978516,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0151388980448246,\n                    \"Height\": 0.031526241451501846,\n                    \"Left\": 0.8461538553237915,\n                    \"Top\": 0.5109909176826477\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8461538553237915,\n                        \"Y\": 0.5110058188438416\n                    },\n                    {\n                        \"X\": 0.8612460494041443,\n                        \"Y\": 0.5109909176826477\n                    },\n                    {\n                        \"X\": 0.8612927794456482,\n                        \"Y\": 0.5425023436546326\n                    },\n                    {\n                        \"X\": 0.8462004065513611,\n                        \"Y\": 0.5425171852111816\n                    }\n                ]\n            },\n            \"Id\": \"6327031a-4580-42f5-a0c8-025e442ac40a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92740631103516,\n            \"Text\": \"natural\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05058804899454117,\n                    \"Height\": 0.032031357288360596,\n                    \"Left\": 0.8641360998153687,\n                    \"Top\": 0.5110709071159363\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8641360998153687,\n                        \"Y\": 0.5111207365989685\n                    },\n                    {\n                        \"X\": 0.9146760106086731,\n                        \"Y\": 0.5110709071159363\n                    },\n                    {\n                        \"X\": 0.9147241115570068,\n                        \"Y\": 0.5430524945259094\n                    },\n                    {\n                        \"X\": 0.8641835451126099,\n                        \"Y\": 0.5431022644042969\n                    }\n                ]\n            },\n            \"Id\": \"9fce9932-1618-4b8c-89f6-ab51a1c63266\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96377563476562,\n            \"Text\": \"deposits\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05978472903370857,\n                    \"Height\": 0.0405004508793354,\n                    \"Left\": 0.7901022434234619,\n                    \"Top\": 0.5586140751838684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7901022434234619,\n                        \"Y\": 0.5586728453636169\n                    },\n                    {\n                        \"X\": 0.849827229976654,\n                        \"Y\": 0.5586140751838684\n                    },\n                    {\n                        \"X\": 0.8498870134353638,\n                        \"Y\": 0.5990558862686157\n                    },\n                    {\n                        \"X\": 0.7901610732078552,\n                        \"Y\": 0.5991145372390747\n                    }\n                ]\n            },\n            \"Id\": \"b544a722-d45e-4f54-bed4-3e32f20666f0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60990142822266,\n            \"Text\": \"Corrosion\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06775563955307007,\n                    \"Height\": 0.0316278301179409,\n                    \"Left\": 0.7905408143997192,\n                    \"Top\": 0.620208740234375\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7905408143997192,\n                        \"Y\": 0.6202751398086548\n                    },\n                    {\n                        \"X\": 0.8582496643066406,\n                        \"Y\": 0.620208740234375\n                    },\n                    {\n                        \"X\": 0.8582964539527893,\n                        \"Y\": 0.6517702341079712\n                    },\n                    {\n                        \"X\": 0.7905867099761963,\n                        \"Y\": 0.6518365740776062\n                    }\n                ]\n            },\n            \"Id\": \"7b23bb8f-e75c-4739-8ff4-bbc5bd8d38a1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98352813720703,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014750703237950802,\n                    \"Height\": 0.0315961055457592,\n                    \"Left\": 0.8619460463523865,\n                    \"Top\": 0.6200727224349976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8619460463523865,\n                        \"Y\": 0.6200871467590332\n                    },\n                    {\n                        \"X\": 0.8766497373580933,\n                        \"Y\": 0.6200727224349976\n                    },\n                    {\n                        \"X\": 0.876696765422821,\n                        \"Y\": 0.6516544818878174\n                    },\n                    {\n                        \"X\": 0.8619928956031799,\n                        \"Y\": 0.6516688466072083\n                    }\n                ]\n            },\n            \"Id\": \"6318bdf1-601a-4d92-8e09-563775425b10\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79975891113281,\n            \"Text\": \"house-\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049008797854185104,\n                    \"Height\": 0.032185036689043045,\n                    \"Left\": 0.8797438144683838,\n                    \"Top\": 0.6196907758712769\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8797438144683838,\n                        \"Y\": 0.619738757610321\n                    },\n                    {\n                        \"X\": 0.9287040829658508,\n                        \"Y\": 0.6196907758712769\n                    },\n                    {\n                        \"X\": 0.928752601146698,\n                        \"Y\": 0.651827871799469\n                    },\n                    {\n                        \"X\": 0.8797916769981384,\n                        \"Y\": 0.6518757939338684\n                    }\n                ]\n            },\n            \"Id\": \"d8010fac-2e13-45c7-9b25-3c1dd6d85eb4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9947280883789,\n            \"Text\": \"hold\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030283436179161072,\n                    \"Height\": 0.03235131502151489,\n                    \"Left\": 0.7905310988426208,\n                    \"Top\": 0.6670846343040466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7905310988426208,\n                        \"Y\": 0.6671142578125\n                    },\n                    {\n                        \"X\": 0.8207671046257019,\n                        \"Y\": 0.6670846343040466\n                    },\n                    {\n                        \"X\": 0.8208145499229431,\n                        \"Y\": 0.6994064450263977\n                    },\n                    {\n                        \"X\": 0.7905781269073486,\n                        \"Y\": 0.6994359493255615\n                    }\n                ]\n            },\n            \"Id\": \"97467448-4bae-4a2a-8fbb-2276488963a7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.19464111328125,\n            \"Text\": \"plumbing;\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0700257271528244,\n                    \"Height\": 0.039421197026968,\n                    \"Left\": 0.8245067596435547,\n                    \"Top\": 0.6680723428726196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8245067596435547,\n                        \"Y\": 0.6681407690048218\n                    },\n                    {\n                        \"X\": 0.8944736123085022,\n                        \"Y\": 0.6680723428726196\n                    },\n                    {\n                        \"X\": 0.8945325016975403,\n                        \"Y\": 0.7074251770973206\n                    },\n                    {\n                        \"X\": 0.824564516544342,\n                        \"Y\": 0.7074935436248779\n                    }\n                ]\n            },\n            \"Id\": \"b136222a-2187-4195-95b6-d9846b3f5a91\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96923065185547,\n            \"Text\": \"90%\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03562002629041672,\n                    \"Height\": 0.03311390429735184,\n                    \"Left\": 0.10828837007284164,\n                    \"Top\": 0.7105403542518616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10828837007284164,\n                        \"Y\": 0.7105751037597656\n                    },\n                    {\n                        \"X\": 0.14386889338493347,\n                        \"Y\": 0.7105403542518616\n                    },\n                    {\n                        \"X\": 0.14390839636325836,\n                        \"Y\": 0.7436195611953735\n                    },\n                    {\n                        \"X\": 0.10832740366458893,\n                        \"Y\": 0.7436542510986328\n                    }\n                ]\n            },\n            \"Id\": \"2d386a35-65e9-44d5-a5c2-71dcd07795e4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97938537597656,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01524715032428503,\n                    \"Height\": 0.032598402351140976,\n                    \"Left\": 0.14778348803520203,\n                    \"Top\": 0.710553765296936\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14778348803520203,\n                        \"Y\": 0.7105686664581299\n                    },\n                    {\n                        \"X\": 0.162991464138031,\n                        \"Y\": 0.710553765296936\n                    },\n                    {\n                        \"X\": 0.16303063929080963,\n                        \"Y\": 0.7431373596191406\n                    },\n                    {\n                        \"X\": 0.14782245457172394,\n                        \"Y\": 0.7431522011756897\n                    }\n                ]\n            },\n            \"Id\": \"cb6dbf40-fe65-4dd8-a69a-e63838d90ba0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9259033203125,\n            \"Text\": \"homes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04933997988700867,\n                    \"Height\": 0.033350907266139984,\n                    \"Left\": 0.1663983166217804,\n                    \"Top\": 0.7105514407157898\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1663983166217804,\n                        \"Y\": 0.7105995416641235\n                    },\n                    {\n                        \"X\": 0.21569755673408508,\n                        \"Y\": 0.7105514407157898\n                    },\n                    {\n                        \"X\": 0.21573829650878906,\n                        \"Y\": 0.743854284286499\n                    },\n                    {\n                        \"X\": 0.16643840074539185,\n                        \"Y\": 0.743902325630188\n                    }\n                ]\n            },\n            \"Id\": \"e7b71233-c375-4070-8869-1ecc35914057\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99038696289062,\n            \"Text\": \"must\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03851752728223801,\n                    \"Height\": 0.028917163610458374,\n                    \"Left\": 0.21966518461704254,\n                    \"Top\": 0.7148652672767639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21966518461704254,\n                        \"Y\": 0.7149028182029724\n                    },\n                    {\n                        \"X\": 0.25814688205718994,\n                        \"Y\": 0.7148652672767639\n                    },\n                    {\n                        \"X\": 0.25818270444869995,\n                        \"Y\": 0.7437449097633362\n                    },\n                    {\n                        \"X\": 0.21970055997371674,\n                        \"Y\": 0.7437824010848999\n                    }\n                ]\n            },\n            \"Id\": \"19fa0ba4-faee-459c-b3c5-66c7a6e8a584\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97913360595703,\n            \"Text\": \"test\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02966383844614029,\n                    \"Height\": 0.029079673811793327,\n                    \"Left\": 0.2608877718448639,\n                    \"Top\": 0.7146945595741272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2608877718448639,\n                        \"Y\": 0.7147234678268433\n                    },\n                    {\n                        \"X\": 0.2905151844024658,\n                        \"Y\": 0.7146945595741272\n                    },\n                    {\n                        \"X\": 0.2905516028404236,\n                        \"Y\": 0.7437453269958496\n                    },\n                    {\n                        \"X\": 0.260923832654953,\n                        \"Y\": 0.7437742352485657\n                    }\n                ]\n            },\n            \"Id\": \"a1bbb864-34db-43a6-9851-a22a5df3b015\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.51593017578125,\n            \"Text\": \"Erosion\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05191420018672943,\n                    \"Height\": 0.03195221722126007,\n                    \"Left\": 0.7908884286880493,\n                    \"Top\": 0.715356171131134\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7908884286880493,\n                        \"Y\": 0.7154068350791931\n                    },\n                    {\n                        \"X\": 0.8427555561065674,\n                        \"Y\": 0.715356171131134\n                    },\n                    {\n                        \"X\": 0.8428026437759399,\n                        \"Y\": 0.7472578287124634\n                    },\n                    {\n                        \"X\": 0.7909348011016846,\n                        \"Y\": 0.7473083734512329\n                    }\n                ]\n            },\n            \"Id\": \"67c31229-7042-49d9-92b4-1adc9e3dcff1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97452545166016,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015064113773405552,\n                    \"Height\": 0.03215222433209419,\n                    \"Left\": 0.8461640477180481,\n                    \"Top\": 0.7152422070503235\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8461640477180481,\n                        \"Y\": 0.7152568697929382\n                    },\n                    {\n                        \"X\": 0.8611804842948914,\n                        \"Y\": 0.7152422070503235\n                    },\n                    {\n                        \"X\": 0.8612281680107117,\n                        \"Y\": 0.7473797798156738\n                    },\n                    {\n                        \"X\": 0.8462114930152893,\n                        \"Y\": 0.7473944425582886\n                    }\n                ]\n            },\n            \"Id\": \"e8e10803-0d0b-4231-8ffa-8f93577e7fa1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95793914794922,\n            \"Text\": \"natural\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05033886432647705,\n                    \"Height\": 0.031779900193214417,\n                    \"Left\": 0.8644315600395203,\n                    \"Top\": 0.7155246138572693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8644315600395203,\n                        \"Y\": 0.7155736684799194\n                    },\n                    {\n                        \"X\": 0.9147226810455322,\n                        \"Y\": 0.7155246138572693\n                    },\n                    {\n                        \"X\": 0.9147704243659973,\n                        \"Y\": 0.7472554445266724\n                    },\n                    {\n                        \"X\": 0.8644786477088928,\n                        \"Y\": 0.7473044991493225\n                    }\n                ]\n            },\n            \"Id\": \"fc63b034-f289-4841-af5f-d7285d83dd13\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96431732177734,\n            \"Text\": \"Copper\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05337032303214073,\n                    \"Height\": 0.04241953417658806,\n                    \"Left\": 0.03934139758348465,\n                    \"Top\": 0.7379059195518494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03934139758348465,\n                        \"Y\": 0.7379579544067383\n                    },\n                    {\n                        \"X\": 0.09266199171543121,\n                        \"Y\": 0.7379059195518494\n                    },\n                    {\n                        \"X\": 0.09271172434091568,\n                        \"Y\": 0.7802735567092896\n                    },\n                    {\n                        \"X\": 0.03939022123813629,\n                        \"Y\": 0.7803254723548889\n                    }\n                ]\n            },\n            \"Id\": \"376e7632-8495-4330-bd54-58cf32834899\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83599090576172,\n            \"Text\": \"1.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023305971175432205,\n                    \"Height\": 0.03293835371732712,\n                    \"Left\": 0.31581050157546997,\n                    \"Top\": 0.7380611300468445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31581050157546997,\n                        \"Y\": 0.7380838394165039\n                    },\n                    {\n                        \"X\": 0.33907458186149597,\n                        \"Y\": 0.7380611300468445\n                    },\n                    {\n                        \"X\": 0.33911648392677307,\n                        \"Y\": 0.7709768414497375\n                    },\n                    {\n                        \"X\": 0.3158521056175232,\n                        \"Y\": 0.7709994912147522\n                    }\n                ]\n            },\n            \"Id\": \"f27c3ce2-4182-4a7b-af8b-a6f5b56c50d1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93025970458984,\n            \"Text\": \"ppm\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033305488526821136,\n                    \"Height\": 0.032341305166482925,\n                    \"Left\": 0.3432937264442444,\n                    \"Top\": 0.7474417090415955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3432937264442444,\n                        \"Y\": 0.7474741339683533\n                    },\n                    {\n                        \"X\": 0.3765576183795929,\n                        \"Y\": 0.7474417090415955\n                    },\n                    {\n                        \"X\": 0.3765992224216461,\n                        \"Y\": 0.779750645160675\n                    },\n                    {\n                        \"X\": 0.3433349132537842,\n                        \"Y\": 0.7797830104827881\n                    }\n                ]\n            },\n            \"Id\": \"e9c68889-6770-4a96-ace8-9414a050e6f6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97834777832031,\n            \"Text\": \"0.28\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03402421623468399,\n                    \"Height\": 0.03359352424740791,\n                    \"Left\": 0.4332227110862732,\n                    \"Top\": 0.737980842590332\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4332227110862732,\n                        \"Y\": 0.7380139827728271\n                    },\n                    {\n                        \"X\": 0.46720248460769653,\n                        \"Y\": 0.737980842590332\n                    },\n                    {\n                        \"X\": 0.4672469198703766,\n                        \"Y\": 0.7715412974357605\n                    },\n                    {\n                        \"X\": 0.43326669931411743,\n                        \"Y\": 0.7715743780136108\n                    }\n                ]\n            },\n            \"Id\": \"1aff4695-16f0-498b-a6b3-827a6ac3ce21\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92220306396484,\n            \"Text\": \"ppm\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03316808119416237,\n                    \"Height\": 0.03253502771258354,\n                    \"Left\": 0.4708250164985657,\n                    \"Top\": 0.7473055124282837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4708250164985657,\n                        \"Y\": 0.747337818145752\n                    },\n                    {\n                        \"X\": 0.5039495825767517,\n                        \"Y\": 0.7473055124282837\n                    },\n                    {\n                        \"X\": 0.5039930939674377,\n                        \"Y\": 0.7798082828521729\n                    },\n                    {\n                        \"X\": 0.4708681106567383,\n                        \"Y\": 0.7798405289649963\n                    }\n                ]\n            },\n            \"Id\": \"e45857c2-7b61-44ee-ab9a-2dc2af4215f6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 70.35252380371094,\n            \"Text\": \"0\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01044862437993288,\n                    \"Height\": 0.03283947706222534,\n                    \"Left\": 0.580613374710083,\n                    \"Top\": 0.7383255958557129\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.580613374710083,\n                        \"Y\": 0.7383357286453247\n                    },\n                    {\n                        \"X\": 0.5910168886184692,\n                        \"Y\": 0.7383255958557129\n                    },\n                    {\n                        \"X\": 0.5910619497299194,\n                        \"Y\": 0.7711549401283264\n                    },\n                    {\n                        \"X\": 0.5806583166122437,\n                        \"Y\": 0.7711650729179382\n                    }\n                ]\n            },\n            \"Id\": \"af9e1526-c5c7-4603-804b-3bb6b70153a0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97462463378906,\n            \"Text\": \"out\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.025109976530075073,\n                    \"Height\": 0.028658566996455193,\n                    \"Left\": 0.5947995781898499,\n                    \"Top\": 0.7418580651283264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5947995781898499,\n                        \"Y\": 0.7418825030326843\n                    },\n                    {\n                        \"X\": 0.6198698878288269,\n                        \"Y\": 0.7418580651283264\n                    },\n                    {\n                        \"X\": 0.6199095249176025,\n                        \"Y\": 0.7704921960830688\n                    },\n                    {\n                        \"X\": 0.5948389768600464,\n                        \"Y\": 0.770516574382782\n                    }\n                ]\n            },\n            \"Id\": \"45f7fc9f-a8a8-44d0-91ee-ded35f1d7d5c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.985595703125,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015595022588968277,\n                    \"Height\": 0.03332915157079697,\n                    \"Left\": 0.6232464909553528,\n                    \"Top\": 0.7378549575805664\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6232464909553528,\n                        \"Y\": 0.7378701567649841\n                    },\n                    {\n                        \"X\": 0.6387950778007507,\n                        \"Y\": 0.7378549575805664\n                    },\n                    {\n                        \"X\": 0.6388415098190308,\n                        \"Y\": 0.7711689472198486\n                    },\n                    {\n                        \"X\": 0.6232926845550537,\n                        \"Y\": 0.7711841464042664\n                    }\n                ]\n            },\n            \"Id\": \"fdde832f-994e-4c08-a85c-16d7a89110a1\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95720672607422,\n            \"Text\": \"99\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020420832559466362,\n                    \"Height\": 0.03327087685465813,\n                    \"Left\": 0.6419939994812012,\n                    \"Top\": 0.738276481628418\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6419939994812012,\n                        \"Y\": 0.738296389579773\n                    },\n                    {\n                        \"X\": 0.6623681783676147,\n                        \"Y\": 0.738276481628418\n                    },\n                    {\n                        \"X\": 0.6624148488044739,\n                        \"Y\": 0.7715275287628174\n                    },\n                    {\n                        \"X\": 0.6420403718948364,\n                        \"Y\": 0.7715473771095276\n                    }\n                ]\n            },\n            \"Id\": \"5c1e8729-4ae5-4484-9db1-a87af8cc29b5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97539520263672,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020493630319833755,\n                    \"Height\": 0.03273798152804375,\n                    \"Left\": 0.7311685681343079,\n                    \"Top\": 0.7384752631187439\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7311685681343079,\n                        \"Y\": 0.7384951710700989\n                    },\n                    {\n                        \"X\": 0.7516151070594788,\n                        \"Y\": 0.7384752631187439\n                    },\n                    {\n                        \"X\": 0.7516621947288513,\n                        \"Y\": 0.7711933255195618\n                    },\n                    {\n                        \"X\": 0.7312153577804565,\n                        \"Y\": 0.7712132334709167\n                    }\n                ]\n            },\n            \"Id\": \"c62030e3-be48-4b3d-acea-62d3cb373c7a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78123474121094,\n            \"Text\": \"less\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028468452394008636,\n                    \"Height\": 0.03322616592049599,\n                    \"Left\": 0.1337629109621048,\n                    \"Top\": 0.7669054269790649\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1337629109621048,\n                        \"Y\": 0.7669330835342407\n                    },\n                    {\n                        \"X\": 0.1621914654970169,\n                        \"Y\": 0.7669054269790649\n                    },\n                    {\n                        \"X\": 0.16223135590553284,\n                        \"Y\": 0.8001039624214172\n                    },\n                    {\n                        \"X\": 0.13380242884159088,\n                        \"Y\": 0.8001315593719482\n                    }\n                ]\n            },\n            \"Id\": \"222fd30a-73b8-4faa-8ab1-f6d00ceb01cc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98985290527344,\n            \"Text\": \"than\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03338814154267311,\n                    \"Height\": 0.03280699625611305,\n                    \"Left\": 0.1657954305410385,\n                    \"Top\": 0.7672430872917175\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1657954305410385,\n                        \"Y\": 0.7672755718231201\n                    },\n                    {\n                        \"X\": 0.1991436928510666,\n                        \"Y\": 0.7672430872917175\n                    },\n                    {\n                        \"X\": 0.19918356835842133,\n                        \"Y\": 0.8000176548957825\n                    },\n                    {\n                        \"X\": 0.16583485901355743,\n                        \"Y\": 0.8000500798225403\n                    }\n                ]\n            },\n            \"Id\": \"1a84b059-ec31-4a19-83b6-939af2fb5fe2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8216323852539,\n            \"Text\": \"1.3\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023672152310609818,\n                    \"Height\": 0.0326014906167984,\n                    \"Left\": 0.203558549284935,\n                    \"Top\": 0.7673133015632629\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.203558549284935,\n                        \"Y\": 0.7673363089561462\n                    },\n                    {\n                        \"X\": 0.22719070315361023,\n                        \"Y\": 0.7673133015632629\n                    },\n                    {\n                        \"X\": 0.22723069787025452,\n                        \"Y\": 0.7998918294906616\n                    },\n                    {\n                        \"X\": 0.2035982310771942,\n                        \"Y\": 0.7999147772789001\n                    }\n                ]\n            },\n            \"Id\": \"c7008f2e-e77c-4978-8e07-9900787ada11\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93586730957031,\n            \"Text\": \"ppm\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03325385972857475,\n                    \"Height\": 0.034339629113674164,\n                    \"Left\": 0.2312755286693573,\n                    \"Top\": 0.7740377187728882\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2312755286693573,\n                        \"Y\": 0.7740700244903564\n                    },\n                    {\n                        \"X\": 0.26448675990104675,\n                        \"Y\": 0.7740377187728882\n                    },\n                    {\n                        \"X\": 0.26452937722206116,\n                        \"Y\": 0.8083450198173523\n                    },\n                    {\n                        \"X\": 0.23131771385669708,\n                        \"Y\": 0.8083773255348206\n                    }\n                ]\n            },\n            \"Id\": \"d29d3856-8c6d-43cf-a550-041514615259\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58081817626953,\n            \"Text\": \"deposits;\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06306667625904083,\n                    \"Height\": 0.039143066853284836,\n                    \"Left\": 0.7903621196746826,\n                    \"Top\": 0.7634880542755127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7903621196746826,\n                        \"Y\": 0.7635494470596313\n                    },\n                    {\n                        \"X\": 0.8533709645271301,\n                        \"Y\": 0.7634880542755127\n                    },\n                    {\n                        \"X\": 0.853428840637207,\n                        \"Y\": 0.8025698661804199\n                    },\n                    {\n                        \"X\": 0.7904189825057983,\n                        \"Y\": 0.802631139755249\n                    }\n                ]\n            },\n            \"Id\": \"3d51207f-6f08-4970-8f4e-2e20f16a37aa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88426971435547,\n            \"Text\": \"Leaching\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06208668649196625,\n                    \"Height\": 0.03894685208797455,\n                    \"Left\": 0.7907992005348206,\n                    \"Top\": 0.8117714524269104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7907992005348206,\n                        \"Y\": 0.8118317127227783\n                    },\n                    {\n                        \"X\": 0.8528283834457397,\n                        \"Y\": 0.8117714524269104\n                    },\n                    {\n                        \"X\": 0.852885901927948,\n                        \"Y\": 0.850658118724823\n                    },\n                    {\n                        \"X\": 0.7908557653427124,\n                        \"Y\": 0.8507182598114014\n                    }\n                ]\n            },\n            \"Id\": \"5f0c75dc-7ea4-48f8-a648-607fbb1237b9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9923324584961,\n            \"Text\": \"from\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03433475270867348,\n                    \"Height\": 0.03224092349410057,\n                    \"Left\": 0.8563527464866638,\n                    \"Top\": 0.8110272884368896\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8563527464866638,\n                        \"Y\": 0.8110606074333191\n                    },\n                    {\n                        \"X\": 0.8906393647193909,\n                        \"Y\": 0.8110272884368896\n                    },\n                    {\n                        \"X\": 0.8906875252723694,\n                        \"Y\": 0.8432348966598511\n                    },\n                    {\n                        \"X\": 0.8564004302024841,\n                        \"Y\": 0.8432681560516357\n                    }\n                ]\n            },\n            \"Id\": \"0f95a394-d172-43c0-a50b-c0f82d15f832\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71197509765625,\n            \"Text\": \"wood\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039441049098968506,\n                    \"Height\": 0.031589802354574203,\n                    \"Left\": 0.8938866853713989,\n                    \"Top\": 0.8114547729492188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8938866853713989,\n                        \"Y\": 0.8114930987358093\n                    },\n                    {\n                        \"X\": 0.9332800507545471,\n                        \"Y\": 0.8114547729492188\n                    },\n                    {\n                        \"X\": 0.9333277344703674,\n                        \"Y\": 0.8430063724517822\n                    },\n                    {\n                        \"X\": 0.893933892250061,\n                        \"Y\": 0.8430445790290833\n                    }\n                ]\n            },\n            \"Id\": \"5adc4dc3-26f5-42c6-9b1e-4c333ad1c62a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60367584228516,\n            \"Text\": \"preservatives\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09453941136598587,\n                    \"Height\": 0.03860701993107796,\n                    \"Left\": 0.7904151678085327,\n                    \"Top\": 0.8607068061828613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7904151678085327,\n                        \"Y\": 0.8607984185218811\n                    },\n                    {\n                        \"X\": 0.8848971128463745,\n                        \"Y\": 0.8607068061828613\n                    },\n                    {\n                        \"X\": 0.884954571723938,\n                        \"Y\": 0.8992223739624023\n                    },\n                    {\n                        \"X\": 0.7904711961746216,\n                        \"Y\": 0.8993138074874878\n                    }\n                ]\n            },\n            \"Id\": \"e2ba540e-73e0-415e-b333-9a0e0fe99663\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.951171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.9271261692047119,\n                    \"Height\": 0.741277813911438,\n                    \"Left\": 0.03023350052535534,\n                    \"Top\": 0.1676786094903946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03023350052535534,\n                        \"Y\": 0.16860641539096832\n                    },\n                    {\n                        \"X\": 0.9562333226203918,\n                        \"Y\": 0.1676786094903946\n                    },\n                    {\n                        \"X\": 0.9573596715927124,\n                        \"Y\": 0.9080603718757629\n                    },\n                    {\n                        \"X\": 0.03108411282300949,\n                        \"Y\": 0.9089564681053162\n                    }\n                ]\n            },\n            \"Id\": \"966d8ebc-5d06-40a5-ab5d-a63317f6a5ae\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bec30d4c-1d90-4deb-b6e1-e71e703bc48d\",\n                        \"d695eafb-e0b1-4d1f-b1cc-2b04743cc713\",\n                        \"11d4e8bc-d415-4806-9ef1-d813ac6ad6eb\",\n                        \"474273dd-ed00-47b2-abb1-351d54b58c99\",\n                        \"66ec4ff3-6ce2-406d-bf04-8b2f7b3468f4\",\n                        \"0f0821c2-c008-4842-879a-5db41057f0da\",\n                        \"40861493-60bb-4a2d-b9c9-565061661b20\",\n                        \"3dd8ba06-4d8c-4f5c-aed4-e74a3f5e3f4a\",\n                        \"51acaf35-f0bc-4b84-bb8c-77429232e273\",\n                        \"1cd016b7-181e-48f1-918a-44d826e8c2fd\",\n                        \"ca6e4122-57c1-4bc9-b214-28c5a0d5ceb8\",\n                        \"aade45fc-3a87-471a-8177-391cfecc97c9\",\n                        \"835553ee-b3ee-4fc5-be5e-f379ff1b3cab\",\n                        \"3262fee7-b826-4989-8ab6-e44e9c60fe11\",\n                        \"a7c67479-f8a6-47d9-b8ab-f38b0b598b55\",\n                        \"62039866-86be-4c5f-8cc9-0974b35daffb\",\n                        \"2b88687c-5ba5-4d0e-b8bd-d3d0f70d50a4\",\n                        \"8cf068fd-2b16-4967-aa2e-e7078fc32bb6\",\n                        \"dad6ba2e-d98e-4ae9-bbd6-25eb0a058f08\",\n                        \"444f222b-7a14-4721-9360-bcbab26c675d\",\n                        \"b243975a-2b30-4080-93e0-490751a9da2a\",\n                        \"688fd994-9e12-4dee-a8a1-ac7a5dcd9251\",\n                        \"e46747d5-59c7-4c82-99a3-102458241725\",\n                        \"339d72e4-81e2-47da-937e-0653505a68fd\",\n                        \"66f9a68e-5644-4548-85cb-aca690086a2c\",\n                        \"111823da-8e20-4cd5-90e8-5697c4e75028\",\n                        \"88acdfd3-1394-4cf8-b18e-4f3bbbd4550b\",\n                        \"bca24bdf-9de5-4687-bff1-5fc52e218a10\"\n                    ]\n                },\n                {\n                    \"Type\": \"MERGED_CELL\",\n                    \"Ids\": [\n                        \"dc85838d-5d04-40d9-9c11-9399b0a1c243\"\n                    ]\n                },\n                {\n                    \"Type\": \"TITLE\",\n                    \"Ids\": [\n                        \"b5eab734-cd80-4ac1-8b83-45a71bf1d0f7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"STRUCTURED\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06937673687934875,\n                    \"Height\": 0.08547880500555038,\n                    \"Left\": 0.030046284198760986,\n                    \"Top\": 0.16787175834178925\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030046284198760986,\n                        \"Y\": 0.1679411679506302\n                    },\n                    {\n                        \"X\": 0.09932252019643784,\n                        \"Y\": 0.16787175834178925\n                    },\n                    {\n                        \"X\": 0.09942302107810974,\n                        \"Y\": 0.2532814145088196\n                    },\n                    {\n                        \"X\": 0.030144406482577324,\n                        \"Y\": 0.25335055589675903\n                    }\n                ]\n            },\n            \"Id\": \"bec30d4c-1d90-4deb-b6e1-e71e703bc48d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a33dbc39-2fef-442f-8a54-7580204ef828\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1988232284784317,\n                    \"Height\": 0.08560877293348312,\n                    \"Left\": 0.09932252019643784,\n                    \"Top\": 0.16767264902591705\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09932252019643784,\n                        \"Y\": 0.16787175834178925\n                    },\n                    {\n                        \"X\": 0.29803842306137085,\n                        \"Y\": 0.16767264902591705\n                    },\n                    {\n                        \"X\": 0.29814574122428894,\n                        \"Y\": 0.25308310985565186\n                    },\n                    {\n                        \"X\": 0.09942302107810974,\n                        \"Y\": 0.2532814145088196\n                    }\n                ]\n            },\n            \"Id\": \"d695eafb-e0b1-4d1f-b1cc-2b04743cc713\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0a56211f-825e-42ff-ae90-21b2ec589dbd\",\n                        \"de0f8527-d768-4e62-9e0f-299ae66a47e1\",\n                        \"563fe2db-665a-428b-87fd-f0a72c20344a\",\n                        \"6d1a70dd-37a8-4a3d-9691-5ab504ae9930\",\n                        \"966da8d5-71f2-4bd8-ab0d-39e35a0feec0\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09491213411092758,\n                    \"Height\": 0.08550544083118439,\n                    \"Left\": 0.29803842306137085,\n                    \"Top\": 0.16757765412330627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29803842306137085,\n                        \"Y\": 0.16767264902591705\n                    },\n                    {\n                        \"X\": 0.3928399682044983,\n                        \"Y\": 0.16757765412330627\n                    },\n                    {\n                        \"X\": 0.39295056462287903,\n                        \"Y\": 0.2529884874820709\n                    },\n                    {\n                        \"X\": 0.29814574122428894,\n                        \"Y\": 0.25308310985565186\n                    }\n                ]\n            },\n            \"Id\": \"11d4e8bc-d415-4806-9ef1-d813ac6ad6eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6dbb409b-c878-45aa-a715-1ef54bed4cb3\",\n                        \"1b66133e-34d7-4341-9d62-607d449e985c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15143537521362305,\n                    \"Height\": 0.08556244522333145,\n                    \"Left\": 0.3928399682044983,\n                    \"Top\": 0.16742603480815887\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3928399682044983,\n                        \"Y\": 0.16757765412330627\n                    },\n                    {\n                        \"X\": 0.5441595911979675,\n                        \"Y\": 0.16742603480815887\n                    },\n                    {\n                        \"X\": 0.5442753434181213,\n                        \"Y\": 0.2528374493122101\n                    },\n                    {\n                        \"X\": 0.39295056462287903,\n                        \"Y\": 0.2529884874820709\n                    }\n                ]\n            },\n            \"Id\": \"474273dd-ed00-47b2-abb1-351d54b58c99\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2325bf57-97b8-41f4-810e-3914efc738f8\",\n                        \"e721b988-9fbd-4ef7-84c2-48f2e5599858\",\n                        \"fcca6a2d-56ec-43f8-b0c9-565738acb78c\",\n                        \"f770b8de-ae83-42de-95e1-16b42242a87f\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15387368202209473,\n                    \"Height\": 0.085565485060215,\n                    \"Left\": 0.5441595911979675,\n                    \"Top\": 0.16727198660373688\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5441595911979675,\n                        \"Y\": 0.16742603480815887\n                    },\n                    {\n                        \"X\": 0.6979121565818787,\n                        \"Y\": 0.16727198660373688\n                    },\n                    {\n                        \"X\": 0.6980332732200623,\n                        \"Y\": 0.2526840269565582\n                    },\n                    {\n                        \"X\": 0.5442753434181213,\n                        \"Y\": 0.2528374493122101\n                    }\n                ]\n            },\n            \"Id\": \"66ec4ff3-6ce2-406d-bf04-8b2f7b3468f4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"dafdd846-6091-433f-ad75-23a6b04b4d0a\",\n                        \"74645236-201f-4afd-96a1-e17bf2d0f70b\",\n                        \"381f4bee-bbfc-4b1a-92f3-d41d9e8e3df1\",\n                        \"71806ffe-4ad4-44ad-8e18-729d346da0af\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08581317961215973,\n                    \"Height\": 0.0854978933930397,\n                    \"Left\": 0.6979121565818787,\n                    \"Top\": 0.16718612611293793\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6979121565818787,\n                        \"Y\": 0.16727198660373688\n                    },\n                    {\n                        \"X\": 0.7836013436317444,\n                        \"Y\": 0.16718612611293793\n                    },\n                    {\n                        \"X\": 0.783725380897522,\n                        \"Y\": 0.25259849429130554\n                    },\n                    {\n                        \"X\": 0.6980332732200623,\n                        \"Y\": 0.2526840269565582\n                    }\n                ]\n            },\n            \"Id\": \"0f0821c2-c008-4842-879a-5db41057f0da\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6d29bc3f-56ad-4987-90fe-f9219516939a\",\n                        \"9706b6c2-19f3-4afe-82e5-49cd490021a9\",\n                        \"c9124825-c17f-466c-a80c-4f90e87a9834\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17272581160068512,\n                    \"Height\": 0.08558531105518341,\n                    \"Left\": 0.7836013436317444,\n                    \"Top\": 0.16701318323612213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7836013436317444,\n                        \"Y\": 0.16718612611293793\n                    },\n                    {\n                        \"X\": 0.956197202205658,\n                        \"Y\": 0.16701318323612213\n                    },\n                    {\n                        \"X\": 0.9563271403312683,\n                        \"Y\": 0.25242623686790466\n                    },\n                    {\n                        \"X\": 0.783725380897522,\n                        \"Y\": 0.25259849429130554\n                    }\n                ]\n            },\n            \"Id\": \"40861493-60bb-4a2d-b9c9-565061661b20\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1ee8f799-5eb4-4af1-8431-74432de74488\",\n                        \"4f01abc3-153f-4642-aed0-71961c5abe46\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.623046875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06926637887954712,\n                    \"Height\": 0.1481257975101471,\n                    \"Left\": 0.03033086657524109,\n                    \"Top\": 0.2532814145088196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03033086657524109,\n                        \"Y\": 0.2533503770828247\n                    },\n                    {\n                        \"X\": 0.09942302107810974,\n                        \"Y\": 0.2532814145088196\n                    },\n                    {\n                        \"X\": 0.09959724545478821,\n                        \"Y\": 0.40133875608444214\n                    },\n                    {\n                        \"X\": 0.030500972643494606,\n                        \"Y\": 0.4014072120189667\n                    }\n                ]\n            },\n            \"Id\": \"3dd8ba06-4d8c-4f5c-aed4-e74a3f5e3f4a\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.576171875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19890879094600677,\n                    \"Height\": 0.14825564622879028,\n                    \"Left\": 0.09942302107810974,\n                    \"Top\": 0.25308310985565186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09942302107810974,\n                        \"Y\": 0.2532814145088196\n                    },\n                    {\n                        \"X\": 0.29814574122428894,\n                        \"Y\": 0.25308310985565186\n                    },\n                    {\n                        \"X\": 0.2983317971229553,\n                        \"Y\": 0.40114179253578186\n                    },\n                    {\n                        \"X\": 0.09959724545478821,\n                        \"Y\": 0.40133875608444214\n                    }\n                ]\n            },\n            \"Id\": \"51acaf35-f0bc-4b84-bb8c-77429232e273\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d15cacb7-9fc4-47b0-a5b0-ec1d25a3ebd3\",\n                        \"ac8a317b-3f8b-4b66-a6fa-1d8da81a328a\",\n                        \"34e6ab38-8837-41de-a4ad-e4786102e8fe\",\n                        \"6258e764-4d80-4b2e-8c07-4912179e43da\",\n                        \"fcee693b-c36e-4fd8-b571-f9f7dc2ac482\",\n                        \"ce6dd7a9-855e-4f67-822c-f83a82c10263\",\n                        \"20493465-b093-4ad0-bf8d-13d010326951\",\n                        \"3676927c-cdd0-443f-8b49-6f74a175f562\",\n                        \"aa2d2177-64a3-4f51-a182-61d847dd35c8\",\n                        \"61a94d1f-4756-40c3-ad7b-ebfda40a2b29\",\n                        \"82bef8bf-7dc8-4cbf-baab-d116dd72c129\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.181640625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09499650448560715,\n                    \"Height\": 0.14815330505371094,\n                    \"Left\": 0.29814574122428894,\n                    \"Top\": 0.2529884874820709\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29814574122428894,\n                        \"Y\": 0.25308310985565186\n                    },\n                    {\n                        \"X\": 0.39295056462287903,\n                        \"Y\": 0.2529884874820709\n                    },\n                    {\n                        \"X\": 0.3931422531604767,\n                        \"Y\": 0.40104782581329346\n                    },\n                    {\n                        \"X\": 0.2983317971229553,\n                        \"Y\": 0.40114179253578186\n                    }\n                ]\n            },\n            \"Id\": \"1cd016b7-181e-48f1-918a-44d826e8c2fd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9b687a40-c96f-4ce1-800f-f45b9e9f229b\",\n                        \"e549fa13-9259-4e57-89d4-c038686e4d00\",\n                        \"25127e4d-e3d6-4733-a467-4c67384bb865\",\n                        \"5704d9f6-2d2e-4a7b-87e7-c1f7e4020392\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.72265625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15152549743652344,\n                    \"Height\": 0.14821036159992218,\n                    \"Left\": 0.39295056462287903,\n                    \"Top\": 0.2528374493122101\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39295056462287903,\n                        \"Y\": 0.2529884874820709\n                    },\n                    {\n                        \"X\": 0.5442753434181213,\n                        \"Y\": 0.2528374493122101\n                    },\n                    {\n                        \"X\": 0.5444760322570801,\n                        \"Y\": 0.4008978307247162\n                    },\n                    {\n                        \"X\": 0.3931422531604767,\n                        \"Y\": 0.40104782581329346\n                    }\n                ]\n            },\n            \"Id\": \"ca6e4122-57c1-4bc9-b214-28c5a0d5ceb8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b951c9d-7f18-4cfe-9fc8-208bb3ca825d\",\n                        \"b3720ee8-7085-4a17-a7a2-003750d0abfe\",\n                        \"42e033fe-ef6a-492c-ab73-75bc9ad4d24c\",\n                        \"f20c8316-da5d-43dc-8ab7-7668e35a152b\",\n                        \"21f3e87c-dd9b-4b6b-87b2-6d97706de536\",\n                        \"854d02ca-c38a-42ce-92fd-f769409f164d\",\n                        \"eafc1d69-c3f1-459d-903d-8b2a1375a27d\",\n                        \"0215dfa5-73dd-4faa-a2d5-6c3ae324c07c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.91796875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15396776795387268,\n                    \"Height\": 0.14821381866931915,\n                    \"Left\": 0.5442753434181213,\n                    \"Top\": 0.2526840269565582\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5442753434181213,\n                        \"Y\": 0.2528374493122101\n                    },\n                    {\n                        \"X\": 0.6980332732200623,\n                        \"Y\": 0.2526840269565582\n                    },\n                    {\n                        \"X\": 0.6982430815696716,\n                        \"Y\": 0.4007454514503479\n                    },\n                    {\n                        \"X\": 0.5444760322570801,\n                        \"Y\": 0.4008978307247162\n                    }\n                ]\n            },\n            \"Id\": \"aade45fc-3a87-471a-8177-391cfecc97c9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"07c4de8d-2dca-4440-b5e4-d3eb4e78da36\",\n                        \"efa5077e-36df-4511-8489-95f562c356cc\",\n                        \"e25c892e-ddd4-4e1b-a86b-d4b3dffb73b0\",\n                        \"7188a4aa-4e1c-477e-b356-a048ec71cc70\",\n                        \"4d3a6117-9922-4afd-b220-12ef169f11b2\",\n                        \"4ff130c7-dc4f-4dcd-9a88-de2e005a31d2\",\n                        \"0b41b37b-58a4-4360-8d54-ba5fef46c83a\",\n                        \"94d78290-b8f8-481e-bfa3-01fb503aec8d\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.59765625,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08590708673000336,\n                    \"Height\": 0.14814694225788116,\n                    \"Left\": 0.6980332732200623,\n                    \"Top\": 0.25259849429130554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6980332732200623,\n                        \"Y\": 0.2526840269565582\n                    },\n                    {\n                        \"X\": 0.783725380897522,\n                        \"Y\": 0.25259849429130554\n                    },\n                    {\n                        \"X\": 0.783940315246582,\n                        \"Y\": 0.40066051483154297\n                    },\n                    {\n                        \"X\": 0.6982430815696716,\n                        \"Y\": 0.4007454514503479\n                    }\n                ]\n            },\n            \"Id\": \"835553ee-b3ee-4fc5-be5e-f379ff1b3cab\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"febb41ed-4faa-4269-b335-c975f7762351\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.748046875,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17286214232444763,\n                    \"Height\": 0.1482343077659607,\n                    \"Left\": 0.783725380897522,\n                    \"Top\": 0.2524262070655823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.783725380897522,\n                        \"Y\": 0.25259849429130554\n                    },\n                    {\n                        \"X\": 0.956362247467041,\n                        \"Y\": 0.2524262070655823\n                    },\n                    {\n                        \"X\": 0.9565874934196472,\n                        \"Y\": 0.4004893898963928\n                    },\n                    {\n                        \"X\": 0.783940315246582,\n                        \"Y\": 0.40066051483154297\n                    }\n                ]\n            },\n            \"Id\": \"3262fee7-b826-4989-8ab6-e44e9c60fe11\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"67b8ead9-0950-4871-ac38-683e9aa3b7d6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"COLUMN_HEADER\"\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.818359375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06933921575546265,\n                    \"Height\": 0.2065233290195465,\n                    \"Left\": 0.030500972643494606,\n                    \"Top\": 0.40133875608444214\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030500972643494606,\n                        \"Y\": 0.4014072120189667\n                    },\n                    {\n                        \"X\": 0.09959724545478821,\n                        \"Y\": 0.40133875608444214\n                    },\n                    {\n                        \"X\": 0.0998401865363121,\n                        \"Y\": 0.6077942252159119\n                    },\n                    {\n                        \"X\": 0.03073817491531372,\n                        \"Y\": 0.6078620553016663\n                    }\n                ]\n            },\n            \"Id\": \"a7c67479-f8a6-47d9-b8ab-f38b0b598b55\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3791145b-dce0-4cb1-834f-c5bbd442f22d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.771484375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1989939957857132,\n                    \"Height\": 0.2066524624824524,\n                    \"Left\": 0.09959724545478821,\n                    \"Top\": 0.40114179253578186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09959724545478821,\n                        \"Y\": 0.40133875608444214\n                    },\n                    {\n                        \"X\": 0.2983317971229553,\n                        \"Y\": 0.40114179253578186\n                    },\n                    {\n                        \"X\": 0.2985912561416626,\n                        \"Y\": 0.6075991988182068\n                    },\n                    {\n                        \"X\": 0.0998401865363121,\n                        \"Y\": 0.6077942252159119\n                    }\n                ]\n            },\n            \"Id\": \"62039866-86be-4c5f-8cc9-0974b35daffb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5ba760ee-ca2e-4349-a855-5514672bacbb\",\n                        \"25e1b4f7-b09a-46bc-87b0-258ce31a2fdd\",\n                        \"241349f5-c4d5-43e0-909c-261cf507012f\",\n                        \"b21fce9c-9b4c-4709-b2fc-b910aefde3c0\",\n                        \"8c63a569-60ee-469a-bcf7-b32910ceaf35\",\n                        \"888f83d4-5484-4f9f-a2b3-d1fc490928c3\",\n                        \"6107f9e7-29dc-445c-a826-122e4ef7e747\",\n                        \"30715f61-bbb7-4242-b5e2-7d612e8b9fff\",\n                        \"5b51a4f6-9c8b-4d90-9c11-ec0b8a43d9d8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.376953125,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0950777605175972,\n                    \"Height\": 0.20655137300491333,\n                    \"Left\": 0.2983317971229553,\n                    \"Top\": 0.40104782581329346\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2983317971229553,\n                        \"Y\": 0.40114179253578186\n                    },\n                    {\n                        \"X\": 0.3931422531604767,\n                        \"Y\": 0.40104782581329346\n                    },\n                    {\n                        \"X\": 0.3934095799922943,\n                        \"Y\": 0.6075061559677124\n                    },\n                    {\n                        \"X\": 0.2985912561416626,\n                        \"Y\": 0.6075991988182068\n                    }\n                ]\n            },\n            \"Id\": \"2b88687c-5ba5-4d0e-b8bd-d3d0f70d50a4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0c18c7d3-e6f1-456e-bee0-5967a9e34989\",\n                        \"7a8cb7a9-5e48-41d4-8469-bf433f47c17f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.91796875,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15161368250846863,\n                    \"Height\": 0.20660829544067383,\n                    \"Left\": 0.3931422531604767,\n                    \"Top\": 0.4008978307247162\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3931422531604767,\n                        \"Y\": 0.40104782581329346\n                    },\n                    {\n                        \"X\": 0.5444760322570801,\n                        \"Y\": 0.4008978307247162\n                    },\n                    {\n                        \"X\": 0.5447559356689453,\n                        \"Y\": 0.6073575615882874\n                    },\n                    {\n                        \"X\": 0.3934095799922943,\n                        \"Y\": 0.6075061559677124\n                    }\n                ]\n            },\n            \"Id\": \"8cf068fd-2b16-4967-aa2e-e7078fc32bb6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3e881681-2bf8-470b-8568-7b99005b7c6c\",\n                        \"2569688b-31b8-449c-9c86-be6063b3611d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.11328125,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15405969321727753,\n                    \"Height\": 0.20661215484142303,\n                    \"Left\": 0.5444760322570801,\n                    \"Top\": 0.4007454514503479\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5444760322570801,\n                        \"Y\": 0.4008978307247162\n                    },\n                    {\n                        \"X\": 0.6982430815696716,\n                        \"Y\": 0.4007454514503479\n                    },\n                    {\n                        \"X\": 0.6985357403755188,\n                        \"Y\": 0.6072066426277161\n                    },\n                    {\n                        \"X\": 0.5447559356689453,\n                        \"Y\": 0.6073575615882874\n                    }\n                ]\n            },\n            \"Id\": \"dad6ba2e-d98e-4ae9-bbd6-25eb0a058f08\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7fd4961a-653f-47cc-a90c-9931d8e37720\",\n                        \"2b41e160-eb95-4676-af2c-cf4456974459\",\n                        \"22c6a9a9-43ac-47c0-aba0-c2efca7f76fc\",\n                        \"82fe85be-3e8d-4059-b4e7-f92b8757826a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 87.79296875,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08599697798490524,\n                    \"Height\": 0.20654615759849548,\n                    \"Left\": 0.6982430815696716,\n                    \"Top\": 0.40066051483154297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6982430815696716,\n                        \"Y\": 0.4007454514503479\n                    },\n                    {\n                        \"X\": 0.783940315246582,\n                        \"Y\": 0.40066051483154297\n                    },\n                    {\n                        \"X\": 0.7842400670051575,\n                        \"Y\": 0.607122540473938\n                    },\n                    {\n                        \"X\": 0.6985357403755188,\n                        \"Y\": 0.6072066426277161\n                    }\n                ]\n            },\n            \"Id\": \"444f222b-7a14-4721-9360-bcbab26c675d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4fd1b81f-00e2-4141-aa9a-ee3ef6a76327\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.943359375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1729612797498703,\n                    \"Height\": 0.20663315057754517,\n                    \"Left\": 0.783940315246582,\n                    \"Top\": 0.4004893898963928\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.783940315246582,\n                        \"Y\": 0.40066051483154297\n                    },\n                    {\n                        \"X\": 0.9565874934196472,\n                        \"Y\": 0.4004893898963928\n                    },\n                    {\n                        \"X\": 0.9569016098976135,\n                        \"Y\": 0.6069530844688416\n                    },\n                    {\n                        \"X\": 0.7842400670051575,\n                        \"Y\": 0.607122540473938\n                    }\n                ]\n            },\n            \"Id\": \"b243975a-2b30-4080-93e0-490751a9da2a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6c920fef-8d78-403c-8dbc-b6ce0a8b4162\",\n                        \"deaa1f59-d364-490a-b075-0f3ea03cf572\",\n                        \"a6072afa-23d9-44ac-a804-c493723a2d8d\",\n                        \"f9d037a1-fcbf-42f7-a3bf-486074e4c09f\",\n                        \"80d6b7af-2e13-4ebb-82be-9de7c0a4ee61\",\n                        \"7dab57d8-d01e-41b2-a46f-3209edaf0b72\",\n                        \"6327031a-4580-42f5-a0c8-025e442ac40a\",\n                        \"9fce9932-1618-4b8c-89f6-ab51a1c63266\",\n                        \"b544a722-d45e-4f54-bed4-3e32f20666f0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 91.11328125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0694563165307045,\n                    \"Height\": 0.3011621832847595,\n                    \"Left\": 0.03073817491531372,\n                    \"Top\": 0.6077942252159119\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03073817491531372,\n                        \"Y\": 0.6078620553016663\n                    },\n                    {\n                        \"X\": 0.0998401865363121,\n                        \"Y\": 0.6077942252159119\n                    },\n                    {\n                        \"X\": 0.10019449144601822,\n                        \"Y\": 0.9088895916938782\n                    },\n                    {\n                        \"X\": 0.03108411282300949,\n                        \"Y\": 0.9089564681053162\n                    }\n                ]\n            },\n            \"Id\": \"688fd994-9e12-4dee-a8a1-ac7a5dcd9251\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"376e7632-8495-4330-bd54-58cf32834899\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.115234375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19912943243980408,\n                    \"Height\": 0.3012903928756714,\n                    \"Left\": 0.0998401865363121,\n                    \"Top\": 0.6075991988182068\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0998401865363121,\n                        \"Y\": 0.6077942252159119\n                    },\n                    {\n                        \"X\": 0.2985912561416626,\n                        \"Y\": 0.6075991988182068\n                    },\n                    {\n                        \"X\": 0.2989696264266968,\n                        \"Y\": 0.9086973071098328\n                    },\n                    {\n                        \"X\": 0.10019449144601822,\n                        \"Y\": 0.9088895916938782\n                    }\n                ]\n            },\n            \"Id\": \"e46747d5-59c7-4c82-99a3-102458241725\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2d386a35-65e9-44d5-a5c2-71dcd07795e4\",\n                        \"cb6dbf40-fe65-4dd8-a69a-e63838d90ba0\",\n                        \"e7b71233-c375-4070-8869-1ecc35914057\",\n                        \"19fa0ba4-faee-459c-b3c5-66c7a6e8a584\",\n                        \"a1bbb864-34db-43a6-9851-a22a5df3b015\",\n                        \"222fd30a-73b8-4faa-8ab1-f6d00ceb01cc\",\n                        \"1a84b059-ec31-4a19-83b6-939af2fb5fe2\",\n                        \"c7008f2e-e77c-4978-8e07-9900787ada11\",\n                        \"d29d3856-8c6d-43cf-a550-041514615259\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.623046875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09520816802978516,\n                    \"Height\": 0.30119115114212036,\n                    \"Left\": 0.2985912561416626,\n                    \"Top\": 0.6075061559677124\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2985912561416626,\n                        \"Y\": 0.6075991988182068\n                    },\n                    {\n                        \"X\": 0.3934095799922943,\n                        \"Y\": 0.6075061559677124\n                    },\n                    {\n                        \"X\": 0.39379942417144775,\n                        \"Y\": 0.9086055755615234\n                    },\n                    {\n                        \"X\": 0.2989696264266968,\n                        \"Y\": 0.9086973071098328\n                    }\n                ]\n            },\n            \"Id\": \"339d72e4-81e2-47da-937e-0653505a68fd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f27c3ce2-4182-4a7b-af8b-a6f5b56c50d1\",\n                        \"e9c68889-6770-4a96-ace8-9414a050e6f6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.26171875,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15175454318523407,\n                    \"Height\": 0.3012479543685913,\n                    \"Left\": 0.3934095799922943,\n                    \"Top\": 0.6073575615882874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3934095799922943,\n                        \"Y\": 0.6075061559677124\n                    },\n                    {\n                        \"X\": 0.5447559356689453,\n                        \"Y\": 0.6073575615882874\n                    },\n                    {\n                        \"X\": 0.5451641082763672,\n                        \"Y\": 0.9084591269493103\n                    },\n                    {\n                        \"X\": 0.39379942417144775,\n                        \"Y\": 0.9086055755615234\n                    }\n                ]\n            },\n            \"Id\": \"66f9a68e-5644-4548-85cb-aca690086a2c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1aff4695-16f0-498b-a6b3-827a6ac3ce21\",\n                        \"e45857c2-7b61-44ee-ab9a-2dc2af4215f6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.45703125,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15420661866664886,\n                    \"Height\": 0.30125245451927185,\n                    \"Left\": 0.5447559356689453,\n                    \"Top\": 0.6072066426277161\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5447559356689453,\n                        \"Y\": 0.6073575615882874\n                    },\n                    {\n                        \"X\": 0.6985357403755188,\n                        \"Y\": 0.6072066426277161\n                    },\n                    {\n                        \"X\": 0.6989625692367554,\n                        \"Y\": 0.9083103537559509\n                    },\n                    {\n                        \"X\": 0.5451641082763672,\n                        \"Y\": 0.9084591269493103\n                    }\n                ]\n            },\n            \"Id\": \"111823da-8e20-4cd5-90e8-5697c4e75028\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"af9e1526-c5c7-4603-804b-3bb6b70153a0\",\n                        \"45f7fc9f-a8a8-44d0-91ee-ded35f1d7d5c\",\n                        \"fdde832f-994e-4c08-a85c-16d7a89110a1\",\n                        \"5c1e8729-4ae5-4484-9db1-a87af8cc29b5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.087890625,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 6,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08614150434732437,\n                    \"Height\": 0.30118778347969055,\n                    \"Left\": 0.6985357403755188,\n                    \"Top\": 0.607122540473938\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6985357403755188,\n                        \"Y\": 0.6072066426277161\n                    },\n                    {\n                        \"X\": 0.7842400670051575,\n                        \"Y\": 0.607122540473938\n                    },\n                    {\n                        \"X\": 0.784677267074585,\n                        \"Y\": 0.9082274436950684\n                    },\n                    {\n                        \"X\": 0.6989625692367554,\n                        \"Y\": 0.9083103537559509\n                    }\n                ]\n            },\n            \"Id\": \"88acdfd3-1394-4cf8-b18e-4f3bbbd4550b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c62030e3-be48-4b3d-acea-62d3cb373c7a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 94.3359375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 7,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17311958968639374,\n                    \"Height\": 0.3012743294239044,\n                    \"Left\": 0.7842400670051575,\n                    \"Top\": 0.6069530844688416\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7842400670051575,\n                        \"Y\": 0.607122540473938\n                    },\n                    {\n                        \"X\": 0.9569016098976135,\n                        \"Y\": 0.6069530844688416\n                    },\n                    {\n                        \"X\": 0.9573596715927124,\n                        \"Y\": 0.9080603718757629\n                    },\n                    {\n                        \"X\": 0.784677267074585,\n                        \"Y\": 0.9082274436950684\n                    }\n                ]\n            },\n            \"Id\": \"bca24bdf-9de5-4687-bff1-5fc52e218a10\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7b23bb8f-e75c-4739-8ff4-bbc5bd8d38a1\",\n                        \"6318bdf1-601a-4d92-8e09-563775425b10\",\n                        \"d8010fac-2e13-45c7-9b25-3c1dd6d85eb4\",\n                        \"97467448-4bae-4a2a-8fbb-2276488963a7\",\n                        \"b136222a-2187-4195-95b6-d9846b3f5a91\",\n                        \"67c31229-7042-49d9-92b4-1adc9e3dcff1\",\n                        \"e8e10803-0d0b-4231-8ffa-8f93577e7fa1\",\n                        \"fc63b034-f289-4841-af5f-d7285d83dd13\",\n                        \"3d51207f-6f08-4970-8f4e-2e20f16a37aa\",\n                        \"5f0c75dc-7ea4-48f8-a648-607fbb1237b9\",\n                        \"0f95a394-d172-43c0-a50b-c0f82d15f832\",\n                        \"5adc4dc3-26f5-42c6-9b1e-4c333ad1c62a\",\n                        \"e2ba540e-73e0-415e-b333-9a0e0fe99663\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"Confidence\": 91.064453125,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 7,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.9261287450790405,\n                    \"Height\": 0.08567176014184952,\n                    \"Left\": 0.03023350052535534,\n                    \"Top\": 0.1676786094903946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03023350052535534,\n                        \"Y\": 0.16860641539096832\n                    },\n                    {\n                        \"X\": 0.9562333226203918,\n                        \"Y\": 0.1676786094903946\n                    },\n                    {\n                        \"X\": 0.956362247467041,\n                        \"Y\": 0.2524262070655823\n                    },\n                    {\n                        \"X\": 0.03033086657524109,\n                        \"Y\": 0.2533503770828247\n                    }\n                ]\n            },\n            \"Id\": \"dc85838d-5d04-40d9-9c11-9399b0a1c243\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"bec30d4c-1d90-4deb-b6e1-e71e703bc48d\",\n                        \"d695eafb-e0b1-4d1f-b1cc-2b04743cc713\",\n                        \"11d4e8bc-d415-4806-9ef1-d813ac6ad6eb\",\n                        \"474273dd-ed00-47b2-abb1-351d54b58c99\",\n                        \"66ec4ff3-6ce2-406d-bf04-8b2f7b3468f4\",\n                        \"0f0821c2-c008-4842-879a-5db41057f0da\",\n                        \"40861493-60bb-4a2d-b9c9-565061661b20\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"TITLE\"\n            ]\n        },\n        {\n            \"BlockType\": \"TITLE\",\n            \"Confidence\": 99.072265625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.9231245517730713,\n                    \"Height\": 0.08887581527233124,\n                    \"Left\": 0.031724557280540466,\n                    \"Top\": 0.15766310691833496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031724557280540466,\n                        \"Y\": 0.15858832001686096\n                    },\n                    {\n                        \"X\": 0.954715371131897,\n                        \"Y\": 0.15766310691833496\n                    },\n                    {\n                        \"X\": 0.954849123954773,\n                        \"Y\": 0.24561746418476105\n                    },\n                    {\n                        \"X\": 0.03182566165924072,\n                        \"Y\": 0.2465389221906662\n                    }\n                ]\n            },\n            \"Id\": \"b5eab734-cd80-4ac1-8b83-45a71bf1d0f7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a33dbc39-2fef-442f-8a54-7580204ef828\",\n                        \"0a56211f-825e-42ff-ae90-21b2ec589dbd\",\n                        \"de0f8527-d768-4e62-9e0f-299ae66a47e1\",\n                        \"563fe2db-665a-428b-87fd-f0a72c20344a\",\n                        \"6d1a70dd-37a8-4a3d-9691-5ab504ae9930\",\n                        \"966da8d5-71f2-4bd8-ab0d-39e35a0feec0\",\n                        \"6dbb409b-c878-45aa-a715-1ef54bed4cb3\",\n                        \"1b66133e-34d7-4341-9d62-607d449e985c\",\n                        \"2325bf57-97b8-41f4-810e-3914efc738f8\",\n                        \"e721b988-9fbd-4ef7-84c2-48f2e5599858\",\n                        \"fcca6a2d-56ec-43f8-b0c9-565738acb78c\",\n                        \"f770b8de-ae83-42de-95e1-16b42242a87f\",\n                        \"dafdd846-6091-433f-ad75-23a6b04b4d0a\",\n                        \"74645236-201f-4afd-96a1-e17bf2d0f70b\",\n                        \"381f4bee-bbfc-4b1a-92f3-d41d9e8e3df1\",\n                        \"71806ffe-4ad4-44ad-8e18-729d346da0af\",\n                        \"6d29bc3f-56ad-4987-90fe-f9219516939a\",\n                        \"9706b6c2-19f3-4afe-82e5-49cd490021a9\",\n                        \"c9124825-c17f-466c-a80c-4f90e87a9834\",\n                        \"1ee8f799-5eb4-4af1-8431-74432de74488\",\n                        \"4f01abc3-153f-4642-aed0-71961c5abe46\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/issue_83.json",
    "content": "{\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"Blocks\": [{\n        \"BlockType\": \"PAGE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": null,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 1.0,\n                \"Left\": 0.0,\n                \"Top\": 0.0,\n                \"Width\": 1.0\n            },\n            \"Polygon\": [{\n                \"X\": 0.0,\n                \"Y\": 0.0\n            }, {\n                \"X\": 1.0,\n                \"Y\": 9.159381988865789e-06\n            }, {\n                \"X\": 1.0,\n                \"Y\": 1.0\n            }, {\n                \"X\": 1.947333112184424e-05,\n                \"Y\": 1.0\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"9cf13b2e-814b-4a37-9522-51362957c25d\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"19303ffd-2621-4016-95d1-87d609f24934\", \"07b038e7-c8d5-4996-91a3-947e81941425\", \"1a9ec158-24d4-4f9b-a0d2-f6f70152912a\", \"838ecda9-e7b0-4237-a093-33ddd188bc3e\", \"2fd2c96a-3b3d-4065-be3f-1aa7c423ee8d\", \"690da86c-2438-4641-9ae7-86fd56348bcd\", \"0292816d-6364-4de1-84b3-04d183a118d8\", \"de9ef8d7-5a50-4b0f-a025-6bc3a59912d8\", \"668de13f-8a0d-45c4-8ecd-c5f7c29ed076\", \"bff28dd9-46ba-4b78-8f5d-c559bff563b5\", \"73051e3e-60e5-4e65-8f3e-c0d330849e4d\", \"10a90f53-b67d-4b56-816a-55f71477b986\", \"a42b6aac-1010-4ab3-908b-bb44b22f6640\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": null,\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 89.5896224975586,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02322372794151306,\n                \"Left\": 0.7483330965042114,\n                \"Top\": 0.0006256837514229119,\n                \"Width\": 0.13196858763694763\n            },\n            \"Polygon\": [{\n                \"X\": 0.7483330965042114,\n                \"Y\": 0.0006256837514229119\n            }, {\n                \"X\": 0.8794529438018799,\n                \"Y\": 0.004091685637831688\n            }, {\n                \"X\": 0.8803016543388367,\n                \"Y\": 0.02384941093623638\n            }, {\n                \"X\": 0.7491787075996399,\n                \"Y\": 0.020400535315275192\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"19303ffd-2621-4016-95d1-87d609f24934\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"27ad866e-94ce-460e-8e4e-b169f4b2ce04\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Schichtdicke\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 98.088623046875,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02862657606601715,\n                \"Left\": 0.008502427488565445,\n                \"Top\": 0.0,\n                \"Width\": 0.3114483952522278\n            },\n            \"Polygon\": [{\n                \"X\": 0.008502427488565445,\n                \"Y\": 0.0\n            }, {\n                \"X\": 0.3189096748828888,\n                \"Y\": 0.003913044463843107\n            }, {\n                \"X\": 0.31995081901550293,\n                \"Y\": 0.02862657606601715\n            }, {\n                \"X\": 0.009534318931400776,\n                \"Y\": 0.02050195075571537\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"07b038e7-c8d5-4996-91a3-947e81941425\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"a45724b7-ace6-45c9-9430-ee594d7c83b2\", \"e55e1ebc-bd34-46df-906c-63de8a658395\", \"0ba99d7b-42aa-4042-8415-0fb0659d33dd\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Durchmesser der Schleifkugel\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.62468719482422,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.020456425845623016,\n                \"Left\": 0.36967477202415466,\n                \"Top\": 0.00245892652310431,\n                \"Width\": 0.0888318344950676\n            },\n            \"Polygon\": [{\n                \"X\": 0.36967477202415466,\n                \"Y\": 0.00245892652310431\n            }, {\n                \"X\": 0.45773887634277344,\n                \"Y\": 0.00477988738566637\n            }, {\n                \"X\": 0.45850661396980286,\n                \"Y\": 0.022915352135896683\n            }, {\n                \"X\": 0.37044060230255127,\n                \"Y\": 0.020604919642210007\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"1a9ec158-24d4-4f9b-a0d2-f6f70152912a\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"e67e513f-1f9d-424b-a756-d5ed2da989b5\", \"c3aee8a8-665c-4698-a50d-642887e22e44\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"20.00 mm\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 90.16453552246094,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02242378517985344,\n                \"Left\": 0.748813807964325,\n                \"Top\": 0.03600073978304863,\n                \"Width\": 0.10635188966989517\n            },\n            \"Polygon\": [{\n                \"X\": 0.748813807964325,\n                \"Y\": 0.03600073978304863\n            }, {\n                \"X\": 0.8543219566345215,\n                \"Y\": 0.03876493498682976\n            }, {\n                \"X\": 0.8551657199859619,\n                \"Y\": 0.05842452496290207\n            }, {\n                \"X\": 0.7496550679206848,\n                \"Y\": 0.05567403882741928\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"838ecda9-e7b0-4237-a093-33ddd188bc3e\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"88e917d3-9dcb-47a3-a688-2573a2c4af7b\", \"b5266ce0-29dc-406b-bd4e-925310abf58b\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Schicht 1:\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 85.32880401611328,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.022543182596564293,\n                \"Left\": 0.9022333025932312,\n                \"Top\": 0.03713907301425934,\n                \"Width\": 0.08839504420757294\n            },\n            \"Polygon\": [{\n                \"X\": 0.9022333025932312,\n                \"Y\": 0.03713907301425934\n            }, {\n                \"X\": 0.9897552728652954,\n                \"Y\": 0.03943372890353203\n            }, {\n                \"X\": 0.9906283617019653,\n                \"Y\": 0.05968225747346878\n            }, {\n                \"X\": 0.903104305267334,\n                \"Y\": 0.05739932879805565\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"2fd2c96a-3b3d-4065-be3f-1aa7c423ee8d\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"43e50c0e-6373-401b-b213-91c3fea8cfbd\", \"fb68fc06-8e17-4a93-bc55-cc14f4201622\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"3.421 um\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 96.67586517333984,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.027003956958651543,\n                \"Left\": 0.008223646320402622,\n                \"Top\": 0.033686745911836624,\n                \"Width\": 0.19932445883750916\n            },\n            \"Polygon\": [{\n                \"X\": 0.008223646320402622,\n                \"Y\": 0.033686745911836624\n            }, {\n                \"X\": 0.20663221180438995,\n                \"Y\": 0.03886241093277931\n            }, {\n                \"X\": 0.2075481116771698,\n                \"Y\": 0.06069070100784302\n            }, {\n                \"X\": 0.00913433637470007,\n                \"Y\": 0.05554354190826416\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"690da86c-2438-4641-9ae7-86fd56348bcd\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"3fbc78a8-cf39-4390-8069-d03ff4a0e29c\", \"33131835-3338-40a8-89ae-d4a4d79a5dd1\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Max. Kalottentiefe\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 88.59024047851562,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.023006897419691086,\n                \"Left\": 0.3810184597969055,\n                \"Top\": 0.0368880033493042,\n                \"Width\": 0.07821036130189896\n            },\n            \"Polygon\": [{\n                \"X\": 0.3810184597969055,\n                \"Y\": 0.0368880033493042\n            }, {\n                \"X\": 0.4583404064178467,\n                \"Y\": 0.03890836238861084\n            }, {\n                \"X\": 0.4592288136482239,\n                \"Y\": 0.059894900768995285\n            }, {\n                \"X\": 0.3819049000740051,\n                \"Y\": 0.057885244488716125\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"0292816d-6364-4de1-84b3-04d183a118d8\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"2bab9384-527b-4a5c-8577-f976859e0eff\", \"f7fe6500-41fa-45ee-9e1c-827a443381e2\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"6.39 um\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 87.77570343017578,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02326725795865059,\n                \"Left\": 0.009123480878770351,\n                \"Top\": 0.9306360483169556,\n                \"Width\": 0.1509622037410736\n            },\n            \"Polygon\": [{\n                \"X\": 0.009123480878770351,\n                \"Y\": 0.9306360483169556\n            }, {\n                \"X\": 0.15923888981342316,\n                \"Y\": 0.933661699295044\n            }, {\n                \"X\": 0.16008567810058594,\n                \"Y\": 0.953903317451477\n            }, {\n                \"X\": 0.009966611862182617,\n                \"Y\": 0.9508976340293884\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"de9ef8d7-5a50-4b0f-a025-6bc3a59912d8\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"e9a25c51-e258-4ce6-be79-768a6a6cf0d4\", \"e7fa05cd-092a-46a8-bb9c-f77ccec231fb\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Durchmesser 1:\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 87.38748931884766,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.022799471393227577,\n                \"Left\": 0.21839994192123413,\n                \"Top\": 0.9323121905326843,\n                \"Width\": 0.08844445645809174\n            },\n            \"Polygon\": [{\n                \"X\": 0.21839994192123413,\n                \"Y\": 0.9323121905326843\n            }, {\n                \"X\": 0.30595993995666504,\n                \"Y\": 0.9340784549713135\n            }, {\n                \"X\": 0.3068443834781647,\n                \"Y\": 0.9551116228103638\n            }, {\n                \"X\": 0.21928218007087708,\n                \"Y\": 0.9533575177192688\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"668de13f-8a0d-45c4-8ecd-c5f7c29ed076\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"de4fdf0e-452b-4895-a133-b4eeae736238\", \"e09bb6bf-820b-4403-89ff-922ebf438fc0\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"714.7 um\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 97.27793884277344,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.04057451710104942,\n                \"Left\": 0.802014172077179,\n                \"Top\": 0.9341834783554077,\n                \"Width\": 0.10224439948797226\n            },\n            \"Polygon\": [{\n                \"X\": 0.802014172077179,\n                \"Y\": 0.9341834783554077\n            }, {\n                \"X\": 0.9026040434837341,\n                \"Y\": 0.9362192749977112\n            }, {\n                \"X\": 0.9042586088180542,\n                \"Y\": 0.9747580289840698\n            }, {\n                \"X\": 0.8036641478538513,\n                \"Y\": 0.9727479219436646\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"bff28dd9-46ba-4b78-8f5d-c559bff563b5\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"62935b30-8fd8-432f-b418-6b7e63bcc2cf\", \"e13513c3-621d-4bf9-afb8-4adb706b1683\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"200 um\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 93.20588684082031,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.023571839556097984,\n                \"Left\": 0.008985922671854496,\n                \"Top\": 0.9652037024497986,\n                \"Width\": 0.15069037675857544\n            },\n            \"Polygon\": [{\n                \"X\": 0.008985922671854496,\n                \"Y\": 0.9652037024497986\n            }, {\n                \"X\": 0.1588151603937149,\n                \"Y\": 0.9681893587112427\n            }, {\n                \"X\": 0.15967629849910736,\n                \"Y\": 0.9887755513191223\n            }, {\n                \"X\": 0.009843357838690281,\n                \"Y\": 0.9858102202415466\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"73051e3e-60e5-4e65-8f3e-c0d330849e4d\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"a57fbbdf-ad06-4eaa-9cc4-29a7b68f8e86\", \"f8958f4c-5672-4ef2-a23f-90afef39502d\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Durchmesser 2:\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"LINE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 88.82679748535156,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.022884519770741463,\n                \"Left\": 0.2179727405309677,\n                \"Top\": 0.9671788215637207,\n                \"Width\": 0.0884135439991951\n            },\n            \"Polygon\": [{\n                \"X\": 0.2179727405309677,\n                \"Y\": 0.9671788215637207\n            }, {\n                \"X\": 0.3054974377155304,\n                \"Y\": 0.9689242243766785\n            }, {\n                \"X\": 0.3063862919807434,\n                \"Y\": 0.9900633692741394\n            }, {\n                \"X\": 0.21885937452316284,\n                \"Y\": 0.9883301854133606\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"10a90f53-b67d-4b56-816a-55f71477b986\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"b5e0341b-111a-4e17-8413-81a6ce2127dd\", \"8ba090de-1f9c-4033-a39c-88af3bc06586\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"487.1 um\",\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 89.5896224975586,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02322372794151306,\n                \"Left\": 0.7483330965042114,\n                \"Top\": 0.0006256837514229119,\n                \"Width\": 0.13196858763694763\n            },\n            \"Polygon\": [{\n                \"X\": 0.7483330965042114,\n                \"Y\": 0.0006256837514229119\n            }, {\n                \"X\": 0.8794529438018799,\n                \"Y\": 0.004091685637831688\n            }, {\n                \"X\": 0.8803016543388367,\n                \"Y\": 0.02384941093623638\n            }, {\n                \"X\": 0.7491787075996399,\n                \"Y\": 0.020400535315275192\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"27ad866e-94ce-460e-8e4e-b169f4b2ce04\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Schichtdicke\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 97.36994171142578,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02200518175959587,\n                \"Left\": 0.008749864995479584,\n                \"Top\": 0.0016760809812694788,\n                \"Width\": 0.12225599586963654\n            },\n            \"Polygon\": [{\n                \"X\": 0.008749864995479584,\n                \"Y\": 0.0016760809812694788\n            }, {\n                \"X\": 0.13021865487098694,\n                \"Y\": 0.004870423581451178\n            }, {\n                \"X\": 0.13100585341453552,\n                \"Y\": 0.023681262508034706\n            }, {\n                \"X\": 0.009534318931400776,\n                \"Y\": 0.02050195075571537\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"a45724b7-ace6-45c9-9430-ee594d7c83b2\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Durchmesser\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.8912582397461,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.01901480369269848,\n                \"Left\": 0.14061307907104492,\n                \"Top\": 0.0028828938957303762,\n                \"Width\": 0.0336083248257637\n            },\n            \"Polygon\": [{\n                \"X\": 0.14061307907104492,\n                \"Y\": 0.0028828938957303762\n            }, {\n                \"X\": 0.17346066236495972,\n                \"Y\": 0.0037471994291990995\n            }, {\n                \"X\": 0.17422141134738922,\n                \"Y\": 0.02189769595861435\n            }, {\n                \"X\": 0.14137309789657593,\n                \"Y\": 0.02103731408715248\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e55e1ebc-bd34-46df-906c-63de8a658395\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"der\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 97.0046615600586,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.026326460763812065,\n                \"Left\": 0.1850983202457428,\n                \"Top\": 0.0003888733044732362,\n                \"Width\": 0.13477198779582977\n            },\n            \"Polygon\": [{\n                \"X\": 0.1850983202457428,\n                \"Y\": 0.0003888733044732362\n            }, {\n                \"X\": 0.3189096748828888,\n                \"Y\": 0.003913044463843107\n            }, {\n                \"X\": 0.3198702931404114,\n                \"Y\": 0.026715334504842758\n            }, {\n                \"X\": 0.1860552579164505,\n                \"Y\": 0.02321125939488411\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"0ba99d7b-42aa-4042-8415-0fb0659d33dd\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Schleifkugel\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.57917022705078,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.019575783982872963,\n                \"Left\": 0.36967477202415466,\n                \"Top\": 0.00245892652310431,\n                \"Width\": 0.05526472255587578\n            },\n            \"Polygon\": [{\n                \"X\": 0.36967477202415466,\n                \"Y\": 0.00245892652310431\n            }, {\n                \"X\": 0.4241724908351898,\n                \"Y\": 0.0038952333852648735\n            }, {\n                \"X\": 0.42493951320648193,\n                \"Y\": 0.02203471027314663\n            }, {\n                \"X\": 0.37044060230255127,\n                \"Y\": 0.020604919642210007\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e67e513f-1f9d-424b-a756-d5ed2da989b5\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"20.00\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.67020416259766,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.013322815299034119,\n                \"Left\": 0.43478941917419434,\n                \"Top\": 0.007596323266625404,\n                \"Width\": 0.023632686585187912\n            },\n            \"Polygon\": [{\n                \"X\": 0.43478941917419434,\n                \"Y\": 0.007596323266625404\n            }, {\n                \"X\": 0.4578838646411896,\n                \"Y\": 0.008204461075365543\n            }, {\n                \"X\": 0.45842212438583374,\n                \"Y\": 0.020919138565659523\n            }, {\n                \"X\": 0.43532732129096985,\n                \"Y\": 0.02031293697655201\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"c3aee8a8-665c-4698-a50d-642887e22e44\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"mm\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 96.05447387695312,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.0213011521846056,\n                \"Left\": 0.7488287091255188,\n                \"Top\": 0.03634856268763542,\n                \"Width\": 0.07661478221416473\n            },\n            \"Polygon\": [{\n                \"X\": 0.7488287091255188,\n                \"Y\": 0.03634856268763542\n            }, {\n                \"X\": 0.8246152997016907,\n                \"Y\": 0.038333915174007416\n            }, {\n                \"X\": 0.8254434466362,\n                \"Y\": 0.05764971673488617\n            }, {\n                \"X\": 0.7496550679206848,\n                \"Y\": 0.05567403882741928\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"88e917d3-9dcb-47a3-a688-2573a2c4af7b\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Schicht\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 84.27460479736328,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.018656954169273376,\n                \"Left\": 0.8360245823860168,\n                \"Top\": 0.03828556463122368,\n                \"Width\": 0.01907753199338913\n            },\n            \"Polygon\": [{\n                \"X\": 0.8360245823860168,\n                \"Y\": 0.03828556463122368\n            }, {\n                \"X\": 0.8543219566345215,\n                \"Y\": 0.03876493498682976\n            }, {\n                \"X\": 0.8551021218299866,\n                \"Y\": 0.056942518800497055\n            }, {\n                \"X\": 0.8368043303489685,\n                \"Y\": 0.05646534636616707\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"b5266ce0-29dc-406b-bd4e-925310abf58b\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"1:\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 97.20883178710938,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.01975668966770172,\n                \"Left\": 0.9022333025932312,\n                \"Top\": 0.03713907301425934,\n                \"Width\": 0.05308523774147034\n            },\n            \"Polygon\": [{\n                \"X\": 0.9022333025932312,\n                \"Y\": 0.03713907301425934\n            }, {\n                \"X\": 0.9545267224311829,\n                \"Y\": 0.03851010650396347\n            }, {\n                \"X\": 0.9553185701370239,\n                \"Y\": 0.05689576268196106\n            }, {\n                \"X\": 0.9030239582061768,\n                \"Y\": 0.0555310919880867\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"43e50c0e-6373-401b-b213-91c3fea8cfbd\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"3.421\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 73.44876861572266,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.01786484755575657,\n                \"Left\": 0.9661619663238525,\n                \"Top\": 0.04181741178035736,\n                \"Width\": 0.024466361850500107\n            },\n            \"Polygon\": [{\n                \"X\": 0.9661619663238525,\n                \"Y\": 0.04181741178035736\n            }, {\n                \"X\": 0.9898848533630371,\n                \"Y\": 0.04243890196084976\n            }, {\n                \"X\": 0.9906283617019653,\n                \"Y\": 0.05968225747346878\n            }, {\n                \"X\": 0.9669049978256226,\n                \"Y\": 0.05906347185373306\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"fb68fc06-8e17-4a93-bc55-cc14f4201622\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"um\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 96.98257446289062,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.01833280362188816,\n                \"Left\": 0.008415592834353447,\n                \"Top\": 0.0382934994995594,\n                \"Width\": 0.04245719686150551\n            },\n            \"Polygon\": [{\n                \"X\": 0.008415592834353447,\n                \"Y\": 0.0382934994995594\n            }, {\n                \"X\": 0.05015317723155022,\n                \"Y\": 0.0393809899687767\n            }, {\n                \"X\": 0.050872787833213806,\n                \"Y\": 0.056626301258802414\n            }, {\n                \"X\": 0.00913433637470007,\n                \"Y\": 0.05554354190826416\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"3fbc78a8-cf39-4390-8069-d03ff4a0e29c\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Max.\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 96.36915588378906,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.024147607386112213,\n                \"Left\": 0.06253334134817123,\n                \"Top\": 0.035103462636470795,\n                \"Width\": 0.1449543684720993\n            },\n            \"Polygon\": [{\n                \"X\": 0.06253334134817123,\n                \"Y\": 0.035103462636470795\n            }, {\n                \"X\": 0.20663221180438995,\n                \"Y\": 0.03886241093277931\n            }, {\n                \"X\": 0.20748770236968994,\n                \"Y\": 0.05925107002258301\n            }, {\n                \"X\": 0.06338530033826828,\n                \"Y\": 0.055511459708213806\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"33131835-3338-40a8-89ae-d4a4d79a5dd1\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Kalottentiefe\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.75192260742188,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.020466983318328857,\n                \"Left\": 0.3810184597969055,\n                \"Top\": 0.0368880033493042,\n                \"Width\": 0.04429035261273384\n            },\n            \"Polygon\": [{\n                \"X\": 0.3810184597969055,\n                \"Y\": 0.0368880033493042\n            }, {\n                \"X\": 0.4244914650917053,\n                \"Y\": 0.03802391514182091\n            }, {\n                \"X\": 0.42530882358551025,\n                \"Y\": 0.057354990392923355\n            }, {\n                \"X\": 0.38183480501174927,\n                \"Y\": 0.05622461438179016\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"2bab9384-527b-4a5c-8577-f976859e0eff\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"6.39\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 77.42855834960938,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.018112285062670708,\n                \"Left\": 0.4345938563346863,\n                \"Top\": 0.04178261756896973,\n                \"Width\": 0.024634961038827896\n            },\n            \"Polygon\": [{\n                \"X\": 0.4345938563346863,\n                \"Y\": 0.04178261756896973\n            }, {\n                \"X\": 0.45848849415779114,\n                \"Y\": 0.04240640997886658\n            }, {\n                \"X\": 0.4592288136482239,\n                \"Y\": 0.059894900768995285\n            }, {\n                \"X\": 0.4353336691856384,\n                \"Y\": 0.059273865073919296\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"f7fe6500-41fa-45ee-9e1c-827a443381e2\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"um\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 97.04349517822266,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02156597003340721,\n                \"Left\": 0.009169432334601879,\n                \"Top\": 0.9317403435707092,\n                \"Width\": 0.1210990697145462\n            },\n            \"Polygon\": [{\n                \"X\": 0.009169432334601879,\n                \"Y\": 0.9317403435707092\n            }, {\n                \"X\": 0.12946854531764984,\n                \"Y\": 0.9341641664505005\n            }, {\n                \"X\": 0.13026849925518036,\n                \"Y\": 0.9533063173294067\n            }, {\n                \"X\": 0.009966611862182617,\n                \"Y\": 0.9508976340293884\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e9a25c51-e258-4ce6-be79-768a6a6cf0d4\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Durchmesser\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 78.5079116821289,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.01829342357814312,\n                \"Left\": 0.14109951257705688,\n                \"Top\": 0.9332960844039917,\n                \"Width\": 0.018889378756284714\n            },\n            \"Polygon\": [{\n                \"X\": 0.14109951257705688,\n                \"Y\": 0.9332960844039917\n            }, {\n                \"X\": 0.15923888981342316,\n                \"Y\": 0.933661699295044\n            }, {\n                \"X\": 0.1599888801574707,\n                \"Y\": 0.9515895247459412\n            }, {\n                \"X\": 0.1418491005897522,\n                \"Y\": 0.9512260556221008\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e7fa05cd-092a-46a8-bb9c-f77ccec231fb\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"1:\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.70095825195312,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.019135572016239166,\n                \"Left\": 0.21839994192123413,\n                \"Top\": 0.9323121905326843,\n                \"Width\": 0.05383960157632828\n            },\n            \"Polygon\": [{\n                \"X\": 0.21839994192123413,\n                \"Y\": 0.9323121905326843\n            }, {\n                \"X\": 0.27148082852363586,\n                \"Y\": 0.9333829283714294\n            }, {\n                \"X\": 0.2722395360469818,\n                \"Y\": 0.9514477252960205\n            }, {\n                \"X\": 0.21915750205516815,\n                \"Y\": 0.9503833055496216\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"de4fdf0e-452b-4895-a133-b4eeae736238\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"714.7\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 75.07402801513672,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.017431320622563362,\n                \"Left\": 0.2827838361263275,\n                \"Top\": 0.9376803040504456,\n                \"Width\": 0.024060538038611412\n            },\n            \"Polygon\": [{\n                \"X\": 0.2827838361263275,\n                \"Y\": 0.9376803040504456\n            }, {\n                \"X\": 0.30613115429878235,\n                \"Y\": 0.9381506443023682\n            }, {\n                \"X\": 0.3068443834781647,\n                \"Y\": 0.9551116228103638\n            }, {\n                \"X\": 0.28349658846855164,\n                \"Y\": 0.9546439051628113\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e09bb6bf-820b-4403-89ff-922ebf438fc0\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"um\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.9327621459961,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.034503187984228134,\n                \"Left\": 0.802014172077179,\n                \"Top\": 0.9341834783554077,\n                \"Width\": 0.05153980851173401\n            },\n            \"Polygon\": [{\n                \"X\": 0.802014172077179,\n                \"Y\": 0.9341834783554077\n            }, {\n                \"X\": 0.852118730545044,\n                \"Y\": 0.9351975321769714\n            }, {\n                \"X\": 0.8535540103912354,\n                \"Y\": 0.9686866998672485\n            }, {\n                \"X\": 0.8034474849700928,\n                \"Y\": 0.9676837921142578\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"62935b30-8fd8-432f-b418-6b7e63bcc2cf\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"200\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 94.62312316894531,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.035754408687353134,\n                \"Left\": 0.8610625267028809,\n                \"Top\": 0.939003586769104,\n                \"Width\": 0.04319608584046364\n            },\n            \"Polygon\": [{\n                \"X\": 0.8610625267028809,\n                \"Y\": 0.939003586769104\n            }, {\n                \"X\": 0.9027597308158875,\n                \"Y\": 0.9398465156555176\n            }, {\n                \"X\": 0.9042586088180542,\n                \"Y\": 0.9747580289840698\n            }, {\n                \"X\": 0.8625596165657043,\n                \"Y\": 0.9739248156547546\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e13513c3-621d-4bf9-afb8-4adb706b1683\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"um\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 97.10624694824219,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.02185674197971821,\n                \"Left\": 0.009032183326780796,\n                \"Top\": 0.966315507888794,\n                \"Width\": 0.12016008049249649\n            },\n            \"Polygon\": [{\n                \"X\": 0.009032183326780796,\n                \"Y\": 0.966315507888794\n            }, {\n                \"X\": 0.12837828695774078,\n                \"Y\": 0.9686928391456604\n            }, {\n                \"X\": 0.1291922628879547,\n                \"Y\": 0.9881722331047058\n            }, {\n                \"X\": 0.009843357838690281,\n                \"Y\": 0.9858102202415466\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"a57fbbdf-ad06-4eaa-9cc4-29a7b68f8e86\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"Durchmesser\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 89.30552673339844,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.018762581050395966,\n                \"Left\": 0.14058054983615875,\n                \"Top\": 0.9678260087966919,\n                \"Width\": 0.01900426298379898\n            },\n            \"Polygon\": [{\n                \"X\": 0.14058054983615875,\n                \"Y\": 0.9678260087966919\n            }, {\n                \"X\": 0.1588151603937149,\n                \"Y\": 0.9681893587112427\n            }, {\n                \"X\": 0.15958482027053833,\n                \"Y\": 0.9865885972976685\n            }, {\n                \"X\": 0.14134980738162994,\n                \"Y\": 0.9862274527549744\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"f8958f4c-5672-4ef2-a23f-90afef39502d\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"2:\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 99.45165252685547,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.019430726766586304,\n                \"Left\": 0.2179727405309677,\n                \"Top\": 0.9671788215637207,\n                \"Width\": 0.05293811485171318\n            },\n            \"Polygon\": [{\n                \"X\": 0.2179727405309677,\n                \"Y\": 0.9671788215637207\n            }, {\n                \"X\": 0.27013853192329407,\n                \"Y\": 0.9682191014289856\n            }, {\n                \"X\": 0.2709108591079712,\n                \"Y\": 0.9866095781326294\n            }, {\n                \"X\": 0.21874390542507172,\n                \"Y\": 0.9855756163597107\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"b5e0341b-111a-4e17-8413-81a6ce2127dd\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"487.1\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"WORD\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 78.20194244384766,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.017375152558088303,\n                \"Left\": 0.28265702724456787,\n                \"Top\": 0.9726881980895996,\n                \"Width\": 0.023729240521788597\n            },\n            \"Polygon\": [{\n                \"X\": 0.28265702724456787,\n                \"Y\": 0.9726881980895996\n            }, {\n                \"X\": 0.3056749701499939,\n                \"Y\": 0.9731465578079224\n            }, {\n                \"X\": 0.3063862919807434,\n                \"Y\": 0.9900633692741394\n            }, {\n                \"X\": 0.28336790204048157,\n                \"Y\": 0.989607572555542\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"8ba090de-1f9c-4033-a39c-88af3bc06586\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": null,\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": \"um\",\n        \"TextType\": \"PRINTED\"\n    }, {\n        \"BlockType\": \"TABLE\",\n        \"ColumnIndex\": null,\n        \"ColumnSpan\": null,\n        \"Confidence\": 73.486328125,\n        \"EntityTypes\": [\"SEMI_STRUCTURED_TABLE\"],\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.06815264374017715,\n                \"Left\": 0.0030097656417638063,\n                \"Top\": 0.9265893697738647,\n                \"Width\": 0.32544568181037903\n            },\n            \"Polygon\": [{\n                \"X\": 0.0030097656417638063,\n                \"Y\": 0.9265893697738647\n            }, {\n                \"X\": 0.32586175203323364,\n                \"Y\": 0.9331050515174866\n            }, {\n                \"X\": 0.32845544815063477,\n                \"Y\": 0.9947420358657837\n            }, {\n                \"X\": 0.005579540506005287,\n                \"Y\": 0.988357663154602\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"a42b6aac-1010-4ab3-908b-bb44b22f6640\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"938bb8d3-bc8f-4678-9254-a7cf244b48c0\", \"51588987-a1d6-4143-8836-a2257edae0fa\", \"e3481224-f06b-4f44-aead-a442dd3a9a7f\", \"05986eeb-0b93-4152-a61e-b07d051b8d2c\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": null,\n        \"RowSpan\": null,\n        \"SelectionStatus\": null,\n        \"Text\": null,\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"CELL\",\n        \"ColumnIndex\": 1,\n        \"ColumnSpan\": 1,\n        \"Confidence\": 89.208984375,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.03404336795210838,\n                \"Left\": 0.0030097656417638063,\n                \"Top\": 0.9265893697738647,\n                \"Width\": 0.1632784903049469\n            },\n            \"Polygon\": [{\n                \"X\": 0.0030097656417638063,\n                \"Y\": 0.9265893697738647\n            }, {\n                \"X\": 0.16500058770179749,\n                \"Y\": 0.9298586249351501\n            }, {\n                \"X\": 0.16628825664520264,\n                \"Y\": 0.9606327414512634\n            }, {\n                \"X\": 0.004291444085538387,\n                \"Y\": 0.957396388053894\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"938bb8d3-bc8f-4678-9254-a7cf244b48c0\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"e9a25c51-e258-4ce6-be79-768a6a6cf0d4\", \"e7fa05cd-092a-46a8-bb9c-f77ccec231fb\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": 1,\n        \"RowSpan\": 1,\n        \"SelectionStatus\": null,\n        \"Text\": null,\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"CELL\",\n        \"ColumnIndex\": 2,\n        \"ColumnSpan\": 1,\n        \"Confidence\": 91.89453125,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.033987950533628464,\n                \"Left\": 0.16500058770179749,\n                \"Top\": 0.9298586249351501,\n                \"Width\": 0.16215477883815765\n            },\n            \"Polygon\": [{\n                \"X\": 0.16500058770179749,\n                \"Y\": 0.9298586249351501\n            }, {\n                \"X\": 0.32586175203323364,\n                \"Y\": 0.9331050515174866\n            }, {\n                \"X\": 0.32715535163879395,\n                \"Y\": 0.9638465642929077\n            }, {\n                \"X\": 0.16628825664520264,\n                \"Y\": 0.9606327414512634\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"51588987-a1d6-4143-8836-a2257edae0fa\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"de4fdf0e-452b-4895-a133-b4eeae736238\", \"e09bb6bf-820b-4403-89ff-922ebf438fc0\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": 1,\n        \"RowSpan\": 1,\n        \"SelectionStatus\": null,\n        \"Text\": null,\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"CELL\",\n        \"ColumnIndex\": 1,\n        \"ColumnSpan\": 1,\n        \"Confidence\": 87.646484375,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.034164633601903915,\n                \"Left\": 0.004291444085538387,\n                \"Top\": 0.957396388053894,\n                \"Width\": 0.16329093277454376\n            },\n            \"Polygon\": [{\n                \"X\": 0.004291444085538387,\n                \"Y\": 0.957396388053894\n            }, {\n                \"X\": 0.16628825664520264,\n                \"Y\": 0.9606327414512634\n            }, {\n                \"X\": 0.16758237779140472,\n                \"Y\": 0.9915609955787659\n            }, {\n                \"X\": 0.005579540506005287,\n                \"Y\": 0.988357663154602\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"e3481224-f06b-4f44-aead-a442dd3a9a7f\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"a57fbbdf-ad06-4eaa-9cc4-29a7b68f8e86\", \"f8958f4c-5672-4ef2-a23f-90afef39502d\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": 2,\n        \"RowSpan\": 1,\n        \"SelectionStatus\": null,\n        \"Text\": null,\n        \"TextType\": null\n    }, {\n        \"BlockType\": \"CELL\",\n        \"ColumnIndex\": 2,\n        \"ColumnSpan\": 1,\n        \"Confidence\": 90.283203125,\n        \"EntityTypes\": null,\n        \"Geometry\": {\n            \"BoundingBox\": {\n                \"Height\": 0.03410927951335907,\n                \"Left\": 0.16628825664520264,\n                \"Top\": 0.9606327414512634,\n                \"Width\": 0.16216719150543213\n            },\n            \"Polygon\": [{\n                \"X\": 0.16628825664520264,\n                \"Y\": 0.9606327414512634\n            }, {\n                \"X\": 0.32715535163879395,\n                \"Y\": 0.9638465642929077\n            }, {\n                \"X\": 0.32845544815063477,\n                \"Y\": 0.9947420358657837\n            }, {\n                \"X\": 0.16758237779140472,\n                \"Y\": 0.9915609955787659\n            }]\n        },\n        \"Hint\": null,\n        \"Id\": \"05986eeb-0b93-4152-a61e-b07d051b8d2c\",\n        \"Page\": 1,\n        \"PageClassification\": null,\n        \"Query\": null,\n        \"Relationships\": [{\n            \"Ids\": [\"b5e0341b-111a-4e17-8413-81a6ce2127dd\", \"8ba090de-1f9c-4033-a39c-88af3bc06586\"],\n            \"Type\": \"CHILD\"\n        }],\n        \"RowIndex\": 2,\n        \"RowSpan\": 1,\n        \"SelectionStatus\": null,\n        \"Text\": null,\n        \"TextType\": null\n    }],\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"JobStatus\": \"SUCCEEDED\",\n    \"NextToken\": null,\n    \"StatusMessage\": null,\n    \"Warnings\": null\n}\n"
  },
  {
    "path": "src-python/tests/data/lending-doc-output.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 32\n    },\n    \"JobStatus\": \"SUCCEEDED\",\n    \"Results\": [{\n        \"Page\": 1,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1003\",\n                \"Confidence\": 99.9934310913086\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 99.99942779541016\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"CURRENT_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_STREET\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_CITY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_RENT_AMOUNT_PER_MONTH\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_OWN_HOUSING\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_NO_PRIMARY_HOUSING_EXPENSE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_EMPLOYER_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_EMPLOYER_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_RENT_PER_MONTH\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_OWN_HOUSING\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_LENGTH_YEARS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_LENGTH_MONTHS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_LENGTH_MONTHS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_LENGTH_YEARS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_STREET\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_CITY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_NO_PRIMARY_HOUSING_EXPENSE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"EMPLOYMENT_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Conventional\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07048405706882477,\n                                \"Height\": 0.0064147524535655975,\n                                \"Left\": 0.7641653418540955,\n                                \"Top\": 0.27858206629753113\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7641653418540955,\n                                \"Y\": 0.27858206629753113\n                            }, {\n                                \"X\": 0.8346465826034546,\n                                \"Y\": 0.27858850359916687\n                            }, {\n                                \"X\": 0.834649384021759,\n                                \"Y\": 0.28499680757522583\n                            }, {\n                                \"X\": 0.7641679644584656,\n                                \"Y\": 0.2849903106689453\n                            }]\n                        },\n                        \"Confidence\": 52.945472717285156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011251268908381462,\n                                \"Height\": 0.006825574673712254,\n                                \"Left\": 0.7512717843055725,\n                                \"Top\": 0.27849748730659485\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7512717843055725,\n                                \"Y\": 0.27849748730659485\n                            }, {\n                                \"X\": 0.7625202536582947,\n                                \"Y\": 0.27849850058555603\n                            }, {\n                                \"X\": 0.7625230550765991,\n                                \"Y\": 0.28532305359840393\n                            }, {\n                                \"X\": 0.751274585723877,\n                                \"Y\": 0.28532201051712036\n                            }]\n                        },\n                        \"Confidence\": 99.64579010009766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Term\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05136556178331375,\n                                \"Height\": 0.006078666541725397,\n                                \"Left\": 0.6824132800102234,\n                                \"Top\": 0.2404429167509079\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6824132800102234,\n                                \"Y\": 0.2404429167509079\n                            }, {\n                                \"X\": 0.7337764501571655,\n                                \"Y\": 0.24044741690158844\n                            }, {\n                                \"X\": 0.7337788939476013,\n                                \"Y\": 0.24652157723903656\n                            }, {\n                                \"X\": 0.6824156045913696,\n                                \"Y\": 0.24651704728603363\n                            }]\n                        },\n                        \"Confidence\": 52.058773040771484\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"30 years\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.044512081891298294,\n                                \"Height\": 0.007571129128336906,\n                                \"Left\": 0.7442831993103027,\n                                \"Top\": 0.24113592505455017\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7442831993103027,\n                                \"Y\": 0.24113592505455017\n                            }, {\n                                \"X\": 0.788792073726654,\n                                \"Y\": 0.24113982915878296\n                            }, {\n                                \"X\": 0.7887952327728271,\n                                \"Y\": 0.24870705604553223\n                            }, {\n                                \"X\": 0.7442862391471863,\n                                \"Y\": 0.24870310723781586\n                            }]\n                        },\n                        \"Confidence\": 52.058773040771484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Date Issued\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05879826098680496,\n                                \"Height\": 0.005903982557356358,\n                                \"Left\": 0.11130617558956146,\n                                \"Top\": 0.2405199259519577\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11130617558956146,\n                                \"Y\": 0.2405199259519577\n                            }, {\n                                \"X\": 0.17010323703289032,\n                                \"Y\": 0.24052508175373077\n                            }, {\n                                \"X\": 0.17010444402694702,\n                                \"Y\": 0.24642391502857208\n                            }, {\n                                \"X\": 0.11130726337432861,\n                                \"Y\": 0.24641871452331543\n                            }]\n                        },\n                        \"Confidence\": 48.20014953613281\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"10/30/2018\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06082717329263687,\n                                \"Height\": 0.006672641262412071,\n                                \"Left\": 0.23640485107898712,\n                                \"Top\": 0.24082593619823456\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23640485107898712,\n                                \"Y\": 0.24082593619823456\n                            }, {\n                                \"X\": 0.2972303628921509,\n                                \"Y\": 0.24083127081394196\n                            }, {\n                                \"X\": 0.2972320318222046,\n                                \"Y\": 0.24749857187271118\n                            }, {\n                                \"X\": 0.2364063709974289,\n                                \"Y\": 0.2474931925535202\n                            }]\n                        },\n                        \"Confidence\": 48.20014953613281\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Purpose\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041538432240486145,\n                                \"Height\": 0.006662430707365274,\n                                \"Left\": 0.6823438405990601,\n                                \"Top\": 0.25046810507774353\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6823438405990601,\n                                \"Y\": 0.25046810507774353\n                            }, {\n                                \"X\": 0.7238795757293701,\n                                \"Y\": 0.2504717707633972\n                            }, {\n                                \"X\": 0.723882257938385,\n                                \"Y\": 0.25713053345680237\n                            }, {\n                                \"X\": 0.6823463439941406,\n                                \"Y\": 0.2571268081665039\n                            }]\n                        },\n                        \"Confidence\": 48.07332992553711\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Purchase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04832205921411514,\n                                \"Height\": 0.006697659380733967,\n                                \"Left\": 0.7450947761535645,\n                                \"Top\": 0.25082266330718994\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7450947761535645,\n                                \"Y\": 0.25082266330718994\n                            }, {\n                                \"X\": 0.7934140563011169,\n                                \"Y\": 0.25082695484161377\n                            }, {\n                                \"X\": 0.7934168577194214,\n                                \"Y\": 0.25752031803131104\n                            }, {\n                                \"X\": 0.7450975179672241,\n                                \"Y\": 0.2575159966945648\n                            }]\n                        },\n                        \"Confidence\": 48.07332992553711\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FHA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02291223779320717,\n                                \"Height\": 0.006014703772962093,\n                                \"Left\": 0.8561431169509888,\n                                \"Top\": 0.27859869599342346\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8561431169509888,\n                                \"Y\": 0.27859869599342346\n                            }, {\n                                \"X\": 0.8790526390075684,\n                                \"Y\": 0.2786007821559906\n                            }, {\n                                \"X\": 0.8790553212165833,\n                                \"Y\": 0.28461340069770813\n                            }, {\n                                \"X\": 0.8561457991600037,\n                                \"Y\": 0.2846112847328186\n                            }]\n                        },\n                        \"Confidence\": 47.619049072265625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01124392170459032,\n                                \"Height\": 0.006690583191812038,\n                                \"Left\": 0.8428518772125244,\n                                \"Top\": 0.27863481640815735\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8428518772125244,\n                                \"Y\": 0.27863481640815735\n                            }, {\n                                \"X\": 0.8540928363800049,\n                                \"Y\": 0.27863582968711853\n                            }, {\n                                \"X\": 0.8540958166122437,\n                                \"Y\": 0.28532537817955017\n                            }, {\n                                \"X\": 0.8428547978401184,\n                                \"Y\": 0.285324364900589\n                            }]\n                        },\n                        \"Confidence\": 99.88705444335938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Product\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04109989106655121,\n                                \"Height\": 0.006067623849958181,\n                                \"Left\": 0.6822074055671692,\n                                \"Top\": 0.25961217284202576\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6822074055671692,\n                                \"Y\": 0.25961217284202576\n                            }, {\n                                \"X\": 0.7233049273490906,\n                                \"Y\": 0.25961586833000183\n                            }, {\n                                \"X\": 0.7233073115348816,\n                                \"Y\": 0.26567980647087097\n                            }, {\n                                \"X\": 0.6822097301483154,\n                                \"Y\": 0.2656761109828949\n                            }]\n                        },\n                        \"Confidence\": 47.048439025878906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Fixed Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05498345568776131,\n                                \"Height\": 0.006835720036178827,\n                                \"Left\": 0.7449338436126709,\n                                \"Top\": 0.2598462700843811\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7449338436126709,\n                                \"Y\": 0.2598462700843811\n                            }, {\n                                \"X\": 0.7999144196510315,\n                                \"Y\": 0.2598511874675751\n                            }, {\n                                \"X\": 0.7999173402786255,\n                                \"Y\": 0.2666819989681244\n                            }, {\n                                \"X\": 0.7449366450309753,\n                                \"Y\": 0.26667702198028564\n                            }]\n                        },\n                        \"Confidence\": 47.048439025878906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Property\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04503284767270088,\n                                \"Height\": 0.006798692513257265,\n                                \"Left\": 0.111033134162426,\n                                \"Top\": 0.288837194442749\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.111033134162426,\n                                \"Y\": 0.288837194442749\n                            }, {\n                                \"X\": 0.15606462955474854,\n                                \"Y\": 0.2888413667678833\n                            }, {\n                                \"X\": 0.15606598556041718,\n                                \"Y\": 0.2956358790397644\n                            }, {\n                                \"X\": 0.11103438585996628,\n                                \"Y\": 0.29563167691230774\n                            }]\n                        },\n                        \"Confidence\": 45.74673843383789\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Sale Price\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.049373287707567215,\n                                \"Height\": 0.005668977275490761,\n                                \"Left\": 0.11244917660951614,\n                                \"Top\": 0.3121488392353058\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11244917660951614,\n                                \"Y\": 0.3121488392353058\n                            }, {\n                                \"X\": 0.16182132065296173,\n                                \"Y\": 0.31215351819992065\n                            }, {\n                                \"X\": 0.16182246804237366,\n                                \"Y\": 0.3178178071975708\n                            }, {\n                                \"X\": 0.11245021969079971,\n                                \"Y\": 0.31781309843063354\n                            }]\n                        },\n                        \"Confidence\": 44.99319076538086\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$127,500\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04900331795215607,\n                                \"Height\": 0.007638391572982073,\n                                \"Left\": 0.23522967100143433,\n                                \"Top\": 0.3120807707309723\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23522967100143433,\n                                \"Y\": 0.3120807707309723\n                            }, {\n                                \"X\": 0.28423112630844116,\n                                \"Y\": 0.31208544969558716\n                            }, {\n                                \"X\": 0.2842330038547516,\n                                \"Y\": 0.3197191655635834\n                            }, {\n                                \"X\": 0.2352313995361328,\n                                \"Y\": 0.3197144865989685\n                            }]\n                        },\n                        \"Confidence\": 44.99319076538086\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Closing Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06317999958992004,\n                                \"Height\": 0.00697978725656867,\n                                \"Left\": 0.11155202984809875,\n                                \"Top\": 0.25017741322517395\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11155202984809875,\n                                \"Y\": 0.25017741322517395\n                            }, {\n                                \"X\": 0.1747305989265442,\n                                \"Y\": 0.25018301606178284\n                            }, {\n                                \"X\": 0.1747320294380188,\n                                \"Y\": 0.25715717673301697\n                            }, {\n                                \"X\": 0.11155331134796143,\n                                \"Y\": 0.2571515440940857\n                            }]\n                        },\n                        \"Confidence\": 44.01437759399414\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"10/29/2018\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06121028587222099,\n                                \"Height\": 0.006835845299065113,\n                                \"Left\": 0.23785023391246796,\n                                \"Top\": 0.25022202730178833\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23785023391246796,\n                                \"Y\": 0.25022202730178833\n                            }, {\n                                \"X\": 0.29905882477760315,\n                                \"Y\": 0.2502274513244629\n                            }, {\n                                \"X\": 0.29906052350997925,\n                                \"Y\": 0.25705787539482117\n                            }, {\n                                \"X\": 0.23785178363323212,\n                                \"Y\": 0.25705239176750183\n                            }]\n                        },\n                        \"Confidence\": 44.01437759399414\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Disbursement Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09693995863199234,\n                                \"Height\": 0.006128517910838127,\n                                \"Left\": 0.1112995445728302,\n                                \"Top\": 0.25952258706092834\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1112995445728302,\n                                \"Y\": 0.25952258706092834\n                            }, {\n                                \"X\": 0.2082381695508957,\n                                \"Y\": 0.25953125953674316\n                            }, {\n                                \"X\": 0.20823951065540314,\n                                \"Y\": 0.26565107703208923\n                            }, {\n                                \"X\": 0.11130066961050034,\n                                \"Y\": 0.26564234495162964\n                            }]\n                        },\n                        \"Confidence\": 43.58445739746094\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"10/31/2018\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06142839044332504,\n                                \"Height\": 0.00687571382150054,\n                                \"Left\": 0.23652887344360352,\n                                \"Top\": 0.25982603430747986\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23652887344360352,\n                                \"Y\": 0.25982603430747986\n                            }, {\n                                \"X\": 0.29795554280281067,\n                                \"Y\": 0.2598315179347992\n                            }, {\n                                \"X\": 0.29795727133750916,\n                                \"Y\": 0.26670172810554504\n                            }, {\n                                \"X\": 0.23653043806552887,\n                                \"Y\": 0.26669618487358093\n                            }]\n                        },\n                        \"Confidence\": 43.58445739746094\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan ID #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.046940479427576065,\n                                \"Height\": 0.010561578907072544,\n                                \"Left\": 0.6833105087280273,\n                                \"Top\": 0.2977014183998108\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6833105087280273,\n                                \"Y\": 0.2977014183998108\n                            }, {\n                                \"X\": 0.7302467226982117,\n                                \"Y\": 0.2977057993412018\n                            }, {\n                                \"X\": 0.7302509546279907,\n                                \"Y\": 0.30826300382614136\n                            }, {\n                                \"X\": 0.6833145618438721,\n                                \"Y\": 0.3082585632801056\n                            }]\n                        },\n                        \"Confidence\": 43.41514205932617\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"067786\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03831343725323677,\n                                \"Height\": 0.006387500092387199,\n                                \"Left\": 0.7463759779930115,\n                                \"Top\": 0.2987362742424011\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7463759779930115,\n                                \"Y\": 0.2987362742424011\n                            }, {\n                                \"X\": 0.7846867442131042,\n                                \"Y\": 0.29873988032341003\n                            }, {\n                                \"X\": 0.7846894264221191,\n                                \"Y\": 0.30512377619743347\n                            }, {\n                                \"X\": 0.7463785409927368,\n                                \"Y\": 0.30512017011642456\n                            }]\n                        },\n                        \"Confidence\": 43.41514205932617\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"VA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015357131138443947,\n                                \"Height\": 0.005870302207767963,\n                                \"Left\": 0.76360023021698,\n                                \"Top\": 0.28826361894607544\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.76360023021698,\n                                \"Y\": 0.28826361894607544\n                            }, {\n                                \"X\": 0.7789549231529236,\n                                \"Y\": 0.28826504945755005\n                            }, {\n                                \"X\": 0.7789573669433594,\n                                \"Y\": 0.2941339313983917\n                            }, {\n                                \"X\": 0.763602614402771,\n                                \"Y\": 0.2941325008869171\n                            }]\n                        },\n                        \"Confidence\": 43.311580657958984\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011233415454626083,\n                                \"Height\": 0.0065509420819580555,\n                                \"Left\": 0.7514081597328186,\n                                \"Top\": 0.28822630643844604\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7514081597328186,\n                                \"Y\": 0.28822630643844604\n                            }, {\n                                \"X\": 0.7626388669013977,\n                                \"Y\": 0.2882273495197296\n                            }, {\n                                \"X\": 0.7626415491104126,\n                                \"Y\": 0.2947772443294525\n                            }, {\n                                \"X\": 0.7514107823371887,\n                                \"Y\": 0.29477620124816895\n                            }]\n                        },\n                        \"Confidence\": 99.8342056274414\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Lender\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03725486621260643,\n                                \"Height\": 0.005993590224534273,\n                                \"Left\": 0.3873029053211212,\n                                \"Top\": 0.2981806993484497\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3873029053211212,\n                                \"Y\": 0.2981806993484497\n                            }, {\n                                \"X\": 0.4245559871196747,\n                                \"Y\": 0.29818418622016907\n                            }, {\n                                \"X\": 0.42455774545669556,\n                                \"Y\": 0.3041742742061615\n                            }, {\n                                \"X\": 0.3873045742511749,\n                                \"Y\": 0.30417078733444214\n                            }]\n                        },\n                        \"Confidence\": 43.19590377807617\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Settlement Agent\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09052417427301407,\n                                \"Height\": 0.007146625313907862,\n                                \"Left\": 0.11032717674970627,\n                                \"Top\": 0.26926207542419434\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11032717674970627,\n                                \"Y\": 0.26926207542419434\n                            }, {\n                                \"X\": 0.20084981620311737,\n                                \"Y\": 0.26927027106285095\n                            }, {\n                                \"X\": 0.20085135102272034,\n                                \"Y\": 0.27640870213508606\n                            }, {\n                                \"X\": 0.11032848060131073,\n                                \"Y\": 0.27640044689178467\n                            }]\n                        },\n                        \"Confidence\": 42.585201263427734\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"File #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.027023734524846077,\n                                \"Height\": 0.006135896779596806,\n                                \"Left\": 0.11127129197120667,\n                                \"Top\": 0.27886587381362915\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11127129197120667,\n                                \"Y\": 0.27886587381362915\n                            }, {\n                                \"X\": 0.13829384744167328,\n                                \"Y\": 0.2788683772087097\n                            }, {\n                                \"X\": 0.1382950246334076,\n                                \"Y\": 0.2850017845630646\n                            }, {\n                                \"X\": 0.1112724170088768,\n                                \"Y\": 0.284999281167984\n                            }]\n                        },\n                        \"Confidence\": 41.6834602355957\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"99-5655901\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06241660565137863,\n                                \"Height\": 0.007309420499950647,\n                                \"Left\": 0.23497654497623444,\n                                \"Top\": 0.2786145508289337\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23497654497623444,\n                                \"Y\": 0.2786145508289337\n                            }, {\n                                \"X\": 0.2973913550376892,\n                                \"Y\": 0.27862027287483215\n                            }, {\n                                \"X\": 0.29739314317703247,\n                                \"Y\": 0.2859239876270294\n                            }, {\n                                \"X\": 0.23497821390628815,\n                                \"Y\": 0.2859182059764862\n                            }]\n                        },\n                        \"Confidence\": 41.6834602355957\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04778046905994415,\n                                \"Height\": 0.005843997001647949,\n                                \"Left\": 0.38844534754753113,\n                                \"Top\": 0.24053236842155457\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38844534754753113,\n                                \"Y\": 0.24053236842155457\n                            }, {\n                                \"X\": 0.436224102973938,\n                                \"Y\": 0.24053655564785004\n                            }, {\n                                \"X\": 0.4362258315086365,\n                                \"Y\": 0.24637636542320251\n                            }, {\n                                \"X\": 0.38844698667526245,\n                                \"Y\": 0.24637214839458466\n                            }]\n                        },\n                        \"Confidence\": 39.65107345581055\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Seller\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029418399557471275,\n                                \"Height\": 0.00597219355404377,\n                                \"Left\": 0.38817664980888367,\n                                \"Top\": 0.26932355761528015\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38817664980888367,\n                                \"Y\": 0.26932355761528015\n                            }, {\n                                \"X\": 0.4175933301448822,\n                                \"Y\": 0.26932623982429504\n                            }, {\n                                \"X\": 0.4175950586795807,\n                                \"Y\": 0.27529576420783997\n                            }, {\n                                \"X\": 0.38817834854125977,\n                                \"Y\": 0.2752930819988251\n                            }]\n                        },\n                        \"Confidence\": 37.719932556152344\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Homeowner's Insurance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14488525688648224,\n                                \"Height\": 0.007106441538780928,\n                                \"Left\": 0.488366961479187,\n                                \"Top\": 0.6693333983421326\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.488366961479187,\n                                \"Y\": 0.6693333983421326\n                            }, {\n                                \"X\": 0.6332496404647827,\n                                \"Y\": 0.6693524718284607\n                            }, {\n                                \"X\": 0.6332522034645081,\n                                \"Y\": 0.6764398813247681\n                            }, {\n                                \"X\": 0.4883691966533661,\n                                \"Y\": 0.6764207482337952\n                            }]\n                        },\n                        \"Confidence\": 27.002853393554688\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01257586944848299,\n                                \"Height\": 0.007580980658531189,\n                                \"Left\": 0.4739431142807007,\n                                \"Top\": 0.6697171926498413\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4739431142807007,\n                                \"Y\": 0.6697171926498413\n                            }, {\n                                \"X\": 0.4865165948867798,\n                                \"Y\": 0.669718861579895\n                            }, {\n                                \"X\": 0.4865189790725708,\n                                \"Y\": 0.6772981882095337\n                            }, {\n                                \"X\": 0.4739454686641693,\n                                \"Y\": 0.67729651927948\n                            }]\n                        },\n                        \"Confidence\": 99.84004974365234\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Property Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08850856870412827,\n                                \"Height\": 0.008168977685272694,\n                                \"Left\": 0.48857438564300537,\n                                \"Top\": 0.6572601795196533\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.48857438564300537,\n                                \"Y\": 0.6572601795196533\n                            }, {\n                                \"X\": 0.5770801305770874,\n                                \"Y\": 0.6572717428207397\n                            }, {\n                                \"X\": 0.5770829319953918,\n                                \"Y\": 0.6654291749000549\n                            }, {\n                                \"X\": 0.4885769486427307,\n                                \"Y\": 0.6654176115989685\n                            }]\n                        },\n                        \"Confidence\": 25.328317642211914\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.012805373407900333,\n                                \"Height\": 0.007224081549793482,\n                                \"Left\": 0.4734364449977875,\n                                \"Top\": 0.6575220227241516\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4734364449977875,\n                                \"Y\": 0.6575220227241516\n                            }, {\n                                \"X\": 0.48623955249786377,\n                                \"Y\": 0.6575236916542053\n                            }, {\n                                \"X\": 0.48624181747436523,\n                                \"Y\": 0.664746105670929\n                            }, {\n                                \"X\": 0.47343868017196655,\n                                \"Y\": 0.6647444367408752\n                            }]\n                        },\n                        \"Confidence\": 99.47364044189453\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Monthly Principal & Interest See Projected Payments below for your Estimated Total Monthly Payment\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1982806771993637,\n                                \"Height\": 0.03059648722410202,\n                                \"Left\": 0.11679824441671371,\n                                \"Top\": 0.41001397371292114\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11679824441671371,\n                                \"Y\": 0.41001397371292114\n                            }, {\n                                \"X\": 0.31507113575935364,\n                                \"Y\": 0.41003477573394775\n                            }, {\n                                \"X\": 0.3150789141654968,\n                                \"Y\": 0.44061043858528137\n                            }, {\n                                \"X\": 0.11680392175912857,\n                                \"Y\": 0.4405890107154846\n                            }]\n                        },\n                        \"Confidence\": 17.674489974975586\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$571.17 NO\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18566042184829712,\n                                \"Height\": 0.0106730991974473,\n                                \"Left\": 0.33021098375320435,\n                                \"Top\": 0.4086975157260895\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33021098375320435,\n                                \"Y\": 0.4086975157260895\n                            }, {\n                                \"X\": 0.5158679485321045,\n                                \"Y\": 0.40871697664260864\n                            }, {\n                                \"X\": 0.5158714056015015,\n                                \"Y\": 0.4193706214427948\n                            }, {\n                                \"X\": 0.3302137553691864,\n                                \"Y\": 0.4193509519100189\n                            }]\n                        },\n                        \"Confidence\": 17.674489974975586\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Includes Closing Costs. See Calculating Cash to Close on page 3 for details.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.41644561290740967,\n                                \"Height\": 0.00911299791187048,\n                                \"Left\": 0.45786184072494507,\n                                \"Top\": 0.7929207682609558\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45786184072494507,\n                                \"Y\": 0.7929207682609558\n                            }, {\n                                \"X\": 0.87430340051651,\n                                \"Y\": 0.7929806709289551\n                            }, {\n                                \"X\": 0.8743074536323547,\n                                \"Y\": 0.8020337820053101\n                            }, {\n                                \"X\": 0.4578646123409271,\n                                \"Y\": 0.8019734621047974\n                            }]\n                        },\n                        \"Confidence\": 17.504966735839844\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"-$134.16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07350742071866989,\n                                \"Height\": 0.01035218220204115,\n                                \"Left\": 0.32180845737457275,\n                                \"Top\": 0.79142165184021\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.32180845737457275,\n                                \"Y\": 0.79142165184021\n                            }, {\n                                \"X\": 0.39531296491622925,\n                                \"Y\": 0.7914322018623352\n                            }, {\n                                \"X\": 0.39531588554382324,\n                                \"Y\": 0.8017738461494446\n                            }, {\n                                \"X\": 0.32181110978126526,\n                                \"Y\": 0.8017631769180298\n                            }]\n                        },\n                        \"Confidence\": 17.504966735839844\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.036720432341098785,\n                                \"Height\": 0.006960928440093994,\n                                \"Left\": 0.4875193238258362,\n                                \"Top\": 0.6824858784675598\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4875193238258362,\n                                \"Y\": 0.6824858784675598\n                            }, {\n                                \"X\": 0.5242374539375305,\n                                \"Y\": 0.6824907064437866\n                            }, {\n                                \"X\": 0.524239718914032,\n                                \"Y\": 0.6894468069076538\n                            }, {\n                                \"X\": 0.4875214993953705,\n                                \"Y\": 0.6894418597221375\n                            }]\n                        },\n                        \"Confidence\": 17.42485237121582\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Balloon Payment\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10927940905094147,\n                                \"Height\": 0.008126371540129185,\n                                \"Left\": 0.11963006854057312,\n                                \"Top\": 0.49026423692703247\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11963006854057312,\n                                \"Y\": 0.49026423692703247\n                            }, {\n                                \"X\": 0.22890764474868774,\n                                \"Y\": 0.49027660489082336\n                            }, {\n                                \"X\": 0.2289094775915146,\n                                \"Y\": 0.4983906149864197\n                            }, {\n                                \"X\": 0.1196315810084343,\n                                \"Y\": 0.4983781576156616\n                            }]\n                        },\n                        \"Confidence\": 16.05923080444336\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"NO\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026034275069832802,\n                                \"Height\": 0.007477341685444117,\n                                \"Left\": 0.48970556259155273,\n                                \"Top\": 0.49071019887924194\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.48970556259155273,\n                                \"Y\": 0.49071019887924194\n                            }, {\n                                \"X\": 0.5157374143600464,\n                                \"Y\": 0.4907131493091583\n                            }, {\n                                \"X\": 0.5157398581504822,\n                                \"Y\": 0.4981875419616699\n                            }, {\n                                \"X\": 0.48970794677734375,\n                                \"Y\": 0.49818459153175354\n                            }]\n                        },\n                        \"Confidence\": 16.05923080444336\n                    }]\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 2,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"CREDIT_CARD_STATEMENT\",\n                \"Confidence\": 93.28047180175781\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"2\",\n                \"Confidence\": 99.99998474121094\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"COMPANY_NAME\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"COMPANY_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"COMPANY_PHONE_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PAYMENT_DUE_DATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_BALANCE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MINIMUM_PAYMENT_DUE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PAST_DUE_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PREVIOUS_BALANCE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PAYMENT_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CASH_ADVANCES_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BALANCE_TRANSFER_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FEES_CHARGED_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"INTEREST_CHARGED\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"STATEMENT_PERIOD\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"AVAILABLE_CREDIT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BALANCE_OVER_CREDIT_ACCESS_LINE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 3,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1003\",\n                \"Confidence\": 99.99165344238281\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"3\",\n                \"Confidence\": 99.98500061035156\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"OTHER_ASSETS_AND_CREDITS_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"LIABILITIES_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_LIABILITIES_AND_EXPENSES_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ASSETS_TOTAL_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_ASSETS_AND_CREDITS_TOTAL_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"From\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028527146205306053,\n                                \"Height\": 0.006119603756815195,\n                                \"Left\": 0.21271903812885284,\n                                \"Top\": 0.8054133653640747\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.21272170543670654,\n                                \"Y\": 0.8054133653640747\n                            }, {\n                                \"X\": 0.24124617874622345,\n                                \"Y\": 0.8054261207580566\n                            }, {\n                                \"X\": 0.24124358594417572,\n                                \"Y\": 0.8115329742431641\n                            }, {\n                                \"X\": 0.21271903812885284,\n                                \"Y\": 0.8115202188491821\n                            }]\n                        },\n                        \"Confidence\": 85.73400115966797\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.012974114157259464,\n                                \"Height\": 0.007248035632073879,\n                                \"Left\": 0.19724228978157043,\n                                \"Top\": 0.8047717213630676\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1972454935312271,\n                                \"Y\": 0.8047717213630676\n                            }, {\n                                \"X\": 0.21021640300750732,\n                                \"Y\": 0.8047775030136108\n                            }, {\n                                \"X\": 0.21021322906017303,\n                                \"Y\": 0.8120197057723999\n                            }, {\n                                \"X\": 0.19724228978157043,\n                                \"Y\": 0.8120139241218567\n                            }]\n                        },\n                        \"Confidence\": 56.865074157714844\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Paid Already by or on Behalf of Borrower at Closing (L)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.26570427417755127,\n                                \"Height\": 0.007299923337996006,\n                                \"Left\": 0.11334501951932907,\n                                \"Top\": 0.7938253283500671\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11334845423698425,\n                                \"Y\": 0.7938253283500671\n                            }, {\n                                \"X\": 0.37904930114746094,\n                                \"Y\": 0.7939440011978149\n                            }, {\n                                \"X\": 0.3790466785430908,\n                                \"Y\": 0.8011252880096436\n                            }, {\n                                \"X\": 0.11334501951932907,\n                                \"Y\": 0.8010064363479614\n                            }]\n                        },\n                        \"Confidence\": 85.43344116210938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"-$133,004.20\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05996904894709587,\n                                \"Height\": 0.006771996151655912,\n                                \"Left\": 0.4177601933479309,\n                                \"Top\": 0.79273921251297\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41776254773139954,\n                                \"Y\": 0.79273921251297\n                            }, {\n                                \"X\": 0.4777292311191559,\n                                \"Y\": 0.7927660346031189\n                            }, {\n                                \"X\": 0.4777270257472992,\n                                \"Y\": 0.7995112538337708\n                            }, {\n                                \"X\": 0.4177601933479309,\n                                \"Y\": 0.7994844317436218\n                            }]\n                        },\n                        \"Confidence\": 85.43344116210938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Due from Borrower at Closing (K)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1717735379934311,\n                                \"Height\": 0.006901572924107313,\n                                \"Left\": 0.11293348670005798,\n                                \"Top\": 0.7829670310020447\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11293675005435944,\n                                \"Y\": 0.7829670310020447\n                            }, {\n                                \"X\": 0.28470703959465027,\n                                \"Y\": 0.783043622970581\n                            }, {\n                                \"X\": 0.2847042679786682,\n                                \"Y\": 0.7898685932159424\n                            }, {\n                                \"X\": 0.11293348670005798,\n                                \"Y\": 0.7897919416427612\n                            }]\n                        },\n                        \"Confidence\": 83.77774810791016\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$132,870.04\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05881340056657791,\n                                \"Height\": 0.006563979666680098,\n                                \"Left\": 0.41949716210365295,\n                                \"Top\": 0.7826442122459412\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4194994568824768,\n                                \"Y\": 0.7826442122459412\n                            }, {\n                                \"X\": 0.47831058502197266,\n                                \"Y\": 0.7826704382896423\n                            }, {\n                                \"X\": 0.47830843925476074,\n                                \"Y\": 0.789208173751831\n                            }, {\n                                \"X\": 0.41949716210365295,\n                                \"Y\": 0.7891819477081299\n                            }]\n                        },\n                        \"Confidence\": 83.77774810791016\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Due from Seller at Closing (N)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17092011868953705,\n                                \"Height\": 0.007454555481672287,\n                                \"Left\": 0.5234348773956299,\n                                \"Top\": 0.7935101985931396\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5234371423721313,\n                                \"Y\": 0.7935101985931396\n                            }, {\n                                \"X\": 0.6943550109863281,\n                                \"Y\": 0.7935865521430969\n                            }, {\n                                \"X\": 0.6943532824516296,\n                                \"Y\": 0.8009647727012634\n                            }, {\n                                \"X\": 0.5234348773956299,\n                                \"Y\": 0.8008883595466614\n                            }]\n                        },\n                        \"Confidence\": 80.08223724365234\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"-$8,817.03\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04902903363108635,\n                                \"Height\": 0.006777328439056873,\n                                \"Left\": 0.8362093567848206,\n                                \"Top\": 0.7928555607795715\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8362105488777161,\n                                \"Y\": 0.7928555607795715\n                            }, {\n                                \"X\": 0.8852383494377136,\n                                \"Y\": 0.7928774356842041\n                            }, {\n                                \"X\": 0.8852373361587524,\n                                \"Y\": 0.7996329069137573\n                            }, {\n                                \"X\": 0.8362093567848206,\n                                \"Y\": 0.79961097240448\n                            }]\n                        },\n                        \"Confidence\": 80.08223724365234\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Due to Seller at Closing (M)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1603974848985672,\n                                \"Height\": 0.00731320958584547,\n                                \"Left\": 0.5227528214454651,\n                                \"Top\": 0.7828000783920288\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5227550268173218,\n                                \"Y\": 0.7828000783920288\n                            }, {\n                                \"X\": 0.6831502914428711,\n                                \"Y\": 0.7828716039657593\n                            }, {\n                                \"X\": 0.6831485629081726,\n                                \"Y\": 0.7901132702827454\n                            }, {\n                                \"X\": 0.5227528214454651,\n                                \"Y\": 0.7900416851043701\n                            }]\n                        },\n                        \"Confidence\": 77.38505554199219\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$127,500.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05979668349027634,\n                                \"Height\": 0.006632066797465086,\n                                \"Left\": 0.8250769972801208,\n                                \"Top\": 0.7832837700843811\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8250781893730164,\n                                \"Y\": 0.7832837700843811\n                            }, {\n                                \"X\": 0.8848736882209778,\n                                \"Y\": 0.7833104133605957\n                            }, {\n                                \"X\": 0.8848726153373718,\n                                \"Y\": 0.7899158596992493\n                            }, {\n                                \"X\": 0.8250769972801208,\n                                \"Y\": 0.7898891568183899\n                            }]\n                        },\n                        \"Confidence\": 77.38505554199219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"To Seller\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05167330428957939,\n                                \"Height\": 0.006560197565704584,\n                                \"Left\": 0.624038815498352,\n                                \"Top\": 0.8049691915512085\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6240405440330505,\n                                \"Y\": 0.8049691915512085\n                            }, {\n                                \"X\": 0.6757121086120605,\n                                \"Y\": 0.8049923181533813\n                            }, {\n                                \"X\": 0.6757105588912964,\n                                \"Y\": 0.8115293979644775\n                            }, {\n                                \"X\": 0.624038815498352,\n                                \"Y\": 0.8115062713623047\n                            }]\n                        },\n                        \"Confidence\": 77.26563262939453\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$118,682.97\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06348969042301178,\n                                \"Height\": 0.007322216872125864,\n                                \"Left\": 0.8211071491241455,\n                                \"Top\": 0.8033913969993591\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8211085200309753,\n                                \"Y\": 0.8033913969993591\n                            }, {\n                                \"X\": 0.8845968842506409,\n                                \"Y\": 0.803419828414917\n                            }, {\n                                \"X\": 0.8845957517623901,\n                                \"Y\": 0.8107136487960815\n                            }, {\n                                \"X\": 0.8211071491241455,\n                                \"Y\": 0.8106852173805237\n                            }]\n                        },\n                        \"Confidence\": 77.26563262939453\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"To Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06760355085134506,\n                                \"Height\": 0.0063026584684848785,\n                                \"Left\": 0.2640969157218933,\n                                \"Top\": 0.8051074743270874\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.26409950852394104,\n                                \"Y\": 0.8051074743270874\n                            }, {\n                                \"X\": 0.3317004442214966,\n                                \"Y\": 0.8051377534866333\n                            }, {\n                                \"X\": 0.3316980302333832,\n                                \"Y\": 0.811410129070282\n                            }, {\n                                \"X\": 0.2640969157218933,\n                                \"Y\": 0.8113798499107361\n                            }]\n                        },\n                        \"Confidence\": 75.69401550292969\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$134.16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0420687198638916,\n                                \"Height\": 0.006510829087346792,\n                                \"Left\": 0.436123251914978,\n                                \"Top\": 0.8037609457969666\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4361254870891571,\n                                \"Y\": 0.8037609457969666\n                            }, {\n                                \"X\": 0.478192001581192,\n                                \"Y\": 0.8037797212600708\n                            }, {\n                                \"X\": 0.4781898856163025,\n                                \"Y\": 0.8102717399597168\n                            }, {\n                                \"X\": 0.436123251914978,\n                                \"Y\": 0.8102529048919678\n                            }]\n                        },\n                        \"Confidence\": 75.69401550292969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"From\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030545208603143692,\n                                \"Height\": 0.006165873724967241,\n                                \"Left\": 0.57233726978302,\n                                \"Top\": 0.8048612475395203\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5723390579223633,\n                                \"Y\": 0.8048612475395203\n                            }, {\n                                \"X\": 0.6028825044631958,\n                                \"Y\": 0.8048748970031738\n                            }, {\n                                \"X\": 0.6028807759284973,\n                                \"Y\": 0.8110271096229553\n                            }, {\n                                \"X\": 0.57233726978302,\n                                \"Y\": 0.8110134601593018\n                            }]\n                        },\n                        \"Confidence\": 73.04242706298828\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"01 Deposit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05704151466488838,\n                                \"Height\": 0.006721322424709797,\n                                \"Left\": 0.1167062297463417,\n                                \"Top\": 0.5767378807067871\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11670941859483719,\n                                \"Y\": 0.5767378807067871\n                            }, {\n                                \"X\": 0.1737477332353592,\n                                \"Y\": 0.5767624974250793\n                            }, {\n                                \"X\": 0.17374470829963684,\n                                \"Y\": 0.583459198474884\n                            }, {\n                                \"X\": 0.1167062297463417,\n                                \"Y\": 0.5834345817565918\n                            }]\n                        },\n                        \"Confidence\": 72.0706787109375\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$1,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04678848013281822,\n                                \"Height\": 0.006665938533842564,\n                                \"Left\": 0.43108588457107544,\n                                \"Top\": 0.5765335559844971\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4310881793498993,\n                                \"Y\": 0.5765335559844971\n                            }, {\n                                \"X\": 0.47787436842918396,\n                                \"Y\": 0.5765537023544312\n                            }, {\n                                \"X\": 0.47787222266197205,\n                                \"Y\": 0.5831995010375977\n                            }, {\n                                \"X\": 0.43108588457107544,\n                                \"Y\": 0.5831792950630188\n                            }]\n                        },\n                        \"Confidence\": 72.0706787109375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"02 Loan Amount\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08661964535713196,\n                                \"Height\": 0.005812264513224363,\n                                \"Left\": 0.11645205318927765,\n                                \"Top\": 0.5861397981643677\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11645480990409851,\n                                \"Y\": 0.5861397981643677\n                            }, {\n                                \"X\": 0.2030716985464096,\n                                \"Y\": 0.5861771702766418\n                            }, {\n                                \"X\": 0.20306916534900665,\n                                \"Y\": 0.5919520258903503\n                            }, {\n                                \"X\": 0.11645205318927765,\n                                \"Y\": 0.5919145941734314\n                            }]\n                        },\n                        \"Confidence\": 66.14928436279297\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$102,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.057709310203790665,\n                                \"Height\": 0.006669564172625542,\n                                \"Left\": 0.4198887348175049,\n                                \"Top\": 0.5867838859558105\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4198910593986511,\n                                \"Y\": 0.5867838859558105\n                            }, {\n                                \"X\": 0.47759804129600525,\n                                \"Y\": 0.5868088006973267\n                            }, {\n                                \"X\": 0.47759589552879333,\n                                \"Y\": 0.5934534668922424\n                            }, {\n                                \"X\": 0.4198887348175049,\n                                \"Y\": 0.5934285521507263\n                            }]\n                        },\n                        \"Confidence\": 66.14928436279297\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"L. Paid Already by or on Behalf of Borrower at Closing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2790106236934662,\n                                \"Height\": 0.007482654415071011,\n                                \"Left\": 0.11641453951597214,\n                                \"Top\": 0.5656858682632446\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11641804128885269,\n                                \"Y\": 0.5656858682632446\n                            }, {\n                                \"X\": 0.39542514085769653,\n                                \"Y\": 0.5658059120178223\n                            }, {\n                                \"X\": 0.39542248845100403,\n                                \"Y\": 0.5731685161590576\n                            }, {\n                                \"X\": 0.11641453951597214,\n                                \"Y\": 0.5730482935905457\n                            }]\n                        },\n                        \"Confidence\": 64.54428100585938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$133,004.20\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0636834055185318,\n                                \"Height\": 0.00702855596318841,\n                                \"Left\": 0.4141140282154083,\n                                \"Top\": 0.5667480826377869\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4141165018081665,\n                                \"Y\": 0.5667480826377869\n                            }, {\n                                \"X\": 0.4777974486351013,\n                                \"Y\": 0.5667755007743835\n                            }, {\n                                \"X\": 0.47779515385627747,\n                                \"Y\": 0.5737766623497009\n                            }, {\n                                \"X\": 0.4141140282154083,\n                                \"Y\": 0.5737492442131042\n                            }]\n                        },\n                        \"Confidence\": 64.54428100585938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"08 TITLE INSURANCE PREM. ADJUSTMENT\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20428776741027832,\n                                \"Height\": 0.006341282278299332,\n                                \"Left\": 0.11690083891153336,\n                                \"Top\": 0.663297712802887\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11690381169319153,\n                                \"Y\": 0.663297712802887\n                            }, {\n                                \"X\": 0.3211885988712311,\n                                \"Y\": 0.6633870601654053\n                            }, {\n                                \"X\": 0.3211861550807953,\n                                \"Y\": 0.669638991355896\n                            }, {\n                                \"X\": 0.11690083891153336,\n                                \"Y\": 0.6695495843887329\n                            }]\n                        },\n                        \"Confidence\": 63.432395935058594\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$411.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.037968095391988754,\n                                \"Height\": 0.006482356693595648,\n                                \"Left\": 0.4395196735858917,\n                                \"Top\": 0.6636043787002563\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4395218789577484,\n                                \"Y\": 0.6636043787002563\n                            }, {\n                                \"X\": 0.4774877727031708,\n                                \"Y\": 0.6636210083961487\n                            }, {\n                                \"X\": 0.47748565673828125,\n                                \"Y\": 0.6700867414474487\n                            }, {\n                                \"X\": 0.4395196735858917,\n                                \"Y\": 0.6700701117515564\n                            }]\n                        },\n                        \"Confidence\": 63.432395935058594\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"09 Buyer Funds\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07816193252801895,\n                                \"Height\": 0.007371733896434307,\n                                \"Left\": 0.11619637906551361,\n                                \"Top\": 0.6731175184249878\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11619987338781357,\n                                \"Y\": 0.6731175184249878\n                            }, {\n                                \"X\": 0.19435831904411316,\n                                \"Y\": 0.6731517314910889\n                            }, {\n                                \"X\": 0.1943550556898117,\n                                \"Y\": 0.6804892420768738\n                            }, {\n                                \"X\": 0.11619637906551361,\n                                \"Y\": 0.6804549694061279\n                            }]\n                        },\n                        \"Confidence\": 62.676029205322266\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$29,342.17\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05140788480639458,\n                                \"Height\": 0.006479931995272636,\n                                \"Left\": 0.4261508285999298,\n                                \"Top\": 0.6732507944107056\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4261530637741089,\n                                \"Y\": 0.6732507944107056\n                            }, {\n                                \"X\": 0.4775587022304535,\n                                \"Y\": 0.6732733249664307\n                            }, {\n                                \"X\": 0.47755661606788635,\n                                \"Y\": 0.6797307133674622\n                            }, {\n                                \"X\": 0.4261508285999298,\n                                \"Y\": 0.6797081828117371\n                            }]\n                        },\n                        \"Confidence\": 62.676029205322266\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"K. Due from Borrower at Closing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1644962579011917,\n                                \"Height\": 0.006989175919443369,\n                                \"Left\": 0.11636623740196228,\n                                \"Top\": 0.3887535333633423\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11636953800916672,\n                                \"Y\": 0.3887535333633423\n                            }, {\n                                \"X\": 0.2808625102043152,\n                                \"Y\": 0.38882219791412354\n                            }, {\n                                \"X\": 0.28085967898368835,\n                                \"Y\": 0.3957426846027374\n                            }, {\n                                \"X\": 0.11636623740196228,\n                                \"Y\": 0.395673930644989\n                            }]\n                        },\n                        \"Confidence\": 62.53509521484375\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$132,870.04\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06439372152090073,\n                                \"Height\": 0.0065754735842347145,\n                                \"Left\": 0.41356590390205383,\n                                \"Top\": 0.38797008991241455\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4135682284832001,\n                                \"Y\": 0.38797008991241455\n                            }, {\n                                \"X\": 0.47795963287353516,\n                                \"Y\": 0.38799697160720825\n                            }, {\n                                \"X\": 0.47795748710632324,\n                                \"Y\": 0.3945455551147461\n                            }, {\n                                \"X\": 0.41356590390205383,\n                                \"Y\": 0.39451864361763\n                            }]\n                        },\n                        \"Confidence\": 62.53509521484375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"01 Sale Price of Property\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12258711457252502,\n                                \"Height\": 0.006965059787034988,\n                                \"Left\": 0.1168149784207344,\n                                \"Top\": 0.39989590644836426\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11681827157735825,\n                                \"Y\": 0.39989590644836426\n                            }, {\n                                \"X\": 0.23940208554267883,\n                                \"Y\": 0.3999471962451935\n                            }, {\n                                \"X\": 0.23939915001392365,\n                                \"Y\": 0.40686097741127014\n                            }, {\n                                \"X\": 0.1168149784207344,\n                                \"Y\": 0.40680962800979614\n                            }]\n                        },\n                        \"Confidence\": 60.149757385253906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$127,500.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0583544559776783,\n                                \"Height\": 0.006391097325831652,\n                                \"Left\": 0.42018625140190125,\n                                \"Top\": 0.3996027112007141\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4201884865760803,\n                                \"Y\": 0.3996027112007141\n                            }, {\n                                \"X\": 0.47854071855545044,\n                                \"Y\": 0.39962711930274963\n                            }, {\n                                \"X\": 0.4785386323928833,\n                                \"Y\": 0.40599381923675537\n                            }, {\n                                \"X\": 0.42018625140190125,\n                                \"Y\": 0.40596938133239746\n                            }]\n                        },\n                        \"Confidence\": 60.149757385253906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"M. Due to Seller at Closing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13506793975830078,\n                                \"Height\": 0.006929637864232063,\n                                \"Left\": 0.5213150978088379,\n                                \"Top\": 0.38880637288093567\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.521317183971405,\n                                \"Y\": 0.38880637288093567\n                            }, {\n                                \"X\": 0.6563830375671387,\n                                \"Y\": 0.3888627588748932\n                            }, {\n                                \"X\": 0.6563813090324402,\n                                \"Y\": 0.3957360088825226\n                            }, {\n                                \"X\": 0.5213150978088379,\n                                \"Y\": 0.3956795334815979\n                            }]\n                        },\n                        \"Confidence\": 46.700504302978516\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$127,500.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06383463740348816,\n                                \"Height\": 0.006841568276286125,\n                                \"Left\": 0.8204034566879272,\n                                \"Top\": 0.3880976736545563\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8204047083854675,\n                                \"Y\": 0.3880976736545563\n                            }, {\n                                \"X\": 0.8842381238937378,\n                                \"Y\": 0.3881243169307709\n                            }, {\n                                \"X\": 0.8842370510101318,\n                                \"Y\": 0.39493924379348755\n                            }, {\n                                \"X\": 0.8204034566879272,\n                                \"Y\": 0.3949125409126282\n                            }]\n                        },\n                        \"Confidence\": 46.700504302978516\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"N. Due from Seller at Closing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15345622599124908,\n                                \"Height\": 0.007267963141202927,\n                                \"Left\": 0.5226082801818848,\n                                \"Top\": 0.5659732222557068\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5226104855537415,\n                                \"Y\": 0.5659732222557068\n                            }, {\n                                \"X\": 0.6760644912719727,\n                                \"Y\": 0.5660392642021179\n                            }, {\n                                \"X\": 0.6760627031326294,\n                                \"Y\": 0.5732411742210388\n                            }, {\n                                \"X\": 0.5226082801818848,\n                                \"Y\": 0.5731750726699829\n                            }]\n                        },\n                        \"Confidence\": 44.78791427612305\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$8,817.03\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05043458938598633,\n                                \"Height\": 0.00695052370429039,\n                                \"Left\": 0.8336261510848999,\n                                \"Top\": 0.5663269758224487\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8336274027824402,\n                                \"Y\": 0.5663269758224487\n                            }, {\n                                \"X\": 0.8840607404708862,\n                                \"Y\": 0.566348671913147\n                            }, {\n                                \"X\": 0.8840596675872803,\n                                \"Y\": 0.573277473449707\n                            }, {\n                                \"X\": 0.8336261510848999,\n                                \"Y\": 0.5732557773590088\n                            }]\n                        },\n                        \"Confidence\": 44.78791427612305\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"03 Closing Costs Paid at Closing (J)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17426081001758575,\n                                \"Height\": 0.007155625615268946,\n                                \"Left\": 0.11579129844903946,\n                                \"Top\": 0.41906121373176575\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11579467356204987,\n                                \"Y\": 0.41906121373176575\n                            }, {\n                                \"X\": 0.2900520861148834,\n                                \"Y\": 0.41913434863090515\n                            }, {\n                                \"X\": 0.2900492250919342,\n                                \"Y\": 0.42621684074401855\n                            }, {\n                                \"X\": 0.11579129844903946,\n                                \"Y\": 0.426143616437912\n                            }]\n                        },\n                        \"Confidence\": 44.57967758178711\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$5,370.04\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04583606868982315,\n                                \"Height\": 0.0068036336451768875,\n                                \"Left\": 0.4314487874507904,\n                                \"Top\": 0.4188695549964905\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43145111203193665,\n                                \"Y\": 0.4188695549964905\n                            }, {\n                                \"X\": 0.47728484869003296,\n                                \"Y\": 0.41888877749443054\n                            }, {\n                                \"X\": 0.47728264331817627,\n                                \"Y\": 0.4256731867790222\n                            }, {\n                                \"X\": 0.4314487874507904,\n                                \"Y\": 0.4256539046764374\n                            }]\n                        },\n                        \"Confidence\": 44.57967758178711\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"01 Sale Price of Property\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12371155619621277,\n                                \"Height\": 0.006892639212310314,\n                                \"Left\": 0.5229800939559937,\n                                \"Top\": 0.399705171585083\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5229821801185608,\n                                \"Y\": 0.399705171585083\n                            }, {\n                                \"X\": 0.646691620349884,\n                                \"Y\": 0.39975690841674805\n                            }, {\n                                \"X\": 0.6466898918151855,\n                                \"Y\": 0.4065977931022644\n                            }, {\n                                \"X\": 0.5229800939559937,\n                                \"Y\": 0.4065459966659546\n                            }]\n                        },\n                        \"Confidence\": 42.765663146972656\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$127,500.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05805857107043266,\n                                \"Height\": 0.006419450975954533,\n                                \"Left\": 0.8261566758155823,\n                                \"Top\": 0.3988147974014282\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.826157808303833,\n                                \"Y\": 0.3988147974014282\n                            }, {\n                                \"X\": 0.884215235710144,\n                                \"Y\": 0.3988390862941742\n                            }, {\n                                \"X\": 0.8842142224311829,\n                                \"Y\": 0.4052342474460602\n                            }, {\n                                \"X\": 0.8261566758155823,\n                                \"Y\": 0.4052099287509918\n                            }]\n                        },\n                        \"Confidence\": 42.765663146972656\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"09 City/Town Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10354196280241013,\n                                \"Height\": 0.0068899765610694885,\n                                \"Left\": 0.5239695310592651,\n                                \"Top\": 0.4864847660064697\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5239716172218323,\n                                \"Y\": 0.4864847660064697\n                            }, {\n                                \"X\": 0.6275115013122559,\n                                \"Y\": 0.48652875423431396\n                            }, {\n                                \"X\": 0.6275097131729126,\n                                \"Y\": 0.493374764919281\n                            }, {\n                                \"X\": 0.5239695310592651,\n                                \"Y\": 0.4933307468891144\n                            }]\n                        },\n                        \"Confidence\": 39.84251022338867\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010987075045704842,\n                                \"Height\": 0.00471798051148653,\n                                \"Left\": 0.6843457221984863,\n                                \"Top\": 0.48720139265060425\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6843468546867371,\n                                \"Y\": 0.48720139265060425\n                            }, {\n                                \"X\": 0.6953327655792236,\n                                \"Y\": 0.4872060716152191\n                            }, {\n                                \"X\": 0.6953316926956177,\n                                \"Y\": 0.4919193685054779\n                            }, {\n                                \"X\": 0.6843457221984863,\n                                \"Y\": 0.4919147193431854\n                            }]\n                        },\n                        \"Confidence\": 39.84251022338867\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"03 Existing Loan(s) Assumed or Taken Subject to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2388913631439209,\n                                \"Height\": 0.007391872815787792,\n                                \"Left\": 0.11713831126689911,\n                                \"Top\": 0.5957384705543518\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11714178323745728,\n                                \"Y\": 0.5957384705543518\n                            }, {\n                                \"X\": 0.3560296595096588,\n                                \"Y\": 0.5958417654037476\n                            }, {\n                                \"X\": 0.35602691769599915,\n                                \"Y\": 0.6031303405761719\n                            }, {\n                                \"X\": 0.11713831126689911,\n                                \"Y\": 0.6030269265174866\n                            }]\n                        },\n                        \"Confidence\": 38.82234573364258\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Adjustments for Items Unpaid by Seller\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2049606442451477,\n                                \"Height\": 0.007730817887932062,\n                                \"Left\": 0.11680547147989273,\n                                \"Top\": 0.7012702822685242\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11680911481380463,\n                                \"Y\": 0.7012702822685242\n                            }, {\n                                \"X\": 0.32176610827445984,\n                                \"Y\": 0.7013604640960693\n                            }, {\n                                \"X\": 0.32176312804222107,\n                                \"Y\": 0.7090011239051819\n                            }, {\n                                \"X\": 0.11680547147989273,\n                                \"Y\": 0.7089108228683472\n                            }]\n                        },\n                        \"Confidence\": 37.32695770263672\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"12 City/Town Taxes to 13 County Taxes 07/01/18 to 10/31/18 $251.03 14 Assessments to 15 16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.35862210392951965,\n                                \"Height\": 0.045751944184303284,\n                                \"Left\": 0.11844995617866516,\n                                \"Top\": 0.7116302251815796\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1184716448187828,\n                                \"Y\": 0.7116302251815796\n                            }, {\n                                \"X\": 0.4770720601081848,\n                                \"Y\": 0.7117882966995239\n                            }, {\n                                \"X\": 0.47705718874931335,\n                                \"Y\": 0.7573822140693665\n                            }, {\n                                \"X\": 0.11844995617866516,\n                                \"Y\": 0.7572229504585266\n                            }]\n                        },\n                        \"Confidence\": 37.32695770263672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"City/Town Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08063336461782455,\n                                \"Height\": 0.006739529315382242,\n                                \"Left\": 0.14600054919719696,\n                                \"Top\": 0.48651620745658875\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14600364863872528,\n                                \"Y\": 0.48651620745658875\n                            }, {\n                                \"X\": 0.22663390636444092,\n                                \"Y\": 0.4865504503250122\n                            }, {\n                                \"X\": 0.2266310155391693,\n                                \"Y\": 0.49325573444366455\n                            }, {\n                                \"X\": 0.14600054919719696,\n                                \"Y\": 0.4932214617729187\n                            }]\n                        },\n                        \"Confidence\": 36.442481994628906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.013509213924407959,\n                                \"Height\": 0.0050254943780601025,\n                                \"Left\": 0.2760595679283142,\n                                \"Top\": 0.4869522154331207\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27606162428855896,\n                                \"Y\": 0.4869522154331207\n                            }, {\n                                \"X\": 0.28956878185272217,\n                                \"Y\": 0.48695793747901917\n                            }, {\n                                \"X\": 0.2895667254924774,\n                                \"Y\": 0.4919776916503906\n                            }, {\n                                \"X\": 0.2760595679283142,\n                                \"Y\": 0.4919719696044922\n                            }]\n                        },\n                        \"Confidence\": 36.442481994628906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"02 Closing Costs Paid at Closing (J)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17228122055530548,\n                                \"Height\": 0.007137659005820751,\n                                \"Left\": 0.524013876914978,\n                                \"Top\": 0.5863506197929382\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5240160226821899,\n                                \"Y\": 0.5863506197929382\n                            }, {\n                                \"X\": 0.6962950825691223,\n                                \"Y\": 0.5864250063896179\n                            }, {\n                                \"X\": 0.6962934732437134,\n                                \"Y\": 0.593488335609436\n                            }, {\n                                \"X\": 0.524013876914978,\n                                \"Y\": 0.5934138298034668\n                            }]\n                        },\n                        \"Confidence\": 35.2435417175293\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$8,155.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04601765796542168,\n                                \"Height\": 0.0066436175256967545,\n                                \"Left\": 0.8386271595954895,\n                                \"Top\": 0.5871884226799011\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8386282920837402,\n                                \"Y\": 0.5871884226799011\n                            }, {\n                                \"X\": 0.8846448063850403,\n                                \"Y\": 0.5872082710266113\n                            }, {\n                                \"X\": 0.8846437931060791,\n                                \"Y\": 0.5938320159912109\n                            }, {\n                                \"X\": 0.8386271595954895,\n                                \"Y\": 0.5938121676445007\n                            }]\n                        },\n                        \"Confidence\": 35.2435417175293\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"09 TITLE INSURANCE PREM. ADJUSTMENT\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20384187996387482,\n                                \"Height\": 0.00635386211797595,\n                                \"Left\": 0.5227563977241516,\n                                \"Top\": 0.6535854935646057\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5227583050727844,\n                                \"Y\": 0.6535854935646057\n                            }, {\n                                \"X\": 0.7265982627868652,\n                                \"Y\": 0.6536744832992554\n                            }, {\n                                \"X\": 0.7265968322753906,\n                                \"Y\": 0.6599393486976624\n                            }, {\n                                \"X\": 0.5227563977241516,\n                                \"Y\": 0.6598502397537231\n                            }]\n                        },\n                        \"Confidence\": 33.79356384277344\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$411.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03806368261575699,\n                                \"Height\": 0.006552933715283871,\n                                \"Left\": 0.8464168310165405,\n                                \"Top\": 0.654828667640686\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8464179635047913,\n                                \"Y\": 0.654828667640686\n                            }, {\n                                \"X\": 0.8844805359840393,\n                                \"Y\": 0.6548452973365784\n                            }, {\n                                \"X\": 0.8844795227050781,\n                                \"Y\": 0.6613816022872925\n                            }, {\n                                \"X\": 0.8464168310165405,\n                                \"Y\": 0.6613649725914001\n                            }]\n                        },\n                        \"Confidence\": 33.79356384277344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Assessments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06619793176651001,\n                                \"Height\": 0.005750032141804695,\n                                \"Left\": 0.5461593270301819,\n                                \"Top\": 0.5059909820556641\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5461609959602356,\n                                \"Y\": 0.5059909820556641\n                            }, {\n                                \"X\": 0.6123572587966919,\n                                \"Y\": 0.5060191750526428\n                            }, {\n                                \"X\": 0.6123557090759277,\n                                \"Y\": 0.511741042137146\n                            }, {\n                                \"X\": 0.5461593270301819,\n                                \"Y\": 0.5117127895355225\n                            }]\n                        },\n                        \"Confidence\": 33.10411071777344\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010660062544047832,\n                                \"Height\": 0.005129510071128607,\n                                \"Left\": 0.6850900053977966,\n                                \"Top\": 0.5067324638366699\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6850911974906921,\n                                \"Y\": 0.5067324638366699\n                            }, {\n                                \"X\": 0.6957500576972961,\n                                \"Y\": 0.5067369937896729\n                            }, {\n                                \"X\": 0.6957488656044006,\n                                \"Y\": 0.5118619203567505\n                            }, {\n                                \"X\": 0.6850900053977966,\n                                \"Y\": 0.5118573904037476\n                            }]\n                        },\n                        \"Confidence\": 33.10411071777344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Assessments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06549040973186493,\n                                \"Height\": 0.005673336796462536,\n                                \"Left\": 0.1462756097316742,\n                                \"Top\": 0.5058998465538025\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1462782323360443,\n                                \"Y\": 0.5058998465538025\n                            }, {\n                                \"X\": 0.21176601946353912,\n                                \"Y\": 0.5059277415275574\n                            }, {\n                                \"X\": 0.21176356077194214,\n                                \"Y\": 0.5115731358528137\n                            }, {\n                                \"X\": 0.1462756097316742,\n                                \"Y\": 0.5115452408790588\n                            }]\n                        },\n                        \"Confidence\": 32.747962951660156\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011827399954199791,\n                                \"Height\": 0.004894247278571129,\n                                \"Left\": 0.2774742841720581,\n                                \"Top\": 0.5066710710525513\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2774762809276581,\n                                \"Y\": 0.5066710710525513\n                            }, {\n                                \"X\": 0.28930169343948364,\n                                \"Y\": 0.5066760778427124\n                            }, {\n                                \"X\": 0.28929969668388367,\n                                \"Y\": 0.5115653276443481\n                            }, {\n                                \"X\": 0.2774742841720581,\n                                \"Y\": 0.5115602612495422\n                            }]\n                        },\n                        \"Confidence\": 32.747962951660156\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"09 County Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0930706113576889,\n                                \"Height\": 0.007240728009492159,\n                                \"Left\": 0.12026212364435196,\n                                \"Top\": 0.495853453874588\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12026554346084595,\n                                \"Y\": 0.495853453874588\n                            }, {\n                                \"X\": 0.21333272755146027,\n                                \"Y\": 0.49589303135871887\n                            }, {\n                                \"X\": 0.21332959830760956,\n                                \"Y\": 0.5030941963195801\n                            }, {\n                                \"X\": 0.12026212364435196,\n                                \"Y\": 0.5030545592308044\n                            }]\n                        },\n                        \"Confidence\": 32.72073745727539\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011742453090846539,\n                                \"Height\": 0.004900636151432991,\n                                \"Left\": 0.2775794565677643,\n                                \"Top\": 0.4966239631175995\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27758148312568665,\n                                \"Y\": 0.4966239631175995\n                            }, {\n                                \"X\": 0.2893219292163849,\n                                \"Y\": 0.49662894010543823\n                            }, {\n                                \"X\": 0.2893199324607849,\n                                \"Y\": 0.5015245676040649\n                            }, {\n                                \"X\": 0.2775794565677643,\n                                \"Y\": 0.5015195608139038\n                            }]\n                        },\n                        \"Confidence\": 32.72073745727539\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"10 County Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09007953107357025,\n                                \"Height\": 0.007087163161486387,\n                                \"Left\": 0.5237236618995667,\n                                \"Top\": 0.4960438311100006\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5237258076667786,\n                                \"Y\": 0.4960438311100006\n                            }, {\n                                \"X\": 0.6138031482696533,\n                                \"Y\": 0.4960821270942688\n                            }, {\n                                \"X\": 0.6138013005256653,\n                                \"Y\": 0.5031309723854065\n                            }, {\n                                \"X\": 0.5237236618995667,\n                                \"Y\": 0.5030926465988159\n                            }]\n                        },\n                        \"Confidence\": 31.612808227539062\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010592218488454819,\n                                \"Height\": 0.004861156921833754,\n                                \"Left\": 0.6847443580627441,\n                                \"Top\": 0.4967767298221588\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6847455501556396,\n                                \"Y\": 0.4967767298221588\n                            }, {\n                                \"X\": 0.6953365802764893,\n                                \"Y\": 0.49678122997283936\n                            }, {\n                                \"X\": 0.6953354477882385,\n                                \"Y\": 0.501637876033783\n                            }, {\n                                \"X\": 0.6847443580627441,\n                                \"Y\": 0.50163334608078\n                            }]\n                        },\n                        \"Confidence\": 31.612808227539062\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Assessments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0639365091919899,\n                                \"Height\": 0.0057211630046367645,\n                                \"Left\": 0.5554502010345459,\n                                \"Top\": 0.7308685779571533\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5554518699645996,\n                                \"Y\": 0.7308685779571533\n                            }, {\n                                \"X\": 0.6193867325782776,\n                                \"Y\": 0.7308968305587769\n                            }, {\n                                \"X\": 0.6193851828575134,\n                                \"Y\": 0.7365897297859192\n                            }, {\n                                \"X\": 0.5554502010345459,\n                                \"Y\": 0.7365614175796509\n                            }]\n                        },\n                        \"Confidence\": 30.339384078979492\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011089757084846497,\n                                \"Height\": 0.0046350350603461266,\n                                \"Left\": 0.6852250099182129,\n                                \"Top\": 0.731732964515686\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6852260828018188,\n                                \"Y\": 0.731732964515686\n                            }, {\n                                \"X\": 0.6963147521018982,\n                                \"Y\": 0.7317378520965576\n                            }, {\n                                \"X\": 0.6963136792182922,\n                                \"Y\": 0.7363680005073547\n                            }, {\n                                \"X\": 0.6852250099182129,\n                                \"Y\": 0.7363630533218384\n                            }]\n                        },\n                        \"Confidence\": 30.339384078979492\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"County Taxes 07/01/18 to 10/31/18\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18725956976413727,\n                                \"Height\": 0.006887717172503471,\n                                \"Left\": 0.5536990165710449,\n                                \"Top\": 0.7209962010383606\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5537010431289673,\n                                \"Y\": 0.7209962010383606\n                            }, {\n                                \"X\": 0.740958571434021,\n                                \"Y\": 0.7210788130760193\n                            }, {\n                                \"X\": 0.7409571409225464,\n                                \"Y\": 0.7278838753700256\n                            }, {\n                                \"X\": 0.5536990165710449,\n                                \"Y\": 0.7278011441230774\n                            }]\n                        },\n                        \"Confidence\": 27.003711700439453\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$251.03\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03932901471853256,\n                                \"Height\": 0.006357191596180201,\n                                \"Left\": 0.8460596799850464,\n                                \"Top\": 0.7214437127113342\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8460607528686523,\n                                \"Y\": 0.7214437127113342\n                            }, {\n                                \"X\": 0.8853887319564819,\n                                \"Y\": 0.7214611172676086\n                            }, {\n                                \"X\": 0.8853877186775208,\n                                \"Y\": 0.7278009057044983\n                            }, {\n                                \"X\": 0.8460596799850464,\n                                \"Y\": 0.7277835607528687\n                            }]\n                        },\n                        \"Confidence\": 27.003711700439453\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"04\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.013258262537419796,\n                                \"Height\": 0.005682171788066626,\n                                \"Left\": 0.11602243036031723,\n                                \"Top\": 0.4286435842514038\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11602514237165451,\n                                \"Y\": 0.4286435842514038\n                            }, {\n                                \"X\": 0.1292807012796402,\n                                \"Y\": 0.4286491572856903\n                            }, {\n                                \"X\": 0.1292780190706253,\n                                \"Y\": 0.4343257546424866\n                            }, {\n                                \"X\": 0.11602243036031723,\n                                \"Y\": 0.4343201816082001\n                            }]\n                        },\n                        \"Confidence\": 25.578489303588867\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"City/Town Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07953320443630219,\n                                \"Height\": 0.0068081519566476345,\n                                \"Left\": 0.5553135275840759,\n                                \"Top\": 0.7114171385765076\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5553154945373535,\n                                \"Y\": 0.7114171385765076\n                            }, {\n                                \"X\": 0.6348467469215393,\n                                \"Y\": 0.7114521861076355\n                            }, {\n                                \"X\": 0.634844958782196,\n                                \"Y\": 0.7182253003120422\n                            }, {\n                                \"X\": 0.5553135275840759,\n                                \"Y\": 0.7181901931762695\n                            }]\n                        },\n                        \"Confidence\": 25.10133934020996\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"to\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01901574805378914,\n                                \"Height\": 0.0050436886958777905,\n                                \"Left\": 0.6750063896179199,\n                                \"Top\": 0.7119764089584351\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6750076413154602,\n                                \"Y\": 0.7119764089584351\n                            }, {\n                                \"X\": 0.6940221190452576,\n                                \"Y\": 0.7119847536087036\n                            }, {\n                                \"X\": 0.6940209865570068,\n                                \"Y\": 0.7170200943946838\n                            }, {\n                                \"X\": 0.6750063896179199,\n                                \"Y\": 0.7170116901397705\n                            }]\n                        },\n                        \"Confidence\": 25.10133934020996\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Cash to Close\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0682840645313263,\n                                \"Height\": 0.005648078862577677,\n                                \"Left\": 0.11672619730234146,\n                                \"Top\": 0.33109456300735474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11672887206077576,\n                                \"Y\": 0.33109456300735474\n                            }, {\n                                \"X\": 0.18501025438308716,\n                                \"Y\": 0.3311227858066559\n                            }, {\n                                \"X\": 0.1850077360868454,\n                                \"Y\": 0.336742639541626\n                            }, {\n                                \"X\": 0.11672619730234146,\n                                \"Y\": 0.33671438694000244\n                            }]\n                        },\n                        \"Confidence\": 23.50194549560547\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$31,333.00 -$134.16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14462339878082275,\n                                \"Height\": 0.007026703096926212,\n                                \"Left\": 0.34414833784103394,\n                                \"Top\": 0.33083704113960266\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34415102005004883,\n                                \"Y\": 0.33083704113960266\n                            }, {\n                                \"X\": 0.4887717366218567,\n                                \"Y\": 0.3308968245983124\n                            }, {\n                                \"X\": 0.4887695014476776,\n                                \"Y\": 0.3378637433052063\n                            }, {\n                                \"X\": 0.34414833784103394,\n                                \"Y\": 0.3378038704395294\n                            }]\n                        },\n                        \"Confidence\": 23.50194549560547\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"04 Lender Credit/Tolerance Cure\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16119274497032166,\n                                \"Height\": 0.007324520964175463,\n                                \"Left\": 0.11420582979917526,\n                                \"Top\": 0.6055158376693726\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11420929431915283,\n                                \"Y\": 0.6055158376693726\n                            }, {\n                                \"X\": 0.2753985822200775,\n                                \"Y\": 0.6055856347084045\n                            }, {\n                                \"X\": 0.27539560198783875,\n                                \"Y\": 0.6128403544425964\n                            }, {\n                                \"X\": 0.11420582979917526,\n                                \"Y\": 0.6127704381942749\n                            }]\n                        },\n                        \"Confidence\": 23.262723922729492\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"02 Sale Price of Any Personal Property Included in Sale\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2685225307941437,\n                                \"Height\": 0.0073341685347259045,\n                                \"Left\": 0.5241928100585938,\n                                \"Top\": 0.4091936945915222\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5241950750350952,\n                                \"Y\": 0.4091936945915222\n                            }, {\n                                \"X\": 0.7927153706550598,\n                                \"Y\": 0.40930619835853577\n                            }, {\n                                \"X\": 0.79271399974823,\n                                \"Y\": 0.4165278673171997\n                            }, {\n                                \"X\": 0.5241928100585938,\n                                \"Y\": 0.4164152145385742\n                            }]\n                        },\n                        \"Confidence\": 22.771224975585938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"03 04 05 06 07\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.36652156710624695,\n                                \"Height\": 0.04970147833228111,\n                                \"Left\": 0.5190996527671814,\n                                \"Top\": 0.4202442169189453\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5191149115562439,\n                                \"Y\": 0.4202442169189453\n                            }, {\n                                \"X\": 0.885621190071106,\n                                \"Y\": 0.420398086309433\n                            }, {\n                                \"X\": 0.8856135010719299,\n                                \"Y\": 0.4699456989765167\n                            }, {\n                                \"X\": 0.5190996527671814,\n                                \"Y\": 0.469790518283844\n                            }]\n                        },\n                        \"Confidence\": 22.771224975585938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"11\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010691859759390354,\n                                \"Height\": 0.005918595008552074,\n                                \"Left\": 0.11742203682661057,\n                                \"Top\": 0.6918787956237793\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1174248531460762,\n                                \"Y\": 0.6918787956237793\n                            }, {\n                                \"X\": 0.12811389565467834,\n                                \"Y\": 0.6918835043907166\n                            }, {\n                                \"X\": 0.1281111091375351,\n                                \"Y\": 0.6977973580360413\n                            }, {\n                                \"X\": 0.11742203682661057,\n                                \"Y\": 0.697792649269104\n                            }]\n                        },\n                        \"Confidence\": 22.229021072387695\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Adjustments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06749556213617325,\n                                \"Height\": 0.007057707756757736,\n                                \"Left\": 0.11620292067527771,\n                                \"Top\": 0.43843770027160645\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11620626598596573,\n                                \"Y\": 0.43843770027160645\n                            }, {\n                                \"X\": 0.18369847536087036,\n                                \"Y\": 0.4384661316871643\n                            }, {\n                                \"X\": 0.18369533121585846,\n                                \"Y\": 0.4454954266548157\n                            }, {\n                                \"X\": 0.11620292067527771,\n                                \"Y\": 0.4454669654369354\n                            }]\n                        },\n                        \"Confidence\": 21.94240379333496\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"05 06 07\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3638409972190857,\n                                \"Height\": 0.024683838710188866,\n                                \"Left\": 0.11540485173463821,\n                                \"Top\": 0.4472002387046814\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11541654914617538,\n                                \"Y\": 0.4472002387046814\n                            }, {\n                                \"X\": 0.4792458415031433,\n                                \"Y\": 0.44735369086265564\n                            }, {\n                                \"X\": 0.4792378842830658,\n                                \"Y\": 0.4718840718269348\n                            }, {\n                                \"X\": 0.11540485173463821,\n                                \"Y\": 0.47172999382019043\n                            }]\n                        },\n                        \"Confidence\": 21.94240379333496\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"06\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01313869934529066,\n                                \"Height\": 0.005167919676750898,\n                                \"Left\": 0.11543364822864532,\n                                \"Top\": 0.6340876817703247\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11543610692024231,\n                                \"Y\": 0.6340876817703247\n                            }, {\n                                \"X\": 0.12857234477996826,\n                                \"Y\": 0.6340934038162231\n                            }, {\n                                \"X\": 0.12856991589069366,\n                                \"Y\": 0.6392555832862854\n                            }, {\n                                \"X\": 0.11543364822864532,\n                                \"Y\": 0.639249861240387\n                            }]\n                        },\n                        \"Confidence\": 20.932701110839844\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"02 Sale Price of Any Personal Property Included in Sale\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2680235207080841,\n                                \"Height\": 0.007611807901412249,\n                                \"Left\": 0.11845479160547256,\n                                \"Top\": 0.40897637605667114\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11845836043357849,\n                                \"Y\": 0.40897637605667114\n                            }, {\n                                \"X\": 0.3864783048629761,\n                                \"Y\": 0.409088671207428\n                            }, {\n                                \"X\": 0.3864755928516388,\n                                \"Y\": 0.4165881872177124\n                            }, {\n                                \"X\": 0.11845479160547256,\n                                \"Y\": 0.41647574305534363\n                            }]\n                        },\n                        \"Confidence\": 19.00313949584961\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"01 Excess Deposit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09080112725496292,\n                                \"Height\": 0.006798716261982918,\n                                \"Left\": 0.5237029194831848,\n                                \"Top\": 0.576440155506134\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.523705005645752,\n                                \"Y\": 0.576440155506134\n                            }, {\n                                \"X\": 0.6145040392875671,\n                                \"Y\": 0.5764793157577515\n                            }, {\n                                \"X\": 0.6145022511482239,\n                                \"Y\": 0.5832388997077942\n                            }, {\n                                \"X\": 0.5237029194831848,\n                                \"Y\": 0.583199679851532\n                            }]\n                        },\n                        \"Confidence\": 16.576122283935547\n                    },\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 4,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 59.242408752441406\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 89.07833099365234\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 5,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 55.343116760253906\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 99.9605941772461\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 6,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"PAYSLIPS\",\n                \"Confidence\": 99.79170227050781\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"PAY_PERIOD_START_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"02/09/2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05528669431805611,\n                                \"Height\": 0.00801795907318592,\n                                \"Left\": 0.7656132578849792,\n                                \"Top\": 0.16937163472175598\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7656150460243225,\n                                \"Y\": 0.16937163472175598\n                            }, {\n                                \"X\": 0.8208999037742615,\n                                \"Y\": 0.16938507556915283\n                            }, {\n                                \"X\": 0.8208982348442078,\n                                \"Y\": 0.17738959193229675\n                            }, {\n                                \"X\": 0.7656132578849792,\n                                \"Y\": 0.17737609148025513\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"PAY_PERIOD_END_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"02/15/2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05528790131211281,\n                                \"Height\": 0.008018054068088531,\n                                \"Left\": 0.8364472985267639,\n                                \"Top\": 0.16938886046409607\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8364489674568176,\n                                \"Y\": 0.16938886046409607\n                            }, {\n                                \"X\": 0.8917351961135864,\n                                \"Y\": 0.16940228641033173\n                            }, {\n                                \"X\": 0.8917335867881775,\n                                \"Y\": 0.177406907081604\n                            }, {\n                                \"X\": 0.8364472985267639,\n                                \"Y\": 0.17739339172840118\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"PAY_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"02/22/2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0552930049598217,\n                                \"Height\": 0.008024580776691437,\n                                \"Left\": 0.8151674866676331,\n                                \"Top\": 0.7064055800437927\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8151692152023315,\n                                \"Y\": 0.7064055800437927\n                            }, {\n                                \"X\": 0.8704605102539062,\n                                \"Y\": 0.7064239978790283\n                            }, {\n                                \"X\": 0.8704588413238525,\n                                \"Y\": 0.7144301533699036\n                            }, {\n                                \"X\": 0.8151674866676331,\n                                \"Y\": 0.7144116759300232\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Justin Hileman\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06952618807554245,\n                                \"Height\": 0.007353626657277346,\n                                \"Left\": 0.14286436140537262,\n                                \"Top\": 0.16922029852867126\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.142866849899292,\n                                \"Y\": 0.16922029852867126\n                            }, {\n                                \"X\": 0.21239055693149567,\n                                \"Y\": 0.1692371964454651\n                            }, {\n                                \"X\": 0.21238815784454346,\n                                \"Y\": 0.17657391726970673\n                            }, {\n                                \"X\": 0.14286436140537262,\n                                \"Y\": 0.17655694484710693\n                            }]\n                        },\n                        \"Confidence\": 100.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"COMPANY_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"LOCKHEED MARTIN Enterprise Business Services\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19954563677310944,\n                                \"Height\": 0.02806125022470951,\n                                \"Left\": 0.658947229385376,\n                                \"Top\": 0.09263897687196732\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6589540839195251,\n                                \"Y\": 0.09263897687196732\n                            }, {\n                                \"X\": 0.858492910861969,\n                                \"Y\": 0.09268490970134735\n                            }, {\n                                \"X\": 0.858487069606781,\n                                \"Y\": 0.12070022523403168\n                            }, {\n                                \"X\": 0.658947229385376,\n                                \"Y\": 0.12065336108207703\n                            }]\n                        },\n                        \"Confidence\": 27.000001907348633\n                    }]\n                }, {\n                    \"Type\": \"COMPANY_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Enterprise Business Services P.O. Box 33003 Lakeland, FL 33807-3003\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13432763516902924,\n                                \"Height\": 0.02871360443532467,\n                                \"Left\": 0.6602380275726318,\n                                \"Top\": 0.11198251694440842\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6602450609207153,\n                                \"Y\": 0.11198251694440842\n                            }, {\n                                \"X\": 0.7945656776428223,\n                                \"Y\": 0.11201386898756027\n                            }, {\n                                \"X\": 0.7945593595504761,\n                                \"Y\": 0.14069612324237823\n                            }, {\n                                \"X\": 0.6602380275726318,\n                                \"Y\": 0.14066411554813385\n                            }]\n                        },\n                        \"Confidence\": 57.0\n                    }]\n                }, {\n                    \"Type\": \"FEDERAL_FILING_STATUS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"STATE_FILING_STATUS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_GROSS_PAY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"2,903.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.042326342314481735,\n                                \"Height\": 0.008018667809665203,\n                                \"Left\": 0.261904776096344,\n                                \"Top\": 0.6228336691856384\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.26190733909606934,\n                                \"Y\": 0.6228336691856384\n                            }, {\n                                \"X\": 0.3042311370372772,\n                                \"Y\": 0.6228471398353577\n                            }, {\n                                \"X\": 0.30422866344451904,\n                                \"Y\": 0.6308523416519165\n                            }, {\n                                \"X\": 0.261904776096344,\n                                \"Y\": 0.6308387517929077\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"YTD_GROSS_PAY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"24,192.15\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04707706347107887,\n                                \"Height\": 0.008020341396331787,\n                                \"Left\": 0.25671765208244324,\n                                \"Top\": 0.6375080347061157\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2567201852798462,\n                                \"Y\": 0.6375080347061157\n                            }, {\n                                \"X\": 0.3037947118282318,\n                                \"Y\": 0.6375231742858887\n                            }, {\n                                \"X\": 0.30379223823547363,\n                                \"Y\": 0.6455283761024475\n                            }, {\n                                \"X\": 0.25671765208244324,\n                                \"Y\": 0.6455131769180298\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_NET_PAY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"1,421.93\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04147005453705788,\n                                \"Height\": 0.008352772332727909,\n                                \"Left\": 0.8583810925483704,\n                                \"Top\": 0.6226903200149536\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8583828210830688,\n                                \"Y\": 0.6226903200149536\n                            }, {\n                                \"X\": 0.8998511433601379,\n                                \"Y\": 0.6227035522460938\n                            }, {\n                                \"X\": 0.8998494744300842,\n                                \"Y\": 0.6310431361198425\n                            }, {\n                                \"X\": 0.8583810925483704,\n                                \"Y\": 0.6310298442840576\n                            }]\n                        },\n                        \"Confidence\": 96.0\n                    }]\n                }, {\n                    \"Type\": \"YTD_NET_PAY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"11,964.91\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.046653687953948975,\n                                \"Height\": 0.008354585617780685,\n                                \"Left\": 0.853194534778595,\n                                \"Top\": 0.6373661756515503\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8531962633132935,\n                                \"Y\": 0.6373661756515503\n                            }, {\n                                \"X\": 0.899848222732544,\n                                \"Y\": 0.6373811960220337\n                            }, {\n                                \"X\": 0.8998465538024902,\n                                \"Y\": 0.6457207798957825\n                            }, {\n                                \"X\": 0.853194534778595,\n                                \"Y\": 0.6457056999206543\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"REGULAR_HOURLY_RATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"72.575000\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05052968114614487,\n                                \"Height\": 0.00735001266002655,\n                                \"Left\": 0.35357919335365295,\n                                \"Top\": 0.23797239363193512\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35358139872550964,\n                                \"Y\": 0.23797239363193512\n                            }, {\n                                \"X\": 0.4041088819503784,\n                                \"Y\": 0.2379852533340454\n                            }, {\n                                \"X\": 0.4041067361831665,\n                                \"Y\": 0.24532240629196167\n                            }, {\n                                \"X\": 0.35357919335365295,\n                                \"Y\": 0.2453094869852066\n                            }]\n                        },\n                        \"Confidence\": 90.0\n                    }]\n                }, {\n                    \"Type\": \"HOLIDAY_HOURLY_RATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"YTD_CHILD_SUPPORT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"YTD_GARNISHMENTS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_CHILD_SUPPORT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_GARNISHMENTS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"WARNINGS_MESSAGES_NOTES\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"For questions or concerns, please contact the following: Lockheed Martin Employee Service Center (LMESC) at 1-866-562-2363. Overseas employees may call 201-242-4397. TDD services are available at 800-TDD-TDD4. Representatives will assist you 8am\",\n                        \"Confidence\": 65.0\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_REGULAR_PAY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"2,903.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04189377650618553,\n                                \"Height\": 0.008348439820110798,\n                                \"Left\": 0.4360644817352295,\n                                \"Top\": 0.23799338936805725\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4360668659210205,\n                                \"Y\": 0.23799338936805725\n                            }, {\n                                \"X\": 0.4779582619667053,\n                                \"Y\": 0.23800404369831085\n                            }, {\n                                \"X\": 0.4779559373855591,\n                                \"Y\": 0.24634182453155518\n                            }, {\n                                \"X\": 0.4360644817352295,\n                                \"Y\": 0.2463311105966568\n                            }]\n                        },\n                        \"Confidence\": 78.0\n                    }]\n                }, {\n                    \"Type\": \"YTD_REGULAR_PAY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"17,236.56\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04751063883304596,\n                                \"Height\": 0.008350120857357979,\n                                \"Left\": 0.6105441451072693,\n                                \"Top\": 0.23803779482841492\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6105462312698364,\n                                \"Y\": 0.23803779482841492\n                            }, {\n                                \"X\": 0.658054769039154,\n                                \"Y\": 0.23804989457130432\n                            }, {\n                                \"X\": 0.6580527424812317,\n                                \"Y\": 0.24638791382312775\n                            }, {\n                                \"X\": 0.6105441451072693,\n                                \"Y\": 0.24637575447559357\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 7,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"W_2\",\n                \"Confidence\": 99.90631866455078\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"FORM_YEAR\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06006704270839691,\n                                \"Height\": 0.01606421172618866,\n                                \"Left\": 0.26262491941452026,\n                                \"Top\": 0.1074867770075798\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.26262491941452026,\n                                \"Y\": 0.10753677040338516\n                            }, {\n                                \"X\": 0.32267463207244873,\n                                \"Y\": 0.1074867770075798\n                            }, {\n                                \"X\": 0.322691947221756,\n                                \"Y\": 0.12350112199783325\n                            }, {\n                                \"X\": 0.2626419961452484,\n                                \"Y\": 0.12355098873376846\n                            }]\n                        },\n                        \"Confidence\": 75.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYEE_SSN\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"333-22-4444\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0501214936375618,\n                                \"Height\": 0.0057127391919493675,\n                                \"Left\": 0.23905906081199646,\n                                \"Top\": 0.2910195291042328\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23905906081199646,\n                                \"Y\": 0.29106006026268005\n                            }, {\n                                \"X\": 0.28917446732521057,\n                                \"Y\": 0.2910195291042328\n                            }, {\n                                \"X\": 0.28918054699897766,\n                                \"Y\": 0.29669174551963806\n                            }, {\n                                \"X\": 0.23906508088111877,\n                                \"Y\": 0.29673224687576294\n                            }]\n                        },\n                        \"Confidence\": 94.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYER_EIN\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"A 392\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07820300757884979,\n                                \"Height\": 0.007404707837849855,\n                                \"Left\": 0.25877416133880615,\n                                \"Top\": 0.14250651001930237\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25877416133880615,\n                                \"Y\": 0.14257125556468964\n                            }, {\n                                \"X\": 0.33696919679641724,\n                                \"Y\": 0.14250651001930237\n                            }, {\n                                \"X\": 0.33697715401649475,\n                                \"Y\": 0.14984655380249023\n                            }, {\n                                \"X\": 0.25878196954727173,\n                                \"Y\": 0.14991122484207153\n                            }]\n                        },\n                        \"Confidence\": 55.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYER_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"John \\\"Gullibe\\\" Doe\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0838150903582573,\n                                \"Height\": 0.006741752382367849,\n                                \"Left\": 0.08599856495857239,\n                                \"Top\": 0.16766737401485443\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.08599856495857239,\n                                \"Y\": 0.1677365005016327\n                            }, {\n                                \"X\": 0.16980668902397156,\n                                \"Y\": 0.16766737401485443\n                            }, {\n                                \"X\": 0.16981364786624908,\n                                \"Y\": 0.17434006929397583\n                            }, {\n                                \"X\": 0.08600538223981857,\n                                \"Y\": 0.17440912127494812\n                            }]\n                        },\n                        \"Confidence\": 88.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYER_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"PO Box 65502 421 E Drachman Tuczon AZ 87705-7598\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09247486293315887,\n                                \"Height\": 0.025098739191889763,\n                                \"Left\": 0.08601900935173035,\n                                \"Top\": 0.18767842650413513\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.08601900935173035,\n                                \"Y\": 0.18775445222854614\n                            }, {\n                                \"X\": 0.17846772074699402,\n                                \"Y\": 0.18767842650413513\n                            }, {\n                                \"X\": 0.17849387228488922,\n                                \"Y\": 0.2127014547586441\n                            }, {\n                                \"X\": 0.08604457229375839,\n                                \"Y\": 0.21277716755867004\n                            }]\n                        },\n                        \"Confidence\": 62.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYEE_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Jenny Brown\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05487256497144699,\n                                \"Height\": 0.007384886033833027,\n                                \"Left\": 0.0860779657959938,\n                                \"Top\": 0.24542930722236633\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0860779657959938,\n                                \"Y\": 0.24547401070594788\n                            }, {\n                                \"X\": 0.14094293117523193,\n                                \"Y\": 0.24542930722236633\n                            }, {\n                                \"X\": 0.1409505307674408,\n                                \"Y\": 0.2527695298194885\n                            }, {\n                                \"X\": 0.08608546853065491,\n                                \"Y\": 0.2528142035007477\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYEE_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"100 Main street Po Box 1022 Seatle WA 98104\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07173962146043777,\n                                \"Height\": 0.025081926956772804,\n                                \"Left\": 0.08651985973119736,\n                                \"Top\": 0.25509101152420044\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.08651985973119736,\n                                \"Y\": 0.25514936447143555\n                            }, {\n                                \"X\": 0.15823346376419067,\n                                \"Y\": 0.25509101152420044\n                            }, {\n                                \"X\": 0.15825948119163513,\n                                \"Y\": 0.2801148295402527\n                            }, {\n                                \"X\": 0.0865454226732254,\n                                \"Y\": 0.2801729440689087\n                            }]\n                        },\n                        \"Confidence\": 84.0\n                    }]\n                }, {\n                    \"Type\": \"WAGES\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FEDERAL_INCOME_TAX_WITHHELD_AMOUNT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"12881.86\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04882777854800224,\n                                \"Height\": 0.007046323269605637,\n                                \"Left\": 0.2891945242881775,\n                                \"Top\": 0.3096652328968048\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2891945242881775,\n                                \"Y\": 0.30970460176467896\n                            }, {\n                                \"X\": 0.3380146920681,\n                                \"Y\": 0.3096652328968048\n                            }, {\n                                \"X\": 0.33802229166030884,\n                                \"Y\": 0.3166722059249878\n                            }, {\n                                \"X\": 0.2892020344734192,\n                                \"Y\": 0.31671154499053955\n                            }]\n                        },\n                        \"Confidence\": 52.0\n                    }]\n                }, {\n                    \"Type\": \"SOCIAL_SECURITY_WAGES_AMOUNT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"87712.95\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04839429259300232,\n                                \"Height\": 0.007379458751529455,\n                                \"Left\": 0.14707688987255096,\n                                \"Top\": 0.3281315565109253\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14707688987255096,\n                                \"Y\": 0.3281704783439636\n                            }, {\n                                \"X\": 0.19546347856521606,\n                                \"Y\": 0.3281315565109253\n                            }, {\n                                \"X\": 0.19547118246555328,\n                                \"Y\": 0.3354721665382385\n                            }, {\n                                \"X\": 0.14708450436592102,\n                                \"Y\": 0.3355110287666321\n                            }]\n                        },\n                        \"Confidence\": 58.999996185302734\n                    }]\n                }, {\n                    \"Type\": \"SOCIAL_SECURITY_TAXES_WITHHELD_AMOUNT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"5438.20\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04192494601011276,\n                                \"Height\": 0.00704086571931839,\n                                \"Left\": 0.8762206435203552,\n                                \"Top\": 0.5377888679504395\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8762206435203552,\n                                \"Y\": 0.5378214716911316\n                            }, {\n                                \"X\": 0.9181369543075562,\n                                \"Y\": 0.5377888679504395\n                            }, {\n                                \"X\": 0.9181455969810486,\n                                \"Y\": 0.5447972416877747\n                            }, {\n                                \"X\": 0.8762291669845581,\n                                \"Y\": 0.5448297262191772\n                            }]\n                        },\n                        \"Confidence\": 67.0\n                    }, {\n                        \"Text\": \"5438.20\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041915412992239,\n                                \"Height\": 0.007040719967335463,\n                                \"Left\": 0.2952630817890167,\n                                \"Top\": 0.32835128903388977\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2952630817890167,\n                                \"Y\": 0.32838499546051025\n                            }, {\n                                \"X\": 0.33717089891433716,\n                                \"Y\": 0.32835128903388977\n                            }, {\n                                \"X\": 0.337178498506546,\n                                \"Y\": 0.3353583514690399\n                            }, {\n                                \"X\": 0.2952706217765808,\n                                \"Y\": 0.3353919982910156\n                            }]\n                        },\n                        \"Confidence\": 67.0\n                    }, {\n                        \"Text\": \"5438.20\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04278213158249855,\n                                \"Height\": 0.007374715059995651,\n                                \"Left\": 0.2950558662414551,\n                                \"Top\": 0.53757244348526\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2950558662414551,\n                                \"Y\": 0.5376057028770447\n                            }, {\n                                \"X\": 0.3378300368785858,\n                                \"Y\": 0.53757244348526\n                            }, {\n                                \"X\": 0.33783799409866333,\n                                \"Y\": 0.5449139475822449\n                            }, {\n                                \"X\": 0.29506373405456543,\n                                \"Y\": 0.5449471473693848\n                            }]\n                        },\n                        \"Confidence\": 67.0\n                    }]\n                }, {\n                    \"Type\": \"MEDICARE_WAGES_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MEDICARE_TAX_WITHHELD_AMOUNT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"1271.84\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0414835587143898,\n                                \"Height\": 0.007040342316031456,\n                                \"Left\": 0.29571375250816345,\n                                \"Top\": 0.3457021415233612\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29571375250816345,\n                                \"Y\": 0.3457354009151459\n                            }, {\n                                \"X\": 0.3371897339820862,\n                                \"Y\": 0.3457021415233612\n                            }, {\n                                \"X\": 0.33719733357429504,\n                                \"Y\": 0.35270926356315613\n                            }, {\n                                \"X\": 0.29572129249572754,\n                                \"Y\": 0.3527424931526184\n                            }]\n                        },\n                        \"Confidence\": 36.0\n                    }, {\n                        \"Text\": \"1271.84\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04148577153682709,\n                                \"Height\": 0.007039973512291908,\n                                \"Left\": 0.29593899846076965,\n                                \"Top\": 0.5552592277526855\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29593899846076965,\n                                \"Y\": 0.5552913546562195\n                            }, {\n                                \"X\": 0.3374171555042267,\n                                \"Y\": 0.5552592277526855\n                            }, {\n                                \"X\": 0.33742475509643555,\n                                \"Y\": 0.5622670650482178\n                            }, {\n                                \"X\": 0.29594650864601135,\n                                \"Y\": 0.5622991919517517\n                            }]\n                        },\n                        \"Confidence\": 36.0\n                    }, {\n                        \"Text\": \"1271.84\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041489385068416595,\n                                \"Height\": 0.0070402370765805244,\n                                \"Left\": 0.5862954258918762,\n                                \"Top\": 0.5550341606140137\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5862954258918762,\n                                \"Y\": 0.5550663471221924\n                            }, {\n                                \"X\": 0.6277766823768616,\n                                \"Y\": 0.5550341606140137\n                            }, {\n                                \"X\": 0.6277848482131958,\n                                \"Y\": 0.5620422959327698\n                            }, {\n                                \"X\": 0.5863034725189209,\n                                \"Y\": 0.5620744228363037\n                            }]\n                        },\n                        \"Confidence\": 36.0\n                    }]\n                }, {\n                    \"Type\": \"SOCIAL_SECURITY_TIP_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ALLOCATED_TIPS_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"DEPENDENT_CARE_BENEFITS_AMOUNT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"3400.02\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041919395327568054,\n                                \"Height\": 0.007040040567517281,\n                                \"Left\": 0.2952326536178589,\n                                \"Top\": 0.7020962238311768\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2952326536178589,\n                                \"Y\": 0.7021279335021973\n                            }, {\n                                \"X\": 0.3371444344520569,\n                                \"Y\": 0.7020962238311768\n                            }, {\n                                \"X\": 0.33715203404426575,\n                                \"Y\": 0.7091046571731567\n                            }, {\n                                \"X\": 0.2952401638031006,\n                                \"Y\": 0.7091363072395325\n                            }]\n                        },\n                        \"Confidence\": 58.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYER_STATE_ID_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"STATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"WA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01988043449819088,\n                                \"Height\": 0.007022928912192583,\n                                \"Left\": 0.07851041853427887,\n                                \"Top\": 0.4499988853931427\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.07851041853427887,\n                                \"Y\": 0.45001456141471863\n                            }, {\n                                \"X\": 0.09838367253541946,\n                                \"Y\": 0.4499988853931427\n                            }, {\n                                \"X\": 0.0983908474445343,\n                                \"Y\": 0.45700615644454956\n                            }, {\n                                \"X\": 0.07851756364107132,\n                                \"Y\": 0.4570218026638031\n                            }]\n                        },\n                        \"Confidence\": 83.0\n                    }]\n                }, {\n                    \"Type\": \"BENEFIT_STATE_WAGES_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"STATE_INCOME_TAX_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"LOCAL_WAGES_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"LOCAL_INCOME_TAX_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"LOCALITY_NAME\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"STATUTORY_EMPLOYEE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"RETIREMENT_PLAN\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"THIRD_PARTY_SICK_PAY\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 8,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 57.73989486694336\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 9,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1003\",\n                \"Confidence\": 100.0\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 99.99993896484375\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"CURRENT_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_STREET\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_CITY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_RENT_AMOUNT_PER_MONTH\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_OWN_HOUSING\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Yes\",\n                        \"Confidence\": 95.0\n                    }]\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_NO_PRIMARY_HOUSING_EXPENSE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Yes\",\n                        \"Confidence\": 96.0\n                    }]\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_EMPLOYER_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_EMPLOYER_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_RENT_PER_MONTH\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_OWN_HOUSING\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_LENGTH_YEARS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_LENGTH_MONTHS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_LENGTH_MONTHS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_LENGTH_YEARS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_STREET\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_CITY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_NO_PRIMARY_HOUSING_EXPENSE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Confidence\": 71.0\n                    }]\n                }, {\n                    \"Type\": \"EMPLOYMENT_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Mailing Address, if different from Present Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.26963528990745544,\n                                \"Height\": 0.007258335128426552,\n                                \"Left\": 0.502972424030304,\n                                \"Top\": 0.5583654046058655\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.502972424030304,\n                                \"Y\": 0.5583654046058655\n                            }, {\n                                \"X\": 0.7726067304611206,\n                                \"Y\": 0.5584848523139954\n                            }, {\n                                \"X\": 0.772607684135437,\n                                \"Y\": 0.5656237602233887\n                            }, {\n                                \"X\": 0.5029724836349487,\n                                \"Y\": 0.5655040740966797\n                            }]\n                        },\n                        \"Confidence\": 93.33313751220703\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Secondary Residence\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05535250902175903,\n                                \"Height\": 0.012261029332876205,\n                                \"Left\": 0.78842693567276,\n                                \"Top\": 0.2804499566555023\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.78842693567276,\n                                \"Y\": 0.2804499566555023\n                            }, {\n                                \"X\": 0.8437773585319519,\n                                \"Y\": 0.28047239780426025\n                            }, {\n                                \"X\": 0.843779444694519,\n                                \"Y\": 0.2927109897136688\n                            }, {\n                                \"X\": 0.7884286642074585,\n                                \"Y\": 0.29268842935562134\n                            }]\n                        },\n                        \"Confidence\": 93.09246063232422\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026492081582546234,\n                                \"Height\": 0.011897793971002102,\n                                \"Left\": 0.7576806545257568,\n                                \"Top\": 0.2810150980949402\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7576806545257568,\n                                \"Y\": 0.2810150980949402\n                            }, {\n                                \"X\": 0.7841711044311523,\n                                \"Y\": 0.28102585673332214\n                            }, {\n                                \"X\": 0.784172773361206,\n                                \"Y\": 0.29291290044784546\n                            }, {\n                                \"X\": 0.757682204246521,\n                                \"Y\": 0.2929020822048187\n                            }]\n                        },\n                        \"Confidence\": 99.95378112792969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Construction\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06648563593626022,\n                                \"Height\": 0.005593614652752876,\n                                \"Left\": 0.2830248177051544,\n                                \"Top\": 0.2751660943031311\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2830252945423126,\n                                \"Y\": 0.2751660943031311\n                            }, {\n                                \"X\": 0.34951046109199524,\n                                \"Y\": 0.2751930356025696\n                            }, {\n                                \"X\": 0.34951016306877136,\n                                \"Y\": 0.28075969219207764\n                            }, {\n                                \"X\": 0.2830248177051544,\n                                \"Y\": 0.2807327210903168\n                            }]\n                        },\n                        \"Confidence\": 92.38253784179688\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026252685114741325,\n                                \"Height\": 0.010917977429926395,\n                                \"Left\": 0.2523733973503113,\n                                \"Top\": 0.26995649933815\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25237444043159485,\n                                \"Y\": 0.26995649933815\n                            }, {\n                                \"X\": 0.27862608432769775,\n                                \"Y\": 0.26996710896492004\n                            }, {\n                                \"X\": 0.27862516045570374,\n                                \"Y\": 0.28087449073791504\n                            }, {\n                                \"X\": 0.2523733973503113,\n                                \"Y\": 0.28086382150650024\n                            }]\n                        },\n                        \"Confidence\": 99.9346694946289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Agency Case Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1164064109325409,\n                                \"Height\": 0.0073281279765069485,\n                                \"Left\": 0.5815116763114929,\n                                \"Top\": 0.16402925550937653\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5815116763114929,\n                                \"Y\": 0.16402925550937653\n                            }, {\n                                \"X\": 0.6979173421859741,\n                                \"Y\": 0.16407467424869537\n                            }, {\n                                \"X\": 0.6979181170463562,\n                                \"Y\": 0.17135737836360931\n                            }, {\n                                \"X\": 0.5815120935440063,\n                                \"Y\": 0.17131184041500092\n                            }]\n                        },\n                        \"Confidence\": 92.31819152832031\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Unmarried (include single, divorced, widowed)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12058884650468826,\n                                \"Height\": 0.01349281519651413,\n                                \"Left\": 0.6225384473800659,\n                                \"Top\": 0.4862229526042938\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6225384473800659,\n                                \"Y\": 0.4862229526042938\n                            }, {\n                                \"X\": 0.7431256175041199,\n                                \"Y\": 0.48627522587776184\n                            }, {\n                                \"X\": 0.7431272864341736,\n                                \"Y\": 0.49971577525138855\n                            }, {\n                                \"X\": 0.6225393414497375,\n                                \"Y\": 0.4996633231639862\n                            }]\n                        },\n                        \"Confidence\": 92.17372131347656\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02602982707321644,\n                                \"Height\": 0.00987076386809349,\n                                \"Left\": 0.5930790305137634,\n                                \"Top\": 0.48504146933555603\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5930790305137634,\n                                \"Y\": 0.48504146933555603\n                            }, {\n                                \"X\": 0.6191082000732422,\n                                \"Y\": 0.4850527346134186\n                            }, {\n                                \"X\": 0.6191088557243347,\n                                \"Y\": 0.49491220712661743\n                            }, {\n                                \"X\": 0.5930795669555664,\n                                \"Y\": 0.4949009120464325\n                            }]\n                        },\n                        \"Confidence\": 99.92535400390625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"to be made\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06003612279891968,\n                                \"Height\": 0.005746551789343357,\n                                \"Left\": 0.882910966873169,\n                                \"Top\": 0.3468744456768036\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.882910966873169,\n                                \"Y\": 0.3468744456768036\n                            }, {\n                                \"X\": 0.9429458379745483,\n                                \"Y\": 0.3468993306159973\n                            }, {\n                                \"X\": 0.9429470896720886,\n                                \"Y\": 0.3526209890842438\n                            }, {\n                                \"X\": 0.8829119801521301,\n                                \"Y\": 0.35259607434272766\n                            }]\n                        },\n                        \"Confidence\": 92.09065246582031\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02588345669209957,\n                                \"Height\": 0.011542723514139652,\n                                \"Left\": 0.8525944352149963,\n                                \"Top\": 0.3408583700656891\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8525944352149963,\n                                \"Y\": 0.3408583700656891\n                            }, {\n                                \"X\": 0.8784757852554321,\n                                \"Y\": 0.34086906909942627\n                            }, {\n                                \"X\": 0.878477931022644,\n                                \"Y\": 0.35240110754966736\n                            }, {\n                                \"X\": 0.8525964617729187,\n                                \"Y\": 0.3523903489112854\n                            }]\n                        },\n                        \"Confidence\": 99.88232421875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Subject Property Address (street, city, state & ZIP)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.25433236360549927,\n                                \"Height\": 0.007177620194852352,\n                                \"Left\": 0.046005427837371826,\n                                \"Top\": 0.22703027725219727\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04600675776600838,\n                                \"Y\": 0.22703027725219727\n                            }, {\n                                \"X\": 0.3003377914428711,\n                                \"Y\": 0.2271316796541214\n                            }, {\n                                \"X\": 0.3003372550010681,\n                                \"Y\": 0.2342078983783722\n                            }, {\n                                \"X\": 0.046005427837371826,\n                                \"Y\": 0.23410625755786896\n                            }]\n                        },\n                        \"Confidence\": 91.9190673828125\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"36728 MORAVIAN DRIVE, CLINTON TOWNSHIP, MI 48035-1206\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3887067139148712,\n                                \"Height\": 0.0082645732909441,\n                                \"Left\": 0.04666537418961525,\n                                \"Top\": 0.23694513738155365\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04666689783334732,\n                                \"Y\": 0.23694513738155365\n                            }, {\n                                \"X\": 0.43537208437919617,\n                                \"Y\": 0.23710063099861145\n                            }, {\n                                \"X\": 0.435371994972229,\n                                \"Y\": 0.2452097237110138\n                            }, {\n                                \"X\": 0.04666537418961525,\n                                \"Y\": 0.24505381286144257\n                            }]\n                        },\n                        \"Confidence\": 91.9190673828125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Investment\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05827013775706291,\n                                \"Height\": 0.006009503733366728,\n                                \"Left\": 0.883151650428772,\n                                \"Top\": 0.28739437460899353\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.883151650428772,\n                                \"Y\": 0.28739437460899353\n                            }, {\n                                \"X\": 0.9414204955101013,\n                                \"Y\": 0.28741806745529175\n                            }, {\n                                \"X\": 0.9414217472076416,\n                                \"Y\": 0.29340386390686035\n                            }, {\n                                \"X\": 0.8831527233123779,\n                                \"Y\": 0.29338011145591736\n                            }]\n                        },\n                        \"Confidence\": 91.83480072021484\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02558959275484085,\n                                \"Height\": 0.012025931850075722,\n                                \"Left\": 0.8530181050300598,\n                                \"Top\": 0.28090500831604004\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8530181050300598,\n                                \"Y\": 0.28090500831604004\n                            }, {\n                                \"X\": 0.8786054849624634,\n                                \"Y\": 0.28091540932655334\n                            }, {\n                                \"X\": 0.8786076903343201,\n                                \"Y\": 0.2929309606552124\n                            }, {\n                                \"X\": 0.853020191192627,\n                                \"Y\": 0.2929205298423767\n                            }]\n                        },\n                        \"Confidence\": 99.95539855957031\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Conventional\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06885270774364471,\n                                \"Height\": 0.0059795081615448,\n                                \"Left\": 0.2235601246356964,\n                                \"Top\": 0.1679270714521408\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22356078028678894,\n                                \"Y\": 0.1679270714521408\n                            }, {\n                                \"X\": 0.2924128472805023,\n                                \"Y\": 0.1679539680480957\n                            }, {\n                                \"X\": 0.2924123704433441,\n                                \"Y\": 0.1739065796136856\n                            }, {\n                                \"X\": 0.2235601246356964,\n                                \"Y\": 0.17387960851192474\n                            }]\n                        },\n                        \"Confidence\": 91.36021423339844\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024991631507873535,\n                                \"Height\": 0.011635681614279747,\n                                \"Left\": 0.19364047050476074,\n                                \"Top\": 0.162504181265831\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19364190101623535,\n                                \"Y\": 0.162504181265831\n                            }, {\n                                \"X\": 0.21863210201263428,\n                                \"Y\": 0.16251392662525177\n                            }, {\n                                \"X\": 0.2186308056116104,\n                                \"Y\": 0.1741398572921753\n                            }, {\n                                \"X\": 0.19364047050476074,\n                                \"Y\": 0.17413008213043213\n                            }]\n                        },\n                        \"Confidence\": 99.87266540527344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Lender Case Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11132584512233734,\n                                \"Height\": 0.006160880904644728,\n                                \"Left\": 0.7694928050041199,\n                                \"Top\": 0.16386589407920837\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7694928050041199,\n                                \"Y\": 0.16386589407920837\n                            }, {\n                                \"X\": 0.8808174729347229,\n                                \"Y\": 0.16390933096408844\n                            }, {\n                                \"X\": 0.8808186054229736,\n                                \"Y\": 0.1700267791748047\n                            }, {\n                                \"X\": 0.769493579864502,\n                                \"Y\": 0.16998323798179626\n                            }]\n                        },\n                        \"Confidence\": 91.2765884399414\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0384811675\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07406461238861084,\n                                \"Height\": 0.00663998257368803,\n                                \"Left\": 0.7688131332397461,\n                                \"Top\": 0.17791220545768738\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7688131332397461,\n                                \"Y\": 0.17791220545768738\n                            }, {\n                                \"X\": 0.842876672744751,\n                                \"Y\": 0.1779412478208542\n                            }, {\n                                \"X\": 0.8428777456283569,\n                                \"Y\": 0.18455219268798828\n                            }, {\n                                \"X\": 0.7688140273094177,\n                                \"Y\": 0.1845230907201767\n                            }]\n                        },\n                        \"Confidence\": 91.2765884399414\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"made\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02848038636147976,\n                                \"Height\": 0.005801010876893997,\n                                \"Left\": 0.8009932041168213,\n                                \"Top\": 0.3466520309448242\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8009932041168213,\n                                \"Y\": 0.3466520309448242\n                            }, {\n                                \"X\": 0.8294726610183716,\n                                \"Y\": 0.34666386246681213\n                            }, {\n                                \"X\": 0.8294735550880432,\n                                \"Y\": 0.3524530529975891\n                            }, {\n                                \"X\": 0.8009940385818481,\n                                \"Y\": 0.3524412214756012\n                            }]\n                        },\n                        \"Confidence\": 90.9840316772461\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026449816301465034,\n                                \"Height\": 0.011742303147912025,\n                                \"Left\": 0.7694799900054932,\n                                \"Top\": 0.34064674377441406\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7694799900054932,\n                                \"Y\": 0.34064674377441406\n                            }, {\n                                \"X\": 0.7959280610084534,\n                                \"Y\": 0.34065768122673035\n                            }, {\n                                \"X\": 0.7959297895431519,\n                                \"Y\": 0.35238903760910034\n                            }, {\n                                \"X\": 0.7694815397262573,\n                                \"Y\": 0.3523780405521393\n                            }]\n                        },\n                        \"Confidence\": 99.89088439941406\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"VA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01764465495944023,\n                                \"Height\": 0.005542018450796604,\n                                \"Left\": 0.16411259770393372,\n                                \"Top\": 0.16757231950759888\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1641133427619934,\n                                \"Y\": 0.16757231950759888\n                            }, {\n                                \"X\": 0.18175725638866425,\n                                \"Y\": 0.16757921874523163\n                            }, {\n                                \"X\": 0.18175654113292694,\n                                \"Y\": 0.1731143444776535\n                            }, {\n                                \"X\": 0.16411259770393372,\n                                \"Y\": 0.17310743033885956\n                            }]\n                        },\n                        \"Confidence\": 90.8915023803711\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025669826194643974,\n                                \"Height\": 0.011345088481903076,\n                                \"Left\": 0.13480979204177856,\n                                \"Top\": 0.16225112974643707\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.13481147587299347,\n                                \"Y\": 0.16225112974643707\n                            }, {\n                                \"X\": 0.1604796200990677,\n                                \"Y\": 0.16226114332675934\n                            }, {\n                                \"X\": 0.16047807037830353,\n                                \"Y\": 0.17359621822834015\n                            }, {\n                                \"X\": 0.13480979204177856,\n                                \"Y\": 0.1735861599445343\n                            }]\n                        },\n                        \"Confidence\": 99.96105194091797\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Original Cost\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06848718971014023,\n                                \"Height\": 0.007054001092910767,\n                                \"Left\": 0.10539081692695618,\n                                \"Top\": 0.340442419052124\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10539194941520691,\n                                \"Y\": 0.340442419052124\n                            }, {\n                                \"X\": 0.1738779991865158,\n                                \"Y\": 0.3404707610607147\n                            }, {\n                                \"X\": 0.17387709021568298,\n                                \"Y\": 0.3474964201450348\n                            }, {\n                                \"X\": 0.10539081692695618,\n                                \"Y\": 0.3474680185317993\n                            }]\n                        },\n                        \"Confidence\": 90.80205535888672\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 312,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07592734694480896,\n                                \"Height\": 0.007587555330246687,\n                                \"Left\": 0.10648298263549805,\n                                \"Top\": 0.36832311749458313\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10648419708013535,\n                                \"Y\": 0.36832311749458313\n                            }, {\n                                \"X\": 0.182410329580307,\n                                \"Y\": 0.36835482716560364\n                            }, {\n                                \"X\": 0.1824093610048294,\n                                \"Y\": 0.3759106993675232\n                            }, {\n                                \"X\": 0.10648298263549805,\n                                \"Y\": 0.3758789002895355\n                            }]\n                        },\n                        \"Confidence\": 90.80205535888672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Purchase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.046486660838127136,\n                                \"Height\": 0.0055876183323562145,\n                                \"Left\": 0.17728713154792786,\n                                \"Top\": 0.27520430088043213\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17728784680366516,\n                                \"Y\": 0.27520430088043213\n                            }, {\n                                \"X\": 0.223773792386055,\n                                \"Y\": 0.27522313594818115\n                            }, {\n                                \"X\": 0.22377318143844604,\n                                \"Y\": 0.2807919383049011\n                            }, {\n                                \"X\": 0.17728713154792786,\n                                \"Y\": 0.2807730734348297\n                            }]\n                        },\n                        \"Confidence\": 90.77962493896484\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02640739642083645,\n                                \"Height\": 0.01098695583641529,\n                                \"Left\": 0.14638715982437134,\n                                \"Top\": 0.2701331675052643\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1463887244462967,\n                                \"Y\": 0.2701331675052643\n                            }, {\n                                \"X\": 0.17279455065727234,\n                                \"Y\": 0.2701438367366791\n                            }, {\n                                \"X\": 0.17279310524463654,\n                                \"Y\": 0.2811201214790344\n                            }, {\n                                \"X\": 0.14638715982437134,\n                                \"Y\": 0.28110939264297485\n                            }]\n                        },\n                        \"Confidence\": 99.88910675048828\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total (a b)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06959619373083115,\n                                \"Height\": 0.00676692882552743,\n                                \"Left\": 0.776529848575592,\n                                \"Top\": 0.3045708239078522\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.776529848575592,\n                                \"Y\": 0.3045708239078522\n                            }, {\n                                \"X\": 0.8461249470710754,\n                                \"Y\": 0.3045992851257324\n                            }, {\n                                \"X\": 0.8461260795593262,\n                                \"Y\": 0.31133773922920227\n                            }, {\n                                \"X\": 0.7765308022499084,\n                                \"Y\": 0.31130921840667725\n                            }]\n                        },\n                        \"Confidence\": 90.73052215576172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1734628528356552,\n                                \"Height\": 0.008461399003863335,\n                                \"Left\": 0.7782423496246338,\n                                \"Top\": 0.3199595510959625\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7782423496246338,\n                                \"Y\": 0.3199595510959625\n                            }, {\n                                \"X\": 0.9517033696174622,\n                                \"Y\": 0.3200308680534363\n                            }, {\n                                \"X\": 0.9517052173614502,\n                                \"Y\": 0.3284209668636322\n                            }, {\n                                \"X\": 0.7782435417175293,\n                                \"Y\": 0.3283494710922241\n                            }]\n                        },\n                        \"Confidence\": 90.73052215576172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No. of Units\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0639190524816513,\n                                \"Height\": 0.005913374479860067,\n                                \"Left\": 0.8829960823059082,\n                                \"Top\": 0.2269112914800644\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8829960823059082,\n                                \"Y\": 0.2269112914800644\n                            }, {\n                                \"X\": 0.9469138979911804,\n                                \"Y\": 0.22693677246570587\n                            }, {\n                                \"X\": 0.9469151496887207,\n                                \"Y\": 0.2328246682882309\n                            }, {\n                                \"X\": 0.8829972147941589,\n                                \"Y\": 0.23279912769794464\n                            }]\n                        },\n                        \"Confidence\": 90.65383911132812\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.006893967278301716,\n                                \"Height\": 0.006155222654342651,\n                                \"Left\": 0.8823692798614502,\n                                \"Top\": 0.23740254342556\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8823692798614502,\n                                \"Y\": 0.23740254342556\n                            }, {\n                                \"X\": 0.8892621397972107,\n                                \"Y\": 0.23740530014038086\n                            }, {\n                                \"X\": 0.8892632722854614,\n                                \"Y\": 0.24355776607990265\n                            }, {\n                                \"X\": 0.8823704719543457,\n                                \"Y\": 0.2435549944639206\n                            }]\n                        },\n                        \"Confidence\": 90.65383911132812\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Interest Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06820369511842728,\n                                \"Height\": 0.005697690881788731,\n                                \"Left\": 0.2287970930337906,\n                                \"Top\": 0.18965846300125122\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22879768908023834,\n                                \"Y\": 0.18965846300125122\n                            }, {\n                                \"X\": 0.29700079560279846,\n                                \"Y\": 0.18968531489372253\n                            }, {\n                                \"X\": 0.29700034856796265,\n                                \"Y\": 0.19535616040229797\n                            }, {\n                                \"X\": 0.2287970930337906,\n                                \"Y\": 0.19532924890518188\n                            }]\n                        },\n                        \"Confidence\": 90.3841323852539\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"3.500 %\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1005617305636406,\n                                \"Height\": 0.008210030384361744,\n                                \"Left\": 0.2295091450214386,\n                                \"Top\": 0.20126472413539886\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22951000928878784,\n                                \"Y\": 0.20126472413539886\n                            }, {\n                                \"X\": 0.3300708830356598,\n                                \"Y\": 0.20130446553230286\n                            }, {\n                                \"X\": 0.3300703763961792,\n                                \"Y\": 0.20947474241256714\n                            }, {\n                                \"X\": 0.2295091450214386,\n                                \"Y\": 0.2094348967075348\n                            }]\n                        },\n                        \"Confidence\": 90.3841323852539\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(b) Cost of Improvements\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13566003739833832,\n                                \"Height\": 0.007398759946227074,\n                                \"Left\": 0.612503707408905,\n                                \"Top\": 0.30462896823883057\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.612503707408905,\n                                \"Y\": 0.30462896823883057\n                            }, {\n                                \"X\": 0.7481628060340881,\n                                \"Y\": 0.30468446016311646\n                            }, {\n                                \"X\": 0.7481637001037598,\n                                \"Y\": 0.3120277225971222\n                            }, {\n                                \"X\": 0.6125041842460632,\n                                \"Y\": 0.31197211146354675\n                            }]\n                        },\n                        \"Confidence\": 90.12570190429688\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15536586940288544,\n                                \"Height\": 0.00794191937893629,\n                                \"Left\": 0.6124832034111023,\n                                \"Top\": 0.32041168212890625\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6124832034111023,\n                                \"Y\": 0.32041168212890625\n                            }, {\n                                \"X\": 0.767848014831543,\n                                \"Y\": 0.3204755485057831\n                            }, {\n                                \"X\": 0.7678490877151489,\n                                \"Y\": 0.3283535838127136\n                            }, {\n                                \"X\": 0.6124837398529053,\n                                \"Y\": 0.32828953862190247\n                            }]\n                        },\n                        \"Confidence\": 90.12570190429688\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Original Cost\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06854448467493057,\n                                \"Height\": 0.007238655351102352,\n                                \"Left\": 0.10497075319290161,\n                                \"Top\": 0.304697185754776\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10497192293405533,\n                                \"Y\": 0.304697185754776\n                            }, {\n                                \"X\": 0.17351524531841278,\n                                \"Y\": 0.3047252297401428\n                            }, {\n                                \"X\": 0.17351429164409637,\n                                \"Y\": 0.3119358420372009\n                            }, {\n                                \"X\": 0.10497075319290161,\n                                \"Y\": 0.31190773844718933\n                            }]\n                        },\n                        \"Confidence\": 89.8940200805664\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17867790162563324,\n                                \"Height\": 0.008139463141560555,\n                                \"Left\": 0.10622378438711166,\n                                \"Top\": 0.3202918469905853\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10622508823871613,\n                                \"Y\": 0.3202918469905853\n                            }, {\n                                \"X\": 0.2849016785621643,\n                                \"Y\": 0.320365309715271\n                            }, {\n                                \"X\": 0.2849010229110718,\n                                \"Y\": 0.32843130826950073\n                            }, {\n                                \"X\": 0.10622378438711166,\n                                \"Y\": 0.32835766673088074\n                            }]\n                        },\n                        \"Confidence\": 89.8940200805664\n                    }]\n                }, {\n                    \"Type\": \"MARITAL_STATUS_SEPARATED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Separated\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0456400141119957,\n                                \"Height\": 0.00617817509919405,\n                                \"Left\": 0.5411766171455383,\n                                \"Top\": 0.5012151002883911\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5411766171455383,\n                                \"Y\": 0.5012151002883911\n                            }, {\n                                \"X\": 0.5868163108825684,\n                                \"Y\": 0.5012350082397461\n                            }, {\n                                \"X\": 0.5868166089057922,\n                                \"Y\": 0.5073933005332947\n                            }, {\n                                \"X\": 0.5411767959594727,\n                                \"Y\": 0.5073733925819397\n                            }]\n                        },\n                        \"Confidence\": 89.87006378173828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025880681350827217,\n                                \"Height\": 0.01114547997713089,\n                                \"Left\": 0.5110101103782654,\n                                \"Top\": 0.49588584899902344\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5110101103782654,\n                                \"Y\": 0.49588584899902344\n                            }, {\n                                \"X\": 0.53689044713974,\n                                \"Y\": 0.495897114276886\n                            }, {\n                                \"X\": 0.5368907451629639,\n                                \"Y\": 0.5070313215255737\n                            }, {\n                                \"X\": 0.5110102891921997,\n                                \"Y\": 0.5070200562477112\n                            }]\n                        },\n                        \"Confidence\": 99.90663146972656\n                    }]\n                }, {\n                    \"Type\": \"MARITAL_STATUS_MARRIED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Married\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0331302247941494,\n                                \"Height\": 0.005468805320560932,\n                                \"Left\": 0.5412899255752563,\n                                \"Top\": 0.48880326747894287\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5412899255752563,\n                                \"Y\": 0.48880326747894287\n                            }, {\n                                \"X\": 0.5744198560714722,\n                                \"Y\": 0.48881766200065613\n                            }, {\n                                \"X\": 0.574420154094696,\n                                \"Y\": 0.4942720830440521\n                            }, {\n                                \"X\": 0.5412901043891907,\n                                \"Y\": 0.49425768852233887\n                            }]\n                        },\n                        \"Confidence\": 89.80406188964844\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02525077387690544,\n                                \"Height\": 0.011176662519574165,\n                                \"Left\": 0.511516809463501,\n                                \"Top\": 0.4851117730140686\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.511516809463501,\n                                \"Y\": 0.4851117730140686\n                            }, {\n                                \"X\": 0.5367672443389893,\n                                \"Y\": 0.4851227104663849\n                            }, {\n                                \"X\": 0.5367675423622131,\n                                \"Y\": 0.4962884187698364\n                            }, {\n                                \"X\": 0.5115169882774353,\n                                \"Y\": 0.49627745151519775\n                            }]\n                        },\n                        \"Confidence\": 99.93624114990234\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Refinance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.051069822162389755,\n                                \"Height\": 0.006125172134488821,\n                                \"Left\": 0.17773844301700592,\n                                \"Top\": 0.2872559726238251\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1777392327785492,\n                                \"Y\": 0.2872559726238251\n                            }, {\n                                \"X\": 0.22880826890468597,\n                                \"Y\": 0.2872767448425293\n                            }, {\n                                \"X\": 0.22880761325359344,\n                                \"Y\": 0.2933811545372009\n                            }, {\n                                \"X\": 0.17773844301700592,\n                                \"Y\": 0.2933603525161743\n                            }]\n                        },\n                        \"Confidence\": 89.64019775390625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02544490061700344,\n                                \"Height\": 0.011644316837191582,\n                                \"Left\": 0.14646592736244202,\n                                \"Top\": 0.2815084159374237\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14646759629249573,\n                                \"Y\": 0.2815084159374237\n                            }, {\n                                \"X\": 0.17191082239151,\n                                \"Y\": 0.28151875734329224\n                            }, {\n                                \"X\": 0.17190928757190704,\n                                \"Y\": 0.29315274953842163\n                            }, {\n                                \"X\": 0.14646592736244202,\n                                \"Y\": 0.2931423783302307\n                            }]\n                        },\n                        \"Confidence\": 99.91322326660156\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Borrower's Name (include Jr. or Sr. if applicable)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2593066096305847,\n                                \"Height\": 0.0069104572758078575,\n                                \"Left\": 0.04741913452744484,\n                                \"Top\": 0.443758487701416\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04742040857672691,\n                                \"Y\": 0.443758487701416\n                            }, {\n                                \"X\": 0.30672574043273926,\n                                \"Y\": 0.44386938214302063\n                            }, {\n                                \"X\": 0.30672526359558105,\n                                \"Y\": 0.45066896080970764\n                            }, {\n                                \"X\": 0.04741913452744484,\n                                \"Y\": 0.4505578279495239\n                            }]\n                        },\n                        \"Confidence\": 89.51013946533203\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"MICHAEL G NIXON\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11862801015377045,\n                                \"Height\": 0.0067361267283558846,\n                                \"Left\": 0.047083813697099686,\n                                \"Top\": 0.4515686333179474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04708506911993027,\n                                \"Y\": 0.4515686333179474\n                            }, {\n                                \"X\": 0.16571182012557983,\n                                \"Y\": 0.4516195058822632\n                            }, {\n                                \"X\": 0.1657109260559082,\n                                \"Y\": 0.458304762840271\n                            }, {\n                                \"X\": 0.047083813697099686,\n                                \"Y\": 0.45825380086898804\n                            }]\n                        },\n                        \"Confidence\": 89.51013946533203\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Primary Residence\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05416969209909439,\n                                \"Height\": 0.01241564005613327,\n                                \"Left\": 0.6948712468147278,\n                                \"Top\": 0.2803371250629425\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6948712468147278,\n                                \"Y\": 0.2803371250629425\n                            }, {\n                                \"X\": 0.749039351940155,\n                                \"Y\": 0.2803591191768646\n                            }, {\n                                \"X\": 0.749040961265564,\n                                \"Y\": 0.29275277256965637\n                            }, {\n                                \"X\": 0.6948724985122681,\n                                \"Y\": 0.2927306890487671\n                            }]\n                        },\n                        \"Confidence\": 89.49278259277344\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024713855236768723,\n                                \"Height\": 0.01204614620655775,\n                                \"Left\": 0.663977324962616,\n                                \"Top\": 0.2813816964626312\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.663977324962616,\n                                \"Y\": 0.2813816964626312\n                            }, {\n                                \"X\": 0.6886899471282959,\n                                \"Y\": 0.2813917398452759\n                            }, {\n                                \"X\": 0.6886911392211914,\n                                \"Y\": 0.29342785477638245\n                            }, {\n                                \"X\": 0.6639783382415771,\n                                \"Y\": 0.2934177815914154\n                            }]\n                        },\n                        \"Confidence\": 99.3804931640625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Year Built\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05141688138246536,\n                                \"Height\": 0.005990226753056049,\n                                \"Left\": 0.8643573522567749,\n                                \"Top\": 0.24904009699821472\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8643573522567749,\n                                \"Y\": 0.24904009699821472\n                            }, {\n                                \"X\": 0.9157730340957642,\n                                \"Y\": 0.2490607500076294\n                            }, {\n                                \"X\": 0.9157742261886597,\n                                \"Y\": 0.2550303339958191\n                            }, {\n                                \"X\": 0.8643584251403809,\n                                \"Y\": 0.25500962138175964\n                            }]\n                        },\n                        \"Confidence\": 89.48809051513672\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1980\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028813039883971214,\n                                \"Height\": 0.00664835749194026,\n                                \"Left\": 0.8647693395614624,\n                                \"Top\": 0.26095589995384216\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8647693395614624,\n                                \"Y\": 0.26095589995384216\n                            }, {\n                                \"X\": 0.8935810923576355,\n                                \"Y\": 0.26096752285957336\n                            }, {\n                                \"X\": 0.8935823440551758,\n                                \"Y\": 0.267604261636734\n                            }, {\n                                \"X\": 0.8647705316543579,\n                                \"Y\": 0.2675926089286804\n                            }]\n                        },\n                        \"Confidence\": 89.48809051513672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Leasehold (show expiration date)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08486724644899368,\n                                \"Height\": 0.012609188444912434,\n                                \"Left\": 0.8585344552993774,\n                                \"Top\": 0.40180131793022156\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8585344552993774,\n                                \"Y\": 0.40180131793022156\n                            }, {\n                                \"X\": 0.9433990120887756,\n                                \"Y\": 0.40183714032173157\n                            }, {\n                                \"X\": 0.9434016942977905,\n                                \"Y\": 0.4144105017185211\n                            }, {\n                                \"X\": 0.8585366606712341,\n                                \"Y\": 0.41437456011772156\n                            }]\n                        },\n                        \"Confidence\": 89.40092468261719\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023993412032723427,\n                                \"Height\": 0.011748859658837318,\n                                \"Left\": 0.8299866914749146,\n                                \"Top\": 0.4008978307247162\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8299866914749146,\n                                \"Y\": 0.4008978307247162\n                            }, {\n                                \"X\": 0.8539780378341675,\n                                \"Y\": 0.400907963514328\n                            }, {\n                                \"X\": 0.8539800643920898,\n                                \"Y\": 0.41264671087265015\n                            }, {\n                                \"X\": 0.8299885392189026,\n                                \"Y\": 0.41263654828071594\n                            }]\n                        },\n                        \"Confidence\": 99.58999633789062\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(a) Present Value of Lot\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12622898817062378,\n                                \"Height\": 0.0066027045249938965,\n                                \"Left\": 0.44715219736099243,\n                                \"Top\": 0.3046188950538635\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4471522569656372,\n                                \"Y\": 0.3046188950538635\n                            }, {\n                                \"X\": 0.5733808875083923,\n                                \"Y\": 0.304670512676239\n                            }, {\n                                \"X\": 0.5733811855316162,\n                                \"Y\": 0.3112215995788574\n                            }, {\n                                \"X\": 0.44715219736099243,\n                                \"Y\": 0.31116983294487\n                            }]\n                        },\n                        \"Confidence\": 89.3025131225586\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15571218729019165,\n                                \"Height\": 0.00814836099743843,\n                                \"Left\": 0.4480929970741272,\n                                \"Top\": 0.3204319477081299\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.448093056678772,\n                                \"Y\": 0.3204319477081299\n                            }, {\n                                \"X\": 0.6038047075271606,\n                                \"Y\": 0.32049596309661865\n                            }, {\n                                \"X\": 0.6038051843643188,\n                                \"Y\": 0.3285803198814392\n                            }, {\n                                \"X\": 0.4480929970741272,\n                                \"Y\": 0.3285161256790161\n                            }]\n                        },\n                        \"Confidence\": 89.3025131225586\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No. of Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07705779373645782,\n                                \"Height\": 0.006161282304674387,\n                                \"Left\": 0.3411601483821869,\n                                \"Top\": 0.18920232355594635\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34116050601005554,\n                                \"Y\": 0.18920232355594635\n                            }, {\n                                \"X\": 0.4182179570198059,\n                                \"Y\": 0.18923266232013702\n                            }, {\n                                \"X\": 0.41821780800819397,\n                                \"Y\": 0.1953636109828949\n                            }, {\n                                \"X\": 0.3411601483821869,\n                                \"Y\": 0.19533321261405945\n                            }]\n                        },\n                        \"Confidence\": 89.29456329345703\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"180\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.020958365872502327,\n                                \"Height\": 0.006613426376134157,\n                                \"Left\": 0.3420204818248749,\n                                \"Top\": 0.20151634514331818\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34202083945274353,\n                                \"Y\": 0.20151634514331818\n                            }, {\n                                \"X\": 0.36297884583473206,\n                                \"Y\": 0.20152463018894196\n                            }, {\n                                \"X\": 0.3629785478115082,\n                                \"Y\": 0.20812976360321045\n                            }, {\n                                \"X\": 0.3420204818248749,\n                                \"Y\": 0.20812146365642548\n                            }]\n                        },\n                        \"Confidence\": 89.29456329345703\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Amount Existing Liens\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1200188621878624,\n                                \"Height\": 0.007096473593264818,\n                                \"Left\": 0.29319554567337036,\n                                \"Top\": 0.30466997623443604\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29319608211517334,\n                                \"Y\": 0.30466997623443604\n                            }, {\n                                \"X\": 0.41321441531181335,\n                                \"Y\": 0.30471906065940857\n                            }, {\n                                \"X\": 0.41321423649787903,\n                                \"Y\": 0.31176644563674927\n                            }, {\n                                \"X\": 0.29319554567337036,\n                                \"Y\": 0.3117172420024872\n                            }]\n                        },\n                        \"Confidence\": 89.23131561279297\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1447954773902893,\n                                \"Height\": 0.008073932491242886,\n                                \"Left\": 0.2946755886077881,\n                                \"Top\": 0.32042476534843445\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2946762144565582,\n                                \"Y\": 0.32042476534843445\n                            }, {\n                                \"X\": 0.4394710659980774,\n                                \"Y\": 0.32048431038856506\n                            }, {\n                                \"X\": 0.43947097659111023,\n                                \"Y\": 0.3284986913204193\n                            }, {\n                                \"X\": 0.2946755886077881,\n                                \"Y\": 0.32843899726867676\n                            }]\n                        },\n                        \"Confidence\": 89.23131561279297\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Mailing Address, if different from Present Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2666831612586975,\n                                \"Height\": 0.007033513858914375,\n                                \"Left\": 0.046715568751096725,\n                                \"Top\": 0.5582574605941772\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04671686887741089,\n                                \"Y\": 0.5582574605941772\n                            }, {\n                                \"X\": 0.31339871883392334,\n                                \"Y\": 0.5583755373954773\n                            }, {\n                                \"X\": 0.31339824199676514,\n                                \"Y\": 0.5652909278869629\n                            }, {\n                                \"X\": 0.046715568751096725,\n                                \"Y\": 0.5651726126670837\n                            }]\n                        },\n                        \"Confidence\": 89.2081527709961\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yrs. employed in this line of work/profession\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1348644644021988,\n                                \"Height\": 0.013226738199591637,\n                                \"Left\": 0.3594602644443512,\n                                \"Top\": 0.6940571069717407\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35946089029312134,\n                                \"Y\": 0.6940571069717407\n                            }, {\n                                \"X\": 0.49432456493377686,\n                                \"Y\": 0.6941192746162415\n                            }, {\n                                \"X\": 0.4943247139453888,\n                                \"Y\": 0.7072838544845581\n                            }, {\n                                \"X\": 0.3594602644443512,\n                                \"Y\": 0.7072214484214783\n                            }]\n                        },\n                        \"Confidence\": 89.12232208251953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"25.09\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.032480768859386444,\n                                \"Height\": 0.006590599659830332,\n                                \"Left\": 0.3587777018547058,\n                                \"Top\": 0.7191765308380127\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3587779998779297,\n                                \"Y\": 0.7191765308380127\n                            }, {\n                                \"X\": 0.39125844836235046,\n                                \"Y\": 0.7191916108131409\n                            }, {\n                                \"X\": 0.39125823974609375,\n                                \"Y\": 0.7257671356201172\n                            }, {\n                                \"X\": 0.3587777018547058,\n                                \"Y\": 0.7257519960403442\n                            }]\n                        },\n                        \"Confidence\": 89.12232208251953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Amount Existing Liens\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11843223869800568,\n                                \"Height\": 0.006989903282374144,\n                                \"Left\": 0.29396456480026245,\n                                \"Top\": 0.3406064510345459\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29396510124206543,\n                                \"Y\": 0.3406064510345459\n                            }, {\n                                \"X\": 0.4123968183994293,\n                                \"Y\": 0.34065544605255127\n                            }, {\n                                \"X\": 0.412396639585495,\n                                \"Y\": 0.34759634733200073\n                            }, {\n                                \"X\": 0.29396456480026245,\n                                \"Y\": 0.3475472033023834\n                            }]\n                        },\n                        \"Confidence\": 89.01030731201172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03600475192070007,\n                                \"Height\": 0.007681944407522678,\n                                \"Left\": 0.29520127177238464,\n                                \"Top\": 0.3682554066181183\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2952018678188324,\n                                \"Y\": 0.3682554066181183\n                            }, {\n                                \"X\": 0.3312060236930847,\n                                \"Y\": 0.3682704269886017\n                            }, {\n                                \"X\": 0.3312055468559265,\n                                \"Y\": 0.3759373426437378\n                            }, {\n                                \"X\": 0.29520127177238464,\n                                \"Y\": 0.3759222626686096\n                            }]\n                        },\n                        \"Confidence\": 89.01030731201172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"GPM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025458665564656258,\n                                \"Height\": 0.006001987960189581,\n                                \"Left\": 0.5412309169769287,\n                                \"Top\": 0.20361344516277313\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5412309169769287,\n                                \"Y\": 0.20361344516277313\n                            }, {\n                                \"X\": 0.5666893124580383,\n                                \"Y\": 0.20362350344657898\n                            }, {\n                                \"X\": 0.5666895508766174,\n                                \"Y\": 0.20961542427539825\n                            }, {\n                                \"X\": 0.541231095790863,\n                                \"Y\": 0.20960533618927002\n                            }]\n                        },\n                        \"Confidence\": 88.98065948486328\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02578476257622242,\n                                \"Height\": 0.011313945055007935,\n                                \"Left\": 0.5112555623054504,\n                                \"Top\": 0.19805128872394562\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5112555623054504,\n                                \"Y\": 0.19805128872394562\n                            }, {\n                                \"X\": 0.5370399951934814,\n                                \"Y\": 0.19806146621704102\n                            }, {\n                                \"X\": 0.5370403528213501,\n                                \"Y\": 0.20936523377895355\n                            }, {\n                                \"X\": 0.5112558007240295,\n                                \"Y\": 0.20935501158237457\n                            }]\n                        },\n                        \"Confidence\": 99.72100830078125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Home Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15600049495697021,\n                                \"Height\": 0.007341529708355665,\n                                \"Left\": 0.1822105199098587,\n                                \"Top\": 0.46291816234588623\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.18221144378185272,\n                                \"Y\": 0.46291816234588623\n                            }, {\n                                \"X\": 0.3382109999656677,\n                                \"Y\": 0.46298524737358093\n                            }, {\n                                \"X\": 0.3382105827331543,\n                                \"Y\": 0.4702596664428711\n                            }, {\n                                \"X\": 0.1822105199098587,\n                                \"Y\": 0.47019243240356445\n                            }]\n                        },\n                        \"Confidence\": 88.82355499267578\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"586-746-4736\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08147115260362625,\n                                \"Height\": 0.006567294243723154,\n                                \"Left\": 0.18155889213085175,\n                                \"Top\": 0.4752882421016693\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1815597265958786,\n                                \"Y\": 0.4752882421016693\n                            }, {\n                                \"X\": 0.2630300521850586,\n                                \"Y\": 0.4753234386444092\n                            }, {\n                                \"X\": 0.26302945613861084,\n                                \"Y\": 0.4818555414676666\n                            }, {\n                                \"X\": 0.18155889213085175,\n                                \"Y\": 0.481820285320282\n                            }]\n                        },\n                        \"Confidence\": 88.82355499267578\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Purpose of Refinance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11253417283296585,\n                                \"Height\": 0.00717156520113349,\n                                \"Left\": 0.44734832644462585,\n                                \"Top\": 0.34019893407821655\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.44734838604927063,\n                                \"Y\": 0.34019893407821655\n                            }, {\n                                \"X\": 0.5598822236061096,\n                                \"Y\": 0.3402455151081085\n                            }, {\n                                \"X\": 0.5598825216293335,\n                                \"Y\": 0.3473705053329468\n                            }, {\n                                \"X\": 0.44734832644462585,\n                                \"Y\": 0.34732383489608765\n                            }]\n                        },\n                        \"Confidence\": 88.737060546875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"RATE-TERM REFINANCE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15685272216796875,\n                                \"Height\": 0.006960386876016855,\n                                \"Left\": 0.4476746916770935,\n                                \"Top\": 0.3559723496437073\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4476747512817383,\n                                \"Y\": 0.3559723496437073\n                            }, {\n                                \"X\": 0.6045269966125488,\n                                \"Y\": 0.35603758692741394\n                            }, {\n                                \"X\": 0.6045274138450623,\n                                \"Y\": 0.3629327416419983\n                            }, {\n                                \"X\": 0.4476746916770935,\n                                \"Y\": 0.3628673553466797\n                            }]\n                        },\n                        \"Confidence\": 88.737060546875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Unmarried (include single, divorced, widowed)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12009940296411514,\n                                \"Height\": 0.013231421820819378,\n                                \"Left\": 0.16446979343891144,\n                                \"Top\": 0.48629462718963623\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1644715815782547,\n                                \"Y\": 0.48629462718963623\n                            }, {\n                                \"X\": 0.2845692038536072,\n                                \"Y\": 0.48634666204452515\n                            }, {\n                                \"X\": 0.2845681309700012,\n                                \"Y\": 0.4995260536670685\n                            }, {\n                                \"X\": 0.16446979343891144,\n                                \"Y\": 0.49947381019592285\n                            }]\n                        },\n                        \"Confidence\": 88.66448211669922\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026119358837604523,\n                                \"Height\": 0.010759995318949223,\n                                \"Left\": 0.1345319300889969,\n                                \"Top\": 0.48467573523521423\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.13453353941440582,\n                                \"Y\": 0.48467573523521423\n                            }, {\n                                \"X\": 0.160651296377182,\n                                \"Y\": 0.48468706011772156\n                            }, {\n                                \"X\": 0.16064982116222382,\n                                \"Y\": 0.4954357445240021\n                            }, {\n                                \"X\": 0.1345319300889969,\n                                \"Y\": 0.49542438983917236\n                            }]\n                        },\n                        \"Confidence\": 99.8656997680664\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Title will be held in what Name(s)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1769879013299942,\n                                \"Height\": 0.006607882212847471,\n                                \"Left\": 0.047068871557712555,\n                                \"Top\": 0.3780043423175812\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04707009717822075,\n                                \"Y\": 0.3780043423175812\n                            }, {\n                                \"X\": 0.22405676543712616,\n                                \"Y\": 0.3780784606933594\n                            }, {\n                                \"X\": 0.22405605018138885,\n                                \"Y\": 0.38461220264434814\n                            }, {\n                                \"X\": 0.047068871557712555,\n                                \"Y\": 0.384537935256958\n                            }]\n                        },\n                        \"Confidence\": 88.61300659179688\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"SSN\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Social Security Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12642940878868103,\n                                \"Height\": 0.007395068183541298,\n                                \"Left\": 0.5049675703048706,\n                                \"Top\": 0.4633171558380127\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5049675703048706,\n                                \"Y\": 0.4633171558380127\n                            }, {\n                                \"X\": 0.6313964128494263,\n                                \"Y\": 0.46337154507637024\n                            }, {\n                                \"X\": 0.6313969492912292,\n                                \"Y\": 0.47071221470832825\n                            }, {\n                                \"X\": 0.5049676895141602,\n                                \"Y\": 0.47065770626068115\n                            }]\n                        },\n                        \"Confidence\": 88.61199951171875\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Manner in which Title will be held\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1789720505475998,\n                                \"Height\": 0.0062573933973908424,\n                                \"Left\": 0.5705610513687134,\n                                \"Top\": 0.379207968711853\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5705610513687134,\n                                \"Y\": 0.379207968711853\n                            }, {\n                                \"X\": 0.7495323419570923,\n                                \"Y\": 0.37928295135498047\n                            }, {\n                                \"X\": 0.7495331168174744,\n                                \"Y\": 0.3854653835296631\n                            }, {\n                                \"X\": 0.5705613493919373,\n                                \"Y\": 0.3853902518749237\n                            }]\n                        },\n                        \"Confidence\": 88.56785583496094\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"INDIVIDUALLY\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09159601479768753,\n                                \"Height\": 0.006917180027812719,\n                                \"Left\": 0.5705137848854065,\n                                \"Top\": 0.3916817903518677\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5705137848854065,\n                                \"Y\": 0.3916817903518677\n                            }, {\n                                \"X\": 0.6621091961860657,\n                                \"Y\": 0.39172032475471497\n                            }, {\n                                \"X\": 0.6621097922325134,\n                                \"Y\": 0.39859896898269653\n                            }, {\n                                \"X\": 0.5705141425132751,\n                                \"Y\": 0.39856037497520447\n                            }]\n                        },\n                        \"Confidence\": 88.56785583496094\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Business Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14705412089824677,\n                                \"Height\": 0.006317107938230038,\n                                \"Left\": 0.33495020866394043,\n                                \"Top\": 0.7302393317222595\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33495059609413147,\n                                \"Y\": 0.7302393317222595\n                            }, {\n                                \"X\": 0.482004314661026,\n                                \"Y\": 0.7303078770637512\n                            }, {\n                                \"X\": 0.4820043444633484,\n                                \"Y\": 0.7365564703941345\n                            }, {\n                                \"X\": 0.33495020866394043,\n                                \"Y\": 0.7364878058433533\n                            }]\n                        },\n                        \"Confidence\": 88.5156021118164\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"419-259-6013\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08128327131271362,\n                                \"Height\": 0.00679404241964221,\n                                \"Left\": 0.33490514755249023,\n                                \"Top\": 0.7433568835258484\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3349055349826813,\n                                \"Y\": 0.7433568835258484\n                            }, {\n                                \"X\": 0.41618841886520386,\n                                \"Y\": 0.7433948516845703\n                            }, {\n                                \"X\": 0.4161882698535919,\n                                \"Y\": 0.7501509189605713\n                            }, {\n                                \"X\": 0.33490514755249023,\n                                \"Y\": 0.7501128315925598\n                            }]\n                        },\n                        \"Confidence\": 88.5156021118164\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Self Employed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06450943648815155,\n                                \"Height\": 0.006493481807410717,\n                                \"Left\": 0.7296324968338013,\n                                \"Top\": 0.6734070181846619\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7296324968338013,\n                                \"Y\": 0.6734070181846619\n                            }, {\n                                \"X\": 0.7941409945487976,\n                                \"Y\": 0.6734365820884705\n                            }, {\n                                \"X\": 0.794141948223114,\n                                \"Y\": 0.6799005270004272\n                            }, {\n                                \"X\": 0.7296332716941833,\n                                \"Y\": 0.6798709034919739\n                            }]\n                        },\n                        \"Confidence\": 88.3311767578125\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025916652753949165,\n                                \"Height\": 0.011350343935191631,\n                                \"Left\": 0.6993283629417419,\n                                \"Top\": 0.668098509311676\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6993283629417419,\n                                \"Y\": 0.668098509311676\n                            }, {\n                                \"X\": 0.7252436876296997,\n                                \"Y\": 0.6681103706359863\n                            }, {\n                                \"X\": 0.7252449989318848,\n                                \"Y\": 0.6794489026069641\n                            }, {\n                                \"X\": 0.6993295550346375,\n                                \"Y\": 0.679436981678009\n                            }]\n                        },\n                        \"Confidence\": 99.94456481933594\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Co-Borrower's Name (include Jr. or Sr. if applicable)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2755318582057953,\n                                \"Height\": 0.007072393782436848,\n                                \"Left\": 0.5051913261413574,\n                                \"Top\": 0.4437065124511719\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5051913261413574,\n                                \"Y\": 0.4437065124511719\n                            }, {\n                                \"X\": 0.7807222008705139,\n                                \"Y\": 0.44382432103157043\n                            }, {\n                                \"X\": 0.7807232141494751,\n                                \"Y\": 0.45077890157699585\n                            }, {\n                                \"X\": 0.505191445350647,\n                                \"Y\": 0.4506608247756958\n                            }]\n                        },\n                        \"Confidence\": 88.14129638671875\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Construction-Permanent\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1280265599489212,\n                                \"Height\": 0.006273442879319191,\n                                \"Left\": 0.282615065574646,\n                                \"Top\": 0.2870445251464844\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2826155722141266,\n                                \"Y\": 0.2870445251464844\n                            }, {\n                                \"X\": 0.4106416404247284,\n                                \"Y\": 0.2870965898036957\n                            }, {\n                                \"X\": 0.41064146161079407,\n                                \"Y\": 0.293317973613739\n                            }, {\n                                \"X\": 0.282615065574646,\n                                \"Y\": 0.29326578974723816\n                            }]\n                        },\n                        \"Confidence\": 88.09854125976562\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026431575417518616,\n                                \"Height\": 0.011067681014537811,\n                                \"Left\": 0.25212472677230835,\n                                \"Top\": 0.2816351652145386\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2521257996559143,\n                                \"Y\": 0.2816351652145386\n                            }, {\n                                \"X\": 0.27855631709098816,\n                                \"Y\": 0.28164589405059814\n                            }, {\n                                \"X\": 0.27855539321899414,\n                                \"Y\": 0.292702853679657\n                            }, {\n                                \"X\": 0.25212472677230835,\n                                \"Y\": 0.29269206523895264\n                            }]\n                        },\n                        \"Confidence\": 99.94169616699219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Legal Description of Subject Property (attach description if necessary)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.36912956833839417,\n                                \"Height\": 0.007660762406885624,\n                                \"Left\": 0.048139408230781555,\n                                \"Top\": 0.24889157712459564\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.048140816390514374,\n                                \"Y\": 0.24889157712459564\n                            }, {\n                                \"X\": 0.4172689616680145,\n                                \"Y\": 0.24903982877731323\n                            }, {\n                                \"X\": 0.4172688126564026,\n                                \"Y\": 0.2565523386001587\n                            }, {\n                                \"X\": 0.048139408230781555,\n                                \"Y\": 0.25640371441841125\n                            }]\n                        },\n                        \"Confidence\": 88.09812927246094\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"DOB (mm/dd/yyyy)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06325971335172653,\n                                \"Height\": 0.013527310453355312,\n                                \"Left\": 0.811676025390625,\n                                \"Top\": 0.46288686990737915\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.811676025390625,\n                                \"Y\": 0.46288686990737915\n                            }, {\n                                \"X\": 0.8749333024024963,\n                                \"Y\": 0.4629140794277191\n                            }, {\n                                \"X\": 0.8749357461929321,\n                                \"Y\": 0.47641417384147644\n                            }, {\n                                \"X\": 0.8116781115531921,\n                                \"Y\": 0.4763868451118469\n                            }]\n                        },\n                        \"Confidence\": 88.00212860107422\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MARITAL_STATUS_MARRIED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Married\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03467937186360359,\n                                \"Height\": 0.005665693432092667,\n                                \"Left\": 0.08181995898485184,\n                                \"Top\": 0.4885943531990051\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.08182092756032944,\n                                \"Y\": 0.4885943531990051\n                            }, {\n                                \"X\": 0.11649932712316513,\n                                \"Y\": 0.4886094033718109\n                            }, {\n                                \"X\": 0.1164984479546547,\n                                \"Y\": 0.4942600429058075\n                            }, {\n                                \"X\": 0.08181995898485184,\n                                \"Y\": 0.4942449927330017\n                            }]\n                        },\n                        \"Confidence\": 87.8358154296875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02595607005059719,\n                                \"Height\": 0.011235074140131474,\n                                \"Left\": 0.051878973841667175,\n                                \"Top\": 0.4844508767127991\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.051881056278944016,\n                                \"Y\": 0.4844508767127991\n                            }, {\n                                \"X\": 0.07783504575490952,\n                                \"Y\": 0.4844621419906616\n                            }, {\n                                \"X\": 0.07783308625221252,\n                                \"Y\": 0.49568596482276917\n                            }, {\n                                \"X\": 0.051878973841667175,\n                                \"Y\": 0.4956746995449066\n                            }]\n                        },\n                        \"Confidence\": 99.93499755859375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name & Address of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15755261480808258,\n                                \"Height\": 0.007368007209151983,\n                                \"Left\": 0.046281564980745316,\n                                \"Top\": 0.6698653697967529\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04628293588757515,\n                                \"Y\": 0.6698653697967529\n                            }, {\n                                \"X\": 0.2038341760635376,\n                                \"Y\": 0.6699374914169312\n                            }, {\n                                \"X\": 0.20383331179618835,\n                                \"Y\": 0.6772333383560181\n                            }, {\n                                \"X\": 0.046281564980745316,\n                                \"Y\": 0.6771610975265503\n                            }]\n                        },\n                        \"Confidence\": 87.8285903930664\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"HYLANT 2401 WEST BIG BEAVER, SUITE 400 TROY, MI 48084\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.22550077736377716,\n                                \"Height\": 0.031030895188450813,\n                                \"Left\": 0.047575443983078,\n                                \"Top\": 0.6835599541664124\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04758124426007271,\n                                \"Y\": 0.6835599541664124\n                            }, {\n                                \"X\": 0.27307620644569397,\n                                \"Y\": 0.6836636066436768\n                            }, {\n                                \"X\": 0.2730735242366791,\n                                \"Y\": 0.714590847492218\n                            }, {\n                                \"X\": 0.047575443983078,\n                                \"Y\": 0.7144862413406372\n                            }]\n                        },\n                        \"Confidence\": 87.8285903930664\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name & Address of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1577545404434204,\n                                \"Height\": 0.007332065142691135,\n                                \"Left\": 0.04612423852086067,\n                                \"Top\": 0.7647780179977417\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04612560197710991,\n                                \"Y\": 0.7647780179977417\n                            }, {\n                                \"X\": 0.20387877523899078,\n                                \"Y\": 0.7648522257804871\n                            }, {\n                                \"X\": 0.20387792587280273,\n                                \"Y\": 0.772110104560852\n                            }, {\n                                \"X\": 0.04612423852086067,\n                                \"Y\": 0.7720357179641724\n                            }]\n                        },\n                        \"Confidence\": 87.82456970214844\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yrs. on this job\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0801328495144844,\n                                \"Height\": 0.0071248216554522514,\n                                \"Left\": 0.386421263217926,\n                                \"Top\": 0.6699377298355103\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3864215314388275,\n                                \"Y\": 0.6699377298355103\n                            }, {\n                                \"X\": 0.46655410528182983,\n                                \"Y\": 0.6699744462966919\n                            }, {\n                                \"X\": 0.46655410528182983,\n                                \"Y\": 0.6770625710487366\n                            }, {\n                                \"X\": 0.386421263217926,\n                                \"Y\": 0.6770257949829102\n                            }]\n                        },\n                        \"Confidence\": 87.66517639160156\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2.44\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025954369455575943,\n                                \"Height\": 0.006613783538341522,\n                                \"Left\": 0.35831397771835327,\n                                \"Top\": 0.6834270358085632\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35831430554389954,\n                                \"Y\": 0.6834270358085632\n                            }, {\n                                \"X\": 0.3842683434486389,\n                                \"Y\": 0.6834389567375183\n                            }, {\n                                \"X\": 0.3842681050300598,\n                                \"Y\": 0.6900408267974854\n                            }, {\n                                \"X\": 0.35831397771835327,\n                                \"Y\": 0.6900288462638855\n                            }]\n                        },\n                        \"Confidence\": 87.66517639160156\n                    }]\n                }, {\n                    \"Type\": \"SSN\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Social Security Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12529468536376953,\n                                \"Height\": 0.007190904580056667,\n                                \"Left\": 0.04678133875131607,\n                                \"Top\": 0.46320268511772156\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04678267985582352,\n                                \"Y\": 0.46320268511772156\n                            }, {\n                                \"X\": 0.1720760315656662,\n                                \"Y\": 0.4632565975189209\n                            }, {\n                                \"X\": 0.172075092792511,\n                                \"Y\": 0.4703935980796814\n                            }, {\n                                \"X\": 0.04678133875131607,\n                                \"Y\": 0.4703395664691925\n                            }]\n                        },\n                        \"Confidence\": 87.62109375\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"378-86-9193\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07325027137994766,\n                                \"Height\": 0.006743475329130888,\n                                \"Left\": 0.04650496691465378,\n                                \"Top\": 0.4753493368625641\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04650622978806496,\n                                \"Y\": 0.4753493368625641\n                            }, {\n                                \"X\": 0.11975523829460144,\n                                \"Y\": 0.4753809869289398\n                            }, {\n                                \"X\": 0.11975419521331787,\n                                \"Y\": 0.48209282755851746\n                            }, {\n                                \"X\": 0.04650496691465378,\n                                \"Y\": 0.48206111788749695\n                            }]\n                        },\n                        \"Confidence\": 87.62109375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Position/Title/Type of Business\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16414044797420502,\n                                \"Height\": 0.007173591293394566,\n                                \"Left\": 0.505001425743103,\n                                \"Top\": 0.731136679649353\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.505001425743103,\n                                \"Y\": 0.731136679649353\n                            }, {\n                                \"X\": 0.6691412329673767,\n                                \"Y\": 0.7312131524085999\n                            }, {\n                                \"X\": 0.6691418886184692,\n                                \"Y\": 0.7383102774620056\n                            }, {\n                                \"X\": 0.5050015449523926,\n                                \"Y\": 0.7382336258888245\n                            }]\n                        },\n                        \"Confidence\": 87.59705352783203\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"DOB (mm/dd/yyyy)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06302284449338913,\n                                \"Height\": 0.013179730623960495,\n                                \"Left\": 0.35278284549713135,\n                                \"Top\": 0.46268874406814575\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35278353095054626,\n                                \"Y\": 0.46268874406814575\n                            }, {\n                                \"X\": 0.4158056974411011,\n                                \"Y\": 0.46271586418151855\n                            }, {\n                                \"X\": 0.4158053994178772,\n                                \"Y\": 0.47586846351623535\n                            }, {\n                                \"X\": 0.35278284549713135,\n                                \"Y\": 0.4758412539958954\n                            }]\n                        },\n                        \"Confidence\": 87.45780944824219\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"02/20/1964\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0643652155995369,\n                                \"Height\": 0.006518547423183918,\n                                \"Left\": 0.35285115242004395,\n                                \"Top\": 0.4752907156944275\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3528514802455902,\n                                \"Y\": 0.4752907156944275\n                            }, {\n                                \"X\": 0.41721636056900024,\n                                \"Y\": 0.4753184914588928\n                            }, {\n                                \"X\": 0.4172162115573883,\n                                \"Y\": 0.48180925846099854\n                            }, {\n                                \"X\": 0.35285115242004395,\n                                \"Y\": 0.48178139328956604\n                            }]\n                        },\n                        \"Confidence\": 87.45780944824219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FHA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.022854475304484367,\n                                \"Height\": 0.005992557853460312,\n                                \"Left\": 0.16482725739479065,\n                                \"Top\": 0.17980872094631195\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.16482806205749512,\n                                \"Y\": 0.17980872094631195\n                            }, {\n                                \"X\": 0.18768173456192017,\n                                \"Y\": 0.17981769144535065\n                            }, {\n                                \"X\": 0.18768098950386047,\n                                \"Y\": 0.18580128252506256\n                            }, {\n                                \"X\": 0.16482725739479065,\n                                \"Y\": 0.18579229712486267\n                            }]\n                        },\n                        \"Confidence\": 87.44976043701172\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025325670838356018,\n                                \"Height\": 0.011185458861291409,\n                                \"Left\": 0.13489706814289093,\n                                \"Top\": 0.17430248856544495\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.13489873707294464,\n                                \"Y\": 0.17430248856544495\n                            }, {\n                                \"X\": 0.16022273898124695,\n                                \"Y\": 0.17431239783763885\n                            }, {\n                                \"X\": 0.16022120416164398,\n                                \"Y\": 0.18548794090747833\n                            }, {\n                                \"X\": 0.13489706814289093,\n                                \"Y\": 0.18547798693180084\n                            }]\n                        },\n                        \"Confidence\": 99.91433715820312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Position/Title/Type of Business\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16378435492515564,\n                                \"Height\": 0.0075772604905068874,\n                                \"Left\": 0.046029675751924515,\n                                \"Top\": 0.7309516072273254\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04603108763694763,\n                                \"Y\": 0.7309516072273254\n                            }, {\n                                \"X\": 0.20981402695178986,\n                                \"Y\": 0.7310279607772827\n                            }, {\n                                \"X\": 0.2098131626844406,\n                                \"Y\": 0.7385289072990417\n                            }, {\n                                \"X\": 0.046029675751924515,\n                                \"Y\": 0.7384523749351501\n                            }]\n                        },\n                        \"Confidence\": 87.25045776367188\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"SENIOR VICE PRESIDENT\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1617109328508377,\n                                \"Height\": 0.007320364937186241,\n                                \"Left\": 0.04718168452382088,\n                                \"Top\": 0.7428882718086243\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.047183044254779816,\n                                \"Y\": 0.7428882718086243\n                            }, {\n                                \"X\": 0.2088926136493683,\n                                \"Y\": 0.7429639101028442\n                            }, {\n                                \"X\": 0.20889177918434143,\n                                \"Y\": 0.7502086162567139\n                            }, {\n                                \"X\": 0.04718168452382088,\n                                \"Y\": 0.7501328587532043\n                            }]\n                        },\n                        \"Confidence\": 87.25045776367188\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Self Employed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06517785787582397,\n                                \"Height\": 0.006578236352652311,\n                                \"Left\": 0.282016396522522,\n                                \"Top\": 0.6731807589530945\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.28201693296432495,\n                                \"Y\": 0.6731807589530945\n                            }, {\n                                \"X\": 0.34719425439834595,\n                                \"Y\": 0.673210620880127\n                            }, {\n                                \"X\": 0.3471938967704773,\n                                \"Y\": 0.6797590255737305\n                            }, {\n                                \"X\": 0.282016396522522,\n                                \"Y\": 0.6797291040420532\n                            }]\n                        },\n                        \"Confidence\": 87.23624420166016\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025374626740813255,\n                                \"Height\": 0.011956038884818554,\n                                \"Left\": 0.25275692343711853,\n                                \"Top\": 0.6676356792449951\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25275808572769165,\n                                \"Y\": 0.6676356792449951\n                            }, {\n                                \"X\": 0.2781315743923187,\n                                \"Y\": 0.6676473021507263\n                            }, {\n                                \"X\": 0.27813056111335754,\n                                \"Y\": 0.679591715335846\n                            }, {\n                                \"X\": 0.25275692343711853,\n                                \"Y\": 0.6795800924301147\n                            }]\n                        },\n                        \"Confidence\": 99.95282745361328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Present Address (street, city, state, ZIP)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19633589684963226,\n                                \"Height\": 0.006766104139387608,\n                                \"Left\": 0.04668773338198662,\n                                \"Top\": 0.5115562677383423\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0466889888048172,\n                                \"Y\": 0.5115562677383423\n                            }, {\n                                \"X\": 0.24302363395690918,\n                                \"Y\": 0.5116420388221741\n                            }, {\n                                \"X\": 0.24302296340465546,\n                                \"Y\": 0.5183224081993103\n                            }, {\n                                \"X\": 0.04668773338198662,\n                                \"Y\": 0.5182364583015442\n                            }]\n                        },\n                        \"Confidence\": 86.66838073730469\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"36728 MORAVIAN DRIVE CLINTON TOWNSHIP, MI 48035-1206\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.22492679953575134,\n                                \"Height\": 0.020927704870700836,\n                                \"Left\": 0.048155203461647034,\n                                \"Top\": 0.5211805105209351\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04815910384058952,\n                                \"Y\": 0.5211805105209351\n                            }, {\n                                \"X\": 0.27308201789855957,\n                                \"Y\": 0.5212790369987488\n                            }, {\n                                \"X\": 0.2730801999568939,\n                                \"Y\": 0.5421081781387329\n                            }, {\n                                \"X\": 0.048155203461647034,\n                                \"Y\": 0.5420090556144714\n                            }]\n                        },\n                        \"Confidence\": 86.66838073730469\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Rent No.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10817704349756241,\n                                \"Height\": 0.008509601466357708,\n                                \"Left\": 0.35420817136764526,\n                                \"Top\": 0.6122174859046936\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3542085886001587,\n                                \"Y\": 0.6122174859046936\n                            }, {\n                                \"X\": 0.4623852074146271,\n                                \"Y\": 0.6122661828994751\n                            }, {\n                                \"X\": 0.4623851776123047,\n                                \"Y\": 0.6207271218299866\n                            }, {\n                                \"X\": 0.35420817136764526,\n                                \"Y\": 0.6206783056259155\n                            }]\n                        },\n                        \"Confidence\": 86.57110595703125\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025565417483448982,\n                                \"Height\": 0.011861162260174751,\n                                \"Left\": 0.322352796792984,\n                                \"Top\": 0.6081467270851135\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3223535418510437,\n                                \"Y\": 0.6081467270851135\n                            }, {\n                                \"X\": 0.34791821241378784,\n                                \"Y\": 0.6081582307815552\n                            }, {\n                                \"X\": 0.3479175567626953,\n                                \"Y\": 0.6200078725814819\n                            }, {\n                                \"X\": 0.322352796792984,\n                                \"Y\": 0.6199963688850403\n                            }]\n                        },\n                        \"Confidence\": 99.92549896240234\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Cost:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0279689971357584,\n                                \"Height\": 0.005603059194982052,\n                                \"Left\": 0.6704914569854736,\n                                \"Top\": 0.3701723515987396\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6704914569854736,\n                                \"Y\": 0.3701723515987396\n                            }, {\n                                \"X\": 0.6984599232673645,\n                                \"Y\": 0.3701840341091156\n                            }, {\n                                \"X\": 0.6984604597091675,\n                                \"Y\": 0.37577542662620544\n                            }, {\n                                \"X\": 0.6704919934272766,\n                                \"Y\": 0.3757637143135071\n                            }]\n                        },\n                        \"Confidence\": 86.45063781738281\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.034305453300476074,\n                                \"Height\": 0.0072790710255503654,\n                                \"Left\": 0.7027463316917419,\n                                \"Top\": 0.36847835779190063\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7027463316917419,\n                                \"Y\": 0.36847835779190063\n                            }, {\n                                \"X\": 0.7370509505271912,\n                                \"Y\": 0.3684926927089691\n                            }, {\n                                \"X\": 0.737051784992218,\n                                \"Y\": 0.37575745582580566\n                            }, {\n                                \"X\": 0.702747106552124,\n                                \"Y\": 0.3757430911064148\n                            }]\n                        },\n                        \"Confidence\": 86.45063781738281\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dates (from to)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08765782415866852,\n                                \"Height\": 0.006424195133149624,\n                                \"Left\": 0.38221463561058044,\n                                \"Top\": 0.7649692296981812\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38221487402915955,\n                                \"Y\": 0.7649692296981812\n                            }, {\n                                \"X\": 0.46987244486808777,\n                                \"Y\": 0.7650104761123657\n                            }, {\n                                \"X\": 0.46987244486808777,\n                                \"Y\": 0.7713934183120728\n                            }, {\n                                \"X\": 0.38221463561058044,\n                                \"Y\": 0.7713521122932434\n                            }]\n                        },\n                        \"Confidence\": 86.3681869506836\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other (explain):\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.24110762774944305,\n                                \"Height\": 0.009640011936426163,\n                                \"Left\": 0.32985275983810425,\n                                \"Top\": 0.16484293341636658\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.329853355884552,\n                                \"Y\": 0.16484293341636658\n                            }, {\n                                \"X\": 0.5709599852561951,\n                                \"Y\": 0.16493704915046692\n                            }, {\n                                \"X\": 0.5709604024887085,\n                                \"Y\": 0.17448294162750244\n                            }, {\n                                \"X\": 0.32985275983810425,\n                                \"Y\": 0.17438851296901703\n                            }]\n                        },\n                        \"Confidence\": 86.23892974853516\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026386935263872147,\n                                \"Height\": 0.011638125404715538,\n                                \"Left\": 0.2990299165248871,\n                                \"Top\": 0.1620466709136963\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29903078079223633,\n                                \"Y\": 0.1620466709136963\n                            }, {\n                                \"X\": 0.32541683316230774,\n                                \"Y\": 0.16205695271492004\n                            }, {\n                                \"X\": 0.32541608810424805,\n                                \"Y\": 0.17368479073047638\n                            }, {\n                                \"X\": 0.2990299165248871,\n                                \"Y\": 0.17367446422576904\n                            }]\n                        },\n                        \"Confidence\": 99.9747085571289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Business Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14697392284870148,\n                                \"Height\": 0.005980061832815409,\n                                \"Left\": 0.3351544141769409,\n                                \"Top\": 0.9032238125801086\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33515477180480957,\n                                \"Y\": 0.9032238125801086\n                            }, {\n                                \"X\": 0.4821282923221588,\n                                \"Y\": 0.9032956957817078\n                            }, {\n                                \"X\": 0.4821283519268036,\n                                \"Y\": 0.9092038869857788\n                            }, {\n                                \"X\": 0.3351544141769409,\n                                \"Y\": 0.9091318845748901\n                            }]\n                        },\n                        \"Confidence\": 86.20647430419922\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MARITAL_STATUS_SEPARATED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Separated\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04630950093269348,\n                                \"Height\": 0.005793453194200993,\n                                \"Left\": 0.08184393495321274,\n                                \"Top\": 0.5011964440345764\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.08184492588043213,\n                                \"Y\": 0.5011964440345764\n                            }, {\n                                \"X\": 0.12815342843532562,\n                                \"Y\": 0.5012166500091553\n                            }, {\n                                \"X\": 0.12815256416797638,\n                                \"Y\": 0.5069898962974548\n                            }, {\n                                \"X\": 0.08184393495321274,\n                                \"Y\": 0.5069697499275208\n                            }]\n                        },\n                        \"Confidence\": 86.19767761230469\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0256040021777153,\n                                \"Height\": 0.011853516101837158,\n                                \"Left\": 0.051828671246767044,\n                                \"Top\": 0.49555307626724243\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.05183086916804314,\n                                \"Y\": 0.49555307626724243\n                            }, {\n                                \"X\": 0.07743266969919205,\n                                \"Y\": 0.49556419253349304\n                            }, {\n                                \"X\": 0.0774306058883667,\n                                \"Y\": 0.5074065923690796\n                            }, {\n                                \"X\": 0.051828671246767044,\n                                \"Y\": 0.5073954463005066\n                            }]\n                        },\n                        \"Confidence\": 97.34593963623047\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Amount\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04264519363641739,\n                                \"Height\": 0.005740900058299303,\n                                \"Left\": 0.04643144831061363,\n                                \"Top\": 0.18959933519363403\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04643252491950989,\n                                \"Y\": 0.18959933519363403\n                            }, {\n                                \"X\": 0.08907664567232132,\n                                \"Y\": 0.1896161139011383\n                            }, {\n                                \"X\": 0.08907567709684372,\n                                \"Y\": 0.19534023106098175\n                            }, {\n                                \"X\": 0.04643144831061363,\n                                \"Y\": 0.1953234076499939\n                            }]\n                        },\n                        \"Confidence\": 85.97781372070312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 198,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07723364979028702,\n                                \"Height\": 0.008055302314460278,\n                                \"Left\": 0.04727126285433769,\n                                \"Top\": 0.20153623819351196\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04727276787161827,\n                                \"Y\": 0.20153623819351196\n                            }, {\n                                \"X\": 0.12450490891933441,\n                                \"Y\": 0.20156677067279816\n                            }, {\n                                \"X\": 0.12450367957353592,\n                                \"Y\": 0.2095915526151657\n                            }, {\n                                \"X\": 0.04727126285433769,\n                                \"Y\": 0.20956093072891235\n                            }]\n                        },\n                        \"Confidence\": 85.97781372070312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dates (from to)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08779069036245346,\n                                \"Height\": 0.0064114597626030445,\n                                \"Left\": 0.3823002874851227,\n                                \"Top\": 0.8440448045730591\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3823005259037018,\n                                \"Y\": 0.8440448045730591\n                            }, {\n                                \"X\": 0.47009098529815674,\n                                \"Y\": 0.8440870642662048\n                            }, {\n                                \"X\": 0.47009098529815674,\n                                \"Y\": 0.8504562377929688\n                            }, {\n                                \"X\": 0.3823002874851227,\n                                \"Y\": 0.850413978099823\n                            }]\n                        },\n                        \"Confidence\": 85.85474395751953\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Self Employed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06514634937047958,\n                                \"Height\": 0.006428456399589777,\n                                \"Left\": 0.2823689579963684,\n                                \"Top\": 0.7684106230735779\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2823694944381714,\n                                \"Y\": 0.7684106230735779\n                            }, {\n                                \"X\": 0.3475153148174286,\n                                \"Y\": 0.7684412598609924\n                            }, {\n                                \"X\": 0.3475149869918823,\n                                \"Y\": 0.7748390436172485\n                            }, {\n                                \"X\": 0.2823689579963684,\n                                \"Y\": 0.7748082876205444\n                            }]\n                        },\n                        \"Confidence\": 85.40977478027344\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025123242288827896,\n                                \"Height\": 0.011413109488785267,\n                                \"Left\": 0.25292766094207764,\n                                \"Top\": 0.7633010149002075\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.252928763628006,\n                                \"Y\": 0.7633010149002075\n                            }, {\n                                \"X\": 0.27805089950561523,\n                                \"Y\": 0.7633128762245178\n                            }, {\n                                \"X\": 0.27804994583129883,\n                                \"Y\": 0.7747141718864441\n                            }, {\n                                \"X\": 0.25292766094207764,\n                                \"Y\": 0.7747023105621338\n                            }]\n                        },\n                        \"Confidence\": 99.9660873413086\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Self Employed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06525824218988419,\n                                \"Height\": 0.00657284539192915,\n                                \"Left\": 0.2821251153945923,\n                                \"Top\": 0.8459000587463379\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.28212565183639526,\n                                \"Y\": 0.8459000587463379\n                            }, {\n                                \"X\": 0.3473833501338959,\n                                \"Y\": 0.8459314703941345\n                            }, {\n                                \"X\": 0.3473829925060272,\n                                \"Y\": 0.8524729013442993\n                            }, {\n                                \"X\": 0.2821251153945923,\n                                \"Y\": 0.8524414300918579\n                            }]\n                        },\n                        \"Confidence\": 84.6660385131836\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025935791432857513,\n                                \"Height\": 0.010927152819931507,\n                                \"Left\": 0.2523330748081207,\n                                \"Top\": 0.8418681025505066\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2523341178894043,\n                                \"Y\": 0.8418681025505066\n                            }, {\n                                \"X\": 0.27826884388923645,\n                                \"Y\": 0.8418805599212646\n                            }, {\n                                \"X\": 0.27826792001724243,\n                                \"Y\": 0.8527952432632446\n                            }, {\n                                \"X\": 0.2523330748081207,\n                                \"Y\": 0.8527827262878418\n                            }]\n                        },\n                        \"Confidence\": 99.90251922607422\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Home Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15698210895061493,\n                                \"Height\": 0.006990970112383366,\n                                \"Left\": 0.6417243480682373,\n                                \"Top\": 0.4631370007991791\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6417243480682373,\n                                \"Y\": 0.4631370007991791\n                            }, {\n                                \"X\": 0.7987054586410522,\n                                \"Y\": 0.4632045328617096\n                            }, {\n                                \"X\": 0.7987064719200134,\n                                \"Y\": 0.47012796998023987\n                            }, {\n                                \"X\": 0.6417248845100403,\n                                \"Y\": 0.4700602889060974\n                            }]\n                        },\n                        \"Confidence\": 84.5594253540039\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Business Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1468418687582016,\n                                \"Height\": 0.006349402479827404,\n                                \"Left\": 0.7883254289627075,\n                                \"Top\": 0.7304256558418274\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7883254289627075,\n                                \"Y\": 0.7304256558418274\n                            }, {\n                                \"X\": 0.9351660013198853,\n                                \"Y\": 0.7304940223693848\n                            }, {\n                                \"X\": 0.9351673126220703,\n                                \"Y\": 0.7367750406265259\n                            }, {\n                                \"X\": 0.7883263230323792,\n                                \"Y\": 0.7367064952850342\n                            }]\n                        },\n                        \"Confidence\": 84.41123962402344\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Year Acquired\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0477585643529892,\n                                \"Height\": 0.01419841218739748,\n                                \"Left\": 0.04633306711912155,\n                                \"Top\": 0.3405021131038666\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04633573442697525,\n                                \"Y\": 0.3405021131038666\n                            }, {\n                                \"X\": 0.09409163147211075,\n                                \"Y\": 0.340521901845932\n                            }, {\n                                \"X\": 0.09408926963806152,\n                                \"Y\": 0.3547005355358124\n                            }, {\n                                \"X\": 0.04633306711912155,\n                                \"Y\": 0.3546806871891022\n                            }]\n                        },\n                        \"Confidence\": 84.13040924072266\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2003\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028832217678427696,\n                                \"Height\": 0.006437912583351135,\n                                \"Left\": 0.04727328568696976,\n                                \"Top\": 0.36823680996894836\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04727448895573616,\n                                \"Y\": 0.36823680996894836\n                            }, {\n                                \"X\": 0.0761055052280426,\n                                \"Y\": 0.368248850107193\n                            }, {\n                                \"X\": 0.07610438019037247,\n                                \"Y\": 0.3746747076511383\n                            }, {\n                                \"X\": 0.04727328568696976,\n                                \"Y\": 0.3746626675128937\n                            }]\n                        },\n                        \"Confidence\": 84.13040924072266\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Position/Title/Type of Business\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16354210674762726,\n                                \"Height\": 0.007360253483057022,\n                                \"Left\": 0.5057700872421265,\n                                \"Top\": 0.9031222462654114\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5057700872421265,\n                                \"Y\": 0.9031222462654114\n                            }, {\n                                \"X\": 0.6693115234375,\n                                \"Y\": 0.9032021760940552\n                            }, {\n                                \"X\": 0.6693121790885925,\n                                \"Y\": 0.9104824662208557\n                            }, {\n                                \"X\": 0.505770206451416,\n                                \"Y\": 0.9104023575782776\n                            }]\n                        },\n                        \"Confidence\": 83.85971069335938\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yrs. School\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.031430233269929886,\n                                \"Height\": 0.011594248935580254,\n                                \"Left\": 0.45271027088165283,\n                                \"Top\": 0.4626050889492035\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45271036028862,\n                                \"Y\": 0.4626050889492035\n                            }, {\n                                \"X\": 0.48414042592048645,\n                                \"Y\": 0.4626186192035675\n                            }, {\n                                \"X\": 0.4841405153274536,\n                                \"Y\": 0.4741993248462677\n                            }, {\n                                \"X\": 0.45271027088165283,\n                                \"Y\": 0.4741857647895813\n                            }]\n                        },\n                        \"Confidence\": 83.82010650634766\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014461616054177284,\n                                \"Height\": 0.006960033904761076,\n                                \"Left\": 0.453544020652771,\n                                \"Top\": 0.4752708673477173\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4535440504550934,\n                                \"Y\": 0.4752708673477173\n                            }, {\n                                \"X\": 0.46800562739372253,\n                                \"Y\": 0.4752771258354187\n                            }, {\n                                \"X\": 0.46800562739372253,\n                                \"Y\": 0.48223090171813965\n                            }, {\n                                \"X\": 0.453544020652771,\n                                \"Y\": 0.48222464323043823\n                            }]\n                        },\n                        \"Confidence\": 83.82010650634766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other (explain):\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18497008085250854,\n                                \"Height\": 0.01079369056969881,\n                                \"Left\": 0.4696967899799347,\n                                \"Top\": 0.2721998989582062\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4696967899799347,\n                                \"Y\": 0.2721998989582062\n                            }, {\n                                \"X\": 0.6546659469604492,\n                                \"Y\": 0.27227476239204407\n                            }, {\n                                \"X\": 0.6546668410301208,\n                                \"Y\": 0.2829935848712921\n                            }, {\n                                \"X\": 0.4696967899799347,\n                                \"Y\": 0.28291845321655273\n                            }]\n                        },\n                        \"Confidence\": 83.69245910644531\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026460738852620125,\n                                \"Height\": 0.010339152067899704,\n                                \"Left\": 0.4402470588684082,\n                                \"Top\": 0.2701909840106964\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.44024717807769775,\n                                \"Y\": 0.2701909840106964\n                            }, {\n                                \"X\": 0.4667077958583832,\n                                \"Y\": 0.2702016830444336\n                            }, {\n                                \"X\": 0.4667077958583832,\n                                \"Y\": 0.2805301249027252\n                            }, {\n                                \"X\": 0.4402470588684082,\n                                \"Y\": 0.28051939606666565\n                            }]\n                        },\n                        \"Confidence\": 99.93355560302734\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Monthly Income\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0859237089753151,\n                                \"Height\": 0.007051693741232157,\n                                \"Left\": 0.3831348419189453,\n                                \"Top\": 0.8796842098236084\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3831351101398468,\n                                \"Y\": 0.8796842098236084\n                            }, {\n                                \"X\": 0.4690585732460022,\n                                \"Y\": 0.8797259330749512\n                            }, {\n                                \"X\": 0.4690585732460022,\n                                \"Y\": 0.8867359161376953\n                            }, {\n                                \"X\": 0.3831348419189453,\n                                \"Y\": 0.886694073677063\n                            }]\n                        },\n                        \"Confidence\": 83.54210662841797\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13771836459636688,\n                                \"Height\": 0.008794360794126987,\n                                \"Left\": 0.35938364267349243,\n                                \"Top\": 0.8916884064674377\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35938405990600586,\n                                \"Y\": 0.8916884064674377\n                            }, {\n                                \"X\": 0.49710190296173096,\n                                \"Y\": 0.8917555212974548\n                            }, {\n                                \"X\": 0.4971019923686981,\n                                \"Y\": 0.9004827737808228\n                            }, {\n                                \"X\": 0.35938364267349243,\n                                \"Y\": 0.9004154801368713\n                            }]\n                        },\n                        \"Confidence\": 83.54210662841797\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Business Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14754581451416016,\n                                \"Height\": 0.006068671587854624,\n                                \"Left\": 0.3348623216152191,\n                                \"Top\": 0.8257460594177246\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33486267924308777,\n                                \"Y\": 0.8257460594177246\n                            }, {\n                                \"X\": 0.4824080765247345,\n                                \"Y\": 0.8258166909217834\n                            }, {\n                                \"X\": 0.4824081361293793,\n                                \"Y\": 0.831814706325531\n                            }, {\n                                \"X\": 0.3348623216152191,\n                                \"Y\": 0.8317439556121826\n                            }]\n                        },\n                        \"Confidence\": 83.34435272216797\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name & Address of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15670554339885712,\n                                \"Height\": 0.007255942095071077,\n                                \"Left\": 0.04692409932613373,\n                                \"Top\": 0.8439656496047974\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04692544788122177,\n                                \"Y\": 0.8439656496047974\n                            }, {\n                                \"X\": 0.20362964272499084,\n                                \"Y\": 0.8440410494804382\n                            }, {\n                                \"X\": 0.2036287933588028,\n                                \"Y\": 0.8512216210365295\n                            }, {\n                                \"X\": 0.04692409932613373,\n                                \"Y\": 0.8511460423469543\n                            }]\n                        },\n                        \"Confidence\": 83.33019256591797\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041716061532497406,\n                                \"Height\": 0.005410921294242144,\n                                \"Left\": 0.046199098229408264,\n                                \"Top\": 0.14365091919898987\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046200111508369446,\n                                \"Y\": 0.14365091919898987\n                            }, {\n                                \"X\": 0.08791515976190567,\n                                \"Y\": 0.1436670869588852\n                            }, {\n                                \"X\": 0.08791424334049225,\n                                \"Y\": 0.14906182885169983\n                            }, {\n                                \"X\": 0.046199098229408264,\n                                \"Y\": 0.14904563128948212\n                            }]\n                        },\n                        \"Confidence\": 83.03428649902344\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name & Address of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15705141425132751,\n                                \"Height\": 0.00750673608854413,\n                                \"Left\": 0.5059847831726074,\n                                \"Top\": 0.6697692275047302\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5059847831726074,\n                                \"Y\": 0.6697692275047302\n                            }, {\n                                \"X\": 0.6630355715751648,\n                                \"Y\": 0.6698411107063293\n                            }, {\n                                \"X\": 0.6630361676216125,\n                                \"Y\": 0.6772759556770325\n                            }, {\n                                \"X\": 0.505984902381897,\n                                \"Y\": 0.677203893661499\n                            }]\n                        },\n                        \"Confidence\": 82.92921447753906\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Position/Title/Type of Business\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16386479139328003,\n                                \"Height\": 0.0070689283311367035,\n                                \"Left\": 0.5057023167610168,\n                                \"Top\": 0.8260493874549866\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5057023167610168,\n                                \"Y\": 0.8260493874549866\n                            }, {\n                                \"X\": 0.6695665121078491,\n                                \"Y\": 0.826127827167511\n                            }, {\n                                \"X\": 0.6695671081542969,\n                                \"Y\": 0.8331183195114136\n                            }, {\n                                \"X\": 0.5057024359703064,\n                                \"Y\": 0.8330397605895996\n                            }]\n                        },\n                        \"Confidence\": 82.74005889892578\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(not listed by Borrower) ages\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12073355913162231,\n                                \"Height\": 0.010311782360076904,\n                                \"Left\": 0.8041071891784668,\n                                \"Top\": 0.4875154197216034\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8041071891784668,\n                                \"Y\": 0.4875154197216034\n                            }, {\n                                \"X\": 0.924838662147522,\n                                \"Y\": 0.4875677525997162\n                            }, {\n                                \"X\": 0.9248407483100891,\n                                \"Y\": 0.4978272020816803\n                            }, {\n                                \"X\": 0.804108738899231,\n                                \"Y\": 0.4977746903896332\n                            }]\n                        },\n                        \"Confidence\": 82.68669128417969\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Self Employed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06484587490558624,\n                                \"Height\": 0.006760423071682453,\n                                \"Left\": 0.7293017506599426,\n                                \"Top\": 0.7684045433998108\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7293017506599426,\n                                \"Y\": 0.7684045433998108\n                            }, {\n                                \"X\": 0.7941466569900513,\n                                \"Y\": 0.7684351205825806\n                            }, {\n                                \"X\": 0.7941476702690125,\n                                \"Y\": 0.7751649618148804\n                            }, {\n                                \"X\": 0.7293025255203247,\n                                \"Y\": 0.7751343846321106\n                            }]\n                        },\n                        \"Confidence\": 82.68241119384766\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024980131536722183,\n                                \"Height\": 0.01188434287905693,\n                                \"Left\": 0.6995758414268494,\n                                \"Top\": 0.7631222009658813\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6995758414268494,\n                                \"Y\": 0.7631222009658813\n                            }, {\n                                \"X\": 0.7245545983314514,\n                                \"Y\": 0.7631339430809021\n                            }, {\n                                \"X\": 0.7245559692382812,\n                                \"Y\": 0.7750065326690674\n                            }, {\n                                \"X\": 0.6995770931243896,\n                                \"Y\": 0.7749947309494019\n                            }]\n                        },\n                        \"Confidence\": 99.94776916503906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dates (from to)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08806635439395905,\n                                \"Height\": 0.00648505799472332,\n                                \"Left\": 0.8356000185012817,\n                                \"Top\": 0.7650832533836365\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8356000185012817,\n                                \"Y\": 0.7650832533836365\n                            }, {\n                                \"X\": 0.9236650466918945,\n                                \"Y\": 0.7651246786117554\n                            }, {\n                                \"X\": 0.9236663579940796,\n                                \"Y\": 0.7715682983398438\n                            }, {\n                                \"X\": 0.8356010913848877,\n                                \"Y\": 0.7715268135070801\n                            }]\n                        },\n                        \"Confidence\": 82.56803894042969\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Position/Title/Type of Business\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16345584392547607,\n                                \"Height\": 0.007157592102885246,\n                                \"Left\": 0.04681533947587013,\n                                \"Top\": 0.8260050415992737\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04681666940450668,\n                                \"Y\": 0.8260050415992737\n                            }, {\n                                \"X\": 0.2102711796760559,\n                                \"Y\": 0.8260833024978638\n                            }, {\n                                \"X\": 0.21027037501335144,\n                                \"Y\": 0.8331626653671265\n                            }, {\n                                \"X\": 0.04681533947587013,\n                                \"Y\": 0.8330842852592468\n                            }]\n                        },\n                        \"Confidence\": 82.218505859375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name & Address of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15728136897087097,\n                                \"Height\": 0.007398676592856646,\n                                \"Left\": 0.5055199861526489,\n                                \"Top\": 0.7648166418075562\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5055199861526489,\n                                \"Y\": 0.7648166418075562\n                            }, {\n                                \"X\": 0.6628007292747498,\n                                \"Y\": 0.7648906707763672\n                            }, {\n                                \"X\": 0.6628013849258423,\n                                \"Y\": 0.7722153067588806\n                            }, {\n                                \"X\": 0.5055201053619385,\n                                \"Y\": 0.77214115858078\n                            }]\n                        },\n                        \"Confidence\": 82.14576721191406\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Position/Title/Type of Business\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1636408418416977,\n                                \"Height\": 0.0072333416901528835,\n                                \"Left\": 0.046412091702222824,\n                                \"Top\": 0.9032305479049683\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04641343653202057,\n                                \"Y\": 0.9032305479049683\n                            }, {\n                                \"X\": 0.21005293726921082,\n                                \"Y\": 0.9033105969429016\n                            }, {\n                                \"X\": 0.21005210280418396,\n                                \"Y\": 0.9104639291763306\n                            }, {\n                                \"X\": 0.046412091702222824,\n                                \"Y\": 0.9103837609291077\n                            }]\n                        },\n                        \"Confidence\": 82.01361083984375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Self Employed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06508275121450424,\n                                \"Height\": 0.006603618152439594,\n                                \"Left\": 0.729352593421936,\n                                \"Top\": 0.8458373546600342\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.729352593421936,\n                                \"Y\": 0.8458373546600342\n                            }, {\n                                \"X\": 0.7944343686103821,\n                                \"Y\": 0.8458686470985413\n                            }, {\n                                \"X\": 0.7944353222846985,\n                                \"Y\": 0.8524409532546997\n                            }, {\n                                \"X\": 0.7293533682823181,\n                                \"Y\": 0.8524096012115479\n                            }]\n                        },\n                        \"Confidence\": 81.99240112304688\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025966672226786613,\n                                \"Height\": 0.010189205408096313,\n                                \"Left\": 0.6995886564254761,\n                                \"Top\": 0.8420541286468506\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6995886564254761,\n                                \"Y\": 0.8420541286468506\n                            }, {\n                                \"X\": 0.7255541682243347,\n                                \"Y\": 0.8420665860176086\n                            }, {\n                                \"X\": 0.7255553007125854,\n                                \"Y\": 0.8522433638572693\n                            }, {\n                                \"X\": 0.699589729309082,\n                                \"Y\": 0.8522307872772217\n                            }]\n                        },\n                        \"Confidence\": 99.88933563232422\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Present Address (street, city, state, ZIP)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1963333636522293,\n                                \"Height\": 0.006783793214708567,\n                                \"Left\": 0.5049282312393188,\n                                \"Top\": 0.5109180212020874\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5049282312393188,\n                                \"Y\": 0.5109180212020874\n                            }, {\n                                \"X\": 0.7012608647346497,\n                                \"Y\": 0.5110037326812744\n                            }, {\n                                \"X\": 0.701261579990387,\n                                \"Y\": 0.5177018046379089\n                            }, {\n                                \"X\": 0.5049283504486084,\n                                \"Y\": 0.5176159143447876\n                            }]\n                        },\n                        \"Confidence\": 81.80422973632812\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Monthly Income\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08573116362094879,\n                                \"Height\": 0.007097074296325445,\n                                \"Left\": 0.38308727741241455,\n                                \"Top\": 0.8024064302444458\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38308754563331604,\n                                \"Y\": 0.8024064302444458\n                            }, {\n                                \"X\": 0.46881845593452454,\n                                \"Y\": 0.8024471998214722\n                            }, {\n                                \"X\": 0.46881845593452454,\n                                \"Y\": 0.8095035552978516\n                            }, {\n                                \"X\": 0.38308727741241455,\n                                \"Y\": 0.8094626665115356\n                            }]\n                        },\n                        \"Confidence\": 81.61337280273438\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13892126083374023,\n                                \"Height\": 0.008773265406489372,\n                                \"Left\": 0.35799703001976013,\n                                \"Top\": 0.8139454126358032\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35799744725227356,\n                                \"Y\": 0.8139454126358032\n                            }, {\n                                \"X\": 0.4969181716442108,\n                                \"Y\": 0.8140116930007935\n                            }, {\n                                \"X\": 0.49691829085350037,\n                                \"Y\": 0.8227186799049377\n                            }, {\n                                \"X\": 0.35799703001976013,\n                                \"Y\": 0.822652280330658\n                            }]\n                        },\n                        \"Confidence\": 81.61337280273438\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Former Address (street, city, state, ZIP)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19549353420734406,\n                                \"Height\": 0.007035259623080492,\n                                \"Left\": 0.5049882531166077,\n                                \"Top\": 0.6105594038963318\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5049882531166077,\n                                \"Y\": 0.6105594038963318\n                            }, {\n                                \"X\": 0.7004810571670532,\n                                \"Y\": 0.6106473207473755\n                            }, {\n                                \"X\": 0.7004817724227905,\n                                \"Y\": 0.6175946593284607\n                            }, {\n                                \"X\": 0.5049883723258972,\n                                \"Y\": 0.6175065040588379\n                            }]\n                        },\n                        \"Confidence\": 80.8881607055664\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yrs. employed in this line of work/profession\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1357070952653885,\n                                \"Height\": 0.012437739409506321,\n                                \"Left\": 0.8118630051612854,\n                                \"Top\": 0.6943914890289307\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8118630051612854,\n                                \"Y\": 0.6943914890289307\n                            }, {\n                                \"X\": 0.9475674629211426,\n                                \"Y\": 0.6944540143013\n                            }, {\n                                \"X\": 0.9475700855255127,\n                                \"Y\": 0.7068291902542114\n                            }, {\n                                \"X\": 0.8118649125099182,\n                                \"Y\": 0.7067664265632629\n                            }]\n                        },\n                        \"Confidence\": 80.67554473876953\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Monthly Income\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08595205843448639,\n                                \"Height\": 0.007140049710869789,\n                                \"Left\": 0.8365961313247681,\n                                \"Top\": 0.8024545907974243\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8365961313247681,\n                                \"Y\": 0.8024545907974243\n                            }, {\n                                \"X\": 0.9225467443466187,\n                                \"Y\": 0.8024954795837402\n                            }, {\n                                \"X\": 0.9225481748580933,\n                                \"Y\": 0.8095946311950684\n                            }, {\n                                \"X\": 0.8365972638130188,\n                                \"Y\": 0.8095536828041077\n                            }]\n                        },\n                        \"Confidence\": 80.3887939453125\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1395030915737152,\n                                \"Height\": 0.007731023710221052,\n                                \"Left\": 0.8124880194664001,\n                                \"Top\": 0.8151808977127075\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8124880194664001,\n                                \"Y\": 0.8151808977127075\n                            }, {\n                                \"X\": 0.951989471912384,\n                                \"Y\": 0.8152474761009216\n                            }, {\n                                \"X\": 0.951991081237793,\n                                \"Y\": 0.8229119181632996\n                            }, {\n                                \"X\": 0.8124892115592957,\n                                \"Y\": 0.8228452205657959\n                            }]\n                        },\n                        \"Confidence\": 80.3887939453125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name & Address of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15706439316272736,\n                                \"Height\": 0.007452317979186773,\n                                \"Left\": 0.5054519772529602,\n                                \"Top\": 0.8438098430633545\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5054519772529602,\n                                \"Y\": 0.8438098430633545\n                            }, {\n                                \"X\": 0.6625156998634338,\n                                \"Y\": 0.8438854217529297\n                            }, {\n                                \"X\": 0.6625163555145264,\n                                \"Y\": 0.8512622117996216\n                            }, {\n                                \"X\": 0.5054520964622498,\n                                \"Y\": 0.8511864542961121\n                            }]\n                        },\n                        \"Confidence\": 78.61383056640625\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other (explain):\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0812743753194809,\n                                \"Height\": 0.007073977496474981,\n                                \"Left\": 0.6343425512313843,\n                                \"Top\": 0.19136184453964233\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6343425512313843,\n                                \"Y\": 0.19136184453964233\n                            }, {\n                                \"X\": 0.7156161665916443,\n                                \"Y\": 0.19139385223388672\n                            }, {\n                                \"X\": 0.7156169414520264,\n                                \"Y\": 0.19843582808971405\n                            }, {\n                                \"X\": 0.6343430876731873,\n                                \"Y\": 0.1984037309885025\n                            }]\n                        },\n                        \"Confidence\": 78.26751708984375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"ARM (type):\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06338541209697723,\n                                \"Height\": 0.007096895482391119,\n                                \"Left\": 0.6351272463798523,\n                                \"Top\": 0.2035236358642578\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6351272463798523,\n                                \"Y\": 0.2035236358642578\n                            }, {\n                                \"X\": 0.6985118985176086,\n                                \"Y\": 0.20354871451854706\n                            }, {\n                                \"X\": 0.6985126733779907,\n                                \"Y\": 0.21062053740024567\n                            }, {\n                                \"X\": 0.6351277828216553,\n                                \"Y\": 0.21059541404247284\n                            }]\n                        },\n                        \"Confidence\": 78.1895751953125\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Co-Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05797908455133438,\n                                \"Height\": 0.005556954070925713,\n                                \"Left\": 0.37635213136672974,\n                                \"Top\": 0.14322595298290253\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.37635233998298645,\n                                \"Y\": 0.14322595298290253\n                            }, {\n                                \"X\": 0.4343312084674835,\n                                \"Y\": 0.14324842393398285\n                            }, {\n                                \"X\": 0.43433111906051636,\n                                \"Y\": 0.1487829089164734\n                            }, {\n                                \"X\": 0.37635213136672974,\n                                \"Y\": 0.14876040816307068\n                            }]\n                        },\n                        \"Confidence\": 77.65177154541016\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yrs. School\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03203418105840683,\n                                \"Height\": 0.011773989535868168,\n                                \"Left\": 0.9117197394371033,\n                                \"Top\": 0.462548166513443\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9117197394371033,\n                                \"Y\": 0.462548166513443\n                            }, {\n                                \"X\": 0.9437513947486877,\n                                \"Y\": 0.4625619351863861\n                            }, {\n                                \"X\": 0.9437538981437683,\n                                \"Y\": 0.4743221700191498\n                            }, {\n                                \"X\": 0.9117220640182495,\n                                \"Y\": 0.4743083417415619\n                            }]\n                        },\n                        \"Confidence\": 77.56321716308594\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Business Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14718641340732574,\n                                \"Height\": 0.006308787502348423,\n                                \"Left\": 0.7881006002426147,\n                                \"Top\": 0.8256168961524963\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7881006002426147,\n                                \"Y\": 0.8256168961524963\n                            }, {\n                                \"X\": 0.9352856874465942,\n                                \"Y\": 0.8256873488426208\n                            }, {\n                                \"X\": 0.9352869987487793,\n                                \"Y\": 0.8319256901741028\n                            }, {\n                                \"X\": 0.7881014943122864,\n                                \"Y\": 0.8318551182746887\n                            }]\n                        },\n                        \"Confidence\": 76.772705078125\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Year Lot Acquired\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.047349460422992706,\n                                \"Height\": 0.014404335990548134,\n                                \"Left\": 0.04618204012513161,\n                                \"Top\": 0.3044324219226837\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04618474841117859,\n                                \"Y\": 0.3044324219226837\n                            }, {\n                                \"X\": 0.09353149682283401,\n                                \"Y\": 0.3044517934322357\n                            }, {\n                                \"X\": 0.0935290977358818,\n                                \"Y\": 0.3188367486000061\n                            }, {\n                                \"X\": 0.04618204012513161,\n                                \"Y\": 0.31881728768348694\n                            }]\n                        },\n                        \"Confidence\": 76.32211303710938\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Source of Down Payment, Settlement Charges, and/or Subordinate Financing (explain)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.45787909626960754,\n                                \"Height\": 0.008044127374887466,\n                                \"Left\": 0.048327937722206116,\n                                \"Top\": 0.41329893469810486\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04832940921187401,\n                                \"Y\": 0.41329893469810486\n                            }, {\n                                \"X\": 0.5062068700790405,\n                                \"Y\": 0.413492888212204\n                            }, {\n                                \"X\": 0.5062070488929749,\n                                \"Y\": 0.421343058347702\n                            }, {\n                                \"X\": 0.048327937722206116,\n                                \"Y\": 0.4211486577987671\n                            }]\n                        },\n                        \"Confidence\": 76.02371215820312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"EQUITY ON SUBJECT PROPERTY\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20891548693180084,\n                                \"Height\": 0.0072941528633236885,\n                                \"Left\": 0.04855184629559517,\n                                \"Top\": 0.42181771993637085\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04855319485068321,\n                                \"Y\": 0.42181771993637085\n                            }, {\n                                \"X\": 0.2574673295021057,\n                                \"Y\": 0.421906441450119\n                            }, {\n                                \"X\": 0.2574666440486908,\n                                \"Y\": 0.42911186814308167\n                            }, {\n                                \"X\": 0.04855184629559517,\n                                \"Y\": 0.4290229380130768\n                            }]\n                        },\n                        \"Confidence\": 76.02371215820312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dependents (not listed by Co-Borrower) no. ages\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18021558225154877,\n                                \"Height\": 0.01007497776299715,\n                                \"Left\": 0.3010905981063843,\n                                \"Top\": 0.48670634627342224\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30109134316444397,\n                                \"Y\": 0.48670634627342224\n                            }, {\n                                \"X\": 0.4813061058521271,\n                                \"Y\": 0.486784428358078\n                            }, {\n                                \"X\": 0.48130616545677185,\n                                \"Y\": 0.4967813193798065\n                            }, {\n                                \"X\": 0.3010905981063843,\n                                \"Y\": 0.49670296907424927\n                            }]\n                        },\n                        \"Confidence\": 75.80498504638672\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19621139764785767,\n                                \"Height\": 0.010110541246831417,\n                                \"Left\": 0.29982081055641174,\n                                \"Top\": 0.4967024326324463\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29982155561447144,\n                                \"Y\": 0.4967024326324463\n                            }, {\n                                \"X\": 0.49603208899497986,\n                                \"Y\": 0.4967877268791199\n                            }, {\n                                \"X\": 0.4960322082042694,\n                                \"Y\": 0.5068129897117615\n                            }, {\n                                \"X\": 0.29982081055641174,\n                                \"Y\": 0.506727397441864\n                            }]\n                        },\n                        \"Confidence\": 75.80498504638672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Monthly Income\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08554212749004364,\n                                \"Height\": 0.006997501477599144,\n                                \"Left\": 0.8364730477333069,\n                                \"Top\": 0.8796000480651855\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8364730477333069,\n                                \"Y\": 0.8796000480651855\n                            }, {\n                                \"X\": 0.9220137596130371,\n                                \"Y\": 0.879641592502594\n                            }, {\n                                \"X\": 0.9220151901245117,\n                                \"Y\": 0.8865975737571716\n                            }, {\n                                \"X\": 0.8364741802215576,\n                                \"Y\": 0.8865559101104736\n                            }]\n                        },\n                        \"Confidence\": 75.70925903320312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14030303061008453,\n                                \"Height\": 0.00822451338171959,\n                                \"Left\": 0.8125525712966919,\n                                \"Top\": 0.8920270800590515\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8125525712966919,\n                                \"Y\": 0.8920270800590515\n                            }, {\n                                \"X\": 0.952853798866272,\n                                \"Y\": 0.8920955061912537\n                            }, {\n                                \"X\": 0.9528555870056152,\n                                \"Y\": 0.9002516269683838\n                            }, {\n                                \"X\": 0.8125538229942322,\n                                \"Y\": 0.9001830816268921\n                            }]\n                        },\n                        \"Confidence\": 75.70925903320312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yrs. on this job\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08181559294462204,\n                                \"Height\": 0.007168132811784744,\n                                \"Left\": 0.8386324644088745,\n                                \"Top\": 0.6699267625808716\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8386324644088745,\n                                \"Y\": 0.6699267625808716\n                            }, {\n                                \"X\": 0.9204466342926025,\n                                \"Y\": 0.6699641942977905\n                            }, {\n                                \"X\": 0.9204480648040771,\n                                \"Y\": 0.6770948767662048\n                            }, {\n                                \"X\": 0.83863365650177,\n                                \"Y\": 0.6770573854446411\n                            }]\n                        },\n                        \"Confidence\": 75.50264739990234\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dates (from to)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08795623481273651,\n                                \"Height\": 0.006700905039906502,\n                                \"Left\": 0.8355054259300232,\n                                \"Top\": 0.844001054763794\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8355054259300232,\n                                \"Y\": 0.844001054763794\n                            }, {\n                                \"X\": 0.9234603047370911,\n                                \"Y\": 0.8440433740615845\n                            }, {\n                                \"X\": 0.9234616160392761,\n                                \"Y\": 0.8507019877433777\n                            }, {\n                                \"X\": 0.8355064988136292,\n                                \"Y\": 0.8506595492362976\n                            }]\n                        },\n                        \"Confidence\": 74.85198974609375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Business Phone (incl. area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14763537049293518,\n                                \"Height\": 0.006039637606590986,\n                                \"Left\": 0.7875761389732361,\n                                \"Top\": 0.9029204845428467\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7875761389732361,\n                                \"Y\": 0.9029204845428467\n                            }, {\n                                \"X\": 0.9352102875709534,\n                                \"Y\": 0.9029926657676697\n                            }, {\n                                \"X\": 0.9352114796638489,\n                                \"Y\": 0.9089601635932922\n                            }, {\n                                \"X\": 0.7875769734382629,\n                                \"Y\": 0.9088878631591797\n                            }]\n                        },\n                        \"Confidence\": 72.82479858398438\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"USDA/Rural Housing Service\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.24929212033748627,\n                                \"Height\": 0.0076605575159192085,\n                                \"Left\": 0.22441153228282928,\n                                \"Top\": 0.17903968691825867\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22441235184669495,\n                                \"Y\": 0.17903968691825867\n                            }, {\n                                \"X\": 0.47370362281799316,\n                                \"Y\": 0.1791374683380127\n                            }, {\n                                \"X\": 0.47370365262031555,\n                                \"Y\": 0.186700239777565\n                            }, {\n                                \"X\": 0.22441153228282928,\n                                \"Y\": 0.18660219013690948\n                            }]\n                        },\n                        \"Confidence\": 70.23719024658203\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025225820019841194,\n                                \"Height\": 0.011641298420727253,\n                                \"Left\": 0.1930646300315857,\n                                \"Top\": 0.1742900013923645\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1930660605430603,\n                                \"Y\": 0.1742900013923645\n                            }, {\n                                \"X\": 0.21829044818878174,\n                                \"Y\": 0.17429988086223602\n                            }, {\n                                \"X\": 0.21828915178775787,\n                                \"Y\": 0.18593129515647888\n                            }, {\n                                \"X\": 0.1930646300315857,\n                                \"Y\": 0.18592137098312378\n                            }]\n                        },\n                        \"Confidence\": 99.7480239868164\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No. Yrs.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04343399778008461,\n                                \"Height\": 0.005897075869143009,\n                                \"Left\": 0.9088320732116699,\n                                \"Top\": 0.6144402623176575\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9088320732116699,\n                                \"Y\": 0.6144402623176575\n                            }, {\n                                \"X\": 0.9522647857666016,\n                                \"Y\": 0.6144598126411438\n                            }, {\n                                \"X\": 0.9522660374641418,\n                                \"Y\": 0.6203373074531555\n                            }, {\n                                \"X\": 0.9088332056999207,\n                                \"Y\": 0.6203176975250244\n                            }]\n                        },\n                        \"Confidence\": 65.57039642333984\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No. Yrs.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04289988428354263,\n                                \"Height\": 0.006280553061515093,\n                                \"Left\": 0.4499923586845398,\n                                \"Top\": 0.512991726398468\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.44999241828918457,\n                                \"Y\": 0.512991726398468\n                            }, {\n                                \"X\": 0.49289217591285706,\n                                \"Y\": 0.5130104422569275\n                            }, {\n                                \"X\": 0.49289223551750183,\n                                \"Y\": 0.5192722678184509\n                            }, {\n                                \"X\": 0.4499923586845398,\n                                \"Y\": 0.5192534923553467\n                            }]\n                        },\n                        \"Confidence\": 59.504844665527344\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"11/1\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02291906625032425,\n                                \"Height\": 0.007456286810338497,\n                                \"Left\": 0.38859933614730835,\n                                \"Top\": 0.5108301043510437\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38859957456588745,\n                                \"Y\": 0.5108301043510437\n                            }, {\n                                \"X\": 0.411518394947052,\n                                \"Y\": 0.510840117931366\n                            }, {\n                                \"X\": 0.4115182161331177,\n                                \"Y\": 0.518286406993866\n                            }, {\n                                \"X\": 0.38859933614730835,\n                                \"Y\": 0.5182763934135437\n                            }]\n                        },\n                        \"Confidence\": 59.504844665527344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Former Address (street, city, state, ZIP)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19423602521419525,\n                                \"Height\": 0.007104439195245504,\n                                \"Left\": 0.04675156995654106,\n                                \"Top\": 0.6105002164840698\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04675288870930672,\n                                \"Y\": 0.6105002164840698\n                            }, {\n                                \"X\": 0.2409875988960266,\n                                \"Y\": 0.6105875968933105\n                            }, {\n                                \"X\": 0.2409868836402893,\n                                \"Y\": 0.6176046133041382\n                            }, {\n                                \"X\": 0.04675156995654106,\n                                \"Y\": 0.6175170540809631\n                            }]\n                        },\n                        \"Confidence\": 59.4456787109375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0185219869017601,\n                                \"Height\": 0.007034121546894312,\n                                \"Left\": 0.7595421075820923,\n                                \"Top\": 0.4903467893600464\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7595421075820923,\n                                \"Y\": 0.4903467893600464\n                            }, {\n                                \"X\": 0.7780631184577942,\n                                \"Y\": 0.4903548061847687\n                            }, {\n                                \"X\": 0.7780641317367554,\n                                \"Y\": 0.49738091230392456\n                            }, {\n                                \"X\": 0.7595430612564087,\n                                \"Y\": 0.4973728656768799\n                            }]\n                        },\n                        \"Confidence\": 56.31477737426758\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fee Simple\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06863376498222351,\n                                \"Height\": 0.008035401813685894,\n                                \"Left\": 0.8509705662727356,\n                                \"Top\": 0.3933916985988617\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8509705662727356,\n                                \"Y\": 0.3933916985988617\n                            }, {\n                                \"X\": 0.9196026921272278,\n                                \"Y\": 0.39342057704925537\n                            }, {\n                                \"X\": 0.9196043014526367,\n                                \"Y\": 0.40142709016799927\n                            }, {\n                                \"X\": 0.8509719371795654,\n                                \"Y\": 0.4013981521129608\n                            }]\n                        },\n                        \"Confidence\": 48.47975540161133\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023482901975512505,\n                                \"Height\": 0.011645257472991943,\n                                \"Left\": 0.8301658630371094,\n                                \"Top\": 0.38898828625679016\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8301658630371094,\n                                \"Y\": 0.38898828625679016\n                            }, {\n                                \"X\": 0.8536467552185059,\n                                \"Y\": 0.3889981508255005\n                            }, {\n                                \"X\": 0.8536487221717834,\n                                \"Y\": 0.4006335437297821\n                            }, {\n                                \"X\": 0.8301677107810974,\n                                \"Y\": 0.400623619556427\n                            }]\n                        },\n                        \"Confidence\": 99.88671875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Initials:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03253878280520439,\n                                \"Height\": 0.005385367665439844,\n                                \"Left\": 0.3611985743045807,\n                                \"Top\": 0.9589059948921204\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3611988127231598,\n                                \"Y\": 0.9589059948921204\n                            }, {\n                                \"X\": 0.3937373459339142,\n                                \"Y\": 0.9589221477508545\n                            }, {\n                                \"X\": 0.39373716711997986,\n                                \"Y\": 0.9642913341522217\n                            }, {\n                                \"X\": 0.3611985743045807,\n                                \"Y\": 0.9642751812934875\n                            }]\n                        },\n                        \"Confidence\": 41.644683837890625\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"community property rights pursuant to state law will not be used as a basis for loan qualification, but his or her liabilities must be considered because the spouse or other person has community property rights pursuant to applicable law and Borrower resides in a community property state, the security property is located in a community property state, or the Borrower is relying on other property located in a community property state as a basis for repayment of the loan.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.9127971529960632,\n                                \"Height\": 0.03943656012415886,\n                                \"Left\": 0.04616096615791321,\n                                \"Top\": 0.07733897864818573\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04616832360625267,\n                                \"Y\": 0.07733897864818573\n                            }, {\n                                \"X\": 0.9589495062828064,\n                                \"Y\": 0.07768465578556061\n                            }, {\n                                \"X\": 0.958958089351654,\n                                \"Y\": 0.11677554249763489\n                            }, {\n                                \"X\": 0.04616096615791321,\n                                \"Y\": 0.11642509698867798\n                            }]\n                        },\n                        \"Confidence\": 29.97382926940918\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02435711957514286,\n                                \"Height\": 0.010137861594557762,\n                                \"Left\": 0.48771947622299194,\n                                \"Top\": 0.06801456212997437\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.48771947622299194,\n                                \"Y\": 0.06801456212997437\n                            }, {\n                                \"X\": 0.5120763778686523,\n                                \"Y\": 0.06802375614643097\n                            }, {\n                                \"X\": 0.5120766162872314,\n                                \"Y\": 0.07815242558717728\n                            }, {\n                                \"X\": 0.4877195656299591,\n                                \"Y\": 0.07814320176839828\n                            }]\n                        },\n                        \"Confidence\": 99.8920669555664\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"the income or assets of a person other than the Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3127102553844452,\n                                \"Height\": 0.007487797178328037,\n                                \"Left\": 0.6355882883071899,\n                                \"Top\": 0.060425225645303726\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6355882883071899,\n                                \"Y\": 0.060425225645303726\n                            }, {\n                                \"X\": 0.9482969641685486,\n                                \"Y\": 0.06054293364286423\n                            }, {\n                                \"X\": 0.9482985138893127,\n                                \"Y\": 0.06791301816701889\n                            }, {\n                                \"X\": 0.6355888247489929,\n                                \"Y\": 0.06779500097036362\n                            }]\n                        },\n                        \"Confidence\": 27.014917373657227\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025138957425951958,\n                                \"Height\": 0.01084194891154766,\n                                \"Left\": 0.6051140427589417,\n                                \"Top\": 0.05598725751042366\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6051140427589417,\n                                \"Y\": 0.05598725751042366\n                            }, {\n                                \"X\": 0.6302522420883179,\n                                \"Y\": 0.05599670484662056\n                            }, {\n                                \"X\": 0.6302530169487,\n                                \"Y\": 0.06682920455932617\n                            }, {\n                                \"X\": 0.6051146984100342,\n                                \"Y\": 0.06681971997022629\n                            }]\n                        },\n                        \"Confidence\": 99.877685546875\n                    }]\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 10,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1003\",\n                \"Confidence\": 99.99991607666016\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"3\",\n                \"Confidence\": 99.96615600585938\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"OTHER_ASSETS_AND_CREDITS_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"LIABILITIES_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_LIABILITIES_AND_EXPENSES_DOES_NOT_APPLY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023686710745096207,\n                                \"Height\": 0.010380454361438751,\n                                \"Left\": 0.8649972677230835,\n                                \"Top\": 0.27049171924591064\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8649972677230835,\n                                \"Y\": 0.270523339509964\n                            }, {\n                                \"X\": 0.8886683583259583,\n                                \"Y\": 0.27049171924591064\n                            }, {\n                                \"X\": 0.8886839747428894,\n                                \"Y\": 0.28084057569503784\n                            }, {\n                                \"X\": 0.8650127649307251,\n                                \"Y\": 0.2808721661567688\n                            }]\n                        },\n                        \"Confidence\": 87.0\n                    }]\n                }, {\n                    \"Type\": \"ASSETS_TOTAL_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_ASSETS_AND_CREDITS_TOTAL_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16590259969234467,\n                                \"Height\": 0.007582793943583965,\n                                \"Left\": 0.4234640598297119,\n                                \"Top\": 0.47465959191322327\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4234640598297119,\n                                \"Y\": 0.4748770296573639\n                            }, {\n                                \"X\": 0.5893564820289612,\n                                \"Y\": 0.47465959191322327\n                            }, {\n                                \"X\": 0.5893666744232178,\n                                \"Y\": 0.4820251166820526\n                            }, {\n                                \"X\": 0.4234737455844879,\n                                \"Y\": 0.4822424054145813\n                            }]\n                        },\n                        \"Confidence\": 90.255859375\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"FRD MOTOR CR\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10021045804023743,\n                                \"Height\": 0.007028820458799601,\n                                \"Left\": 0.4242142140865326,\n                                \"Top\": 0.4866490066051483\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4242142140865326,\n                                \"Y\": 0.48678016662597656\n                            }, {\n                                \"X\": 0.5244153141975403,\n                                \"Y\": 0.4866490066051483\n                            }, {\n                                \"X\": 0.52442467212677,\n                                \"Y\": 0.493546724319458\n                            }, {\n                                \"X\": 0.42422327399253845,\n                                \"Y\": 0.4936778247356415\n                            }]\n                        },\n                        \"Confidence\": 90.255859375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16627000272274017,\n                                \"Height\": 0.0076078069396317005,\n                                \"Left\": 0.4233173429965973,\n                                \"Top\": 0.4030880033969879\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4233173429965973,\n                                \"Y\": 0.40330740809440613\n                            }, {\n                                \"X\": 0.5895771384239197,\n                                \"Y\": 0.4030880033969879\n                            }, {\n                                \"X\": 0.5895873308181763,\n                                \"Y\": 0.41047656536102295\n                            }, {\n                                \"X\": 0.4233270585536957,\n                                \"Y\": 0.4106958210468292\n                            }]\n                        },\n                        \"Confidence\": 90.15015411376953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"LINCOLN AUTOMOTIVE FIN\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17336153984069824,\n                                \"Height\": 0.007241020444780588,\n                                \"Left\": 0.4234149158000946,\n                                \"Top\": 0.41531944274902344\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4234149158000946,\n                                \"Y\": 0.4155479371547699\n                            }, {\n                                \"X\": 0.5967667698860168,\n                                \"Y\": 0.41531944274902344\n                            }, {\n                                \"X\": 0.5967764854431152,\n                                \"Y\": 0.42233213782310486\n                            }, {\n                                \"X\": 0.4234241545200348,\n                                \"Y\": 0.4225604832172394\n                            }]\n                        },\n                        \"Confidence\": 90.15015411376953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Jointly\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0351228341460228,\n                                \"Height\": 0.006909477524459362,\n                                \"Left\": 0.8127169013023376,\n                                \"Top\": 0.2749221622943878\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8127169013023376,\n                                \"Y\": 0.27496907114982605\n                            }, {\n                                \"X\": 0.8478295207023621,\n                                \"Y\": 0.2749221622943878\n                            }, {\n                                \"X\": 0.8478397727012634,\n                                \"Y\": 0.2817847728729248\n                            }, {\n                                \"X\": 0.8127270340919495,\n                                \"Y\": 0.28183165192604065\n                            }]\n                        },\n                        \"Confidence\": 89.8319091796875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024235639721155167,\n                                \"Height\": 0.01096436008810997,\n                                \"Left\": 0.7812702059745789,\n                                \"Top\": 0.2696080207824707\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7812702059745789,\n                                \"Y\": 0.26964038610458374\n                            }, {\n                                \"X\": 0.8054897785186768,\n                                \"Y\": 0.2696080207824707\n                            }, {\n                                \"X\": 0.8055058717727661,\n                                \"Y\": 0.2805400490760803\n                            }, {\n                                \"X\": 0.7812861800193787,\n                                \"Y\": 0.28057238459587097\n                            }]\n                        },\n                        \"Confidence\": 99.76789093017578\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.040450312197208405,\n                                \"Height\": 0.005300769116729498,\n                                \"Left\": 0.4240947663784027,\n                                \"Top\": 0.38752350211143494\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4240947663784027,\n                                \"Y\": 0.38757696747779846\n                            }, {\n                                \"X\": 0.4645380973815918,\n                                \"Y\": 0.38752350211143494\n                            }, {\n                                \"X\": 0.4645451009273529,\n                                \"Y\": 0.3927708566188812\n                            }, {\n                                \"X\": 0.42410168051719666,\n                                \"Y\": 0.39282429218292236\n                            }]\n                        },\n                        \"Confidence\": 89.82902526855469\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"414778856911\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08616825193166733,\n                                \"Height\": 0.0069222827441990376,\n                                \"Left\": 0.4230667054653168,\n                                \"Top\": 0.39174196124076843\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4230667054653168,\n                                \"Y\": 0.39185577630996704\n                            }, {\n                                \"X\": 0.5092257857322693,\n                                \"Y\": 0.39174196124076843\n                            }, {\n                                \"X\": 0.5092349648475647,\n                                \"Y\": 0.39855048060417175\n                            }, {\n                                \"X\": 0.4230756461620331,\n                                \"Y\": 0.3986642360687256\n                            }]\n                        },\n                        \"Confidence\": 89.82902526855469\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.040941495448350906,\n                                \"Height\": 0.005411832127720118,\n                                \"Left\": 0.42366665601730347,\n                                \"Top\": 0.60169917345047\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42366665601730347,\n                                \"Y\": 0.6017521619796753\n                            }, {\n                                \"X\": 0.4646010100841522,\n                                \"Y\": 0.60169917345047\n                            }, {\n                                \"X\": 0.4646081328392029,\n                                \"Y\": 0.6070579886436462\n                            }, {\n                                \"X\": 0.42367368936538696,\n                                \"Y\": 0.6071109771728516\n                            }]\n                        },\n                        \"Confidence\": 89.73270416259766\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"350181019845\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08720208704471588,\n                                \"Height\": 0.006932619493454695,\n                                \"Left\": 0.422891765832901,\n                                \"Top\": 0.6063456535339355\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.422891765832901,\n                                \"Y\": 0.6064584851264954\n                            }, {\n                                \"X\": 0.5100846290588379,\n                                \"Y\": 0.6063456535339355\n                            }, {\n                                \"X\": 0.5100938677787781,\n                                \"Y\": 0.6131654977798462\n                            }, {\n                                \"X\": 0.4229007065296173,\n                                \"Y\": 0.6132782697677612\n                            }]\n                        },\n                        \"Confidence\": 89.73270416259766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03975943475961685,\n                                \"Height\": 0.005293325521051884,\n                                \"Left\": 0.42363440990448,\n                                \"Top\": 0.5302008986473083\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42363440990448,\n                                \"Y\": 0.5302527546882629\n                            }, {\n                                \"X\": 0.4633868932723999,\n                                \"Y\": 0.5302008986473083\n                            }, {\n                                \"X\": 0.4633938670158386,\n                                \"Y\": 0.5354424118995667\n                            }, {\n                                \"X\": 0.42364129424095154,\n                                \"Y\": 0.5354942083358765\n                            }]\n                        },\n                        \"Confidence\": 89.49076843261719\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"49554692\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05855964124202728,\n                                \"Height\": 0.006532563827931881,\n                                \"Left\": 0.4234291911125183,\n                                \"Top\": 0.535044252872467\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4234291911125183,\n                                \"Y\": 0.5351205468177795\n                            }, {\n                                \"X\": 0.48198020458221436,\n                                \"Y\": 0.535044252872467\n                            }, {\n                                \"X\": 0.4819888472557068,\n                                \"Y\": 0.5415005683898926\n                            }, {\n                                \"X\": 0.4234376847743988,\n                                \"Y\": 0.5415768027305603\n                            }]\n                        },\n                        \"Confidence\": 89.49076843261719\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16636410355567932,\n                                \"Height\": 0.007280363235622644,\n                                \"Left\": 0.42334339022636414,\n                                \"Top\": 0.5462012887001038\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42334339022636414,\n                                \"Y\": 0.5464178323745728\n                            }, {\n                                \"X\": 0.5896977186203003,\n                                \"Y\": 0.5462012887001038\n                            }, {\n                                \"X\": 0.5897074937820435,\n                                \"Y\": 0.5532652735710144\n                            }, {\n                                \"X\": 0.4233526587486267,\n                                \"Y\": 0.5534816384315491\n                            }]\n                        },\n                        \"Confidence\": 89.43326568603516\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"LEVEL ONE BANK\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11379294842481613,\n                                \"Height\": 0.006886825431138277,\n                                \"Left\": 0.42461079359054565,\n                                \"Top\": 0.5583266019821167\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42461079359054565,\n                                \"Y\": 0.5584745407104492\n                            }, {\n                                \"X\": 0.538394570350647,\n                                \"Y\": 0.5583266019821167\n                            }, {\n                                \"X\": 0.5384037494659424,\n                                \"Y\": 0.5650656223297119\n                            }, {\n                                \"X\": 0.4246196448802948,\n                                \"Y\": 0.5652134418487549\n                            }]\n                        },\n                        \"Confidence\": 89.43326568603516\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.040786031633615494,\n                                \"Height\": 0.005344398785382509,\n                                \"Left\": 0.4231618344783783,\n                                \"Top\": 0.45889925956726074\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4231618344783783,\n                                \"Y\": 0.45895278453826904\n                            }, {\n                                \"X\": 0.46394082903862,\n                                \"Y\": 0.45889925956726074\n                            }, {\n                                \"X\": 0.4639478623867035,\n                                \"Y\": 0.46419015526771545\n                            }, {\n                                \"X\": 0.42316877841949463,\n                                \"Y\": 0.46424365043640137\n                            }]\n                        },\n                        \"Confidence\": 89.34709167480469\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"48126159\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0584205761551857,\n                                \"Height\": 0.006840512156486511,\n                                \"Left\": 0.42294177412986755,\n                                \"Top\": 0.4633316695690155\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42294177412986755,\n                                \"Y\": 0.46340829133987427\n                            }, {\n                                \"X\": 0.4813533127307892,\n                                \"Y\": 0.4633316695690155\n                            }, {\n                                \"X\": 0.48136234283447266,\n                                \"Y\": 0.47009557485580444\n                            }, {\n                                \"X\": 0.4229506552219391,\n                                \"Y\": 0.4701721668243408\n                            }]\n                        },\n                        \"Confidence\": 89.34709167480469\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16572482883930206,\n                                \"Height\": 0.007786551024764776,\n                                \"Left\": 0.42344602942466736,\n                                \"Top\": 0.3297770917415619\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42344602942466736,\n                                \"Y\": 0.32999730110168457\n                            }, {\n                                \"X\": 0.5891603827476501,\n                                \"Y\": 0.3297770917415619\n                            }, {\n                                \"X\": 0.5891708731651306,\n                                \"Y\": 0.33734360337257385\n                            }, {\n                                \"X\": 0.42345598340034485,\n                                \"Y\": 0.3375636339187622\n                            }]\n                        },\n                        \"Confidence\": 88.50349426269531\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"US BANK\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05892934277653694,\n                                \"Height\": 0.006988505367189646,\n                                \"Left\": 0.4238085448741913,\n                                \"Top\": 0.3440399765968323\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4238085448741913,\n                                \"Y\": 0.3441181480884552\n                            }, {\n                                \"X\": 0.48272863030433655,\n                                \"Y\": 0.3440399765968323\n                            }, {\n                                \"X\": 0.4827378988265991,\n                                \"Y\": 0.35095033049583435\n                            }, {\n                                \"X\": 0.42381763458251953,\n                                \"Y\": 0.3510284721851349\n                            }]\n                        },\n                        \"Confidence\": 88.50349426269531\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03914841637015343,\n                                \"Height\": 0.00524740619584918,\n                                \"Left\": 0.42413321137428284,\n                                \"Top\": 0.6731274724006653\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42413321137428284,\n                                \"Y\": 0.6731778383255005\n                            }, {\n                                \"X\": 0.4632747173309326,\n                                \"Y\": 0.6731274724006653\n                            }, {\n                                \"X\": 0.46328163146972656,\n                                \"Y\": 0.6783245801925659\n                            }, {\n                                \"X\": 0.4241400361061096,\n                                \"Y\": 0.6783748865127563\n                            }]\n                        },\n                        \"Confidence\": 87.95194244384766\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"542418113320\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08684714883565903,\n                                \"Height\": 0.007277945056557655,\n                                \"Left\": 0.4239408075809479,\n                                \"Top\": 0.6772242784500122\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4239408075809479,\n                                \"Y\": 0.6773359179496765\n                            }, {\n                                \"X\": 0.5107782483100891,\n                                \"Y\": 0.6772242784500122\n                            }, {\n                                \"X\": 0.5107879638671875,\n                                \"Y\": 0.6843907237052917\n                            }, {\n                                \"X\": 0.4239502251148224,\n                                \"Y\": 0.6845022439956665\n                            }]\n                        },\n                        \"Confidence\": 87.95194244384766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Not Jointly\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05821963772177696,\n                                \"Height\": 0.006856938824057579,\n                                \"Left\": 0.894650399684906,\n                                \"Top\": 0.27490362524986267\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.894650399684906,\n                                \"Y\": 0.2749813497066498\n                            }, {\n                                \"X\": 0.95285964012146,\n                                \"Y\": 0.27490362524986267\n                            }, {\n                                \"X\": 0.9528700709342957,\n                                \"Y\": 0.2816828489303589\n                            }, {\n                                \"X\": 0.8946606516838074,\n                                \"Y\": 0.2817605435848236\n                            }]\n                        },\n                        \"Confidence\": 87.89957427978516\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02367466874420643,\n                                \"Height\": 0.010415260680019855,\n                                \"Left\": 0.8651629090309143,\n                                \"Top\": 0.27054736018180847\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8651629090309143,\n                                \"Y\": 0.2705789804458618\n                            }, {\n                                \"X\": 0.8888219594955444,\n                                \"Y\": 0.27054736018180847\n                            }, {\n                                \"X\": 0.8888375759124756,\n                                \"Y\": 0.2809310555458069\n                            }, {\n                                \"X\": 0.8651784658432007,\n                                \"Y\": 0.28096261620521545\n                            }]\n                        },\n                        \"Confidence\": 99.71598052978516\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16627374291419983,\n                                \"Height\": 0.007385354954749346,\n                                \"Left\": 0.42295172810554504,\n                                \"Top\": 0.617530107498169\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42295172810554504,\n                                \"Y\": 0.617745041847229\n                            }, {\n                                \"X\": 0.5892155766487122,\n                                \"Y\": 0.617530107498169\n                            }, {\n                                \"X\": 0.5892254710197449,\n                                \"Y\": 0.624700665473938\n                            }, {\n                                \"X\": 0.42296114563941956,\n                                \"Y\": 0.6249154210090637\n                            }]\n                        },\n                        \"Confidence\": 87.4775161743164\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"CITI\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024489812552928925,\n                                \"Height\": 0.006725655402988195,\n                                \"Left\": 0.42365795373916626,\n                                \"Top\": 0.6297173500061035\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42365795373916626,\n                                \"Y\": 0.6297489404678345\n                            }, {\n                                \"X\": 0.44813892245292664,\n                                \"Y\": 0.6297173500061035\n                            }, {\n                                \"X\": 0.4481477737426758,\n                                \"Y\": 0.6364114284515381\n                            }, {\n                                \"X\": 0.42366674542427063,\n                                \"Y\": 0.636443018913269\n                            }]\n                        },\n                        \"Confidence\": 87.4775161743164\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16621355712413788,\n                                \"Height\": 0.007673222105950117,\n                                \"Left\": 0.4232584238052368,\n                                \"Top\": 0.6888333559036255\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4232584238052368,\n                                \"Y\": 0.6890467405319214\n                            }, {\n                                \"X\": 0.5894616842269897,\n                                \"Y\": 0.6888333559036255\n                            }, {\n                                \"X\": 0.5894719958305359,\n                                \"Y\": 0.6962934136390686\n                            }, {\n                                \"X\": 0.42326819896698,\n                                \"Y\": 0.6965066194534302\n                            }]\n                        },\n                        \"Confidence\": 86.51290893554688\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"AES/PNC NATL CITY\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13059230148792267,\n                                \"Height\": 0.007378715556114912,\n                                \"Left\": 0.42280313372612,\n                                \"Top\": 0.7008671760559082\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42280313372612,\n                                \"Y\": 0.7010346055030823\n                            }, {\n                                \"X\": 0.5533855557441711,\n                                \"Y\": 0.7008671760559082\n                            }, {\n                                \"X\": 0.5533954501152039,\n                                \"Y\": 0.7080785632133484\n                            }, {\n                                \"X\": 0.4228126108646393,\n                                \"Y\": 0.7082458734512329\n                            }]\n                        },\n                        \"Confidence\": 86.51290893554688\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Bank, S&L, or Credit Union\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2601912021636963,\n                                \"Height\": 0.007037370000034571,\n                                \"Left\": 0.046885598450899124,\n                                \"Top\": 0.5699142813682556\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046885598450899124,\n                                \"Y\": 0.5702521800994873\n                            }, {\n                                \"X\": 0.3070683181285858,\n                                \"Y\": 0.5699142813682556\n                            }, {\n                                \"X\": 0.3070768117904663,\n                                \"Y\": 0.5766139626502991\n                            }, {\n                                \"X\": 0.046893347054719925,\n                                \"Y\": 0.5769516825675964\n                            }]\n                        },\n                        \"Confidence\": 86.0757827758789\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03867173567414284,\n                                \"Height\": 0.0052182599902153015,\n                                \"Left\": 0.42343634366989136,\n                                \"Top\": 0.7445109486579895\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42343634366989136,\n                                \"Y\": 0.7445603013038635\n                            }, {\n                                \"X\": 0.46210119128227234,\n                                \"Y\": 0.7445109486579895\n                            }, {\n                                \"X\": 0.4621080756187439,\n                                \"Y\": 0.7496798634529114\n                            }, {\n                                \"X\": 0.42344310879707336,\n                                \"Y\": 0.7497292160987854\n                            }]\n                        },\n                        \"Confidence\": 85.9541244506836\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"3027780186PA00002\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12638281285762787,\n                                \"Height\": 0.006917332764714956,\n                                \"Left\": 0.42354199290275574,\n                                \"Top\": 0.7491418123245239\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42354199290275574,\n                                \"Y\": 0.7493031024932861\n                            }, {\n                                \"X\": 0.5499155521392822,\n                                \"Y\": 0.7491418123245239\n                            }, {\n                                \"X\": 0.5499247908592224,\n                                \"Y\": 0.7558979988098145\n                            }, {\n                                \"X\": 0.42355087399482727,\n                                \"Y\": 0.7560591697692871\n                            }]\n                        },\n                        \"Confidence\": 85.9541244506836\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Company\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16642361879348755,\n                                \"Height\": 0.007682223804295063,\n                                \"Left\": 0.42320579290390015,\n                                \"Top\": 0.7603123188018799\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42320579290390015,\n                                \"Y\": 0.7605244517326355\n                            }, {\n                                \"X\": 0.5896191000938416,\n                                \"Y\": 0.7603123188018799\n                            }, {\n                                \"X\": 0.5896294116973877,\n                                \"Y\": 0.7677825689315796\n                            }, {\n                                \"X\": 0.4232155978679657,\n                                \"Y\": 0.7679945826530457\n                            }]\n                        },\n                        \"Confidence\": 85.92237854003906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"WELLS FARGO HM MORTGAG\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19232146441936493,\n                                \"Height\": 0.007537120953202248,\n                                \"Left\": 0.4234277009963989,\n                                \"Top\": 0.7721588015556335\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4234277009963989,\n                                \"Y\": 0.7724036574363708\n                            }, {\n                                \"X\": 0.6157389879226685,\n                                \"Y\": 0.7721588015556335\n                            }, {\n                                \"X\": 0.615749180316925,\n                                \"Y\": 0.7794512510299683\n                            }, {\n                                \"X\": 0.42343729734420776,\n                                \"Y\": 0.7796959280967712\n                            }]\n                        },\n                        \"Confidence\": 85.92237854003906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04090021550655365,\n                                \"Height\": 0.005439556669443846,\n                                \"Left\": 0.4234086871147156,\n                                \"Top\": 0.8162259459495544\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4234086871147156,\n                                \"Y\": 0.816277801990509\n                            }, {\n                                \"X\": 0.464301735162735,\n                                \"Y\": 0.8162259459495544\n                            }, {\n                                \"X\": 0.46430888772010803,\n                                \"Y\": 0.8216136693954468\n                            }, {\n                                \"X\": 0.42341575026512146,\n                                \"Y\": 0.8216654658317566\n                            }]\n                        },\n                        \"Confidence\": 85.02201080322266\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"7080030550552\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09341804683208466,\n                                \"Height\": 0.00673393439501524,\n                                \"Left\": 0.423981249332428,\n                                \"Top\": 0.8208094835281372\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.423981249332428,\n                                \"Y\": 0.8209278583526611\n                            }, {\n                                \"X\": 0.5173903703689575,\n                                \"Y\": 0.8208094835281372\n                            }, {\n                                \"X\": 0.5173993110656738,\n                                \"Y\": 0.8274251818656921\n                            }, {\n                                \"X\": 0.4239899218082428,\n                                \"Y\": 0.8275434374809265\n                            }]\n                        },\n                        \"Confidence\": 85.02201080322266\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Bank, S&L, or Credit Union\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.26047757267951965,\n                                \"Height\": 0.007109407801181078,\n                                \"Left\": 0.04603579640388489,\n                                \"Top\": 0.4986828863620758\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04603579640388489,\n                                \"Y\": 0.4990234971046448\n                            }, {\n                                \"X\": 0.3065048158168793,\n                                \"Y\": 0.4986828863620758\n                            }, {\n                                \"X\": 0.30651336908340454,\n                                \"Y\": 0.5054519176483154\n                            }, {\n                                \"X\": 0.046043623238801956,\n                                \"Y\": 0.5057923197746277\n                            }]\n                        },\n                        \"Confidence\": 84.46493530273438\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Bank, S&L, or Credit Union\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2599673867225647,\n                                \"Height\": 0.007116710767149925,\n                                \"Left\": 0.04641979560256004,\n                                \"Top\": 0.42702817916870117\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04641979560256004,\n                                \"Y\": 0.42737045884132385\n                            }, {\n                                \"X\": 0.30637863278388977,\n                                \"Y\": 0.42702817916870117\n                            }, {\n                                \"X\": 0.30638718605041504,\n                                \"Y\": 0.43380284309387207\n                            }, {\n                                \"X\": 0.04642763361334801,\n                                \"Y\": 0.43414488434791565\n                            }]\n                        },\n                        \"Confidence\": 81.50028228759766\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Name and address of Bank, S&L, or Credit Union CLOSING/RESERVES\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3588656187057495,\n                                \"Height\": 0.0075842286460101604,\n                                \"Left\": 0.047212470322847366,\n                                \"Top\": 0.35318660736083984\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.047212470322847366,\n                                \"Y\": 0.3536624312400818\n                            }, {\n                                \"X\": 0.4060688018798828,\n                                \"Y\": 0.35318660736083984\n                            }, {\n                                \"X\": 0.4060780704021454,\n                                \"Y\": 0.3602953255176544\n                            }, {\n                                \"X\": 0.04722069948911667,\n                                \"Y\": 0.3607708215713501\n                            }]\n                        },\n                        \"Confidence\": 80.8586196899414\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Net worth of business(es) owned (attach financial statement)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1776946783065796,\n                                \"Height\": 0.014468914829194546,\n                                \"Left\": 0.045584723353385925,\n                                \"Top\": 0.7722333669662476\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.045584723353385925,\n                                \"Y\": 0.7724595665931702\n                            }, {\n                                \"X\": 0.22326187789440155,\n                                \"Y\": 0.7722333669662476\n                            }, {\n                                \"X\": 0.22327940165996552,\n                                \"Y\": 0.7864763140678406\n                            }, {\n                                \"X\": 0.045601192861795425,\n                                \"Y\": 0.7867022752761841\n                            }]\n                        },\n                        \"Confidence\": 69.92788696289062\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1331595480442047,\n                                \"Height\": 0.00713887857273221,\n                                \"Left\": 0.2780115604400635,\n                                \"Top\": 0.7729209661483765\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2780115604400635,\n                                \"Y\": 0.7730904817581177\n                            }, {\n                                \"X\": 0.41116198897361755,\n                                \"Y\": 0.7729209661483765\n                            }, {\n                                \"X\": 0.4111711084842682,\n                                \"Y\": 0.7798904180526733\n                            }, {\n                                \"X\": 0.27802029252052307,\n                                \"Y\": 0.780059814453125\n                            }]\n                        },\n                        \"Confidence\": 69.92788696289062\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Stocks & Bonds (Company name/number & description)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.21922364830970764,\n                                \"Height\": 0.013689540326595306,\n                                \"Left\": 0.046477071940898895,\n                                \"Top\": 0.6413461565971375\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046477071940898895,\n                                \"Y\": 0.6416289210319519\n                            }, {\n                                \"X\": 0.26568397879600525,\n                                \"Y\": 0.6413461565971375\n                            }, {\n                                \"X\": 0.26570072770118713,\n                                \"Y\": 0.6547533869743347\n                            }, {\n                                \"X\": 0.04649258404970169,\n                                \"Y\": 0.6550357341766357\n                            }]\n                        },\n                        \"Confidence\": 69.31793975830078\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041481126099824905,\n                                \"Height\": 0.005260352976620197,\n                                \"Left\": 0.04634052887558937,\n                                \"Top\": 0.6251319646835327\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04634052887558937,\n                                \"Y\": 0.6251855492591858\n                            }, {\n                                \"X\": 0.0878155454993248,\n                                \"Y\": 0.6251319646835327\n                            }, {\n                                \"X\": 0.08782165497541428,\n                                \"Y\": 0.630338728427887\n                            }, {\n                                \"X\": 0.046346552670001984,\n                                \"Y\": 0.63039231300354\n                            }]\n                        },\n                        \"Confidence\": 67.27731323242188\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Real estate owned (enter market value from schedule of real estate owned)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2051643282175064,\n                                \"Height\": 0.014369460754096508,\n                                \"Left\": 0.046155575662851334,\n                                \"Top\": 0.7367798686027527\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046155575662851334,\n                                \"Y\": 0.7370420098304749\n                            }, {\n                                \"X\": 0.2513023912906647,\n                                \"Y\": 0.7367798686027527\n                            }, {\n                                \"X\": 0.25131991505622864,\n                                \"Y\": 0.7508875727653503\n                            }, {\n                                \"X\": 0.0461718924343586,\n                                \"Y\": 0.7511493563652039\n                            }]\n                        },\n                        \"Confidence\": 65.8686294555664\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 152,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1336548626422882,\n                                \"Height\": 0.0083897290751338,\n                                \"Left\": 0.27707037329673767,\n                                \"Top\": 0.7365902066230774\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27707037329673767,\n                                \"Y\": 0.7367609739303589\n                            }, {\n                                \"X\": 0.4107144773006439,\n                                \"Y\": 0.7365902066230774\n                            }, {\n                                \"X\": 0.4107252359390259,\n                                \"Y\": 0.7448093295097351\n                            }, {\n                                \"X\": 0.2770806550979614,\n                                \"Y\": 0.7449799180030823\n                            }]\n                        },\n                        \"Confidence\": 65.8686294555664\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Vested interest in retirement fund\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17843525111675262,\n                                \"Height\": 0.0065805790945887566,\n                                \"Left\": 0.046993572264909744,\n                                \"Top\": 0.761464536190033\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046993572264909744,\n                                \"Y\": 0.7616919279098511\n                            }, {\n                                \"X\": 0.2254209965467453,\n                                \"Y\": 0.761464536190033\n                            }, {\n                                \"X\": 0.22542881965637207,\n                                \"Y\": 0.7678177952766418\n                            }, {\n                                \"X\": 0.04700092226266861,\n                                \"Y\": 0.7680451273918152\n                            }]\n                        },\n                        \"Confidence\": 64.33595275878906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13315972685813904,\n                                \"Height\": 0.00697863707318902,\n                                \"Left\": 0.2779347598552704,\n                                \"Top\": 0.7613596320152283\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2779347598552704,\n                                \"Y\": 0.7615293264389038\n                            }, {\n                                \"X\": 0.4110855758190155,\n                                \"Y\": 0.7613596320152283\n                            }, {\n                                \"X\": 0.4110944867134094,\n                                \"Y\": 0.7681686282157898\n                            }, {\n                                \"X\": 0.27794331312179565,\n                                \"Y\": 0.7683382630348206\n                            }]\n                        },\n                        \"Confidence\": 64.33595275878906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Net Worth (a minus b)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.061815448105335236,\n                                \"Height\": 0.010783125646412373,\n                                \"Left\": 0.423528790473938,\n                                \"Top\": 0.9007429480552673\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.423528790473938,\n                                \"Y\": 0.9008206129074097\n                            }, {\n                                \"X\": 0.48532989621162415,\n                                \"Y\": 0.9007429480552673\n                            }, {\n                                \"X\": 0.4853442311286926,\n                                \"Y\": 0.9114484786987305\n                            }, {\n                                \"X\": 0.423542857170105,\n                                \"Y\": 0.911526083946228\n                            }]\n                        },\n                        \"Confidence\": 63.57476043701172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 89,738.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13432440161705017,\n                                \"Height\": 0.007941920310258865,\n                                \"Left\": 0.5475043654441833,\n                                \"Top\": 0.9037830233573914\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5475043654441833,\n                                \"Y\": 0.9039517641067505\n                            }, {\n                                \"X\": 0.6818177103996277,\n                                \"Y\": 0.9037830233573914\n                            }, {\n                                \"X\": 0.6818287968635559,\n                                \"Y\": 0.9115562438964844\n                            }, {\n                                \"X\": 0.5475149750709534,\n                                \"Y\": 0.9117249250411987\n                            }]\n                        },\n                        \"Confidence\": 63.57476043701172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Alimony/Child Support/Separate Maintenance Payments Owed to:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.24157901108264923,\n                                \"Height\": 0.013227973133325577,\n                                \"Left\": 0.4239594638347626,\n                                \"Top\": 0.8306769132614136\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4239594638347626,\n                                \"Y\": 0.8309827446937561\n                            }, {\n                                \"X\": 0.665520191192627,\n                                \"Y\": 0.8306769132614136\n                            }, {\n                                \"X\": 0.665538489818573,\n                                \"Y\": 0.8435994982719421\n                            }, {\n                                \"X\": 0.42397645115852356,\n                                \"Y\": 0.8439049124717712\n                            }]\n                        },\n                        \"Confidence\": 61.034671783447266\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04248250275850296,\n                                \"Height\": 0.005004667676985264,\n                                \"Left\": 0.046430837363004684,\n                                \"Top\": 0.5542119741439819\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046430837363004684,\n                                \"Y\": 0.5542672276496887\n                            }, {\n                                \"X\": 0.08890752494335175,\n                                \"Y\": 0.5542119741439819\n                            }, {\n                                \"X\": 0.08891333639621735,\n                                \"Y\": 0.5591614246368408\n                            }, {\n                                \"X\": 0.04643656313419342,\n                                \"Y\": 0.5592166185379028\n                            }]\n                        },\n                        \"Confidence\": 60.27536392211914\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Assets a.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0924171730875969,\n                                \"Height\": 0.006828657351434231,\n                                \"Left\": 0.17255307734012604,\n                                \"Top\": 0.9038077592849731\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17255307734012604,\n                                \"Y\": 0.9039238691329956\n                            }, {\n                                \"X\": 0.2649618685245514,\n                                \"Y\": 0.9038077592849731\n                            }, {\n                                \"X\": 0.26497024297714233,\n                                \"Y\": 0.9105203747749329\n                            }, {\n                                \"X\": 0.17256119847297668,\n                                \"Y\": 0.9106364250183105\n                            }]\n                        },\n                        \"Confidence\": 59.885311126708984\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 277,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13404995203018188,\n                                \"Height\": 0.007802131585776806,\n                                \"Left\": 0.2770402431488037,\n                                \"Top\": 0.9035813212394714\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2770402431488037,\n                                \"Y\": 0.9037497639656067\n                            }, {\n                                \"X\": 0.4110802114009857,\n                                \"Y\": 0.9035813212394714\n                            }, {\n                                \"X\": 0.4110901951789856,\n                                \"Y\": 0.9112151265144348\n                            }, {\n                                \"X\": 0.27704980969429016,\n                                \"Y\": 0.9113834500312805\n                            }]\n                        },\n                        \"Confidence\": 59.885311126708984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Face amount:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07200384885072708,\n                                \"Height\": 0.0057027339935302734,\n                                \"Left\": 0.04713083803653717,\n                                \"Top\": 0.7158493995666504\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04713083803653717,\n                                \"Y\": 0.7159416079521179\n                            }, {\n                                \"X\": 0.1191280260682106,\n                                \"Y\": 0.7158493995666504\n                            }, {\n                                \"X\": 0.11913467943668365,\n                                \"Y\": 0.7214599847793579\n                            }, {\n                                \"X\": 0.04713732749223709,\n                                \"Y\": 0.7215521335601807\n                            }]\n                        },\n                        \"Confidence\": 59.24394607543945\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1440109759569168,\n                                \"Height\": 0.007337119895964861,\n                                \"Left\": 0.12387129664421082,\n                                \"Top\": 0.7144988179206848\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12387129664421082,\n                                \"Y\": 0.7146832346916199\n                            }, {\n                                \"X\": 0.2678733468055725,\n                                \"Y\": 0.7144988179206848\n                            }, {\n                                \"X\": 0.2678822875022888,\n                                \"Y\": 0.7216516733169556\n                            }, {\n                                \"X\": 0.1238797977566719,\n                                \"Y\": 0.7218359708786011\n                            }]\n                        },\n                        \"Confidence\": 59.24394607543945\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Cash deposit toward purchase held by:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20693877339363098,\n                                \"Height\": 0.007561969570815563,\n                                \"Left\": 0.047287896275520325,\n                                \"Top\": 0.3060251474380493\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.047287896275520325,\n                                \"Y\": 0.3063007593154907\n                            }, {\n                                \"X\": 0.25421759486198425,\n                                \"Y\": 0.3060251474380493\n                            }, {\n                                \"X\": 0.2542266547679901,\n                                \"Y\": 0.31331169605255127\n                            }, {\n                                \"X\": 0.04729633033275604,\n                                \"Y\": 0.31358712911605835\n                            }]\n                        },\n                        \"Confidence\": 56.750022888183594\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0997360348701477,\n                                \"Height\": 0.007486716844141483,\n                                \"Left\": 0.6949887871742249,\n                                \"Top\": 0.3297281563282013\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6949887871742249,\n                                \"Y\": 0.3298606872558594\n                            }, {\n                                \"X\": 0.7947140336036682,\n                                \"Y\": 0.3297281563282013\n                            }, {\n                                \"X\": 0.7947248220443726,\n                                \"Y\": 0.3370824456214905\n                            }, {\n                                \"X\": 0.6949992775917053,\n                                \"Y\": 0.3372148871421814\n                            }]\n                        },\n                        \"Confidence\": 55.029361724853516\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"30.00 9\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03404402732849121,\n                                \"Height\": 0.01585434190928936,\n                                \"Left\": 0.7723811864852905,\n                                \"Top\": 0.34493687748908997\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7723811864852905,\n                                \"Y\": 0.34498199820518494\n                            }, {\n                                \"X\": 0.8064019083976746,\n                                \"Y\": 0.34493687748908997\n                            }, {\n                                \"X\": 0.8064252138137817,\n                                \"Y\": 0.3607461452484131\n                            }, {\n                                \"X\": 0.7724042534828186,\n                                \"Y\": 0.3607912063598633\n                            }]\n                        },\n                        \"Confidence\": 55.029361724853516\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09998943656682968,\n                                \"Height\": 0.007482102140784264,\n                                \"Left\": 0.6953399181365967,\n                                \"Top\": 0.47497427463531494\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6953399181365967,\n                                \"Y\": 0.47510531544685364\n                            }, {\n                                \"X\": 0.7953185439109802,\n                                \"Y\": 0.47497427463531494\n                            }, {\n                                \"X\": 0.7953293323516846,\n                                \"Y\": 0.4823254346847534\n                            }, {\n                                \"X\": 0.6953504085540771,\n                                \"Y\": 0.48245638608932495\n                            }]\n                        },\n                        \"Confidence\": 54.54188537597656\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"339.00 26\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04137109965085983,\n                                \"Height\": 0.017605680972337723,\n                                \"Left\": 0.7656418085098267,\n                                \"Top\": 0.48712557554244995\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7656418085098267,\n                                \"Y\": 0.487179696559906\n                            }, {\n                                \"X\": 0.8069870471954346,\n                                \"Y\": 0.48712557554244995\n                            }, {\n                                \"X\": 0.8070129156112671,\n                                \"Y\": 0.5046772360801697\n                            }, {\n                                \"X\": 0.7656673789024353,\n                                \"Y\": 0.5047312378883362\n                            }]\n                        },\n                        \"Confidence\": 54.54188537597656\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09942834824323654,\n                                \"Height\": 0.0075808181427419186,\n                                \"Left\": 0.694949746131897,\n                                \"Top\": 0.4031881093978882\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.694949746131897,\n                                \"Y\": 0.4033192992210388\n                            }, {\n                                \"X\": 0.7943671941757202,\n                                \"Y\": 0.4031881093978882\n                            }, {\n                                \"X\": 0.7943781018257141,\n                                \"Y\": 0.41063782572746277\n                            }, {\n                                \"X\": 0.694960355758667,\n                                \"Y\": 0.41076892614364624\n                            }]\n                        },\n                        \"Confidence\": 53.45695114135742\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"628.00 13\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04140903428196907,\n                                \"Height\": 0.016498500481247902,\n                                \"Left\": 0.7652029991149902,\n                                \"Top\": 0.4161953330039978\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7652029991149902,\n                                \"Y\": 0.4162498712539673\n                            }, {\n                                \"X\": 0.806587815284729,\n                                \"Y\": 0.4161953330039978\n                            }, {\n                                \"X\": 0.8066120743751526,\n                                \"Y\": 0.43263939023017883\n                            }, {\n                                \"X\": 0.7652269601821899,\n                                \"Y\": 0.43269383907318115\n                            }]\n                        },\n                        \"Confidence\": 53.45695114135742\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Job-Related Expense (child care, union dues, etc.)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.23746925592422485,\n                                \"Height\": 0.012831078842282295,\n                                \"Left\": 0.42280471324920654,\n                                \"Top\": 0.8553964495658875\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42280471324920654,\n                                \"Y\": 0.8556962609291077\n                            }, {\n                                \"X\": 0.6602562665939331,\n                                \"Y\": 0.8553964495658875\n                            }, {\n                                \"X\": 0.6602739691734314,\n                                \"Y\": 0.8679280281066895\n                            }, {\n                                \"X\": 0.42282116413116455,\n                                \"Y\": 0.868227481842041\n                            }]\n                        },\n                        \"Confidence\": 53.332191467285156\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09933972358703613,\n                                \"Height\": 0.007452631834894419,\n                                \"Left\": 0.6955034732818604,\n                                \"Top\": 0.5461640954017639\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6955034732818604,\n                                \"Y\": 0.5462933778762817\n                            }, {\n                                \"X\": 0.7948324680328369,\n                                \"Y\": 0.5461640954017639\n                            }, {\n                                \"X\": 0.7948431968688965,\n                                \"Y\": 0.5534875392913818\n                            }, {\n                                \"X\": 0.6955139636993408,\n                                \"Y\": 0.5536167621612549\n                            }]\n                        },\n                        \"Confidence\": 52.64274978637695\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"395.65 307\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.039958421140909195,\n                                \"Height\": 0.018807075917720795,\n                                \"Left\": 0.7670032382011414,\n                                \"Top\": 0.5581006407737732\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7670032382011414,\n                                \"Y\": 0.5581525564193726\n                            }, {\n                                \"X\": 0.8069339990615845,\n                                \"Y\": 0.5581006407737732\n                            }, {\n                                \"X\": 0.8069616556167603,\n                                \"Y\": 0.5768558979034424\n                            }, {\n                                \"X\": 0.7670305371284485,\n                                \"Y\": 0.576907753944397\n                            }]\n                        },\n                        \"Confidence\": 52.64274978637695\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09942404180765152,\n                                \"Height\": 0.007167600095272064,\n                                \"Left\": 0.6948826313018799,\n                                \"Top\": 0.6178560256958008\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6948826313018799,\n                                \"Y\": 0.6179845333099365\n                            }, {\n                                \"X\": 0.794296383857727,\n                                \"Y\": 0.6178560256958008\n                            }, {\n                                \"X\": 0.7943066954612732,\n                                \"Y\": 0.6248952150344849\n                            }, {\n                                \"X\": 0.6948927044868469,\n                                \"Y\": 0.625023603439331\n                            }]\n                        },\n                        \"Confidence\": 52.50297927856445\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"20.00 69\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03397959843277931,\n                                \"Height\": 0.017465585842728615,\n                                \"Left\": 0.7728126049041748,\n                                \"Top\": 0.6300479769706726\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7728126049041748,\n                                \"Y\": 0.6300918459892273\n                            }, {\n                                \"X\": 0.8067665100097656,\n                                \"Y\": 0.6300479769706726\n                            }, {\n                                \"X\": 0.8067921996116638,\n                                \"Y\": 0.6474698185920715\n                            }, {\n                                \"X\": 0.7728379964828491,\n                                \"Y\": 0.6475135684013367\n                            }]\n                        },\n                        \"Confidence\": 52.50297927856445\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04201240465044975,\n                                \"Height\": 0.005172731354832649,\n                                \"Left\": 0.04690784960985184,\n                                \"Top\": 0.41094279289245605\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04690784960985184,\n                                \"Y\": 0.4109981954097748\n                            }, {\n                                \"X\": 0.08891424536705017,\n                                \"Y\": 0.41094279289245605\n                            }, {\n                                \"X\": 0.08892025798559189,\n                                \"Y\": 0.4160601496696472\n                            }, {\n                                \"X\": 0.04691377282142639,\n                                \"Y\": 0.41611552238464355\n                            }]\n                        },\n                        \"Confidence\": 50.743221282958984\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Acct. no.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04163597896695137,\n                                \"Height\": 0.005075048189610243,\n                                \"Left\": 0.0466911643743515,\n                                \"Top\": 0.4825488030910492\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0466911643743515,\n                                \"Y\": 0.4826033413410187\n                            }, {\n                                \"X\": 0.0883212462067604,\n                                \"Y\": 0.4825488030910492\n                            }, {\n                                \"X\": 0.08832713961601257,\n                                \"Y\": 0.4875693619251251\n                            }, {\n                                \"X\": 0.046696972101926804,\n                                \"Y\": 0.4876238703727722\n                            }]\n                        },\n                        \"Confidence\": 49.07224655151367\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Initials:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03153695538640022,\n                                \"Height\": 0.005468642804771662,\n                                \"Left\": 0.8533185124397278,\n                                \"Top\": 0.9270018339157104\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8533185124397278,\n                                \"Y\": 0.9270413517951965\n                            }, {\n                                \"X\": 0.8848473429679871,\n                                \"Y\": 0.9270018339157104\n                            }, {\n                                \"X\": 0.8848555088043213,\n                                \"Y\": 0.9324309825897217\n                            }, {\n                                \"X\": 0.8533266186714172,\n                                \"Y\": 0.932470440864563\n                            }]\n                        },\n                        \"Confidence\": 48.390281677246094\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Automobiles owned (make and year)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19426335394382477,\n                                \"Height\": 0.0074133980087935925,\n                                \"Left\": 0.047073688358068466,\n                                \"Top\": 0.7933154106140137\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.047073688358068466,\n                                \"Y\": 0.7935622334480286\n                            }, {\n                                \"X\": 0.241328164935112,\n                                \"Y\": 0.7933154106140137\n                            }, {\n                                \"X\": 0.24133703112602234,\n                                \"Y\": 0.8004821538925171\n                            }, {\n                                \"X\": 0.047081977128982544,\n                                \"Y\": 0.8007287979125977\n                            }]\n                        },\n                        \"Confidence\": 48.08381652832031\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07256384938955307,\n                                \"Height\": 0.007201149128377438,\n                                \"Left\": 0.27679723501205444,\n                                \"Top\": 0.7974119186401367\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27679723501205444,\n                                \"Y\": 0.7975040674209595\n                            }, {\n                                \"X\": 0.3493519723415375,\n                                \"Y\": 0.7974119186401367\n                            }, {\n                                \"X\": 0.3493610918521881,\n                                \"Y\": 0.8045209646224976\n                            }, {\n                                \"X\": 0.27680614590644836,\n                                \"Y\": 0.8046130537986755\n                            }]\n                        },\n                        \"Confidence\": 48.08381652832031\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Subtotal Liquid Assets\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13566817343235016,\n                                \"Height\": 0.007347769569605589,\n                                \"Left\": 0.04713135585188866,\n                                \"Top\": 0.7255121469497681\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04713135585188866,\n                                \"Y\": 0.7256856560707092\n                            }, {\n                                \"X\": 0.1827908158302307,\n                                \"Y\": 0.7255121469497681\n                            }, {\n                                \"X\": 0.18279951810836792,\n                                \"Y\": 0.7326865196228027\n                            }, {\n                                \"X\": 0.04713965579867363,\n                                \"Y\": 0.7328599095344543\n                            }]\n                        },\n                        \"Confidence\": 47.26316452026367\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 125,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1332969218492508,\n                                \"Height\": 0.007174710277467966,\n                                \"Left\": 0.27763089537620544,\n                                \"Top\": 0.7255713939666748\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27763089537620544,\n                                \"Y\": 0.7257418632507324\n                            }, {\n                                \"X\": 0.41091862320899963,\n                                \"Y\": 0.7255713939666748\n                            }, {\n                                \"X\": 0.41092780232429504,\n                                \"Y\": 0.7325757145881653\n                            }, {\n                                \"X\": 0.2776396572589874,\n                                \"Y\": 0.7327460646629333\n                            }]\n                        },\n                        \"Confidence\": 47.26316452026367\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other Assets (itemize)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11744555830955505,\n                                \"Height\": 0.0071362219750881195,\n                                \"Left\": 0.046743880957365036,\n                                \"Top\": 0.8435883522033691\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046743880957365036,\n                                \"Y\": 0.8437368273735046\n                            }, {\n                                \"X\": 0.16418102383613586,\n                                \"Y\": 0.8435883522033691\n                            }, {\n                                \"X\": 0.1641894429922104,\n                                \"Y\": 0.8505761623382568\n                            }, {\n                                \"X\": 0.0467519648373127,\n                                \"Y\": 0.8507245779037476\n                            }]\n                        },\n                        \"Confidence\": 43.700252532958984\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09967856854200363,\n                                \"Height\": 0.007499437313526869,\n                                \"Left\": 0.6948656439781189,\n                                \"Top\": 0.6893073320388794\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6948656439781189,\n                                \"Y\": 0.6894352436065674\n                            }, {\n                                \"X\": 0.7945334315299988,\n                                \"Y\": 0.6893073320388794\n                            }, {\n                                \"X\": 0.7945442199707031,\n                                \"Y\": 0.696678876876831\n                            }, {\n                                \"X\": 0.6948761940002441,\n                                \"Y\": 0.6968067288398743\n                            }]\n                        },\n                        \"Confidence\": 43.68587875366211\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026420768350362778,\n                                \"Height\": 0.0069844089448452,\n                                \"Left\": 0.7795220613479614,\n                                \"Top\": 0.7012898325920105\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7795220613479614,\n                                \"Y\": 0.7013236880302429\n                            }, {\n                                \"X\": 0.8059325814247131,\n                                \"Y\": 0.7012898325920105\n                            }, {\n                                \"X\": 0.8059428334236145,\n                                \"Y\": 0.7082403898239136\n                            }, {\n                                \"X\": 0.7795321941375732,\n                                \"Y\": 0.708274245262146\n                            }]\n                        },\n                        \"Confidence\": 43.68587875366211\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Liabilities b.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10883760452270508,\n                                \"Height\": 0.00717076426371932,\n                                \"Left\": 0.6966241002082825,\n                                \"Top\": 0.9035939574241638\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6966241002082825,\n                                \"Y\": 0.9037307500839233\n                            }, {\n                                \"X\": 0.8054513931274414,\n                                \"Y\": 0.9035939574241638\n                            }, {\n                                \"X\": 0.8054617643356323,\n                                \"Y\": 0.910628080368042\n                            }, {\n                                \"X\": 0.6966341733932495,\n                                \"Y\": 0.9107646942138672\n                            }]\n                        },\n                        \"Confidence\": 39.019386291503906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 187,262.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12943394482135773,\n                                \"Height\": 0.008352239616215229,\n                                \"Left\": 0.8183547258377075,\n                                \"Top\": 0.9035660624504089\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8183547258377075,\n                                \"Y\": 0.9037286639213562\n                            }, {\n                                \"X\": 0.9477760791778564,\n                                \"Y\": 0.9035660624504089\n                            }, {\n                                \"X\": 0.947788655757904,\n                                \"Y\": 0.9117558002471924\n                            }, {\n                                \"X\": 0.8183668255805969,\n                                \"Y\": 0.9119182825088501\n                            }]\n                        },\n                        \"Confidence\": 39.019386291503906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"$ Payment/Months\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09948283433914185,\n                                \"Height\": 0.007579205557703972,\n                                \"Left\": 0.6951349973678589,\n                                \"Top\": 0.7605586647987366\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6951349973678589,\n                                \"Y\": 0.7606854438781738\n                            }, {\n                                \"X\": 0.7946068644523621,\n                                \"Y\": 0.7605586647987366\n                            }, {\n                                \"X\": 0.7946178317070007,\n                                \"Y\": 0.7680111527442932\n                            }, {\n                                \"X\": 0.6951456069946289,\n                                \"Y\": 0.7681378722190857\n                            }]\n                        },\n                        \"Confidence\": 34.0202522277832\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"<2,049.00> 96\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06660570949316025,\n                                \"Height\": 0.017765995115041733,\n                                \"Left\": 0.7388784289360046,\n                                \"Top\": 0.77256840467453\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7388784289360046,\n                                \"Y\": 0.7726531624794006\n                            }, {\n                                \"X\": 0.805458128452301,\n                                \"Y\": 0.77256840467453\n                            }, {\n                                \"X\": 0.8054841756820679,\n                                \"Y\": 0.790249764919281\n                            }, {\n                                \"X\": 0.7389039993286133,\n                                \"Y\": 0.7903344035148621\n                            }]\n                        },\n                        \"Confidence\": 34.0202522277832\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Monthly Payments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14956900477409363,\n                                \"Height\": 0.008374921977519989,\n                                \"Left\": 0.4212062656879425,\n                                \"Top\": 0.8915594816207886\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4212062656879425,\n                                \"Y\": 0.8917476534843445\n                            }, {\n                                \"X\": 0.5707640051841736,\n                                \"Y\": 0.8915594816207886\n                            }, {\n                                \"X\": 0.5707752704620361,\n                                \"Y\": 0.8997464179992676\n                            }, {\n                                \"X\": 0.4212169945240021,\n                                \"Y\": 0.8999344110488892\n                            }]\n                        },\n                        \"Confidence\": 17.048290252685547\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 1,412.65\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1100703775882721,\n                                \"Height\": 0.007900171913206577,\n                                \"Left\": 0.6956104636192322,\n                                \"Top\": 0.8920861482620239\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6956104636192322,\n                                \"Y\": 0.8922246098518372\n                            }, {\n                                \"X\": 0.8056694269180298,\n                                \"Y\": 0.8920861482620239\n                            }, {\n                                \"X\": 0.8056808710098267,\n                                \"Y\": 0.8998479247093201\n                            }, {\n                                \"X\": 0.6956215500831604,\n                                \"Y\": 0.8999863266944885\n                            }]\n                        },\n                        \"Confidence\": 17.048290252685547\n                    }]\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 11,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1003\",\n                \"Confidence\": 99.9994888305664\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"3\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"OTHER_ASSETS_AND_CREDITS_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"LIABILITIES_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_LIABILITIES_AND_EXPENSES_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ASSETS_TOTAL_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_ASSETS_AND_CREDITS_TOTAL_AMOUNT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Hispanic or Latino\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0814857929944992,\n                                \"Height\": 0.006700531113892794,\n                                \"Left\": 0.17693670094013214,\n                                \"Top\": 0.762222945690155\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17693670094013214,\n                                \"Y\": 0.7623099684715271\n                            }, {\n                                \"X\": 0.25841543078422546,\n                                \"Y\": 0.762222945690155\n                            }, {\n                                \"X\": 0.25842249393463135,\n                                \"Y\": 0.7688364386558533\n                            }, {\n                                \"X\": 0.17694346606731415,\n                                \"Y\": 0.7689234614372253\n                            }]\n                        },\n                        \"Confidence\": 94.77274322509766\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026861941441893578,\n                                \"Height\": 0.010490973480045795,\n                                \"Left\": 0.14587414264678955,\n                                \"Top\": 0.7590793967247009\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14587414264678955,\n                                \"Y\": 0.7591081261634827\n                            }, {\n                                \"X\": 0.17272542417049408,\n                                \"Y\": 0.7590793967247009\n                            }, {\n                                \"X\": 0.17273609340190887,\n                                \"Y\": 0.7695417404174805\n                            }, {\n                                \"X\": 0.1458846479654312,\n                                \"Y\": 0.7695704102516174\n                            }]\n                        },\n                        \"Confidence\": 99.85628509521484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Co-Borrower's Signature\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1314450353384018,\n                                \"Height\": 0.007062566466629505,\n                                \"Left\": 0.5104736685752869,\n                                \"Top\": 0.6692730784416199\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5104736685752869,\n                                \"Y\": 0.6694143414497375\n                            }, {\n                                \"X\": 0.6419097781181335,\n                                \"Y\": 0.6692730784416199\n                            }, {\n                                \"X\": 0.6419187188148499,\n                                \"Y\": 0.676194429397583\n                            }, {\n                                \"X\": 0.5104820728302002,\n                                \"Y\": 0.6763356328010559\n                            }]\n                        },\n                        \"Confidence\": 94.32101440429688\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"X\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.332888126373291,\n                                \"Height\": 0.012466859072446823,\n                                \"Left\": 0.5105114579200745,\n                                \"Top\": 0.6772467494010925\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5105114579200745,\n                                \"Y\": 0.6776043176651001\n                            }, {\n                                \"X\": 0.8433825373649597,\n                                \"Y\": 0.6772467494010925\n                            }, {\n                                \"X\": 0.8433995842933655,\n                                \"Y\": 0.68935626745224\n                            }, {\n                                \"X\": 0.510526180267334,\n                                \"Y\": 0.6897135972976685\n                            }]\n                        },\n                        \"Confidence\": 94.32101440429688\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Male\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02237209863960743,\n                                \"Height\": 0.005385550670325756,\n                                \"Left\": 0.7760602831840515,\n                                \"Top\": 0.7985678315162659\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7760602831840515,\n                                \"Y\": 0.798591673374176\n                            }, {\n                                \"X\": 0.798425018787384,\n                                \"Y\": 0.7985678315162659\n                            }, {\n                                \"X\": 0.7984324097633362,\n                                \"Y\": 0.8039295673370361\n                            }, {\n                                \"X\": 0.7760676741600037,\n                                \"Y\": 0.8039534091949463\n                            }]\n                        },\n                        \"Confidence\": 93.84227752685547\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026520218700170517,\n                                \"Height\": 0.01009723823517561,\n                                \"Left\": 0.7460660934448242,\n                                \"Top\": 0.7946880459785461\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7460660934448242,\n                                \"Y\": 0.7947162985801697\n                            }, {\n                                \"X\": 0.7725725769996643,\n                                \"Y\": 0.7946880459785461\n                            }, {\n                                \"X\": 0.7725863456726074,\n                                \"Y\": 0.8047570586204529\n                            }, {\n                                \"X\": 0.7460797429084778,\n                                \"Y\": 0.8047853112220764\n                            }]\n                        },\n                        \"Confidence\": 99.72380065917969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Asian\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024724673479795456,\n                                \"Height\": 0.005264188162982464,\n                                \"Left\": 0.306244820356369,\n                                \"Top\": 0.7746326923370361\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.306244820356369,\n                                \"Y\": 0.7746590971946716\n                            }, {\n                                \"X\": 0.330963671207428,\n                                \"Y\": 0.7746326923370361\n                            }, {\n                                \"X\": 0.33096951246261597,\n                                \"Y\": 0.7798705101013184\n                            }, {\n                                \"X\": 0.30625057220458984,\n                                \"Y\": 0.7798969149589539\n                            }]\n                        },\n                        \"Confidence\": 93.42176818847656\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02548978105187416,\n                                \"Height\": 0.011208252049982548,\n                                \"Left\": 0.2757945954799652,\n                                \"Top\": 0.7708908319473267\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2757945954799652,\n                                \"Y\": 0.7709180116653442\n                            }, {\n                                \"X\": 0.3012721538543701,\n                                \"Y\": 0.7708908319473267\n                            }, {\n                                \"X\": 0.3012843728065491,\n                                \"Y\": 0.7820718884468079\n                            }, {\n                                \"X\": 0.2758066654205322,\n                                \"Y\": 0.7820990681648254\n                            }]\n                        },\n                        \"Confidence\": 99.85564422607422\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Black or African American\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0786394327878952,\n                                \"Height\": 0.011059371754527092,\n                                \"Left\": 0.871484637260437,\n                                \"Top\": 0.7701771259307861\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.871484637260437,\n                                \"Y\": 0.7702610492706299\n                            }, {\n                                \"X\": 0.9501078724861145,\n                                \"Y\": 0.7701771259307861\n                            }, {\n                                \"X\": 0.9501240253448486,\n                                \"Y\": 0.781152606010437\n                            }, {\n                                \"X\": 0.8715002536773682,\n                                \"Y\": 0.781236469745636\n                            }]\n                        },\n                        \"Confidence\": 92.99116516113281\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025992421433329582,\n                                \"Height\": 0.01033862866461277,\n                                \"Left\": 0.8403052091598511,\n                                \"Top\": 0.7703505158424377\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8403052091598511,\n                                \"Y\": 0.7703782320022583\n                            }, {\n                                \"X\": 0.8662829399108887,\n                                \"Y\": 0.7703505158424377\n                            }, {\n                                \"X\": 0.8662976026535034,\n                                \"Y\": 0.780661404132843\n                            }, {\n                                \"X\": 0.8403196930885315,\n                                \"Y\": 0.7806891202926636\n                            }]\n                        },\n                        \"Confidence\": 99.92363739013672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Native Hawaiian or Other Pacific Islander\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09352081269025803,\n                                \"Height\": 0.010504805482923985,\n                                \"Left\": 0.1765691041946411,\n                                \"Top\": 0.7820948958396912\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1765691041946411,\n                                \"Y\": 0.7821946740150452\n                            }, {\n                                \"X\": 0.27007871866226196,\n                                \"Y\": 0.7820948958396912\n                            }, {\n                                \"X\": 0.27008992433547974,\n                                \"Y\": 0.7925000190734863\n                            }, {\n                                \"X\": 0.17657972872257233,\n                                \"Y\": 0.7925996780395508\n                            }]\n                        },\n                        \"Confidence\": 92.6672592163086\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026668023318052292,\n                                \"Height\": 0.010452690534293652,\n                                \"Left\": 0.14621926844120026,\n                                \"Top\": 0.7822858691215515\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14621926844120026,\n                                \"Y\": 0.7823143005371094\n                            }, {\n                                \"X\": 0.17287667095661163,\n                                \"Y\": 0.7822858691215515\n                            }, {\n                                \"X\": 0.17288729548454285,\n                                \"Y\": 0.7927101254463196\n                            }, {\n                                \"X\": 0.14622972905635834,\n                                \"Y\": 0.7927385568618774\n                            }]\n                        },\n                        \"Confidence\": 99.87956237792969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Borrower's Signature\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11179608851671219,\n                                \"Height\": 0.007064045872539282,\n                                \"Left\": 0.04682951048016548,\n                                \"Top\": 0.669316291809082\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04682951048016548,\n                                \"Y\": 0.6694364547729492\n                            }, {\n                                \"X\": 0.15861856937408447,\n                                \"Y\": 0.669316291809082\n                            }, {\n                                \"X\": 0.15862558782100677,\n                                \"Y\": 0.6762601733207703\n                            }, {\n                                \"X\": 0.04683607816696167,\n                                \"Y\": 0.6763803362846375\n                            }]\n                        },\n                        \"Confidence\": 92.63601684570312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"X\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3378649055957794,\n                                \"Height\": 0.012330319732427597,\n                                \"Left\": 0.04712453857064247,\n                                \"Top\": 0.677253007888794\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04712453857064247,\n                                \"Y\": 0.6776160001754761\n                            }, {\n                                \"X\": 0.38497576117515564,\n                                \"Y\": 0.677253007888794\n                            }, {\n                                \"X\": 0.3849894404411316,\n                                \"Y\": 0.6892206072807312\n                            }, {\n                                \"X\": 0.047135863453149796,\n                                \"Y\": 0.6895833015441895\n                            }]\n                        },\n                        \"Confidence\": 92.63601684570312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"White\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025967931374907494,\n                                \"Height\": 0.005216163583099842,\n                                \"Left\": 0.30586865544319153,\n                                \"Top\": 0.7865684032440186\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30586865544319153,\n                                \"Y\": 0.7865960597991943\n                            }, {\n                                \"X\": 0.33183079957962036,\n                                \"Y\": 0.7865684032440186\n                            }, {\n                                \"X\": 0.3318365812301636,\n                                \"Y\": 0.7917568683624268\n                            }, {\n                                \"X\": 0.3058743476867676,\n                                \"Y\": 0.7917845249176025\n                            }]\n                        },\n                        \"Confidence\": 92.52029418945312\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024450790137052536,\n                                \"Height\": 0.010556324385106564,\n                                \"Left\": 0.2761753797531128,\n                                \"Top\": 0.7829774618148804\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2761753797531128,\n                                \"Y\": 0.783003568649292\n                            }, {\n                                \"X\": 0.3006146550178528,\n                                \"Y\": 0.7829774618148804\n                            }, {\n                                \"X\": 0.3006261885166168,\n                                \"Y\": 0.7935077548027039\n                            }, {\n                                \"X\": 0.2761867642402649,\n                                \"Y\": 0.7935338020324707\n                            }]\n                        },\n                        \"Confidence\": 99.6598892211914\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"White\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.027007972821593285,\n                                \"Height\": 0.005414162762463093,\n                                \"Left\": 0.7765769362449646,\n                                \"Top\": 0.7864355444908142\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7765769362449646,\n                                \"Y\": 0.7864643335342407\n                            }, {\n                                \"X\": 0.8035774230957031,\n                                \"Y\": 0.7864355444908142\n                            }, {\n                                \"X\": 0.8035848736763,\n                                \"Y\": 0.7918208837509155\n                            }, {\n                                \"X\": 0.7765843272209167,\n                                \"Y\": 0.7918497323989868\n                            }]\n                        },\n                        \"Confidence\": 92.49555206298828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025975147262215614,\n                                \"Height\": 0.010564327239990234,\n                                \"Left\": 0.7463915348052979,\n                                \"Top\": 0.7825846076011658\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7463915348052979,\n                                \"Y\": 0.7826123237609863\n                            }, {\n                                \"X\": 0.7723522782325745,\n                                \"Y\": 0.7825846076011658\n                            }, {\n                                \"X\": 0.7723667025566101,\n                                \"Y\": 0.7931212782859802\n                            }, {\n                                \"X\": 0.7464057803153992,\n                                \"Y\": 0.793148934841156\n                            }]\n                        },\n                        \"Confidence\": 99.68025970458984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"In a telephone interview\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12733563780784607,\n                                \"Height\": 0.007209056988358498,\n                                \"Left\": 0.30632439255714417,\n                                \"Top\": 0.8288825750350952\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30632439255714417,\n                                \"Y\": 0.8290179967880249\n                            }, {\n                                \"X\": 0.43365177512168884,\n                                \"Y\": 0.8288825750350952\n                            }, {\n                                \"X\": 0.43366003036499023,\n                                \"Y\": 0.8359562754631042\n                            }, {\n                                \"X\": 0.30633217096328735,\n                                \"Y\": 0.8360916376113892\n                            }]\n                        },\n                        \"Confidence\": 92.41127014160156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0272431131452322,\n                                \"Height\": 0.009712519124150276,\n                                \"Left\": 0.27538731694221497,\n                                \"Top\": 0.8251370191574097\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27538731694221497,\n                                \"Y\": 0.8251659870147705\n                            }, {\n                                \"X\": 0.3026198446750641,\n                                \"Y\": 0.8251370191574097\n                            }, {\n                                \"X\": 0.3026304244995117,\n                                \"Y\": 0.834820568561554\n                            }, {\n                                \"X\": 0.27539777755737305,\n                                \"Y\": 0.8348495364189148\n                            }]\n                        },\n                        \"Confidence\": 99.16187286376953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Black or African American\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07844139635562897,\n                                \"Height\": 0.010930411517620087,\n                                \"Left\": 0.41180139780044556,\n                                \"Top\": 0.7702355980873108\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41180139780044556,\n                                \"Y\": 0.7703193426132202\n                            }, {\n                                \"X\": 0.4902297258377075,\n                                \"Y\": 0.7702355980873108\n                            }, {\n                                \"X\": 0.49024277925491333,\n                                \"Y\": 0.7810823321342468\n                            }, {\n                                \"X\": 0.4118139445781708,\n                                \"Y\": 0.7811660170555115\n                            }]\n                        },\n                        \"Confidence\": 91.90229034423828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02616545557975769,\n                                \"Height\": 0.010133213363587856,\n                                \"Left\": 0.38054159283638,\n                                \"Top\": 0.7707445621490479\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38054159283638,\n                                \"Y\": 0.7707725167274475\n                            }, {\n                                \"X\": 0.4066953659057617,\n                                \"Y\": 0.7707445621490479\n                            }, {\n                                \"X\": 0.4067070484161377,\n                                \"Y\": 0.7808498740196228\n                            }, {\n                                \"X\": 0.38055312633514404,\n                                \"Y\": 0.7808777689933777\n                            }]\n                        },\n                        \"Confidence\": 99.81324005126953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"American Indian or Alaska Native\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08383205533027649,\n                                \"Height\": 0.010800693184137344,\n                                \"Left\": 0.6474775671958923,\n                                \"Top\": 0.7703462839126587\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6474775671958923,\n                                \"Y\": 0.7704357504844666\n                            }, {\n                                \"X\": 0.7312952280044556,\n                                \"Y\": 0.7703462839126587\n                            }, {\n                                \"X\": 0.7313095927238464,\n                                \"Y\": 0.7810575366020203\n                            }, {\n                                \"X\": 0.6474913954734802,\n                                \"Y\": 0.7811469435691833\n                            }]\n                        },\n                        \"Confidence\": 91.80219268798828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026011034846305847,\n                                \"Height\": 0.011503932066261768,\n                                \"Left\": 0.6169858574867249,\n                                \"Top\": 0.7697081565856934\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6169858574867249,\n                                \"Y\": 0.7697359323501587\n                            }, {\n                                \"X\": 0.6429820656776428,\n                                \"Y\": 0.7697081565856934\n                            }, {\n                                \"X\": 0.6429969072341919,\n                                \"Y\": 0.7811843752861023\n                            }, {\n                                \"X\": 0.6170005202293396,\n                                \"Y\": 0.7812120914459229\n                            }]\n                        },\n                        \"Confidence\": 99.9083023071289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"I do not wish to furnish this information\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1795479655265808,\n                                \"Height\": 0.006211996078491211,\n                                \"Left\": 0.17535625398159027,\n                                \"Top\": 0.7492567896842957\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17535625398159027,\n                                \"Y\": 0.7494487762451172\n                            }, {\n                                \"X\": 0.3548974394798279,\n                                \"Y\": 0.7492567896842957\n                            }, {\n                                \"X\": 0.3549042046070099,\n                                \"Y\": 0.7552768588066101\n                            }, {\n                                \"X\": 0.17536239326000214,\n                                \"Y\": 0.7554687857627869\n                            }]\n                        },\n                        \"Confidence\": 91.77119445800781\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026561928912997246,\n                                \"Height\": 0.010897300206124783,\n                                \"Left\": 0.14619570970535278,\n                                \"Top\": 0.7466349005699158\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14619570970535278,\n                                \"Y\": 0.7466632723808289\n                            }, {\n                                \"X\": 0.17274655401706696,\n                                \"Y\": 0.7466349005699158\n                            }, {\n                                \"X\": 0.17275764048099518,\n                                \"Y\": 0.7575038075447083\n                            }, {\n                                \"X\": 0.14620661735534668,\n                                \"Y\": 0.7575321793556213\n                            }]\n                        },\n                        \"Confidence\": 99.86454010009766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Not Hispanic or Latino\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10184743255376816,\n                                \"Height\": 0.00623224675655365,\n                                \"Left\": 0.30512484908103943,\n                                \"Top\": 0.7624987959861755\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30512484908103943,\n                                \"Y\": 0.7626076340675354\n                            }, {\n                                \"X\": 0.4069652259349823,\n                                \"Y\": 0.7624987959861755\n                            }, {\n                                \"X\": 0.4069722890853882,\n                                \"Y\": 0.7686222791671753\n                            }, {\n                                \"X\": 0.30513155460357666,\n                                \"Y\": 0.7687310576438904\n                            }]\n                        },\n                        \"Confidence\": 91.74223327636719\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024740012362599373,\n                                \"Height\": 0.011233564466238022,\n                                \"Left\": 0.27604934573173523,\n                                \"Top\": 0.7587884068489075\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27604934573173523,\n                                \"Y\": 0.7588148713111877\n                            }, {\n                                \"X\": 0.3007771074771881,\n                                \"Y\": 0.7587884068489075\n                            }, {\n                                \"X\": 0.30078935623168945,\n                                \"Y\": 0.7699955701828003\n                            }, {\n                                \"X\": 0.27606144547462463,\n                                \"Y\": 0.7700219750404358\n                            }]\n                        },\n                        \"Confidence\": 99.36737060546875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Originator's Signature\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16486449539661407,\n                                \"Height\": 0.007583162281662226,\n                                \"Left\": 0.04693327099084854,\n                                \"Top\": 0.8362540602684021\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04693327099084854,\n                                \"Y\": 0.8364292979240417\n                            }, {\n                                \"X\": 0.2117900550365448,\n                                \"Y\": 0.8362540602684021\n                            }, {\n                                \"X\": 0.2117977738380432,\n                                \"Y\": 0.8436620235443115\n                            }, {\n                                \"X\": 0.04694027826189995,\n                                \"Y\": 0.8438372015953064\n                            }]\n                        },\n                        \"Confidence\": 91.7275390625\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"X\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.5708954930305481,\n                                \"Height\": 0.010355964303016663,\n                                \"Left\": 0.04781185835599899,\n                                \"Top\": 0.8467490673065186\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04781185835599899,\n                                \"Y\": 0.8473556041717529\n                            }, {\n                                \"X\": 0.6186949014663696,\n                                \"Y\": 0.8467490673065186\n                            }, {\n                                \"X\": 0.6187073588371277,\n                                \"Y\": 0.8564988970756531\n                            }, {\n                                \"X\": 0.04782108590006828,\n                                \"Y\": 0.857105016708374\n                            }]\n                        },\n                        \"Confidence\": 91.7275390625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Originator's Name (print or type)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.22909848392009735,\n                                \"Height\": 0.007871082052588463,\n                                \"Left\": 0.04716405272483826,\n                                \"Top\": 0.8593178391456604\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04716405272483826,\n                                \"Y\": 0.8595610857009888\n                            }, {\n                                \"X\": 0.2762542963027954,\n                                \"Y\": 0.8593178391456604\n                            }, {\n                                \"X\": 0.2762625515460968,\n                                \"Y\": 0.8669458627700806\n                            }, {\n                                \"X\": 0.047171272337436676,\n                                \"Y\": 0.8671889305114746\n                            }]\n                        },\n                        \"Confidence\": 91.61146545410156\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"GEORGE HARABEDIAN\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14817708730697632,\n                                \"Height\": 0.00724959559738636,\n                                \"Left\": 0.0474148690700531,\n                                \"Top\": 0.8713539838790894\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0474148690700531,\n                                \"Y\": 0.8715111613273621\n                            }, {\n                                \"X\": 0.19558462500572205,\n                                \"Y\": 0.8713539838790894\n                            }, {\n                                \"X\": 0.19559195637702942,\n                                \"Y\": 0.8784464597702026\n                            }, {\n                                \"X\": 0.04742157831788063,\n                                \"Y\": 0.8786035776138306\n                            }]\n                        },\n                        \"Confidence\": 91.61146545410156\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"In a face-to-face interview\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13856320083141327,\n                                \"Height\": 0.006246547214686871,\n                                \"Left\": 0.3069714903831482,\n                                \"Top\": 0.81696617603302\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3069714903831482,\n                                \"Y\": 0.8171136379241943\n                            }, {\n                                \"X\": 0.4455275237560272,\n                                \"Y\": 0.81696617603302\n                            }, {\n                                \"X\": 0.44553470611572266,\n                                \"Y\": 0.8230652809143066\n                            }, {\n                                \"X\": 0.3069781959056854,\n                                \"Y\": 0.8232126832008362\n                            }]\n                        },\n                        \"Confidence\": 91.56681823730469\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026274502277374268,\n                                \"Height\": 0.010513829067349434,\n                                \"Left\": 0.2753168046474457,\n                                \"Top\": 0.81339031457901\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2753168046474457,\n                                \"Y\": 0.8134182691574097\n                            }, {\n                                \"X\": 0.3015798330307007,\n                                \"Y\": 0.81339031457901\n                            }, {\n                                \"X\": 0.30159130692481995,\n                                \"Y\": 0.8238762021064758\n                            }, {\n                                \"X\": 0.275328129529953,\n                                \"Y\": 0.8239041566848755\n                            }]\n                        },\n                        \"Confidence\": 99.6435775756836\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Not Hispanic or Latino\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10172270983457565,\n                                \"Height\": 0.005995733663439751,\n                                \"Left\": 0.7757306694984436,\n                                \"Top\": 0.7627604007720947\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7757306694984436,\n                                \"Y\": 0.7628690600395203\n                            }, {\n                                \"X\": 0.8774449825286865,\n                                \"Y\": 0.7627604007720947\n                            }, {\n                                \"X\": 0.8774533867835999,\n                                \"Y\": 0.7686475515365601\n                            }, {\n                                \"X\": 0.7757387161254883,\n                                \"Y\": 0.7687561511993408\n                            }]\n                        },\n                        \"Confidence\": 91.52164459228516\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024942737072706223,\n                                \"Height\": 0.00988299772143364,\n                                \"Left\": 0.7470483779907227,\n                                \"Top\": 0.7589044570922852\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7470483779907227,\n                                \"Y\": 0.7589311003684998\n                            }, {\n                                \"X\": 0.7719776034355164,\n                                \"Y\": 0.7589044570922852\n                            }, {\n                                \"X\": 0.7719910740852356,\n                                \"Y\": 0.7687608003616333\n                            }, {\n                                \"X\": 0.7470616698265076,\n                                \"Y\": 0.7687874436378479\n                            }]\n                        },\n                        \"Confidence\": 99.81285858154297\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Hispanic or Latino\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08166719973087311,\n                                \"Height\": 0.006444473750889301,\n                                \"Left\": 0.6471616625785828,\n                                \"Top\": 0.7627257704734802\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6471616625785828,\n                                \"Y\": 0.7628129720687866\n                            }, {\n                                \"X\": 0.7288203239440918,\n                                \"Y\": 0.7627257704734802\n                            }, {\n                                \"X\": 0.7288288474082947,\n                                \"Y\": 0.7690830230712891\n                            }, {\n                                \"X\": 0.6471698880195618,\n                                \"Y\": 0.7691702246665955\n                            }]\n                        },\n                        \"Confidence\": 91.4427490234375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026133287698030472,\n                                \"Height\": 0.010296103544533253,\n                                \"Left\": 0.6171218156814575,\n                                \"Top\": 0.7583179473876953\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6171218156814575,\n                                \"Y\": 0.7583458423614502\n                            }, {\n                                \"X\": 0.6432418823242188,\n                                \"Y\": 0.7583179473876953\n                            }, {\n                                \"X\": 0.6432551145553589,\n                                \"Y\": 0.7685861587524414\n                            }, {\n                                \"X\": 0.6171349883079529,\n                                \"Y\": 0.7686140537261963\n                            }]\n                        },\n                        \"Confidence\": 99.91098022460938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Asian\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024640051648020744,\n                                \"Height\": 0.005228889174759388,\n                                \"Left\": 0.7766929268836975,\n                                \"Top\": 0.7746813297271729\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7766929268836975,\n                                \"Y\": 0.7747076153755188\n                            }, {\n                                \"X\": 0.801325798034668,\n                                \"Y\": 0.7746813297271729\n                            }, {\n                                \"X\": 0.801332950592041,\n                                \"Y\": 0.7798839211463928\n                            }, {\n                                \"X\": 0.7767000794410706,\n                                \"Y\": 0.7799102067947388\n                            }]\n                        },\n                        \"Confidence\": 91.35781860351562\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025462796911597252,\n                                \"Height\": 0.010446094907820225,\n                                \"Left\": 0.7469670176506042,\n                                \"Top\": 0.7702321410179138\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7469670176506042,\n                                \"Y\": 0.7702593207359314\n                            }, {\n                                \"X\": 0.7724155783653259,\n                                \"Y\": 0.7702321410179138\n                            }, {\n                                \"X\": 0.7724298238754272,\n                                \"Y\": 0.7806510925292969\n                            }, {\n                                \"X\": 0.746981143951416,\n                                \"Y\": 0.7806782722473145\n                            }]\n                        },\n                        \"Confidence\": 99.82694244384766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Female\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.031988680362701416,\n                                \"Height\": 0.005542905535548925,\n                                \"Left\": 0.6473870277404785,\n                                \"Top\": 0.7986918687820435\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6473870277404785,\n                                \"Y\": 0.798725962638855\n                            }, {\n                                \"X\": 0.6793684959411621,\n                                \"Y\": 0.7986918687820435\n                            }, {\n                                \"X\": 0.6793757081031799,\n                                \"Y\": 0.8042007088661194\n                            }, {\n                                \"X\": 0.6473941802978516,\n                                \"Y\": 0.8042348027229309\n                            }]\n                        },\n                        \"Confidence\": 91.13334655761719\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025272732600569725,\n                                \"Height\": 0.009947361424565315,\n                                \"Left\": 0.6175534725189209,\n                                \"Top\": 0.7948241233825684\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6175534725189209,\n                                \"Y\": 0.7948510050773621\n                            }, {\n                                \"X\": 0.6428133845329285,\n                                \"Y\": 0.7948241233825684\n                            }, {\n                                \"X\": 0.6428261995315552,\n                                \"Y\": 0.80474454164505\n                            }, {\n                                \"X\": 0.6175661683082581,\n                                \"Y\": 0.8047714829444885\n                            }]\n                        },\n                        \"Confidence\": 99.92082977294922\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Origination Company Identifier\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.21732407808303833,\n                                \"Height\": 0.008000698871910572,\n                                \"Left\": 0.3391951620578766,\n                                \"Top\": 0.8950454592704773\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3391951620578766,\n                                \"Y\": 0.8952756524085999\n                            }, {\n                                \"X\": 0.5565095543861389,\n                                \"Y\": 0.8950454592704773\n                            }, {\n                                \"X\": 0.5565192103385925,\n                                \"Y\": 0.902816116809845\n                            }, {\n                                \"X\": 0.3392038345336914,\n                                \"Y\": 0.903046190738678\n                            }]\n                        },\n                        \"Confidence\": 90.74988555908203\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"399801\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.042018767446279526,\n                                \"Height\": 0.006690997630357742,\n                                \"Left\": 0.33834224939346313,\n                                \"Top\": 0.905657172203064\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33834224939346313,\n                                \"Y\": 0.9057016372680664\n                            }, {\n                                \"X\": 0.3803534507751465,\n                                \"Y\": 0.905657172203064\n                            }, {\n                                \"X\": 0.38036102056503296,\n                                \"Y\": 0.9123037457466125\n                            }, {\n                                \"X\": 0.33834967017173767,\n                                \"Y\": 0.912348210811615\n                            }]\n                        },\n                        \"Confidence\": 90.74988555908203\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Origination Company's Name\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20954275131225586,\n                                \"Height\": 0.007984232157468796,\n                                \"Left\": 0.046395450830459595,\n                                \"Top\": 0.8949233889579773\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046395450830459595,\n                                \"Y\": 0.8951452970504761\n                            }, {\n                                \"X\": 0.2559299170970917,\n                                \"Y\": 0.8949233889579773\n                            }, {\n                                \"X\": 0.25593820214271545,\n                                \"Y\": 0.902685821056366\n                            }, {\n                                \"X\": 0.046402789652347565,\n                                \"Y\": 0.9029076099395752\n                            }]\n                        },\n                        \"Confidence\": 90.00752258300781\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"WELLS FARGO BANK, N.A.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17076104879379272,\n                                \"Height\": 0.008500482887029648,\n                                \"Left\": 0.04676882550120354,\n                                \"Top\": 0.905173122882843\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04676882550120354,\n                                \"Y\": 0.9053537845611572\n                            }, {\n                                \"X\": 0.21752119064331055,\n                                \"Y\": 0.905173122882843\n                            }, {\n                                \"X\": 0.21752987802028656,\n                                \"Y\": 0.9134929776191711\n                            }, {\n                                \"X\": 0.04677669703960419,\n                                \"Y\": 0.9136735796928406\n                            }]\n                        },\n                        \"Confidence\": 90.00752258300781\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Originator's Phone Number (including area code)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3225380480289459,\n                                \"Height\": 0.008010849356651306,\n                                \"Left\": 0.6263625621795654,\n                                \"Top\": 0.8592931032180786\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6263625621795654,\n                                \"Y\": 0.8596354722976685\n                            }, {\n                                \"X\": 0.9488893151283264,\n                                \"Y\": 0.8592931032180786\n                            }, {\n                                \"X\": 0.948900580406189,\n                                \"Y\": 0.8669617176055908\n                            }, {\n                                \"X\": 0.6263723969459534,\n                                \"Y\": 0.8673039078712463\n                            }]\n                        },\n                        \"Confidence\": 89.76749420166016\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"248-723-3197\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08112876117229462,\n                                \"Height\": 0.00667081493884325,\n                                \"Left\": 0.6253228187561035,\n                                \"Top\": 0.8720867037773132\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6253228187561035,\n                                \"Y\": 0.8721727132797241\n                            }, {\n                                \"X\": 0.7064428329467773,\n                                \"Y\": 0.8720867037773132\n                            }, {\n                                \"X\": 0.7064515948295593,\n                                \"Y\": 0.8786715269088745\n                            }, {\n                                \"X\": 0.6253312826156616,\n                                \"Y\": 0.8787574768066406\n                            }]\n                        },\n                        \"Confidence\": 89.76749420166016\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Originator Identifier\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15103913843631744,\n                                \"Height\": 0.00821436196565628,\n                                \"Left\": 0.33900564908981323,\n                                \"Top\": 0.8590371012687683\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33900564908981323,\n                                \"Y\": 0.8591974377632141\n                            }, {\n                                \"X\": 0.4900350868701935,\n                                \"Y\": 0.8590371012687683\n                            }, {\n                                \"X\": 0.49004480242729187,\n                                \"Y\": 0.8670912384986877\n                            }, {\n                                \"X\": 0.3390146493911743,\n                                \"Y\": 0.867251455783844\n                            }]\n                        },\n                        \"Confidence\": 89.76251220703125\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"801534\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04346155747771263,\n                                \"Height\": 0.006604315247386694,\n                                \"Left\": 0.3385610580444336,\n                                \"Top\": 0.8722224831581116\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3385610580444336,\n                                \"Y\": 0.872268557548523\n                            }, {\n                                \"X\": 0.3820151388645172,\n                                \"Y\": 0.8722224831581116\n                            }, {\n                                \"X\": 0.3820226192474365,\n                                \"Y\": 0.878780722618103\n                            }, {\n                                \"X\": 0.33856838941574097,\n                                \"Y\": 0.8788267970085144\n                            }]\n                        },\n                        \"Confidence\": 89.76251220703125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02450411394238472,\n                                \"Height\": 0.005365618970245123,\n                                \"Left\": 0.39410799741744995,\n                                \"Top\": 0.6696168780326843\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.39410799741744995,\n                                \"Y\": 0.669643223285675\n                            }, {\n                                \"X\": 0.41860589385032654,\n                                \"Y\": 0.6696168780326843\n                            }, {\n                                \"X\": 0.4186120927333832,\n                                \"Y\": 0.6749561429023743\n                            }, {\n                                \"X\": 0.39411410689353943,\n                                \"Y\": 0.674982488155365\n                            }]\n                        },\n                        \"Confidence\": 88.92194366455078\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Female\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03141585737466812,\n                                \"Height\": 0.005561677273362875,\n                                \"Left\": 0.1767473965883255,\n                                \"Top\": 0.7982064485549927\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1767473965883255,\n                                \"Y\": 0.7982399463653564\n                            }, {\n                                \"X\": 0.2081575095653534,\n                                \"Y\": 0.7982064485549927\n                            }, {\n                                \"X\": 0.20816326141357422,\n                                \"Y\": 0.8037346601486206\n                            }, {\n                                \"X\": 0.17675304412841797,\n                                \"Y\": 0.8037681579589844\n                            }]\n                        },\n                        \"Confidence\": 88.27845764160156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025551095604896545,\n                                \"Height\": 0.010411839932203293,\n                                \"Left\": 0.14706315100193024,\n                                \"Top\": 0.7942013740539551\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14706315100193024,\n                                \"Y\": 0.7942286133766174\n                            }, {\n                                \"X\": 0.17260366678237915,\n                                \"Y\": 0.7942013740539551\n                            }, {\n                                \"X\": 0.17261424660682678,\n                                \"Y\": 0.8045859932899475\n                            }, {\n                                \"X\": 0.14707358181476593,\n                                \"Y\": 0.8046132326126099\n                            }]\n                        },\n                        \"Confidence\": 99.9303970336914\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"I do not wish to furnish this information\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18047113716602325,\n                                \"Height\": 0.005872412119060755,\n                                \"Left\": 0.6470860242843628,\n                                \"Top\": 0.7506070733070374\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6470860242843628,\n                                \"Y\": 0.7508000731468201\n                            }, {\n                                \"X\": 0.827549159526825,\n                                \"Y\": 0.7506070733070374\n                            }, {\n                                \"X\": 0.8275571465492249,\n                                \"Y\": 0.75628662109375\n                            }, {\n                                \"X\": 0.6470933556556702,\n                                \"Y\": 0.7564795017242432\n                            }]\n                        },\n                        \"Confidence\": 87.4362564086914\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02547893486917019,\n                                \"Height\": 0.009609866887331009,\n                                \"Left\": 0.6178165674209595,\n                                \"Top\": 0.7473174929618835\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6178165674209595,\n                                \"Y\": 0.7473447322845459\n                            }, {\n                                \"X\": 0.6432831287384033,\n                                \"Y\": 0.7473174929618835\n                            }, {\n                                \"X\": 0.6432955265045166,\n                                \"Y\": 0.7569001317024231\n                            }, {\n                                \"X\": 0.6178287863731384,\n                                \"Y\": 0.7569273710250854\n                            }]\n                        },\n                        \"Confidence\": 99.86384582519531\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0246446430683136,\n                                \"Height\": 0.005623158998787403,\n                                \"Left\": 0.8532740473747253,\n                                \"Top\": 0.6694472432136536\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8532740473747253,\n                                \"Y\": 0.6694737076759338\n                            }, {\n                                \"X\": 0.8779106736183167,\n                                \"Y\": 0.6694472432136536\n                            }, {\n                                \"X\": 0.8779186606407166,\n                                \"Y\": 0.6750439405441284\n                            }, {\n                                \"X\": 0.8532819747924805,\n                                \"Y\": 0.6750704050064087\n                            }]\n                        },\n                        \"Confidence\": 85.32562255859375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"By the applicant and submitted via e-mail or the Internet\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.30025583505630493,\n                                \"Height\": 0.007447065785527229,\n                                \"Left\": 0.5061672329902649,\n                                \"Top\": 0.8283290266990662\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5061672329902649,\n                                \"Y\": 0.8286484479904175\n                            }, {\n                                \"X\": 0.8064131736755371,\n                                \"Y\": 0.8283290266990662\n                            }, {\n                                \"X\": 0.8064230680465698,\n                                \"Y\": 0.835456907749176\n                            }, {\n                                \"X\": 0.5061758756637573,\n                                \"Y\": 0.8357760906219482\n                            }]\n                        },\n                        \"Confidence\": 83.93247985839844\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02544030174612999,\n                                \"Height\": 0.009642905555665493,\n                                \"Left\": 0.4756019711494446,\n                                \"Top\": 0.825046956539154\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4756019711494446,\n                                \"Y\": 0.8250740170478821\n                            }, {\n                                \"X\": 0.5010306239128113,\n                                \"Y\": 0.825046956539154\n                            }, {\n                                \"X\": 0.5010422468185425,\n                                \"Y\": 0.8346628546714783\n                            }, {\n                                \"X\": 0.47561344504356384,\n                                \"Y\": 0.8346898555755615\n                            }]\n                        },\n                        \"Confidence\": 99.89822387695312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026505380868911743,\n                                \"Height\": 0.005526951514184475,\n                                \"Left\": 0.6266191005706787,\n                                \"Top\": 0.8362805843353271\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6266191005706787,\n                                \"Y\": 0.8363087773323059\n                            }, {\n                                \"X\": 0.653117299079895,\n                                \"Y\": 0.8362805843353271\n                            }, {\n                                \"X\": 0.6531244516372681,\n                                \"Y\": 0.841779351234436\n                            }, {\n                                \"X\": 0.6266261339187622,\n                                \"Y\": 0.8418075442314148\n                            }]\n                        },\n                        \"Confidence\": 83.91288757324219\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"p. Cash from/to Borrower (subtract j, k, I & o from i)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1565881073474884,\n                                \"Height\": 0.01574089191854,\n                                \"Left\": 0.04591987654566765,\n                                \"Top\": 0.5074790120124817\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04591987654566765,\n                                \"Y\": 0.5076491236686707\n                            }, {\n                                \"X\": 0.20249183475971222,\n                                \"Y\": 0.5074790120124817\n                            }, {\n                                \"X\": 0.20250798761844635,\n                                \"Y\": 0.5230499505996704\n                            }, {\n                                \"X\": 0.04593459889292717,\n                                \"Y\": 0.523219883441925\n                            }]\n                        },\n                        \"Confidence\": 76.39187622070312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"3,614.06\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05057154968380928,\n                                \"Height\": 0.007315891329199076,\n                                \"Left\": 0.3783532381057739,\n                                \"Top\": 0.5050904154777527\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3783532381057739,\n                                \"Y\": 0.5051453709602356\n                            }, {\n                                \"X\": 0.4289163053035736,\n                                \"Y\": 0.5050904154777527\n                            }, {\n                                \"X\": 0.4289247989654541,\n                                \"Y\": 0.512351393699646\n                            }, {\n                                \"X\": 0.3783615231513977,\n                                \"Y\": 0.5124062895774841\n                            }]\n                        },\n                        \"Confidence\": 76.39187622070312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"m. Loan amount (exclude PMI, MIP, Funding Fee financed)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.23895102739334106,\n                                \"Height\": 0.016800247132778168,\n                                \"Left\": 0.04615797474980354,\n                                \"Top\": 0.45919618010520935\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04615797474980354,\n                                \"Y\": 0.45945656299591064\n                            }, {\n                                \"X\": 0.2850910425186157,\n                                \"Y\": 0.45919618010520935\n                            }, {\n                                \"X\": 0.2851089835166931,\n                                \"Y\": 0.4757363200187683\n                            }, {\n                                \"X\": 0.046173617243766785,\n                                \"Y\": 0.4759964346885681\n                            }]\n                        },\n                        \"Confidence\": 74.71802520751953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"198,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06415899842977524,\n                                \"Height\": 0.0075726620852947235,\n                                \"Left\": 0.3645375967025757,\n                                \"Top\": 0.4693474769592285\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3645375967025757,\n                                \"Y\": 0.4694173336029053\n                            }, {\n                                \"X\": 0.42868784070014954,\n                                \"Y\": 0.4693474769592285\n                            }, {\n                                \"X\": 0.4286966025829315,\n                                \"Y\": 0.476850301027298\n                            }, {\n                                \"X\": 0.3645460903644562,\n                                \"Y\": 0.47692012786865234\n                            }]\n                        },\n                        \"Confidence\": 74.71802520751953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"O. Loan amount (add m & n)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.153710275888443,\n                                \"Height\": 0.006028528790920973,\n                                \"Left\": 0.046031974256038666,\n                                \"Top\": 0.4957784414291382\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046031974256038666,\n                                \"Y\": 0.495945543050766\n                            }, {\n                                \"X\": 0.19973619282245636,\n                                \"Y\": 0.4957784414291382\n                            }, {\n                                \"X\": 0.19974225759506226,\n                                \"Y\": 0.5016399025917053\n                            }, {\n                                \"X\": 0.04603751748800278,\n                                \"Y\": 0.5018069744110107\n                            }]\n                        },\n                        \"Confidence\": 74.4278564453125\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"198,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0640489012002945,\n                                \"Height\": 0.00758979981765151,\n                                \"Left\": 0.3656920790672302,\n                                \"Top\": 0.49356555938720703\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3656920790672302,\n                                \"Y\": 0.4936351776123047\n                            }, {\n                                \"X\": 0.42973220348358154,\n                                \"Y\": 0.49356555938720703\n                            }, {\n                                \"X\": 0.4297409951686859,\n                                \"Y\": 0.5010857582092285\n                            }, {\n                                \"X\": 0.3657006025314331,\n                                \"Y\": 0.5011553764343262\n                            }]\n                        },\n                        \"Confidence\": 74.4278564453125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"a. Purchase price\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0938815250992775,\n                                \"Height\": 0.006279450841248035,\n                                \"Left\": 0.04697639122605324,\n                                \"Top\": 0.24572281539440155\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04697639122605324,\n                                \"Y\": 0.24582652747631073\n                            }, {\n                                \"X\": 0.14085173606872559,\n                                \"Y\": 0.24572281539440155\n                            }, {\n                                \"X\": 0.14085790514945984,\n                                \"Y\": 0.2518985867500305\n                            }, {\n                                \"X\": 0.046982232481241226,\n                                \"Y\": 0.2520022690296173\n                            }]\n                        },\n                        \"Confidence\": 70.7890396118164\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12767532467842102,\n                                \"Height\": 0.0075661917217075825,\n                                \"Left\": 0.3016193211078644,\n                                \"Top\": 0.24305026233196259\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3016193211078644,\n                                \"Y\": 0.24319131672382355\n                            }, {\n                                \"X\": 0.4292859733104706,\n                                \"Y\": 0.24305026233196259\n                            }, {\n                                \"X\": 0.4292946457862854,\n                                \"Y\": 0.2504754364490509\n                            }, {\n                                \"X\": 0.3016274571418762,\n                                \"Y\": 0.2506164610385895\n                            }]\n                        },\n                        \"Confidence\": 70.7890396118164\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"C. Land (if acquired separately)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16647253930568695,\n                                \"Height\": 0.006861365865916014,\n                                \"Left\": 0.04611904174089432,\n                                \"Top\": 0.2694120407104492\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04611904174089432,\n                                \"Y\": 0.2695956826210022\n                            }, {\n                                \"X\": 0.21258461475372314,\n                                \"Y\": 0.2694120407104492\n                            }, {\n                                \"X\": 0.21259157359600067,\n                                \"Y\": 0.2760898470878601\n                            }, {\n                                \"X\": 0.04612535983324051,\n                                \"Y\": 0.2762733995914459\n                            }]\n                        },\n                        \"Confidence\": 69.65512084960938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026516014710068703,\n                                \"Height\": 0.006374616175889969,\n                                \"Left\": 0.40218204259872437,\n                                \"Top\": 0.26721176505088806\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40218204259872437,\n                                \"Y\": 0.2672410309314728\n                            }, {\n                                \"X\": 0.428690642118454,\n                                \"Y\": 0.26721176505088806\n                            }, {\n                                \"X\": 0.4286980628967285,\n                                \"Y\": 0.2735571563243866\n                            }, {\n                                \"X\": 0.40218937397003174,\n                                \"Y\": 0.2735863924026489\n                            }]\n                        },\n                        \"Confidence\": 69.65512084960938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"n. PMI, MIP, Funding Fee financed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1854362040758133,\n                                \"Height\": 0.006493048742413521,\n                                \"Left\": 0.047072287648916245,\n                                \"Top\": 0.48358187079429626\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.047072287648916245,\n                                \"Y\": 0.48378363251686096\n                            }, {\n                                \"X\": 0.23250184953212738,\n                                \"Y\": 0.48358187079429626\n                            }, {\n                                \"X\": 0.23250849545001984,\n                                \"Y\": 0.4898732304573059\n                            }, {\n                                \"X\": 0.047078244388103485,\n                                \"Y\": 0.49007490277290344\n                            }]\n                        },\n                        \"Confidence\": 68.54945373535156\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025667810812592506,\n                                \"Height\": 0.006428683642297983,\n                                \"Left\": 0.40313929319381714,\n                                \"Top\": 0.4815593957901001\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40313929319381714,\n                                \"Y\": 0.48158732056617737\n                            }, {\n                                \"X\": 0.4287996292114258,\n                                \"Y\": 0.4815593957901001\n                            }, {\n                                \"X\": 0.4288071095943451,\n                                \"Y\": 0.48796018958091736\n                            }, {\n                                \"X\": 0.4031466841697693,\n                                \"Y\": 0.48798808455467224\n                            }]\n                        },\n                        \"Confidence\": 68.54945373535156\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"b. Alterations, improvements, repairs\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19983378052711487,\n                                \"Height\": 0.006656335201114416,\n                                \"Left\": 0.04640628397464752,\n                                \"Top\": 0.257494181394577\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04640628397464752,\n                                \"Y\": 0.25771477818489075\n                            }, {\n                                \"X\": 0.24623322486877441,\n                                \"Y\": 0.257494181394577\n                            }, {\n                                \"X\": 0.2462400645017624,\n                                \"Y\": 0.2639300227165222\n                            }, {\n                                \"X\": 0.04641237109899521,\n                                \"Y\": 0.2641505300998688\n                            }]\n                        },\n                        \"Confidence\": 68.34127044677734\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02564355917274952,\n                                \"Height\": 0.006553090177476406,\n                                \"Left\": 0.4032604396343231,\n                                \"Top\": 0.2550073564052582\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4032604396343231,\n                                \"Y\": 0.2550356686115265\n                            }, {\n                                \"X\": 0.42889639735221863,\n                                \"Y\": 0.2550073564052582\n                            }, {\n                                \"X\": 0.4289039969444275,\n                                \"Y\": 0.26153215765953064\n                            }, {\n                                \"X\": 0.4032679796218872,\n                                \"Y\": 0.26156044006347656\n                            }]\n                        },\n                        \"Confidence\": 68.34127044677734\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"d. Refinance (incl. debts to be paid off)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20893621444702148,\n                                \"Height\": 0.006643342785537243,\n                                \"Left\": 0.048090096563100815,\n                                \"Top\": 0.28081560134887695\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.048090096563100815,\n                                \"Y\": 0.28104591369628906\n                            }, {\n                                \"X\": 0.2570194602012634,\n                                \"Y\": 0.28081560134887695\n                            }, {\n                                \"X\": 0.2570263147354126,\n                                \"Y\": 0.2872287333011627\n                            }, {\n                                \"X\": 0.04809616878628731,\n                                \"Y\": 0.2874589264392853\n                            }]\n                        },\n                        \"Confidence\": 67.978759765625\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"317,960.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06559083610773087,\n                                \"Height\": 0.007485669106245041,\n                                \"Left\": 0.36352667212486267,\n                                \"Top\": 0.2790173888206482\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.36352667212486267,\n                                \"Y\": 0.27908968925476074\n                            }, {\n                                \"X\": 0.4291088581085205,\n                                \"Y\": 0.2790173888206482\n                            }, {\n                                \"X\": 0.4291175305843353,\n                                \"Y\": 0.28643080592155457\n                            }, {\n                                \"X\": 0.363535076379776,\n                                \"Y\": 0.28650304675102234\n                            }]\n                        },\n                        \"Confidence\": 67.978759765625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"I. Other Credits (explain)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13599658012390137,\n                                \"Height\": 0.007023682352155447,\n                                \"Left\": 0.04689805209636688,\n                                \"Top\": 0.37656310200691223\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04689805209636688,\n                                \"Y\": 0.3767120838165283\n                            }, {\n                                \"X\": 0.18288756906986237,\n                                \"Y\": 0.37656310200691223\n                            }, {\n                                \"X\": 0.18289461731910706,\n                                \"Y\": 0.3834378719329834\n                            }, {\n                                \"X\": 0.046904556453228,\n                                \"Y\": 0.3835867941379547\n                            }]\n                        },\n                        \"Confidence\": 67.45897674560547\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"CLOSE COST PREPAID POC\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17732883989810944,\n                                \"Height\": 0.007176968269050121,\n                                \"Left\": 0.04726797714829445,\n                                \"Top\": 0.38604801893234253\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04726797714829445,\n                                \"Y\": 0.38624218106269836\n                            }, {\n                                \"X\": 0.2245894819498062,\n                                \"Y\": 0.38604801893234253\n                            }, {\n                                \"X\": 0.2245968133211136,\n                                \"Y\": 0.39303094148635864\n                            }, {\n                                \"X\": 0.04727458581328392,\n                                \"Y\": 0.3932250142097473\n                            }]\n                        },\n                        \"Confidence\": 67.45897674560547\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"i. Total costs (add items a through h)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.22966167330741882,\n                                \"Height\": 0.007691496983170509,\n                                \"Left\": 0.045901890844106674,\n                                \"Top\": 0.3386475443840027\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.045901890844106674,\n                                \"Y\": 0.33889976143836975\n                            }, {\n                                \"X\": 0.2755555510520935,\n                                \"Y\": 0.3386475443840027\n                            }, {\n                                \"X\": 0.2755635678768158,\n                                \"Y\": 0.34608694911003113\n                            }, {\n                                \"X\": 0.04590892791748047,\n                                \"Y\": 0.34633904695510864\n                            }]\n                        },\n                        \"Confidence\": 65.99021911621094\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"323,032.06\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06526997685432434,\n                                \"Height\": 0.007260690908879042,\n                                \"Left\": 0.36419132351875305,\n                                \"Top\": 0.3385518789291382\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.36419132351875305,\n                                \"Y\": 0.3386235535144806\n                            }, {\n                                \"X\": 0.42945289611816406,\n                                \"Y\": 0.3385518789291382\n                            }, {\n                                \"X\": 0.4294613003730774,\n                                \"Y\": 0.3457409143447876\n                            }, {\n                                \"X\": 0.3641994595527649,\n                                \"Y\": 0.3458125591278076\n                            }]\n                        },\n                        \"Confidence\": 65.99021911621094\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"e. Estimated prepaid items\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14419619739055634,\n                                \"Height\": 0.006357974838465452,\n                                \"Left\": 0.046447236090898514,\n                                \"Top\": 0.2931137681007385\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046447236090898514,\n                                \"Y\": 0.29327258467674255\n                            }, {\n                                \"X\": 0.19063705205917358,\n                                \"Y\": 0.2931137681007385\n                            }, {\n                                \"X\": 0.19064344465732574,\n                                \"Y\": 0.2993130087852478\n                            }, {\n                                \"X\": 0.04645309969782829,\n                                \"Y\": 0.29947173595428467\n                            }]\n                        },\n                        \"Confidence\": 64.57062530517578\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2,399.88\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05055050179362297,\n                                \"Height\": 0.0070846108719706535,\n                                \"Left\": 0.3776171803474426,\n                                \"Top\": 0.29102781414985657\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3776171803474426,\n                                \"Y\": 0.2910834848880768\n                            }, {\n                                \"X\": 0.4281594753265381,\n                                \"Y\": 0.29102781414985657\n                            }, {\n                                \"X\": 0.4281677007675171,\n                                \"Y\": 0.29805678129196167\n                            }, {\n                                \"X\": 0.3776251971721649,\n                                \"Y\": 0.2981124222278595\n                            }]\n                        },\n                        \"Confidence\": 64.57062530517578\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"i. Subordinate financing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13321606814861298,\n                                \"Height\": 0.006652747746556997,\n                                \"Left\": 0.0468837134540081,\n                                \"Top\": 0.3524388074874878\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0468837134540081,\n                                \"Y\": 0.35258495807647705\n                            }, {\n                                \"X\": 0.18009310960769653,\n                                \"Y\": 0.3524388074874878\n                            }, {\n                                \"X\": 0.18009978532791138,\n                                \"Y\": 0.35894542932510376\n                            }, {\n                                \"X\": 0.04688987135887146,\n                                \"Y\": 0.35909155011177063\n                            }]\n                        },\n                        \"Confidence\": 64.09484100341797\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"121,407.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06332767754793167,\n                                \"Height\": 0.0072068641893565655,\n                                \"Left\": 0.36532852053642273,\n                                \"Top\": 0.35050979256629944\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.36532852053642273,\n                                \"Y\": 0.35057929158210754\n                            }, {\n                                \"X\": 0.42864784598350525,\n                                \"Y\": 0.35050979256629944\n                            }, {\n                                \"X\": 0.4286561906337738,\n                                \"Y\": 0.35764721035957336\n                            }, {\n                                \"X\": 0.3653365969657898,\n                                \"Y\": 0.3577166497707367\n                            }]\n                        },\n                        \"Confidence\": 64.09484100341797\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"k. Borrower's closing costs paid by Seller\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2231900840997696,\n                                \"Height\": 0.006844142451882362,\n                                \"Left\": 0.04671335592865944,\n                                \"Top\": 0.36424750089645386\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04671335592865944,\n                                \"Y\": 0.3644922077655792\n                            }, {\n                                \"X\": 0.26989632844924927,\n                                \"Y\": 0.36424750089645386\n                            }, {\n                                \"X\": 0.26990342140197754,\n                                \"Y\": 0.37084701657295227\n                            }, {\n                                \"X\": 0.04671959951519966,\n                                \"Y\": 0.3710916340351105\n                            }]\n                        },\n                        \"Confidence\": 63.72290802001953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02583524025976658,\n                                \"Height\": 0.006688123103231192,\n                                \"Left\": 0.40338021516799927,\n                                \"Top\": 0.36214083433151245\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40338021516799927,\n                                \"Y\": 0.36216914653778076\n                            }, {\n                                \"X\": 0.4292076826095581,\n                                \"Y\": 0.36214083433151245\n                            }, {\n                                \"X\": 0.4292154610157013,\n                                \"Y\": 0.36880064010620117\n                            }, {\n                                \"X\": 0.4033879041671753,\n                                \"Y\": 0.3688289523124695\n                            }]\n                        },\n                        \"Confidence\": 63.72290802001953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"f. Estimated closing costs\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1418355405330658,\n                                \"Height\": 0.0069629424251616,\n                                \"Left\": 0.04669509083032608,\n                                \"Top\": 0.3050280213356018\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04669509083032608,\n                                \"Y\": 0.30518412590026855\n                            }, {\n                                \"X\": 0.18852363526821136,\n                                \"Y\": 0.3050280213356018\n                            }, {\n                                \"X\": 0.18853063881397247,\n                                \"Y\": 0.3118349313735962\n                            }, {\n                                \"X\": 0.04670153185725212,\n                                \"Y\": 0.31199097633361816\n                            }]\n                        },\n                        \"Confidence\": 62.12748336791992\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2,672.18\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.049871739000082016,\n                                \"Height\": 0.007523384876549244,\n                                \"Left\": 0.3790378272533417,\n                                \"Top\": 0.30274447798728943\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3790378272533417,\n                                \"Y\": 0.30279937386512756\n                            }, {\n                                \"X\": 0.4289008378982544,\n                                \"Y\": 0.30274447798728943\n                            }, {\n                                \"X\": 0.428909569978714,\n                                \"Y\": 0.31021299958229065\n                            }, {\n                                \"X\": 0.37904635071754456,\n                                \"Y\": 0.3102678656578064\n                            }]\n                        },\n                        \"Confidence\": 62.12748336791992\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"g. PMI, MIP, Funding Fee\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13728944957256317,\n                                \"Height\": 0.006448651198297739,\n                                \"Left\": 0.046822674572467804,\n                                \"Top\": 0.31685569882392883\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046822674572467804,\n                                \"Y\": 0.3170066773891449\n                            }, {\n                                \"X\": 0.18410566449165344,\n                                \"Y\": 0.31685569882392883\n                            }, {\n                                \"X\": 0.18411213159561157,\n                                \"Y\": 0.32315343618392944\n                            }, {\n                                \"X\": 0.04682863503694534,\n                                \"Y\": 0.32330435514450073\n                            }]\n                        },\n                        \"Confidence\": 57.27065658569336\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024607380852103233,\n                                \"Height\": 0.006175035145133734,\n                                \"Left\": 0.4060262441635132,\n                                \"Top\": 0.3149837553501129\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4060262441635132,\n                                \"Y\": 0.31501081585884094\n                            }, {\n                                \"X\": 0.43062642216682434,\n                                \"Y\": 0.3149837553501129\n                            }, {\n                                \"X\": 0.43063363432884216,\n                                \"Y\": 0.32113173604011536\n                            }, {\n                                \"X\": 0.40603333711624146,\n                                \"Y\": 0.3211587965488434\n                            }]\n                        },\n                        \"Confidence\": 57.27065658569336\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"h. Discount (if Borrower will pay)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17869006097316742,\n                                \"Height\": 0.006746436003595591,\n                                \"Left\": 0.04633135348558426,\n                                \"Top\": 0.32854345440864563\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04633135348558426,\n                                \"Y\": 0.32873982191085815\n                            }, {\n                                \"X\": 0.22501453757286072,\n                                \"Y\": 0.32854345440864563\n                            }, {\n                                \"X\": 0.22502142190933228,\n                                \"Y\": 0.33509358763694763\n                            }, {\n                                \"X\": 0.0463375486433506,\n                                \"Y\": 0.3352898955345154\n                            }]\n                        },\n                        \"Confidence\": 53.82759475708008\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02471163496375084,\n                                \"Height\": 0.006428183522075415,\n                                \"Left\": 0.4042661786079407,\n                                \"Top\": 0.3264027237892151\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4042661786079407,\n                                \"Y\": 0.3264298737049103\n                            }, {\n                                \"X\": 0.4289703071117401,\n                                \"Y\": 0.3264027237892151\n                            }, {\n                                \"X\": 0.4289777874946594,\n                                \"Y\": 0.33280375599861145\n                            }, {\n                                \"X\": 0.40427353978157043,\n                                \"Y\": 0.33283090591430664\n                            }]\n                        },\n                        \"Confidence\": 53.82759475708008\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Origination Company's Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2242193967103958,\n                                \"Height\": 0.007538595702499151,\n                                \"Left\": 0.6250430941581726,\n                                \"Top\": 0.8950751423835754\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6250430941581726,\n                                \"Y\": 0.8953125476837158\n                            }, {\n                                \"X\": 0.8492521643638611,\n                                \"Y\": 0.8950751423835754\n                            }, {\n                                \"X\": 0.8492624759674072,\n                                \"Y\": 0.9023764133453369\n                            }, {\n                                \"X\": 0.6250524520874023,\n                                \"Y\": 0.9026136994361877\n                            }]\n                        },\n                        \"Confidence\": 53.7739143371582\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"34100 WOODWARD AVE BIRMINGHAM, MI 48009\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17087319493293762,\n                                \"Height\": 0.024431420490145683,\n                                \"Left\": 0.6225777864456177,\n                                \"Top\": 0.9005440473556519\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6225777864456177,\n                                \"Y\": 0.9007248878479004\n                            }, {\n                                \"X\": 0.7934175133705139,\n                                \"Y\": 0.9005440473556519\n                            }, {\n                                \"X\": 0.7934510111808777,\n                                \"Y\": 0.9247949123382568\n                            }, {\n                                \"X\": 0.6226088404655457,\n                                \"Y\": 0.9249754548072815\n                            }]\n                        },\n                        \"Confidence\": 53.7739143371582\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Initials:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03180859610438347,\n                                \"Height\": 0.005179988220334053,\n                                \"Left\": 0.5939716100692749,\n                                \"Top\": 0.9508448243141174\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5939716100692749,\n                                \"Y\": 0.950878381729126\n                            }, {\n                                \"X\": 0.6257736086845398,\n                                \"Y\": 0.9508448243141174\n                            }, {\n                                \"X\": 0.6257802248001099,\n                                \"Y\": 0.955991268157959\n                            }, {\n                                \"X\": 0.5939781069755554,\n                                \"Y\": 0.9560247659683228\n                            }]\n                        },\n                        \"Confidence\": 30.253803253173828\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Account Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08946610987186432,\n                                \"Height\": 0.005781622603535652,\n                                \"Left\": 0.7813314199447632,\n                                \"Top\": 0.1740407943725586\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7813314199447632,\n                                \"Y\": 0.1741400808095932\n                            }, {\n                                \"X\": 0.8707894682884216,\n                                \"Y\": 0.1740407943725586\n                            }, {\n                                \"X\": 0.8707975745201111,\n                                \"Y\": 0.17972317337989807\n                            }, {\n                                \"X\": 0.7813392281532288,\n                                \"Y\": 0.1798224151134491\n                            }]\n                        },\n                        \"Confidence\": 21.068378448486328\n                    },\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 12,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 99.99958038330078\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 57.848751068115234\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 13,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"BANK_STATEMENT\",\n                \"Confidence\": 99.9999771118164\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Mary Jane Smith\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09174329787492752,\n                                \"Height\": 0.01131385751068592,\n                                \"Left\": 0.26218485832214355,\n                                \"Top\": 0.2276782989501953\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.26220518350601196,\n                                \"Y\": 0.2276782989501953\n                            }, {\n                                \"X\": 0.3539281487464905,\n                                \"Y\": 0.22777076065540314\n                            }, {\n                                \"X\": 0.35390785336494446,\n                                \"Y\": 0.23899215459823608\n                            }, {\n                                \"X\": 0.26218485832214355,\n                                \"Y\": 0.23889970779418945\n                            }]\n                        },\n                        \"Confidence\": 100.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"100 Pine Street Metro, AA 09371\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09210509061813354,\n                                \"Height\": 0.026851598173379898,\n                                \"Left\": 0.2621285021305084,\n                                \"Top\": 0.2432156354188919\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2621770203113556,\n                                \"Y\": 0.2432156354188919\n                            }, {\n                                \"X\": 0.35423359274864197,\n                                \"Y\": 0.243308424949646\n                            }, {\n                                \"X\": 0.35418522357940674,\n                                \"Y\": 0.2700672149658203\n                            }, {\n                                \"X\": 0.2621285021305084,\n                                \"Y\": 0.2699744403362274\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Main and Elm\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05238180235028267,\n                                \"Height\": 0.008684921078383923,\n                                \"Left\": 0.5625995397567749,\n                                \"Top\": 0.47399279475212097\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5626150369644165,\n                                \"Y\": 0.47399279475212097\n                            }, {\n                                \"X\": 0.6149813532829285,\n                                \"Y\": 0.47404560446739197\n                            }, {\n                                \"X\": 0.6149658560752869,\n                                \"Y\": 0.482677698135376\n                            }, {\n                                \"X\": 0.5625995397567749,\n                                \"Y\": 0.482624888420105\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"00-123456\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04070879891514778,\n                                \"Height\": 0.009536083787679672,\n                                \"Left\": 0.5626634359359741,\n                                \"Top\": 0.25171881914138794\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5626804828643799,\n                                \"Y\": 0.25171881914138794\n                            }, {\n                                \"X\": 0.6033722758293152,\n                                \"Y\": 0.2517598569393158\n                            }, {\n                                \"X\": 0.6033552289009094,\n                                \"Y\": 0.2612549066543579\n                            }, {\n                                \"X\": 0.5626634359359741,\n                                \"Y\": 0.26121389865875244\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_TYPE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PERIOD_START_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Mar 15, 2010\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.060725677758455276,\n                                \"Height\": 0.012145779095590115,\n                                \"Left\": 0.5817208886146545,\n                                \"Top\": 0.22368445992469788\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.581742525100708,\n                                \"Y\": 0.22368445992469788\n                            }, {\n                                \"X\": 0.6424465179443359,\n                                \"Y\": 0.22374564409255981\n                            }, {\n                                \"X\": 0.6424248814582825,\n                                \"Y\": 0.23583023250102997\n                            }, {\n                                \"X\": 0.5817208886146545,\n                                \"Y\": 0.23576904833316803\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"PERIOD_END_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Apr 18, 2010\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06005934253334999,\n                                \"Height\": 0.012576702050864697,\n                                \"Left\": 0.6570998430252075,\n                                \"Top\": 0.2237604409456253\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6571222543716431,\n                                \"Y\": 0.2237604409456253\n                            }, {\n                                \"X\": 0.7171592116355896,\n                                \"Y\": 0.22382095456123352\n                            }, {\n                                \"X\": 0.7171368598937988,\n                                \"Y\": 0.23633714020252228\n                            }, {\n                                \"X\": 0.6570998430252075,\n                                \"Y\": 0.23627662658691406\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_CONTACT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"1-800-222-0123\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.060054339468479156,\n                                \"Height\": 0.009555685333907604,\n                                \"Left\": 0.5628559589385986,\n                                \"Top\": 0.33026957511901855\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5628730058670044,\n                                \"Y\": 0.33026957511901855\n                            }, {\n                                \"X\": 0.6229103207588196,\n                                \"Y\": 0.33033010363578796\n                            }, {\n                                \"X\": 0.6228933334350586,\n                                \"Y\": 0.33982524275779724\n                            }, {\n                                \"X\": 0.5628559589385986,\n                                \"Y\": 0.33976471424102783\n                            }]\n                        },\n                        \"Confidence\": 52.0\n                    }, {\n                        \"Text\": \"1-800-123-0007\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06038738414645195,\n                                \"Height\": 0.009124520234763622,\n                                \"Left\": 0.5627157688140869,\n                                \"Top\": 0.4088206887245178\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5627320408821106,\n                                \"Y\": 0.4088206887245178\n                            }, {\n                                \"X\": 0.623103141784668,\n                                \"Y\": 0.4088815748691559\n                            }, {\n                                \"X\": 0.6230869293212891,\n                                \"Y\": 0.4179452061653137\n                            }, {\n                                \"X\": 0.5627157688140869,\n                                \"Y\": 0.41788432002067566\n                            }]\n                        },\n                        \"Confidence\": 52.0\n                    }, {\n                        \"Text\": \"+1-123-4567\",\n                        \"Confidence\": 52.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Main and Elm 100 Main Street Metropolis, AA 01234\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06045734882354736,\n                                \"Height\": 0.04796918109059334,\n                                \"Left\": 0.5625290274620056,\n                                \"Top\": 0.47399279475212097\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5626150369644165,\n                                \"Y\": 0.47399279475212097\n                            }, {\n                                \"X\": 0.622986376285553,\n                                \"Y\": 0.47405368089675903\n                            }, {\n                                \"X\": 0.6229005455970764,\n                                \"Y\": 0.5219619870185852\n                            }, {\n                                \"X\": 0.5625290274620056,\n                                \"Y\": 0.5219010710716248\n                            }]\n                        },\n                        \"Confidence\": 86.0\n                    }]\n                }, {\n                    \"Type\": \"BEGINNING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$5,234.09\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03770789876580238,\n                                \"Height\": 0.00996473804116249,\n                                \"Left\": 0.506170392036438,\n                                \"Top\": 0.3207172453403473\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5061882138252258,\n                                \"Y\": 0.3207172453403473\n                            }, {\n                                \"X\": 0.5438782572746277,\n                                \"Y\": 0.3207552433013916\n                            }, {\n                                \"X\": 0.5438604354858398,\n                                \"Y\": 0.3306819796562195\n                            }, {\n                                \"X\": 0.506170392036438,\n                                \"Y\": 0.33064398169517517\n                            }]\n                        },\n                        \"Confidence\": 92.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_DEPOSIT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$2,872.45\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03770873323082924,\n                                \"Height\": 0.010396371595561504,\n                                \"Left\": 0.5061214566230774,\n                                \"Top\": 0.3474763035774231\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5061401128768921,\n                                \"Y\": 0.3474763035774231\n                            }, {\n                                \"X\": 0.5438302159309387,\n                                \"Y\": 0.3475143015384674\n                            }, {\n                                \"X\": 0.5438116192817688,\n                                \"Y\": 0.35787269473075867\n                            }, {\n                                \"X\": 0.5061214566230774,\n                                \"Y\": 0.35783466696739197\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_WITHDRAWAL\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$2,395.67\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03804224357008934,\n                                \"Height\": 0.010396690107882023,\n                                \"Left\": 0.5058119893074036,\n                                \"Top\": 0.33409643173217773\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5058306455612183,\n                                \"Y\": 0.33409643173217773\n                            }, {\n                                \"X\": 0.5438542366027832,\n                                \"Y\": 0.3341347873210907\n                            }, {\n                                \"X\": 0.5438356399536133,\n                                \"Y\": 0.3444931209087372\n                            }, {\n                                \"X\": 0.5058119893074036,\n                                \"Y\": 0.3444547951221466\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"ENDING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$5,710.87\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03837667033076286,\n                                \"Height\": 0.01082868967205286,\n                                \"Left\": 0.5057258605957031,\n                                \"Top\": 0.38157230615615845\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5057452321052551,\n                                \"Y\": 0.38157230615615845\n                            }, {\n                                \"X\": 0.5441024899482727,\n                                \"Y\": 0.3816109895706177\n                            }, {\n                                \"X\": 0.5440831184387207,\n                                \"Y\": 0.3924010097980499\n                            }, {\n                                \"X\": 0.5057258605957031,\n                                \"Y\": 0.3923623263835907\n                            }]\n                        },\n                        \"Confidence\": 95.0\n                    }]\n                }, {\n                    \"Type\": \"AVERAGE_BALANCE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 14,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"BANK_STATEMENT\",\n                \"Confidence\": 99.99993133544922\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Miss Margaret Laing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13292764127254486,\n                                \"Height\": 0.012076087296009064,\n                                \"Left\": 0.7285407185554504,\n                                \"Top\": 0.07749906927347183\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7285407185554504,\n                                \"Y\": 0.07757353782653809\n                            }, {\n                                \"X\": 0.861458957195282,\n                                \"Y\": 0.07749906927347183\n                            }, {\n                                \"X\": 0.8614683151245117,\n                                \"Y\": 0.08950140327215195\n                            }, {\n                                \"X\": 0.7285494208335876,\n                                \"Y\": 0.0895751565694809\n                            }]\n                        },\n                        \"Confidence\": 77.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"33 CONRAD HOUSE CLIFTON GROVE DULSTON E8 1 DL\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14753854274749756,\n                                \"Height\": 0.04574097692966461,\n                                \"Left\": 0.11425507813692093,\n                                \"Top\": 0.1538311094045639\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11425507813692093,\n                                \"Y\": 0.1539086550474167\n                            }, {\n                                \"X\": 0.26176902651786804,\n                                \"Y\": 0.1538311094045639\n                            }, {\n                                \"X\": 0.2617936134338379,\n                                \"Y\": 0.19949761033058167\n                            }, {\n                                \"X\": 0.1142769604921341,\n                                \"Y\": 0.19957208633422852\n                            }]\n                        },\n                        \"Confidence\": 95.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Barclays Bank\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.19758844375610352,\n                                \"Height\": 0.025426486507058144,\n                                \"Left\": 0.1729809194803238,\n                                \"Top\": 0.2884516417980194\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1729809194803238,\n                                \"Y\": 0.28854337334632874\n                            }, {\n                                \"X\": 0.3705546259880066,\n                                \"Y\": 0.2884516417980194\n                            }, {\n                                \"X\": 0.3705693781375885,\n                                \"Y\": 0.31378868222236633\n                            }, {\n                                \"X\": 0.17299364507198334,\n                                \"Y\": 0.3138781189918518\n                            }]\n                        },\n                        \"Confidence\": 94.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"10534978\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05870075523853302,\n                                \"Height\": 0.008033650927245617,\n                                \"Left\": 0.8140091300010681,\n                                \"Top\": 0.10749899595975876\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8140091300010681,\n                                \"Y\": 0.10753107815980911\n                            }, {\n                                \"X\": 0.8727036118507385,\n                                \"Y\": 0.10749899595975876\n                            }, {\n                                \"X\": 0.8727098703384399,\n                                \"Y\": 0.11550077795982361\n                            }, {\n                                \"X\": 0.8140152096748352,\n                                \"Y\": 0.11553264409303665\n                            }]\n                        },\n                        \"Confidence\": 95.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_TYPE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PERIOD_START_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"10 Nov\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.045317791402339935,\n                                \"Height\": 0.00936028454452753,\n                                \"Left\": 0.7293863296508789,\n                                \"Top\": 0.053544286638498306\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7293863296508789,\n                                \"Y\": 0.05357016995549202\n                            }, {\n                                \"X\": 0.7746971249580383,\n                                \"Y\": 0.053544286638498306\n                            }, {\n                                \"X\": 0.774704098701477,\n                                \"Y\": 0.06287888437509537\n                            }, {\n                                \"X\": 0.7293930649757385,\n                                \"Y\": 0.06290457397699356\n                            }]\n                        },\n                        \"Confidence\": 93.0\n                    }]\n                }, {\n                    \"Type\": \"PERIOD_END_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"07 Dec 2012\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08286760002374649,\n                                \"Height\": 0.0097153689712286,\n                                \"Left\": 0.7889381051063538,\n                                \"Top\": 0.05348882079124451\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7889381051063538,\n                                \"Y\": 0.053536154329776764\n                            }, {\n                                \"X\": 0.8717980980873108,\n                                \"Y\": 0.05348882079124451\n                            }, {\n                                \"X\": 0.8718056678771973,\n                                \"Y\": 0.06315722316503525\n                            }, {\n                                \"X\": 0.7889453172683716,\n                                \"Y\": 0.06320419162511826\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_CONTACT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"2036 1610 5349 78\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09927324950695038,\n                                \"Height\": 0.007721456699073315,\n                                \"Left\": 0.8299973607063293,\n                                \"Top\": 0.13380815088748932\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8299973607063293,\n                                \"Y\": 0.1338612288236618\n                            }, {\n                                \"X\": 0.9292644262313843,\n                                \"Y\": 0.13380815088748932\n                            }, {\n                                \"X\": 0.9292706251144409,\n                                \"Y\": 0.14147688448429108\n                            }, {\n                                \"X\": 0.8300032615661621,\n                                \"Y\": 0.1415296047925949\n                            }]\n                        },\n                        \"Confidence\": 88.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BEGINNING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u00a3370.02\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05914068967103958,\n                                \"Height\": 0.010699726641178131,\n                                \"Left\": 0.8835664987564087,\n                                \"Top\": 0.2001541703939438\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8835664987564087,\n                                \"Y\": 0.20018400251865387\n                            }, {\n                                \"X\": 0.9426984786987305,\n                                \"Y\": 0.2001541703939438\n                            }, {\n                                \"X\": 0.9427071809768677,\n                                \"Y\": 0.21082435548305511\n                            }, {\n                                \"X\": 0.883574903011322,\n                                \"Y\": 0.21085390448570251\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_DEPOSIT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u00a32,200.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07165862619876862,\n                                \"Height\": 0.011705796234309673,\n                                \"Left\": 0.8702028393745422,\n                                \"Top\": 0.22082817554473877\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8702028393745422,\n                                \"Y\": 0.22086364030838013\n                            }, {\n                                \"X\": 0.9418520331382751,\n                                \"Y\": 0.22082817554473877\n                            }, {\n                                \"X\": 0.9418615102767944,\n                                \"Y\": 0.2324988842010498\n                            }, {\n                                \"X\": 0.8702120184898376,\n                                \"Y\": 0.23253396153450012\n                            }]\n                        },\n                        \"Confidence\": 84.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_WITHDRAWAL\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u00a32,334.74\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07295411825180054,\n                                \"Height\": 0.011705941520631313,\n                                \"Left\": 0.8697874546051025,\n                                \"Top\": 0.24150165915489197\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8697874546051025,\n                                \"Y\": 0.24153707921504974\n                            }, {\n                                \"X\": 0.9427320957183838,\n                                \"Y\": 0.24150165915489197\n                            }, {\n                                \"X\": 0.9427415728569031,\n                                \"Y\": 0.2531725764274597\n                            }, {\n                                \"X\": 0.8697965741157532,\n                                \"Y\": 0.25320759415626526\n                            }]\n                        },\n                        \"Confidence\": 90.0\n                    }]\n                }, {\n                    \"Type\": \"ENDING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u00a3235.28\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06173216924071312,\n                                \"Height\": 0.011033248156309128,\n                                \"Left\": 0.8810262084007263,\n                                \"Top\": 0.2628428339958191\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8810262084007263,\n                                \"Y\": 0.26287221908569336\n                            }, {\n                                \"X\": 0.9427494406700134,\n                                \"Y\": 0.2628428339958191\n                            }, {\n                                \"X\": 0.9427583813667297,\n                                \"Y\": 0.2738470137119293\n                            }, {\n                                \"X\": 0.8810348510742188,\n                                \"Y\": 0.2738760709762573\n                            }]\n                        },\n                        \"Confidence\": 96.0\n                    }]\n                }, {\n                    \"Type\": \"AVERAGE_BALANCE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 15,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"BANK_STATEMENT\",\n                \"Confidence\": 99.99767303466797\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BANK_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"JP MORGAN CHASE BANK, N.A., TORONTO BRANCH\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.4623045325279236,\n                                \"Height\": 0.013120293617248535,\n                                \"Left\": 0.2731530964374542,\n                                \"Top\": 0.09752457588911057\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2731530964374542,\n                                \"Y\": 0.09752457588911057\n                            }, {\n                                \"X\": 0.7354466915130615,\n                                \"Y\": 0.09763986617326736\n                            }, {\n                                \"X\": 0.7354575991630554,\n                                \"Y\": 0.1106448695063591\n                            }, {\n                                \"X\": 0.2731613516807556,\n                                \"Y\": 0.11052809655666351\n                            }]\n                        },\n                        \"Confidence\": 71.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ACCOUNT_TYPE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PERIOD_START_DATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PERIOD_END_DATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BANK_CONTACT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BANK_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BEGINNING_BALANCE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"TOTAL_DEPOSIT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"TOTAL_WITHDRAWAL\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ENDING_BALANCE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"AVERAGE_BALANCE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 16,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"BANK_STATEMENT\",\n                \"Confidence\": 99.99970245361328\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Mary Jane Smith\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17659102380275726,\n                                \"Height\": 0.013362206518650055,\n                                \"Left\": 0.03445808216929436,\n                                \"Top\": 0.1275840401649475\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.03445808216929436,\n                                \"Y\": 0.1275840401649475\n                            }, {\n                                \"X\": 0.21104705333709717,\n                                \"Y\": 0.12760914862155914\n                            }, {\n                                \"X\": 0.21104910969734192,\n                                \"Y\": 0.14094625413417816\n                            }, {\n                                \"X\": 0.03445945307612419,\n                                \"Y\": 0.14092057943344116\n                            }]\n                        },\n                        \"Confidence\": 100.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"100 Pine Street Metro, AA 09371\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17788991332054138,\n                                \"Height\": 0.03070187382400036,\n                                \"Left\": 0.03359648212790489,\n                                \"Top\": 0.14592167735099792\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.03359648212790489,\n                                \"Y\": 0.14592167735099792\n                            }, {\n                                \"X\": 0.21148166060447693,\n                                \"Y\": 0.14594775438308716\n                            }, {\n                                \"X\": 0.21148638427257538,\n                                \"Y\": 0.17662355303764343\n                            }, {\n                                \"X\": 0.033599626272916794,\n                                \"Y\": 0.17659619450569153\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"CrawfordTech Bank\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2901870608329773,\n                                \"Height\": 0.01937616430222988,\n                                \"Left\": 0.31682154536247253,\n                                \"Top\": 0.05593729019165039\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.31682154536247253,\n                                \"Y\": 0.05593729019165039\n                            }, {\n                                \"X\": 0.607003390789032,\n                                \"Y\": 0.05597362667322159\n                            }, {\n                                \"X\": 0.6070085763931274,\n                                \"Y\": 0.07531345635652542\n                            }, {\n                                \"X\": 0.31682512164115906,\n                                \"Y\": 0.07527578622102737\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"00-123456\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07773968577384949,\n                                \"Height\": 0.010349167510867119,\n                                \"Left\": 0.6156675815582275,\n                                \"Top\": 0.15601085126399994\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6156675815582275,\n                                \"Y\": 0.15601085126399994\n                            }, {\n                                \"X\": 0.6934041976928711,\n                                \"Y\": 0.15602242946624756\n                            }, {\n                                \"X\": 0.6934072375297546,\n                                \"Y\": 0.1663600206375122\n                            }, {\n                                \"X\": 0.615670382976532,\n                                \"Y\": 0.16634826362133026\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_TYPE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PERIOD_START_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Mar 15, 2010\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11617965251207352,\n                                \"Height\": 0.014355642721056938,\n                                \"Left\": 0.6532306671142578,\n                                \"Top\": 0.1233370453119278\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6532306671142578,\n                                \"Y\": 0.1233370453119278\n                            }, {\n                                \"X\": 0.7694057822227478,\n                                \"Y\": 0.12335344403982162\n                            }, {\n                                \"X\": 0.7694103121757507,\n                                \"Y\": 0.13769268989562988\n                            }, {\n                                \"X\": 0.6532347202301025,\n                                \"Y\": 0.13767589628696442\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"PERIOD_END_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Apr 18, 2010\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11618845909833908,\n                                \"Height\": 0.015023102052509785,\n                                \"Left\": 0.7979106903076172,\n                                \"Top\": 0.12335746735334396\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7979106903076172,\n                                \"Y\": 0.12335746735334396\n                            }, {\n                                \"X\": 0.9140937328338623,\n                                \"Y\": 0.12337387353181839\n                            }, {\n                                \"X\": 0.9140991568565369,\n                                \"Y\": 0.13838057219982147\n                            }, {\n                                \"X\": 0.7979155778884888,\n                                \"Y\": 0.1383637636899948\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_CONTACT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"1-800-222-0123\",\n                        \"Confidence\": 54.000003814697266\n                    }, {\n                        \"Text\": \"1-800-123-0007\",\n                        \"Confidence\": 54.000003814697266\n                    }, {\n                        \"Text\": \"+1-123-4567\",\n                        \"Confidence\": 54.000003814697266\n                    }]\n                }, {\n                    \"Type\": \"BANK_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Main and Elm 100 Main Street Metropolis, AA 01234\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1157679483294487,\n                                \"Height\": 0.055723436176776886,\n                                \"Left\": 0.6157373785972595,\n                                \"Top\": 0.4124634861946106\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6157373785972595,\n                                \"Y\": 0.4124634861946106\n                            }, {\n                                \"X\": 0.7314882874488831,\n                                \"Y\": 0.41248777508735657\n                            }, {\n                                \"X\": 0.7315053343772888,\n                                \"Y\": 0.4681869447231293\n                            }, {\n                                \"X\": 0.6157525181770325,\n                                \"Y\": 0.46816113591194153\n                            }]\n                        },\n                        \"Confidence\": 79.0\n                    }]\n                }, {\n                    \"Type\": \"BEGINNING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$5,234.09\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07212324440479279,\n                                \"Height\": 0.011683814227581024,\n                                \"Left\": 0.5068603157997131,\n                                \"Top\": 0.23602570593357086\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5068603157997131,\n                                \"Y\": 0.23602570593357086\n                            }, {\n                                \"X\": 0.5789805054664612,\n                                \"Y\": 0.23603782057762146\n                            }, {\n                                \"X\": 0.5789836049079895,\n                                \"Y\": 0.24770952761173248\n                            }, {\n                                \"X\": 0.5068631172180176,\n                                \"Y\": 0.24769721925258636\n                            }]\n                        },\n                        \"Confidence\": 86.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_DEPOSIT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$2,872.45\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07212388515472412,\n                                \"Height\": 0.011684538796544075,\n                                \"Left\": 0.5068676471710205,\n                                \"Top\": 0.26637178659439087\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5068676471710205,\n                                \"Y\": 0.26637178659439087\n                            }, {\n                                \"X\": 0.5789884924888611,\n                                \"Y\": 0.26638442277908325\n                            }, {\n                                \"X\": 0.5789915323257446,\n                                \"Y\": 0.2780563235282898\n                            }, {\n                                \"X\": 0.506870448589325,\n                                \"Y\": 0.2780435085296631\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_WITHDRAWAL\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$2,395.67\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07125993072986603,\n                                \"Height\": 0.012017504312098026,\n                                \"Left\": 0.5072957873344421,\n                                \"Top\": 0.2510320246219635\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5072957873344421,\n                                \"Y\": 0.2510320246219635\n                            }, {\n                                \"X\": 0.5785526037216187,\n                                \"Y\": 0.25104424357414246\n                            }, {\n                                \"X\": 0.578555703163147,\n                                \"Y\": 0.26304951310157776\n                            }, {\n                                \"X\": 0.5072987079620361,\n                                \"Y\": 0.2630371153354645\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"ENDING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$5,710.87\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07298854738473892,\n                                \"Height\": 0.012019162997603416,\n                                \"Left\": 0.5060136914253235,\n                                \"Top\": 0.3070562481880188\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5060136914253235,\n                                \"Y\": 0.3070562481880188\n                            }, {\n                                \"X\": 0.5789991021156311,\n                                \"Y\": 0.30706971883773804\n                            }, {\n                                \"X\": 0.5790022611618042,\n                                \"Y\": 0.31907540559768677\n                            }, {\n                                \"X\": 0.5060165524482727,\n                                \"Y\": 0.3190617263317108\n                            }]\n                        },\n                        \"Confidence\": 93.0\n                    }]\n                }, {\n                    \"Type\": \"AVERAGE_BALANCE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 17,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"BANK_STATEMENT\",\n                \"Confidence\": 99.99996185302734\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BANK_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"CRUSTA\",\n                        \"Confidence\": 2.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"4304567890987\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12615935504436493,\n                                \"Height\": 0.009427268989384174,\n                                \"Left\": 0.7294889688491821,\n                                \"Top\": 0.3139999508857727\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7294889688491821,\n                                \"Y\": 0.314085453748703\n                            }, {\n                                \"X\": 0.8556379079818726,\n                                \"Y\": 0.3139999508857727\n                            }, {\n                                \"X\": 0.8556483387947083,\n                                \"Y\": 0.3233417868614197\n                            }, {\n                                \"X\": 0.729499101638794,\n                                \"Y\": 0.3234272301197052\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_TYPE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"CURRENT ACCOUNT\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14689622819423676,\n                                \"Height\": 0.008774042129516602,\n                                \"Left\": 0.7295052409172058,\n                                \"Top\": 0.3289996087551117\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7295052409172058,\n                                \"Y\": 0.32909905910491943\n                            }, {\n                                \"X\": 0.8763917088508606,\n                                \"Y\": 0.3289996087551117\n                            }, {\n                                \"X\": 0.8764014840126038,\n                                \"Y\": 0.33767423033714294\n                            }, {\n                                \"X\": 0.7295146584510803,\n                                \"Y\": 0.3377736508846283\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"PERIOD_START_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"29-Dec-2018\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11406242847442627,\n                                \"Height\": 0.009752706624567509,\n                                \"Left\": 0.46689414978027344,\n                                \"Top\": 0.3812475800514221\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.46689414978027344,\n                                \"Y\": 0.3813245892524719\n                            }, {\n                                \"X\": 0.5809465050697327,\n                                \"Y\": 0.3812475800514221\n                            }, {\n                                \"X\": 0.5809565782546997,\n                                \"Y\": 0.3909233510494232\n                            }, {\n                                \"X\": 0.4669038653373718,\n                                \"Y\": 0.39100030064582825\n                            }]\n                        },\n                        \"Confidence\": 96.0\n                    }]\n                }, {\n                    \"Type\": \"PERIOD_END_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"12-Jan-2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11190372705459595,\n                                \"Height\": 0.009417657740414143,\n                                \"Left\": 0.6232843995094299,\n                                \"Top\": 0.3811434805393219\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6232843995094299,\n                                \"Y\": 0.3812189996242523\n                            }, {\n                                \"X\": 0.7351779341697693,\n                                \"Y\": 0.3811434805393219\n                            }, {\n                                \"X\": 0.7351881265640259,\n                                \"Y\": 0.39048564434051514\n                            }, {\n                                \"X\": 0.6232941746711731,\n                                \"Y\": 0.39056113362312317\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_CONTACT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BANK_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BEGINNING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"419.08\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.044076573103666306,\n                                \"Height\": 0.007703870069235563,\n                                \"Left\": 0.9076200723648071,\n                                \"Top\": 0.4370515048503876\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9076200723648071,\n                                \"Y\": 0.43708115816116333\n                            }, {\n                                \"X\": 0.9516878128051758,\n                                \"Y\": 0.4370515048503876\n                            }, {\n                                \"X\": 0.9516966342926025,\n                                \"Y\": 0.44472575187683105\n                            }, {\n                                \"X\": 0.9076287746429443,\n                                \"Y\": 0.4447553753852844\n                            }]\n                        },\n                        \"Confidence\": 97.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_DEPOSIT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"TOTAL_WITHDRAWAL\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ENDING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"413.63\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04494433104991913,\n                                \"Height\": 0.007037941832095385,\n                                \"Left\": 0.9157769083976746,\n                                \"Top\": 0.7710734605789185\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9157769083976746,\n                                \"Y\": 0.7711030840873718\n                            }, {\n                                \"X\": 0.9607131481170654,\n                                \"Y\": 0.7710734605789185\n                            }, {\n                                \"X\": 0.9607211947441101,\n                                \"Y\": 0.7780817151069641\n                            }, {\n                                \"X\": 0.9157848954200745,\n                                \"Y\": 0.7781113982200623\n                            }]\n                        },\n                        \"Confidence\": 89.0\n                    }]\n                }, {\n                    \"Type\": \"AVERAGE_BALANCE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 18,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"BANK_STATEMENT\",\n                \"Confidence\": 99.9999771118164\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 99.98844909667969\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"AHMAD MUSTAPHA DAFER\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20044344663619995,\n                                \"Height\": 0.010047949850559235,\n                                \"Left\": 0.09706254303455353,\n                                \"Top\": 0.3275628387928009\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.09706254303455353,\n                                \"Y\": 0.3275628387928009\n                            }, {\n                                \"X\": 0.2974967062473297,\n                                \"Y\": 0.3276059925556183\n                            }, {\n                                \"X\": 0.2975059747695923,\n                                \"Y\": 0.33761078119277954\n                            }, {\n                                \"X\": 0.09707016497850418,\n                                \"Y\": 0.33756622672080994\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"43 Great Sutton Street, London, ECIV 2DB, United Kingdom\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2719723582267761,\n                                \"Height\": 0.02640390582382679,\n                                \"Left\": 0.0966506078839302,\n                                \"Top\": 0.34195008873939514\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0966506078839302,\n                                \"Y\": 0.34195008873939514\n                            }, {\n                                \"X\": 0.36859700083732605,\n                                \"Y\": 0.34201136231422424\n                            }, {\n                                \"X\": 0.36862295866012573,\n                                \"Y\": 0.3683539927005768\n                            }, {\n                                \"X\": 0.09667065739631653,\n                                \"Y\": 0.36828768253326416\n                            }]\n                        },\n                        \"Confidence\": 75.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"HSBC\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18860766291618347,\n                                \"Height\": 0.03632405027747154,\n                                \"Left\": 0.1058826893568039,\n                                \"Top\": 0.00032917963108047843\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1058826893568039,\n                                \"Y\": 0.00033170872484333813\n                            }, {\n                                \"X\": 0.2944567799568176,\n                                \"Y\": 0.00032917963108047843\n                            }, {\n                                \"X\": 0.29449036717414856,\n                                \"Y\": 0.03665323182940483\n                            }, {\n                                \"X\": 0.10591062158346176,\n                                \"Y\": 0.03665097430348396\n                            }]\n                        },\n                        \"Confidence\": 89.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"MIDLGB225278/00990274\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15334884822368622,\n                                \"Height\": 0.008035986684262753,\n                                \"Left\": 0.6337001323699951,\n                                \"Top\": 0.31205639243125916\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6337001323699951,\n                                \"Y\": 0.31205639243125916\n                            }, {\n                                \"X\": 0.7870383262634277,\n                                \"Y\": 0.312087744474411\n                            }, {\n                                \"X\": 0.7870489954948425,\n                                \"Y\": 0.3200923800468445\n                            }, {\n                                \"X\": 0.6337097883224487,\n                                \"Y\": 0.3200601637363434\n                            }]\n                        },\n                        \"Confidence\": 35.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_TYPE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"CURRENT / EUROPEAN CURRENCY\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1896623820066452,\n                                \"Height\": 0.007368347141891718,\n                                \"Left\": 0.7670866250991821,\n                                \"Top\": 0.2507191300392151\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7670866250991821,\n                                \"Y\": 0.2507191300392151\n                            }, {\n                                \"X\": 0.9567381739616394,\n                                \"Y\": 0.25074976682662964\n                            }, {\n                                \"X\": 0.9567489624023438,\n                                \"Y\": 0.2580874562263489\n                            }, {\n                                \"X\": 0.767096221446991,\n                                \"Y\": 0.2580558657646179\n                            }]\n                        },\n                        \"Confidence\": 57.0\n                    }]\n                }, {\n                    \"Type\": \"PERIOD_START_DATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PERIOD_END_DATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BANK_CONTACT_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"+44 843289 7152\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12743505835533142,\n                                \"Height\": 0.008671540766954422,\n                                \"Left\": 0.8048290014266968,\n                                \"Top\": 0.0499945729970932\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8048290014266968,\n                                \"Y\": 0.0499945729970932\n                            }, {\n                                \"X\": 0.932251513004303,\n                                \"Y\": 0.04999728500843048\n                            }, {\n                                \"X\": 0.9322640895843506,\n                                \"Y\": 0.05866611376404762\n                            }, {\n                                \"X\": 0.8048406839370728,\n                                \"Y\": 0.05866262689232826\n                            }]\n                        },\n                        \"Confidence\": 89.0\n                    }, {\n                        \"Text\": \"+4470 0592 1249\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12674419581890106,\n                                \"Height\": 0.008717397227883339,\n                                \"Left\": 0.8054060935974121,\n                                \"Top\": 0.07689833641052246\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8054060935974121,\n                                \"Y\": 0.07689833641052246\n                            }, {\n                                \"X\": 0.9321376085281372,\n                                \"Y\": 0.07690341770648956\n                            }, {\n                                \"X\": 0.9321503043174744,\n                                \"Y\": 0.08561573922634125\n                            }, {\n                                \"X\": 0.8054178357124329,\n                                \"Y\": 0.08560988306999207\n                            }]\n                        },\n                        \"Confidence\": 89.0\n                    }]\n                }, {\n                    \"Type\": \"BANK_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"8 Canada Square London E14 5HQ United Kingdom\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.30693936347961426,\n                                \"Height\": 0.011655451729893684,\n                                \"Left\": 0.21275174617767334,\n                                \"Top\": 0.9595750570297241\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.21275174617767334,\n                                \"Y\": 0.9595750570297241\n                            }, {\n                                \"X\": 0.5196784138679504,\n                                \"Y\": 0.9597766995429993\n                            }, {\n                                \"X\": 0.5196911096572876,\n                                \"Y\": 0.9712305068969727\n                            }, {\n                                \"X\": 0.21276156604290009,\n                                \"Y\": 0.9710263609886169\n                            }]\n                        },\n                        \"Confidence\": 86.0\n                    }]\n                }, {\n                    \"Type\": \"BEGINNING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u20ac 3,000,000,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11276780068874359,\n                                \"Height\": 0.01035092119127512,\n                                \"Left\": 0.8378329277038574,\n                                \"Top\": 0.1800321340560913\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8378329277038574,\n                                \"Y\": 0.1800321340560913\n                            }, {\n                                \"X\": 0.9505856037139893,\n                                \"Y\": 0.18004478514194489\n                            }, {\n                                \"X\": 0.9506007432937622,\n                                \"Y\": 0.19038306176662445\n                            }, {\n                                \"X\": 0.8378471732139587,\n                                \"Y\": 0.1903695911169052\n                            }]\n                        },\n                        \"Confidence\": 82.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_DEPOSIT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u20ac 1,995,000,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11320172995328903,\n                                \"Height\": 0.010685981251299381,\n                                \"Left\": 0.8374224901199341,\n                                \"Top\": 0.19570507109165192\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8374224901199341,\n                                \"Y\": 0.19570507109165192\n                            }, {\n                                \"X\": 0.9506085515022278,\n                                \"Y\": 0.19571900367736816\n                            }, {\n                                \"X\": 0.9506242275238037,\n                                \"Y\": 0.20639105141162872\n                            }, {\n                                \"X\": 0.8374371528625488,\n                                \"Y\": 0.20637628436088562\n                            }]\n                        },\n                        \"Confidence\": 84.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_WITHDRAWAL\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u20ac 1,895,000,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11320282518863678,\n                                \"Height\": 0.010354173369705677,\n                                \"Left\": 0.8370147943496704,\n                                \"Top\": 0.21337930858135223\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8370147943496704,\n                                \"Y\": 0.21337930858135223\n                            }, {\n                                \"X\": 0.950202465057373,\n                                \"Y\": 0.2133946418762207\n                            }, {\n                                \"X\": 0.950217604637146,\n                                \"Y\": 0.22373348474502563\n                            }, {\n                                \"X\": 0.837028980255127,\n                                \"Y\": 0.2237173318862915\n                            }]\n                        },\n                        \"Confidence\": 88.0\n                    }]\n                }, {\n                    \"Type\": \"ENDING_BALANCE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"\\u20ac 13,100,000,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1132051944732666,\n                                \"Height\": 0.010689345188438892,\n                                \"Left\": 0.8387660980224609,\n                                \"Top\": 0.2303873747587204\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8387660980224609,\n                                \"Y\": 0.2303873747587204\n                            }, {\n                                \"X\": 0.9519556164741516,\n                                \"Y\": 0.2304040491580963\n                            }, {\n                                \"X\": 0.9519712924957275,\n                                \"Y\": 0.24107672274112701\n                            }, {\n                                \"X\": 0.8387807607650757,\n                                \"Y\": 0.24105919897556305\n                            }]\n                        },\n                        \"Confidence\": 83.0\n                    }]\n                }, {\n                    \"Type\": \"AVERAGE_BALANCE\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 19,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 98.18807983398438\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 97.79572296142578\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 20,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"MORTGAGE_STATEMENT\",\n                \"Confidence\": 99.99972534179688\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"PRINCIPAL_AMOUNT_DUE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$178.98\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.042736440896987915,\n                                \"Height\": 0.008675862103700638,\n                                \"Left\": 0.8417364954948425,\n                                \"Top\": 0.24191604554653168\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8417364954948425,\n                                \"Y\": 0.24192214012145996\n                            }, {\n                                \"X\": 0.8844678997993469,\n                                \"Y\": 0.24191604554653168\n                            }, {\n                                \"X\": 0.8844729065895081,\n                                \"Y\": 0.2505858540534973\n                            }, {\n                                \"X\": 0.8417414426803589,\n                                \"Y\": 0.250591903924942\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"INTEREST_AMOUNT_DUE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$508.41\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04144186154007912,\n                                \"Height\": 0.009009115397930145,\n                                \"Left\": 0.841743528842926,\n                                \"Top\": 0.2542540431022644\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.841743528842926,\n                                \"Y\": 0.2542598843574524\n                            }, {\n                                \"X\": 0.8831801414489746,\n                                \"Y\": 0.2542540431022644\n                            }, {\n                                \"X\": 0.8831853866577148,\n                                \"Y\": 0.26325738430023193\n                            }, {\n                                \"X\": 0.8417486548423767,\n                                \"Y\": 0.26326316595077515\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"ESCROW_AMOUNT_DUE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02935613878071308,\n                                \"Height\": 0.008673977106809616,\n                                \"Left\": 0.8546996712684631,\n                                \"Top\": 0.26692530512809753\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8546996712684631,\n                                \"Y\": 0.26692938804626465\n                            }, {\n                                \"X\": 0.8840507864952087,\n                                \"Y\": 0.26692530512809753\n                            }, {\n                                \"X\": 0.8840557932853699,\n                                \"Y\": 0.2755952477455139\n                            }, {\n                                \"X\": 0.8547046184539795,\n                                \"Y\": 0.27559927105903625\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"MONTHLY_PAYMENT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$687.39\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04230521246790886,\n                                \"Height\": 0.008675741963088512,\n                                \"Left\": 0.8417579531669617,\n                                \"Top\": 0.279596745967865\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8417579531669617,\n                                \"Y\": 0.2796025574207306\n                            }, {\n                                \"X\": 0.8840581178665161,\n                                \"Y\": 0.279596745967865\n                            }, {\n                                \"X\": 0.884063184261322,\n                                \"Y\": 0.28826674818992615\n                            }, {\n                                \"X\": 0.841762900352478,\n                                \"Y\": 0.288272500038147\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_PERIOD_FEES\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029356328770518303,\n                                \"Height\": 0.008673983626067638,\n                                \"Left\": 0.8547142148017883,\n                                \"Top\": 0.2922682762145996\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8547142148017883,\n                                \"Y\": 0.29227226972579956\n                            }, {\n                                \"X\": 0.8840655088424683,\n                                \"Y\": 0.2922682762145996\n                            }, {\n                                \"X\": 0.8840705156326294,\n                                \"Y\": 0.30093833804130554\n                            }, {\n                                \"X\": 0.8547191619873047,\n                                \"Y\": 0.3009422719478607\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_AMOUNT_PAID_SINCE_LAST_STATEMENT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$688.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04187440499663353,\n                                \"Height\": 0.00867532566189766,\n                                \"Left\": 0.7663204669952393,\n                                \"Top\": 0.4563472270965576\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7663204669952393,\n                                \"Y\": 0.4563519358634949\n                            }, {\n                                \"X\": 0.8081900477409363,\n                                \"Y\": 0.4563472270965576\n                            }, {\n                                \"X\": 0.8081948757171631,\n                                \"Y\": 0.4650179147720337\n                            }, {\n                                \"X\": 0.7663252949714661,\n                                \"Y\": 0.46502256393432617\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"PRINCIPAL_AMOUNT_PAID_SINCE_LAST_STATEMENT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$178.87\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04187373071908951,\n                                \"Height\": 0.008675419725477695,\n                                \"Left\": 0.76628577709198,\n                                \"Top\": 0.3933192193508148\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.76628577709198,\n                                \"Y\": 0.3933243155479431\n                            }, {\n                                \"X\": 0.8081546425819397,\n                                \"Y\": 0.3933192193508148\n                            }, {\n                                \"X\": 0.8081595301628113,\n                                \"Y\": 0.4019896388053894\n                            }, {\n                                \"X\": 0.766290545463562,\n                                \"Y\": 0.40199464559555054\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"INTEREST_AMOUNT_PAID_SINCE_LAST_STATEMENT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$509.13\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04187386855483055,\n                                \"Height\": 0.008675401099026203,\n                                \"Left\": 0.7662927508354187,\n                                \"Top\": 0.4059913754463196\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7662927508354187,\n                                \"Y\": 0.4059963524341583\n                            }, {\n                                \"X\": 0.8081617951393127,\n                                \"Y\": 0.4059913754463196\n                            }, {\n                                \"X\": 0.8081666231155396,\n                                \"Y\": 0.41466182470321655\n                            }, {\n                                \"X\": 0.7662975192070007,\n                                \"Y\": 0.4146667718887329\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"ESCROW_AMOUNT_PAID_SINCE_LAST_STATEMENT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028924837708473206,\n                                \"Height\": 0.008673875592648983,\n                                \"Left\": 0.7792488932609558,\n                                \"Top\": 0.4186635911464691\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7792488932609558,\n                                \"Y\": 0.4186669886112213\n                            }, {\n                                \"X\": 0.808168888092041,\n                                \"Y\": 0.4186635911464691\n                            }, {\n                                \"X\": 0.8081737756729126,\n                                \"Y\": 0.42733410000801086\n                            }, {\n                                \"X\": 0.7792537212371826,\n                                \"Y\": 0.4273374676704407\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_AMOUNT_PAID_YTD\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$5,504.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05180364102125168,\n                                \"Height\": 0.009010011330246925,\n                                \"Left\": 0.8323623538017273,\n                                \"Top\": 0.45633870363235474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8323623538017273,\n                                \"Y\": 0.45634451508522034\n                            }, {\n                                \"X\": 0.8841607570648193,\n                                \"Y\": 0.45633870363235474\n                            }, {\n                                \"X\": 0.8841660022735596,\n                                \"Y\": 0.4653429687023163\n                            }, {\n                                \"X\": 0.832367479801178,\n                                \"Y\": 0.4653487205505371\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"PRINCIPAL_AMOUNT_PAID_YTD\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$1,410.84\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.051802802830934525,\n                                \"Height\": 0.009010182693600655,\n                                \"Left\": 0.8323265910148621,\n                                \"Top\": 0.393310010433197\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8323265910148621,\n                                \"Y\": 0.3933162987232208\n                            }, {\n                                \"X\": 0.8841241598129272,\n                                \"Y\": 0.393310010433197\n                            }, {\n                                \"X\": 0.8841294050216675,\n                                \"Y\": 0.4023140072822571\n                            }, {\n                                \"X\": 0.8323317170143127,\n                                \"Y\": 0.4023202061653137\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"INTEREST_AMOUNT_PAID_YTD\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$4,093.16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.052234623581171036,\n                                \"Height\": 0.009010199457406998,\n                                \"Left\": 0.8323338031768799,\n                                \"Top\": 0.40598225593566895\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8323338031768799,\n                                \"Y\": 0.405988484621048\n                            }, {\n                                \"X\": 0.8845632076263428,\n                                \"Y\": 0.40598225593566895\n                            }, {\n                                \"X\": 0.8845683932304382,\n                                \"Y\": 0.4149862825870514\n                            }, {\n                                \"X\": 0.8323389291763306,\n                                \"Y\": 0.41499245166778564\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"ESCROW_AMOUNT_PAID_YTD\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02935708500444889,\n                                \"Height\": 0.008340534754097462,\n                                \"Left\": 0.8547866344451904,\n                                \"Top\": 0.4186546504497528\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8547866344451904,\n                                \"Y\": 0.4186581075191498\n                            }, {\n                                \"X\": 0.8841388821601868,\n                                \"Y\": 0.4186546504497528\n                            }, {\n                                \"X\": 0.8841437101364136,\n                                \"Y\": 0.4269917607307434\n                            }, {\n                                \"X\": 0.8547914028167725,\n                                \"Y\": 0.426995187997818\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"BORROWER_NAME\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BORROWER_ADDRESS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MORTGAGE_COMPANY_NAME\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"PURDUE FEDERAL CREDIT UNION\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18341173231601715,\n                                \"Height\": 0.020033098757267,\n                                \"Left\": 0.10972800850868225,\n                                \"Top\": 0.12763860821723938\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10972800850868225,\n                                \"Y\": 0.12766773998737335\n                            }, {\n                                \"X\": 0.29313114285469055,\n                                \"Y\": 0.12763860821723938\n                            }, {\n                                \"X\": 0.2931397557258606,\n                                \"Y\": 0.1476431041955948\n                            }, {\n                                \"X\": 0.10973566770553589,\n                                \"Y\": 0.14767171442508698\n                            }]\n                        },\n                        \"Confidence\": 95.0\n                    }]\n                }, {\n                    \"Type\": \"MORTGAGE_COMPANY_ADDRESS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"PO BOX 1950 West Lafayette, IN 47996\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12992818653583527,\n                                \"Height\": 0.0196869857609272,\n                                \"Left\": 0.3292037844657898,\n                                \"Top\": 0.7065052390098572\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3292037844657898,\n                                \"Y\": 0.7065151929855347\n                            }, {\n                                \"X\": 0.4591226875782013,\n                                \"Y\": 0.7065052390098572\n                            }, {\n                                \"X\": 0.45913198590278625,\n                                \"Y\": 0.7261825799942017\n                            }, {\n                                \"X\": 0.3292124271392822,\n                                \"Y\": 0.7261921763420105\n                            }]\n                        },\n                        \"Confidence\": 88.0\n                    }]\n                }, {\n                    \"Type\": \"MORTGAGE_COMPANY_PHONE_NUMBER\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"800.627.3328\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07079363614320755,\n                                \"Height\": 0.007676920387893915,\n                                \"Left\": 0.5963413119316101,\n                                \"Top\": 0.6214427351951599\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5963413119316101,\n                                \"Y\": 0.6214490532875061\n                            }, {\n                                \"X\": 0.6671308875083923,\n                                \"Y\": 0.6214427351951599\n                            }, {\n                                \"X\": 0.6671349406242371,\n                                \"Y\": 0.6291134357452393\n                            }, {\n                                \"X\": 0.5963451862335205,\n                                \"Y\": 0.6291196942329407\n                            }]\n                        },\n                        \"Confidence\": 98.0\n                    }]\n                }, {\n                    \"Type\": \"ACCOUNT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PAYMENT_DUE_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"9/1/2020\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.045324839651584625,\n                                \"Height\": 0.008009515702724457,\n                                \"Left\": 0.8386674523353577,\n                                \"Top\": 0.15822097659111023\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8386674523353577,\n                                \"Y\": 0.15822798013687134\n                            }, {\n                                \"X\": 0.8839876651763916,\n                                \"Y\": 0.15822097659111023\n                            }, {\n                                \"X\": 0.8839923143386841,\n                                \"Y\": 0.16622354090213776\n                            }, {\n                                \"X\": 0.8386719822883606,\n                                \"Y\": 0.1662304848432541\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"AMOUNT_DUE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$687.39\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041878532618284225,\n                                \"Height\": 0.008674988523125648,\n                                \"Left\": 0.8411588072776794,\n                                \"Top\": 0.7431616187095642\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8411588072776794,\n                                \"Y\": 0.7431646585464478\n                            }, {\n                                \"X\": 0.8830322623252869,\n                                \"Y\": 0.7431616187095642\n                            }, {\n                                \"X\": 0.8830373287200928,\n                                \"Y\": 0.7518336772918701\n                            }, {\n                                \"X\": 0.8411637544631958,\n                                \"Y\": 0.7518366575241089\n                            }]\n                        },\n                        \"Confidence\": 71.0\n                    }, {\n                        \"Text\": \"$687.39\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.042303841561079025,\n                                \"Height\": 0.008342470042407513,\n                                \"Left\": 0.84169602394104,\n                                \"Top\": 0.17089171707630157\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.84169602394104,\n                                \"Y\": 0.1708981841802597\n                            }, {\n                                \"X\": 0.883994996547699,\n                                \"Y\": 0.17089171707630157\n                            }, {\n                                \"X\": 0.8839998245239258,\n                                \"Y\": 0.1792277842760086\n                            }, {\n                                \"X\": 0.8417007327079773,\n                                \"Y\": 0.17923419177532196\n                            }]\n                        },\n                        \"Confidence\": 71.0\n                    }, {\n                        \"Text\": \"$687.39\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041878532618284225,\n                                \"Height\": 0.008674988523125648,\n                                \"Left\": 0.8411588072776794,\n                                \"Top\": 0.7431616187095642\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8411588072776794,\n                                \"Y\": 0.7431646585464478\n                            }, {\n                                \"X\": 0.8830322623252869,\n                                \"Y\": 0.7431616187095642\n                            }, {\n                                \"X\": 0.8830373287200928,\n                                \"Y\": 0.7518336772918701\n                            }, {\n                                \"X\": 0.8411637544631958,\n                                \"Y\": 0.7518366575241089\n                            }]\n                        },\n                        \"Confidence\": 71.0\n                    }]\n                }, {\n                    \"Type\": \"STATEMENT_DATE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"8/17/2020\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0643165335059166,\n                                \"Height\": 0.010013241320848465,\n                                \"Left\": 0.8252622485160828,\n                                \"Top\": 0.11387310922145844\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8252622485160828,\n                                \"Y\": 0.11388345062732697\n                            }, {\n                                \"X\": 0.8895729184150696,\n                                \"Y\": 0.11387310922145844\n                            }, {\n                                \"X\": 0.8895787596702576,\n                                \"Y\": 0.12387610226869583\n                            }, {\n                                \"X\": 0.8252679109573364,\n                                \"Y\": 0.1238863468170166\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"PROPERTY_ADDRESS\",\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 21,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1008\",\n                \"Confidence\": 97.69307708740234\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 99.98698425292969\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_SSN\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CO-BORROWER_SSN\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BUYDOWN\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_AMORTIZATION_TYPE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Fixed Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07599037140607834,\n                                \"Height\": 0.0103668924421072,\n                                \"Left\": 0.6471923589706421,\n                                \"Top\": 0.3699137270450592\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6471923589706421,\n                                \"Y\": 0.36994096636772156\n                            }, {\n                                \"X\": 0.7231742143630981,\n                                \"Y\": 0.3699137270450592\n                            }, {\n                                \"X\": 0.723182737827301,\n                                \"Y\": 0.3802533745765686\n                            }, {\n                                \"X\": 0.6472005844116211,\n                                \"Y\": 0.38028061389923096\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"ESCROW_T&I\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"COMMUNITY_LENDING/AFFORDABLE_HOUSING_INITIATIVE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"HOME_BUYERS/HOMEOWNERSHIP_EDUCATION_CERTFICATE_IN_FILE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_RISK_ASSESSMENT\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_QUALIFYING_RATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_MONTHLY_PAYMENTS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"NUMBER_OF_UNITS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Number of Units\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11215976625680923,\n                                \"Height\": 0.010237234644591808,\n                                \"Left\": 0.4909813106060028,\n                                \"Top\": 0.4653371572494507\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4909813106060028,\n                                \"Y\": 0.4653771221637726\n                            }, {\n                                \"X\": 0.6031330823898315,\n                                \"Y\": 0.4653371572494507\n                            }, {\n                                \"X\": 0.6031410694122314,\n                                \"Y\": 0.47553449869155884\n                            }, {\n                                \"X\": 0.49098891019821167,\n                                \"Y\": 0.47557440400123596\n                            }]\n                        },\n                        \"Confidence\": 29.87615966796875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.005844616796821356,\n                                \"Height\": 0.009691131301224232,\n                                \"Left\": 0.6483194828033447,\n                                \"Top\": 0.4656352996826172\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6483194828033447,\n                                \"Y\": 0.46563735604286194\n                            }, {\n                                \"X\": 0.6541563868522644,\n                                \"Y\": 0.4656352996826172\n                            }, {\n                                \"X\": 0.6541641354560852,\n                                \"Y\": 0.4753243327140808\n                            }, {\n                                \"X\": 0.6483272314071655,\n                                \"Y\": 0.47532641887664795\n                            }]\n                        },\n                        \"Confidence\": 29.87615966796875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Occupancy Status\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12595173716545105,\n                                \"Height\": 0.011949816718697548,\n                                \"Left\": 0.4909381568431854,\n                                \"Top\": 0.487751841545105\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4909381568431854,\n                                \"Y\": 0.4877966344356537\n                            }, {\n                                \"X\": 0.6168805360794067,\n                                \"Y\": 0.487751841545105\n                            }, {\n                                \"X\": 0.6168898940086365,\n                                \"Y\": 0.49965691566467285\n                            }, {\n                                \"X\": 0.49094703793525696,\n                                \"Y\": 0.49970167875289917\n                            }]\n                        },\n                        \"Confidence\": 29.783042907714844\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Primary Residence\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13173751533031464,\n                                \"Height\": 0.013235855847597122,\n                                \"Left\": 0.6480147242546082,\n                                \"Top\": 0.48849159479141235\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6480147242546082,\n                                \"Y\": 0.4885384440422058\n                            }, {\n                                \"X\": 0.7797411680221558,\n                                \"Y\": 0.48849159479141235\n                            }, {\n                                \"X\": 0.779752254486084,\n                                \"Y\": 0.5016806721687317\n                            }, {\n                                \"X\": 0.6480252742767334,\n                                \"Y\": 0.5017274618148804\n                            }]\n                        },\n                        \"Confidence\": 29.783042907714844\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Purpose\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09608782082796097,\n                                \"Height\": 0.011893872171640396,\n                                \"Left\": 0.49132007360458374,\n                                \"Top\": 0.38669368624687195\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49132007360458374,\n                                \"Y\": 0.38672810792922974\n                            }, {\n                                \"X\": 0.5873986482620239,\n                                \"Y\": 0.38669368624687195\n                            }, {\n                                \"X\": 0.5874078869819641,\n                                \"Y\": 0.39855319261550903\n                            }, {\n                                \"X\": 0.4913289248943329,\n                                \"Y\": 0.39858758449554443\n                            }]\n                        },\n                        \"Confidence\": 25.9150333404541\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Purchase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06325606256723404,\n                                \"Height\": 0.011145002208650112,\n                                \"Left\": 0.6474164724349976,\n                                \"Top\": 0.38634759187698364\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6474164724349976,\n                                \"Y\": 0.3863702416419983\n                            }, {\n                                \"X\": 0.7106634378433228,\n                                \"Y\": 0.38634759187698364\n                            }, {\n                                \"X\": 0.7106725573539734,\n                                \"Y\": 0.39746996760368347\n                            }, {\n                                \"X\": 0.6474253535270691,\n                                \"Y\": 0.39749258756637573\n                            }]\n                        },\n                        \"Confidence\": 25.9150333404541\n                    }]\n                }, {\n                    \"Type\": \"NOTE_RATE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Note Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06654778122901917,\n                                \"Height\": 0.009654892608523369,\n                                \"Left\": 0.4918695390224457,\n                                \"Top\": 0.3147437870502472\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4918695390224457,\n                                \"Y\": 0.3147677481174469\n                            }, {\n                                \"X\": 0.5584099292755127,\n                                \"Y\": 0.3147437870502472\n                            }, {\n                                \"X\": 0.5584173202514648,\n                                \"Y\": 0.3243747055530548\n                            }, {\n                                \"X\": 0.4918767213821411,\n                                \"Y\": 0.3243986666202545\n                            }]\n                        },\n                        \"Confidence\": 25.425819396972656\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"4.500%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05484072118997574,\n                                \"Height\": 0.01116189919412136,\n                                \"Left\": 0.6468847393989563,\n                                \"Top\": 0.3143622875213623\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6468847393989563,\n                                \"Y\": 0.31438204646110535\n                            }, {\n                                \"X\": 0.7017163634300232,\n                                \"Y\": 0.3143622875213623\n                            }, {\n                                \"X\": 0.7017254829406738,\n                                \"Y\": 0.32550448179244995\n                            }, {\n                                \"X\": 0.6468936204910278,\n                                \"Y\": 0.3255242109298706\n                            }]\n                        },\n                        \"Confidence\": 25.425819396972656\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Refi Purpose\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08971856534481049,\n                                \"Height\": 0.011689715087413788,\n                                \"Left\": 0.49093785881996155,\n                                \"Top\": 0.40798741579055786\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49093785881996155,\n                                \"Y\": 0.4080195128917694\n                            }, {\n                                \"X\": 0.5806474089622498,\n                                \"Y\": 0.40798741579055786\n                            }, {\n                                \"X\": 0.5806564092636108,\n                                \"Y\": 0.4196450710296631\n                            }, {\n                                \"X\": 0.49094656109809875,\n                                \"Y\": 0.41967713832855225\n                            }]\n                        },\n                        \"Confidence\": 25.331274032592773\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Term\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.073379285633564,\n                                \"Height\": 0.00948681402951479,\n                                \"Left\": 0.491478830575943,\n                                \"Top\": 0.3548292815685272\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.491478830575943,\n                                \"Y\": 0.35485562682151794\n                            }, {\n                                \"X\": 0.5648508071899414,\n                                \"Y\": 0.3548292815685272\n                            }, {\n                                \"X\": 0.5648581385612488,\n                                \"Y\": 0.3642897605895996\n                            }, {\n                                \"X\": 0.4914858937263489,\n                                \"Y\": 0.36431607604026794\n                            }]\n                        },\n                        \"Confidence\": 25.233549118041992\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"360\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025652162730693817,\n                                \"Height\": 0.010278263129293919,\n                                \"Left\": 0.6475311517715454,\n                                \"Top\": 0.3543558120727539\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6475311517715454,\n                                \"Y\": 0.3543650209903717\n                            }, {\n                                \"X\": 0.673175036907196,\n                                \"Y\": 0.3543558120727539\n                            }, {\n                                \"X\": 0.6731833219528198,\n                                \"Y\": 0.36462488770484924\n                            }, {\n                                \"X\": 0.6475393772125244,\n                                \"Y\": 0.36463409662246704\n                            }]\n                        },\n                        \"Confidence\": 25.233549118041992\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Actual/Estimated Appraised Value\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11561998724937439,\n                                \"Height\": 0.024369623512029648,\n                                \"Left\": 0.1520678848028183,\n                                \"Top\": 0.4020690619945526\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1520678848028183,\n                                \"Y\": 0.40211042761802673\n                            }, {\n                                \"X\": 0.26767152547836304,\n                                \"Y\": 0.4020690619945526\n                            }, {\n                                \"X\": 0.2676878869533539,\n                                \"Y\": 0.4263973832130432\n                            }, {\n                                \"X\": 0.15208332240581512,\n                                \"Y\": 0.42643868923187256\n                            }]\n                        },\n                        \"Confidence\": 25.205406188964844\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$145000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08269412815570831,\n                                \"Height\": 0.011994080618023872,\n                                \"Left\": 0.3880116939544678,\n                                \"Top\": 0.406959593296051\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3880116939544678,\n                                \"Y\": 0.4069891571998596\n                            }, {\n                                \"X\": 0.47069695591926575,\n                                \"Y\": 0.406959593296051\n                            }, {\n                                \"X\": 0.4707058072090149,\n                                \"Y\": 0.41892412304878235\n                            }, {\n                                \"X\": 0.38802021741867065,\n                                \"Y\": 0.41895365715026855\n                            }]\n                        },\n                        \"Confidence\": 25.205406188964844\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Amortization Type\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12642239034175873,\n                                \"Height\": 0.012219964526593685,\n                                \"Left\": 0.49093806743621826,\n                                \"Top\": 0.3706163465976715\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49093806743621826,\n                                \"Y\": 0.3706616759300232\n                            }, {\n                                \"X\": 0.6173508763313293,\n                                \"Y\": 0.3706163465976715\n                            }, {\n                                \"X\": 0.6173604726791382,\n                                \"Y\": 0.38279101252555847\n                            }, {\n                                \"X\": 0.4909471571445465,\n                                \"Y\": 0.38283631205558777\n                            }]\n                        },\n                        \"Confidence\": 24.940814971923828\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Fixed Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07646278291940689,\n                                \"Height\": 0.010949614457786083,\n                                \"Left\": 0.647940456867218,\n                                \"Top\": 0.37014225125312805\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.647940456867218,\n                                \"Y\": 0.37016966938972473\n                            }, {\n                                \"X\": 0.7243942618370056,\n                                \"Y\": 0.37014225125312805\n                            }, {\n                                \"X\": 0.7244032621383667,\n                                \"Y\": 0.3810644745826721\n                            }, {\n                                \"X\": 0.6479491591453552,\n                                \"Y\": 0.3810918629169464\n                            }]\n                        },\n                        \"Confidence\": 24.940814971923828\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Type\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07269173860549927,\n                                \"Height\": 0.011316614225506783,\n                                \"Left\": 0.49039146304130554,\n                                \"Top\": 0.33876872062683105\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49039146304130554,\n                                \"Y\": 0.3387948274612427\n                            }, {\n                                \"X\": 0.56307452917099,\n                                \"Y\": 0.33876872062683105\n                            }, {\n                                \"X\": 0.5630832314491272,\n                                \"Y\": 0.3500592112541199\n                            }, {\n                                \"X\": 0.49039989709854126,\n                                \"Y\": 0.3500853180885315\n                            }]\n                        },\n                        \"Confidence\": 24.77153778076172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Conventional\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0940820574760437,\n                                \"Height\": 0.010821567848324776,\n                                \"Left\": 0.6474063992500305,\n                                \"Top\": 0.33808016777038574\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6474063992500305,\n                                \"Y\": 0.3381139934062958\n                            }, {\n                                \"X\": 0.7414795160293579,\n                                \"Y\": 0.33808016777038574\n                            }, {\n                                \"X\": 0.7414884567260742,\n                                \"Y\": 0.3488679528236389\n                            }, {\n                                \"X\": 0.6474149823188782,\n                                \"Y\": 0.34890174865722656\n                            }]\n                        },\n                        \"Confidence\": 24.77153778076172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"DU Version\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07785166800022125,\n                                \"Height\": 0.01002956461161375,\n                                \"Left\": 0.4910200536251068,\n                                \"Top\": 0.24464894831180573\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4910200536251068,\n                                \"Y\": 0.2446771264076233\n                            }, {\n                                \"X\": 0.5688639879226685,\n                                \"Y\": 0.24464894831180573\n                            }, {\n                                \"X\": 0.5688717365264893,\n                                \"Y\": 0.254650354385376\n                            }, {\n                                \"X\": 0.4910275340080261,\n                                \"Y\": 0.25467851758003235\n                            }]\n                        },\n                        \"Confidence\": 23.74015235900879\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"10.2\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029079942032694817,\n                                \"Height\": 0.011103435419499874,\n                                \"Left\": 0.6486876010894775,\n                                \"Top\": 0.2453780472278595\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6486876010894775,\n                                \"Y\": 0.24538856744766235\n                            }, {\n                                \"X\": 0.6777585744857788,\n                                \"Y\": 0.2453780472278595\n                            }, {\n                                \"X\": 0.6777675747871399,\n                                \"Y\": 0.2564709782600403\n                            }, {\n                                \"X\": 0.6486964821815491,\n                                \"Y\": 0.25648146867752075\n                            }]\n                        },\n                        \"Confidence\": 23.74015235900879\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Loan Amount\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13185904920101166,\n                                \"Height\": 0.010217707604169846,\n                                \"Left\": 0.15312330424785614,\n                                \"Top\": 0.36873823404312134\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15312330424785614,\n                                \"Y\": 0.3687855303287506\n                            }, {\n                                \"X\": 0.28497543931007385,\n                                \"Y\": 0.36873823404312134\n                            }, {\n                                \"X\": 0.2849823534488678,\n                                \"Y\": 0.3789086639881134\n                            }, {\n                                \"X\": 0.15312975645065308,\n                                \"Y\": 0.3789559304714203\n                            }]\n                        },\n                        \"Confidence\": 23.393657684326172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$132066.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0822618380188942,\n                                \"Height\": 0.011942045763134956,\n                                \"Left\": 0.38880452513694763,\n                                \"Top\": 0.3696344196796417\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38880452513694763,\n                                \"Y\": 0.36966392397880554\n                            }, {\n                                \"X\": 0.4710575342178345,\n                                \"Y\": 0.3696344196796417\n                            }, {\n                                \"X\": 0.47106635570526123,\n                                \"Y\": 0.3815469741821289\n                            }, {\n                                \"X\": 0.3888130187988281,\n                                \"Y\": 0.3815764784812927\n                            }]\n                        },\n                        \"Confidence\": 23.393657684326172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"First Submission Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15329056978225708,\n                                \"Height\": 0.010617255233228207,\n                                \"Left\": 0.153320774435997,\n                                \"Top\": 0.24462798237800598\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.153320774435997,\n                                \"Y\": 0.24468347430229187\n                            }, {\n                                \"X\": 0.3066040873527527,\n                                \"Y\": 0.24462798237800598\n                            }, {\n                                \"X\": 0.3066113293170929,\n                                \"Y\": 0.25518980622291565\n                            }, {\n                                \"X\": 0.15332747995853424,\n                                \"Y\": 0.25524523854255676\n                            }]\n                        },\n                        \"Confidence\": 23.283863067626953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"03/22/2018 01:41PM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14845114946365356,\n                                \"Height\": 0.011366917751729488,\n                                \"Left\": 0.3092228174209595,\n                                \"Top\": 0.24520379304885864\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3092228174209595,\n                                \"Y\": 0.24525752663612366\n                            }, {\n                                \"X\": 0.45766565203666687,\n                                \"Y\": 0.24520379304885864\n                            }, {\n                                \"X\": 0.45767396688461304,\n                                \"Y\": 0.2565170228481293\n                            }, {\n                                \"X\": 0.30923059582710266,\n                                \"Y\": 0.2565707266330719\n                            }]\n                        },\n                        \"Confidence\": 23.283863067626953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Recommendation\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11987795680761337,\n                                \"Height\": 0.009488602168858051,\n                                \"Left\": 0.15364068746566772,\n                                \"Top\": 0.18057309091091156\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15364068746566772,\n                                \"Y\": 0.18061667680740356\n                            }, {\n                                \"X\": 0.2735122740268707,\n                                \"Y\": 0.18057309091091156\n                            }, {\n                                \"X\": 0.2735186517238617,\n                                \"Y\": 0.19001811742782593\n                            }, {\n                                \"X\": 0.15364667773246765,\n                                \"Y\": 0.19006168842315674\n                            }]\n                        },\n                        \"Confidence\": 23.16609001159668\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Approve/Eligible\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12690554559230804,\n                                \"Height\": 0.012112491764128208,\n                                \"Left\": 0.30857670307159424,\n                                \"Top\": 0.1813105344772339\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30857670307159424,\n                                \"Y\": 0.18135668337345123\n                            }, {\n                                \"X\": 0.4354734718799591,\n                                \"Y\": 0.1813105344772339\n                            }, {\n                                \"X\": 0.4354822635650635,\n                                \"Y\": 0.19337692856788635\n                            }, {\n                                \"X\": 0.308584988117218,\n                                \"Y\": 0.19342303276062012\n                            }]\n                        },\n                        \"Confidence\": 23.16609001159668\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Housing Expense Ratio\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16045069694519043,\n                                \"Height\": 0.012212702073156834,\n                                \"Left\": 0.15295353531837463,\n                                \"Top\": 0.3382236957550049\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15295353531837463,\n                                \"Y\": 0.33828139305114746\n                            }, {\n                                \"X\": 0.3133958876132965,\n                                \"Y\": 0.3382236957550049\n                            }, {\n                                \"X\": 0.31340423226356506,\n                                \"Y\": 0.35037878155708313\n                            }, {\n                                \"X\": 0.15296125411987305,\n                                \"Y\": 0.35043641924858093\n                            }]\n                        },\n                        \"Confidence\": 21.9481258392334\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"16.21%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05193912982940674,\n                                \"Height\": 0.010851441882550716,\n                                \"Left\": 0.4187457263469696,\n                                \"Top\": 0.3381336033344269\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4187457263469696,\n                                \"Y\": 0.3381522595882416\n                            }, {\n                                \"X\": 0.47067683935165405,\n                                \"Y\": 0.3381336033344269\n                            }, {\n                                \"X\": 0.47068485617637634,\n                                \"Y\": 0.3489663600921631\n                            }, {\n                                \"X\": 0.41875356435775757,\n                                \"Y\": 0.34898504614830017\n                            }]\n                        },\n                        \"Confidence\": 21.9481258392334\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Submission Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1162593886256218,\n                                \"Height\": 0.010131950490176678,\n                                \"Left\": 0.1534915566444397,\n                                \"Top\": 0.22860173881053925\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1534915566444397,\n                                \"Y\": 0.22864387929439545\n                            }, {\n                                \"X\": 0.2697441577911377,\n                                \"Y\": 0.22860173881053925\n                            }, {\n                                \"X\": 0.2697509527206421,\n                                \"Y\": 0.23869158327579498\n                            }, {\n                                \"X\": 0.15349796414375305,\n                                \"Y\": 0.2387336939573288\n                            }]\n                        },\n                        \"Confidence\": 21.584104537963867\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"04/05/2018 03:39PM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14962542057037354,\n                                \"Height\": 0.011202977038919926,\n                                \"Left\": 0.3080568015575409,\n                                \"Top\": 0.22928102314472198\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3080568015575409,\n                                \"Y\": 0.2293352335691452\n                            }, {\n                                \"X\": 0.4576740264892578,\n                                \"Y\": 0.22928102314472198\n                            }, {\n                                \"X\": 0.45768222212791443,\n                                \"Y\": 0.2404298186302185\n                            }, {\n                                \"X\": 0.30806446075439453,\n                                \"Y\": 0.24048399925231934\n                            }]\n                        },\n                        \"Confidence\": 21.584104537963867\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Lender Loan Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14555521309375763,\n                                \"Height\": 0.009760924614965916,\n                                \"Left\": 0.1530439704656601,\n                                \"Top\": 0.2127368301153183\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1530439704656601,\n                                \"Y\": 0.2127896547317505\n                            }, {\n                                \"X\": 0.29859253764152527,\n                                \"Y\": 0.2127368301153183\n                            }, {\n                                \"X\": 0.2985991835594177,\n                                \"Y\": 0.22244498133659363\n                            }, {\n                                \"X\": 0.15305012464523315,\n                                \"Y\": 0.22249776124954224\n                            }]\n                        },\n                        \"Confidence\": 20.852611541748047\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Debt-to-Income Ratio\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14497260749340057,\n                                \"Height\": 0.01004005316644907,\n                                \"Left\": 0.15368209779262543,\n                                \"Top\": 0.354461133480072\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15368209779262543,\n                                \"Y\": 0.3545131981372833\n                            }, {\n                                \"X\": 0.2986478805541992,\n                                \"Y\": 0.354461133480072\n                            }, {\n                                \"X\": 0.298654705286026,\n                                \"Y\": 0.3644491732120514\n                            }, {\n                                \"X\": 0.153688445687294,\n                                \"Y\": 0.3645011782646179\n                            }]\n                        },\n                        \"Confidence\": 20.718469619750977\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"20.23%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05424079671502113,\n                                \"Height\": 0.010513373650610447,\n                                \"Left\": 0.41697418689727783,\n                                \"Top\": 0.3542746305465698\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41697418689727783,\n                                \"Y\": 0.354294091463089\n                            }, {\n                                \"X\": 0.47120723128318787,\n                                \"Y\": 0.3542746305465698\n                            }, {\n                                \"X\": 0.47121497988700867,\n                                \"Y\": 0.36476853489875793\n                            }, {\n                                \"X\": 0.4169817864894867,\n                                \"Y\": 0.3647879958152771\n                            }]\n                        },\n                        \"Confidence\": 20.718469619750977\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"LTV/CLTV/HCLTV\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12028657644987106,\n                                \"Height\": 0.010097943246364594,\n                                \"Left\": 0.15330097079277039,\n                                \"Top\": 0.31455492973327637\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15330097079277039,\n                                \"Y\": 0.3145982623100281\n                            }, {\n                                \"X\": 0.27358075976371765,\n                                \"Y\": 0.31455492973327637\n                            }, {\n                                \"X\": 0.27358755469322205,\n                                \"Y\": 0.32460957765579224\n                            }, {\n                                \"X\": 0.15330736339092255,\n                                \"Y\": 0.32465288043022156\n                            }]\n                        },\n                        \"Confidence\": 20.597091674804688\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"92.00%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.053931526839733124,\n                                \"Height\": 0.0127721494063735,\n                                \"Left\": 0.4172336161136627,\n                                \"Top\": 0.32076695561408997\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4172336161136627,\n                                \"Y\": 0.32078635692596436\n                            }, {\n                                \"X\": 0.47115573287010193,\n                                \"Y\": 0.32076695561408997\n                            }, {\n                                \"X\": 0.47116515040397644,\n                                \"Y\": 0.33351969718933105\n                            }, {\n                                \"X\": 0.4172428250312805,\n                                \"Y\": 0.33353909850120544\n                            }]\n                        },\n                        \"Confidence\": 20.597091674804688\n                    }]\n                }, {\n                    \"Type\": \"SALES_PRICE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Sales Price\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07526358962059021,\n                                \"Height\": 0.009936668910086155,\n                                \"Left\": 0.15378060936927795,\n                                \"Top\": 0.38652303814888\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15378060936927795,\n                                \"Y\": 0.38655000925064087\n                            }, {\n                                \"X\": 0.22903765738010406,\n                                \"Y\": 0.38652303814888\n                            }, {\n                                \"X\": 0.22904419898986816,\n                                \"Y\": 0.3964327573776245\n                            }, {\n                                \"X\": 0.15378689765930176,\n                                \"Y\": 0.396459698677063\n                            }]\n                        },\n                        \"Confidence\": 19.80526351928711\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$145000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08256537467241287,\n                                \"Height\": 0.012201234698295593,\n                                \"Left\": 0.38835009932518005,\n                                \"Top\": 0.38548773527145386\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38835009932518005,\n                                \"Y\": 0.38551729917526245\n                            }, {\n                                \"X\": 0.47090649604797363,\n                                \"Y\": 0.38548773527145386\n                            }, {\n                                \"X\": 0.4709154963493347,\n                                \"Y\": 0.39765939116477966\n                            }, {\n                                \"X\": 0.3883587718009949,\n                                \"Y\": 0.39768895506858826\n                            }]\n                        },\n                        \"Confidence\": 19.80526351928711\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Casefile ID\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0733368918299675,\n                                \"Height\": 0.009821642190217972,\n                                \"Left\": 0.49099627137184143,\n                                \"Top\": 0.2125750184059143\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49099627137184143,\n                                \"Y\": 0.21260161697864532\n                            }, {\n                                \"X\": 0.5643256306648254,\n                                \"Y\": 0.2125750184059143\n                            }, {\n                                \"X\": 0.5643332004547119,\n                                \"Y\": 0.22237007319927216\n                            }, {\n                                \"X\": 0.4910036027431488,\n                                \"Y\": 0.22239665687084198\n                            }]\n                        },\n                        \"Confidence\": 19.18317413330078\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Submitted By\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09374898672103882,\n                                \"Height\": 0.011792567558586597,\n                                \"Left\": 0.49059149622917175,\n                                \"Top\": 0.228566512465477\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49059149622917175,\n                                \"Y\": 0.22860048711299896\n                            }, {\n                                \"X\": 0.5843313336372375,\n                                \"Y\": 0.228566512465477\n                            }, {\n                                \"X\": 0.584340512752533,\n                                \"Y\": 0.24032513797283173\n                            }, {\n                                \"X\": 0.49060025811195374,\n                                \"Y\": 0.2403590828180313\n                            }]\n                        },\n                        \"Confidence\": 18.970882415771484\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PROPERTY_ADDRESS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Property Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12020998448133469,\n                                \"Height\": 0.012632661499083042,\n                                \"Left\": 0.15332262217998505,\n                                \"Top\": 0.4554741382598877\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15332262217998505,\n                                \"Y\": 0.4555169939994812\n                            }, {\n                                \"X\": 0.27352410554885864,\n                                \"Y\": 0.4554741382598877\n                            }, {\n                                \"X\": 0.27353259921073914,\n                                \"Y\": 0.46806401014328003\n                            }, {\n                                \"X\": 0.15333060920238495,\n                                \"Y\": 0.46810680627822876\n                            }]\n                        },\n                        \"Confidence\": 18.83893394470215\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Co-Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08978051692247391,\n                                \"Height\": 0.009801305830478668,\n                                \"Left\": 0.490843266248703,\n                                \"Top\": 0.19670040905475616\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.490843266248703,\n                                \"Y\": 0.1967330276966095\n                            }, {\n                                \"X\": 0.5806162357330322,\n                                \"Y\": 0.19670040905475616\n                            }, {\n                                \"X\": 0.5806238055229187,\n                                \"Y\": 0.20646913349628448\n                            }, {\n                                \"X\": 0.490850567817688,\n                                \"Y\": 0.20650172233581543\n                            }]\n                        },\n                        \"Confidence\": 18.62491798400879\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Primary Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1214711144566536,\n                                \"Height\": 0.011729047633707523,\n                                \"Left\": 0.15387758612632751,\n                                \"Top\": 0.19675010442733765\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.15387758612632751,\n                                \"Y\": 0.19679422676563263\n                            }, {\n                                \"X\": 0.27534082531929016,\n                                \"Y\": 0.19675010442733765\n                            }, {\n                                \"X\": 0.2753486931324005,\n                                \"Y\": 0.20843505859375\n                            }, {\n                                \"X\": 0.15388500690460205,\n                                \"Y\": 0.2084791511297226\n                            }]\n                        },\n                        \"Confidence\": 18.170583724975586\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Submission Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14028450846672058,\n                                \"Height\": 0.010146960616111755,\n                                \"Left\": 0.1536048799753189,\n                                \"Top\": 0.2605186402797699\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1536048799753189,\n                                \"Y\": 0.26056936383247375\n                            }, {\n                                \"X\": 0.2938825190067291,\n                                \"Y\": 0.2605186402797699\n                            }, {\n                                \"X\": 0.2938894033432007,\n                                \"Y\": 0.2706149220466614\n                            }, {\n                                \"X\": 0.15361130237579346,\n                                \"Y\": 0.27066558599472046\n                            }]\n                        },\n                        \"Confidence\": 16.87481117248535\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.008578200824558735,\n                                \"Height\": 0.01032810378819704,\n                                \"Left\": 0.3080170452594757,\n                                \"Top\": 0.2616029977798462\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3080170452594757,\n                                \"Y\": 0.2616060674190521\n                            }, {\n                                \"X\": 0.3165881335735321,\n                                \"Y\": 0.2616029977798462\n                            }, {\n                                \"X\": 0.31659525632858276,\n                                \"Y\": 0.27192798256874084\n                            }, {\n                                \"X\": 0.308024138212204,\n                                \"Y\": 0.27193108201026917\n                            }]\n                        },\n                        \"Confidence\": 16.87481117248535\n                    }]\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 22,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1008\",\n                \"Confidence\": 99.93588256835938\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 99.99970245361328\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"BORROWER_SSN\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CO-BORROWER_SSN\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BUYDOWN\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011654946021735668,\n                                \"Height\": 0.006003682967275381,\n                                \"Left\": 0.55305016040802,\n                                \"Top\": 0.36402738094329834\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5530524849891663,\n                                \"Y\": 0.3640286326408386\n                            }, {\n                                \"X\": 0.5647051334381104,\n                                \"Y\": 0.36402738094329834\n                            }, {\n                                \"X\": 0.5647028088569641,\n                                \"Y\": 0.3700298070907593\n                            }, {\n                                \"X\": 0.55305016040802,\n                                \"Y\": 0.37003105878829956\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"OTHER_AMORTIZATION_TYPE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ESCROW_T&I\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011655263602733612,\n                                \"Height\": 0.006003451067954302,\n                                \"Left\": 0.5028679370880127,\n                                \"Top\": 0.6671657562255859\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5028703212738037,\n                                \"Y\": 0.6671663522720337\n                            }, {\n                                \"X\": 0.5145232081413269,\n                                \"Y\": 0.6671657562255859\n                            }, {\n                                \"X\": 0.5145208239555359,\n                                \"Y\": 0.6731686592102051\n                            }, {\n                                \"X\": 0.5028679370880127,\n                                \"Y\": 0.6731691956520081\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"COMMUNITY_LENDING/AFFORDABLE_HOUSING_INITIATIVE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011834090575575829,\n                                \"Height\": 0.006043070461601019,\n                                \"Left\": 0.502878725528717,\n                                \"Top\": 0.667277455329895\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5028811097145081,\n                                \"Y\": 0.6672780513763428\n                            }, {\n                                \"X\": 0.5147128105163574,\n                                \"Y\": 0.667277455329895\n                            }, {\n                                \"X\": 0.5147104263305664,\n                                \"Y\": 0.6733199954032898\n                            }, {\n                                \"X\": 0.502878725528717,\n                                \"Y\": 0.6733205318450928\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"HOME_BUYERS/HOMEOWNERSHIP_EDUCATION_CERTFICATE_IN_FILE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.012087954208254814,\n                                \"Height\": 0.005670246668159962,\n                                \"Left\": 0.7881406545639038,\n                                \"Top\": 0.7321874499320984\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7881426811218262,\n                                \"Y\": 0.7321878671646118\n                            }, {\n                                \"X\": 0.8002285957336426,\n                                \"Y\": 0.7321874499320984\n                            }, {\n                                \"X\": 0.800226628780365,\n                                \"Y\": 0.7378572821617126\n                            }, {\n                                \"X\": 0.7881406545639038,\n                                \"Y\": 0.7378576993942261\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"OTHER_RISK_ASSESSMENT\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011655263602733612,\n                                \"Height\": 0.006003451067954302,\n                                \"Left\": 0.5028679370880127,\n                                \"Top\": 0.6671657562255859\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5028703212738037,\n                                \"Y\": 0.6671663522720337\n                            }, {\n                                \"X\": 0.5145232081413269,\n                                \"Y\": 0.6671657562255859\n                            }, {\n                                \"X\": 0.5145208239555359,\n                                \"Y\": 0.6731686592102051\n                            }, {\n                                \"X\": 0.5028679370880127,\n                                \"Y\": 0.6731691956520081\n                            }]\n                        },\n                        \"Confidence\": 99.0\n                    }]\n                }, {\n                    \"Type\": \"OTHER_QUALIFYING_RATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER_MONTHLY_PAYMENTS\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 896.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10402537137269974,\n                                \"Height\": 0.007676939480006695,\n                                \"Left\": 0.7191261053085327,\n                                \"Top\": 0.6011155843734741\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7191289067268372,\n                                \"Y\": 0.6011219620704651\n                            }, {\n                                \"X\": 0.8231514692306519,\n                                \"Y\": 0.6011155843734741\n                            }, {\n                                \"X\": 0.8231488466262817,\n                                \"Y\": 0.6087862253189087\n                            }, {\n                                \"X\": 0.7191261053085327,\n                                \"Y\": 0.6087924838066101\n                            }]\n                        },\n                        \"Confidence\": 76.0\n                    }]\n                }, {\n                    \"Type\": \"HOA_FEES\",\n                    \"KeyDetection\": {\n                        \"Text\": \"HOA Fees\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.043593451380729675,\n                                \"Height\": 0.0060060517862439156,\n                                \"Left\": 0.5784508585929871,\n                                \"Top\": 0.5267593860626221\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784531831741333,\n                                \"Y\": 0.5267627239227295\n                            }, {\n                                \"X\": 0.6220443248748779,\n                                \"Y\": 0.5267593860626221\n                            }, {\n                                \"X\": 0.6220420598983765,\n                                \"Y\": 0.5327621698379517\n                            }, {\n                                \"X\": 0.5784508585929871,\n                                \"Y\": 0.5327654480934143\n                            }]\n                        },\n                        \"Confidence\": 99.91930389404297\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.005181335378438234,\n                                \"Height\": 0.0053363037295639515,\n                                \"Left\": 0.7195855379104614,\n                                \"Top\": 0.5270850658416748\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.719587504863739,\n                                \"Y\": 0.5270854830741882\n                            }, {\n                                \"X\": 0.7247668504714966,\n                                \"Y\": 0.5270850658416748\n                            }, {\n                                \"X\": 0.7247649431228638,\n                                \"Y\": 0.5324209928512573\n                            }, {\n                                \"X\": 0.7195855379104614,\n                                \"Y\": 0.532421350479126\n                            }]\n                        },\n                        \"Confidence\": 99.35543823242188\n                    }]\n                }, {\n                    \"Type\": \"LEASE_OR_GROUND_RENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Lease/Ground Rent\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0828695297241211,\n                                \"Height\": 0.006342373788356781,\n                                \"Left\": 0.578446626663208,\n                                \"Top\": 0.537428081035614\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784490704536438,\n                                \"Y\": 0.5374342203140259\n                            }, {\n                                \"X\": 0.6613161563873291,\n                                \"Y\": 0.537428081035614\n                            }, {\n                                \"X\": 0.6613138318061829,\n                                \"Y\": 0.5437644720077515\n                            }, {\n                                \"X\": 0.578446626663208,\n                                \"Y\": 0.5437704920768738\n                            }]\n                        },\n                        \"Confidence\": 99.88327026367188\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.005181464366614819,\n                                \"Height\": 0.005669804755598307,\n                                \"Left\": 0.719581663608551,\n                                \"Top\": 0.5374234318733215\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195836901664734,\n                                \"Y\": 0.5374237895011902\n                            }, {\n                                \"X\": 0.7247630953788757,\n                                \"Y\": 0.5374234318733215\n                            }, {\n                                \"X\": 0.7247610688209534,\n                                \"Y\": 0.5430928468704224\n                            }, {\n                                \"X\": 0.719581663608551,\n                                \"Y\": 0.543093204498291\n                            }]\n                        },\n                        \"Confidence\": 99.50816345214844\n                    }]\n                }, {\n                    \"Type\": \"NEGATIVE_CASH_FLOW\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Negative Cash Flow\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0858917087316513,\n                                \"Height\": 0.007342419121414423,\n                                \"Left\": 0.5788612365722656,\n                                \"Top\": 0.5807819962501526\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5788640379905701,\n                                \"Y\": 0.5807876586914062\n                            }, {\n                                \"X\": 0.6647529006004333,\n                                \"Y\": 0.5807819962501526\n                            }, {\n                                \"X\": 0.6647502183914185,\n                                \"Y\": 0.5881189107894897\n                            }, {\n                                \"X\": 0.5788612365722656,\n                                \"Y\": 0.5881244540214539\n                            }]\n                        },\n                        \"Confidence\": 99.89920043945312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.005181496497243643,\n                                \"Height\": 0.005669831298291683,\n                                \"Left\": 0.719565749168396,\n                                \"Top\": 0.5811116099357605\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195678353309631,\n                                \"Y\": 0.5811119079589844\n                            }, {\n                                \"X\": 0.7247472405433655,\n                                \"Y\": 0.5811116099357605\n                            }, {\n                                \"X\": 0.7247452139854431,\n                                \"Y\": 0.5867810845375061\n                            }, {\n                                \"X\": 0.719565749168396,\n                                \"Y\": 0.5867814421653748\n                            }]\n                        },\n                        \"Confidence\": 99.41007232666016\n                    }]\n                }, {\n                    \"Type\": \"SALES_PRICE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Sales Price\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04747636988759041,\n                                \"Height\": 0.006342307664453983,\n                                \"Left\": 0.612238347530365,\n                                \"Top\": 0.20195215940475464\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.612240731716156,\n                                \"Y\": 0.2019588053226471\n                            }, {\n                                \"X\": 0.6597146987915039,\n                                \"Y\": 0.20195215940475464\n                            }, {\n                                \"X\": 0.6597123742103577,\n                                \"Y\": 0.20828789472579956\n                            }, {\n                                \"X\": 0.612238347530365,\n                                \"Y\": 0.20829446613788605\n                            }]\n                        },\n                        \"Confidence\": 99.77153015136719\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0051811933517456055,\n                                \"Height\": 0.005669581238180399,\n                                \"Left\": 0.700713574886322,\n                                \"Top\": 0.2019457072019577\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7007156610488892,\n                                \"Y\": 0.2019464373588562\n                            }, {\n                                \"X\": 0.7058947682380676,\n                                \"Y\": 0.2019457072019577\n                            }, {\n                                \"X\": 0.7058927416801453,\n                                \"Y\": 0.20761457085609436\n                            }, {\n                                \"X\": 0.700713574886322,\n                                \"Y\": 0.20761528611183167\n                            }]\n                        },\n                        \"Confidence\": 99.16138458251953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Second Mortgage P&I\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09452271461486816,\n                                \"Height\": 0.007678070105612278,\n                                \"Left\": 0.5784670114517212,\n                                \"Top\": 0.48306846618652344\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784699320793152,\n                                \"Y\": 0.4830764830112457\n                            }, {\n                                \"X\": 0.6729897260665894,\n                                \"Y\": 0.48306846618652344\n                            }, {\n                                \"X\": 0.6729868650436401,\n                                \"Y\": 0.4907386600971222\n                            }, {\n                                \"X\": 0.5784670114517212,\n                                \"Y\": 0.49074652791023254\n                            }]\n                        },\n                        \"Confidence\": 99.96456146240234\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.005181545857340097,\n                                \"Height\": 0.0060032629407942295,\n                                \"Left\": 0.7196012139320374,\n                                \"Top\": 0.48339757323265076\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7196033596992493,\n                                \"Y\": 0.4833979904651642\n                            }, {\n                                \"X\": 0.7247827649116516,\n                                \"Y\": 0.48339757323265076\n                            }, {\n                                \"X\": 0.7247805595397949,\n                                \"Y\": 0.48940038681030273\n                            }, {\n                                \"X\": 0.7196012139320374,\n                                \"Y\": 0.48940083384513855\n                            }]\n                        },\n                        \"Confidence\": 99.50374603271484\n                    }]\n                }, {\n                    \"Type\": \"NUMBER_OF_UNITS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Number of Units\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07121344655752182,\n                                \"Height\": 0.006012299098074436,\n                                \"Left\": 0.6122425198554993,\n                                \"Top\": 0.1912781149148941\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6122447848320007,\n                                \"Y\": 0.19128821790218353\n                            }, {\n                                \"X\": 0.6834559440612793,\n                                \"Y\": 0.1912781149148941\n                            }, {\n                                \"X\": 0.6834537386894226,\n                                \"Y\": 0.1972803920507431\n                            }, {\n                                \"X\": 0.6122425198554993,\n                                \"Y\": 0.19729042053222656\n                            }]\n                        },\n                        \"Confidence\": 99.92404174804688\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0060448599979281425,\n                                \"Height\": 0.007003543432801962,\n                                \"Left\": 0.7011488676071167,\n                                \"Top\": 0.19060783088207245\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.701151430606842,\n                                \"Y\": 0.1906086802482605\n                            }, {\n                                \"X\": 0.7071937322616577,\n                                \"Y\": 0.19060783088207245\n                            }, {\n                                \"X\": 0.7071911692619324,\n                                \"Y\": 0.1976105272769928\n                            }, {\n                                \"X\": 0.7011488676071167,\n                                \"Y\": 0.19761137664318085\n                            }]\n                        },\n                        \"Confidence\": 99.28739929199219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No. of Months Reserves\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10445209592580795,\n                                \"Height\": 0.006007641088217497,\n                                \"Left\": 0.5788201093673706,\n                                \"Top\": 0.6891689300537109\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5788224339485168,\n                                \"Y\": 0.6891735792160034\n                            }, {\n                                \"X\": 0.6832721829414368,\n                                \"Y\": 0.6891689300537109\n                            }, {\n                                \"X\": 0.6832699775695801,\n                                \"Y\": 0.6951720714569092\n                            }, {\n                                \"X\": 0.5788201093673706,\n                                \"Y\": 0.6951766014099121\n                            }]\n                        },\n                        \"Confidence\": 99.86114501953125\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"0\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.006908643990755081,\n                                \"Height\": 0.007337484043091536,\n                                \"Left\": 0.6923338770866394,\n                                \"Top\": 0.6881677508354187\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6923366189002991,\n                                \"Y\": 0.6881680488586426\n                            }, {\n                                \"X\": 0.6992425322532654,\n                                \"Y\": 0.6881677508354187\n                            }, {\n                                \"X\": 0.6992398500442505,\n                                \"Y\": 0.695504903793335\n                            }, {\n                                \"X\": 0.6923338770866394,\n                                \"Y\": 0.6955052018165588\n                            }]\n                        },\n                        \"Confidence\": 98.25699615478516\n                    }]\n                }, {\n                    \"Type\": \"BOUGHT-DOWN_RATE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Bought-Down Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08156441897153854,\n                                \"Height\": 0.007340989541262388,\n                                \"Left\": 0.20036089420318604,\n                                \"Top\": 0.6241585612297058\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2003641128540039,\n                                \"Y\": 0.6241632103919983\n                            }, {\n                                \"X\": 0.2819253206253052,\n                                \"Y\": 0.6241585612297058\n                            }, {\n                                \"X\": 0.28192219138145447,\n                                \"Y\": 0.6314949989318848\n                            }, {\n                                \"X\": 0.20036089420318604,\n                                \"Y\": 0.6314995288848877\n                            }]\n                        },\n                        \"Confidence\": 99.5128402709961\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.008633975870907307,\n                                \"Height\": 0.006336672697216272,\n                                \"Left\": 0.40578004717826843,\n                                \"Top\": 0.623817503452301\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40578263998031616,\n                                \"Y\": 0.623818039894104\n                            }, {\n                                \"X\": 0.41441401839256287,\n                                \"Y\": 0.623817503452301\n                            }, {\n                                \"X\": 0.4144114553928375,\n                                \"Y\": 0.6301537156105042\n                            }, {\n                                \"X\": 0.40578004717826843,\n                                \"Y\": 0.6301541924476624\n                            }]\n                        },\n                        \"Confidence\": 99.8462905883789\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Interested Party Contributions\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1290552318096161,\n                                \"Height\": 0.007342488504946232,\n                                \"Left\": 0.5788155198097229,\n                                \"Top\": 0.6998401880264282\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5788183212280273,\n                                \"Y\": 0.6998456120491028\n                            }, {\n                                \"X\": 0.7078707218170166,\n                                \"Y\": 0.6998401880264282\n                            }, {\n                                \"X\": 0.7078680396080017,\n                                \"Y\": 0.7071774005889893\n                            }, {\n                                \"X\": 0.5788155198097229,\n                                \"Y\": 0.7071826457977295\n                            }]\n                        },\n                        \"Confidence\": 99.96759796142578\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0086350804194808,\n                                \"Height\": 0.006337187718600035,\n                                \"Left\": 0.8136186599731445,\n                                \"Top\": 0.6998353600502014\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8136208653450012,\n                                \"Y\": 0.6998357176780701\n                            }, {\n                                \"X\": 0.8222537636756897,\n                                \"Y\": 0.6998353600502014\n                            }, {\n                                \"X\": 0.8222514986991882,\n                                \"Y\": 0.7061721682548523\n                            }, {\n                                \"X\": 0.8136186599731445,\n                                \"Y\": 0.706172525882721\n                            }]\n                        },\n                        \"Confidence\": 97.08645629882812\n                    }]\n                }, {\n                    \"Type\": \"FEE_SIMPLE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fee Simple\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04704705998301506,\n                                \"Height\": 0.007342441938817501,\n                                \"Left\": 0.7045814394950867,\n                                \"Top\": 0.24529007077217102\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7045841217041016,\n                                \"Y\": 0.24529623985290527\n                            }, {\n                                \"X\": 0.7516285181045532,\n                                \"Y\": 0.24529007077217102\n                            }, {\n                                \"X\": 0.7516258955001831,\n                                \"Y\": 0.2526263892650604\n                            }, {\n                                \"X\": 0.7045814394950867,\n                                \"Y\": 0.2526324987411499\n                            }]\n                        },\n                        \"Confidence\": 99.23282623291016\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014355706050992012,\n                                \"Height\": 0.010298222303390503,\n                                \"Left\": 0.6853131055831909,\n                                \"Top\": 0.24214905500411987\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6853168606758118,\n                                \"Y\": 0.2421509474515915\n                            }, {\n                                \"X\": 0.6996687650680542,\n                                \"Y\": 0.24214905500411987\n                            }, {\n                                \"X\": 0.6996650099754333,\n                                \"Y\": 0.25244539976119995\n                            }, {\n                                \"X\": 0.6853131055831909,\n                                \"Y\": 0.2524472773075104\n                            }]\n                        },\n                        \"Confidence\": 95.3949966430664\n                    }]\n                }, {\n                    \"Type\": \"REPRESENTATIVE_CREDIT_OR_INDICATOR_SCORE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Representative Credit/Indicator Score\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1618344485759735,\n                                \"Height\": 0.007342334371060133,\n                                \"Left\": 0.17485278844833374,\n                                \"Top\": 0.7322040796279907\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1748560220003128,\n                                \"Y\": 0.7322099208831787\n                            }, {\n                                \"X\": 0.33668723702430725,\n                                \"Y\": 0.7322040796279907\n                            }, {\n                                \"X\": 0.3366841673851013,\n                                \"Y\": 0.7395408749580383\n                            }, {\n                                \"X\": 0.17485278844833374,\n                                \"Y\": 0.7395464181900024\n                            }]\n                        },\n                        \"Confidence\": 99.63314056396484\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"760\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.021149825304746628,\n                                \"Height\": 0.007337528746575117,\n                                \"Left\": 0.3440210521221161,\n                                \"Top\": 0.7315360903739929\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34402409195899963,\n                                \"Y\": 0.731536865234375\n                            }, {\n                                \"X\": 0.3651708662509918,\n                                \"Y\": 0.7315360903739929\n                            }, {\n                                \"X\": 0.3651678264141083,\n                                \"Y\": 0.7388728857040405\n                            }, {\n                                \"X\": 0.3440210521221161,\n                                \"Y\": 0.7388736009597778\n                            }]\n                        },\n                        \"Confidence\": 99.95832824707031\n                    }]\n                }, {\n                    \"Type\": \"LOAN_TERM_(IN_MONTHS)\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Loan Term (in months)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09795871376991272,\n                                \"Height\": 0.006679066922515631,\n                                \"Left\": 0.1750059425830841,\n                                \"Top\": 0.38606661558151245\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1750088781118393,\n                                \"Y\": 0.38607677817344666\n                            }, {\n                                \"X\": 0.2729646563529968,\n                                \"Y\": 0.38606661558151245\n                            }, {\n                                \"X\": 0.2729617953300476,\n                                \"Y\": 0.39273566007614136\n                            }, {\n                                \"X\": 0.1750059425830841,\n                                \"Y\": 0.3927456736564636\n                            }]\n                        },\n                        \"Confidence\": 99.68622589111328\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"360\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.020285364240407944,\n                                \"Height\": 0.007671504281461239,\n                                \"Left\": 0.2768456041812897,\n                                \"Top\": 0.3850637376308441\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27684885263442993,\n                                \"Y\": 0.38506585359573364\n                            }, {\n                                \"X\": 0.2971309423446655,\n                                \"Y\": 0.3850637376308441\n                            }, {\n                                \"X\": 0.29712769389152527,\n                                \"Y\": 0.3927331864833832\n                            }, {\n                                \"X\": 0.2768456041812897,\n                                \"Y\": 0.39273524284362793\n                            }]\n                        },\n                        \"Confidence\": 99.95242309570312\n                    }]\n                }, {\n                    \"Type\": \"LEASEHOLD\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Leasehold\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04273172467947006,\n                                \"Height\": 0.006008093245327473,\n                                \"Left\": 0.7792490720748901,\n                                \"Top\": 0.24561430513858795\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7792511582374573,\n                                \"Y\": 0.24561990797519684\n                            }, {\n                                \"X\": 0.8219807744026184,\n                                \"Y\": 0.24561430513858795\n                            }, {\n                                \"X\": 0.8219786882400513,\n                                \"Y\": 0.25161683559417725\n                            }, {\n                                \"X\": 0.7792490720748901,\n                                \"Y\": 0.25162240862846375\n                            }]\n                        },\n                        \"Confidence\": 99.57329559326172\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0162174291908741,\n                                \"Height\": 0.009855116717517376,\n                                \"Left\": 0.7598355412483215,\n                                \"Top\": 0.24289563298225403\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7598390579223633,\n                                \"Y\": 0.24289777874946594\n                            }, {\n                                \"X\": 0.7760529518127441,\n                                \"Y\": 0.24289563298225403\n                            }, {\n                                \"X\": 0.7760494947433472,\n                                \"Y\": 0.25274863839149475\n                            }, {\n                                \"X\": 0.7598355412483215,\n                                \"Y\": 0.2527507543563843\n                            }]\n                        },\n                        \"Confidence\": 99.837890625\n                    }]\n                }, {\n                    \"Type\": \"HOME_IMPROVEMENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Home Improvement\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08502193540334702,\n                                \"Height\": 0.0070125344209373,\n                                \"Left\": 0.4775417745113373,\n                                \"Top\": 0.32134389877319336\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.47754454612731934,\n                                \"Y\": 0.3213537931442261\n                            }, {\n                                \"X\": 0.5625637173652649,\n                                \"Y\": 0.32134389877319336\n                            }, {\n                                \"X\": 0.5625609755516052,\n                                \"Y\": 0.3283466696739197\n                            }, {\n                                \"X\": 0.4775417745113373,\n                                \"Y\": 0.32835644483566284\n                            }]\n                        },\n                        \"Confidence\": 99.9242172241211\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017597896978259087,\n                                \"Height\": 0.009663290344178677,\n                                \"Left\": 0.45671847462654114,\n                                \"Top\": 0.31818294525146484\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45672234892845154,\n                                \"Y\": 0.3181850016117096\n                            }, {\n                                \"X\": 0.4743163585662842,\n                                \"Y\": 0.31818294525146484\n                            }, {\n                                \"X\": 0.47431251406669617,\n                                \"Y\": 0.32784420251846313\n                            }, {\n                                \"X\": 0.45671847462654114,\n                                \"Y\": 0.3278462290763855\n                            }]\n                        },\n                        \"Confidence\": 99.1514892578125\n                    }]\n                }, {\n                    \"Type\": \"CONSTRUCTION_TO_PERMANENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Construction to Permanent\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11652699112892151,\n                                \"Height\": 0.006015597376972437,\n                                \"Left\": 0.4775379002094269,\n                                \"Top\": 0.3320111930370331\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4775403141975403,\n                                \"Y\": 0.3320245146751404\n                            }, {\n                                \"X\": 0.5940648913383484,\n                                \"Y\": 0.3320111930370331\n                            }, {\n                                \"X\": 0.5940626263618469,\n                                \"Y\": 0.33801358938217163\n                            }, {\n                                \"X\": 0.4775379002094269,\n                                \"Y\": 0.3380267918109894\n                            }]\n                        },\n                        \"Confidence\": 99.91450500488281\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01727062091231346,\n                                \"Height\": 0.010195550508797169,\n                                \"Left\": 0.45688384771347046,\n                                \"Top\": 0.3283750116825104\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45688796043395996,\n                                \"Y\": 0.32837700843811035\n                            }, {\n                                \"X\": 0.4741544723510742,\n                                \"Y\": 0.3283750116825104\n                            }, {\n                                \"X\": 0.4741504192352295,\n                                \"Y\": 0.3385685980319977\n                            }, {\n                                \"X\": 0.45688384771347046,\n                                \"Y\": 0.33857056498527527\n                            }]\n                        },\n                        \"Confidence\": 95.4200439453125\n                    }]\n                }, {\n                    \"Type\": \"RECIPROCAL_REVIEW\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Reciprocal Review\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07940593361854553,\n                                \"Height\": 0.007346438243985176,\n                                \"Left\": 0.3265402317047119,\n                                \"Top\": 0.22366146743297577\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.32654333114624023,\n                                \"Y\": 0.22367222607135773\n                            }, {\n                                \"X\": 0.40594619512557983,\n                                \"Y\": 0.22366146743297577\n                            }, {\n                                \"X\": 0.4059431850910187,\n                                \"Y\": 0.2309972643852234\n                            }, {\n                                \"X\": 0.3265402317047119,\n                                \"Y\": 0.2310079038143158\n                            }]\n                        },\n                        \"Confidence\": 99.97505187988281\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01643664948642254,\n                                \"Height\": 0.010757151991128922,\n                                \"Left\": 0.30549347400665283,\n                                \"Top\": 0.22010725736618042\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30549800395965576,\n                                \"Y\": 0.2201094925403595\n                            }, {\n                                \"X\": 0.3219301104545593,\n                                \"Y\": 0.22010725736618042\n                            }, {\n                                \"X\": 0.3219255805015564,\n                                \"Y\": 0.23086220026016235\n                            }, {\n                                \"X\": 0.30549347400665283,\n                                \"Y\": 0.23086440563201904\n                            }]\n                        },\n                        \"Confidence\": 99.8516845703125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"V Refi Plus TM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.057399433106184006,\n                                \"Height\": 0.0066766212694346905,\n                                \"Left\": 0.43528446555137634,\n                                \"Top\": 0.23398669064044952\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43528714776039124,\n                                \"Y\": 0.23399434983730316\n                            }, {\n                                \"X\": 0.49268388748168945,\n                                \"Y\": 0.23398669064044952\n                            }, {\n                                \"X\": 0.49268126487731934,\n                                \"Y\": 0.24065573513507843\n                            }, {\n                                \"X\": 0.43528446555137634,\n                                \"Y\": 0.2406633198261261\n                            }]\n                        },\n                        \"Confidence\": 85.57279968261719\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017663659527897835,\n                                \"Height\": 0.010039404034614563,\n                                \"Left\": 0.4144250750541687,\n                                \"Top\": 0.2313295304775238\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4144291579723358,\n                                \"Y\": 0.23133188486099243\n                            }, {\n                                \"X\": 0.4320887327194214,\n                                \"Y\": 0.2313295304775238\n                            }, {\n                                \"X\": 0.43208467960357666,\n                                \"Y\": 0.24136659502983093\n                            }, {\n                                \"X\": 0.4144250750541687,\n                                \"Y\": 0.24136893451213837\n                            }]\n                        },\n                        \"Confidence\": 99.67845916748047\n                    }]\n                }, {\n                    \"Type\": \"DETACHED_PROJECT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Detached Project\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07379563897848129,\n                                \"Height\": 0.007345946040004492,\n                                \"Left\": 0.32654935121536255,\n                                \"Top\": 0.20198841392993927\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3265524208545685,\n                                \"Y\": 0.2019987255334854\n                            }, {\n                                \"X\": 0.40034499764442444,\n                                \"Y\": 0.20198841392993927\n                            }, {\n                                \"X\": 0.4003419876098633,\n                                \"Y\": 0.20932415127754211\n                            }, {\n                                \"X\": 0.32654935121536255,\n                                \"Y\": 0.2093343585729599\n                            }]\n                        },\n                        \"Confidence\": 99.94232177734375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017172886058688164,\n                                \"Height\": 0.010384054854512215,\n                                \"Left\": 0.3051782548427582,\n                                \"Top\": 0.19833824038505554\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30518266558647156,\n                                \"Y\": 0.19834065437316895\n                            }, {\n                                \"X\": 0.3223511576652527,\n                                \"Y\": 0.19833824038505554\n                            }, {\n                                \"X\": 0.3223467767238617,\n                                \"Y\": 0.20871992409229279\n                            }, {\n                                \"X\": 0.3051782548427582,\n                                \"Y\": 0.2087222933769226\n                            }]\n                        },\n                        \"Confidence\": 99.68605041503906\n                    }]\n                }, {\n                    \"Type\": \"PURCHASE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Purchase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.039274606853723526,\n                                \"Height\": 0.006007092073559761,\n                                \"Left\": 0.477990984916687,\n                                \"Top\": 0.27799949049949646\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4779933989048004,\n                                \"Y\": 0.27800437808036804\n                            }, {\n                                \"X\": 0.5172656178474426,\n                                \"Y\": 0.27799949049949646\n                            }, {\n                                \"X\": 0.5172632336616516,\n                                \"Y\": 0.2840017080307007\n                            }, {\n                                \"X\": 0.477990984916687,\n                                \"Y\": 0.2840065658092499\n                            }]\n                        },\n                        \"Confidence\": 99.94749450683594\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016627740114927292,\n                                \"Height\": 0.011151914484798908,\n                                \"Left\": 0.4559999108314514,\n                                \"Top\": 0.2731597125530243\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45600438117980957,\n                                \"Y\": 0.27316179871559143\n                            }, {\n                                \"X\": 0.4726276397705078,\n                                \"Y\": 0.2731597125530243\n                            }, {\n                                \"X\": 0.47262319922447205,\n                                \"Y\": 0.2843095660209656\n                            }, {\n                                \"X\": 0.4559999108314514,\n                                \"Y\": 0.2843116223812103\n                            }]\n                        },\n                        \"Confidence\": 99.90973663330078\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"2- to 4-unit Project\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08199507743120193,\n                                \"Height\": 0.007346937898546457,\n                                \"Left\": 0.32654473185539246,\n                                \"Top\": 0.2129908949136734\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3265478014945984,\n                                \"Y\": 0.21300217509269714\n                            }, {\n                                \"X\": 0.4085398018360138,\n                                \"Y\": 0.2129908949136734\n                            }, {\n                                \"X\": 0.408536821603775,\n                                \"Y\": 0.22032667696475983\n                            }, {\n                                \"X\": 0.32654473185539246,\n                                \"Y\": 0.22033783793449402\n                            }]\n                        },\n                        \"Confidence\": 94.23116302490234\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016332369297742844,\n                                \"Height\": 0.011054941453039646,\n                                \"Left\": 0.3056337833404541,\n                                \"Top\": 0.2089395374059677\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30563846230506897,\n                                \"Y\": 0.20894180238246918\n                            }, {\n                                \"X\": 0.32196614146232605,\n                                \"Y\": 0.2089395374059677\n                            }, {\n                                \"X\": 0.32196149230003357,\n                                \"Y\": 0.2199922651052475\n                            }, {\n                                \"X\": 0.3056337833404541,\n                                \"Y\": 0.21999448537826538\n                            }]\n                        },\n                        \"Confidence\": 99.71424865722656\n                    }]\n                }, {\n                    \"Type\": \"FANNIE_MAE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fannie Mae\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04920493811368942,\n                                \"Height\": 0.006341351196169853,\n                                \"Left\": 0.6713050007820129,\n                                \"Top\": 0.3643440306186676\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6713073253631592,\n                                \"Y\": 0.3643493354320526\n                            }, {\n                                \"X\": 0.720509946346283,\n                                \"Y\": 0.3643440306186676\n                            }, {\n                                \"X\": 0.7205076217651367,\n                                \"Y\": 0.3706801235675812\n                            }, {\n                                \"X\": 0.6713050007820129,\n                                \"Y\": 0.3706853687763214\n                            }]\n                        },\n                        \"Confidence\": 99.91412353515625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017706330865621567,\n                                \"Height\": 0.010213511995971203,\n                                \"Left\": 0.6495864987373352,\n                                \"Top\": 0.36081716418266296\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6495903134346008,\n                                \"Y\": 0.36081910133361816\n                            }, {\n                                \"X\": 0.6672928333282471,\n                                \"Y\": 0.36081716418266296\n                            }, {\n                                \"X\": 0.6672890186309814,\n                                \"Y\": 0.3710288107395172\n                            }, {\n                                \"X\": 0.6495864987373352,\n                                \"Y\": 0.37103068828582764\n                            }]\n                        },\n                        \"Confidence\": 99.85195922851562\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"New Project\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05221857130527496,\n                                \"Height\": 0.007343017030507326,\n                                \"Left\": 0.3265538215637207,\n                                \"Top\": 0.19132132828235626\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.326556921005249,\n                                \"Y\": 0.1913287341594696\n                            }, {\n                                \"X\": 0.37877240777015686,\n                                \"Y\": 0.19132132828235626\n                            }, {\n                                \"X\": 0.3787693679332733,\n                                \"Y\": 0.19865702092647552\n                            }, {\n                                \"X\": 0.3265538215637207,\n                                \"Y\": 0.1986643522977829\n                            }]\n                        },\n                        \"Confidence\": 99.82786560058594\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01689208298921585,\n                                \"Height\": 0.01060550194233656,\n                                \"Left\": 0.3053882420063019,\n                                \"Top\": 0.18783244490623474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30539271235466003,\n                                \"Y\": 0.18783484399318695\n                            }, {\n                                \"X\": 0.32228031754493713,\n                                \"Y\": 0.18783244490623474\n                            }, {\n                                \"X\": 0.322275847196579,\n                                \"Y\": 0.19843557476997375\n                            }, {\n                                \"X\": 0.3053882420063019,\n                                \"Y\": 0.19843794405460358\n                            }]\n                        },\n                        \"Confidence\": 99.7514877319336\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"U FHA-approved\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07120954245328903,\n                                \"Height\": 0.0073454841040074825,\n                                \"Left\": 0.43571990728378296,\n                                \"Top\": 0.22364778816699982\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43572288751602173,\n                                \"Y\": 0.22365742921829224\n                            }, {\n                                \"X\": 0.5069294571876526,\n                                \"Y\": 0.22364778816699982\n                            }, {\n                                \"X\": 0.5069265961647034,\n                                \"Y\": 0.23098371922969818\n                            }, {\n                                \"X\": 0.43571990728378296,\n                                \"Y\": 0.23099327087402344\n                            }]\n                        },\n                        \"Confidence\": 98.5641860961914\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01712568663060665,\n                                \"Height\": 0.010650425218045712,\n                                \"Left\": 0.41495460271835327,\n                                \"Top\": 0.22088199853897095\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4149589538574219,\n                                \"Y\": 0.22088433802127838\n                            }, {\n                                \"X\": 0.43208029866218567,\n                                \"Y\": 0.22088199853897095\n                            }, {\n                                \"X\": 0.43207597732543945,\n                                \"Y\": 0.23153012990951538\n                            }, {\n                                \"X\": 0.41495460271835327,\n                                \"Y\": 0.23153242468833923\n                            }]\n                        },\n                        \"Confidence\": 99.62983703613281\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"S Expedited Est.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07034619152545929,\n                                \"Height\": 0.007345620077103376,\n                                \"Left\": 0.4352971315383911,\n                                \"Top\": 0.20197369158267975\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4353001117706299,\n                                \"Y\": 0.2019835263490677\n                            }, {\n                                \"X\": 0.5056433081626892,\n                                \"Y\": 0.20197369158267975\n                            }, {\n                                \"X\": 0.50564044713974,\n                                \"Y\": 0.20930959284305573\n                            }, {\n                                \"X\": 0.4352971315383911,\n                                \"Y\": 0.2093193233013153\n                            }]\n                        },\n                        \"Confidence\": 99.59479522705078\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017488975077867508,\n                                \"Height\": 0.010825222358107567,\n                                \"Left\": 0.4142840802669525,\n                                \"Top\": 0.19815804064273834\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4142884910106659,\n                                \"Y\": 0.19816049933433533\n                            }, {\n                                \"X\": 0.43177303671836853,\n                                \"Y\": 0.19815804064273834\n                            }, {\n                                \"X\": 0.43176865577697754,\n                                \"Y\": 0.20898084342479706\n                            }, {\n                                \"X\": 0.4142840802669525,\n                                \"Y\": 0.20898325741291046\n                            }]\n                        },\n                        \"Confidence\": 99.60468292236328\n                    }]\n                }, {\n                    \"Type\": \"EXTERIOR_ONLY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Exterior Only\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05567676201462746,\n                                \"Height\": 0.007340066134929657,\n                                \"Left\": 0.4528296887874603,\n                                \"Top\": 0.6024689078330994\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4528326392173767,\n                                \"Y\": 0.6024723052978516\n                            }, {\n                                \"X\": 0.5085064172744751,\n                                \"Y\": 0.6024689078330994\n                            }, {\n                                \"X\": 0.5085035562515259,\n                                \"Y\": 0.6098056435585022\n                            }, {\n                                \"X\": 0.4528296887874603,\n                                \"Y\": 0.6098089218139648\n                            }]\n                        },\n                        \"Confidence\": 99.79440307617188\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0173309575766325,\n                                \"Height\": 0.010676915757358074,\n                                \"Left\": 0.43151792883872986,\n                                \"Top\": 0.5988964438438416\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43152227997779846,\n                                \"Y\": 0.5988975167274475\n                            }, {\n                                \"X\": 0.4488489031791687,\n                                \"Y\": 0.5988964438438416\n                            }, {\n                                \"X\": 0.4488446116447449,\n                                \"Y\": 0.6095722913742065\n                            }, {\n                                \"X\": 0.43151792883872986,\n                                \"Y\": 0.6095733642578125\n                            }]\n                        },\n                        \"Confidence\": 99.8170166015625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"2 Co-op\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03409716859459877,\n                                \"Height\": 0.007340698968619108,\n                                \"Left\": 0.570371150970459,\n                                \"Top\": 0.2126304805278778\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5703739523887634,\n                                \"Y\": 0.21263517439365387\n                            }, {\n                                \"X\": 0.6044682860374451,\n                                \"Y\": 0.2126304805278778\n                            }, {\n                                \"X\": 0.6044655442237854,\n                                \"Y\": 0.21996653079986572\n                            }, {\n                                \"X\": 0.570371150970459,\n                                \"Y\": 0.2199711799621582\n                            }]\n                        },\n                        \"Confidence\": 99.62107849121094\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016714271157979965,\n                                \"Height\": 0.011241747066378593,\n                                \"Left\": 0.5493662357330322,\n                                \"Top\": 0.20897869765758514\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5493706464767456,\n                                \"Y\": 0.2089810073375702\n                            }, {\n                                \"X\": 0.5660805106163025,\n                                \"Y\": 0.20897869765758514\n                            }, {\n                                \"X\": 0.5660762190818787,\n                                \"Y\": 0.22021816670894623\n                            }, {\n                                \"X\": 0.5493662357330322,\n                                \"Y\": 0.2202204465866089\n                            }]\n                        },\n                        \"Confidence\": 96.54003143310547\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"T Co-op\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03496037423610687,\n                                \"Height\": 0.007340765092521906,\n                                \"Left\": 0.5699353218078613,\n                                \"Top\": 0.2236345112323761\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5699381828308105,\n                                \"Y\": 0.22363924980163574\n                            }, {\n                                \"X\": 0.6048957109451294,\n                                \"Y\": 0.2236345112323761\n                            }, {\n                                \"X\": 0.604892909526825,\n                                \"Y\": 0.2309705913066864\n                            }, {\n                                \"X\": 0.5699353218078613,\n                                \"Y\": 0.23097527027130127\n                            }]\n                        },\n                        \"Confidence\": 97.61759185791016\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017054183408617973,\n                                \"Height\": 0.01106222253292799,\n                                \"Left\": 0.5492674112319946,\n                                \"Top\": 0.22004571557044983\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5492717027664185,\n                                \"Y\": 0.22004804015159607\n                            }, {\n                                \"X\": 0.566321611404419,\n                                \"Y\": 0.22004571557044983\n                            }, {\n                                \"X\": 0.5663173198699951,\n                                \"Y\": 0.23110565543174744\n                            }, {\n                                \"X\": 0.5492674112319946,\n                                \"Y\": 0.2311079353094101\n                            }]\n                        },\n                        \"Confidence\": 99.62367248535156\n                    }]\n                }, {\n                    \"Type\": \"CORRESPONDENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Correspondent\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06344269216060638,\n                                \"Height\": 0.007009402383118868,\n                                \"Left\": 0.43565869331359863,\n                                \"Top\": 0.3753722608089447\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43566152453422546,\n                                \"Y\": 0.37537896633148193\n                            }, {\n                                \"X\": 0.4991014003753662,\n                                \"Y\": 0.3753722608089447\n                            }, {\n                                \"X\": 0.49909862875938416,\n                                \"Y\": 0.382375031709671\n                            }, {\n                                \"X\": 0.43565869331359863,\n                                \"Y\": 0.3823816478252411\n                            }]\n                        },\n                        \"Confidence\": 99.93376159667969\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01670004241168499,\n                                \"Height\": 0.010813581757247448,\n                                \"Left\": 0.4149162471294403,\n                                \"Top\": 0.37131091952323914\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4149206578731537,\n                                \"Y\": 0.37131267786026\n                            }, {\n                                \"X\": 0.43161627650260925,\n                                \"Y\": 0.37131091952323914\n                            }, {\n                                \"X\": 0.43161189556121826,\n                                \"Y\": 0.3821227550506592\n                            }, {\n                                \"X\": 0.4149162471294403,\n                                \"Y\": 0.38212448358535767\n                            }]\n                        },\n                        \"Confidence\": 99.65909576416016\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Form\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016835911199450493,\n                                \"Height\": 0.004669515881687403,\n                                \"Left\": 0.7630472779273987,\n                                \"Top\": 0.8962826728820801\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7630489468574524,\n                                \"Y\": 0.8962827324867249\n                            }, {\n                                \"X\": 0.7798832058906555,\n                                \"Y\": 0.8962826728820801\n                            }, {\n                                \"X\": 0.7798815369606018,\n                                \"Y\": 0.900952160358429\n                            }, {\n                                \"X\": 0.7630472779273987,\n                                \"Y\": 0.900952160358429\n                            }]\n                        },\n                        \"Confidence\": 99.75798797607422\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1077 06/09\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03971368074417114,\n                                \"Height\": 0.004669619724154472,\n                                \"Left\": 0.7824714183807373,\n                                \"Top\": 0.8962824940681458\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.782473087310791,\n                                \"Y\": 0.8962826728820801\n                            }, {\n                                \"X\": 0.8221850991249084,\n                                \"Y\": 0.8962824940681458\n                            }, {\n                                \"X\": 0.8221834897994995,\n                                \"Y\": 0.9009520411491394\n                            }, {\n                                \"X\": 0.7824714183807373,\n                                \"Y\": 0.9009521007537842\n                            }]\n                        },\n                        \"Confidence\": 83.3145523071289\n                    }]\n                }, {\n                    \"Type\": \"EXTERIOR_OR_INTERIOR\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Exterior/Interior\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06732892245054245,\n                                \"Height\": 0.006006964482367039,\n                                \"Left\": 0.45240291953086853,\n                                \"Top\": 0.5917965769767761\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45240533351898193,\n                                \"Y\": 0.5918008685112\n                            }, {\n                                \"X\": 0.519731879234314,\n                                \"Y\": 0.5917965769767761\n                            }, {\n                                \"X\": 0.519729495048523,\n                                \"Y\": 0.5977993607521057\n                            }, {\n                                \"X\": 0.45240291953086853,\n                                \"Y\": 0.59780353307724\n                            }]\n                        },\n                        \"Confidence\": 99.68927764892578\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016780484467744827,\n                                \"Height\": 0.01153151411563158,\n                                \"Left\": 0.43172577023506165,\n                                \"Top\": 0.5878866910934448\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4317304491996765,\n                                \"Y\": 0.5878877639770508\n                            }, {\n                                \"X\": 0.44850626587867737,\n                                \"Y\": 0.5878866910934448\n                            }, {\n                                \"X\": 0.4485016167163849,\n                                \"Y\": 0.5994172096252441\n                            }, {\n                                \"X\": 0.43172577023506165,\n                                \"Y\": 0.5994182229042053\n                            }]\n                        },\n                        \"Confidence\": 99.89087677001953\n                    }]\n                }, {\n                    \"Type\": \"PRIMARY_RESIDENCE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Primary Residence\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07984613627195358,\n                                \"Height\": 0.0073478249832987785,\n                                \"Left\": 0.6372858881950378,\n                                \"Top\": 0.15859422087669373\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6372886300086975,\n                                \"Y\": 0.15860605239868164\n                            }, {\n                                \"X\": 0.717132031917572,\n                                \"Y\": 0.15859422087669373\n                            }, {\n                                \"X\": 0.7171293497085571,\n                                \"Y\": 0.16593031585216522\n                            }, {\n                                \"X\": 0.6372858881950378,\n                                \"Y\": 0.16594204306602478\n                            }]\n                        },\n                        \"Confidence\": 99.9773178100586\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018294457346200943,\n                                \"Height\": 0.010480150580406189,\n                                \"Left\": 0.615949273109436,\n                                \"Top\": 0.1549839973449707\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.615953266620636,\n                                \"Y\": 0.15498672425746918\n                            }, {\n                                \"X\": 0.6342437267303467,\n                                \"Y\": 0.1549839973449707\n                            }, {\n                                \"X\": 0.6342397928237915,\n                                \"Y\": 0.165461465716362\n                            }, {\n                                \"X\": 0.615949273109436,\n                                \"Y\": 0.1654641479253769\n                            }]\n                        },\n                        \"Confidence\": 99.30567932128906\n                    }]\n                }, {\n                    \"Type\": \"SELLER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Seller\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024169867858290672,\n                                \"Height\": 0.006338388193398714,\n                                \"Left\": 0.43566787242889404,\n                                \"Top\": 0.35336795449256897\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4356704354286194,\n                                \"Y\": 0.3533706068992615\n                            }, {\n                                \"X\": 0.45983773469924927,\n                                \"Y\": 0.35336795449256897\n                            }, {\n                                \"X\": 0.4598352015018463,\n                                \"Y\": 0.3597036898136139\n                            }, {\n                                \"X\": 0.43566787242889404,\n                                \"Y\": 0.3597063422203064\n                            }]\n                        },\n                        \"Confidence\": 99.98039245605469\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01812475360929966,\n                                \"Height\": 0.010367163456976414,\n                                \"Left\": 0.4142700135707855,\n                                \"Top\": 0.34999826550483704\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4142742455005646,\n                                \"Y\": 0.3500002920627594\n                            }, {\n                                \"X\": 0.43239477276802063,\n                                \"Y\": 0.34999826550483704\n                            }, {\n                                \"X\": 0.43239057064056396,\n                                \"Y\": 0.3603634536266327\n                            }, {\n                                \"X\": 0.4142700135707855,\n                                \"Y\": 0.36036545038223267\n                            }]\n                        },\n                        \"Confidence\": 99.69644165039062\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"R Expedited New\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07379856705665588,\n                                \"Height\": 0.007346238940954208,\n                                \"Left\": 0.4357331395149231,\n                                \"Top\": 0.1909693330526352\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4357360899448395,\n                                \"Y\": 0.19097980856895447\n                            }, {\n                                \"X\": 0.5095316767692566,\n                                \"Y\": 0.1909693330526352\n                            }, {\n                                \"X\": 0.5095288157463074,\n                                \"Y\": 0.19830520451068878\n                            }, {\n                                \"X\": 0.4357331395149231,\n                                \"Y\": 0.1983155757188797\n                            }]\n                        },\n                        \"Confidence\": 99.09756469726562\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017294175922870636,\n                                \"Height\": 0.011033845134079456,\n                                \"Left\": 0.4146846532821655,\n                                \"Top\": 0.1876860111951828\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4146891236305237,\n                                \"Y\": 0.18768846988677979\n                            }, {\n                                \"X\": 0.43197882175445557,\n                                \"Y\": 0.1876860111951828\n                            }, {\n                                \"X\": 0.4319743514060974,\n                                \"Y\": 0.19871743023395538\n                            }, {\n                                \"X\": 0.4146846532821655,\n                                \"Y\": 0.1987198442220688\n                            }]\n                        },\n                        \"Confidence\": 99.62066650390625\n                    }]\n                }, {\n                    \"Type\": \"NO_APPRAISAL\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No Appraisal\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05524526163935661,\n                                \"Height\": 0.007339946459978819,\n                                \"Left\": 0.4528253972530365,\n                                \"Top\": 0.6131405234336853\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4528283476829529,\n                                \"Y\": 0.613143801689148\n                            }, {\n                                \"X\": 0.5080706477165222,\n                                \"Y\": 0.6131405234336853\n                            }, {\n                                \"X\": 0.5080677270889282,\n                                \"Y\": 0.6204772591590881\n                            }, {\n                                \"X\": 0.4528253972530365,\n                                \"Y\": 0.620480477809906\n                            }]\n                        },\n                        \"Confidence\": 99.66172790527344\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017424102872610092,\n                                \"Height\": 0.010878831148147583,\n                                \"Left\": 0.43133431673049927,\n                                \"Top\": 0.6094129085540771\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43133872747421265,\n                                \"Y\": 0.6094139814376831\n                            }, {\n                                \"X\": 0.44875842332839966,\n                                \"Y\": 0.6094129085540771\n                            }, {\n                                \"X\": 0.44875404238700867,\n                                \"Y\": 0.6202907562255859\n                            }, {\n                                \"X\": 0.43133431673049927,\n                                \"Y\": 0.6202917695045471\n                            }]\n                        },\n                        \"Confidence\": 99.9212875366211\n                    }]\n                }, {\n                    \"Type\": \"MANUFACTURED_HOUSING\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Manufactured Housing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09752586483955383,\n                                \"Height\": 0.007349081337451935,\n                                \"Left\": 0.2005458027124405,\n                                \"Top\": 0.20200270414352417\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20054900646209717,\n                                \"Y\": 0.20201633870601654\n                            }, {\n                                \"X\": 0.29807165265083313,\n                                \"Y\": 0.20200270414352417\n                            }, {\n                                \"X\": 0.2980685532093048,\n                                \"Y\": 0.20933829247951508\n                            }, {\n                                \"X\": 0.2005458027124405,\n                                \"Y\": 0.2093517929315567\n                            }]\n                        },\n                        \"Confidence\": 99.93775939941406\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019198570400476456,\n                                \"Height\": 0.010264825075864792,\n                                \"Left\": 0.1783110797405243,\n                                \"Top\": 0.19841505587100983\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17831560969352722,\n                                \"Y\": 0.1984177529811859\n                            }, {\n                                \"X\": 0.19750964641571045,\n                                \"Y\": 0.19841505587100983\n                            }, {\n                                \"X\": 0.1975051462650299,\n                                \"Y\": 0.2086772322654724\n                            }, {\n                                \"X\": 0.1783110797405243,\n                                \"Y\": 0.20867988467216492\n                            }]\n                        },\n                        \"Confidence\": 99.75531768798828\n                    }]\n                }, {\n                    \"Type\": \"USDA/RHS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"USDA/RHS\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04833300784230232,\n                                \"Height\": 0.006674529053270817,\n                                \"Left\": 0.2004987746477127,\n                                \"Top\": 0.3100433647632599\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2005016952753067,\n                                \"Y\": 0.3100490868091583\n                            }, {\n                                \"X\": 0.24883177876472473,\n                                \"Y\": 0.3100433647632599\n                            }, {\n                                \"X\": 0.24882890284061432,\n                                \"Y\": 0.3167122006416321\n                            }, {\n                                \"X\": 0.2004987746477127,\n                                \"Y\": 0.31671789288520813\n                            }]\n                        },\n                        \"Confidence\": 99.92578887939453\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01864398457109928,\n                                \"Height\": 0.010161425918340683,\n                                \"Left\": 0.17848560214042664,\n                                \"Top\": 0.30683451890945435\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17849008738994598,\n                                \"Y\": 0.30683672428131104\n                            }, {\n                                \"X\": 0.19712959229946136,\n                                \"Y\": 0.30683451890945435\n                            }, {\n                                \"X\": 0.1971251368522644,\n                                \"Y\": 0.31699374318122864\n                            }, {\n                                \"X\": 0.17848560214042664,\n                                \"Y\": 0.3169959485530853\n                            }]\n                        },\n                        \"Confidence\": 99.92753601074219\n                    }]\n                }, {\n                    \"Type\": \"ESTABLISHED_PROJECT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Established Project\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08156315237283707,\n                                \"Height\": 0.007347332313656807,\n                                \"Left\": 0.3265584409236908,\n                                \"Top\": 0.1803136169910431\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3265615403652191,\n                                \"Y\": 0.18032535910606384\n                            }, {\n                                \"X\": 0.40812161564826965,\n                                \"Y\": 0.1803136169910431\n                            }, {\n                                \"X\": 0.4081186056137085,\n                                \"Y\": 0.18764930963516235\n                            }, {\n                                \"X\": 0.3265584409236908,\n                                \"Y\": 0.18766094744205475\n                            }]\n                        },\n                        \"Confidence\": 99.9466552734375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017095206305384636,\n                                \"Height\": 0.011236647143959999,\n                                \"Left\": 0.3054737150669098,\n                                \"Top\": 0.17662043869495392\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3054784834384918,\n                                \"Y\": 0.1766229122877121\n                            }, {\n                                \"X\": 0.3225689232349396,\n                                \"Y\": 0.17662043869495392\n                            }, {\n                                \"X\": 0.3225642144680023,\n                                \"Y\": 0.18785464763641357\n                            }, {\n                                \"X\": 0.3054737150669098,\n                                \"Y\": 0.18785707652568817\n                            }]\n                        },\n                        \"Confidence\": 99.6473617553711\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"1 Co-op\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03409711644053459,\n                                \"Height\": 0.0073407478630542755,\n                                \"Left\": 0.5703752636909485,\n                                \"Top\": 0.20195987820625305\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5703780651092529,\n                                \"Y\": 0.20196464657783508\n                            }, {\n                                \"X\": 0.6044723391532898,\n                                \"Y\": 0.20195987820625305\n                            }, {\n                                \"X\": 0.6044695973396301,\n                                \"Y\": 0.20929591357707977\n                            }, {\n                                \"X\": 0.5703752636909485,\n                                \"Y\": 0.20930063724517822\n                            }]\n                        },\n                        \"Confidence\": 97.59292602539062\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017173143103718758,\n                                \"Height\": 0.011215291917324066,\n                                \"Left\": 0.5488694906234741,\n                                \"Top\": 0.19789060950279236\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5488738417625427,\n                                \"Y\": 0.19789302349090576\n                            }, {\n                                \"X\": 0.5660426020622253,\n                                \"Y\": 0.19789060950279236\n                            }, {\n                                \"X\": 0.5660383105278015,\n                                \"Y\": 0.209103524684906\n                            }, {\n                                \"X\": 0.5488694906234741,\n                                \"Y\": 0.20910590887069702\n                            }]\n                        },\n                        \"Confidence\": 96.75347900390625\n                    }]\n                }, {\n                    \"Type\": \"PUD\",\n                    \"KeyDetection\": {\n                        \"Text\": \"PUD\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018557507544755936,\n                                \"Height\": 0.00600434560328722,\n                                \"Left\": 0.20055106282234192,\n                                \"Top\": 0.1913439780473709\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20055368542671204,\n                                \"Y\": 0.19134661555290222\n                            }, {\n                                \"X\": 0.21910856664180756,\n                                \"Y\": 0.1913439780473709\n                            }, {\n                                \"X\": 0.21910594403743744,\n                                \"Y\": 0.19734571874141693\n                            }, {\n                                \"X\": 0.20055106282234192,\n                                \"Y\": 0.19734832644462585\n                            }]\n                        },\n                        \"Confidence\": 99.92303466796875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018304698169231415,\n                                \"Height\": 0.010431197471916676,\n                                \"Left\": 0.17886294424533844,\n                                \"Top\": 0.18771667778491974\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17886754870414734,\n                                \"Y\": 0.18771928548812866\n                            }, {\n                                \"X\": 0.19716763496398926,\n                                \"Y\": 0.18771667778491974\n                            }, {\n                                \"X\": 0.19716307520866394,\n                                \"Y\": 0.1981453001499176\n                            }, {\n                                \"X\": 0.17886294424533844,\n                                \"Y\": 0.19814786314964294\n                            }]\n                        },\n                        \"Confidence\": 99.8391342163086\n                    }]\n                }, {\n                    \"Type\": \"AUS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"AUS\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019421877339482307,\n                                \"Height\": 0.006003450136631727,\n                                \"Left\": 0.20033781230449677,\n                                \"Top\": 0.6781848073005676\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20034044981002808,\n                                \"Y\": 0.6781857013702393\n                            }, {\n                                \"X\": 0.21975970268249512,\n                                \"Y\": 0.6781848073005676\n                            }, {\n                                \"X\": 0.219757080078125,\n                                \"Y\": 0.6841873526573181\n                            }, {\n                                \"X\": 0.20033781230449677,\n                                \"Y\": 0.6841882467269897\n                            }]\n                        },\n                        \"Confidence\": 99.8895263671875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018611468374729156,\n                                \"Height\": 0.010301710106432438,\n                                \"Left\": 0.17834900319576263,\n                                \"Top\": 0.6745848059654236\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17835353314876556,\n                                \"Y\": 0.6745857000350952\n                            }, {\n                                \"X\": 0.1969604641199112,\n                                \"Y\": 0.6745848059654236\n                            }, {\n                                \"X\": 0.19695594906806946,\n                                \"Y\": 0.6848856806755066\n                            }, {\n                                \"X\": 0.17834900319576263,\n                                \"Y\": 0.6848865747451782\n                            }]\n                        },\n                        \"Confidence\": 98.98792266845703\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fixed-Rate_Monthly Payments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13507498800754547,\n                                \"Height\": 0.007352616637945175,\n                                \"Left\": 0.29242658615112305,\n                                \"Top\": 0.2776772379875183\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29242968559265137,\n                                \"Y\": 0.27769410610198975\n                            }, {\n                                \"X\": 0.4275015592575073,\n                                \"Y\": 0.2776772379875183\n                            }, {\n                                \"X\": 0.42749857902526855,\n                                \"Y\": 0.2850131690502167\n                            }, {\n                                \"X\": 0.29242658615112305,\n                                \"Y\": 0.2850298583507538\n                            }]\n                        },\n                        \"Confidence\": 98.7293472290039\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017766384407877922,\n                                \"Height\": 0.010905520059168339,\n                                \"Left\": 0.2707834839820862,\n                                \"Top\": 0.2737064063549042\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27078816294670105,\n                                \"Y\": 0.27370864152908325\n                            }, {\n                                \"X\": 0.28854987025260925,\n                                \"Y\": 0.2737064063549042\n                            }, {\n                                \"X\": 0.28854525089263916,\n                                \"Y\": 0.28460973501205444\n                            }, {\n                                \"X\": 0.2707834839820862,\n                                \"Y\": 0.28461191058158875\n                            }]\n                        },\n                        \"Confidence\": 99.79634094238281\n                    }]\n                }, {\n                    \"Type\": \"BROKER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Broker\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02805369533598423,\n                                \"Height\": 0.005671852733939886,\n                                \"Left\": 0.4356635510921478,\n                                \"Top\": 0.3647052049636841\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4356658458709717,\n                                \"Y\": 0.36470821499824524\n                            }, {\n                                \"X\": 0.4637172520160675,\n                                \"Y\": 0.3647052049636841\n                            }, {\n                                \"X\": 0.46371498703956604,\n                                \"Y\": 0.37037405371665955\n                            }, {\n                                \"X\": 0.4356635510921478,\n                                \"Y\": 0.3703770637512207\n                            }]\n                        },\n                        \"Confidence\": 99.97763061523438\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018351715058088303,\n                                \"Height\": 0.010663029737770557,\n                                \"Left\": 0.41428259015083313,\n                                \"Top\": 0.3604764938354492\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41428691148757935,\n                                \"Y\": 0.3604784607887268\n                            }, {\n                                \"X\": 0.43263429403305054,\n                                \"Y\": 0.3604764938354492\n                            }, {\n                                \"X\": 0.4326299726963043,\n                                \"Y\": 0.3711375594139099\n                            }, {\n                                \"X\": 0.41428259015083313,\n                                \"Y\": 0.3711394965648651\n                            }]\n                        },\n                        \"Confidence\": 99.68669128417969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Second Home\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05999540537595749,\n                                \"Height\": 0.0063446746207773685,\n                                \"Left\": 0.7624474167823792,\n                                \"Top\": 0.15857860445976257\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7624496817588806,\n                                \"Y\": 0.1585875004529953\n                            }, {\n                                \"X\": 0.8224427700042725,\n                                \"Y\": 0.15857860445976257\n                            }, {\n                                \"X\": 0.8224405646324158,\n                                \"Y\": 0.16491445899009705\n                            }, {\n                                \"X\": 0.7624474167823792,\n                                \"Y\": 0.1649232804775238\n                            }]\n                        },\n                        \"Confidence\": 99.74628448486328\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018154911696910858,\n                                \"Height\": 0.010738777928054333,\n                                \"Left\": 0.7420798540115356,\n                                \"Top\": 0.1549411565065384\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.742083728313446,\n                                \"Y\": 0.15494386851787567\n                            }, {\n                                \"X\": 0.7602347731590271,\n                                \"Y\": 0.1549411565065384\n                            }, {\n                                \"X\": 0.7602309584617615,\n                                \"Y\": 0.1656772792339325\n                            }, {\n                                \"X\": 0.7420798540115356,\n                                \"Y\": 0.1656799465417862\n                            }]\n                        },\n                        \"Confidence\": 99.92909240722656\n                    }]\n                }, {\n                    \"Type\": \"VA\",\n                    \"KeyDetection\": {\n                        \"Text\": \"VA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.013811108656227589,\n                                \"Height\": 0.006003564689308405,\n                                \"Left\": 0.20007222890853882,\n                                \"Top\": 0.2993774116039276\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20007485151290894,\n                                \"Y\": 0.2993790805339813\n                            }, {\n                                \"X\": 0.21388332545757294,\n                                \"Y\": 0.2993774116039276\n                            }, {\n                                \"X\": 0.213880717754364,\n                                \"Y\": 0.30537933111190796\n                            }, {\n                                \"X\": 0.20007222890853882,\n                                \"Y\": 0.30538100004196167\n                            }]\n                        },\n                        \"Confidence\": 99.780029296875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01769743114709854,\n                                \"Height\": 0.010948391631245613,\n                                \"Left\": 0.17888209223747253,\n                                \"Top\": 0.2955802083015442\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17888692021369934,\n                                \"Y\": 0.2955823838710785\n                            }, {\n                                \"X\": 0.19657953083515167,\n                                \"Y\": 0.2955802083015442\n                            }, {\n                                \"X\": 0.19657473266124725,\n                                \"Y\": 0.3065265119075775\n                            }, {\n                                \"X\": 0.17888209223747253,\n                                \"Y\": 0.30652859807014465\n                            }]\n                        },\n                        \"Confidence\": 99.84837341308594\n                    }]\n                }, {\n                    \"Type\": \"FHA\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FHA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018126104027032852,\n                                \"Height\": 0.005670667625963688,\n                                \"Left\": 0.20050854980945587,\n                                \"Top\": 0.28870677947998047\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20051103830337524,\n                                \"Y\": 0.28870901465415955\n                            }, {\n                                \"X\": 0.21863466501235962,\n                                \"Y\": 0.28870677947998047\n                            }, {\n                                \"X\": 0.21863219141960144,\n                                \"Y\": 0.2943752706050873\n                            }, {\n                                \"X\": 0.20050854980945587,\n                                \"Y\": 0.29437747597694397\n                            }]\n                        },\n                        \"Confidence\": 99.9686508178711\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01736379787325859,\n                                \"Height\": 0.011236530728638172,\n                                \"Left\": 0.17932426929473877,\n                                \"Top\": 0.2844083309173584\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17932923138141632,\n                                \"Y\": 0.2844104766845703\n                            }, {\n                                \"X\": 0.19668807089328766,\n                                \"Y\": 0.2844083309173584\n                            }, {\n                                \"X\": 0.1966831386089325,\n                                \"Y\": 0.2956427335739136\n                            }, {\n                                \"X\": 0.17932426929473877,\n                                \"Y\": 0.2956448495388031\n                            }]\n                        },\n                        \"Confidence\": 99.9376449584961\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Cash-Out Refinance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08545272797346115,\n                                \"Height\": 0.006012698169797659,\n                                \"Left\": 0.47798675298690796,\n                                \"Top\": 0.28866446018218994\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.477989137172699,\n                                \"Y\": 0.2886749505996704\n                            }, {\n                                \"X\": 0.5634394884109497,\n                                \"Y\": 0.28866446018218994\n                            }, {\n                                \"X\": 0.5634371638298035,\n                                \"Y\": 0.29466676712036133\n                            }, {\n                                \"X\": 0.47798675298690796,\n                                \"Y\": 0.29467716813087463\n                            }]\n                        },\n                        \"Confidence\": 99.35050201416016\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017526544630527496,\n                                \"Height\": 0.010736122727394104,\n                                \"Left\": 0.4562620222568512,\n                                \"Top\": 0.2850036025047302\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4562663435935974,\n                                \"Y\": 0.2850057780742645\n                            }, {\n                                \"X\": 0.4737885892391205,\n                                \"Y\": 0.2850036025047302\n                            }, {\n                                \"X\": 0.47378429770469666,\n                                \"Y\": 0.295737624168396\n                            }, {\n                                \"X\": 0.4562620222568512,\n                                \"Y\": 0.2957397401332855\n                            }]\n                        },\n                        \"Confidence\": 99.8021011352539\n                    }]\n                }, {\n                    \"Type\": \"LIMITED_CASH-OUT_REFINANCE_(FANNIE)\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Limited Cash-Out Refinance (Fannie)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1570957601070404,\n                                \"Height\": 0.0070215556770563126,\n                                \"Left\": 0.4779821038246155,\n                                \"Top\": 0.2993265986442566\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.47798487544059753,\n                                \"Y\": 0.29934555292129517\n                            }, {\n                                \"X\": 0.6350778341293335,\n                                \"Y\": 0.2993265986442566\n                            }, {\n                                \"X\": 0.6350752115249634,\n                                \"Y\": 0.3063293993473053\n                            }, {\n                                \"X\": 0.4779821038246155,\n                                \"Y\": 0.30634814500808716\n                            }]\n                        },\n                        \"Confidence\": 98.40348052978516\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017644638195633888,\n                                \"Height\": 0.010887718759477139,\n                                \"Left\": 0.4563714563846588,\n                                \"Top\": 0.2958875596523285\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4563758075237274,\n                                \"Y\": 0.2958897054195404\n                            }, {\n                                \"X\": 0.47401607036590576,\n                                \"Y\": 0.2958875596523285\n                            }, {\n                                \"X\": 0.47401174902915955,\n                                \"Y\": 0.30677318572998047\n                            }, {\n                                \"X\": 0.4563714563846588,\n                                \"Y\": 0.3067752718925476\n                            }]\n                        },\n                        \"Confidence\": 97.60885620117188\n                    }]\n                }, {\n                    \"Type\": \"NO_CASH-OUT_REFINANCE_(FREDDIE)\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No Cash-Out Refinance (Freddie)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14112742245197296,\n                                \"Height\": 0.007352813147008419,\n                                \"Left\": 0.4779777228832245,\n                                \"Top\": 0.3099994361400604\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4779806435108185,\n                                \"Y\": 0.3100161850452423\n                            }, {\n                                \"X\": 0.6191051602363586,\n                                \"Y\": 0.3099994361400604\n                            }, {\n                                \"X\": 0.6191023588180542,\n                                \"Y\": 0.31733572483062744\n                            }, {\n                                \"X\": 0.4779777228832245,\n                                \"Y\": 0.3173522651195526\n                            }]\n                        },\n                        \"Confidence\": 98.04244995117188\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01775852032005787,\n                                \"Height\": 0.010793515481054783,\n                                \"Left\": 0.45606574416160583,\n                                \"Top\": 0.30634716153144836\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45607006549835205,\n                                \"Y\": 0.3063492774963379\n                            }, {\n                                \"X\": 0.47382426261901855,\n                                \"Y\": 0.30634716153144836\n                            }, {\n                                \"X\": 0.4738199710845947,\n                                \"Y\": 0.31713858246803284\n                            }, {\n                                \"X\": 0.45606574416160583,\n                                \"Y\": 0.3171406686306\n                            }]\n                        },\n                        \"Confidence\": 99.78199005126953\n                    }]\n                }, {\n                    \"Type\": \"SELLER/OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Seller/Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05136303976178169,\n                                \"Height\": 0.006341492757201195,\n                                \"Left\": 0.6708692908287048,\n                                \"Top\": 0.37534865736961365\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6708716750144958,\n                                \"Y\": 0.3753540813922882\n                            }, {\n                                \"X\": 0.7222323417663574,\n                                \"Y\": 0.37534865736961365\n                            }, {\n                                \"X\": 0.7222300171852112,\n                                \"Y\": 0.3816847801208496\n                            }, {\n                                \"X\": 0.6708692908287048,\n                                \"Y\": 0.3816901445388794\n                            }]\n                        },\n                        \"Confidence\": 99.71702575683594\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017498169094324112,\n                                \"Height\": 0.010980942286550999,\n                                \"Left\": 0.64958655834198,\n                                \"Top\": 0.37142619490623474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6495906710624695,\n                                \"Y\": 0.37142807245254517\n                            }, {\n                                \"X\": 0.6670847535133362,\n                                \"Y\": 0.37142619490623474\n                            }, {\n                                \"X\": 0.6670806407928467,\n                                \"Y\": 0.3824053108692169\n                            }, {\n                                \"X\": 0.64958655834198,\n                                \"Y\": 0.38240715861320496\n                            }]\n                        },\n                        \"Confidence\": 99.6058578491211\n                    }]\n                }, {\n                    \"Type\": \"LP\",\n                    \"KeyDetection\": {\n                        \"Text\": \"LP\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010791181586682796,\n                                \"Height\": 0.0056696427054703236,\n                                \"Left\": 0.26722243428230286,\n                                \"Top\": 0.6891869306564331\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.26722487807273865,\n                                \"Y\": 0.6891874074935913\n                            }, {\n                                \"X\": 0.2780136168003082,\n                                \"Y\": 0.6891869306564331\n                            }, {\n                                \"X\": 0.2780112028121948,\n                                \"Y\": 0.6948561072349548\n                            }, {\n                                \"X\": 0.26722243428230286,\n                                \"Y\": 0.694856584072113\n                            }]\n                        },\n                        \"Confidence\": 99.56826782226562\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017287148162722588,\n                                \"Height\": 0.011630283668637276,\n                                \"Left\": 0.246598020195961,\n                                \"Top\": 0.684888482093811\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.24660302698612213,\n                                \"Y\": 0.6848892569541931\n                            }, {\n                                \"X\": 0.26388517022132874,\n                                \"Y\": 0.684888482093811\n                            }, {\n                                \"X\": 0.2638801634311676,\n                                \"Y\": 0.6965180039405823\n                            }, {\n                                \"X\": 0.246598020195961,\n                                \"Y\": 0.6965187191963196\n                            }]\n                        },\n                        \"Confidence\": 98.33600616455078\n                    }]\n                }, {\n                    \"Type\": \"T_FANNIE_MAE_REVIEW\",\n                    \"KeyDetection\": {\n                        \"Text\": \"T Fannie Mae Review\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09321869909763336,\n                                \"Height\": 0.006348305847495794,\n                                \"Left\": 0.43572476506233215,\n                                \"Top\": 0.2126408815383911\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4357273280620575,\n                                \"Y\": 0.21265371143817902\n                            }, {\n                                \"X\": 0.5289434790611267,\n                                \"Y\": 0.2126408815383911\n                            }, {\n                                \"X\": 0.5289409756660461,\n                                \"Y\": 0.2189764678478241\n                            }, {\n                                \"X\": 0.43572476506233215,\n                                \"Y\": 0.21898917853832245\n                            }]\n                        },\n                        \"Confidence\": 99.60247039794922\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017314424738287926,\n                                \"Height\": 0.011535495519638062,\n                                \"Left\": 0.41465267539024353,\n                                \"Top\": 0.2090854048728943\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4146573543548584,\n                                \"Y\": 0.2090878039598465\n                            }, {\n                                \"X\": 0.4319670796394348,\n                                \"Y\": 0.2090854048728943\n                            }, {\n                                \"X\": 0.43196243047714233,\n                                \"Y\": 0.22061854600906372\n                            }, {\n                                \"X\": 0.41465267539024353,\n                                \"Y\": 0.22062090039253235\n                            }]\n                        },\n                        \"Confidence\": 99.19800567626953\n                    }]\n                }, {\n                    \"Type\": \"CONVENTIONAL\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Conventional\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05653153732419014,\n                                \"Height\": 0.006342360284179449,\n                                \"Left\": 0.20008157193660736,\n                                \"Top\": 0.2776985764503479\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20008434355258942,\n                                \"Y\": 0.2777056396007538\n                            }, {\n                                \"X\": 0.2566131055355072,\n                                \"Y\": 0.2776985764503479\n                            }, {\n                                \"X\": 0.2566103935241699,\n                                \"Y\": 0.28403395414352417\n                            }, {\n                                \"X\": 0.20008157193660736,\n                                \"Y\": 0.2840409576892853\n                            }]\n                        },\n                        \"Confidence\": 99.95484924316406\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01753624714910984,\n                                \"Height\": 0.011317835189402103,\n                                \"Left\": 0.17854173481464386,\n                                \"Top\": 0.27329692244529724\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1785467267036438,\n                                \"Y\": 0.27329912781715393\n                            }, {\n                                \"X\": 0.19607797265052795,\n                                \"Y\": 0.27329692244529724\n                            }, {\n                                \"X\": 0.1960730105638504,\n                                \"Y\": 0.28461259603500366\n                            }, {\n                                \"X\": 0.17854173481464386,\n                                \"Y\": 0.2846147418022156\n                            }]\n                        },\n                        \"Confidence\": 99.92991638183594\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Multiwide\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04229127615690231,\n                                \"Height\": 0.006007529329508543,\n                                \"Left\": 0.22556456923484802,\n                                \"Top\": 0.22368018329143524\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22556717693805695,\n                                \"Y\": 0.22368592023849487\n                            }, {\n                                \"X\": 0.26785585284233093,\n                                \"Y\": 0.22368018329143524\n                            }, {\n                                \"X\": 0.2678532898426056,\n                                \"Y\": 0.22968202829360962\n                            }, {\n                                \"X\": 0.22556456923484802,\n                                \"Y\": 0.22968770563602448\n                            }]\n                        },\n                        \"Confidence\": 99.98470306396484\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01916809007525444,\n                                \"Height\": 0.010301586240530014,\n                                \"Left\": 0.20321868360042572,\n                                \"Top\": 0.22094237804412842\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20322319865226746,\n                                \"Y\": 0.22094498574733734\n                            }, {\n                                \"X\": 0.22238677740097046,\n                                \"Y\": 0.22094237804412842\n                            }, {\n                                \"X\": 0.2223822921514511,\n                                \"Y\": 0.2312414050102234\n                            }, {\n                                \"X\": 0.20321868360042572,\n                                \"Y\": 0.23124396800994873\n                            }]\n                        },\n                        \"Confidence\": 99.92320251464844\n                    }]\n                }, {\n                    \"Type\": \"ARM\",\n                    \"KeyDetection\": {\n                        \"Text\": \"ARM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02157915011048317,\n                                \"Height\": 0.006004583556205034,\n                                \"Left\": 0.2928447723388672,\n                                \"Top\": 0.31036901473999023\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29284733533859253,\n                                \"Y\": 0.3103715777397156\n                            }, {\n                                \"X\": 0.31442394852638245,\n                                \"Y\": 0.31036901473999023\n                            }, {\n                                \"X\": 0.3144214153289795,\n                                \"Y\": 0.3163710832595825\n                            }, {\n                                \"X\": 0.2928447723388672,\n                                \"Y\": 0.3163736164569855\n                            }]\n                        },\n                        \"Confidence\": 98.3008804321289\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0186595655977726,\n                                \"Height\": 0.01093785185366869,\n                                \"Left\": 0.2709130644798279,\n                                \"Top\": 0.306398868560791\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27091774344444275,\n                                \"Y\": 0.3064011037349701\n                            }, {\n                                \"X\": 0.2895726263523102,\n                                \"Y\": 0.306398868560791\n                            }, {\n                                \"X\": 0.2895679771900177,\n                                \"Y\": 0.31733453273773193\n                            }, {\n                                \"X\": 0.2709130644798279,\n                                \"Y\": 0.3173367381095886\n                            }]\n                        },\n                        \"Confidence\": 99.70295715332031\n                    }]\n                }, {\n                    \"Type\": \"FIRST_MORTGAGE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"First Mortgage\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06258447468280792,\n                                \"Height\": 0.007677572779357433,\n                                \"Left\": 0.6713366508483887,\n                                \"Top\": 0.2776389718055725\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6713395118713379,\n                                \"Y\": 0.2776467800140381\n                            }, {\n                                \"X\": 0.7339211106300354,\n                                \"Y\": 0.2776389718055725\n                            }, {\n                                \"X\": 0.733918309211731,\n                                \"Y\": 0.2853088080883026\n                            }, {\n                                \"X\": 0.6713366508483887,\n                                \"Y\": 0.285316526889801\n                            }]\n                        },\n                        \"Confidence\": 99.70563507080078\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018183032050728798,\n                                \"Height\": 0.011277111247181892,\n                                \"Left\": 0.6482076644897461,\n                                \"Top\": 0.2736680507659912\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6482118368148804,\n                                \"Y\": 0.27367034554481506\n                            }, {\n                                \"X\": 0.6663906574249268,\n                                \"Y\": 0.2736680507659912\n                            }, {\n                                \"X\": 0.6663864850997925,\n                                \"Y\": 0.2849429249763489\n                            }, {\n                                \"X\": 0.6482076644897461,\n                                \"Y\": 0.28494516015052795\n                            }]\n                        },\n                        \"Confidence\": 99.88460540771484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Co-op\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02503105439245701,\n                                \"Height\": 0.007005619816482067,\n                                \"Left\": 0.25103750824928284,\n                                \"Top\": 0.19133590161800385\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.251040518283844,\n                                \"Y\": 0.19133944809436798\n                            }, {\n                                \"X\": 0.2760685682296753,\n                                \"Y\": 0.19133590161800385\n                            }, {\n                                \"X\": 0.2760655879974365,\n                                \"Y\": 0.19833800196647644\n                            }, {\n                                \"X\": 0.25103750824928284,\n                                \"Y\": 0.1983415186405182\n                            }]\n                        },\n                        \"Confidence\": 99.93146514892578\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018132172524929047,\n                                \"Height\": 0.010923626832664013,\n                                \"Left\": 0.22906441986560822,\n                                \"Top\": 0.18754278123378754\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22906915843486786,\n                                \"Y\": 0.18754537403583527\n                            }, {\n                                \"X\": 0.24719658493995667,\n                                \"Y\": 0.18754278123378754\n                            }, {\n                                \"X\": 0.2471918761730194,\n                                \"Y\": 0.19846385717391968\n                            }, {\n                                \"X\": 0.22906441986560822,\n                                \"Y\": 0.19846640527248383\n                            }]\n                        },\n                        \"Confidence\": 99.71138000488281\n                    }]\n                }, {\n                    \"Type\": \"1_UNIT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"1 unit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02459855005145073,\n                                \"Height\": 0.006005304865539074,\n                                \"Left\": 0.20099687576293945,\n                                \"Top\": 0.15866708755493164\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20099949836730957,\n                                \"Y\": 0.15867073833942413\n                            }, {\n                                \"X\": 0.22559542953968048,\n                                \"Y\": 0.15866708755493164\n                            }, {\n                                \"X\": 0.22559282183647156,\n                                \"Y\": 0.16466876864433289\n                            }, {\n                                \"X\": 0.20099687576293945,\n                                \"Y\": 0.164672389626503\n                            }]\n                        },\n                        \"Confidence\": 98.6178970336914\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017927339300513268,\n                                \"Height\": 0.01106904074549675,\n                                \"Left\": 0.17889532446861267,\n                                \"Top\": 0.15419232845306396\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17890019714832306,\n                                \"Y\": 0.15419501066207886\n                            }, {\n                                \"X\": 0.1968226581811905,\n                                \"Y\": 0.15419232845306396\n                            }, {\n                                \"X\": 0.1968178004026413,\n                                \"Y\": 0.1652587354183197\n                            }, {\n                                \"X\": 0.17889532446861267,\n                                \"Y\": 0.165261372923851\n                            }]\n                        },\n                        \"Confidence\": 99.725830078125\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"F PUD\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026759738102555275,\n                                \"Height\": 0.006005981471389532,\n                                \"Left\": 0.5703839659690857,\n                                \"Top\": 0.18061983585357666\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5703862905502319,\n                                \"Y\": 0.18062369525432587\n                            }, {\n                                \"X\": 0.5971437096595764,\n                                \"Y\": 0.18061983585357666\n                            }, {\n                                \"X\": 0.597141444683075,\n                                \"Y\": 0.1866220086812973\n                            }, {\n                                \"X\": 0.5703839659690857,\n                                \"Y\": 0.18662582337856293\n                            }]\n                        },\n                        \"Confidence\": 92.00506591796875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01777641288936138,\n                                \"Height\": 0.011378017254173756,\n                                \"Left\": 0.5489304661750793,\n                                \"Top\": 0.17682193219661713\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5489348769187927,\n                                \"Y\": 0.17682451009750366\n                            }, {\n                                \"X\": 0.5667068958282471,\n                                \"Y\": 0.17682193219661713\n                            }, {\n                                \"X\": 0.5667024850845337,\n                                \"Y\": 0.18819741904735565\n                            }, {\n                                \"X\": 0.5489304661750793,\n                                \"Y\": 0.1881999522447586\n                            }]\n                        },\n                        \"Confidence\": 98.45624542236328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"T PUD\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02848619967699051,\n                                \"Height\": 0.006339642684906721,\n                                \"Left\": 0.5699483156204224,\n                                \"Top\": 0.1909567266702652\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5699507594108582,\n                                \"Y\": 0.19096076488494873\n                            }, {\n                                \"X\": 0.5984345078468323,\n                                \"Y\": 0.1909567266702652\n                            }, {\n                                \"X\": 0.5984320640563965,\n                                \"Y\": 0.19729235768318176\n                            }, {\n                                \"X\": 0.5699483156204224,\n                                \"Y\": 0.1972963660955429\n                            }]\n                        },\n                        \"Confidence\": 97.8113021850586\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017709827050566673,\n                                \"Height\": 0.011184454895555973,\n                                \"Left\": 0.5487866997718811,\n                                \"Top\": 0.1875840425491333\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5487910509109497,\n                                \"Y\": 0.18758656084537506\n                            }, {\n                                \"X\": 0.5664965510368347,\n                                \"Y\": 0.1875840425491333\n                            }, {\n                                \"X\": 0.5664922595024109,\n                                \"Y\": 0.19876600801944733\n                            }, {\n                                \"X\": 0.5487866997718811,\n                                \"Y\": 0.1987684965133667\n                            }]\n                        },\n                        \"Confidence\": 98.44828033447266\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"P Limited Review New\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09753374755382538,\n                                \"Height\": 0.006349643692374229,\n                                \"Left\": 0.43574216961860657,\n                                \"Top\": 0.16962523758411407\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4357447326183319,\n                                \"Y\": 0.1696394830942154\n                            }, {\n                                \"X\": 0.5332759022712708,\n                                \"Y\": 0.16962523758411407\n                            }, {\n                                \"X\": 0.533273458480835,\n                                \"Y\": 0.1759607493877411\n                            }, {\n                                \"X\": 0.43574216961860657,\n                                \"Y\": 0.17597487568855286\n                            }]\n                        },\n                        \"Confidence\": 96.63280487060547\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016725560650229454,\n                                \"Height\": 0.011942639946937561,\n                                \"Left\": 0.415177583694458,\n                                \"Top\": 0.16478611528873444\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4151824414730072,\n                                \"Y\": 0.16478857398033142\n                            }, {\n                                \"X\": 0.4319031536579132,\n                                \"Y\": 0.16478611528873444\n                            }, {\n                                \"X\": 0.431898295879364,\n                                \"Y\": 0.1767263412475586\n                            }, {\n                                \"X\": 0.415177583694458,\n                                \"Y\": 0.176728755235672\n                            }]\n                        },\n                        \"Confidence\": 98.79960632324219\n                    }]\n                }, {\n                    \"Type\": \"SECOND_MORTGAGE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Second Mortgage\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0759645402431488,\n                                \"Height\": 0.007345222402364016,\n                                \"Left\": 0.6713206768035889,\n                                \"Top\": 0.3209889531135559\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6713234186172485,\n                                \"Y\": 0.32099777460098267\n                            }, {\n                                \"X\": 0.7472852468490601,\n                                \"Y\": 0.3209889531135559\n                            }, {\n                                \"X\": 0.7472825646400452,\n                                \"Y\": 0.32832542061805725\n                            }, {\n                                \"X\": 0.6713206768035889,\n                                \"Y\": 0.32833415269851685\n                            }]\n                        },\n                        \"Confidence\": 99.94808197021484\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018700480461120605,\n                                \"Height\": 0.010619886219501495,\n                                \"Left\": 0.6492945551872253,\n                                \"Top\": 0.31754282116889954\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6492985486984253,\n                                \"Y\": 0.3175450265407562\n                            }, {\n                                \"X\": 0.667995035648346,\n                                \"Y\": 0.31754282116889954\n                            }, {\n                                \"X\": 0.6679911017417908,\n                                \"Y\": 0.3281605541706085\n                            }, {\n                                \"X\": 0.6492945551872253,\n                                \"Y\": 0.32816269993782043\n                            }]\n                        },\n                        \"Confidence\": 99.83161926269531\n                    }]\n                }, {\n                    \"Type\": \"FREDDIE_MAC\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Freddie Mac\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.052659329026937485,\n                                \"Height\": 0.006008347030729055,\n                                \"Left\": 0.7554680705070496,\n                                \"Top\": 0.3643345534801483\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7554702162742615,\n                                \"Y\": 0.36434024572372437\n                            }, {\n                                \"X\": 0.8081274032592773,\n                                \"Y\": 0.3643345534801483\n                            }, {\n                                \"X\": 0.8081253170967102,\n                                \"Y\": 0.37033727765083313\n                            }, {\n                                \"X\": 0.7554680705070496,\n                                \"Y\": 0.3703429102897644\n                            }]\n                        },\n                        \"Confidence\": 99.9240951538086\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01861264370381832,\n                                \"Height\": 0.01082545705139637,\n                                \"Left\": 0.7332243919372559,\n                                \"Top\": 0.360273540019989\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.733228325843811,\n                                \"Y\": 0.3602755665779114\n                            }, {\n                                \"X\": 0.7518370151519775,\n                                \"Y\": 0.360273540019989\n                            }, {\n                                \"X\": 0.7518331408500671,\n                                \"Y\": 0.37109699845314026\n                            }, {\n                                \"X\": 0.7332243919372559,\n                                \"Y\": 0.37109899520874023\n                            }]\n                        },\n                        \"Confidence\": 99.9371109008789\n                    }]\n                }, {\n                    \"Type\": \"INVESTMENT_PROPERTY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Investment Property\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08761495351791382,\n                                \"Height\": 0.007348806131631136,\n                                \"Left\": 0.6372816562652588,\n                                \"Top\": 0.16993069648742676\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6372843980789185,\n                                \"Y\": 0.16994349658489227\n                            }, {\n                                \"X\": 0.7248966097831726,\n                                \"Y\": 0.16993069648742676\n                            }, {\n                                \"X\": 0.7248939275741577,\n                                \"Y\": 0.17726683616638184\n                            }, {\n                                \"X\": 0.6372816562652588,\n                                \"Y\": 0.1772795170545578\n                            }]\n                        },\n                        \"Confidence\": 99.96766662597656\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0185395460575819,\n                                \"Height\": 0.011125524528324604,\n                                \"Left\": 0.615715742111206,\n                                \"Top\": 0.16554255783557892\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6157199740409851,\n                                \"Y\": 0.1655452847480774\n                            }, {\n                                \"X\": 0.6342552900314331,\n                                \"Y\": 0.16554255783557892\n                            }, {\n                                \"X\": 0.6342511177062988,\n                                \"Y\": 0.17666541039943695\n                            }, {\n                                \"X\": 0.615715742111206,\n                                \"Y\": 0.17666809260845184\n                            }]\n                        },\n                        \"Confidence\": 99.7587890625\n                    }]\n                }, {\n                    \"Type\": \"CONDOMINIUM\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Condominium\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05868805572390556,\n                                \"Height\": 0.005676714703440666,\n                                \"Left\": 0.20055587589740753,\n                                \"Top\": 0.18066847324371338\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2005583643913269,\n                                \"Y\": 0.1806769222021103\n                            }, {\n                                \"X\": 0.2592439353466034,\n                                \"Y\": 0.18066847324371338\n                            }, {\n                                \"X\": 0.2592414915561676,\n                                \"Y\": 0.18633681535720825\n                            }, {\n                                \"X\": 0.20055587589740753,\n                                \"Y\": 0.1863451898097992\n                            }]\n                        },\n                        \"Confidence\": 99.96454620361328\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01795288175344467,\n                                \"Height\": 0.011284093372523785,\n                                \"Left\": 0.1789734959602356,\n                                \"Top\": 0.1768258661031723\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17897847294807434,\n                                \"Y\": 0.17682845890522003\n                            }, {\n                                \"X\": 0.19692637026309967,\n                                \"Y\": 0.1768258661031723\n                            }, {\n                                \"X\": 0.1969214230775833,\n                                \"Y\": 0.18810740113258362\n                            }, {\n                                \"X\": 0.1789734959602356,\n                                \"Y\": 0.18810996413230896\n                            }]\n                        },\n                        \"Confidence\": 99.86177825927734\n                    }]\n                }, {\n                    \"Type\": \"MANUAL_UNDERWRITING\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Manual Underwriting\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09019608795642853,\n                                \"Height\": 0.007674286141991615,\n                                \"Left\": 0.20034191012382507,\n                                \"Top\": 0.6671766638755798\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2003452628850937,\n                                \"Y\": 0.6671810150146484\n                            }, {\n                                \"X\": 0.2905379831790924,\n                                \"Y\": 0.6671766638755798\n                            }, {\n                                \"X\": 0.29053473472595215,\n                                \"Y\": 0.6748467087745667\n                            }, {\n                                \"X\": 0.20034191012382507,\n                                \"Y\": 0.6748509407043457\n                            }]\n                        },\n                        \"Confidence\": 99.9537353515625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01817905157804489,\n                                \"Height\": 0.011260798200964928,\n                                \"Left\": 0.17879317700862885,\n                                \"Top\": 0.6638126373291016\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1787981539964676,\n                                \"Y\": 0.6638135313987732\n                            }, {\n                                \"X\": 0.19697223603725433,\n                                \"Y\": 0.6638126373291016\n                            }, {\n                                \"X\": 0.19696728885173798,\n                                \"Y\": 0.6750726103782654\n                            }, {\n                                \"X\": 0.17879317700862885,\n                                \"Y\": 0.6750734448432922\n                            }]\n                        },\n                        \"Confidence\": 99.90290069580078\n                    }]\n                }, {\n                    \"Type\": \"BALLOON\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Balloon\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.031073005869984627,\n                                \"Height\": 0.006339202169328928,\n                                \"Left\": 0.2928493320941925,\n                                \"Top\": 0.2993641495704651\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2928520143032074,\n                                \"Y\": 0.29936790466308594\n                            }, {\n                                \"X\": 0.323922336101532,\n                                \"Y\": 0.2993641495704651\n                            }, {\n                                \"X\": 0.3239196538925171,\n                                \"Y\": 0.3056996464729309\n                            }, {\n                                \"X\": 0.2928493320941925,\n                                \"Y\": 0.305703341960907\n                            }]\n                        },\n                        \"Confidence\": 99.95664978027344\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017626149579882622,\n                                \"Height\": 0.01154670026153326,\n                                \"Left\": 0.2715131938457489,\n                                \"Top\": 0.2953502833843231\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27151814103126526,\n                                \"Y\": 0.29535242915153503\n                            }, {\n                                \"X\": 0.2891393303871155,\n                                \"Y\": 0.2953502833843231\n                            }, {\n                                \"X\": 0.2891344428062439,\n                                \"Y\": 0.30689486861228943\n                            }, {\n                                \"X\": 0.2715131938457489,\n                                \"Y\": 0.30689698457717896\n                            }]\n                        },\n                        \"Confidence\": 99.68392944335938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fixed-Rate_Biweekly Payments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13939082622528076,\n                                \"Height\": 0.00768633047118783,\n                                \"Left\": 0.29199036955833435,\n                                \"Top\": 0.2883472144603729\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2919936180114746,\n                                \"Y\": 0.28836435079574585\n                            }, {\n                                \"X\": 0.4313811957836151,\n                                \"Y\": 0.2883472144603729\n                            }, {\n                                \"X\": 0.4313780963420868,\n                                \"Y\": 0.2960166335105896\n                            }, {\n                                \"X\": 0.29199036955833435,\n                                \"Y\": 0.2960335612297058\n                            }]\n                        },\n                        \"Confidence\": 98.73529815673828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017848042771220207,\n                                \"Height\": 0.011596265248954296,\n                                \"Left\": 0.2713727653026581,\n                                \"Top\": 0.28395259380340576\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27137771248817444,\n                                \"Y\": 0.28395479917526245\n                            }, {\n                                \"X\": 0.28922080993652344,\n                                \"Y\": 0.28395259380340576\n                            }, {\n                                \"X\": 0.2892158627510071,\n                                \"Y\": 0.29554668068885803\n                            }, {\n                                \"X\": 0.2713727653026581,\n                                \"Y\": 0.29554885625839233\n                            }]\n                        },\n                        \"Confidence\": 99.9232406616211\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"E PUD\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.027191264554858208,\n                                \"Height\": 0.006006082985550165,\n                                \"Left\": 0.5699566602706909,\n                                \"Top\": 0.16961590945720673\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5699589848518372,\n                                \"Y\": 0.1696198731660843\n                            }, {\n                                \"X\": 0.5971479415893555,\n                                \"Y\": 0.16961590945720673\n                            }, {\n                                \"X\": 0.5971456170082092,\n                                \"Y\": 0.17561805248260498\n                            }, {\n                                \"X\": 0.5699566602706909,\n                                \"Y\": 0.17562198638916016\n                            }]\n                        },\n                        \"Confidence\": 97.62544250488281\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017250003293156624,\n                                \"Height\": 0.011826167814433575,\n                                \"Left\": 0.5489251613616943,\n                                \"Top\": 0.16521181166172028\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.548929750919342,\n                                \"Y\": 0.16521434485912323\n                            }, {\n                                \"X\": 0.5661751627922058,\n                                \"Y\": 0.16521181166172028\n                            }, {\n                                \"X\": 0.5661706328392029,\n                                \"Y\": 0.17703549563884735\n                            }, {\n                                \"X\": 0.5489251613616943,\n                                \"Y\": 0.17703798413276672\n                            }]\n                        },\n                        \"Confidence\": 99.70185852050781\n                    }]\n                }, {\n                    \"Type\": \"SINGLE_WIDE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Single Wide\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05092234909534454,\n                                \"Height\": 0.00767595274373889,\n                                \"Left\": 0.22556862235069275,\n                                \"Top\": 0.21267563104629517\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22557196021080017,\n                                \"Y\": 0.21268264949321747\n                            }, {\n                                \"X\": 0.2764909863471985,\n                                \"Y\": 0.21267563104629517\n                            }, {\n                                \"X\": 0.27648770809173584,\n                                \"Y\": 0.2203446477651596\n                            }, {\n                                \"X\": 0.22556862235069275,\n                                \"Y\": 0.22035159170627594\n                            }]\n                        },\n                        \"Confidence\": 99.91780090332031\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018522869795560837,\n                                \"Height\": 0.011228515766561031,\n                                \"Left\": 0.2033771425485611,\n                                \"Top\": 0.2093077450990677\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20338205993175507,\n                                \"Y\": 0.20931030809879303\n                            }, {\n                                \"X\": 0.22190001606941223,\n                                \"Y\": 0.2093077450990677\n                            }, {\n                                \"X\": 0.22189512848854065,\n                                \"Y\": 0.22053374350070953\n                            }, {\n                                \"X\": 0.2033771425485611,\n                                \"Y\": 0.2205362617969513\n                            }]\n                        },\n                        \"Confidence\": 99.80545043945312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"2- to 4-units\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.053510211408138275,\n                                \"Height\": 0.006676350254565477,\n                                \"Left\": 0.20056040585041046,\n                                \"Top\": 0.1693325936794281\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20056332647800446,\n                                \"Y\": 0.16934041678905487\n                            }, {\n                                \"X\": 0.25407060980796814,\n                                \"Y\": 0.1693325936794281\n                            }, {\n                                \"X\": 0.2540677487850189,\n                                \"Y\": 0.1760011911392212\n                            }, {\n                                \"X\": 0.20056040585041046,\n                                \"Y\": 0.17600895464420319\n                            }]\n                        },\n                        \"Confidence\": 79.43279266357422\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018234195187687874,\n                                \"Height\": 0.011673294007778168,\n                                \"Left\": 0.17883454263210297,\n                                \"Top\": 0.16495651006698608\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17883969843387604,\n                                \"Y\": 0.16495919227600098\n                            }, {\n                                \"X\": 0.19706875085830688,\n                                \"Y\": 0.16495651006698608\n                            }, {\n                                \"X\": 0.1970636248588562,\n                                \"Y\": 0.17662715911865234\n                            }, {\n                                \"X\": 0.17883454263210297,\n                                \"Y\": 0.17662979662418365\n                            }]\n                        },\n                        \"Confidence\": 99.86729431152344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Form\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017267689108848572,\n                                \"Height\": 0.005003039725124836,\n                                \"Left\": 0.7626137137413025,\n                                \"Top\": 0.9012856483459473\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7626155614852905,\n                                \"Y\": 0.901285707950592\n                            }, {\n                                \"X\": 0.7798814177513123,\n                                \"Y\": 0.9012856483459473\n                            }, {\n                                \"X\": 0.779879629611969,\n                                \"Y\": 0.9062886834144592\n                            }, {\n                                \"X\": 0.7626137137413025,\n                                \"Y\": 0.9062886834144592\n                            }]\n                        },\n                        \"Confidence\": 99.61853790283203\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1008 06/09\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03971394523978233,\n                                \"Height\": 0.005336655769497156,\n                                \"Left\": 0.7824694514274597,\n                                \"Top\": 0.9012855291366577\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7824712991714478,\n                                \"Y\": 0.9012856483459473\n                            }, {\n                                \"X\": 0.82218337059021,\n                                \"Y\": 0.9012855291366577\n                            }, {\n                                \"X\": 0.8221815228462219,\n                                \"Y\": 0.9066221117973328\n                            }, {\n                                \"X\": 0.7824694514274597,\n                                \"Y\": 0.9066222310066223\n                            }]\n                        },\n                        \"Confidence\": 86.55672454833984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Q Limited Review Est.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09537595510482788,\n                                \"Height\": 0.006015699822455645,\n                                \"Left\": 0.43573784828186035,\n                                \"Top\": 0.18062934279441833\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43574029207229614,\n                                \"Y\": 0.18064308166503906\n                            }, {\n                                \"X\": 0.5311138033866882,\n                                \"Y\": 0.18062934279441833\n                            }, {\n                                \"X\": 0.531111478805542,\n                                \"Y\": 0.18663142621517181\n                            }, {\n                                \"X\": 0.43573784828186035,\n                                \"Y\": 0.186645045876503\n                            }]\n                        },\n                        \"Confidence\": 84.64588165283203\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017432352527976036,\n                                \"Height\": 0.011882307939231396,\n                                \"Left\": 0.41447481513023376,\n                                \"Top\": 0.1764925718307495\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41447967290878296,\n                                \"Y\": 0.17649509012699127\n                            }, {\n                                \"X\": 0.43190717697143555,\n                                \"Y\": 0.1764925718307495\n                            }, {\n                                \"X\": 0.43190234899520874,\n                                \"Y\": 0.188372403383255\n                            }, {\n                                \"X\": 0.41447481513023376,\n                                \"Y\": 0.18837487697601318\n                            }]\n                        },\n                        \"Confidence\": 99.41287994384766\n                    }]\n                }, {\n                    \"Type\": \"STREAMLINED_REVIEW\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Streamlined Review\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08544646948575974,\n                                \"Height\": 0.006347741931676865,\n                                \"Left\": 0.32613182067871094,\n                                \"Top\": 0.16964301466941833\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.32613447308540344,\n                                \"Y\": 0.16965550184249878\n                            }, {\n                                \"X\": 0.41157829761505127,\n                                \"Y\": 0.16964301466941833\n                            }, {\n                                \"X\": 0.41157570481300354,\n                                \"Y\": 0.1759783774614334\n                            }, {\n                                \"X\": 0.32613182067871094,\n                                \"Y\": 0.1759907603263855\n                            }]\n                        },\n                        \"Confidence\": 99.9807357788086\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016944512724876404,\n                                \"Height\": 0.012394039891660213,\n                                \"Left\": 0.30574488639831543,\n                                \"Top\": 0.16457583010196686\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3057501018047333,\n                                \"Y\": 0.16457833349704742\n                            }, {\n                                \"X\": 0.32268938422203064,\n                                \"Y\": 0.16457583010196686\n                            }, {\n                                \"X\": 0.3226841688156128,\n                                \"Y\": 0.17696742713451385\n                            }, {\n                                \"X\": 0.30574488639831543,\n                                \"Y\": 0.17696987092494965\n                            }]\n                        },\n                        \"Confidence\": 99.70993041992188\n                    }]\n                }, {\n                    \"Type\": \"DU\",\n                    \"KeyDetection\": {\n                        \"Text\": \"DU\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.013380303047597408,\n                                \"Height\": 0.005669711157679558,\n                                \"Left\": 0.22536247968673706,\n                                \"Top\": 0.6891886591911316\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22536495327949524,\n                                \"Y\": 0.6891892552375793\n                            }, {\n                                \"X\": 0.23874278366565704,\n                                \"Y\": 0.6891886591911316\n                            }, {\n                                \"X\": 0.23874033987522125,\n                                \"Y\": 0.6948577761650085\n                            }, {\n                                \"X\": 0.22536247968673706,\n                                \"Y\": 0.6948583722114563\n                            }]\n                        },\n                        \"Confidence\": 99.94416809082031\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01907609961926937,\n                                \"Height\": 0.011367945931851864,\n                                \"Left\": 0.20322947204113007,\n                                \"Top\": 0.685249924659729\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2032344490289688,\n                                \"Y\": 0.6852508187294006\n                            }, {\n                                \"X\": 0.222305566072464,\n                                \"Y\": 0.685249924659729\n                            }, {\n                                \"X\": 0.22230061888694763,\n                                \"Y\": 0.696617066860199\n                            }, {\n                                \"X\": 0.20322947204113007,\n                                \"Y\": 0.6966179013252258\n                            }]\n                        },\n                        \"Confidence\": 99.87217712402344\n                    }]\n                }, {\n                    \"Type\": \"NOTE_RATE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Note Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.043587714433670044,\n                                \"Height\": 0.006005162373185158,\n                                \"Left\": 0.19994410872459412,\n                                \"Top\": 0.5918141007423401\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19994674623012543,\n                                \"Y\": 0.5918168425559998\n                            }, {\n                                \"X\": 0.24353183805942535,\n                                \"Y\": 0.5918141007423401\n                            }, {\n                                \"X\": 0.24352924525737762,\n                                \"Y\": 0.597816526889801\n                            }, {\n                                \"X\": 0.19994410872459412,\n                                \"Y\": 0.5978192687034607\n                            }]\n                        },\n                        \"Confidence\": 99.51499938964844\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"4. 25%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03668617829680443,\n                                \"Height\": 0.007672331295907497,\n                                \"Left\": 0.37730973958969116,\n                                \"Top\": 0.5908028483390808\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.37731289863586426,\n                                \"Y\": 0.590805172920227\n                            }, {\n                                \"X\": 0.4139959216117859,\n                                \"Y\": 0.5908028483390808\n                            }, {\n                                \"X\": 0.4139927923679352,\n                                \"Y\": 0.5984728932380676\n                            }, {\n                                \"X\": 0.37730973958969116,\n                                \"Y\": 0.5984751582145691\n                            }]\n                        },\n                        \"Confidence\": 63.32979202270508\n                    }]\n                }, {\n                    \"Type\": \"INITIAL_NOTE_RATE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Initial Note Rate\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06904586404561996,\n                                \"Height\": 0.0060093034990131855,\n                                \"Left\": 0.17501094937324524,\n                                \"Top\": 0.37539923191070557\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17501360177993774,\n                                \"Y\": 0.37540653347969055\n                            }, {\n                                \"X\": 0.2440568208694458,\n                                \"Y\": 0.37539923191070557\n                            }, {\n                                \"X\": 0.24405422806739807,\n                                \"Y\": 0.38140133023262024\n                            }, {\n                                \"X\": 0.17501094937324524,\n                                \"Y\": 0.38140854239463806\n                            }]\n                        },\n                        \"Confidence\": 99.94480895996094\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"4.25%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03754797205328941,\n                                \"Height\": 0.007673483807593584,\n                                \"Left\": 0.36402109265327454,\n                                \"Top\": 0.3743821978569031\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.36402425169944763,\n                                \"Y\": 0.37438616156578064\n                            }, {\n                                \"X\": 0.40156903862953186,\n                                \"Y\": 0.3743821978569031\n                            }, {\n                                \"X\": 0.40156590938568115,\n                                \"Y\": 0.3820517659187317\n                            }, {\n                                \"X\": 0.36402109265327454,\n                                \"Y\": 0.3820556700229645\n                            }]\n                        },\n                        \"Confidence\": 97.60250091552734\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Primary Housing Expense/Income\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1437048763036728,\n                                \"Height\": 0.007346758618950844,\n                                \"Left\": 0.17537030577659607,\n                                \"Top\": 0.5374534726142883\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17537355422973633,\n                                \"Y\": 0.5374640822410583\n                            }, {\n                                \"X\": 0.31907519698143005,\n                                \"Y\": 0.5374534726142883\n                            }, {\n                                \"X\": 0.31907209753990173,\n                                \"Y\": 0.5447897911071777\n                            }, {\n                                \"X\": 0.17537030577659607,\n                                \"Y\": 0.5448002219200134\n                            }]\n                        },\n                        \"Confidence\": 99.23175811767578\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"33. 84%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04359069839119911,\n                                \"Height\": 0.007339630741626024,\n                                \"Left\": 0.3708587884902954,\n                                \"Top\": 0.5367794632911682\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.37086182832717896,\n                                \"Y\": 0.5367826819419861\n                            }, {\n                                \"X\": 0.4144494831562042,\n                                \"Y\": 0.5367794632911682\n                            }, {\n                                \"X\": 0.41444650292396545,\n                                \"Y\": 0.5441159009933472\n                            }, {\n                                \"X\": 0.3708587884902954,\n                                \"Y\": 0.5441190600395203\n                            }]\n                        },\n                        \"Confidence\": 90.56941986083984\n                    }]\n                }, {\n                    \"Type\": \"LTV\",\n                    \"KeyDetection\": {\n                        \"Text\": \"LTV\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017696764320135117,\n                                \"Height\": 0.006003888323903084,\n                                \"Left\": 0.431277871131897,\n                                \"Top\": 0.5374438166618347\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4312802851200104,\n                                \"Y\": 0.5374451279640198\n                            }, {\n                                \"X\": 0.4489746391773224,\n                                \"Y\": 0.5374438166618347\n                            }, {\n                                \"X\": 0.448972225189209,\n                                \"Y\": 0.54344642162323\n                            }, {\n                                \"X\": 0.431277871131897,\n                                \"Y\": 0.543447732925415\n                            }]\n                        },\n                        \"Confidence\": 99.905029296875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"84. 00%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04402456805109978,\n                                \"Height\": 0.007339867297559977,\n                                \"Left\": 0.5132768154144287,\n                                \"Top\": 0.5367688536643982\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5132797360420227,\n                                \"Y\": 0.5367721319198608\n                            }, {\n                                \"X\": 0.55730140209198,\n                                \"Y\": 0.5367688536643982\n                            }, {\n                                \"X\": 0.5572985410690308,\n                                \"Y\": 0.5441055297851562\n                            }, {\n                                \"X\": 0.5132768154144287,\n                                \"Y\": 0.5441086888313293\n                            }]\n                        },\n                        \"Confidence\": 86.66795349121094\n                    }]\n                }, {\n                    \"Type\": \"DEBT-TO-HOUSING_GAP_RATIO_(FREDDIE)\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Debt-to-Housing Gap Ratio (Freddie)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15578903257846832,\n                                \"Height\": 0.008013971149921417,\n                                \"Left\": 0.17536059021949768,\n                                \"Top\": 0.5587946772575378\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17536412179470062,\n                                \"Y\": 0.5588055849075317\n                            }, {\n                                \"X\": 0.3311496376991272,\n                                \"Y\": 0.5587946772575378\n                            }, {\n                                \"X\": 0.3311462700366974,\n                                \"Y\": 0.5667980313301086\n                            }, {\n                                \"X\": 0.17536059021949768,\n                                \"Y\": 0.5668086409568787\n                            }]\n                        },\n                        \"Confidence\": 99.95036315917969\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"15. 62%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04315940663218498,\n                                \"Height\": 0.007672938518226147,\n                                \"Left\": 0.37128138542175293,\n                                \"Top\": 0.558121919631958\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.371284544467926,\n                                \"Y\": 0.5581249594688416\n                            }, {\n                                \"X\": 0.414440780878067,\n                                \"Y\": 0.558121919631958\n                            }, {\n                                \"X\": 0.4144376814365387,\n                                \"Y\": 0.5657919049263\n                            }, {\n                                \"X\": 0.37128138542175293,\n                                \"Y\": 0.565794825553894\n                            }]\n                        },\n                        \"Confidence\": 90.89677429199219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"HCLTV/HTLTV\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06430701166391373,\n                                \"Height\": 0.006007103715091944,\n                                \"Left\": 0.4312690794467926,\n                                \"Top\": 0.5591166615486145\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4312715232372284,\n                                \"Y\": 0.5591211915016174\n                            }, {\n                                \"X\": 0.49557608366012573,\n                                \"Y\": 0.5591166615486145\n                            }, {\n                                \"X\": 0.4955737292766571,\n                                \"Y\": 0.5651193857192993\n                            }, {\n                                \"X\": 0.4312690794467926,\n                                \"Y\": 0.5651237964630127\n                            }]\n                        },\n                        \"Confidence\": 99.66587829589844\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"84. 00%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04316166043281555,\n                                \"Height\": 0.007673152722418308,\n                                \"Left\": 0.5136998891830444,\n                                \"Top\": 0.5581119656562805\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.513702929019928,\n                                \"Y\": 0.5581149458885193\n                            }, {\n                                \"X\": 0.5568615198135376,\n                                \"Y\": 0.5581119656562805\n                            }, {\n                                \"X\": 0.5568585991859436,\n                                \"Y\": 0.5657821297645569\n                            }, {\n                                \"X\": 0.5136998891830444,\n                                \"Y\": 0.5657851099967957\n                            }]\n                        },\n                        \"Confidence\": 75.56314849853516\n                    }]\n                }, {\n                    \"Type\": \"TOTAL_OBLIGATIONS_OR_INCOME\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Obligations/Income\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1078868880867958,\n                                \"Height\": 0.007677363697439432,\n                                \"Left\": 0.17493392527103424,\n                                \"Top\": 0.5481270551681519\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17493730783462524,\n                                \"Y\": 0.5481348633766174\n                            }, {\n                                \"X\": 0.28282082080841064,\n                                \"Y\": 0.5481270551681519\n                            }, {\n                                \"X\": 0.282817542552948,\n                                \"Y\": 0.5557968616485596\n                            }, {\n                                \"X\": 0.17493392527103424,\n                                \"Y\": 0.555804431438446\n                            }]\n                        },\n                        \"Confidence\": 99.92703247070312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"49. 46%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04402245953679085,\n                                \"Height\": 0.007673066575080156,\n                                \"Left\": 0.37042269110679626,\n                                \"Top\": 0.5474506616592407\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.37042585015296936,\n                                \"Y\": 0.5474538207054138\n                            }, {\n                                \"X\": 0.4144451320171356,\n                                \"Y\": 0.5474506616592407\n                            }, {\n                                \"X\": 0.4144420027732849,\n                                \"Y\": 0.5551206469535828\n                            }, {\n                                \"X\": 0.37042269110679626,\n                                \"Y\": 0.5551237463951111\n                            }]\n                        },\n                        \"Confidence\": 92.31657409667969\n                    }]\n                }, {\n                    \"Type\": \"CLTV_OR_TLTV\",\n                    \"KeyDetection\": {\n                        \"Text\": \"CLTV/TLTV\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0504964217543602,\n                                \"Height\": 0.006006230134516954,\n                                \"Left\": 0.431705117225647,\n                                \"Top\": 0.5481127500534058\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4317075312137604,\n                                \"Y\": 0.5481163859367371\n                            }, {\n                                \"X\": 0.48220154643058777,\n                                \"Y\": 0.5481127500534058\n                            }, {\n                                \"X\": 0.48219913244247437,\n                                \"Y\": 0.5541154146194458\n                            }, {\n                                \"X\": 0.431705117225647,\n                                \"Y\": 0.5541189908981323\n                            }]\n                        },\n                        \"Confidence\": 99.82917785644531\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"84. 00%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.044024765491485596,\n                                \"Height\": 0.007673281244933605,\n                                \"Left\": 0.5132725238800049,\n                                \"Top\": 0.5474403500556946\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5132755041122437,\n                                \"Y\": 0.5474435091018677\n                            }, {\n                                \"X\": 0.5572972893714905,\n                                \"Y\": 0.5474403500556946\n                            }, {\n                                \"X\": 0.5572943091392517,\n                                \"Y\": 0.555110514163971\n                            }, {\n                                \"X\": 0.5132725238800049,\n                                \"Y\": 0.5551136136054993\n                            }]\n                        },\n                        \"Confidence\": 93.57592010498047\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"LP Doc Class (Freddie)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09710152447223663,\n                                \"Height\": 0.0073402333073318005,\n                                \"Left\": 0.20031839609146118,\n                                \"Top\": 0.7212004661560059\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20032159984111786,\n                                \"Y\": 0.7212041616439819\n                            }, {\n                                \"X\": 0.2974199056625366,\n                                \"Y\": 0.7212004661560059\n                            }, {\n                                \"X\": 0.2974168062210083,\n                                \"Y\": 0.7285371422767639\n                            }, {\n                                \"X\": 0.20031839609146118,\n                                \"Y\": 0.7285407185554504\n                            }]\n                        },\n                        \"Confidence\": 99.89716339111328\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Accept\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.040570955723524094,\n                                \"Height\": 0.008672244846820831,\n                                \"Left\": 0.34316182136535645,\n                                \"Top\": 0.7208636999130249\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34316542744636536,\n                                \"Y\": 0.7208652496337891\n                            }, {\n                                \"X\": 0.38373276591300964,\n                                \"Y\": 0.7208636999130249\n                            }, {\n                                \"X\": 0.3837291896343231,\n                                \"Y\": 0.7295344471931458\n                            }, {\n                                \"X\": 0.34316182136535645,\n                                \"Y\": 0.7295359373092651\n                            }]\n                        },\n                        \"Confidence\": 99.93921661376953\n                    }]\n                }, {\n                    \"Type\": \"FORM_NUMBER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Form Number:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06171824038028717,\n                                \"Height\": 0.006339733488857746,\n                                \"Left\": 0.43124261498451233,\n                                \"Top\": 0.6241465210914612\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43124517798423767,\n                                \"Y\": 0.6241500377655029\n                            }, {\n                                \"X\": 0.4929608404636383,\n                                \"Y\": 0.6241465210914612\n                            }, {\n                                \"X\": 0.49295833706855774,\n                                \"Y\": 0.6304827928543091\n                            }, {\n                                \"X\": 0.43124261498451233,\n                                \"Y\": 0.630486249923706\n                            }]\n                        },\n                        \"Confidence\": 99.9084243774414\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1004/70\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.047909628599882126,\n                                \"Height\": 0.008339975960552692,\n                                \"Left\": 0.5002948641777039,\n                                \"Top\": 0.6231428980827332\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5002981424331665,\n                                \"Y\": 0.6231456398963928\n                            }, {\n                                \"X\": 0.5482044816017151,\n                                \"Y\": 0.6231428980827332\n                            }, {\n                                \"X\": 0.5482012629508972,\n                                \"Y\": 0.6314802169799805\n                            }, {\n                                \"X\": 0.5002948641777039,\n                                \"Y\": 0.6314828991889954\n                            }]\n                        },\n                        \"Confidence\": 95.49468231201172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"ext.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016404375433921814,\n                                \"Height\": 0.0056701768189668655,\n                                \"Left\": 0.7423478364944458,\n                                \"Top\": 0.8412504196166992\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7423499226570129,\n                                \"Y\": 0.8412506580352783\n                            }, {\n                                \"X\": 0.7587522268295288,\n                                \"Y\": 0.8412504196166992\n                            }, {\n                                \"X\": 0.7587502002716064,\n                                \"Y\": 0.846920371055603\n                            }, {\n                                \"X\": 0.7423478364944458,\n                                \"Y\": 0.8469206094741821\n                            }]\n                        },\n                        \"Confidence\": 99.89091491699219\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"SELLER_NUMBER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Seller No.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04186272621154785,\n                                \"Height\": 0.006003338843584061,\n                                \"Left\": 0.1752321869134903,\n                                \"Top\": 0.8515965342521667\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1752348393201828,\n                                \"Y\": 0.8515970706939697\n                            }, {\n                                \"X\": 0.21709491312503815,\n                                \"Y\": 0.8515965342521667\n                            }, {\n                                \"X\": 0.21709230542182922,\n                                \"Y\": 0.8575994372367859\n                            }, {\n                                \"X\": 0.1752321869134903,\n                                \"Y\": 0.8575999140739441\n                            }]\n                        },\n                        \"Confidence\": 99.63240814208984\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"SOURCE_OF_FUNDS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Source of Funds\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07078588008880615,\n                                \"Height\": 0.00600628275424242,\n                                \"Left\": 0.5788243412971497,\n                                \"Top\": 0.6781647801399231\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5788266062736511,\n                                \"Y\": 0.6781681180000305\n                            }, {\n                                \"X\": 0.6496102213859558,\n                                \"Y\": 0.6781647801399231\n                            }, {\n                                \"X\": 0.6496079564094543,\n                                \"Y\": 0.6841678619384766\n                            }, {\n                                \"X\": 0.5788243412971497,\n                                \"Y\": 0.6841710805892944\n                            }]\n                        },\n                        \"Confidence\": 99.93209075927734\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"See Attached\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08373748511075974,\n                                \"Height\": 0.0076745194382965565,\n                                \"Left\": 0.6591032147407532,\n                                \"Top\": 0.6771599650382996\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6591060757637024,\n                                \"Y\": 0.67716383934021\n                            }, {\n                                \"X\": 0.7428407073020935,\n                                \"Y\": 0.6771599650382996\n                            }, {\n                                \"X\": 0.7428379654884338,\n                                \"Y\": 0.6848306655883789\n                            }, {\n                                \"X\": 0.6591032147407532,\n                                \"Y\": 0.6848344802856445\n                            }]\n                        },\n                        \"Confidence\": 99.54257202148438\n                    }]\n                }, {\n                    \"Type\": \"TERMS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Terms\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02676011435687542,\n                                \"Height\": 0.006005249917507172,\n                                \"Left\": 0.5323300957679749,\n                                \"Top\": 0.3753659129142761\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5323324203491211,\n                                \"Y\": 0.37536874413490295\n                            }, {\n                                \"X\": 0.5590901970863342,\n                                \"Y\": 0.3753659129142761\n                            }, {\n                                \"X\": 0.559087872505188,\n                                \"Y\": 0.38136836886405945\n                            }, {\n                                \"X\": 0.5323300957679749,\n                                \"Y\": 0.3813711702823639\n                            }]\n                        },\n                        \"Confidence\": 99.97109985351562\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ALL_OTHER_MONTHLY_PAYMENTS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"All Other Monthly Payments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12214753776788712,\n                                \"Height\": 0.007344321813434362,\n                                \"Left\": 0.5784212946891785,\n                                \"Top\": 0.6024571061134338\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784240961074829,\n                                \"Y\": 0.6024646162986755\n                            }, {\n                                \"X\": 0.7005688548088074,\n                                \"Y\": 0.6024571061134338\n                            }, {\n                                \"X\": 0.7005661129951477,\n                                \"Y\": 0.6097941398620605\n                            }, {\n                                \"X\": 0.5784212946891785,\n                                \"Y\": 0.6098014116287231\n                            }]\n                        },\n                        \"Confidence\": 99.94558715820312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 896.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10402539372444153,\n                                \"Height\": 0.007676933892071247,\n                                \"Left\": 0.7195576429367065,\n                                \"Top\": 0.6014490127563477\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.719560444355011,\n                                \"Y\": 0.6014554500579834\n                            }, {\n                                \"X\": 0.8235830068588257,\n                                \"Y\": 0.6014490127563477\n                            }, {\n                                \"X\": 0.8235803246498108,\n                                \"Y\": 0.609119713306427\n                            }, {\n                                \"X\": 0.7195576429367065,\n                                \"Y\": 0.6091259717941284\n                            }]\n                        },\n                        \"Confidence\": 98.83158111572266\n                    }]\n                }, {\n                    \"Type\": \"HAZARD_INSURANCE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Hazard Insurance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07466843724250793,\n                                \"Height\": 0.006008835509419441,\n                                \"Left\": 0.5784633159637451,\n                                \"Top\": 0.49440866708755493\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784655809402466,\n                                \"Y\": 0.4944148361682892\n                            }, {\n                                \"X\": 0.6531317234039307,\n                                \"Y\": 0.49440866708755493\n                            }, {\n                                \"X\": 0.653129518032074,\n                                \"Y\": 0.5004114508628845\n                            }, {\n                                \"X\": 0.5784633159637451,\n                                \"Y\": 0.5004175305366516\n                            }]\n                        },\n                        \"Confidence\": 99.96310424804688\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 74.50\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09970760345458984,\n                                \"Height\": 0.008012039586901665,\n                                \"Left\": 0.7195969223976135,\n                                \"Top\": 0.49306097626686096\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195998430252075,\n                                \"Y\": 0.49306923151016235\n                            }, {\n                                \"X\": 0.8193045258522034,\n                                \"Y\": 0.49306097626686096\n                            }, {\n                                \"X\": 0.8193017244338989,\n                                \"Y\": 0.5010648965835571\n                            }, {\n                                \"X\": 0.7195969223976135,\n                                \"Y\": 0.5010730028152466\n                            }]\n                        },\n                        \"Confidence\": 97.60063934326172\n                    }]\n                }, {\n                    \"Type\": \"MORTGAGE_INSURANCE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Mortgage Insurance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08589103817939758,\n                                \"Height\": 0.007676861248910427,\n                                \"Left\": 0.5788860321044922,\n                                \"Top\": 0.5157509446144104\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.578889012336731,\n                                \"Y\": 0.51575767993927\n                            }, {\n                                \"X\": 0.6647771000862122,\n                                \"Y\": 0.5157509446144104\n                            }, {\n                                \"X\": 0.6647742390632629,\n                                \"Y\": 0.5234212279319763\n                            }, {\n                                \"X\": 0.5788860321044922,\n                                \"Y\": 0.5234278440475464\n                            }]\n                        },\n                        \"Confidence\": 99.98160552978516\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 54. 94\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10359259694814682,\n                                \"Height\": 0.008011970669031143,\n                                \"Left\": 0.7195890545845032,\n                                \"Top\": 0.5147380828857422\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195919752120972,\n                                \"Y\": 0.5147461891174316\n                            }, {\n                                \"X\": 0.8231816291809082,\n                                \"Y\": 0.5147380828857422\n                            }, {\n                                \"X\": 0.8231788873672485,\n                                \"Y\": 0.5227420926094055\n                            }, {\n                                \"X\": 0.7195890545845032,\n                                \"Y\": 0.5227500200271606\n                            }]\n                        },\n                        \"Confidence\": 82.69071197509766\n                    }]\n                }, {\n                    \"Type\": \"TAXES\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02589799277484417,\n                                \"Height\": 0.006338260602205992,\n                                \"Left\": 0.5784590840339661,\n                                \"Top\": 0.5050841569900513\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784615278244019,\n                                \"Y\": 0.5050862431526184\n                            }, {\n                                \"X\": 0.6043570637702942,\n                                \"Y\": 0.5050841569900513\n                            }, {\n                                \"X\": 0.6043546795845032,\n                                \"Y\": 0.5114203691482544\n                            }, {\n                                \"X\": 0.5784590840339661,\n                                \"Y\": 0.5114224553108215\n                            }]\n                        },\n                        \"Confidence\": 99.98902893066406\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 104. 86\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10359244048595428,\n                                \"Height\": 0.008012162521481514,\n                                \"Left\": 0.7195929288864136,\n                                \"Top\": 0.5040661096572876\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195958495140076,\n                                \"Y\": 0.5040744543075562\n                            }, {\n                                \"X\": 0.823185384273529,\n                                \"Y\": 0.5040661096572876\n                            }, {\n                                \"X\": 0.8231825828552246,\n                                \"Y\": 0.5120700597763062\n                            }, {\n                                \"X\": 0.7195929288864136,\n                                \"Y\": 0.5120782852172852\n                            }]\n                        },\n                        \"Confidence\": 94.0849609375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(specify)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.036252461373806,\n                                \"Height\": 0.007673542480915785,\n                                \"Left\": 0.320026159286499,\n                                \"Top\": 0.3210344612598419\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3200293779373169,\n                                \"Y\": 0.32103869318962097\n                            }, {\n                                \"X\": 0.3562786281108856,\n                                \"Y\": 0.3210344612598419\n                            }, {\n                                \"X\": 0.35627543926239014,\n                                \"Y\": 0.3287038505077362\n                            }, {\n                                \"X\": 0.320026159286499,\n                                \"Y\": 0.3287080228328705\n                            }]\n                        },\n                        \"Confidence\": 99.95787811279297\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"VERIFIED_ASSETS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Verified Assets\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06603805720806122,\n                                \"Height\": 0.006339802406728268,\n                                \"Left\": 0.5784009099006653,\n                                \"Top\": 0.6564874053001404\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784033536911011,\n                                \"Y\": 0.6564907431602478\n                            }, {\n                                \"X\": 0.6444389820098877,\n                                \"Y\": 0.6564874053001404\n                            }, {\n                                \"X\": 0.6444365978240967,\n                                \"Y\": 0.6628239154815674\n                            }, {\n                                \"X\": 0.5784009099006653,\n                                \"Y\": 0.66282719373703\n                            }]\n                        },\n                        \"Confidence\": 99.94957733154297\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 4,374.08\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10402632504701614,\n                                \"Height\": 0.008009452372789383,\n                                \"Left\": 0.7195377349853516,\n                                \"Top\": 0.6558112502098083\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195406556129456,\n                                \"Y\": 0.6558165550231934\n                            }, {\n                                \"X\": 0.8235640525817871,\n                                \"Y\": 0.6558112502098083\n                            }, {\n                                \"X\": 0.8235612511634827,\n                                \"Y\": 0.6638156175613403\n                            }, {\n                                \"X\": 0.7195377349853516,\n                                \"Y\": 0.663820743560791\n                            }]\n                        },\n                        \"Confidence\": 99.53863525390625\n                    }]\n                }, {\n                    \"Type\": \"REQUIRED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Required\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03798369690775871,\n                                \"Height\": 0.007005433086305857,\n                                \"Left\": 0.5784047842025757,\n                                \"Top\": 0.6458168029785156\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784074664115906,\n                                \"Y\": 0.645818829536438\n                            }, {\n                                \"X\": 0.6163884401321411,\n                                \"Y\": 0.6458168029785156\n                            }, {\n                                \"X\": 0.616385817527771,\n                                \"Y\": 0.6528202891349792\n                            }, {\n                                \"X\": 0.5784047842025757,\n                                \"Y\": 0.6528222560882568\n                            }]\n                        },\n                        \"Confidence\": 99.98013305664062\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 1,246.25\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10359463840723038,\n                                \"Height\": 0.008343135006725788,\n                                \"Left\": 0.719541609287262,\n                                \"Top\": 0.644805371761322\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195446491241455,\n                                \"Y\": 0.6448108553886414\n                            }, {\n                                \"X\": 0.8231362700462341,\n                                \"Y\": 0.644805371761322\n                            }, {\n                                \"X\": 0.8231333494186401,\n                                \"Y\": 0.6531431674957275\n                            }, {\n                                \"X\": 0.719541609287262,\n                                \"Y\": 0.6531485319137573\n                            }]\n                        },\n                        \"Confidence\": 99.05348205566406\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total Primary Housing Expense\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13466376066207886,\n                                \"Height\": 0.007679630536586046,\n                                \"Left\": 0.5784378051757812,\n                                \"Top\": 0.5591015219688416\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.57844078540802,\n                                \"Y\": 0.5591108798980713\n                            }, {\n                                \"X\": 0.7131015658378601,\n                                \"Y\": 0.5591015219688416\n                            }, {\n                                \"X\": 0.7130987644195557,\n                                \"Y\": 0.566771924495697\n                            }, {\n                                \"X\": 0.5784378051757812,\n                                \"Y\": 0.5667811036109924\n                            }]\n                        },\n                        \"Confidence\": 99.97905731201172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 1,941.33\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1040249913930893,\n                                \"Height\": 0.008344718255102634,\n                                \"Left\": 0.7195731401443481,\n                                \"Top\": 0.558093249797821\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195761799812317,\n                                \"Y\": 0.5581005811691284\n                            }, {\n                                \"X\": 0.8235981464385986,\n                                \"Y\": 0.558093249797821\n                            }, {\n                                \"X\": 0.8235952258110046,\n                                \"Y\": 0.5664308667182922\n                            }, {\n                                \"X\": 0.7195731401443481,\n                                \"Y\": 0.5664379596710205\n                            }]\n                        },\n                        \"Confidence\": 99.20003509521484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"First Mortgage P&I\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08071114867925644,\n                                \"Height\": 0.007343561388552189,\n                                \"Left\": 0.5789027214050293,\n                                \"Top\": 0.4727315306663513\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5789055228233337,\n                                \"Y\": 0.4727385342121124\n                            }, {\n                                \"X\": 0.659613847732544,\n                                \"Y\": 0.4727315306663513\n                            }, {\n                                \"X\": 0.6596111059188843,\n                                \"Y\": 0.48006823658943176\n                            }, {\n                                \"X\": 0.5789027214050293,\n                                \"Y\": 0.4800751209259033\n                            }]\n                        },\n                        \"Confidence\": 99.94467163085938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 1,707.03\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10186567902565002,\n                                \"Height\": 0.008679579943418503,\n                                \"Left\": 0.7196046113967896,\n                                \"Top\": 0.47138354182243347\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7196077704429626,\n                                \"Y\": 0.4713923931121826\n                            }, {\n                                \"X\": 0.8214702606201172,\n                                \"Y\": 0.47138354182243347\n                            }, {\n                                \"X\": 0.8214672207832336,\n                                \"Y\": 0.48005440831184387\n                            }, {\n                                \"X\": 0.7196046113967896,\n                                \"Y\": 0.4800631105899811\n                            }]\n                        },\n                        \"Confidence\": 97.81497192382812\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Present Housing Payment:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11437567323446274,\n                                \"Height\": 0.007013659458607435,\n                                \"Left\": 0.5784836411476135,\n                                \"Top\": 0.4403805434703827\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784863829612732,\n                                \"Y\": 0.4403911828994751\n                            }, {\n                                \"X\": 0.6928593516349792,\n                                \"Y\": 0.4403805434703827\n                            }, {\n                                \"X\": 0.6928567886352539,\n                                \"Y\": 0.44738373160362244\n                            }, {\n                                \"X\": 0.5784836411476135,\n                                \"Y\": 0.4473942220211029\n                            }]\n                        },\n                        \"Confidence\": 99.9525146484375\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 1,915.50\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10359171777963638,\n                                \"Height\": 0.008680312894284725,\n                                \"Left\": 0.7196164727210999,\n                                \"Top\": 0.43870097398757935\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.719619631767273,\n                                \"Y\": 0.43871062994003296\n                            }, {\n                                \"X\": 0.823208212852478,\n                                \"Y\": 0.43870097398757935\n                            }, {\n                                \"X\": 0.8232051730155945,\n                                \"Y\": 0.44737178087234497\n                            }, {\n                                \"X\": 0.7196164727210999,\n                                \"Y\": 0.44738128781318665\n                            }]\n                        },\n                        \"Confidence\": 97.32389831542969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Total All Monthly Payments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11998976767063141,\n                                \"Height\": 0.0076774549670517445,\n                                \"Left\": 0.5784170627593994,\n                                \"Top\": 0.6131292581558228\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5784199833869934,\n                                \"Y\": 0.613136351108551\n                            }, {\n                                \"X\": 0.6984068155288696,\n                                \"Y\": 0.6131292581558228\n                            }, {\n                                \"X\": 0.6984040141105652,\n                                \"Y\": 0.6207997798919678\n                            }, {\n                                \"X\": 0.5784170627593994,\n                                \"Y\": 0.6208066940307617\n                            }]\n                        },\n                        \"Confidence\": 99.92269897460938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 2,837.33\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10359428077936172,\n                                \"Height\": 0.008677222765982151,\n                                \"Left\": 0.7195533514022827,\n                                \"Top\": 0.6121213436126709\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7195565104484558,\n                                \"Y\": 0.6121274828910828\n                            }, {\n                                \"X\": 0.8231476545333862,\n                                \"Y\": 0.6121213436126709\n                            }, {\n                                \"X\": 0.8231446146965027,\n                                \"Y\": 0.62079256772995\n                            }, {\n                                \"X\": 0.7195533514022827,\n                                \"Y\": 0.6207985877990723\n                            }]\n                        },\n                        \"Confidence\": 97.82598876953125\n                    }]\n                }, {\n                    \"Type\": \"INVESTOR_LOAN_NUMBER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Investor Loan No.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07682249695062637,\n                                \"Height\": 0.00600393395870924,\n                                \"Left\": 0.30944591760635376,\n                                \"Top\": 0.8515944480895996\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3094484508037567,\n                                \"Y\": 0.851595401763916\n                            }, {\n                                \"X\": 0.38626840710639954,\n                                \"Y\": 0.8515944480895996\n                            }, {\n                                \"X\": 0.38626593351364136,\n                                \"Y\": 0.8575974702835083\n                            }, {\n                                \"X\": 0.30944591760635376,\n                                \"Y\": 0.8575983643531799\n                            }]\n                        },\n                        \"Confidence\": 99.55802917480469\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(type)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.024600528180599213,\n                                \"Height\": 0.007005313411355019,\n                                \"Left\": 0.31744158267974854,\n                                \"Top\": 0.3106991946697235\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3174445331096649,\n                                \"Y\": 0.3107021152973175\n                            }, {\n                                \"X\": 0.34204211831092834,\n                                \"Y\": 0.3106991946697235\n                            }, {\n                                \"X\": 0.34203919768333435,\n                                \"Y\": 0.31770163774490356\n                            }, {\n                                \"X\": 0.31744158267974854,\n                                \"Y\": 0.3177044987678528\n                            }]\n                        },\n                        \"Confidence\": 99.6558837890625\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"INITIAL_P&I_PAYMENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Initial P&I Payment\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08199199289083481,\n                                \"Height\": 0.0070111616514623165,\n                                \"Left\": 0.17501536011695862,\n                                \"Top\": 0.36439403891563416\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17501845955848694,\n                                \"Y\": 0.3644028902053833\n                            }, {\n                                \"X\": 0.257007360458374,\n                                \"Y\": 0.36439403891563416\n                            }, {\n                                \"X\": 0.25700435042381287,\n                                \"Y\": 0.3713964819908142\n                            }, {\n                                \"X\": 0.17501536011695862,\n                                \"Y\": 0.3714052140712738\n                            }]\n                        },\n                        \"Confidence\": 99.9379653930664\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 707.03\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12169811129570007,\n                                \"Height\": 0.008349410258233547,\n                                \"Left\": 0.27642303705215454,\n                                \"Top\": 0.3633784353733063\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2764265835285187,\n                                \"Y\": 0.36339160799980164\n                            }, {\n                                \"X\": 0.3981211483478546,\n                                \"Y\": 0.3633784353733063\n                            }, {\n                                \"X\": 0.39811772108078003,\n                                \"Y\": 0.37171489000320435\n                            }, {\n                                \"X\": 0.27642303705215454,\n                                \"Y\": 0.371727854013443\n                            }]\n                        },\n                        \"Confidence\": 80.79188537597656\n                    }]\n                }, {\n                    \"Type\": \"APPRAISED_VALUE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Appraised Value\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07121403515338898,\n                                \"Height\": 0.007012406829744577,\n                                \"Left\": 0.611802339553833,\n                                \"Top\": 0.2129531353712082\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6118050217628479,\n                                \"Y\": 0.21296292543411255\n                            }, {\n                                \"X\": 0.6830163598060608,\n                                \"Y\": 0.2129531353712082\n                            }, {\n                                \"X\": 0.6830137968063354,\n                                \"Y\": 0.21995583176612854\n                            }, {\n                                \"X\": 0.611802339553833,\n                                \"Y\": 0.21996553242206573\n                            }]\n                        },\n                        \"Confidence\": 99.90508270263672\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 418,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12301028519868851,\n                                \"Height\": 0.009020467288792133,\n                                \"Left\": 0.70070880651474,\n                                \"Top\": 0.21159988641738892\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7007121443748474,\n                                \"Y\": 0.21161684393882751\n                            }, {\n                                \"X\": 0.8237190842628479,\n                                \"Y\": 0.21159988641738892\n                            }, {\n                                \"X\": 0.8237159848213196,\n                                \"Y\": 0.22060361504554749\n                            }, {\n                                \"X\": 0.70070880651474,\n                                \"Y\": 0.22062034904956818\n                            }]\n                        },\n                        \"Confidence\": 98.26313018798828\n                    }]\n                }, {\n                    \"Type\": \"ORIGINAL_LOAN_AMOUNT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Original Loan Amount\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09407493472099304,\n                                \"Height\": 0.007679532282054424,\n                                \"Left\": 0.17501993477344513,\n                                \"Top\": 0.3533889353275299\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17502331733703613,\n                                \"Y\": 0.3533993065357208\n                            }, {\n                                \"X\": 0.269094854593277,\n                                \"Y\": 0.3533889353275299\n                            }, {\n                                \"X\": 0.26909157633781433,\n                                \"Y\": 0.3610582649707794\n                            }, {\n                                \"X\": 0.17501993477344513,\n                                \"Y\": 0.3610684871673584\n                            }]\n                        },\n                        \"Confidence\": 99.89393615722656\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ 347,000.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12558215856552124,\n                                \"Height\": 0.00901697389781475,\n                                \"Left\": 0.2764274477958679,\n                                \"Top\": 0.3523739278316498\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27643129229545593,\n                                \"Y\": 0.35238778591156006\n                            }, {\n                                \"X\": 0.40200960636138916,\n                                \"Y\": 0.3523739278316498\n                            }, {\n                                \"X\": 0.4020059406757355,\n                                \"Y\": 0.3613772690296173\n                            }, {\n                                \"X\": 0.2764274477958679,\n                                \"Y\": 0.3613909184932709\n                            }]\n                        },\n                        \"Confidence\": 98.16688537597656\n                    }]\n                }, {\n                    \"Type\": \"CONTACT_PHONE_NUMBER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Contact Phone Number\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10056722909212112,\n                                \"Height\": 0.006338177714496851,\n                                \"Left\": 0.5114313364028931,\n                                \"Top\": 0.8405855298042297\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5114337801933289,\n                                \"Y\": 0.8405870199203491\n                            }, {\n                                \"X\": 0.6119985580444336,\n                                \"Y\": 0.8405855298042297\n                            }, {\n                                \"X\": 0.6119961142539978,\n                                \"Y\": 0.8469223380088806\n                            }, {\n                                \"X\": 0.5114313364028931,\n                                \"Y\": 0.8469237089157104\n                            }]\n                        },\n                        \"Confidence\": 99.95477294921875\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"AUS_RECOMMENDATION\",\n                    \"KeyDetection\": {\n                        \"Text\": \"AUS Recommendation\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09796388447284698,\n                                \"Height\": 0.0063401986844837666,\n                                \"Left\": 0.19989663362503052,\n                                \"Top\": 0.6998574733734131\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19989942014217377,\n                                \"Y\": 0.6998616456985474\n                            }, {\n                                \"X\": 0.2978605329990387,\n                                \"Y\": 0.6998574733734131\n                            }, {\n                                \"X\": 0.2978578507900238,\n                                \"Y\": 0.7061936855316162\n                            }, {\n                                \"X\": 0.19989663362503052,\n                                \"Y\": 0.7061976790428162\n                            }]\n                        },\n                        \"Confidence\": 99.92308807373047\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"CPM Project ID# (if any)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10444410145282745,\n                                \"Height\": 0.007683385629206896,\n                                \"Left\": 0.5323845148086548,\n                                \"Top\": 0.2343009114265442\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5323875546455383,\n                                \"Y\": 0.23431484401226044\n                            }, {\n                                \"X\": 0.6368286609649658,\n                                \"Y\": 0.2343009114265442\n                            }, {\n                                \"X\": 0.6368257403373718,\n                                \"Y\": 0.24197052419185638\n                            }, {\n                                \"X\": 0.5323845148086548,\n                                \"Y\": 0.2419842928647995\n                            }]\n                        },\n                        \"Confidence\": 97.96217346191406\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CONTACT_NAME\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Contact Name\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.061721689999103546,\n                                \"Height\": 0.006004321854561567,\n                                \"Left\": 0.5114399790763855,\n                                \"Top\": 0.8189077377319336\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5114423632621765,\n                                \"Y\": 0.8189088702201843\n                            }, {\n                                \"X\": 0.5731616616249084,\n                                \"Y\": 0.8189077377319336\n                            }, {\n                                \"X\": 0.5731593370437622,\n                                \"Y\": 0.8249109387397766\n                            }, {\n                                \"X\": 0.5114399790763855,\n                                \"Y\": 0.8249120712280273\n                            }]\n                        },\n                        \"Confidence\": 99.95509338378906\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CONTACT_TITLE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Contact Title\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05567938834428787,\n                                \"Height\": 0.006337619386613369,\n                                \"Left\": 0.5114356279373169,\n                                \"Top\": 0.8295802474021912\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5114381313323975,\n                                \"Y\": 0.8295812010765076\n                            }, {\n                                \"X\": 0.5671150088310242,\n                                \"Y\": 0.8295802474021912\n                            }, {\n                                \"X\": 0.5671125650405884,\n                                \"Y\": 0.8359169960021973\n                            }, {\n                                \"X\": 0.5114356279373169,\n                                \"Y\": 0.8359178900718689\n                            }]\n                        },\n                        \"Confidence\": 99.97028350830078\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"AMOUNT_OF_SUBORDINATE_FINANCING\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Amount of Subordinate Financing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1454523205757141,\n                                \"Height\": 0.007687605917453766,\n                                \"Left\": 0.6454372406005859,\n                                \"Top\": 0.28830304741859436\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6454401016235352,\n                                \"Y\": 0.288320928812027\n                            }, {\n                                \"X\": 0.7908895611763,\n                                \"Y\": 0.28830304741859436\n                            }, {\n                                \"X\": 0.7908868193626404,\n                                \"Y\": 0.295973002910614\n                            }, {\n                                \"X\": 0.6454372406005859,\n                                \"Y\": 0.2959906756877899\n                            }]\n                        },\n                        \"Confidence\": 99.96549987792969\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.005181198939681053,\n                                \"Height\": 0.005669579841196537,\n                                \"Left\": 0.6462969183921814,\n                                \"Top\": 0.2996580898761749\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6462990045547485,\n                                \"Y\": 0.29965871572494507\n                            }, {\n                                \"X\": 0.651478111743927,\n                                \"Y\": 0.2996580898761749\n                            }, {\n                                \"X\": 0.6514759659767151,\n                                \"Y\": 0.30532702803611755\n                            }, {\n                                \"X\": 0.6462969183921814,\n                                \"Y\": 0.3053276538848877\n                            }]\n                        },\n                        \"Confidence\": 97.77505493164062\n                    }]\n                }, {\n                    \"Type\": \"PROJECT_NAME\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Project Name\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05782823637127876,\n                                \"Height\": 0.0070098284631967545,\n                                \"Left\": 0.29718711972236633,\n                                \"Top\": 0.24567557871341705\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2971900701522827,\n                                \"Y\": 0.24568316340446472\n                            }, {\n                                \"X\": 0.3550153374671936,\n                                \"Y\": 0.24567557871341705\n                            }, {\n                                \"X\": 0.355012446641922,\n                                \"Y\": 0.25267788767814636\n                            }, {\n                                \"X\": 0.29718711972236633,\n                                \"Y\": 0.25268539786338806\n                            }]\n                        },\n                        \"Confidence\": 99.7896728515625\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"ORIGINAL_LOAN_AMOUNT_OF_FIRST_MORTGAGE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Original Loan Amount of First Mortgage\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17221489548683167,\n                                \"Height\": 0.007687812205404043,\n                                \"Left\": 0.6458322405815125,\n                                \"Top\": 0.386010080575943\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6458351016044617,\n                                \"Y\": 0.3860279321670532\n                            }, {\n                                \"X\": 0.8180471062660217,\n                                \"Y\": 0.386010080575943\n                            }, {\n                                \"X\": 0.8180444240570068,\n                                \"Y\": 0.39368030428886414\n                            }, {\n                                \"X\": 0.6458322405815125,\n                                \"Y\": 0.3936978876590729\n                            }]\n                        },\n                        \"Confidence\": 99.88748168945312\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.004749674815684557,\n                                \"Height\": 0.005669594742357731,\n                                \"Left\": 0.6462604403495789,\n                                \"Top\": 0.39703214168548584\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6462625861167908,\n                                \"Y\": 0.39703261852264404\n                            }, {\n                                \"X\": 0.6510100960731506,\n                                \"Y\": 0.39703214168548584\n                            }, {\n                                \"X\": 0.6510080099105835,\n                                \"Y\": 0.4027012586593628\n                            }, {\n                                \"X\": 0.6462604403495789,\n                                \"Y\": 0.402701735496521\n                            }]\n                        },\n                        \"Confidence\": 98.89031982421875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Contact Signature\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0781240165233612,\n                                \"Height\": 0.0076716127805411816,\n                                \"Left\": 0.5114223957061768,\n                                \"Top\": 0.8619309067726135\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5114253759384155,\n                                \"Y\": 0.8619317412376404\n                            }, {\n                                \"X\": 0.5895463824272156,\n                                \"Y\": 0.8619309067726135\n                            }, {\n                                \"X\": 0.5895434617996216,\n                                \"Y\": 0.869601845741272\n                            }, {\n                                \"X\": 0.5114223957061768,\n                                \"Y\": 0.8696025013923645\n                            }]\n                        },\n                        \"Confidence\": 99.97164916992188\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"UNDERWRITER_COMMENTS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Underwriter Comments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10098428279161453,\n                                \"Height\": 0.006006036419421434,\n                                \"Left\": 0.1748485118150711,\n                                \"Top\": 0.7432112693786621\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1748511642217636,\n                                \"Y\": 0.7432146668434143\n                            }, {\n                                \"X\": 0.27583280205726624,\n                                \"Y\": 0.7432112693786621\n                            }, {\n                                \"X\": 0.2758302390575409,\n                                \"Y\": 0.7492140531539917\n                            }, {\n                                \"X\": 0.1748485118150711,\n                                \"Y\": 0.7492173314094543\n                            }]\n                        },\n                        \"Confidence\": 99.97052001953125\n                    },\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 23,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1005\",\n                \"Confidence\": 99.9988784790039\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"OVERTIME_CONTINANCE_LIKELY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030655616894364357,\n                                \"Height\": 0.011024124920368195,\n                                \"Left\": 0.8287164568901062,\n                                \"Top\": 0.4768635630607605\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8287164568901062,\n                                \"Y\": 0.47688350081443787\n                            }, {\n                                \"X\": 0.8593645691871643,\n                                \"Y\": 0.4768635630607605\n                            }, {\n                                \"X\": 0.859372079372406,\n                                \"Y\": 0.4878678023815155\n                            }, {\n                                \"X\": 0.8287237882614136,\n                                \"Y\": 0.4878876805305481\n                            }]\n                        },\n                        \"Confidence\": 45.0\n                    }]\n                }, {\n                    \"Type\": \"BONUS_CONTINUANCE_LIKELY\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030655616894364357,\n                                \"Height\": 0.011024124920368195,\n                                \"Left\": 0.8287164568901062,\n                                \"Top\": 0.4768635630607605\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8287164568901062,\n                                \"Y\": 0.47688350081443787\n                            }, {\n                                \"X\": 0.8593645691871643,\n                                \"Y\": 0.4768635630607605\n                            }, {\n                                \"X\": 0.859372079372406,\n                                \"Y\": 0.4878678023815155\n                            }, {\n                                \"X\": 0.8287237882614136,\n                                \"Y\": 0.4878876805305481\n                            }]\n                        },\n                        \"Confidence\": 67.0\n                    }]\n                }, {\n                    \"Type\": \"TITLE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"4. Title\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.033628374338150024,\n                                \"Height\": 0.007838014513254166,\n                                \"Left\": 0.3676620423793793,\n                                \"Top\": 0.31235408782958984\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3676620423793793,\n                                \"Y\": 0.31237727403640747\n                            }, {\n                                \"X\": 0.4012869596481323,\n                                \"Y\": 0.31235408782958984\n                            }, {\n                                \"X\": 0.4012904167175293,\n                                \"Y\": 0.32016900181770325\n                            }, {\n                                \"X\": 0.3676653802394867,\n                                \"Y\": 0.3201920986175537\n                            }]\n                        },\n                        \"Confidence\": 94.12799835205078\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"originator\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1378161907196045,\n                                \"Height\": 0.029684877023100853,\n                                \"Left\": 0.3967238962650299,\n                                \"Top\": 0.313429057598114\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3967238962650299,\n                                \"Y\": 0.3135239779949188\n                            }, {\n                                \"X\": 0.5345249176025391,\n                                \"Y\": 0.313429057598114\n                            }, {\n                                \"X\": 0.5345401167869568,\n                                \"Y\": 0.34301993250846863\n                            }, {\n                                \"X\": 0.3967369496822357,\n                                \"Y\": 0.3431139290332794\n                            }]\n                        },\n                        \"Confidence\": 94.12799835205078\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_PAY_ANNUAL\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Annual\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03376147896051407,\n                                \"Height\": 0.00744729395955801,\n                                \"Left\": 0.22055496275424957,\n                                \"Top\": 0.48172810673713684\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22055496275424957,\n                                \"Y\": 0.4817500710487366\n                            }, {\n                                \"X\": 0.25431370735168457,\n                                \"Y\": 0.48172810673713684\n                            }, {\n                                \"X\": 0.25431644916534424,\n                                \"Y\": 0.48915350437164307\n                            }, {\n                                \"X\": 0.2205575555562973,\n                                \"Y\": 0.489175409078598\n                            }]\n                        },\n                        \"Confidence\": 93.52601623535156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017903359606862068,\n                                \"Height\": 0.012393570505082607,\n                                \"Left\": 0.1975252777338028,\n                                \"Top\": 0.479355126619339\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1975252777338028,\n                                \"Y\": 0.4793667793273926\n                            }, {\n                                \"X\": 0.2154243439435959,\n                                \"Y\": 0.479355126619339\n                            }, {\n                                \"X\": 0.21542863547801971,\n                                \"Y\": 0.49173709750175476\n                            }, {\n                                \"X\": 0.19752945005893707,\n                                \"Y\": 0.4917486906051636\n                            }]\n                        },\n                        \"Confidence\": 99.92723083496094\n                    }]\n                }, {\n                    \"Type\": \"DATE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"5. Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03583402931690216,\n                                \"Height\": 0.0073432414792478085,\n                                \"Left\": 0.6082602143287659,\n                                \"Top\": 0.31231367588043213\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6082602143287659,\n                                \"Y\": 0.31233835220336914\n                            }, {\n                                \"X\": 0.6440900564193726,\n                                \"Y\": 0.31231367588043213\n                            }, {\n                                \"X\": 0.6440942287445068,\n                                \"Y\": 0.31963229179382324\n                            }, {\n                                \"X\": 0.6082642674446106,\n                                \"Y\": 0.3196569085121155\n                            }]\n                        },\n                        \"Confidence\": 93.02873229980469\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"10/6/20 authorizes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07941163331270218,\n                                \"Height\": 0.02704225666821003,\n                                \"Left\": 0.6279244422912598,\n                                \"Top\": 0.3157285451889038\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6279244422912598,\n                                \"Y\": 0.31578320264816284\n                            }, {\n                                \"X\": 0.7073197960853577,\n                                \"Y\": 0.3157285451889038\n                            }, {\n                                \"X\": 0.7073360681533813,\n                                \"Y\": 0.34271666407585144\n                            }, {\n                                \"X\": 0.6279395818710327,\n                                \"Y\": 0.3427708148956299\n                            }]\n                        },\n                        \"Confidence\": 93.02873229980469\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_PAY_MONTHLY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Monthly\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03862863406538963,\n                                \"Height\": 0.00897187553346157,\n                                \"Left\": 0.21995849907398224,\n                                \"Top\": 0.4954112768173218\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.21995849907398224,\n                                \"Y\": 0.49543628096580505\n                            }, {\n                                \"X\": 0.25858384370803833,\n                                \"Y\": 0.4954112768173218\n                            }, {\n                                \"X\": 0.258587121963501,\n                                \"Y\": 0.5043582320213318\n                            }, {\n                                \"X\": 0.21996161341667175,\n                                \"Y\": 0.5043831467628479\n                            }]\n                        },\n                        \"Confidence\": 92.91404724121094\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01839269883930683,\n                                \"Height\": 0.01151780690997839,\n                                \"Left\": 0.19719894230365753,\n                                \"Top\": 0.49316927790641785\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19719894230365753,\n                                \"Y\": 0.4931811988353729\n                            }, {\n                                \"X\": 0.21558766067028046,\n                                \"Y\": 0.49316927790641785\n                            }, {\n                                \"X\": 0.2155916392803192,\n                                \"Y\": 0.5046752095222473\n                            }, {\n                                \"X\": 0.19720283150672913,\n                                \"Y\": 0.5046870708465576\n                            }]\n                        },\n                        \"Confidence\": 99.98387145996094\n                    }]\n                }, {\n                    \"Type\": \"DATE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"28. Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04234827682375908,\n                                \"Height\": 0.007153983227908611,\n                                \"Left\": 0.7420558333396912,\n                                \"Top\": 0.8340866565704346\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7420558333396912,\n                                \"Y\": 0.8341107964515686\n                            }, {\n                                \"X\": 0.7843995094299316,\n                                \"Y\": 0.8340866565704346\n                            }, {\n                                \"X\": 0.7844040989875793,\n                                \"Y\": 0.8412166237831116\n                            }, {\n                                \"X\": 0.7420602440834045,\n                                \"Y\": 0.841240644454956\n                            }]\n                        },\n                        \"Confidence\": 92.72445678710938\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"October 8, 2020\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09998837113380432,\n                                \"Height\": 0.010502016171813011,\n                                \"Left\": 0.7556453347206116,\n                                \"Top\": 0.8545964956283569\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7556453347206116,\n                                \"Y\": 0.854653000831604\n                            }, {\n                                \"X\": 0.85562664270401,\n                                \"Y\": 0.8545964956283569\n                            }, {\n                                \"X\": 0.8556337356567383,\n                                \"Y\": 0.8650422692298889\n                            }, {\n                                \"X\": 0.7556518912315369,\n                                \"Y\": 0.8650985360145569\n                            }]\n                        },\n                        \"Confidence\": 92.72445678710938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"6. Lender's No. (Optional)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13919244706630707,\n                                \"Height\": 0.009184744209051132,\n                                \"Left\": 0.7281012535095215,\n                                \"Top\": 0.31200650334358215\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7281012535095215,\n                                \"Y\": 0.31210240721702576\n                            }, {\n                                \"X\": 0.8672874569892883,\n                                \"Y\": 0.31200650334358215\n                            }, {\n                                \"X\": 0.867293655872345,\n                                \"Y\": 0.32109564542770386\n                            }, {\n                                \"X\": 0.7281067967414856,\n                                \"Y\": 0.3211912512779236\n                            }]\n                        },\n                        \"Confidence\": 92.39665985107422\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other (Specify)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07477311789989471,\n                                \"Height\": 0.009034554474055767,\n                                \"Left\": 0.3234938085079193,\n                                \"Top\": 0.4949919283390045\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3234938085079193,\n                                \"Y\": 0.49504032731056213\n                            }, {\n                                \"X\": 0.39826294779777527,\n                                \"Y\": 0.4949919283390045\n                            }, {\n                                \"X\": 0.39826691150665283,\n                                \"Y\": 0.5039782524108887\n                            }, {\n                                \"X\": 0.3234974145889282,\n                                \"Y\": 0.504026472568512\n                            }]\n                        },\n                        \"Confidence\": 92.22767639160156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018707934767007828,\n                                \"Height\": 0.011180010624229908,\n                                \"Left\": 0.3001076579093933,\n                                \"Top\": 0.4930400848388672\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3001076579093933,\n                                \"Y\": 0.4930521845817566\n                            }, {\n                                \"X\": 0.3188111186027527,\n                                \"Y\": 0.4930400848388672\n                            }, {\n                                \"X\": 0.31881558895111084,\n                                \"Y\": 0.5042080283164978\n                            }, {\n                                \"X\": 0.3001120090484619,\n                                \"Y\": 0.5042200684547424\n                            }]\n                        },\n                        \"Confidence\": 99.97879028320312\n                    }]\n                }, {\n                    \"Type\": \"PROBABILITY_OF_CONTINUED_EMPLOYMENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"11. Probability of Continued Employment\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.21674329042434692,\n                                \"Height\": 0.009328505955636501,\n                                \"Left\": 0.6096094250679016,\n                                \"Top\": 0.44000500440597534\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6096094250679016,\n                                \"Y\": 0.4401479959487915\n                            }, {\n                                \"X\": 0.8263465762138367,\n                                \"Y\": 0.44000500440597534\n                            }, {\n                                \"X\": 0.8263527154922485,\n                                \"Y\": 0.44919097423553467\n                            }, {\n                                \"X\": 0.6096144914627075,\n                                \"Y\": 0.449333518743515\n                            }]\n                        },\n                        \"Confidence\": 91.877685546875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Likely\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04093509912490845,\n                                \"Height\": 0.012286619283258915,\n                                \"Left\": 0.6502975225448608,\n                                \"Top\": 0.452465295791626\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6502975225448608,\n                                \"Y\": 0.4524921774864197\n                            }, {\n                                \"X\": 0.6912252902984619,\n                                \"Y\": 0.452465295791626\n                            }, {\n                                \"X\": 0.6912325620651245,\n                                \"Y\": 0.464725136756897\n                            }, {\n                                \"X\": 0.6503044962882996,\n                                \"Y\": 0.4647518992424011\n                            }]\n                        },\n                        \"Confidence\": 91.877685546875\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_PAY_HOURLY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Hourly\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0317232608795166,\n                                \"Height\": 0.008809792809188366,\n                                \"Left\": 0.32393598556518555,\n                                \"Top\": 0.48165521025657654\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.32393598556518555,\n                                \"Y\": 0.4816758334636688\n                            }, {\n                                \"X\": 0.35565558075904846,\n                                \"Y\": 0.48165521025657654\n                            }, {\n                                \"X\": 0.35565924644470215,\n                                \"Y\": 0.49044445157051086\n                            }, {\n                                \"X\": 0.3239395320415497,\n                                \"Y\": 0.4904650151729584\n                            }]\n                        },\n                        \"Confidence\": 91.82361602783203\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.018985269591212273,\n                                \"Height\": 0.011827887035906315,\n                                \"Left\": 0.3000797927379608,\n                                \"Top\": 0.4794843792915344\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3000797927379608,\n                                \"Y\": 0.4794967472553253\n                            }, {\n                                \"X\": 0.3190603256225586,\n                                \"Y\": 0.4794843792915344\n                            }, {\n                                \"X\": 0.31906506419181824,\n                                \"Y\": 0.49129998683929443\n                            }, {\n                                \"X\": 0.3000844120979309,\n                                \"Y\": 0.49131226539611816\n                            }]\n                        },\n                        \"Confidence\": 99.98123168945312\n                    }]\n                }, {\n                    \"Type\": \"PRESENT_POSITION\",\n                    \"KeyDetection\": {\n                        \"Text\": \"10. Present Position\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10050351917743683,\n                                \"Height\": 0.007633093744516373,\n                                \"Left\": 0.30962300300598145,\n                                \"Top\": 0.44136446714401245\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30962300300598145,\n                                \"Y\": 0.4414307475090027\n                            }, {\n                                \"X\": 0.41012313961982727,\n                                \"Y\": 0.44136446714401245\n                            }, {\n                                \"X\": 0.4101265072822571,\n                                \"Y\": 0.4489314556121826\n                            }, {\n                                \"X\": 0.3096259832382202,\n                                \"Y\": 0.4489975571632385\n                            }]\n                        },\n                        \"Confidence\": 91.1936264038086\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Attorney/Shareholder\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15153349936008453,\n                                \"Height\": 0.01284534577280283,\n                                \"Left\": 0.3346105217933655,\n                                \"Top\": 0.4516774117946625\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3346105217933655,\n                                \"Y\": 0.45177698135375977\n                            }, {\n                                \"X\": 0.4861378073692322,\n                                \"Y\": 0.4516774117946625\n                            }, {\n                                \"X\": 0.4861440062522888,\n                                \"Y\": 0.46442362666130066\n                            }, {\n                                \"X\": 0.3346157371997833,\n                                \"Y\": 0.46452274918556213\n                            }]\n                        },\n                        \"Confidence\": 91.1936264038086\n                    }]\n                }, {\n                    \"Type\": \"PROJECTED_AMOUNT_OF_NEXT_PAY_INCREASE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"17. Projected amount of next pay increase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2256263643503189,\n                                \"Height\": 0.00924091786146164,\n                                \"Left\": 0.6631215214729309,\n                                \"Top\": 0.5872782468795776\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6631215214729309,\n                                \"Y\": 0.5874195098876953\n                            }, {\n                                \"X\": 0.8887415528297424,\n                                \"Y\": 0.5872782468795776\n                            }, {\n                                \"X\": 0.8887479305267334,\n                                \"Y\": 0.5963783860206604\n                            }, {\n                                \"X\": 0.6631268262863159,\n                                \"Y\": 0.5965191721916199\n                            }]\n                        },\n                        \"Confidence\": 91.14115142822266\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029494736343622208,\n                                \"Height\": 0.009605561383068562,\n                                \"Left\": 0.7456552386283875,\n                                \"Top\": 0.5999288558959961\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7456552386283875,\n                                \"Y\": 0.5999472141265869\n                            }, {\n                                \"X\": 0.7751438617706299,\n                                \"Y\": 0.5999288558959961\n                            }, {\n                                \"X\": 0.7751500010490417,\n                                \"Y\": 0.6095160841941833\n                            }, {\n                                \"X\": 0.745661199092865,\n                                \"Y\": 0.6095343828201294\n                            }]\n                        },\n                        \"Confidence\": 91.14115142822266\n                    }]\n                }, {\n                    \"Type\": \"APPLICANT_DATE_OF_EMPLOYMENT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"9. Applicant's Date of Employment\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18885572254657745,\n                                \"Height\": 0.009511478245258331,\n                                \"Left\": 0.10212057828903198,\n                                \"Top\": 0.441398561000824\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10212057828903198,\n                                \"Y\": 0.44152310490608215\n                            }, {\n                                \"X\": 0.29097267985343933,\n                                \"Y\": 0.441398561000824\n                            }, {\n                                \"X\": 0.29097628593444824,\n                                \"Y\": 0.45078587532043457\n                            }, {\n                                \"X\": 0.10212327539920807,\n                                \"Y\": 0.4509100317955017\n                            }]\n                        },\n                        \"Confidence\": 90.91968536376953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"3/14/2014\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0685662180185318,\n                                \"Height\": 0.009542781859636307,\n                                \"Left\": 0.158290833234787,\n                                \"Top\": 0.4520953893661499\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.158290833234787,\n                                \"Y\": 0.4521404504776001\n                            }, {\n                                \"X\": 0.22685369849205017,\n                                \"Y\": 0.4520953893661499\n                            }, {\n                                \"X\": 0.2268570512533188,\n                                \"Y\": 0.46159327030181885\n                            }, {\n                                \"X\": 0.15829384326934814,\n                                \"Y\": 0.4616381824016571\n                            }]\n                        },\n                        \"Confidence\": 90.91968536376953\n                    }]\n                }, {\n                    \"Type\": \"DATE_OF_APPLICANT'S_NEXT_PAY_INCREASE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"16. Date of applicant's next pay increase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2211088240146637,\n                                \"Height\": 0.00905691273510456,\n                                \"Left\": 0.6624969840049744,\n                                \"Top\": 0.5474280118942261\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6624969840049744,\n                                \"Y\": 0.5475684404373169\n                            }, {\n                                \"X\": 0.8835996389389038,\n                                \"Y\": 0.5474280118942261\n                            }, {\n                                \"X\": 0.8836057782173157,\n                                \"Y\": 0.5563449859619141\n                            }, {\n                                \"X\": 0.6625021696090698,\n                                \"Y\": 0.5564849376678467\n                            }]\n                        },\n                        \"Confidence\": 90.88275146484375\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029794778674840927,\n                                \"Height\": 0.009953903034329414,\n                                \"Left\": 0.7380562424659729,\n                                \"Top\": 0.5708345770835876\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7380562424659729,\n                                \"Y\": 0.5708533525466919\n                            }, {\n                                \"X\": 0.7678447365760803,\n                                \"Y\": 0.5708345770835876\n                            }, {\n                                \"X\": 0.7678509950637817,\n                                \"Y\": 0.5807697772979736\n                            }, {\n                                \"X\": 0.7380623817443848,\n                                \"Y\": 0.5807884931564331\n                            }]\n                        },\n                        \"Confidence\": 90.88275146484375\n                    }]\n                }, {\n                    \"Type\": \"DATE_OF_APPLICANT_LAST_PAY_INCREASE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"18. Date of applicant's last pay increase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.21614444255828857,\n                                \"Height\": 0.009126800112426281,\n                                \"Left\": 0.6636215448379517,\n                                \"Top\": 0.6141676306724548\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6636215448379517,\n                                \"Y\": 0.6143016219139099\n                            }, {\n                                \"X\": 0.8797597289085388,\n                                \"Y\": 0.6141676306724548\n                            }, {\n                                \"X\": 0.8797659873962402,\n                                \"Y\": 0.6231608986854553\n                            }, {\n                                \"X\": 0.6636267304420471,\n                                \"Y\": 0.6232944130897522\n                            }]\n                        },\n                        \"Confidence\": 90.71210479736328\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029943248257040977,\n                                \"Height\": 0.00970244500786066,\n                                \"Left\": 0.7447808384895325,\n                                \"Top\": 0.6254905462265015\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7447808384895325,\n                                \"Y\": 0.6255090236663818\n                            }, {\n                                \"X\": 0.7747179269790649,\n                                \"Y\": 0.6254905462265015\n                            }, {\n                                \"X\": 0.7747240662574768,\n                                \"Y\": 0.635174572467804\n                            }, {\n                                \"X\": 0.7447868585586548,\n                                \"Y\": 0.6351929903030396\n                            }]\n                        },\n                        \"Confidence\": 90.71210479736328\n                    }]\n                }, {\n                    \"Type\": \"AMOUNT_OF_LAST_PAY_INCREASE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"19. Amount of last pay increase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.17102238535881042,\n                                \"Height\": 0.008823931217193604,\n                                \"Left\": 0.663159191608429,\n                                \"Top\": 0.6407378315925598\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.663159191608429,\n                                \"Y\": 0.6408427953720093\n                            }, {\n                                \"X\": 0.8341757655143738,\n                                \"Y\": 0.6407378315925598\n                            }, {\n                                \"X\": 0.8341816067695618,\n                                \"Y\": 0.6494570970535278\n                            }, {\n                                \"X\": 0.6631642580032349,\n                                \"Y\": 0.6495617628097534\n                            }]\n                        },\n                        \"Confidence\": 90.4202651977539\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029935143887996674,\n                                \"Height\": 0.010107919573783875,\n                                \"Left\": 0.7528890371322632,\n                                \"Top\": 0.6639771461486816\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7528890371322632,\n                                \"Y\": 0.6639953255653381\n                            }, {\n                                \"X\": 0.7828177213668823,\n                                \"Y\": 0.6639771461486816\n                            }, {\n                                \"X\": 0.7828242182731628,\n                                \"Y\": 0.6740669012069702\n                            }, {\n                                \"X\": 0.7528953552246094,\n                                \"Y\": 0.6740850806236267\n                            }]\n                        },\n                        \"Confidence\": 90.4202651977539\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"8. Signature of Applicant\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13432766497135162,\n                                \"Height\": 0.009447664022445679,\n                                \"Left\": 0.6085322499275208,\n                                \"Top\": 0.35193192958831787\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6085322499275208,\n                                \"Y\": 0.35202324390411377\n                            }, {\n                                \"X\": 0.7428540587425232,\n                                \"Y\": 0.35193192958831787\n                            }, {\n                                \"X\": 0.7428598999977112,\n                                \"Y\": 0.36128854751586914\n                            }, {\n                                \"X\": 0.6085373759269714,\n                                \"Y\": 0.36137959361076355\n                            }]\n                        },\n                        \"Confidence\": 89.57474517822266\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"15. If paid hourly-average hours per week\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.21704627573490143,\n                                \"Height\": 0.008966079913079739,\n                                \"Left\": 0.665462076663971,\n                                \"Top\": 0.5194158554077148\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.665462076663971,\n                                \"Y\": 0.5195550918579102\n                            }, {\n                                \"X\": 0.8825021982192993,\n                                \"Y\": 0.5194158554077148\n                            }, {\n                                \"X\": 0.8825083374977112,\n                                \"Y\": 0.5282431244850159\n                            }, {\n                                \"X\": 0.6654672026634216,\n                                \"Y\": 0.5283819437026978\n                            }]\n                        },\n                        \"Confidence\": 89.38420104980469\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"N/A\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02894001454114914,\n                                \"Height\": 0.009601498022675514,\n                                \"Left\": 0.7330164313316345,\n                                \"Top\": 0.5316326022148132\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7330164313316345,\n                                \"Y\": 0.5316510796546936\n                            }, {\n                                \"X\": 0.7619503736495972,\n                                \"Y\": 0.5316326022148132\n                            }, {\n                                \"X\": 0.7619564533233643,\n                                \"Y\": 0.541215717792511\n                            }, {\n                                \"X\": 0.7330223321914673,\n                                \"Y\": 0.5412341356277466\n                            }]\n                        },\n                        \"Confidence\": 89.38420104980469\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_PAY_WEEKLY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Weekly\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.036424946039915085,\n                                \"Height\": 0.009221917018294334,\n                                \"Left\": 0.22049060463905334,\n                                \"Top\": 0.5087755918502808\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.22049060463905334,\n                                \"Y\": 0.5087990760803223\n                            }, {\n                                \"X\": 0.2569121718406677,\n                                \"Y\": 0.5087755918502808\n                            }, {\n                                \"X\": 0.2569155693054199,\n                                \"Y\": 0.5179741382598877\n                            }, {\n                                \"X\": 0.22049382328987122,\n                                \"Y\": 0.5179975032806396\n                            }]\n                        },\n                        \"Confidence\": 89.162109375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0184416975826025,\n                                \"Height\": 0.011402519419789314,\n                                \"Left\": 0.19762642681598663,\n                                \"Top\": 0.5070705413818359\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19762642681598663,\n                                \"Y\": 0.5070824027061462\n                            }, {\n                                \"X\": 0.21606417000293732,\n                                \"Y\": 0.5070705413818359\n                            }, {\n                                \"X\": 0.21606813371181488,\n                                \"Y\": 0.5184612274169922\n                            }, {\n                                \"X\": 0.19763027131557465,\n                                \"Y\": 0.5184730291366577\n                            }]\n                        },\n                        \"Confidence\": 99.96139526367188\n                    }]\n                }, {\n                    \"Type\": \"NAME_AND_ADDRESS_OF_EMPLOYER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"1. To (Name and address of employer)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20364008843898773,\n                                \"Height\": 0.009525791741907597,\n                                \"Left\": 0.10172061622142792,\n                                \"Top\": 0.20713143050670624\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10172061622142792,\n                                \"Y\": 0.20727664232254028\n                            }, {\n                                \"X\": 0.3053570091724396,\n                                \"Y\": 0.20713143050670624\n                            }, {\n                                \"X\": 0.30536070466041565,\n                                \"Y\": 0.21651242673397064\n                            }, {\n                                \"X\": 0.101723313331604,\n                                \"Y\": 0.21665722131729126\n                            }]\n                        },\n                        \"Confidence\": 88.61548614501953\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"NAME_AND_ADDRESS_OF_APPLICANT_(INCLUDE_EMPLOYEE_OR_BADGE_NUMBER)\",\n                    \"KeyDetection\": {\n                        \"Text\": \"7. Name and Address of Applicant (include employee or badge number)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.38011354207992554,\n                                \"Height\": 0.009304543025791645,\n                                \"Left\": 0.10334309935569763,\n                                \"Top\": 0.35272544622421265\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10334309935569763,\n                                \"Y\": 0.35298386216163635\n                            }, {\n                                \"X\": 0.4834522306919098,\n                                \"Y\": 0.35272544622421265\n                            }, {\n                                \"X\": 0.48345664143562317,\n                                \"Y\": 0.3617723882198334\n                            }, {\n                                \"X\": 0.10334570705890656,\n                                \"Y\": 0.3620299994945526\n                            }]\n                        },\n                        \"Confidence\": 88.27396392822266\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"POSITION_HELD\",\n                    \"KeyDetection\": {\n                        \"Text\": \"25. Position Held\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08510935306549072,\n                                \"Height\": 0.00788524467498064,\n                                \"Left\": 0.5009658932685852,\n                                \"Top\": 0.7736436128616333\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5009658932685852,\n                                \"Y\": 0.7736932635307312\n                            }, {\n                                \"X\": 0.5860710144042969,\n                                \"Y\": 0.7736436128616333\n                            }, {\n                                \"X\": 0.5860752463340759,\n                                \"Y\": 0.7814793586730957\n                            }, {\n                                \"X\": 0.5009697675704956,\n                                \"Y\": 0.7815288305282593\n                            }]\n                        },\n                        \"Confidence\": 87.7501220703125\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"TITLE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"27. Title (Please print or type)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15840789675712585,\n                                \"Height\": 0.008965143002569675,\n                                \"Left\": 0.4326288402080536,\n                                \"Top\": 0.8362964987754822\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4326288402080536,\n                                \"Y\": 0.8363866209983826\n                            }, {\n                                \"X\": 0.5910319089889526,\n                                \"Y\": 0.8362964987754822\n                            }, {\n                                \"X\": 0.5910367369651794,\n                                \"Y\": 0.8451718091964722\n                            }, {\n                                \"X\": 0.4326329231262207,\n                                \"Y\": 0.8452616333961487\n                            }]\n                        },\n                        \"Confidence\": 86.73189544677734\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Senior Manager, Compensation & Benefits\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2708263695240021,\n                                \"Height\": 0.011258370243012905,\n                                \"Left\": 0.4347922205924988,\n                                \"Top\": 0.8462546467781067\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4347922205924988,\n                                \"Y\": 0.8464081287384033\n                            }, {\n                                \"X\": 0.7056119441986084,\n                                \"Y\": 0.8462546467781067\n                            }, {\n                                \"X\": 0.7056186199188232,\n                                \"Y\": 0.8573602437973022\n                            }, {\n                                \"X\": 0.43479734659194946,\n                                \"Y\": 0.8575130105018616\n                            }]\n                        },\n                        \"Confidence\": 86.73189544677734\n                    }]\n                }, {\n                    \"Type\": \"REASON_FOR_LEAVING\",\n                    \"KeyDetection\": {\n                        \"Text\": \"24. Reason for Leaving\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12316873669624329,\n                                \"Height\": 0.008444885723292828,\n                                \"Left\": 0.10417857766151428,\n                                \"Top\": 0.7767735123634338\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10417857766151428,\n                                \"Y\": 0.7768452763557434\n                            }, {\n                                \"X\": 0.2273443639278412,\n                                \"Y\": 0.7767735123634338\n                            }, {\n                                \"X\": 0.22734731435775757,\n                                \"Y\": 0.7851468324661255\n                            }, {\n                                \"X\": 0.10418099164962769,\n                                \"Y\": 0.785218358039856\n                            }]\n                        },\n                        \"Confidence\": 85.49315643310547\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"3. Signature of Lender\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11894243210554123,\n                                \"Height\": 0.007890600711107254,\n                                \"Left\": 0.10143151879310608,\n                                \"Top\": 0.3127986490726471\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10143151879310608,\n                                \"Y\": 0.31288057565689087\n                            }, {\n                                \"X\": 0.22037121653556824,\n                                \"Y\": 0.3127986490726471\n                            }, {\n                                \"X\": 0.2203739434480667,\n                                \"Y\": 0.3206075131893158\n                            }, {\n                                \"X\": 0.10143376141786575,\n                                \"Y\": 0.32068923115730286\n                            }]\n                        },\n                        \"Confidence\": 85.40768432617188\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OVERTIME\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Overtime\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04451695457100868,\n                                \"Height\": 0.007391505409032106,\n                                \"Left\": 0.45852765440940857,\n                                \"Top\": 0.7623258829116821\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45852765440940857,\n                                \"Y\": 0.7623519897460938\n                            }, {\n                                \"X\": 0.5030409693717957,\n                                \"Y\": 0.7623258829116821\n                            }, {\n                                \"X\": 0.503044605255127,\n                                \"Y\": 0.7696914076805115\n                            }, {\n                                \"X\": 0.45853114128112793,\n                                \"Y\": 0.7697173953056335\n                            }]\n                        },\n                        \"Confidence\": 84.07998657226562\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"NAME_AND_ADDRESS_OF_LENDER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"2. From (Name and address of lender)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2014559507369995,\n                                \"Height\": 0.009398053400218487,\n                                \"Left\": 0.49687424302101135,\n                                \"Top\": 0.20710738003253937\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49687424302101135,\n                                \"Y\": 0.20725104212760925\n                            }, {\n                                \"X\": 0.6983246803283691,\n                                \"Y\": 0.20710738003253937\n                            }, {\n                                \"X\": 0.6983302235603333,\n                                \"Y\": 0.21636220812797546\n                            }, {\n                                \"X\": 0.49687880277633667,\n                                \"Y\": 0.21650543808937073\n                            }]\n                        },\n                        \"Confidence\": 83.66470336914062\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"26. Signature of Employer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13943813741207123,\n                                \"Height\": 0.00920524075627327,\n                                \"Left\": 0.10441499203443527,\n                                \"Top\": 0.8389791250228882\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10441499203443527,\n                                \"Y\": 0.8390583992004395\n                            }, {\n                                \"X\": 0.24384982883930206,\n                                \"Y\": 0.8389791250228882\n                            }, {\n                                \"X\": 0.2438531368970871,\n                                \"Y\": 0.8481053709983826\n                            }, {\n                                \"X\": 0.10441762953996658,\n                                \"Y\": 0.84818434715271\n                            }]\n                        },\n                        \"Confidence\": 83.34217834472656\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"PRINT_OR_TYPE_NAME\",\n                    \"KeyDetection\": {\n                        \"Text\": \"29. Print or type name signed in Item 26\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.215460404753685,\n                                \"Height\": 0.009836138226091862,\n                                \"Left\": 0.10478762537240982,\n                                \"Top\": 0.8656595349311829\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10478762537240982,\n                                \"Y\": 0.8657807111740112\n                            }, {\n                                \"X\": 0.3202441334724426,\n                                \"Y\": 0.8656595349311829\n                            }, {\n                                \"X\": 0.3202480375766754,\n                                \"Y\": 0.875374972820282\n                            }, {\n                                \"X\": 0.10479043424129486,\n                                \"Y\": 0.8754956722259521\n                            }]\n                        },\n                        \"Confidence\": 81.01217651367188\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"30. Phone No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0670146718621254,\n                                \"Height\": 0.007821147330105305,\n                                \"Left\": 0.4326961934566498,\n                                \"Top\": 0.8639031648635864\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4326961934566498,\n                                \"Y\": 0.8639408349990845\n                            }, {\n                                \"X\": 0.49970701336860657,\n                                \"Y\": 0.8639031648635864\n                            }, {\n                                \"X\": 0.49971088767051697,\n                                \"Y\": 0.8716866970062256\n                            }, {\n                                \"X\": 0.4326997697353363,\n                                \"Y\": 0.8717243075370789\n                            }]\n                        },\n                        \"Confidence\": 80.47998809814453\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BASE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Base\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025877226144075394,\n                                \"Height\": 0.00700457114726305,\n                                \"Left\": 0.32032138109207153,\n                                \"Top\": 0.7634828686714172\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.32032138109207153,\n                                \"Y\": 0.7634980082511902\n                            }, {\n                                \"X\": 0.34619569778442383,\n                                \"Y\": 0.7634828686714172\n                            }, {\n                                \"X\": 0.3461986184120178,\n                                \"Y\": 0.7704723477363586\n                            }, {\n                                \"X\": 0.320324182510376,\n                                \"Y\": 0.7704874277114868\n                            }]\n                        },\n                        \"Confidence\": 76.19596862792969\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"BONUS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Bonus\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03177996724843979,\n                                \"Height\": 0.0071548777632415295,\n                                \"Left\": 0.7435590028762817,\n                                \"Top\": 0.7603498697280884\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7435590028762817,\n                                \"Y\": 0.7603685259819031\n                            }, {\n                                \"X\": 0.7753344178199768,\n                                \"Y\": 0.7603498697280884\n                            }, {\n                                \"X\": 0.7753390073776245,\n                                \"Y\": 0.7674861550331116\n                            }, {\n                                \"X\": 0.7435634732246399,\n                                \"Y\": 0.7675047516822815\n                            }]\n                        },\n                        \"Confidence\": 75.06388854980469\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"COMMISSIONS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Commissions\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06742493808269501,\n                                \"Height\": 0.007762568537145853,\n                                \"Left\": 0.5952404737472534,\n                                \"Top\": 0.7610561847686768\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5952404737472534,\n                                \"Y\": 0.7610957026481628\n                            }, {\n                                \"X\": 0.6626608967781067,\n                                \"Y\": 0.7610561847686768\n                            }, {\n                                \"X\": 0.6626653671264648,\n                                \"Y\": 0.7687793374061584\n                            }, {\n                                \"X\": 0.5952446460723877,\n                                \"Y\": 0.768818736076355\n                            }]\n                        },\n                        \"Confidence\": 71.99687957763672\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Past Year\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0492265522480011,\n                                \"Height\": 0.007416171487420797,\n                                \"Left\": 0.27137792110443115,\n                                \"Top\": 0.537010133266449\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27137792110443115,\n                                \"Y\": 0.5370415449142456\n                            }, {\n                                \"X\": 0.3206014931201935,\n                                \"Y\": 0.537010133266449\n                            }, {\n                                \"X\": 0.32060447335243225,\n                                \"Y\": 0.5443950295448303\n                            }, {\n                                \"X\": 0.2713806927204132,\n                                \"Y\": 0.5444263219833374\n                            }]\n                        },\n                        \"Confidence\": 66.39617156982422\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030247269198298454,\n                                \"Height\": 0.009240993298590183,\n                                \"Left\": 0.3314734995365143,\n                                \"Top\": 0.5346106886863708\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3314734995365143,\n                                \"Y\": 0.5346300005912781\n                            }, {\n                                \"X\": 0.3617168664932251,\n                                \"Y\": 0.5346106886863708\n                            }, {\n                                \"X\": 0.3617207407951355,\n                                \"Y\": 0.5438324213027954\n                            }, {\n                                \"X\": 0.33147722482681274,\n                                \"Y\": 0.5438516736030579\n                            }]\n                        },\n                        \"Confidence\": 66.39617156982422\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Past Year\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04942493140697479,\n                                \"Height\": 0.007047082297503948,\n                                \"Left\": 0.3726057708263397,\n                                \"Top\": 0.5366567373275757\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3726057708263397,\n                                \"Y\": 0.5366882085800171\n                            }, {\n                                \"X\": 0.4220275282859802,\n                                \"Y\": 0.5366567373275757\n                            }, {\n                                \"X\": 0.4220307171344757,\n                                \"Y\": 0.5436723828315735\n                            }, {\n                                \"X\": 0.3726087808609009,\n                                \"Y\": 0.5437037944793701\n                            }]\n                        },\n                        \"Confidence\": 63.69441604614258\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"2018\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03176191821694374,\n                                \"Height\": 0.008604847826063633,\n                                \"Left\": 0.4241461753845215,\n                                \"Top\": 0.5349889993667603\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4241461753845215,\n                                \"Y\": 0.5350092649459839\n                            }, {\n                                \"X\": 0.4559040367603302,\n                                \"Y\": 0.5349889993667603\n                            }, {\n                                \"X\": 0.4559080898761749,\n                                \"Y\": 0.5435736179351807\n                            }, {\n                                \"X\": 0.4241500794887543,\n                                \"Y\": 0.5435938239097595\n                            }]\n                        },\n                        \"Confidence\": 63.69441604614258\n                    }]\n                }, {\n                    \"Type\": \"DATE_HIRED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"21. Date Hired\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07124987244606018,\n                                \"Height\": 0.0074654617346823215,\n                                \"Left\": 0.10437306761741638,\n                                \"Top\": 0.7508053779602051\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10437306761741638,\n                                \"Y\": 0.7508472800254822\n                            }, {\n                                \"X\": 0.17562052607536316,\n                                \"Y\": 0.7508053779602051\n                            }, {\n                                \"X\": 0.17562294006347656,\n                                \"Y\": 0.7582290172576904\n                            }, {\n                                \"X\": 0.1043752059340477,\n                                \"Y\": 0.758270800113678\n                            }]\n                        },\n                        \"Confidence\": 61.54515838623047\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"DATE_TERMINATED\",\n                    \"KeyDetection\": {\n                        \"Text\": \"22. Date Terminated\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10085838288068771,\n                                \"Height\": 0.007743800058960915,\n                                \"Left\": 0.10445212572813034,\n                                \"Top\": 0.7645921111106873\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10445212572813034,\n                                \"Y\": 0.7646511793136597\n                            }, {\n                                \"X\": 0.20530788600444794,\n                                \"Y\": 0.7645921111106873\n                            }, {\n                                \"X\": 0.20531050860881805,\n                                \"Y\": 0.7722770571708679\n                            }, {\n                                \"X\": 0.10445434600114822,\n                                \"Y\": 0.772335946559906\n                            }]\n                        },\n                        \"Confidence\": 60.195343017578125\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"REMARKS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"20. Remarks (if employee was off work for any length of time, please indicate time period and reason)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.543735921382904,\n                                \"Height\": 0.011043412610888481,\n                                \"Left\": 0.10453064739704132,\n                                \"Top\": 0.6820854544639587\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10453064739704132,\n                                \"Y\": 0.6824140548706055\n                            }, {\n                                \"X\": 0.6482604146003723,\n                                \"Y\": 0.6820854544639587\n                            }, {\n                                \"X\": 0.6482665538787842,\n                                \"Y\": 0.6928016543388367\n                            }, {\n                                \"X\": 0.10453373938798904,\n                                \"Y\": 0.6931288838386536\n                            }]\n                        },\n                        \"Confidence\": 53.144691467285156\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Annual salary is set at $494,167. This amount includes pension/profit sharing contributions and may vary depending upon firm-wide operations. Shareholder ownership is less than 5%.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.7826806902885437,\n                                \"Height\": 0.026889171451330185,\n                                \"Left\": 0.10484349727630615,\n                                \"Top\": 0.6937872171401978\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10484349727630615,\n                                \"Y\": 0.6942580938339233\n                            }, {\n                                \"X\": 0.8875057697296143,\n                                \"Y\": 0.6937872171401978\n                            }, {\n                                \"X\": 0.8875241875648499,\n                                \"Y\": 0.7202102541923523\n                            }, {\n                                \"X\": 0.1048511266708374,\n                                \"Y\": 0.7206764221191406\n                            }]\n                        },\n                        \"Confidence\": 53.144691467285156\n                    }]\n                }, {\n                    \"Type\": \"PRO_PAY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Pro Pay\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.038947828114032745,\n                                \"Height\": 0.008474407717585564,\n                                \"Left\": 0.46617811918258667,\n                                \"Top\": 0.6158045530319214\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.46617811918258667,\n                                \"Y\": 0.6158286333084106\n                            }, {\n                                \"X\": 0.5051217675209045,\n                                \"Y\": 0.6158045530319214\n                            }, {\n                                \"X\": 0.5051259398460388,\n                                \"Y\": 0.6242548823356628\n                            }, {\n                                \"X\": 0.466182142496109,\n                                \"Y\": 0.6242789626121521\n                            }]\n                        },\n                        \"Confidence\": 48.140533447265625\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09486240893602371,\n                                \"Height\": 0.010890369303524494,\n                                \"Left\": 0.5604642629623413,\n                                \"Top\": 0.6132083535194397\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5604642629623413,\n                                \"Y\": 0.613267183303833\n                            }, {\n                                \"X\": 0.6553204655647278,\n                                \"Y\": 0.6132083535194397\n                            }, {\n                                \"X\": 0.6553266644477844,\n                                \"Y\": 0.6240401268005371\n                            }, {\n                                \"X\": 0.5604699850082397,\n                                \"Y\": 0.6240987181663513\n                            }]\n                        },\n                        \"Confidence\": 48.140533447265625\n                    }]\n                }, {\n                    \"Type\": \"QUARTERS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Quarters\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04365886375308037,\n                                \"Height\": 0.007363055367022753,\n                                \"Left\": 0.4665577709674835,\n                                \"Top\": 0.602283239364624\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4665577709674835,\n                                \"Y\": 0.6023104190826416\n                            }, {\n                                \"X\": 0.5102129578590393,\n                                \"Y\": 0.602283239364624\n                            }, {\n                                \"X\": 0.5102166533470154,\n                                \"Y\": 0.609619140625\n                            }, {\n                                \"X\": 0.4665612578392029,\n                                \"Y\": 0.6096462607383728\n                            }]\n                        },\n                        \"Confidence\": 45.09844970703125\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09427838027477264,\n                                \"Height\": 0.020341960713267326,\n                                \"Left\": 0.560574471950531,\n                                \"Top\": 0.5896131992340088\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.560574471950531,\n                                \"Y\": 0.5896721482276917\n                            }, {\n                                \"X\": 0.6548411846160889,\n                                \"Y\": 0.5896131992340088\n                            }, {\n                                \"X\": 0.6548528671264648,\n                                \"Y\": 0.6098966598510742\n                            }, {\n                                \"X\": 0.5605851411819458,\n                                \"Y\": 0.6099551320075989\n                            }]\n                        },\n                        \"Confidence\": 45.09844970703125\n                    }]\n                }, {\n                    \"Type\": \"FLIGHT_OR_HAZARD\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Flight or Hazard\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03991776704788208,\n                                \"Height\": 0.018018459901213646,\n                                \"Left\": 0.46559780836105347,\n                                \"Top\": 0.5519447922706604\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.46559780836105347,\n                                \"Y\": 0.5519700646400452\n                            }, {\n                                \"X\": 0.5055066347122192,\n                                \"Y\": 0.5519447922706604\n                            }, {\n                                \"X\": 0.5055155754089355,\n                                \"Y\": 0.569938063621521\n                            }, {\n                                \"X\": 0.4656063914299011,\n                                \"Y\": 0.5699632167816162\n                            }]\n                        },\n                        \"Confidence\": 42.022674560546875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09426136314868927,\n                                \"Height\": 0.023003453388810158,\n                                \"Left\": 0.5601386427879333,\n                                \"Top\": 0.5482357144355774\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5601386427879333,\n                                \"Y\": 0.5482955574989319\n                            }, {\n                                \"X\": 0.6543868184089661,\n                                \"Y\": 0.5482357144355774\n                            }, {\n                                \"X\": 0.6544000506401062,\n                                \"Y\": 0.5711798071861267\n                            }, {\n                                \"X\": 0.5601507425308228,\n                                \"Y\": 0.571239173412323\n                            }]\n                        },\n                        \"Confidence\": 42.022674560546875\n                    }]\n                }, {\n                    \"Type\": \"RATIONS\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Rations\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03789077326655388,\n                                \"Height\": 0.007204690016806126,\n                                \"Left\": 0.4654795825481415,\n                                \"Top\": 0.5361419320106506\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4654795825481415,\n                                \"Y\": 0.5361661314964294\n                            }, {\n                                \"X\": 0.5033668279647827,\n                                \"Y\": 0.5361419320106506\n                            }, {\n                                \"X\": 0.5033703446388245,\n                                \"Y\": 0.5433225631713867\n                            }, {\n                                \"X\": 0.46548300981521606,\n                                \"Y\": 0.543346643447876\n                            }]\n                        },\n                        \"Confidence\": 40.804649353027344\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09381325542926788,\n                                \"Height\": 0.011305935680866241,\n                                \"Left\": 0.5594626069068909,\n                                \"Top\": 0.5329337120056152\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5594626069068909,\n                                \"Y\": 0.5329935550689697\n                            }, {\n                                \"X\": 0.6532694101333618,\n                                \"Y\": 0.5329337120056152\n                            }, {\n                                \"X\": 0.6532759070396423,\n                                \"Y\": 0.5441799759864807\n                            }, {\n                                \"X\": 0.5594685673713684,\n                                \"Y\": 0.5442396402359009\n                            }]\n                        },\n                        \"Confidence\": 40.804649353027344\n                    }]\n                }, {\n                    \"Type\": \"OVERSEAS_OR_COMBAT\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Overseas or Combat\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06150847673416138,\n                                \"Height\": 0.01767725870013237,\n                                \"Left\": 0.4657098352909088,\n                                \"Top\": 0.6325013041496277\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4657098352909088,\n                                \"Y\": 0.6325392127037048\n                            }, {\n                                \"X\": 0.5272093415260315,\n                                \"Y\": 0.6325013041496277\n                            }, {\n                                \"X\": 0.5272183418273926,\n                                \"Y\": 0.6501409411430359\n                            }, {\n                                \"X\": 0.46571823954582214,\n                                \"Y\": 0.6501786112785339\n                            }]\n                        },\n                        \"Confidence\": 40.389305114746094\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09522613883018494,\n                                \"Height\": 0.02322431094944477,\n                                \"Left\": 0.5602847337722778,\n                                \"Top\": 0.627275288105011\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5602847337722778,\n                                \"Y\": 0.6273339986801147\n                            }, {\n                                \"X\": 0.6554975509643555,\n                                \"Y\": 0.627275288105011\n                            }, {\n                                \"X\": 0.6555108428001404,\n                                \"Y\": 0.6504413485527039\n                            }, {\n                                \"X\": 0.560296893119812,\n                                \"Y\": 0.6504995822906494\n                            }]\n                        },\n                        \"Confidence\": 40.389305114746094\n                    }]\n                }, {\n                    \"Type\": \"CLOTHING\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Clothing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.038532547652721405,\n                                \"Height\": 0.008047714829444885,\n                                \"Left\": 0.46872061491012573,\n                                \"Top\": 0.5770948529243469\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.46872061491012573,\n                                \"Y\": 0.5771191120147705\n                            }, {\n                                \"X\": 0.5072491765022278,\n                                \"Y\": 0.5770948529243469\n                            }, {\n                                \"X\": 0.5072531700134277,\n                                \"Y\": 0.5851184725761414\n                            }, {\n                                \"X\": 0.46872442960739136,\n                                \"Y\": 0.5851426124572754\n                            }]\n                        },\n                        \"Confidence\": 33.50980758666992\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09609365463256836,\n                                \"Height\": 0.011550366878509521,\n                                \"Left\": 0.558059811592102,\n                                \"Top\": 0.5728185176849365\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.558059811592102,\n                                \"Y\": 0.5728789567947388\n                            }, {\n                                \"X\": 0.6541468501091003,\n                                \"Y\": 0.5728185176849365\n                            }, {\n                                \"X\": 0.6541534662246704,\n                                \"Y\": 0.5843086242675781\n                            }, {\n                                \"X\": 0.5580658316612244,\n                                \"Y\": 0.584368884563446\n                            }]\n                        },\n                        \"Confidence\": 33.50980758666992\n                    }]\n                }, {\n                    \"Type\": \"THRU\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Thru\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023700572550296783,\n                                \"Height\": 0.007177318911999464,\n                                \"Left\": 0.1726979911327362,\n                                \"Top\": 0.5496912598609924\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1726979911327362,\n                                \"Y\": 0.5497063398361206\n                            }, {\n                                \"X\": 0.19639615714550018,\n                                \"Y\": 0.5496912598609924\n                            }, {\n                                \"X\": 0.1963985711336136,\n                                \"Y\": 0.5568535923957825\n                            }, {\n                                \"X\": 0.17270031571388245,\n                                \"Y\": 0.5568686127662659\n                            }]\n                        },\n                        \"Confidence\": 27.315643310546875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"9/30/20\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05362435430288315,\n                                \"Height\": 0.011388812214136124,\n                                \"Left\": 0.20675766468048096,\n                                \"Top\": 0.5475005507469177\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20675766468048096,\n                                \"Y\": 0.5475345849990845\n                            }, {\n                                \"X\": 0.26037782430648804,\n                                \"Y\": 0.5475005507469177\n                            }, {\n                                \"X\": 0.2603820264339447,\n                                \"Y\": 0.558855414390564\n                            }, {\n                                \"X\": 0.20676155388355255,\n                                \"Y\": 0.5588893294334412\n                            }]\n                        },\n                        \"Confidence\": 27.315643310546875\n                    }]\n                }, {\n                    \"Type\": \"VARIABLE_HOUSING_ALLOWANCE\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Variable Housing Allowance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08483999222517014,\n                                \"Height\": 0.01785394921898842,\n                                \"Left\": 0.4656065106391907,\n                                \"Top\": 0.6586570739746094\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4656065106391907,\n                                \"Y\": 0.6587088108062744\n                            }, {\n                                \"X\": 0.5504372119903564,\n                                \"Y\": 0.6586570739746094\n                            }, {\n                                \"X\": 0.5504465103149414,\n                                \"Y\": 0.6764596104621887\n                            }, {\n                                \"X\": 0.46561500430107117,\n                                \"Y\": 0.6765109896659851\n                            }]\n                        },\n                        \"Confidence\": 25.88154411315918\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09417641162872314,\n                                \"Height\": 0.022841494530439377,\n                                \"Left\": 0.560148298740387,\n                                \"Top\": 0.6541649103164673\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.560148298740387,\n                                \"Y\": 0.6542224287986755\n                            }, {\n                                \"X\": 0.6543116569519043,\n                                \"Y\": 0.6541649103164673\n                            }, {\n                                \"X\": 0.6543247699737549,\n                                \"Y\": 0.6769493818283081\n                            }, {\n                                \"X\": 0.5601603388786316,\n                                \"Y\": 0.6770064234733582\n                            }]\n                        },\n                        \"Confidence\": 25.88154411315918\n                    }]\n                }, {\n                    \"Type\": \"BASE_PAY\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Base Pay\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04635161533951759,\n                                \"Height\": 0.008448351174592972,\n                                \"Left\": 0.4663575291633606,\n                                \"Top\": 0.522325873374939\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4663575291633606,\n                                \"Y\": 0.5223555564880371\n                            }, {\n                                \"X\": 0.5127049088478088,\n                                \"Y\": 0.522325873374939\n                            }, {\n                                \"X\": 0.5127091407775879,\n                                \"Y\": 0.5307445526123047\n                            }, {\n                                \"X\": 0.46636155247688293,\n                                \"Y\": 0.5307741761207581\n                            }]\n                        },\n                        \"Confidence\": 24.891843795776367\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09266749769449234,\n                                \"Height\": 0.013555323705077171,\n                                \"Left\": 0.5604006052017212,\n                                \"Top\": 0.517262876033783\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5604006052017212,\n                                \"Y\": 0.5173223614692688\n                            }, {\n                                \"X\": 0.6530603766441345,\n                                \"Y\": 0.517262876033783\n                            }, {\n                                \"X\": 0.6530681252479553,\n                                \"Y\": 0.5307589769363403\n                            }, {\n                                \"X\": 0.5604076981544495,\n                                \"Y\": 0.5308181643486023\n                            }]\n                        },\n                        \"Confidence\": 24.891843795776367\n                    }]\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 24,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"1003\",\n                \"Confidence\": 99.97088623046875\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"1\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"LendingDocument\": {\n                \"LendingFields\": [{\n                    \"Type\": \"CURRENT_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_STREET\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"Alley\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.027483731508255005,\n                                \"Height\": 0.009013468399643898,\n                                \"Left\": 0.6764912009239197,\n                                \"Top\": 0.5376898050308228\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6764912009239197,\n                                \"Y\": 0.5376973152160645\n                            }, {\n                                \"X\": 0.7039720416069031,\n                                \"Y\": 0.5376898050308228\n                            }, {\n                                \"X\": 0.7039749622344971,\n                                \"Y\": 0.5466957688331604\n                            }, {\n                                \"X\": 0.6764940023422241,\n                                \"Y\": 0.5467032790184021\n                            }]\n                        },\n                        \"Confidence\": 67.0\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_CITY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_RENT_AMOUNT_PER_MONTH\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_OWN_HOUSING\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015999289229512215,\n                                \"Height\": 0.007450919132679701,\n                                \"Left\": 0.8796045184135437,\n                                \"Top\": 0.16161438822746277\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8796045184135437,\n                                \"Y\": 0.1616194099187851\n                            }, {\n                                \"X\": 0.8956009745597839,\n                                \"Y\": 0.16161438822746277\n                            }, {\n                                \"X\": 0.8956038355827332,\n                                \"Y\": 0.16906028985977173\n                            }, {\n                                \"X\": 0.8796073198318481,\n                                \"Y\": 0.16906529664993286\n                            }]\n                        },\n                        \"Confidence\": 72.0\n                    }]\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_NO_PRIMARY_HOUSING_EXPENSE\",\n                    \"ValueDetections\": [{\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015999289229512215,\n                                \"Height\": 0.007450919132679701,\n                                \"Left\": 0.8796045184135437,\n                                \"Top\": 0.16161438822746277\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8796045184135437,\n                                \"Y\": 0.1616194099187851\n                            }, {\n                                \"X\": 0.8956009745597839,\n                                \"Y\": 0.16161438822746277\n                            }, {\n                                \"X\": 0.8956038355827332,\n                                \"Y\": 0.16906028985977173\n                            }, {\n                                \"X\": 0.8796073198318481,\n                                \"Y\": 0.16906529664993286\n                            }]\n                        },\n                        \"Confidence\": 54.000003814697266\n                    }]\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_EMPLOYER_UNIT_NUMBER\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_EMPLOYER_COUNTRY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_RENT_PER_MONTH\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_OWN_HOUSING\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_ZIP_CODE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_STATE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_LENGTH_YEARS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"CURRENT_ADDRESS_LENGTH_MONTHS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_LENGTH_MONTHS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_ADDRESS_LENGTH_YEARS\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_STREET\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"MAILING_ADDRESS_CITY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FORMER_NO_PRIMARY_HOUSING_EXPENSE\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"EMPLOYMENT_DOES_NOT_APPLY\",\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"HOA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026380758732557297,\n                                \"Height\": 0.007677968125790358,\n                                \"Left\": 0.7373583912849426,\n                                \"Top\": 0.11311892420053482\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7373583912849426,\n                                \"Y\": 0.11312734335660934\n                            }, {\n                                \"X\": 0.7637365460395813,\n                                \"Y\": 0.11311892420053482\n                            }, {\n                                \"X\": 0.7637391686439514,\n                                \"Y\": 0.12078849971294403\n                            }, {\n                                \"X\": 0.737360954284668,\n                                \"Y\": 0.12079689651727676\n                            }]\n                        },\n                        \"Confidence\": 99.67881774902344\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.006047878414392471,\n                                \"Height\": 0.008338428102433681,\n                                \"Left\": 0.7670338153839111,\n                                \"Top\": 0.11311594396829605\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7670338153839111,\n                                \"Y\": 0.11311787366867065\n                            }, {\n                                \"X\": 0.7730788588523865,\n                                \"Y\": 0.11311594396829605\n                            }, {\n                                \"X\": 0.7730817198753357,\n                                \"Y\": 0.1214524507522583\n                            }, {\n                                \"X\": 0.7670366764068604,\n                                \"Y\": 0.12145437300205231\n                            }]\n                        },\n                        \"Confidence\": 91.54379272460938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Special Assessments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11430062353610992,\n                                \"Height\": 0.009039536118507385,\n                                \"Left\": 0.40324777364730835,\n                                \"Top\": 0.11286400258541107\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40324777364730835,\n                                \"Y\": 0.11290045827627182\n                            }, {\n                                \"X\": 0.5175460577011108,\n                                \"Y\": 0.11286400258541107\n                            }, {\n                                \"X\": 0.5175483822822571,\n                                \"Y\": 0.12186718732118607\n                            }, {\n                                \"X\": 0.40324974060058594,\n                                \"Y\": 0.12190353870391846\n                            }]\n                        },\n                        \"Confidence\": 99.91520690917969\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.007145905867218971,\n                                \"Height\": 0.008338560350239277,\n                                \"Left\": 0.520293653011322,\n                                \"Top\": 0.11286084353923798\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.520293653011322,\n                                \"Y\": 0.11286312341690063\n                            }, {\n                                \"X\": 0.5274373888969421,\n                                \"Y\": 0.11286084353923798\n                            }, {\n                                \"X\": 0.5274395942687988,\n                                \"Y\": 0.12119713425636292\n                            }, {\n                                \"X\": 0.5202957987785339,\n                                \"Y\": 0.12119940668344498\n                            }]\n                        },\n                        \"Confidence\": 97.3731460571289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Contract Price\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07638002932071686,\n                                \"Height\": 0.007693015038967133,\n                                \"Left\": 0.0444464311003685,\n                                \"Top\": 0.23369945585727692\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0444464311003685,\n                                \"Y\": 0.23372283577919006\n                            }, {\n                                \"X\": 0.12082552909851074,\n                                \"Y\": 0.23369945585727692\n                            }, {\n                                \"X\": 0.12082646787166595,\n                                \"Y\": 0.2413691282272339\n                            }, {\n                                \"X\": 0.0444471649825573,\n                                \"Y\": 0.24139246344566345\n                            }]\n                        },\n                        \"Confidence\": 98.4781723022461\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.007144479546695948,\n                                \"Height\": 0.008338803425431252,\n                                \"Left\": 0.12412245571613312,\n                                \"Top\": 0.23336279392242432\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12412245571613312,\n                                \"Y\": 0.23336496949195862\n                            }, {\n                                \"X\": 0.13126589357852936,\n                                \"Y\": 0.23336279392242432\n                            }, {\n                                \"X\": 0.13126693665981293,\n                                \"Y\": 0.24169941246509552\n                            }, {\n                                \"X\": 0.1241234838962555,\n                                \"Y\": 0.24170158803462982\n                            }]\n                        },\n                        \"Confidence\": 93.77072143554688\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"R.E. Taxes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05825458839535713,\n                                \"Height\": 0.007688181009143591,\n                                \"Left\": 0.7664759755134583,\n                                \"Top\": 0.08875700831413269\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7664759755134583,\n                                \"Y\": 0.08877573907375336\n                            }, {\n                                \"X\": 0.8247277736663818,\n                                \"Y\": 0.08875700831413269\n                            }, {\n                                \"X\": 0.8247305750846863,\n                                \"Y\": 0.09642650932073593\n                            }, {\n                                \"X\": 0.7664785981178284,\n                                \"Y\": 0.09644519537687302\n                            }]\n                        },\n                        \"Confidence\": 98.47402954101562\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.007696730084717274,\n                                \"Height\": 0.008338887244462967,\n                                \"Left\": 0.8274754285812378,\n                                \"Top\": 0.08842019736766815\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8274754285812378,\n                                \"Y\": 0.08842267096042633\n                            }, {\n                                \"X\": 0.8351691365242004,\n                                \"Y\": 0.08842019736766815\n                            }, {\n                                \"X\": 0.835172176361084,\n                                \"Y\": 0.09675661474466324\n                            }, {\n                                \"X\": 0.8274784684181213,\n                                \"Y\": 0.09675908833742142\n                            }]\n                        },\n                        \"Confidence\": 95.01409912109375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Commercial\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06430650502443314,\n                                \"Height\": 0.007689761929214001,\n                                \"Left\": 0.8314189910888672,\n                                \"Top\": 0.35485780239105225\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8314189910888672,\n                                \"Y\": 0.35487666726112366\n                            }, {\n                                \"X\": 0.895722508430481,\n                                \"Y\": 0.35485780239105225\n                            }, {\n                                \"X\": 0.8957254886627197,\n                                \"Y\": 0.3625287413597107\n                            }, {\n                                \"X\": 0.8314217329025269,\n                                \"Y\": 0.3625475764274597\n                            }]\n                        },\n                        \"Confidence\": 99.96720886230469\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01044565811753273,\n                                \"Height\": 0.007340531796216965,\n                                \"Left\": 0.9528821110725403,\n                                \"Top\": 0.35517147183418274\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9528821110725403,\n                                \"Y\": 0.35517454147338867\n                            }, {\n                                \"X\": 0.963324785232544,\n                                \"Y\": 0.35517147183418274\n                            }, {\n                                \"X\": 0.9633277654647827,\n                                \"Y\": 0.36250895261764526\n                            }, {\n                                \"X\": 0.952885091304779,\n                                \"Y\": 0.3625120222568512\n                            }]\n                        },\n                        \"Confidence\": 99.78585815429688\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"One-Unit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05001634359359741,\n                                \"Height\": 0.00835258886218071,\n                                \"Left\": 0.830856204032898,\n                                \"Top\": 0.31850916147232056\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.830856204032898,\n                                \"Y\": 0.318524032831192\n                            }, {\n                                \"X\": 0.8808693885803223,\n                                \"Y\": 0.31850916147232056\n                            }, {\n                                \"X\": 0.8808725476264954,\n                                \"Y\": 0.3268469274044037\n                            }, {\n                                \"X\": 0.8308591842651367,\n                                \"Y\": 0.32686176896095276\n                            }]\n                        },\n                        \"Confidence\": 99.54151153564453\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010445663705468178,\n                                \"Height\": 0.007673903368413448,\n                                \"Left\": 0.9528672695159912,\n                                \"Top\": 0.31848466396331787\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9528672695159912,\n                                \"Y\": 0.3184877634048462\n                            }, {\n                                \"X\": 0.9633098244667053,\n                                \"Y\": 0.31848466396331787\n                            }, {\n                                \"X\": 0.9633129239082336,\n                                \"Y\": 0.3261554539203644\n                            }, {\n                                \"X\": 0.9528703689575195,\n                                \"Y\": 0.3261585533618927\n                            }]\n                        },\n                        \"Confidence\": 99.65802764892578\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"2-4 Unit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04342095926403999,\n                                \"Height\": 0.007350104860961437,\n                                \"Left\": 0.83141028881073,\n                                \"Top\": 0.33085086941719055\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.83141028881073,\n                                \"Y\": 0.33086371421813965\n                            }, {\n                                \"X\": 0.8748284578323364,\n                                \"Y\": 0.33085086941719055\n                            }, {\n                                \"X\": 0.8748311996459961,\n                                \"Y\": 0.33818814158439636\n                            }, {\n                                \"X\": 0.8314129114151001,\n                                \"Y\": 0.33820095658302307\n                            }]\n                        },\n                        \"Confidence\": 97.89408874511719\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01099531538784504,\n                                \"Height\": 0.007674114778637886,\n                                \"Left\": 0.9523225426673889,\n                                \"Top\": 0.33049115538597107\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9523225426673889,\n                                \"Y\": 0.33049440383911133\n                            }, {\n                                \"X\": 0.9633147120475769,\n                                \"Y\": 0.33049115538597107\n                            }, {\n                                \"X\": 0.9633178114891052,\n                                \"Y\": 0.33816203474998474\n                            }, {\n                                \"X\": 0.9523256421089172,\n                                \"Y\": 0.338165283203125\n                            }]\n                        },\n                        \"Confidence\": 99.82276916503906\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Multi-Family\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06540610641241074,\n                                \"Height\": 0.00935768149793148,\n                                \"Left\": 0.8319641947746277,\n                                \"Top\": 0.3428507149219513\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8319641947746277,\n                                \"Y\": 0.34286999702453613\n                            }, {\n                                \"X\": 0.8973667025566101,\n                                \"Y\": 0.3428507149219513\n                            }, {\n                                \"X\": 0.8973703384399414,\n                                \"Y\": 0.35218918323516846\n                            }, {\n                                \"X\": 0.8319675922393799,\n                                \"Y\": 0.35220837593078613\n                            }]\n                        },\n                        \"Confidence\": 99.86665344238281\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010995361022651196,\n                                \"Height\": 0.007674165070056915,\n                                \"Left\": 0.9523274898529053,\n                                \"Top\": 0.34283125400543213\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9523274898529053,\n                                \"Y\": 0.3428345024585724\n                            }, {\n                                \"X\": 0.963319718837738,\n                                \"Y\": 0.34283125400543213\n                            }, {\n                                \"X\": 0.9633228778839111,\n                                \"Y\": 0.3505021929740906\n                            }, {\n                                \"X\": 0.9523305892944336,\n                                \"Y\": 0.35050544142723083\n                            }]\n                        },\n                        \"Confidence\": 99.77151489257812\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Basement Finish\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08958631008863449,\n                                \"Height\": 0.007361811585724354,\n                                \"Left\": 0.2780606746673584,\n                                \"Top\": 0.6745402812957764\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2780606746673584,\n                                \"Y\": 0.6745635271072388\n                            }, {\n                                \"X\": 0.3676454722881317,\n                                \"Y\": 0.6745402812957764\n                            }, {\n                                \"X\": 0.3676469922065735,\n                                \"Y\": 0.6818788647651672\n                            }, {\n                                \"X\": 0.27806195616722107,\n                                \"Y\": 0.6819021105766296\n                            }]\n                        },\n                        \"Confidence\": 99.77827453613281\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.011543937027454376,\n                                \"Height\": 0.00767527474090457,\n                                \"Left\": 0.4885600805282593,\n                                \"Top\": 0.6741722822189331\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4885600805282593,\n                                \"Y\": 0.6741752624511719\n                            }, {\n                                \"X\": 0.5001021027565002,\n                                \"Y\": 0.6741722822189331\n                            }, {\n                                \"X\": 0.5001040101051331,\n                                \"Y\": 0.6818445920944214\n                            }, {\n                                \"X\": 0.4885619878768921,\n                                \"Y\": 0.6818475723266602\n                            }]\n                        },\n                        \"Confidence\": 99.63706970214844\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030780533328652382,\n                                \"Height\": 0.007346426602452993,\n                                \"Left\": 0.8319730758666992,\n                                \"Top\": 0.36720767617225647\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8319730758666992,\n                                \"Y\": 0.36721667647361755\n                            }, {\n                                \"X\": 0.8627508282661438,\n                                \"Y\": 0.36720767617225647\n                            }, {\n                                \"X\": 0.8627535700798035,\n                                \"Y\": 0.3745451271533966\n                            }, {\n                                \"X\": 0.8319756984710693,\n                                \"Y\": 0.3745540976524353\n                            }]\n                        },\n                        \"Confidence\": 99.94561004638672\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.010995726101100445,\n                                \"Height\": 0.008341309614479542,\n                                \"Left\": 0.9534361958503723,\n                                \"Top\": 0.36617738008499146\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9534361958503723,\n                                \"Y\": 0.3661805987358093\n                            }, {\n                                \"X\": 0.9644284844398499,\n                                \"Y\": 0.36617738008499146\n                            }, {\n                                \"X\": 0.964431881904602,\n                                \"Y\": 0.37451550364494324\n                            }, {\n                                \"X\": 0.9534395337104797,\n                                \"Y\": 0.3745186924934387\n                            }]\n                        },\n                        \"Confidence\": 99.87994384765625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02033674344420433,\n                                \"Height\": 0.007343629840761423,\n                                \"Left\": 0.445114403963089,\n                                \"Top\": 0.5621041655540466\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.445114403963089,\n                                \"Y\": 0.5621097087860107\n                            }, {\n                                \"X\": 0.46544939279556274,\n                                \"Y\": 0.5621041655540466\n                            }, {\n                                \"X\": 0.4654511511325836,\n                                \"Y\": 0.5694422721862793\n                            }, {\n                                \"X\": 0.4451161026954651,\n                                \"Y\": 0.5694478154182434\n                            }]\n                        },\n                        \"Confidence\": 99.9521484375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014880159869790077,\n                                \"Height\": 0.0087819155305624,\n                                \"Left\": 0.42784789204597473,\n                                \"Top\": 0.5622556209564209\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42784789204597473,\n                                \"Y\": 0.5622596740722656\n                            }, {\n                                \"X\": 0.4427260160446167,\n                                \"Y\": 0.5622556209564209\n                            }, {\n                                \"X\": 0.44272804260253906,\n                                \"Y\": 0.5710334777832031\n                            }, {\n                                \"X\": 0.4278498888015747,\n                                \"Y\": 0.5710375308990479\n                            }]\n                        },\n                        \"Confidence\": 99.92051696777344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"25-75%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04341358691453934,\n                                \"Height\": 0.007683100178837776,\n                                \"Left\": 0.19392305612564087,\n                                \"Top\": 0.33070608973503113\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19392305612564087,\n                                \"Y\": 0.3307189345359802\n                            }, {\n                                \"X\": 0.23733539879322052,\n                                \"Y\": 0.33070608973503113\n                            }, {\n                                \"X\": 0.2373366355895996,\n                                \"Y\": 0.33837637305259705\n                            }, {\n                                \"X\": 0.1939241737127304,\n                                \"Y\": 0.33838918805122375\n                            }]\n                        },\n                        \"Confidence\": 99.92150115966797\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014610770158469677,\n                                \"Height\": 0.008653145283460617,\n                                \"Left\": 0.1762416958808899,\n                                \"Top\": 0.33048227429389954\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1762416958808899,\n                                \"Y\": 0.33048659563064575\n                            }, {\n                                \"X\": 0.19085119664669037,\n                                \"Y\": 0.33048227429389954\n                            }, {\n                                \"X\": 0.19085246324539185,\n                                \"Y\": 0.33913111686706543\n                            }, {\n                                \"X\": 0.1762429028749466,\n                                \"Y\": 0.33913543820381165\n                            }]\n                        },\n                        \"Confidence\": 99.79877471923828\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030233455821871758,\n                                \"Height\": 0.0073468429036438465,\n                                \"Left\": 0.6611701846122742,\n                                \"Top\": 0.7611904144287109\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6611701846122742,\n                                \"Y\": 0.7611980438232422\n                            }, {\n                                \"X\": 0.6914013624191284,\n                                \"Y\": 0.7611904144287109\n                            }, {\n                                \"X\": 0.6914036273956299,\n                                \"Y\": 0.7685297131538391\n                            }, {\n                                \"X\": 0.6611724495887756,\n                                \"Y\": 0.7685372829437256\n                            }]\n                        },\n                        \"Confidence\": 99.49432373046875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014660299755632877,\n                                \"Height\": 0.008824103511869907,\n                                \"Left\": 0.6427140831947327,\n                                \"Top\": 0.7610399127006531\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6427140831947327,\n                                \"Y\": 0.7610436081886292\n                            }, {\n                                \"X\": 0.6573716998100281,\n                                \"Y\": 0.7610399127006531\n                            }, {\n                                \"X\": 0.657374382019043,\n                                \"Y\": 0.7698603272438049\n                            }, {\n                                \"X\": 0.6427167057991028,\n                                \"Y\": 0.769864022731781\n                            }]\n                        },\n                        \"Confidence\": 99.89974212646484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"In Balance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.055508069694042206,\n                                \"Height\": 0.00735345808789134,\n                                \"Left\": 0.5401339530944824,\n                                \"Top\": 0.33093351125717163\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5401339530944824,\n                                \"Y\": 0.33094993233680725\n                            }, {\n                                \"X\": 0.5956399440765381,\n                                \"Y\": 0.33093351125717163\n                            }, {\n                                \"X\": 0.5956420302391052,\n                                \"Y\": 0.3382705748081207\n                            }, {\n                                \"X\": 0.5401358604431152,\n                                \"Y\": 0.33828696608543396\n                            }]\n                        },\n                        \"Confidence\": 97.67024230957031\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014478180557489395,\n                                \"Height\": 0.008973692543804646,\n                                \"Left\": 0.5224317908287048,\n                                \"Top\": 0.33062824606895447\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5224317908287048,\n                                \"Y\": 0.3306325376033783\n                            }, {\n                                \"X\": 0.5369076132774353,\n                                \"Y\": 0.33062824606895447\n                            }, {\n                                \"X\": 0.5369099974632263,\n                                \"Y\": 0.3395976722240448\n                            }, {\n                                \"X\": 0.5224341154098511,\n                                \"Y\": 0.33960196375846863\n                            }]\n                        },\n                        \"Confidence\": 99.89978790283203\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"3-6 mths\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.048913437873125076,\n                                \"Height\": 0.007351503241807222,\n                                \"Left\": 0.5395875573158264,\n                                \"Top\": 0.3429417312145233\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5395875573158264,\n                                \"Y\": 0.34295615553855896\n                            }, {\n                                \"X\": 0.5884989500045776,\n                                \"Y\": 0.3429417312145233\n                            }, {\n                                \"X\": 0.5885009765625,\n                                \"Y\": 0.3502788841724396\n                            }, {\n                                \"X\": 0.5395894646644592,\n                                \"Y\": 0.35029324889183044\n                            }]\n                        },\n                        \"Confidence\": 99.34151458740234\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014761451631784439,\n                                \"Height\": 0.008886241354048252,\n                                \"Left\": 0.5223854780197144,\n                                \"Top\": 0.3426613211631775\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5223854780197144,\n                                \"Y\": 0.3426656723022461\n                            }, {\n                                \"X\": 0.5371446013450623,\n                                \"Y\": 0.3426613211631775\n                            }, {\n                                \"X\": 0.5371469259262085,\n                                \"Y\": 0.35154321789741516\n                            }, {\n                                \"X\": 0.5223878026008606,\n                                \"Y\": 0.35154756903648376\n                            }]\n                        },\n                        \"Confidence\": 99.88167572021484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Woodstove(s) #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08080202341079712,\n                                \"Height\": 0.009027625434100628,\n                                \"Left\": 0.661159098148346,\n                                \"Top\": 0.7248152494430542\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.661159098148346,\n                                \"Y\": 0.7248358130455017\n                            }, {\n                                \"X\": 0.7419581413269043,\n                                \"Y\": 0.7248152494430542\n                            }, {\n                                \"X\": 0.7419611215591431,\n                                \"Y\": 0.7338224053382874\n                            }, {\n                                \"X\": 0.6611618399620056,\n                                \"Y\": 0.7338429093360901\n                            }]\n                        },\n                        \"Confidence\": 83.64122772216797\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01478724554181099,\n                                \"Height\": 0.008978961035609245,\n                                \"Left\": 0.6428616046905518,\n                                \"Top\": 0.7244182825088501\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6428616046905518,\n                                \"Y\": 0.724422037601471\n                            }, {\n                                \"X\": 0.657646119594574,\n                                \"Y\": 0.7244182825088501\n                            }, {\n                                \"X\": 0.6576488614082336,\n                                \"Y\": 0.7333934903144836\n                            }, {\n                                \"X\": 0.6428642868995667,\n                                \"Y\": 0.7333972454071045\n                            }]\n                        },\n                        \"Confidence\": 99.77412414550781\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019791273400187492,\n                                \"Height\": 0.007344746496528387,\n                                \"Left\": 0.6903562545776367,\n                                \"Top\": 0.9333353638648987\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6903562545776367,\n                                \"Y\": 0.9333400130271912\n                            }, {\n                                \"X\": 0.7101451754570007,\n                                \"Y\": 0.9333353638648987\n                            }, {\n                                \"X\": 0.710147500038147,\n                                \"Y\": 0.9406755566596985\n                            }, {\n                                \"X\": 0.690358579158783,\n                                \"Y\": 0.9406801462173462\n                            }]\n                        },\n                        \"Confidence\": 99.97650909423828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01490344014018774,\n                                \"Height\": 0.009050910361111164,\n                                \"Left\": 0.6721213459968567,\n                                \"Top\": 0.933093249797821\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6721213459968567,\n                                \"Y\": 0.933096706867218\n                            }, {\n                                \"X\": 0.6870219111442566,\n                                \"Y\": 0.933093249797821\n                            }, {\n                                \"X\": 0.6870247721672058,\n                                \"Y\": 0.9421406984329224\n                            }, {\n                                \"X\": 0.6721240878105164,\n                                \"Y\": 0.9421441555023193\n                            }]\n                        },\n                        \"Confidence\": 99.93222045898438\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015943706035614014,\n                                \"Height\": 0.0073438906110823154,\n                                \"Left\": 0.7403783798217773,\n                                \"Top\": 0.9333246350288391\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7403783798217773,\n                                \"Y\": 0.93332839012146\n                            }, {\n                                \"X\": 0.7563195824623108,\n                                \"Y\": 0.9333246350288391\n                            }, {\n                                \"X\": 0.7563220858573914,\n                                \"Y\": 0.9406648278236389\n                            }, {\n                                \"X\": 0.7403808236122131,\n                                \"Y\": 0.940668523311615\n                            }]\n                        },\n                        \"Confidence\": 99.32715606689453\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014746597968041897,\n                                \"Height\": 0.009056867100298405,\n                                \"Left\": 0.7218990921974182,\n                                \"Top\": 0.9329994916915894\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7218990921974182,\n                                \"Y\": 0.9330029487609863\n                            }, {\n                                \"X\": 0.7366427183151245,\n                                \"Y\": 0.9329994916915894\n                            }, {\n                                \"X\": 0.7366456985473633,\n                                \"Y\": 0.942052960395813\n                            }, {\n                                \"X\": 0.721902072429657,\n                                \"Y\": 0.9420563578605652\n                            }]\n                        },\n                        \"Confidence\": 99.93099975585938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"One with Accessory Unit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12365706264972687,\n                                \"Height\": 0.009038647636771202,\n                                \"Left\": 0.14780369400978088,\n                                \"Top\": 0.6378731727600098\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14780369400978088,\n                                \"Y\": 0.6379057765007019\n                            }, {\n                                \"X\": 0.2714592218399048,\n                                \"Y\": 0.6378731727600098\n                            }, {\n                                \"X\": 0.27146077156066895,\n                                \"Y\": 0.6468793153762817\n                            }, {\n                                \"X\": 0.1478048712015152,\n                                \"Y\": 0.6469117999076843\n                            }]\n                        },\n                        \"Confidence\": 99.66541290283203\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015039964579045773,\n                                \"Height\": 0.009034705348312855,\n                                \"Left\": 0.12937863171100616,\n                                \"Top\": 0.6376270651817322\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12937863171100616,\n                                \"Y\": 0.6376309990882874\n                            }, {\n                                \"X\": 0.1444174200296402,\n                                \"Y\": 0.6376270651817322\n                            }, {\n                                \"X\": 0.1444185972213745,\n                                \"Y\": 0.6466578245162964\n                            }, {\n                                \"X\": 0.1293797492980957,\n                                \"Y\": 0.6466617584228516\n                            }]\n                        },\n                        \"Confidence\": 99.93358612060547\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Increasing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.053858283907175064,\n                                \"Height\": 0.009020388126373291,\n                                \"Left\": 0.4483552575111389,\n                                \"Top\": 0.31862175464630127\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4483552575111389,\n                                \"Y\": 0.31863775849342346\n                            }, {\n                                \"X\": 0.5022112727165222,\n                                \"Y\": 0.31862175464630127\n                            }, {\n                                \"X\": 0.5022135376930237,\n                                \"Y\": 0.32762616872787476\n                            }, {\n                                \"X\": 0.44835737347602844,\n                                \"Y\": 0.32764214277267456\n                            }]\n                        },\n                        \"Confidence\": 99.93958282470703\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014824154786765575,\n                                \"Height\": 0.009327053092420101,\n                                \"Left\": 0.4296242892742157,\n                                \"Top\": 0.31797999143600464\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4296242892742157,\n                                \"Y\": 0.317984402179718\n                            }, {\n                                \"X\": 0.44444629549980164,\n                                \"Y\": 0.31797999143600464\n                            }, {\n                                \"X\": 0.44444844126701355,\n                                \"Y\": 0.3273026645183563\n                            }, {\n                                \"X\": 0.4296264052391052,\n                                \"Y\": 0.3273070454597473\n                            }]\n                        },\n                        \"Confidence\": 99.93709564208984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Over 6 mths\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06375319510698318,\n                                \"Height\": 0.007689444348216057,\n                                \"Left\": 0.6170766353607178,\n                                \"Top\": 0.34291452169418335\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6170766353607178,\n                                \"Y\": 0.34293332695961\n                            }, {\n                                \"X\": 0.6808274388313293,\n                                \"Y\": 0.34291452169418335\n                            }, {\n                                \"X\": 0.6808298230171204,\n                                \"Y\": 0.3505852520465851\n                            }, {\n                                \"X\": 0.6170788407325745,\n                                \"Y\": 0.35060396790504456\n                            }]\n                        },\n                        \"Confidence\": 97.52863311767578\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015011980198323727,\n                                \"Height\": 0.009104232303798199,\n                                \"Left\": 0.5986725091934204,\n                                \"Top\": 0.34265199303627014\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5986725091934204,\n                                \"Y\": 0.3426564037799835\n                            }, {\n                                \"X\": 0.6136819124221802,\n                                \"Y\": 0.34265199303627014\n                            }, {\n                                \"X\": 0.6136845350265503,\n                                \"Y\": 0.35175180435180664\n                            }, {\n                                \"X\": 0.5986751317977905,\n                                \"Y\": 0.35175621509552\n                            }]\n                        },\n                        \"Confidence\": 99.9388427734375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015941187739372253,\n                                \"Height\": 0.0073417779058218,\n                                \"Left\": 0.9456931948661804,\n                                \"Top\": 0.24578122794628143\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9456931948661804,\n                                \"Y\": 0.24578610062599182\n                            }, {\n                                \"X\": 0.9616314172744751,\n                                \"Y\": 0.24578122794628143\n                            }, {\n                                \"X\": 0.9616343975067139,\n                                \"Y\": 0.2531181573867798\n                            }, {\n                                \"X\": 0.9456961154937744,\n                                \"Y\": 0.253123015165329\n                            }]\n                        },\n                        \"Confidence\": 99.90878295898438\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014784851111471653,\n                                \"Height\": 0.00913902185857296,\n                                \"Left\": 0.9279414415359497,\n                                \"Top\": 0.24522675573825836\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9279414415359497,\n                                \"Y\": 0.2452312558889389\n                            }, {\n                                \"X\": 0.9427226185798645,\n                                \"Y\": 0.24522675573825836\n                            }, {\n                                \"X\": 0.9427262544631958,\n                                \"Y\": 0.25436127185821533\n                            }, {\n                                \"X\": 0.9279450178146362,\n                                \"Y\": 0.2543657720088959\n                            }]\n                        },\n                        \"Confidence\": 99.92179870605469\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019787022843956947,\n                                \"Height\": 0.007342617958784103,\n                                \"Left\": 0.8302497863769531,\n                                \"Top\": 0.16177766025066376\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8302497863769531,\n                                \"Y\": 0.1617838740348816\n                            }, {\n                                \"X\": 0.8500340580940247,\n                                \"Y\": 0.16177766025066376\n                            }, {\n                                \"X\": 0.8500367999076843,\n                                \"Y\": 0.16911408305168152\n                            }, {\n                                \"X\": 0.8302524089813232,\n                                \"Y\": 0.16912028193473816\n                            }]\n                        },\n                        \"Confidence\": 99.98448944091797\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014862850308418274,\n                                \"Height\": 0.009086978621780872,\n                                \"Left\": 0.811813235282898,\n                                \"Top\": 0.1613653302192688\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.811813235282898,\n                                \"Y\": 0.16136999428272247\n                            }, {\n                                \"X\": 0.8266728520393372,\n                                \"Y\": 0.1613653302192688\n                            }, {\n                                \"X\": 0.8266761302947998,\n                                \"Y\": 0.17044766247272491\n                            }, {\n                                \"X\": 0.8118165135383606,\n                                \"Y\": 0.1704523116350174\n                            }]\n                        },\n                        \"Confidence\": 99.93407440185547\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01593962125480175,\n                                \"Height\": 0.007341539487242699,\n                                \"Left\": 0.6890367865562439,\n                                \"Top\": 0.2338540256023407\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6890367865562439,\n                                \"Y\": 0.2338588982820511\n                            }, {\n                                \"X\": 0.7049740552902222,\n                                \"Y\": 0.2338540256023407\n                            }, {\n                                \"X\": 0.7049764394760132,\n                                \"Y\": 0.24119070172309875\n                            }, {\n                                \"X\": 0.6890391111373901,\n                                \"Y\": 0.24119555950164795\n                            }]\n                        },\n                        \"Confidence\": 99.86483764648438\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014798791147768497,\n                                \"Height\": 0.009189488366246223,\n                                \"Left\": 0.674127995967865,\n                                \"Top\": 0.23300573229789734\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.674127995967865,\n                                \"Y\": 0.23301026225090027\n                            }, {\n                                \"X\": 0.6889238953590393,\n                                \"Y\": 0.23300573229789734\n                            }, {\n                                \"X\": 0.6889268159866333,\n                                \"Y\": 0.24219070374965668\n                            }, {\n                                \"X\": 0.6741308569908142,\n                                \"Y\": 0.2421952188014984\n                            }]\n                        },\n                        \"Confidence\": 99.91230010986328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Shortage\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04836292192339897,\n                                \"Height\": 0.009018766693770885,\n                                \"Left\": 0.4478085935115814,\n                                \"Top\": 0.3309629559516907\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4478085935115814,\n                                \"Y\": 0.33097726106643677\n                            }, {\n                                \"X\": 0.4961692690849304,\n                                \"Y\": 0.3309629559516907\n                            }, {\n                                \"X\": 0.4961715042591095,\n                                \"Y\": 0.3399674594402313\n                            }, {\n                                \"X\": 0.44781067967414856,\n                                \"Y\": 0.33998170495033264\n                            }]\n                        },\n                        \"Confidence\": 99.96099090576172\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01481886487454176,\n                                \"Height\": 0.00895334966480732,\n                                \"Left\": 0.42955535650253296,\n                                \"Top\": 0.33048999309539795\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42955535650253296,\n                                \"Y\": 0.33049437403678894\n                            }, {\n                                \"X\": 0.44437214732170105,\n                                \"Y\": 0.33048999309539795\n                            }, {\n                                \"X\": 0.4443742036819458,\n                                \"Y\": 0.3394389748573303\n                            }, {\n                                \"X\": 0.4295573830604553,\n                                \"Y\": 0.3394433259963989\n                            }]\n                        },\n                        \"Confidence\": 99.90690612792969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Over Supply\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.065402090549469,\n                                \"Height\": 0.009023970924317837,\n                                \"Left\": 0.617073118686676,\n                                \"Top\": 0.33090779185295105\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.617073118686676,\n                                \"Y\": 0.33092716336250305\n                            }, {\n                                \"X\": 0.6824724078178406,\n                                \"Y\": 0.33090779185295105\n                            }, {\n                                \"X\": 0.682475209236145,\n                                \"Y\": 0.339912474155426\n                            }, {\n                                \"X\": 0.6170757412910461,\n                                \"Y\": 0.33993178606033325\n                            }]\n                        },\n                        \"Confidence\": 97.47236633300781\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014949903823435307,\n                                \"Height\": 0.009245811961591244,\n                                \"Left\": 0.5986769795417786,\n                                \"Top\": 0.3303542137145996\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5986769795417786,\n                                \"Y\": 0.3303586542606354\n                            }, {\n                                \"X\": 0.6136242151260376,\n                                \"Y\": 0.3303542137145996\n                            }, {\n                                \"X\": 0.6136268377304077,\n                                \"Y\": 0.33959561586380005\n                            }, {\n                                \"X\": 0.5986796021461487,\n                                \"Y\": 0.3396000266075134\n                            }]\n                        },\n                        \"Confidence\": 99.93391418457031\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Illegal\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03132953494787216,\n                                \"Height\": 0.009014264680445194,\n                                \"Left\": 0.5835902690887451,\n                                \"Top\": 0.4773429334163666\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5835902690887451,\n                                \"Y\": 0.47735172510147095\n                            }, {\n                                \"X\": 0.6149172186851501,\n                                \"Y\": 0.4773429334163666\n                            }, {\n                                \"X\": 0.6149198412895203,\n                                \"Y\": 0.486348420381546\n                            }, {\n                                \"X\": 0.5835927724838257,\n                                \"Y\": 0.486357182264328\n                            }]\n                        },\n                        \"Confidence\": 99.90825653076172\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01499452069401741,\n                                \"Height\": 0.009027780964970589,\n                                \"Left\": 0.564987063407898,\n                                \"Top\": 0.47714561223983765\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.564987063407898,\n                                \"Y\": 0.4771498143672943\n                            }, {\n                                \"X\": 0.5799791216850281,\n                                \"Y\": 0.47714561223983765\n                            }, {\n                                \"X\": 0.5799816250801086,\n                                \"Y\": 0.4861691892147064\n                            }, {\n                                \"X\": 0.5649895668029785,\n                                \"Y\": 0.4861733913421631\n                            }]\n                        },\n                        \"Confidence\": 99.91951751708984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fireplace(s) #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07365436106920242,\n                                \"Height\": 0.009025664068758488,\n                                \"Left\": 0.5319966673851013,\n                                \"Top\": 0.7371929287910461\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5319966673851013,\n                                \"Y\": 0.7372115850448608\n                            }, {\n                                \"X\": 0.6056484580039978,\n                                \"Y\": 0.7371929287910461\n                            }, {\n                                \"X\": 0.6056510210037231,\n                                \"Y\": 0.7462000250816345\n                            }, {\n                                \"X\": 0.5319989919662476,\n                                \"Y\": 0.7462185621261597\n                            }]\n                        },\n                        \"Confidence\": 95.089599609375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015081850811839104,\n                                \"Height\": 0.009236329235136509,\n                                \"Left\": 0.5124047994613647,\n                                \"Top\": 0.7365494966506958\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5124047994613647,\n                                \"Y\": 0.7365533113479614\n                            }, {\n                                \"X\": 0.5274842381477356,\n                                \"Y\": 0.7365494966506958\n                            }, {\n                                \"X\": 0.5274866223335266,\n                                \"Y\": 0.7457820177078247\n                            }, {\n                                \"X\": 0.512407124042511,\n                                \"Y\": 0.7457858324050903\n                            }]\n                        },\n                        \"Confidence\": 99.90106964111328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fence\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.032981496304273605,\n                                \"Height\": 0.007347495760768652,\n                                \"Left\": 0.6617125272750854,\n                                \"Top\": 0.737170398235321\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6617125272750854,\n                                \"Y\": 0.7371787428855896\n                            }, {\n                                \"X\": 0.6946917176246643,\n                                \"Y\": 0.737170398235321\n                            }, {\n                                \"X\": 0.6946939826011658,\n                                \"Y\": 0.7445095181465149\n                            }, {\n                                \"X\": 0.6617147326469421,\n                                \"Y\": 0.7445178627967834\n                            }]\n                        },\n                        \"Confidence\": 99.95838165283203\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014796928502619267,\n                                \"Height\": 0.008848381228744984,\n                                \"Left\": 0.6427690982818604,\n                                \"Top\": 0.736681342124939\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6427690982818604,\n                                \"Y\": 0.7366850972175598\n                            }, {\n                                \"X\": 0.657563328742981,\n                                \"Y\": 0.736681342124939\n                            }, {\n                                \"X\": 0.6575660109519958,\n                                \"Y\": 0.7455259561538696\n                            }, {\n                                \"X\": 0.6427717208862305,\n                                \"Y\": 0.7455297112464905\n                            }]\n                        },\n                        \"Confidence\": 99.93854522705078\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Garage\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.040129050612449646,\n                                \"Height\": 0.009017420932650566,\n                                \"Left\": 0.7908822298049927,\n                                \"Top\": 0.7371358275413513\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7908822298049927,\n                                \"Y\": 0.7371460199356079\n                            }, {\n                                \"X\": 0.8310080170631409,\n                                \"Y\": 0.7371358275413513\n                            }, {\n                                \"X\": 0.8310112953186035,\n                                \"Y\": 0.7461431622505188\n                            }, {\n                                \"X\": 0.7908853888511658,\n                                \"Y\": 0.7461532950401306\n                            }]\n                        },\n                        \"Confidence\": 99.95948791503906\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014883111231029034,\n                                \"Height\": 0.008964909240603447,\n                                \"Left\": 0.7726234197616577,\n                                \"Top\": 0.7364569306373596\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7726234197616577,\n                                \"Y\": 0.7364606857299805\n                            }, {\n                                \"X\": 0.7875034213066101,\n                                \"Y\": 0.7364569306373596\n                            }, {\n                                \"X\": 0.7875065207481384,\n                                \"Y\": 0.7454180717468262\n                            }, {\n                                \"X\": 0.772626519203186,\n                                \"Y\": 0.745421826839447\n                            }]\n                        },\n                        \"Confidence\": 99.89317321777344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Porch\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030782995745539665,\n                                \"Height\": 0.007346960250288248,\n                                \"Left\": 0.6617161631584167,\n                                \"Top\": 0.7491804957389832\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6617161631584167,\n                                \"Y\": 0.749188244342804\n                            }, {\n                                \"X\": 0.6924968361854553,\n                                \"Y\": 0.7491804957389832\n                            }, {\n                                \"X\": 0.6924991607666016,\n                                \"Y\": 0.7565197348594666\n                            }, {\n                                \"X\": 0.6617184281349182,\n                                \"Y\": 0.7565274834632874\n                            }]\n                        },\n                        \"Confidence\": 99.95720672607422\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014889133162796497,\n                                \"Height\": 0.008920619264245033,\n                                \"Left\": 0.642605185508728,\n                                \"Top\": 0.7487326264381409\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.642605185508728,\n                                \"Y\": 0.7487363815307617\n                            }, {\n                                \"X\": 0.6574915647506714,\n                                \"Y\": 0.7487326264381409\n                            }, {\n                                \"X\": 0.657494306564331,\n                                \"Y\": 0.7576495409011841\n                            }, {\n                                \"X\": 0.6426078081130981,\n                                \"Y\": 0.7576532959938049\n                            }]\n                        },\n                        \"Confidence\": 99.91983795166016\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Carport\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041228435933589935,\n                                \"Height\": 0.008684113621711731,\n                                \"Left\": 0.7903367877006531,\n                                \"Top\": 0.7491454482078552\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7903367877006531,\n                                \"Y\": 0.7491558194160461\n                            }, {\n                                \"X\": 0.8315620422363281,\n                                \"Y\": 0.7491454482078552\n                            }, {\n                                \"X\": 0.8315652012825012,\n                                \"Y\": 0.7578192353248596\n                            }, {\n                                \"X\": 0.7903398275375366,\n                                \"Y\": 0.7578295469284058\n                            }]\n                        },\n                        \"Confidence\": 99.92233276367188\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014786170795559883,\n                                \"Height\": 0.009029039181768894,\n                                \"Left\": 0.7722898721694946,\n                                \"Top\": 0.7488670349121094\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7722898721694946,\n                                \"Y\": 0.7488707900047302\n                            }, {\n                                \"X\": 0.7870728969573975,\n                                \"Y\": 0.7488670349121094\n                            }, {\n                                \"X\": 0.7870760560035706,\n                                \"Y\": 0.757892370223999\n                            }, {\n                                \"X\": 0.772292971611023,\n                                \"Y\": 0.7578960657119751\n                            }]\n                        },\n                        \"Confidence\": 99.95068359375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Att.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019241103902459145,\n                                \"Height\": 0.0073441872373223305,\n                                \"Left\": 0.7892417311668396,\n                                \"Top\": 0.7614946961402893\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7892417311668396,\n                                \"Y\": 0.7614995241165161\n                            }, {\n                                \"X\": 0.8084802627563477,\n                                \"Y\": 0.7614946961402893\n                            }, {\n                                \"X\": 0.808482825756073,\n                                \"Y\": 0.7688340544700623\n                            }, {\n                                \"X\": 0.7892442941665649,\n                                \"Y\": 0.7688388824462891\n                            }]\n                        },\n                        \"Confidence\": 99.94068145751953\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014856778085231781,\n                                \"Height\": 0.008920054882764816,\n                                \"Left\": 0.7715966105461121,\n                                \"Top\": 0.7612602114677429\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7715966105461121,\n                                \"Y\": 0.761263906955719\n                            }, {\n                                \"X\": 0.7864503264427185,\n                                \"Y\": 0.7612602114677429\n                            }, {\n                                \"X\": 0.7864534258842468,\n                                \"Y\": 0.7701765298843384\n                            }, {\n                                \"X\": 0.7715996503829956,\n                                \"Y\": 0.7701802253723145\n                            }]\n                        },\n                        \"Confidence\": 99.91419219970703\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Washer/Dryer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07420497387647629,\n                                \"Height\": 0.009025740437209606,\n                                \"Left\": 0.533105731010437,\n                                \"Top\": 0.7745555639266968\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.533105731010437,\n                                \"Y\": 0.7745741009712219\n                            }, {\n                                \"X\": 0.6073080897331238,\n                                \"Y\": 0.7745555639266968\n                            }, {\n                                \"X\": 0.6073107123374939,\n                                \"Y\": 0.7835628986358643\n                            }, {\n                                \"X\": 0.5331080555915833,\n                                \"Y\": 0.7835813164710999\n                            }]\n                        },\n                        \"Confidence\": 99.86268615722656\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014522971585392952,\n                                \"Height\": 0.00896401796489954,\n                                \"Left\": 0.5182331800460815,\n                                \"Top\": 0.7742941379547119\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5182331800460815,\n                                \"Y\": 0.7742977738380432\n                            }, {\n                                \"X\": 0.5327538251876831,\n                                \"Y\": 0.7742941379547119\n                            }, {\n                                \"X\": 0.5327561497688293,\n                                \"Y\": 0.7832545638084412\n                            }, {\n                                \"X\": 0.5182355046272278,\n                                \"Y\": 0.7832581996917725\n                            }]\n                        },\n                        \"Confidence\": 99.68730926513672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Purchase Transaction\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11649291962385178,\n                                \"Height\": 0.0077060810290277,\n                                \"Left\": 0.16751952469348907,\n                                \"Top\": 0.13727997243404388\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.16751952469348907,\n                                \"Y\": 0.13731682300567627\n                            }, {\n                                \"X\": 0.2840110957622528,\n                                \"Y\": 0.13727997243404388\n                            }, {\n                                \"X\": 0.28401243686676025,\n                                \"Y\": 0.1449492871761322\n                            }, {\n                                \"X\": 0.16752058267593384,\n                                \"Y\": 0.14498604834079742\n                            }]\n                        },\n                        \"Confidence\": 99.95543670654297\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01504248846322298,\n                                \"Height\": 0.00918138399720192,\n                                \"Left\": 0.14859792590141296,\n                                \"Top\": 0.13713093101978302\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.14859792590141296,\n                                \"Y\": 0.13713569939136505\n                            }, {\n                                \"X\": 0.1636391580104828,\n                                \"Y\": 0.13713093101978302\n                            }, {\n                                \"X\": 0.16364040970802307,\n                                \"Y\": 0.146307572722435\n                            }, {\n                                \"X\": 0.14859911799430847,\n                                \"Y\": 0.14631231129169464\n                            }]\n                        },\n                        \"Confidence\": 99.91590118408203\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Stable\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03242314234375954,\n                                \"Height\": 0.007346376311033964,\n                                \"Left\": 0.19447438418865204,\n                                \"Top\": 0.3430483341217041\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19447438418865204,\n                                \"Y\": 0.34305787086486816\n                            }, {\n                                \"X\": 0.22689637541770935,\n                                \"Y\": 0.3430483341217041\n                            }, {\n                                \"X\": 0.22689752280712128,\n                                \"Y\": 0.3503851592540741\n                            }, {\n                                \"X\": 0.194475457072258,\n                                \"Y\": 0.35039469599723816\n                            }]\n                        },\n                        \"Confidence\": 99.96157836914062\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01475624367594719,\n                                \"Height\": 0.009103222750127316,\n                                \"Left\": 0.17651113867759705,\n                                \"Top\": 0.342540979385376\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17651113867759705,\n                                \"Y\": 0.3425453007221222\n                            }, {\n                                \"X\": 0.19126605987548828,\n                                \"Y\": 0.342540979385376\n                            }, {\n                                \"X\": 0.19126737117767334,\n                                \"Y\": 0.35163986682891846\n                            }, {\n                                \"X\": 0.17651242017745972,\n                                \"Y\": 0.3516441881656647\n                            }]\n                        },\n                        \"Confidence\": 99.93592834472656\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Legal\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03022651933133602,\n                                \"Height\": 0.00901357177644968,\n                                \"Left\": 0.17855721712112427,\n                                \"Top\": 0.47745686769485474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17855721712112427,\n                                \"Y\": 0.47746536135673523\n                            }, {\n                                \"X\": 0.2087823748588562,\n                                \"Y\": 0.47745686769485474\n                            }, {\n                                \"X\": 0.20878374576568604,\n                                \"Y\": 0.4864619970321655\n                            }, {\n                                \"X\": 0.17855849862098694,\n                                \"Y\": 0.48647046089172363\n                            }]\n                        },\n                        \"Confidence\": 99.95862579345703\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014989237301051617,\n                                \"Height\": 0.009054143913090229,\n                                \"Left\": 0.16011817753314972,\n                                \"Top\": 0.47727346420288086\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.16011817753314972,\n                                \"Y\": 0.4772776663303375\n                            }, {\n                                \"X\": 0.17510613799095154,\n                                \"Y\": 0.47727346420288086\n                            }, {\n                                \"X\": 0.1751074194908142,\n                                \"Y\": 0.48632341623306274\n                            }, {\n                                \"X\": 0.16011939942836761,\n                                \"Y\": 0.4863276183605194\n                            }]\n                        },\n                        \"Confidence\": 99.908935546875\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Legal Nonconforming (Grandfathered Use)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2286219298839569,\n                                \"Height\": 0.009069294668734074,\n                                \"Left\": 0.23900772631168365,\n                                \"Top\": 0.4773842394351959\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23900772631168365,\n                                \"Y\": 0.47744840383529663\n                            }, {\n                                \"X\": 0.46762749552726746,\n                                \"Y\": 0.4773842394351959\n                            }, {\n                                \"X\": 0.46762964129447937,\n                                \"Y\": 0.4863896071910858\n                            }, {\n                                \"X\": 0.23900918662548065,\n                                \"Y\": 0.4864535331726074\n                            }]\n                        },\n                        \"Confidence\": 99.19810485839844\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015124496072530746,\n                                \"Height\": 0.009136480279266834,\n                                \"Left\": 0.21992439031600952,\n                                \"Top\": 0.4772116541862488\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.21992439031600952,\n                                \"Y\": 0.4772159159183502\n                            }, {\n                                \"X\": 0.23504741489887238,\n                                \"Y\": 0.4772116541862488\n                            }, {\n                                \"X\": 0.23504889011383057,\n                                \"Y\": 0.4863439202308655\n                            }, {\n                                \"X\": 0.21992580592632294,\n                                \"Y\": 0.48634815216064453\n                            }]\n                        },\n                        \"Confidence\": 99.91561126708984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Gas\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.022532077506184578,\n                                \"Height\": 0.007677384652197361,\n                                \"Left\": 0.04447554424405098,\n                                \"Top\": 0.5378644466400146\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04447554424405098,\n                                \"Y\": 0.5378706455230713\n                            }, {\n                                \"X\": 0.06700683385133743,\n                                \"Y\": 0.5378644466400146\n                            }, {\n                                \"X\": 0.0670076236128807,\n                                \"Y\": 0.545535683631897\n                            }, {\n                                \"X\": 0.044476281851530075,\n                                \"Y\": 0.5455418825149536\n                            }]\n                        },\n                        \"Confidence\": 99.64273834228516\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014988267794251442,\n                                \"Height\": 0.009111182764172554,\n                                \"Left\": 0.12488208711147308,\n                                \"Top\": 0.5377180576324463\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12488208711147308,\n                                \"Y\": 0.5377221703529358\n                            }, {\n                                \"X\": 0.13986918330192566,\n                                \"Y\": 0.5377180576324463\n                            }, {\n                                \"X\": 0.13987034559249878,\n                                \"Y\": 0.5468251705169678\n                            }, {\n                                \"X\": 0.12488320469856262,\n                                \"Y\": 0.5468292236328125\n                            }]\n                        },\n                        \"Confidence\": 99.9183349609375\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030774131417274475,\n                                \"Height\": 0.007679114583879709,\n                                \"Left\": 0.3922603130340576,\n                                \"Top\": 0.12523174285888672\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3922603130340576,\n                                \"Y\": 0.12524151802062988\n                            }, {\n                                \"X\": 0.4230327308177948,\n                                \"Y\": 0.12523174285888672\n                            }, {\n                                \"X\": 0.4230344593524933,\n                                \"Y\": 0.13290110230445862\n                            }, {\n                                \"X\": 0.39226198196411133,\n                                \"Y\": 0.1329108476638794\n                            }]\n                        },\n                        \"Confidence\": 98.46221923828125\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014783640392124653,\n                                \"Height\": 0.008907757699489594,\n                                \"Left\": 0.3742423355579376,\n                                \"Top\": 0.1251881867647171\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3742423355579376,\n                                \"Y\": 0.12519289553165436\n                            }, {\n                                \"X\": 0.3890240788459778,\n                                \"Y\": 0.1251881867647171\n                            }, {\n                                \"X\": 0.3890259861946106,\n                                \"Y\": 0.13409127295017242\n                            }, {\n                                \"X\": 0.37424418330192566,\n                                \"Y\": 0.1340959519147873\n                            }]\n                        },\n                        \"Confidence\": 99.93009948730469\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Under 25%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05770246312022209,\n                                \"Height\": 0.007687393110245466,\n                                \"Left\": 0.2714061439037323,\n                                \"Top\": 0.33067891001701355\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2714061439037323,\n                                \"Y\": 0.3306959867477417\n                            }, {\n                                \"X\": 0.3291071355342865,\n                                \"Y\": 0.33067891001701355\n                            }, {\n                                \"X\": 0.3291085958480835,\n                                \"Y\": 0.33834925293922424\n                            }, {\n                                \"X\": 0.27140745520591736,\n                                \"Y\": 0.33836629986763\n                            }]\n                        },\n                        \"Confidence\": 99.55176544189453\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014868611469864845,\n                                \"Height\": 0.009077015332877636,\n                                \"Left\": 0.2530011534690857,\n                                \"Top\": 0.33036839962005615\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2530011534690857,\n                                \"Y\": 0.33037278056144714\n                            }, {\n                                \"X\": 0.26786819100379944,\n                                \"Y\": 0.33036839962005615\n                            }, {\n                                \"X\": 0.2678697407245636,\n                                \"Y\": 0.3394410312175751\n                            }, {\n                                \"X\": 0.2530026435852051,\n                                \"Y\": 0.33944541215896606\n                            }]\n                        },\n                        \"Confidence\": 99.95603942871094\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Slow\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025829415768384933,\n                                \"Height\": 0.007344492245465517,\n                                \"Left\": 0.2714082598686218,\n                                \"Top\": 0.34302759170532227\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2714082598686218,\n                                \"Y\": 0.3430352210998535\n                            }, {\n                                \"X\": 0.2972363531589508,\n                                \"Y\": 0.34302759170532227\n                            }, {\n                                \"X\": 0.29723769426345825,\n                                \"Y\": 0.3503645062446594\n                            }, {\n                                \"X\": 0.2714095413684845,\n                                \"Y\": 0.3503720760345459\n                            }]\n                        },\n                        \"Confidence\": 99.98507690429688\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014935889281332493,\n                                \"Height\": 0.009077131748199463,\n                                \"Left\": 0.2530137002468109,\n                                \"Top\": 0.3425579369068146\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2530137002468109,\n                                \"Y\": 0.34256231784820557\n                            }, {\n                                \"X\": 0.2679480314254761,\n                                \"Y\": 0.3425579369068146\n                            }, {\n                                \"X\": 0.26794958114624023,\n                                \"Y\": 0.35163065791130066\n                            }, {\n                                \"X\": 0.2530152201652527,\n                                \"Y\": 0.35163506865501404\n                            }]\n                        },\n                        \"Confidence\": 99.94145965576172\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Under 3 mths\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06704777479171753,\n                                \"Height\": 0.007356777787208557,\n                                \"Left\": 0.4483609199523926,\n                                \"Top\": 0.3429632782936096\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4483609199523926,\n                                \"Y\": 0.34298303723335266\n                            }, {\n                                \"X\": 0.5154068470001221,\n                                \"Y\": 0.3429632782936096\n                            }, {\n                                \"X\": 0.5154086947441101,\n                                \"Y\": 0.3503003716468811\n                            }, {\n                                \"X\": 0.44836264848709106,\n                                \"Y\": 0.35032007098197937\n                            }]\n                        },\n                        \"Confidence\": 91.32889556884766\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014877084642648697,\n                                \"Height\": 0.009080744348466396,\n                                \"Left\": 0.42982691526412964,\n                                \"Top\": 0.34251877665519714\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42982691526412964,\n                                \"Y\": 0.34252315759658813\n                            }, {\n                                \"X\": 0.4447018802165985,\n                                \"Y\": 0.34251877665519714\n                            }, {\n                                \"X\": 0.44470399618148804,\n                                \"Y\": 0.3515951335430145\n                            }, {\n                                \"X\": 0.4298289716243744,\n                                \"Y\": 0.3515995144844055\n                            }]\n                        },\n                        \"Confidence\": 99.94973754882812\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Sanitary Sewer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08243939280509949,\n                                \"Height\": 0.009361767210066319,\n                                \"Left\": 0.34563425183296204,\n                                \"Top\": 0.5377654433250427\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34563425183296204,\n                                \"Y\": 0.5377880334854126\n                            }, {\n                                \"X\": 0.428071528673172,\n                                \"Y\": 0.5377654433250427\n                            }, {\n                                \"X\": 0.4280736446380615,\n                                \"Y\": 0.5471047163009644\n                            }, {\n                                \"X\": 0.3456360995769501,\n                                \"Y\": 0.5471272468566895\n                            }]\n                        },\n                        \"Confidence\": 99.91120147705078\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014975055120885372,\n                                \"Height\": 0.009092768654227257,\n                                \"Left\": 0.4575667381286621,\n                                \"Top\": 0.5375270247459412\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4575667381286621,\n                                \"Y\": 0.5375311374664307\n                            }, {\n                                \"X\": 0.47253960371017456,\n                                \"Y\": 0.5375270247459412\n                            }, {\n                                \"X\": 0.47254180908203125,\n                                \"Y\": 0.546615719795227\n                            }, {\n                                \"X\": 0.457568883895874,\n                                \"Y\": 0.5466198325157166\n                            }]\n                        },\n                        \"Confidence\": 99.92101287841797\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Partial Basement\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09233647584915161,\n                                \"Height\": 0.007696310058236122,\n                                \"Left\": 0.4061126708984375,\n                                \"Top\": 0.6501553654670715\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4061126708984375,\n                                \"Y\": 0.6501796245574951\n                            }, {\n                                \"X\": 0.4984472393989563,\n                                \"Y\": 0.6501553654670715\n                            }, {\n                                \"X\": 0.4984491467475891,\n                                \"Y\": 0.6578275561332703\n                            }, {\n                                \"X\": 0.4061143696308136,\n                                \"Y\": 0.6578516960144043\n                            }]\n                        },\n                        \"Confidence\": 99.73080444335938\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015055402182042599,\n                                \"Height\": 0.008988223038613796,\n                                \"Left\": 0.3871682584285736,\n                                \"Top\": 0.6495609879493713\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3871682584285736,\n                                \"Y\": 0.6495649218559265\n                            }, {\n                                \"X\": 0.4022217094898224,\n                                \"Y\": 0.6495609879493713\n                            }, {\n                                \"X\": 0.4022236466407776,\n                                \"Y\": 0.6585452556610107\n                            }, {\n                                \"X\": 0.3871701657772064,\n                                \"Y\": 0.6585491895675659\n                            }]\n                        },\n                        \"Confidence\": 99.93008422851562\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Settlement\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05771155282855034,\n                                \"Height\": 0.007353572640568018,\n                                \"Left\": 0.38634002208709717,\n                                \"Top\": 0.7118812799453735\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38634002208709717,\n                                \"Y\": 0.7118960618972778\n                            }, {\n                                \"X\": 0.4440498650074005,\n                                \"Y\": 0.7118812799453735\n                            }, {\n                                \"X\": 0.4440515637397766,\n                                \"Y\": 0.7192201018333435\n                            }, {\n                                \"X\": 0.38634157180786133,\n                                \"Y\": 0.719234824180603\n                            }]\n                        },\n                        \"Confidence\": 99.95923614501953\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015081548132002354,\n                                \"Height\": 0.009083042852580547,\n                                \"Left\": 0.3677825927734375,\n                                \"Top\": 0.7112469673156738\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3677825927734375,\n                                \"Y\": 0.7112508416175842\n                            }, {\n                                \"X\": 0.3828622102737427,\n                                \"Y\": 0.7112469673156738\n                            }, {\n                                \"X\": 0.3828641176223755,\n                                \"Y\": 0.7203261852264404\n                            }, {\n                                \"X\": 0.36778444051742554,\n                                \"Y\": 0.720329999923706\n                            }]\n                        },\n                        \"Confidence\": 99.93594360351562\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Stairs\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030778605490922928,\n                                \"Height\": 0.007680147886276245,\n                                \"Left\": 0.18134185671806335,\n                                \"Top\": 0.7369589805603027\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.18134185671806335,\n                                \"Y\": 0.7369667887687683\n                            }, {\n                                \"X\": 0.21211928129196167,\n                                \"Y\": 0.7369589805603027\n                            }, {\n                                \"X\": 0.21212045848369598,\n                                \"Y\": 0.7446313500404358\n                            }, {\n                                \"X\": 0.1813429445028305,\n                                \"Y\": 0.7446390986442566\n                            }]\n                        },\n                        \"Confidence\": 99.898681640625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01502982061356306,\n                                \"Height\": 0.009038646705448627,\n                                \"Left\": 0.1628146469593048,\n                                \"Top\": 0.7368451952934265\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1628146469593048,\n                                \"Y\": 0.7368489503860474\n                            }, {\n                                \"X\": 0.17784319818019867,\n                                \"Y\": 0.7368451952934265\n                            }, {\n                                \"X\": 0.17784446477890015,\n                                \"Y\": 0.7458800077438354\n                            }, {\n                                \"X\": 0.1628158837556839,\n                                \"Y\": 0.7458838224411011\n                            }]\n                        },\n                        \"Confidence\": 99.89295959472656\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Scuttle\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.036824315786361694,\n                                \"Height\": 0.007348111364990473,\n                                \"Left\": 0.18134360015392303,\n                                \"Top\": 0.7493000030517578\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.18134360015392303,\n                                \"Y\": 0.749309241771698\n                            }, {\n                                \"X\": 0.218166783452034,\n                                \"Y\": 0.7493000030517578\n                            }, {\n                                \"X\": 0.21816791594028473,\n                                \"Y\": 0.7566388845443726\n                            }, {\n                                \"X\": 0.1813446432352066,\n                                \"Y\": 0.7566481232643127\n                            }]\n                        },\n                        \"Confidence\": 99.96320343017578\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015112780965864658,\n                                \"Height\": 0.008996942080557346,\n                                \"Left\": 0.16279365122318268,\n                                \"Top\": 0.7487483620643616\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.16279365122318268,\n                                \"Y\": 0.7487521767616272\n                            }, {\n                                \"X\": 0.17790517210960388,\n                                \"Y\": 0.7487483620643616\n                            }, {\n                                \"X\": 0.17790643870830536,\n                                \"Y\": 0.7577415108680725\n                            }, {\n                                \"X\": 0.16279487311840057,\n                                \"Y\": 0.7577453255653381\n                            }]\n                        },\n                        \"Confidence\": 99.90775299072266\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dishwasher\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06320786476135254,\n                                \"Height\": 0.007688404060900211,\n                                \"Left\": 0.30281081795692444,\n                                \"Top\": 0.7742821574211121\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30281081795692444,\n                                \"Y\": 0.7742978930473328\n                            }, {\n                                \"X\": 0.36601710319519043,\n                                \"Y\": 0.7742821574211121\n                            }, {\n                                \"X\": 0.366018682718277,\n                                \"Y\": 0.781954824924469\n                            }, {\n                                \"X\": 0.30281221866607666,\n                                \"Y\": 0.7819705605506897\n                            }]\n                        },\n                        \"Confidence\": 99.97866821289062\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015032134018838406,\n                                \"Height\": 0.008970686234533787,\n                                \"Left\": 0.2874224781990051,\n                                \"Top\": 0.7741698622703552\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2874224781990051,\n                                \"Y\": 0.7741736173629761\n                            }, {\n                                \"X\": 0.3024529814720154,\n                                \"Y\": 0.7741698622703552\n                            }, {\n                                \"X\": 0.3024546205997467,\n                                \"Y\": 0.7831368446350098\n                            }, {\n                                \"X\": 0.28742408752441406,\n                                \"Y\": 0.7831405401229858\n                            }]\n                        },\n                        \"Confidence\": 99.76073455810547\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03023332543671131,\n                                \"Height\": 0.007346843369305134,\n                                \"Left\": 0.6309431791305542,\n                                \"Top\": 0.7745421528816223\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6309431791305542,\n                                \"Y\": 0.7745497226715088\n                            }, {\n                                \"X\": 0.6611742377281189,\n                                \"Y\": 0.7745421528816223\n                            }, {\n                                \"X\": 0.6611765027046204,\n                                \"Y\": 0.7818815112113953\n                            }, {\n                                \"X\": 0.6309453248977661,\n                                \"Y\": 0.781889021396637\n                            }]\n                        },\n                        \"Confidence\": 97.37921905517578\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01511740405112505,\n                                \"Height\": 0.009306983090937138,\n                                \"Left\": 0.6156319379806519,\n                                \"Top\": 0.7738877534866333\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6156319379806519,\n                                \"Y\": 0.7738915085792542\n                            }, {\n                                \"X\": 0.630746603012085,\n                                \"Y\": 0.7738877534866333\n                            }, {\n                                \"X\": 0.6307493448257446,\n                                \"Y\": 0.7831909656524658\n                            }, {\n                                \"X\": 0.6156346201896667,\n                                \"Y\": 0.7831947207450867\n                            }]\n                        },\n                        \"Confidence\": 99.8698501586914\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Crawl Space\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06815347075462341,\n                                \"Height\": 0.009357823990285397,\n                                \"Left\": 0.40501078963279724,\n                                \"Top\": 0.6378199458122253\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40501078963279724,\n                                \"Y\": 0.6378379464149475\n                            }, {\n                                \"X\": 0.4731619954109192,\n                                \"Y\": 0.6378199458122253\n                            }, {\n                                \"X\": 0.47316426038742065,\n                                \"Y\": 0.6471598744392395\n                            }, {\n                                \"X\": 0.4050128161907196,\n                                \"Y\": 0.6471778154373169\n                            }]\n                        },\n                        \"Confidence\": 99.6337890625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015416974201798439,\n                                \"Height\": 0.009095515124499798,\n                                \"Left\": 0.3859986364841461,\n                                \"Top\": 0.637558102607727\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3859986364841461,\n                                \"Y\": 0.6375621557235718\n                            }, {\n                                \"X\": 0.4014136493206024,\n                                \"Y\": 0.637558102607727\n                            }, {\n                                \"X\": 0.40141561627388,\n                                \"Y\": 0.6466495394706726\n                            }, {\n                                \"X\": 0.3860005736351013,\n                                \"Y\": 0.6466535925865173\n                            }]\n                        },\n                        \"Confidence\": 99.92957305908203\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Sump Pump\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06705562025308609,\n                                \"Height\": 0.0090239392593503,\n                                \"Left\": 0.42480745911598206,\n                                \"Top\": 0.6865168213844299\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.42480745911598206,\n                                \"Y\": 0.6865341663360596\n                            }, {\n                                \"X\": 0.49186086654663086,\n                                \"Y\": 0.6865168213844299\n                            }, {\n                                \"X\": 0.49186307191848755,\n                                \"Y\": 0.6955235004425049\n                            }, {\n                                \"X\": 0.4248094856739044,\n                                \"Y\": 0.695540726184845\n                            }]\n                        },\n                        \"Confidence\": 99.4592514038086\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015111190266907215,\n                                \"Height\": 0.00928681530058384,\n                                \"Left\": 0.4061020016670227,\n                                \"Top\": 0.6858852505683899\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4061020016670227,\n                                \"Y\": 0.6858891844749451\n                            }, {\n                                \"X\": 0.4212111234664917,\n                                \"Y\": 0.6858852505683899\n                            }, {\n                                \"X\": 0.42121317982673645,\n                                \"Y\": 0.6951681971549988\n                            }, {\n                                \"X\": 0.40610402822494507,\n                                \"Y\": 0.6951720714569092\n                            }]\n                        },\n                        \"Confidence\": 99.93840789794922\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Concrete Slab\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07694485783576965,\n                                \"Height\": 0.007692220155149698,\n                                \"Left\": 0.2978394627571106,\n                                \"Top\": 0.6378459334373474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2978394627571106,\n                                \"Y\": 0.637866199016571\n                            }, {\n                                \"X\": 0.3747827410697937,\n                                \"Y\": 0.6378459334373474\n                            }, {\n                                \"X\": 0.37478432059288025,\n                                \"Y\": 0.645517885684967\n                            }, {\n                                \"X\": 0.2978408634662628,\n                                \"Y\": 0.6455381512641907\n                            }]\n                        },\n                        \"Confidence\": 99.36741638183594\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015216927975416183,\n                                \"Height\": 0.00919092632830143,\n                                \"Left\": 0.27945610880851746,\n                                \"Top\": 0.6376427412033081\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27945610880851746,\n                                \"Y\": 0.6376467347145081\n                            }, {\n                                \"X\": 0.29467135667800903,\n                                \"Y\": 0.6376427412033081\n                            }, {\n                                \"X\": 0.29467302560806274,\n                                \"Y\": 0.6468296647071838\n                            }, {\n                                \"X\": 0.2794577181339264,\n                                \"Y\": 0.6468336582183838\n                            }]\n                        },\n                        \"Confidence\": 99.89271545410156\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"per year\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.045066483318805695,\n                                \"Height\": 0.007350543048232794,\n                                \"Left\": 0.833530068397522,\n                                \"Top\": 0.11474961042404175\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.833530068397522,\n                                \"Y\": 0.11476397514343262\n                            }, {\n                                \"X\": 0.8785937428474426,\n                                \"Y\": 0.11474961042404175\n                            }, {\n                                \"X\": 0.8785965442657471,\n                                \"Y\": 0.1220858171582222\n                            }, {\n                                \"X\": 0.8335326910018921,\n                                \"Y\": 0.12210015207529068\n                            }]\n                        },\n                        \"Confidence\": 97.44056701660156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015289566479623318,\n                                \"Height\": 0.009132313542068005,\n                                \"Left\": 0.8146820664405823,\n                                \"Top\": 0.11320594698190689\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8146820664405823,\n                                \"Y\": 0.11321081966161728\n                            }, {\n                                \"X\": 0.8299683332443237,\n                                \"Y\": 0.11320594698190689\n                            }, {\n                                \"X\": 0.8299716114997864,\n                                \"Y\": 0.12233339995145798\n                            }, {\n                                \"X\": 0.8146853446960449,\n                                \"Y\": 0.12233825773000717\n                            }]\n                        },\n                        \"Confidence\": 99.87527465820312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Patio/Deck\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05881379917263985,\n                                \"Height\": 0.007687517907470465,\n                                \"Left\": 0.5314501523971558,\n                                \"Top\": 0.7492062449455261\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5314501523971558,\n                                \"Y\": 0.7492210865020752\n                            }, {\n                                \"X\": 0.5902618169784546,\n                                \"Y\": 0.7492062449455261\n                            }, {\n                                \"X\": 0.5902639627456665,\n                                \"Y\": 0.7568789720535278\n                            }, {\n                                \"X\": 0.5314521789550781,\n                                \"Y\": 0.7568937540054321\n                            }]\n                        },\n                        \"Confidence\": 99.73675537109375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014921765774488449,\n                                \"Height\": 0.009133237414062023,\n                                \"Left\": 0.5123944282531738,\n                                \"Top\": 0.7487956881523132\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5123944282531738,\n                                \"Y\": 0.7487994432449341\n                            }, {\n                                \"X\": 0.5273138284683228,\n                                \"Y\": 0.7487956881523132\n                            }, {\n                                \"X\": 0.5273162126541138,\n                                \"Y\": 0.7579251527786255\n                            }, {\n                                \"X\": 0.5123967528343201,\n                                \"Y\": 0.7579289078712463\n                            }]\n                        },\n                        \"Confidence\": 99.93121337890625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Det.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.021440278738737106,\n                                \"Height\": 0.007344791200011969,\n                                \"Left\": 0.8574013710021973,\n                                \"Top\": 0.7614770531654358\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8574013710021973,\n                                \"Y\": 0.7614824175834656\n                            }, {\n                                \"X\": 0.878838837146759,\n                                \"Y\": 0.7614770531654358\n                            }, {\n                                \"X\": 0.8788416385650635,\n                                \"Y\": 0.7688164710998535\n                            }, {\n                                \"X\": 0.8574040532112122,\n                                \"Y\": 0.7688218355178833\n                            }]\n                        },\n                        \"Confidence\": 99.97698974609375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015235020779073238,\n                                \"Height\": 0.009271577931940556,\n                                \"Left\": 0.8381912112236023,\n                                \"Top\": 0.7610374093055725\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8381912112236023,\n                                \"Y\": 0.7610412240028381\n                            }, {\n                                \"X\": 0.8534228205680847,\n                                \"Y\": 0.7610374093055725\n                            }, {\n                                \"X\": 0.8534262180328369,\n                                \"Y\": 0.7703052163124084\n                            }, {\n                                \"X\": 0.8381946086883545,\n                                \"Y\": 0.7703090310096741\n                            }]\n                        },\n                        \"Confidence\": 99.90921020507812\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Urban\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03132311999797821,\n                                \"Height\": 0.0073459516279399395,\n                                \"Left\": 0.11698930710554123,\n                                \"Top\": 0.31872695684432983\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11698930710554123,\n                                \"Y\": 0.3187362849712372\n                            }, {\n                                \"X\": 0.14831146597862244,\n                                \"Y\": 0.31872695684432983\n                            }, {\n                                \"X\": 0.14831241965293884,\n                                \"Y\": 0.3260636329650879\n                            }, {\n                                \"X\": 0.11699018627405167,\n                                \"Y\": 0.32607290148735046\n                            }]\n                        },\n                        \"Confidence\": 99.94023132324219\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014990130439400673,\n                                \"Height\": 0.00932313408702612,\n                                \"Left\": 0.09862949699163437,\n                                \"Top\": 0.318053662776947\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.09862949699163437,\n                                \"Y\": 0.3180581331253052\n                            }, {\n                                \"X\": 0.11361851543188095,\n                                \"Y\": 0.318053662776947\n                            }, {\n                                \"X\": 0.11361962556838989,\n                                \"Y\": 0.32737234234809875\n                            }, {\n                                \"X\": 0.09863055497407913,\n                                \"Y\": 0.3273768126964569\n                            }]\n                        },\n                        \"Confidence\": 99.94108581542969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Suburban\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.050007615238428116,\n                                \"Height\": 0.00701807951554656,\n                                \"Left\": 0.19447080790996552,\n                                \"Top\": 0.31869837641716003\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19447080790996552,\n                                \"Y\": 0.3187132477760315\n                            }, {\n                                \"X\": 0.2444772869348526,\n                                \"Y\": 0.31869837641716003\n                            }, {\n                                \"X\": 0.24447843432426453,\n                                \"Y\": 0.32570162415504456\n                            }, {\n                                \"X\": 0.1944718360900879,\n                                \"Y\": 0.32571646571159363\n                            }]\n                        },\n                        \"Confidence\": 99.98464965820312\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014556888490915298,\n                                \"Height\": 0.009403359144926071,\n                                \"Left\": 0.17684748768806458,\n                                \"Top\": 0.3178757131099701\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.17684748768806458,\n                                \"Y\": 0.3178800344467163\n                            }, {\n                                \"X\": 0.19140301644802094,\n                                \"Y\": 0.3178757131099701\n                            }, {\n                                \"X\": 0.19140438735485077,\n                                \"Y\": 0.32727476954460144\n                            }, {\n                                \"X\": 0.17684881389141083,\n                                \"Y\": 0.32727909088134766\n                            }]\n                        },\n                        \"Confidence\": 99.92985534667969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Rural\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028027329593896866,\n                                \"Height\": 0.007345091085880995,\n                                \"Left\": 0.27140405774116516,\n                                \"Top\": 0.3186820447444916\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27140405774116516,\n                                \"Y\": 0.31869035959243774\n                            }, {\n                                \"X\": 0.2994300425052643,\n                                \"Y\": 0.3186820447444916\n                            }, {\n                                \"X\": 0.29943138360977173,\n                                \"Y\": 0.3260188102722168\n                            }, {\n                                \"X\": 0.27140533924102783,\n                                \"Y\": 0.32602712512016296\n                            }]\n                        },\n                        \"Confidence\": 99.97392272949219\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015304760076105595,\n                                \"Height\": 0.00927507784217596,\n                                \"Left\": 0.252747118473053,\n                                \"Top\": 0.3180217146873474\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.252747118473053,\n                                \"Y\": 0.31802624464035034\n                            }, {\n                                \"X\": 0.26805028319358826,\n                                \"Y\": 0.3180217146873474\n                            }, {\n                                \"X\": 0.2680518627166748,\n                                \"Y\": 0.32729223370552063\n                            }, {\n                                \"X\": 0.25274866819381714,\n                                \"Y\": 0.32729679346084595\n                            }]\n                        },\n                        \"Confidence\": 99.93669128417969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015940263867378235,\n                                \"Height\": 0.0073424750007689,\n                                \"Left\": 0.49512773752212524,\n                                \"Top\": 0.5624253153800964\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49512773752212524,\n                                \"Y\": 0.562429666519165\n                            }, {\n                                \"X\": 0.5110661387443542,\n                                \"Y\": 0.5624253153800964\n                            }, {\n                                \"X\": 0.5110679864883423,\n                                \"Y\": 0.5697634816169739\n                            }, {\n                                \"X\": 0.4951295554637909,\n                                \"Y\": 0.5697677731513977\n                            }]\n                        },\n                        \"Confidence\": 99.55323028564453\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014548404142260551,\n                                \"Height\": 0.00907951034605503,\n                                \"Left\": 0.4768930673599243,\n                                \"Top\": 0.5620816349983215\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4768930673599243,\n                                \"Y\": 0.5620855689048767\n                            }, {\n                                \"X\": 0.49143922328948975,\n                                \"Y\": 0.5620816349983215\n                            }, {\n                                \"X\": 0.4914414584636688,\n                                \"Y\": 0.5711572170257568\n                            }, {\n                                \"X\": 0.476895272731781,\n                                \"Y\": 0.571161150932312\n                            }]\n                        },\n                        \"Confidence\": 99.94361114501953\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Infestation\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.055512696504592896,\n                                \"Height\": 0.007686588913202286,\n                                \"Left\": 0.37149789929389954,\n                                \"Top\": 0.6995431184768677\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.37149789929389954,\n                                \"Y\": 0.6995574235916138\n                            }, {\n                                \"X\": 0.42700886726379395,\n                                \"Y\": 0.6995431184768677\n                            }, {\n                                \"X\": 0.42701059579849243,\n                                \"Y\": 0.7072154879570007\n                            }, {\n                                \"X\": 0.3714994788169861,\n                                \"Y\": 0.707229733467102\n                            }]\n                        },\n                        \"Confidence\": 99.96185302734375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015295079909265041,\n                                \"Height\": 0.009415467269718647,\n                                \"Left\": 0.35286882519721985,\n                                \"Top\": 0.6993019580841064\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35286882519721985,\n                                \"Y\": 0.6993058919906616\n                            }, {\n                                \"X\": 0.36816197633743286,\n                                \"Y\": 0.6993019580841064\n                            }, {\n                                \"X\": 0.36816391348838806,\n                                \"Y\": 0.7087135314941406\n                            }, {\n                                \"X\": 0.3528707027435303,\n                                \"Y\": 0.7087174654006958\n                            }]\n                        },\n                        \"Confidence\": 99.8877944946289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Leasehold\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.056050386279821396,\n                                \"Height\": 0.007353628054261208,\n                                \"Left\": 0.30653828382492065,\n                                \"Top\": 0.12558439373970032\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.30653828382492065,\n                                \"Y\": 0.12560220062732697\n                            }, {\n                                \"X\": 0.36258718371391296,\n                                \"Y\": 0.12558439373970032\n                            }, {\n                                \"X\": 0.36258867383003235,\n                                \"Y\": 0.1329202502965927\n                            }, {\n                                \"X\": 0.3065396547317505,\n                                \"Y\": 0.13293801248073578\n                            }]\n                        },\n                        \"Confidence\": 99.94725799560547\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01570259779691696,\n                                \"Height\": 0.009216331876814365,\n                                \"Left\": 0.2885991632938385,\n                                \"Top\": 0.12500229477882385\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2885991632938385,\n                                \"Y\": 0.1250072717666626\n                            }, {\n                                \"X\": 0.30430006980895996,\n                                \"Y\": 0.12500229477882385\n                            }, {\n                                \"X\": 0.30430173873901367,\n                                \"Y\": 0.1342136412858963\n                            }, {\n                                \"X\": 0.2886008024215698,\n                                \"Y\": 0.13421861827373505\n                            }]\n                        },\n                        \"Confidence\": 99.89801025390625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Central Air Conditioning\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1269654631614685,\n                                \"Height\": 0.00937249418348074,\n                                \"Left\": 0.34897375106811523,\n                                \"Top\": 0.7489014863967896\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34897375106811523,\n                                \"Y\": 0.7489334344863892\n                            }, {\n                                \"X\": 0.4759369492530823,\n                                \"Y\": 0.7489014863967896\n                            }, {\n                                \"X\": 0.47593921422958374,\n                                \"Y\": 0.7582420706748962\n                            }, {\n                                \"X\": 0.34897559881210327,\n                                \"Y\": 0.7582739591598511\n                            }]\n                        },\n                        \"Confidence\": 84.65234375\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015126151964068413,\n                                \"Height\": 0.009209833107888699,\n                                \"Left\": 0.33121857047080994,\n                                \"Top\": 0.7486628293991089\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33121857047080994,\n                                \"Y\": 0.7486666440963745\n                            }, {\n                                \"X\": 0.34634289145469666,\n                                \"Y\": 0.7486628293991089\n                            }, {\n                                \"X\": 0.3463447093963623,\n                                \"Y\": 0.7578688859939575\n                            }, {\n                                \"X\": 0.3312203288078308,\n                                \"Y\": 0.7578726410865784\n                            }]\n                        },\n                        \"Confidence\": 99.90168762207031\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030231274664402008,\n                                \"Height\": 0.00734665198251605,\n                                \"Left\": 0.41493096947669983,\n                                \"Top\": 0.7612521648406982\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41493096947669983,\n                                \"Y\": 0.7612597346305847\n                            }, {\n                                \"X\": 0.44516053795814514,\n                                \"Y\": 0.7612521648406982\n                            }, {\n                                \"X\": 0.44516223669052124,\n                                \"Y\": 0.7685912847518921\n                            }, {\n                                \"X\": 0.41493260860443115,\n                                \"Y\": 0.7685987949371338\n                            }]\n                        },\n                        \"Confidence\": 99.96876525878906\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015361681580543518,\n                                \"Height\": 0.009213024750351906,\n                                \"Left\": 0.3955105245113373,\n                                \"Top\": 0.760677695274353\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3955105245113373,\n                                \"Y\": 0.7606815695762634\n                            }, {\n                                \"X\": 0.41087016463279724,\n                                \"Y\": 0.760677695274353\n                            }, {\n                                \"X\": 0.4108721911907196,\n                                \"Y\": 0.7698869109153748\n                            }, {\n                                \"X\": 0.39551249146461487,\n                                \"Y\": 0.7698907256126404\n                            }]\n                        },\n                        \"Confidence\": 99.88462829589844\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0159403458237648,\n                                \"Height\": 0.007341449148952961,\n                                \"Left\": 0.8797107338905334,\n                                \"Top\": 0.16176334023475647\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8797107338905334,\n                                \"Y\": 0.1617683470249176\n                            }, {\n                                \"X\": 0.8956482410430908,\n                                \"Y\": 0.16176334023475647\n                            }, {\n                                \"X\": 0.8956510424613953,\n                                \"Y\": 0.1690998077392578\n                            }, {\n                                \"X\": 0.8797134757041931,\n                                \"Y\": 0.16910479962825775\n                            }]\n                        },\n                        \"Confidence\": 99.96984100341797\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014924253337085247,\n                                \"Height\": 0.009206043556332588,\n                                \"Left\": 0.8617942929267883,\n                                \"Top\": 0.1612524688243866\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8617942929267883,\n                                \"Y\": 0.16125714778900146\n                            }, {\n                                \"X\": 0.8767150640487671,\n                                \"Y\": 0.1612524688243866\n                            }, {\n                                \"X\": 0.8767185211181641,\n                                \"Y\": 0.17045384645462036\n                            }, {\n                                \"X\": 0.8617976903915405,\n                                \"Y\": 0.17045851051807404\n                            }]\n                        },\n                        \"Confidence\": 99.91692352294922\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Declining\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04836496710777283,\n                                \"Height\": 0.009018915705382824,\n                                \"Left\": 0.617069661617279,\n                                \"Top\": 0.3189067244529724\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.617069661617279,\n                                \"Y\": 0.3189210891723633\n                            }, {\n                                \"X\": 0.6654318571090698,\n                                \"Y\": 0.3189067244529724\n                            }, {\n                                \"X\": 0.6654345989227295,\n                                \"Y\": 0.3279113173484802\n                            }, {\n                                \"X\": 0.6170722246170044,\n                                \"Y\": 0.3279256224632263\n                            }]\n                        },\n                        \"Confidence\": 99.97789001464844\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015154264867305756,\n                                \"Height\": 0.009284776635468006,\n                                \"Left\": 0.5985892415046692,\n                                \"Top\": 0.31842100620269775\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5985892415046692,\n                                \"Y\": 0.3184255063533783\n                            }, {\n                                \"X\": 0.6137408018112183,\n                                \"Y\": 0.31842100620269775\n                            }, {\n                                \"X\": 0.6137434840202332,\n                                \"Y\": 0.32770130038261414\n                            }, {\n                                \"X\": 0.5985918641090393,\n                                \"Y\": 0.3277057707309723\n                            }]\n                        },\n                        \"Confidence\": 99.95231628417969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Heated\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03957248479127884,\n                                \"Height\": 0.007348812650889158,\n                                \"Left\": 0.18079571425914764,\n                                \"Top\": 0.761308491230011\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.18079571425914764,\n                                \"Y\": 0.7613184452056885\n                            }, {\n                                \"X\": 0.22036705911159515,\n                                \"Y\": 0.761308491230011\n                            }, {\n                                \"X\": 0.2203681915998459,\n                                \"Y\": 0.7686474323272705\n                            }, {\n                                \"X\": 0.1807967573404312,\n                                \"Y\": 0.7686573266983032\n                            }]\n                        },\n                        \"Confidence\": 99.95995330810547\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015249948017299175,\n                                \"Height\": 0.009053959511220455,\n                                \"Left\": 0.1625325083732605,\n                                \"Top\": 0.7608423233032227\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1625325083732605,\n                                \"Y\": 0.7608461380004883\n                            }, {\n                                \"X\": 0.17778117954730988,\n                                \"Y\": 0.7608423233032227\n                            }, {\n                                \"X\": 0.17778246104717255,\n                                \"Y\": 0.7698925137519836\n                            }, {\n                                \"X\": 0.1625337451696396,\n                                \"Y\": 0.7698963284492493\n                            }]\n                        },\n                        \"Confidence\": 99.80839538574219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Vacant\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.037916138768196106,\n                                \"Height\": 0.007347817998379469,\n                                \"Left\": 0.2581808567047119,\n                                \"Top\": 0.11326808482408524\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2581808567047119,\n                                \"Y\": 0.11328017711639404\n                            }, {\n                                \"X\": 0.29609566926956177,\n                                \"Y\": 0.11326808482408524\n                            }, {\n                                \"X\": 0.2960969805717468,\n                                \"Y\": 0.12060383707284927\n                            }, {\n                                \"X\": 0.2581820785999298,\n                                \"Y\": 0.1206158995628357\n                            }]\n                        },\n                        \"Confidence\": 99.97502136230469\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01484888419508934,\n                                \"Height\": 0.0090470090508461,\n                                \"Left\": 0.2401558756828308,\n                                \"Top\": 0.11326642334461212\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2401558756828308,\n                                \"Y\": 0.11327116191387177\n                            }, {\n                                \"X\": 0.2550032436847687,\n                                \"Y\": 0.11326642334461212\n                            }, {\n                                \"X\": 0.25500476360321045,\n                                \"Y\": 0.12230871617794037\n                            }, {\n                                \"X\": 0.2401573359966278,\n                                \"Y\": 0.12231343239545822\n                            }]\n                        },\n                        \"Confidence\": 99.91650390625\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Refinance Transaction\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11979392915964127,\n                                \"Height\": 0.007373791188001633,\n                                \"Left\": 0.3142334818840027,\n                                \"Top\": 0.1375659555196762\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3142334818840027,\n                                \"Y\": 0.13760384917259216\n                            }, {\n                                \"X\": 0.43402573466300964,\n                                \"Y\": 0.1375659555196762\n                            }, {\n                                \"X\": 0.43402743339538574,\n                                \"Y\": 0.14490193128585815\n                            }, {\n                                \"X\": 0.3142348527908325,\n                                \"Y\": 0.14493975043296814\n                            }]\n                        },\n                        \"Confidence\": 99.86666107177734\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014952423982322216,\n                                \"Height\": 0.009093362838029861,\n                                \"Left\": 0.2958884835243225,\n                                \"Top\": 0.13720683753490448\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2958884835243225,\n                                \"Y\": 0.13721156120300293\n                            }, {\n                                \"X\": 0.3108392357826233,\n                                \"Y\": 0.13720683753490448\n                            }, {\n                                \"X\": 0.3108409345149994,\n                                \"Y\": 0.1462954729795456\n                            }, {\n                                \"X\": 0.2958901524543762,\n                                \"Y\": 0.14630019664764404\n                            }]\n                        },\n                        \"Confidence\": 99.91072082519531\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Stable\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03407496586441994,\n                                \"Height\": 0.008014094084501266,\n                                \"Left\": 0.5395811200141907,\n                                \"Top\": 0.31860050559043884\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5395811200141907,\n                                \"Y\": 0.31861063838005066\n                            }, {\n                                \"X\": 0.5736538767814636,\n                                \"Y\": 0.31860050559043884\n                            }, {\n                                \"X\": 0.5736560821533203,\n                                \"Y\": 0.3266044855117798\n                            }, {\n                                \"X\": 0.5395832657814026,\n                                \"Y\": 0.3266145884990692\n                            }]\n                        },\n                        \"Confidence\": 99.94461059570312\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014596841298043728,\n                                \"Height\": 0.009290559217333794,\n                                \"Left\": 0.5224422216415405,\n                                \"Top\": 0.3179316520690918\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5224422216415405,\n                                \"Y\": 0.3179360032081604\n                            }, {\n                                \"X\": 0.537036657333374,\n                                \"Y\": 0.3179316520690918\n                            }, {\n                                \"X\": 0.537039041519165,\n                                \"Y\": 0.32721787691116333\n                            }, {\n                                \"X\": 0.5224446058273315,\n                                \"Y\": 0.32722222805023193\n                            }]\n                        },\n                        \"Confidence\": 99.89920043945312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Built-in\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03683207184076309,\n                                \"Height\": 0.0073486994951963425,\n                                \"Left\": 0.9233630299568176,\n                                \"Top\": 0.7611230611801147\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9233630299568176,\n                                \"Y\": 0.7611322999000549\n                            }, {\n                                \"X\": 0.9601921439170837,\n                                \"Y\": 0.7611230611801147\n                            }, {\n                                \"X\": 0.9601951241493225,\n                                \"Y\": 0.7684625387191772\n                            }, {\n                                \"X\": 0.9233659505844116,\n                                \"Y\": 0.7684717774391174\n                            }]\n                        },\n                        \"Confidence\": 99.80765533447266\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015113365836441517,\n                                \"Height\": 0.009387023746967316,\n                                \"Left\": 0.9047712087631226,\n                                \"Top\": 0.7609628438949585\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9047712087631226,\n                                \"Y\": 0.7609666585922241\n                            }, {\n                                \"X\": 0.9198808670043945,\n                                \"Y\": 0.7609628438949585\n                            }, {\n                                \"X\": 0.9198845624923706,\n                                \"Y\": 0.7703461050987244\n                            }, {\n                                \"X\": 0.9047748446464539,\n                                \"Y\": 0.7703498601913452\n                            }]\n                        },\n                        \"Confidence\": 99.90570068359375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Over 75%\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.051655467599630356,\n                                \"Height\": 0.007685478311032057,\n                                \"Left\": 0.11699075251817703,\n                                \"Top\": 0.33072641491889954\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11699075251817703,\n                                \"Y\": 0.3307417035102844\n                            }, {\n                                \"X\": 0.16864515841007233,\n                                \"Y\": 0.33072641491889954\n                            }, {\n                                \"X\": 0.1686462163925171,\n                                \"Y\": 0.3383966386318207\n                            }, {\n                                \"X\": 0.11699167639017105,\n                                \"Y\": 0.3384118974208832\n                            }]\n                        },\n                        \"Confidence\": 83.82296752929688\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014949925243854523,\n                                \"Height\": 0.009220635518431664,\n                                \"Left\": 0.09862098842859268,\n                                \"Top\": 0.3303893804550171\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.09862098842859268,\n                                \"Y\": 0.33039382100105286\n                            }, {\n                                \"X\": 0.11356981843709946,\n                                \"Y\": 0.3303893804550171\n                            }, {\n                                \"X\": 0.1135709136724472,\n                                \"Y\": 0.3396055996417999\n                            }, {\n                                \"X\": 0.09862204641103745,\n                                \"Y\": 0.3396100103855133\n                            }]\n                        },\n                        \"Confidence\": 99.9581069946289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Rapid\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02967500127851963,\n                                \"Height\": 0.008679467253386974,\n                                \"Left\": 0.11754175275564194,\n                                \"Top\": 0.3430718183517456\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11754175275564194,\n                                \"Y\": 0.3430805504322052\n                            }, {\n                                \"X\": 0.14721561968326569,\n                                \"Y\": 0.3430718183517456\n                            }, {\n                                \"X\": 0.14721675217151642,\n                                \"Y\": 0.35174256563186646\n                            }, {\n                                \"X\": 0.1175427958369255,\n                                \"Y\": 0.35175126791000366\n                            }]\n                        },\n                        \"Confidence\": 99.95398712158203\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015074679628014565,\n                                \"Height\": 0.009248938411474228,\n                                \"Left\": 0.0984039157629013,\n                                \"Top\": 0.3422285318374634\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0984039157629013,\n                                \"Y\": 0.34223297238349915\n                            }, {\n                                \"X\": 0.11347749829292297,\n                                \"Y\": 0.3422285318374634\n                            }, {\n                                \"X\": 0.11347859352827072,\n                                \"Y\": 0.35147303342819214\n                            }, {\n                                \"X\": 0.09840497374534607,\n                                \"Y\": 0.3514774739742279\n                            }]\n                        },\n                        \"Confidence\": 99.93376159667969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"PUD\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025281110778450966,\n                                \"Height\": 0.0073441145941615105,\n                                \"Left\": 0.6813052892684937,\n                                \"Top\": 0.1131371557712555\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6813052892684937,\n                                \"Y\": 0.11314521729946136\n                            }, {\n                                \"X\": 0.706584095954895,\n                                \"Y\": 0.1131371557712555\n                            }, {\n                                \"X\": 0.7065864205360413,\n                                \"Y\": 0.1204732283949852\n                            }, {\n                                \"X\": 0.6813076138496399,\n                                \"Y\": 0.12048126757144928\n                            }]\n                        },\n                        \"Confidence\": 99.89180755615234\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015349676832556725,\n                                \"Height\": 0.009215498343110085,\n                                \"Left\": 0.6630821824073792,\n                                \"Top\": 0.11282385140657425\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6630821824073792,\n                                \"Y\": 0.11282874643802643\n                            }, {\n                                \"X\": 0.6784290075302124,\n                                \"Y\": 0.11282385140657425\n                            }, {\n                                \"X\": 0.6784318685531616,\n                                \"Y\": 0.1220344752073288\n                            }, {\n                                \"X\": 0.6630849838256836,\n                                \"Y\": 0.12203935533761978\n                            }]\n                        },\n                        \"Confidence\": 99.85374450683594\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Driveway\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.050022728741168976,\n                                \"Height\": 0.009019903838634491,\n                                \"Left\": 0.7908734083175659,\n                                \"Top\": 0.7117797136306763\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7908734083175659,\n                                \"Y\": 0.711792528629303\n                            }, {\n                                \"X\": 0.8408928513526917,\n                                \"Y\": 0.7117797136306763\n                            }, {\n                                \"X\": 0.8408961296081543,\n                                \"Y\": 0.7207868695259094\n                            }, {\n                                \"X\": 0.790876567363739,\n                                \"Y\": 0.7207996249198914\n                            }]\n                        },\n                        \"Confidence\": 99.95600891113281\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01511011365801096,\n                                \"Height\": 0.009160728193819523,\n                                \"Left\": 0.7731919288635254,\n                                \"Top\": 0.711223304271698\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7731919288635254,\n                                \"Y\": 0.7112271785736084\n                            }, {\n                                \"X\": 0.7882989048957825,\n                                \"Y\": 0.711223304271698\n                            }, {\n                                \"X\": 0.7883020639419556,\n                                \"Y\": 0.7203801870346069\n                            }, {\n                                \"X\": 0.7731950879096985,\n                                \"Y\": 0.7203840613365173\n                            }]\n                        },\n                        \"Confidence\": 99.62981414794922\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Microwave\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05826343223452568,\n                                \"Height\": 0.007353694178164005,\n                                \"Left\": 0.4550570547580719,\n                                \"Top\": 0.7745789885520935\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4550570547580719,\n                                \"Y\": 0.7745935320854187\n                            }, {\n                                \"X\": 0.5133185982704163,\n                                \"Y\": 0.7745789885520935\n                            }, {\n                                \"X\": 0.5133204460144043,\n                                \"Y\": 0.7819182276725769\n                            }, {\n                                \"X\": 0.455058753490448,\n                                \"Y\": 0.7819327116012573\n                            }]\n                        },\n                        \"Confidence\": 99.96925354003906\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015120518393814564,\n                                \"Height\": 0.009003512561321259,\n                                \"Left\": 0.440654993057251,\n                                \"Top\": 0.774236798286438\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.440654993057251,\n                                \"Y\": 0.7742405533790588\n                            }, {\n                                \"X\": 0.45577338337898254,\n                                \"Y\": 0.774236798286438\n                            }, {\n                                \"X\": 0.45577549934387207,\n                                \"Y\": 0.783236563205719\n                            }, {\n                                \"X\": 0.4406570494174957,\n                                \"Y\": 0.7832403182983398\n                            }]\n                        },\n                        \"Confidence\": 99.8883285522461\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019791582599282265,\n                                \"Height\": 0.00767830153927207,\n                                \"Left\": 0.7683963775634766,\n                                \"Top\": 0.8846057653427124\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7683963775634766,\n                                \"Y\": 0.8846104741096497\n                            }, {\n                                \"X\": 0.7881852388381958,\n                                \"Y\": 0.8846057653427124\n                            }, {\n                                \"X\": 0.7881879210472107,\n                                \"Y\": 0.8922793865203857\n                            }, {\n                                \"X\": 0.7683990001678467,\n                                \"Y\": 0.892284095287323\n                            }]\n                        },\n                        \"Confidence\": 99.96636962890625\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01518090721219778,\n                                \"Height\": 0.009151994250714779,\n                                \"Left\": 0.7501029372215271,\n                                \"Top\": 0.8844239711761475\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7501029372215271,\n                                \"Y\": 0.8844276070594788\n                            }, {\n                                \"X\": 0.7652807235717773,\n                                \"Y\": 0.8844239711761475\n                            }, {\n                                \"X\": 0.7652838230133057,\n                                \"Y\": 0.8935723900794983\n                            }, {\n                                \"X\": 0.7501059770584106,\n                                \"Y\": 0.8935759663581848\n                            }]\n                        },\n                        \"Confidence\": 99.9170913696289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019786298274993896,\n                                \"Height\": 0.007342686410993338,\n                                \"Left\": 0.6489191055297852,\n                                \"Top\": 0.23386512696743011\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6489191055297852,\n                                \"Y\": 0.233871191740036\n                            }, {\n                                \"X\": 0.6687031388282776,\n                                \"Y\": 0.23386512696743011\n                            }, {\n                                \"X\": 0.668705403804779,\n                                \"Y\": 0.24120177328586578\n                            }, {\n                                \"X\": 0.6489213109016418,\n                                \"Y\": 0.24120782315731049\n                            }]\n                        },\n                        \"Confidence\": 99.92987823486328\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014802367426455021,\n                                \"Height\": 0.00919736921787262,\n                                \"Left\": 0.6340122818946838,\n                                \"Top\": 0.2330736517906189\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6340122818946838,\n                                \"Y\": 0.23307818174362183\n                            }, {\n                                \"X\": 0.648811936378479,\n                                \"Y\": 0.2330736517906189\n                            }, {\n                                \"X\": 0.6488146781921387,\n                                \"Y\": 0.2422664910554886\n                            }, {\n                                \"X\": 0.6340150237083435,\n                                \"Y\": 0.24227102100849152\n                            }]\n                        },\n                        \"Confidence\": 99.94833374023438\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019789468497037888,\n                                \"Height\": 0.0076773278415203094,\n                                \"Left\": 0.7638933658599854,\n                                \"Top\": 0.5743595361709595\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7638933658599854,\n                                \"Y\": 0.5743649005889893\n                            }, {\n                                \"X\": 0.7836801409721375,\n                                \"Y\": 0.5743595361709595\n                            }, {\n                                \"X\": 0.7836828231811523,\n                                \"Y\": 0.5820315480232239\n                            }, {\n                                \"X\": 0.7638959884643555,\n                                \"Y\": 0.5820368528366089\n                            }]\n                        },\n                        \"Confidence\": 99.97313690185547\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014884592965245247,\n                                \"Height\": 0.009122544899582863,\n                                \"Left\": 0.7456210851669312,\n                                \"Top\": 0.5739961862564087\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7456210851669312,\n                                \"Y\": 0.5740001797676086\n                            }, {\n                                \"X\": 0.7605025768280029,\n                                \"Y\": 0.5739961862564087\n                            }, {\n                                \"X\": 0.7605056762695312,\n                                \"Y\": 0.5831146836280823\n                            }, {\n                                \"X\": 0.7456241250038147,\n                                \"Y\": 0.583118736743927\n                            }]\n                        },\n                        \"Confidence\": 99.93611145019531\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015942314639687538,\n                                \"Height\": 0.00767632806673646,\n                                \"Left\": 0.813910186290741,\n                                \"Top\": 0.5743470788002014\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.813910186290741,\n                                \"Y\": 0.5743513703346252\n                            }, {\n                                \"X\": 0.8298497200012207,\n                                \"Y\": 0.5743470788002014\n                            }, {\n                                \"X\": 0.8298524618148804,\n                                \"Y\": 0.5820190906524658\n                            }, {\n                                \"X\": 0.8139129281044006,\n                                \"Y\": 0.5820233821868896\n                            }]\n                        },\n                        \"Confidence\": 99.71231842041016\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015004090964794159,\n                                \"Height\": 0.00920275878161192,\n                                \"Left\": 0.7952378392219543,\n                                \"Top\": 0.573935329914093\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7952378392219543,\n                                \"Y\": 0.5739393830299377\n                            }, {\n                                \"X\": 0.8102386593818665,\n                                \"Y\": 0.573935329914093\n                            }, {\n                                \"X\": 0.8102419376373291,\n                                \"Y\": 0.5831340551376343\n                            }, {\n                                \"X\": 0.7952410578727722,\n                                \"Y\": 0.583138108253479\n                            }]\n                        },\n                        \"Confidence\": 99.86322784423828\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Electricity\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.052757155150175095,\n                                \"Height\": 0.009019793011248112,\n                                \"Left\": 0.04447439685463905,\n                                \"Top\": 0.5258491039276123\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04447439685463905,\n                                \"Y\": 0.5258636474609375\n                            }, {\n                                \"X\": 0.09723053127527237,\n                                \"Y\": 0.5258491039276123\n                            }, {\n                                \"X\": 0.09723155200481415,\n                                \"Y\": 0.5348544120788574\n                            }, {\n                                \"X\": 0.044475257396698,\n                                \"Y\": 0.5348688960075378\n                            }]\n                        },\n                        \"Confidence\": 99.26376342773438\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015088733285665512,\n                                \"Height\": 0.009388826787471771,\n                                \"Left\": 0.12484823167324066,\n                                \"Top\": 0.5255206227302551\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12484823167324066,\n                                \"Y\": 0.5255247950553894\n                            }, {\n                                \"X\": 0.13993576169013977,\n                                \"Y\": 0.5255206227302551\n                            }, {\n                                \"X\": 0.13993696868419647,\n                                \"Y\": 0.5349053144454956\n                            }, {\n                                \"X\": 0.12484938651323318,\n                                \"Y\": 0.5349094867706299\n                            }]\n                        },\n                        \"Confidence\": 99.89144897460938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Refrigerator\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06375482678413391,\n                                \"Height\": 0.009022749029099941,\n                                \"Left\": 0.12473846971988678,\n                                \"Top\": 0.7743263840675354\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12473846971988678,\n                                \"Y\": 0.7743422985076904\n                            }, {\n                                \"X\": 0.18849200010299683,\n                                \"Y\": 0.7743263840675354\n                            }, {\n                                \"X\": 0.1884932965040207,\n                                \"Y\": 0.7833333015441895\n                            }, {\n                                \"X\": 0.12473957985639572,\n                                \"Y\": 0.7833491563796997\n                            }]\n                        },\n                        \"Confidence\": 99.9600830078125\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015113512054085732,\n                                \"Height\": 0.00933173205703497,\n                                \"Left\": 0.10890793800354004,\n                                \"Top\": 0.7738187909126282\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10890793800354004,\n                                \"Y\": 0.773822546005249\n                            }, {\n                                \"X\": 0.12402030825614929,\n                                \"Y\": 0.7738187909126282\n                            }, {\n                                \"X\": 0.12402145564556122,\n                                \"Y\": 0.7831467986106873\n                            }, {\n                                \"X\": 0.10890904068946838,\n                                \"Y\": 0.7831505537033081\n                            }]\n                        },\n                        \"Confidence\": 99.91399383544922\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Water\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.032426632940769196,\n                                \"Height\": 0.007680319715291262,\n                                \"Left\": 0.345631867647171,\n                                \"Top\": 0.5257717370986938\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.345631867647171,\n                                \"Y\": 0.5257806777954102\n                            }, {\n                                \"X\": 0.37805691361427307,\n                                \"Y\": 0.5257717370986938\n                            }, {\n                                \"X\": 0.378058522939682,\n                                \"Y\": 0.5334431529045105\n                            }, {\n                                \"X\": 0.3456333875656128,\n                                \"Y\": 0.533452033996582\n                            }]\n                        },\n                        \"Confidence\": 99.96903991699219\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015245540998876095,\n                                \"Height\": 0.009288589470088482,\n                                \"Left\": 0.4573153257369995,\n                                \"Top\": 0.525541365146637\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4573153257369995,\n                                \"Y\": 0.5255455374717712\n                            }, {\n                                \"X\": 0.4725586175918579,\n                                \"Y\": 0.525541365146637\n                            }, {\n                                \"X\": 0.472560852766037,\n                                \"Y\": 0.5348257422447205\n                            }, {\n                                \"X\": 0.4573175013065338,\n                                \"Y\": 0.5348299145698547\n                            }]\n                        },\n                        \"Confidence\": 99.91864776611328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Att.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01703791506588459,\n                                \"Height\": 0.007342821452766657,\n                                \"Left\": 0.1445094645023346,\n                                \"Top\": 0.6625855565071106\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1445094645023346,\n                                \"Y\": 0.662589967250824\n                            }, {\n                                \"X\": 0.16154637932777405,\n                                \"Y\": 0.6625855565071106\n                            }, {\n                                \"X\": 0.16154737770557404,\n                                \"Y\": 0.6699239015579224\n                            }, {\n                                \"X\": 0.144510418176651,\n                                \"Y\": 0.6699283719062805\n                            }]\n                        },\n                        \"Confidence\": 99.83004760742188\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01503922138363123,\n                                \"Height\": 0.009157741442322731,\n                                \"Left\": 0.12763077020645142,\n                                \"Top\": 0.6617812514305115\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12763077020645142,\n                                \"Y\": 0.6617851853370667\n                            }, {\n                                \"X\": 0.14266881346702576,\n                                \"Y\": 0.6617812514305115\n                            }, {\n                                \"X\": 0.14266999065876007,\n                                \"Y\": 0.6709350347518921\n                            }, {\n                                \"X\": 0.12763190269470215,\n                                \"Y\": 0.6709389686584473\n                            }]\n                        },\n                        \"Confidence\": 99.88796997070312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Range/Oven\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06760356575250626,\n                                \"Height\": 0.009023791179060936,\n                                \"Left\": 0.21157537400722504,\n                                \"Top\": 0.7743037939071655\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.21157537400722504,\n                                \"Y\": 0.774320662021637\n                            }, {\n                                \"X\": 0.27917736768722534,\n                                \"Y\": 0.7743037939071655\n                            }, {\n                                \"X\": 0.2791789472103119,\n                                \"Y\": 0.7833107709884644\n                            }, {\n                                \"X\": 0.21157675981521606,\n                                \"Y\": 0.783327579498291\n                            }]\n                        },\n                        \"Confidence\": 99.70233917236328\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015013306401669979,\n                                \"Height\": 0.009222986176609993,\n                                \"Left\": 0.19646839797496796,\n                                \"Top\": 0.7738574147224426\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19646839797496796,\n                                \"Y\": 0.7738611698150635\n                            }, {\n                                \"X\": 0.2114802896976471,\n                                \"Y\": 0.7738574147224426\n                            }, {\n                                \"X\": 0.2114817053079605,\n                                \"Y\": 0.7830767035484314\n                            }, {\n                                \"X\": 0.1964697539806366,\n                                \"Y\": 0.7830803990364075\n                            }]\n                        },\n                        \"Confidence\": 99.86598205566406\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"per month\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05386089161038399,\n                                \"Height\": 0.008353802375495434,\n                                \"Left\": 0.9082695841789246,\n                                \"Top\": 0.11338911205530167\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.9082695841789246,\n                                \"Y\": 0.11340629309415817\n                            }, {\n                                \"X\": 0.9621270895004272,\n                                \"Y\": 0.11338911205530167\n                            }, {\n                                \"X\": 0.9621304273605347,\n                                \"Y\": 0.12172579020261765\n                            }, {\n                                \"X\": 0.9082728028297424,\n                                \"Y\": 0.12174291908740997\n                            }]\n                        },\n                        \"Confidence\": 98.9974136352539\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01520040538161993,\n                                \"Height\": 0.009290498681366444,\n                                \"Left\": 0.8894143104553223,\n                                \"Top\": 0.11284195631742477\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8894143104553223,\n                                \"Y\": 0.11284680664539337\n                            }, {\n                                \"X\": 0.9046111106872559,\n                                \"Y\": 0.11284195631742477\n                            }, {\n                                \"X\": 0.9046147465705872,\n                                \"Y\": 0.12212762236595154\n                            }, {\n                                \"X\": 0.8894178867340088,\n                                \"Y\": 0.12213245779275894\n                            }]\n                        },\n                        \"Confidence\": 99.89558410644531\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"None\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0291296299546957,\n                                \"Height\": 0.007346125785261393,\n                                \"Left\": 0.18079054355621338,\n                                \"Top\": 0.7249506711959839\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.18079054355621338,\n                                \"Y\": 0.724958062171936\n                            }, {\n                                \"X\": 0.2099190652370453,\n                                \"Y\": 0.7249506711959839\n                            }, {\n                                \"X\": 0.20992018282413483,\n                                \"Y\": 0.7322894334793091\n                            }, {\n                                \"X\": 0.18079158663749695,\n                                \"Y\": 0.7322968244552612\n                            }]\n                        },\n                        \"Confidence\": 99.6341323852539\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01524403877556324,\n                                \"Height\": 0.009389488026499748,\n                                \"Left\": 0.16281379759311676,\n                                \"Top\": 0.7243728041648865\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.16281379759311676,\n                                \"Y\": 0.7243766784667969\n                            }, {\n                                \"X\": 0.1780565083026886,\n                                \"Y\": 0.7243728041648865\n                            }, {\n                                \"X\": 0.17805783450603485,\n                                \"Y\": 0.7337584495544434\n                            }, {\n                                \"X\": 0.16281506419181824,\n                                \"Y\": 0.7337623238563538\n                            }]\n                        },\n                        \"Confidence\": 98.2984848022461\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Drop Stair\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05495954677462578,\n                                \"Height\": 0.008686909452080727,\n                                \"Left\": 0.06482908874750137,\n                                \"Top\": 0.7369823455810547\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.06482908874750137,\n                                \"Y\": 0.7369962930679321\n                            }, {\n                                \"X\": 0.11978758126497269,\n                                \"Y\": 0.7369823455810547\n                            }, {\n                                \"X\": 0.11978863179683685,\n                                \"Y\": 0.7456554174423218\n                            }, {\n                                \"X\": 0.06482997536659241,\n                                \"Y\": 0.7456692457199097\n                            }]\n                        },\n                        \"Confidence\": 94.6834716796875\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015499690547585487,\n                                \"Height\": 0.009503756649792194,\n                                \"Left\": 0.046365752816200256,\n                                \"Top\": 0.7367324233055115\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046365752816200256,\n                                \"Y\": 0.7367363572120667\n                            }, {\n                                \"X\": 0.06186447665095329,\n                                \"Y\": 0.7367324233055115\n                            }, {\n                                \"X\": 0.061865441501140594,\n                                \"Y\": 0.746232271194458\n                            }, {\n                                \"X\": 0.04636666923761368,\n                                \"Y\": 0.7462362051010132\n                            }]\n                        },\n                        \"Confidence\": 99.89910888671875\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030225316062569618,\n                                \"Height\": 0.007345568388700485,\n                                \"Left\": 0.46479856967926025,\n                                \"Top\": 0.13754665851593018\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.46479856967926025,\n                                \"Y\": 0.13755621016025543\n                            }, {\n                                \"X\": 0.4950220584869385,\n                                \"Y\": 0.13754665851593018\n                            }, {\n                                \"X\": 0.4950238764286041,\n                                \"Y\": 0.1448826789855957\n                            }, {\n                                \"X\": 0.46480029821395874,\n                                \"Y\": 0.14489221572875977\n                            }]\n                        },\n                        \"Confidence\": 99.93921661376953\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01540223415941,\n                                \"Height\": 0.009292349219322205,\n                                \"Left\": 0.44550400972366333,\n                                \"Top\": 0.13697877526283264\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.44550400972366333,\n                                \"Y\": 0.13698364794254303\n                            }, {\n                                \"X\": 0.460904061794281,\n                                \"Y\": 0.13697877526283264\n                            }, {\n                                \"X\": 0.4609062373638153,\n                                \"Y\": 0.14626626670360565\n                            }, {\n                                \"X\": 0.44550615549087524,\n                                \"Y\": 0.14627112448215485\n                            }]\n                        },\n                        \"Confidence\": 99.92366027832031\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019788676872849464,\n                                \"Height\": 0.007343505043536425,\n                                \"Left\": 0.7479256987571716,\n                                \"Top\": 0.4896411597728729\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7479256987571716,\n                                \"Y\": 0.48964667320251465\n                            }, {\n                                \"X\": 0.767711877822876,\n                                \"Y\": 0.4896411597728729\n                            }, {\n                                \"X\": 0.7677143812179565,\n                                \"Y\": 0.49697914719581604\n                            }, {\n                                \"X\": 0.7479281425476074,\n                                \"Y\": 0.49698466062545776\n                            }]\n                        },\n                        \"Confidence\": 99.92578887939453\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014976662583649158,\n                                \"Height\": 0.009353267028927803,\n                                \"Left\": 0.7297777533531189,\n                                \"Top\": 0.4891672432422638\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7297777533531189,\n                                \"Y\": 0.48917141556739807\n                            }, {\n                                \"X\": 0.7447512745857239,\n                                \"Y\": 0.4891672432422638\n                            }, {\n                                \"X\": 0.744754433631897,\n                                \"Y\": 0.498516321182251\n                            }, {\n                                \"X\": 0.7297808527946472,\n                                \"Y\": 0.49852049350738525\n                            }]\n                        },\n                        \"Confidence\": 99.93568420410156\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015392018482089043,\n                                \"Height\": 0.007342315744608641,\n                                \"Left\": 0.7979409098625183,\n                                \"Top\": 0.489628404378891\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7979409098625183,\n                                \"Y\": 0.4896326959133148\n                            }, {\n                                \"X\": 0.8133302927017212,\n                                \"Y\": 0.489628404378891\n                            }, {\n                                \"X\": 0.8133329153060913,\n                                \"Y\": 0.4969664216041565\n                            }, {\n                                \"X\": 0.7979434728622437,\n                                \"Y\": 0.4969707131385803\n                            }]\n                        },\n                        \"Confidence\": 99.5683822631836\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015157846733927727,\n                                \"Height\": 0.009126496501266956,\n                                \"Left\": 0.7795611023902893,\n                                \"Top\": 0.4892672896385193\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7795611023902893,\n                                \"Y\": 0.48927152156829834\n                            }, {\n                                \"X\": 0.7947157621383667,\n                                \"Y\": 0.4892672896385193\n                            }, {\n                                \"X\": 0.7947189807891846,\n                                \"Y\": 0.4983895719051361\n                            }, {\n                                \"X\": 0.7795642614364624,\n                                \"Y\": 0.4983937740325928\n                            }]\n                        },\n                        \"Confidence\": 99.94197845458984\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Outside Entry/Exit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09673241525888443,\n                                \"Height\": 0.009031492285430431,\n                                \"Left\": 0.2983979284763336,\n                                \"Top\": 0.6865417957305908\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2983979284763336,\n                                \"Y\": 0.6865668296813965\n                            }, {\n                                \"X\": 0.39512839913368225,\n                                \"Y\": 0.6865417957305908\n                            }, {\n                                \"X\": 0.39513033628463745,\n                                \"Y\": 0.695548415184021\n                            }, {\n                                \"X\": 0.29839956760406494,\n                                \"Y\": 0.6955733299255371\n                            }]\n                        },\n                        \"Confidence\": 99.65231323242188\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01530776172876358,\n                                \"Height\": 0.009252945892512798,\n                                \"Left\": 0.2795431315898895,\n                                \"Top\": 0.6860790848731995\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2795431315898895,\n                                \"Y\": 0.6860830783843994\n                            }, {\n                                \"X\": 0.2948492169380188,\n                                \"Y\": 0.6860790848731995\n                            }, {\n                                \"X\": 0.2948508858680725,\n                                \"Y\": 0.6953281164169312\n                            }, {\n                                \"X\": 0.27954474091529846,\n                                \"Y\": 0.6953320503234863\n                            }]\n                        },\n                        \"Confidence\": 99.89198303222656\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FWA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025283733382821083,\n                                \"Height\": 0.007345273625105619,\n                                \"Left\": 0.34512168169021606,\n                                \"Top\": 0.7249098420143127\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34512168169021606,\n                                \"Y\": 0.7249162793159485\n                            }, {\n                                \"X\": 0.370403915643692,\n                                \"Y\": 0.7249098420143127\n                            }, {\n                                \"X\": 0.3704054057598114,\n                                \"Y\": 0.7322486639022827\n                            }, {\n                                \"X\": 0.34512314200401306,\n                                \"Y\": 0.7322551012039185\n                            }]\n                        },\n                        \"Confidence\": 99.93624114990234\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015244070440530777,\n                                \"Height\": 0.009354792535305023,\n                                \"Left\": 0.32618269324302673,\n                                \"Top\": 0.7242677211761475\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.32618269324302673,\n                                \"Y\": 0.7242715954780579\n                            }, {\n                                \"X\": 0.34142494201660156,\n                                \"Y\": 0.7242677211761475\n                            }, {\n                                \"X\": 0.3414267599582672,\n                                \"Y\": 0.7336186170578003\n                            }, {\n                                \"X\": 0.32618448138237,\n                                \"Y\": 0.7336224913597107\n                            }]\n                        },\n                        \"Confidence\": 99.94071960449219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Pool\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02418612688779831,\n                                \"Height\": 0.007011628244072199,\n                                \"Left\": 0.5314533710479736,\n                                \"Top\": 0.7615580558776855\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5314533710479736,\n                                \"Y\": 0.7615641355514526\n                            }, {\n                                \"X\": 0.5556375980377197,\n                                \"Y\": 0.7615580558776855\n                            }, {\n                                \"X\": 0.5556395053863525,\n                                \"Y\": 0.7685636281967163\n                            }, {\n                                \"X\": 0.5314552187919617,\n                                \"Y\": 0.7685697078704834\n                            }]\n                        },\n                        \"Confidence\": 99.96854400634766\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015287942253053188,\n                                \"Height\": 0.009308818727731705,\n                                \"Left\": 0.5122061371803284,\n                                \"Top\": 0.7611175179481506\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5122061371803284,\n                                \"Y\": 0.7611213326454163\n                            }, {\n                                \"X\": 0.5274916887283325,\n                                \"Y\": 0.7611175179481506\n                            }, {\n                                \"X\": 0.5274940729141235,\n                                \"Y\": 0.7704225182533264\n                            }, {\n                                \"X\": 0.5122085213661194,\n                                \"Y\": 0.770426332950592\n                            }]\n                        },\n                        \"Confidence\": 99.9235610961914\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015394201502203941,\n                                \"Height\": 0.007343660574406385,\n                                \"Left\": 0.8184186220169067,\n                                \"Top\": 0.8849285840988159\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8184186220169067,\n                                \"Y\": 0.8849322199821472\n                            }, {\n                                \"X\": 0.8338101506233215,\n                                \"Y\": 0.8849285840988159\n                            }, {\n                                \"X\": 0.8338128328323364,\n                                \"Y\": 0.8922685980796814\n                            }, {\n                                \"X\": 0.8184212446212769,\n                                \"Y\": 0.8922722339630127\n                            }]\n                        },\n                        \"Confidence\": 99.81342315673828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014939877204596996,\n                                \"Height\": 0.009207535535097122,\n                                \"Left\": 0.8002524971961975,\n                                \"Top\": 0.8842002749443054\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8002524971961975,\n                                \"Y\": 0.8842037916183472\n                            }, {\n                                \"X\": 0.8151890635490417,\n                                \"Y\": 0.8842002749443054\n                            }, {\n                                \"X\": 0.8151923418045044,\n                                \"Y\": 0.8934042453765869\n                            }, {\n                                \"X\": 0.8002557158470154,\n                                \"Y\": 0.8934077620506287\n                            }]\n                        },\n                        \"Confidence\": 99.92181396484375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Tenant\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03736601397395134,\n                                \"Height\": 0.0076810321770608425,\n                                \"Left\": 0.19224277138710022,\n                                \"Top\": 0.11328928917646408\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19224277138710022,\n                                \"Y\": 0.11330121010541916\n                            }, {\n                                \"X\": 0.22960756719112396,\n                                \"Y\": 0.11328928917646408\n                            }, {\n                                \"X\": 0.22960878908634186,\n                                \"Y\": 0.12095844000577927\n                            }, {\n                                \"X\": 0.19224388897418976,\n                                \"Y\": 0.12097032368183136\n                            }]\n                        },\n                        \"Confidence\": 99.9478988647461\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015609728172421455,\n                                \"Height\": 0.009175199083983898,\n                                \"Left\": 0.1736111342906952,\n                                \"Top\": 0.11314775794744492\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1736111342906952,\n                                \"Y\": 0.11315273493528366\n                            }, {\n                                \"X\": 0.18921953439712524,\n                                \"Y\": 0.11314775794744492\n                            }, {\n                                \"X\": 0.1892208606004715,\n                                \"Y\": 0.12231799215078354\n                            }, {\n                                \"X\": 0.17361241579055786,\n                                \"Y\": 0.12232295423746109\n                            }]\n                        },\n                        \"Confidence\": 99.95042419433594\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fee Simple\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.060994748026132584,\n                                \"Height\": 0.008688905276358128,\n                                \"Left\": 0.2153228372335434,\n                                \"Top\": 0.12527835369110107\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2153228372335434,\n                                \"Y\": 0.12529772520065308\n                            }, {\n                                \"X\": 0.2763160765171051,\n                                \"Y\": 0.12527835369110107\n                            }, {\n                                \"X\": 0.2763175964355469,\n                                \"Y\": 0.1339479386806488\n                            }, {\n                                \"X\": 0.21532416343688965,\n                                \"Y\": 0.13396725058555603\n                            }]\n                        },\n                        \"Confidence\": 98.98723602294922\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015005025081336498,\n                                \"Height\": 0.00913328118622303,\n                                \"Left\": 0.19657637178897858,\n                                \"Top\": 0.12517696619033813\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.19657637178897858,\n                                \"Y\": 0.12518173456192017\n                            }, {\n                                \"X\": 0.21158000826835632,\n                                \"Y\": 0.12517696619033813\n                            }, {\n                                \"X\": 0.21158139407634735,\n                                \"Y\": 0.13430549204349518\n                            }, {\n                                \"X\": 0.19657771289348602,\n                                \"Y\": 0.13431024551391602\n                            }]\n                        },\n                        \"Confidence\": 99.93846130371094\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"did not analyze the contract for sale for the subject purchase transaction.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.38795581459999084,\n                                \"Height\": 0.009457020089030266,\n                                \"Left\": 0.11093053966760635,\n                                \"Top\": 0.19890247285366058\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11093053966760635,\n                                \"Y\": 0.19902271032333374\n                            }, {\n                                \"X\": 0.49888402223587036,\n                                \"Y\": 0.19890247285366058\n                            }, {\n                                \"X\": 0.498886376619339,\n                                \"Y\": 0.2082396298646927\n                            }, {\n                                \"X\": 0.1109316423535347,\n                                \"Y\": 0.2083594799041748\n                            }]\n                        },\n                        \"Confidence\": 99.94029998779297\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015321733430027962,\n                                \"Height\": 0.009413253515958786,\n                                \"Left\": 0.09289419651031494,\n                                \"Top\": 0.19855746626853943\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.09289419651031494,\n                                \"Y\": 0.19856221973896027\n                            }, {\n                                \"X\": 0.10821482539176941,\n                                \"Y\": 0.19855746626853943\n                            }, {\n                                \"X\": 0.10821592807769775,\n                                \"Y\": 0.20796599984169006\n                            }, {\n                                \"X\": 0.09289524704217911,\n                                \"Y\": 0.2079707235097885\n                            }]\n                        },\n                        \"Confidence\": 99.92395782470703\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No Zoning\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.054961174726486206,\n                                \"Height\": 0.009354348294436932,\n                                \"Left\": 0.4978545010089874,\n                                \"Top\": 0.477360337972641\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4978545010089874,\n                                \"Y\": 0.4773757755756378\n                            }, {\n                                \"X\": 0.5528131723403931,\n                                \"Y\": 0.477360337972641\n                            }, {\n                                \"X\": 0.5528156757354736,\n                                \"Y\": 0.48669934272766113\n                            }, {\n                                \"X\": 0.49785682559013367,\n                                \"Y\": 0.4867146909236908\n                            }]\n                        },\n                        \"Confidence\": 98.20673370361328\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01523355022072792,\n                                \"Height\": 0.00927474070340395,\n                                \"Left\": 0.479070246219635,\n                                \"Top\": 0.4769713282585144\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.479070246219635,\n                                \"Y\": 0.47697561979293823\n                            }, {\n                                \"X\": 0.4943014979362488,\n                                \"Y\": 0.4769713282585144\n                            }, {\n                                \"X\": 0.49430379271507263,\n                                \"Y\": 0.48624181747436523\n                            }, {\n                                \"X\": 0.4790724813938141,\n                                \"Y\": 0.4862460792064667\n                            }]\n                        },\n                        \"Confidence\": 99.90805053710938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.019788023084402084,\n                                \"Height\": 0.007342912256717682,\n                                \"Left\": 0.8956805467605591,\n                                \"Top\": 0.24579530954360962\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8956805467605591,\n                                \"Y\": 0.24580134451389313\n                            }, {\n                                \"X\": 0.9154657125473022,\n                                \"Y\": 0.24579530954360962\n                            }, {\n                                \"X\": 0.9154685735702515,\n                                \"Y\": 0.2531321942806244\n                            }, {\n                                \"X\": 0.8956834077835083,\n                                \"Y\": 0.2531382143497467\n                            }]\n                        },\n                        \"Confidence\": 99.98172760009766\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015100878663361073,\n                                \"Height\": 0.009183118119835854,\n                                \"Left\": 0.877949595451355,\n                                \"Top\": 0.24532712996006012\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.877949595451355,\n                                \"Y\": 0.24533173441886902\n                            }, {\n                                \"X\": 0.8930469751358032,\n                                \"Y\": 0.24532712996006012\n                            }, {\n                                \"X\": 0.893050491809845,\n                                \"Y\": 0.2545056641101837\n                            }, {\n                                \"X\": 0.8779531121253967,\n                                \"Y\": 0.2545102536678314\n                            }]\n                        },\n                        \"Confidence\": 99.86756134033203\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Yes\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02033536322414875,\n                                \"Height\": 0.007343447767198086,\n                                \"Left\": 0.25385782122612,\n                                \"Top\": 0.550148606300354\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25385782122612,\n                                \"Y\": 0.5501541495323181\n                            }, {\n                                \"X\": 0.2741919159889221,\n                                \"Y\": 0.550148606300354\n                            }, {\n                                \"X\": 0.2741931974887848,\n                                \"Y\": 0.5574865341186523\n                            }, {\n                                \"X\": 0.2538590431213379,\n                                \"Y\": 0.5574920773506165\n                            }]\n                        },\n                        \"Confidence\": 99.87178802490234\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015250081196427345,\n                                \"Height\": 0.009202538058161736,\n                                \"Left\": 0.23621658980846405,\n                                \"Top\": 0.549717128276825\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.23621658980846405,\n                                \"Y\": 0.5497213006019592\n                            }, {\n                                \"X\": 0.2514651417732239,\n                                \"Y\": 0.549717128276825\n                            }, {\n                                \"X\": 0.25146666169166565,\n                                \"Y\": 0.5589154958724976\n                            }, {\n                                \"X\": 0.23621806502342224,\n                                \"Y\": 0.5589196681976318\n                            }]\n                        },\n                        \"Confidence\": 99.12639617919922\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"S-Det./End Unit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08024096488952637,\n                                \"Height\": 0.007359358482062817,\n                                \"Left\": 0.1901245415210724,\n                                \"Top\": 0.6622235774993896\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1901245415210724,\n                                \"Y\": 0.6622444987297058\n                            }, {\n                                \"X\": 0.2703642249107361,\n                                \"Y\": 0.6622235774993896\n                            }, {\n                                \"X\": 0.27036550641059875,\n                                \"Y\": 0.669562041759491\n                            }, {\n                                \"X\": 0.19012559950351715,\n                                \"Y\": 0.6695829033851624\n                            }]\n                        },\n                        \"Confidence\": 99.34870910644531\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015135095454752445,\n                                \"Height\": 0.00939837284386158,\n                                \"Left\": 0.1724720150232315,\n                                \"Top\": 0.6616868376731873\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.1724720150232315,\n                                \"Y\": 0.6616907715797424\n                            }, {\n                                \"X\": 0.18760575354099274,\n                                \"Y\": 0.6616868376731873\n                            }, {\n                                \"X\": 0.18760710954666138,\n                                \"Y\": 0.6710812449455261\n                            }, {\n                                \"X\": 0.17247331142425537,\n                                \"Y\": 0.6710851788520813\n                            }]\n                        },\n                        \"Confidence\": 99.96952819824219\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Proposed\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.047814738005399704,\n                                \"Height\": 0.00868510827422142,\n                                \"Left\": 0.13132113218307495,\n                                \"Top\": 0.6745892763137817\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.13132113218307495,\n                                \"Y\": 0.674601674079895\n                            }, {\n                                \"X\": 0.17913465201854706,\n                                \"Y\": 0.6745892763137817\n                            }, {\n                                \"X\": 0.17913587391376495,\n                                \"Y\": 0.6832619905471802\n                            }, {\n                                \"X\": 0.1313222199678421,\n                                \"Y\": 0.6832743287086487\n                            }]\n                        },\n                        \"Confidence\": 99.96305847167969\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015551802702248096,\n                                \"Height\": 0.009332476183772087,\n                                \"Left\": 0.11321884393692017,\n                                \"Top\": 0.673818051815033\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.11321884393692017,\n                                \"Y\": 0.6738221049308777\n                            }, {\n                                \"X\": 0.12876948714256287,\n                                \"Y\": 0.673818051815033\n                            }, {\n                                \"X\": 0.128770649433136,\n                                \"Y\": 0.6831465363502502\n                            }, {\n                                \"X\": 0.11321995407342911,\n                                \"Y\": 0.6831505298614502\n                            }]\n                        },\n                        \"Confidence\": 99.93879699707031\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"No\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015939081087708473,\n                                \"Height\": 0.007342286873608828,\n                                \"Left\": 0.3044184148311615,\n                                \"Top\": 0.5501360297203064\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3044184148311615,\n                                \"Y\": 0.550140380859375\n                            }, {\n                                \"X\": 0.3203561007976532,\n                                \"Y\": 0.5501360297203064\n                            }, {\n                                \"X\": 0.3203575015068054,\n                                \"Y\": 0.5574739575386047\n                            }, {\n                                \"X\": 0.30441975593566895,\n                                \"Y\": 0.5574783086776733\n                            }]\n                        },\n                        \"Confidence\": 99.76725006103516\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01522894948720932,\n                                \"Height\": 0.00931059941649437,\n                                \"Left\": 0.28607413172721863,\n                                \"Top\": 0.5497196316719055\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.28607413172721863,\n                                \"Y\": 0.5497238039970398\n                            }, {\n                                \"X\": 0.30130138993263245,\n                                \"Y\": 0.5497196316719055\n                            }, {\n                                \"X\": 0.30130308866500854,\n                                \"Y\": 0.5590261220932007\n                            }, {\n                                \"X\": 0.28607580065727234,\n                                \"Y\": 0.5590302348136902\n                            }]\n                        },\n                        \"Confidence\": 99.93570709228516\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Full Basement\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07749471813440323,\n                                \"Height\": 0.007358763366937637,\n                                \"Left\": 0.29839131236076355,\n                                \"Top\": 0.6501875519752502\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29839131236076355,\n                                \"Y\": 0.6502078771591187\n                            }, {\n                                \"X\": 0.3758845031261444,\n                                \"Y\": 0.6501875519752502\n                            }, {\n                                \"X\": 0.3758860230445862,\n                                \"Y\": 0.6575260162353516\n                            }, {\n                                \"X\": 0.298392653465271,\n                                \"Y\": 0.6575462818145752\n                            }]\n                        },\n                        \"Confidence\": 99.40631866455078\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015353992581367493,\n                                \"Height\": 0.009125747717916965,\n                                \"Left\": 0.279541015625,\n                                \"Top\": 0.6498308181762695\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.279541015625,\n                                \"Y\": 0.6498348116874695\n                            }, {\n                                \"X\": 0.294893354177475,\n                                \"Y\": 0.6498308181762695\n                            }, {\n                                \"X\": 0.2948949933052063,\n                                \"Y\": 0.658952534198761\n                            }, {\n                                \"X\": 0.27954262495040894,\n                                \"Y\": 0.6589565277099609\n                            }]\n                        },\n                        \"Confidence\": 99.91744232177734\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"None\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029135379940271378,\n                                \"Height\": 0.00734661566093564,\n                                \"Left\": 0.8755174279212952,\n                                \"Top\": 0.6997538805007935\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8755174279212952,\n                                \"Y\": 0.6997613906860352\n                            }, {\n                                \"X\": 0.9046499729156494,\n                                \"Y\": 0.6997538805007935\n                            }, {\n                                \"X\": 0.9046528339385986,\n                                \"Y\": 0.7070930600166321\n                            }, {\n                                \"X\": 0.8755202293395996,\n                                \"Y\": 0.707100510597229\n                            }]\n                        },\n                        \"Confidence\": 99.95004272460938\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015231612138450146,\n                                \"Height\": 0.00930249784141779,\n                                \"Left\": 0.8573405742645264,\n                                \"Top\": 0.6989433169364929\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8573405742645264,\n                                \"Y\": 0.6989471912384033\n                            }, {\n                                \"X\": 0.8725687265396118,\n                                \"Y\": 0.6989433169364929\n                            }, {\n                                \"X\": 0.8725721836090088,\n                                \"Y\": 0.708241879940033\n                            }, {\n                                \"X\": 0.8573440313339233,\n                                \"Y\": 0.7082458138465881\n                            }]\n                        },\n                        \"Confidence\": 99.86644744873047\n                    }]\n                }, {\n                    \"Type\": \"CURRENT_GROSS_MONTHLY_INCOME_OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Other\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.030229991301894188,\n                                \"Height\": 0.007346517872065306,\n                                \"Left\": 0.29840707778930664,\n                                \"Top\": 0.7369294762611389\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29840707778930664,\n                                \"Y\": 0.7369371056556702\n                            }, {\n                                \"X\": 0.32863566279411316,\n                                \"Y\": 0.7369294762611389\n                            }, {\n                                \"X\": 0.3286370635032654,\n                                \"Y\": 0.7442683577537537\n                            }, {\n                                \"X\": 0.2984084188938141,\n                                \"Y\": 0.7442759871482849\n                            }]\n                        },\n                        \"Confidence\": 99.90650177001953\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015471139922738075,\n                                \"Height\": 0.009351441636681557,\n                                \"Left\": 0.27950456738471985,\n                                \"Top\": 0.7365834712982178\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27950456738471985,\n                                \"Y\": 0.736587405204773\n                            }, {\n                                \"X\": 0.2949739992618561,\n                                \"Y\": 0.7365834712982178\n                            }, {\n                                \"X\": 0.2949756979942322,\n                                \"Y\": 0.7459310293197632\n                            }, {\n                                \"X\": 0.27950620651245117,\n                                \"Y\": 0.7459349036216736\n                            }]\n                        },\n                        \"Confidence\": 99.90170288085938\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Disposal\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04617084935307503,\n                                \"Height\": 0.009018613025546074,\n                                \"Left\": 0.38580358028411865,\n                                \"Top\": 0.774265706539154\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.38580358028411865,\n                                \"Y\": 0.7742772102355957\n                            }, {\n                                \"X\": 0.4319723844528198,\n                                \"Y\": 0.774265706539154\n                            }, {\n                                \"X\": 0.4319744408130646,\n                                \"Y\": 0.7832728624343872\n                            }, {\n                                \"X\": 0.38580548763275146,\n                                \"Y\": 0.7832843065261841\n                            }]\n                        },\n                        \"Confidence\": 99.94219207763672\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015086831524968147,\n                                \"Height\": 0.009140181355178356,\n                                \"Left\": 0.3709019124507904,\n                                \"Top\": 0.7738277316093445\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3709019124507904,\n                                \"Y\": 0.7738314867019653\n                            }, {\n                                \"X\": 0.3859868049621582,\n                                \"Y\": 0.7738277316093445\n                            }, {\n                                \"X\": 0.3859887421131134,\n                                \"Y\": 0.7829641699790955\n                            }, {\n                                \"X\": 0.37090378999710083,\n                                \"Y\": 0.7829679250717163\n                            }]\n                        },\n                        \"Confidence\": 99.9487533569336\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"One\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02253318764269352,\n                                \"Height\": 0.007344154641032219,\n                                \"Left\": 0.09669369459152222,\n                                \"Top\": 0.6379132866859436\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.09669369459152222,\n                                \"Y\": 0.6379192471504211\n                            }, {\n                                \"X\": 0.11922599375247955,\n                                \"Y\": 0.6379132866859436\n                            }, {\n                                \"X\": 0.11922688782215118,\n                                \"Y\": 0.6452515125274658\n                            }, {\n                                \"X\": 0.09669452905654907,\n                                \"Y\": 0.6452574729919434\n                            }]\n                        },\n                        \"Confidence\": 99.74446105957031\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015464888885617256,\n                                \"Height\": 0.009294014424085617,\n                                \"Left\": 0.07796314358711243,\n                                \"Top\": 0.6375342607498169\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.07796314358711243,\n                                \"Y\": 0.6375383138656616\n                            }, {\n                                \"X\": 0.09342698752880096,\n                                \"Y\": 0.6375342607498169\n                            }, {\n                                \"X\": 0.09342803061008453,\n                                \"Y\": 0.6468241810798645\n                            }, {\n                                \"X\": 0.07796413451433182,\n                                \"Y\": 0.646828293800354\n                            }]\n                        },\n                        \"Confidence\": 99.91911315917969\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Floor\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02748010866343975,\n                                \"Height\": 0.007345667574554682,\n                                \"Left\": 0.06537993997335434,\n                                \"Top\": 0.749331533908844\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.06537993997335434,\n                                \"Y\": 0.7493385076522827\n                            }, {\n                                \"X\": 0.09285922348499298,\n                                \"Y\": 0.749331533908844\n                            }, {\n                                \"X\": 0.09286005049943924,\n                                \"Y\": 0.756670355796814\n                            }, {\n                                \"X\": 0.06538069248199463,\n                                \"Y\": 0.7566772103309631\n                            }]\n                        },\n                        \"Confidence\": 99.83452606201172\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01563154347240925,\n                                \"Height\": 0.009312544018030167,\n                                \"Left\": 0.04613141342997551,\n                                \"Top\": 0.7487943172454834\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04613141342997551,\n                                \"Y\": 0.7487982511520386\n                            }, {\n                                \"X\": 0.0617620088160038,\n                                \"Y\": 0.7487943172454834\n                            }, {\n                                \"X\": 0.06176295503973961,\n                                \"Y\": 0.7581029534339905\n                            }, {\n                                \"X\": 0.04613230749964714,\n                                \"Y\": 0.7581068873405457\n                            }]\n                        },\n                        \"Confidence\": 99.96907806396484\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Owner\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.036266326904296875,\n                                \"Height\": 0.007347190752625465,\n                                \"Left\": 0.12685507535934448,\n                                \"Top\": 0.11331050097942352\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.12685507535934448,\n                                \"Y\": 0.11332206428050995\n                            }, {\n                                \"X\": 0.16312040388584137,\n                                \"Y\": 0.11331050097942352\n                            }, {\n                                \"X\": 0.16312140226364136,\n                                \"Y\": 0.1206461489200592\n                            }, {\n                                \"X\": 0.1268559843301773,\n                                \"Y\": 0.12065768986940384\n                            }]\n                        },\n                        \"Confidence\": 99.9500503540039\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01505213975906372,\n                                \"Height\": 0.009654813446104527,\n                                \"Left\": 0.10863962769508362,\n                                \"Top\": 0.11290725320577621\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.10863962769508362,\n                                \"Y\": 0.11291205883026123\n                            }, {\n                                \"X\": 0.12369058281183243,\n                                \"Y\": 0.11290725320577621\n                            }, {\n                                \"X\": 0.12369176745414734,\n                                \"Y\": 0.12255728244781494\n                            }, {\n                                \"X\": 0.10864076018333435,\n                                \"Y\": 0.12256207317113876\n                            }]\n                        },\n                        \"Confidence\": 99.93791198730469\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"HWBB\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.035177357494831085,\n                                \"Height\": 0.0073478324338793755,\n                                \"Left\": 0.397884726524353,\n                                \"Top\": 0.7248938679695129\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.397884726524353,\n                                \"Y\": 0.7249028086662292\n                            }, {\n                                \"X\": 0.4330604076385498,\n                                \"Y\": 0.7248938679695129\n                            }, {\n                                \"X\": 0.4330620765686035,\n                                \"Y\": 0.7322328090667725\n                            }, {\n                                \"X\": 0.3978863060474396,\n                                \"Y\": 0.732241690158844\n                            }]\n                        },\n                        \"Confidence\": 99.96987915039062\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01567228138446808,\n                                \"Height\": 0.009815016761422157,\n                                \"Left\": 0.3782910406589508,\n                                \"Top\": 0.7240854501724243\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3782910406589508,\n                                \"Y\": 0.7240894436836243\n                            }, {\n                                \"X\": 0.39396122097969055,\n                                \"Y\": 0.7240854501724243\n                            }, {\n                                \"X\": 0.3939633071422577,\n                                \"Y\": 0.7338964939117432\n                            }, {\n                                \"X\": 0.37829309701919556,\n                                \"Y\": 0.7339004278182983\n                            }]\n                        },\n                        \"Confidence\": 99.5888442993164\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Radiant\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.040124665945768356,\n                                \"Height\": 0.007349140476435423,\n                                \"Left\": 0.46109122037887573,\n                                \"Top\": 0.7248765230178833\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.46109122037887573,\n                                \"Y\": 0.7248867750167847\n                            }, {\n                                \"X\": 0.5012140274047852,\n                                \"Y\": 0.7248765230178833\n                            }, {\n                                \"X\": 0.5012158751487732,\n                                \"Y\": 0.7322155237197876\n                            }, {\n                                \"X\": 0.4610929787158966,\n                                \"Y\": 0.7322256565093994\n                            }]\n                        },\n                        \"Confidence\": 99.97489929199219\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0156191885471344,\n                                \"Height\": 0.009785667061805725,\n                                \"Left\": 0.4418781101703644,\n                                \"Top\": 0.7239089012145996\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4418781101703644,\n                                \"Y\": 0.7239128947257996\n                            }, {\n                                \"X\": 0.45749497413635254,\n                                \"Y\": 0.7239089012145996\n                            }, {\n                                \"X\": 0.4574972987174988,\n                                \"Y\": 0.733690619468689\n                            }, {\n                                \"X\": 0.44188037514686584,\n                                \"Y\": 0.7336945533752441\n                            }]\n                        },\n                        \"Confidence\": 99.5459213256836\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Under Const.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06485293805599213,\n                                \"Height\": 0.00768889719620347,\n                                \"Left\": 0.20441550016403198,\n                                \"Top\": 0.6742322444915771\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20441550016403198,\n                                \"Y\": 0.6742491126060486\n                            }, {\n                                \"X\": 0.26926711201667786,\n                                \"Y\": 0.6742322444915771\n                            }, {\n                                \"X\": 0.2692684233188629,\n                                \"Y\": 0.6819043755531311\n                            }, {\n                                \"X\": 0.2044166475534439,\n                                \"Y\": 0.6819211840629578\n                            }]\n                        },\n                        \"Confidence\": 99.59636688232422\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015862438827753067,\n                                \"Height\": 0.009216132573783398,\n                                \"Left\": 0.18610721826553345,\n                                \"Top\": 0.6738806962966919\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.18610721826553345,\n                                \"Y\": 0.6738848090171814\n                            }, {\n                                \"X\": 0.20196828246116638,\n                                \"Y\": 0.6738806962966919\n                            }, {\n                                \"X\": 0.2019696682691574,\n                                \"Y\": 0.6830927133560181\n                            }, {\n                                \"X\": 0.1861085444688797,\n                                \"Y\": 0.6830968260765076\n                            }]\n                        },\n                        \"Confidence\": 99.94625091552734\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Det.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02088470757007599,\n                                \"Height\": 0.007677351590245962,\n                                \"Left\": 0.09944431483745575,\n                                \"Top\": 0.6622627377510071\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.09944431483745575,\n                                \"Y\": 0.6622681617736816\n                            }, {\n                                \"X\": 0.12032809108495712,\n                                \"Y\": 0.6622627377510071\n                            }, {\n                                \"X\": 0.12032902240753174,\n                                \"Y\": 0.6699346303939819\n                            }, {\n                                \"X\": 0.09944519400596619,\n                                \"Y\": 0.6699400544166565\n                            }]\n                        },\n                        \"Confidence\": 99.92729949951172\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015497259795665741,\n                                \"Height\": 0.009243281558156013,\n                                \"Left\": 0.08013861626386642,\n                                \"Top\": 0.6617853045463562\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.08013861626386642,\n                                \"Y\": 0.6617893576622009\n                            }, {\n                                \"X\": 0.0956348329782486,\n                                \"Y\": 0.6617853045463562\n                            }, {\n                                \"X\": 0.09563587605953217,\n                                \"Y\": 0.6710245609283447\n                            }, {\n                                \"X\": 0.08013961464166641,\n                                \"Y\": 0.6710286140441895\n                            }]\n                        },\n                        \"Confidence\": 99.95030212402344\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Finished\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.045067161321640015,\n                                \"Height\": 0.007350101135671139,\n                                \"Left\": 0.06538117676973343,\n                                \"Top\": 0.761336088180542\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.06538117676973343,\n                                \"Y\": 0.7613473534584045\n                            }, {\n                                \"X\": 0.1104474663734436,\n                                \"Y\": 0.761336088180542\n                            }, {\n                                \"X\": 0.11044833809137344,\n                                \"Y\": 0.768674910068512\n                            }, {\n                                \"X\": 0.06538192927837372,\n                                \"Y\": 0.7686861753463745\n                            }]\n                        },\n                        \"Confidence\": 99.91742706298828\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.016050158068537712,\n                                \"Height\": 0.009550105780363083,\n                                \"Left\": 0.0460810512304306,\n                                \"Top\": 0.7607839703559875\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0460810512304306,\n                                \"Y\": 0.7607879638671875\n                            }, {\n                                \"X\": 0.062130238860845566,\n                                \"Y\": 0.7607839703559875\n                            }, {\n                                \"X\": 0.062131207436323166,\n                                \"Y\": 0.7703300714492798\n                            }, {\n                                \"X\": 0.04608197137713432,\n                                \"Y\": 0.7703340649604797\n                            }]\n                        },\n                        \"Confidence\": 99.95822143554688\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Individual\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.050566159188747406,\n                                \"Height\": 0.0073516592383384705,\n                                \"Left\": 0.2984115183353424,\n                                \"Top\": 0.7612762451171875\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2984115183353424,\n                                \"Y\": 0.7612889409065247\n                            }, {\n                                \"X\": 0.3489762246608734,\n                                \"Y\": 0.7612762451171875\n                            }, {\n                                \"X\": 0.3489776849746704,\n                                \"Y\": 0.7686153054237366\n                            }, {\n                                \"X\": 0.29841285943984985,\n                                \"Y\": 0.768627941608429\n                            }]\n                        },\n                        \"Confidence\": 99.97996520996094\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01560258399695158,\n                                \"Height\": 0.009373090229928493,\n                                \"Left\": 0.2790886163711548,\n                                \"Top\": 0.7609418034553528\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2790886163711548,\n                                \"Y\": 0.7609456777572632\n                            }, {\n                                \"X\": 0.29468950629234314,\n                                \"Y\": 0.7609418034553528\n                            }, {\n                                \"X\": 0.29469120502471924,\n                                \"Y\": 0.7703109979629517\n                            }, {\n                                \"X\": 0.2790902554988861,\n                                \"Y\": 0.7703148722648621\n                            }]\n                        },\n                        \"Confidence\": 99.85464477539062\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dampness\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05771059915423393,\n                                \"Height\": 0.009021405130624771,\n                                \"Left\": 0.2984025180339813,\n                                \"Top\": 0.7119038105010986\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2984025180339813,\n                                \"Y\": 0.7119185328483582\n                            }, {\n                                \"X\": 0.3561113178730011,\n                                \"Y\": 0.7119038105010986\n                            }, {\n                                \"X\": 0.35611313581466675,\n                                \"Y\": 0.7209104895591736\n                            }, {\n                                \"X\": 0.29840415716171265,\n                                \"Y\": 0.7209252119064331\n                            }]\n                        },\n                        \"Confidence\": 99.9848861694336\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015565584413707256,\n                                \"Height\": 0.009443128481507301,\n                                \"Left\": 0.27908438444137573,\n                                \"Top\": 0.7111843228340149\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.27908438444137573,\n                                \"Y\": 0.7111883163452148\n                            }, {\n                                \"X\": 0.29464825987815857,\n                                \"Y\": 0.7111843228340149\n                            }, {\n                                \"X\": 0.29464995861053467,\n                                \"Y\": 0.7206234931945801\n                            }, {\n                                \"X\": 0.27908602356910706,\n                                \"Y\": 0.72062748670578\n                            }]\n                        },\n                        \"Confidence\": 99.91484832763672\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"did\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.017034824937582016,\n                                \"Height\": 0.007674742490053177,\n                                \"Left\": 0.07136765867471695,\n                                \"Top\": 0.19902968406677246\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.07136765867471695,\n                                \"Y\": 0.19903495907783508\n                            }, {\n                                \"X\": 0.08840163797140121,\n                                \"Y\": 0.19902968406677246\n                            }, {\n                                \"X\": 0.08840248733758926,\n                                \"Y\": 0.2066991627216339\n                            }, {\n                                \"X\": 0.07136846333742142,\n                                \"Y\": 0.20670442283153534\n                            }]\n                        },\n                        \"Confidence\": 99.80667114257812\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01675773598253727,\n                                \"Height\": 0.009786454029381275,\n                                \"Left\": 0.051816217601299286,\n                                \"Top\": 0.19853171706199646\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.051816217601299286,\n                                \"Y\": 0.1985369175672531\n                            }, {\n                                \"X\": 0.06857293844223022,\n                                \"Y\": 0.19853171706199646\n                            }, {\n                                \"X\": 0.0685739517211914,\n                                \"Y\": 0.2083130031824112\n                            }, {\n                                \"X\": 0.05181717872619629,\n                                \"Y\": 0.20831817388534546\n                            }]\n                        },\n                        \"Confidence\": 99.88616943359375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Existing\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03847113996744156,\n                                \"Height\": 0.009349746629595757,\n                                \"Left\": 0.06482265144586563,\n                                \"Top\": 0.6742753982543945\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.06482265144586563,\n                                \"Y\": 0.6742854118347168\n                            }, {\n                                \"X\": 0.10329271107912064,\n                                \"Y\": 0.6742753982543945\n                            }, {\n                                \"X\": 0.10329379141330719,\n                                \"Y\": 0.6836152076721191\n                            }, {\n                                \"X\": 0.06482361257076263,\n                                \"Y\": 0.6836251616477966\n                            }]\n                        },\n                        \"Confidence\": 99.97572326660156\n                    },\n                    \"ValueDetections\": [{\n                        \"SelectionStatus\": \"NOT_SELECTED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01620546169579029,\n                                \"Height\": 0.009793385863304138,\n                                \"Left\": 0.0460611917078495,\n                                \"Top\": 0.6735658049583435\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0460611917078495,\n                                \"Y\": 0.6735700368881226\n                            }, {\n                                \"X\": 0.062265656888484955,\n                                \"Y\": 0.6735658049583435\n                            }, {\n                                \"X\": 0.062266651540994644,\n                                \"Y\": 0.6833550333976746\n                            }, {\n                                \"X\": 0.04606213420629501,\n                                \"Y\": 0.6833592057228088\n                            }]\n                        },\n                        \"Confidence\": 99.89651489257812\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"AGE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0258331336081028,\n                                \"Height\": 0.0070113250985741615,\n                                \"Left\": 0.7813932299613953,\n                                \"Top\": 0.3188645839691162\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7813932299613953,\n                                \"Y\": 0.31887224316596985\n                            }, {\n                                \"X\": 0.807223916053772,\n                                \"Y\": 0.3188645839691162\n                            }, {\n                                \"X\": 0.8072263598442078,\n                                \"Y\": 0.32586824893951416\n                            }, {\n                                \"X\": 0.781395673751831,\n                                \"Y\": 0.3258759081363678\n                            }]\n                        },\n                        \"Confidence\": 99.97241973876953\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"(yrs)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023635582998394966,\n                                \"Height\": 0.009011764079332352,\n                                \"Left\": 0.7824965715408325,\n                                \"Top\": 0.33087119460105896\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7824965715408325,\n                                \"Y\": 0.33087819814682007\n                            }, {\n                                \"X\": 0.806128978729248,\n                                \"Y\": 0.33087119460105896\n                            }, {\n                                \"X\": 0.8061321377754211,\n                                \"Y\": 0.3398759961128235\n                            }, {\n                                \"X\": 0.7824996709823608,\n                                \"Y\": 0.3398829698562622\n                            }]\n                        },\n                        \"Confidence\": 99.92060089111328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Basement Area\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08244115114212036,\n                                \"Height\": 0.0076935687102377415,\n                                \"Left\": 0.2780585289001465,\n                                \"Top\": 0.6622000336647034\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2780585289001465,\n                                \"Y\": 0.6622215509414673\n                            }, {\n                                \"X\": 0.3604981303215027,\n                                \"Y\": 0.6622000336647034\n                            }, {\n                                \"X\": 0.36049968004226685,\n                                \"Y\": 0.6698721051216125\n                            }, {\n                                \"X\": 0.27805987000465393,\n                                \"Y\": 0.6698935627937317\n                            }]\n                        },\n                        \"Confidence\": 99.4034194946289\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"sq. ft.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028582241386175156,\n                                \"Height\": 0.008680388331413269,\n                                \"Left\": 0.472068727016449,\n                                \"Top\": 0.6624969840049744\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.472068727016449,\n                                \"Y\": 0.6625044345855713\n                            }, {\n                                \"X\": 0.5006487965583801,\n                                \"Y\": 0.6624969840049744\n                            }, {\n                                \"X\": 0.500650942325592,\n                                \"Y\": 0.6711699366569519\n                            }, {\n                                \"X\": 0.4720708131790161,\n                                \"Y\": 0.6711773872375488\n                            }]\n                        },\n                        \"Confidence\": 96.81055450439453\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"PRICE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03682444989681244,\n                                \"Height\": 0.007681549061089754,\n                                \"Left\": 0.708848237991333,\n                                \"Top\": 0.31854936480522156\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.708848237991333,\n                                \"Y\": 0.31856030225753784\n                            }, {\n                                \"X\": 0.7456701397895813,\n                                \"Y\": 0.31854936480522156\n                            }, {\n                                \"X\": 0.7456727027893066,\n                                \"Y\": 0.32622000575065613\n                            }, {\n                                \"X\": 0.7088506817817688,\n                                \"Y\": 0.32623091340065\n                            }]\n                        },\n                        \"Confidence\": 99.97530364990234\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"$ (000)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03902348503470421,\n                                \"Height\": 0.009349755011498928,\n                                \"Left\": 0.7072033286094666,\n                                \"Top\": 0.33055540919303894\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7072033286094666,\n                                \"Y\": 0.33056697249412537\n                            }, {\n                                \"X\": 0.7462236881256104,\n                                \"Y\": 0.33055540919303894\n                            }, {\n                                \"X\": 0.7462268471717834,\n                                \"Y\": 0.3398936688899994\n                            }, {\n                                \"X\": 0.7072063684463501,\n                                \"Y\": 0.33990517258644104\n                            }]\n                        },\n                        \"Confidence\": 82.23822021484375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Explain the results of the analysis of the contract for sale or why the analysis was not\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.4533895254135132,\n                                \"Height\": 0.009811154566705227,\n                                \"Left\": 0.5021812319755554,\n                                \"Top\": 0.19876092672348022\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5021812319755554,\n                                \"Y\": 0.1989014446735382\n                            }, {\n                                \"X\": 0.9555668234825134,\n                                \"Y\": 0.19876092672348022\n                            }, {\n                                \"X\": 0.9555707573890686,\n                                \"Y\": 0.20843203365802765\n                            }, {\n                                \"X\": 0.5021836757659912,\n                                \"Y\": 0.20857207477092743\n                            }]\n                        },\n                        \"Confidence\": 99.92433166503906\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"performed.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05824637785553932,\n                                \"Height\": 0.009021312929689884,\n                                \"Left\": 0.04444410279393196,\n                                \"Top\": 0.20936240255832672\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04444410279393196,\n                                \"Y\": 0.2093803882598877\n                            }, {\n                                \"X\": 0.10268943756818771,\n                                \"Y\": 0.20936240255832672\n                            }, {\n                                \"X\": 0.10269048064947128,\n                                \"Y\": 0.21836578845977783\n                            }, {\n                                \"X\": 0.044444963335990906,\n                                \"Y\": 0.21838371455669403\n                            }]\n                        },\n                        \"Confidence\": 99.74732971191406\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Pred.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028031781315803528,\n                                \"Height\": 0.00734555721282959,\n                                \"Left\": 0.7462359666824341,\n                                \"Top\": 0.3672335147857666\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7462359666824341,\n                                \"Y\": 0.3672417104244232\n                            }, {\n                                \"X\": 0.7742652297019958,\n                                \"Y\": 0.3672335147857666\n                            }, {\n                                \"X\": 0.7742677330970764,\n                                \"Y\": 0.37457090616226196\n                            }, {\n                                \"X\": 0.7462384104728699,\n                                \"Y\": 0.3745790719985962\n                            }]\n                        },\n                        \"Confidence\": 99.98897552490234\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"# of Cars\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04947391524910927,\n                                \"Height\": 0.007351818960160017,\n                                \"Left\": 0.8557477593421936,\n                                \"Top\": 0.7491269111633301\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8557477593421936,\n                                \"Y\": 0.7491393685340881\n                            }, {\n                                \"X\": 0.905218780040741,\n                                \"Y\": 0.7491269111633301\n                            }, {\n                                \"X\": 0.9052216410636902,\n                                \"Y\": 0.756466269493103\n                            }, {\n                                \"X\": 0.8557504415512085,\n                                \"Y\": 0.7564787268638611\n                            }]\n                        },\n                        \"Confidence\": 95.92914581298828\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"High\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025284279137849808,\n                                \"Height\": 0.00901230238378048,\n                                \"Left\": 0.7478806376457214,\n                                \"Top\": 0.3548937737941742\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7478806376457214,\n                                \"Y\": 0.35490119457244873\n                            }, {\n                                \"X\": 0.7731618285179138,\n                                \"Y\": 0.3548937737941742\n                            }, {\n                                \"X\": 0.7731648683547974,\n                                \"Y\": 0.36389869451522827\n                            }, {\n                                \"X\": 0.7478836178779602,\n                                \"Y\": 0.3639060854911804\n                            }]\n                        },\n                        \"Confidence\": 99.97364807128906\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Low\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023085249587893486,\n                                \"Height\": 0.007344053126871586,\n                                \"Left\": 0.7489758729934692,\n                                \"Top\": 0.34322115778923035\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7489758729934692,\n                                \"Y\": 0.34322795271873474\n                            }, {\n                                \"X\": 0.7720586061477661,\n                                \"Y\": 0.34322115778923035\n                            }, {\n                                \"X\": 0.7720611095428467,\n                                \"Y\": 0.35055842995643616\n                            }, {\n                                \"X\": 0.748978316783905,\n                                \"Y\": 0.35056519508361816\n                            }]\n                        },\n                        \"Confidence\": 99.95671081542969\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Bath(s)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.038478076457977295,\n                                \"Height\": 0.009016884490847588,\n                                \"Left\": 0.5567439198493958,\n                                \"Top\": 0.7875691652297974\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5567439198493958,\n                                \"Y\": 0.7875787019729614\n                            }, {\n                                \"X\": 0.5952194333076477,\n                                \"Y\": 0.7875691652297974\n                            }, {\n                                \"X\": 0.595221996307373,\n                                \"Y\": 0.7965765595436096\n                            }, {\n                                \"X\": 0.5567463636398315,\n                                \"Y\": 0.7965860366821289\n                            }]\n                        },\n                        \"Confidence\": 96.95487213134766\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FREDDIE_MAC_FORM\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Freddie Mac Form\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09783465415239334,\n                                \"Height\": 0.007695804350078106,\n                                \"Left\": 0.03132623806595802,\n                                \"Top\": 0.9728384613990784\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.03132623806595802,\n                                \"Y\": 0.9728608131408691\n                            }, {\n                                \"X\": 0.12915994226932526,\n                                \"Y\": 0.9728384613990784\n                            }, {\n                                \"X\": 0.12916089594364166,\n                                \"Y\": 0.9805120229721069\n                            }, {\n                                \"X\": 0.031326938420534134,\n                                \"Y\": 0.9805342555046082\n                            }]\n                        },\n                        \"Confidence\": 98.56945037841797\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"70 March 2005\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08739368617534637,\n                                \"Height\": 0.007359868381172419,\n                                \"Left\": 0.13245774805545807,\n                                \"Top\": 0.9728177189826965\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.13245774805545807,\n                                \"Y\": 0.9728376865386963\n                            }, {\n                                \"X\": 0.21985028684139252,\n                                \"Y\": 0.9728177189826965\n                            }, {\n                                \"X\": 0.21985143423080444,\n                                \"Y\": 0.980157732963562\n                            }, {\n                                \"X\": 0.1324586570262909,\n                                \"Y\": 0.980177640914917\n                            }]\n                        },\n                        \"Confidence\": 97.80204010009766\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"# of Cars\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.050023503601551056,\n                                \"Height\": 0.007685564924031496,\n                                \"Left\": 0.8546438217163086,\n                                \"Top\": 0.7367836236953735\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8546438217163086,\n                                \"Y\": 0.7367962598800659\n                            }, {\n                                \"X\": 0.9046643376350403,\n                                \"Y\": 0.7367836236953735\n                            }, {\n                                \"X\": 0.904667317867279,\n                                \"Y\": 0.7444565296173096\n                            }, {\n                                \"X\": 0.854646623134613,\n                                \"Y\": 0.744469165802002\n                            }]\n                        },\n                        \"Confidence\": 94.42091369628906\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"# of Cars\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04892360046505928,\n                                \"Height\": 0.007351685781031847,\n                                \"Left\": 0.8546345233917236,\n                                \"Top\": 0.7117636799812317\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8546345233917236,\n                                \"Y\": 0.7117761969566345\n                            }, {\n                                \"X\": 0.9035552740097046,\n                                \"Y\": 0.7117636799812317\n                            }, {\n                                \"X\": 0.9035581350326538,\n                                \"Y\": 0.7191029191017151\n                            }, {\n                                \"X\": 0.8546372652053833,\n                                \"Y\": 0.7191153764724731\n                            }]\n                        },\n                        \"Confidence\": 92.90668487548828\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"FANNIE_MAE_FORM\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fannie Mae Form\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0945533737540245,\n                                \"Height\": 0.007361994124948978,\n                                \"Left\": 0.769525945186615,\n                                \"Top\": 0.9730042815208435\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.769525945186615,\n                                \"Y\": 0.9730258584022522\n                            }, {\n                                \"X\": 0.864076554775238,\n                                \"Y\": 0.9730042815208435\n                            }, {\n                                \"X\": 0.8640793561935425,\n                                \"Y\": 0.9803447723388672\n                            }, {\n                                \"X\": 0.7695284485816956,\n                                \"Y\": 0.9803662896156311\n                            }]\n                        },\n                        \"Confidence\": 99.86425018310547\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"1004 March 2005\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10060274600982666,\n                                \"Height\": 0.007697112392634153,\n                                \"Left\": 0.8679245114326477,\n                                \"Top\": 0.9726467728614807\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8679245114326477,\n                                \"Y\": 0.9726697206497192\n                            }, {\n                                \"X\": 0.9685240983963013,\n                                \"Y\": 0.9726467728614807\n                            }, {\n                                \"X\": 0.9685272574424744,\n                                \"Y\": 0.9803209900856018\n                            }, {\n                                \"X\": 0.8679273724555969,\n                                \"Y\": 0.9803438782691956\n                            }]\n                        },\n                        \"Confidence\": 99.5928726196289\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Zip Code\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.048913151025772095,\n                                \"Height\": 0.009019036777317524,\n                                \"Left\": 0.8433992862701416,\n                                \"Top\": 0.0527222603559494\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8433992862701416,\n                                \"Y\": 0.05273817107081413\n                            }, {\n                                \"X\": 0.8923089504241943,\n                                \"Y\": 0.0527222603559494\n                            }, {\n                                \"X\": 0.8923124074935913,\n                                \"Y\": 0.0617254301905632\n                            }, {\n                                \"X\": 0.8434025645256042,\n                                \"Y\": 0.06174129620194435\n                            }]\n                        },\n                        \"Confidence\": 99.2507553100586\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Date of Contract\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08847229182720184,\n                                \"Height\": 0.007696845103055239,\n                                \"Left\": 0.20160189270973206,\n                                \"Top\": 0.23364761471748352\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.20160189270973206,\n                                \"Y\": 0.23367470502853394\n                            }, {\n                                \"X\": 0.29007279872894287,\n                                \"Y\": 0.23364761471748352\n                            }, {\n                                \"X\": 0.2900741696357727,\n                                \"Y\": 0.24131743609905243\n                            }, {\n                                \"X\": 0.2016030251979828,\n                                \"Y\": 0.24134445190429688\n                            }]\n                        },\n                        \"Confidence\": 99.76457977294922\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Square Feet of Gross Living Area Above Grade\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2517554461956024,\n                                \"Height\": 0.00940348207950592,\n                                \"Left\": 0.6743699908256531,\n                                \"Top\": 0.7871535420417786\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6743699908256531,\n                                \"Y\": 0.7872159481048584\n                            }, {\n                                \"X\": 0.9261217713356018,\n                                \"Y\": 0.7871535420417786\n                            }, {\n                                \"X\": 0.9261254668235779,\n                                \"Y\": 0.7964948415756226\n                            }, {\n                                \"X\": 0.6743729114532471,\n                                \"Y\": 0.7965570092201233\n                            }]\n                        },\n                        \"Confidence\": 99.8757095336914\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Bedrooms\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05496566742658615,\n                                \"Height\": 0.007686451077461243,\n                                \"Left\": 0.43857094645500183,\n                                \"Top\": 0.7872607707977295\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.43857094645500183,\n                                \"Y\": 0.7872744202613831\n                            }, {\n                                \"X\": 0.49353471398353577,\n                                \"Y\": 0.7872607707977295\n                            }, {\n                                \"X\": 0.4935366213321686,\n                                \"Y\": 0.7949336171150208\n                            }, {\n                                \"X\": 0.4385727345943451,\n                                \"Y\": 0.7949472069740295\n                            }]\n                        },\n                        \"Confidence\": 99.9894027709961\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FEMA Flood Zone\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09672830998897552,\n                                \"Height\": 0.007364355493336916,\n                                \"Left\": 0.33024850487709045,\n                                \"Top\": 0.5501068830490112\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.33024850487709045,\n                                \"Y\": 0.5501332879066467\n                            }, {\n                                \"X\": 0.42697516083717346,\n                                \"Y\": 0.5501068830490112\n                            }, {\n                                \"X\": 0.4269767999649048,\n                                \"Y\": 0.5574449300765991\n                            }, {\n                                \"X\": 0.3302499055862427,\n                                \"Y\": 0.5574712753295898\n                            }]\n                        },\n                        \"Confidence\": 99.6614990234375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Rooms\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03792547434568405,\n                                \"Height\": 0.007348533719778061,\n                                \"Left\": 0.3209506571292877,\n                                \"Top\": 0.7872941493988037\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3209506571292877,\n                                \"Y\": 0.7873035669326782\n                            }, {\n                                \"X\": 0.358874648809433,\n                                \"Y\": 0.7872941493988037\n                            }, {\n                                \"X\": 0.35887610912323,\n                                \"Y\": 0.7946333289146423\n                            }, {\n                                \"X\": 0.32095202803611755,\n                                \"Y\": 0.7946426868438721\n                            }]\n                        },\n                        \"Confidence\": 99.97267150878906\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Fuel\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.02308565564453602,\n                                \"Height\": 0.007011195179075003,\n                                \"Left\": 0.3945896625518799,\n                                \"Top\": 0.7372404932975769\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3945896625518799,\n                                \"Y\": 0.7372463345527649\n                            }, {\n                                \"X\": 0.4176737666130066,\n                                \"Y\": 0.7372404932975769\n                            }, {\n                                \"X\": 0.41767531633377075,\n                                \"Y\": 0.7442458868026733\n                            }, {\n                                \"X\": 0.39459118247032166,\n                                \"Y\": 0.7442517280578613\n                            }]\n                        },\n                        \"Confidence\": 99.93109893798828\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Driveway Surface\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09399651736021042,\n                                \"Height\": 0.009364687837660313,\n                                \"Left\": 0.7710900902748108,\n                                \"Top\": 0.7247839570045471\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7710900902748108,\n                                \"Y\": 0.724807858467102\n                            }, {\n                                \"X\": 0.8650830984115601,\n                                \"Y\": 0.7247839570045471\n                            }, {\n                                \"X\": 0.8650866150856018,\n                                \"Y\": 0.7341247797012329\n                            }, {\n                                \"X\": 0.7710933089256287,\n                                \"Y\": 0.7341486215591431\n                            }]\n                        },\n                        \"Confidence\": 99.95691680908203\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Bath Wainscot\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0775047019124031,\n                                \"Height\": 0.007692605722695589,\n                                \"Left\": 0.7710769772529602,\n                                \"Top\": 0.6864245533943176\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7710769772529602,\n                                \"Y\": 0.6864446401596069\n                            }, {\n                                \"X\": 0.8485788106918335,\n                                \"Y\": 0.6864245533943176\n                            }, {\n                                \"X\": 0.8485816717147827,\n                                \"Y\": 0.6940972208976746\n                            }, {\n                                \"X\": 0.7710795998573303,\n                                \"Y\": 0.6941171884536743\n                            }]\n                        },\n                        \"Confidence\": 99.39617156982422\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Neighborhood Description\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.138480544090271,\n                                \"Height\": 0.009044650942087173,\n                                \"Left\": 0.04555940628051758,\n                                \"Top\": 0.37941187620162964\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04555940628051758,\n                                \"Y\": 0.3794521689414978\n                            }, {\n                                \"X\": 0.1840386539697647,\n                                \"Y\": 0.37941187620162964\n                            }, {\n                                \"X\": 0.18403995037078857,\n                                \"Y\": 0.3884163796901703\n                            }, {\n                                \"X\": 0.04556027427315712,\n                                \"Y\": 0.3884565532207489\n                            }]\n                        },\n                        \"Confidence\": 99.75981903076172\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Neighborhood Boundaries\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14012794196605682,\n                                \"Height\": 0.009045340120792389,\n                                \"Left\": 0.0444580502808094,\n                                \"Top\": 0.3550665080547333\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0444580502808094,\n                                \"Y\": 0.3551076352596283\n                            }, {\n                                \"X\": 0.18458469212055206,\n                                \"Y\": 0.3550665080547333\n                            }, {\n                                \"X\": 0.18458598852157593,\n                                \"Y\": 0.364070862531662\n                            }, {\n                                \"X\": 0.044458914548158646,\n                                \"Y\": 0.36411184072494507\n                            }]\n                        },\n                        \"Confidence\": 99.8509521484375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Effective Age (Yrs)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09947527945041656,\n                                \"Height\": 0.009365423582494259,\n                                \"Left\": 0.045041754841804504,\n                                \"Top\": 0.7116243243217468\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.045041754841804504,\n                                \"Y\": 0.7116498351097107\n                            }, {\n                                \"X\": 0.14451582729816437,\n                                \"Y\": 0.7116243243217468\n                            }, {\n                                \"X\": 0.14451703429222107,\n                                \"Y\": 0.7209644317626953\n                            }, {\n                                \"X\": 0.045042648911476135,\n                                \"Y\": 0.7209897637367249\n                            }]\n                        },\n                        \"Confidence\": 99.42110443115234\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Trim/Finish\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05881553515791893,\n                                \"Height\": 0.007354212459176779,\n                                \"Left\": 0.7710686326026917,\n                                \"Top\": 0.6620774865150452\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7710686326026917,\n                                \"Y\": 0.6620928049087524\n                            }, {\n                                \"X\": 0.829881489276886,\n                                \"Y\": 0.6620774865150452\n                            }, {\n                                \"X\": 0.8298841714859009,\n                                \"Y\": 0.6694163680076599\n                            }, {\n                                \"X\": 0.7710711359977722,\n                                \"Y\": 0.6694316864013672\n                            }]\n                        },\n                        \"Confidence\": 99.79736328125\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Census Tract\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07199354469776154,\n                                \"Height\": 0.007359110750257969,\n                                \"Left\": 0.7664802074432373,\n                                \"Top\": 0.10109052062034607\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7664802074432373,\n                                \"Y\": 0.10111357271671295\n                            }, {\n                                \"X\": 0.8384710550308228,\n                                \"Y\": 0.10109052062034607\n                            }, {\n                                \"X\": 0.8384737372398376,\n                                \"Y\": 0.10842663049697876\n                            }, {\n                                \"X\": 0.7664827108383179,\n                                \"Y\": 0.10844963043928146\n                            }]\n                        },\n                        \"Confidence\": 99.48133087158203\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Gutters & Downspouts\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12037136405706406,\n                                \"Height\": 0.009037887677550316,\n                                \"Left\": 0.5116441249847412,\n                                \"Top\": 0.6741380095481873\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5116441249847412,\n                                \"Y\": 0.6741693019866943\n                            }, {\n                                \"X\": 0.6320128440856934,\n                                \"Y\": 0.6741380095481873\n                            }, {\n                                \"X\": 0.6320155262947083,\n                                \"Y\": 0.683144748210907\n                            }, {\n                                \"X\": 0.5116464495658875,\n                                \"Y\": 0.6831759214401245\n                            }]\n                        },\n                        \"Confidence\": 97.16593170166016\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FEMA Map Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08794408291578293,\n                                \"Height\": 0.009030068293213844,\n                                \"Left\": 0.739701509475708,\n                                \"Top\": 0.5499975681304932\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.739701509475708,\n                                \"Y\": 0.5500215888023376\n                            }, {\n                                \"X\": 0.8276423215866089,\n                                \"Y\": 0.5499975681304932\n                            }, {\n                                \"X\": 0.8276455998420715,\n                                \"Y\": 0.5590037107467651\n                            }, {\n                                \"X\": 0.7397044897079468,\n                                \"Y\": 0.5590276122093201\n                            }]\n                        },\n                        \"Confidence\": 99.38233947753906\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Bath Floor\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05551781877875328,\n                                \"Height\": 0.007353340741246939,\n                                \"Left\": 0.7710728645324707,\n                                \"Top\": 0.6744210124015808\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7710728645324707,\n                                \"Y\": 0.6744354367256165\n                            }, {\n                                \"X\": 0.8265880346298218,\n                                \"Y\": 0.6744210124015808\n                            }, {\n                                \"X\": 0.8265906572341919,\n                                \"Y\": 0.6817600131034851\n                            }, {\n                                \"X\": 0.7710753679275513,\n                                \"Y\": 0.681774377822876\n                            }]\n                        },\n                        \"Confidence\": 97.4225845336914\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Storm Sash/Insulated\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1154252141714096,\n                                \"Height\": 0.007702109403908253,\n                                \"Left\": 0.5111009478569031,\n                                \"Top\": 0.6994917988777161\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5111009478569031,\n                                \"Y\": 0.6995214819908142\n                            }, {\n                                \"X\": 0.6265239119529724,\n                                \"Y\": 0.6994917988777161\n                            }, {\n                                \"X\": 0.6265261769294739,\n                                \"Y\": 0.7071643471717834\n                            }, {\n                                \"X\": 0.5111029148101807,\n                                \"Y\": 0.707193911075592\n                            }]\n                        },\n                        \"Confidence\": 99.89918518066406\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Map Reference\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0824308916926384,\n                                \"Height\": 0.008696075528860092,\n                                \"Left\": 0.5356771349906921,\n                                \"Top\": 0.10116108506917953\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5356771349906921,\n                                \"Y\": 0.10118748247623444\n                            }, {\n                                \"X\": 0.6181055307388306,\n                                \"Y\": 0.10116108506917953\n                            }, {\n                                \"X\": 0.6181080341339111,\n                                \"Y\": 0.109830841422081\n                            }, {\n                                \"X\": 0.5356793999671936,\n                                \"Y\": 0.10985716432332993\n                            }]\n                        },\n                        \"Confidence\": 99.06144714355469\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"County\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03902063146233559,\n                                \"Height\": 0.009349219501018524,\n                                \"Left\": 0.7659182548522949,\n                                \"Top\": 0.06475481390953064\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7659182548522949,\n                                \"Y\": 0.06476745754480362\n                            }, {\n                                \"X\": 0.8049355745315552,\n                                \"Y\": 0.06475481390953064\n                            }, {\n                                \"X\": 0.8049389123916626,\n                                \"Y\": 0.07409142702817917\n                            }, {\n                                \"X\": 0.765921413898468,\n                                \"Y\": 0.07410403341054916\n                            }]\n                        },\n                        \"Confidence\": 99.89998626708984\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"FEMA Map #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07035165280103683,\n                                \"Height\": 0.00902505125850439,\n                                \"Left\": 0.511612594127655,\n                                \"Top\": 0.5500646233558655\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.511612594127655,\n                                \"Y\": 0.5500838160514832\n                            }, {\n                                \"X\": 0.5819617509841919,\n                                \"Y\": 0.5500646233558655\n                            }, {\n                                \"X\": 0.5819642543792725,\n                                \"Y\": 0.5590705275535583\n                            }, {\n                                \"X\": 0.5116148591041565,\n                                \"Y\": 0.5590896606445312\n                            }]\n                        },\n                        \"Confidence\": 76.93325805664062\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Design (Style)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07529278844594955,\n                                \"Height\": 0.009025709703564644,\n                                \"Left\": 0.045039355754852295,\n                                \"Top\": 0.6866128444671631\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.045039355754852295,\n                                \"Y\": 0.6866323351860046\n                            }, {\n                                \"X\": 0.1203310489654541,\n                                \"Y\": 0.6866128444671631\n                            }, {\n                                \"X\": 0.12033214420080185,\n                                \"Y\": 0.6956191658973694\n                            }, {\n                                \"X\": 0.04504022002220154,\n                                \"Y\": 0.6956385970115662\n                            }]\n                        },\n                        \"Confidence\": 99.74974822998047\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Alley\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.027483738958835602,\n                                \"Height\": 0.009013470262289047,\n                                \"Left\": 0.6770409345626831,\n                                \"Top\": 0.5380231738090515\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6770409345626831,\n                                \"Y\": 0.538030743598938\n                            }, {\n                                \"X\": 0.7045217752456665,\n                                \"Y\": 0.5380231738090515\n                            }, {\n                                \"X\": 0.7045246958732605,\n                                \"Y\": 0.5470291376113892\n                            }, {\n                                \"X\": 0.6770437359809875,\n                                \"Y\": 0.5470366477966309\n                            }]\n                        },\n                        \"Confidence\": 99.97118377685547\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Walls\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029134098440408707,\n                                \"Height\": 0.007680021692067385,\n                                \"Left\": 0.7705148458480835,\n                                \"Top\": 0.6500763297080994\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7705148458480835,\n                                \"Y\": 0.6500840187072754\n                            }, {\n                                \"X\": 0.799646258354187,\n                                \"Y\": 0.6500763297080994\n                            }, {\n                                \"X\": 0.7996489405632019,\n                                \"Y\": 0.6577487587928772\n                            }, {\n                                \"X\": 0.7705174684524536,\n                                \"Y\": 0.6577563881874084\n                            }]\n                        },\n                        \"Confidence\": 99.98456573486328\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Shape\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0351765938103199,\n                                \"Height\": 0.009682346135377884,\n                                \"Left\": 0.5802859663963318,\n                                \"Top\": 0.45299482345581055\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5802859663963318,\n                                \"Y\": 0.45300477743148804\n                            }, {\n                                \"X\": 0.6154597401618958,\n                                \"Y\": 0.45299482345581055\n                            }, {\n                                \"X\": 0.6154625415802002,\n                                \"Y\": 0.4626672565937042\n                            }, {\n                                \"X\": 0.5802886486053467,\n                                \"Y\": 0.4626771807670593\n                            }]\n                        },\n                        \"Confidence\": 99.98212432861328\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Foundation Walls\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09288802742958069,\n                                \"Height\": 0.007696595974266529,\n                                \"Left\": 0.5110852718353271,\n                                \"Top\": 0.6377854943275452\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5110852718353271,\n                                \"Y\": 0.6378099918365479\n                            }, {\n                                \"X\": 0.6039711236953735,\n                                \"Y\": 0.6377854943275452\n                            }, {\n                                \"X\": 0.6039733290672302,\n                                \"Y\": 0.6454576849937439\n                            }, {\n                                \"X\": 0.5110872387886047,\n                                \"Y\": 0.645482063293457\n                            }]\n                        },\n                        \"Confidence\": 99.9036636352539\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Floors\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0335310623049736,\n                                \"Height\": 0.007347575388848782,\n                                \"Left\": 0.770510733127594,\n                                \"Top\": 0.638066291809082\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.770510733127594,\n                                \"Y\": 0.6380751132965088\n                            }, {\n                                \"X\": 0.8040392398834229,\n                                \"Y\": 0.638066291809082\n                            }, {\n                                \"X\": 0.8040418028831482,\n                                \"Y\": 0.6454050540924072\n                            }, {\n                                \"X\": 0.7705132365226746,\n                                \"Y\": 0.645413875579834\n                            }]\n                        },\n                        \"Confidence\": 99.97733306884766\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Data Source(s)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08133930712938309,\n                                \"Height\": 0.009362505748867989,\n                                \"Left\": 0.7143165469169617,\n                                \"Top\": 0.23349276185035706\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7143165469169617,\n                                \"Y\": 0.23351767659187317\n                            }, {\n                                \"X\": 0.7956525683403015,\n                                \"Y\": 0.23349276185035706\n                            }, {\n                                \"X\": 0.7956558465957642,\n                                \"Y\": 0.24283044040203094\n                            }, {\n                                \"X\": 0.7143195271492004,\n                                \"Y\": 0.2428552806377411\n                            }]\n                        },\n                        \"Confidence\": 98.92367553710938\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"# of Stories\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06100280210375786,\n                                \"Height\": 0.007687797769904137,\n                                \"Left\": 0.04503583535552025,\n                                \"Top\": 0.6499248147010803\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04503583535552025,\n                                \"Y\": 0.6499407887458801\n                            }, {\n                                \"X\": 0.10603774338960648,\n                                \"Y\": 0.6499248147010803\n                            }, {\n                                \"X\": 0.1060386374592781,\n                                \"Y\": 0.6575966477394104\n                            }, {\n                                \"X\": 0.045036572962999344,\n                                \"Y\": 0.6576125621795654\n                            }]\n                        },\n                        \"Confidence\": 96.7249526977539\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"View\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.026933595538139343,\n                                \"Height\": 0.0073454417288303375,\n                                \"Left\": 0.7731955647468567,\n                                \"Top\": 0.4532760679721832\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7731955647468567,\n                                \"Y\": 0.4532836973667145\n                            }, {\n                                \"X\": 0.8001265525817871,\n                                \"Y\": 0.4532760679721832\n                            }, {\n                                \"X\": 0.8001291751861572,\n                                \"Y\": 0.4606139063835144\n                            }, {\n                                \"X\": 0.7731980681419373,\n                                \"Y\": 0.46062150597572327\n                            }]\n                        },\n                        \"Confidence\": 99.98794555664062\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Exterior Walls\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07365144044160843,\n                                \"Height\": 0.007691492792218924,\n                                \"Left\": 0.5116380453109741,\n                                \"Top\": 0.6501325964927673\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5116380453109741,\n                                \"Y\": 0.6501519083976746\n                            }, {\n                                \"X\": 0.58528733253479,\n                                \"Y\": 0.6501325964927673\n                            }, {\n                                \"X\": 0.585289478302002,\n                                \"Y\": 0.6578048467636108\n                            }, {\n                                \"X\": 0.5116400122642517,\n                                \"Y\": 0.6578240990638733\n                            }]\n                        },\n                        \"Confidence\": 99.55406188964844\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Area\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025831298902630806,\n                                \"Height\": 0.007344831712543964,\n                                \"Left\": 0.3868348300457001,\n                                \"Top\": 0.45338577032089233\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3868348300457001,\n                                \"Y\": 0.4533930718898773\n                            }, {\n                                \"X\": 0.4126645028591156,\n                                \"Y\": 0.45338577032089233\n                            }, {\n                                \"X\": 0.4126661419868469,\n                                \"Y\": 0.46072331070899963\n                            }, {\n                                \"X\": 0.38683637976646423,\n                                \"Y\": 0.4607306122779846\n                            }]\n                        },\n                        \"Confidence\": 99.9348373413086\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Window Type\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07255343347787857,\n                                \"Height\": 0.00902544241398573,\n                                \"Left\": 0.5105480551719666,\n                                \"Top\": 0.6864932179450989\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5105480551719666,\n                                \"Y\": 0.6865119934082031\n                            }, {\n                                \"X\": 0.5830989480018616,\n                                \"Y\": 0.6864932179450989\n                            }, {\n                                \"X\": 0.5831014513969421,\n                                \"Y\": 0.6954999566078186\n                            }, {\n                                \"X\": 0.510550320148468,\n                                \"Y\": 0.6955186724662781\n                            }]\n                        },\n                        \"Confidence\": 99.71788787841797\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Roof Surface\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06980433315038681,\n                                \"Height\": 0.0076904576271772385,\n                                \"Left\": 0.5116410851478577,\n                                \"Top\": 0.6621423363685608\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5116410851478577,\n                                \"Y\": 0.6621605753898621\n                            }, {\n                                \"X\": 0.5814433097839355,\n                                \"Y\": 0.6621423363685608\n                            }, {\n                                \"X\": 0.5814453959465027,\n                                \"Y\": 0.6698146462440491\n                            }, {\n                                \"X\": 0.5116430521011353,\n                                \"Y\": 0.6698327660560608\n                            }]\n                        },\n                        \"Confidence\": 95.08533477783203\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Tax Year\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04616155847907066,\n                                \"Height\": 0.007350659463554621,\n                                \"Left\": 0.5356739163398743,\n                                \"Top\": 0.08883510529994965\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5356739163398743,\n                                \"Y\": 0.08884994685649872\n                            }, {\n                                \"X\": 0.5818334221839905,\n                                \"Y\": 0.08883510529994965\n                            }, {\n                                \"X\": 0.5818354487419128,\n                                \"Y\": 0.09617096185684204\n                            }, {\n                                \"X\": 0.5356758236885071,\n                                \"Y\": 0.09618576616048813\n                            }]\n                        },\n                        \"Confidence\": 99.48454284667969\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Year Built\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.052210498601198196,\n                                \"Height\": 0.0073519074358046055,\n                                \"Left\": 0.044491030275821686,\n                                \"Top\": 0.6996280550956726\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.044491030275821686,\n                                \"Y\": 0.6996415257453918\n                            }, {\n                                \"X\": 0.09670069813728333,\n                                \"Y\": 0.6996280550956726\n                            }, {\n                                \"X\": 0.09670153260231018,\n                                \"Y\": 0.7069665789604187\n                            }, {\n                                \"X\": 0.044491734355688095,\n                                \"Y\": 0.7069799900054932\n                            }]\n                        },\n                        \"Confidence\": 99.60935974121094\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Specific Zoning Classification\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1571691930294037,\n                                \"Height\": 0.009382707066833973,\n                                \"Left\": 0.04446858540177345,\n                                \"Top\": 0.4651186466217041\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04446858540177345,\n                                \"Y\": 0.4651629328727722\n                            }, {\n                                \"X\": 0.2016363888978958,\n                                \"Y\": 0.4651186466217041\n                            }, {\n                                \"X\": 0.20163778960704803,\n                                \"Y\": 0.4744572043418884\n                            }, {\n                                \"X\": 0.044469479471445084,\n                                \"Y\": 0.4745013415813446\n                            }]\n                        },\n                        \"Confidence\": 99.64759063720703\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Screens\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04452211782336235,\n                                \"Height\": 0.0073502943851053715,\n                                \"Left\": 0.5111041069030762,\n                                \"Top\": 0.7118527293205261\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5111041069030762,\n                                \"Y\": 0.7118641138076782\n                            }, {\n                                \"X\": 0.55562424659729,\n                                \"Y\": 0.7118527293205261\n                            }, {\n                                \"X\": 0.5556262135505676,\n                                \"Y\": 0.7191916704177856\n                            }, {\n                                \"X\": 0.5111059546470642,\n                                \"Y\": 0.7192030549049377\n                            }]\n                        },\n                        \"Confidence\": 99.9822998046875\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Owner of Public Record\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12693709135055542,\n                                \"Height\": 0.007376729976385832,\n                                \"Left\": 0.40323731303215027,\n                                \"Top\": 0.06484385579824448\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.40323731303215027,\n                                \"Y\": 0.06488499045372009\n                            }, {\n                                \"X\": 0.5301724672317505,\n                                \"Y\": 0.06484385579824448\n                            }, {\n                                \"X\": 0.5301744341850281,\n                                \"Y\": 0.07217954844236374\n                            }, {\n                                \"X\": 0.4032389223575592,\n                                \"Y\": 0.0722205862402916\n                            }]\n                        },\n                        \"Confidence\": 99.84480285644531\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"File #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.028028806671500206,\n                                \"Height\": 0.007011458743363619,\n                                \"Left\": 0.7928321361541748,\n                                \"Top\": 0.02606995776295662\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7928321361541748,\n                                \"Y\": 0.026079153642058372\n                            }, {\n                                \"X\": 0.8208584189414978,\n                                \"Y\": 0.02606995776295662\n                            }, {\n                                \"X\": 0.8208609223365784,\n                                \"Y\": 0.03307224065065384\n                            }, {\n                                \"X\": 0.7928345799446106,\n                                \"Y\": 0.03308141604065895\n                            }]\n                        },\n                        \"Confidence\": 84.93486785888672\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(describe)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.053869832307100296,\n                                \"Height\": 0.009354403242468834,\n                                \"Left\": 0.6639224290847778,\n                                \"Top\": 0.7741944193840027\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6639224290847778,\n                                \"Y\": 0.7742078900337219\n                            }, {\n                                \"X\": 0.7177892327308655,\n                                \"Y\": 0.7741944193840027\n                            }, {\n                                \"X\": 0.717792272567749,\n                                \"Y\": 0.7835354804992676\n                            }, {\n                                \"X\": 0.663925290107727,\n                                \"Y\": 0.7835488319396973\n                            }]\n                        },\n                        \"Confidence\": 98.12345123291016\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Additional features (special energy efficient items, etc.)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2929428517818451,\n                                \"Height\": 0.009412779472768307,\n                                \"Left\": 0.04395098611712456,\n                                \"Top\": 0.7993091344833374\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04395098611712456,\n                                \"Y\": 0.7993813753128052\n                            }, {\n                                \"X\": 0.3368920087814331,\n                                \"Y\": 0.7993091344833374\n                            }, {\n                                \"X\": 0.33689382672309875,\n                                \"Y\": 0.8086499571800232\n                            }, {\n                                \"X\": 0.04395188018679619,\n                                \"Y\": 0.8087218999862671\n                            }]\n                        },\n                        \"Confidence\": 99.00505828857422\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Report data source(s) used, offering price(s), and date(s).\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.30716797709465027,\n                                \"Height\": 0.009432576596736908,\n                                \"Left\": 0.044990163296461105,\n                                \"Top\": 0.17360490560531616\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.044990163296461105,\n                                \"Y\": 0.17370091378688812\n                            }, {\n                                \"X\": 0.35215628147125244,\n                                \"Y\": 0.17360490560531616\n                            }, {\n                                \"X\": 0.3521581292152405,\n                                \"Y\": 0.1829417645931244\n                            }, {\n                                \"X\": 0.044991057366132736,\n                                \"Y\": 0.18303747475147247\n                            }]\n                        },\n                        \"Confidence\": 99.00665283203125\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Dimensions\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06319686025381088,\n                                \"Height\": 0.007688658777624369,\n                                \"Left\": 0.044467438012361526,\n                                \"Top\": 0.4531386196613312\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.044467438012361526,\n                                \"Y\": 0.4531565010547638\n                            }, {\n                                \"X\": 0.10766340047121048,\n                                \"Y\": 0.4531386196613312\n                            }, {\n                                \"X\": 0.10766429454088211,\n                                \"Y\": 0.4608094394207001\n                            }, {\n                                \"X\": 0.044468171894550323,\n                                \"Y\": 0.4608272612094879\n                            }]\n                        },\n                        \"Confidence\": 99.93641662597656\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(describe)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05386373773217201,\n                                \"Height\": 0.009354159235954285,\n                                \"Left\": 0.6182147860527039,\n                                \"Top\": 0.477326899766922\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6182147860527039,\n                                \"Y\": 0.47734200954437256\n                            }, {\n                                \"X\": 0.672075629234314,\n                                \"Y\": 0.477326899766922\n                            }, {\n                                \"X\": 0.672078549861908,\n                                \"Y\": 0.4866659939289093\n                            }, {\n                                \"X\": 0.6182175278663635,\n                                \"Y\": 0.4866810441017151\n                            }]\n                        },\n                        \"Confidence\": 99.9537582397461\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Market Conditions (including support for the above conclusions)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.34016671776771545,\n                                \"Height\": 0.009435746818780899,\n                                \"Left\": 0.044463861733675,\n                                \"Top\": 0.4157061278820038\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.044463861733675,\n                                \"Y\": 0.41580379009246826\n                            }, {\n                                \"X\": 0.3846285939216614,\n                                \"Y\": 0.4157061278820038\n                            }, {\n                                \"X\": 0.38463059067726135,\n                                \"Y\": 0.42504456639289856\n                            }, {\n                                \"X\": 0.044464755803346634,\n                                \"Y\": 0.4251418709754944\n                            }]\n                        },\n                        \"Confidence\": 99.8263931274414\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Lender/Client\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07253149151802063,\n                                \"Height\": 0.007692040875554085,\n                                \"Left\": 0.04443838819861412,\n                                \"Top\": 0.14967021346092224\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04443838819861412,\n                                \"Y\": 0.1496930718421936\n                            }, {\n                                \"X\": 0.11696895956993103,\n                                \"Y\": 0.14967021346092224\n                            }, {\n                                \"X\": 0.11696988344192505,\n                                \"Y\": 0.15733946859836578\n                            }, {\n                                \"X\": 0.04443912208080292,\n                                \"Y\": 0.15736226737499237\n                            }]\n                        },\n                        \"Confidence\": 99.65884399414062\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Borrower\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04945195093750954,\n                                \"Height\": 0.00735134445130825,\n                                \"Left\": 0.04497973620891571,\n                                \"Top\": 0.06498505920171738\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04497973620891571,\n                                \"Y\": 0.06500108540058136\n                            }, {\n                                \"X\": 0.09443086385726929,\n                                \"Y\": 0.06498505920171738\n                            }, {\n                                \"X\": 0.09443169087171555,\n                                \"Y\": 0.07232041656970978\n                            }, {\n                                \"X\": 0.04498044028878212,\n                                \"Y\": 0.07233640551567078\n                            }]\n                        },\n                        \"Confidence\": 99.90217590332031\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"If Yes, report the total dollar amount and describe the items to be paid.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.37421926856040955,\n                                \"Height\": 0.00911734253168106,\n                                \"Left\": 0.044998060911893845,\n                                \"Top\": 0.2559509873390198\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.044998060911893845,\n                                \"Y\": 0.2560647428035736\n                            }, {\n                                \"X\": 0.4192153215408325,\n                                \"Y\": 0.2559509873390198\n                            }, {\n                                \"X\": 0.4192173182964325,\n                                \"Y\": 0.26495495438575745\n                            }, {\n                                \"X\": 0.04499892517924309,\n                                \"Y\": 0.2650683522224426\n                            }]\n                        },\n                        \"Confidence\": 99.44692993164062\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"If No, describe\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07749687880277634,\n                                \"Height\": 0.00835987739264965,\n                                \"Left\": 0.5209588408470154,\n                                \"Top\": 0.5620680451393127\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5209588408470154,\n                                \"Y\": 0.5620890855789185\n                            }, {\n                                \"X\": 0.5984534025192261,\n                                \"Y\": 0.5620680451393127\n                            }, {\n                                \"X\": 0.5984557271003723,\n                                \"Y\": 0.5704069137573242\n                            }, {\n                                \"X\": 0.5209609866142273,\n                                \"Y\": 0.5704278945922852\n                            }]\n                        },\n                        \"Confidence\": 98.09154510498047\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Assessor's Parcel #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10824549943208694,\n                                \"Height\": 0.0073702409863471985,\n                                \"Left\": 0.043333664536476135,\n                                \"Top\": 0.08897344768047333\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.043333664536476135,\n                                \"Y\": 0.08900824934244156\n                            }, {\n                                \"X\": 0.15157820284366608,\n                                \"Y\": 0.08897344768047333\n                            }, {\n                                \"X\": 0.15157917141914368,\n                                \"Y\": 0.09630896896123886\n                            }, {\n                                \"X\": 0.04333436116576195,\n                                \"Y\": 0.09634368866682053\n                            }]\n                        },\n                        \"Confidence\": 87.22123718261719\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Neighborhood Name\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11154304444789886,\n                                \"Height\": 0.009038384072482586,\n                                \"Left\": 0.044433727860450745,\n                                \"Top\": 0.1009756401181221\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.044433727860450745,\n                                \"Y\": 0.10101135820150375\n                            }, {\n                                \"X\": 0.1559755653142929,\n                                \"Y\": 0.1009756401181221\n                            }, {\n                                \"X\": 0.1559767723083496,\n                                \"Y\": 0.10997840762138367\n                            }, {\n                                \"X\": 0.04443459212779999,\n                                \"Y\": 0.11001402139663696\n                            }]\n                        },\n                        \"Confidence\": 99.80609893798828\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Property Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09230998158454895,\n                                \"Height\": 0.009365822188556194,\n                                \"Left\": 0.0449785515666008,\n                                \"Top\": 0.05263445898890495\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.0449785515666008,\n                                \"Y\": 0.05266449227929115\n                            }, {\n                                \"X\": 0.13728734850883484,\n                                \"Y\": 0.05263445898890495\n                            }, {\n                                \"X\": 0.13728854060173035,\n                                \"Y\": 0.061970338225364685\n                            }, {\n                                \"X\": 0.04497944936156273,\n                                \"Y\": 0.06200028210878372\n                            }]\n                        },\n                        \"Confidence\": 99.69559478759766\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(describe)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0538557693362236,\n                                \"Height\": 0.009353811852633953,\n                                \"Left\": 0.4977695643901825,\n                                \"Top\": 0.13719528913497925\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4977695643901825,\n                                \"Y\": 0.137212336063385\n                            }, {\n                                \"X\": 0.5516228079795837,\n                                \"Y\": 0.13719528913497925\n                            }, {\n                                \"X\": 0.5516253113746643,\n                                \"Y\": 0.1465321183204651\n                            }, {\n                                \"X\": 0.49777188897132874,\n                                \"Y\": 0.14654910564422607\n                            }]\n                        },\n                        \"Confidence\": 99.98857116699219\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Zoning Description\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1011238768696785,\n                                \"Height\": 0.009033716283738613,\n                                \"Left\": 0.386837363243103,\n                                \"Top\": 0.4653714597225189\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.386837363243103,\n                                \"Y\": 0.46539995074272156\n                            }, {\n                                \"X\": 0.48795902729034424,\n                                \"Y\": 0.4653714597225189\n                            }, {\n                                \"X\": 0.4879612624645233,\n                                \"Y\": 0.47437676787376404\n                            }, {\n                                \"X\": 0.38683927059173584,\n                                \"Y\": 0.4744051694869995\n                            }]\n                        },\n                        \"Confidence\": 99.84271240234375\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"(describe)\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05385442450642586,\n                                \"Height\": 0.00902028102427721,\n                                \"Left\": 0.4257802963256836,\n                                \"Top\": 0.12521375715732574\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4257802963256836,\n                                \"Y\": 0.12523086369037628\n                            }, {\n                                \"X\": 0.47963252663612366,\n                                \"Y\": 0.12521375715732574\n                            }, {\n                                \"X\": 0.47963470220565796,\n                                \"Y\": 0.13421697914600372\n                            }, {\n                                \"X\": 0.42578232288360596,\n                                \"Y\": 0.13423404097557068\n                            }]\n                        },\n                        \"Confidence\": 99.95623016357422\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Describe the condition of the property (including needed repairs, deterioration, renovations, remodeling, etc.).\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.5815104842185974,\n                                \"Height\": 0.009482619352638721,\n                                \"Left\": 0.04450291022658348,\n                                \"Top\": 0.8235915303230286\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04450291022658348,\n                                \"Y\": 0.8237334489822388\n                            }, {\n                                \"X\": 0.6260106563568115,\n                                \"Y\": 0.8235915303230286\n                            }, {\n                                \"X\": 0.6260133981704712,\n                                \"Y\": 0.8329327702522278\n                            }, {\n                                \"X\": 0.04450380429625511,\n                                \"Y\": 0.833074152469635\n                            }]\n                        },\n                        \"Confidence\": 99.82594299316406\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.045062024146318436,\n                                \"Height\": 0.007683680392801762,\n                                \"Left\": 0.41094890236854553,\n                                \"Top\": 0.14956337213516235\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41094890236854553,\n                                \"Y\": 0.1495775729417801\n                            }, {\n                                \"X\": 0.4560091197490692,\n                                \"Y\": 0.14956337213516235\n                            }, {\n                                \"X\": 0.45601093769073486,\n                                \"Y\": 0.15723289549350739\n                            }, {\n                                \"X\": 0.41095060110092163,\n                                \"Y\": 0.15724706649780273\n                            }]\n                        },\n                        \"Confidence\": 99.98859405517578\n                    },\n                    \"ValueDetections\": []\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"If No, describe\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07751145958900452,\n                                \"Height\": 0.008692814037203789,\n                                \"Left\": 0.7662140727043152,\n                                \"Top\": 0.9329707026481628\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.7662140727043152,\n                                \"Y\": 0.932988703250885\n                            }, {\n                                \"X\": 0.8437223434448242,\n                                \"Y\": 0.9329707026481628\n                            }, {\n                                \"X\": 0.8437255620956421,\n                                \"Y\": 0.9416455626487732\n                            }, {\n                                \"X\": 0.766217052936554,\n                                \"Y\": 0.9416635036468506\n                            }]\n                        },\n                        \"Confidence\": 97.91606903076172\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Does the property generally conform to the neighborhood (functional utility, style, condition, use, construction, etc.)?\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.6156127452850342,\n                                \"Height\": 0.009484538808465004,\n                                \"Left\": 0.04506300017237663,\n                                \"Top\": 0.9330132603645325\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04506300017237663,\n                                \"Y\": 0.933156430721283\n                            }, {\n                                \"X\": 0.6606729030609131,\n                                \"Y\": 0.9330132603645325\n                            }, {\n                                \"X\": 0.6606757640838623,\n                                \"Y\": 0.942355215549469\n                            }, {\n                                \"X\": 0.045063894242048264,\n                                \"Y\": 0.9424977898597717\n                            }]\n                        },\n                        \"Confidence\": 99.9110336303711\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"If Yes, describe\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08135087788105011,\n                                \"Height\": 0.008361168205738068,\n                                \"Left\": 0.8397432565689087,\n                                \"Top\": 0.5743224024772644\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8397432565689087,\n                                \"Y\": 0.5743443965911865\n                            }, {\n                                \"X\": 0.921090841293335,\n                                \"Y\": 0.5743224024772644\n                            }, {\n                                \"X\": 0.9210941195487976,\n                                \"Y\": 0.5826616287231445\n                            }, {\n                                \"X\": 0.8397462964057922,\n                                \"Y\": 0.5826835632324219\n                            }]\n                        },\n                        \"Confidence\": 98.47943878173828\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Are there any adverse site conditions or external factors (easements, encroachments, environmental conditions, land uses, etc.)?\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.6891875267028809,\n                                \"Height\": 0.009191902354359627,\n                                \"Left\": 0.04447902739048004,\n                                \"Top\": 0.5740395188331604\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04447902739048004,\n                                \"Y\": 0.5742258429527283\n                            }, {\n                                \"X\": 0.7336635589599609,\n                                \"Y\": 0.5740395188331604\n                            }, {\n                                \"X\": 0.7336665391921997,\n                                \"Y\": 0.5830457210540771\n                            }, {\n                                \"X\": 0.044479887932538986,\n                                \"Y\": 0.5832313895225525\n                            }]\n                        },\n                        \"Confidence\": 99.55438995361328\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"If Yes, describe\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08135952055454254,\n                                \"Height\": 0.008360270410776138,\n                                \"Left\": 0.8437045812606812,\n                                \"Top\": 0.8845732808113098\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8437045812606812,\n                                \"Y\": 0.884592592716217\n                            }, {\n                                \"X\": 0.9250608086585999,\n                                \"Y\": 0.8845732808113098\n                            }, {\n                                \"X\": 0.9250641465187073,\n                                \"Y\": 0.8929142951965332\n                            }, {\n                                \"X\": 0.8437076807022095,\n                                \"Y\": 0.8929335474967957\n                            }]\n                        },\n                        \"Confidence\": 99.5184326171875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Are there any physical deficiencies or adverse conditions that affect the livability, soundness, or structural integrity of the property?\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.6931080222129822,\n                                \"Height\": 0.009505809284746647,\n                                \"Left\": 0.04450872167944908,\n                                \"Top\": 0.8842841982841492\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04450872167944908,\n                                \"Y\": 0.8844489455223083\n                            }, {\n                                \"X\": 0.7376136779785156,\n                                \"Y\": 0.8842841982841492\n                            }, {\n                                \"X\": 0.737616777420044,\n                                \"Y\": 0.8936259150505066\n                            }, {\n                                \"X\": 0.04450961574912071,\n                                \"Y\": 0.8937900066375732\n                            }]\n                        },\n                        \"Confidence\": 99.90554809570312\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"If No, describe\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07695113122463226,\n                                \"Height\": 0.008360172621905804,\n                                \"Left\": 0.8237730264663696,\n                                \"Top\": 0.4892704486846924\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.8237730264663696,\n                                \"Y\": 0.4892919361591339\n                            }, {\n                                \"X\": 0.9007209539413452,\n                                \"Y\": 0.4892704486846924\n                            }, {\n                                \"X\": 0.9007241725921631,\n                                \"Y\": 0.4976091980934143\n                            }, {\n                                \"X\": 0.8237760066986084,\n                                \"Y\": 0.49763062596321106\n                            }]\n                        },\n                        \"Confidence\": 98.4783935546875\n                    },\n                    \"ValueDetections\": [{\n                        \"Text\": \"Is the highest and best use of the subject property as improved (or as proposed per plans and specifications) the present use?\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.6715803146362305,\n                                \"Height\": 0.009526164270937443,\n                                \"Left\": 0.046119485050439835,\n                                \"Top\": 0.4889880418777466\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.046119485050439835,\n                                \"Y\": 0.4891756474971771\n                            }, {\n                                \"X\": 0.7176967859268188,\n                                \"Y\": 0.4889880418777466\n                            }, {\n                                \"X\": 0.7176997661590576,\n                                \"Y\": 0.49832725524902344\n                            }, {\n                                \"X\": 0.046120382845401764,\n                                \"Y\": 0.49851420521736145\n                            }]\n                        },\n                        \"Confidence\": 99.69378662109375\n                    }]\n                }, {\n                    \"Type\": \"OTHER\",\n                    \"KeyDetection\": {\n                        \"Text\": \"Legal Description\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0928601622581482,\n                                \"Height\": 0.00903249066323042,\n                                \"Left\": 0.04498085752129555,\n                                \"Top\": 0.07664094865322113\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.04498085752129555,\n                                \"Y\": 0.07667092978954315\n                            }, {\n                                \"X\": 0.13783986866474152,\n                                \"Y\": 0.07664094865322113\n                            }, {\n                                \"X\": 0.13784101605415344,\n                                \"Y\": 0.08564355224370956\n                            }, {\n                                \"X\": 0.04498171806335449,\n                                \"Y\": 0.08567344397306442\n                            }]\n                        },\n                        \"Confidence\": 99.09415435791016\n                    },\n                    \"ValueDetections\": []\n                }],\n                \"SignatureDetections\": []\n            }\n        }]\n    }, {\n        \"Page\": 25,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 66.3272705078125\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 99.99139404296875\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 26,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 55.23445129394531\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 99.99561309814453\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 27,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 99.6418685913086\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 99.99998474121094\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 28,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 69.27012634277344\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 99.9999771118164\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 29,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 99.86693572998047\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 83.6036148071289\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 30,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"UNCLASSIFIED\",\n                \"Confidence\": 99.99891662597656\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 99.77848815917969\n            }]\n        },\n        \"Extractions\": []\n    }, {\n        \"Page\": 31,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"IDENTITY_DOCUMENT\",\n                \"Confidence\": 99.99978637695312\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"IdentityDocument\": {\n                \"IdentityDocumentFields\": [{\n                    \"Type\": {\n                        \"Text\": \"FIRST_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"GARCIA\",\n                        \"Confidence\": 98.44628143310547\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"LAST_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MARIA\",\n                        \"Confidence\": 98.23100280761719\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"MIDDLE_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.18656921386719\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"SUFFIX\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.16349792480469\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"CITY_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"BIGTOWN\",\n                        \"Confidence\": 97.47063446044922\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"ZIP_CODE_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"02801\",\n                        \"Confidence\": 97.74028778076172\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"STATE_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MA\",\n                        \"Confidence\": 98.83002471923828\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"STATE_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MASSACHUSETTS\",\n                        \"Confidence\": 97.03724670410156\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"DOCUMENT_NUMBER\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"736HDV7874JSB\",\n                        \"Confidence\": 94.41645050048828\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"EXPIRATION_DATE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/20/2028\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2028-01-20T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 97.48696899414062\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"DATE_OF_BIRTH\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"03/18/2001\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2001-03-18T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 94.71835327148438\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"DATE_OF_ISSUE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"03/18/2018\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2018-03-18T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 97.80337524414062\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"ID_TYPE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"DRIVER LICENSE FRONT\",\n                        \"Confidence\": 97.00190734863281\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"ENDORSEMENTS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"NONE\",\n                        \"Confidence\": 98.47836303710938\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"VETERAN\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.17615509033203\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"RESTRICTIONS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"NONE\",\n                        \"Confidence\": 98.46807861328125\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"CLASS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"D\",\n                        \"Confidence\": 97.8531494140625\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"100 MARKET STREET\",\n                        \"Confidence\": 97.22605895996094\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"COUNTY\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.17820739746094\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"PLACE_OF_BIRTH\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.16973114013672\n                    }\n                }, {\n                    \"Type\": {\n                        \"Text\": \"MRZ_CODE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 97.52344512939453\n                    }\n                }]\n            }\n        }]\n    }, {\n        \"Page\": 32,\n        \"PageClassification\": {\n            \"PageType\": [{\n                \"Value\": \"RECEIPTS\",\n                \"Confidence\": 99.9999771118164\n            }],\n            \"PageNumber\": [{\n                \"Value\": \"undetected\",\n                \"Confidence\": 100.0\n            }]\n        },\n        \"Extractions\": [{\n            \"ExpenseDocument\": {\n                \"SummaryFields\": [{\n                    \"Type\": {\n                        \"Text\": \"ADDRESS\",\n                        \"Confidence\": 99.99990844726562\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"INDAH GIFT & HOME DECO\\n27, JALAN DEDAP 13,\\nTAMAN JOHOR JAYA,\\n81100 JOHOR BAHRU,JOHOR.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.28639349341392517,\n                                \"Height\": 0.09593969583511353,\n                                \"Left\": 0.34769922494888306,\n                                \"Top\": 0.16610325872898102\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34769922494888306,\n                                \"Y\": 0.16610325872898102\n                            }, {\n                                \"X\": 0.6337887644767761,\n                                \"Y\": 0.16613925993442535\n                            }, {\n                                \"X\": 0.6340926885604858,\n                                \"Y\": 0.26204296946525574\n                            }, {\n                                \"X\": 0.3479115664958954,\n                                \"Y\": 0.26202237606048584\n                            }]\n                        },\n                        \"Confidence\": 99.60453033447266\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"abd0b09d-baf9-402f-9709-2ed61dc8e715\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"STREET\",\n                        \"Confidence\": 99.99990844726562\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"27, JALAN DEDAP 13,\\nTAMAN JOHOR JAYA,\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.21583342552185059,\n                                \"Height\": 0.04609152674674988,\n                                \"Left\": 0.3831241726875305,\n                                \"Top\": 0.19101029634475708\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3831241726875305,\n                                \"Y\": 0.19101029634475708\n                            }, {\n                                \"X\": 0.598816990852356,\n                                \"Y\": 0.19103442132472992\n                            }, {\n                                \"X\": 0.5989575982093811,\n                                \"Y\": 0.23710182309150696\n                            }, {\n                                \"X\": 0.38323161005973816,\n                                \"Y\": 0.2370832860469818\n                            }]\n                        },\n                        \"Confidence\": 99.54653930664062\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"abd0b09d-baf9-402f-9709-2ed61dc8e715\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"CITY\",\n                        \"Confidence\": 99.99990844726562\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"JOHOR\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.13162139058113098,\n                                \"Height\": 0.021933898329734802,\n                                \"Left\": 0.41981813311576843,\n                                \"Top\": 0.2398344725370407\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.41981813311576843,\n                                \"Y\": 0.2398344725370407\n                            }, {\n                                \"X\": 0.5513761043548584,\n                                \"Y\": 0.23984557390213013\n                            }, {\n                                \"X\": 0.5514395236968994,\n                                \"Y\": 0.2617683708667755\n                            }, {\n                                \"X\": 0.4198719263076782,\n                                \"Y\": 0.2617588937282562\n                            }]\n                        },\n                        \"Confidence\": 99.57453918457031\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"abd0b09d-baf9-402f-9709-2ed61dc8e715\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"STATE\",\n                        \"Confidence\": 99.99990844726562\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"BAHRU,JOHOR.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1407405287027359,\n                                \"Height\": 0.02220228873193264,\n                                \"Left\": 0.49335217475891113,\n                                \"Top\": 0.23984067142009735\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.49335217475891113,\n                                \"Y\": 0.23984067142009735\n                            }, {\n                                \"X\": 0.6340223550796509,\n                                \"Y\": 0.23985254764556885\n                            }, {\n                                \"X\": 0.6340926885604858,\n                                \"Y\": 0.26204296946525574\n                            }, {\n                                \"X\": 0.4934121072292328,\n                                \"Y\": 0.2620328366756439\n                            }]\n                        },\n                        \"Confidence\": 87.70281219482422\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"abd0b09d-baf9-402f-9709-2ed61dc8e715\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"NAME\",\n                        \"Confidence\": 99.99982452392578\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"INDAH GIFT & HOME DECO\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.26582497358322144,\n                                \"Height\": 0.017798982560634613,\n                                \"Left\": 0.3607308566570282,\n                                \"Top\": 0.16594044864177704\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3607308566570282,\n                                \"Y\": 0.16594044864177704\n                            }, {\n                                \"X\": 0.6264999508857727,\n                                \"Y\": 0.16597391664981842\n                            }, {\n                                \"X\": 0.6265558004379272,\n                                \"Y\": 0.18373943865299225\n                            }, {\n                                \"X\": 0.36077097058296204,\n                                \"Y\": 0.18370862305164337\n                            }]\n                        },\n                        \"Confidence\": 99.97840881347656\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"abd0b09d-baf9-402f-9709-2ed61dc8e715\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"ADDRESS_BLOCK\",\n                        \"Confidence\": 99.99982452392578\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"27, JALAN DEDAP 13,\\nTAMAN JOHOR JAYA,\\nJOHOR BAHRU,JOHOR.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2509685456752777,\n                                \"Height\": 0.07103265821933746,\n                                \"Left\": 0.3831241726875305,\n                                \"Top\": 0.19101029634475708\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3831241726875305,\n                                \"Y\": 0.19101029634475708\n                            }, {\n                                \"X\": 0.6338676810264587,\n                                \"Y\": 0.1910383403301239\n                            }, {\n                                \"X\": 0.6340926885604858,\n                                \"Y\": 0.26204296946525574\n                            }, {\n                                \"X\": 0.38328978419303894,\n                                \"Y\": 0.2620249092578888\n                            }]\n                        },\n                        \"Confidence\": 95.91944122314453\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"abd0b09d-baf9-402f-9709-2ed61dc8e715\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"NAME\",\n                        \"Confidence\": 79.0044174194336\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"tan woon yann\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.31802693009376526,\n                                \"Height\": 0.032477978616952896,\n                                \"Left\": 0.3158113658428192,\n                                \"Top\": 0.050772618502378464\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3158113658428192,\n                                \"Y\": 0.050772618502378464\n                            }, {\n                                \"X\": 0.6337355375289917,\n                                \"Y\": 0.05083322897553444\n                            }, {\n                                \"X\": 0.6338382959365845,\n                                \"Y\": 0.08325059711933136\n                            }, {\n                                \"X\": 0.3158797323703766,\n                                \"Y\": 0.0831957757472992\n                            }]\n                        },\n                        \"Confidence\": 78.99870300292969\n                    },\n                    \"PageNumber\": 32,\n                    \"GroupProperties\": [{\n                        \"Types\": [\"VENDOR\"],\n                        \"Id\": \"07facd9a-d850-4c1a-a5fd-c27176c7cd7c\"\n                    }]\n                }, {\n                    \"Type\": {\n                        \"Text\": \"AMOUNT_PAID\",\n                        \"Confidence\": 91.70641326904297\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"CASH RM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.32761305570602417,\n                                \"Height\": 0.01792936585843563,\n                                \"Left\": 0.25175076723098755,\n                                \"Top\": 0.7889649271965027\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25175076723098755,\n                                \"Y\": 0.789038360118866\n                            }, {\n                                \"X\": 0.5793105959892273,\n                                \"Y\": 0.7889649271965027\n                            }, {\n                                \"X\": 0.5793638229370117,\n                                \"Y\": 0.8068175315856934\n                            }, {\n                                \"X\": 0.2517845034599304,\n                                \"Y\": 0.8068943023681641\n                            }]\n                        },\n                        \"Confidence\": 91.6551742553711\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"70.30\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06258392333984375,\n                                \"Height\": 0.016574053093791008,\n                                \"Left\": 0.6373053789138794,\n                                \"Top\": 0.7887747287750244\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6373053789138794,\n                                \"Y\": 0.7887887358665466\n                            }, {\n                                \"X\": 0.6998332738876343,\n                                \"Y\": 0.7887747287750244\n                            }, {\n                                \"X\": 0.6998893022537231,\n                                \"Y\": 0.8053341507911682\n                            }, {\n                                \"X\": 0.6373579502105713,\n                                \"Y\": 0.8053487539291382\n                            }]\n                        },\n                        \"Confidence\": 91.69391632080078\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"INVOICE_RECEIPT_DATE\",\n                        \"Confidence\": 99.99110412597656\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"19/10/2018\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1206095814704895,\n                                \"Height\": 0.017499156296253204,\n                                \"Left\": 0.25228673219680786,\n                                \"Top\": 0.36758655309677124\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25228673219680786,\n                                \"Y\": 0.36758655309677124\n                            }, {\n                                \"X\": 0.37285611033439636,\n                                \"Y\": 0.367588073015213\n                            }, {\n                                \"X\": 0.37289631366729736,\n                                \"Y\": 0.38508570194244385\n                            }, {\n                                \"X\": 0.252319872379303,\n                                \"Y\": 0.3850853741168976\n                            }]\n                        },\n                        \"Confidence\": 99.957763671875\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"INVOICE_RECEIPT_ID\",\n                        \"Confidence\": 99.96524047851562\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"050100035279\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14493916928768158,\n                                \"Height\": 0.017465420067310333,\n                                \"Left\": 0.5893911123275757,\n                                \"Top\": 0.4660434126853943\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5893911123275757,\n                                \"Y\": 0.4660496115684509\n                            }, {\n                                \"X\": 0.7342691421508789,\n                                \"Y\": 0.4660434126853943\n                            }, {\n                                \"X\": 0.7343302965164185,\n                                \"Y\": 0.48350122570991516\n                            }, {\n                                \"X\": 0.5894438028335571,\n                                \"Y\": 0.4835088551044464\n                            }]\n                        },\n                        \"Confidence\": 99.94385528564453\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"SUBTOTAL\",\n                        \"Confidence\": 93.25130462646484\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"TOTAL AMT\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11353254318237305,\n                                \"Height\": 0.017378397285938263,\n                                \"Left\": 0.2508242130279541,\n                                \"Top\": 0.6908265948295593\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2508242130279541,\n                                \"Y\": 0.690845787525177\n                            }, {\n                                \"X\": 0.3643174171447754,\n                                \"Y\": 0.6908265948295593\n                            }, {\n                                \"X\": 0.36435675621032715,\n                                \"Y\": 0.7081847190856934\n                            }, {\n                                \"X\": 0.2508569657802582,\n                                \"Y\": 0.708204984664917\n                            }]\n                        },\n                        \"Confidence\": 93.22447204589844\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"60.31\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06093522161245346,\n                                \"Height\": 0.016794197261333466,\n                                \"Left\": 0.6376571655273438,\n                                \"Top\": 0.6897315382957458\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6376571655273438,\n                                \"Y\": 0.6897417902946472\n                            }, {\n                                \"X\": 0.6985356211662292,\n                                \"Y\": 0.6897315382957458\n                            }, {\n                                \"X\": 0.6985923647880554,\n                                \"Y\": 0.7065148949623108\n                            }, {\n                                \"X\": 0.637710452079773,\n                                \"Y\": 0.7065257430076599\n                            }]\n                        },\n                        \"Confidence\": 93.2383804321289\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 96.76051330566406\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"RM 60.30\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1468435674905777,\n                                \"Height\": 0.017741771414875984,\n                                \"Left\": 0.5532974004745483,\n                                \"Top\": 0.764033854007721\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5532974004745483,\n                                \"Y\": 0.7640646696090698\n                            }, {\n                                \"X\": 0.7000809907913208,\n                                \"Y\": 0.764033854007721\n                            }, {\n                                \"X\": 0.7001409530639648,\n                                \"Y\": 0.7817432880401611\n                            }, {\n                                \"X\": 0.5533486604690552,\n                                \"Y\": 0.7817755937576294\n                            }]\n                        },\n                        \"Confidence\": 96.67892456054688\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_ADDRESS\",\n                        \"Confidence\": 99.99990844726562\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"INDAH GIFT & HOME DECO\\n27, JALAN DEDAP 13,\\nTAMAN JOHOR JAYA,\\n81100 JOHOR BAHRU,JOHOR.\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.28639349341392517,\n                                \"Height\": 0.09593969583511353,\n                                \"Left\": 0.34769922494888306,\n                                \"Top\": 0.16610325872898102\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.34769922494888306,\n                                \"Y\": 0.16610325872898102\n                            }, {\n                                \"X\": 0.6337887644767761,\n                                \"Y\": 0.16613925993442535\n                            }, {\n                                \"X\": 0.6340926885604858,\n                                \"Y\": 0.26204296946525574\n                            }, {\n                                \"X\": 0.3479115664958954,\n                                \"Y\": 0.26202237606048584\n                            }]\n                        },\n                        \"Confidence\": 99.60453033447266\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_NAME\",\n                        \"Confidence\": 99.99982452392578\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"INDAH GIFT & HOME DECO\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.26582497358322144,\n                                \"Height\": 0.017798982560634613,\n                                \"Left\": 0.3607308566570282,\n                                \"Top\": 0.16594044864177704\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3607308566570282,\n                                \"Y\": 0.16594044864177704\n                            }, {\n                                \"X\": 0.6264999508857727,\n                                \"Y\": 0.16597391664981842\n                            }, {\n                                \"X\": 0.6265558004379272,\n                                \"Y\": 0.18373943865299225\n                            }, {\n                                \"X\": 0.36077097058296204,\n                                \"Y\": 0.18370862305164337\n                            }]\n                        },\n                        \"Confidence\": 99.97840881347656\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_NAME\",\n                        \"Confidence\": 79.0044174194336\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"tan woon yann\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.31802693009376526,\n                                \"Height\": 0.032477978616952896,\n                                \"Left\": 0.3158113658428192,\n                                \"Top\": 0.050772618502378464\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3158113658428192,\n                                \"Y\": 0.050772618502378464\n                            }, {\n                                \"X\": 0.6337355375289917,\n                                \"Y\": 0.05083322897553444\n                            }, {\n                                \"X\": 0.6338382959365845,\n                                \"Y\": 0.08325059711933136\n                            }, {\n                                \"X\": 0.3158797323703766,\n                                \"Y\": 0.0831957757472992\n                            }]\n                        },\n                        \"Confidence\": 78.99870300292969\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_PHONE\",\n                        \"Confidence\": 99.87358093261719\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Tel:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05012384057044983,\n                                \"Height\": 0.01857314258813858,\n                                \"Left\": 0.31111085414886475,\n                                \"Top\": 0.265388548374176\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.31111085414886475,\n                                \"Y\": 0.265388548374176\n                            }, {\n                                \"X\": 0.3611927628517151,\n                                \"Y\": 0.2653920650482178\n                            }, {\n                                \"X\": 0.3612346947193146,\n                                \"Y\": 0.2839617133140564\n                            }, {\n                                \"X\": 0.3111496865749359,\n                                \"Y\": 0.2839587330818176\n                            }]\n                        },\n                        \"Confidence\": 98.07411193847656\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"07-3507405\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1214829534292221,\n                                \"Height\": 0.01829722337424755,\n                                \"Left\": 0.3600615859031677,\n                                \"Top\": 0.26567164063453674\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3600615859031677,\n                                \"Y\": 0.26567164063453674\n                            }, {\n                                \"X\": 0.4814958870410919,\n                                \"Y\": 0.26568013429641724\n                            }, {\n                                \"X\": 0.481544554233551,\n                                \"Y\": 0.28396886587142944\n                            }, {\n                                \"X\": 0.3601028323173523,\n                                \"Y\": 0.28396162390708923\n                            }]\n                        },\n                        \"Confidence\": 98.07411193847656\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.98446655273438\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Fax:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04900171235203743,\n                                \"Height\": 0.017954494804143906,\n                                \"Left\": 0.5045392513275146,\n                                \"Top\": 0.2654048502445221\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5045392513275146,\n                                \"Y\": 0.2654048502445221\n                            }, {\n                                \"X\": 0.5534889101982117,\n                                \"Y\": 0.2654082775115967\n                            }, {\n                                \"X\": 0.5535409450531006,\n                                \"Y\": 0.2833593487739563\n                            }, {\n                                \"X\": 0.5045883655548096,\n                                \"Y\": 0.2833563983440399\n                            }]\n                        },\n                        \"Confidence\": 99.94305419921875\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"07-3558160\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12177389115095139,\n                                \"Height\": 0.017793625593185425,\n                                \"Left\": 0.5523987412452698,\n                                \"Top\": 0.2655729353427887\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.5523987412452698,\n                                \"Y\": 0.2655729353427887\n                            }, {\n                                \"X\": 0.6741138696670532,\n                                \"Y\": 0.2655814588069916\n                            }, {\n                                \"X\": 0.6741726398468018,\n                                \"Y\": 0.2833665609359741\n                            }, {\n                                \"X\": 0.5524502992630005,\n                                \"Y\": 0.28335925936698914\n                            }]\n                        },\n                        \"Confidence\": 99.94305419921875\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.99039459228516\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Cashier:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09482015669345856,\n                                \"Height\": 0.01741696149110794,\n                                \"Left\": 0.25031790137290955,\n                                \"Top\": 0.39265188574790955\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25031790137290955,\n                                \"Y\": 0.3926520347595215\n                            }, {\n                                \"X\": 0.34509968757629395,\n                                \"Y\": 0.39265188574790955\n                            }, {\n                                \"X\": 0.3451380729675293,\n                                \"Y\": 0.4100677967071533\n                            }, {\n                                \"X\": 0.2503507733345032,\n                                \"Y\": 0.4100688695907593\n                            }]\n                        },\n                        \"Confidence\": 99.97691345214844\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"CN\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025719860568642616,\n                                \"Height\": 0.017145739868283272,\n                                \"Left\": 0.3600063920021057,\n                                \"Top\": 0.3926476836204529\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.3600063920021057,\n                                \"Y\": 0.39264771342277527\n                            }, {\n                                \"X\": 0.38568612933158875,\n                                \"Y\": 0.3926476836204529\n                            }, {\n                                \"X\": 0.3857262432575226,\n                                \"Y\": 0.4097931385040283\n                            }, {\n                                \"X\": 0.36004501581192017,\n                                \"Y\": 0.4097934067249298\n                            }]\n                        },\n                        \"Confidence\": 99.98231506347656\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.61225128173828\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Location/SP:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14301148056983948,\n                                \"Height\": 0.01735694892704487,\n                                \"Left\": 0.45572221279144287,\n                                \"Top\": 0.39178362488746643\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.45572221279144287,\n                                \"Y\": 0.39178377389907837\n                            }, {\n                                \"X\": 0.5986807346343994,\n                                \"Y\": 0.39178362488746643\n                            }, {\n                                \"X\": 0.59873366355896,\n                                \"Y\": 0.4091390371322632\n                            }, {\n                                \"X\": 0.45576685667037964,\n                                \"Y\": 0.40914058685302734\n                            }]\n                        },\n                        \"Confidence\": 99.6263427734375\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"05 /0531\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10913955420255661,\n                                \"Height\": 0.017392177134752274,\n                                \"Left\": 0.6125463247299194,\n                                \"Top\": 0.39136767387390137\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6125463247299194,\n                                \"Y\": 0.39136776328086853\n                            }, {\n                                \"X\": 0.7216256856918335,\n                                \"Y\": 0.39136767387390137\n                            }, {\n                                \"X\": 0.7216858863830566,\n                                \"Y\": 0.4087586998939514\n                            }, {\n                                \"X\": 0.6126001477241516,\n                                \"Y\": 0.40875986218452454\n                            }]\n                        },\n                        \"Confidence\": 99.6235580444336\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.99703216552734\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"MB:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03541328385472298,\n                                \"Height\": 0.017078561708331108,\n                                \"Left\": 0.25072765350341797,\n                                \"Top\": 0.44321006536483765\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25072765350341797,\n                                \"Y\": 0.4432111084461212\n                            }, {\n                                \"X\": 0.286106675863266,\n                                \"Y\": 0.44321006536483765\n                            }, {\n                                \"X\": 0.28614091873168945,\n                                \"Y\": 0.4602872133255005\n                            }, {\n                                \"X\": 0.25075989961624146,\n                                \"Y\": 0.4602886140346527\n                            }]\n                        },\n                        \"Confidence\": 99.97039031982422\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"M026588\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08690156787633896,\n                                \"Height\": 0.01752377860248089,\n                                \"Left\": 0.29879817366600037,\n                                \"Top\": 0.4426301121711731\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.29879817366600037,\n                                \"Y\": 0.44263267517089844\n                            }, {\n                                \"X\": 0.38565877079963684,\n                                \"Y\": 0.4426301121711731\n                            }, {\n                                \"X\": 0.3856997489929199,\n                                \"Y\": 0.46015048027038574\n                            }, {\n                                \"X\": 0.29883408546447754,\n                                \"Y\": 0.4601539075374603\n                            }]\n                        },\n                        \"Confidence\": 99.99552154541016\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.99968719482422\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Room No:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09504380077123642,\n                                \"Height\": 0.017122771590948105,\n                                \"Left\": 0.2506311535835266,\n                                \"Top\": 0.46765077114105225\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2506311535835266,\n                                \"Y\": 0.46765491366386414\n                            }, {\n                                \"X\": 0.3456372022628784,\n                                \"Y\": 0.46765077114105225\n                            }, {\n                                \"X\": 0.34567496180534363,\n                                \"Y\": 0.48476848006248474\n                            }, {\n                                \"X\": 0.2506634593009949,\n                                \"Y\": 0.48477354645729065\n                            }]\n                        },\n                        \"Confidence\": 99.99099731445312\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.023561764508485794,\n                                \"Height\": 0.016964413225650787,\n                                \"Left\": 0.35983118414878845,\n                                \"Top\": 0.46743497252464294\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.35983118414878845,\n                                \"Y\": 0.4674359858036041\n                            }, {\n                                \"X\": 0.38335341215133667,\n                                \"Y\": 0.46743497252464294\n                            }, {\n                                \"X\": 0.38339295983314514,\n                                \"Y\": 0.48439812660217285\n                            }, {\n                                \"X\": 0.3598693907260895,\n                                \"Y\": 0.48439937829971313\n                            }]\n                        },\n                        \"Confidence\": 99.97827911376953\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.99964141845703\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"#Total Qty\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12191741913557053,\n                                \"Height\": 0.020711064338684082,\n                                \"Left\": 0.2517908811569214,\n                                \"Top\": 0.6659155488014221\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2517908811569214,\n                                \"Y\": 0.6659344434738159\n                            }, {\n                                \"X\": 0.37366077303886414,\n                                \"Y\": 0.6659155488014221\n                            }, {\n                                \"X\": 0.3737083077430725,\n                                \"Y\": 0.6866062879562378\n                            }, {\n                                \"X\": 0.25182998180389404,\n                                \"Y\": 0.6866266131401062\n                            }]\n                        },\n                        \"Confidence\": 99.97974395751953\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"2\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.013657157309353352,\n                                \"Height\": 0.016143599525094032,\n                                \"Left\": 0.4325164258480072,\n                                \"Top\": 0.6657860279083252\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.4325164258480072,\n                                \"Y\": 0.6657881736755371\n                            }, {\n                                \"X\": 0.446132630109787,\n                                \"Y\": 0.6657860279083252\n                            }, {\n                                \"X\": 0.44617360830307007,\n                                \"Y\": 0.6819273829460144\n                            }, {\n                                \"X\": 0.432556688785553,\n                                \"Y\": 0.6819296479225159\n                            }]\n                        },\n                        \"Confidence\": 99.92164611816406\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.99932098388672\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"ROUNDING ADJ\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14503222703933716,\n                                \"Height\": 0.01742321066558361,\n                                \"Left\": 0.2518911063671112,\n                                \"Top\": 0.7155080437660217\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.2518911063671112,\n                                \"Y\": 0.7155345678329468\n                            }, {\n                                \"X\": 0.396882027387619,\n                                \"Y\": 0.7155080437660217\n                            }, {\n                                \"X\": 0.39692333340644836,\n                                \"Y\": 0.7329033017158508\n                            }, {\n                                \"X\": 0.25192397832870483,\n                                \"Y\": 0.7329312562942505\n                            }]\n                        },\n                        \"Confidence\": 99.9827880859375\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"-0.01\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.059248849749565125,\n                                \"Height\": 0.016863474622368813,\n                                \"Left\": 0.6389912962913513,\n                                \"Top\": 0.7146620154380798\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6389912962913513,\n                                \"Y\": 0.7146728038787842\n                            }, {\n                                \"X\": 0.6981832385063171,\n                                \"Y\": 0.7146620154380798\n                            }, {\n                                \"X\": 0.6982401609420776,\n                                \"Y\": 0.7315141558647156\n                            }, {\n                                \"X\": 0.6390449404716492,\n                                \"Y\": 0.7315254807472229\n                            }]\n                        },\n                        \"Confidence\": 99.96137237548828\n                    },\n                    \"PageNumber\": 32\n                }, {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 99.71342468261719\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"CHANGE RM\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.32735195755958557,\n                                \"Height\": 0.017516974359750748,\n                                \"Left\": 0.25108644366264343,\n                                \"Top\": 0.8133725523948669\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.25108644366264343,\n                                \"Y\": 0.8134504556655884\n                            }, {\n                                \"X\": 0.5783864855766296,\n                                \"Y\": 0.8133725523948669\n                            }, {\n                                \"X\": 0.578438401222229,\n                                \"Y\": 0.8308084607124329\n                            }, {\n                                \"X\": 0.25111937522888184,\n                                \"Y\": 0.8308895230293274\n                            }]\n                        },\n                        \"Confidence\": 99.67089080810547\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"10.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06126084923744202,\n                                \"Height\": 0.016980789601802826,\n                                \"Left\": 0.6385951042175293,\n                                \"Top\": 0.8130738139152527\n                            },\n                            \"Polygon\": [{\n                                \"X\": 0.6385951042175293,\n                                \"Y\": 0.8130883574485779\n                            }, {\n                                \"X\": 0.699798583984375,\n                                \"Y\": 0.8130738139152527\n                            }, {\n                                \"X\": 0.6998559236526489,\n                                \"Y\": 0.8300394415855408\n                            }, {\n                                \"X\": 0.638649046421051,\n                                \"Y\": 0.8300545811653137\n                            }]\n                        },\n                        \"Confidence\": 99.66319274902344\n                    },\n                    \"PageNumber\": 32\n                }],\n                \"LineItemGroups\": [{\n                    \"LineItemGroupIndex\": 1,\n                    \"LineItems\": [{\n                        \"LineItemExpenseFields\": [{\n                            \"Type\": {\n                                \"Text\": \"PRODUCT_CODE\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Desc/Item\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.10954330861568451,\n                                        \"Height\": 0.016777239739894867,\n                                        \"Left\": 0.25197717547416687,\n                                        \"Top\": 0.5176774263381958\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25197717547416687,\n                                        \"Y\": 0.5176852345466614\n                                    }, {\n                                        \"X\": 0.3614826500415802,\n                                        \"Y\": 0.5176774263381958\n                                    }, {\n                                        \"X\": 0.3615204989910126,\n                                        \"Y\": 0.5344457626342773\n                                    }, {\n                                        \"X\": 0.25200891494750977,\n                                        \"Y\": 0.5344546437263489\n                                    }]\n                                },\n                                \"Confidence\": 0.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"88888\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06167030707001686,\n                                        \"Height\": 0.017127014696598053,\n                                        \"Left\": 0.2513185441493988,\n                                        \"Top\": 0.5669071674346924\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.2513185441493988,\n                                        \"Y\": 0.5669133067131042\n                                    }, {\n                                        \"X\": 0.3129529654979706,\n                                        \"Y\": 0.5669071674346924\n                                    }, {\n                                        \"X\": 0.31298884749412537,\n                                        \"Y\": 0.5840274691581726\n                                    }, {\n                                        \"X\": 0.25135087966918945,\n                                        \"Y\": 0.5840342044830322\n                                    }]\n                                },\n                                \"Confidence\": 92.92282104492188\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"QUANTITY\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Qty\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.03685842454433441,\n                                        \"Height\": 0.01935378648340702,\n                                        \"Left\": 0.45735400915145874,\n                                        \"Top\": 0.5162450671195984\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.45735400915145874,\n                                        \"Y\": 0.5162476301193237\n                                    }, {\n                                        \"X\": 0.49416017532348633,\n                                        \"Y\": 0.5162450671195984\n                                    }, {\n                                        \"X\": 0.49421241879463196,\n                                        \"Y\": 0.5355958342552185\n                                    }, {\n                                        \"X\": 0.45740386843681335,\n                                        \"Y\": 0.5355988144874573\n                                    }]\n                                },\n                                \"Confidence\": 100.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"1\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.014887116849422455,\n                                        \"Height\": 0.016485650092363358,\n                                        \"Left\": 0.47942063212394714,\n                                        \"Top\": 0.5657108426094055\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.47942063212394714,\n                                        \"Y\": 0.5657123327255249\n                                    }, {\n                                        \"X\": 0.494263231754303,\n                                        \"Y\": 0.5657108426094055\n                                    }, {\n                                        \"X\": 0.4943077266216278,\n                                        \"Y\": 0.5821948647499084\n                                    }, {\n                                        \"X\": 0.4794643223285675,\n                                        \"Y\": 0.5821964740753174\n                                    }]\n                                },\n                                \"Confidence\": 99.73857116699219\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"UNIT_PRICE\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Price\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06065632030367851,\n                                        \"Height\": 0.016928786411881447,\n                                        \"Left\": 0.5294767618179321,\n                                        \"Top\": 0.5163171887397766\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.5294767618179321,\n                                        \"Y\": 0.5163214802742004\n                                    }, {\n                                        \"X\": 0.5900819897651672,\n                                        \"Y\": 0.5163171887397766\n                                    }, {\n                                        \"X\": 0.5901330709457397,\n                                        \"Y\": 0.5332410931587219\n                                    }, {\n                                        \"X\": 0.5295244455337524,\n                                        \"Y\": 0.5332459807395935\n                                    }]\n                                },\n                                \"Confidence\": 99.99586486816406\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"10.00\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06058246269822121,\n                                        \"Height\": 0.01748691312968731,\n                                        \"Left\": 0.5304422974586487,\n                                        \"Top\": 0.5650264620780945\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.5304422974586487,\n                                        \"Y\": 0.565032422542572\n                                    }, {\n                                        \"X\": 0.5909719467163086,\n                                        \"Y\": 0.5650264620780945\n                                    }, {\n                                        \"X\": 0.5910247564315796,\n                                        \"Y\": 0.5825068354606628\n                                    }, {\n                                        \"X\": 0.5304916501045227,\n                                        \"Y\": 0.5825133919715881\n                                    }]\n                                },\n                                \"Confidence\": 99.93584442138672\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"PRICE\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Amt/RM)\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.08220645040273666,\n                                        \"Height\": 0.017602261155843735,\n                                        \"Left\": 0.6148660182952881,\n                                        \"Top\": 0.5162043571472168\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.6148660182952881,\n                                        \"Y\": 0.5162101984024048\n                                    }, {\n                                        \"X\": 0.6970130801200867,\n                                        \"Y\": 0.5162043571472168\n                                    }, {\n                                        \"X\": 0.6970725059509277,\n                                        \"Y\": 0.533799946308136\n                                    }, {\n                                        \"X\": 0.6149206161499023,\n                                        \"Y\": 0.5338066220283508\n                                    }]\n                                },\n                                \"Confidence\": 99.99995422363281\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"10.00\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06131286174058914,\n                                        \"Height\": 0.01686437800526619,\n                                        \"Left\": 0.6386710405349731,\n                                        \"Top\": 0.5650157332420349\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.6386710405349731,\n                                        \"Y\": 0.5650217533111572\n                                    }, {\n                                        \"X\": 0.6999268531799316,\n                                        \"Y\": 0.5650157332420349\n                                    }, {\n                                        \"X\": 0.6999839544296265,\n                                        \"Y\": 0.5818735361099243\n                                    }, {\n                                        \"X\": 0.638724684715271,\n                                        \"Y\": 0.5818801522254944\n                                    }]\n                                },\n                                \"Confidence\": 99.98426818847656\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"ITEM\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Desc/Item\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.10954330861568451,\n                                        \"Height\": 0.016777239739894867,\n                                        \"Left\": 0.25197717547416687,\n                                        \"Top\": 0.5176774263381958\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25197717547416687,\n                                        \"Y\": 0.5176852345466614\n                                    }, {\n                                        \"X\": 0.3614826500415802,\n                                        \"Y\": 0.5176774263381958\n                                    }, {\n                                        \"X\": 0.3615204989910126,\n                                        \"Y\": 0.5344457626342773\n                                    }, {\n                                        \"X\": 0.25200891494750977,\n                                        \"Y\": 0.5344546437263489\n                                    }]\n                                },\n                                \"Confidence\": 0.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"ST-PRIVILEGE CARD/GD INDAH\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.316614031791687,\n                                        \"Height\": 0.018574761226773262,\n                                        \"Left\": 0.2509540319442749,\n                                        \"Top\": 0.5406639575958252\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.2509540319442749,\n                                        \"Y\": 0.5406907200813293\n                                    }, {\n                                        \"X\": 0.5675134658813477,\n                                        \"Y\": 0.5406639575958252\n                                    }, {\n                                        \"X\": 0.5675680637359619,\n                                        \"Y\": 0.5592085719108582\n                                    }, {\n                                        \"X\": 0.25098904967308044,\n                                        \"Y\": 0.5592386722564697\n                                    }]\n                                },\n                                \"Confidence\": 99.82390594482422\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"EXPENSE_ROW\",\n                                \"Confidence\": 70.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"ST-PRIVILEGE CARD/GD INDAH\\n88888 1 10.00 10.00\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.44921407103538513,\n                                        \"Height\": 0.04338150471448898,\n                                        \"Left\": 0.250777006149292,\n                                        \"Top\": 0.5406527519226074\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.250777006149292,\n                                        \"Y\": 0.5406907796859741\n                                    }, {\n                                        \"X\": 0.6998443603515625,\n                                        \"Y\": 0.5406527519226074\n                                    }, {\n                                        \"X\": 0.6999910473823547,\n                                        \"Y\": 0.5839852690696716\n                                    }, {\n                                        \"X\": 0.2508588135242462,\n                                        \"Y\": 0.584034264087677\n                                    }]\n                                },\n                                \"Confidence\": 99.8751220703125\n                            },\n                            \"PageNumber\": 32\n                        }]\n                    }, {\n                        \"LineItemExpenseFields\": [{\n                            \"Type\": {\n                                \"Text\": \"PRODUCT_CODE\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Desc/Item\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.10954330861568451,\n                                        \"Height\": 0.016777239739894867,\n                                        \"Left\": 0.25197717547416687,\n                                        \"Top\": 0.5176774263381958\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25197717547416687,\n                                        \"Y\": 0.5176852345466614\n                                    }, {\n                                        \"X\": 0.3614826500415802,\n                                        \"Y\": 0.5176774263381958\n                                    }, {\n                                        \"X\": 0.3615204989910126,\n                                        \"Y\": 0.5344457626342773\n                                    }, {\n                                        \"X\": 0.25200891494750977,\n                                        \"Y\": 0.5344546437263489\n                                    }]\n                                },\n                                \"Confidence\": 0.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"62483\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.0612325556576252,\n                                        \"Height\": 0.01744413562119007,\n                                        \"Left\": 0.25156641006469727,\n                                        \"Top\": 0.6159970760345459\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25156641006469727,\n                                        \"Y\": 0.6160048246383667\n                                    }, {\n                                        \"X\": 0.31276243925094604,\n                                        \"Y\": 0.6159970760345459\n                                    }, {\n                                        \"X\": 0.31279894709587097,\n                                        \"Y\": 0.6334328055381775\n                                    }, {\n                                        \"X\": 0.25159934163093567,\n                                        \"Y\": 0.6334412097930908\n                                    }]\n                                },\n                                \"Confidence\": 92.90692901611328\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"QUANTITY\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Qty\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.03685842454433441,\n                                        \"Height\": 0.01935378648340702,\n                                        \"Left\": 0.45735400915145874,\n                                        \"Top\": 0.5162450671195984\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.45735400915145874,\n                                        \"Y\": 0.5162476301193237\n                                    }, {\n                                        \"X\": 0.49416017532348633,\n                                        \"Y\": 0.5162450671195984\n                                    }, {\n                                        \"X\": 0.49421241879463196,\n                                        \"Y\": 0.5355958342552185\n                                    }, {\n                                        \"X\": 0.45740386843681335,\n                                        \"Y\": 0.5355988144874573\n                                    }]\n                                },\n                                \"Confidence\": 100.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"1\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.01572706364095211,\n                                        \"Height\": 0.01684899628162384,\n                                        \"Left\": 0.4793796241283417,\n                                        \"Top\": 0.6149700880050659\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.4793796241283417,\n                                        \"Y\": 0.6149720549583435\n                                    }, {\n                                        \"X\": 0.49506115913391113,\n                                        \"Y\": 0.6149700880050659\n                                    }, {\n                                        \"X\": 0.49510666728019714,\n                                        \"Y\": 0.6318169832229614\n                                    }, {\n                                        \"X\": 0.47942423820495605,\n                                        \"Y\": 0.6318190693855286\n                                    }]\n                                },\n                                \"Confidence\": 99.21053314208984\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"UNIT_PRICE\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Price\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06065632030367851,\n                                        \"Height\": 0.016928786411881447,\n                                        \"Left\": 0.5294767618179321,\n                                        \"Top\": 0.5163171887397766\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.5294767618179321,\n                                        \"Y\": 0.5163214802742004\n                                    }, {\n                                        \"X\": 0.5900819897651672,\n                                        \"Y\": 0.5163171887397766\n                                    }, {\n                                        \"X\": 0.5901330709457397,\n                                        \"Y\": 0.5332410931587219\n                                    }, {\n                                        \"X\": 0.5295244455337524,\n                                        \"Y\": 0.5332459807395935\n                                    }]\n                                },\n                                \"Confidence\": 99.99586486816406\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"55.90\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06150044873356819,\n                                        \"Height\": 0.017684035003185272,\n                                        \"Left\": 0.5294341444969177,\n                                        \"Top\": 0.6146069169044495\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.5294341444969177,\n                                        \"Y\": 0.614614725112915\n                                    }, {\n                                        \"X\": 0.5908811688423157,\n                                        \"Y\": 0.6146069169044495\n                                    }, {\n                                        \"X\": 0.5909345746040344,\n                                        \"Y\": 0.6322826147079468\n                                    }, {\n                                        \"X\": 0.5294839143753052,\n                                        \"Y\": 0.6322909593582153\n                                    }]\n                                },\n                                \"Confidence\": 99.97722625732422\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"PRICE\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Amt/RM)\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.08220645040273666,\n                                        \"Height\": 0.017602261155843735,\n                                        \"Left\": 0.6148660182952881,\n                                        \"Top\": 0.5162043571472168\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.6148660182952881,\n                                        \"Y\": 0.5162101984024048\n                                    }, {\n                                        \"X\": 0.6970130801200867,\n                                        \"Y\": 0.5162043571472168\n                                    }, {\n                                        \"X\": 0.6970725059509277,\n                                        \"Y\": 0.533799946308136\n                                    }, {\n                                        \"X\": 0.6149206161499023,\n                                        \"Y\": 0.5338066220283508\n                                    }]\n                                },\n                                \"Confidence\": 99.99995422363281\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"55.90\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.06237590312957764,\n                                        \"Height\": 0.016842728480696678,\n                                        \"Left\": 0.6371716856956482,\n                                        \"Top\": 0.6145108938217163\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.6371716856956482,\n                                        \"Y\": 0.6145187616348267\n                                    }, {\n                                        \"X\": 0.6994906067848206,\n                                        \"Y\": 0.6145108938217163\n                                    }, {\n                                        \"X\": 0.6995475888252258,\n                                        \"Y\": 0.6313451528549194\n                                    }, {\n                                        \"X\": 0.6372251510620117,\n                                        \"Y\": 0.6313536167144775\n                                    }]\n                                },\n                                \"Confidence\": 99.98410034179688\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"ITEM\",\n                                \"Confidence\": 70.0\n                            },\n                            \"LabelDetection\": {\n                                \"Text\": \"Desc/Item\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.10954330861568451,\n                                        \"Height\": 0.016777239739894867,\n                                        \"Left\": 0.25197717547416687,\n                                        \"Top\": 0.5176774263381958\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25197717547416687,\n                                        \"Y\": 0.5176852345466614\n                                    }, {\n                                        \"X\": 0.3614826500415802,\n                                        \"Y\": 0.5176774263381958\n                                    }, {\n                                        \"X\": 0.3615204989910126,\n                                        \"Y\": 0.5344457626342773\n                                    }, {\n                                        \"X\": 0.25200891494750977,\n                                        \"Y\": 0.5344546437263489\n                                    }]\n                                },\n                                \"Confidence\": 0.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"GF-TABLE LAMP/STITCH (i)\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.2920342981815338,\n                                        \"Height\": 0.01861339434981346,\n                                        \"Left\": 0.25095734000205994,\n                                        \"Top\": 0.5898697376251221\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25095734000205994,\n                                        \"Y\": 0.5899025201797485\n                                    }, {\n                                        \"X\": 0.5429384708404541,\n                                        \"Y\": 0.5898697376251221\n                                    }, {\n                                        \"X\": 0.5429916381835938,\n                                        \"Y\": 0.608447253704071\n                                    }, {\n                                        \"X\": 0.25099241733551025,\n                                        \"Y\": 0.6084831357002258\n                                    }]\n                                },\n                                \"Confidence\": 99.9021987915039\n                            },\n                            \"PageNumber\": 32\n                        }, {\n                            \"Type\": {\n                                \"Text\": \"EXPENSE_ROW\",\n                                \"Confidence\": 70.0\n                            },\n                            \"ValueDetection\": {\n                                \"Text\": \"GF-TABLE LAMP/STITCH (i)\\n62483 1 55.90 55.90\\n@DISC 10.00% -5.59\",\n                                \"Geometry\": {\n                                    \"BoundingBox\": {\n                                        \"Width\": 0.4486789107322693,\n                                        \"Height\": 0.06775949895381927,\n                                        \"Left\": 0.25095734000205994,\n                                        \"Top\": 0.5898521542549133\n                                    },\n                                    \"Polygon\": [{\n                                        \"X\": 0.25095734000205994,\n                                        \"Y\": 0.5899025201797485\n                                    }, {\n                                        \"X\": 0.699407160282135,\n                                        \"Y\": 0.5898521542549133\n                                    }, {\n                                        \"X\": 0.6996362209320068,\n                                        \"Y\": 0.6575441956520081\n                                    }, {\n                                        \"X\": 0.25108516216278076,\n                                        \"Y\": 0.6576116681098938\n                                    }]\n                                },\n                                \"Confidence\": 99.88056945800781\n                            },\n                            \"PageNumber\": 32\n                        }]\n                    }]\n                }]\n            }\n        }]\n    }],\n    \"AnalyzeLendingModelVersion\": \"1.0\",\n    \"ResponseMetadata\": {\n        \"RequestId\": \"cb8101cc-33bd-4ef4-baa6-4acdb5688434\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"x-amzn-requestid\": \"cb8101cc-33bd-4ef4-baa6-4acdb5688434\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"562151\",\n            \"date\": \"Fri, 09 Dec 2022 05:35:49 GMT\"\n        },\n        \"RetryAttempts\": 0\n    }\n}\n"
  },
  {
    "path": "src-python/tests/data/lending-package-no-signature.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 7}, \"JobStatus\": \"SUCCEEDED\", \"Results\": [{\"Page\": 1, \"PageClassification\": {\"PageType\": [{\"Value\": \"PAYSLIPS\", \"Confidence\": 99.84959411621094}], \"PageNumber\": [{\"Value\": \"undetected\", \"Confidence\": 100.0}]}, \"Extractions\": [{\"LendingDocument\": {\"LendingFields\": [{\"Type\": \"PAY_PERIOD_START_DATE\", \"ValueDetections\": []}, {\"Type\": \"PAY_PERIOD_END_DATE\", \"ValueDetections\": [{\"Text\": \"7/18/2008\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07342242449522018, \"Height\": 0.009813770651817322, \"Left\": 0.7493308186531067, \"Top\": 0.24268266558647156}, \"Polygon\": [{\"X\": 0.7493358254432678, \"Y\": 0.24268266558647156}, {\"X\": 0.8227532505989075, \"Y\": 0.24279442429542542}, {\"X\": 0.8227487802505493, \"Y\": 0.2524964213371277}, {\"X\": 0.7493308186531067, \"Y\": 0.2523847818374634}]}, \"Confidence\": 99.0}]}, {\"Type\": \"PAY_DATE\", \"ValueDetections\": [{\"Text\": \"7/25/2008\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07180937379598618, \"Height\": 0.009240644983947277, \"Left\": 0.7501305341720581, \"Top\": 0.2569517493247986}, \"Polygon\": [{\"X\": 0.7501352429389954, \"Y\": 0.2569517493247986}, {\"X\": 0.8219399452209473, \"Y\": 0.2570609152317047}, {\"X\": 0.8219357132911682, \"Y\": 0.26619240641593933}, {\"X\": 0.7501305341720581, \"Y\": 0.26608335971832275}]}, \"Confidence\": 98.0}]}, {\"Type\": \"BORROWER_NAME\", \"ValueDetections\": [{\"Text\": \"JOHN STILES\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1081274226307869, \"Height\": 0.009866639971733093, \"Left\": 0.5790428519248962, \"Top\": 0.31605130434036255}, \"Polygon\": [{\"X\": 0.5790491700172424, \"Y\": 0.31605130434036255}, {\"X\": 0.6871702671051025, \"Y\": 0.31621456146240234}, {\"X\": 0.6871647834777832, \"Y\": 0.32591792941093445}, {\"X\": 0.5790428519248962, \"Y\": 0.325754851102829}]}, \"Confidence\": 99.0}]}, {\"Type\": \"BORROWER_ADDRESS\", \"ValueDetections\": [{\"Text\": \"101 MAIN STREET ANYTOWN, USA 12345\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1985064595937729, \"Height\": 0.025985153391957283, \"Left\": 0.5790253281593323, \"Top\": 0.32689642906188965}, \"Polygon\": [{\"X\": 0.5790421366691589, \"Y\": 0.32689642906188965}, {\"X\": 0.7775318026542664, \"Y\": 0.32719582319259644}, {\"X\": 0.7775191068649292, \"Y\": 0.3528815805912018}, {\"X\": 0.5790253281593323, \"Y\": 0.35258305072784424}]}, \"Confidence\": 92.0}]}, {\"Type\": \"COMPANY_NAME\", \"ValueDetections\": [{\"Text\": \"ANY COMPANY CORP.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16462458670139313, \"Height\": 0.010524165816605091, \"Left\": 0.15627160668373108, \"Top\": 0.24292130768299103}, \"Polygon\": [{\"X\": 0.15628181397914886, \"Y\": 0.24292130768299103}, {\"X\": 0.320896178483963, \"Y\": 0.24317190051078796}, {\"X\": 0.32088735699653625, \"Y\": 0.25344547629356384}, {\"X\": 0.15627160668373108, \"Y\": 0.2531951665878296}]}, \"Confidence\": 98.0}]}, {\"Type\": \"COMPANY_ADDRESS\", \"ValueDetections\": [{\"Text\": \"475 ANY AVENUE ANYTOWN, USA 10101\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16302695870399475, \"Height\": 0.02479105442762375, \"Left\": 0.15624211728572845, \"Top\": 0.25833216309547424}, \"Polygon\": [{\"X\": 0.1562664955854416, \"Y\": 0.25833216309547424}, {\"X\": 0.3192690908908844, \"Y\": 0.25857987999916077}, {\"X\": 0.31924790143966675, \"Y\": 0.2831232249736786}, {\"X\": 0.15624211728572845, \"Y\": 0.282876193523407}]}, \"Confidence\": 90.0}]}, {\"Type\": \"FEDERAL_FILING_STATUS\", \"ValueDetections\": [{\"Text\": \"Married\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0468108132481575, \"Height\": 0.008062156848609447, \"Left\": 0.2966133654117584, \"Top\": 0.32076218724250793}, \"Polygon\": [{\"X\": 0.2966203987598419, \"Y\": 0.32076218724250793}, {\"X\": 0.3434241712093353, \"Y\": 0.32083284854888916}, {\"X\": 0.3434174358844757, \"Y\": 0.32882434129714966}, {\"X\": 0.2966133654117584, \"Y\": 0.3287537693977356}]}, \"Confidence\": 100.0}]}, {\"Type\": \"STATE_FILING_STATUS\", \"ValueDetections\": [{\"Text\": \"2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008883985690772533, \"Height\": 0.007434557192027569, \"Left\": 0.23121799528598785, \"Top\": 0.353201687335968}, \"Polygon\": [{\"X\": 0.231224924325943, \"Y\": 0.353201687335968}, {\"X\": 0.24010197818279266, \"Y\": 0.3532150387763977}, {\"X\": 0.2400951087474823, \"Y\": 0.36063623428344727}, {\"X\": 0.23121799528598785, \"Y\": 0.36062291264533997}]}, \"Confidence\": 63.0}]}, {\"Type\": \"CURRENT_GROSS_PAY\", \"ValueDetections\": [{\"Text\": \"$ 452.43\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06376424431800842, \"Height\": 0.009800834581255913, \"Left\": 0.3537830710411072, \"Top\": 0.4687081277370453}, \"Polygon\": [{\"X\": 0.35379117727279663, \"Y\": 0.4687081277370453}, {\"X\": 0.4175473153591156, \"Y\": 0.4688027799129486}, {\"X\": 0.41753971576690674, \"Y\": 0.47850894927978516}, {\"X\": 0.3537830710411072, \"Y\": 0.4784144163131714}]}, \"Confidence\": 97.0}]}, {\"Type\": \"YTD_GROSS_PAY\", \"ValueDetections\": [{\"Text\": \"23,526.80\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06860318779945374, \"Height\": 0.00980784185230732, \"Left\": 0.46031197905540466, \"Top\": 0.46943721175193787}, \"Polygon\": [{\"X\": 0.46031925082206726, \"Y\": 0.46943721175193787}, {\"X\": 0.5289151668548584, \"Y\": 0.4695390462875366}, {\"X\": 0.5289084315299988, \"Y\": 0.47924506664276123}, {\"X\": 0.46031197905540466, \"Y\": 0.479143351316452}]}, \"Confidence\": 96.0}]}, {\"Type\": \"CURRENT_NET_PAY\", \"ValueDetections\": [{\"Text\": \"$ 291.90\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06054932624101639, \"Height\": 0.010368704795837402, \"Left\": 0.35759854316711426, \"Top\": 0.7325505614280701}, \"Polygon\": [{\"X\": 0.3576070964336395, \"Y\": 0.7325505614280701}, {\"X\": 0.41814789175987244, \"Y\": 0.7326377630233765}, {\"X\": 0.41813984513282776, \"Y\": 0.7429192662239075}, {\"X\": 0.35759854316711426, \"Y\": 0.7428321838378906}]}, \"Confidence\": 95.0}]}, {\"Type\": \"YTD_NET_PAY\", \"ValueDetections\": []}, {\"Type\": \"REGULAR_HOURLY_RATE\", \"ValueDetections\": [{\"Text\": \"10.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037940364331007004, \"Height\": 0.008620492182672024, \"Left\": 0.15610429644584656, \"Top\": 0.4130327105522156}, \"Polygon\": [{\"X\": 0.15611280500888824, \"Y\": 0.4130327105522156}, {\"X\": 0.19404464960098267, \"Y\": 0.413089394569397}, {\"X\": 0.19403640925884247, \"Y\": 0.42165321111679077}, {\"X\": 0.15610429644584656, \"Y\": 0.42159661650657654}]}, \"Confidence\": 99.0}]}, {\"Type\": \"HOLIDAY_HOURLY_RATE\", \"ValueDetections\": [{\"Text\": \"10.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.037940651178359985, \"Height\": 0.00804974976927042, \"Left\": 0.1560770720243454, \"Top\": 0.4410085082054138}, \"Polygon\": [{\"X\": 0.15608501434326172, \"Y\": 0.4410085082054138}, {\"X\": 0.19401772320270538, \"Y\": 0.4410649836063385}, {\"X\": 0.19401001930236816, \"Y\": 0.44905826449394226}, {\"X\": 0.1560770720243454, \"Y\": 0.44900181889533997}]}, \"Confidence\": 99.0}]}, {\"Type\": \"YTD_CHILD_SUPPORT\", \"ValueDetections\": []}, {\"Type\": \"YTD_GARNISHMENTS\", \"ValueDetections\": []}, {\"Type\": \"CURRENT_CHILD_SUPPORT\", \"ValueDetections\": []}, {\"Type\": \"CURRENT_GARNISHMENTS\", \"ValueDetections\": []}, {\"Type\": \"WARNINGS_MESSAGES_NOTES\", \"ValueDetections\": [{\"Text\": \"EFFECTIVE THIS PAY PERIOD YOUR REGULAR HOURLY RATE HAS BEEN CHANGED FROM $8.00 TO $10.00 PER HOUR.\", \"Confidence\": 71.0}]}, {\"Type\": \"CURRENT_REGULAR_PAY\", \"ValueDetections\": [{\"Text\": \"320\", \"Confidence\": 63.0}]}, {\"Type\": \"YTD_REGULAR_PAY\", \"ValueDetections\": [{\"Text\": \"16,640.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.066986083984375, \"Height\": 0.009805193170905113, \"Left\": 0.4619683027267456, \"Top\": 0.41291871666908264}, \"Polygon\": [{\"X\": 0.4619755446910858, \"Y\": 0.41291871666908264}, {\"X\": 0.5289543867111206, \"Y\": 0.41301876306533813}, {\"X\": 0.528947651386261, \"Y\": 0.4227239191532135}, {\"X\": 0.4619683027267456, \"Y\": 0.42262396216392517}]}, \"Confidence\": 97.0}]}]}}]}, {\"Page\": 2, \"PageClassification\": {\"PageType\": [{\"Value\": \"CHECKS\", \"Confidence\": 99.99998474121094}], \"PageNumber\": [{\"Value\": \"undetected\", \"Confidence\": 100.0}]}, \"Extractions\": [{\"LendingDocument\": {\"LendingFields\": [{\"Type\": \"CHECK_NUMBER\", \"ValueDetections\": [{\"Text\": \"0000000000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08121629059314728, \"Height\": 0.008867157623171806, \"Left\": 0.7509735822677612, \"Top\": 0.3965289294719696}, \"Polygon\": [{\"X\": 0.7509735822677612, \"Y\": 0.3965289294719696}, {\"X\": 0.832176148891449, \"Y\": 0.3966507315635681}, {\"X\": 0.8321898579597473, \"Y\": 0.40539607405662537}, {\"X\": 0.7509866952896118, \"Y\": 0.4052744507789612}]}, \"Confidence\": 95.0}]}, {\"Type\": \"DATE\", \"ValueDetections\": [{\"Text\": \"7/25/2008\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06669815629720688, \"Height\": 0.009225642308592796, \"Left\": 0.750994086265564, \"Top\": 0.41021764278411865}, \"Polygon\": [{\"X\": 0.750994086265564, \"Y\": 0.41021764278411865}, {\"X\": 0.8176780343055725, \"Y\": 0.41031742095947266}, {\"X\": 0.817692220211029, \"Y\": 0.419443279504776}, {\"X\": 0.7510077357292175, \"Y\": 0.41934362053871155}]}, \"Confidence\": 98.0}]}, {\"Type\": \"CHECK_AMOUNT_IN_WORDS\", \"ValueDetections\": [{\"Text\": \"TWO HUNDRED NINETY ONE AND 90/100 DOLLARS\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.37494784593582153, \"Height\": 0.01006187591701746, \"Left\": 0.16211281716823578, \"Top\": 0.488064169883728}, \"Polygon\": [{\"X\": 0.16211281716823578, \"Y\": 0.488064169883728}, {\"X\": 0.5370482206344604, \"Y\": 0.4886179566383362}, {\"X\": 0.5370606780052185, \"Y\": 0.4981260299682617}, {\"X\": 0.16212210059165955, \"Y\": 0.4975731074810028}]}, \"Confidence\": 56.0}]}, {\"Type\": \"DOLLAR_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$291.90\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053256966173648834, \"Height\": 0.010346338152885437, \"Left\": 0.8850228786468506, \"Top\": 0.4879910945892334}, \"Polygon\": [{\"X\": 0.8850228786468506, \"Y\": 0.4879910945892334}, {\"X\": 0.9382627606391907, \"Y\": 0.4880697429180145}, {\"X\": 0.9382798671722412, \"Y\": 0.49833741784095764}, {\"X\": 0.8850395083427429, \"Y\": 0.49825891852378845}]}, \"Confidence\": 83.0}]}, {\"Type\": \"PAYEE_NAME\", \"ValueDetections\": [{\"Text\": \"JOHN STILES\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10867863148450851, \"Height\": 0.011190748773515224, \"Left\": 0.16155700385570526, \"Top\": 0.46980661153793335}, \"Polygon\": [{\"X\": 0.16155700385570526, \"Y\": 0.46980661153793335}, {\"X\": 0.27022379636764526, \"Y\": 0.46996763348579407}, {\"X\": 0.2702356278896332, \"Y\": 0.48099738359451294}, {\"X\": 0.1615677773952484, \"Y\": 0.4808366596698761}]}, \"Confidence\": 57.0}]}, {\"Type\": \"BORROWER_NAME\", \"ValueDetections\": [{\"Text\": \"JOHN STILES\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10867863148450851, \"Height\": 0.011190748773515224, \"Left\": 0.16155700385570526, \"Top\": 0.46980661153793335}, \"Polygon\": [{\"X\": 0.16155700385570526, \"Y\": 0.46980661153793335}, {\"X\": 0.27022379636764526, \"Y\": 0.46996763348579407}, {\"X\": 0.2702356278896332, \"Y\": 0.48099738359451294}, {\"X\": 0.1615677773952484, \"Y\": 0.4808366596698761}]}, \"Confidence\": 88.0}]}, {\"Type\": \"ACCOUNT_NUMBER\", \"ValueDetections\": [{\"Text\": \"4040110157\", \"Confidence\": 94.0}]}, {\"Type\": \"BORROWER_ADDRESS\", \"ValueDetections\": []}, {\"Type\": \"BANK_ROUTING_NUMBER\", \"ValueDetections\": [{\"Text\": \"122000496\", \"Confidence\": 86.0}]}, {\"Type\": \"MEMO\", \"ValueDetections\": []}, {\"Type\": \"ACCOUNT_NAME\", \"ValueDetections\": [{\"Text\": \"JOHN STILES\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10867863148450851, \"Height\": 0.011190748773515224, \"Left\": 0.16155700385570526, \"Top\": 0.46980661153793335}, \"Polygon\": [{\"X\": 0.16155700385570526, \"Y\": 0.46980661153793335}, {\"X\": 0.27022379636764526, \"Y\": 0.46996763348579407}, {\"X\": 0.2702356278896332, \"Y\": 0.48099738359451294}, {\"X\": 0.1615677773952484, \"Y\": 0.4808366596698761}]}, \"Confidence\": 58.999996185302734}]}, {\"Type\": \"BANK_NAME\", \"ValueDetections\": []}]}}]}, {\"Page\": 3, \"PageClassification\": {\"PageType\": [{\"Value\": \"IDENTITY_DOCUMENT\", \"Confidence\": 99.99970245361328}], \"PageNumber\": [{\"Value\": \"undetected\", \"Confidence\": 100.0}]}, \"Extractions\": [{\"IdentityDocument\": {\"IdentityDocumentFields\": [{\"Type\": {\"Text\": \"FIRST_NAME\"}, \"ValueDetection\": {\"Text\": \"GARCIA\", \"Confidence\": 98.57321166992188}}, {\"Type\": {\"Text\": \"LAST_NAME\"}, \"ValueDetection\": {\"Text\": \"MARIA\", \"Confidence\": 98.20465850830078}}, {\"Type\": {\"Text\": \"MIDDLE_NAME\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.1961669921875}}, {\"Type\": {\"Text\": \"SUFFIX\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.16175079345703}}, {\"Type\": {\"Text\": \"CITY_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"BIGTOWN\", \"Confidence\": 97.36474609375}}, {\"Type\": {\"Text\": \"ZIP_CODE_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"02801\", \"Confidence\": 97.6949691772461}}, {\"Type\": {\"Text\": \"STATE_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"MA\", \"Confidence\": 98.78621673583984}}, {\"Type\": {\"Text\": \"STATE_NAME\"}, \"ValueDetection\": {\"Text\": \"MASSACHUSETTS\", \"Confidence\": 97.09445190429688}}, {\"Type\": {\"Text\": \"DOCUMENT_NUMBER\"}, \"ValueDetection\": {\"Text\": \"736HDV7874JSB\", \"Confidence\": 94.28113555908203}}, {\"Type\": {\"Text\": \"EXPIRATION_DATE\"}, \"ValueDetection\": {\"Text\": \"01/20/2028\", \"NormalizedValue\": {\"Value\": \"2028-01-20T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 97.49853515625}}, {\"Type\": {\"Text\": \"DATE_OF_BIRTH\"}, \"ValueDetection\": {\"Text\": \"03/18/2001\", \"NormalizedValue\": {\"Value\": \"2001-03-18T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 94.49516296386719}}, {\"Type\": {\"Text\": \"DATE_OF_ISSUE\"}, \"ValueDetection\": {\"Text\": \"03/18/2018\", \"NormalizedValue\": {\"Value\": \"2018-03-18T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 97.86656951904297}}, {\"Type\": {\"Text\": \"ID_TYPE\"}, \"ValueDetection\": {\"Text\": \"DRIVER LICENSE FRONT\", \"Confidence\": 97.06005859375}}, {\"Type\": {\"Text\": \"ENDORSEMENTS\"}, \"ValueDetection\": {\"Text\": \"NONE\", \"Confidence\": 98.48031616210938}}, {\"Type\": {\"Text\": \"VETERAN\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.17579650878906}}, {\"Type\": {\"Text\": \"RESTRICTIONS\"}, \"ValueDetection\": {\"Text\": \"NONE\", \"Confidence\": 98.47126007080078}}, {\"Type\": {\"Text\": \"CLASS\"}, \"ValueDetection\": {\"Text\": \"D\", \"Confidence\": 97.85075378417969}}, {\"Type\": {\"Text\": \"ADDRESS\"}, \"ValueDetection\": {\"Text\": \"100 MARKET STREET\", \"Confidence\": 97.35111236572266}}, {\"Type\": {\"Text\": \"COUNTY\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.17726135253906}}, {\"Type\": {\"Text\": \"PLACE_OF_BIRTH\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.16987609863281}}, {\"Type\": {\"Text\": \"MRZ_CODE\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 97.5233383178711}}]}}]}, {\"Page\": 4, \"PageClassification\": {\"PageType\": [{\"Value\": \"1099_DIV\", \"Confidence\": 99.99959564208984}], \"PageNumber\": [{\"Value\": \"undetected\", \"Confidence\": 100.0}]}, \"Extractions\": [{\"LendingDocument\": {\"LendingFields\": [{\"Type\": \"OTHER\", \"ValueDetections\": [{\"Geometry\": {\"BoundingBox\": {\"Width\": 0.015726694837212563, \"Height\": 0.011946356855332851, \"Left\": 0.44062453508377075, \"Top\": 0.39168494939804077}, \"Polygon\": [{\"X\": 0.44062668085098267, \"Y\": 0.39168494939804077}, {\"X\": 0.45635122060775757, \"Y\": 0.39169251918792725}, {\"X\": 0.45634886622428894, \"Y\": 0.403631329536438}, {\"X\": 0.44062453508377075, \"Y\": 0.4036242365837097}]}, \"Confidence\": 99.99006652832031}]}, {\"Type\": \"2ND_TIN_NOT\", \"ValueDetections\": [{\"Geometry\": {\"BoundingBox\": {\"Width\": 0.01618356630206108, \"Height\": 0.01223763357847929, \"Left\": 0.43998727202415466, \"Top\": 0.42582106590270996}, \"Polygon\": [{\"X\": 0.43998950719833374, \"Y\": 0.42582106590270996}, {\"X\": 0.45617085695266724, \"Y\": 0.4258274435997009}, {\"X\": 0.45616844296455383, \"Y\": 0.4380587041378021}, {\"X\": 0.43998727202415466, \"Y\": 0.43805283308029175}]}, \"Confidence\": 99.9942626953125}]}, {\"Type\": \"VOID\", \"ValueDetections\": [{\"Geometry\": {\"BoundingBox\": {\"Width\": 0.016476035118103027, \"Height\": 0.012938556261360645, \"Left\": 0.3054172396659851, \"Top\": 0.031028013676404953}, \"Polygon\": [{\"X\": 0.3054179251194, \"Y\": 0.031028013676404953}, {\"X\": 0.32189327478408813, \"Y\": 0.0310509130358696}, {\"X\": 0.3218923807144165, \"Y\": 0.043966569006443024}, {\"X\": 0.3054172396659851, \"Y\": 0.043944209814071655}]}, \"Confidence\": 99.99639892578125}]}, {\"Type\": \"CORRECTED\", \"ValueDetections\": [{\"Geometry\": {\"BoundingBox\": {\"Width\": 0.01658075675368309, \"Height\": 0.013213449157774448, \"Left\": 0.3995501697063446, \"Top\": 0.030704867094755173}, \"Polygon\": [{\"X\": 0.3995520770549774, \"Y\": 0.030704867094755173}, {\"X\": 0.416130930185318, \"Y\": 0.03072793036699295}, {\"X\": 0.41612884402275085, \"Y\": 0.043918315321207047}, {\"X\": 0.3995501697063446, \"Y\": 0.04389580711722374}]}, \"Confidence\": 99.99061584472656}]}, {\"Type\": \"OMB_NUMBER\", \"ValueDetections\": [{\"Text\": \"1545-0110\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055328190326690674, \"Height\": 0.007755025289952755, \"Left\": 0.7034848928451538, \"Top\": 0.04799326881766319}, \"Polygon\": [{\"X\": 0.7034882307052612, \"Y\": 0.04799326881766319}, {\"X\": 0.7588130831718445, \"Y\": 0.04806787148118019}, {\"X\": 0.7588093876838684, \"Y\": 0.05574829503893852}, {\"X\": 0.7034848928451538, \"Y\": 0.05567476525902748}]}, \"Confidence\": 99.92829895019531}]}, {\"Type\": \"FORM\", \"ValueDetections\": [{\"Text\": \"1099-DIV\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06094604358077049, \"Height\": 0.009419595822691917, \"Left\": 0.692213237285614, \"Top\": 0.12245261669158936}, \"Polygon\": [{\"X\": 0.6922171711921692, \"Y\": 0.12245261669158936}, {\"X\": 0.7531592845916748, \"Y\": 0.12252333760261536}, {\"X\": 0.7531548142433167, \"Y\": 0.13187220692634583}, {\"X\": 0.692213237285614, \"Y\": 0.13180293142795563}]}, \"Confidence\": 99.97026062011719}]}, {\"Type\": \"FORM\", \"ValueDetections\": [{\"Text\": \"1099-DIV\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07020045816898346, \"Height\": 0.010046952404081821, \"Left\": 0.11259011924266815, \"Top\": 0.4564400911331177}, \"Polygon\": [{\"X\": 0.11259011924266815, \"Y\": 0.4564400911331177}, {\"X\": 0.18278995156288147, \"Y\": 0.4564623236656189}, {\"X\": 0.1827905774116516, \"Y\": 0.4664870500564575}, {\"X\": 0.11259141564369202, \"Y\": 0.4664665758609772}]}, \"Confidence\": 99.96198272705078}]}, {\"Type\": \"SECTION_1202_GAIN\", \"ValueDetections\": [{\"Text\": \"$ 300\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.061003610491752625, \"Height\": 0.010750098153948784, \"Left\": 0.4889249801635742, \"Top\": 0.18302203714847565}, \"Polygon\": [{\"X\": 0.48892742395401, \"Y\": 0.18302203714847565}, {\"X\": 0.549928605556488, \"Y\": 0.1830834597349167}, {\"X\": 0.5499255657196045, \"Y\": 0.19377213716506958}, {\"X\": 0.4889249801635742, \"Y\": 0.19371235370635986}]}, \"Confidence\": 99.91862487792969}]}, {\"Type\": \"INVESTMENT_EXPENSES\", \"ValueDetections\": [{\"Text\": \"$ 600\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056195687502622604, \"Height\": 0.011393972672522068, \"Left\": 0.653678297996521, \"Top\": 0.27334320545196533}, \"Polygon\": [{\"X\": 0.6536826491355896, \"Y\": 0.27334320545196533}, {\"X\": 0.7098739743232727, \"Y\": 0.27338701486587524}, {\"X\": 0.7098690271377563, \"Y\": 0.2847371995449066}, {\"X\": 0.653678297996521, \"Y\": 0.28469499945640564}]}, \"Confidence\": 99.89188385009766}]}, {\"Type\": \"TOTAL_CAPITAL_GAIN_DISTR\", \"ValueDetections\": [{\"Text\": \"$ 8000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07657741010189056, \"Height\": 0.010771838948130608, \"Left\": 0.4893645942211151, \"Top\": 0.15262073278427124}, \"Polygon\": [{\"X\": 0.4893670380115509, \"Y\": 0.15262073278427124}, {\"X\": 0.5659419894218445, \"Y\": 0.15270371735095978}, {\"X\": 0.5659387707710266, \"Y\": 0.1633925586938858}, {\"X\": 0.4893645942211151, \"Y\": 0.1633116453886032}]}, \"Confidence\": 99.88539123535156}]}, {\"Type\": \"COLLECTIBLES_28%_GAIN\", \"ValueDetections\": [{\"Text\": \"$ 200\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07348816096782684, \"Height\": 0.010757951997220516, \"Left\": 0.6537132263183594, \"Top\": 0.1828540414571762}, \"Polygon\": [{\"X\": 0.6537173390388489, \"Y\": 0.1828540414571762}, {\"X\": 0.7272014021873474, \"Y\": 0.18292808532714844}, {\"X\": 0.7271965742111206, \"Y\": 0.1936119794845581}, {\"X\": 0.6537132263183594, \"Y\": 0.19353991746902466}]}, \"Confidence\": 99.94542694091797}]}, {\"Type\": \"SECTION_897_CAPITAL_GAIN\", \"ValueDetections\": [{\"Text\": \"$ 300\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05619862675666809, \"Height\": 0.010736067779362202, \"Left\": 0.6537016034126282, \"Top\": 0.21324142813682556}, \"Polygon\": [{\"X\": 0.6537056565284729, \"Y\": 0.21324142813682556}, {\"X\": 0.7099002003669739, \"Y\": 0.21329374611377716}, {\"X\": 0.7098955512046814, \"Y\": 0.2239774912595749}, {\"X\": 0.6537016034126282, \"Y\": 0.22392669320106506}]}, \"Confidence\": 99.88630676269531}]}, {\"Type\": \"SECTION_199A_DIVIDENDS\", \"ValueDetections\": [{\"Text\": \"$ 8000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06878358125686646, \"Height\": 0.010740098543465137, \"Left\": 0.4893369674682617, \"Top\": 0.2738831639289856}, \"Polygon\": [{\"X\": 0.4893394112586975, \"Y\": 0.2738831639289856}, {\"X\": 0.5581205487251282, \"Y\": 0.2739366590976715}, {\"X\": 0.5581174492835999, \"Y\": 0.28462326526641846}, {\"X\": 0.4893369674682617, \"Y\": 0.28457164764404297}]}, \"Confidence\": 99.90050506591797}]}, {\"Type\": \"UNRECAP._SEC._1250_GAIN\", \"ValueDetections\": [{\"Text\": \"$ 300\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06484638154506683, \"Height\": 0.0110889608040452, \"Left\": 0.653724730014801, \"Top\": 0.1524648815393448}, \"Polygon\": [{\"X\": 0.6537289619445801, \"Y\": 0.1524648815393448}, {\"X\": 0.718571126461029, \"Y\": 0.15253521502017975}, {\"X\": 0.7185662388801575, \"Y\": 0.163553848862648}, {\"X\": 0.653724730014801, \"Y\": 0.1634853333234787}]}, \"Confidence\": 99.909912109375}]}, {\"Type\": \"NONDIVIDEND_DISTRIBUTIONS\", \"ValueDetections\": [{\"Text\": \"$ 7000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07008302211761475, \"Height\": 0.010413028299808502, \"Left\": 0.48934391140937805, \"Top\": 0.2438206970691681}, \"Polygon\": [{\"X\": 0.4893462657928467, \"Y\": 0.2438206970691681}, {\"X\": 0.5594269037246704, \"Y\": 0.2438805103302002}, {\"X\": 0.5594238638877869, \"Y\": 0.254233717918396}, {\"X\": 0.48934391140937805, \"Y\": 0.25417575240135193}]}, \"Confidence\": 99.94840240478516}]}, {\"Type\": \"SECTION_897_ORDINARY_DIVIDENDS\", \"ValueDetections\": [{\"Text\": \"$ 1000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06359715759754181, \"Height\": 0.010747144930064678, \"Left\": 0.4889180660247803, \"Top\": 0.21342206001281738}, \"Polygon\": [{\"X\": 0.48892050981521606, \"Y\": 0.21342206001281738}, {\"X\": 0.5525152087211609, \"Y\": 0.21348121762275696}, {\"X\": 0.5525121688842773, \"Y\": 0.22416920959949493}, {\"X\": 0.4889180660247803, \"Y\": 0.22411176562309265}]}, \"Confidence\": 99.89624786376953}]}, {\"Type\": \"FEDERAL_INCOME_TAX_WITHHELD\", \"ValueDetections\": [{\"Text\": \"$ 4500\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06613776832818985, \"Height\": 0.012074960395693779, \"Left\": 0.6536899209022522, \"Top\": 0.24229148030281067}, \"Polygon\": [{\"X\": 0.6536945104598999, \"Y\": 0.24229148030281067}, {\"X\": 0.7198277115821838, \"Y\": 0.24234820902347565}, {\"X\": 0.719822347164154, \"Y\": 0.2543664276599884}, {\"X\": 0.6536899209022522, \"Y\": 0.2543117105960846}]}, \"Confidence\": 99.93219757080078}]}, {\"Type\": \"CASH_LIQUIDATION_DISTRIBUTIONS\", \"ValueDetections\": [{\"Text\": \"$ 800\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08391503244638443, \"Height\": 0.01073387823998928, \"Left\": 0.48888710141181946, \"Top\": 0.34969955682754517}, \"Polygon\": [{\"X\": 0.48888951539993286, \"Y\": 0.34969955682754517}, {\"X\": 0.5728021264076233, \"Y\": 0.34974873065948486}, {\"X\": 0.5727988481521606, \"Y\": 0.360433429479599}, {\"X\": 0.48888710141181946, \"Y\": 0.3603864908218384}]}, \"Confidence\": 99.94503021240234}]}, {\"Type\": \"NONCASH_LIQUIDATION_DISTRIBUTIONS\", \"ValueDetections\": [{\"Text\": \"$ 8000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07650117576122284, \"Height\": 0.010391524992883205, \"Left\": 0.6536493301391602, \"Top\": 0.3497961461544037}, \"Polygon\": [{\"X\": 0.6536533236503601, \"Y\": 0.3497961461544037}, {\"X\": 0.7301505208015442, \"Y\": 0.34984099864959717}, {\"X\": 0.7301458120346069, \"Y\": 0.36018767952919006}, {\"X\": 0.6536493301391602, \"Y\": 0.36014482378959656}]}, \"Confidence\": 99.95600891113281}]}, {\"Type\": \"FOREIGN_TAX_PAID\", \"ValueDetections\": [{\"Text\": \"$ 7000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08651332557201385, \"Height\": 0.014416479505598545, \"Left\": 0.488893985748291, \"Top\": 0.31563347578048706}, \"Polygon\": [{\"X\": 0.48889726400375366, \"Y\": 0.31563347578048706}, {\"X\": 0.5754073262214661, \"Y\": 0.31569162011146545}, {\"X\": 0.5754028558731079, \"Y\": 0.33004996180534363}, {\"X\": 0.488893985748291, \"Y\": 0.32999491691589355}]}, \"Confidence\": 99.9547348022461}]}, {\"Type\": \"FOREIGN_COUNTRY_OR_US_POSSESSION\", \"ValueDetections\": [{\"Text\": \"$ 1000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04019573703408241, \"Height\": 0.009707530029118061, \"Left\": 0.6878122687339783, \"Top\": 0.31009215116500854}, \"Polygon\": [{\"X\": 0.687816321849823, \"Y\": 0.31009215116500854}, {\"X\": 0.7280080318450928, \"Y\": 0.31011974811553955}, {\"X\": 0.7280036211013794, \"Y\": 0.3197996914386749}, {\"X\": 0.6878122687339783, \"Y\": 0.3197730779647827}]}, \"Confidence\": 99.29940795898438}]}, {\"Type\": \"QUALIFIED_DIVIDENDS\", \"ValueDetections\": [{\"Text\": \"$ 500\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05797931179404259, \"Height\": 0.012427822686731815, \"Left\": 0.48937150835990906, \"Top\": 0.12054666131734848}, \"Polygon\": [{\"X\": 0.4893743395805359, \"Y\": 0.12054666131734848}, {\"X\": 0.5473508238792419, \"Y\": 0.1206141859292984}, {\"X\": 0.547347366809845, \"Y\": 0.13297449052333832}, {\"X\": 0.48937150835990906, \"Y\": 0.13290877640247345}]}, \"Confidence\": 99.90045166015625}]}, {\"Type\": \"TOTAL_ORDINARY_DIVIDENDS\", \"ValueDetections\": [{\"Text\": \"$ 1000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09129005670547485, \"Height\": 0.010806323029100895, \"Left\": 0.4889490604400635, \"Top\": 0.07710937410593033}, \"Polygon\": [{\"X\": 0.4889514744281769, \"Y\": 0.07710937410593033}, {\"X\": 0.5802391171455383, \"Y\": 0.0772257000207901}, {\"X\": 0.5802357792854309, \"Y\": 0.08791569620370865}, {\"X\": 0.4889490604400635, \"Y\": 0.08780183643102646}]}, \"Confidence\": 99.89154052734375}]}, {\"Type\": \"OTHER\", \"ValueDetections\": [{\"Text\": \"$ 900\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.066559799015522, \"Height\": 0.010711177252233028, \"Left\": 0.6536318063735962, \"Top\": 0.39519527554512024}, \"Polygon\": [{\"X\": 0.6536359190940857, \"Y\": 0.39519527554512024}, {\"X\": 0.7201915979385376, \"Y\": 0.3952266573905945}, {\"X\": 0.7201868295669556, \"Y\": 0.40590643882751465}, {\"X\": 0.6536318063735962, \"Y\": 0.40587684512138367}]}, \"Confidence\": 99.95262908935547}]}, {\"Type\": \"RECIPIENT_TIN\", \"ValueDetections\": [{\"Text\": \"1111-2222-3333\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09523707628250122, \"Height\": 0.008779231458902359, \"Left\": 0.35041314363479614, \"Top\": 0.19658426940441132}, \"Polygon\": [{\"X\": 0.350413978099823, \"Y\": 0.19658426940441132}, {\"X\": 0.44565021991729736, \"Y\": 0.19667688012123108}, {\"X\": 0.4456486105918884, \"Y\": 0.20536351203918457}, {\"X\": 0.35041314363479614, \"Y\": 0.20527298748493195}]}, \"Confidence\": 99.96683502197266}]}, {\"Type\": \"OTHER\", \"ValueDetections\": [{\"Text\": \"$ 1000\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08910135179758072, \"Height\": 0.014065057970583439, \"Left\": 0.4893093705177307, \"Top\": 0.3917783498764038}, \"Polygon\": [{\"X\": 0.4893125593662262, \"Y\": 0.3917783498764038}, {\"X\": 0.5784107446670532, \"Y\": 0.39182111620903015}, {\"X\": 0.5784063339233398, \"Y\": 0.4058434069156647}, {\"X\": 0.4893093705177307, \"Y\": 0.40580376982688904}]}, \"Confidence\": 99.91970825195312}]}, {\"Type\": \"PAYER_TIN\", \"ValueDetections\": [{\"Text\": \"4444-5555-6666\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0961991399526596, \"Height\": 0.008784034289419651, \"Left\": 0.14940212666988373, \"Top\": 0.19839492440223694}, \"Polygon\": [{\"X\": 0.14940212666988373, \"Y\": 0.19839492440223694}, {\"X\": 0.24560123682022095, \"Y\": 0.19848798215389252}, {\"X\": 0.24560126662254333, \"Y\": 0.2071789652109146}, {\"X\": 0.1494029462337494, \"Y\": 0.20708802342414856}]}, \"Confidence\": 99.996337890625}]}, {\"Type\": \"ACCOUNT_NUMBER\", \"ValueDetections\": [{\"Text\": \"7777-8888-9999\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09658073633909225, \"Height\": 0.008721601217985153, \"Left\": 0.21094878017902374, \"Top\": 0.4347518980503082}, \"Polygon\": [{\"X\": 0.21094878017902374, \"Y\": 0.4347518980503082}, {\"X\": 0.3075295090675354, \"Y\": 0.4347877502441406}, {\"X\": 0.3075290322303772, \"Y\": 0.4434734880924225}, {\"X\": 0.2109490931034088, \"Y\": 0.4434397220611572}]}, \"Confidence\": 99.96804809570312}]}, {\"Type\": \"ADDRESS_STREET\", \"ValueDetections\": [{\"Text\": \"123 Any Street\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10742256790399551, \"Height\": 0.0127749377861619, \"Left\": 0.2048780918121338, \"Top\": 0.29672524333000183}, \"Polygon\": [{\"X\": 0.2048780918121338, \"Y\": 0.29672524333000183}, {\"X\": 0.3123006522655487, \"Y\": 0.2968025207519531}, {\"X\": 0.3122998774051666, \"Y\": 0.30950018763542175}, {\"X\": 0.20487861335277557, \"Y\": 0.30942633748054504}]}, \"Confidence\": 99.96580505371094}]}, {\"Type\": \"RECIPIENT_NAME\", \"ValueDetections\": [{\"Text\": \"Alejandro Rosalez\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13297316431999207, \"Height\": 0.013477480039000511, \"Left\": 0.20920901000499725, \"Top\": 0.24993275105953217}, \"Polygon\": [{\"X\": 0.20920901000499725, \"Y\": 0.24993275105953217}, {\"X\": 0.3421821594238281, \"Y\": 0.2500441074371338}, {\"X\": 0.342180997133255, \"Y\": 0.2634102404117584}, {\"X\": 0.20920950174331665, \"Y\": 0.26330333948135376}]}, \"Confidence\": 99.98857879638672}]}, {\"Type\": \"ADDRESS_CITY_OR_TOWN,_STATE_OR_PROVINCE,_COUNTRY,_AND_ZIP_OR_FOREIGN_POSTAL_CODE\", \"ValueDetections\": [{\"Text\": \"Any Town, USA\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11608342826366425, \"Height\": 0.012765948660671711, \"Left\": 0.19534829258918762, \"Top\": 0.3448483645915985}, \"Polygon\": [{\"X\": 0.19534829258918762, \"Y\": 0.3448483645915985}, {\"X\": 0.31143173575401306, \"Y\": 0.34491780400276184}, {\"X\": 0.311430960893631, \"Y\": 0.35761430859565735}, {\"X\": 0.19534894824028015, \"Y\": 0.3575485944747925}]}, \"Confidence\": 99.99502563476562}]}, {\"Type\": \"PAYER_NAME_AND_ADDRESS_AND_TELEPHONE_NUMBER\", \"ValueDetections\": [{\"Text\": \"Ana Carolina Silva 123 Any Street, Any Town, USA 555-0199\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.233906552195549, \"Height\": 0.06111476197838783, \"Left\": 0.17929932475090027, \"Top\": 0.08440603315830231}, \"Polygon\": [{\"X\": 0.17929932475090027, \"Y\": 0.08440603315830231}, {\"X\": 0.4132058918476105, \"Y\": 0.08469955623149872}, {\"X\": 0.4131964147090912, \"Y\": 0.14552079141139984}, {\"X\": 0.1793033480644226, \"Y\": 0.1452631801366806}]}, \"Confidence\": 99.98358154296875}]}]}}]}, {\"Page\": 5, \"PageClassification\": {\"PageType\": [{\"Value\": \"BANK_STATEMENT\", \"Confidence\": 94.33531951904297}], \"PageNumber\": [{\"Value\": \"undetected\", \"Confidence\": 100.0}]}, \"Extractions\": [{\"LendingDocument\": {\"LendingFields\": [{\"Type\": \"BORROWER_NAME\", \"ValueDetections\": [{\"Text\": \"Jane Doe\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06707346439361572, \"Height\": 0.008756850846111774, \"Left\": 0.6385766863822937, \"Top\": 0.27296698093414307}, \"Polygon\": [{\"X\": 0.6385766863822937, \"Y\": 0.2730509638786316}, {\"X\": 0.705640435218811, \"Y\": 0.27296698093414307}, {\"X\": 0.7056500911712646, \"Y\": 0.28163987398147583}, {\"X\": 0.638586163520813, \"Y\": 0.28172385692596436}]}, \"Confidence\": 100.0}]}, {\"Type\": \"BORROWER_ADDRESS\", \"ValueDetections\": [{\"Text\": \"100 Main Street, Anytown, USA 555-0100\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1851538121700287, \"Height\": 0.019912509247660637, \"Left\": 0.10252023488283157, \"Top\": 0.25681182742118835}, \"Polygon\": [{\"X\": 0.10252023488283157, \"Y\": 0.25704362988471985}, {\"X\": 0.2876547574996948, \"Y\": 0.25681182742118835}, {\"X\": 0.28767403960227966, \"Y\": 0.27649250626564026}, {\"X\": 0.1025383397936821, \"Y\": 0.27672433853149414}]}, \"Confidence\": 89.0}]}, {\"Type\": \"BANK_NAME\", \"ValueDetections\": []}, {\"Type\": \"ACCOUNT_NUMBER\", \"ValueDetections\": [{\"Text\": \"333 008755555\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11241224408149719, \"Height\": 0.00914708711206913, \"Left\": 0.6376153230667114, \"Top\": 0.25756722688674927}, \"Polygon\": [{\"X\": 0.6376153230667114, \"Y\": 0.25770795345306396}, {\"X\": 0.7500173449516296, \"Y\": 0.25756722688674927}, {\"X\": 0.7500275373458862, \"Y\": 0.26657357811927795}, {\"X\": 0.6376251578330994, \"Y\": 0.26671430468559265}]}, \"Confidence\": 98.0}]}, {\"Type\": \"ACCOUNT_TYPE\", \"ValueDetections\": []}, {\"Type\": \"PERIOD_START_DATE\", \"ValueDetections\": [{\"Text\": \"1 MAY 2021\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08832596242427826, \"Height\": 0.009450391866266727, \"Left\": 0.6380704045295715, \"Top\": 0.24191918969154358}, \"Polygon\": [{\"X\": 0.6380704045295715, \"Y\": 0.24202975630760193}, {\"X\": 0.7263858914375305, \"Y\": 0.24191918969154358}, {\"X\": 0.726396381855011, \"Y\": 0.2512590289115906}, {\"X\": 0.6380806565284729, \"Y\": 0.2513695955276489}]}, \"Confidence\": 99.0}]}, {\"Type\": \"PERIOD_END_DATE\", \"ValueDetections\": [{\"Text\": \"31 MAY 2021\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09824389219284058, \"Height\": 0.009462796151638031, \"Left\": 0.7514164447784424, \"Top\": 0.2417648881673813}, \"Polygon\": [{\"X\": 0.7514164447784424, \"Y\": 0.24188785254955292}, {\"X\": 0.8496494293212891, \"Y\": 0.2417648881673813}, {\"X\": 0.849660336971283, \"Y\": 0.2511047124862671}, {\"X\": 0.7514269948005676, \"Y\": 0.2512276768684387}]}, \"Confidence\": 99.0}]}, {\"Type\": \"BANK_CONTACT_NUMBER\", \"ValueDetections\": []}, {\"Type\": \"BANK_ADDRESS\", \"ValueDetections\": []}, {\"Type\": \"BEGINNING_BALANCE\", \"ValueDetections\": [{\"Text\": \"$50,000.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08219209313392639, \"Height\": 0.011778759770095348, \"Left\": 0.5059660077095032, \"Top\": 0.3685186505317688}, \"Polygon\": [{\"X\": 0.5059660077095032, \"Y\": 0.3686216175556183}, {\"X\": 0.5881454944610596, \"Y\": 0.3685186505317688}, {\"X\": 0.588158130645752, \"Y\": 0.38019439578056335}, {\"X\": 0.5059782862663269, \"Y\": 0.38029739260673523}]}, \"Confidence\": 99.0}]}, {\"Type\": \"TOTAL_DEPOSIT\", \"ValueDetections\": []}, {\"Type\": \"TOTAL_WITHDRAWAL\", \"ValueDetections\": []}, {\"Type\": \"ENDING_BALANCE\", \"ValueDetections\": [{\"Text\": \"$123,084.85\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09163852035999298, \"Height\": 0.01179073378443718, \"Left\": 0.5055105686187744, \"Top\": 0.38451990485191345}, \"Polygon\": [{\"X\": 0.5055105686187744, \"Y\": 0.38463473320007324}, {\"X\": 0.5971364378929138, \"Y\": 0.38451990485191345}, {\"X\": 0.5971490740776062, \"Y\": 0.39619579911231995}, {\"X\": 0.5055228471755981, \"Y\": 0.39631062746047974}]}, \"Confidence\": 93.0}]}, {\"Type\": \"AVERAGE_BALANCE\", \"ValueDetections\": []}]}}]}, {\"Page\": 6, \"PageClassification\": {\"PageType\": [{\"Value\": \"W_2\", \"Confidence\": 99.99987030029297}], \"PageNumber\": [{\"Value\": \"undetected\", \"Confidence\": 100.0}]}, \"Extractions\": [{\"LendingDocument\": {\"LendingFields\": [{\"Type\": \"FORM_YEAR\", \"ValueDetections\": [{\"Text\": \"2022\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10604754835367203, \"Height\": 0.02492646872997284, \"Left\": 0.47555673122406006, \"Top\": 0.428293377161026}, \"Polygon\": [{\"X\": 0.4755581021308899, \"Y\": 0.428293377161026}, {\"X\": 0.5816042423248291, \"Y\": 0.4283423125743866}, {\"X\": 0.5816012620925903, \"Y\": 0.45321983098983765}, {\"X\": 0.47555673122406006, \"Y\": 0.45317667722702026}]}, \"Confidence\": 100.0}]}, {\"Type\": \"EMPLOYEE_SSN\", \"ValueDetections\": [{\"Text\": \"75395184613\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08917063474655151, \"Height\": 0.009286358952522278, \"Left\": 0.30066683888435364, \"Top\": 0.061937227845191956}, \"Polygon\": [{\"X\": 0.30066683888435364, \"Y\": 0.061937227845191956}, {\"X\": 0.38983747363090515, \"Y\": 0.06205010041594505}, {\"X\": 0.38983747363090515, \"Y\": 0.07122358679771423}, {\"X\": 0.30066734552383423, \"Y\": 0.0711125060915947}]}, \"Confidence\": 98.0}]}, {\"Type\": \"EMPLOYER_EIN\", \"ValueDetections\": [{\"Text\": \"4963147952\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08240081369876862, \"Height\": 0.009273718111217022, \"Left\": 0.23440589010715485, \"Top\": 0.09069379419088364}, \"Polygon\": [{\"X\": 0.23440589010715485, \"Y\": 0.09069379419088364}, {\"X\": 0.3168063163757324, \"Y\": 0.09079287946224213}, {\"X\": 0.31680670380592346, \"Y\": 0.09996750950813293}, {\"X\": 0.2344067394733429, \"Y\": 0.09987008571624756}]}, \"Confidence\": 98.0}]}, {\"Type\": \"EMPLOYER_NAME\", \"ValueDetections\": [{\"Text\": \"John Stiles\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07988541573286057, \"Height\": 0.010576951317489147, \"Left\": 0.13838142156600952, \"Top\": 0.125979483127594}, \"Polygon\": [{\"X\": 0.13838142156600952, \"Y\": 0.125979483127594}, {\"X\": 0.21826575696468353, \"Y\": 0.1260693371295929}, {\"X\": 0.21826684474945068, \"Y\": 0.13655643165111542}, {\"X\": 0.13838303089141846, \"Y\": 0.13646841049194336}]}, \"Confidence\": 100.0}]}, {\"Type\": \"EMPLOYER_ADDRESS\", \"ValueDetections\": [{\"Text\": \"100 Main Street, Anytown, USA\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2285250723361969, \"Height\": 0.013353373855352402, \"Left\": 0.1417836993932724, \"Top\": 0.14171653985977173}, \"Polygon\": [{\"X\": 0.1417836993932724, \"Y\": 0.14171653985977173}, {\"X\": 0.37030863761901855, \"Y\": 0.14196568727493286}, {\"X\": 0.3703087568283081, \"Y\": 0.15506991744041443}, {\"X\": 0.14178566634655, \"Y\": 0.15482734143733978}]}, \"Confidence\": 93.0}]}, {\"Type\": \"EMPLOYEE_NAME\", \"ValueDetections\": [{\"Text\": \"Arnav\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03910054638981819, \"Height\": 0.00855422392487526, \"Left\": 0.10100097954273224, \"Top\": 0.2504950165748596}, \"Polygon\": [{\"X\": 0.10100097954273224, \"Y\": 0.2504950165748596}, {\"X\": 0.14010024070739746, \"Y\": 0.2505283057689667}, {\"X\": 0.14010152220726013, \"Y\": 0.2590492367744446}, {\"X\": 0.10100247710943222, \"Y\": 0.2590166926383972}]}, \"Confidence\": 100.0}]}, {\"Type\": \"EMPLOYEE_ADDRESS\", \"ValueDetections\": [{\"Text\": \"123 Any Street, Any Town, USA\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20897410809993744, \"Height\": 0.0119400005787611, \"Left\": 0.1401100605726242, \"Top\": 0.31541624665260315}, \"Polygon\": [{\"X\": 0.1401100605726242, \"Y\": 0.31541624665260315}, {\"X\": 0.34908390045166016, \"Y\": 0.31556442379951477}, {\"X\": 0.34908416867256165, \"Y\": 0.3273562490940094}, {\"X\": 0.14011184871196747, \"Y\": 0.32721349596977234}]}, \"Confidence\": 96.0}]}, {\"Type\": \"WAGES\", \"ValueDetections\": [{\"Text\": \"$100.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053436409682035446, \"Height\": 0.010541674681007862, \"Left\": 0.6011545062065125, \"Top\": 0.09178973734378815}, \"Polygon\": [{\"X\": 0.6011558771133423, \"Y\": 0.09178973734378815}, {\"X\": 0.654590904712677, \"Y\": 0.09185391664505005}, {\"X\": 0.6545891761779785, \"Y\": 0.10233141481876373}, {\"X\": 0.6011545062065125, \"Y\": 0.10226846486330032}]}, \"Confidence\": 99.0}]}, {\"Type\": \"FEDERAL_INCOME_TAX_WITHHELD_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$500.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05339211970567703, \"Height\": 0.01053731981664896, \"Left\": 0.7953255772590637, \"Top\": 0.09071366488933563}, \"Polygon\": [{\"X\": 0.7953281998634338, \"Y\": 0.09071366488933563}, {\"X\": 0.8487176895141602, \"Y\": 0.0907779410481453}, {\"X\": 0.8487147092819214, \"Y\": 0.10125098377466202}, {\"X\": 0.7953255772590637, \"Y\": 0.10118793696165085}]}, \"Confidence\": 99.0}]}, {\"Type\": \"SOCIAL_SECURITY_WAGES_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$1000.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06107165664434433, \"Height\": 0.010546763427555561, \"Left\": 0.586729884147644, \"Top\": 0.12058950215578079}, \"Polygon\": [{\"X\": 0.5867311954498291, \"Y\": 0.12058950215578079}, {\"X\": 0.6478015780448914, \"Y\": 0.1206589862704277}, {\"X\": 0.6477998495101929, \"Y\": 0.13113626837730408}, {\"X\": 0.586729884147644, \"Y\": 0.13106819987297058}]}, \"Confidence\": 99.0}]}, {\"Type\": \"SOCIAL_SECURITY_TAXES_WITHHELD_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$100.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05339031666517258, \"Height\": 0.010533147491514683, \"Left\": 0.7987077832221985, \"Top\": 0.12213991582393646}, \"Polygon\": [{\"X\": 0.7987104058265686, \"Y\": 0.12213991582393646}, {\"X\": 0.8520980477333069, \"Y\": 0.12220051139593124}, {\"X\": 0.8520950675010681, \"Y\": 0.13267306983470917}, {\"X\": 0.7987077832221985, \"Y\": 0.13261370360851288}]}, \"Confidence\": 99.0}]}, {\"Type\": \"MEDICARE_WAGES_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$500.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05343520641326904, \"Height\": 0.010533901862800121, \"Left\": 0.5977535247802734, \"Top\": 0.15203694999217987}, \"Polygon\": [{\"X\": 0.5977548956871033, \"Y\": 0.15203694999217987}, {\"X\": 0.6511887311935425, \"Y\": 0.1520940512418747}, {\"X\": 0.6511870622634888, \"Y\": 0.16257084906101227}, {\"X\": 0.5977535247802734, \"Y\": 0.16251496970653534}]}, \"Confidence\": 99.0}]}, {\"Type\": \"MEDICARE_TAX_WITHHELD_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$5000.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.061016105115413666, \"Height\": 0.010537393391132355, \"Left\": 0.7944627404212952, \"Top\": 0.15159256756305695}, \"Polygon\": [{\"X\": 0.7944653630256653, \"Y\": 0.15159256756305695}, {\"X\": 0.855478823184967, \"Y\": 0.1516578644514084}, {\"X\": 0.8554758429527283, \"Y\": 0.1621299684047699}, {\"X\": 0.7944627404212952, \"Y\": 0.16206607222557068}]}, \"Confidence\": 98.0}]}, {\"Type\": \"SOCIAL_SECURITY_TIP_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$500.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05343540012836456, \"Height\": 0.010530179366469383, \"Left\": 0.5926602482795715, \"Top\": 0.18150094151496887}, \"Polygon\": [{\"X\": 0.5926615595817566, \"Y\": 0.18150094151496887}, {\"X\": 0.6460956335067749, \"Y\": 0.18155458569526672}, {\"X\": 0.6460939645767212, \"Y\": 0.192031130194664}, {\"X\": 0.5926602482795715, \"Y\": 0.19197870790958405}]}, \"Confidence\": 99.0}]}, {\"Type\": \"ALLOCATED_TIPS_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$150.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05338874086737633, \"Height\": 0.011179977096617222, \"Left\": 0.797845184803009, \"Top\": 0.18105237185955048}, \"Polygon\": [{\"X\": 0.7978479862213135, \"Y\": 0.18105237185955048}, {\"X\": 0.8512338995933533, \"Y\": 0.18110604584217072}, {\"X\": 0.8512307405471802, \"Y\": 0.19223234057426453}, {\"X\": 0.797845184803009, \"Y\": 0.19217997789382935}]}, \"Confidence\": 99.0}]}, {\"Type\": \"DEPENDENT_CARE_BENEFITS_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$5000.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06186172366142273, \"Height\": 0.01118380855768919, \"Left\": 0.7927524447441101, \"Top\": 0.21181179583072662}, \"Polygon\": [{\"X\": 0.7927552461624146, \"Y\": 0.21181179583072662}, {\"X\": 0.8546141982078552, \"Y\": 0.21186980605125427}, {\"X\": 0.8546109795570374, \"Y\": 0.2229956090450287}, {\"X\": 0.7927524447441101, \"Y\": 0.2229391187429428}]}, \"Confidence\": 98.0}]}, {\"Type\": \"EMPLOYER_STATE_ID_NUMBER\", \"ValueDetections\": [{\"Text\": \"7414568313\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08241663873195648, \"Height\": 0.009869709610939026, \"Left\": 0.14777237176895142, \"Top\": 0.40782734751701355}, \"Polygon\": [{\"X\": 0.14777237176895142, \"Y\": 0.40782734751701355}, {\"X\": 0.23018807172775269, \"Y\": 0.4078690707683563}, {\"X\": 0.2301890105009079, \"Y\": 0.4176970422267914}, {\"X\": 0.14777381718158722, \"Y\": 0.41765710711479187}]}, \"Confidence\": 98.0}]}, {\"Type\": \"STATE\", \"ValueDetections\": [{\"Text\": \"Any Town\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04420389607548714, \"Height\": 0.008542131632566452, \"Left\": 0.05937641113996506, \"Top\": 0.40974894165992737}, \"Polygon\": [{\"X\": 0.05937641113996506, \"Y\": 0.40974894165992737}, {\"X\": 0.1035788282752037, \"Y\": 0.4097711145877838}, {\"X\": 0.1035803034901619, \"Y\": 0.4182910621166229}, {\"X\": 0.05937812477350235, \"Y\": 0.41826972365379333}]}, \"Confidence\": 98.0}]}, {\"Type\": \"BENEFIT_STATE_WAGES_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$50.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059432897716760635, \"Height\": 0.014439939521253109, \"Left\": 0.3219147324562073, \"Top\": 0.40595027804374695}, \"Polygon\": [{\"X\": 0.3219147324562073, \"Y\": 0.40595027804374695}, {\"X\": 0.3813475966453552, \"Y\": 0.4059806168079376}, {\"X\": 0.3813476264476776, \"Y\": 0.42039021849632263}, {\"X\": 0.32191529870033264, \"Y\": 0.4203617572784424}]}, \"Confidence\": 99.0}]}, {\"Type\": \"STATE_INCOME_TAX_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$500.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07042575627565384, \"Height\": 0.014440743252635002, \"Left\": 0.46282958984375, \"Top\": 0.40602219104766846}, \"Polygon\": [{\"X\": 0.4628302752971649, \"Y\": 0.40602219104766846}, {\"X\": 0.5332553386688232, \"Y\": 0.4060581624507904}, {\"X\": 0.5332540273666382, \"Y\": 0.4204629361629486}, {\"X\": 0.46282958984375, \"Y\": 0.4204292297363281}]}, \"Confidence\": 99.0}]}, {\"Type\": \"LOCAL_WAGES_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$100.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07123488932847977, \"Height\": 0.014437048695981503, \"Left\": 0.5917831063270569, \"Top\": 0.4060880243778229}, \"Polygon\": [{\"X\": 0.5917848944664001, \"Y\": 0.4060880243778229}, {\"X\": 0.663017988204956, \"Y\": 0.40612438321113586}, {\"X\": 0.6630155444145203, \"Y\": 0.42052507400512695}, {\"X\": 0.5917831063270569, \"Y\": 0.42049098014831543}]}, \"Confidence\": 99.0}]}, {\"Type\": \"LOCAL_INCOME_TAX_AMOUNT\", \"ValueDetections\": [{\"Text\": \"$550.00\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07119183242321014, \"Height\": 0.014432545751333237, \"Left\": 0.7333780527114868, \"Top\": 0.4061603248119354}, \"Polygon\": [{\"X\": 0.7333811521530151, \"Y\": 0.4061603248119354}, {\"X\": 0.8045699000358582, \"Y\": 0.406196653842926}, {\"X\": 0.8045662045478821, \"Y\": 0.42059287428855896}, {\"X\": 0.7333780527114868, \"Y\": 0.42055878043174744}]}, \"Confidence\": 99.0}]}, {\"Type\": \"LOCALITY_NAME\", \"ValueDetections\": [{\"Text\": \"Any Town\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05929432436823845, \"Height\": 0.00984314363449812, \"Left\": 0.8638736009597778, \"Top\": 0.40753552317619324}, \"Polygon\": [{\"X\": 0.863876461982727, \"Y\": 0.40753552317619324}, {\"X\": 0.923167884349823, \"Y\": 0.4075656235218048}, {\"X\": 0.9231646656990051, \"Y\": 0.41737866401672363}, {\"X\": 0.8638736009597778, \"Y\": 0.41734984517097473}]}, \"Confidence\": 99.0}]}, {\"Type\": \"STATUTORY_EMPLOYEE\", \"ValueDetections\": [{\"Text\": \"SELECTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017815157771110535, \"Height\": 0.013765000738203526, \"Left\": 0.5688973069190979, \"Top\": 0.27250292897224426}, \"Polygon\": [{\"X\": 0.5688988566398621, \"Y\": 0.27250292897224426}, {\"X\": 0.5867124795913696, \"Y\": 0.27251726388931274}, {\"X\": 0.5867107510566711, \"Y\": 0.2862679362297058}, {\"X\": 0.5688973069190979, \"Y\": 0.2862541377544403}]}, \"Confidence\": 97.0}]}, {\"Type\": \"RETIREMENT_PLAN\", \"ValueDetections\": []}, {\"Type\": \"THIRD_PARTY_SICK_PAY\", \"ValueDetections\": []}]}}]}, {\"Page\": 7, \"PageClassification\": {\"PageType\": [{\"Value\": \"UNCLASSIFIED\", \"Confidence\": 99.16004180908203}], \"PageNumber\": [{\"Value\": \"1\", \"Confidence\": 99.99661254882812}]}, \"Extractions\": []}], \"AnalyzeLendingModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"c6c44ddc-f32f-4177-ad0f-9b857e820f89\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"c6c44ddc-f32f-4177-ad0f-9b857e820f89\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"56556\", \"date\": \"Thu, 22 Dec 2022 16:36:42 GMT\"}, \"RetryAttempts\": 0}}"
  },
  {
    "path": "src-python/tests/data/little_women_page_1.json",
    "content": "{\n  \"Bucket\": \"textract-console-us-east-1-d17637b3-eef6-42df-88c7-27374be8f2f9\",\n  \"UploadedFileName\": \"85a1f161_67e6_4a59_bd0e_7f9f974dca7d_little_women.pdf\",\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"JobStatus\": \"SUCCEEDED\",\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 1.0590358812123668e-7,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"e6a4bf03-cd67-4d61-bba6-cc69793d8ee8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d28b6d3e-9cf4-4f81-8851-dc09a0c59bf7\",\n            \"8e0de47a-cfa3-48cb-a580-ba8f7fe749d9\",\n            \"8a06f82d-955e-4365-88f1-0b275a8733e9\",\n            \"6f789b1e-7cdb-4d91-b6ec-283911f61c75\",\n            \"cf190100-0f46-4a58-af82-4ce766d6db10\",\n            \"9d5e365c-6f8f-4bdb-9640-1d5faf9b1981\",\n            \"18977cdd-390c-41e6-b7a7-0fff7f6e5567\",\n            \"acfb92f4-4841-478c-8671-d6ccd687a923\",\n            \"d8d51a6e-01a8-4e80-8c9b-840d8a005f8d\",\n            \"ac97afcc-96bd-44d8-84e0-99afe9e2eec7\",\n            \"0cf3da5d-b975-4c8d-91f8-2c99ea9c22c7\",\n            \"6d64da69-120f-42b9-8022-bbb48773fad2\",\n            \"d09adea2-ba62-4487-aef9-7c37ffd1aecc\",\n            \"478dbc65-73ae-4f78-9a7f-78492e71dee8\",\n            \"031bb6f3-8f85-4ccc-bcf4-576628492712\",\n            \"53705cf1-2aba-411d-989a-0ddf5929bb02\",\n            \"a8fa76fe-4127-4d13-916f-f93f5d9b887f\",\n            \"9cd4a85b-1756-455e-b1ae-bcc2dc41a952\",\n            \"21ee4e85-2ccd-443d-b32a-864519a101af\",\n            \"54fdded5-5244-4815-b3ec-8981629cde41\",\n            \"c3f7abe0-25a4-4f81-a115-c9e9dc0601b6\",\n            \"a46f78e4-1e96-46e4-ab3b-3c5f5ba10254\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5824203491211,\n      \"Text\": \"The Project Gutenberg EBook of Little Women, by Louisa M. Alcott\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6784153580665588,\n          \"Height\": 0.014731867238879204,\n          \"Left\": 0.12470433115959167,\n          \"Top\": 0.09174351394176483\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12470433115959167,\n            \"Y\": 0.09174351394176483\n          },\n          {\n            \"X\": 0.8031101226806641,\n            \"Y\": 0.09177064150571823\n          },\n          {\n            \"X\": 0.8031196594238281,\n            \"Y\": 0.10647537559270859\n          },\n          {\n            \"X\": 0.12471002340316772,\n            \"Y\": 0.1064472571015358\n          }\n        ]\n      },\n      \"Id\": \"d28b6d3e-9cf4-4f81-8851-dc09a0c59bf7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"49f78602-32c5-447a-bf87-bdd26dc86720\",\n            \"fdf56b68-4507-4ea9-a3be-708491ab5932\",\n            \"2dcffc20-d944-4ba4-9145-decba82d2587\",\n            \"ef276af5-98f1-4922-abf4-798194aad2d5\",\n            \"88224a86-2c41-4260-9944-0c0e10138320\",\n            \"04bb56ab-f652-4baf-9a74-ee3c7c008499\",\n            \"f5738b22-f86d-4569-a32d-d9d6b83f6bd0\",\n            \"4a8faf15-8add-4a92-9885-47a9b4bcff4d\",\n            \"223f9f13-ffd9-4f4e-b9d8-11045e65e5ff\",\n            \"6046b33a-b9e6-4377-8ef3-348e941aa505\",\n            \"2b3dd4fc-5992-4727-80cf-6010f467fb3d\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9582748413086,\n      \"Text\": \"This eBook is for the use of anyone anywhere at no cost and with\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.678389847278595,\n          \"Height\": 0.014413150027394295,\n          \"Left\": 0.12473888695240021,\n          \"Top\": 0.12401047348976135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12473888695240021,\n            \"Y\": 0.12401047348976135\n          },\n          {\n            \"X\": 0.803119421005249,\n            \"Y\": 0.12403977662324905\n          },\n          {\n            \"X\": 0.803128719329834,\n            \"Y\": 0.1384236216545105\n          },\n          {\n            \"X\": 0.12474445253610611,\n            \"Y\": 0.1383933573961258\n          }\n        ]\n      },\n      \"Id\": \"8e0de47a-cfa3-48cb-a580-ba8f7fe749d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9177461b-6fd7-4d97-9dd3-1aa9658798b7\",\n            \"4a35a941-7f3e-45a8-a68e-fdc9b4f847e2\",\n            \"fdbac265-6818-48de-b287-c7445e59ae23\",\n            \"8ef644c7-28e4-4bdb-98db-b6e94e6dffb9\",\n            \"29ff115c-8986-4761-b704-6ce255807241\",\n            \"b7ec2c27-54f9-4a4a-96a8-7fc7a93943f9\",\n            \"979ce159-bb71-4451-ba40-4e120718b958\",\n            \"8f7a5d6d-8a2d-4825-a3d1-78d69cd9d158\",\n            \"bc174f98-e76d-4816-9c36-d04affd3345b\",\n            \"aed577e7-8933-46f7-b9ec-c0fe6e69720a\",\n            \"3b4bee74-3725-4ee7-9531-ca88df20fecf\",\n            \"02c48c2a-169e-49c1-bd84-808852de8168\",\n            \"f91c814c-60d6-48c9-abf1-125abfcc59e6\",\n            \"1f68b3fa-3718-4ce6-9abf-e23575a43200\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76713562011719,\n      \"Text\": \"almost no restrictions whatsoever. You may copy it, give it away or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7207337617874146,\n          \"Height\": 0.01442725770175457,\n          \"Left\": 0.1252063810825348,\n          \"Top\": 0.14014412462711334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1252063810825348,\n            \"Y\": 0.14014412462711334\n          },\n          {\n            \"X\": 0.8459305763244629,\n            \"Y\": 0.1401764154434204\n          },\n          {\n            \"X\": 0.845940113067627,\n            \"Y\": 0.15457138419151306\n          },\n          {\n            \"X\": 0.1252119541168213,\n            \"Y\": 0.1545380800962448\n          }\n        ]\n      },\n      \"Id\": \"8a06f82d-955e-4365-88f1-0b275a8733e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b31130cf-6d9e-44e8-8463-106c5a3109b2\",\n            \"5211b241-7274-41a9-8220-2a31f150d9c9\",\n            \"202e0793-3f91-4518-8eb3-0c603322ae3f\",\n            \"64b7403a-5839-4424-b6b8-14fd753dc004\",\n            \"e6d72c56-152b-4da8-bf47-e854025d1e98\",\n            \"3322325b-e234-46e7-a5d7-b43de2085115\",\n            \"ad1541e7-5246-4e8e-96b4-8fd8be008d2c\",\n            \"28d7af04-d18b-467d-be80-8e4a4e704847\",\n            \"af4e0f75-6a67-4b27-bda2-bb4eb1ca5d87\",\n            \"66082249-9c85-4ebd-b39e-0a757bf60708\",\n            \"0ec364b3-f6ac-47e0-b5cd-98d3ed405eb0\",\n            \"123aee47-4a02-4df7-8ab3-72b4a740cdcc\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88935089111328,\n      \"Text\": \"re-use it under the terms of the Project Gutenberg License included\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7079135775566101,\n          \"Height\": 0.014687785878777504,\n          \"Left\": 0.126924067735672,\n          \"Top\": 0.1560557633638382\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.126924067735672,\n            \"Y\": 0.1560557633638382\n          },\n          {\n            \"X\": 0.8348279595375061,\n            \"Y\": 0.15608859062194824\n          },\n          {\n            \"X\": 0.8348376154899597,\n            \"Y\": 0.17074355483055115\n          },\n          {\n            \"X\": 0.12692974507808685,\n            \"Y\": 0.17070969939231873\n          }\n        ]\n      },\n      \"Id\": \"6f789b1e-7cdb-4d91-b6ec-283911f61c75\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"71a3d321-90e8-4826-9b16-d3d5d3ad1ad0\",\n            \"cc7ad37e-d3b2-4552-bb28-42ac78289ad4\",\n            \"50fa9a35-6567-478a-a841-980f287be2d1\",\n            \"68878737-3531-401f-bfd1-5d8c88017d58\",\n            \"0cb05695-e425-43bc-ac64-a1e152713bfd\",\n            \"07015c1a-e54f-4169-b6ba-192b5c963162\",\n            \"42d2f8d3-64a7-47c1-95c2-3ee9c8ce2779\",\n            \"f9be1f07-3ed8-4f49-b552-896082fc78fd\",\n            \"da94f16e-c4bc-4659-8383-75cc27531d8a\",\n            \"9da320a6-161f-4822-b5ca-756e69bd0e71\",\n            \"4c1439c6-af34-4e79-948f-75fb0c6e98e6\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.45563507080078,\n      \"Text\": \"with this eBook or online at www.gutenberg.org\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.48762083053588867,\n          \"Height\": 0.014809008687734604,\n          \"Left\": 0.12403848767280579,\n          \"Top\": 0.17215560376644135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12403848767280579,\n            \"Y\": 0.17215560376644135\n          },\n          {\n            \"X\": 0.611650824546814,\n            \"Y\": 0.17217899858951569\n          },\n          {\n            \"X\": 0.6116593480110168,\n            \"Y\": 0.18696461617946625\n          },\n          {\n            \"X\": 0.12404420971870422,\n            \"Y\": 0.1869405061006546\n          }\n        ]\n      },\n      \"Id\": \"cf190100-0f46-4a58-af82-4ce766d6db10\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"569d9a9a-f0ac-4a84-addb-9069d422f207\",\n            \"3108f858-0805-4f7b-a054-69c254be720d\",\n            \"348dc6a1-9a60-4d74-8474-56700c88ba77\",\n            \"a6b5da31-e412-46f9-8c31-70ff97a34ea4\",\n            \"259255b1-64cc-47eb-a149-208f82add477\",\n            \"5e16248f-1c2e-441b-b779-47878d4b089e\",\n            \"e20f9b49-9fec-4abe-ad7a-9d1d28526399\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.44364929199219,\n      \"Text\": \"Title: Little Women\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20188745856285095,\n          \"Height\": 0.012184018269181252,\n          \"Left\": 0.12436921149492264,\n          \"Top\": 0.22036802768707275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12436921149492264,\n            \"Y\": 0.22036802768707275\n          },\n          {\n            \"X\": 0.32625100016593933,\n            \"Y\": 0.22037866711616516\n          },\n          {\n            \"X\": 0.326256662607193,\n            \"Y\": 0.23255203664302826\n          },\n          {\n            \"X\": 0.1243739202618599,\n            \"Y\": 0.23254114389419556\n          }\n        ]\n      },\n      \"Id\": \"9d5e365c-6f8f-4bdb-9640-1d5faf9b1981\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5fab4f9d-1604-4acc-af46-2b358f3ce332\",\n            \"45f8addc-9f85-48fc-ab2c-5c57c72eb807\",\n            \"e9254000-92bb-4bc5-b487-8d9a3fd033d0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68794250488281,\n      \"Text\": \"or Meg, Jo, Beth, and Amy\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2646588087081909,\n          \"Height\": 0.014482866041362286,\n          \"Left\": 0.19961422681808472,\n          \"Top\": 0.23663535714149475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19961422681808472,\n            \"Y\": 0.23663535714149475\n          },\n          {\n            \"X\": 0.46426552534103394,\n            \"Y\": 0.236649751663208\n          },\n          {\n            \"X\": 0.46427303552627563,\n            \"Y\": 0.2511182129383087\n          },\n          {\n            \"X\": 0.19962024688720703,\n            \"Y\": 0.2511034607887268\n          }\n        ]\n      },\n      \"Id\": \"18977cdd-390c-41e6-b7a7-0fff7f6e5567\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d303d955-39ff-4c2c-ab09-38d4584c5d8f\",\n            \"e2d07098-0c55-47c3-b2ea-55560f1ce246\",\n            \"e09cbc46-fe33-4779-8959-2a73ff19b3a2\",\n            \"679d3cb1-207d-4763-9d38-f6e1fa2021cc\",\n            \"babdac6b-f40a-4b15-b20b-14f0f55ee52a\",\n            \"ee5906c5-bac2-46b2-9f1a-f75181d77d5d\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75563049316406,\n      \"Text\": \"Author: Louisa M. Alcott\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.25426387786865234,\n          \"Height\": 0.01197012048214674,\n          \"Left\": 0.12448843568563461,\n          \"Top\": 0.2686915397644043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12448843568563461,\n            \"Y\": 0.2686915397644043\n          },\n          {\n            \"X\": 0.37874650955200195,\n            \"Y\": 0.26870617270469666\n          },\n          {\n            \"X\": 0.37875232100486755,\n            \"Y\": 0.2806616425514221\n          },\n          {\n            \"X\": 0.1244930624961853,\n            \"Y\": 0.2806467115879059\n          }\n        ]\n      },\n      \"Id\": \"acfb92f4-4841-478c-8671-d6ccd687a923\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"299ae9f2-c13f-4259-a36c-8427ae589676\",\n            \"1f23d0fa-e767-4317-8a01-944dce65d5bc\",\n            \"029744f4-6631-4a12-a0ff-80d0090fd589\",\n            \"2579b085-dd0e-47b6-8c46-344a3fc74e8b\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.37273406982422,\n      \"Text\": \"Illustrator: Frank T. Merrill\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30629149079322815,\n          \"Height\": 0.012423424050211906,\n          \"Left\": 0.1257578432559967,\n          \"Top\": 0.30046817660331726\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1257578432559967,\n            \"Y\": 0.30046817660331726\n          },\n          {\n            \"X\": 0.43204307556152344,\n            \"Y\": 0.3004867732524872\n          },\n          {\n            \"X\": 0.43204933404922485,\n            \"Y\": 0.3128916025161743\n          },\n          {\n            \"X\": 0.12576265633106232,\n            \"Y\": 0.31287264823913574\n          }\n        ]\n      },\n      \"Id\": \"d8d51a6e-01a8-4e80-8c9b-840d8a005f8d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"58cc0cb4-c8dd-4bf2-b85a-959d6eb9fcd7\",\n            \"1f93c171-b8f2-4ef7-930c-f549e86c8aab\",\n            \"7da48d71-1051-4f33-b51e-f4db927ba0fc\",\n            \"2d334c40-6332-4ef6-9928-d18dd2696489\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.02823638916016,\n      \"Text\": \"Release Date: August 16, 2011 [EBook #37106]\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4631862938404083,\n          \"Height\": 0.014931567013263702,\n          \"Left\": 0.1252949982881546,\n          \"Top\": 0.33220595121383667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1252949982881546,\n            \"Y\": 0.33220595121383667\n          },\n          {\n            \"X\": 0.5884729027748108,\n            \"Y\": 0.33223551511764526\n          },\n          {\n            \"X\": 0.5884813070297241,\n            \"Y\": 0.34713754057884216\n          },\n          {\n            \"X\": 0.12530077993869781,\n            \"Y\": 0.34710729122161865\n          }\n        ]\n      },\n      \"Id\": \"ac97afcc-96bd-44d8-84e0-99afe9e2eec7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c21a8753-45c9-4421-a763-14e6b516b4cc\",\n            \"9a89e975-05a2-4407-863a-13398b65fd58\",\n            \"7ec945bb-4f81-48bc-8c54-df1a0cbe7c53\",\n            \"bd9fc150-78aa-4bb1-9f76-ea4cb84534fa\",\n            \"fd2f7185-f31b-4bb9-9bf9-b17703a62bb6\",\n            \"3fc34bc8-f283-42a2-bdd1-16d9794413a4\",\n            \"85cea4c1-77e7-428a-b2c7-fd843fe70732\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.77337646484375,\n      \"Text\": \"Last Update: August 8, 2017\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2958851158618927,\n          \"Height\": 0.014574122615158558,\n          \"Left\": 0.12581388652324677,\n          \"Top\": 0.34868109226226807\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12581388652324677,\n            \"Y\": 0.34868109226226807\n          },\n          {\n            \"X\": 0.4216917157173157,\n            \"Y\": 0.34870046377182007\n          },\n          {\n            \"X\": 0.42169901728630066,\n            \"Y\": 0.36325520277023315\n          },\n          {\n            \"X\": 0.12581951916217804,\n            \"Y\": 0.3632354140281677\n          }\n        ]\n      },\n      \"Id\": \"0cf3da5d-b975-4c8d-91f8-2c99ea9c22c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9ea1fa5f-88d7-47d1-a7db-54ce809fc2fe\",\n            \"a568bb8a-306f-4d22-899e-f6b54cc2cef5\",\n            \"d6e32598-d18f-475b-a80b-567e933bcd3d\",\n            \"a0c8e7db-6e55-42f1-a157-23e393523306\",\n            \"42b8f316-a439-46a6-bb37-efd015f9ddfc\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.27375030517578,\n      \"Text\": \"Language: English\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17914673686027527,\n          \"Height\": 0.014601152390241623,\n          \"Left\": 0.12586833536624908,\n          \"Top\": 0.38094887137413025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12586833536624908,\n            \"Y\": 0.38094887137413025\n          },\n          {\n            \"X\": 0.3050084114074707,\n            \"Y\": 0.38096117973327637\n          },\n          {\n            \"X\": 0.30501505732536316,\n            \"Y\": 0.39555004239082336\n          },\n          {\n            \"X\": 0.12587399780750275,\n            \"Y\": 0.39553746581077576\n          }\n        ]\n      },\n      \"Id\": \"6d64da69-120f-42b9-8022-bbb48773fad2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a069f881-363b-4a26-8461-d281fbf71751\",\n            \"3543829b-f74c-4686-a5ff-53cd24a30bc4\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85054779052734,\n      \"Text\": \"START OF THIS PROJECT GUTENBERG EBOOK LITTLE WOMEN\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5294092893600464,\n          \"Height\": 0.01184502150863409,\n          \"Left\": 0.1681363880634308,\n          \"Top\": 0.42949384450912476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1681363880634308,\n            \"Y\": 0.42949384450912476\n          },\n          {\n            \"X\": 0.6975384950637817,\n            \"Y\": 0.4295327365398407\n          },\n          {\n            \"X\": 0.6975456476211548,\n            \"Y\": 0.4413388669490814\n          },\n          {\n            \"X\": 0.16814115643501282,\n            \"Y\": 0.44129934906959534\n          }\n        ]\n      },\n      \"Id\": \"d09adea2-ba62-4487-aef9-7c37ffd1aecc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"494354d8-a120-406e-9f10-7dec8344a7ce\",\n            \"8e0d7bb5-93a2-44c5-9f76-fb916d369913\",\n            \"da61db28-9431-4002-8749-87cd4ac75ac1\",\n            \"e284e80d-105d-424c-a228-9ec9dec9a13c\",\n            \"030e4184-b1b8-45d5-929b-451d26639e0d\",\n            \"097a44bd-9795-4fda-ae89-cd6757f7f98b\",\n            \"1b35af40-db37-453a-8c03-3726557d2e24\",\n            \"9e203e2d-d260-40fb-8d3a-ca79411924b0\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85802459716797,\n      \"Text\": \"Produced by David Edwards, Ernest Schaal, Robert Homa and the\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6460670232772827,\n          \"Height\": 0.014459502883255482,\n          \"Left\": 0.12562212347984314,\n          \"Top\": 0.5098851919174194\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12562212347984314,\n            \"Y\": 0.5098851919174194\n          },\n          {\n            \"X\": 0.7716799974441528,\n            \"Y\": 0.5099377632141113\n          },\n          {\n            \"X\": 0.7716891765594482,\n            \"Y\": 0.5243446826934814\n          },\n          {\n            \"X\": 0.12562769651412964,\n            \"Y\": 0.5242911577224731\n          }\n        ]\n      },\n      \"Id\": \"478dbc65-73ae-4f78-9a7f-78492e71dee8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8ecccd25-6a0b-440f-b2dd-f8b580e697ee\",\n            \"752f065a-bbde-4180-b666-5fc0b58ac58e\",\n            \"250addec-aa02-4f57-ab4e-3bf3130ae9a6\",\n            \"5394cefd-6a55-43fd-93ab-28ab995100ab\",\n            \"96e31dd9-85bc-42bc-b7c8-fbc2dadae54e\",\n            \"b319eb75-30a6-43f6-b450-6504234e5f3e\",\n            \"314f129e-6721-4976-a4bd-35c3692f862d\",\n            \"1ce99f91-03cd-43ac-a711-3b0e89b20576\",\n            \"cc10f71b-b2a3-4953-b6ba-febe607cc50a\",\n            \"6913f967-f03e-4f97-a775-5c245e71f3ba\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.58919525146484,\n      \"Text\": \"Online Distributed Proofreading Team at http://www.pgdp.net\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6238912343978882,\n          \"Height\": 0.014592915773391724,\n          \"Left\": 0.12568549811840057,\n          \"Top\": 0.5257186889648438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12568549811840057,\n            \"Y\": 0.5257186889648438\n          },\n          {\n            \"X\": 0.7495676279067993,\n            \"Y\": 0.5257704257965088\n          },\n          {\n            \"X\": 0.74957674741745,\n            \"Y\": 0.5403115749359131\n          },\n          {\n            \"X\": 0.12569113075733185,\n            \"Y\": 0.5402588844299316\n          }\n        ]\n      },\n      \"Id\": \"031bb6f3-8f85-4ccc-bcf4-576628492712\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e872f4bb-c721-4987-9bd5-76b667ee6906\",\n            \"43e795da-2633-4b10-89cf-189f15069a0e\",\n            \"5e14c23e-2239-4d7e-bcea-b0cfb4b9a056\",\n            \"5f89c1e0-220e-4513-a550-d3b707e5fc85\",\n            \"cc1982f1-f1d9-4a44-8ff8-e8ee64441c16\",\n            \"5617e30e-2571-4a47-85eb-1dbbfd0cff29\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83601379394531,\n      \"Text\": \"(This file was produced from images generously made available\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.643335223197937,\n          \"Height\": 0.015047180466353893,\n          \"Left\": 0.12815941870212555,\n          \"Top\": 0.5415645837783813\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12815941870212555,\n            \"Y\": 0.5415645837783813\n          },\n          {\n            \"X\": 0.7714850902557373,\n            \"Y\": 0.5416190028190613\n          },\n          {\n            \"X\": 0.7714946269989014,\n            \"Y\": 0.5566117763519287\n          },\n          {\n            \"X\": 0.12816524505615234,\n            \"Y\": 0.5565564036369324\n          }\n        ]\n      },\n      \"Id\": \"53705cf1-2aba-411d-989a-0ddf5929bb02\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"95df7ac5-102f-4088-9ab7-961107f548e2\",\n            \"8774a116-4993-4eb3-a07f-4da8a7e6811c\",\n            \"2a61d4af-2c5c-47ed-af2c-8494c84997db\",\n            \"89230316-acaa-4b52-abde-d21ba7d1130b\",\n            \"1a7bd977-3648-42f2-b365-60bbb6142dc6\",\n            \"cb246f25-306c-498f-98b7-cec9350686bd\",\n            \"a4ba8d0e-cfc3-47d2-95c0-f1861b09b6f8\",\n            \"64905673-0189-476b-a39b-6146e8f2369b\",\n            \"57e19e47-2a3d-4a32-81b1-6e4e5e661afc\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.66199493408203,\n      \"Text\": \"by The Internet Archive)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.25071263313293457,\n          \"Height\": 0.01482703909277916,\n          \"Left\": 0.1259590983390808,\n          \"Top\": 0.5577267408370972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1259590983390808,\n            \"Y\": 0.5577267408370972\n          },\n          {\n            \"X\": 0.37666457891464233,\n            \"Y\": 0.5577483773231506\n          },\n          {\n            \"X\": 0.3766717314720154,\n            \"Y\": 0.572553813457489\n          },\n          {\n            \"X\": 0.12596483528614044,\n            \"Y\": 0.5725318193435669\n          }\n        ]\n      },\n      \"Id\": \"a8fa76fe-4127-4d13-916f-f93f5d9b887f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bada3d6a-e497-4914-a56b-8d441d6883c9\",\n            \"af279668-bf6a-445a-a609-35995f08f0b9\",\n            \"74dd7501-a6da-41d4-bfbb-0aa0848f5f4b\",\n            \"986dc803-6798-48f0-bfea-31398af84acf\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.46971130371094,\n      \"Text\": \"[Illustration: LITTLE WOMEN\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2827244997024536,\n          \"Height\": 0.012694679200649261,\n          \"Left\": 0.3616480529308319,\n          \"Top\": 0.7184162139892578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3616480529308319,\n            \"Y\": 0.7184162139892578\n          },\n          {\n            \"X\": 0.644365131855011,\n            \"Y\": 0.7184450626373291\n          },\n          {\n            \"X\": 0.6443725824356079,\n            \"Y\": 0.7311108708381653\n          },\n          {\n            \"X\": 0.3616541028022766,\n            \"Y\": 0.7310816645622253\n          }\n        ]\n      },\n      \"Id\": \"9cd4a85b-1756-455e-b1ae-bcc2dc41a952\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4f55af36-6952-4f49-a38e-ca5367f7a24e\",\n            \"e14095ae-4b74-45bf-9e46-19b3c75ec457\",\n            \"9fa7658a-7586-49b2-b0a9-a109fcb42710\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.42855834960938,\n      \"Text\": \"MEG, J0, BETH, AND AMY\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23412007093429565,\n          \"Height\": 0.013577744364738464,\n          \"Left\": 0.3893165588378906,\n          \"Top\": 0.734951376914978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3893165588378906,\n            \"Y\": 0.734951376914978\n          },\n          {\n            \"X\": 0.6234287619590759,\n            \"Y\": 0.7349756360054016\n          },\n          {\n            \"X\": 0.6234366297721863,\n            \"Y\": 0.7485290765762329\n          },\n          {\n            \"X\": 0.3893231749534607,\n            \"Y\": 0.7485045194625854\n          }\n        ]\n      },\n      \"Id\": \"21ee4e85-2ccd-443d-b32a-864519a101af\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b3e0cf25-22e8-4787-98cf-753900aded35\",\n            \"0ff412a2-89db-444a-897d-6478b816e8c0\",\n            \"35d857d5-2fd7-4eef-a896-7c275868295c\",\n            \"7e8cc9d9-a07e-4064-b4ec-a00dcdab870d\",\n            \"04739517-6a1d-4971-b77f-c8b96f8f0cf3\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.80130004882812,\n      \"Text\": \"LOUISA M. ALCOTT]\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17627184092998505,\n          \"Height\": 0.012744633480906487,\n          \"Left\": 0.41187405586242676,\n          \"Top\": 0.7507489919662476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41187405586242676,\n            \"Y\": 0.7507489919662476\n          },\n          {\n            \"X\": 0.5881386995315552,\n            \"Y\": 0.7507675886154175\n          },\n          {\n            \"X\": 0.588145911693573,\n            \"Y\": 0.7634936571121216\n          },\n          {\n            \"X\": 0.41188040375709534,\n            \"Y\": 0.7634748220443726\n          }\n        ]\n      },\n      \"Id\": \"54fdded5-5244-4815-b3ec-8981629cde41\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6b8efe27-72a2-44a2-8cd8-04b27a3aac14\",\n            \"bdb47662-38e3-4e84-9899-41e7a8eec2dc\",\n            \"6c6176bf-2388-4284-9f45-b872f31edb00\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.49404907226562,\n      \"Text\": \"LITTLE WOMEN.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1342238187789917,\n          \"Height\": 0.011974675580859184,\n          \"Left\": 0.4434536397457123,\n          \"Top\": 0.8311441540718079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4434536397457123,\n            \"Y\": 0.8311441540718079\n          },\n          {\n            \"X\": 0.5776707530021667,\n            \"Y\": 0.8311593532562256\n          },\n          {\n            \"X\": 0.5776774287223816,\n            \"Y\": 0.8431188464164734\n          },\n          {\n            \"X\": 0.44345971941947937,\n            \"Y\": 0.8431034684181213\n          }\n        ]\n      },\n      \"Id\": \"c3f7abe0-25a4-4f81-a115-c9e9dc0601b6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"491d4fd6-f648-43e9-8578-d8438589311f\",\n            \"e6a75d7a-77c1-476d-ad56-791ef7ee06ec\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.13748168945312,\n      \"Text\": \"[Illustration: \\\"They all drew to the fire, mother in the big chair,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7042186856269836,\n          \"Height\": 0.01518675684928894,\n          \"Left\": 0.12731130421161652,\n          \"Top\": 0.8785655498504639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12731130421161652,\n            \"Y\": 0.8785655498504639\n          },\n          {\n            \"X\": 0.8315200209617615,\n            \"Y\": 0.8786486387252808\n          },\n          {\n            \"X\": 0.831529974937439,\n            \"Y\": 0.8937522768974304\n          },\n          {\n            \"X\": 0.1273171752691269,\n            \"Y\": 0.8936681747436523\n          }\n        ]\n      },\n      \"Id\": \"a46f78e4-1e96-46e4-ab3b-3c5f5ba10254\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"66c2a8ea-d085-4420-a106-be9dd63e3832\",\n            \"7c31d167-a6bf-46b9-8706-7cb88b0da0ab\",\n            \"ffd0381b-13fc-400f-a1c5-9dcd2b86fb6d\",\n            \"0d3ac255-2975-4737-8a6f-5f28e9c823b3\",\n            \"d4e2eae6-a1af-4116-93a4-55f0b25f3d96\",\n            \"ce33e80b-613d-4d82-9946-3d084559ca0f\",\n            \"d24adc10-a85f-4315-bd55-80cda1ca543b\",\n            \"2ad4769e-2af5-4174-bbb5-af537ad09759\",\n            \"993ba9ce-86ec-48ee-86b1-75ca4269e773\",\n            \"4bd57d1b-8be3-4552-ab5b-d17cea37c9ae\",\n            \"92fb137f-be70-4508-851a-aa3c800af8de\",\n            \"1d1f67e4-cf80-49e2-a09b-7dae3c92b88c\"\n          ]\n        }\n      ],\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98185729980469,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032253462821245193,\n          \"Height\": 0.011946949176490307,\n          \"Left\": 0.12470442056655884,\n          \"Top\": 0.09197312593460083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12470442056655884,\n            \"Y\": 0.09197312593460083\n          },\n          {\n            \"X\": 0.1569531112909317,\n            \"Y\": 0.0919744223356247\n          },\n          {\n            \"X\": 0.15695787966251373,\n            \"Y\": 0.10392007976770401\n          },\n          {\n            \"X\": 0.12470904737710953,\n            \"Y\": 0.10391875356435776\n          }\n        ]\n      },\n      \"Id\": \"49f78602-32c5-447a-bf87-bdd26dc86720\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9629898071289,\n      \"Text\": \"Project\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07288632541894913,\n          \"Height\": 0.014352689497172832,\n          \"Left\": 0.1683003008365631,\n          \"Top\": 0.0920993909239769\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1683003008365631,\n            \"Y\": 0.0920993909239769\n          },\n          {\n            \"X\": 0.2411804348230362,\n            \"Y\": 0.09210231155157089\n          },\n          {\n            \"X\": 0.24118663370609283,\n            \"Y\": 0.1064520850777626\n          },\n          {\n            \"X\": 0.16830609738826752,\n            \"Y\": 0.10644906014204025\n          }\n        ]\n      },\n      \"Id\": \"fdf56b68-4507-4ea9-a3be-708491ab5932\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.26093292236328,\n      \"Text\": \"Gutenberg\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09539297968149185,\n          \"Height\": 0.01458269078284502,\n          \"Left\": 0.25211501121520996,\n          \"Top\": 0.09183619171380997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25211501121520996,\n            \"Y\": 0.09183619171380997\n          },\n          {\n            \"X\": 0.34750109910964966,\n            \"Y\": 0.09184000641107559\n          },\n          {\n            \"X\": 0.3475079834461212,\n            \"Y\": 0.10641887784004211\n          },\n          {\n            \"X\": 0.25212135910987854,\n            \"Y\": 0.10641492903232574\n          }\n        ]\n      },\n      \"Id\": \"2dcffc20-d944-4ba4-9145-decba82d2587\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.28424072265625,\n      \"Text\": \"EBook\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05324438959360123,\n          \"Height\": 0.011763758026063442,\n          \"Left\": 0.35867801308631897,\n          \"Top\": 0.09207501262426376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35867801308631897,\n            \"Y\": 0.09207501262426376\n          },\n          {\n            \"X\": 0.4119165539741516,\n            \"Y\": 0.09207714349031448\n          },\n          {\n            \"X\": 0.411922425031662,\n            \"Y\": 0.10383877158164978\n          },\n          {\n            \"X\": 0.35868364572525024,\n            \"Y\": 0.10383657366037369\n          }\n        ]\n      },\n      \"Id\": \"ef276af5-98f1-4922-abf4-798194aad2d5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98011779785156,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02070610597729683,\n          \"Height\": 0.01204685028642416,\n          \"Left\": 0.42209717631340027,\n          \"Top\": 0.09177205711603165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42209717631340027,\n            \"Y\": 0.09177205711603165\n          },\n          {\n            \"X\": 0.44279715418815613,\n            \"Y\": 0.0917728841304779\n          },\n          {\n            \"X\": 0.442803293466568,\n            \"Y\": 0.10381890833377838\n          },\n          {\n            \"X\": 0.42210322618484497,\n            \"Y\": 0.10381805896759033\n          }\n        ]\n      },\n      \"Id\": \"88224a86-2c41-4260-9944-0c0e10138320\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.55509185791016,\n      \"Text\": \"Little\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06327427923679352,\n          \"Height\": 0.012292372062802315,\n          \"Left\": 0.4540020525455475,\n          \"Top\": 0.0917566791176796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4540020525455475,\n            \"Y\": 0.0917566791176796\n          },\n          {\n            \"X\": 0.5172697305679321,\n            \"Y\": 0.09175921231508255\n          },\n          {\n            \"X\": 0.5172763466835022,\n            \"Y\": 0.10404905676841736\n          },\n          {\n            \"X\": 0.4540083408355713,\n            \"Y\": 0.10404644906520844\n          }\n        ]\n      },\n      \"Id\": \"04bb56ab-f652-4baf-9a74-ee3c7c008499\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.21513366699219,\n      \"Text\": \"Women,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.061077117919921875,\n          \"Height\": 0.013731176033616066,\n          \"Left\": 0.5268426537513733,\n          \"Top\": 0.09213914722204208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5268426537513733,\n            \"Y\": 0.09213914722204208\n          },\n          {\n            \"X\": 0.5879120230674744,\n            \"Y\": 0.09214159846305847\n          },\n          {\n            \"X\": 0.5879197716712952,\n            \"Y\": 0.1058703288435936\n          },\n          {\n            \"X\": 0.5268501043319702,\n            \"Y\": 0.10586779564619064\n          }\n        ]\n      },\n      \"Id\": \"f5738b22-f86d-4569-a32d-d9d6b83f6bd0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99311828613281,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02027801051735878,\n          \"Height\": 0.014339434914290905,\n          \"Left\": 0.6027265191078186,\n          \"Top\": 0.09193013608455658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6027265191078186,\n            \"Y\": 0.09193013608455658\n          },\n          {\n            \"X\": 0.6229962706565857,\n            \"Y\": 0.09193094819784164\n          },\n          {\n            \"X\": 0.6230045557022095,\n            \"Y\": 0.10626957565546036\n          },\n          {\n            \"X\": 0.6027347445487976,\n            \"Y\": 0.1062687337398529\n          }\n        ]\n      },\n      \"Id\": \"4a8faf15-8add-4a92-9885-47a9b4bcff4d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67681884765625,\n      \"Text\": \"Louisa\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06279152631759644,\n          \"Height\": 0.011993993073701859,\n          \"Left\": 0.6345305442810059,\n          \"Top\": 0.09197744727134705\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6345305442810059,\n            \"Y\": 0.09197744727134705\n          },\n          {\n            \"X\": 0.6973147988319397,\n            \"Y\": 0.09197995811700821\n          },\n          {\n            \"X\": 0.6973220705986023,\n            \"Y\": 0.1039714440703392\n          },\n          {\n            \"X\": 0.6345375180244446,\n            \"Y\": 0.10396885126829147\n          }\n        ]\n      },\n      \"Id\": \"223f9f13-ffd9-4f4e-b9d8-11045e65e5ff\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61068725585938,\n      \"Text\": \"M.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01861344277858734,\n          \"Height\": 0.011691214516758919,\n          \"Left\": 0.7073769569396973,\n          \"Top\": 0.09198266267776489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7073769569396973,\n            \"Y\": 0.09198266267776489\n          },\n          {\n            \"X\": 0.725983202457428,\n            \"Y\": 0.09198340773582458\n          },\n          {\n            \"X\": 0.7259904146194458,\n            \"Y\": 0.10367387533187866\n          },\n          {\n            \"X\": 0.7073841094970703,\n            \"Y\": 0.10367310792207718\n          }\n        ]\n      },\n      \"Id\": \"6046b33a-b9e6-4377-8ef3-348e941aa505\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88565063476562,\n      \"Text\": \"Alcott\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06424058973789215,\n          \"Height\": 0.012197570875287056,\n          \"Left\": 0.7388774752616882,\n          \"Top\": 0.09177902340888977\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7388774752616882,\n            \"Y\": 0.09177902340888977\n          },\n          {\n            \"X\": 0.8031101822853088,\n            \"Y\": 0.09178159385919571\n          },\n          {\n            \"X\": 0.8031180500984192,\n            \"Y\": 0.10397659242153168\n          },\n          {\n            \"X\": 0.7388850450515747,\n            \"Y\": 0.10397394746541977\n          }\n        ]\n      },\n      \"Id\": \"2b3dd4fc-5992-4727-80cf-6010f467fb3d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90442657470703,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042116742581129074,\n          \"Height\": 0.012110765092074871,\n          \"Left\": 0.124738909304142,\n          \"Top\": 0.12407619506120682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.124738909304142,\n            \"Y\": 0.12407619506120682\n          },\n          {\n            \"X\": 0.1668507605791092,\n            \"Y\": 0.12407801300287247\n          },\n          {\n            \"X\": 0.16685564815998077,\n            \"Y\": 0.13618695735931396\n          },\n          {\n            \"X\": 0.12474359571933746,\n            \"Y\": 0.13618509471416473\n          }\n        ]\n      },\n      \"Id\": \"9177461b-6fd7-4d97-9dd3-1aa9658798b7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85327911376953,\n      \"Text\": \"eBook\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05295820161700249,\n          \"Height\": 0.011816482059657574,\n          \"Left\": 0.1784723401069641,\n          \"Top\": 0.12424349784851074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1784723401069641,\n            \"Y\": 0.12424349784851074\n          },\n          {\n            \"X\": 0.231425479054451,\n            \"Y\": 0.124245785176754\n          },\n          {\n            \"X\": 0.2314305305480957,\n            \"Y\": 0.1360599845647812\n          },\n          {\n            \"X\": 0.17847715318202972,\n            \"Y\": 0.13605763018131256\n          }\n        ]\n      },\n      \"Id\": \"4a35a941-7f3e-45a8-a68e-fdc9b4f847e2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95958709716797,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019466020166873932,\n          \"Height\": 0.012210996821522713,\n          \"Left\": 0.2428804636001587,\n          \"Top\": 0.12407585233449936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2428804636001587,\n            \"Y\": 0.12407585233449936\n          },\n          {\n            \"X\": 0.26234111189842224,\n            \"Y\": 0.12407669425010681\n          },\n          {\n            \"X\": 0.262346476316452,\n            \"Y\": 0.13628685474395752\n          },\n          {\n            \"X\": 0.2428857386112213,\n            \"Y\": 0.13628599047660828\n          }\n        ]\n      },\n      \"Id\": \"fdbac265-6818-48de-b287-c7445e59ae23\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9891586303711,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03106137178838253,\n          \"Height\": 0.012066309340298176,\n          \"Left\": 0.27434563636779785,\n          \"Top\": 0.12401693314313889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27434563636779785,\n            \"Y\": 0.12401693314313889\n          },\n          {\n            \"X\": 0.3054015040397644,\n            \"Y\": 0.12401827424764633\n          },\n          {\n            \"X\": 0.30540701746940613,\n            \"Y\": 0.13608324527740479\n          },\n          {\n            \"X\": 0.27435100078582764,\n            \"Y\": 0.13608185946941376\n          }\n        ]\n      },\n      \"Id\": \"8ef644c7-28e4-4bdb-98db-b6e94e6dffb9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98200225830078,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03147084638476372,\n          \"Height\": 0.011967144906520844,\n          \"Left\": 0.31629183888435364,\n          \"Top\": 0.12414346635341644\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31629183888435364,\n            \"Y\": 0.12414346635341644\n          },\n          {\n            \"X\": 0.3477570414543152,\n            \"Y\": 0.12414482235908508\n          },\n          {\n            \"X\": 0.34776270389556885,\n            \"Y\": 0.1361106038093567\n          },\n          {\n            \"X\": 0.31629735231399536,\n            \"Y\": 0.13610921800136566\n          }\n        ]\n      },\n      \"Id\": \"29ff115c-8986-4761-b704-6ce255807241\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97486877441406,\n      \"Text\": \"use\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03128095716238022,\n          \"Height\": 0.009507673792541027,\n          \"Left\": 0.35881659388542175,\n          \"Top\": 0.1266549676656723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35881659388542175,\n            \"Y\": 0.1266549676656723\n          },\n          {\n            \"X\": 0.3900929093360901,\n            \"Y\": 0.12665633857250214\n          },\n          {\n            \"X\": 0.39009755849838257,\n            \"Y\": 0.1361626535654068\n          },\n          {\n            \"X\": 0.35882115364074707,\n            \"Y\": 0.13616125285625458\n          }\n        ]\n      },\n      \"Id\": \"b7ec2c27-54f9-4a4a-96a8-7fc7a93943f9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98521423339844,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020854821428656578,\n          \"Height\": 0.011948571540415287,\n          \"Left\": 0.4008351266384125,\n          \"Top\": 0.1240292564034462\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4008351266384125,\n            \"Y\": 0.1240292564034462\n          },\n          {\n            \"X\": 0.4216839671134949,\n            \"Y\": 0.12403015792369843\n          },\n          {\n            \"X\": 0.4216899573802948,\n            \"Y\": 0.1359778344631195\n          },\n          {\n            \"X\": 0.40084102749824524,\n            \"Y\": 0.1359768956899643\n          }\n        ]\n      },\n      \"Id\": \"979ce159-bb71-4451-ba40-4e120718b958\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97760772705078,\n      \"Text\": \"anyone\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06341002881526947,\n          \"Height\": 0.012020062655210495,\n          \"Left\": 0.43270328640937805,\n          \"Top\": 0.1263626515865326\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43270328640937805,\n            \"Y\": 0.1263626515865326\n          },\n          {\n            \"X\": 0.49610695242881775,\n            \"Y\": 0.12636540830135345\n          },\n          {\n            \"X\": 0.4961133301258087,\n            \"Y\": 0.1383827179670334\n          },\n          {\n            \"X\": 0.43270936608314514,\n            \"Y\": 0.13837988674640656\n          }\n        ]\n      },\n      \"Id\": \"8f7a5d6d-8a2d-4825-a3d1-78d69cd9d158\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96337127685547,\n      \"Text\": \"anywhere\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08446154743432999,\n          \"Height\": 0.013943412341177464,\n          \"Left\": 0.5067769289016724,\n          \"Top\": 0.12447075545787811\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5067769289016724,\n            \"Y\": 0.12447075545787811\n          },\n          {\n            \"X\": 0.591230571269989,\n            \"Y\": 0.1244744062423706\n          },\n          {\n            \"X\": 0.5912384390830994,\n            \"Y\": 0.1384141743183136\n          },\n          {\n            \"X\": 0.5067843198776245,\n            \"Y\": 0.13841040432453156\n          }\n        ]\n      },\n      \"Id\": \"bc174f98-e76d-4816-9c36-d04affd3345b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97061920166016,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020520135760307312,\n          \"Height\": 0.01115378737449646,\n          \"Left\": 0.6021699905395508,\n          \"Top\": 0.12497767806053162\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6021699905395508,\n            \"Y\": 0.12497767806053162\n          },\n          {\n            \"X\": 0.6226837038993835,\n            \"Y\": 0.12497856467962265\n          },\n          {\n            \"X\": 0.6226901412010193,\n            \"Y\": 0.13613146543502808\n          },\n          {\n            \"X\": 0.6021763682365417,\n            \"Y\": 0.13613055646419525\n          }\n        ]\n      },\n      \"Id\": \"aed577e7-8933-46f7-b9ec-c0fe6e69720a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9630355834961,\n      \"Text\": \"no\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02037271484732628,\n          \"Height\": 0.009682368487119675,\n          \"Left\": 0.6342255473136902,\n          \"Top\": 0.1263587325811386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6342255473136902,\n            \"Y\": 0.1263587325811386\n          },\n          {\n            \"X\": 0.6545925140380859,\n            \"Y\": 0.12635961174964905\n          },\n          {\n            \"X\": 0.6545982360839844,\n            \"Y\": 0.13604110479354858\n          },\n          {\n            \"X\": 0.6342311501502991,\n            \"Y\": 0.13604019582271576\n          }\n        ]\n      },\n      \"Id\": \"3b4bee74-3725-4ee7-9531-ca88df20fecf\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95531463623047,\n      \"Text\": \"cost\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0406845286488533,\n          \"Height\": 0.011128291487693787,\n          \"Left\": 0.6668071746826172,\n          \"Top\": 0.12496329098939896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6668071746826172,\n            \"Y\": 0.12496329098939896\n          },\n          {\n            \"X\": 0.7074849009513855,\n            \"Y\": 0.12496504932641983\n          },\n          {\n            \"X\": 0.7074916958808899,\n            \"Y\": 0.13609157502651215\n          },\n          {\n            \"X\": 0.6668137907981873,\n            \"Y\": 0.1360897719860077\n          }\n        ]\n      },\n      \"Id\": \"02c48c2a-169e-49c1-bd84-808852de8168\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99183654785156,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031000914052128792,\n          \"Height\": 0.01192591805011034,\n          \"Left\": 0.7189659476280212,\n          \"Top\": 0.12419217079877853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7189659476280212,\n            \"Y\": 0.12419217079877853\n          },\n          {\n            \"X\": 0.749959409236908,\n            \"Y\": 0.12419351190328598\n          },\n          {\n            \"X\": 0.7499668598175049,\n            \"Y\": 0.136118084192276\n          },\n          {\n            \"X\": 0.7189732789993286,\n            \"Y\": 0.13611671328544617\n          }\n        ]\n      },\n      \"Id\": \"f91c814c-60d6-48c9-abf1-125abfcc59e6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94554901123047,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0432351715862751,\n          \"Height\": 0.011935706250369549,\n          \"Left\": 0.7598920464515686,\n          \"Top\": 0.12410609424114227\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7598920464515686,\n            \"Y\": 0.12410609424114227\n          },\n          {\n            \"X\": 0.8031194806098938,\n            \"Y\": 0.1241079643368721\n          },\n          {\n            \"X\": 0.8031271696090698,\n            \"Y\": 0.1360418051481247\n          },\n          {\n            \"X\": 0.7598995566368103,\n            \"Y\": 0.1360398828983307\n          }\n        ]\n      },\n      \"Id\": \"1f68b3fa-3718-4ce6-9abf-e23575a43200\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89140319824219,\n      \"Text\": \"almost\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06302995979785919,\n          \"Height\": 0.012101679109036922,\n          \"Left\": 0.1252063810825348,\n          \"Top\": 0.14014412462711334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1252063810825348,\n            \"Y\": 0.14014412462711334\n          },\n          {\n            \"X\": 0.18823136389255524,\n            \"Y\": 0.14014695584774017\n          },\n          {\n            \"X\": 0.18823634088039398,\n            \"Y\": 0.15224580466747284\n          },\n          {\n            \"X\": 0.12521107494831085,\n            \"Y\": 0.15224291384220123\n          }\n        ]\n      },\n      \"Id\": \"b31130cf-6d9e-44e8-8463-106c5a3109b2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9667739868164,\n      \"Text\": \"no\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020822593942284584,\n          \"Height\": 0.009741418063640594,\n          \"Left\": 0.19961482286453247,\n          \"Top\": 0.1425769180059433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19961482286453247,\n            \"Y\": 0.1425769180059433\n          },\n          {\n            \"X\": 0.2204332947731018,\n            \"Y\": 0.1425778567790985\n          },\n          {\n            \"X\": 0.2204374223947525,\n            \"Y\": 0.1523183286190033\n          },\n          {\n            \"X\": 0.1996188759803772,\n            \"Y\": 0.1523173749446869\n          }\n        ]\n      },\n      \"Id\": \"5211b241-7274-41a9-8220-2a31f150d9c9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71755981445312,\n      \"Text\": \"restrictions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1249636635184288,\n          \"Height\": 0.011450065299868584,\n          \"Left\": 0.2328728586435318,\n          \"Top\": 0.1404285877943039\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2328728586435318,\n            \"Y\": 0.1404285877943039\n          },\n          {\n            \"X\": 0.35783106088638306,\n            \"Y\": 0.14043419063091278\n          },\n          {\n            \"X\": 0.35783651471138,\n            \"Y\": 0.15187865495681763\n          },\n          {\n            \"X\": 0.23287776112556458,\n            \"Y\": 0.1518729031085968\n          }\n        ]\n      },\n      \"Id\": \"202e0793-3f91-4518-8eb3-0c603322ae3f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.84369659423828,\n      \"Text\": \"whatsoever.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11428381502628326,\n          \"Height\": 0.011472380720078945,\n          \"Left\": 0.36827799677848816,\n          \"Top\": 0.14068080484867096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36827799677848816,\n            \"Y\": 0.14068080484867096\n          },\n          {\n            \"X\": 0.4825558066368103,\n            \"Y\": 0.14068593084812164\n          },\n          {\n            \"X\": 0.4825618267059326,\n            \"Y\": 0.15215319395065308\n          },\n          {\n            \"X\": 0.3682835102081299,\n            \"Y\": 0.15214793384075165\n          }\n        ]\n      },\n      \"Id\": \"64b7403a-5839-4424-b6b8-14fd753dc004\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9664535522461,\n      \"Text\": \"You\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032028090208768845,\n          \"Height\": 0.01181821059435606,\n          \"Left\": 0.5061397552490234,\n          \"Top\": 0.14047546684741974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5061397552490234,\n            \"Y\": 0.14047546684741974\n          },\n          {\n            \"X\": 0.5381613969802856,\n            \"Y\": 0.14047689735889435\n          },\n          {\n            \"X\": 0.5381678342819214,\n            \"Y\": 0.15229368209838867\n          },\n          {\n            \"X\": 0.5061460733413696,\n            \"Y\": 0.15229220688343048\n          }\n        ]\n      },\n      \"Id\": \"e6d72c56-152b-4da8-bf47-e854025d1e98\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98270416259766,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03231151029467583,\n          \"Height\": 0.011851265095174313,\n          \"Left\": 0.5486698746681213,\n          \"Top\": 0.14268720149993896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5486698746681213,\n            \"Y\": 0.14268720149993896\n          },\n          {\n            \"X\": 0.5809747576713562,\n            \"Y\": 0.14268866181373596\n          },\n          {\n            \"X\": 0.580981433391571,\n            \"Y\": 0.15453846752643585\n          },\n          {\n            \"X\": 0.5486764311790466,\n            \"Y\": 0.15453697741031647\n          }\n        ]\n      },\n      \"Id\": \"3322325b-e234-46e7-a5d7-b43de2085115\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98396301269531,\n      \"Text\": \"copy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041347336024045944,\n          \"Height\": 0.011848813854157925,\n          \"Left\": 0.5923233032226562,\n          \"Top\": 0.14267152547836304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5923233032226562,\n            \"Y\": 0.14267152547836304\n          },\n          {\n            \"X\": 0.6336637139320374,\n            \"Y\": 0.14267338812351227\n          },\n          {\n            \"X\": 0.6336706280708313,\n            \"Y\": 0.15452033281326294\n          },\n          {\n            \"X\": 0.5923300385475159,\n            \"Y\": 0.15451842546463013\n          }\n        ]\n      },\n      \"Id\": \"ad1541e7-5246-4e8e-96b4-8fd8be008d2c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.11161041259766,\n      \"Text\": \"it,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02677045203745365,\n          \"Height\": 0.013459861278533936,\n          \"Left\": 0.6462323069572449,\n          \"Top\": 0.14042839407920837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6462323069572449,\n            \"Y\": 0.14042839407920837\n          },\n          {\n            \"X\": 0.6729947328567505,\n            \"Y\": 0.14042958617210388\n          },\n          {\n            \"X\": 0.6730027794837952,\n            \"Y\": 0.1538882553577423\n          },\n          {\n            \"X\": 0.646240234375,\n            \"Y\": 0.15388701856136322\n          }\n        ]\n      },\n      \"Id\": \"28d7af04-d18b-467d-be80-8e4a4e704847\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9010238647461,\n      \"Text\": \"give\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0421159453690052,\n          \"Height\": 0.01401528250426054,\n          \"Left\": 0.6870012879371643,\n          \"Top\": 0.1403341293334961\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6870012879371643,\n            \"Y\": 0.1403341293334961\n          },\n          {\n            \"X\": 0.7291085720062256,\n            \"Y\": 0.14033600687980652\n          },\n          {\n            \"X\": 0.7291172742843628,\n            \"Y\": 0.1543494015932083\n          },\n          {\n            \"X\": 0.6870097517967224,\n            \"Y\": 0.1543474644422531\n          }\n        ]\n      },\n      \"Id\": \"af4e0f75-6a67-4b27-bda2-bb4eb1ca5d87\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91222381591797,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019239109009504318,\n          \"Height\": 0.012078479863703251,\n          \"Left\": 0.7412716150283813,\n          \"Top\": 0.14030256867408752\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7412716150283813,\n            \"Y\": 0.14030256867408752\n          },\n          {\n            \"X\": 0.7605031132698059,\n            \"Y\": 0.14030343294143677\n          },\n          {\n            \"X\": 0.7605107426643372,\n            \"Y\": 0.1523810476064682\n          },\n          {\n            \"X\": 0.7412791848182678,\n            \"Y\": 0.15238016843795776\n          }\n        ]\n      },\n      \"Id\": \"66082249-9c85-4ebd-b39e-0a757bf60708\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9780044555664,\n      \"Text\": \"away\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04216959327459335,\n          \"Height\": 0.012032727710902691,\n          \"Left\": 0.7719460725784302,\n          \"Top\": 0.1425371915102005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7719460725784302,\n            \"Y\": 0.1425371915102005\n          },\n          {\n            \"X\": 0.8141078352928162,\n            \"Y\": 0.14253908395767212\n          },\n          {\n            \"X\": 0.8141156435012817,\n            \"Y\": 0.15456990897655487\n          },\n          {\n            \"X\": 0.7719537019729614,\n            \"Y\": 0.15456797182559967\n          }\n        ]\n      },\n      \"Id\": \"0ec364b3-f6ac-47e0-b5cd-98d3ed405eb0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95023345947266,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02109251543879509,\n          \"Height\": 0.009722783230245113,\n          \"Left\": 0.824846088886261,\n          \"Top\": 0.1425538957118988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.824846088886261,\n            \"Y\": 0.1425538957118988\n          },\n          {\n            \"X\": 0.845932126045227,\n            \"Y\": 0.1425548493862152\n          },\n          {\n            \"X\": 0.8459386229515076,\n            \"Y\": 0.1522766798734665\n          },\n          {\n            \"X\": 0.824852466583252,\n            \"Y\": 0.1522757112979889\n          }\n        ]\n      },\n      \"Id\": \"123aee47-4a02-4df7-8ab3-72b4a740cdcc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9651107788086,\n      \"Text\": \"re-use\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06212291494011879,\n          \"Height\": 0.009794416837394238,\n          \"Left\": 0.1269250363111496,\n          \"Top\": 0.15858012437820435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1269250363111496,\n            \"Y\": 0.15858012437820435\n          },\n          {\n            \"X\": 0.18904392421245575,\n            \"Y\": 0.15858301520347595\n          },\n          {\n            \"X\": 0.18904796242713928,\n            \"Y\": 0.16837453842163086\n          },\n          {\n            \"X\": 0.12692883610725403,\n            \"Y\": 0.16837158799171448\n          }\n        ]\n      },\n      \"Id\": \"71a3d321-90e8-4826-9b16-d3d5d3ad1ad0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9168472290039,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019594706594944,\n          \"Height\": 0.011662539094686508,\n          \"Left\": 0.20055627822875977,\n          \"Top\": 0.15636101365089417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20055627822875977,\n            \"Y\": 0.15636101365089417\n          },\n          {\n            \"X\": 0.220146045088768,\n            \"Y\": 0.156361922621727\n          },\n          {\n            \"X\": 0.22015097737312317,\n            \"Y\": 0.16802355647087097\n          },\n          {\n            \"X\": 0.20056113600730896,\n            \"Y\": 0.16802261769771576\n          }\n        ]\n      },\n      \"Id\": \"cc7ad37e-d3b2-4552-bb28-42ac78289ad4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97914123535156,\n      \"Text\": \"under\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052459124475717545,\n          \"Height\": 0.011798993684351444,\n          \"Left\": 0.23149217665195465,\n          \"Top\": 0.15637968480587006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23149217665195465,\n            \"Y\": 0.15637968480587006\n          },\n          {\n            \"X\": 0.2839460074901581,\n            \"Y\": 0.15638211369514465\n          },\n          {\n            \"X\": 0.2839513123035431,\n            \"Y\": 0.16817867755889893\n          },\n          {\n            \"X\": 0.23149722814559937,\n            \"Y\": 0.16817618906497955\n          }\n        ]\n      },\n      \"Id\": \"50fa9a35-6567-478a-a841-980f287be2d1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97974395751953,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03157597780227661,\n          \"Height\": 0.011693608947098255,\n          \"Left\": 0.29491984844207764,\n          \"Top\": 0.15645147860050201\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29491984844207764,\n            \"Y\": 0.15645147860050201\n          },\n          {\n            \"X\": 0.3264903724193573,\n            \"Y\": 0.156452938914299\n          },\n          {\n            \"X\": 0.32649582624435425,\n            \"Y\": 0.168145090341568\n          },\n          {\n            \"X\": 0.29492512345314026,\n            \"Y\": 0.16814358532428741\n          }\n        ]\n      },\n      \"Id\": \"68878737-3531-401f-bfd1-5d8c88017d58\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.972412109375,\n      \"Text\": \"terms\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051911089569330215,\n          \"Height\": 0.011379115283489227,\n          \"Left\": 0.3374934494495392,\n          \"Top\": 0.1569262593984604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3374934494495392,\n            \"Y\": 0.1569262593984604\n          },\n          {\n            \"X\": 0.3893989622592926,\n            \"Y\": 0.1569286584854126\n          },\n          {\n            \"X\": 0.3894045352935791,\n            \"Y\": 0.16830536723136902\n          },\n          {\n            \"X\": 0.3374987840652466,\n            \"Y\": 0.16830289363861084\n          }\n        ]\n      },\n      \"Id\": \"0cb05695-e425-43bc-ac64-a1e152713bfd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98522186279297,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02052256651222706,\n          \"Height\": 0.012296860106289387,\n          \"Left\": 0.4011101722717285,\n          \"Top\": 0.15613746643066406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4011101722717285,\n            \"Y\": 0.15613746643066406\n          },\n          {\n            \"X\": 0.42162656784057617,\n            \"Y\": 0.15613842010498047\n          },\n          {\n            \"X\": 0.4216327369213104,\n            \"Y\": 0.16843433678150177\n          },\n          {\n            \"X\": 0.4011162519454956,\n            \"Y\": 0.16843335330486298\n          }\n        ]\n      },\n      \"Id\": \"07015c1a-e54f-4169-b6ba-192b5c963162\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98445129394531,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03134291619062424,\n          \"Height\": 0.011639020405709743,\n          \"Left\": 0.43280473351478577,\n          \"Top\": 0.15644991397857666\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43280473351478577,\n            \"Y\": 0.15644991397857666\n          },\n          {\n            \"X\": 0.4641416370868683,\n            \"Y\": 0.15645135939121246\n          },\n          {\n            \"X\": 0.4641476571559906,\n            \"Y\": 0.16808892786502838\n          },\n          {\n            \"X\": 0.43281060457229614,\n            \"Y\": 0.168087437748909\n          }\n        ]\n      },\n      \"Id\": \"42d2f8d3-64a7-47c1-95c2-3ee9c8ce2779\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96343231201172,\n      \"Text\": \"Project\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07324828207492828,\n          \"Height\": 0.014499682933092117,\n          \"Left\": 0.4751358926296234,\n          \"Top\": 0.156230166554451\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4751358926296234,\n            \"Y\": 0.156230166554451\n          },\n          {\n            \"X\": 0.548376202583313,\n            \"Y\": 0.15623356401920319\n          },\n          {\n            \"X\": 0.5483841896057129,\n            \"Y\": 0.170729860663414\n          },\n          {\n            \"X\": 0.4751434624195099,\n            \"Y\": 0.17072635889053345\n          }\n        ]\n      },\n      \"Id\": \"f9be1f07-3ed8-4f49-b552-896082fc78fd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.36597442626953,\n      \"Text\": \"Gutenberg\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09511891007423401,\n          \"Height\": 0.014276446774601936,\n          \"Left\": 0.5593971014022827,\n          \"Top\": 0.15628613531589508\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5593971014022827,\n            \"Y\": 0.15628613531589508\n          },\n          {\n            \"X\": 0.654507577419281,\n            \"Y\": 0.15629054605960846\n          },\n          {\n            \"X\": 0.6545159816741943,\n            \"Y\": 0.17056258022785187\n          },\n          {\n            \"X\": 0.5594050288200378,\n            \"Y\": 0.17055803537368774\n          }\n        ]\n      },\n      \"Id\": \"da94f16e-c4bc-4659-8383-75cc27531d8a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76522064208984,\n      \"Text\": \"License\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07380072772502899,\n          \"Height\": 0.012111597694456577,\n          \"Left\": 0.6661593317985535,\n          \"Top\": 0.15633927285671234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6661593317985535,\n            \"Y\": 0.15633927285671234\n          },\n          {\n            \"X\": 0.7399525046348572,\n            \"Y\": 0.15634270012378693\n          },\n          {\n            \"X\": 0.7399600744247437,\n            \"Y\": 0.16845087707042694\n          },\n          {\n            \"X\": 0.6661665439605713,\n            \"Y\": 0.1684473603963852\n          }\n        ]\n      },\n      \"Id\": \"9da320a6-161f-4822-b5ca-756e69bd0e71\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9052734375,\n      \"Text\": \"included\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08369068056344986,\n          \"Height\": 0.012265769764780998,\n          \"Left\": 0.7511453628540039,\n          \"Top\": 0.15608471632003784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7511453628540039,\n            \"Y\": 0.15608471632003784\n          },\n          {\n            \"X\": 0.8348279595375061,\n            \"Y\": 0.15608859062194824\n          },\n          {\n            \"X\": 0.8348360657691956,\n            \"Y\": 0.168350487947464\n          },\n          {\n            \"X\": 0.7511530518531799,\n            \"Y\": 0.16834649443626404\n          }\n        ]\n      },\n      \"Id\": \"4c1439c6-af34-4e79-948f-75fb0c6e98e6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95162200927734,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04351165145635605,\n          \"Height\": 0.0120228361338377,\n          \"Left\": 0.12403849512338638,\n          \"Top\": 0.17215928435325623\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12403849512338638,\n            \"Y\": 0.17215928435325623\n          },\n          {\n            \"X\": 0.16754528880119324,\n            \"Y\": 0.17216137051582336\n          },\n          {\n            \"X\": 0.16755014657974243,\n            \"Y\": 0.18418212234973907\n          },\n          {\n            \"X\": 0.12404314428567886,\n            \"Y\": 0.18417997658252716\n          }\n        ]\n      },\n      \"Id\": \"569d9a9a-f0ac-4a84-addb-9069d422f207\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95561218261719,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04140779376029968,\n          \"Height\": 0.011925982311367989,\n          \"Left\": 0.17834831774234772,\n          \"Top\": 0.1722520887851715\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17834831774234772,\n            \"Y\": 0.1722520887851715\n          },\n          {\n            \"X\": 0.21975106000900269,\n            \"Y\": 0.1722540706396103\n          },\n          {\n            \"X\": 0.2197561115026474,\n            \"Y\": 0.18417806923389435\n          },\n          {\n            \"X\": 0.1783531755208969,\n            \"Y\": 0.18417604267597198\n          }\n        ]\n      },\n      \"Id\": \"3108f858-0805-4f7b-a054-69c254be720d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81214904785156,\n      \"Text\": \"eBook\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0532195083796978,\n          \"Height\": 0.011758613400161266,\n          \"Left\": 0.2312122881412506,\n          \"Top\": 0.17239245772361755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2312122881412506,\n            \"Y\": 0.17239245772361755\n          },\n          {\n            \"X\": 0.2844265401363373,\n            \"Y\": 0.1723950207233429\n          },\n          {\n            \"X\": 0.2844318151473999,\n            \"Y\": 0.1841510832309723\n          },\n          {\n            \"X\": 0.23121732473373413,\n            \"Y\": 0.18414846062660217\n          }\n        ]\n      },\n      \"Id\": \"348dc6a1-9a60-4d74-8474-56700c88ba77\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92711639404297,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0208851657807827,\n          \"Height\": 0.009236393496394157,\n          \"Left\": 0.2950178384780884,\n          \"Top\": 0.17485050857067108\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2950178384780884,\n            \"Y\": 0.17485050857067108\n          },\n          {\n            \"X\": 0.3158987760543823,\n            \"Y\": 0.17485150694847107\n          },\n          {\n            \"X\": 0.3159030079841614,\n            \"Y\": 0.1840869039297104\n          },\n          {\n            \"X\": 0.29502204060554504,\n            \"Y\": 0.184085875749588\n          }\n        ]\n      },\n      \"Id\": \"a6b5da31-e412-46f9-8c31-70ff97a34ea4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.95940399169922,\n      \"Text\": \"online\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.062319982796907425,\n          \"Height\": 0.012152359820902348,\n          \"Left\": 0.32724907994270325,\n          \"Top\": 0.17216534912586212\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32724907994270325,\n            \"Y\": 0.17216534912586212\n          },\n          {\n            \"X\": 0.38956311345100403,\n            \"Y\": 0.17216834425926208\n          },\n          {\n            \"X\": 0.38956907391548157,\n            \"Y\": 0.1843177080154419\n          },\n          {\n            \"X\": 0.3272547423839569,\n            \"Y\": 0.18431463837623596\n          }\n        ]\n      },\n      \"Id\": \"259255b1-64cc-47eb-a149-208f82add477\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97611999511719,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020530464127659798,\n          \"Height\": 0.01150000561028719,\n          \"Left\": 0.40097329020500183,\n          \"Top\": 0.17279145121574402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40097329020500183,\n            \"Y\": 0.17279145121574402\n          },\n          {\n            \"X\": 0.42149797081947327,\n            \"Y\": 0.172792449593544\n          },\n          {\n            \"X\": 0.4215037524700165,\n            \"Y\": 0.18429146707057953\n          },\n          {\n            \"X\": 0.4009789526462555,\n            \"Y\": 0.18429045379161835\n          }\n        ]\n      },\n      \"Id\": \"5e16248f-1c2e-441b-b779-47878d4b089e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.60743713378906,\n      \"Text\": \"www.gutenberg.org\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18132339417934418,\n          \"Height\": 0.014509441331028938,\n          \"Left\": 0.4303359389305115,\n          \"Top\": 0.17245517671108246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4303359389305115,\n            \"Y\": 0.17245517671108246\n          },\n          {\n            \"X\": 0.6116510033607483,\n            \"Y\": 0.17246387898921967\n          },\n          {\n            \"X\": 0.6116593480110168,\n            \"Y\": 0.18696461617946625\n          },\n          {\n            \"X\": 0.43034324049949646,\n            \"Y\": 0.18695564568042755\n          }\n        ]\n      },\n      \"Id\": \"e20f9b49-9fec-4abe-ad7a-9d1d28526399\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.14604187011719,\n      \"Text\": \"Title:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.061264753341674805,\n          \"Height\": 0.012176431715488434,\n          \"Left\": 0.12436921149492264,\n          \"Top\": 0.22036802768707275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12436921149492264,\n            \"Y\": 0.22036802768707275\n          },\n          {\n            \"X\": 0.1856289654970169,\n            \"Y\": 0.22037124633789062\n          },\n          {\n            \"X\": 0.18563395738601685,\n            \"Y\": 0.2325444519519806\n          },\n          {\n            \"X\": 0.1243739202618599,\n            \"Y\": 0.23254114389419556\n          }\n        ]\n      },\n      \"Id\": \"5fab4f9d-1604-4acc-af46-2b358f3ce332\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6740493774414,\n      \"Text\": \"Little\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0633840560913086,\n          \"Height\": 0.012088710442185402,\n          \"Left\": 0.1999308317899704,\n          \"Top\": 0.22040601074695587\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1999308317899704,\n            \"Y\": 0.22040601074695587\n          },\n          {\n            \"X\": 0.2633095681667328,\n            \"Y\": 0.2204093486070633\n          },\n          {\n            \"X\": 0.2633149027824402,\n            \"Y\": 0.23249471187591553\n          },\n          {\n            \"X\": 0.19993586838245392,\n            \"Y\": 0.23249129951000214\n          }\n        ]\n      },\n      \"Id\": \"45f8addc-9f85-48fc-ab2c-5c57c72eb807\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.51084899902344,\n      \"Text\": \"Women\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05370178446173668,\n          \"Height\": 0.011438682675361633,\n          \"Left\": 0.27255478501319885,\n          \"Top\": 0.22091993689537048\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27255478501319885,\n            \"Y\": 0.22091993689537048\n          },\n          {\n            \"X\": 0.3262512683868408,\n            \"Y\": 0.22092276811599731\n          },\n          {\n            \"X\": 0.32625657320022583,\n            \"Y\": 0.23235861957073212\n          },\n          {\n            \"X\": 0.27255988121032715,\n            \"Y\": 0.2323557287454605\n          }\n        ]\n      },\n      \"Id\": \"e9254000-92bb-4bc5-b487-8d9a3fd033d0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92766571044922,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02102760225534439,\n          \"Height\": 0.009215984493494034,\n          \"Left\": 0.1996152698993683,\n          \"Top\": 0.23913364112377167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1996152698993683,\n            \"Y\": 0.23913364112377167\n          },\n          {\n            \"X\": 0.2206389605998993,\n            \"Y\": 0.2391347885131836\n          },\n          {\n            \"X\": 0.22064287960529327,\n            \"Y\": 0.2483496218919754\n          },\n          {\n            \"X\": 0.1996190994977951,\n            \"Y\": 0.24834845960140228\n          }\n        ]\n      },\n      \"Id\": \"d303d955-39ff-4c2c-ab09-38d4584c5d8f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.10347747802734,\n      \"Text\": \"Meg,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0396580845117569,\n          \"Height\": 0.014451859518885612,\n          \"Left\": 0.2303071767091751,\n          \"Top\": 0.23665551841259003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2303071767091751,\n            \"Y\": 0.23665551841259003\n          },\n          {\n            \"X\": 0.26995885372161865,\n            \"Y\": 0.23665767908096313\n          },\n          {\n            \"X\": 0.269965261220932,\n            \"Y\": 0.251107394695282\n          },\n          {\n            \"X\": 0.23031336069107056,\n            \"Y\": 0.2511051595211029\n          }\n        ]\n      },\n      \"Id\": \"e2d07098-0c55-47c3-b2ea-55560f1ce246\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.48450469970703,\n      \"Text\": \"Jo,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028397448360919952,\n          \"Height\": 0.013862059451639652,\n          \"Left\": 0.2842710316181183,\n          \"Top\": 0.23682914674282074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2842710316181183,\n            \"Y\": 0.23682914674282074\n          },\n          {\n            \"X\": 0.31266212463378906,\n            \"Y\": 0.2368306815624237\n          },\n          {\n            \"X\": 0.31266850233078003,\n            \"Y\": 0.2506912052631378\n          },\n          {\n            \"X\": 0.2842772603034973,\n            \"Y\": 0.25068962574005127\n          }\n        ]\n      },\n      \"Id\": \"e09cbc46-fe33-4779-8959-2a73ff19b3a2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74566650390625,\n      \"Text\": \"Beth,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049357540905475616,\n          \"Height\": 0.013903697021305561,\n          \"Left\": 0.32675573229789734,\n          \"Top\": 0.2366422712802887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32675573229789734,\n            \"Y\": 0.2366422712802887\n          },\n          {\n            \"X\": 0.3761065602302551,\n            \"Y\": 0.2366449534893036\n          },\n          {\n            \"X\": 0.37611326575279236,\n            \"Y\": 0.2505459785461426\n          },\n          {\n            \"X\": 0.32676219940185547,\n            \"Y\": 0.2505432069301605\n          }\n        ]\n      },\n      \"Id\": \"679d3cb1-207d-4763-9d38-f6e1fa2021cc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99172973632812,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03116130456328392,\n          \"Height\": 0.011857535690069199,\n          \"Left\": 0.3904721736907959,\n          \"Top\": 0.23677557706832886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3904721736907959,\n            \"Y\": 0.23677557706832886\n          },\n          {\n            \"X\": 0.42162755131721497,\n            \"Y\": 0.23677727580070496\n          },\n          {\n            \"X\": 0.4216334819793701,\n            \"Y\": 0.24863311648368835\n          },\n          {\n            \"X\": 0.3904779851436615,\n            \"Y\": 0.24863138794898987\n          }\n        ]\n      },\n      \"Id\": \"babdac6b-f40a-4b15-b20b-14f0f55ee52a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87458801269531,\n      \"Text\": \"Amy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03215698152780533,\n          \"Height\": 0.014134708791971207,\n          \"Left\": 0.4321160316467285,\n          \"Top\": 0.23693276941776276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4321160316467285,\n            \"Y\": 0.23693276941776276\n          },\n          {\n            \"X\": 0.4642656743526459,\n            \"Y\": 0.23693451285362244\n          },\n          {\n            \"X\": 0.46427300572395325,\n            \"Y\": 0.25106745958328247\n          },\n          {\n            \"X\": 0.4321231544017792,\n            \"Y\": 0.2510656714439392\n          }\n        ]\n      },\n      \"Id\": \"ee5906c5-bac2-46b2-9f1a-f75181d77d5d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70696258544922,\n      \"Text\": \"Author:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07177459448575974,\n          \"Height\": 0.011872432194650173,\n          \"Left\": 0.1244884580373764,\n          \"Top\": 0.2687385380268097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1244884580373764,\n            \"Y\": 0.2687385380268097\n          },\n          {\n            \"X\": 0.19625812768936157,\n            \"Y\": 0.2687426805496216\n          },\n          {\n            \"X\": 0.19626305997371674,\n            \"Y\": 0.28061097860336304\n          },\n          {\n            \"X\": 0.12449304759502411,\n            \"Y\": 0.280606746673584\n          }\n        ]\n      },\n      \"Id\": \"299ae9f2-c13f-4259-a36c-8427ae589676\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69883728027344,\n      \"Text\": \"Louisa\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06264254450798035,\n          \"Height\": 0.011881276965141296,\n          \"Left\": 0.21068742871284485,\n          \"Top\": 0.2687741816043854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21068742871284485,\n            \"Y\": 0.2687741816043854\n          },\n          {\n            \"X\": 0.2733246982097626,\n            \"Y\": 0.2687777876853943\n          },\n          {\n            \"X\": 0.2733299732208252,\n            \"Y\": 0.28065547347068787\n          },\n          {\n            \"X\": 0.2106924206018448,\n            \"Y\": 0.2806517779827118\n          }\n        ]\n      },\n      \"Id\": \"1f23d0fa-e767-4317-8a01-944dce65d5bc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6797103881836,\n      \"Text\": \"M.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018771180883049965,\n          \"Height\": 0.011509543284773827,\n          \"Left\": 0.28331008553504944,\n          \"Top\": 0.26888349652290344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28331008553504944,\n            \"Y\": 0.26888349652290344\n          },\n          {\n            \"X\": 0.3020760118961334,\n            \"Y\": 0.2688845992088318\n          },\n          {\n            \"X\": 0.30208125710487366,\n            \"Y\": 0.2803930640220642\n          },\n          {\n            \"X\": 0.2833152413368225,\n            \"Y\": 0.28039196133613586\n          }\n        ]\n      },\n      \"Id\": \"029744f4-6631-4a12-a0ff-80d0090fd589\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93702697753906,\n      \"Text\": \"Alcott\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06347756832838058,\n          \"Height\": 0.011845774948596954,\n          \"Left\": 0.3152746856212616,\n          \"Top\": 0.26870250701904297\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3152746856212616,\n            \"Y\": 0.26870250701904297\n          },\n          {\n            \"X\": 0.37874650955200195,\n            \"Y\": 0.26870617270469666\n          },\n          {\n            \"X\": 0.3787522614002228,\n            \"Y\": 0.2805482745170593\n          },\n          {\n            \"X\": 0.31528013944625854,\n            \"Y\": 0.28054454922676086\n          }\n        ]\n      },\n      \"Id\": \"2579b085-dd0e-47b6-8c46-344a3fc74e8b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.9916000366211,\n      \"Text\": \"Illustrator:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12333834916353226,\n          \"Height\": 0.012132289819419384,\n          \"Left\": 0.12575794756412506,\n          \"Top\": 0.3007175028324127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12575794756412506,\n            \"Y\": 0.3007175028324127\n          },\n          {\n            \"X\": 0.2490910142660141,\n            \"Y\": 0.30072498321533203\n          },\n          {\n            \"X\": 0.24909628927707672,\n            \"Y\": 0.3128497898578644\n          },\n          {\n            \"X\": 0.12576264142990112,\n            \"Y\": 0.31284216046333313\n          }\n        ]\n      },\n      \"Id\": \"58cc0cb4-c8dd-4bf2-b85a-959d6eb9fcd7\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86885833740234,\n      \"Text\": \"Frank\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052817609161138535,\n          \"Height\": 0.011746526695787907,\n          \"Left\": 0.2635888457298279,\n          \"Top\": 0.3009560704231262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2635888457298279,\n            \"Y\": 0.3009560704231262\n          },\n          {\n            \"X\": 0.31640103459358215,\n            \"Y\": 0.3009592592716217\n          },\n          {\n            \"X\": 0.3164064586162567,\n            \"Y\": 0.31270259618759155\n          },\n          {\n            \"X\": 0.26359400153160095,\n            \"Y\": 0.3126993179321289\n          }\n        ]\n      },\n      \"Id\": \"1f93c171-b8f2-4ef7-930c-f549e86c8aab\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88521575927734,\n      \"Text\": \"T.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01858379878103733,\n          \"Height\": 0.011489532887935638,\n          \"Left\": 0.3260134756565094,\n          \"Top\": 0.30100536346435547\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3260134756565094,\n            \"Y\": 0.30100536346435547\n          },\n          {\n            \"X\": 0.3445918560028076,\n            \"Y\": 0.3010064959526062\n          },\n          {\n            \"X\": 0.3445972502231598,\n            \"Y\": 0.3124949038028717\n          },\n          {\n            \"X\": 0.3260188102722168,\n            \"Y\": 0.31249377131462097\n          }\n        ]\n      },\n      \"Id\": \"7da48d71-1051-4f33-b51e-f4db927ba0fc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7452621459961,\n      \"Text\": \"Merrill\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0745450109243393,\n          \"Height\": 0.012409361079335213,\n          \"Left\": 0.35750433802604675,\n          \"Top\": 0.30048224329948425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35750433802604675,\n            \"Y\": 0.30048224329948425\n          },\n          {\n            \"X\": 0.43204307556152344,\n            \"Y\": 0.3004867732524872\n          },\n          {\n            \"X\": 0.43204933404922485,\n            \"Y\": 0.3128916025161743\n          },\n          {\n            \"X\": 0.3575102388858795,\n            \"Y\": 0.3128870129585266\n          }\n        ]\n      },\n      \"Id\": \"2d334c40-6332-4ef6-9928-d18dd2696489\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9168930053711,\n      \"Text\": \"Release\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07383652031421661,\n          \"Height\": 0.012173266150057316,\n          \"Left\": 0.12529519200325012,\n          \"Top\": 0.3327147662639618\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12529519200325012,\n            \"Y\": 0.3327147662639618\n          },\n          {\n            \"X\": 0.19912666082382202,\n            \"Y\": 0.33271950483322144\n          },\n          {\n            \"X\": 0.19913172721862793,\n            \"Y\": 0.34488803148269653\n          },\n          {\n            \"X\": 0.12529991567134857,\n            \"Y\": 0.3448832333087921\n          }\n        ]\n      },\n      \"Id\": \"c21a8753-45c9-4421-a763-14e6b516b4cc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62841033935547,\n      \"Text\": \"Date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05024649575352669,\n          \"Height\": 0.011635784059762955,\n          \"Left\": 0.20980320870876312,\n          \"Top\": 0.33313965797424316\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20980320870876312,\n            \"Y\": 0.33313965797424316\n          },\n          {\n            \"X\": 0.2600446045398712,\n            \"Y\": 0.33314287662506104\n          },\n          {\n            \"X\": 0.2600497007369995,\n            \"Y\": 0.3447754383087158\n          },\n          {\n            \"X\": 0.2098080962896347,\n            \"Y\": 0.3447721600532532\n          }\n        ]\n      },\n      \"Id\": \"9a89e975-05a2-4407-863a-13398b65fd58\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95841217041016,\n      \"Text\": \"August\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06313125044107437,\n          \"Height\": 0.013920231722295284,\n          \"Left\": 0.27310240268707275,\n          \"Top\": 0.3332008123397827\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27310240268707275,\n            \"Y\": 0.3332008123397827\n          },\n          {\n            \"X\": 0.336227148771286,\n            \"Y\": 0.33320486545562744\n          },\n          {\n            \"X\": 0.33623364567756653,\n            \"Y\": 0.34712105989456177\n          },\n          {\n            \"X\": 0.273108571767807,\n            \"Y\": 0.34711694717407227\n          }\n        ]\n      },\n      \"Id\": \"7ec945bb-4f81-48bc-8c54-df1a0cbe7c53\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9414291381836,\n      \"Text\": \"16,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027578676119446754,\n          \"Height\": 0.013904092833399773,\n          \"Left\": 0.3488351106643677,\n          \"Top\": 0.33308255672454834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3488351106643677,\n            \"Y\": 0.33308255672454834\n          },\n          {\n            \"X\": 0.37640705704689026,\n            \"Y\": 0.3330843150615692\n          },\n          {\n            \"X\": 0.3764137923717499,\n            \"Y\": 0.34698665142059326\n          },\n          {\n            \"X\": 0.34884169697761536,\n            \"Y\": 0.3469848334789276\n          }\n        ]\n      },\n      \"Id\": \"bd9fc150-78aa-4bb1-9f76-ea4cb84534fa\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88428497314453,\n      \"Text\": \"2011\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04210609942674637,\n          \"Height\": 0.011649970896542072,\n          \"Left\": 0.39012378454208374,\n          \"Top\": 0.33305832743644714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39012378454208374,\n            \"Y\": 0.33305832743644714\n          },\n          {\n            \"X\": 0.43222400546073914,\n            \"Y\": 0.33306100964546204\n          },\n          {\n            \"X\": 0.4322298765182495,\n            \"Y\": 0.34470829367637634\n          },\n          {\n            \"X\": 0.3901294767856598,\n            \"Y\": 0.3447055518627167\n          }\n        ]\n      },\n      \"Id\": \"fd2f7185-f31b-4bb9-9bf9-b17703a62bb6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.10425567626953,\n      \"Text\": \"[EBook\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060267310589551926,\n          \"Height\": 0.013258961960673332,\n          \"Left\": 0.44674038887023926,\n          \"Top\": 0.3323436975479126\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44674038887023926,\n            \"Y\": 0.3323436975479126\n          },\n          {\n            \"X\": 0.5070006251335144,\n            \"Y\": 0.3323475420475006\n          },\n          {\n            \"X\": 0.5070077180862427,\n            \"Y\": 0.3456026613712311\n          },\n          {\n            \"X\": 0.44674715399742126,\n            \"Y\": 0.3455987274646759\n          }\n        ]\n      },\n      \"Id\": \"3fc34bc8-f283-42a2-bdd1-16d9794413a4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.76396179199219,\n      \"Text\": \"#37106]\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0720321387052536,\n          \"Height\": 0.014231345616281033,\n          \"Left\": 0.5164487957954407,\n          \"Top\": 0.33223092555999756\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5164487957954407,\n            \"Y\": 0.33223092555999756\n          },\n          {\n            \"X\": 0.5884729027748108,\n            \"Y\": 0.33223551511764526\n          },\n          {\n            \"X\": 0.5884809494018555,\n            \"Y\": 0.34646227955818176\n          },\n          {\n            \"X\": 0.5164564251899719,\n            \"Y\": 0.3464575707912445\n          }\n        ]\n      },\n      \"Id\": \"85cea4c1-77e7-428a-b2c7-fd843fe70732\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9327163696289,\n      \"Text\": \"Last\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04109644144773483,\n          \"Height\": 0.011754270642995834,\n          \"Left\": 0.12581409513950348,\n          \"Top\": 0.34921759366989136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12581409513950348,\n            \"Y\": 0.34921759366989136\n          },\n          {\n            \"X\": 0.16690579056739807,\n            \"Y\": 0.34922030568122864\n          },\n          {\n            \"X\": 0.16691052913665771,\n            \"Y\": 0.3609718680381775\n          },\n          {\n            \"X\": 0.1258186399936676,\n            \"Y\": 0.3609691262245178\n          }\n        ]\n      },\n      \"Id\": \"9ea1fa5f-88d7-47d1-a7db-54ce809fc2fe\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43502044677734,\n      \"Text\": \"Update:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07130932807922363,\n          \"Height\": 0.014368406496942043,\n          \"Left\": 0.1776072084903717,\n          \"Top\": 0.34886860847473145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1776072084903717,\n            \"Y\": 0.34886860847473145\n          },\n          {\n            \"X\": 0.24891029298305511,\n            \"Y\": 0.3488732874393463\n          },\n          {\n            \"X\": 0.24891653656959534,\n            \"Y\": 0.36323702335357666\n          },\n          {\n            \"X\": 0.1776130646467209,\n            \"Y\": 0.36323225498199463\n          }\n        ]\n      },\n      \"Id\": \"a568bb8a-306f-4d22-899e-f6b54cc2cef5\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93544006347656,\n      \"Text\": \"August\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0641646459698677,\n          \"Height\": 0.014558831229805946,\n          \"Left\": 0.27234315872192383,\n          \"Top\": 0.3486906886100769\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27234315872192383,\n            \"Y\": 0.3486906886100769\n          },\n          {\n            \"X\": 0.33650097250938416,\n            \"Y\": 0.34869489073753357\n          },\n          {\n            \"X\": 0.33650779724121094,\n            \"Y\": 0.3632495105266571\n          },\n          {\n            \"X\": 0.27234959602355957,\n            \"Y\": 0.3632452189922333\n          }\n        ]\n      },\n      \"Id\": \"d6e32598-d18f-475b-a80b-567e933bcd3d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.66619873046875,\n      \"Text\": \"8,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017594175413250923,\n          \"Height\": 0.013523830100893974,\n          \"Left\": 0.3479337990283966,\n          \"Top\": 0.34931647777557373\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3479337990283966,\n            \"Y\": 0.34931647777557373\n          },\n          {\n            \"X\": 0.36552149057388306,\n            \"Y\": 0.34931764006614685\n          },\n          {\n            \"X\": 0.3655279874801636,\n            \"Y\": 0.36284032464027405\n          },\n          {\n            \"X\": 0.34794020652770996,\n            \"Y\": 0.36283913254737854\n          }\n        ]\n      },\n      \"Id\": \"a0c8e7db-6e55-42f1-a157-23e393523306\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89751434326172,\n      \"Text\": \"2017\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04229878634214401,\n          \"Height\": 0.011692536063492298,\n          \"Left\": 0.3793990910053253,\n          \"Top\": 0.3492988646030426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3793990910053253,\n            \"Y\": 0.3492988646030426\n          },\n          {\n            \"X\": 0.42169201374053955,\n            \"Y\": 0.34930163621902466\n          },\n          {\n            \"X\": 0.42169785499572754,\n            \"Y\": 0.36099138855934143\n          },\n          {\n            \"X\": 0.379404753446579,\n            \"Y\": 0.3609885573387146\n          }\n        ]\n      },\n      \"Id\": \"42b8f316-a439-46a6-bb37-efd015f9ddfc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.80863189697266,\n      \"Text\": \"Language:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09129956364631653,\n          \"Height\": 0.014139906503260136,\n          \"Left\": 0.12586849927902222,\n          \"Top\": 0.38136783242225647\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12586849927902222,\n            \"Y\": 0.38136783242225647\n          },\n          {\n            \"X\": 0.2171620875597,\n            \"Y\": 0.3813740909099579\n          },\n          {\n            \"X\": 0.21716806292533875,\n            \"Y\": 0.39550772309303284\n          },\n          {\n            \"X\": 0.12587398290634155,\n            \"Y\": 0.39550134539604187\n          }\n        ]\n      },\n      \"Id\": \"a069f881-363b-4a26-8461-d281fbf71751\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73888397216797,\n      \"Text\": \"English\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0734165608882904,\n          \"Height\": 0.014593892730772495,\n          \"Left\": 0.23159851133823395,\n          \"Top\": 0.38095614314079285\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23159851133823395,\n            \"Y\": 0.38095614314079285\n          },\n          {\n            \"X\": 0.3050084114074707,\n            \"Y\": 0.38096117973327637\n          },\n          {\n            \"X\": 0.30501505732536316,\n            \"Y\": 0.39555004239082336\n          },\n          {\n            \"X\": 0.23160475492477417,\n            \"Y\": 0.3955448865890503\n          }\n        ]\n      },\n      \"Id\": \"3543829b-f74c-4686-a5ff-53cd24a30bc4\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96849060058594,\n      \"Text\": \"START\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052738286554813385,\n          \"Height\": 0.011433133855462074,\n          \"Left\": 0.16813640296459198,\n          \"Top\": 0.4295565187931061\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16813640296459198,\n            \"Y\": 0.4295565187931061\n          },\n          {\n            \"X\": 0.22086985409259796,\n            \"Y\": 0.4295603930950165\n          },\n          {\n            \"X\": 0.22087469696998596,\n            \"Y\": 0.4409896433353424\n          },\n          {\n            \"X\": 0.16814102232456207,\n            \"Y\": 0.44098570942878723\n          }\n        ]\n      },\n      \"Id\": \"494354d8-a120-406e-9f10-7dec8344a7ce\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86227416992188,\n      \"Text\": \"OF\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021019570529460907,\n          \"Height\": 0.011720896698534489,\n          \"Left\": 0.23110756278038025,\n          \"Top\": 0.42958471179008484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23110756278038025,\n            \"Y\": 0.42958471179008484\n          },\n          {\n            \"X\": 0.25212201476097107,\n            \"Y\": 0.429586261510849\n          },\n          {\n            \"X\": 0.25212714076042175,\n            \"Y\": 0.44130560755729675\n          },\n          {\n            \"X\": 0.23111258447170258,\n            \"Y\": 0.4413040578365326\n          }\n        ]\n      },\n      \"Id\": \"8e0d7bb5-93a2-44c5-9f76-fb916d369913\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96134185791016,\n      \"Text\": \"THIS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04274289682507515,\n          \"Height\": 0.011645093560218811,\n          \"Left\": 0.2624763250350952,\n          \"Top\": 0.4295666813850403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2624763250350952,\n            \"Y\": 0.4295666813850403\n          },\n          {\n            \"X\": 0.30521392822265625,\n            \"Y\": 0.429569810628891\n          },\n          {\n            \"X\": 0.30521923303604126,\n            \"Y\": 0.4412117600440979\n          },\n          {\n            \"X\": 0.2624814510345459,\n            \"Y\": 0.4412085711956024\n          }\n        ]\n      },\n      \"Id\": \"da61db28-9431-4002-8749-87cd4ac75ac1\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.892822265625,\n      \"Text\": \"PROJECT\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07419868558645248,\n          \"Height\": 0.011576922610402107,\n          \"Left\": 0.31657150387763977,\n          \"Top\": 0.4296320378780365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31657150387763977,\n            \"Y\": 0.4296320378780365\n          },\n          {\n            \"X\": 0.3907645046710968,\n            \"Y\": 0.42963749170303345\n          },\n          {\n            \"X\": 0.39077016711235046,\n            \"Y\": 0.44120895862579346\n          },\n          {\n            \"X\": 0.31657683849334717,\n            \"Y\": 0.44120341539382935\n          }\n        ]\n      },\n      \"Id\": \"e284e80d-105d-424c-a228-9ec9dec9a13c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67198944091797,\n      \"Text\": \"GUTENBERG\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09536711126565933,\n          \"Height\": 0.011626753024756908,\n          \"Left\": 0.40079572796821594,\n          \"Top\": 0.42959359288215637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40079572796821594,\n            \"Y\": 0.42959359288215637\n          },\n          {\n            \"X\": 0.4961566925048828,\n            \"Y\": 0.4296005964279175\n          },\n          {\n            \"X\": 0.4961628317832947,\n            \"Y\": 0.44122034311294556\n          },\n          {\n            \"X\": 0.4008014500141144,\n            \"Y\": 0.4412132501602173\n          }\n        ]\n      },\n      \"Id\": \"030e4184-b1b8-45d5-929b-451d26639e0d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6042709350586,\n      \"Text\": \"EBOOK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053346604108810425,\n          \"Height\": 0.011609003879129887,\n          \"Left\": 0.5072560906410217,\n          \"Top\": 0.4295713007450104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5072560906410217,\n            \"Y\": 0.4295713007450104\n          },\n          {\n            \"X\": 0.560596227645874,\n            \"Y\": 0.42957523465156555\n          },\n          {\n            \"X\": 0.5606026649475098,\n            \"Y\": 0.4411803185939789\n          },\n          {\n            \"X\": 0.5072622895240784,\n            \"Y\": 0.44117632508277893\n          }\n        ]\n      },\n      \"Id\": \"097a44bd-9795-4fda-ae89-cd6757f7f98b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90573120117188,\n      \"Text\": \"LITTLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0629737600684166,\n          \"Height\": 0.011682535521686077,\n          \"Left\": 0.570746898651123,\n          \"Top\": 0.42952340841293335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.570746898651123,\n            \"Y\": 0.42952340841293335\n          },\n          {\n            \"X\": 0.6337138414382935,\n            \"Y\": 0.42952805757522583\n          },\n          {\n            \"X\": 0.6337206363677979,\n            \"Y\": 0.4412059485912323\n          },\n          {\n            \"X\": 0.5707533955574036,\n            \"Y\": 0.44120123982429504\n          }\n        ]\n      },\n      \"Id\": \"1b35af40-db37-453a-8c03-3726557d2e24\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9374771118164,\n      \"Text\": \"WOMEN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05407927557826042,\n          \"Height\": 0.01154091116040945,\n          \"Left\": 0.6434662938117981,\n          \"Top\": 0.429623007774353\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6434662938117981,\n            \"Y\": 0.429623007774353\n          },\n          {\n            \"X\": 0.6975385546684265,\n            \"Y\": 0.4296269714832306\n          },\n          {\n            \"X\": 0.6975455284118652,\n            \"Y\": 0.44116389751434326\n          },\n          {\n            \"X\": 0.6434730291366577,\n            \"Y\": 0.4411598742008209\n          }\n        ]\n      },\n      \"Id\": \"9e203e2d-d260-40fb-8d3a-ca79411924b0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97579956054688,\n      \"Text\": \"Produced\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08376156538724899,\n          \"Height\": 0.012035606428980827,\n          \"Left\": 0.12562213838100433,\n          \"Top\": 0.5099378228187561\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12562213838100433,\n            \"Y\": 0.5099378228187561\n          },\n          {\n            \"X\": 0.2093786597251892,\n            \"Y\": 0.5099446773529053\n          },\n          {\n            \"X\": 0.20938369631767273,\n            \"Y\": 0.5219734311103821\n          },\n          {\n            \"X\": 0.125626802444458,\n            \"Y\": 0.5219665169715881\n          }\n        ]\n      },\n      \"Id\": \"8ecccd25-6a0b-440f-b2dd-f8b580e697ee\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9880142211914,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020655423402786255,\n          \"Height\": 0.014154006727039814,\n          \"Left\": 0.22083567082881927,\n          \"Top\": 0.5099281072616577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22083567082881927,\n            \"Y\": 0.5099281072616577\n          },\n          {\n            \"X\": 0.24148498475551605,\n            \"Y\": 0.5099298357963562\n          },\n          {\n            \"X\": 0.24149109423160553,\n            \"Y\": 0.5240821242332458\n          },\n          {\n            \"X\": 0.2208416759967804,\n            \"Y\": 0.5240804553031921\n          }\n        ]\n      },\n      \"Id\": \"752f065a-bbde-4180-b666-5fc0b58ac58e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95291900634766,\n      \"Text\": \"David\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05287899449467659,\n          \"Height\": 0.012009921483695507,\n          \"Left\": 0.25226300954818726,\n          \"Top\": 0.5099338889122009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25226300954818726,\n            \"Y\": 0.5099338889122009\n          },\n          {\n            \"X\": 0.3051365315914154,\n            \"Y\": 0.5099382400512695\n          },\n          {\n            \"X\": 0.30514201521873474,\n            \"Y\": 0.5219438076019287\n          },\n          {\n            \"X\": 0.2522682547569275,\n            \"Y\": 0.5219394564628601\n          }\n        ]\n      },\n      \"Id\": \"250addec-aa02-4f57-ab4e-3bf3130ae9a6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6561279296875,\n      \"Text\": \"Edwards,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08034683763980865,\n          \"Height\": 0.013989540748298168,\n          \"Left\": 0.31678327918052673,\n          \"Top\": 0.5099126696586609\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31678327918052673,\n            \"Y\": 0.5099126696586609\n          },\n          {\n            \"X\": 0.397123247385025,\n            \"Y\": 0.5099192261695862\n          },\n          {\n            \"X\": 0.3971301317214966,\n            \"Y\": 0.523902177810669\n          },\n          {\n            \"X\": 0.31678974628448486,\n            \"Y\": 0.5238955616950989\n          }\n        ]\n      },\n      \"Id\": \"5394cefd-6a55-43fd-93ab-28ab995100ab\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92396545410156,\n      \"Text\": \"Ernest\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06286141276359558,\n          \"Height\": 0.012038658373057842,\n          \"Left\": 0.4116809368133545,\n          \"Top\": 0.5100153088569641\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4116809368133545,\n            \"Y\": 0.5100153088569641\n          },\n          {\n            \"X\": 0.47453609108924866,\n            \"Y\": 0.5100204348564148\n          },\n          {\n            \"X\": 0.4745423495769501,\n            \"Y\": 0.5220539569854736\n          },\n          {\n            \"X\": 0.4116869270801544,\n            \"Y\": 0.5220487713813782\n          }\n        ]\n      },\n      \"Id\": \"96e31dd9-85bc-42bc-b7c8-fbc2dadae54e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63839721679688,\n      \"Text\": \"Schaal,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07159055024385452,\n          \"Height\": 0.014379275031387806,\n          \"Left\": 0.4853072166442871,\n          \"Top\": 0.5099475979804993\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4853072166442871,\n            \"Y\": 0.5099475979804993\n          },\n          {\n            \"X\": 0.5568898320198059,\n            \"Y\": 0.5099534392356873\n          },\n          {\n            \"X\": 0.556897759437561,\n            \"Y\": 0.5243268609046936\n          },\n          {\n            \"X\": 0.4853147864341736,\n            \"Y\": 0.5243209600448608\n          }\n        ]\n      },\n      \"Id\": \"b319eb75-30a6-43f6-b450-6504234e5f3e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97195434570312,\n      \"Text\": \"Robert\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06270094960927963,\n          \"Height\": 0.011841644532978535,\n          \"Left\": 0.5703039765357971,\n          \"Top\": 0.5100279450416565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5703039765357971,\n            \"Y\": 0.5100279450416565\n          },\n          {\n            \"X\": 0.6329980492591858,\n            \"Y\": 0.5100330710411072\n          },\n          {\n            \"X\": 0.6330049633979797,\n            \"Y\": 0.5218695998191833\n          },\n          {\n            \"X\": 0.5703105926513672,\n            \"Y\": 0.5218644142150879\n          }\n        ]\n      },\n      \"Id\": \"314f129e-6721-4976-a4bd-35c3692f862d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49604797363281,\n      \"Text\": \"Homa\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0423392578959465,\n          \"Height\": 0.011798120103776455,\n          \"Left\": 0.6441962718963623,\n          \"Top\": 0.5101402997970581\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6441962718963623,\n            \"Y\": 0.5101402997970581\n          },\n          {\n            \"X\": 0.6865283846855164,\n            \"Y\": 0.5101437568664551\n          },\n          {\n            \"X\": 0.6865355372428894,\n            \"Y\": 0.5219384431838989\n          },\n          {\n            \"X\": 0.6442031860351562,\n            \"Y\": 0.5219349265098572\n          }\n        ]\n      },\n      \"Id\": \"1ce99f91-03cd-43ac-a711-3b0e89b20576\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99146270751953,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03118147887289524,\n          \"Height\": 0.01200177799910307,\n          \"Left\": 0.6977344155311584,\n          \"Top\": 0.509931743144989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6977344155311584,\n            \"Y\": 0.509931743144989\n          },\n          {\n            \"X\": 0.7289084792137146,\n            \"Y\": 0.5099343061447144\n          },\n          {\n            \"X\": 0.7289158701896667,\n            \"Y\": 0.5219335556030273\n          },\n          {\n            \"X\": 0.697741687297821,\n            \"Y\": 0.521930992603302\n          }\n        ]\n      },\n      \"Id\": \"cc10f71b-b2a3-4953-b6ba-febe607cc50a\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98556518554688,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03141123801469803,\n          \"Height\": 0.011967734433710575,\n          \"Left\": 0.7402763962745667,\n          \"Top\": 0.50998455286026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7402763962745667,\n            \"Y\": 0.50998455286026\n          },\n          {\n            \"X\": 0.7716799974441528,\n            \"Y\": 0.5099871158599854\n          },\n          {\n            \"X\": 0.7716876268386841,\n            \"Y\": 0.5219522714614868\n          },\n          {\n            \"X\": 0.7402838468551636,\n            \"Y\": 0.5219497084617615\n          }\n        ]\n      },\n      \"Id\": \"6913f967-f03e-4f97-a775-5c245e71f3ba\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.31664276123047,\n      \"Text\": \"Online\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06276899576187134,\n          \"Height\": 0.012356107123196125,\n          \"Left\": 0.12568549811840057,\n          \"Top\": 0.5257186889648438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12568549811840057,\n            \"Y\": 0.5257186889648438\n          },\n          {\n            \"X\": 0.1884494125843048,\n            \"Y\": 0.5257238745689392\n          },\n          {\n            \"X\": 0.1884544938802719,\n            \"Y\": 0.538074791431427\n          },\n          {\n            \"X\": 0.1256902813911438,\n            \"Y\": 0.538069486618042\n          }\n        ]\n      },\n      \"Id\": \"e872f4bb-c721-4987-9bd5-76b667ee6906\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8877182006836,\n      \"Text\": \"Distributed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11667198687791824,\n          \"Height\": 0.01212919782847166,\n          \"Left\": 0.19907024502754211,\n          \"Top\": 0.5258991718292236\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19907024502754211,\n            \"Y\": 0.5258991718292236\n          },\n          {\n            \"X\": 0.31573665142059326,\n            \"Y\": 0.525908887386322\n          },\n          {\n            \"X\": 0.31574222445487976,\n            \"Y\": 0.538028359413147\n          },\n          {\n            \"X\": 0.19907528162002563,\n            \"Y\": 0.5380185842514038\n          }\n        ]\n      },\n      \"Id\": \"43e795da-2633-4b10-89cf-189f15069a0e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8405532836914,\n      \"Text\": \"Proofreading\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12569262087345123,\n          \"Height\": 0.014342347159981728,\n          \"Left\": 0.3273203372955322,\n          \"Top\": 0.525944173336029\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3273203372955322,\n            \"Y\": 0.525944173336029\n          },\n          {\n            \"X\": 0.4530056118965149,\n            \"Y\": 0.5259546041488647\n          },\n          {\n            \"X\": 0.45301294326782227,\n            \"Y\": 0.5402865409851074\n          },\n          {\n            \"X\": 0.3273269832134247,\n            \"Y\": 0.5402759313583374\n          }\n        ]\n      },\n      \"Id\": \"5e14c23e-2239-4d7e-bcea-b0cfb4b9a056\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94253540039062,\n      \"Text\": \"Team\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0434652715921402,\n          \"Height\": 0.011754740960896015,\n          \"Left\": 0.4637877941131592,\n          \"Top\": 0.5262076258659363\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4637877941131592,\n            \"Y\": 0.5262076258659363\n          },\n          {\n            \"X\": 0.5072467923164368,\n            \"Y\": 0.5262112617492676\n          },\n          {\n            \"X\": 0.5072530508041382,\n            \"Y\": 0.5379623770713806\n          },\n          {\n            \"X\": 0.46379387378692627,\n            \"Y\": 0.5379586815834045\n          }\n        ]\n      },\n      \"Id\": \"5f89c1e0-220e-4513-a550-d3b707e5fc85\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97135925292969,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020659903064370155,\n          \"Height\": 0.011246639303863049,\n          \"Left\": 0.5172749757766724,\n          \"Top\": 0.5266690254211426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5172749757766724,\n            \"Y\": 0.5266690254211426\n          },\n          {\n            \"X\": 0.5379287600517273,\n            \"Y\": 0.5266707539558411\n          },\n          {\n            \"X\": 0.5379348993301392,\n            \"Y\": 0.5379156470298767\n          },\n          {\n            \"X\": 0.5172810554504395,\n            \"Y\": 0.5379139184951782\n          }\n        ]\n      },\n      \"Id\": \"cc1982f1-f1d9-4a44-8ff8-e8ee64441c16\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.57634735107422,\n      \"Text\": \"http://www.pgdp.net\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19862115383148193,\n          \"Height\": 0.01398460753262043,\n          \"Left\": 0.550955593585968,\n          \"Top\": 0.5262758135795593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.550955593585968,\n            \"Y\": 0.5262758135795593\n          },\n          {\n            \"X\": 0.749567985534668,\n            \"Y\": 0.5262923240661621\n          },\n          {\n            \"X\": 0.74957674741745,\n            \"Y\": 0.5402604341506958\n          },\n          {\n            \"X\": 0.550963282585144,\n            \"Y\": 0.5402436852455139\n          }\n        ]\n      },\n      \"Id\": \"5617e30e-2571-4a47-85eb-1dbbfd0cff29\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.15462493896484,\n      \"Text\": \"(This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049414653331041336,\n          \"Height\": 0.01322614774107933,\n          \"Left\": 0.12815941870212555,\n          \"Top\": 0.5415645837783813\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12815941870212555,\n            \"Y\": 0.5415645837783813\n          },\n          {\n            \"X\": 0.1775686889886856,\n            \"Y\": 0.5415688157081604\n          },\n          {\n            \"X\": 0.17757408320903778,\n            \"Y\": 0.554790735244751\n          },\n          {\n            \"X\": 0.12816455960273743,\n            \"Y\": 0.5547865033149719\n          }\n        ]\n      },\n      \"Id\": \"95df7ac5-102f-4088-9ab7-961107f548e2\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96239471435547,\n      \"Text\": \"file\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04151052236557007,\n          \"Height\": 0.01227616984397173,\n          \"Left\": 0.18977390229701996,\n          \"Top\": 0.5417234897613525\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18977390229701996,\n            \"Y\": 0.5417234897613525\n          },\n          {\n            \"X\": 0.2312791645526886,\n            \"Y\": 0.5417270064353943\n          },\n          {\n            \"X\": 0.23128442466259003,\n            \"Y\": 0.553999662399292\n          },\n          {\n            \"X\": 0.18977895379066467,\n            \"Y\": 0.5539960861206055\n          }\n        ]\n      },\n      \"Id\": \"8774a116-4993-4eb3-a07f-4da8a7e6811c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92816162109375,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03211553022265434,\n          \"Height\": 0.009328626096248627,\n          \"Left\": 0.2407129555940628,\n          \"Top\": 0.5445829033851624\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2407129555940628,\n            \"Y\": 0.5445829033851624\n          },\n          {\n            \"X\": 0.27282434701919556,\n            \"Y\": 0.544585645198822\n          },\n          {\n            \"X\": 0.27282848954200745,\n            \"Y\": 0.553911566734314\n          },\n          {\n            \"X\": 0.24071697890758514,\n            \"Y\": 0.5539087653160095\n          }\n        ]\n      },\n      \"Id\": \"2a61d4af-2c5c-47ed-af2c-8494c84997db\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9892807006836,\n      \"Text\": \"produced\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08397356420755386,\n          \"Height\": 0.014910243451595306,\n          \"Left\": 0.2844391167163849,\n          \"Top\": 0.5416668653488159\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2844391167163849,\n            \"Y\": 0.5416668653488159\n          },\n          {\n            \"X\": 0.3684054911136627,\n            \"Y\": 0.5416739583015442\n          },\n          {\n            \"X\": 0.36841267347335815,\n            \"Y\": 0.5565770864486694\n          },\n          {\n            \"X\": 0.28444579243659973,\n            \"Y\": 0.5565698742866516\n          }\n        ]\n      },\n      \"Id\": \"89230316-acaa-4b52-abde-d21ba7d1130b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91600799560547,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04201546683907509,\n          \"Height\": 0.011711417697370052,\n          \"Left\": 0.38034194707870483,\n          \"Top\": 0.5420415997505188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38034194707870483,\n            \"Y\": 0.5420415997505188\n          },\n          {\n            \"X\": 0.42235153913497925,\n            \"Y\": 0.5420451164245605\n          },\n          {\n            \"X\": 0.4223574101924896,\n            \"Y\": 0.5537530183792114\n          },\n          {\n            \"X\": 0.3803476393222809,\n            \"Y\": 0.5537493824958801\n          }\n        ]\n      },\n      \"Id\": \"1a7bd977-3648-42f2-b365-60bbb6142dc6\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84673309326172,\n      \"Text\": \"images\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06064654886722565,\n          \"Height\": 0.014277113601565361,\n          \"Left\": 0.43434733152389526,\n          \"Top\": 0.5421072244644165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43434733152389526,\n            \"Y\": 0.5421072244644165\n          },\n          {\n            \"X\": 0.49498632550239563,\n            \"Y\": 0.542112410068512\n          },\n          {\n            \"X\": 0.4949938952922821,\n            \"Y\": 0.5563843846321106\n          },\n          {\n            \"X\": 0.4343545734882355,\n            \"Y\": 0.5563791394233704\n          }\n        ]\n      },\n      \"Id\": \"cb246f25-306c-498f-98b7-cec9350686bd\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9017333984375,\n      \"Text\": \"generously\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10594335943460464,\n          \"Height\": 0.014457261189818382,\n          \"Left\": 0.5065592527389526,\n          \"Top\": 0.5420834422111511\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5065592527389526,\n            \"Y\": 0.5420834422111511\n          },\n          {\n            \"X\": 0.6124943494796753,\n            \"Y\": 0.5420923829078674\n          },\n          {\n            \"X\": 0.6125026345252991,\n            \"Y\": 0.5565407276153564\n          },\n          {\n            \"X\": 0.5065670013427734,\n            \"Y\": 0.5565316081047058\n          }\n        ]\n      },\n      \"Id\": \"a4ba8d0e-cfc3-47d2-95c0-f1861b09b6f8\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97502136230469,\n      \"Text\": \"made\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0431775264441967,\n          \"Height\": 0.011980479583144188,\n          \"Left\": 0.6225957870483398,\n          \"Top\": 0.5420486927032471\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6225957870483398,\n            \"Y\": 0.5420486927032471\n          },\n          {\n            \"X\": 0.665766179561615,\n            \"Y\": 0.5420523285865784\n          },\n          {\n            \"X\": 0.6657732725143433,\n            \"Y\": 0.5540291666984558\n          },\n          {\n            \"X\": 0.6226027011871338,\n            \"Y\": 0.5540254712104797\n          }\n        ]\n      },\n      \"Id\": \"64905673-0189-476b-a39b-6146e8f2369b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85018157958984,\n      \"Text\": \"available\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09452715516090393,\n          \"Height\": 0.012142248451709747,\n          \"Left\": 0.6769657731056213,\n          \"Top\": 0.5418452620506287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6769657731056213,\n            \"Y\": 0.5418452620506287\n          },\n          {\n            \"X\": 0.7714852094650269,\n            \"Y\": 0.5418532490730286\n          },\n          {\n            \"X\": 0.7714929580688477,\n            \"Y\": 0.5539875030517578\n          },\n          {\n            \"X\": 0.6769730448722839,\n            \"Y\": 0.5539793968200684\n          }\n        ]\n      },\n      \"Id\": \"57e19e47-2a3d-4a32-81b1-6e4e5e661afc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9916000366211,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020065151154994965,\n          \"Height\": 0.014477175660431385,\n          \"Left\": 0.12595921754837036,\n          \"Top\": 0.5580564141273499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12595921754837036,\n            \"Y\": 0.5580564141273499\n          },\n          {\n            \"X\": 0.14601865410804749,\n            \"Y\": 0.5580581426620483\n          },\n          {\n            \"X\": 0.14602437615394592,\n            \"Y\": 0.5725336074829102\n          },\n          {\n            \"X\": 0.12596483528614044,\n            \"Y\": 0.5725318193435669\n          }\n        ]\n      },\n      \"Id\": \"bada3d6a-e497-4914-a56b-8d441d6883c9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98208618164062,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032295580953359604,\n          \"Height\": 0.011476247571408749,\n          \"Left\": 0.156438410282135,\n          \"Top\": 0.5582132339477539\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.156438410282135,\n            \"Y\": 0.5582132339477539\n          },\n          {\n            \"X\": 0.18872927129268646,\n            \"Y\": 0.5582160353660583\n          },\n          {\n            \"X\": 0.1887339949607849,\n            \"Y\": 0.5696895122528076\n          },\n          {\n            \"X\": 0.15644299983978271,\n            \"Y\": 0.5696866512298584\n          }\n        ]\n      },\n      \"Id\": \"af279668-bf6a-445a-a609-35995f08f0b9\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47750854492188,\n      \"Text\": \"Internet\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08325237780809402,\n          \"Height\": 0.011934523470699787,\n          \"Left\": 0.20005859434604645,\n          \"Top\": 0.5581671595573425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20005859434604645,\n            \"Y\": 0.5581671595573425\n          },\n          {\n            \"X\": 0.28330564498901367,\n            \"Y\": 0.5581743121147156\n          },\n          {\n            \"X\": 0.28331097960472107,\n            \"Y\": 0.5701016783714294\n          },\n          {\n            \"X\": 0.200063556432724,\n            \"Y\": 0.5700944066047668\n          }\n        ]\n      },\n      \"Id\": \"74dd7501-a6da-41d4-bfbb-0aa0848f5f4b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.19677734375,\n      \"Text\": \"Archive)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08279073238372803,\n          \"Height\": 0.013314690440893173,\n          \"Left\": 0.29388028383255005,\n          \"Top\": 0.5577412247657776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29388028383255005,\n            \"Y\": 0.5577412247657776\n          },\n          {\n            \"X\": 0.37666457891464233,\n            \"Y\": 0.5577483773231506\n          },\n          {\n            \"X\": 0.3766710162162781,\n            \"Y\": 0.5710559487342834\n          },\n          {\n            \"X\": 0.29388630390167236,\n            \"Y\": 0.5710486769676208\n          }\n        ]\n      },\n      \"Id\": \"986dc803-6798-48f0-bfea-31398af84acf\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.57563781738281,\n      \"Text\": \"[Illustration:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14154058694839478,\n          \"Height\": 0.012680086307227612,\n          \"Left\": 0.3616480529308319,\n          \"Top\": 0.7184162139892578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3616480529308319,\n            \"Y\": 0.7184162139892578\n          },\n          {\n            \"X\": 0.5031819343566895,\n            \"Y\": 0.7184306383132935\n          },\n          {\n            \"X\": 0.5031886696815491,\n            \"Y\": 0.7310962677001953\n          },\n          {\n            \"X\": 0.3616541028022766,\n            \"Y\": 0.7310816645622253\n          }\n        ]\n      },\n      \"Id\": \"4f55af36-6952-4f49-a38e-ca5367f7a24e\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92121124267578,\n      \"Text\": \"LITTLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06296252459287643,\n          \"Height\": 0.011776446364820004,\n          \"Left\": 0.5180450081825256,\n          \"Top\": 0.7187204957008362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5180450081825256,\n            \"Y\": 0.7187204957008362\n          },\n          {\n            \"X\": 0.5810009241104126,\n            \"Y\": 0.7187269330024719\n          },\n          {\n            \"X\": 0.5810075402259827,\n            \"Y\": 0.7304969429969788\n          },\n          {\n            \"X\": 0.5180513262748718,\n            \"Y\": 0.7304904460906982\n          }\n        ]\n      },\n      \"Id\": \"e14095ae-4b74-45bf-9e46-19b3c75ec457\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91227722167969,\n      \"Text\": \"WOMEN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053784456104040146,\n          \"Height\": 0.011671598069369793,\n          \"Left\": 0.5905877351760864,\n          \"Top\": 0.7187941074371338\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5905877351760864,\n            \"Y\": 0.7187941074371338\n          },\n          {\n            \"X\": 0.6443653702735901,\n            \"Y\": 0.7187995910644531\n          },\n          {\n            \"X\": 0.6443721652030945,\n            \"Y\": 0.7304657101631165\n          },\n          {\n            \"X\": 0.5905943512916565,\n            \"Y\": 0.7304601669311523\n          }\n        ]\n      },\n      \"Id\": \"9fa7658a-7586-49b2-b0a9-a109fcb42710\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5247573852539,\n      \"Text\": \"MEG,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039981674402952194,\n          \"Height\": 0.01338756550103426,\n          \"Left\": 0.3893166184425354,\n          \"Top\": 0.7350612878799438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3893166184425354,\n            \"Y\": 0.7350612878799438\n          },\n          {\n            \"X\": 0.4292915463447571,\n            \"Y\": 0.7350654006004333\n          },\n          {\n            \"X\": 0.4292982816696167,\n            \"Y\": 0.7484488487243652\n          },\n          {\n            \"X\": 0.3893231451511383,\n            \"Y\": 0.7484446167945862\n          }\n        ]\n      },\n      \"Id\": \"b3e0cf25-22e8-4787-98cf-753900aded35\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.27552032470703,\n      \"Text\": \"J0,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02836792916059494,\n          \"Height\": 0.013473707251250744,\n          \"Left\": 0.443028062582016,\n          \"Top\": 0.7349631190299988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.443028062582016,\n            \"Y\": 0.7349631190299988\n          },\n          {\n            \"X\": 0.4713889956474304,\n            \"Y\": 0.7349660396575928\n          },\n          {\n            \"X\": 0.47139599919319153,\n            \"Y\": 0.7484368085861206\n          },\n          {\n            \"X\": 0.44303491711616516,\n            \"Y\": 0.7484338283538818\n          }\n        ]\n      },\n      \"Id\": \"0ff412a2-89db-444a-897d-6478b816e8c0\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.38296508789062,\n      \"Text\": \"BETH,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049207769334316254,\n          \"Height\": 0.013392084278166294,\n          \"Left\": 0.4859362542629242,\n          \"Top\": 0.7351277470588684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4859362542629242,\n            \"Y\": 0.7351277470588684\n          },\n          {\n            \"X\": 0.5351367592811584,\n            \"Y\": 0.7351328134536743\n          },\n          {\n            \"X\": 0.535144031047821,\n            \"Y\": 0.7485198378562927\n          },\n          {\n            \"X\": 0.4859433174133301,\n            \"Y\": 0.7485146522521973\n          }\n        ]\n      },\n      \"Id\": \"35d857d5-2fd7-4eef-a896-7c275868295c\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99437713623047,\n      \"Text\": \"AND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03220020607113838,\n          \"Height\": 0.011214407160878181,\n          \"Left\": 0.5485725998878479,\n          \"Top\": 0.7352127432823181\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5485725998878479,\n            \"Y\": 0.7352127432823181\n          },\n          {\n            \"X\": 0.580766499042511,\n            \"Y\": 0.7352160811424255\n          },\n          {\n            \"X\": 0.5807728171348572,\n            \"Y\": 0.7464271187782288\n          },\n          {\n            \"X\": 0.5485787987709045,\n            \"Y\": 0.7464237809181213\n          }\n        ]\n      },\n      \"Id\": \"7e8cc9d9-a07e-4064-b4ec-a00dcdab870d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96517944335938,\n      \"Text\": \"AMY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03248521685600281,\n          \"Height\": 0.01148955337703228,\n          \"Left\": 0.5909501910209656,\n          \"Top\": 0.7349722385406494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5909501910209656,\n            \"Y\": 0.7349722385406494\n          },\n          {\n            \"X\": 0.6234287619590759,\n            \"Y\": 0.7349756360054016\n          },\n          {\n            \"X\": 0.6234354376792908,\n            \"Y\": 0.746461808681488\n          },\n          {\n            \"X\": 0.5909567475318909,\n            \"Y\": 0.7464584112167358\n          }\n        ]\n      },\n      \"Id\": \"04739517-6a1d-4971-b77f-c8b96f8f0cf3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62610626220703,\n      \"Text\": \"LOUISA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06361090391874313,\n          \"Height\": 0.011764343827962875,\n          \"Left\": 0.4118741750717163,\n          \"Top\": 0.750976026058197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4118741750717163,\n            \"Y\": 0.750976026058197\n          },\n          {\n            \"X\": 0.4754789471626282,\n            \"Y\": 0.7509827017784119\n          },\n          {\n            \"X\": 0.47548508644104004,\n            \"Y\": 0.7627403736114502\n          },\n          {\n            \"X\": 0.4118800163269043,\n            \"Y\": 0.7627335786819458\n          }\n        ]\n      },\n      \"Id\": \"6b8efe27-72a2-44a2-8cd8-04b27a3aac14\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57611083984375,\n      \"Text\": \"M.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01871825009584427,\n          \"Height\": 0.011200875043869019,\n          \"Left\": 0.48497217893600464,\n          \"Top\": 0.7511640191078186\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48497217893600464,\n            \"Y\": 0.7511640191078186\n          },\n          {\n            \"X\": 0.5036844611167908,\n            \"Y\": 0.7511659860610962\n          },\n          {\n            \"X\": 0.5036904215812683,\n            \"Y\": 0.7623648643493652\n          },\n          {\n            \"X\": 0.484978049993515,\n            \"Y\": 0.7623628973960876\n          }\n        ]\n      },\n      \"Id\": \"bdb47662-38e3-4e84-9899-41e7a8eec2dc\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.2016830444336,\n      \"Text\": \"ALCOTT]\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07125523686408997,\n          \"Height\": 0.012733574025332928,\n          \"Left\": 0.5168906450271606,\n          \"Top\": 0.7507600784301758\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5168906450271606,\n            \"Y\": 0.7507600784301758\n          },\n          {\n            \"X\": 0.5881386995315552,\n            \"Y\": 0.7507675886154175\n          },\n          {\n            \"X\": 0.588145911693573,\n            \"Y\": 0.7634936571121216\n          },\n          {\n            \"X\": 0.5168974995613098,\n            \"Y\": 0.7634860277175903\n          }\n        ]\n      },\n      \"Id\": \"6c6176bf-2388-4284-9f45-b872f31edb00\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90350341796875,\n      \"Text\": \"LITTLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06331124156713486,\n          \"Height\": 0.01196655910462141,\n          \"Left\": 0.4434536397457123,\n          \"Top\": 0.8311441540718079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4434536397457123,\n            \"Y\": 0.8311441540718079\n          },\n          {\n            \"X\": 0.5067585110664368,\n            \"Y\": 0.8311513662338257\n          },\n          {\n            \"X\": 0.5067648887634277,\n            \"Y\": 0.8431107401847839\n          },\n          {\n            \"X\": 0.44345971941947937,\n            \"Y\": 0.8431034684181213\n          }\n        ]\n      },\n      \"Id\": \"491d4fd6-f648-43e9-8578-d8438589311f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.08460235595703,\n      \"Text\": \"WOMEN.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06135828047990799,\n          \"Height\": 0.011730503290891647,\n          \"Left\": 0.5163190960884094,\n          \"Top\": 0.8312127590179443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5163190960884094,\n            \"Y\": 0.8312127590179443\n          },\n          {\n            \"X\": 0.5776707530021667,\n            \"Y\": 0.8312197327613831\n          },\n          {\n            \"X\": 0.5776773691177368,\n            \"Y\": 0.8429432511329651\n          },\n          {\n            \"X\": 0.5163253545761108,\n            \"Y\": 0.8429362773895264\n          }\n        ]\n      },\n      \"Id\": \"e6a75d7a-77c1-476d-ad56-791ef7ee06ec\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.76288604736328,\n      \"Text\": \"[Illustration:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14308616518974304,\n          \"Height\": 0.013160185888409615,\n          \"Left\": 0.12731130421161652,\n          \"Top\": 0.8785655498504639\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12731130421161652,\n            \"Y\": 0.8785655498504639\n          },\n          {\n            \"X\": 0.27039164304733276,\n            \"Y\": 0.8785824179649353\n          },\n          {\n            \"X\": 0.27039748430252075,\n            \"Y\": 0.8917257189750671\n          },\n          {\n            \"X\": 0.1273164004087448,\n            \"Y\": 0.8917086720466614\n          }\n        ]\n      },\n      \"Id\": \"66c2a8ea-d085-4420-a106-be9dd63e3832\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.18562316894531,\n      \"Text\": \"\\\"They\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05098038911819458,\n          \"Height\": 0.014385959133505821,\n          \"Left\": 0.28593745827674866,\n          \"Top\": 0.879307210445404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28593745827674866,\n            \"Y\": 0.879307210445404\n          },\n          {\n            \"X\": 0.3369111120700836,\n            \"Y\": 0.8793132305145264\n          },\n          {\n            \"X\": 0.33691784739494324,\n            \"Y\": 0.893693208694458\n          },\n          {\n            \"X\": 0.2859438955783844,\n            \"Y\": 0.8936870694160461\n          }\n        ]\n      },\n      \"Id\": \"7c31d167-a6bf-46b9-8706-7cb88b0da0ab\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9754638671875,\n      \"Text\": \"all\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03161526098847389,\n          \"Height\": 0.0123245008289814,\n          \"Left\": 0.34792810678482056,\n          \"Top\": 0.8789575099945068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34792810678482056,\n            \"Y\": 0.8789575099945068\n          },\n          {\n            \"X\": 0.3795373737812042,\n            \"Y\": 0.8789612650871277\n          },\n          {\n            \"X\": 0.37954336404800415,\n            \"Y\": 0.8912820219993591\n          },\n          {\n            \"X\": 0.34793391823768616,\n            \"Y\": 0.8912782669067383\n          }\n        ]\n      },\n      \"Id\": \"ffd0381b-13fc-400f-a1c5-9dcd2b86fb6d\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5956039428711,\n      \"Text\": \"drew\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0429704375565052,\n          \"Height\": 0.012251311913132668,\n          \"Left\": 0.3903346061706543,\n          \"Top\": 0.8791499733924866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3903346061706543,\n            \"Y\": 0.8791499733924866\n          },\n          {\n            \"X\": 0.43329885601997375,\n            \"Y\": 0.8791550993919373\n          },\n          {\n            \"X\": 0.4333050549030304,\n            \"Y\": 0.8914012908935547\n          },\n          {\n            \"X\": 0.3903405964374542,\n            \"Y\": 0.891396164894104\n          }\n        ]\n      },\n      \"Id\": \"0d3ac255-2975-4737-8a6f-5f28e9c823b3\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97077941894531,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0203232541680336,\n          \"Height\": 0.011168409138917923,\n          \"Left\": 0.4435962438583374,\n          \"Top\": 0.8800223469734192\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4435962438583374,\n            \"Y\": 0.8800223469734192\n          },\n          {\n            \"X\": 0.4639137387275696,\n            \"Y\": 0.880024790763855\n          },\n          {\n            \"X\": 0.4639195203781128,\n            \"Y\": 0.891190767288208\n          },\n          {\n            \"X\": 0.44360193610191345,\n            \"Y\": 0.891188383102417\n          }\n        ]\n      },\n      \"Id\": \"d4e2eae6-a1af-4116-93a4-55f0b25f3d96\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98534393310547,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031198767945170403,\n          \"Height\": 0.012069137766957283,\n          \"Left\": 0.4754006862640381,\n          \"Top\": 0.8792133331298828\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4754006862640381,\n            \"Y\": 0.8792133331298828\n          },\n          {\n            \"X\": 0.5065929889678955,\n            \"Y\": 0.8792169690132141\n          },\n          {\n            \"X\": 0.5065994262695312,\n            \"Y\": 0.8912824392318726\n          },\n          {\n            \"X\": 0.4754069745540619,\n            \"Y\": 0.8912787437438965\n          }\n        ]\n      },\n      \"Id\": \"ce33e80b-613d-4d82-9946-3d084559ca0f\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.24220275878906,\n      \"Text\": \"fire,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0485549122095108,\n          \"Height\": 0.01392244640737772,\n          \"Left\": 0.5185218453407288,\n          \"Top\": 0.8791346549987793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5185218453407288,\n            \"Y\": 0.8791346549987793\n          },\n          {\n            \"X\": 0.5670689940452576,\n            \"Y\": 0.8791403770446777\n          },\n          {\n            \"X\": 0.5670767426490784,\n            \"Y\": 0.893057107925415\n          },\n          {\n            \"X\": 0.5185292959213257,\n            \"Y\": 0.8930513262748718\n          }\n        ]\n      },\n      \"Id\": \"d24adc10-a85f-4315-bd55-80cda1ca543b\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93962097167969,\n      \"Text\": \"mother\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06478126347064972,\n          \"Height\": 0.012142326682806015,\n          \"Left\": 0.5798527598381042,\n          \"Top\": 0.8791712522506714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5798527598381042,\n            \"Y\": 0.8791712522506714\n          },\n          {\n            \"X\": 0.6446269154548645,\n            \"Y\": 0.8791788816452026\n          },\n          {\n            \"X\": 0.6446340680122375,\n            \"Y\": 0.8913135528564453\n          },\n          {\n            \"X\": 0.5798596143722534,\n            \"Y\": 0.8913058638572693\n          }\n        ]\n      },\n      \"Id\": \"2ad4769e-2af5-4174-bbb5-af537ad09759\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80963134765625,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019396983087062836,\n          \"Height\": 0.01196346152573824,\n          \"Left\": 0.6567772030830383,\n          \"Top\": 0.8793484568595886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6567772030830383,\n            \"Y\": 0.8793484568595886\n          },\n          {\n            \"X\": 0.6761670112609863,\n            \"Y\": 0.8793507814407349\n          },\n          {\n            \"X\": 0.6761741638183594,\n            \"Y\": 0.8913119435310364\n          },\n          {\n            \"X\": 0.6567842364311218,\n            \"Y\": 0.8913096189498901\n          }\n        ]\n      },\n      \"Id\": \"993ba9ce-86ec-48ee-86b1-75ca4269e773\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98384857177734,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03114282339811325,\n          \"Height\": 0.012148299254477024,\n          \"Left\": 0.6874004602432251,\n          \"Top\": 0.8791998028755188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6874004602432251,\n            \"Y\": 0.8791998028755188\n          },\n          {\n            \"X\": 0.7185357809066772,\n            \"Y\": 0.8792034983634949\n          },\n          {\n            \"X\": 0.718543291091919,\n            \"Y\": 0.891348123550415\n          },\n          {\n            \"X\": 0.6874077916145325,\n            \"Y\": 0.8913443684577942\n          }\n        ]\n      },\n      \"Id\": \"4bd57d1b-8be3-4552-ab5b-d17cea37c9ae\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70311737060547,\n      \"Text\": \"big\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03085974045097828,\n          \"Height\": 0.014546983875334263,\n          \"Left\": 0.7298745512962341,\n          \"Top\": 0.8790760636329651\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7298745512962341,\n            \"Y\": 0.8790760636329651\n          },\n          {\n            \"X\": 0.7607251405715942,\n            \"Y\": 0.8790796995162964\n          },\n          {\n            \"X\": 0.7607343196868896,\n            \"Y\": 0.8936230540275574\n          },\n          {\n            \"X\": 0.72988361120224,\n            \"Y\": 0.8936193585395813\n          }\n        ]\n      },\n      \"Id\": \"92fb137f-be70-4508-851a-aa3c800af8de\",\n      \"Page\": 1\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.49565887451172,\n      \"Text\": \"chair,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059120386838912964,\n          \"Height\": 0.013875765725970268,\n          \"Left\": 0.772409200668335,\n          \"Top\": 0.879285991191864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.772409200668335,\n            \"Y\": 0.879285991191864\n          },\n          {\n            \"X\": 0.8315204381942749,\n            \"Y\": 0.8792929649353027\n          },\n          {\n            \"X\": 0.8315295577049255,\n            \"Y\": 0.8931617736816406\n          },\n          {\n            \"X\": 0.7724180221557617,\n            \"Y\": 0.8931546807289124\n          }\n        ]\n      },\n      \"Id\": \"1d1f67e4-cf80-49e2-a09b-7dae3c92b88c\",\n      \"Page\": 1\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/multi-page-forms-samples-2-page.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 2}, \"JobStatus\": \"SUCCEEDED\", \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.9716668128967285, \"Height\": 0.9898390173912048, \"Left\": 0.010398272424936295, \"Top\": 0.006669559050351381}, \"Polygon\": [{\"X\": 0.012226494029164314, \"Y\": 0.006669559050351381}, {\"X\": 0.9808688759803772, \"Y\": 0.0071210009045898914}, {\"X\": 0.9820650815963745, \"Y\": 0.9965085983276367}, {\"X\": 0.010398272424936295, \"Y\": 0.9953727126121521}]}, \"Id\": \"98c97f42-5221-40cc-b1c0-6a464a65ea2c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b02b6b03-6175-4740-82f7-d2d069ef57fd\", \"f2e31edf-2116-4955-85ca-fff4f2148fdc\", \"a7c20fd0-a4d2-444e-a8b6-af69247857ee\", \"34394595-63bc-45a1-a39b-4133779c27b4\", \"1557cd64-2d2f-40bf-b26d-f809783f3cf7\", \"87fd50e7-6b4d-4991-81ac-d73c9cc1da96\", \"f2cf130c-bb16-4986-be55-2f91e362bd66\", \"96f2edef-74b9-4e1b-ad0f-79bf2085db30\", \"54b1e646-ce7f-463c-a434-a685dea06cc0\", \"2d62871e-7d89-46ff-b753-ead336db588e\", \"e3757cd2-6cd2-4bf2-86af-bcb557b7d211\", \"5c96de4e-2920-4190-92d2-dd59a717dedf\", \"5dd7a96a-a8a6-430e-afe1-c1f9f2d3c711\", \"122651c7-842d-4e07-b0f5-e2e7a4a2d10b\", \"daff5c37-76a9-448b-a3aa-53498aa4b434\", \"ac9e43ad-a6c0-4116-b586-fb6df8cc1595\", \"109e68b1-e145-4e35-a4f9-7e2c0af689e5\", \"47523e35-9353-4e7d-afb8-9d13e4178ebb\", \"c91ed27c-9832-4305-884d-b465da745c9f\", \"b689b30a-3998-472a-9f7e-edf851412f1c\", \"2476e219-cebe-4d09-9584-4146ab4638dc\", \"cc72f94c-46da-4c8a-93e4-0cf597c4aa76\", \"8e2f7898-b7a4-4aff-8353-9c70aa148b35\", \"b5993e51-f01a-4e88-b97a-11e3a610c3b5\", \"203631c3-2915-4d2d-be3e-dcd9179e8ae0\", \"6bf00f44-515c-43b7-86fe-f734e5e95683\", \"4c11a513-8ca3-40a8-9b29-49d93224d8f8\", \"1ce916e2-7a74-45d6-91b1-93ea68205391\", \"dcc6cfd8-b2d6-4ec1-8adb-d72a6fe1292c\", \"efb4b2ff-73b5-4119-940a-5bbde41b511c\", \"381a505d-78f5-4219-93d6-7bab7fee7be9\", \"5b055732-7604-4d7c-9399-8ab1948dac5b\", \"9697a786-5416-4d98-ab5f-3371ce651db8\", \"7e42af4b-5e3d-4a84-ad3f-a3129953da97\", \"15051837-6bd8-4c70-a5d0-26be886e1949\", \"46ddddb0-e7b4-4a0f-adae-ce7cdb764bf2\", \"f199244a-be22-431c-8922-9da45aca120e\", \"5ca7143c-1a5b-4b47-bbb8-4acf1079ae6b\", \"18c63121-a3d8-474e-aa3b-442dfeec05da\", \"3493f88e-c166-41d8-b1fc-32785b55d19b\", \"af9ab6a4-a03e-4730-ac14-1cd1e789d062\", \"1b49e4d3-eb9b-471f-bd84-c9ec25495b5b\", \"d0624b87-1e98-4ff6-b574-50b4b0ab78df\", \"d3e03e0e-4c1e-4149-b1b9-8cdc7ebde34a\", \"450b87d0-8407-4e2c-8ca6-6f669f9acb67\", \"da6c2dec-b028-4fbf-9eea-08919546acd3\", \"6a4bcf94-8b8e-4542-ac9d-1e3eb89e9bc5\", \"d0eba493-2211-410f-93b9-38342b843827\", \"496ab150-5927-4037-ad84-7df95ae5a81a\", \"e29a1464-5e79-42af-90fe-245ee14bb8aa\", \"711fcee8-dfa2-4475-af5a-698e2e8c0b20\", \"1129b769-d7bf-40e8-b951-4572ecbeb1da\", \"7a674cf3-5957-41d5-8434-f06b774f51e6\", \"6e4bfc30-41bc-4623-a599-0f392bbcd7b4\", \"44072cea-0137-4e03-b765-108cd969e214\", \"b4298199-2bed-4eb2-88a2-0e1df43c1dcc\", \"1fe6424e-0b77-4407-9d06-6873d1932650\", \"3ed09dad-002f-4867-9e16-cba3cc2b050c\", \"733a593f-b1b6-4db2-904b-0126a483d17e\", \"19a04f37-8995-4669-b85f-ec32bc175a62\", \"99f284df-4224-4118-8070-e45152ce0c04\", \"26888937-aec4-46bd-ae6a-62c30cdafa50\", \"ea89d1f0-d348-4efe-bd1d-baaf1a035d07\", \"bfae1382-1c64-4a3d-910a-64812c56fc99\", \"f8d15057-c1d2-4daf-8155-1377a2064cd9\", \"c5cf5197-b769-4c8e-afb6-72c3d4cb8596\", \"3fdac3b2-30e1-42a8-a0d4-adb168ebdc26\", \"82839c8e-4bb2-4349-a423-7fa61b4d6a16\", \"98bae966-1d6b-4904-b28f-b689535c0649\", \"2755624f-687e-46ec-b2a7-e0d4020b2bc5\", \"224379c6-4159-4354-a396-c4a364b74c1b\", \"38592d87-62b2-4739-ac03-fe4b11da9719\", \"15775ba2-08a7-4eaa-b2ce-b8027cdeaf80\", \"5a594037-bd25-482c-b3d5-763de79e4c44\", \"30118a65-b8d3-41bb-a702-f5cc0704c7eb\", \"dc882ace-9887-4c0a-b863-0a0dd46773c3\", \"f5105058-26f4-4971-a188-65c695bf5e30\", \"69184279-6424-40dc-8c5b-aec0aa9a5c21\", \"e66a67ad-9d05-49b5-a581-10a913d51c5f\", \"c2771951-4c29-43db-ae61-f4e54cf9345c\", \"bf887bec-e97d-4b96-9817-40782ad2e883\", \"954514e0-5b53-4cf7-852a-ce0b8dc87082\", \"0420af22-4e43-4fd4-9bf0-88113a2ce880\", \"ba3cf80e-0a2f-4b01-b047-ef1ac9c1d8bc\", \"bc418eb9-2bae-430e-a61e-28802fd5103e\", \"43923147-c606-44ff-bd39-4fe69fa834a6\", \"cfaad9fd-2c06-479f-89bf-95a764f05697\", \"8aa7eb67-5627-4572-8de4-5f4e7c10ed7e\", \"5ed0d729-d57c-436e-b0fe-cc42519fd525\", \"cf6dc774-6e0f-4aef-ad23-e424bc30b077\", \"343a187f-15fa-48de-ad37-a799c82a67a8\", \"128e7db7-e535-453e-a372-c8792c8fd1b9\", \"cee92da3-b87d-4ede-b583-202b233200f0\", \"11f556ef-c6ea-497d-af1b-c2bdb9aa9456\", \"20b4944e-52f4-4dd4-9ba4-1883fac43c27\", \"92b0522c-738a-4148-87d9-545f241946ff\", \"0a6885a8-aaae-428d-a62b-af5b029025a2\", \"fac7422e-7453-4494-a353-2a8665c672f4\", \"2c765143-a4a9-4930-ab45-1d14bdfc179e\", \"1318447e-fc78-43a0-b498-d67b06264ce5\", \"4de76095-8c7f-4750-bf6c-173ebd8180ea\", \"1b7f51e1-e7c2-4939-a0b3-76c411811bdd\", \"7fe40d57-94cd-4ad8-b955-92917b7b8c98\", \"cfa5960b-2f6d-4835-960c-19555333ac4c\", \"4daca14f-14e4-4750-8c4f-7d2b5ee16e3c\", \"e433b7fa-7096-4591-b8b5-df3f19a0045b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48408508300781, \"Text\": \"Patient Information\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21466954052448273, \"Height\": 0.014412210322916508, \"Left\": 0.03829403594136238, \"Top\": 0.054894402623176575}, \"Polygon\": [{\"X\": 0.03831930086016655, \"Y\": 0.054894402623176575}, {\"X\": 0.2529635727405548, \"Y\": 0.05500179901719093}, {\"X\": 0.25294798612594604, \"Y\": 0.06930661201477051}, {\"X\": 0.03829403594136238, \"Y\": 0.06919702887535095}]}, \"Id\": \"b02b6b03-6175-4740-82f7-d2d069ef57fd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4bdf53cb-1586-48e0-ac2f-a348364f2991\", \"1e6a9ddf-4172-4d20-a75c-2a8910da75f1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.79655456542969, \"Text\": \"First\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031769927591085434, \"Height\": 0.010264907032251358, \"Left\": 0.03871987760066986, \"Top\": 0.10495083034038544}, \"Polygon\": [{\"X\": 0.03873796388506889, \"Y\": 0.10495083034038544}, {\"X\": 0.070489801466465, \"Y\": 0.10496784746646881}, {\"X\": 0.07047274708747864, \"Y\": 0.1152157410979271}, {\"X\": 0.03871987760066986, \"Y\": 0.11519849300384521}]}, \"Id\": \"f2e31edf-2116-4955-85ca-fff4f2148fdc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7a166c9-fb73-4a78-961c-8b871ac5d382\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.40998840332031, \"Text\": \"Name: ALEJANDRO Last Name: ROSALEZ\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5509992241859436, \"Height\": 0.03375959023833275, \"Left\": 0.07401137053966522, \"Top\": 0.08376164734363556}, \"Polygon\": [{\"X\": 0.07406669110059738, \"Y\": 0.08376164734363556}, {\"X\": 0.6250077486038208, \"Y\": 0.08404859900474548}, {\"X\": 0.62501060962677, \"Y\": 0.1175212413072586}, {\"X\": 0.07401137053966522, \"Y\": 0.11722114682197571}]}, \"Id\": \"a7c20fd0-a4d2-444e-a8b6-af69247857ee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"46b32145-ae6c-47c4-a707-af4e22e59956\", \"1054ab4e-0f14-4504-b8bb-f917ed69e0b1\", \"78da39df-c7c2-453d-a8a4-fbb0c7990e8c\", \"aac765b9-ce10-481f-95eb-d5d0cffb25d3\", \"b18154dd-9a29-4f85-b958-bc073e9594af\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57842254638672, \"Text\": \"Date of Birth: 10/10/1982\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2649634778499603, \"Height\": 0.035180456936359406, \"Left\": 0.6935924291610718, \"Top\": 0.09031432867050171}, \"Polygon\": [{\"X\": 0.6935924291610718, \"Y\": 0.09031432867050171}, {\"X\": 0.958516001701355, \"Y\": 0.09045348316431046}, {\"X\": 0.9585558772087097, \"Y\": 0.12549477815628052}, {\"X\": 0.693602979183197, \"Y\": 0.1253490149974823}]}, \"Id\": \"34394595-63bc-45a1-a39b-4133779c27b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1833b1fa-98ca-46db-b689-1cc69df0c564\", \"d00e421d-321c-4be8-9fb2-3e1aed765d22\", \"eafcb6b8-9bdb-4f71-a06d-6b453c3f00a5\", \"4f276f11-4d12-40d5-b750-9a0bca924ad6\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.09619140625, \"Text\": \"Sex: M\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08774136006832123, \"Height\": 0.025072872638702393, \"Left\": 0.03988395258784294, \"Top\": 0.12617725133895874}, \"Polygon\": [{\"X\": 0.03992801904678345, \"Y\": 0.12617725133895874}, {\"X\": 0.12762531638145447, \"Y\": 0.1262255758047104}, {\"X\": 0.1275881677865982, \"Y\": 0.15125012397766113}, {\"X\": 0.03988395258784294, \"Y\": 0.15120023488998413}]}, \"Id\": \"1557cd64-2d2f-40bf-b26d-f809783f3cf7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"13c142e0-391e-4604-a5fc-51ec1d226d4b\", \"d7bdcee0-700f-4a44-a366-8c45f679ba18\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.25526428222656, \"Text\": \"Marital Status: MARRIED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2399480640888214, \"Height\": 0.023926906287670135, \"Left\": 0.17462043464183807, \"Top\": 0.12785330414772034}, \"Polygon\": [{\"X\": 0.17465221881866455, \"Y\": 0.12785330414772034}, {\"X\": 0.4145684838294983, \"Y\": 0.12798577547073364}, {\"X\": 0.4145547151565552, \"Y\": 0.15178021788597107}, {\"X\": 0.17462043464183807, \"Y\": 0.15164367854595184}]}, \"Id\": \"87fd50e7-6b4d-4991-81ac-d73c9cc1da96\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f6c4fe6b-db72-468f-9e05-9bf8b40ace04\", \"ab041376-1e0f-4108-9d6d-43e1b27d4466\", \"28ece4bb-208b-412c-81e3-8945adb24ab3\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50582122802734, \"Text\": \"Email Address:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10598162561655045, \"Height\": 0.010572915896773338, \"Left\": 0.4646334648132324, \"Top\": 0.14205999672412872}, \"Polygon\": [{\"X\": 0.4646379053592682, \"Y\": 0.14205999672412872}, {\"X\": 0.5706151127815247, \"Y\": 0.14211957156658173}, {\"X\": 0.5706141591072083, \"Y\": 0.1526329219341278}, {\"X\": 0.4646334648132324, \"Y\": 0.15257255733013153}]}, \"Id\": \"f2cf130c-bb16-4986-be55-2f91e362bd66\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c802266c-081b-469d-89a9-5a7bdcb25501\", \"456adc1b-158e-4e74-94ec-52e2ff543012\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.42427062988281, \"Text\": \"Address: 123 ANY STREET\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.39053258299827576, \"Height\": 0.02473527006804943, \"Left\": 0.04047944396734238, \"Top\": 0.16716906428337097}, \"Polygon\": [{\"X\": 0.040522538125514984, \"Y\": 0.16716906428337097}, {\"X\": 0.43101200461387634, \"Y\": 0.16739560663700104}, {\"X\": 0.43099910020828247, \"Y\": 0.19190433621406555}, {\"X\": 0.04047944396734238, \"Y\": 0.1916709691286087}]}, \"Id\": \"96f2edef-74b9-4e1b-ad0f-79bf2085db30\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c0ea6103-a793-4542-be27-c9feb63293f3\", \"15b97d1f-57bd-40a4-9c85-a3d572259903\", \"375e1d1b-e4f4-4129-a586-b83c939983b0\", \"f265126f-b45b-4411-917a-3b414ce8e05e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56392669677734, \"Text\": \"City: ANYTOWN\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2177828699350357, \"Height\": 0.023003704845905304, \"Left\": 0.6252732276916504, \"Top\": 0.17146192491054535}, \"Polygon\": [{\"X\": 0.6252732276916504, \"Y\": 0.17146192491054535}, {\"X\": 0.8430383801460266, \"Y\": 0.17158888280391693}, {\"X\": 0.8430560827255249, \"Y\": 0.19446563720703125}, {\"X\": 0.625275194644928, \"Y\": 0.19433513283729553}]}, \"Id\": \"54b1e646-ce7f-463c-a434-a685dea06cc0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"caf8f382-fe4a-46dd-ab10-d4eedefca164\", \"28386009-65d2-4e1d-a56b-24b93c20063f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 98.42089080810547, \"Text\": \"State: CA 12345 Phone: 646-555-0111\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6434434652328491, \"Height\": 0.02700142376124859, \"Left\": 0.04337085410952568, \"Top\": 0.20735301077365875}, \"Polygon\": [{\"X\": 0.04341738671064377, \"Y\": 0.20735301077365875}, {\"X\": 0.6868067979812622, \"Y\": 0.20774465799331665}, {\"X\": 0.6868143081665039, \"Y\": 0.2343544363975525}, {\"X\": 0.04337085410952568, \"Y\": 0.23395058512687683}]}, \"Id\": \"2d62871e-7d89-46ff-b753-ead336db588e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3b9c0f52-8d7f-4bc5-8061-fd4e0a05eb1a\", \"d7d79606-95ba-46e3-9533-de35295df7b0\", \"a87ed8fc-7d7b-41c9-a95e-e775efd6c43c\", \"2a57e38d-d939-4ad7-910e-5b443e9ae2f0\", \"42334046-62bb-48b0-9ad1-801b74ae8930\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.05618286132812, \"Text\": \"Zip Code:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06826358288526535, \"Height\": 0.01271926611661911, \"Left\": 0.16521607339382172, \"Top\": 0.2225170135498047}, \"Polygon\": [{\"X\": 0.16523337364196777, \"Y\": 0.2225170135498047}, {\"X\": 0.23347964882850647, \"Y\": 0.22255928814411163}, {\"X\": 0.2334650754928589, \"Y\": 0.2352362722158432}, {\"X\": 0.16521607339382172, \"Y\": 0.2351933866739273}]}, \"Id\": \"e3757cd2-6cd2-4bf2-86af-bcb557b7d211\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"818df281-6c22-4bd2-8a48-6c8653be9d22\", \"34cabc92-7a7a-4639-8e3f-273962d5cb94\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34004211425781, \"Text\": \"Emergency Contact 1:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.23049041628837585, \"Height\": 0.01620415225625038, \"Left\": 0.041848074644804, \"Top\": 0.25344955921173096}, \"Polygon\": [{\"X\": 0.04187623783946037, \"Y\": 0.25344955921173096}, {\"X\": 0.27233850955963135, \"Y\": 0.2535973787307739}, {\"X\": 0.27232199907302856, \"Y\": 0.26965370774269104}, {\"X\": 0.041848074644804, \"Y\": 0.2695032060146332}]}, \"Id\": \"5c96de4e-2920-4190-92d2-dd59a717dedf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fdaa5289-b68a-4997-ba4d-bc9b6be65d11\", \"12b1b68c-8e64-4a9b-9ad9-f6431c51f9ba\", \"49ab7a7a-572f-4cbe-a709-595210dcbde4\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68896484375, \"Text\": \"First Name:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08088482916355133, \"Height\": 0.010269795544445515, \"Left\": 0.040451858192682266, \"Top\": 0.3007024824619293}, \"Polygon\": [{\"X\": 0.04046981781721115, \"Y\": 0.3007024824619293}, {\"X\": 0.1213366836309433, \"Y\": 0.3007570505142212}, {\"X\": 0.12132132798433304, \"Y\": 0.31097227334976196}, {\"X\": 0.040451858192682266, \"Y\": 0.31091707944869995}]}, \"Id\": \"5dd7a96a-a8a6-430e-afe1-c1f9f2d3c711\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f769232-91c9-4424-8a5f-435babbf160c\", \"7651e1f6-b348-4ead-8fa0-ff42bd15f149\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36670684814453, \"Text\": \"CARLOS\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10884661972522736, \"Height\": 0.020170681178569794, \"Left\": 0.156087726354599, \"Top\": 0.28967612981796265}, \"Polygon\": [{\"X\": 0.15611572563648224, \"Y\": 0.28967612981796265}, {\"X\": 0.26493433117866516, \"Y\": 0.28974875807762146}, {\"X\": 0.2649132311344147, \"Y\": 0.30984681844711304}, {\"X\": 0.156087726354599, \"Y\": 0.30977267026901245}]}, \"Id\": \"122651c7-842d-4e07-b0f5-e2e7a4a2d10b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c1157932-4f5a-4d03-806e-9dd555eb108b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48271179199219, \"Text\": \"Last Name: SALAZAR\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2591802775859833, \"Height\": 0.022034991532564163, \"Left\": 0.3686865270137787, \"Top\": 0.29044100642204285}, \"Polygon\": [{\"X\": 0.36870232224464417, \"Y\": 0.29044100642204285}, {\"X\": 0.6278647184371948, \"Y\": 0.2906140387058258}, {\"X\": 0.627866804599762, \"Y\": 0.3124760091304779}, {\"X\": 0.3686865270137787, \"Y\": 0.3122989237308502}]}, \"Id\": \"daff5c37-76a9-448b-a3aa-53498aa4b434\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"de5c4619-f8fa-4f5d-8ae2-14376a84f46d\", \"87d2553e-6802-4a69-b96b-1e5aaef7da87\", \"2ac64703-4168-4f8b-8c3f-f8b4eedbc07b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.04090118408203, \"Text\": \"Phone: 212-555-0150\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2743711471557617, \"Height\": 0.019171178340911865, \"Left\": 0.040136780589818954, \"Top\": 0.3172575831413269}, \"Polygon\": [{\"X\": 0.04017017036676407, \"Y\": 0.3172575831413269}, {\"X\": 0.31450793147087097, \"Y\": 0.3174459934234619}, {\"X\": 0.31449094414711, \"Y\": 0.33642876148223877}, {\"X\": 0.040136780589818954, \"Y\": 0.3362365961074829}]}, \"Id\": \"ac9e43ad-a6c0-4116-b586-fb6df8cc1595\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d01438c-588a-423c-bd84-9cf5a578dd63\", \"83f00781-9535-45b5-b274-090281243ffe\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.38369750976562, \"Text\": \"Relationship to Patient:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16319456696510315, \"Height\": 0.01261789258569479, \"Left\": 0.37032413482666016, \"Top\": 0.3266584277153015}, \"Polygon\": [{\"X\": 0.37033310532569885, \"Y\": 0.3266584277153015}, {\"X\": 0.5335186719894409, \"Y\": 0.3267715871334076}, {\"X\": 0.5335161685943604, \"Y\": 0.33927634358406067}, {\"X\": 0.37032413482666016, \"Y\": 0.3391617238521576}]}, \"Id\": \"109e68b1-e145-4e35-a4f9-7e2c0af689e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"50939972-7e6f-496b-8eaf-36dfef27bb5c\", \"c55738d0-e06c-4681-a4e4-61474b84e63b\", \"048a60a2-c96c-4dd5-8df9-200b425194f0\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36674499511719, \"Text\": \"BROTHER\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14748717844486237, \"Height\": 0.022217677906155586, \"Left\": 0.5736127495765686, \"Top\": 0.31702929735183716}, \"Polygon\": [{\"X\": 0.5736144185066223, \"Y\": 0.31702929735183716}, {\"X\": 0.7210913300514221, \"Y\": 0.31713053584098816}, {\"X\": 0.7210999131202698, \"Y\": 0.3392469882965088}, {\"X\": 0.5736127495765686, \"Y\": 0.33914342522621155}]}, \"Id\": \"47523e35-9353-4e7d-afb8-9d13e4178ebb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1de60303-63c6-43c4-9407-0fc3ad39e29f\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39268493652344, \"Text\": \"Emergency Contact 2:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.231425940990448, \"Height\": 0.01594693958759308, \"Left\": 0.041208330541849136, \"Top\": 0.3622160851955414}, \"Polygon\": [{\"X\": 0.0412360318005085, \"Y\": 0.3622160851955414}, {\"X\": 0.27263426780700684, \"Y\": 0.3623824119567871}, {\"X\": 0.2726180851459503, \"Y\": 0.37816300988197327}, {\"X\": 0.041208330541849136, \"Y\": 0.3779940605163574}]}, \"Id\": \"c91ed27c-9832-4305-884d-b465da745c9f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ac12aaa9-e729-4aa7-81a2-aa2773877356\", \"52e9ec2f-646c-4dc4-9e0b-a2a03b7904dd\", \"822df1f4-c32c-4d68-a48b-078d13bbe3f7\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.51700592041016, \"Text\": \"First Name: JANE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21030615270137787, \"Height\": 0.023710431531071663, \"Left\": 0.04008429870009422, \"Top\": 0.3977656662464142}, \"Polygon\": [{\"X\": 0.04012572020292282, \"Y\": 0.3977656662464142}, {\"X\": 0.2503904402256012, \"Y\": 0.3979221284389496}, {\"X\": 0.25036463141441345, \"Y\": 0.4214760959148407}, {\"X\": 0.04008429870009422, \"Y\": 0.42131611704826355}]}, \"Id\": \"b689b30a-3998-472a-9f7e-edf851412f1c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e24d07-9a15-42c7-93e3-9b3f8fefc247\", \"4463b7fb-f7ff-4243-bc84-90828aec6b96\", \"6a10b1d2-113a-484f-9d1f-6338062370b1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63231658935547, \"Text\": \"Last Name:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07867978513240814, \"Height\": 0.010201843455433846, \"Left\": 0.36869508028030396, \"Top\": 0.4116569459438324}, \"Polygon\": [{\"X\": 0.36870241165161133, \"Y\": 0.4116569459438324}, {\"X\": 0.4473748505115509, \"Y\": 0.4117162525653839}, {\"X\": 0.4473700523376465, \"Y\": 0.4218587875366211}, {\"X\": 0.36869508028030396, \"Y\": 0.4217989146709442}]}, \"Id\": \"2476e219-cebe-4d09-9584-4146ab4638dc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d97a1134-267f-4cfe-8a76-b24711ef8b30\", \"f002ea56-af17-4cc5-91e9-dc1da08973c8\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36662292480469, \"Text\": \"DOE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.058015771210193634, \"Height\": 0.022542130202054977, \"Left\": 0.508903443813324, \"Top\": 0.3982500433921814}, \"Polygon\": [{\"X\": 0.5089097619056702, \"Y\": 0.3982500433921814}, {\"X\": 0.566919207572937, \"Y\": 0.3982931971549988}, {\"X\": 0.5669170022010803, \"Y\": 0.4207921624183655}, {\"X\": 0.508903443813324, \"Y\": 0.4207480549812317}]}, \"Id\": \"cc72f94c-46da-4c8a-93e4-0cf597c4aa76\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"20f4010d-2f4b-40b7-b271-a5c29e640cac\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.0532455444336, \"Text\": \"Phone: 650-555-0123\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30487096309661865, \"Height\": 0.02007487043738365, \"Left\": 0.040351103991270065, \"Top\": 0.4255405068397522}, \"Polygon\": [{\"X\": 0.04038597643375397, \"Y\": 0.4255405068397522}, {\"X\": 0.3452220857143402, \"Y\": 0.42577335238456726}, {\"X\": 0.34520626068115234, \"Y\": 0.44561538100242615}, {\"X\": 0.040351103991270065, \"Y\": 0.44537821412086487}]}, \"Id\": \"8e2f7898-b7a4-4aff-8353-9c70aa148b35\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92fcc7a0-962d-4991-b357-9df966f72d3a\", \"d84f85bb-3f87-4dd8-8f1d-d1fdbcd29e39\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.31047821044922, \"Text\": \"Relationship to Patient:\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16124635934829712, \"Height\": 0.012136002071201801, \"Left\": 0.3702426552772522, \"Top\": 0.43580296635627747}, \"Polygon\": [{\"X\": 0.37025126814842224, \"Y\": 0.43580296635627747}, {\"X\": 0.5314890146255493, \"Y\": 0.43592727184295654}, {\"X\": 0.5314865112304688, \"Y\": 0.4479389786720276}, {\"X\": 0.3702426552772522, \"Y\": 0.4478132724761963}]}, \"Id\": \"b5993e51-f01a-4e88-b97a-11e3a610c3b5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cc829258-26b6-44ec-abaa-c61ce27e2525\", \"8b54f258-8d6c-4de2-bbbd-08d02452ba7c\", \"9c57a59e-853d-4175-abb7-4d49ea177397\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3666000366211, \"Text\": \"FRIEND\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11966527998447418, \"Height\": 0.021208692342042923, \"Left\": 0.5710664391517639, \"Top\": 0.4263854920864105}, \"Polygon\": [{\"X\": 0.5710682272911072, \"Y\": 0.4263854920864105}, {\"X\": 0.690725564956665, \"Y\": 0.42647695541381836}, {\"X\": 0.6907317638397217, \"Y\": 0.44759419560432434}, {\"X\": 0.5710664391517639, \"Y\": 0.44750094413757324}]}, \"Id\": \"203631c3-2915-4d2d-be3e-dcd9179e8ae0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8f68bcf3-06e1-42df-9f9c-171b4851d658\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75811004638672, \"Text\": \"Did you feel fever or feverish lately?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28766435384750366, \"Height\": 0.01603809930384159, \"Left\": 0.049606747925281525, \"Top\": 0.5896510481834412}, \"Polygon\": [{\"X\": 0.049634017050266266, \"Y\": 0.5896510481834412}, {\"X\": 0.337271124124527, \"Y\": 0.5899043083190918}, {\"X\": 0.33725816011428833, \"Y\": 0.6056891083717346}, {\"X\": 0.049606747925281525, \"Y\": 0.6054326295852661}]}, \"Id\": \"6bf00f44-515c-43b7-86fe-f734e5e95683\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d8651e01-139f-4539-a229-511a9aa48f2b\", \"edbf9737-5270-4491-8234-bb44ec3776d9\", \"9a05872b-56dd-418a-8432-73318f250626\", \"efd28b46-3d33-42c2-986a-e296aacacce6\", \"7a60a80a-3877-497b-bf0c-038b184a8627\", \"388e0d6e-2f48-41d1-b2a4-537ebd804eba\", \"12540858-0920-4a29-9fa1-151a287d395c\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.93754577636719, \"Text\": \"Yes\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031127259135246277, \"Height\": 0.012501092627644539, \"Left\": 0.7112588286399841, \"Top\": 0.5947180986404419}, \"Polygon\": [{\"X\": 0.7112588286399841, \"Y\": 0.5947180986404419}, {\"X\": 0.7423803806304932, \"Y\": 0.5947456359863281}, {\"X\": 0.7423861026763916, \"Y\": 0.6072192192077637}, {\"X\": 0.7112632989883423, \"Y\": 0.6071914434432983}]}, \"Id\": \"4c11a513-8ca3-40a8-9b29-49d93224d8f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"699cc941-76b1-40d4-bce3-ea7962053ce1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75979614257812, \"Text\": \"No\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023127464577555656, \"Height\": 0.012216651812195778, \"Left\": 0.8091446757316589, \"Top\": 0.5960407853126526}, \"Polygon\": [{\"X\": 0.8091446757316589, \"Y\": 0.5960407853126526}, {\"X\": 0.8322631120681763, \"Y\": 0.5960612297058105}, {\"X\": 0.8322721123695374, \"Y\": 0.6082574129104614}, {\"X\": 0.8091527819633484, \"Y\": 0.6082367897033691}]}, \"Id\": \"1ce916e2-7a74-45d6-91b1-93ea68205391\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b50ccd03-5b2a-441e-b107-cfbbc4840365\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84900665283203, \"Text\": \"Are you having shortness of breath?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28936222195625305, \"Height\": 0.015527813695371151, \"Left\": 0.050592970103025436, \"Top\": 0.6554269194602966}, \"Polygon\": [{\"X\": 0.050619278103113174, \"Y\": 0.6554269194602966}, {\"X\": 0.33995521068573, \"Y\": 0.6556951999664307}, {\"X\": 0.3399427831172943, \"Y\": 0.670954704284668}, {\"X\": 0.050592970103025436, \"Y\": 0.6706832647323608}]}, \"Id\": \"dcc6cfd8-b2d6-4ec1-8adb-d72a6fe1292c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e754e1df-8b98-43d8-9fa6-7bb95dd477bb\", \"db554f8b-ab10-496c-8cf7-0fd6fcabc484\", \"9898b5d9-6076-48fe-bcee-a2e333c8dda4\", \"40c4ccef-c325-4bcd-9cee-37f7e069cd1a\", \"32d2b6f7-ea58-42c7-aeab-edc5d361603e\", \"f1f3ea3e-66e3-478e-af8c-2e1d4187c1b8\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.92074584960938, \"Text\": \"Yes\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03091447614133358, \"Height\": 0.012483513914048672, \"Left\": 0.7102535963058472, \"Top\": 0.6608591079711914}, \"Polygon\": [{\"X\": 0.7102535963058472, \"Y\": 0.6608591079711914}, {\"X\": 0.7411624789237976, \"Y\": 0.6608878970146179}, {\"X\": 0.7411680817604065, \"Y\": 0.6733426451683044}, {\"X\": 0.7102580070495605, \"Y\": 0.6733136177062988}]}, \"Id\": \"efb4b2ff-73b5-4119-940a-5bbde41b511c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c47c6fd4-6e06-41c0-a235-dae98e1e2898\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37715148925781, \"Text\": \"No\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023091886192560196, \"Height\": 0.013247753493487835, \"Left\": 0.8067969679832458, \"Top\": 0.6613648533821106}, \"Polygon\": [{\"X\": 0.8067969679832458, \"Y\": 0.6613648533821106}, {\"X\": 0.8298792243003845, \"Y\": 0.6613863110542297}, {\"X\": 0.8298888802528381, \"Y\": 0.6746125817298889}, {\"X\": 0.8068056702613831, \"Y\": 0.6745908856391907}]}, \"Id\": \"381a505d-78f5-4219-93d6-7bab7fee7be9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"82913d2e-680d-48de-b5ee-e686c5d2d47b\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.80137634277344, \"Text\": \"Do you have a cough?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17698587477207184, \"Height\": 0.016177400946617126, \"Left\": 0.05272418633103371, \"Top\": 0.7202389240264893}, \"Polygon\": [{\"X\": 0.05275166779756546, \"Y\": 0.7202389240264893}, {\"X\": 0.22971007227897644, \"Y\": 0.7204111814498901}, {\"X\": 0.2296915054321289, \"Y\": 0.7364162802696228}, {\"X\": 0.05272418633103371, \"Y\": 0.7362420558929443}]}, \"Id\": \"5b055732-7604-4d7c-9399-8ab1948dac5b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"17ff7faa-ae2f-4650-90c7-889fbd706435\", \"3a9ddc11-5d90-480d-9218-723da27081a5\", \"20876929-cee3-4277-889c-4657679d4834\", \"a5f2c90b-4259-4127-9914-17f7c0287a63\", \"2f655113-014a-4a39-ae07-ed53da0da89c\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88809967041016, \"Text\": \"Yes\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030439408496022224, \"Height\": 0.011939712800085545, \"Left\": 0.7085119485855103, \"Top\": 0.7269609570503235}, \"Polygon\": [{\"X\": 0.7085119485855103, \"Y\": 0.7269609570503235}, {\"X\": 0.7389460802078247, \"Y\": 0.7269906997680664}, {\"X\": 0.7389513850212097, \"Y\": 0.7389006614685059}, {\"X\": 0.7085161209106445, \"Y\": 0.7388706803321838}]}, \"Id\": \"9697a786-5416-4d98-ab5f-3371ce651db8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ed55c395-0576-47af-ae3b-2b93a164b97a\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68937683105469, \"Text\": \"No\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023464126512408257, \"Height\": 0.01269654743373394, \"Left\": 0.8040696382522583, \"Top\": 0.7272137403488159}, \"Polygon\": [{\"X\": 0.8040696382522583, \"Y\": 0.7272137403488159}, {\"X\": 0.8275246024131775, \"Y\": 0.7272366881370544}, {\"X\": 0.8275337219238281, \"Y\": 0.7399103045463562}, {\"X\": 0.8040778636932373, \"Y\": 0.7398871779441833}]}, \"Id\": \"7e42af4b-5e3d-4a84-ad3f-a3129953da97\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f5eb4aa-673c-44e4-8429-b5b5ed9ab477\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75747680664062, \"Text\": \"Did you experience loss of taste or smell?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.32797664403915405, \"Height\": 0.016540419310331345, \"Left\": 0.05496493726968765, \"Top\": 0.783734917640686}, \"Polygon\": [{\"X\": 0.054992642253637314, \"Y\": 0.783734917640686}, {\"X\": 0.3829415738582611, \"Y\": 0.7840689420700073}, {\"X\": 0.38293060660362244, \"Y\": 0.8002753257751465}, {\"X\": 0.05496493726968765, \"Y\": 0.7999375462532043}]}, \"Id\": \"15051837-6bd8-4c70-a5d0-26be886e1949\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11d3db12-2a64-49b6-8187-7dc990546c20\", \"c1c2534d-7309-418b-bfc9-2b1e0079a08d\", \"255c7761-1ec7-451e-80e3-d64399f14791\", \"b4ffee66-749c-47a4-b7c5-300811a62ff0\", \"b8ab69da-e840-4ce6-b542-3e556b6c61a0\", \"75660b8b-51f8-4e0c-a637-0b64540a77e1\", \"fb83b674-0eda-4d9f-893b-857221249acb\", \"2858f272-fb45-420a-9653-5d764dc391ec\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.92426300048828, \"Text\": \"Yes\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03000422939658165, \"Height\": 0.011712025851011276, \"Left\": 0.7067491412162781, \"Top\": 0.7912763357162476}, \"Polygon\": [{\"X\": 0.7067491412162781, \"Y\": 0.7912763357162476}, {\"X\": 0.7367482781410217, \"Y\": 0.7913070321083069}, {\"X\": 0.7367533445358276, \"Y\": 0.8029883503913879}, {\"X\": 0.706753134727478, \"Y\": 0.8029574155807495}]}, \"Id\": \"46ddddb0-e7b4-4a0f-adae-ce7cdb764bf2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cb7cdd2a-8090-44f4-8a6e-f4a8762b7ee2\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5230712890625, \"Text\": \"No\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022722888737916946, \"Height\": 0.012761592864990234, \"Left\": 0.8017643094062805, \"Top\": 0.7916630506515503}, \"Polygon\": [{\"X\": 0.8017643094062805, \"Y\": 0.7916630506515503}, {\"X\": 0.8244780898094177, \"Y\": 0.7916862964630127}, {\"X\": 0.8244872093200684, \"Y\": 0.8044246435165405}, {\"X\": 0.8017724752426147, \"Y\": 0.8044012188911438}]}, \"Id\": \"f199244a-be22-431c-8922-9da45aca120e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab01b2e3-1112-42c6-a86b-ed6266307bb1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72408294677734, \"Text\": \"Where you in contact with any confirmed COVID-19 positive patients?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5464463233947754, \"Height\": 0.019266994670033455, \"Left\": 0.05585549399256706, \"Top\": 0.847578763961792}, \"Polygon\": [{\"X\": 0.055887371301651, \"Y\": 0.847578763961792}, {\"X\": 0.6023015379905701, \"Y\": 0.8481600880622864}, {\"X\": 0.6023017764091492, \"Y\": 0.8668457865715027}, {\"X\": 0.05585549399256706, \"Y\": 0.8662571310997009}]}, \"Id\": \"5ca7143c-1a5b-4b47-bbb8-4acf1079ae6b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"52b2d275-5d26-4c3e-b10d-a02988979327\", \"77d256f2-3e7d-49f6-b368-1568f22a59eb\", \"9307347d-9cc6-44ab-955b-3db44bf2697a\", \"53796f86-3013-464d-a4f3-8f540f956245\", \"2d018e66-b1dd-45b2-887e-f40a64c0e4d2\", \"c10cefd5-d0c1-4a08-b6c7-4eb1f224b21e\", \"ba2acf72-1ba2-431b-bdd9-dad15f195223\", \"1e6411c0-575f-4c9c-adb4-d579041dc786\", \"2a6a6d07-a443-4ec7-9b93-c2e385c5e895\", \"34f06fac-d0f2-4087-97c2-f4e2ee9f241d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76344299316406, \"Text\": \"Yes\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030465373769402504, \"Height\": 0.012179316021502018, \"Left\": 0.7038336396217346, \"Top\": 0.854785144329071}, \"Polygon\": [{\"X\": 0.7038336396217346, \"Y\": 0.854785144329071}, {\"X\": 0.7342938184738159, \"Y\": 0.8548176884651184}, {\"X\": 0.7342990636825562, \"Y\": 0.8669644594192505}, {\"X\": 0.7038376927375793, \"Y\": 0.8669316172599792}]}, \"Id\": \"18c63121-a3d8-474e-aa3b-442dfeec05da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b1810cf4-43e7-46a4-9224-9bd3f257e073\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5263671875, \"Text\": \"No\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023616664111614227, \"Height\": 0.012601767666637897, \"Left\": 0.7994560599327087, \"Top\": 0.8562684655189514}, \"Polygon\": [{\"X\": 0.7994560599327087, \"Y\": 0.8562684655189514}, {\"X\": 0.8230637907981873, \"Y\": 0.8562936782836914}, {\"X\": 0.8230727314949036, \"Y\": 0.868870198726654}, {\"X\": 0.7994640469551086, \"Y\": 0.868844747543335}]}, \"Id\": \"3493f88e-c166-41d8-b1fc-32785b55d19b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"250661fa-a762-494a-acea-7c9d2c138273\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7388687133789, \"Text\": \"Did you travel in the past 14 days to any regions affected by COVID-19?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5638716220855713, \"Height\": 0.018123576417565346, \"Left\": 0.05664472654461861, \"Top\": 0.9124054908752441}, \"Polygon\": [{\"X\": 0.0566745288670063, \"Y\": 0.9124054908752441}, {\"X\": 0.6205151081085205, \"Y\": 0.9130313396453857}, {\"X\": 0.6205163598060608, \"Y\": 0.9305290579795837}, {\"X\": 0.05664472654461861, \"Y\": 0.9298961162567139}]}, \"Id\": \"af9ab6a4-a03e-4730-ac14-1cd1e789d062\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8baa2ef7-6a3b-48bd-bcaa-262028abbdc4\", \"f1295bd0-8691-4a47-a88f-28b1d4146fc0\", \"c637093c-922e-478f-b53e-04566d27a8ce\", \"5d9d8da5-f067-4675-90b7-d53d007ccdaf\", \"3ee15378-916a-42ce-ad6f-0f9b2aea9c96\", \"8faa10b9-82ec-4902-80ae-302748bd32ac\", \"75adb240-0b48-4e28-9ea0-0a6655f1ef0e\", \"8f6dc7bc-04da-4e81-87ae-e5d18b3ee06e\", \"112daa8b-cdff-49bd-a9b9-23fc00e3d3ff\", \"e5d4a6b1-f670-43c3-85c7-e6915afdd5ce\", \"c979e6e1-abad-424c-90aa-e06e628ae998\", \"337b51c7-e2f4-4237-bcff-e89a8b488b04\", \"3c5e7597-2fcc-46a9-b85a-77e17edb13fa\", \"93ee67fb-e74e-44a3-8d91-874c34ce7f13\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.80075073242188, \"Text\": \"Yes\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03019566275179386, \"Height\": 0.011853490956127644, \"Left\": 0.7025893330574036, \"Top\": 0.9184788465499878}, \"Polygon\": [{\"X\": 0.7025893330574036, \"Y\": 0.9184788465499878}, {\"X\": 0.7327799797058105, \"Y\": 0.9185124635696411}, {\"X\": 0.7327849864959717, \"Y\": 0.9303323030471802}, {\"X\": 0.702593207359314, \"Y\": 0.9302984476089478}]}, \"Id\": \"1b49e4d3-eb9b-471f-bd84-c9ec25495b5b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5a9d541-ac19-4b24-a276-67475984ea07\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36701965332031, \"Text\": \"No\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02431592158973217, \"Height\": 0.014284574426710606, \"Left\": 0.7975861430168152, \"Top\": 0.9198150634765625}, \"Polygon\": [{\"X\": 0.7975861430168152, \"Y\": 0.9198150634765625}, {\"X\": 0.8218920230865479, \"Y\": 0.9198421239852905}, {\"X\": 0.8219020366668701, \"Y\": 0.9340996146202087}, {\"X\": 0.7975950837135315, \"Y\": 0.9340722560882568}]}, \"Id\": \"d0624b87-1e98-4ff6-b574-50b4b0ab78df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ab0415a6-2c99-404e-b080-79ad73d2ea45\"]}], \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.12208557128906, \"Text\": \"Patient\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07825217396020889, \"Height\": 0.014341810718178749, \"Left\": 0.03829403594136238, \"Top\": 0.05489515885710716}, \"Polygon\": [{\"X\": 0.03831930086016655, \"Y\": 0.05489515885710716}, {\"X\": 0.11654621362686157, \"Y\": 0.0549342967569828}, {\"X\": 0.11652448028326035, \"Y\": 0.06923697143793106}, {\"X\": 0.03829403594136238, \"Y\": 0.06919702887535095}]}, \"Id\": \"4bdf53cb-1586-48e0-ac2f-a348364f2991\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8460922241211, \"Text\": \"Information\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1322253942489624, \"Height\": 0.014358336105942726, \"Left\": 0.120738185942173, \"Top\": 0.054935652762651443}, \"Polygon\": [{\"X\": 0.12075971066951752, \"Y\": 0.054935652762651443}, {\"X\": 0.2529635727405548, \"Y\": 0.05500179901719093}, {\"X\": 0.25294801592826843, \"Y\": 0.06929399073123932}, {\"X\": 0.120738185942173, \"Y\": 0.06922649592161179}]}, \"Id\": \"1e6a9ddf-4172-4d20-a75c-2a8910da75f1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79655456542969, \"Text\": \"First\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031769927591085434, \"Height\": 0.010264907032251358, \"Left\": 0.03871987760066986, \"Top\": 0.10495083034038544}, \"Polygon\": [{\"X\": 0.03873796388506889, \"Y\": 0.10495083034038544}, {\"X\": 0.070489801466465, \"Y\": 0.10496784746646881}, {\"X\": 0.07047274708747864, \"Y\": 0.1152157410979271}, {\"X\": 0.03871987760066986, \"Y\": 0.11519849300384521}]}, \"Id\": \"d7a166c9-fb73-4a78-961c-8b871ac5d382\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3136978149414, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04635809734463692, \"Height\": 0.010313985869288445, \"Left\": 0.07401451468467712, \"Top\": 0.10503129661083221}, \"Polygon\": [{\"X\": 0.0740315243601799, \"Y\": 0.10503129661083221}, {\"X\": 0.12037260830402374, \"Y\": 0.10505612939596176}, {\"X\": 0.12035709619522095, \"Y\": 0.11534528434276581}, {\"X\": 0.07401451468467712, \"Y\": 0.1153201013803482}]}, \"Id\": \"46b32145-ae6c-47c4-a707-af4e22e59956\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35997009277344, \"Text\": \"ALEJANDRO\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20825067162513733, \"Height\": 0.03357447311282158, \"Left\": 0.13971677422523499, \"Top\": 0.08379586786031723}, \"Polygon\": [{\"X\": 0.1397651582956314, \"Y\": 0.08379586786031723}, {\"X\": 0.3479674458503723, \"Y\": 0.08390430361032486}, {\"X\": 0.3479410409927368, \"Y\": 0.11737033724784851}, {\"X\": 0.13971677422523499, \"Y\": 0.11725693196058273}]}, \"Id\": \"1054ab4e-0f14-4504-b8bb-f917ed69e0b1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.55416870117188, \"Text\": \"Last\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030239839106798172, \"Height\": 0.010559151880443096, \"Left\": 0.3712427616119385, \"Top\": 0.10569966584444046}, \"Polygon\": [{\"X\": 0.37125030159950256, \"Y\": 0.10569966584444046}, {\"X\": 0.40148261189460754, \"Y\": 0.10571587830781937}, {\"X\": 0.40147608518600464, \"Y\": 0.11625881493091583}, {\"X\": 0.3712427616119385, \"Y\": 0.11624237149953842}]}, \"Id\": \"78da39df-c7c2-453d-a8a4-fbb0c7990e8c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45501708984375, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04674435779452324, \"Height\": 0.010519199073314667, \"Left\": 0.4052976965904236, \"Top\": 0.10583866387605667}, \"Polygon\": [{\"X\": 0.40530407428741455, \"Y\": 0.10583866387605667}, {\"X\": 0.4520420730113983, \"Y\": 0.10586373507976532}, {\"X\": 0.4520372152328491, \"Y\": 0.11635786294937134}, {\"X\": 0.4052976965904236, \"Y\": 0.11633244156837463}]}, \"Id\": \"aac765b9-ce10-481f-95eb-d5d0cffb25d3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3670654296875, \"Text\": \"ROSALEZ\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16469644010066986, \"Height\": 0.02548014558851719, \"Left\": 0.4603141248226166, \"Top\": 0.09169511497020721}, \"Polygon\": [{\"X\": 0.4603251516819, \"Y\": 0.09169511497020721}, {\"X\": 0.6250084042549133, \"Y\": 0.09178179502487183}, {\"X\": 0.6250105500221252, \"Y\": 0.11717525869607925}, {\"X\": 0.4603141248226166, \"Y\": 0.11708559840917587}]}, \"Id\": \"b18154dd-9a29-4f85-b958-bc073e9594af\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.46456909179688, \"Text\": \"Date\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03375091403722763, \"Height\": 0.010498961433768272, \"Left\": 0.6935973167419434, \"Top\": 0.10655639320611954}, \"Polygon\": [{\"X\": 0.6935973167419434, \"Y\": 0.10655639320611954}, {\"X\": 0.7273439168930054, \"Y\": 0.10657450556755066}, {\"X\": 0.7273482084274292, \"Y\": 0.11705535650253296}, {\"X\": 0.6936004757881165, \"Y\": 0.11703698337078094}]}, \"Id\": \"1833b1fa-98ca-46db-b689-1cc69df0c564\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98607635498047, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01562785729765892, \"Height\": 0.010727828368544579, \"Left\": 0.7317180037498474, \"Top\": 0.10613670200109482}, \"Polygon\": [{\"X\": 0.7317180037498474, \"Y\": 0.10613670200109482}, {\"X\": 0.7473407983779907, \"Y\": 0.10614508390426636}, {\"X\": 0.7473458647727966, \"Y\": 0.11686453223228455}, {\"X\": 0.7317225337028503, \"Y\": 0.11685603111982346}]}, \"Id\": \"d00e421d-321c-4be8-9fb2-3e1aed765d22\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6963119506836, \"Text\": \"Birth:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03980569168925285, \"Height\": 0.011020631529390812, \"Left\": 0.7506237030029297, \"Top\": 0.10619412362575531}, \"Polygon\": [{\"X\": 0.7506237030029297, \"Y\": 0.10619412362575531}, {\"X\": 0.7904227375984192, \"Y\": 0.1062154769897461}, {\"X\": 0.790429413318634, \"Y\": 0.11721476167440414}, {\"X\": 0.7506290078163147, \"Y\": 0.11719309538602829}]}, \"Id\": \"eafcb6b8-9bdb-4f71-a06d-6b453c3f00a5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1667251586914, \"Text\": \"10/10/1982\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15171533823013306, \"Height\": 0.03512096777558327, \"Left\": 0.8068405389785767, \"Top\": 0.09037381410598755}, \"Polygon\": [{\"X\": 0.8068405389785767, \"Y\": 0.09037381410598755}, {\"X\": 0.958516001701355, \"Y\": 0.09045348316431046}, {\"X\": 0.9585558772087097, \"Y\": 0.12549477815628052}, {\"X\": 0.8068636655807495, \"Y\": 0.12541133165359497}]}, \"Id\": \"4f276f11-4d12-40d5-b750-9a0bca924ad6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.82545471191406, \"Text\": \"Sex:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03223143145442009, \"Height\": 0.010284913703799248, \"Left\": 0.03988395258784294, \"Top\": 0.14093364775180817}, \"Polygon\": [{\"X\": 0.03990203142166138, \"Y\": 0.14093364775180817}, {\"X\": 0.07211538404226303, \"Y\": 0.1409517377614975}, {\"X\": 0.07209834456443787, \"Y\": 0.15121856331825256}, {\"X\": 0.03988395258784294, \"Y\": 0.15120023488998413}]}, \"Id\": \"13c142e0-391e-4604-a5fc-51ec1d226d4b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36692810058594, \"Text\": \"M\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041539788246154785, \"Height\": 0.023090003058314323, \"Left\": 0.08608552813529968, \"Top\": 0.12620270252227783}, \"Polygon\": [{\"X\": 0.0861227810382843, \"Y\": 0.12620270252227783}, {\"X\": 0.12762531638145447, \"Y\": 0.1262255758047104}, {\"X\": 0.127591073513031, \"Y\": 0.1492927074432373}, {\"X\": 0.08608552813529968, \"Y\": 0.14926916360855103}]}, \"Id\": \"d7bdcee0-700f-4a44-a366-8c45f679ba18\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67020416259766, \"Text\": \"Marital\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048354487866163254, \"Height\": 0.01036290917545557, \"Left\": 0.17462089657783508, \"Top\": 0.14096707105636597}, \"Polygon\": [{\"X\": 0.17463469505310059, \"Y\": 0.14096707105636597}, {\"X\": 0.22297537326812744, \"Y\": 0.14099422097206116}, {\"X\": 0.2229631543159485, \"Y\": 0.15132997930049896}, {\"X\": 0.17462089657783508, \"Y\": 0.1513024866580963}]}, \"Id\": \"f6c4fe6b-db72-468f-9e05-9bf8b40ace04\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.72937774658203, \"Text\": \"Status:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051140956580638885, \"Height\": 0.010555124841630459, \"Left\": 0.22738569974899292, \"Top\": 0.14107754826545715}, \"Polygon\": [{\"X\": 0.22739800810813904, \"Y\": 0.14107754826545715}, {\"X\": 0.2785266637802124, \"Y\": 0.1411062628030777}, {\"X\": 0.2785160541534424, \"Y\": 0.1516326665878296}, {\"X\": 0.22738569974899292, \"Y\": 0.1516035795211792}]}, \"Id\": \"ab041376-1e0f-4108-9d6d-43e1b27d4466\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36621856689453, \"Text\": \"MARRIED\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1292160451412201, \"Height\": 0.023865770548582077, \"Left\": 0.2853524386882782, \"Top\": 0.1279144436120987}, \"Polygon\": [{\"X\": 0.2853759229183197, \"Y\": 0.1279144436120987}, {\"X\": 0.4145684838294983, \"Y\": 0.12798577547073364}, {\"X\": 0.4145547151565552, \"Y\": 0.15178021788597107}, {\"X\": 0.2853524386882782, \"Y\": 0.15170669555664062}]}, \"Id\": \"28ece4bb-208b-412c-81e3-8945adb24ab3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5225830078125, \"Text\": \"Email\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.039075762033462524, \"Height\": 0.010142634622752666, \"Left\": 0.464633584022522, \"Top\": 0.14220070838928223}, \"Polygon\": [{\"X\": 0.4646378457546234, \"Y\": 0.14220070838928223}, {\"X\": 0.5037093162536621, \"Y\": 0.14222267270088196}, {\"X\": 0.5037063360214233, \"Y\": 0.15234333276748657}, {\"X\": 0.464633584022522, \"Y\": 0.15232108533382416}]}, \"Id\": \"c802266c-081b-469d-89a9-5a7bdcb25501\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48905181884766, \"Text\": \"Address:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06250527501106262, \"Height\": 0.010548477061092854, \"Left\": 0.5081098079681396, \"Top\": 0.14208443462848663}, \"Polygon\": [{\"X\": 0.5081127882003784, \"Y\": 0.14208443462848663}, {\"X\": 0.5706151127815247, \"Y\": 0.14211957156658173}, {\"X\": 0.5706141591072083, \"Y\": 0.1526329219341278}, {\"X\": 0.5081098079681396, \"Y\": 0.1525973081588745}]}, \"Id\": \"456adc1b-158e-4e74-94ec-52e2ff543012\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5968017578125, \"Text\": \"Address:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06147349998354912, \"Height\": 0.009814240969717503, \"Left\": 0.04048457369208336, \"Top\": 0.17897620797157288}, \"Polygon\": [{\"X\": 0.04050176963210106, \"Y\": 0.17897620797157288}, {\"X\": 0.10195807367563248, \"Y\": 0.17901238799095154}, {\"X\": 0.1019427701830864, \"Y\": 0.1887904554605484}, {\"X\": 0.04048457369208336, \"Y\": 0.1887538582086563}]}, \"Id\": \"c0ea6103-a793-4542-be27-c9feb63293f3\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3670654296875, \"Text\": \"123\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05650102719664574, \"Height\": 0.01968483440577984, \"Left\": 0.1310093253850937, \"Top\": 0.16840142011642456}, \"Polygon\": [{\"X\": 0.13103827834129333, \"Y\": 0.16840142011642456}, {\"X\": 0.18751035630702972, \"Y\": 0.1684342324733734}, {\"X\": 0.18748490512371063, \"Y\": 0.18808625638484955}, {\"X\": 0.1310093253850937, \"Y\": 0.18805265426635742}]}, \"Id\": \"15b97d1f-57bd-40a4-9c85-a3d572259903\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3662109375, \"Text\": \"ANY\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0814749151468277, \"Height\": 0.024495558813214302, \"Left\": 0.21952562034130096, \"Top\": 0.16733108460903168}, \"Polygon\": [{\"X\": 0.2195548117160797, \"Y\": 0.16733108460903168}, {\"X\": 0.30100053548812866, \"Y\": 0.16737833619117737}, {\"X\": 0.3009776175022125, \"Y\": 0.19182664155960083}, {\"X\": 0.21952562034130096, \"Y\": 0.19177795946598053}]}, \"Id\": \"375e1d1b-e4f4-4129-a586-b83c939983b0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36701202392578, \"Text\": \"STREET\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10851278156042099, \"Height\": 0.020894773304462433, \"Left\": 0.32249924540519714, \"Top\": 0.16733266413211823}, \"Polygon\": [{\"X\": 0.3225173354148865, \"Y\": 0.16733266413211823}, {\"X\": 0.43101200461387634, \"Y\": 0.16739560663700104}, {\"X\": 0.43100103735923767, \"Y\": 0.18822744488716125}, {\"X\": 0.32249924540519714, \"Y\": 0.1881628781557083}]}, \"Id\": \"f265126f-b45b-4411-917a-3b414ce8e05e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7610092163086, \"Text\": \"City:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032391514629125595, \"Height\": 0.01246643252670765, \"Left\": 0.6252740621566772, \"Top\": 0.18159662187099457}, \"Polygon\": [{\"X\": 0.6252740621566772, \"Y\": 0.18159662187099457}, {\"X\": 0.6576632261276245, \"Y\": 0.18161574006080627}, {\"X\": 0.6576656103134155, \"Y\": 0.19406305253505707}, {\"X\": 0.6252751350402832, \"Y\": 0.19404365122318268}]}, \"Id\": \"caf8f382-fe4a-46dd-ab10-d4eedefca164\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3668441772461, \"Text\": \"ANYTOWN\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16033311188220978, \"Height\": 0.02297021448612213, \"Left\": 0.6827229857444763, \"Top\": 0.17149542272090912}, \"Polygon\": [{\"X\": 0.6827229857444763, \"Y\": 0.17149542272090912}, {\"X\": 0.8430383801460266, \"Y\": 0.17158888280391693}, {\"X\": 0.8430560827255249, \"Y\": 0.19446563720703125}, {\"X\": 0.6827290654182434, \"Y\": 0.19436956942081451}]}, \"Id\": \"28386009-65d2-4e1d-a56b-24b93c20063f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.83057403564453, \"Text\": \"State:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04286357760429382, \"Height\": 0.010059966705739498, \"Left\": 0.0433727502822876, \"Top\": 0.2228337973356247}, \"Polygon\": [{\"X\": 0.04339030012488365, \"Y\": 0.2228337973356247}, {\"X\": 0.08623632788658142, \"Y\": 0.22286035120487213}, {\"X\": 0.08622013032436371, \"Y\": 0.23289376497268677}, {\"X\": 0.0433727502822876, \"Y\": 0.23286691308021545}]}, \"Id\": \"3b9c0f52-8d7f-4bc5-8061-fd4e0a05eb1a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36583709716797, \"Text\": \"CA\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04447444528341293, \"Height\": 0.021618744358420372, \"Left\": 0.10085614025592804, \"Top\": 0.21194428205490112}, \"Polygon\": [{\"X\": 0.10088999569416046, \"Y\": 0.21194428205490112}, {\"X\": 0.14533057808876038, \"Y\": 0.2119714766740799}, {\"X\": 0.1452997475862503, \"Y\": 0.23356302082538605}, {\"X\": 0.10085614025592804, \"Y\": 0.23353514075279236}]}, \"Id\": \"d7d79606-95ba-46e3-9533-de35295df7b0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36662292480469, \"Text\": \"12345\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11769495904445648, \"Height\": 0.025161784142255783, \"Left\": 0.26189905405044556, \"Top\": 0.20753484964370728}, \"Polygon\": [{\"X\": 0.26192566752433777, \"Y\": 0.20753484964370728}, {\"X\": 0.37959402799606323, \"Y\": 0.2076064795255661}, {\"X\": 0.37957674264907837, \"Y\": 0.23269663751125336}, {\"X\": 0.26189905405044556, \"Y\": 0.2326229065656662}]}, \"Id\": \"a87ed8fc-7d7b-41c9-a95e-e775efd6c43c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.39366912841797, \"Text\": \"Phone:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0484999418258667, \"Height\": 0.010531465522944927, \"Left\": 0.38839012384414673, \"Top\": 0.22366610169410706}, \"Polygon\": [{\"X\": 0.38839706778526306, \"Y\": 0.22366610169410706}, {\"X\": 0.4368900656700134, \"Y\": 0.22369617223739624}, {\"X\": 0.43688473105430603, \"Y\": 0.23419757187366486}, {\"X\": 0.38839012384414673, \"Y\": 0.23416712880134583}]}, \"Id\": \"2a57e38d-d939-4ad7-910e-5b443e9ae2f0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.14775848388672, \"Text\": \"646-555-0111\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2216070294380188, \"Height\": 0.025195900350809097, \"Left\": 0.4652068316936493, \"Top\": 0.20760977268218994}, \"Polygon\": [{\"X\": 0.46521732211112976, \"Y\": 0.20760977268218994}, {\"X\": 0.6868067979812622, \"Y\": 0.20774465799331665}, {\"X\": 0.6868138313293457, \"Y\": 0.23280566930770874}, {\"X\": 0.4652068316936493, \"Y\": 0.23266683518886566}]}, \"Id\": \"42334046-62bb-48b0-9ad1-801b74ae8930\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49238586425781, \"Text\": \"Zip\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02336268313229084, \"Height\": 0.012312402948737144, \"Left\": 0.16521607339382172, \"Top\": 0.22289565205574036}, \"Polygon\": [{\"X\": 0.165232852101326, \"Y\": 0.22289565205574036}, {\"X\": 0.1885787546634674, \"Y\": 0.22291012108325958}, {\"X\": 0.18856287002563477, \"Y\": 0.23520806431770325}, {\"X\": 0.16521607339382172, \"Y\": 0.2351933866739273}]}, \"Id\": \"818df281-6c22-4bd2-8a48-6c8653be9d22\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.61997985839844, \"Text\": \"Code:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041045334190130234, \"Height\": 0.010707862675189972, \"Left\": 0.19243431091308594, \"Top\": 0.22253386676311493}, \"Polygon\": [{\"X\": 0.1924479752779007, \"Y\": 0.22253386676311493}, {\"X\": 0.23347964882850647, \"Y\": 0.22255928814411163}, {\"X\": 0.23346737027168274, \"Y\": 0.2332417368888855}, {\"X\": 0.19243431091308594, \"Y\": 0.23321600258350372}]}, \"Id\": \"34cabc92-7a7a-4639-8e3f-273962d5cb94\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9325942993164, \"Text\": \"Emergency\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11681687831878662, \"Height\": 0.01585240103304386, \"Left\": 0.041848074644804, \"Top\": 0.2537270784378052}, \"Polygon\": [{\"X\": 0.041875749826431274, \"Y\": 0.2537270784378052}, {\"X\": 0.15866495668888092, \"Y\": 0.25380203127861023}, {\"X\": 0.15864309668540955, \"Y\": 0.2695794701576233}, {\"X\": 0.041848074644804, \"Y\": 0.2695032060146332}]}, \"Id\": \"fdaa5289-b68a-4997-ba4d-bc9b6be65d11\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.98163604736328, \"Text\": \"Contact\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08278050273656845, \"Height\": 0.013431682251393795, \"Left\": 0.1640990674495697, \"Top\": 0.253527969121933}, \"Polygon\": [{\"X\": 0.16411736607551575, \"Y\": 0.253527969121933}, {\"X\": 0.24687956273555756, \"Y\": 0.25358104705810547}, {\"X\": 0.24686475098133087, \"Y\": 0.26695963740348816}, {\"X\": 0.1640990674495697, \"Y\": 0.2669057548046112}]}, \"Id\": \"12b1b68c-8e64-4a9b-9ad9-f6431c51f9ba\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.10589599609375, \"Text\": \"1:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01964748650789261, \"Height\": 0.013251839205622673, \"Left\": 0.25269100069999695, \"Top\": 0.2535953223705292}, \"Polygon\": [{\"X\": 0.2527054250240326, \"Y\": 0.2535953223705292}, {\"X\": 0.27233847975730896, \"Y\": 0.25360792875289917}, {\"X\": 0.27232488989830017, \"Y\": 0.266847163438797}, {\"X\": 0.25269100069999695, \"Y\": 0.2668343782424927}]}, \"Id\": \"49ab7a7a-572f-4cbe-a709-595210dcbde4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87569427490234, \"Text\": \"First\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030843421816825867, \"Height\": 0.009897497482597828, \"Left\": 0.04045245051383972, \"Top\": 0.3007024824619293}, \"Polygon\": [{\"X\": 0.04046981781721115, \"Y\": 0.3007024824619293}, {\"X\": 0.07129587233066559, \"Y\": 0.30072328448295593}, {\"X\": 0.07127946615219116, \"Y\": 0.3105999529361725}, {\"X\": 0.04045245051383972, \"Y\": 0.31057894229888916}]}, \"Id\": \"2f769232-91c9-4424-8a5f-435babbf160c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50224304199219, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045936454087495804, \"Height\": 0.010007497854530811, \"Left\": 0.07539987564086914, \"Top\": 0.3009647727012634}, \"Polygon\": [{\"X\": 0.07541631162166595, \"Y\": 0.3009647727012634}, {\"X\": 0.12133632600307465, \"Y\": 0.30099576711654663}, {\"X\": 0.12132132798433304, \"Y\": 0.31097227334976196}, {\"X\": 0.07539987564086914, \"Y\": 0.3109409213066101}]}, \"Id\": \"7651e1f6-b348-4ead-8fa0-ff42bd15f149\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36670684814453, \"Text\": \"CARLOS\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10884661972522736, \"Height\": 0.020170681178569794, \"Left\": 0.156087726354599, \"Top\": 0.28967612981796265}, \"Polygon\": [{\"X\": 0.15611572563648224, \"Y\": 0.28967612981796265}, {\"X\": 0.26493433117866516, \"Y\": 0.28974875807762146}, {\"X\": 0.2649132311344147, \"Y\": 0.30984681844711304}, {\"X\": 0.156087726354599, \"Y\": 0.30977267026901245}]}, \"Id\": \"c1157932-4f5a-4d03-806e-9dd555eb108b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70685577392578, \"Text\": \"Last\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02970871329307556, \"Height\": 0.009846384637057781, \"Left\": 0.3686867952346802, \"Top\": 0.3020729124546051}, \"Polygon\": [{\"X\": 0.36869391798973083, \"Y\": 0.3020729124546051}, {\"X\": 0.39839550852775574, \"Y\": 0.302092969417572}, {\"X\": 0.3983893394470215, \"Y\": 0.31191927194595337}, {\"X\": 0.3686867952346802, \"Y\": 0.31189900636672974}]}, \"Id\": \"de5c4619-f8fa-4f5d-8ae2-14376a84f46d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3748550415039, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04584081098437309, \"Height\": 0.0099254185333848, \"Left\": 0.4023475646972656, \"Top\": 0.30242782831192017}, \"Polygon\": [{\"X\": 0.4023536741733551, \"Y\": 0.30242782831192017}, {\"X\": 0.4481883645057678, \"Y\": 0.30245882272720337}, {\"X\": 0.44818368554115295, \"Y\": 0.312353253364563}, {\"X\": 0.4023475646972656, \"Y\": 0.3123219311237335}]}, \"Id\": \"87d2553e-6802-4a69-b96b-1e5aaef7da87\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36643981933594, \"Text\": \"SALAZAR\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16411423683166504, \"Height\": 0.02191120572388172, \"Left\": 0.4637525677680969, \"Top\": 0.29050448536872864}, \"Polygon\": [{\"X\": 0.4637617766857147, \"Y\": 0.29050448536872864}, {\"X\": 0.6278647184371948, \"Y\": 0.2906140387058258}, {\"X\": 0.627866804599762, \"Y\": 0.3124156892299652}, {\"X\": 0.4637525677680969, \"Y\": 0.3123035728931427}]}, \"Id\": \"2ac64703-4168-4f8b-8c3f-f8b4eedbc07b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.87113952636719, \"Text\": \"Phone:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04812202602624893, \"Height\": 0.010364723391830921, \"Left\": 0.040136780589818954, \"Top\": 0.32590556144714355}, \"Polygon\": [{\"X\": 0.04015495628118515, \"Y\": 0.32590556144714355}, {\"X\": 0.08825881034135818, \"Y\": 0.3259389102458954}, {\"X\": 0.08824220299720764, \"Y\": 0.3362703025341034}, {\"X\": 0.040136780589818954, \"Y\": 0.3362365961074829}]}, \"Id\": \"0d01438c-588a-423c-bd84-9cf5a578dd63\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2106704711914, \"Text\": \"212-555-0150\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2018493115901947, \"Height\": 0.019110925495624542, \"Left\": 0.11265860497951508, \"Top\": 0.31730738282203674}, \"Polygon\": [{\"X\": 0.11268763989210129, \"Y\": 0.31730738282203674}, {\"X\": 0.31450793147087097, \"Y\": 0.3174459934234619}, {\"X\": 0.3144909739494324, \"Y\": 0.3364183008670807}, {\"X\": 0.11265860497951508, \"Y\": 0.33627694845199585}]}, \"Id\": \"83f00781-9535-45b5-b274-090281243ffe\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.751953125, \"Text\": \"Relationship\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08587101101875305, \"Height\": 0.012563587166368961, \"Left\": 0.37032413482666016, \"Top\": 0.3266584277153015}, \"Polygon\": [{\"X\": 0.37033310532569885, \"Y\": 0.3266584277153015}, {\"X\": 0.4561951458454132, \"Y\": 0.32671797275543213}, {\"X\": 0.4561895430088043, \"Y\": 0.3392220437526703}, {\"X\": 0.37032413482666016, \"Y\": 0.3391617238521576}]}, \"Id\": \"50939972-7e6f-496b-8eaf-36dfef27bb5c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90874481201172, \"Text\": \"to\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0148631501942873, \"Height\": 0.010448871180415154, \"Left\": 0.45995500683784485, \"Top\": 0.32739701867103577}, \"Polygon\": [{\"X\": 0.4599595367908478, \"Y\": 0.32739701867103577}, {\"X\": 0.4748181402683258, \"Y\": 0.3274073302745819}, {\"X\": 0.4748140871524811, \"Y\": 0.33784589171409607}, {\"X\": 0.45995500683784485, \"Y\": 0.3378354609012604}]}, \"Id\": \"c55738d0-e06c-4681-a4e4-61474b84e63b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.49040222167969, \"Text\": \"Patient:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0539080873131752, \"Height\": 0.010418223217129707, \"Left\": 0.47961047291755676, \"Top\": 0.3274415135383606}, \"Polygon\": [{\"X\": 0.47961434721946716, \"Y\": 0.3274415135383606}, {\"X\": 0.5335185527801514, \"Y\": 0.32747891545295715}, {\"X\": 0.5335164666175842, \"Y\": 0.33785974979400635}, {\"X\": 0.47961047291755676, \"Y\": 0.33782193064689636}]}, \"Id\": \"048a60a2-c96c-4dd5-8df9-200b425194f0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36674499511719, \"Text\": \"BROTHER\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14748717844486237, \"Height\": 0.022217677906155586, \"Left\": 0.5736127495765686, \"Top\": 0.31702929735183716}, \"Polygon\": [{\"X\": 0.5736144185066223, \"Y\": 0.31702929735183716}, {\"X\": 0.7210913300514221, \"Y\": 0.31713053584098816}, {\"X\": 0.7210999131202698, \"Y\": 0.3392469882965088}, {\"X\": 0.5736127495765686, \"Y\": 0.33914342522621155}]}, \"Id\": \"1de60303-63c6-43c4-9407-0fc3ad39e29f\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9246826171875, \"Text\": \"Emergency\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11732462048530579, \"Height\": 0.015863636508584023, \"Left\": 0.041208330541849136, \"Top\": 0.3622160851955414}, \"Polygon\": [{\"X\": 0.0412360318005085, \"Y\": 0.3622160851955414}, {\"X\": 0.15853294730186462, \"Y\": 0.36230039596557617}, {\"X\": 0.15851108729839325, \"Y\": 0.37807971239089966}, {\"X\": 0.041208330541849136, \"Y\": 0.3779940605163574}]}, \"Id\": \"ac12aaa9-e729-4aa7-81a2-aa2773877356\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.44015502929688, \"Text\": \"Contact\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08266494423151016, \"Height\": 0.013422784395515919, \"Left\": 0.16411781311035156, \"Top\": 0.3627288043498993}, \"Polygon\": [{\"X\": 0.16413608193397522, \"Y\": 0.3627288043498993}, {\"X\": 0.24678274989128113, \"Y\": 0.36278823018074036}, {\"X\": 0.24676795303821564, \"Y\": 0.37615159153938293}, {\"X\": 0.16411781311035156, \"Y\": 0.3760913610458374}]}, \"Id\": \"52e9ec2f-646c-4dc4-9e0b-a2a03b7904dd\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81320190429688, \"Text\": \"2:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019949469715356827, \"Height\": 0.012788092717528343, \"Left\": 0.25268369913101196, \"Top\": 0.3634314239025116}, \"Polygon\": [{\"X\": 0.252697616815567, \"Y\": 0.3634314239025116}, {\"X\": 0.2726331949234009, \"Y\": 0.3634457588195801}, {\"X\": 0.2726200819015503, \"Y\": 0.3762195110321045}, {\"X\": 0.25268369913101196, \"Y\": 0.3762049674987793}]}, \"Id\": \"822df1f4-c32c-4d68-a48b-078d13bbe3f7\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84075927734375, \"Text\": \"First\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031077446416020393, \"Height\": 0.009941739030182362, \"Left\": 0.04008827358484268, \"Top\": 0.4091363251209259}, \"Polygon\": [{\"X\": 0.04010571911931038, \"Y\": 0.4091363251209259}, {\"X\": 0.07116571813821793, \"Y\": 0.40915969014167786}, {\"X\": 0.07114924490451813, \"Y\": 0.4190780818462372}, {\"X\": 0.04008827358484268, \"Y\": 0.4190545082092285}]}, \"Id\": \"54e24d07-9a15-42c7-93e3-9b3f8fefc247\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34422302246094, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04613829404115677, \"Height\": 0.010057511739432812, \"Left\": 0.0752372220158577, \"Top\": 0.40929335355758667}, \"Polygon\": [{\"X\": 0.07525373995304108, \"Y\": 0.40929335355758667}, {\"X\": 0.12137551605701447, \"Y\": 0.40932804346084595}, {\"X\": 0.12136045098304749, \"Y\": 0.41935086250305176}, {\"X\": 0.0752372220158577, \"Y\": 0.4193158447742462}]}, \"Id\": \"4463b7fb-f7ff-4243-bc84-90828aec6b96\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36602783203125, \"Text\": \"JANE\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0988442599773407, \"Height\": 0.023627497255802155, \"Left\": 0.1515461951494217, \"Top\": 0.39784860610961914}, \"Polygon\": [{\"X\": 0.151579350233078, \"Y\": 0.39784860610961914}, {\"X\": 0.2503904402256012, \"Y\": 0.3979221284389496}, {\"X\": 0.25036463141441345, \"Y\": 0.4214760959148407}, {\"X\": 0.1515461951494217, \"Y\": 0.42140093445777893}]}, \"Id\": \"6a10b1d2-113a-484f-9d1f-6338062370b1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7181625366211, \"Text\": \"Last\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0287834070622921, \"Height\": 0.00970267504453659, \"Left\": 0.3686954081058502, \"Top\": 0.4116569459438324}, \"Polygon\": [{\"X\": 0.36870241165161133, \"Y\": 0.4116569459438324}, {\"X\": 0.3974788188934326, \"Y\": 0.41167864203453064}, {\"X\": 0.39747270941734314, \"Y\": 0.4213596284389496}, {\"X\": 0.3686954081058502, \"Y\": 0.42133772373199463}]}, \"Id\": \"d97a1134-267f-4cfe-8a76-b24711ef8b30\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54647064208984, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04573097452521324, \"Height\": 0.00966870691627264, \"Left\": 0.40164363384246826, \"Top\": 0.4121900796890259}, \"Polygon\": [{\"X\": 0.4016495943069458, \"Y\": 0.4121900796890259}, {\"X\": 0.4473746120929718, \"Y\": 0.41222456097602844}, {\"X\": 0.4473700523376465, \"Y\": 0.4218587875366211}, {\"X\": 0.40164363384246826, \"Y\": 0.42182397842407227}]}, \"Id\": \"f002ea56-af17-4cc5-91e9-dc1da08973c8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36662292480469, \"Text\": \"DOE\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.058015771210193634, \"Height\": 0.022542130202054977, \"Left\": 0.508903443813324, \"Top\": 0.3982500433921814}, \"Polygon\": [{\"X\": 0.5089097619056702, \"Y\": 0.3982500433921814}, {\"X\": 0.566919207572937, \"Y\": 0.3982931971549988}, {\"X\": 0.5669170022010803, \"Y\": 0.4207921624183655}, {\"X\": 0.508903443813324, \"Y\": 0.4207480549812317}]}, \"Id\": \"20f4010d-2f4b-40b7-b271-a5c29e640cac\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.82969665527344, \"Text\": \"Phone:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048467766493558884, \"Height\": 0.010209153406322002, \"Left\": 0.04035291448235512, \"Top\": 0.4341786801815033}, \"Polygon\": [{\"X\": 0.040370792150497437, \"Y\": 0.4341786801815033}, {\"X\": 0.088820680975914, \"Y\": 0.4342159926891327}, {\"X\": 0.08880435675382614, \"Y\": 0.44438785314559937}, {\"X\": 0.04035291448235512, \"Y\": 0.4443501830101013}]}, \"Id\": \"92fcc7a0-962d-4991-b357-9df966f72d3a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27679443359375, \"Text\": \"650-555-0123\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.212974414229393, \"Height\": 0.02000468038022518, \"Left\": 0.1322476714849472, \"Top\": 0.4256106913089752}, \"Polygon\": [{\"X\": 0.13227678835391998, \"Y\": 0.4256106913089752}, {\"X\": 0.3452220857143402, \"Y\": 0.42577335238456726}, {\"X\": 0.34520626068115234, \"Y\": 0.44561538100242615}, {\"X\": 0.1322476714849472, \"Y\": 0.44544970989227295}]}, \"Id\": \"d84f85bb-3f87-4dd8-8f1d-d1fdbcd29e39\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.70890045166016, \"Text\": \"Relationship\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08445871621370316, \"Height\": 0.01207614317536354, \"Left\": 0.3702426552772522, \"Top\": 0.43580296635627747}, \"Polygon\": [{\"X\": 0.37025126814842224, \"Y\": 0.43580296635627747}, {\"X\": 0.45470136404037476, \"Y\": 0.4358680844306946}, {\"X\": 0.4546959400177002, \"Y\": 0.4478791058063507}, {\"X\": 0.3702426552772522, \"Y\": 0.4478132724761963}]}, \"Id\": \"cc829258-26b6-44ec-abaa-c61ce27e2525\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95741271972656, \"Text\": \"to\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0144657539203763, \"Height\": 0.009040764532983303, \"Left\": 0.4589540362358093, \"Top\": 0.43688803911209106}, \"Polygon\": [{\"X\": 0.4589579999446869, \"Y\": 0.43688803911209106}, {\"X\": 0.47341978549957275, \"Y\": 0.43689921498298645}, {\"X\": 0.4734162390232086, \"Y\": 0.44592881202697754}, {\"X\": 0.4589540362358093, \"Y\": 0.445917546749115}]}, \"Id\": \"8b54f258-8d6c-4de2-bbbd-08d02452ba7c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.26512908935547, \"Text\": \"Patient:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053260911256074905, \"Height\": 0.010076634585857391, \"Left\": 0.47822797298431396, \"Top\": 0.4364854097366333}, \"Polygon\": [{\"X\": 0.4782317578792572, \"Y\": 0.4364854097366333}, {\"X\": 0.5314888954162598, \"Y\": 0.43652650713920593}, {\"X\": 0.5314868092536926, \"Y\": 0.4465620517730713}, {\"X\": 0.47822797298431396, \"Y\": 0.44652059674263}]}, \"Id\": \"9c57a59e-853d-4175-abb7-4d49ea177397\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3666000366211, \"Text\": \"FRIEND\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11966527998447418, \"Height\": 0.021208692342042923, \"Left\": 0.5710664391517639, \"Top\": 0.4263854920864105}, \"Polygon\": [{\"X\": 0.5710682272911072, \"Y\": 0.4263854920864105}, {\"X\": 0.690725564956665, \"Y\": 0.42647695541381836}, {\"X\": 0.6907317638397217, \"Y\": 0.44759419560432434}, {\"X\": 0.5710664391517639, \"Y\": 0.44750094413757324}]}, \"Id\": \"8f68bcf3-06e1-42df-9f9c-171b4851d658\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42343139648438, \"Text\": \"Did\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026875868439674377, \"Height\": 0.012093102559447289, \"Left\": 0.049613162875175476, \"Top\": 0.5896510481834412}, \"Polygon\": [{\"X\": 0.049634017050266266, \"Y\": 0.5896510481834412}, {\"X\": 0.07648903131484985, \"Y\": 0.5896746516227722}, {\"X\": 0.07646919786930084, \"Y\": 0.6017441153526306}, {\"X\": 0.049613162875175476, \"Y\": 0.6017202734947205}]}, \"Id\": \"d8651e01-139f-4539-a229-511a9aa48f2b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9298324584961, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029911598190665245, \"Height\": 0.012135163880884647, \"Left\": 0.08011410385370255, \"Top\": 0.5924619436264038}, \"Polygon\": [{\"X\": 0.08013385534286499, \"Y\": 0.5924619436264038}, {\"X\": 0.11002569645643234, \"Y\": 0.5924883484840393}, {\"X\": 0.11000708490610123, \"Y\": 0.6045971512794495}, {\"X\": 0.08011410385370255, \"Y\": 0.6045705080032349}]}, \"Id\": \"edbf9737-5270-4491-8234-bb44ec3776d9\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74656677246094, \"Text\": \"feel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031034408137202263, \"Height\": 0.01242149993777275, \"Left\": 0.11356721818447113, \"Top\": 0.5900331735610962}, \"Polygon\": [{\"X\": 0.11358613520860672, \"Y\": 0.5900331735610962}, {\"X\": 0.14460162818431854, \"Y\": 0.5900605320930481}, {\"X\": 0.14458392560482025, \"Y\": 0.602454662322998}, {\"X\": 0.11356721818447113, \"Y\": 0.602427065372467}]}, \"Id\": \"9a05872b-56dd-418a-8432-73318f250626\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86286926269531, \"Text\": \"fever\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0416518934071064, \"Height\": 0.012150218710303307, \"Left\": 0.14814871549606323, \"Top\": 0.5905011296272278}, \"Polygon\": [{\"X\": 0.14816588163375854, \"Y\": 0.5905011296272278}, {\"X\": 0.18980060517787933, \"Y\": 0.5905377864837646}, {\"X\": 0.18978503346443176, \"Y\": 0.6026513576507568}, {\"X\": 0.14814871549606323, \"Y\": 0.6026142835617065}]}, \"Id\": \"efd28b46-3d33-42c2-986a-e296aacacce6\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97421264648438, \"Text\": \"or\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018067358061671257, \"Height\": 0.009458868764340878, \"Left\": 0.19412147998809814, \"Top\": 0.5932677388191223}, \"Polygon\": [{\"X\": 0.19413349032402039, \"Y\": 0.5932677388191223}, {\"X\": 0.21218882501125336, \"Y\": 0.5932837128639221}, {\"X\": 0.2121773511171341, \"Y\": 0.6027266383171082}, {\"X\": 0.19412147998809814, \"Y\": 0.6027105450630188}]}, \"Id\": \"7a60a80a-3877-497b-bf0c-038b184a8627\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67192840576172, \"Text\": \"feverish\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06563156098127365, \"Height\": 0.012894649989902973, \"Left\": 0.21501393616199493, \"Top\": 0.590645968914032}, \"Polygon\": [{\"X\": 0.21502941846847534, \"Y\": 0.590645968914032}, {\"X\": 0.280645489692688, \"Y\": 0.5907037854194641}, {\"X\": 0.2806326448917389, \"Y\": 0.6035405993461609}, {\"X\": 0.21501393616199493, \"Y\": 0.603482186794281}]}, \"Id\": \"388e0d6e-2f48-41d1-b2a4-537ebd804eba\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69794464111328, \"Text\": \"lately?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05223335698246956, \"Height\": 0.014625024050474167, \"Left\": 0.28503677248954773, \"Top\": 0.5910640954971313}, \"Polygon\": [{\"X\": 0.2850511372089386, \"Y\": 0.5910640954971313}, {\"X\": 0.3372701108455658, \"Y\": 0.591110110282898}, {\"X\": 0.33725816011428833, \"Y\": 0.6056891083717346}, {\"X\": 0.28503677248954773, \"Y\": 0.605642557144165}]}, \"Id\": \"12540858-0920-4a29-9fa1-151a287d395c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93754577636719, \"Text\": \"Yes\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031127259135246277, \"Height\": 0.012501092627644539, \"Left\": 0.7112588286399841, \"Top\": 0.5947180986404419}, \"Polygon\": [{\"X\": 0.7112588286399841, \"Y\": 0.5947180986404419}, {\"X\": 0.7423803806304932, \"Y\": 0.5947456359863281}, {\"X\": 0.7423861026763916, \"Y\": 0.6072192192077637}, {\"X\": 0.7112632989883423, \"Y\": 0.6071914434432983}]}, \"Id\": \"699cc941-76b1-40d4-bce3-ea7962053ce1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75979614257812, \"Text\": \"No\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023127464577555656, \"Height\": 0.012216651812195778, \"Left\": 0.8091446757316589, \"Top\": 0.5960407853126526}, \"Polygon\": [{\"X\": 0.8091446757316589, \"Y\": 0.5960407853126526}, {\"X\": 0.8322631120681763, \"Y\": 0.5960612297058105}, {\"X\": 0.8322721123695374, \"Y\": 0.6082574129104614}, {\"X\": 0.8091527819633484, \"Y\": 0.6082367897033691}]}, \"Id\": \"b50ccd03-5b2a-441e-b107-cfbbc4840365\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.53014373779297, \"Text\": \"Are\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028768165037035942, \"Height\": 0.012053143233060837, \"Left\": 0.05059853941202164, \"Top\": 0.6554269194602966}, \"Polygon\": [{\"X\": 0.050619278103113174, \"Y\": 0.6554269194602966}, {\"X\": 0.07936670631170273, \"Y\": 0.6554535627365112}, {\"X\": 0.07934705913066864, \"Y\": 0.6674800515174866}, {\"X\": 0.05059853941202164, \"Y\": 0.6674531698226929}]}, \"Id\": \"e754e1df-8b98-43d8-9fa6-7bb95dd477bb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93980407714844, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029646554961800575, \"Height\": 0.012143729254603386, \"Left\": 0.08290501683950424, \"Top\": 0.6578270196914673}, \"Polygon\": [{\"X\": 0.08292467147111893, \"Y\": 0.6578270196914673}, {\"X\": 0.11255156993865967, \"Y\": 0.6578545570373535}, {\"X\": 0.11253304034471512, \"Y\": 0.6699707508087158}, {\"X\": 0.08290501683950424, \"Y\": 0.6699429750442505}]}, \"Id\": \"db554f8b-ab10-496c-8cf7-0fd6fcabc484\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93963623046875, \"Text\": \"having\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05289166793227196, \"Height\": 0.015072397887706757, \"Left\": 0.11674059927463531, \"Top\": 0.6557224988937378}, \"Polygon\": [{\"X\": 0.11676336824893951, \"Y\": 0.6557224988937378}, {\"X\": 0.16963225603103638, \"Y\": 0.6557715535163879}, {\"X\": 0.16961199045181274, \"Y\": 0.6707949042320251}, {\"X\": 0.11674059927463531, \"Y\": 0.670745313167572}]}, \"Id\": \"9898b5d9-6076-48fe-bcee-a2e333c8dda4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87660217285156, \"Text\": \"shortness\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07904721051454544, \"Height\": 0.013181691989302635, \"Left\": 0.17463460564613342, \"Top\": 0.6562672257423401}, \"Polygon\": [{\"X\": 0.1746520847082138, \"Y\": 0.6562672257423401}, {\"X\": 0.25368183851242065, \"Y\": 0.6563405394554138}, {\"X\": 0.25366759300231934, \"Y\": 0.6694489121437073}, {\"X\": 0.17463460564613342, \"Y\": 0.6693748235702515}]}, \"Id\": \"40c4ccef-c325-4bcd-9cee-37f7e069cd1a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98794555664062, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017175765708088875, \"Height\": 0.012158574536442757, \"Left\": 0.2575733959674835, \"Top\": 0.6570054888725281}, \"Polygon\": [{\"X\": 0.25758641958236694, \"Y\": 0.6570054888725281}, {\"X\": 0.27474915981292725, \"Y\": 0.6570214033126831}, {\"X\": 0.27473679184913635, \"Y\": 0.6691640615463257}, {\"X\": 0.2575733959674835, \"Y\": 0.6691479682922363}]}, \"Id\": \"32d2b6f7-ea58-42c7-aeab-edc5d361603e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81993103027344, \"Text\": \"breath?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06212034821510315, \"Height\": 0.012455536052584648, \"Left\": 0.2778337001800537, \"Top\": 0.6570439338684082}, \"Polygon\": [{\"X\": 0.27784621715545654, \"Y\": 0.6570439338684082}, {\"X\": 0.33995404839515686, \"Y\": 0.657101571559906}, {\"X\": 0.3399439752101898, \"Y\": 0.6694994568824768}, {\"X\": 0.2778337001800537, \"Y\": 0.669441282749176}]}, \"Id\": \"f1f3ea3e-66e3-478e-af8c-2e1d4187c1b8\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92074584960938, \"Text\": \"Yes\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03091447614133358, \"Height\": 0.012483513914048672, \"Left\": 0.7102535963058472, \"Top\": 0.6608591079711914}, \"Polygon\": [{\"X\": 0.7102535963058472, \"Y\": 0.6608591079711914}, {\"X\": 0.7411624789237976, \"Y\": 0.6608878970146179}, {\"X\": 0.7411680817604065, \"Y\": 0.6733426451683044}, {\"X\": 0.7102580070495605, \"Y\": 0.6733136177062988}]}, \"Id\": \"c47c6fd4-6e06-41c0-a235-dae98e1e2898\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37715148925781, \"Text\": \"No\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023091886192560196, \"Height\": 0.013247753493487835, \"Left\": 0.8067969679832458, \"Top\": 0.6613648533821106}, \"Polygon\": [{\"X\": 0.8067969679832458, \"Y\": 0.6613648533821106}, {\"X\": 0.8298792243003845, \"Y\": 0.6613863110542297}, {\"X\": 0.8298888802528381, \"Y\": 0.6746125817298889}, {\"X\": 0.8068056702613831, \"Y\": 0.6745908856391907}]}, \"Id\": \"82913d2e-680d-48de-b5ee-e686c5d2d47b\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52005004882812, \"Text\": \"Do\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02314835973083973, \"Height\": 0.012136699631810188, \"Left\": 0.05273086205124855, \"Top\": 0.7202389240264893}, \"Polygon\": [{\"X\": 0.05275166779756546, \"Y\": 0.7202389240264893}, {\"X\": 0.07587922364473343, \"Y\": 0.7202613949775696}, {\"X\": 0.07585930079221725, \"Y\": 0.7323756217956543}, {\"X\": 0.05273086205124855, \"Y\": 0.7323529124259949}]}, \"Id\": \"17ff7faa-ae2f-4650-90c7-889fbd706435\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94889831542969, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030148513615131378, \"Height\": 0.01181524246931076, \"Left\": 0.07950027287006378, \"Top\": 0.7226516604423523}, \"Polygon\": [{\"X\": 0.07951951771974564, \"Y\": 0.7226516604423523}, {\"X\": 0.10964878648519516, \"Y\": 0.7226810455322266}, {\"X\": 0.10963065922260284, \"Y\": 0.7344669103622437}, {\"X\": 0.07950027287006378, \"Y\": 0.7344372868537903}]}, \"Id\": \"3a9ddc11-5d90-480d-9218-723da27081a5\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97138214111328, \"Text\": \"have\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03906359523534775, \"Height\": 0.011828352697193623, \"Left\": 0.113785021007061, \"Top\": 0.720655083656311}, \"Polygon\": [{\"X\": 0.11380300670862198, \"Y\": 0.720655083656311}, {\"X\": 0.15284861624240875, \"Y\": 0.7206931114196777}, {\"X\": 0.15283209085464478, \"Y\": 0.732483446598053}, {\"X\": 0.113785021007061, \"Y\": 0.7324450612068176}]}, \"Id\": \"20876929-cee3-4277-889c-4657679d4834\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90641021728516, \"Text\": \"a\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010726510547101498, \"Height\": 0.009214545600116253, \"Left\": 0.157627135515213, \"Top\": 0.7236663699150085}, \"Polygon\": [{\"X\": 0.15763989090919495, \"Y\": 0.7236663699150085}, {\"X\": 0.16835364699363708, \"Y\": 0.7236768007278442}, {\"X\": 0.16834118962287903, \"Y\": 0.7328808903694153}, {\"X\": 0.157627135515213, \"Y\": 0.7328703999519348}]}, \"Id\": \"a5f2c90b-4259-4127-9914-17f7c0287a63\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.66014862060547, \"Text\": \"cough?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05724189057946205, \"Height\": 0.014410422183573246, \"Left\": 0.17246626317501068, \"Top\": 0.7220059037208557}, \"Polygon\": [{\"X\": 0.17248550057411194, \"Y\": 0.7220059037208557}, {\"X\": 0.22970815002918243, \"Y\": 0.7220616340637207}, {\"X\": 0.2296915054321289, \"Y\": 0.7364162802696228}, {\"X\": 0.17246626317501068, \"Y\": 0.7363599538803101}]}, \"Id\": \"2f655113-014a-4a39-ae07-ed53da0da89c\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88809967041016, \"Text\": \"Yes\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030439408496022224, \"Height\": 0.011939712800085545, \"Left\": 0.7085119485855103, \"Top\": 0.7269609570503235}, \"Polygon\": [{\"X\": 0.7085119485855103, \"Y\": 0.7269609570503235}, {\"X\": 0.7389460802078247, \"Y\": 0.7269906997680664}, {\"X\": 0.7389513850212097, \"Y\": 0.7389006614685059}, {\"X\": 0.7085161209106445, \"Y\": 0.7388706803321838}]}, \"Id\": \"ed55c395-0576-47af-ae3b-2b93a164b97a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68937683105469, \"Text\": \"No\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023464126512408257, \"Height\": 0.01269654743373394, \"Left\": 0.8040696382522583, \"Top\": 0.7272137403488159}, \"Polygon\": [{\"X\": 0.8040696382522583, \"Y\": 0.7272137403488159}, {\"X\": 0.8275246024131775, \"Y\": 0.7272366881370544}, {\"X\": 0.8275337219238281, \"Y\": 0.7399103045463562}, {\"X\": 0.8040778636932373, \"Y\": 0.7398871779441833}]}, \"Id\": \"4f5eb4aa-673c-44e4-8429-b5b5ed9ab477\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60072326660156, \"Text\": \"Did\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026748167350888252, \"Height\": 0.011758056469261646, \"Left\": 0.054972585290670395, \"Top\": 0.783734917640686}, \"Polygon\": [{\"X\": 0.054992642253637314, \"Y\": 0.783734917640686}, {\"X\": 0.0817207545042038, \"Y\": 0.7837621569633484}, {\"X\": 0.08170168101787567, \"Y\": 0.7954930067062378}, {\"X\": 0.054972585290670395, \"Y\": 0.7954655289649963}]}, \"Id\": \"11d3db12-2a64-49b6-8187-7dc990546c20\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92715454101562, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029240578413009644, \"Height\": 0.01175624132156372, \"Left\": 0.08576646447181702, \"Top\": 0.786634624004364}, \"Polygon\": [{\"X\": 0.08578537404537201, \"Y\": 0.786634624004364}, {\"X\": 0.11500704288482666, \"Y\": 0.7866644859313965}, {\"X\": 0.11498920619487762, \"Y\": 0.7983908653259277}, {\"X\": 0.08576646447181702, \"Y\": 0.7983608245849609}]}, \"Id\": \"c1c2534d-7309-418b-bfc9-2b1e0079a08d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54407501220703, \"Text\": \"experience\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08742409199476242, \"Height\": 0.01441464014351368, \"Left\": 0.11946175992488861, \"Top\": 0.7849700450897217}, \"Polygon\": [{\"X\": 0.1194833442568779, \"Y\": 0.7849700450897217}, {\"X\": 0.20688585937023163, \"Y\": 0.7850591540336609}, {\"X\": 0.2068682163953781, \"Y\": 0.7993847131729126}, {\"X\": 0.11946175992488861, \"Y\": 0.7992947101593018}]}, \"Id\": \"255c7761-1ec7-451e-80e3-d64399f14791\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89081573486328, \"Text\": \"loss\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03236384317278862, \"Height\": 0.012054050341248512, \"Left\": 0.21091130375862122, \"Top\": 0.7855702042579651}, \"Polygon\": [{\"X\": 0.21092595160007477, \"Y\": 0.7855702042579651}, {\"X\": 0.24327515065670013, \"Y\": 0.7856032252311707}, {\"X\": 0.24326172471046448, \"Y\": 0.7976242899894714}, {\"X\": 0.21091130375862122, \"Y\": 0.7975910305976868}]}, \"Id\": \"b4ffee66-749c-47a4-b7c5-300811a62ff0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9267578125, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01618647389113903, \"Height\": 0.011328810825943947, \"Left\": 0.24731571972370148, \"Top\": 0.7864245772361755}, \"Polygon\": [{\"X\": 0.24732822179794312, \"Y\": 0.7864245772361755}, {\"X\": 0.26350221037864685, \"Y\": 0.7864410877227783}, {\"X\": 0.2634902894496918, \"Y\": 0.7977533936500549}, {\"X\": 0.24731571972370148, \"Y\": 0.7977367639541626}]}, \"Id\": \"b8ab69da-e840-4ce6-b542-3e556b6c61a0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8913803100586, \"Text\": \"taste\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.038944948464632034, \"Height\": 0.011306699365377426, \"Left\": 0.266207754611969, \"Top\": 0.7873263955116272}, \"Polygon\": [{\"X\": 0.26621952652931213, \"Y\": 0.7873263955116272}, {\"X\": 0.30515268445014954, \"Y\": 0.7873661518096924}, {\"X\": 0.3051423132419586, \"Y\": 0.7986330986022949}, {\"X\": 0.266207754611969, \"Y\": 0.7985930442810059}]}, \"Id\": \"75660b8b-51f8-4e0c-a637-0b64540a77e1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90748596191406, \"Text\": \"or\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01750285178422928, \"Height\": 0.009012965485453606, \"Left\": 0.310085266828537, \"Top\": 0.7900239825248718}, \"Polygon\": [{\"X\": 0.31009340286254883, \"Y\": 0.7900239825248718}, {\"X\": 0.32758811116218567, \"Y\": 0.7900418639183044}, {\"X\": 0.32758045196533203, \"Y\": 0.7990369200706482}, {\"X\": 0.310085266828537, \"Y\": 0.799018919467926}]}, \"Id\": \"fb83b674-0eda-4d9f-893b-857221249acb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37142944335938, \"Text\": \"smell?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051289256662130356, \"Height\": 0.011860539205372334, \"Left\": 0.3316493630409241, \"Top\": 0.7884148359298706}, \"Polygon\": [{\"X\": 0.3316592574119568, \"Y\": 0.7884148359298706}, {\"X\": 0.38293859362602234, \"Y\": 0.7884672284126282}, {\"X\": 0.38293060660362244, \"Y\": 0.8002753257751465}, {\"X\": 0.3316493630409241, \"Y\": 0.8002225160598755}]}, \"Id\": \"2858f272-fb45-420a-9653-5d764dc391ec\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92426300048828, \"Text\": \"Yes\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03000422939658165, \"Height\": 0.011712025851011276, \"Left\": 0.7067491412162781, \"Top\": 0.7912763357162476}, \"Polygon\": [{\"X\": 0.7067491412162781, \"Y\": 0.7912763357162476}, {\"X\": 0.7367482781410217, \"Y\": 0.7913070321083069}, {\"X\": 0.7367533445358276, \"Y\": 0.8029883503913879}, {\"X\": 0.706753134727478, \"Y\": 0.8029574155807495}]}, \"Id\": \"cb7cdd2a-8090-44f4-8a6e-f4a8762b7ee2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5230712890625, \"Text\": \"No\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022722888737916946, \"Height\": 0.012761592864990234, \"Left\": 0.8017643094062805, \"Top\": 0.7916630506515503}, \"Polygon\": [{\"X\": 0.8017643094062805, \"Y\": 0.7916630506515503}, {\"X\": 0.8244780898094177, \"Y\": 0.7916862964630127}, {\"X\": 0.8244872093200684, \"Y\": 0.8044246435165405}, {\"X\": 0.8017724752426147, \"Y\": 0.8044012188911438}]}, \"Id\": \"ab01b2e3-1112-42c6-a86b-ed6266307bb1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80457305908203, \"Text\": \"Where\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052291303873062134, \"Height\": 0.012272380292415619, \"Left\": 0.05586652085185051, \"Top\": 0.847578763961792}, \"Polygon\": [{\"X\": 0.055887371301651, \"Y\": 0.847578763961792}, {\"X\": 0.10815782845020294, \"Y\": 0.8476343750953674}, {\"X\": 0.10813898593187332, \"Y\": 0.8598511219024658}, {\"X\": 0.05586652085185051, \"Y\": 0.859795093536377}]}, \"Id\": \"52b2d275-5d26-4c3e-b10d-a02988979327\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94470977783203, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030342552810907364, \"Height\": 0.011912528425455093, \"Left\": 0.11191610246896744, \"Top\": 0.850817859172821}, \"Polygon\": [{\"X\": 0.11193428188562393, \"Y\": 0.850817859172821}, {\"X\": 0.1422586590051651, \"Y\": 0.8508501648902893}, {\"X\": 0.14224161207675934, \"Y\": 0.8627303838729858}, {\"X\": 0.11191610246896744, \"Y\": 0.8626977801322937}]}, \"Id\": \"77d256f2-3e7d-49f6-b368-1568f22a59eb\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92594146728516, \"Text\": \"in\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.013711272738873959, \"Height\": 0.011357368901371956, \"Left\": 0.14645668864250183, \"Top\": 0.8487399816513062}, \"Polygon\": [{\"X\": 0.14647281169891357, \"Y\": 0.8487399816513062}, {\"X\": 0.16016796231269836, \"Y\": 0.8487545251846313}, {\"X\": 0.16015231609344482, \"Y\": 0.860097348690033}, {\"X\": 0.14645668864250183, \"Y\": 0.8600826263427734}]}, \"Id\": \"9307347d-9cc6-44ab-955b-3db44bf2697a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62538146972656, \"Text\": \"contact\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.058847587555646896, \"Height\": 0.011407291516661644, \"Left\": 0.1643579751253128, \"Top\": 0.849371612071991}, \"Polygon\": [{\"X\": 0.1643734723329544, \"Y\": 0.849371612071991}, {\"X\": 0.22320556640625, \"Y\": 0.8494342565536499}, {\"X\": 0.22319218516349792, \"Y\": 0.8607788681983948}, {\"X\": 0.1643579751253128, \"Y\": 0.8607157468795776}]}, \"Id\": \"53796f86-3013-464d-a4f3-8f540f956245\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9612045288086, \"Text\": \"with\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03190067037940025, \"Height\": 0.011401569470763206, \"Left\": 0.22676487267017365, \"Top\": 0.8494784235954285}, \"Polygon\": [{\"X\": 0.22677814960479736, \"Y\": 0.8494784235954285}, {\"X\": 0.258665531873703, \"Y\": 0.8495123982429504}, {\"X\": 0.2586534023284912, \"Y\": 0.8608800172805786}, {\"X\": 0.22676487267017365, \"Y\": 0.8608458042144775}]}, \"Id\": \"2d018e66-b1dd-45b2-887e-f40a64c0e4d2\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98538208007812, \"Text\": \"any\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029242554679512978, \"Height\": 0.011520723812282085, \"Left\": 0.2634630501270294, \"Top\": 0.8520528078079224}, \"Polygon\": [{\"X\": 0.2634751498699188, \"Y\": 0.8520528078079224}, {\"X\": 0.29270559549331665, \"Y\": 0.8520839810371399}, {\"X\": 0.2926945686340332, \"Y\": 0.8635734915733337}, {\"X\": 0.2634630501270294, \"Y\": 0.8635420799255371}]}, \"Id\": \"c10cefd5-d0c1-4a08-b6c7-4eb1f224b21e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87648010253906, \"Text\": \"confirmed\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07831467688083649, \"Height\": 0.012507261708378792, \"Left\": 0.29656949639320374, \"Top\": 0.8498814702033997}, \"Polygon\": [{\"X\": 0.29658129811286926, \"Y\": 0.8498814702033997}, {\"X\": 0.37488415837287903, \"Y\": 0.8499648571014404}, {\"X\": 0.3748754560947418, \"Y\": 0.8623887300491333}, {\"X\": 0.29656949639320374, \"Y\": 0.8623046278953552}]}, \"Id\": \"ba2acf72-1ba2-431b-bdd9-dad15f195223\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.63658142089844, \"Text\": \"COVID-19\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08092883974313736, \"Height\": 0.01255867164582014, \"Left\": 0.37946802377700806, \"Top\": 0.8510920405387878}, \"Polygon\": [{\"X\": 0.3794766068458557, \"Y\": 0.8510920405387878}, {\"X\": 0.4603968858718872, \"Y\": 0.8511783480644226}, {\"X\": 0.46039146184921265, \"Y\": 0.8636507391929626}, {\"X\": 0.37946802377700806, \"Y\": 0.8635637164115906}]}, \"Id\": \"1e6411c0-575f-4c9c-adb4-d579041dc786\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78623962402344, \"Text\": \"positive\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05989430844783783, \"Height\": 0.014321510680019855, \"Left\": 0.4652693569660187, \"Top\": 0.8523478507995605}, \"Polygon\": [{\"X\": 0.4652753174304962, \"Y\": 0.8523478507995605}, {\"X\": 0.5251636505126953, \"Y\": 0.8524117469787598}, {\"X\": 0.5251604318618774, \"Y\": 0.8666693568229675}, {\"X\": 0.4652693569660187, \"Y\": 0.8666048049926758}]}, \"Id\": \"2a6a6d07-a443-4ec7-9b93-c2e385c5e895\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69434356689453, \"Text\": \"patients?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07279127836227417, \"Height\": 0.013711986131966114, \"Left\": 0.529510498046875, \"Top\": 0.8531337976455688}, \"Polygon\": [{\"X\": 0.5295134782791138, \"Y\": 0.8531337976455688}, {\"X\": 0.6023015975952148, \"Y\": 0.8532114624977112}, {\"X\": 0.6023017764091492, \"Y\": 0.8668457865715027}, {\"X\": 0.529510498046875, \"Y\": 0.8667673468589783}]}, \"Id\": \"34f06fac-d0f2-4087-97c2-f4e2ee9f241d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76344299316406, \"Text\": \"Yes\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030465373769402504, \"Height\": 0.012179316021502018, \"Left\": 0.7038336396217346, \"Top\": 0.854785144329071}, \"Polygon\": [{\"X\": 0.7038336396217346, \"Y\": 0.854785144329071}, {\"X\": 0.7342938184738159, \"Y\": 0.8548176884651184}, {\"X\": 0.7342990636825562, \"Y\": 0.8669644594192505}, {\"X\": 0.7038376927375793, \"Y\": 0.8669316172599792}]}, \"Id\": \"b1810cf4-43e7-46a4-9224-9bd3f257e073\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5263671875, \"Text\": \"No\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023616664111614227, \"Height\": 0.012601767666637897, \"Left\": 0.7994560599327087, \"Top\": 0.8562684655189514}, \"Polygon\": [{\"X\": 0.7994560599327087, \"Y\": 0.8562684655189514}, {\"X\": 0.8230637907981873, \"Y\": 0.8562936782836914}, {\"X\": 0.8230727314949036, \"Y\": 0.868870198726654}, {\"X\": 0.7994640469551086, \"Y\": 0.868844747543335}]}, \"Id\": \"250661fa-a762-494a-acea-7c9d2c138273\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4371566772461, \"Text\": \"Did\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02583090029656887, \"Height\": 0.012149602174758911, \"Left\": 0.05665387585759163, \"Top\": 0.9124054908752441}, \"Polygon\": [{\"X\": 0.0566745288670063, \"Y\": 0.9124054908752441}, {\"X\": 0.08248477429151535, \"Y\": 0.9124341011047363}, {\"X\": 0.08246510475873947, \"Y\": 0.9245550632476807}, {\"X\": 0.05665387585759163, \"Y\": 0.9245262145996094}]}, \"Id\": \"8baa2ef7-6a3b-48bd-bcaa-262028abbdc4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94155883789062, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029582016170024872, \"Height\": 0.012184599414467812, \"Left\": 0.08652479946613312, \"Top\": 0.915367841720581}, \"Polygon\": [{\"X\": 0.08654435724020004, \"Y\": 0.915367841720581}, {\"X\": 0.11610680818557739, \"Y\": 0.9154007434844971}, {\"X\": 0.1160883828997612, \"Y\": 0.9275524616241455}, {\"X\": 0.08652479946613312, \"Y\": 0.9275193214416504}]}, \"Id\": \"f1295bd0-8691-4a47-a88f-28b1d4146fc0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82109832763672, \"Text\": \"travel\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04453841596841812, \"Height\": 0.011728358455002308, \"Left\": 0.11997090280056, \"Top\": 0.9134742021560669}, \"Polygon\": [{\"X\": 0.11998847872018814, \"Y\": 0.9134742021560669}, {\"X\": 0.16450932621955872, \"Y\": 0.9135236740112305}, {\"X\": 0.1644933819770813, \"Y\": 0.9252025485038757}, {\"X\": 0.11997090280056, \"Y\": 0.9251527190208435}]}, \"Id\": \"c637093c-922e-478f-b53e-04566d27a8ce\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93213653564453, \"Text\": \"in\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.013810697942972183, \"Height\": 0.011653170920908451, \"Left\": 0.16888871788978577, \"Top\": 0.9134064316749573}, \"Polygon\": [{\"X\": 0.16890443861484528, \"Y\": 0.9134064316749573}, {\"X\": 0.18269941210746765, \"Y\": 0.9134218096733093}, {\"X\": 0.18268421292304993, \"Y\": 0.9250596165657043}, {\"X\": 0.16888871788978577, \"Y\": 0.9250441789627075}]}, \"Id\": \"5d9d8da5-f067-4675-90b7-d53d007ccdaf\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.99462890625, \"Text\": \"the\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02680276893079281, \"Height\": 0.011614277958869934, \"Left\": 0.18658912181854248, \"Top\": 0.9136092662811279}, \"Polygon\": [{\"X\": 0.18660412728786469, \"Y\": 0.9136092662811279}, {\"X\": 0.21339188516139984, \"Y\": 0.9136390089988708}, {\"X\": 0.21337786316871643, \"Y\": 0.9252235293388367}, {\"X\": 0.18658912181854248, \"Y\": 0.9251935482025146}]}, \"Id\": \"3ee15378-916a-42ce-ad6f-0f9b2aea9c96\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8488998413086, \"Text\": \"past\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.034837786108255386, \"Height\": 0.013823854736983776, \"Left\": 0.2170131653547287, \"Top\": 0.9139796495437622}, \"Polygon\": [{\"X\": 0.21702969074249268, \"Y\": 0.9139796495437622}, {\"X\": 0.2518509328365326, \"Y\": 0.9140183329582214}, {\"X\": 0.2518359124660492, \"Y\": 0.9278035163879395}, {\"X\": 0.2170131653547287, \"Y\": 0.9277644753456116}]}, \"Id\": \"8faa10b9-82ec-4902-80ae-302748bd32ac\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62137603759766, \"Text\": \"14\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018632374703884125, \"Height\": 0.011037078686058521, \"Left\": 0.2573496699333191, \"Top\": 0.913732647895813}, \"Polygon\": [{\"X\": 0.257361501455307, \"Y\": 0.913732647895813}, {\"X\": 0.2759820520877838, \"Y\": 0.91375333070755}, {\"X\": 0.2759708762168884, \"Y\": 0.9247697591781616}, {\"X\": 0.2573496699333191, \"Y\": 0.9247488975524902}]}, \"Id\": \"75adb240-0b48-4e28-9ea0-0a6655f1ef0e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92691040039062, \"Text\": \"days\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03823336213827133, \"Height\": 0.013920155353844166, \"Left\": 0.2801859676837921, \"Top\": 0.9137067794799805}, \"Polygon\": [{\"X\": 0.2801998257637024, \"Y\": 0.9137067794799805}, {\"X\": 0.31841930747032166, \"Y\": 0.9137492179870605}, {\"X\": 0.3184071183204651, \"Y\": 0.9276269674301147}, {\"X\": 0.2801859676837921, \"Y\": 0.9275841116905212}]}, \"Id\": \"8f6dc7bc-04da-4e81-87ae-e5d18b3ee06e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96855926513672, \"Text\": \"to\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01525878719985485, \"Height\": 0.010720891878008842, \"Left\": 0.3224637806415558, \"Top\": 0.9145534634590149}, \"Polygon\": [{\"X\": 0.32247307896614075, \"Y\": 0.9145534634590149}, {\"X\": 0.3377225697040558, \"Y\": 0.9145704507827759}, {\"X\": 0.3377138078212738, \"Y\": 0.9252743721008301}, {\"X\": 0.3224637806415558, \"Y\": 0.9252573251724243}]}, \"Id\": \"112daa8b-cdff-49bd-a9b9-23fc00e3d3ff\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98228454589844, \"Text\": \"any\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029370633885264397, \"Height\": 0.011654737405478954, \"Left\": 0.3426216244697571, \"Top\": 0.9162519574165344}, \"Polygon\": [{\"X\": 0.34263095259666443, \"Y\": 0.9162519574165344}, {\"X\": 0.3719922602176666, \"Y\": 0.9162846207618713}, {\"X\": 0.37198397517204285, \"Y\": 0.9279066920280457}, {\"X\": 0.3426216244697571, \"Y\": 0.9278737902641296}]}, \"Id\": \"e5d4a6b1-f670-43c3-85c7-e6915afdd5ce\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.40699005126953, \"Text\": \"regions\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05960336700081825, \"Height\": 0.014562007039785385, \"Left\": 0.37540513277053833, \"Top\": 0.9139522314071655}, \"Polygon\": [{\"X\": 0.37541526556015015, \"Y\": 0.9139522314071655}, {\"X\": 0.4350084960460663, \"Y\": 0.914018452167511}, {\"X\": 0.43500104546546936, \"Y\": 0.9285142421722412}, {\"X\": 0.37540513277053833, \"Y\": 0.928447425365448}]}, \"Id\": \"c979e6e1-abad-424c-90aa-e06e628ae998\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87976837158203, \"Text\": \"affected\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0631810799241066, \"Height\": 0.012475598603487015, \"Left\": 0.43843957781791687, \"Top\": 0.9146561622619629}, \"Polygon\": [{\"X\": 0.4384458065032959, \"Y\": 0.9146561622619629}, {\"X\": 0.5016206502914429, \"Y\": 0.9147263169288635}, {\"X\": 0.501616895198822, \"Y\": 0.927131712436676}, {\"X\": 0.43843957781791687, \"Y\": 0.9270609617233276}]}, \"Id\": \"337b51c7-e2f4-4237-bcff-e89a8b488b04\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97702026367188, \"Text\": \"by\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.020054630935192108, \"Height\": 0.014485013671219349, \"Left\": 0.5064725875854492, \"Top\": 0.9159385561943054}, \"Polygon\": [{\"X\": 0.5064767599105835, \"Y\": 0.9159385561943054}, {\"X\": 0.5265272259712219, \"Y\": 0.9159608483314514}, {\"X\": 0.5265239477157593, \"Y\": 0.9304235577583313}, {\"X\": 0.5064725875854492, \"Y\": 0.9304010272026062}]}, \"Id\": \"3c5e7597-2fcc-46a9-b85a-77e17edb13fa\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 98.60582733154297, \"Text\": \"COVID-19?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09074649214744568, \"Height\": 0.012789293192327023, \"Left\": 0.5297697186470032, \"Top\": 0.9160277247428894}, \"Polygon\": [{\"X\": 0.5297724604606628, \"Y\": 0.9160277247428894}, {\"X\": 0.6205153465270996, \"Y\": 0.9161286354064941}, {\"X\": 0.6205162405967712, \"Y\": 0.9288169741630554}, {\"X\": 0.5297697186470032, \"Y\": 0.9287152290344238}]}, \"Id\": \"93ee67fb-e74e-44a3-8d91-874c34ce7f13\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80075073242188, \"Text\": \"Yes\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03019566275179386, \"Height\": 0.011853490956127644, \"Left\": 0.7025893330574036, \"Top\": 0.9184788465499878}, \"Polygon\": [{\"X\": 0.7025893330574036, \"Y\": 0.9184788465499878}, {\"X\": 0.7327799797058105, \"Y\": 0.9185124635696411}, {\"X\": 0.7327849864959717, \"Y\": 0.9303323030471802}, {\"X\": 0.702593207359314, \"Y\": 0.9302984476089478}]}, \"Id\": \"f5a9d541-ac19-4b24-a276-67475984ea07\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36701965332031, \"Text\": \"No\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02431592158973217, \"Height\": 0.014284574426710606, \"Left\": 0.7975861430168152, \"Top\": 0.9198150634765625}, \"Polygon\": [{\"X\": 0.7975861430168152, \"Y\": 0.9198150634765625}, {\"X\": 0.8218920230865479, \"Y\": 0.9198421239852905}, {\"X\": 0.8219020366668701, \"Y\": 0.9340996146202087}, {\"X\": 0.7975950837135315, \"Y\": 0.9340722560882568}]}, \"Id\": \"ab0415a6-2c99-404e-b080-79ad73d2ea45\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.96126556396484, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028649035841226578, \"Height\": 0.023389559239149094, \"Left\": 0.6747211813926697, \"Top\": 0.8481118679046631}, \"Polygon\": [{\"X\": 0.6747211813926697, \"Y\": 0.8481118679046631}, {\"X\": 0.7033624649047852, \"Y\": 0.8481423258781433}, {\"X\": 0.703370213508606, \"Y\": 0.8715014457702637}, {\"X\": 0.6747268438339233, \"Y\": 0.8714705109596252}]}, \"Id\": \"63a9ff73-7104-4713-922e-d00e7b4d9097\", \"SelectionStatus\": \"SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.9516372680664, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029818831011652946, \"Height\": 0.02186296507716179, \"Left\": 0.7679883241653442, \"Top\": 0.9147849678993225}, \"Polygon\": [{\"X\": 0.7679883241653442, \"Y\": 0.9147849678993225}, {\"X\": 0.7977933883666992, \"Y\": 0.9148180484771729}, {\"X\": 0.7978071570396423, \"Y\": 0.936647891998291}, {\"X\": 0.7680000066757202, \"Y\": 0.9366143345832825}]}, \"Id\": \"c6d15a1c-bc44-45f8-9bd1-0db90c2a3114\", \"SelectionStatus\": \"SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.95153045654297, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029430730268359184, \"Height\": 0.022370710968971252, \"Left\": 0.6815099120140076, \"Top\": 0.5882682800292969}, \"Polygon\": [{\"X\": 0.6815099120140076, \"Y\": 0.5882682800292969}, {\"X\": 0.7109326720237732, \"Y\": 0.5882941484451294}, {\"X\": 0.7109406590461731, \"Y\": 0.6106389760971069}, {\"X\": 0.6815158128738403, \"Y\": 0.610612690448761}]}, \"Id\": \"3e4de872-8ca0-443c-b52d-86589ab4d6fd\", \"SelectionStatus\": \"SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.94391632080078, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02970515936613083, \"Height\": 0.022794414311647415, \"Left\": 0.7748013138771057, \"Top\": 0.7216495871543884}, \"Polygon\": [{\"X\": 0.7748013138771057, \"Y\": 0.7216495871543884}, {\"X\": 0.8044916987419128, \"Y\": 0.7216784954071045}, {\"X\": 0.8045064806938171, \"Y\": 0.7444440126419067}, {\"X\": 0.7748140096664429, \"Y\": 0.7444146275520325}]}, \"Id\": \"c8f7abfc-51fd-42af-8b11-9fd71fc1c20f\", \"SelectionStatus\": \"SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.94033813476562, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030246281996369362, \"Height\": 0.022068962454795837, \"Left\": 0.676531195640564, \"Top\": 0.7858339548110962}, \"Polygon\": [{\"X\": 0.676531195640564, \"Y\": 0.7858339548110962}, {\"X\": 0.7067699432373047, \"Y\": 0.7858647704124451}, {\"X\": 0.7067775130271912, \"Y\": 0.8079029321670532}, {\"X\": 0.6765366792678833, \"Y\": 0.8078715801239014}]}, \"Id\": \"7a1711b1-2e81-4a68-9c88-e9110c9ce047\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.92835235595703, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031300999224185944, \"Height\": 0.021959777921438217, \"Left\": 0.7783156037330627, \"Top\": 0.5899155735969543}, \"Polygon\": [{\"X\": 0.7783156037330627, \"Y\": 0.5899155735969543}, {\"X\": 0.8096020221710205, \"Y\": 0.5899431109428406}, {\"X\": 0.8096166253089905, \"Y\": 0.6118753552436829}, {\"X\": 0.7783281207084656, \"Y\": 0.6118472814559937}]}, \"Id\": \"8c45f8ef-a64c-438f-b33f-43fc6e64556c\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.92083740234375, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029833531007170677, \"Height\": 0.022660769522190094, \"Left\": 0.6802835464477539, \"Top\": 0.6554895639419556}, \"Polygon\": [{\"X\": 0.6802835464477539, \"Y\": 0.6554895639419556}, {\"X\": 0.7101091146469116, \"Y\": 0.6555172204971313}, {\"X\": 0.7101171016693115, \"Y\": 0.6781502962112427}, {\"X\": 0.6802894473075867, \"Y\": 0.6781222224235535}]}, \"Id\": \"7b75ca4a-16cd-43b0-bcd0-2998e5ede99d\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.91947174072266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03090777061879635, \"Height\": 0.022278696298599243, \"Left\": 0.7766966223716736, \"Top\": 0.656265914440155}, \"Polygon\": [{\"X\": 0.7766966223716736, \"Y\": 0.656265914440155}, {\"X\": 0.8075897097587585, \"Y\": 0.656294584274292}, {\"X\": 0.8076043725013733, \"Y\": 0.6785445809364319}, {\"X\": 0.7767091393470764, \"Y\": 0.6785154938697815}]}, \"Id\": \"1b02b641-e3a6-40fc-90e1-0a2a6bdcfdbc\", \"SelectionStatus\": \"SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.91578674316406, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030044684186577797, \"Height\": 0.022674571722745895, \"Left\": 0.6787430644035339, \"Top\": 0.7214279770851135}, \"Polygon\": [{\"X\": 0.6787430644035339, \"Y\": 0.7214279770851135}, {\"X\": 0.7087798118591309, \"Y\": 0.7214572429656982}, {\"X\": 0.708787739276886, \"Y\": 0.7441025376319885}, {\"X\": 0.6787488460540771, \"Y\": 0.7440727949142456}]}, \"Id\": \"e6cf35ff-4b9d-4e5a-a566-9e6619e16390\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.91033935546875, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029893122613430023, \"Height\": 0.022707341238856316, \"Left\": 0.7725110650062561, \"Top\": 0.786030650138855}, \"Polygon\": [{\"X\": 0.7725110650062561, \"Y\": 0.786030650138855}, {\"X\": 0.8023895621299744, \"Y\": 0.7860611081123352}, {\"X\": 0.8024041652679443, \"Y\": 0.8087379932403564}, {\"X\": 0.7725235223770142, \"Y\": 0.808707058429718}]}, \"Id\": \"6fcc68f8-c731-4b18-8324-70375a4367df\", \"SelectionStatus\": \"SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.89456176757812, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029491333290934563, \"Height\": 0.022076640278100967, \"Left\": 0.6734845638275146, \"Top\": 0.9126278162002563}, \"Polygon\": [{\"X\": 0.6734845638275146, \"Y\": 0.9126278162002563}, {\"X\": 0.7029685974121094, \"Y\": 0.912660539150238}, {\"X\": 0.702975869178772, \"Y\": 0.9347044825553894}, {\"X\": 0.6734898090362549, \"Y\": 0.9346712827682495}]}, \"Id\": \"5c648581-0e9a-4c83-a08f-f7633e59b33f\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 1}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.88215637207031, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030130188912153244, \"Height\": 0.022780997678637505, \"Left\": 0.7697463631629944, \"Top\": 0.8505669236183167}, \"Polygon\": [{\"X\": 0.7697463631629944, \"Y\": 0.8505669236183167}, {\"X\": 0.7998620867729187, \"Y\": 0.8505989909172058}, {\"X\": 0.7998765707015991, \"Y\": 0.8733479380607605}, {\"X\": 0.7697586417198181, \"Y\": 0.8733153343200684}]}, \"Id\": \"a94942d0-31ef-4042-b0d8-b315364c39e1\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.8681411743164, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.8438460230827332, \"Height\": 0.39128679037094116, \"Left\": 0.041843608021736145, \"Top\": 0.5636817216873169}, \"Polygon\": [{\"X\": 0.04252682253718376, \"Y\": 0.5636817216873169}, {\"X\": 0.8853358030319214, \"Y\": 0.5644083023071289}, {\"X\": 0.8856896162033081, \"Y\": 0.9549685120582581}, {\"X\": 0.041843608021736145, \"Y\": 0.9540068507194519}]}, \"Id\": \"d3e03e0e-4c1e-4149-b1b9-8cdc7ebde34a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"20918dfb-371a-4c84-8fae-c0b3bfdecb72\", \"1bd411b9-5b89-45c9-a49a-8302ae4753c7\", \"7679793b-9cc3-4a39-85ab-e001bf19cf28\", \"faab8dec-7a1f-42ef-99c7-787ceafdf8cc\", \"6a6a0a61-11b0-4756-b4d3-6a923e0b96ca\", \"c7af6997-68a5-4ca6-b57b-036be43d3712\", \"c1600f59-37ef-4552-bc92-d95857e8b2d9\", \"0353ac0f-346f-43e5-98a3-46b44b1cdc70\", \"262fc4b8-f48a-4d06-b8eb-ddb282b68a9e\", \"3b49ded6-5b94-4d71-bee3-f0958e5c32d0\", \"40f6efe1-6c0b-4c26-84a2-0045589dd278\", \"81f2ec23-eaf2-4289-a1f8-88b2dd93f59b\", \"8ee3b09b-9e13-4725-aa18-3be6f94d5cf9\", \"e00257b8-4ca8-408b-b7a7-1bbf99a56788\", \"e9ff3612-5f18-435f-9791-c014e2f50097\", \"ab853059-87fe-4b81-acfd-853d2c2a59f4\", \"7fb93225-9d28-4533-a1c2-fa6676ccdf84\", \"b770bdba-379a-4e70-afe2-572cdc9846bc\", \"3b6d0199-3c0b-42bb-98b1-59b987bb7a1c\", \"1d61f0db-c515-4c46-981d-12356803bbd9\", \"9953b757-5c32-4463-bde9-6117c3afb8a5\", \"dc03bb00-9584-4753-a81c-58f6e0cfb19e\", \"ce415fe6-0442-4aea-9e88-765098b437e1\", \"ff65efdc-626a-46bb-9315-dab0d4ca9f1e\"]}, {\"Type\": \"MERGED_CELL\", \"Ids\": [\"ce05f05d-84ac-4a5f-af95-6841f0e433f2\", \"8bd7f66b-a570-4ab2-84d6-4a667b25726c\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0034792693331837654, \"Height\": 0.06578255444765091, \"Left\": 0.0426197350025177, \"Top\": 0.5637279152870178}, \"Polygon\": [{\"X\": 0.04273482784628868, \"Y\": 0.5637279152870178}, {\"X\": 0.04609900340437889, \"Y\": 0.563730776309967}, {\"X\": 0.04598460718989372, \"Y\": 0.6295104622840881}, {\"X\": 0.0426197350025177, \"Y\": 0.6295073628425598}]}, \"Id\": \"20918dfb-371a-4c84-8fae-c0b3bfdecb72\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.04039764404297, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6101489067077637, \"Height\": 0.06638019531965256, \"Left\": 0.04598460718989372, \"Top\": 0.5636848211288452}, \"Polygon\": [{\"X\": 0.04609908536076546, \"Y\": 0.5636848211288452}, {\"X\": 0.6561214327812195, \"Y\": 0.5642106533050537}, {\"X\": 0.6561335325241089, \"Y\": 0.6300650238990784}, {\"X\": 0.04598460718989372, \"Y\": 0.6295104622840881}]}, \"Id\": \"1bd411b9-5b89-45c9-a49a-8302ae4753c7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d8651e01-139f-4539-a229-511a9aa48f2b\", \"edbf9737-5270-4491-8234-bb44ec3776d9\", \"9a05872b-56dd-418a-8432-73318f250626\", \"efd28b46-3d33-42c2-986a-e296aacacce6\", \"7a60a80a-3877-497b-bf0c-038b184a8627\", \"388e0d6e-2f48-41d1-b2a4-537ebd804eba\", \"12540858-0920-4a29-9fa1-151a287d395c\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 36.911705017089844, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22147972881793976, \"Height\": 0.06605560332536697, \"Left\": 0.6561214327812195, \"Top\": 0.5642106533050537}, \"Polygon\": [{\"X\": 0.6561214327812195, \"Y\": 0.5642106533050537}, {\"X\": 0.8775430917739868, \"Y\": 0.5644015669822693}, {\"X\": 0.877601146697998, \"Y\": 0.6302663087844849}, {\"X\": 0.6561335325241089, \"Y\": 0.6300650238990784}]}, \"Id\": \"7679793b-9cc3-4a39-85ab-e001bf19cf28\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3e4de872-8ca0-443c-b52d-86589ab4d6fd\", \"8c45f8ef-a64c-438f-b33f-43fc6e64556c\", \"699cc941-76b1-40d4-bce3-ea7962053ce1\", \"b50ccd03-5b2a-441e-b107-cfbbc4840365\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008059090003371239, \"Height\": 0.06582596153020859, \"Left\": 0.8775431513786316, \"Top\": 0.5644475817680359}, \"Polygon\": [{\"X\": 0.8775431513786316, \"Y\": 0.5644475817680359}, {\"X\": 0.8855425715446472, \"Y\": 0.5644544959068298}, {\"X\": 0.8856022357940674, \"Y\": 0.6302735805511475}, {\"X\": 0.877601146697998, \"Y\": 0.6302663087844849}]}, \"Id\": \"faab8dec-7a1f-42ef-99c7-787ceafdf8cc\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00348058994859457, \"Height\": 0.0661390945315361, \"Left\": 0.04250401630997658, \"Top\": 0.6295073628425598}, \"Polygon\": [{\"X\": 0.0426197350025177, \"Y\": 0.6295073628425598}, {\"X\": 0.04598460718989372, \"Y\": 0.6295104622840881}, {\"X\": 0.04586958885192871, \"Y\": 0.6956464648246765}, {\"X\": 0.04250401630997658, \"Y\": 0.6956432461738586}]}, \"Id\": \"6a6a0a61-11b0-4756-b4d3-6a923e0b96ca\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 92.20929718017578, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6102760434150696, \"Height\": 0.06671939045190811, \"Left\": 0.04586958885192871, \"Top\": 0.6295104622840881}, \"Polygon\": [{\"X\": 0.04598460718989372, \"Y\": 0.6295104622840881}, {\"X\": 0.6561335325241089, \"Y\": 0.6300650238990784}, {\"X\": 0.6561456322669983, \"Y\": 0.6962298154830933}, {\"X\": 0.04586958885192871, \"Y\": 0.6956464648246765}]}, \"Id\": \"c7af6997-68a5-4ca6-b57b-036be43d3712\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e754e1df-8b98-43d8-9fa6-7bb95dd477bb\", \"db554f8b-ab10-496c-8cf7-0fd6fcabc484\", \"9898b5d9-6076-48fe-bcee-a2e333c8dda4\", \"40c4ccef-c325-4bcd-9cee-37f7e069cd1a\", \"32d2b6f7-ea58-42c7-aeab-edc5d361603e\", \"f1f3ea3e-66e3-478e-af8c-2e1d4187c1b8\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 36.58198547363281, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22152596712112427, \"Height\": 0.06637658923864365, \"Left\": 0.6561335325241089, \"Top\": 0.6300650238990784}, \"Polygon\": [{\"X\": 0.6561335325241089, \"Y\": 0.6300650238990784}, {\"X\": 0.877601146697998, \"Y\": 0.6302663087844849}, {\"X\": 0.8776594996452332, \"Y\": 0.6964415907859802}, {\"X\": 0.6561456322669983, \"Y\": 0.6962298154830933}]}, \"Id\": \"c1600f59-37ef-4552-bc92-d95857e8b2d9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b75ca4a-16cd-43b0-bcd0-2998e5ede99d\", \"1b02b641-e3a6-40fc-90e1-0a2a6bdcfdbc\", \"c47c6fd4-6e06-41c0-a235-dae98e1e2898\", \"82913d2e-680d-48de-b5ee-e686c5d2d47b\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008061072789132595, \"Height\": 0.06618295609951019, \"Left\": 0.877601146697998, \"Top\": 0.6302663087844849}, \"Polygon\": [{\"X\": 0.877601146697998, \"Y\": 0.6302663087844849}, {\"X\": 0.8856022357940674, \"Y\": 0.6302735805511475}, {\"X\": 0.8856622576713562, \"Y\": 0.6964492201805115}, {\"X\": 0.8776594996452332, \"Y\": 0.6964415907859802}]}, \"Id\": \"0353ac0f-346f-43e5-98a3-46b44b1cdc70\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0034824912436306477, \"Height\": 0.06682530045509338, \"Left\": 0.04238709434866905, \"Top\": 0.6956432461738586}, \"Polygon\": [{\"X\": 0.04250401630997658, \"Y\": 0.6956432461738586}, {\"X\": 0.04586958885192871, \"Y\": 0.6956464648246765}, {\"X\": 0.04575337469577789, \"Y\": 0.7624685764312744}, {\"X\": 0.04238709434866905, \"Y\": 0.7624651789665222}]}, \"Id\": \"262fc4b8-f48a-4d06-b8eb-ddb282b68a9e\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 91.87635040283203, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6104045510292053, \"Height\": 0.06743456423282623, \"Left\": 0.04575337469577789, \"Top\": 0.6956464648246765}, \"Polygon\": [{\"X\": 0.04586958885192871, \"Y\": 0.6956464648246765}, {\"X\": 0.6561456322669983, \"Y\": 0.6962298154830933}, {\"X\": 0.656157910823822, \"Y\": 0.7630810737609863}, {\"X\": 0.04575337469577789, \"Y\": 0.7624685764312744}]}, \"Id\": \"3b49ded6-5b94-4d71-bee3-f0958e5c32d0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"17ff7faa-ae2f-4650-90c7-889fbd706435\", \"3a9ddc11-5d90-480d-9218-723da27081a5\", \"20876929-cee3-4277-889c-4657679d4834\", \"a5f2c90b-4259-4127-9914-17f7c0287a63\", \"2f655113-014a-4a39-ae07-ed53da0da89c\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 36.44989776611328, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22157274186611176, \"Height\": 0.0670735239982605, \"Left\": 0.6561456322669983, \"Top\": 0.6962298154830933}, \"Polygon\": [{\"X\": 0.6561456322669983, \"Y\": 0.6962298154830933}, {\"X\": 0.8776594996452332, \"Y\": 0.6964415907859802}, {\"X\": 0.8777183890342712, \"Y\": 0.7633033394813538}, {\"X\": 0.656157910823822, \"Y\": 0.7630810737609863}]}, \"Id\": \"40f6efe1-6c0b-4c26-84a2-0045589dd278\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c8f7abfc-51fd-42af-8b11-9fd71fc1c20f\", \"e6cf35ff-4b9d-4e5a-a566-9e6619e16390\", \"ed55c395-0576-47af-ae3b-2b93a164b97a\", \"4f5eb4aa-673c-44e4-8429-b5b5ed9ab477\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00806336384266615, \"Height\": 0.0668698102235794, \"Left\": 0.8776594996452332, \"Top\": 0.6964415907859802}, \"Polygon\": [{\"X\": 0.8776594996452332, \"Y\": 0.6964415907859802}, {\"X\": 0.8856622576713562, \"Y\": 0.6964492201805115}, {\"X\": 0.885722815990448, \"Y\": 0.7633113861083984}, {\"X\": 0.8777183890342712, \"Y\": 0.7633033394813538}]}, \"Id\": \"81f2ec23-eaf2-4289-a1f8-88b2dd93f59b\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0034757566172629595, \"Height\": 0.06257171183824539, \"Left\": 0.04227761924266815, \"Top\": 0.7624651789665222}, \"Polygon\": [{\"X\": 0.04238709434866905, \"Y\": 0.7624651789665222}, {\"X\": 0.04575337469577789, \"Y\": 0.7624685764312744}, {\"X\": 0.04564456269145012, \"Y\": 0.825036883354187}, {\"X\": 0.04227761924266815, \"Y\": 0.8250333666801453}]}, \"Id\": \"8ee3b09b-9e13-4725-aa18-3be6f94d5cf9\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 92.3199234008789, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6105248332023621, \"Height\": 0.06320808827877045, \"Left\": 0.04564456269145012, \"Top\": 0.7624685764312744}, \"Polygon\": [{\"X\": 0.04575337469577789, \"Y\": 0.7624685764312744}, {\"X\": 0.656157910823822, \"Y\": 0.7630810737609863}, {\"X\": 0.6561694145202637, \"Y\": 0.825676679611206}, {\"X\": 0.04564456269145012, \"Y\": 0.825036883354187}]}, \"Id\": \"e00257b8-4ca8-408b-b7a7-1bbf99a56788\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11d3db12-2a64-49b6-8187-7dc990546c20\", \"c1c2534d-7309-418b-bfc9-2b1e0079a08d\", \"255c7761-1ec7-451e-80e3-d64399f14791\", \"b4ffee66-749c-47a4-b7c5-300811a62ff0\", \"b8ab69da-e840-4ce6-b542-3e556b6c61a0\", \"75660b8b-51f8-4e0c-a637-0b64540a77e1\", \"fb83b674-0eda-4d9f-893b-857221249acb\", \"2858f272-fb45-420a-9653-5d764dc391ec\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 36.62587356567383, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22161565721035004, \"Height\": 0.06282782554626465, \"Left\": 0.656157910823822, \"Top\": 0.7630810737609863}, \"Polygon\": [{\"X\": 0.656157910823822, \"Y\": 0.7630810737609863}, {\"X\": 0.8777183890342712, \"Y\": 0.7633033394813538}, {\"X\": 0.8777735829353333, \"Y\": 0.825908899307251}, {\"X\": 0.6561694145202637, \"Y\": 0.825676679611206}]}, \"Id\": \"e9ff3612-5f18-435f-9791-c014e2f50097\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7a1711b1-2e81-4a68-9c88-e9110c9ce047\", \"6fcc68f8-c731-4b18-8324-70375a4367df\", \"cb7cdd2a-8090-44f4-8a6e-f4a8762b7ee2\", \"ab01b2e3-1112-42c6-a86b-ed6266307bb1\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008061191067099571, \"Height\": 0.06261390447616577, \"Left\": 0.8777183890342712, \"Top\": 0.7633033394813538}, \"Polygon\": [{\"X\": 0.8777183890342712, \"Y\": 0.7633033394813538}, {\"X\": 0.885722815990448, \"Y\": 0.7633113861083984}, {\"X\": 0.885779619216919, \"Y\": 0.8259172439575195}, {\"X\": 0.8777735829353333, \"Y\": 0.825908899307251}]}, \"Id\": \"ab853059-87fe-4b81-acfd-853d2c2a59f4\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0034770395141094923, \"Height\": 0.0629260316491127, \"Left\": 0.04216752201318741, \"Top\": 0.8250333666801453}, \"Polygon\": [{\"X\": 0.04227761924266815, \"Y\": 0.8250333666801453}, {\"X\": 0.04564456269145012, \"Y\": 0.825036883354187}, {\"X\": 0.0455351322889328, \"Y\": 0.8879594206809998}, {\"X\": 0.04216752201318741, \"Y\": 0.8879557251930237}]}, \"Id\": \"7fb93225-9d28-4533-a1c2-fa6676ccdf84\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 91.86568450927734, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6106458306312561, \"Height\": 0.06358970701694489, \"Left\": 0.0455351322889328, \"Top\": 0.825036883354187}, \"Polygon\": [{\"X\": 0.04564456269145012, \"Y\": 0.825036883354187}, {\"X\": 0.6561694145202637, \"Y\": 0.825676679611206}, {\"X\": 0.6561809182167053, \"Y\": 0.8886266350746155}, {\"X\": 0.0455351322889328, \"Y\": 0.8879594206809998}]}, \"Id\": \"b770bdba-379a-4e70-afe2-572cdc9846bc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"52b2d275-5d26-4c3e-b10d-a02988979327\", \"77d256f2-3e7d-49f6-b368-1568f22a59eb\", \"9307347d-9cc6-44ab-955b-3db44bf2697a\", \"53796f86-3013-464d-a4f3-8f540f956245\", \"2d018e66-b1dd-45b2-887e-f40a64c0e4d2\", \"c10cefd5-d0c1-4a08-b6c7-4eb1f224b21e\", \"ba2acf72-1ba2-431b-bdd9-dad15f195223\", \"1e6411c0-575f-4c9c-adb4-d579041dc786\", \"2a6a6d07-a443-4ec7-9b93-c2e385c5e895\", \"34f06fac-d0f2-4087-97c2-f4e2ee9f241d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 36.44566345214844, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22165966033935547, \"Height\": 0.06319212168455124, \"Left\": 0.6561694145202637, \"Top\": 0.825676679611206}, \"Polygon\": [{\"X\": 0.6561694145202637, \"Y\": 0.825676679611206}, {\"X\": 0.8777735829353333, \"Y\": 0.825908899307251}, {\"X\": 0.8778290748596191, \"Y\": 0.8888688087463379}, {\"X\": 0.6561809182167053, \"Y\": 0.8886266350746155}]}, \"Id\": \"3b6d0199-3c0b-42bb-98b1-59b987bb7a1c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63a9ff73-7104-4713-922e-d00e7b4d9097\", \"a94942d0-31ef-4042-b0d8-b315364c39e1\", \"b1810cf4-43e7-46a4-9224-9bd3f257e073\", \"250661fa-a762-494a-acea-7c9d2c138273\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008063090965151787, \"Height\": 0.0629686564207077, \"Left\": 0.8777735829353333, \"Top\": 0.825908899307251}, \"Polygon\": [{\"X\": 0.8777735829353333, \"Y\": 0.825908899307251}, {\"X\": 0.885779619216919, \"Y\": 0.8259172439575195}, {\"X\": 0.885836660861969, \"Y\": 0.8888775110244751}, {\"X\": 0.8778290748596191, \"Y\": 0.8888688087463379}]}, \"Id\": \"1d61f0db-c515-4c46-981d-12356803bbd9\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0034829408396035433, \"Height\": 0.06591784209012985, \"Left\": 0.042052194476127625, \"Top\": 0.8879557251930237}, \"Polygon\": [{\"X\": 0.04216752201318741, \"Y\": 0.8879557251930237}, {\"X\": 0.0455351322889328, \"Y\": 0.8879594206809998}, {\"X\": 0.04542050138115883, \"Y\": 0.9538735747337341}, {\"X\": 0.042052194476127625, \"Y\": 0.9538697600364685}]}, \"Id\": \"9953b757-5c32-4463-bde9-6117c3afb8a5\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.08602905273438, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6107727885246277, \"Height\": 0.06674756854772568, \"Left\": 0.04542026296257973, \"Top\": 0.8879594206809998}, \"Polygon\": [{\"X\": 0.0455351322889328, \"Y\": 0.8879594206809998}, {\"X\": 0.6561809182167053, \"Y\": 0.8886266350746155}, {\"X\": 0.6561930775642395, \"Y\": 0.9547069668769836}, {\"X\": 0.04542026296257973, \"Y\": 0.9540109634399414}]}, \"Id\": \"dc03bb00-9584-4753-a81c-58f6e0cfb19e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8baa2ef7-6a3b-48bd-bcaa-262028abbdc4\", \"f1295bd0-8691-4a47-a88f-28b1d4146fc0\", \"c637093c-922e-478f-b53e-04566d27a8ce\", \"5d9d8da5-f067-4675-90b7-d53d007ccdaf\", \"3ee15378-916a-42ce-ad6f-0f9b2aea9c96\", \"8faa10b9-82ec-4902-80ae-302748bd32ac\", \"75adb240-0b48-4e28-9ea0-0a6655f1ef0e\", \"8f6dc7bc-04da-4e81-87ae-e5d18b3ee06e\", \"112daa8b-cdff-49bd-a9b9-23fc00e3d3ff\", \"e5d4a6b1-f670-43c3-85c7-e6915afdd5ce\", \"c979e6e1-abad-424c-90aa-e06e628ae998\", \"337b51c7-e2f4-4237-bcff-e89a8b488b04\", \"3c5e7597-2fcc-46a9-b85a-77e17edb13fa\", \"93ee67fb-e74e-44a3-8d91-874c34ce7f13\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 36.9298095703125, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.221706360578537, \"Height\": 0.06633300334215164, \"Left\": 0.6561809182167053, \"Top\": 0.8886266350746155}, \"Polygon\": [{\"X\": 0.6561809182167053, \"Y\": 0.8886266350746155}, {\"X\": 0.8778290748596191, \"Y\": 0.8888688087463379}, {\"X\": 0.8778873085975647, \"Y\": 0.9549596309661865}, {\"X\": 0.6561930775642395, \"Y\": 0.9547069668769836}]}, \"Id\": \"ce415fe6-0442-4aea-9e88-765098b437e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c6d15a1c-bc44-45f8-9bd1-0db90c2a3114\", \"5c648581-0e9a-4c83-a08f-f7633e59b33f\", \"f5a9d541-ac19-4b24-a276-67475984ea07\", \"ab0415a6-2c99-404e-b080-79ad73d2ea45\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 6, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008067391812801361, \"Height\": 0.06596249341964722, \"Left\": 0.8778290748596191, \"Top\": 0.8888688087463379}, \"Polygon\": [{\"X\": 0.8778290748596191, \"Y\": 0.8888688087463379}, {\"X\": 0.885836660861969, \"Y\": 0.8888775110244751}, {\"X\": 0.8858964443206787, \"Y\": 0.9548313021659851}, {\"X\": 0.8778871893882751, \"Y\": 0.9548221230506897}]}, \"Id\": \"ff65efdc-626a-46bb-9315-dab0d4ca9f1e\", \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 43.17141342163086, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 6, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.004255475476384163, \"Height\": 0.3903292417526245, \"Left\": 0.041843608021736145, \"Top\": 0.5636817216873169}, \"Polygon\": [{\"X\": 0.04252682253718376, \"Y\": 0.5636817216873169}, {\"X\": 0.04609908536076546, \"Y\": 0.5636848211288452}, {\"X\": 0.04542026296257973, \"Y\": 0.9540109634399414}, {\"X\": 0.041843608021736145, \"Y\": 0.9540068507194519}]}, \"Id\": \"ce05f05d-84ac-4a5f-af95-6841f0e433f2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"20918dfb-371a-4c84-8fae-c0b3bfdecb72\", \"6a6a0a61-11b0-4756-b4d3-6a923e0b96ca\", \"262fc4b8-f48a-4d06-b8eb-ddb282b68a9e\", \"8ee3b09b-9e13-4725-aa18-3be6f94d5cf9\", \"7fb93225-9d28-4533-a1c2-fa6676ccdf84\", \"9953b757-5c32-4463-bde9-6117c3afb8a5\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 39.46139144897461, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 6, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008146491833031178, \"Height\": 0.39056694507598877, \"Left\": 0.8775430917739868, \"Top\": 0.5644015669822693}, \"Polygon\": [{\"X\": 0.8775430917739868, \"Y\": 0.5644015669822693}, {\"X\": 0.8853358030319214, \"Y\": 0.5644083023071289}, {\"X\": 0.8856896162033081, \"Y\": 0.9549685120582581}, {\"X\": 0.8778873085975647, \"Y\": 0.9549596309661865}]}, \"Id\": \"8bd7f66b-a570-4ab2-84d6-4a667b25726c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"faab8dec-7a1f-42ef-99c7-787ceafdf8cc\", \"0353ac0f-346f-43e5-98a3-46b44b1cdc70\", \"81f2ec23-eaf2-4289-a1f8-88b2dd93f59b\", \"ab853059-87fe-4b81-acfd-853d2c2a59f4\", \"1d61f0db-c515-4c46-981d-12356803bbd9\", \"ff65efdc-626a-46bb-9315-dab0d4ca9f1e\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 99.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10327551513910294, \"Height\": 0.010844340547919273, \"Left\": 0.1750853806734085, \"Top\": 0.14101067185401917}, \"Polygon\": [{\"X\": 0.17509977519512177, \"Y\": 0.14101067185401917}, {\"X\": 0.27836090326309204, \"Y\": 0.14106865227222443}, {\"X\": 0.27835002541542053, \"Y\": 0.15185502171516418}, {\"X\": 0.1750853806734085, \"Y\": 0.15179623663425446}]}, \"Id\": \"450b87d0-8407-4e2c-8ca6-6f669f9acb67\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"da6c2dec-b028-4fbf-9eea-08919546acd3\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"f6c4fe6b-db72-468f-9e05-9bf8b40ace04\", \"ab041376-1e0f-4108-9d6d-43e1b27d4466\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 99.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.12826097011566162, \"Height\": 0.025030994787812233, \"Left\": 0.28603920340538025, \"Top\": 0.12752938270568848}, \"Polygon\": [{\"X\": 0.2860637903213501, \"Y\": 0.12752938270568848}, {\"X\": 0.41430020332336426, \"Y\": 0.12760014832019806}, {\"X\": 0.41428571939468384, \"Y\": 0.15256036818027496}, {\"X\": 0.28603920340538025, \"Y\": 0.15248732268810272}]}, \"Id\": \"da6c2dec-b028-4fbf-9eea-08919546acd3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28ece4bb-208b-412c-81e3-8945adb24ab3\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03326621279120445, \"Height\": 0.012935902923345566, \"Left\": 0.6262175440788269, \"Top\": 0.18125565350055695}, \"Polygon\": [{\"X\": 0.6262175440788269, \"Y\": 0.18125565350055695}, {\"X\": 0.6594812870025635, \"Y\": 0.18127527832984924}, {\"X\": 0.659483790397644, \"Y\": 0.19419154524803162}, {\"X\": 0.6262187361717224, \"Y\": 0.19417162239551544}]}, \"Id\": \"6a4bcf94-8b8e-4542-ac9d-1e3eb89e9bc5\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"d0eba493-2211-410f-93b9-38342b843827\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"caf8f382-fe4a-46dd-ab10-d4eedefca164\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15911296010017395, \"Height\": 0.023398257791996002, \"Left\": 0.6831444501876831, \"Top\": 0.17150966823101044}, \"Polygon\": [{\"X\": 0.6831444501876831, \"Y\": 0.17150966823101044}, {\"X\": 0.842239499092102, \"Y\": 0.17160241305828094}, {\"X\": 0.8422574400901794, \"Y\": 0.19490793347358704}, {\"X\": 0.6831507682800293, \"Y\": 0.19481253623962402}]}, \"Id\": \"d0eba493-2211-410f-93b9-38342b843827\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28386009-65d2-4e1d-a56b-24b93c20063f\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08205629140138626, \"Height\": 0.010559799149632454, \"Left\": 0.3710181415081024, \"Top\": 0.10598330199718475}, \"Polygon\": [{\"X\": 0.3710256814956665, \"Y\": 0.10598330199718475}, {\"X\": 0.4530744254589081, \"Y\": 0.10602732747793198}, {\"X\": 0.45306962728500366, \"Y\": 0.11654309928417206}, {\"X\": 0.3710181415081024, \"Y\": 0.11649846285581589}]}, \"Id\": \"496ab150-5927-4037-ad84-7df95ae5a81a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e29a1464-5e79-42af-90fe-245ee14bb8aa\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"78da39df-c7c2-453d-a8a4-fbb0c7990e8c\", \"aac765b9-ce10-481f-95eb-d5d0cffb25d3\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1593157947063446, \"Height\": 0.026060009375214577, \"Left\": 0.46193385124206543, \"Top\": 0.091823510825634}, \"Polygon\": [{\"X\": 0.4619449973106384, \"Y\": 0.091823510825634}, {\"X\": 0.6212477087974548, \"Y\": 0.09190737456083298}, {\"X\": 0.6212496161460876, \"Y\": 0.11788351833820343}, {\"X\": 0.46193385124206543, \"Y\": 0.11779671162366867}]}, \"Id\": \"e29a1464-5e79-42af-90fe-245ee14bb8aa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b18154dd-9a29-4f85-b958-bc073e9594af\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08211860060691833, \"Height\": 0.011471598409116268, \"Left\": 0.039499491453170776, \"Top\": 0.10482688248157501}, \"Polygon\": [{\"X\": 0.03951963037252426, \"Y\": 0.10482688248157501}, {\"X\": 0.12161809206008911, \"Y\": 0.10487087815999985}, {\"X\": 0.1216009110212326, \"Y\": 0.11629848182201385}, {\"X\": 0.039499491453170776, \"Y\": 0.1162538230419159}]}, \"Id\": \"711fcee8-dfa2-4475-af5a-698e2e8c0b20\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1129b769-d7bf-40e8-b951-4572ecbeb1da\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"d7a166c9-fb73-4a78-961c-8b871ac5d382\", \"46b32145-ae6c-47c4-a707-af4e22e59956\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21083880960941315, \"Height\": 0.032444749027490616, \"Left\": 0.13746073842048645, \"Top\": 0.08461996167898178}, \"Polygon\": [{\"X\": 0.13750772178173065, \"Y\": 0.08461996167898178}, {\"X\": 0.3482995331287384, \"Y\": 0.0847298800945282}, {\"X\": 0.3482740521430969, \"Y\": 0.1170647144317627}, {\"X\": 0.13746073842048645, \"Y\": 0.11694994568824768}]}, \"Id\": \"1129b769-d7bf-40e8-b951-4572ecbeb1da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1054ab4e-0f14-4504-b8bb-f917ed69e0b1\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0812988355755806, \"Height\": 0.011290562339127064, \"Left\": 0.04050513729453087, \"Top\": 0.30086439847946167}, \"Polygon\": [{\"X\": 0.040524888783693314, \"Y\": 0.30086439847946167}, {\"X\": 0.12180396914482117, \"Y\": 0.3009192943572998}, {\"X\": 0.12178709357976913, \"Y\": 0.31215497851371765}, {\"X\": 0.04050513729453087, \"Y\": 0.312099426984787}]}, \"Id\": \"7a674cf3-5957-41d5-8434-f06b774f51e6\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"6e4bfc30-41bc-4623-a599-0f392bbcd7b4\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"2f769232-91c9-4424-8a5f-435babbf160c\", \"7651e1f6-b348-4ead-8fa0-ff42bd15f149\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10690933465957642, \"Height\": 0.020308151841163635, \"Left\": 0.15742504596710205, \"Top\": 0.29029691219329834}, \"Polygon\": [{\"X\": 0.15745314955711365, \"Y\": 0.29029691219329834}, {\"X\": 0.26433438062667847, \"Y\": 0.2903682589530945}, {\"X\": 0.26431307196617126, \"Y\": 0.3106050491333008}, {\"X\": 0.15742504596710205, \"Y\": 0.3105321526527405}]}, \"Id\": \"6e4bfc30-41bc-4623-a599-0f392bbcd7b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c1157932-4f5a-4d03-806e-9dd555eb108b\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07876546680927277, \"Height\": 0.010854668915271759, \"Left\": 0.3694050908088684, \"Top\": 0.3021763563156128}, \"Polygon\": [{\"X\": 0.3694128692150116, \"Y\": 0.3021763563156128}, {\"X\": 0.44817057251930237, \"Y\": 0.3022295832633972}, {\"X\": 0.4481654763221741, \"Y\": 0.31303101778030396}, {\"X\": 0.3694050908088684, \"Y\": 0.3129771947860718}]}, \"Id\": \"44072cea-0137-4e03-b765-108cd969e214\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"b4298199-2bed-4eb2-88a2-0e1df43c1dcc\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"de5c4619-f8fa-4f5d-8ae2-14376a84f46d\", \"87d2553e-6802-4a69-b96b-1e5aaef7da87\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16758742928504944, \"Height\": 0.022442813962697983, \"Left\": 0.46116840839385986, \"Top\": 0.29074549674987793}, \"Polygon\": [{\"X\": 0.4611780643463135, \"Y\": 0.29074549674987793}, {\"X\": 0.628753662109375, \"Y\": 0.2908574044704437}, {\"X\": 0.6287558674812317, \"Y\": 0.3131883144378662}, {\"X\": 0.46116840839385986, \"Y\": 0.3130737245082855}]}, \"Id\": \"b4298199-2bed-4eb2-88a2-0e1df43c1dcc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2ac64703-4168-4f8b-8c3f-f8b4eedbc07b\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04778026416897774, \"Height\": 0.010049431584775448, \"Left\": 0.040784478187561035, \"Top\": 0.32654741406440735}, \"Polygon\": [{\"X\": 0.04080207645893097, \"Y\": 0.32654741406440735}, {\"X\": 0.08856474608182907, \"Y\": 0.3265805244445801}, {\"X\": 0.08854865282773972, \"Y\": 0.33659684658050537}, {\"X\": 0.040784478187561035, \"Y\": 0.336563378572464}]}, \"Id\": \"1fe6424e-0b77-4407-9d06-6873d1932650\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"3ed09dad-002f-4867-9e16-cba3cc2b050c\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"0d01438c-588a-423c-bd84-9cf5a578dd63\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20427235960960388, \"Height\": 0.01852240040898323, \"Left\": 0.11131586879491806, \"Top\": 0.3181021213531494}, \"Polygon\": [{\"X\": 0.11134407669305801, \"Y\": 0.3181021213531494}, {\"X\": 0.31558823585510254, \"Y\": 0.31824252009391785}, {\"X\": 0.3155718445777893, \"Y\": 0.33662453293800354}, {\"X\": 0.11131586879491806, \"Y\": 0.3364814519882202}]}, \"Id\": \"3ed09dad-002f-4867-9e16-cba3cc2b050c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83f00781-9535-45b5-b274-090281243ffe\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.047410089522600174, \"Height\": 0.00971949938684702, \"Left\": 0.3889600336551666, \"Top\": 0.22441136837005615}, \"Polygon\": [{\"X\": 0.3889664113521576, \"Y\": 0.22441136837005615}, {\"X\": 0.4363701343536377, \"Y\": 0.224440798163414}, {\"X\": 0.43636518716812134, \"Y\": 0.2341308742761612}, {\"X\": 0.3889600336551666, \"Y\": 0.23410111665725708}]}, \"Id\": \"733a593f-b1b6-4db2-904b-0126a483d17e\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"19a04f37-8995-4669-b85f-ec32bc175a62\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"2a57e38d-d939-4ad7-910e-5b443e9ae2f0\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22472015023231506, \"Height\": 0.02543335221707821, \"Left\": 0.464140385389328, \"Top\": 0.20823527872562408}, \"Polygon\": [{\"X\": 0.4641510844230652, \"Y\": 0.20823527872562408}, {\"X\": 0.6888532638549805, \"Y\": 0.20837216079235077}, {\"X\": 0.6888605356216431, \"Y\": 0.23366862535476685}, {\"X\": 0.464140385389328, \"Y\": 0.23352769017219543}]}, \"Id\": \"19a04f37-8995-4669-b85f-ec32bc175a62\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"42334046-62bb-48b0-9ad1-801b74ae8930\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 97.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0811857059597969, \"Height\": 0.011069505475461483, \"Left\": 0.04054108262062073, \"Top\": 0.4091087281703949}, \"Polygon\": [{\"X\": 0.04056042805314064, \"Y\": 0.4091087281703949}, {\"X\": 0.12172678858041763, \"Y\": 0.4091697931289673}, {\"X\": 0.12171026319265366, \"Y\": 0.42017823457717896}, {\"X\": 0.04054108262062073, \"Y\": 0.4201165437698364}]}, \"Id\": \"99f284df-4224-4118-8070-e45152ce0c04\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"26888937-aec4-46bd-ae6a-62c30cdafa50\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"54e24d07-9a15-42c7-93e3-9b3f8fefc247\", \"4463b7fb-f7ff-4243-bc84-90828aec6b96\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 97.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09868107736110687, \"Height\": 0.02311914600431919, \"Left\": 0.15182994306087494, \"Top\": 0.3987956941127777}, \"Polygon\": [{\"X\": 0.15186235308647156, \"Y\": 0.3987956941127777}, {\"X\": 0.2505110204219818, \"Y\": 0.3988691568374634}, {\"X\": 0.25048577785491943, \"Y\": 0.42191484570503235}, {\"X\": 0.15182994306087494, \"Y\": 0.42183974385261536}]}, \"Id\": \"26888937-aec4-46bd-ae6a-62c30cdafa50\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a10b1d2-113a-484f-9d1f-6338062370b1\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 96.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0610370859503746, \"Height\": 0.010633774101734161, \"Left\": 0.04125511273741722, \"Top\": 0.17898303270339966}, \"Polygon\": [{\"X\": 0.041273728013038635, \"Y\": 0.17898303270339966}, {\"X\": 0.10229220241308212, \"Y\": 0.17901894450187683}, {\"X\": 0.10227562487125397, \"Y\": 0.18961681425571442}, {\"X\": 0.04125511273741722, \"Y\": 0.18958044052124023}]}, \"Id\": \"ea89d1f0-d348-4efe-bd1d-baaf1a035d07\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"bfae1382-1c64-4a3d-910a-64812c56fc99\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"c0ea6103-a793-4542-be27-c9feb63293f3\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 96.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30091217160224915, \"Height\": 0.02444298192858696, \"Left\": 0.129494771361351, \"Top\": 0.16737000644207}, \"Polygon\": [{\"X\": 0.1295306235551834, \"Y\": 0.16737000644207}, {\"X\": 0.43040692806243896, \"Y\": 0.16754458844661713}, {\"X\": 0.43039411306381226, \"Y\": 0.19181297719478607}, {\"X\": 0.129494771361351, \"Y\": 0.1916331946849823}]}, \"Id\": \"bfae1382-1c64-4a3d-910a-64812c56fc99\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"15b97d1f-57bd-40a4-9c85-a3d572259903\", \"375e1d1b-e4f4-4129-a586-b83c939983b0\", \"f265126f-b45b-4411-917a-3b414ce8e05e\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 96.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16451723873615265, \"Height\": 0.013385752215981483, \"Left\": 0.36971744894981384, \"Top\": 0.3265095353126526}, \"Polygon\": [{\"X\": 0.3697269856929779, \"Y\": 0.3265095353126526}, {\"X\": 0.5342347025871277, \"Y\": 0.3266235888004303}, {\"X\": 0.5342320203781128, \"Y\": 0.3398952782154083}, {\"X\": 0.36971744894981384, \"Y\": 0.33977967500686646}]}, \"Id\": \"f8d15057-c1d2-4daf-8155-1377a2064cd9\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c5cf5197-b769-4c8e-afb6-72c3d4cb8596\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"50939972-7e6f-496b-8eaf-36dfef27bb5c\", \"c55738d0-e06c-4681-a4e4-61474b84e63b\", \"048a60a2-c96c-4dd5-8df9-200b425194f0\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 96.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14501923322677612, \"Height\": 0.02111310325562954, \"Left\": 0.5748426914215088, \"Top\": 0.3184754550457001}, \"Polygon\": [{\"X\": 0.574844241142273, \"Y\": 0.3184754550457001}, {\"X\": 0.7198538780212402, \"Y\": 0.3185751438140869}, {\"X\": 0.7198619246482849, \"Y\": 0.33958855271339417}, {\"X\": 0.5748426914215088, \"Y\": 0.339486688375473}]}, \"Id\": \"c5cf5197-b769-4c8e-afb6-72c3d4cb8596\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1de60303-63c6-43c4-9407-0fc3ad39e29f\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1062128022313118, \"Height\": 0.011255576275289059, \"Left\": 0.4645293354988098, \"Top\": 0.1418767273426056}, \"Polygon\": [{\"X\": 0.46453404426574707, \"Y\": 0.1418767273426056}, {\"X\": 0.570742130279541, \"Y\": 0.14193642139434814}, {\"X\": 0.5707411766052246, \"Y\": 0.15313230454921722}, {\"X\": 0.4645293354988098, \"Y\": 0.15307176113128662}]}, \"Id\": \"3fdac3b2-30e1-42a8-a0d4-adb168ebdc26\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"82839c8e-4bb2-4349-a423-7fa61b4d6a16\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"c802266c-081b-469d-89a9-5a7bdcb25501\", \"456adc1b-158e-4e74-94ec-52e2ff543012\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3816789388656616, \"Height\": 0.02474459446966648, \"Left\": 0.5771774053573608, \"Top\": 0.13065126538276672}, \"Polygon\": [{\"X\": 0.5771790146827698, \"Y\": 0.13065126538276672}, {\"X\": 0.9588283896446228, \"Y\": 0.13086269795894623}, {\"X\": 0.9588563442230225, \"Y\": 0.15539586544036865}, {\"X\": 0.5771774053573608, \"Y\": 0.1551777720451355}]}, \"Id\": \"82839c8e-4bb2-4349-a423-7fa61b4d6a16\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043029170483350754, \"Height\": 0.011723565869033337, \"Left\": 0.043763794004917145, \"Top\": 0.22228264808654785}, \"Polygon\": [{\"X\": 0.0437842458486557, \"Y\": 0.22228264808654785}, {\"X\": 0.0867929682135582, \"Y\": 0.22230927646160126}, {\"X\": 0.08677410334348679, \"Y\": 0.23400621116161346}, {\"X\": 0.043763794004917145, \"Y\": 0.2339792102575302}]}, \"Id\": \"98bae966-1d6b-4904-b28f-b689535c0649\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"2755624f-687e-46ec-b2a7-e0d4020b2bc5\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"3b9c0f52-8d7f-4bc5-8061-fd4e0a05eb1a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.042918622493743896, \"Height\": 0.02124331146478653, \"Left\": 0.10163038969039917, \"Top\": 0.2124801129102707}, \"Polygon\": [{\"X\": 0.10166361182928085, \"Y\": 0.2124801129102707}, {\"X\": 0.14454901218414307, \"Y\": 0.21250636875629425}, {\"X\": 0.1445186585187912, \"Y\": 0.23372341692447662}, {\"X\": 0.10163038969039917, \"Y\": 0.23369650542736053}]}, \"Id\": \"2755624f-687e-46ec-b2a7-e0d4020b2bc5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7d79606-95ba-46e3-9533-de35295df7b0\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03259359672665596, \"Height\": 0.010428900830447674, \"Left\": 0.040229469537734985, \"Top\": 0.14111532270908356}, \"Polygon\": [{\"X\": 0.04024779051542282, \"Y\": 0.14111532270908356}, {\"X\": 0.07282306253910065, \"Y\": 0.1411336213350296}, {\"X\": 0.07280581444501877, \"Y\": 0.1515442281961441}, {\"X\": 0.040229469537734985, \"Y\": 0.15152569115161896}]}, \"Id\": \"224379c6-4159-4354-a396-c4a364b74c1b\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"38592d87-62b2-4739-ac03-fe4b11da9719\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"13c142e0-391e-4604-a5fc-51ec1d226d4b\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04437714442610741, \"Height\": 0.022697998210787773, \"Left\": 0.0858553797006607, \"Top\": 0.12631936371326447}, \"Polygon\": [{\"X\": 0.08589201420545578, \"Y\": 0.12631936371326447}, {\"X\": 0.1302325278520584, \"Y\": 0.12634380161762238}, {\"X\": 0.13019905984401703, \"Y\": 0.1490173637866974}, {\"X\": 0.0858553797006607, \"Y\": 0.14899221062660217}]}, \"Id\": \"38592d87-62b2-4739-ac03-fe4b11da9719\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7bdcee0-700f-4a44-a366-8c45f679ba18\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029021648690104485, \"Height\": 0.011229767464101315, \"Left\": 0.7131107449531555, \"Top\": 0.5958470702171326}, \"Polygon\": [{\"X\": 0.7131107449531555, \"Y\": 0.5958470702171326}, {\"X\": 0.7421272993087769, \"Y\": 0.595872700214386}, {\"X\": 0.7421324253082275, \"Y\": 0.6070768237113953}, {\"X\": 0.7131147980690002, \"Y\": 0.607050895690918}]}, \"Id\": \"15775ba2-08a7-4eaa-b2ce-b8027cdeaf80\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"5a594037-bd25-482c-b3d5-763de79e4c44\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"699cc941-76b1-40d4-bce3-ea7962053ce1\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02918941341340542, \"Height\": 0.02326291613280773, \"Left\": 0.6823095679283142, \"Top\": 0.5878075957298279}, \"Polygon\": [{\"X\": 0.6823095679283142, \"Y\": 0.5878075957298279}, {\"X\": 0.7114906907081604, \"Y\": 0.5878332257270813}, {\"X\": 0.7114989757537842, \"Y\": 0.6110705137252808}, {\"X\": 0.6823157668113708, \"Y\": 0.6110443472862244}]}, \"Id\": \"5a594037-bd25-482c-b3d5-763de79e4c44\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3e4de872-8ca0-443c-b52d-86589ab4d6fd\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1628238707780838, \"Height\": 0.011916645802557468, \"Left\": 0.3700109124183655, \"Top\": 0.4361289143562317}, \"Polygon\": [{\"X\": 0.3700193762779236, \"Y\": 0.4361289143562317}, {\"X\": 0.5328347682952881, \"Y\": 0.43625447154045105}, {\"X\": 0.5328323841094971, \"Y\": 0.448045551776886}, {\"X\": 0.3700109124183655, \"Y\": 0.4479186236858368}]}, \"Id\": \"30118a65-b8d3-41bb-a702-f5cc0704c7eb\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"dc882ace-9887-4c0a-b863-0a0dd46773c3\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"cc829258-26b6-44ec-abaa-c61ce27e2525\", \"8b54f258-8d6c-4de2-bbbd-08d02452ba7c\", \"9c57a59e-853d-4175-abb7-4d49ea177397\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11875787377357483, \"Height\": 0.020539650693535805, \"Left\": 0.5717605352401733, \"Top\": 0.42754966020584106}, \"Polygon\": [{\"X\": 0.5717622637748718, \"Y\": 0.42754966020584106}, {\"X\": 0.690512478351593, \"Y\": 0.42764049768447876}, {\"X\": 0.6905184388160706, \"Y\": 0.4480893015861511}, {\"X\": 0.5717605352401733, \"Y\": 0.44799673557281494}]}, \"Id\": \"dc882ace-9887-4c0a-b863-0a0dd46773c3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8f68bcf3-06e1-42df-9f9c-171b4851d658\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 93.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0974709764122963, \"Height\": 0.011353434063494205, \"Left\": 0.6940525770187378, \"Top\": 0.10621444135904312}, \"Polygon\": [{\"X\": 0.6940525770187378, \"Y\": 0.10621444135904312}, {\"X\": 0.7915166616439819, \"Y\": 0.10626673698425293}, {\"X\": 0.7915235757827759, \"Y\": 0.11756787449121475}, {\"X\": 0.6940560340881348, \"Y\": 0.11751478910446167}]}, \"Id\": \"f5105058-26f4-4971-a188-65c695bf5e30\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"69184279-6424-40dc-8c5b-aec0aa9a5c21\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"1833b1fa-98ca-46db-b689-1cc69df0c564\", \"d00e421d-321c-4be8-9fb2-3e1aed765d22\", \"eafcb6b8-9bdb-4f71-a06d-6b453c3f00a5\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 93.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1466493457555771, \"Height\": 0.03383193910121918, \"Left\": 0.8084333539009094, \"Top\": 0.09141945838928223}, \"Polygon\": [{\"X\": 0.8084333539009094, \"Y\": 0.09141945838928223}, {\"X\": 0.9550446271896362, \"Y\": 0.09149657934904099}, {\"X\": 0.9550827145576477, \"Y\": 0.1252513974905014}, {\"X\": 0.808455765247345, \"Y\": 0.1251707524061203}]}, \"Id\": \"69184279-6424-40dc-8c5b-aec0aa9a5c21\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f276f11-4d12-40d5-b750-9a0bca924ad6\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 93.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07902029156684875, \"Height\": 0.010456424206495285, \"Left\": 0.3691316843032837, \"Top\": 0.4118506908416748}, \"Polygon\": [{\"X\": 0.369139164686203, \"Y\": 0.4118506908416748}, {\"X\": 0.44815197587013245, \"Y\": 0.4119102656841278}, {\"X\": 0.4481470584869385, \"Y\": 0.4223071038722992}, {\"X\": 0.3691316843032837, \"Y\": 0.4222469627857208}]}, \"Id\": \"e66a67ad-9d05-49b5-a581-10a913d51c5f\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c2771951-4c29-43db-ae61-f4e54cf9345c\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"d97a1134-267f-4cfe-8a76-b24711ef8b30\", \"f002ea56-af17-4cc5-91e9-dc1da08973c8\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 93.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05573729798197746, \"Height\": 0.021464558318257332, \"Left\": 0.5100918412208557, \"Top\": 0.3992173373699188}, \"Polygon\": [{\"X\": 0.5100977420806885, \"Y\": 0.3992173373699188}, {\"X\": 0.5658290982246399, \"Y\": 0.3992588520050049}, {\"X\": 0.565826952457428, \"Y\": 0.420681893825531}, {\"X\": 0.5100918412208557, \"Y\": 0.4206395447254181}]}, \"Id\": \"c2771951-4c29-43db-ae61-f4e54cf9345c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"20f4010d-2f4b-40b7-b271-a5c29e640cac\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 92.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031240956857800484, \"Height\": 0.011381980031728745, \"Left\": 0.7084512114524841, \"Top\": 0.7277785539627075}, \"Polygon\": [{\"X\": 0.7084512114524841, \"Y\": 0.7277785539627075}, {\"X\": 0.7396870851516724, \"Y\": 0.7278091311454773}, {\"X\": 0.7396921515464783, \"Y\": 0.7391605377197266}, {\"X\": 0.7084551453590393, \"Y\": 0.7391297221183777}]}, \"Id\": \"bf887bec-e97d-4b96-9817-40782ad2e883\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"954514e0-5b53-4cf7-852a-ce0b8dc87082\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ed55c395-0576-47af-ae3b-2b93a164b97a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 92.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02815168723464012, \"Height\": 0.021700186654925346, \"Left\": 0.6798022389411926, \"Top\": 0.721581757068634}, \"Polygon\": [{\"X\": 0.6798022389411926, \"Y\": 0.721581757068634}, {\"X\": 0.7079464197158813, \"Y\": 0.7216091752052307}, {\"X\": 0.707953929901123, \"Y\": 0.7432819604873657}, {\"X\": 0.6798078417778015, \"Y\": 0.7432540655136108}]}, \"Id\": \"954514e0-5b53-4cf7-852a-ce0b8dc87082\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e6cf35ff-4b9d-4e5a-a566-9e6619e16390\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 92.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.048253241926431656, \"Height\": 0.009749825112521648, \"Left\": 0.040871862322092056, \"Top\": 0.43490466475486755}, \"Polygon\": [{\"X\": 0.04088892042636871, \"Y\": 0.43490466475486755}, {\"X\": 0.08912510424852371, \"Y\": 0.434941828250885}, {\"X\": 0.08910952508449554, \"Y\": 0.4446544945240021}, {\"X\": 0.040871862322092056, \"Y\": 0.44461700320243835}]}, \"Id\": \"0420af22-4e43-4fd4-9bf0-88113a2ce880\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"ba3cf80e-0a2f-4b01-b047-ef1ac9c1d8bc\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"92fcc7a0-962d-4991-b357-9df966f72d3a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 92.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21598877012729645, \"Height\": 0.02052098885178566, \"Left\": 0.13210302591323853, \"Top\": 0.4257511496543884}, \"Polygon\": [{\"X\": 0.13213291764259338, \"Y\": 0.4257511496543884}, {\"X\": 0.3480917811393738, \"Y\": 0.4259161353111267}, {\"X\": 0.3480757474899292, \"Y\": 0.4462721347808838}, {\"X\": 0.13210302591323853, \"Y\": 0.4461040198802948}]}, \"Id\": \"ba3cf80e-0a2f-4b01-b047-ef1ac9c1d8bc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d84f85bb-3f87-4dd8-8f1d-d1fdbcd29e39\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 90.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02926292084157467, \"Height\": 0.010929709300398827, \"Left\": 0.7072864770889282, \"Top\": 0.7922682166099548}, \"Polygon\": [{\"X\": 0.7072864770889282, \"Y\": 0.7922682166099548}, {\"X\": 0.736544668674469, \"Y\": 0.7922981977462769}, {\"X\": 0.7365493774414062, \"Y\": 0.8031979203224182}, {\"X\": 0.7072902321815491, \"Y\": 0.8031677603721619}]}, \"Id\": \"bc418eb9-2bae-430e-a61e-28802fd5103e\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"43923147-c606-44ff-bd39-4fe69fa834a6\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"cb7cdd2a-8090-44f4-8a6e-f4a8762b7ee2\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 90.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029216498136520386, \"Height\": 0.021334469318389893, \"Left\": 0.676967978477478, \"Top\": 0.7860612869262695}, \"Polygon\": [{\"X\": 0.676967978477478, \"Y\": 0.7860612869262695}, {\"X\": 0.7061771750450134, \"Y\": 0.7860910892486572}, {\"X\": 0.706184446811676, \"Y\": 0.8073957562446594}, {\"X\": 0.676973283290863, \"Y\": 0.8073655366897583}]}, \"Id\": \"43923147-c606-44ff-bd39-4fe69fa834a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7a1711b1-2e81-4a68-9c88-e9110c9ce047\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 90.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029796471819281578, \"Height\": 0.011922349222004414, \"Left\": 0.7114095687866211, \"Top\": 0.661834716796875}, \"Polygon\": [{\"X\": 0.7114095687866211, \"Y\": 0.661834716796875}, {\"X\": 0.7412006258964539, \"Y\": 0.6618624925613403}, {\"X\": 0.7412059903144836, \"Y\": 0.6737570762634277}, {\"X\": 0.7114138007164001, \"Y\": 0.6737290620803833}]}, \"Id\": \"cfaad9fd-2c06-479f-89bf-95a764f05697\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"8aa7eb67-5627-4572-8de4-5f4e7c10ed7e\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"c47c6fd4-6e06-41c0-a235-dae98e1e2898\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 90.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029055340215563774, \"Height\": 0.02153708040714264, \"Left\": 0.6806519627571106, \"Top\": 0.6560925841331482}, \"Polygon\": [{\"X\": 0.6806519627571106, \"Y\": 0.6560925841331482}, {\"X\": 0.7096997499465942, \"Y\": 0.6561195254325867}, {\"X\": 0.7097073197364807, \"Y\": 0.6776296496391296}, {\"X\": 0.6806575655937195, \"Y\": 0.6776022911071777}]}, \"Id\": \"8aa7eb67-5627-4572-8de4-5f4e7c10ed7e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7b75ca4a-16cd-43b0-bcd0-2998e5ede99d\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 89.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02986069582402706, \"Height\": 0.011441193521022797, \"Left\": 0.7032284736633301, \"Top\": 0.9195502996444702}, \"Polygon\": [{\"X\": 0.7032284736633301, \"Y\": 0.9195502996444702}, {\"X\": 0.7330843210220337, \"Y\": 0.9195836186408997}, {\"X\": 0.7330891489982605, \"Y\": 0.930991530418396}, {\"X\": 0.7032322883605957, \"Y\": 0.9309579730033875}]}, \"Id\": \"5ed0d729-d57c-436e-b0fe-cc42519fd525\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"cf6dc774-6e0f-4aef-ad23-e424bc30b077\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"f5a9d541-ac19-4b24-a276-67475984ea07\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 89.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028011318296194077, \"Height\": 0.020186595618724823, \"Left\": 0.6738259792327881, \"Top\": 0.9133946299552917}, \"Polygon\": [{\"X\": 0.6738259792327881, \"Y\": 0.9133946299552917}, {\"X\": 0.7018306851387024, \"Y\": 0.9134256839752197}, {\"X\": 0.7018373012542725, \"Y\": 0.9335811734199524}, {\"X\": 0.6738307476043701, \"Y\": 0.933549702167511}]}, \"Id\": \"cf6dc774-6e0f-4aef-ad23-e424bc30b077\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5c648581-0e9a-4c83-a08f-f7633e59b33f\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 88.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0231785848736763, \"Height\": 0.011278017424046993, \"Left\": 0.8091986179351807, \"Top\": 0.5967531800270081}, \"Polygon\": [{\"X\": 0.8091986179351807, \"Y\": 0.5967531800270081}, {\"X\": 0.8323689103126526, \"Y\": 0.5967736840248108}, {\"X\": 0.8323771953582764, \"Y\": 0.608031153678894}, {\"X\": 0.8092061281204224, \"Y\": 0.608010470867157}]}, \"Id\": \"343a187f-15fa-48de-ad37-a799c82a67a8\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"128e7db7-e535-453e-a372-c8792c8fd1b9\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b50ccd03-5b2a-441e-b107-cfbbc4840365\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 88.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029511185362935066, \"Height\": 0.02158641442656517, \"Left\": 0.7791541814804077, \"Top\": 0.590158998966217}, \"Polygon\": [{\"X\": 0.7791541814804077, \"Y\": 0.590158998966217}, {\"X\": 0.8086510896682739, \"Y\": 0.5901849269866943}, {\"X\": 0.80866539478302, \"Y\": 0.6117454171180725}, {\"X\": 0.7791665196418762, \"Y\": 0.6117189526557922}]}, \"Id\": \"128e7db7-e535-453e-a372-c8792c8fd1b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8c45f8ef-a64c-438f-b33f-43fc6e64556c\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 84.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023271432146430016, \"Height\": 0.011933248490095139, \"Left\": 0.7980472445487976, \"Top\": 0.9214081168174744}, \"Polygon\": [{\"X\": 0.7980472445487976, \"Y\": 0.9214081168174744}, {\"X\": 0.82131028175354, \"Y\": 0.9214340448379517}, {\"X\": 0.8213186264038086, \"Y\": 0.9333413243293762}, {\"X\": 0.7980547547340393, \"Y\": 0.9333151578903198}]}, \"Id\": \"cee92da3-b87d-4ede-b583-202b233200f0\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"11f556ef-c6ea-497d-af1b-c2bdb9aa9456\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ab0415a6-2c99-404e-b080-79ad73d2ea45\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 84.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02843451499938965, \"Height\": 0.022199708968400955, \"Left\": 0.7685098052024841, \"Top\": 0.9141806364059448}, \"Polygon\": [{\"X\": 0.7685098052024841, \"Y\": 0.9141806364059448}, {\"X\": 0.7969304323196411, \"Y\": 0.9142122268676758}, {\"X\": 0.7969443202018738, \"Y\": 0.9363803863525391}, {\"X\": 0.7685217261314392, \"Y\": 0.9363483786582947}]}, \"Id\": \"11f556ef-c6ea-497d-af1b-c2bdb9aa9456\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c6d15a1c-bc44-45f8-9bd1-0db90c2a3114\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 83.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022322053089737892, \"Height\": 0.010845822282135487, \"Left\": 0.8004614114761353, \"Top\": 0.8577622771263123}, \"Polygon\": [{\"X\": 0.8004614114761353, \"Y\": 0.8577622771263123}, {\"X\": 0.8227758407592773, \"Y\": 0.8577861785888672}, {\"X\": 0.8227834701538086, \"Y\": 0.8686081171035767}, {\"X\": 0.8004683256149292, \"Y\": 0.8685840368270874}]}, \"Id\": \"20b4944e-52f4-4dd4-9ba4-1883fac43c27\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"92b0522c-738a-4148-87d9-545f241946ff\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"250661fa-a762-494a-acea-7c9d2c138273\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 83.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028705427423119545, \"Height\": 0.021960388869047165, \"Left\": 0.7702464461326599, \"Top\": 0.8508838415145874}, \"Polygon\": [{\"X\": 0.7702464461326599, \"Y\": 0.8508838415145874}, {\"X\": 0.798937976360321, \"Y\": 0.8509144186973572}, {\"X\": 0.7989518642425537, \"Y\": 0.8728442192077637}, {\"X\": 0.770258367061615, \"Y\": 0.8728132247924805}]}, \"Id\": \"92b0522c-738a-4148-87d9-545f241946ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a94942d0-31ef-4042-b0d8-b315364c39e1\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 82.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021089624613523483, \"Height\": 0.011071618646383286, \"Left\": 0.8033063411712646, \"Top\": 0.7929528951644897}, \"Polygon\": [{\"X\": 0.8033063411712646, \"Y\": 0.7929528951644897}, {\"X\": 0.8243880867958069, \"Y\": 0.7929744720458984}, {\"X\": 0.824396014213562, \"Y\": 0.8040245175361633}, {\"X\": 0.8033134937286377, \"Y\": 0.8040027022361755}]}, \"Id\": \"0a6885a8-aaae-428d-a62b-af5b029025a2\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"fac7422e-7453-4494-a353-2a8665c672f4\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ab01b2e3-1112-42c6-a86b-ed6266307bb1\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 82.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02909082919359207, \"Height\": 0.023100683465600014, \"Left\": 0.7725280523300171, \"Top\": 0.7858940362930298}, \"Polygon\": [{\"X\": 0.7725280523300171, \"Y\": 0.7858940362930298}, {\"X\": 0.8016040921211243, \"Y\": 0.7859236598014832}, {\"X\": 0.8016188740730286, \"Y\": 0.808994710445404}, {\"X\": 0.7725407481193542, \"Y\": 0.8089645504951477}]}, \"Id\": \"fac7422e-7453-4494-a353-2a8665c672f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6fcc68f8-c731-4b18-8324-70375a4367df\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 81.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06770171225070953, \"Height\": 0.01259851735085249, \"Left\": 0.1655588001012802, \"Top\": 0.2227512151002884}, \"Polygon\": [{\"X\": 0.16557593643665314, \"Y\": 0.2227512151002884}, {\"X\": 0.23326051235198975, \"Y\": 0.22279316186904907}, {\"X\": 0.2332460731267929, \"Y\": 0.23534974455833435}, {\"X\": 0.1655588001012802, \"Y\": 0.23530718684196472}]}, \"Id\": \"2c765143-a4a9-4930-ab45-1d14bdfc179e\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1318447e-fc78-43a0-b498-d67b06264ce5\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"818df281-6c22-4bd2-8a48-6c8653be9d22\", \"34cabc92-7a7a-4639-8e3f-273962d5cb94\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 81.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1178973913192749, \"Height\": 0.024297958239912987, \"Left\": 0.2613774240016937, \"Top\": 0.20855329930782318}, \"Polygon\": [{\"X\": 0.2614031434059143, \"Y\": 0.20855329930782318}, {\"X\": 0.37927481532096863, \"Y\": 0.20862513780593872}, {\"X\": 0.3792581260204315, \"Y\": 0.23285125195980072}, {\"X\": 0.2613774240016937, \"Y\": 0.23277737200260162}]}, \"Id\": \"1318447e-fc78-43a0-b498-d67b06264ce5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a87ed8fc-7d7b-41c9-a95e-e775efd6c43c\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 79.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02193179912865162, \"Height\": 0.010924050584435463, \"Left\": 0.805571436882019, \"Top\": 0.7286275625228882}, \"Polygon\": [{\"X\": 0.805571436882019, \"Y\": 0.7286275625228882}, {\"X\": 0.8274953365325928, \"Y\": 0.7286490201950073}, {\"X\": 0.8275032639503479, \"Y\": 0.7395516037940979}, {\"X\": 0.8055785894393921, \"Y\": 0.7395299673080444}]}, \"Id\": \"4de76095-8c7f-4750-bf6c-173ebd8180ea\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1b7f51e1-e7c2-4939-a0b3-76c411811bdd\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"4f5eb4aa-673c-44e4-8429-b5b5ed9ab477\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 79.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02891470678150654, \"Height\": 0.022698186337947845, \"Left\": 0.7762812972068787, \"Top\": 0.7215499877929688}, \"Polygon\": [{\"X\": 0.7762812972068787, \"Y\": 0.7215499877929688}, {\"X\": 0.8051812052726746, \"Y\": 0.7215781211853027}, {\"X\": 0.8051959872245789, \"Y\": 0.7442481517791748}, {\"X\": 0.7762939929962158, \"Y\": 0.7442195415496826}]}, \"Id\": \"1b7f51e1-e7c2-4939-a0b3-76c411811bdd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c8f7abfc-51fd-42af-8b11-9fd71fc1c20f\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 75.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023715950548648834, \"Height\": 0.011407204903662205, \"Left\": 0.8065912127494812, \"Top\": 0.662641704082489}, \"Polygon\": [{\"X\": 0.8065912127494812, \"Y\": 0.662641704082489}, {\"X\": 0.8302987813949585, \"Y\": 0.6626638174057007}, {\"X\": 0.830307126045227, \"Y\": 0.674048900604248}, {\"X\": 0.8065986633300781, \"Y\": 0.674026608467102}]}, \"Id\": \"7fe40d57-94cd-4ad8-b955-92917b7b8c98\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"cfa5960b-2f6d-4835-960c-19555333ac4c\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"82913d2e-680d-48de-b5ee-e686c5d2d47b\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 75.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028986342251300812, \"Height\": 0.02450803853571415, \"Left\": 0.7776204943656921, \"Top\": 0.6551049947738647}, \"Polygon\": [{\"X\": 0.7776204943656921, \"Y\": 0.6551049947738647}, {\"X\": 0.8065907955169678, \"Y\": 0.6551318168640137}, {\"X\": 0.8066068887710571, \"Y\": 0.6796130537986755}, {\"X\": 0.7776343822479248, \"Y\": 0.6795856952667236}]}, \"Id\": \"cfa5960b-2f6d-4835-960c-19555333ac4c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1b02b641-e3a6-40fc-90e1-0a2a6bdcfdbc\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 72.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031035542488098145, \"Height\": 0.011667786166071892, \"Left\": 0.7035868763923645, \"Top\": 0.8555267453193665}, \"Polygon\": [{\"X\": 0.7035868763923645, \"Y\": 0.8555267453193665}, {\"X\": 0.7346174120903015, \"Y\": 0.8555599451065063}, {\"X\": 0.7346224188804626, \"Y\": 0.8671945333480835}, {\"X\": 0.7035907506942749, \"Y\": 0.8671610951423645}]}, \"Id\": \"4daca14f-14e4-4750-8c4f-7d2b5ee16e3c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e433b7fa-7096-4591-b8b5-df3f19a0045b\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b1810cf4-43e7-46a4-9224-9bd3f257e073\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 72.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028458401560783386, \"Height\": 0.025091737508773804, \"Left\": 0.6755255460739136, \"Top\": 0.8472882509231567}, \"Polygon\": [{\"X\": 0.6755255460739136, \"Y\": 0.8472882509231567}, {\"X\": 0.7039755582809448, \"Y\": 0.8473184704780579}, {\"X\": 0.7039839625358582, \"Y\": 0.8723799586296082}, {\"X\": 0.6755316853523254, \"Y\": 0.872349202632904}]}, \"Id\": \"e433b7fa-7096-4591-b8b5-df3f19a0045b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63a9ff73-7104-4713-922e-d00e7b4d9097\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"6cda6dcb-3b95-4851-8147-729392d0603c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e28b09c2-d63c-466a-b7de-afb1205bbeed\", \"ace9db6b-a66a-4a82-9fc9-474f027a7b4c\", \"0349e1e1-f8ca-4c37-be41-fe903c05e5c2\", \"7f6c60ab-94fc-4005-b15f-f7738711c468\", \"0e368909-ee03-45db-9109-0a98561aa4c7\", \"e8df9f28-9a04-4cd8-8495-341d147ab6ab\", \"f4b30069-db75-4e87-9e78-4ffeb4dab957\", \"88504ae4-1ae2-4818-8c04-6c619bec9e41\", \"7fca861b-926e-4946-9781-b3cc9043963c\", \"5a42e6a2-9087-4272-870a-5e765236f59f\", \"8ef66e02-0165-4e70-aa79-d97b6e9acded\", \"3dadb31d-4683-4882-af8e-fe9b84a8f5d0\", \"a67a8a08-a27a-4dc4-9a4a-a1b973e30d07\", \"26401cfd-443f-4541-8aa5-b170c2c275fc\", \"c436dd7c-56ca-47c8-abcc-1b8e8186d5ba\", \"35851ddf-6d59-473f-bbec-146b20f02b9e\", \"d0cedce7-ecbd-43c1-b2fe-7b4078997a4d\", \"aa07987b-5766-4d54-9fb9-2bfaaa701dea\", \"9beae630-ee23-4dbe-ac56-5bef6d1009c9\", \"1dffbc57-e638-4a82-911f-ea840ad3dffb\", \"8e37baff-5927-4b8d-a5ab-41341bc39a5b\", \"45bf2712-e924-41f4-948a-844e0d390fe6\", \"ec417879-8107-4081-ab68-d699192fe402\", \"f535ed4e-4a5b-45b9-9197-053f1f6153ab\", \"f168c7bf-bef4-465f-b7b3-1fb03d82d72e\", \"164a2809-1589-49a3-9b30-618a37e41702\", \"4137b8d9-d160-41b3-8c81-cc20fd13577b\", \"b278fc3e-4556-41b8-831e-bd3f271ecf21\", \"2ffd5bca-d24f-4caa-9d4a-c0f80daa2c85\", \"068e3ebb-1685-4552-ac92-252e0368f27c\", \"c661faef-ab87-4b74-a9a7-db8655d7be4d\", \"a7829810-1f72-497c-a5d9-a59a0bf76f98\", \"f2749b18-d331-4097-bc52-95dfb3af959a\", \"5161c104-c602-4dc1-9b81-3b6854604eed\", \"f31dcaa7-2dfe-46e0-8f49-3d890ef31f1d\", \"50dd34d7-f58c-43a9-8888-53aa817a7030\", \"0fa1bb34-907d-4bf0-beda-89eff6f0e88f\", \"8223578c-4fc4-4dea-acb6-5573e041daca\", \"c91c4c24-8a87-45b9-866a-e27ac81b0317\", \"a05e3e15-4e98-4457-922d-3423da300431\", \"b84ce039-4070-4cb2-9b9a-e2eebb4de445\", \"e98e06c6-ca68-445c-b590-0e2135652754\", \"c64af276-6fa6-4120-9420-09861e984c0a\", \"5863e9bd-3f59-49d3-b229-c20ad1483a1b\", \"7b9517a2-342d-42b7-aec9-e45d3ce9c72f\", \"f4c42109-76e6-45dd-a2ee-9cf26b93f3cb\", \"ddfefa61-491d-406c-ae61-939bac45823f\", \"60e91f6e-3fcc-4ef5-9b22-051a54226f7d\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.89938354492188, \"Text\": \"Employment Application\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2826159596443176, \"Height\": 0.024003926664590836, \"Left\": 0.28293946385383606, \"Top\": 0.24643567204475403}, \"Polygon\": [{\"X\": 0.28293946385383606, \"Y\": 0.24643567204475403}, {\"X\": 0.5655554533004761, \"Y\": 0.24643567204475403}, {\"X\": 0.5655554533004761, \"Y\": 0.27043959498405457}, {\"X\": 0.28293946385383606, \"Y\": 0.27043959498405457}]}, \"Id\": \"e28b09c2-d63c-466a-b7de-afb1205bbeed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"407ab76e-7218-45c4-9892-5b15fdb23e88\", \"6a416f30-9006-48d3-a21b-b26f369c1698\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77529907226562, \"Text\": \"Application Information\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.16623108088970184, \"Height\": 0.012997680343687534, \"Left\": 0.06741708517074585, \"Top\": 0.2855413556098938}, \"Polygon\": [{\"X\": 0.06741708517074585, \"Y\": 0.2855413556098938}, {\"X\": 0.2336481660604477, \"Y\": 0.2855413556098938}, {\"X\": 0.2336481660604477, \"Y\": 0.29853904247283936}, {\"X\": 0.06741708517074585, \"Y\": 0.29853904247283936}]}, \"Id\": \"ace9db6b-a66a-4a82-9fc9-474f027a7b4c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92894371-6d63-4896-aad8-05d4eb8defff\", \"7cfef701-7c99-4031-8003-d27614a83ea1\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.89916229248047, \"Text\": \"Full Name: Jane Doe\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1400921642780304, \"Height\": 0.010588155128061771, \"Left\": 0.06632918119430542, \"Top\": 0.3109099864959717}, \"Polygon\": [{\"X\": 0.06632918119430542, \"Y\": 0.3109099864959717}, {\"X\": 0.20642134547233582, \"Y\": 0.3109099864959717}, {\"X\": 0.20642134547233582, \"Y\": 0.3214981257915497}, {\"X\": 0.06632918119430542, \"Y\": 0.3214981257915497}]}, \"Id\": \"0349e1e1-f8ca-4c37-be41-fe903c05e5c2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"016c9452-9bdf-4b8c-ada1-bf91f851b4c0\", \"3186a445-fc48-4824-8282-32eb90befb24\", \"ade337b8-010a-4feb-800c-aa65d05150b0\", \"f04a0358-67f5-4b11-a017-e688f8ad486c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69424438476562, \"Text\": \"Phone Number: 555-0100\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2609323561191559, \"Height\": 0.01714961789548397, \"Left\": 0.06438259780406952, \"Top\": 0.3336704969406128}, \"Polygon\": [{\"X\": 0.06438259780406952, \"Y\": 0.3336704969406128}, {\"X\": 0.3253149688243866, \"Y\": 0.3336704969406128}, {\"X\": 0.3253149688243866, \"Y\": 0.3508200943470001}, {\"X\": 0.06438259780406952, \"Y\": 0.3508200943470001}]}, \"Id\": \"7f6c60ab-94fc-4005-b15f-f7738711c468\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3834594c-6055-4bb0-b39e-aa4b3afdf69a\", \"77232435-5698-475e-9b92-084f9dd2f268\", \"e5f86e5b-1312-4956-b4e2-0f3ca2e1de84\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 94.3543701171875, \"Text\": \"Home Address: 23 Any Street, Any Town. USA\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.6245142221450806, \"Height\": 0.027257079258561134, \"Left\": 0.06233425438404083, \"Top\": 0.35547590255737305}, \"Polygon\": [{\"X\": 0.06233425438404083, \"Y\": 0.35547590255737305}, {\"X\": 0.6868484616279602, \"Y\": 0.35547590255737305}, {\"X\": 0.6868484616279602, \"Y\": 0.38273298740386963}, {\"X\": 0.06233425438404083, \"Y\": 0.38273298740386963}]}, \"Id\": \"0e368909-ee03-45db-9109-0a98561aa4c7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f2d0be9d-06ad-480e-9638-f4e271250e66\", \"37397041-ec93-4c6f-a93c-ede49a391a44\", \"12af6e62-448a-42e3-bfe7-d67c594c7d08\", \"4c68c247-8205-4067-928a-3dd976b10401\", \"78123da2-5805-46aa-9337-772d9fbf790c\", \"3aaacfcc-d784-4ba5-b08e-d20cdaddc1ef\", \"0521443a-df22-495e-b2b0-004f01ecc329\", \"65e66ebd-81b1-4b0b-91e2-7ef6e3a49a81\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90184020996094, \"Text\": \"Mailing Address: same as above\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22285698354244232, \"Height\": 0.013425374403595924, \"Left\": 0.05979505553841591, \"Top\": 0.3872509300708771}, \"Polygon\": [{\"X\": 0.05979505553841591, \"Y\": 0.3872509300708771}, {\"X\": 0.2826520502567291, \"Y\": 0.3872509300708771}, {\"X\": 0.2826520502567291, \"Y\": 0.40067631006240845}, {\"X\": 0.05979505553841591, \"Y\": 0.40067631006240845}]}, \"Id\": \"e8df9f28-9a04-4cd8-8495-341d147ab6ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dc60317c-0c38-4001-822c-ff92d3107b4b\", \"fb94be2b-edd3-45cd-865d-f3ebe863d3ab\", \"2459e6de-4cf4-4935-8c4e-80613f171e30\", \"e5a3b3c3-1a1a-44f6-a58b-583da40de8e5\", \"a8789885-622c-4ce6-a3d2-b187ec2f168b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.92241668701172, \"Text\": \"How did you hear about this position?\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2959403693675995, \"Height\": 0.01209187787026167, \"Left\": 0.054418496787548065, \"Top\": 0.41677430272102356}, \"Polygon\": [{\"X\": 0.054418496787548065, \"Y\": 0.41677430272102356}, {\"X\": 0.35035887360572815, \"Y\": 0.41677430272102356}, {\"X\": 0.35035887360572815, \"Y\": 0.4288661777973175}, {\"X\": 0.054418496787548065, \"Y\": 0.4288661777973175}]}, \"Id\": \"f4b30069-db75-4e87-9e78-4ffeb4dab957\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"acc72c9a-9541-4162-9845-9f8bbb300cea\", \"ad86cbee-b810-48d3-8cbf-1ba220743a44\", \"93d6c146-e013-42b5-bcc1-1801d61b78f5\", \"b369a703-9c5a-451f-b48a-32fdcd028dd6\", \"969235f5-d4ab-4190-bd1a-be8678f8e7b4\", \"b4f67556-ef01-4331-96e9-547711e902b5\", \"ee698df4-049c-422c-ada4-b5837fb6f6cd\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.535888671875, \"Text\": \"Job fair\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05250946804881096, \"Height\": 0.010002074763178825, \"Left\": 0.07518339902162552, \"Top\": 0.4318697154521942}, \"Polygon\": [{\"X\": 0.07518339902162552, \"Y\": 0.4318697154521942}, {\"X\": 0.12769286334514618, \"Y\": 0.4318697154521942}, {\"X\": 0.12769286334514618, \"Y\": 0.4418717920780182}, {\"X\": 0.07518339902162552, \"Y\": 0.4418717920780182}]}, \"Id\": \"88504ae4-1ae2-4818-8c04-6c619bec9e41\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc49eee9-2cde-4d9b-b3de-d123ed8a5807\", \"09cb9a7c-f9ec-4d7f-8e9b-ccb2bc053115\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45018005371094, \"Text\": \"Website\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056137438863515854, \"Height\": 0.009969360195100307, \"Left\": 0.17518146336078644, \"Top\": 0.431873083114624}, \"Polygon\": [{\"X\": 0.17518146336078644, \"Y\": 0.431873083114624}, {\"X\": 0.2313188910484314, \"Y\": 0.431873083114624}, {\"X\": 0.2313188910484314, \"Y\": 0.4418424367904663}, {\"X\": 0.17518146336078644, \"Y\": 0.4418424367904663}]}, \"Id\": \"7fca861b-926e-4946-9781-b3cc9043963c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9f23b1f0-68b6-4e7c-a475-e45a0da95706\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90560150146484, \"Text\": \"Company Employee\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13777264952659607, \"Height\": 0.012008992955088615, \"Left\": 0.2760646641254425, \"Top\": 0.4319824278354645}, \"Polygon\": [{\"X\": 0.2760646641254425, \"Y\": 0.4319824278354645}, {\"X\": 0.4138373136520386, \"Y\": 0.4319824278354645}, {\"X\": 0.4138373136520386, \"Y\": 0.44399142265319824}, {\"X\": 0.2760646641254425, \"Y\": 0.44399142265319824}]}, \"Id\": \"5a42e6a2-9087-4272-870a-5e765236f59f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c37eb033-3d56-4662-8e8d-e31577733cf1\", \"ac0124b3-553d-4684-998e-1d123eb2ebbe\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48009490966797, \"Text\": \"Previous Employment History\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.267627477645874, \"Height\": 0.01669364422559738, \"Left\": 0.30107200145721436, \"Top\": 0.4639487564563751}, \"Polygon\": [{\"X\": 0.30107200145721436, \"Y\": 0.4639487564563751}, {\"X\": 0.5686994791030884, \"Y\": 0.4639487564563751}, {\"X\": 0.5686994791030884, \"Y\": 0.4806424081325531}, {\"X\": 0.30107200145721436, \"Y\": 0.4806424081325531}]}, \"Id\": \"8ef66e02-0165-4e70-aa79-d97b6e9acded\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"219e5091-fcd2-4490-b47c-95abb2d5f8c4\", \"1044356e-4364-42a3-bc7c-2d77a6dae191\", \"53e8fcc6-d2a3-40a9-96c6-6ead8c482f22\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61263275146484, \"Text\": \"Start Date\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06759324669837952, \"Height\": 0.01080423966050148, \"Left\": 0.06723197549581528, \"Top\": 0.49517691135406494}, \"Polygon\": [{\"X\": 0.06723197549581528, \"Y\": 0.49517691135406494}, {\"X\": 0.1348252296447754, \"Y\": 0.49517691135406494}, {\"X\": 0.1348252296447754, \"Y\": 0.5059811472892761}, {\"X\": 0.06723197549581528, \"Y\": 0.5059811472892761}]}, \"Id\": \"3dadb31d-4683-4882-af8e-fe9b84a8f5d0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a27b2f43-8b83-4a7f-a3cb-4b86c9697d81\", \"ca995f3a-59bb-4b38-81fa-ebe205456752\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82225036621094, \"Text\": \"End Date\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06138157844543457, \"Height\": 0.011265299282968044, \"Left\": 0.16083410382270813, \"Top\": 0.4951501786708832}, \"Polygon\": [{\"X\": 0.16083410382270813, \"Y\": 0.4951501786708832}, {\"X\": 0.2222156822681427, \"Y\": 0.4951501786708832}, {\"X\": 0.2222156822681427, \"Y\": 0.5064154863357544}, {\"X\": 0.16083410382270813, \"Y\": 0.5064154863357544}]}, \"Id\": \"a67a8a08-a27a-4dc4-9a4a-a1b973e30d07\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fd374d6d-ba87-4f89-8b87-0d069b24da31\", \"647076fd-8b0e-421f-b048-72805b18559b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91061401367188, \"Text\": \"Employer Name\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10950829088687897, \"Height\": 0.013528360985219479, \"Left\": 0.2555682957172394, \"Top\": 0.4957641065120697}, \"Polygon\": [{\"X\": 0.2555682957172394, \"Y\": 0.4957641065120697}, {\"X\": 0.36507657170295715, \"Y\": 0.4957641065120697}, {\"X\": 0.36507657170295715, \"Y\": 0.509292483329773}, {\"X\": 0.2555682957172394, \"Y\": 0.509292483329773}]}, \"Id\": \"26401cfd-443f-4541-8aa5-b170c2c275fc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e928351a-90e9-4aef-9d5d-64d7e2b80fbb\", \"42dfa6e0-d91c-4f99-aec0-ebd9f10580a8\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78668975830078, \"Text\": \"Position Held\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09255825728178024, \"Height\": 0.011511921882629395, \"Left\": 0.44755348563194275, \"Top\": 0.496025949716568}, \"Polygon\": [{\"X\": 0.44755348563194275, \"Y\": 0.496025949716568}, {\"X\": 0.5401117205619812, \"Y\": 0.496025949716568}, {\"X\": 0.5401117205619812, \"Y\": 0.5075379014015198}, {\"X\": 0.44755348563194275, \"Y\": 0.5075379014015198}]}, \"Id\": \"c436dd7c-56ca-47c8-abcc-1b8e8186d5ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c78fd65-027d-44dd-a7a1-6d954ee1022f\", \"d0c76458-1452-4795-8fe1-55ba4fbc8cf4\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.94792938232422, \"Text\": \"Reason for leaving\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13483624160289764, \"Height\": 0.013902058824896812, \"Left\": 0.6462403535842896, \"Top\": 0.49486204981803894}, \"Polygon\": [{\"X\": 0.6462403535842896, \"Y\": 0.49486204981803894}, {\"X\": 0.7810766100883484, \"Y\": 0.49486204981803894}, {\"X\": 0.7810766100883484, \"Y\": 0.5087641477584839}, {\"X\": 0.6462403535842896, \"Y\": 0.5087641477584839}]}, \"Id\": \"35851ddf-6d59-473f-bbec-146b20f02b9e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c877bc5-4500-40dc-ad7a-02304b7fe847\", \"92807fa8-92e7-4815-8e0d-bddd089553fb\", \"52c74858-2790-47b6-af03-0265307a9165\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87957763671875, \"Text\": \"1/15/2009\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07113062590360641, \"Height\": 0.012933594174683094, \"Left\": 0.06534477323293686, \"Top\": 0.5219505429267883}, \"Polygon\": [{\"X\": 0.06534477323293686, \"Y\": 0.5219505429267883}, {\"X\": 0.13647539913654327, \"Y\": 0.5219505429267883}, {\"X\": 0.13647539913654327, \"Y\": 0.5348841547966003}, {\"X\": 0.06534477323293686, \"Y\": 0.5348841547966003}]}, \"Id\": \"d0cedce7-ecbd-43c1-b2fe-7b4078997a4d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"798f6998-6e9b-4be1-bb43-328d6696a8c5\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83549499511719, \"Text\": \"6/30/2011\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07189647853374481, \"Height\": 0.013411092571914196, \"Left\": 0.15897905826568604, \"Top\": 0.5222000479698181}, \"Polygon\": [{\"X\": 0.15897905826568604, \"Y\": 0.5222000479698181}, {\"X\": 0.23087553679943085, \"Y\": 0.5222000479698181}, {\"X\": 0.23087553679943085, \"Y\": 0.5356111526489258}, {\"X\": 0.15897905826568604, \"Y\": 0.5356111526489258}]}, \"Id\": \"aa07987b-5766-4d54-9fb9-2bfaaa701dea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"466f641f-abae-45bb-98e4-1cac1e6a6189\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91352081298828, \"Text\": \"Any Company\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09623682498931885, \"Height\": 0.013002929277718067, \"Left\": 0.25399842858314514, \"Top\": 0.5240710973739624}, \"Polygon\": [{\"X\": 0.25399842858314514, \"Y\": 0.5240710973739624}, {\"X\": 0.350235253572464, \"Y\": 0.5240710973739624}, {\"X\": 0.350235253572464, \"Y\": 0.5370740294456482}, {\"X\": 0.25399842858314514, \"Y\": 0.5370740294456482}]}, \"Id\": \"9beae630-ee23-4dbe-ac56-5bef6d1009c9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6137fcde-ab0c-474a-b931-2f0aaa5635cf\", \"f9e5b2f4-4402-4796-8d3c-0241411cc54c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.55911254882812, \"Text\": \"Assistant baker\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10781752318143845, \"Height\": 0.011165852658450603, \"Left\": 0.4464295208454132, \"Top\": 0.524320662021637}, \"Polygon\": [{\"X\": 0.4464295208454132, \"Y\": 0.524320662021637}, {\"X\": 0.5542470216751099, \"Y\": 0.524320662021637}, {\"X\": 0.5542470216751099, \"Y\": 0.5354865193367004}, {\"X\": 0.4464295208454132, \"Y\": 0.5354865193367004}]}, \"Id\": \"1dffbc57-e638-4a82-911f-ea840ad3dffb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00a0fd33-2974-452b-b823-a3072359cb0e\", \"a65e095c-023f-4014-8b46-c51275f18b28\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.94439697265625, \"Text\": \"relocated\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07095213234424591, \"Height\": 0.011498779058456421, \"Left\": 0.6456542611122131, \"Top\": 0.5236824750900269}, \"Polygon\": [{\"X\": 0.6456542611122131, \"Y\": 0.5236824750900269}, {\"X\": 0.7166063785552979, \"Y\": 0.5236824750900269}, {\"X\": 0.7166063785552979, \"Y\": 0.5351812243461609}, {\"X\": 0.6456542611122131, \"Y\": 0.5351812243461609}]}, \"Id\": \"8e37baff-5927-4b8d-a5ab-41341bc39a5b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a47c68e1-6735-4938-bc1e-a2aff43e7535\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36653900146484, \"Text\": \"7/1/2011\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08009123057126999, \"Height\": 0.02423006109893322, \"Left\": 0.06158771738409996, \"Top\": 0.5494148135185242}, \"Polygon\": [{\"X\": 0.06158771738409996, \"Y\": 0.5494148135185242}, {\"X\": 0.14167894423007965, \"Y\": 0.5494148135185242}, {\"X\": 0.14167894423007965, \"Y\": 0.5736448764801025}, {\"X\": 0.06158771738409996, \"Y\": 0.5736448764801025}]}, \"Id\": \"45bf2712-e924-41f4-948a-844e0d390fe6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28a650f3-b271-4b83-b41e-b381f7f77a30\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36431884765625, \"Text\": \"8/10/2013\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08818941563367844, \"Height\": 0.02185172587633133, \"Left\": 0.1528608202934265, \"Top\": 0.5515884757041931}, \"Polygon\": [{\"X\": 0.1528608202934265, \"Y\": 0.5515884757041931}, {\"X\": 0.24105024337768555, \"Y\": 0.5515884757041931}, {\"X\": 0.24105024337768555, \"Y\": 0.5734401941299438}, {\"X\": 0.1528608202934265, \"Y\": 0.5734401941299438}]}, \"Id\": \"ec417879-8107-4081-ab68-d699192fe402\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"434e78da-d8c4-472f-8617-8438bb4e8b83\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2275390625, \"Text\": \"Example Corp.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1719619780778885, \"Height\": 0.019455770030617714, \"Left\": 0.25763750076293945, \"Top\": 0.5565370917320251}, \"Polygon\": [{\"X\": 0.25763750076293945, \"Y\": 0.5565370917320251}, {\"X\": 0.42959946393966675, \"Y\": 0.5565370917320251}, {\"X\": 0.42959946393966675, \"Y\": 0.5759928822517395}, {\"X\": 0.25763750076293945, \"Y\": 0.5759928822517395}]}, \"Id\": \"f535ed4e-4a5b-45b9-9197-053f1f6153ab\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"09ac1f6e-56ef-466e-9d7e-05b25e566e3b\", \"206e8e5e-e000-41e9-8b25-69cd751fcaeb\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36492156982422, \"Text\": \"Baker\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08058762550354004, \"Height\": 0.019884847104549408, \"Left\": 0.4558902680873871, \"Top\": 0.5547757148742676}, \"Polygon\": [{\"X\": 0.4558902680873871, \"Y\": 0.5547757148742676}, {\"X\": 0.5364779233932495, \"Y\": 0.5547757148742676}, {\"X\": 0.5364779233932495, \"Y\": 0.5746605396270752}, {\"X\": 0.4558902680873871, \"Y\": 0.5746605396270752}]}, \"Id\": \"f168c7bf-bef4-465f-b7b3-1fb03d82d72e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8651f63e-1bb1-4c1a-9310-7c025fe42dc7\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.0782241821289, \"Text\": \"better opp.\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15430614352226257, \"Height\": 0.023726562038064003, \"Left\": 0.6461215615272522, \"Top\": 0.5561286807060242}, \"Polygon\": [{\"X\": 0.6461215615272522, \"Y\": 0.5561286807060242}, {\"X\": 0.8004276752471924, \"Y\": 0.5561286807060242}, {\"X\": 0.8004276752471924, \"Y\": 0.57985520362854}, {\"X\": 0.6461215615272522, \"Y\": 0.57985520362854}]}, \"Id\": \"164a2809-1589-49a3-9b30-618a37e41702\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5461759-db5b-436e-a45a-a19bf23a40a4\", \"09b82405-d5b9-48aa-b9ef-d57f8851fd39\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3418960571289, \"Text\": \"8/15/2013\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08318162709474564, \"Height\": 0.0189567469060421, \"Left\": 0.06209268048405647, \"Top\": 0.5786384344100952}, \"Polygon\": [{\"X\": 0.06209268048405647, \"Y\": 0.5786384344100952}, {\"X\": 0.1452743113040924, \"Y\": 0.5786384344100952}, {\"X\": 0.1452743113040924, \"Y\": 0.5975951552391052}, {\"X\": 0.06209268048405647, \"Y\": 0.5975951552391052}]}, \"Id\": \"4137b8d9-d160-41b3-8c81-cc20fd13577b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"03c6e5c0-3f95-4a3a-a376-56e14ee6c4d2\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36683654785156, \"Text\": \"Present\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08261171728372574, \"Height\": 0.023316243663430214, \"Left\": 0.15422317385673523, \"Top\": 0.5759676694869995}, \"Polygon\": [{\"X\": 0.15422317385673523, \"Y\": 0.5759676694869995}, {\"X\": 0.23683488368988037, \"Y\": 0.5759676694869995}, {\"X\": 0.23683488368988037, \"Y\": 0.5992838740348816}, {\"X\": 0.15422317385673523, \"Y\": 0.5992838740348816}]}, \"Id\": \"b278fc3e-4556-41b8-831e-bd3f271ecf21\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c240f32-0efd-4e1c-8572-0f8eed6acffc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.28512573242188, \"Text\": \"AnyCompany\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1553463488817215, \"Height\": 0.028609294444322586, \"Left\": 0.25068095326423645, \"Top\": 0.5816634893417358}, \"Polygon\": [{\"X\": 0.25068095326423645, \"Y\": 0.5816634893417358}, {\"X\": 0.40602728724479675, \"Y\": 0.5816634893417358}, {\"X\": 0.40602728724479675, \"Y\": 0.6102727651596069}, {\"X\": 0.25068095326423645, \"Y\": 0.6102727651596069}]}, \"Id\": \"2ffd5bca-d24f-4caa-9d4a-c0f80daa2c85\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c8463e8-8d70-4d8d-a9a5-c5c5131a13ef\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36585235595703, \"Text\": \"head baker\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15683655440807343, \"Height\": 0.019082723185420036, \"Left\": 0.44272300601005554, \"Top\": 0.5821704864501953}, \"Polygon\": [{\"X\": 0.44272300601005554, \"Y\": 0.5821704864501953}, {\"X\": 0.5995595455169678, \"Y\": 0.5821704864501953}, {\"X\": 0.5995595455169678, \"Y\": 0.6012532114982605}, {\"X\": 0.44272300601005554, \"Y\": 0.6012532114982605}]}, \"Id\": \"068e3ebb-1685-4552-ac92-252e0368f27c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a3711c13-80b8-4072-9eb3-1ca535f3fe2d\", \"ea6311e1-e56d-4180-817a-ef96d2cdc74e\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.09893035888672, \"Text\": \"N/A, current\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.183373361825943, \"Height\": 0.02197928912937641, \"Left\": 0.6456658840179443, \"Top\": 0.5830053091049194}, \"Polygon\": [{\"X\": 0.6456658840179443, \"Y\": 0.5830053091049194}, {\"X\": 0.8290392756462097, \"Y\": 0.5830053091049194}, {\"X\": 0.8290392756462097, \"Y\": 0.6049845814704895}, {\"X\": 0.6456658840179443, \"Y\": 0.6049845814704895}]}, \"Id\": \"c661faef-ab87-4b74-a9a7-db8655d7be4d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b549a727-75a4-45ca-adc7-9c235671fe23\", \"95fa8c10-c509-4897-887d-451e54b8e4ef\"]}], \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93791198730469, \"Text\": \"Employment\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14520974457263947, \"Height\": 0.021820068359375, \"Left\": 0.28293946385383606, \"Top\": 0.24861952662467957}, \"Polygon\": [{\"X\": 0.28293946385383606, \"Y\": 0.24861952662467957}, {\"X\": 0.4281492233276367, \"Y\": 0.24861952662467957}, {\"X\": 0.4281492233276367, \"Y\": 0.27043959498405457}, {\"X\": 0.28293946385383606, \"Y\": 0.27043959498405457}]}, \"Id\": \"407ab76e-7218-45c4-9892-5b15fdb23e88\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86085510253906, \"Text\": \"Application\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13349422812461853, \"Height\": 0.02144112065434456, \"Left\": 0.43206119537353516, \"Top\": 0.24643567204475403}, \"Polygon\": [{\"X\": 0.43206119537353516, \"Y\": 0.24643567204475403}, {\"X\": 0.5655554533004761, \"Y\": 0.24643567204475403}, {\"X\": 0.5655554533004761, \"Y\": 0.2678768038749695}, {\"X\": 0.43206119537353516, \"Y\": 0.2678768038749695}]}, \"Id\": \"6a416f30-9006-48d3-a21b-b26f369c1698\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96316528320312, \"Text\": \"Application\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08000838756561279, \"Height\": 0.012696899473667145, \"Left\": 0.06741708517074585, \"Top\": 0.2858421504497528}, \"Polygon\": [{\"X\": 0.06741708517074585, \"Y\": 0.2858421504497528}, {\"X\": 0.14742547273635864, \"Y\": 0.2858421504497528}, {\"X\": 0.14742547273635864, \"Y\": 0.29853904247283936}, {\"X\": 0.06741708517074585, \"Y\": 0.29853904247283936}]}, \"Id\": \"92894371-6d63-4896-aad8-05d4eb8defff\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.58743286132812, \"Text\": \"Information\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08354003727436066, \"Height\": 0.010884440504014492, \"Left\": 0.15010811388492584, \"Top\": 0.2855413556098938}, \"Polygon\": [{\"X\": 0.15010811388492584, \"Y\": 0.2855413556098938}, {\"X\": 0.2336481660604477, \"Y\": 0.2855413556098938}, {\"X\": 0.2336481660604477, \"Y\": 0.29642578959465027}, {\"X\": 0.15010811388492584, \"Y\": 0.29642578959465027}]}, \"Id\": \"7cfef701-7c99-4031-8003-d27614a83ea1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89856719970703, \"Text\": \"Full\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025344111025333405, \"Height\": 0.010556905530393124, \"Left\": 0.06632918119430542, \"Top\": 0.3109099864959717}, \"Polygon\": [{\"X\": 0.06632918119430542, \"Y\": 0.3109099864959717}, {\"X\": 0.09167329221963882, \"Y\": 0.3109099864959717}, {\"X\": 0.09167329221963882, \"Y\": 0.3214668929576874}, {\"X\": 0.06632918119430542, \"Y\": 0.3214668929576874}]}, \"Id\": \"016c9452-9bdf-4b8c-ada1-bf91f851b4c0\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91455841064453, \"Text\": \"Name:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04572618007659912, \"Height\": 0.01038773637264967, \"Left\": 0.09403080493211746, \"Top\": 0.31095024943351746}, \"Polygon\": [{\"X\": 0.09403080493211746, \"Y\": 0.31095024943351746}, {\"X\": 0.13975699245929718, \"Y\": 0.31095024943351746}, {\"X\": 0.13975699245929718, \"Y\": 0.3213379681110382}, {\"X\": 0.09403080493211746, \"Y\": 0.3213379681110382}]}, \"Id\": \"3186a445-fc48-4824-8282-32eb90befb24\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88119506835938, \"Text\": \"Jane\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032433416694402695, \"Height\": 0.010498637333512306, \"Left\": 0.14218318462371826, \"Top\": 0.31099948287010193}, \"Polygon\": [{\"X\": 0.14218318462371826, \"Y\": 0.31099948287010193}, {\"X\": 0.17461660504341125, \"Y\": 0.31099948287010193}, {\"X\": 0.17461660504341125, \"Y\": 0.3214981257915497}, {\"X\": 0.14218318462371826, \"Y\": 0.3214981257915497}]}, \"Id\": \"ade337b8-010a-4feb-800c-aa65d05150b0\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90232849121094, \"Text\": \"Doe\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028757762163877487, \"Height\": 0.010394307784736156, \"Left\": 0.17766357958316803, \"Top\": 0.31106698513031006}, \"Polygon\": [{\"X\": 0.17766357958316803, \"Y\": 0.31106698513031006}, {\"X\": 0.20642134547233582, \"Y\": 0.31106698513031006}, {\"X\": 0.20642134547233582, \"Y\": 0.3214612901210785}, {\"X\": 0.17766357958316803, \"Y\": 0.3214612901210785}]}, \"Id\": \"f04a0358-67f5-4b11-a017-e688f8ad486c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88652038574219, \"Text\": \"Phone\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04358868673443794, \"Height\": 0.010647888295352459, \"Left\": 0.06438259780406952, \"Top\": 0.3362845778465271}, \"Polygon\": [{\"X\": 0.06438259780406952, \"Y\": 0.3362845778465271}, {\"X\": 0.10797128081321716, \"Y\": 0.3362845778465271}, {\"X\": 0.10797128081321716, \"Y\": 0.34693244099617004}, {\"X\": 0.06438259780406952, \"Y\": 0.34693244099617004}]}, \"Id\": \"3834594c-6055-4bb0-b39e-aa4b3afdf69a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8682632446289, \"Text\": \"Number:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06225652992725372, \"Height\": 0.010429768823087215, \"Left\": 0.11101628839969635, \"Top\": 0.33607718348503113}, \"Polygon\": [{\"X\": 0.11101628839969635, \"Y\": 0.33607718348503113}, {\"X\": 0.17327281832695007, \"Y\": 0.33607718348503113}, {\"X\": 0.17327281832695007, \"Y\": 0.3465069532394409}, {\"X\": 0.11101628839969635, \"Y\": 0.3465069532394409}]}, \"Id\": \"77232435-5698-475e-9b92-084f9dd2f268\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.32794952392578, \"Text\": \"555-0100\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14167875051498413, \"Height\": 0.01714961789548397, \"Left\": 0.18363620340824127, \"Top\": 0.3336704969406128}, \"Polygon\": [{\"X\": 0.18363620340824127, \"Y\": 0.3336704969406128}, {\"X\": 0.3253149688243866, \"Y\": 0.3336704969406128}, {\"X\": 0.3253149688243866, \"Y\": 0.3508200943470001}, {\"X\": 0.18363620340824127, \"Y\": 0.3508200943470001}]}, \"Id\": \"e5f86e5b-1312-4956-b4e2-0f3ca2e1de84\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73036193847656, \"Text\": \"Home\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04037301987409592, \"Height\": 0.010474691167473793, \"Left\": 0.06233425438404083, \"Top\": 0.36216625571250916}, \"Polygon\": [{\"X\": 0.06233425438404083, \"Y\": 0.36216625571250916}, {\"X\": 0.10270727425813675, \"Y\": 0.36216625571250916}, {\"X\": 0.10270727425813675, \"Y\": 0.3726409375667572}, {\"X\": 0.06233425438404083, \"Y\": 0.3726409375667572}]}, \"Id\": \"f2d0be9d-06ad-480e-9638-f4e271250e66\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57295227050781, \"Text\": \"Address:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.060971133410930634, \"Height\": 0.010997558943927288, \"Left\": 0.10586541146039963, \"Top\": 0.36145055294036865}, \"Polygon\": [{\"X\": 0.10586541146039963, \"Y\": 0.36145055294036865}, {\"X\": 0.16683654487133026, \"Y\": 0.36145055294036865}, {\"X\": 0.16683654487133026, \"Y\": 0.3724481165409088}, {\"X\": 0.10586541146039963, \"Y\": 0.3724481165409088}]}, \"Id\": \"37397041-ec93-4c6f-a93c-ede49a391a44\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24270629882812, \"Text\": \"23\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04633347690105438, \"Height\": 0.016871053725481033, \"Left\": 0.18224503099918365, \"Top\": 0.35998275876045227}, \"Polygon\": [{\"X\": 0.18224503099918365, \"Y\": 0.35998275876045227}, {\"X\": 0.22857850790023804, \"Y\": 0.35998275876045227}, {\"X\": 0.22857850790023804, \"Y\": 0.3768537938594818}, {\"X\": 0.18224503099918365, \"Y\": 0.3768537938594818}]}, \"Id\": \"12af6e62-448a-42e3-bfe7-d67c594c7d08\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3662109375, \"Text\": \"Any\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.057381078600883484, \"Height\": 0.02204309031367302, \"Left\": 0.24812908470630646, \"Top\": 0.35998401045799255}, \"Polygon\": [{\"X\": 0.24812908470630646, \"Y\": 0.35998401045799255}, {\"X\": 0.30551016330718994, \"Y\": 0.35998401045799255}, {\"X\": 0.30551016330718994, \"Y\": 0.3820270895957947}, {\"X\": 0.24812908470630646, \"Y\": 0.3820270895957947}]}, \"Id\": \"4c68c247-8205-4067-928a-3dd976b10401\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 70.91983795166016, \"Text\": \"Street,\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10085532814264297, \"Height\": 0.01898636855185032, \"Left\": 0.31584468483924866, \"Top\": 0.3596862256526947}, \"Polygon\": [{\"X\": 0.31584468483924866, \"Y\": 0.3596862256526947}, {\"X\": 0.41670000553131104, \"Y\": 0.3596862256526947}, {\"X\": 0.41670000553131104, \"Y\": 0.37867259979248047}, {\"X\": 0.31584468483924866, \"Y\": 0.37867259979248047}]}, \"Id\": \"78123da2-5805-46aa-9337-772d9fbf790c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36614990234375, \"Text\": \"Any\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0658067986369133, \"Height\": 0.0251011960208416, \"Left\": 0.4346069097518921, \"Top\": 0.3576318025588989}, \"Polygon\": [{\"X\": 0.4346069097518921, \"Y\": 0.3576318025588989}, {\"X\": 0.500413715839386, \"Y\": 0.3576318025588989}, {\"X\": 0.500413715839386, \"Y\": 0.38273298740386963}, {\"X\": 0.4346069097518921, \"Y\": 0.38273298740386963}]}, \"Id\": \"3aaacfcc-d784-4ba5-b08e-d20cdaddc1ef\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 87.27044677734375, \"Text\": \"Town.\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09273488819599152, \"Height\": 0.020373983308672905, \"Left\": 0.5035416483879089, \"Top\": 0.35788846015930176}, \"Polygon\": [{\"X\": 0.5035416483879089, \"Y\": 0.35788846015930176}, {\"X\": 0.5962765216827393, \"Y\": 0.35788846015930176}, {\"X\": 0.5962765216827393, \"Y\": 0.378262460231781}, {\"X\": 0.5035416483879089, \"Y\": 0.378262460231781}]}, \"Id\": \"0521443a-df22-495e-b2b0-004f01ecc329\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36629486083984, \"Text\": \"USA\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0728924572467804, \"Height\": 0.01983744278550148, \"Left\": 0.6139560341835022, \"Top\": 0.35547590255737305}, \"Polygon\": [{\"X\": 0.6139560341835022, \"Y\": 0.35547590255737305}, {\"X\": 0.6868484616279602, \"Y\": 0.35547590255737305}, {\"X\": 0.6868484616279602, \"Y\": 0.37531334161758423}, {\"X\": 0.6139560341835022, \"Y\": 0.37531334161758423}]}, \"Id\": \"65e66ebd-81b1-4b0b-91e2-7ef6e3a49a81\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93728637695312, \"Text\": \"Mailing\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05205604434013367, \"Height\": 0.013255533762276173, \"Left\": 0.05979505553841591, \"Top\": 0.38742077350616455}, \"Polygon\": [{\"X\": 0.05979505553841591, \"Y\": 0.38742077350616455}, {\"X\": 0.11185109615325928, \"Y\": 0.38742077350616455}, {\"X\": 0.11185109615325928, \"Y\": 0.40067631006240845}, {\"X\": 0.05979505553841591, \"Y\": 0.40067631006240845}]}, \"Id\": \"dc60317c-0c38-4001-822c-ff92d3107b4b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81474304199219, \"Text\": \"Address:\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06156355142593384, \"Height\": 0.011318603530526161, \"Left\": 0.11366333812475204, \"Top\": 0.3872509300708771}, \"Polygon\": [{\"X\": 0.11366333812475204, \"Y\": 0.3872509300708771}, {\"X\": 0.17522689700126648, \"Y\": 0.3872509300708771}, {\"X\": 0.17522689700126648, \"Y\": 0.3985695540904999}, {\"X\": 0.11366333812475204, \"Y\": 0.3985695540904999}]}, \"Id\": \"fb94be2b-edd3-45cd-865d-f3ebe863d3ab\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95835876464844, \"Text\": \"same\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03818827122449875, \"Height\": 0.008622883819043636, \"Left\": 0.17814761400222778, \"Top\": 0.3896394968032837}, \"Polygon\": [{\"X\": 0.17814761400222778, \"Y\": 0.3896394968032837}, {\"X\": 0.21633589267730713, \"Y\": 0.3896394968032837}, {\"X\": 0.21633589267730713, \"Y\": 0.3982623815536499}, {\"X\": 0.17814761400222778, \"Y\": 0.3982623815536499}]}, \"Id\": \"2459e6de-4cf4-4935-8c4e-80613f171e30\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85345458984375, \"Text\": \"as\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01666499301791191, \"Height\": 0.008600016124546528, \"Left\": 0.21913640201091766, \"Top\": 0.3898485004901886}, \"Polygon\": [{\"X\": 0.21913640201091766, \"Y\": 0.3898485004901886}, {\"X\": 0.23580139875411987, \"Y\": 0.3898485004901886}, {\"X\": 0.23580139875411987, \"Y\": 0.39844852685928345}, {\"X\": 0.21913640201091766, \"Y\": 0.39844852685928345}]}, \"Id\": \"e5a3b3c3-1a1a-44f6-a58b-583da40de8e5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9453353881836, \"Text\": \"above\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043982360512018204, \"Height\": 0.011164103634655476, \"Left\": 0.23866967856884003, \"Top\": 0.38757288455963135}, \"Polygon\": [{\"X\": 0.23866967856884003, \"Y\": 0.38757288455963135}, {\"X\": 0.2826520502567291, \"Y\": 0.38757288455963135}, {\"X\": 0.2826520502567291, \"Y\": 0.39873698353767395}, {\"X\": 0.23866967856884003, \"Y\": 0.39873698353767395}]}, \"Id\": \"a8789885-622c-4ce6-a3d2-b187ec2f168b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87984466552734, \"Text\": \"How\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03572886437177658, \"Height\": 0.009641153737902641, \"Left\": 0.054418496787548065, \"Top\": 0.4169932007789612}, \"Polygon\": [{\"X\": 0.054418496787548065, \"Y\": 0.4169932007789612}, {\"X\": 0.09014736115932465, \"Y\": 0.4169932007789612}, {\"X\": 0.09014736115932465, \"Y\": 0.42663437128067017}, {\"X\": 0.054418496787548065, \"Y\": 0.42663437128067017}]}, \"Id\": \"acc72c9a-9541-4162-9845-9f8bbb300cea\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90281677246094, \"Text\": \"did\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024672960862517357, \"Height\": 0.009843830950558186, \"Left\": 0.0937800407409668, \"Top\": 0.41677430272102356}, \"Polygon\": [{\"X\": 0.0937800407409668, \"Y\": 0.41677430272102356}, {\"X\": 0.1184530034661293, \"Y\": 0.41677430272102356}, {\"X\": 0.1184530034661293, \"Y\": 0.42661812901496887}, {\"X\": 0.0937800407409668, \"Y\": 0.42661812901496887}]}, \"Id\": \"ad86cbee-b810-48d3-8cbf-1ba220743a44\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91901397705078, \"Text\": \"you\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029082423076033592, \"Height\": 0.009637776762247086, \"Left\": 0.12210459262132645, \"Top\": 0.41907086968421936}, \"Polygon\": [{\"X\": 0.12210459262132645, \"Y\": 0.41907086968421936}, {\"X\": 0.1511870175600052, \"Y\": 0.41907086968421936}, {\"X\": 0.1511870175600052, \"Y\": 0.42870867252349854}, {\"X\": 0.12210459262132645, \"Y\": 0.42870867252349854}]}, \"Id\": \"93d6c146-e013-42b5-bcc1-1801d61b78f5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91246032714844, \"Text\": \"hear\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036628834903240204, \"Height\": 0.009496988728642464, \"Left\": 0.154837504029274, \"Top\": 0.4171309471130371}, \"Polygon\": [{\"X\": 0.154837504029274, \"Y\": 0.4171309471130371}, {\"X\": 0.1914663314819336, \"Y\": 0.4171309471130371}, {\"X\": 0.1914663314819336, \"Y\": 0.4266279339790344}, {\"X\": 0.154837504029274, \"Y\": 0.4266279339790344}]}, \"Id\": \"b369a703-9c5a-451f-b48a-32fdcd028dd6\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96062469482422, \"Text\": \"about\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.045725561678409576, \"Height\": 0.009621053002774715, \"Left\": 0.19490627944469452, \"Top\": 0.4170752465724945}, \"Polygon\": [{\"X\": 0.19490627944469452, \"Y\": 0.4170752465724945}, {\"X\": 0.2406318336725235, \"Y\": 0.4170752465724945}, {\"X\": 0.2406318336725235, \"Y\": 0.4266963005065918}, {\"X\": 0.19490627944469452, \"Y\": 0.4266963005065918}]}, \"Id\": \"969235f5-d4ab-4190-bd1a-be8678f8e7b4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97106170654297, \"Text\": \"this\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030121376737952232, \"Height\": 0.00993200670927763, \"Left\": 0.24420124292373657, \"Top\": 0.4168641269207001}, \"Polygon\": [{\"X\": 0.24420124292373657, \"Y\": 0.4168641269207001}, {\"X\": 0.27432262897491455, \"Y\": 0.4168641269207001}, {\"X\": 0.27432262897491455, \"Y\": 0.4267961382865906}, {\"X\": 0.24420124292373657, \"Y\": 0.4267961382865906}]}, \"Id\": \"b4f67556-ef01-4331-96e9-547711e902b5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91111755371094, \"Text\": \"position?\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07183221727609634, \"Height\": 0.012041625566780567, \"Left\": 0.27852663397789, \"Top\": 0.4168245494365692}, \"Polygon\": [{\"X\": 0.27852663397789, \"Y\": 0.4168245494365692}, {\"X\": 0.35035887360572815, \"Y\": 0.4168245494365692}, {\"X\": 0.35035887360572815, \"Y\": 0.4288661777973175}, {\"X\": 0.27852663397789, \"Y\": 0.4288661777973175}]}, \"Id\": \"ee698df4-049c-422c-ada4-b5837fb6f6cd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45745086669922, \"Text\": \"Job\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026372645050287247, \"Height\": 0.010002074763178825, \"Left\": 0.07518339902162552, \"Top\": 0.4318697154521942}, \"Polygon\": [{\"X\": 0.07518339902162552, \"Y\": 0.4318697154521942}, {\"X\": 0.10155604034662247, \"Y\": 0.4318697154521942}, {\"X\": 0.10155604034662247, \"Y\": 0.4418717920780182}, {\"X\": 0.07518339902162552, \"Y\": 0.4418717920780182}]}, \"Id\": \"fc49eee9-2cde-4d9b-b3de-d123ed8a5807\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61431884765625, \"Text\": \"fair\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023574579507112503, \"Height\": 0.009630533866584301, \"Left\": 0.10411828756332397, \"Top\": 0.4320482909679413}, \"Polygon\": [{\"X\": 0.10411828756332397, \"Y\": 0.4320482909679413}, {\"X\": 0.12769286334514618, \"Y\": 0.4320482909679413}, {\"X\": 0.12769286334514618, \"Y\": 0.44167882204055786}, {\"X\": 0.10411828756332397, \"Y\": 0.44167882204055786}]}, \"Id\": \"09cb9a7c-f9ec-4d7f-8e9b-ccb2bc053115\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45018005371094, \"Text\": \"Website\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.056137438863515854, \"Height\": 0.009969360195100307, \"Left\": 0.17518146336078644, \"Top\": 0.431873083114624}, \"Polygon\": [{\"X\": 0.17518146336078644, \"Y\": 0.431873083114624}, {\"X\": 0.2313188910484314, \"Y\": 0.431873083114624}, {\"X\": 0.2313188910484314, \"Y\": 0.4418424367904663}, {\"X\": 0.17518146336078644, \"Y\": 0.4418424367904663}]}, \"Id\": \"9f23b1f0-68b6-4e7c-a475-e45a0da95706\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85414123535156, \"Text\": \"Company\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06620107591152191, \"Height\": 0.011829182505607605, \"Left\": 0.2760646641254425, \"Top\": 0.4320853352546692}, \"Polygon\": [{\"X\": 0.2760646641254425, \"Y\": 0.4320853352546692}, {\"X\": 0.3422657549381256, \"Y\": 0.4320853352546692}, {\"X\": 0.3422657549381256, \"Y\": 0.4439145028591156}, {\"X\": 0.2760646641254425, \"Y\": 0.4439145028591156}]}, \"Id\": \"c37eb033-3d56-4662-8e8d-e31577733cf1\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95706939697266, \"Text\": \"Employee\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06824317574501038, \"Height\": 0.012008992955088615, \"Left\": 0.3455941379070282, \"Top\": 0.4319824278354645}, \"Polygon\": [{\"X\": 0.3455941379070282, \"Y\": 0.4319824278354645}, {\"X\": 0.4138373136520386, \"Y\": 0.4319824278354645}, {\"X\": 0.4138373136520386, \"Y\": 0.44399142265319824}, {\"X\": 0.3455941379070282, \"Y\": 0.44399142265319824}]}, \"Id\": \"ac0124b3-553d-4684-998e-1d123eb2ebbe\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.42999267578125, \"Text\": \"Previous\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07783409208059311, \"Height\": 0.012753255665302277, \"Left\": 0.30107200145721436, \"Top\": 0.46438586711883545}, \"Polygon\": [{\"X\": 0.30107200145721436, \"Y\": 0.46438586711883545}, {\"X\": 0.37890610098838806, \"Y\": 0.46438586711883545}, {\"X\": 0.37890610098838806, \"Y\": 0.47713911533355713}, {\"X\": 0.30107200145721436, \"Y\": 0.47713911533355713}]}, \"Id\": \"219e5091-fcd2-4490-b47c-95abb2d5f8c4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35442352294922, \"Text\": \"Employment\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11291598528623581, \"Height\": 0.01653466746211052, \"Left\": 0.3853023648262024, \"Top\": 0.4641077518463135}, \"Polygon\": [{\"X\": 0.3853023648262024, \"Y\": 0.4641077518463135}, {\"X\": 0.4982183277606964, \"Y\": 0.4641077518463135}, {\"X\": 0.4982183277606964, \"Y\": 0.4806424081325531}, {\"X\": 0.3853023648262024, \"Y\": 0.4806424081325531}]}, \"Id\": \"1044356e-4364-42a3-bc7c-2d77a6dae191\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65589141845703, \"Text\": \"History\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06680469214916229, \"Height\": 0.01668587327003479, \"Left\": 0.5018947720527649, \"Top\": 0.4639487564563751}, \"Polygon\": [{\"X\": 0.5018947720527649, \"Y\": 0.4639487564563751}, {\"X\": 0.5686994791030884, \"Y\": 0.4639487564563751}, {\"X\": 0.5686994791030884, \"Y\": 0.4806346297264099}, {\"X\": 0.5018947720527649, \"Y\": 0.4806346297264099}]}, \"Id\": \"53e8fcc6-d2a3-40a9-96c6-6ead8c482f22\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72258758544922, \"Text\": \"Start\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033257562667131424, \"Height\": 0.010276692919433117, \"Left\": 0.06723197549581528, \"Top\": 0.4953781068325043}, \"Polygon\": [{\"X\": 0.06723197549581528, \"Y\": 0.4953781068325043}, {\"X\": 0.100489541888237, \"Y\": 0.4953781068325043}, {\"X\": 0.100489541888237, \"Y\": 0.5056548118591309}, {\"X\": 0.06723197549581528, \"Y\": 0.5056548118591309}]}, \"Id\": \"a27b2f43-8b83-4a7f-a3cb-4b86c9697d81\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.502685546875, \"Text\": \"Date\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031902436167001724, \"Height\": 0.01080423966050148, \"Left\": 0.10292278975248337, \"Top\": 0.49517691135406494}, \"Polygon\": [{\"X\": 0.10292278975248337, \"Y\": 0.49517691135406494}, {\"X\": 0.1348252296447754, \"Y\": 0.49517691135406494}, {\"X\": 0.1348252296447754, \"Y\": 0.5059811472892761}, {\"X\": 0.10292278975248337, \"Y\": 0.5059811472892761}]}, \"Id\": \"ca995f3a-59bb-4b38-81fa-ebe205456752\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84082794189453, \"Text\": \"End\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02522915042936802, \"Height\": 0.010577555745840073, \"Left\": 0.16083410382270813, \"Top\": 0.4951501786708832}, \"Polygon\": [{\"X\": 0.16083410382270813, \"Y\": 0.4951501786708832}, {\"X\": 0.1860632449388504, \"Y\": 0.4951501786708832}, {\"X\": 0.1860632449388504, \"Y\": 0.5057277679443359}, {\"X\": 0.16083410382270813, \"Y\": 0.5057277679443359}]}, \"Id\": \"fd374d6d-ba87-4f89-8b87-0d069b24da31\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80368041992188, \"Text\": \"Date\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03296416997909546, \"Height\": 0.011142211966216564, \"Left\": 0.18925151228904724, \"Top\": 0.49527326226234436}, \"Polygon\": [{\"X\": 0.18925151228904724, \"Y\": 0.49527326226234436}, {\"X\": 0.2222156822681427, \"Y\": 0.49527326226234436}, {\"X\": 0.2222156822681427, \"Y\": 0.5064154863357544}, {\"X\": 0.18925151228904724, \"Y\": 0.5064154863357544}]}, \"Id\": \"647076fd-8b0e-421f-b048-72805b18559b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96900939941406, \"Text\": \"Employer\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06630958616733551, \"Height\": 0.013528360985219479, \"Left\": 0.2555682957172394, \"Top\": 0.4957641065120697}, \"Polygon\": [{\"X\": 0.2555682957172394, \"Y\": 0.4957641065120697}, {\"X\": 0.3218778669834137, \"Y\": 0.4957641065120697}, {\"X\": 0.3218778669834137, \"Y\": 0.509292483329773}, {\"X\": 0.2555682957172394, \"Y\": 0.509292483329773}]}, \"Id\": \"e928351a-90e9-4aef-9d5d-64d7e2b80fbb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85222625732422, \"Text\": \"Name\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040560994297266006, \"Height\": 0.010563882999122143, \"Left\": 0.32451558113098145, \"Top\": 0.4965566098690033}, \"Polygon\": [{\"X\": 0.32451558113098145, \"Y\": 0.4965566098690033}, {\"X\": 0.36507657170295715, \"Y\": 0.4965566098690033}, {\"X\": 0.36507657170295715, \"Y\": 0.5071204900741577}, {\"X\": 0.32451558113098145, \"Y\": 0.5071204900741577}]}, \"Id\": \"42dfa6e0-d91c-4f99-aec0-ebd9f10580a8\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72110748291016, \"Text\": \"Position\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05696602165699005, \"Height\": 0.010873941704630852, \"Left\": 0.44755348563194275, \"Top\": 0.4966639280319214}, \"Polygon\": [{\"X\": 0.44755348563194275, \"Y\": 0.4966639280319214}, {\"X\": 0.504519522190094, \"Y\": 0.4966639280319214}, {\"X\": 0.504519522190094, \"Y\": 0.5075379014015198}, {\"X\": 0.44755348563194275, \"Y\": 0.5075379014015198}]}, \"Id\": \"6c78fd65-027d-44dd-a7a1-6d954ee1022f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85227966308594, \"Text\": \"Held\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032406773418188095, \"Height\": 0.011325236409902573, \"Left\": 0.5077049732208252, \"Top\": 0.496025949716568}, \"Polygon\": [{\"X\": 0.5077049732208252, \"Y\": 0.496025949716568}, {\"X\": 0.5401117205619812, \"Y\": 0.496025949716568}, {\"X\": 0.5401117205619812, \"Y\": 0.5073512196540833}, {\"X\": 0.5077049732208252, \"Y\": 0.5073512196540833}]}, \"Id\": \"d0c76458-1452-4795-8fe1-55ba4fbc8cf4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9643325805664, \"Text\": \"Reason\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053456686437129974, \"Height\": 0.010837117210030556, \"Left\": 0.6462403535842896, \"Top\": 0.49567314982414246}, \"Polygon\": [{\"X\": 0.6462403535842896, \"Y\": 0.49567314982414246}, {\"X\": 0.6996970176696777, \"Y\": 0.49567314982414246}, {\"X\": 0.6996970176696777, \"Y\": 0.5065102577209473}, {\"X\": 0.6462403535842896, \"Y\": 0.5065102577209473}]}, \"Id\": \"1c877bc5-4500-40dc-ad7a-02304b7fe847\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90586853027344, \"Text\": \"for\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023935839533805847, \"Height\": 0.011395060457289219, \"Left\": 0.7017288208007812, \"Top\": 0.4949902892112732}, \"Polygon\": [{\"X\": 0.7017288208007812, \"Y\": 0.4949902892112732}, {\"X\": 0.7256646752357483, \"Y\": 0.4949902892112732}, {\"X\": 0.7256646752357483, \"Y\": 0.506385326385498}, {\"X\": 0.7017288208007812, \"Y\": 0.506385326385498}]}, \"Id\": \"92807fa8-92e7-4815-8e0d-bddd089553fb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97358703613281, \"Text\": \"leaving\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0532662607729435, \"Height\": 0.013902058824896812, \"Left\": 0.7278103232383728, \"Top\": 0.49486204981803894}, \"Polygon\": [{\"X\": 0.7278103232383728, \"Y\": 0.49486204981803894}, {\"X\": 0.7810766100883484, \"Y\": 0.49486204981803894}, {\"X\": 0.7810766100883484, \"Y\": 0.5087641477584839}, {\"X\": 0.7278103232383728, \"Y\": 0.5087641477584839}]}, \"Id\": \"52c74858-2790-47b6-af03-0265307a9165\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87957763671875, \"Text\": \"1/15/2009\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07113062590360641, \"Height\": 0.012933594174683094, \"Left\": 0.06534477323293686, \"Top\": 0.5219505429267883}, \"Polygon\": [{\"X\": 0.06534477323293686, \"Y\": 0.5219505429267883}, {\"X\": 0.13647539913654327, \"Y\": 0.5219505429267883}, {\"X\": 0.13647539913654327, \"Y\": 0.5348841547966003}, {\"X\": 0.06534477323293686, \"Y\": 0.5348841547966003}]}, \"Id\": \"798f6998-6e9b-4be1-bb43-328d6696a8c5\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83549499511719, \"Text\": \"6/30/2011\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07189647853374481, \"Height\": 0.013411092571914196, \"Left\": 0.15897905826568604, \"Top\": 0.5222000479698181}, \"Polygon\": [{\"X\": 0.15897905826568604, \"Y\": 0.5222000479698181}, {\"X\": 0.23087553679943085, \"Y\": 0.5222000479698181}, {\"X\": 0.23087553679943085, \"Y\": 0.5356111526489258}, {\"X\": 0.15897905826568604, \"Y\": 0.5356111526489258}]}, \"Id\": \"466f641f-abae-45bb-98e4-1cac1e6a6189\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93994903564453, \"Text\": \"Any\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027849936857819557, \"Height\": 0.01254374161362648, \"Left\": 0.25399842858314514, \"Top\": 0.5240710973739624}, \"Polygon\": [{\"X\": 0.25399842858314514, \"Y\": 0.5240710973739624}, {\"X\": 0.28184837102890015, \"Y\": 0.5240710973739624}, {\"X\": 0.28184837102890015, \"Y\": 0.5366148352622986}, {\"X\": 0.25399842858314514, \"Y\": 0.5366148352622986}]}, \"Id\": \"6137fcde-ab0c-474a-b931-2f0aaa5635cf\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88710021972656, \"Text\": \"Company\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06640058755874634, \"Height\": 0.012950194999575615, \"Left\": 0.28383466601371765, \"Top\": 0.5241238474845886}, \"Polygon\": [{\"X\": 0.28383466601371765, \"Y\": 0.5241238474845886}, {\"X\": 0.350235253572464, \"Y\": 0.5241238474845886}, {\"X\": 0.350235253572464, \"Y\": 0.5370740294456482}, {\"X\": 0.28383466601371765, \"Y\": 0.5370740294456482}]}, \"Id\": \"f9e5b2f4-4402-4796-8d3c-0241411cc54c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52288818359375, \"Text\": \"Assistant\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06427976489067078, \"Height\": 0.010583577677607536, \"Left\": 0.4464295208454132, \"Top\": 0.5248814821243286}, \"Polygon\": [{\"X\": 0.4464295208454132, \"Y\": 0.5248814821243286}, {\"X\": 0.510709285736084, \"Y\": 0.5248814821243286}, {\"X\": 0.510709285736084, \"Y\": 0.5354650616645813}, {\"X\": 0.4464295208454132, \"Y\": 0.5354650616645813}]}, \"Id\": \"00a0fd33-2974-452b-b823-a3072359cb0e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59532928466797, \"Text\": \"baker\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04096580669283867, \"Height\": 0.011165852658450603, \"Left\": 0.5132812261581421, \"Top\": 0.524320662021637}, \"Polygon\": [{\"X\": 0.5132812261581421, \"Y\": 0.524320662021637}, {\"X\": 0.5542470216751099, \"Y\": 0.524320662021637}, {\"X\": 0.5542470216751099, \"Y\": 0.5354865193367004}, {\"X\": 0.5132812261581421, \"Y\": 0.5354865193367004}]}, \"Id\": \"a65e095c-023f-4014-8b46-c51275f18b28\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94439697265625, \"Text\": \"relocated\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07095213234424591, \"Height\": 0.011498779058456421, \"Left\": 0.6456542611122131, \"Top\": 0.5236824750900269}, \"Polygon\": [{\"X\": 0.6456542611122131, \"Y\": 0.5236824750900269}, {\"X\": 0.7166063785552979, \"Y\": 0.5236824750900269}, {\"X\": 0.7166063785552979, \"Y\": 0.5351812243461609}, {\"X\": 0.6456542611122131, \"Y\": 0.5351812243461609}]}, \"Id\": \"a47c68e1-6735-4938-bc1e-a2aff43e7535\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36653900146484, \"Text\": \"7/1/2011\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08009123057126999, \"Height\": 0.02423006109893322, \"Left\": 0.06158771738409996, \"Top\": 0.5494148135185242}, \"Polygon\": [{\"X\": 0.06158771738409996, \"Y\": 0.5494148135185242}, {\"X\": 0.14167894423007965, \"Y\": 0.5494148135185242}, {\"X\": 0.14167894423007965, \"Y\": 0.5736448764801025}, {\"X\": 0.06158771738409996, \"Y\": 0.5736448764801025}]}, \"Id\": \"28a650f3-b271-4b83-b41e-b381f7f77a30\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36431884765625, \"Text\": \"8/10/2013\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08818941563367844, \"Height\": 0.02185172587633133, \"Left\": 0.1528608202934265, \"Top\": 0.5515884757041931}, \"Polygon\": [{\"X\": 0.1528608202934265, \"Y\": 0.5515884757041931}, {\"X\": 0.24105024337768555, \"Y\": 0.5515884757041931}, {\"X\": 0.24105024337768555, \"Y\": 0.5734401941299438}, {\"X\": 0.1528608202934265, \"Y\": 0.5734401941299438}]}, \"Id\": \"434e78da-d8c4-472f-8617-8438bb4e8b83\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36672973632812, \"Text\": \"Example\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09971006214618683, \"Height\": 0.01940307579934597, \"Left\": 0.25763750076293945, \"Top\": 0.5565370917320251}, \"Polygon\": [{\"X\": 0.25763750076293945, \"Y\": 0.5565370917320251}, {\"X\": 0.3573475778102875, \"Y\": 0.5565370917320251}, {\"X\": 0.3573475778102875, \"Y\": 0.5759401917457581}, {\"X\": 0.25763750076293945, \"Y\": 0.5759401917457581}]}, \"Id\": \"09ac1f6e-56ef-466e-9d7e-05b25e566e3b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.0883560180664, \"Text\": \"Corp.\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06193828210234642, \"Height\": 0.0180768221616745, \"Left\": 0.3676612079143524, \"Top\": 0.5579160451889038}, \"Polygon\": [{\"X\": 0.3676612079143524, \"Y\": 0.5579160451889038}, {\"X\": 0.42959946393966675, \"Y\": 0.5579160451889038}, {\"X\": 0.42959946393966675, \"Y\": 0.5759928822517395}, {\"X\": 0.3676612079143524, \"Y\": 0.5759928822517395}]}, \"Id\": \"206e8e5e-e000-41e9-8b25-69cd751fcaeb\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36492156982422, \"Text\": \"Baker\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08058762550354004, \"Height\": 0.019884847104549408, \"Left\": 0.4558902680873871, \"Top\": 0.5547757148742676}, \"Polygon\": [{\"X\": 0.4558902680873871, \"Y\": 0.5547757148742676}, {\"X\": 0.5364779233932495, \"Y\": 0.5547757148742676}, {\"X\": 0.5364779233932495, \"Y\": 0.5746605396270752}, {\"X\": 0.4558902680873871, \"Y\": 0.5746605396270752}]}, \"Id\": \"8651f63e-1bb1-4c1a-9310-7c025fe42dc7\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36650085449219, \"Text\": \"better\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08772758394479752, \"Height\": 0.020676514133810997, \"Left\": 0.6461215615272522, \"Top\": 0.5561286807060242}, \"Polygon\": [{\"X\": 0.6461215615272522, \"Y\": 0.5561286807060242}, {\"X\": 0.7338491082191467, \"Y\": 0.5561286807060242}, {\"X\": 0.7338491082191467, \"Y\": 0.5768051743507385}, {\"X\": 0.6461215615272522, \"Y\": 0.5768051743507385}]}, \"Id\": \"f5461759-db5b-436e-a45a-a19bf23a40a4\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 94.7899398803711, \"Text\": \"opp.\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06062112748622894, \"Height\": 0.020024413242936134, \"Left\": 0.7398065328598022, \"Top\": 0.5598307847976685}, \"Polygon\": [{\"X\": 0.7398065328598022, \"Y\": 0.5598307847976685}, {\"X\": 0.8004276752471924, \"Y\": 0.5598307847976685}, {\"X\": 0.8004276752471924, \"Y\": 0.57985520362854}, {\"X\": 0.7398065328598022, \"Y\": 0.57985520362854}]}, \"Id\": \"09b82405-d5b9-48aa-b9ef-d57f8851fd39\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3418960571289, \"Text\": \"8/15/2013\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08318162709474564, \"Height\": 0.0189567469060421, \"Left\": 0.06209268048405647, \"Top\": 0.5786384344100952}, \"Polygon\": [{\"X\": 0.06209268048405647, \"Y\": 0.5786384344100952}, {\"X\": 0.1452743113040924, \"Y\": 0.5786384344100952}, {\"X\": 0.1452743113040924, \"Y\": 0.5975951552391052}, {\"X\": 0.06209268048405647, \"Y\": 0.5975951552391052}]}, \"Id\": \"03c6e5c0-3f95-4a3a-a376-56e14ee6c4d2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36683654785156, \"Text\": \"Present\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08261171728372574, \"Height\": 0.023316243663430214, \"Left\": 0.15422317385673523, \"Top\": 0.5759676694869995}, \"Polygon\": [{\"X\": 0.15422317385673523, \"Y\": 0.5759676694869995}, {\"X\": 0.23683488368988037, \"Y\": 0.5759676694869995}, {\"X\": 0.23683488368988037, \"Y\": 0.5992838740348816}, {\"X\": 0.15422317385673523, \"Y\": 0.5992838740348816}]}, \"Id\": \"1c240f32-0efd-4e1c-8572-0f8eed6acffc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28512573242188, \"Text\": \"AnyCompany\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1553463488817215, \"Height\": 0.028609294444322586, \"Left\": 0.25068095326423645, \"Top\": 0.5816634893417358}, \"Polygon\": [{\"X\": 0.25068095326423645, \"Y\": 0.5816634893417358}, {\"X\": 0.40602728724479675, \"Y\": 0.5816634893417358}, {\"X\": 0.40602728724479675, \"Y\": 0.6102727651596069}, {\"X\": 0.25068095326423645, \"Y\": 0.6102727651596069}]}, \"Id\": \"0c8463e8-8d70-4d8d-a9a5-c5c5131a13ef\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36640167236328, \"Text\": \"head\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06068648025393486, \"Height\": 0.018649129197001457, \"Left\": 0.44272300601005554, \"Top\": 0.5826041102409363}, \"Polygon\": [{\"X\": 0.44272300601005554, \"Y\": 0.5826041102409363}, {\"X\": 0.5034095048904419, \"Y\": 0.5826041102409363}, {\"X\": 0.5034095048904419, \"Y\": 0.6012532114982605}, {\"X\": 0.44272300601005554, \"Y\": 0.6012532114982605}]}, \"Id\": \"a3711c13-80b8-4072-9eb3-1ca535f3fe2d\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36530303955078, \"Text\": \"baker\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08183871954679489, \"Height\": 0.01877111755311489, \"Left\": 0.5177208185195923, \"Top\": 0.5821704864501953}, \"Polygon\": [{\"X\": 0.5177208185195923, \"Y\": 0.5821704864501953}, {\"X\": 0.5995595455169678, \"Y\": 0.5821704864501953}, {\"X\": 0.5995595455169678, \"Y\": 0.6009415984153748}, {\"X\": 0.5177208185195923, \"Y\": 0.6009415984153748}]}, \"Id\": \"ea6311e1-e56d-4180-817a-ef96d2cdc74e\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 95.34463500976562, \"Text\": \"N/A,\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06589753925800323, \"Height\": 0.02197928912937641, \"Left\": 0.6456658840179443, \"Top\": 0.5830053091049194}, \"Polygon\": [{\"X\": 0.6456658840179443, \"Y\": 0.5830053091049194}, {\"X\": 0.7115634679794312, \"Y\": 0.5830053091049194}, {\"X\": 0.7115634679794312, \"Y\": 0.6049845814704895}, {\"X\": 0.6456658840179443, \"Y\": 0.6049845814704895}]}, \"Id\": \"b549a727-75a4-45ca-adc7-9c235671fe23\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.85322570800781, \"Text\": \"current\", \"TextType\": \"HANDWRITING\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10492775589227676, \"Height\": 0.01562959887087345, \"Left\": 0.7241114974021912, \"Top\": 0.5873578190803528}, \"Polygon\": [{\"X\": 0.7241114974021912, \"Y\": 0.5873578190803528}, {\"X\": 0.8290392756462097, \"Y\": 0.5873578190803528}, {\"X\": 0.8290392756462097, \"Y\": 0.6029874086380005}, {\"X\": 0.7241114974021912, \"Y\": 0.6029874086380005}]}, \"Id\": \"95fa8c10-c509-4897-887d-451e54b8e4ef\", \"Page\": 2}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.98558807373047, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01745695061981678, \"Height\": 0.013532551936805248, \"Left\": 0.2540684640407562, \"Top\": 0.43021896481513977}, \"Polygon\": [{\"X\": 0.2540684640407562, \"Y\": 0.43021896481513977}, {\"X\": 0.27152541279792786, \"Y\": 0.43021896481513977}, {\"X\": 0.27152541279792786, \"Y\": 0.4437515139579773}, {\"X\": 0.2540684640407562, \"Y\": 0.4437515139579773}]}, \"Id\": \"351fe086-e59c-4eca-8aef-7bdbf4630a58\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 2}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.98271942138672, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018073739483952522, \"Height\": 0.013762328773736954, \"Left\": 0.15201430022716522, \"Top\": 0.42999041080474854}, \"Polygon\": [{\"X\": 0.15201430022716522, \"Y\": 0.42999041080474854}, {\"X\": 0.1700880378484726, \"Y\": 0.42999041080474854}, {\"X\": 0.1700880378484726, \"Y\": 0.4437527358531952}, {\"X\": 0.15201430022716522, \"Y\": 0.4437527358531952}]}, \"Id\": \"df351a88-30e6-4b1c-899d-dc244b782765\", \"SelectionStatus\": \"NOT_SELECTED\", \"Page\": 2}, {\"BlockType\": \"SELECTION_ELEMENT\", \"Confidence\": 99.93588256835938, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019288860261440277, \"Height\": 0.013978678733110428, \"Left\": 0.053953059017658234, \"Top\": 0.42947834730148315}, \"Polygon\": [{\"X\": 0.053953059017658234, \"Y\": 0.42947834730148315}, {\"X\": 0.07324191927909851, \"Y\": 0.42947834730148315}, {\"X\": 0.07324191927909851, \"Y\": 0.4434570372104645}, {\"X\": 0.053953059017658234, \"Y\": 0.4434570372104645}]}, \"Id\": \"c9c805dd-c13a-4177-9d22-968a65c07293\", \"SelectionStatus\": \"SELECTED\", \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.69930267333984, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.7721792459487915, \"Height\": 0.14616520702838898, \"Left\": 0.05501968413591385, \"Top\": 0.4577147960662842}, \"Polygon\": [{\"X\": 0.05501968413591385, \"Y\": 0.4577147960662842}, {\"X\": 0.8271989226341248, \"Y\": 0.4577147960662842}, {\"X\": 0.8271989226341248, \"Y\": 0.603879988193512}, {\"X\": 0.05501968413591385, \"Y\": 0.603879988193512}]}, \"Id\": \"a7829810-1f72-497c-a5d9-a59a0bf76f98\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4eb7b8bc-d55e-4ef7-b1e8-fe870437bc04\", \"cab8c45f-bc31-43bd-af8e-a2267b02c884\", \"c5561831-fed0-4a0c-9704-21128600f9d3\", \"c66fffc6-7d52-41d9-b36a-dd5888a3aa04\", \"ca2d2093-1b7d-4e02-94cf-b82daa621eca\", \"9a6578a2-6925-4c4e-ab73-c86e40423d8a\", \"09c3eca4-4027-4741-a813-67132e2afcd1\", \"ebaa5ba0-7a8b-4be7-acbe-ceddb2ec0d97\", \"0c1f94d8-d299-42e2-9686-29ffba02e115\", \"fd9e3e86-200a-4cd9-876d-2c10d5739887\", \"7107c6c3-ba22-45f6-818d-2c12e725dfe7\", \"546a29b6-767e-4e5d-9863-24f5f71d94ca\", \"1181e1c0-424e-4cc2-843a-5d7ada9deaaa\", \"b245b56f-3ec8-447f-a523-4478c3b460a0\", \"e44a1e61-66b6-4ee6-869b-c8ff7772a1d1\", \"8eb319f5-7d4c-4fe9-9b99-77b27536496f\", \"3b41a593-d814-449a-8929-c71f764aa0e7\", \"e46bd6f9-bf53-4a83-bacf-26d6a030125c\", \"6de95c06-a70b-443b-9aac-bab3e867f1ed\", \"4cd61848-45ad-49ba-9aa3-6b6c6e261db0\", \"6ab43df3-b255-48da-8896-167be28a53ff\", \"973d4c56-5c34-4244-ab42-a9c9b4edc4ae\", \"2c2de9ed-4b32-4298-9bfb-7c5e70e89cb1\", \"a081ed04-c3ad-4bed-a0de-e52e29475388\", \"87ad0fb6-692b-44f5-9c6e-ef68bae051d8\"]}, {\"Type\": \"MERGED_CELL\", \"Ids\": [\"f711d4c7-920f-456d-9186-ea1d7c6542f2\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.64105224609375, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09490940719842911, \"Height\": 0.03466666489839554, \"Left\": 0.055220019072294235, \"Top\": 0.45766666531562805}, \"Polygon\": [{\"X\": 0.055220019072294235, \"Y\": 0.45766666531562805}, {\"X\": 0.15012942254543304, \"Y\": 0.45766666531562805}, {\"X\": 0.15012942254543304, \"Y\": 0.492333322763443}, {\"X\": 0.055220019072294235, \"Y\": 0.492333322763443}]}, \"Id\": \"4eb7b8bc-d55e-4ef7-b1e8-fe870437bc04\", \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.64105224609375, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09663502871990204, \"Height\": 0.03466666489839554, \"Left\": 0.15012942254543304, \"Top\": 0.45766666531562805}, \"Polygon\": [{\"X\": 0.15012942254543304, \"Y\": 0.45766666531562805}, {\"X\": 0.24676445126533508, \"Y\": 0.45766666531562805}, {\"X\": 0.24676445126533508, \"Y\": 0.492333322763443}, {\"X\": 0.15012942254543304, \"Y\": 0.492333322763443}]}, \"Id\": \"cab8c45f-bc31-43bd-af8e-a2267b02c884\", \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.64105224609375, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19197584688663483, \"Height\": 0.03466666489839554, \"Left\": 0.24676445126533508, \"Top\": 0.45766666531562805}, \"Polygon\": [{\"X\": 0.24676445126533508, \"Y\": 0.45766666531562805}, {\"X\": 0.4387402832508087, \"Y\": 0.45766666531562805}, {\"X\": 0.4387402832508087, \"Y\": 0.492333322763443}, {\"X\": 0.24676445126533508, \"Y\": 0.492333322763443}]}, \"Id\": \"c5561831-fed0-4a0c-9704-21128600f9d3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"219e5091-fcd2-4490-b47c-95abb2d5f8c4\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.64105224609375, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19930975139141083, \"Height\": 0.03466666489839554, \"Left\": 0.4387402832508087, \"Top\": 0.45766666531562805}, \"Polygon\": [{\"X\": 0.4387402832508087, \"Y\": 0.45766666531562805}, {\"X\": 0.6380500197410583, \"Y\": 0.45766666531562805}, {\"X\": 0.6380500197410583, \"Y\": 0.492333322763443}, {\"X\": 0.4387402832508087, \"Y\": 0.492333322763443}]}, \"Id\": \"c66fffc6-7d52-41d9-b36a-dd5888a3aa04\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1044356e-4364-42a3-bc7c-2d77a6dae191\", \"53e8fcc6-d2a3-40a9-96c6-6ead8c482f22\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.64105224609375, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.18895599246025085, \"Height\": 0.03466666489839554, \"Left\": 0.6380500197410583, \"Top\": 0.45766666531562805}, \"Polygon\": [{\"X\": 0.6380500197410583, \"Y\": 0.45766666531562805}, {\"X\": 0.8270060420036316, \"Y\": 0.45766666531562805}, {\"X\": 0.8270060420036316, \"Y\": 0.492333322763443}, {\"X\": 0.6380500197410583, \"Y\": 0.492333322763443}]}, \"Id\": \"ca2d2093-1b7d-4e02-94cf-b82daa621eca\", \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 86.16154479980469, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0951097384095192, \"Height\": 0.02800000086426735, \"Left\": 0.05501968413591385, \"Top\": 0.492333322763443}, \"Polygon\": [{\"X\": 0.05501968413591385, \"Y\": 0.492333322763443}, {\"X\": 0.15012942254543304, \"Y\": 0.492333322763443}, {\"X\": 0.15012942254543304, \"Y\": 0.5203333497047424}, {\"X\": 0.05501968413591385, \"Y\": 0.5203333497047424}]}, \"Id\": \"9a6578a2-6925-4c4e-ab73-c86e40423d8a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a27b2f43-8b83-4a7f-a3cb-4b86c9697d81\", \"ca995f3a-59bb-4b38-81fa-ebe205456752\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 87.56148529052734, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09663502871990204, \"Height\": 0.02800000086426735, \"Left\": 0.15012942254543304, \"Top\": 0.492333322763443}, \"Polygon\": [{\"X\": 0.15012942254543304, \"Y\": 0.492333322763443}, {\"X\": 0.24676445126533508, \"Y\": 0.492333322763443}, {\"X\": 0.24676445126533508, \"Y\": 0.5203333497047424}, {\"X\": 0.15012942254543304, \"Y\": 0.5203333497047424}]}, \"Id\": \"09c3eca4-4027-4741-a813-67132e2afcd1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fd374d6d-ba87-4f89-8b87-0d069b24da31\", \"647076fd-8b0e-421f-b048-72805b18559b\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 92.0213394165039, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19197584688663483, \"Height\": 0.02800000086426735, \"Left\": 0.24676445126533508, \"Top\": 0.492333322763443}, \"Polygon\": [{\"X\": 0.24676445126533508, \"Y\": 0.492333322763443}, {\"X\": 0.4387402832508087, \"Y\": 0.492333322763443}, {\"X\": 0.4387402832508087, \"Y\": 0.5203333497047424}, {\"X\": 0.24676445126533508, \"Y\": 0.5203333497047424}]}, \"Id\": \"ebaa5ba0-7a8b-4be7-acbe-ceddb2ec0d97\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e928351a-90e9-4aef-9d5d-64d7e2b80fbb\", \"42dfa6e0-d91c-4f99-aec0-ebd9f10580a8\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 91.58892059326172, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19930975139141083, \"Height\": 0.02800000086426735, \"Left\": 0.4387402832508087, \"Top\": 0.492333322763443}, \"Polygon\": [{\"X\": 0.4387402832508087, \"Y\": 0.492333322763443}, {\"X\": 0.6380500197410583, \"Y\": 0.492333322763443}, {\"X\": 0.6380500197410583, \"Y\": 0.5203333497047424}, {\"X\": 0.4387402832508087, \"Y\": 0.5203333497047424}]}, \"Id\": \"0c1f94d8-d299-42e2-9686-29ffba02e115\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c78fd65-027d-44dd-a7a1-6d954ee1022f\", \"d0c76458-1452-4795-8fe1-55ba4fbc8cf4\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 90.49832153320312, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1891489028930664, \"Height\": 0.02800000086426735, \"Left\": 0.6380500197410583, \"Top\": 0.492333322763443}, \"Polygon\": [{\"X\": 0.6380500197410583, \"Y\": 0.492333322763443}, {\"X\": 0.8271989226341248, \"Y\": 0.492333322763443}, {\"X\": 0.8271989226341248, \"Y\": 0.5203333497047424}, {\"X\": 0.6380500197410583, \"Y\": 0.5203333497047424}]}, \"Id\": \"fd9e3e86-200a-4cd9-876d-2c10d5739887\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c877bc5-4500-40dc-ad7a-02304b7fe847\", \"92807fa8-92e7-4815-8e0d-bddd089553fb\", \"52c74858-2790-47b6-af03-0265307a9165\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 85.01354217529297, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0951097384095192, \"Height\": 0.02866666577756405, \"Left\": 0.05501968413591385, \"Top\": 0.5203333497047424}, \"Polygon\": [{\"X\": 0.05501968413591385, \"Y\": 0.5203333497047424}, {\"X\": 0.15012942254543304, \"Y\": 0.5203333497047424}, {\"X\": 0.15012942254543304, \"Y\": 0.5490000247955322}, {\"X\": 0.05501968413591385, \"Y\": 0.5490000247955322}]}, \"Id\": \"7107c6c3-ba22-45f6-818d-2c12e725dfe7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"798f6998-6e9b-4be1-bb43-328d6696a8c5\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 86.39483642578125, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09663502871990204, \"Height\": 0.02866666577756405, \"Left\": 0.15012942254543304, \"Top\": 0.5203333497047424}, \"Polygon\": [{\"X\": 0.15012942254543304, \"Y\": 0.5203333497047424}, {\"X\": 0.24676445126533508, \"Y\": 0.5203333497047424}, {\"X\": 0.24676445126533508, \"Y\": 0.5490000247955322}, {\"X\": 0.15012942254543304, \"Y\": 0.5490000247955322}]}, \"Id\": \"546a29b6-767e-4e5d-9863-24f5f71d94ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"466f641f-abae-45bb-98e4-1cac1e6a6189\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 90.7952651977539, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19197584688663483, \"Height\": 0.02866666577756405, \"Left\": 0.24676445126533508, \"Top\": 0.5203333497047424}, \"Polygon\": [{\"X\": 0.24676445126533508, \"Y\": 0.5203333497047424}, {\"X\": 0.4387402832508087, \"Y\": 0.5203333497047424}, {\"X\": 0.4387402832508087, \"Y\": 0.5490000247955322}, {\"X\": 0.24676445126533508, \"Y\": 0.5490000247955322}]}, \"Id\": \"1181e1c0-424e-4cc2-843a-5d7ada9deaaa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6137fcde-ab0c-474a-b931-2f0aaa5635cf\", \"f9e5b2f4-4402-4796-8d3c-0241411cc54c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 90.36860656738281, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19930975139141083, \"Height\": 0.02866666577756405, \"Left\": 0.4387402832508087, \"Top\": 0.5203333497047424}, \"Polygon\": [{\"X\": 0.4387402832508087, \"Y\": 0.5203333497047424}, {\"X\": 0.6380500197410583, \"Y\": 0.5203333497047424}, {\"X\": 0.6380500197410583, \"Y\": 0.5490000247955322}, {\"X\": 0.4387402832508087, \"Y\": 0.5490000247955322}]}, \"Id\": \"b245b56f-3ec8-447f-a523-4478c3b460a0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"00a0fd33-2974-452b-b823-a3072359cb0e\", \"a65e095c-023f-4014-8b46-c51275f18b28\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 89.29254150390625, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1891489028930664, \"Height\": 0.02866666577756405, \"Left\": 0.6380500197410583, \"Top\": 0.5203333497047424}, \"Polygon\": [{\"X\": 0.6380500197410583, \"Y\": 0.5203333497047424}, {\"X\": 0.8271989226341248, \"Y\": 0.5203333497047424}, {\"X\": 0.8271989226341248, \"Y\": 0.5490000247955322}, {\"X\": 0.6380500197410583, \"Y\": 0.5490000247955322}]}, \"Id\": \"e44a1e61-66b6-4ee6-869b-c8ff7772a1d1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a47c68e1-6735-4938-bc1e-a2aff43e7535\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 85.52276611328125, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0951097384095192, \"Height\": 0.026333333924412727, \"Left\": 0.05501968413591385, \"Top\": 0.5490000247955322}, \"Polygon\": [{\"X\": 0.05501968413591385, \"Y\": 0.5490000247955322}, {\"X\": 0.15012942254543304, \"Y\": 0.5490000247955322}, {\"X\": 0.15012942254543304, \"Y\": 0.5753333568572998}, {\"X\": 0.05501968413591385, \"Y\": 0.5753333568572998}]}, \"Id\": \"8eb319f5-7d4c-4fe9-9b99-77b27536496f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28a650f3-b271-4b83-b41e-b381f7f77a30\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 86.9123306274414, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09663502871990204, \"Height\": 0.026333333924412727, \"Left\": 0.15012942254543304, \"Top\": 0.5490000247955322}, \"Polygon\": [{\"X\": 0.15012942254543304, \"Y\": 0.5490000247955322}, {\"X\": 0.24676445126533508, \"Y\": 0.5490000247955322}, {\"X\": 0.24676445126533508, \"Y\": 0.5753333568572998}, {\"X\": 0.15012942254543304, \"Y\": 0.5753333568572998}]}, \"Id\": \"3b41a593-d814-449a-8929-c71f764aa0e7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"434e78da-d8c4-472f-8617-8438bb4e8b83\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 91.33911895751953, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19197584688663483, \"Height\": 0.026333333924412727, \"Left\": 0.24676445126533508, \"Top\": 0.5490000247955322}, \"Polygon\": [{\"X\": 0.24676445126533508, \"Y\": 0.5490000247955322}, {\"X\": 0.4387402832508087, \"Y\": 0.5490000247955322}, {\"X\": 0.4387402832508087, \"Y\": 0.5753333568572998}, {\"X\": 0.24676445126533508, \"Y\": 0.5753333568572998}]}, \"Id\": \"e46bd6f9-bf53-4a83-bacf-26d6a030125c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"09ac1f6e-56ef-466e-9d7e-05b25e566e3b\", \"206e8e5e-e000-41e9-8b25-69cd751fcaeb\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 90.90990447998047, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19930975139141083, \"Height\": 0.026333333924412727, \"Left\": 0.4387402832508087, \"Top\": 0.5490000247955322}, \"Polygon\": [{\"X\": 0.4387402832508087, \"Y\": 0.5490000247955322}, {\"X\": 0.6380500197410583, \"Y\": 0.5490000247955322}, {\"X\": 0.6380500197410583, \"Y\": 0.5753333568572998}, {\"X\": 0.4387402832508087, \"Y\": 0.5753333568572998}]}, \"Id\": \"6de95c06-a70b-443b-9aac-bab3e867f1ed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8651f63e-1bb1-4c1a-9310-7c025fe42dc7\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 89.82738494873047, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1891489028930664, \"Height\": 0.026333333924412727, \"Left\": 0.6380500197410583, \"Top\": 0.5490000247955322}, \"Polygon\": [{\"X\": 0.6380500197410583, \"Y\": 0.5490000247955322}, {\"X\": 0.8271989226341248, \"Y\": 0.5490000247955322}, {\"X\": 0.8271989226341248, \"Y\": 0.5753333568572998}, {\"X\": 0.6380500197410583, \"Y\": 0.5753333568572998}]}, \"Id\": \"4cd61848-45ad-49ba-9aa3-6b6c6e261db0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5461759-db5b-436e-a45a-a19bf23a40a4\", \"09b82405-d5b9-48aa-b9ef-d57f8851fd39\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 85.84630584716797, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0951097384095192, \"Height\": 0.02854667231440544, \"Left\": 0.05501968413591385, \"Top\": 0.5753333568572998}, \"Polygon\": [{\"X\": 0.05501968413591385, \"Y\": 0.5753333568572998}, {\"X\": 0.15012942254543304, \"Y\": 0.5753333568572998}, {\"X\": 0.15012942254543304, \"Y\": 0.603879988193512}, {\"X\": 0.05501968413591385, \"Y\": 0.603879988193512}]}, \"Id\": \"6ab43df3-b255-48da-8896-167be28a53ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"03c6e5c0-3f95-4a3a-a376-56e14ee6c4d2\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 87.24113464355469, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09663502871990204, \"Height\": 0.02854667231440544, \"Left\": 0.15012942254543304, \"Top\": 0.5753333568572998}, \"Polygon\": [{\"X\": 0.15012942254543304, \"Y\": 0.5753333568572998}, {\"X\": 0.24676445126533508, \"Y\": 0.5753333568572998}, {\"X\": 0.24676445126533508, \"Y\": 0.603879988193512}, {\"X\": 0.15012942254543304, \"Y\": 0.603879988193512}]}, \"Id\": \"973d4c56-5c34-4244-ab42-a9c9b4edc4ae\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1c240f32-0efd-4e1c-8572-0f8eed6acffc\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 91.68466186523438, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19197584688663483, \"Height\": 0.02854667231440544, \"Left\": 0.24676445126533508, \"Top\": 0.5753333568572998}, \"Polygon\": [{\"X\": 0.24676445126533508, \"Y\": 0.5753333568572998}, {\"X\": 0.4387402832508087, \"Y\": 0.5753333568572998}, {\"X\": 0.4387402832508087, \"Y\": 0.603879988193512}, {\"X\": 0.24676445126533508, \"Y\": 0.603879988193512}]}, \"Id\": \"2c2de9ed-4b32-4298-9bfb-7c5e70e89cb1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c8463e8-8d70-4d8d-a9a5-c5c5131a13ef\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 91.25382232666016, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.19930975139141083, \"Height\": 0.02854667231440544, \"Left\": 0.4387402832508087, \"Top\": 0.5753333568572998}, \"Polygon\": [{\"X\": 0.4387402832508087, \"Y\": 0.5753333568572998}, {\"X\": 0.6380500197410583, \"Y\": 0.5753333568572998}, {\"X\": 0.6380500197410583, \"Y\": 0.603879988193512}, {\"X\": 0.4387402832508087, \"Y\": 0.603879988193512}]}, \"Id\": \"a081ed04-c3ad-4bed-a0de-e52e29475388\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a3711c13-80b8-4072-9eb3-1ca535f3fe2d\", \"ea6311e1-e56d-4180-817a-ef96d2cdc74e\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 90.16722106933594, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1891489028930664, \"Height\": 0.02854667231440544, \"Left\": 0.6380500197410583, \"Top\": 0.5753333568572998}, \"Polygon\": [{\"X\": 0.6380500197410583, \"Y\": 0.5753333568572998}, {\"X\": 0.8271989226341248, \"Y\": 0.5753333568572998}, {\"X\": 0.8271989226341248, \"Y\": 0.603879988193512}, {\"X\": 0.6380500197410583, \"Y\": 0.603879988193512}]}, \"Id\": \"87ad0fb6-692b-44f5-9c6e-ef68bae051d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b549a727-75a4-45ca-adc7-9c235671fe23\", \"95fa8c10-c509-4897-887d-451e54b8e4ef\"]}], \"Page\": 2}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 92.64105224609375, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.7721792459487915, \"Height\": 0.03461853042244911, \"Left\": 0.05501968413591385, \"Top\": 0.4577147960662842}, \"Polygon\": [{\"X\": 0.05501968413591385, \"Y\": 0.4577147960662842}, {\"X\": 0.8271989226341248, \"Y\": 0.4577147960662842}, {\"X\": 0.8271989226341248, \"Y\": 0.492333322763443}, {\"X\": 0.05501968413591385, \"Y\": 0.492333322763443}]}, \"Id\": \"f711d4c7-920f-456d-9186-ea1d7c6542f2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4eb7b8bc-d55e-4ef7-b1e8-fe870437bc04\", \"cab8c45f-bc31-43bd-af8e-a2267b02c884\", \"c5561831-fed0-4a0c-9704-21128600f9d3\", \"c66fffc6-7d52-41d9-b36a-dd5888a3aa04\", \"ca2d2093-1b7d-4e02-94cf-b82daa621eca\"]}], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 99.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10713686048984528, \"Height\": 0.010338643565773964, \"Left\": 0.06583040207624435, \"Top\": 0.33660492300987244}, \"Polygon\": [{\"X\": 0.06583040207624435, \"Y\": 0.33660492300987244}, {\"X\": 0.17296725511550903, \"Y\": 0.33660492300987244}, {\"X\": 0.17296725511550903, \"Y\": 0.34694355726242065}, {\"X\": 0.06583040207624435, \"Y\": 0.34694355726242065}]}, \"Id\": \"f2749b18-d331-4097-bc52-95dfb3af959a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"5161c104-c602-4dc1-9b81-3b6854604eed\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"3834594c-6055-4bb0-b39e-aa4b3afdf69a\", \"77232435-5698-475e-9b92-084f9dd2f268\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 99.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.141670361161232, \"Height\": 0.016423320397734642, \"Left\": 0.18369169533252716, \"Top\": 0.3342030942440033}, \"Polygon\": [{\"X\": 0.18369169533252716, \"Y\": 0.3342030942440033}, {\"X\": 0.32536205649375916, \"Y\": 0.3342030942440033}, {\"X\": 0.32536205649375916, \"Y\": 0.3506264388561249}, {\"X\": 0.18369169533252716, \"Y\": 0.3506264388561249}]}, \"Id\": \"5161c104-c602-4dc1-9b81-3b6854604eed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e5f86e5b-1312-4956-b4e2-0f3ca2e1de84\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.055923447012901306, \"Height\": 0.00997631810605526, \"Left\": 0.17601485550403595, \"Top\": 0.4321088194847107}, \"Polygon\": [{\"X\": 0.17601485550403595, \"Y\": 0.4321088194847107}, {\"X\": 0.23193830251693726, \"Y\": 0.4321088194847107}, {\"X\": 0.23193830251693726, \"Y\": 0.4420851171016693}, {\"X\": 0.17601485550403595, \"Y\": 0.4420851171016693}]}, \"Id\": \"f31dcaa7-2dfe-46e0-8f49-3d890ef31f1d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"50dd34d7-f58c-43a9-8888-53aa817a7030\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"9f23b1f0-68b6-4e7c-a475-e45a0da95706\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 98.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01779904216527939, \"Height\": 0.013553385622799397, \"Left\": 0.15228977799415588, \"Top\": 0.4299262762069702}, \"Polygon\": [{\"X\": 0.15228977799415588, \"Y\": 0.4299262762069702}, {\"X\": 0.17008881270885468, \"Y\": 0.4299262762069702}, {\"X\": 0.17008881270885468, \"Y\": 0.44347965717315674}, {\"X\": 0.15228977799415588, \"Y\": 0.44347965717315674}]}, \"Id\": \"50dd34d7-f58c-43a9-8888-53aa817a7030\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"df351a88-30e6-4b1c-899d-dc244b782765\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 95.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050717804580926895, \"Height\": 0.009356445632874966, \"Left\": 0.07603278011083603, \"Top\": 0.4323573410511017}, \"Polygon\": [{\"X\": 0.07603278011083603, \"Y\": 0.4323573410511017}, {\"X\": 0.12675058841705322, \"Y\": 0.4323573410511017}, {\"X\": 0.12675058841705322, \"Y\": 0.44171378016471863}, {\"X\": 0.07603278011083603, \"Y\": 0.44171378016471863}]}, \"Id\": \"0fa1bb34-907d-4bf0-beda-89eff6f0e88f\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"8223578c-4fc4-4dea-acb6-5573e041daca\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"fc49eee9-2cde-4d9b-b3de-d123ed8a5807\", \"09cb9a7c-f9ec-4d7f-8e9b-ccb2bc053115\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 95.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019669832661747932, \"Height\": 0.013193969614803791, \"Left\": 0.053255271166563034, \"Top\": 0.42980557680130005}, \"Polygon\": [{\"X\": 0.053255271166563034, \"Y\": 0.42980557680130005}, {\"X\": 0.07292510569095612, \"Y\": 0.42980557680130005}, {\"X\": 0.07292510569095612, \"Y\": 0.44299954175949097}, {\"X\": 0.053255271166563034, \"Y\": 0.44299954175949097}]}, \"Id\": \"8223578c-4fc4-4dea-acb6-5573e041daca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9c805dd-c13a-4177-9d22-968a65c07293\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13477283716201782, \"Height\": 0.012241658754646778, \"Left\": 0.27731379866600037, \"Top\": 0.4321213662624359}, \"Polygon\": [{\"X\": 0.27731379866600037, \"Y\": 0.4321213662624359}, {\"X\": 0.4120866358280182, \"Y\": 0.4321213662624359}, {\"X\": 0.4120866358280182, \"Y\": 0.4443630278110504}, {\"X\": 0.27731379866600037, \"Y\": 0.4443630278110504}]}, \"Id\": \"c91c4c24-8a87-45b9-866a-e27ac81b0317\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"a05e3e15-4e98-4457-922d-3423da300431\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"c37eb033-3d56-4662-8e8d-e31577733cf1\", \"ac0124b3-553d-4684-998e-1d123eb2ebbe\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 94.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017255861312150955, \"Height\": 0.012995320372283459, \"Left\": 0.2538646161556244, \"Top\": 0.43035390973091125}, \"Polygon\": [{\"X\": 0.2538646161556244, \"Y\": 0.43035390973091125}, {\"X\": 0.27112048864364624, \"Y\": 0.43035390973091125}, {\"X\": 0.27112048864364624, \"Y\": 0.4433492422103882}, {\"X\": 0.2538646161556244, \"Y\": 0.4433492422103882}]}, \"Id\": \"a05e3e15-4e98-4457-922d-3423da300431\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"351fe086-e59c-4eca-8aef-7bdbf4630a58\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 92.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10358381271362305, \"Height\": 0.010637654922902584, \"Left\": 0.06262556463479996, \"Top\": 0.36205774545669556}, \"Polygon\": [{\"X\": 0.06262556463479996, \"Y\": 0.36205774545669556}, {\"X\": 0.1662093847990036, \"Y\": 0.36205774545669556}, {\"X\": 0.1662093847990036, \"Y\": 0.3726953864097595}, {\"X\": 0.06262556463479996, \"Y\": 0.3726953864097595}]}, \"Id\": \"b84ce039-4070-4cb2-9b9a-e2eebb4de445\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e98e06c6-ca68-445c-b590-0e2135652754\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"f2d0be9d-06ad-480e-9638-f4e271250e66\", \"37397041-ec93-4c6f-a93c-ede49a391a44\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 92.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.5212793350219727, \"Height\": 0.025542765855789185, \"Left\": 0.16962143778800964, \"Top\": 0.3568418323993683}, \"Polygon\": [{\"X\": 0.16962143778800964, \"Y\": 0.3568418323993683}, {\"X\": 0.6909007430076599, \"Y\": 0.3568418323993683}, {\"X\": 0.6909007430076599, \"Y\": 0.38238459825515747}, {\"X\": 0.16962143778800964, \"Y\": 0.38238459825515747}]}, \"Id\": \"e98e06c6-ca68-445c-b590-0e2135652754\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"12af6e62-448a-42e3-bfe7-d67c594c7d08\", \"4c68c247-8205-4067-928a-3dd976b10401\", \"78123da2-5805-46aa-9337-772d9fbf790c\", \"3aaacfcc-d784-4ba5-b08e-d20cdaddc1ef\", \"0521443a-df22-495e-b2b0-004f01ecc329\", \"65e66ebd-81b1-4b0b-91e2-7ef6e3a49a81\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 81.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07533171772956848, \"Height\": 0.010497619397938251, \"Left\": 0.06731601059436798, \"Top\": 0.31128838658332825}, \"Polygon\": [{\"X\": 0.06731601059436798, \"Y\": 0.31128838658332825}, {\"X\": 0.14264772832393646, \"Y\": 0.31128838658332825}, {\"X\": 0.14264772832393646, \"Y\": 0.3217860162258148}, {\"X\": 0.06731601059436798, \"Y\": 0.3217860162258148}]}, \"Id\": \"c64af276-6fa6-4120-9420-09861e984c0a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"5863e9bd-3f59-49d3-b229-c20ad1483a1b\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"016c9452-9bdf-4b8c-ada1-bf91f851b4c0\", \"3186a445-fc48-4824-8282-32eb90befb24\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 81.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06390571594238281, \"Height\": 0.009884989820420742, \"Left\": 0.14180217683315277, \"Top\": 0.31160736083984375}, \"Polygon\": [{\"X\": 0.14180217683315277, \"Y\": 0.31160736083984375}, {\"X\": 0.20570789277553558, \"Y\": 0.31160736083984375}, {\"X\": 0.20570789277553558, \"Y\": 0.32149234414100647}, {\"X\": 0.14180217683315277, \"Y\": 0.32149234414100647}]}, \"Id\": \"5863e9bd-3f59-49d3-b229-c20ad1483a1b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ade337b8-010a-4feb-800c-aa65d05150b0\", \"f04a0358-67f5-4b11-a017-e688f8ad486c\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 34.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06980293989181519, \"Height\": 0.010341146029531956, \"Left\": 0.6464930176734924, \"Top\": 0.5248165130615234}, \"Polygon\": [{\"X\": 0.6464930176734924, \"Y\": 0.5248165130615234}, {\"X\": 0.7162959575653076, \"Y\": 0.5248165130615234}, {\"X\": 0.7162959575653076, \"Y\": 0.5351576805114746}, {\"X\": 0.6464930176734924, \"Y\": 0.5351576805114746}]}, \"Id\": \"7b9517a2-342d-42b7-aec9-e45d3ce9c72f\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"f4c42109-76e6-45dd-a2ee-9cf26b93f3cb\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"a47c68e1-6735-4938-bc1e-a2aff43e7535\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 34.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.177845761179924, \"Height\": 0.048636190593242645, \"Left\": 0.6450465321540833, \"Top\": 0.5568104386329651}, \"Polygon\": [{\"X\": 0.6450465321540833, \"Y\": 0.5568104386329651}, {\"X\": 0.8228923082351685, \"Y\": 0.5568104386329651}, {\"X\": 0.8228923082351685, \"Y\": 0.6054466366767883}, {\"X\": 0.6450465321540833, \"Y\": 0.6054466366767883}]}, \"Id\": \"f4c42109-76e6-45dd-a2ee-9cf26b93f3cb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5461759-db5b-436e-a45a-a19bf23a40a4\", \"09b82405-d5b9-48aa-b9ef-d57f8851fd39\", \"b549a727-75a4-45ca-adc7-9c235671fe23\", \"95fa8c10-c509-4897-887d-451e54b8e4ef\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 32.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10734730213880539, \"Height\": 0.010611409321427345, \"Left\": 0.44725868105888367, \"Top\": 0.5252224802970886}, \"Polygon\": [{\"X\": 0.44725868105888367, \"Y\": 0.5252224802970886}, {\"X\": 0.5546059608459473, \"Y\": 0.5252224802970886}, {\"X\": 0.5546059608459473, \"Y\": 0.5358338356018066}, {\"X\": 0.44725868105888367, \"Y\": 0.5358338356018066}]}, \"Id\": \"ddfefa61-491d-406c-ae61-939bac45823f\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"60e91f6e-3fcc-4ef5-9b22-051a54226f7d\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"00a0fd33-2974-452b-b823-a3072359cb0e\", \"a65e095c-023f-4014-8b46-c51275f18b28\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 32.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15746796131134033, \"Height\": 0.04983854293823242, \"Left\": 0.4436352252960205, \"Top\": 0.5555751919746399}, \"Polygon\": [{\"X\": 0.4436352252960205, \"Y\": 0.5555751919746399}, {\"X\": 0.6011031866073608, \"Y\": 0.5555751919746399}, {\"X\": 0.6011031866073608, \"Y\": 0.6054137349128723}, {\"X\": 0.4436352252960205, \"Y\": 0.6054137349128723}]}, \"Id\": \"60e91f6e-3fcc-4ef5-9b22-051a54226f7d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8651f63e-1bb1-4c1a-9310-7c025fe42dc7\", \"a3711c13-80b8-4072-9eb3-1ca535f3fe2d\", \"ea6311e1-e56d-4180-817a-ef96d2cdc74e\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"009026ef-b2dd-4bae-818e-d7cd339046e2\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"009026ef-b2dd-4bae-818e-d7cd339046e2\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"238450\", \"date\": \"Fri, 26 Aug 2022 18:31:23 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/multi-tables-multi-page-sample.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 3}, \"JobStatus\": \"SUCCEEDED\", \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.000400237477151677, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.0005257856100797653}, {\"X\": 0.9995997548103333, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.9994742274284363}]}, \"Id\": \"9bfbb45f-c0b9-464d-bf68-cbb3ec6915aa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b30a4e21-3bc1-4470-adf1-ae159098a7e5\", \"1308e8d5-755f-4cf7-902f-d5f32e213045\", \"588a5356-c640-40c1-8926-63e56bdda41e\", \"82dd0ad6-3f9e-4bfc-8079-475f3236fdb9\", \"a7b9e62b-1cce-42ba-9dd4-62fe2e6ff60d\", \"809890c9-1be8-4251-8cbf-00ceb96541f0\", \"0fddcbaf-529e-425a-a191-e3624d0ec445\", \"d0e25bb0-8f45-4c91-8f8e-ff9dc9cd57f1\", \"661b4a26-e901-433d-9b55-d7e440c47037\", \"b9d9c437-7243-4294-a8e7-526175d088f6\", \"4894d2ba-0479-4196-9cbd-c0fea4d28762\", \"97a63c27-4fc4-490e-9efd-3dafa29e0079\", \"e445030d-9c67-4786-b918-afa23735dbc8\", \"07897c5a-df3e-4e36-aa44-27398d79c026\", \"13c55c7a-656d-455c-b9f2-539896bac5ea\", \"d6738d51-c3df-493f-a0d1-7fb2f5f7dd8b\", \"76fc8301-c6ba-4735-a0cd-26c0c7695350\", \"767a79d5-2b39-4015-86d8-b4c123c13f48\", \"e4637441-20d0-4032-a0d0-b4a2ab561c73\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.94975280761719, \"Text\": \"This is a test\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09039883315563202, \"Height\": 0.012123295105993748, \"Left\": 0.11696350574493408, \"Top\": 0.09391415119171143}, \"Polygon\": [{\"X\": 0.11723154038190842, \"Y\": 0.09391415119171143}, {\"X\": 0.2073623389005661, \"Y\": 0.09525132924318314}, {\"X\": 0.20709429681301117, \"Y\": 0.1060374453663826}, {\"X\": 0.11696350574493408, \"Y\": 0.10470027476549149}]}, \"Id\": \"b30a4e21-3bc1-4470-adf1-ae159098a7e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fce84e04-82bf-41b7-af8d-2cc1c85fa2d4\", \"5b167cb7-ba3b-4413-b8c4-e0a612b462a0\", \"1f4f9807-2b31-450a-b4b0-28c60411384a\", \"7aab73a9-7838-46e7-bb67-5a947c0f6759\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65319061279297, \"Text\": \"Table 1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05437193810939789, \"Height\": 0.01138316560536623, \"Left\": 0.11648466438055038, \"Top\": 0.7754037976264954}, \"Polygon\": [{\"X\": 0.11674758791923523, \"Y\": 0.7754037976264954}, {\"X\": 0.17085659503936768, \"Y\": 0.7762065529823303}, {\"X\": 0.17059367895126343, \"Y\": 0.7867869734764099}, {\"X\": 0.11648466438055038, \"Y\": 0.785984218120575}]}, \"Id\": \"1308e8d5-755f-4cf7-902f-d5f32e213045\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b57380e3-e707-42c6-bd61-71a8e79c7a41\", \"67182cd4-88d8-4bdc-84cb-3a3edae1e34d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88773345947266, \"Text\": \"Row1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040959183126688004, \"Height\": 0.012133519165217876, \"Left\": 0.1271905153989792, \"Top\": 0.8327863812446594}, \"Polygon\": [{\"X\": 0.1274770349264145, \"Y\": 0.8327863812446594}, {\"X\": 0.1681496948003769, \"Y\": 0.8333897590637207}, {\"X\": 0.1678631752729416, \"Y\": 0.8449198603630066}, {\"X\": 0.1271905153989792, \"Y\": 0.8443164825439453}]}, \"Id\": \"588a5356-c640-40c1-8926-63e56bdda41e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11dfc512-dd7c-405c-b4c5-218505b4ad8e\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 94.79811096191406, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05145234242081642, \"Height\": 0.012839102186262608, \"Left\": 0.27896225452423096, \"Top\": 0.8323113918304443}, \"Polygon\": [{\"X\": 0.2792624533176422, \"Y\": 0.8323113918304443}, {\"X\": 0.3304145932197571, \"Y\": 0.8330702781677246}, {\"X\": 0.3301143944263458, \"Y\": 0.8451505303382874}, {\"X\": 0.27896225452423096, \"Y\": 0.8443916440010071}]}, \"Id\": \"82dd0ad6-3f9e-4bfc-8079-475f3236fdb9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fe4c0428-3162-459b-96ab-bab8ca1466b1\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82137298583984, \"Text\": \"Row2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057870805263519, \"Height\": 0.011043025180697441, \"Left\": 0.12680980563163757, \"Top\": 0.8503602743148804}, \"Polygon\": [{\"X\": 0.127069354057312, \"Y\": 0.8503602743148804}, {\"X\": 0.16738851368427277, \"Y\": 0.8509584665298462}, {\"X\": 0.16712895035743713, \"Y\": 0.8614032864570618}, {\"X\": 0.12680980563163757, \"Y\": 0.8608051538467407}]}, \"Id\": \"a7b9e62b-1cce-42ba-9dd4-62fe2e6ff60d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1546013e-1a39-4bf5-ae1d-048821be79be\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 96.68659973144531, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050711557269096375, \"Height\": 0.013867169618606567, \"Left\": 0.2793285548686981, \"Top\": 0.8495529890060425}, \"Polygon\": [{\"X\": 0.2796545922756195, \"Y\": 0.8495529890060425}, {\"X\": 0.3300400972366333, \"Y\": 0.8503004908561707}, {\"X\": 0.3297140896320343, \"Y\": 0.8634201884269714}, {\"X\": 0.2793285548686981, \"Y\": 0.8626726269721985}]}, \"Id\": \"809890c9-1be8-4251-8cbf-00ceb96541f0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88434600830078, \"Text\": \"Row3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04029073938727379, \"Height\": 0.011043551377952099, \"Left\": 0.12695689499378204, \"Top\": 0.8679498434066772}, \"Polygon\": [{\"X\": 0.12721656262874603, \"Y\": 0.8679498434066772}, {\"X\": 0.16724762320518494, \"Y\": 0.8685437440872192}, {\"X\": 0.16698795557022095, \"Y\": 0.8789933919906616}, {\"X\": 0.12695689499378204, \"Y\": 0.8783994913101196}]}, \"Id\": \"0fddcbaf-529e-425a-a191-e3624d0ec445\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a82b262-e3e0-4dbe-aeee-83f644fd9e22\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 92.30506896972656, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051766179502010345, \"Height\": 0.01284286379814148, \"Left\": 0.2789941430091858, \"Top\": 0.8672682642936707}, \"Polygon\": [{\"X\": 0.27929434180259705, \"Y\": 0.8672682642936707}, {\"X\": 0.33076032996177673, \"Y\": 0.8680317997932434}, {\"X\": 0.33046016097068787, \"Y\": 0.8801111578941345}, {\"X\": 0.2789941430091858, \"Y\": 0.8793476223945618}]}, \"Id\": \"d0e25bb0-8f45-4c91-8f8e-ff9dc9cd57f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"08034517-396e-4ffd-ad39-c248932f5050\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 99.96064758300781, \"Text\": \"Row4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057518392801285, \"Height\": 0.010992870666086674, \"Left\": 0.12726719677448273, \"Top\": 0.8855724930763245}, \"Polygon\": [{\"X\": 0.12752550840377808, \"Y\": 0.8855724930763245}, {\"X\": 0.16784238815307617, \"Y\": 0.8861706852912903}, {\"X\": 0.16758407652378082, \"Y\": 0.8965653777122498}, {\"X\": 0.12726719677448273, \"Y\": 0.8959672451019287}]}, \"Id\": \"661b4a26-e901-433d-9b55-d7e440c47037\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ef8bd19c-2a40-427d-93ce-cdebfb3919cc\"]}], \"Page\": 1}, {\"BlockType\": \"LINE\", \"Confidence\": 97.8868637084961, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050722748041152954, \"Height\": 0.013898242264986038, \"Left\": 0.2795186936855316, \"Top\": 0.8848941922187805}, \"Polygon\": [{\"X\": 0.2798455059528351, \"Y\": 0.8848941922187805}, {\"X\": 0.33024144172668457, \"Y\": 0.885641872882843}, {\"X\": 0.3299146592617035, \"Y\": 0.8987924456596375}, {\"X\": 0.2795186936855316, \"Y\": 0.898044764995575}]}, \"Id\": \"b9d9c437-7243-4294-a8e7-526175d088f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"611d80e9-835e-4819-b393-73015c209508\"]}], \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91342163085938, \"Text\": \"This\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03030039556324482, \"Height\": 0.011231677606701851, \"Left\": 0.11696350574493408, \"Top\": 0.09391415119171143}, \"Polygon\": [{\"X\": 0.11723154038190842, \"Y\": 0.09391415119171143}, {\"X\": 0.14726389944553375, \"Y\": 0.09435971081256866}, {\"X\": 0.14699585735797882, \"Y\": 0.10514583438634872}, {\"X\": 0.11696350574493408, \"Y\": 0.10470027476549149}]}, \"Id\": \"fce84e04-82bf-41b7-af8d-2cc1c85fa2d4\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98242950439453, \"Text\": \"is\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011502022854983807, \"Height\": 0.010372092947363853, \"Left\": 0.15074943006038666, \"Top\": 0.09461034834384918}, \"Polygon\": [{\"X\": 0.15100303292274475, \"Y\": 0.09461034834384918}, {\"X\": 0.16225145757198334, \"Y\": 0.09477723389863968}, {\"X\": 0.16199785470962524, \"Y\": 0.10498244315385818}, {\"X\": 0.15074943006038666, \"Y\": 0.10481556504964828}]}, \"Id\": \"5b167cb7-ba3b-4413-b8c4-e0a612b462a0\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94478607177734, \"Text\": \"a\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008565030060708523, \"Height\": 0.008241244591772556, \"Left\": 0.16605357825756073, \"Top\": 0.09673254936933517}, \"Polygon\": [{\"X\": 0.16625528037548065, \"Y\": 0.09673254936933517}, {\"X\": 0.17461860179901123, \"Y\": 0.09685663133859634}, {\"X\": 0.17441688477993011, \"Y\": 0.10497379302978516}, {\"X\": 0.16605357825756073, \"Y\": 0.10484971851110458}]}, \"Id\": \"1f4f9807-2b31-450a-b4b0-28c60411384a\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95838165283203, \"Text\": \"test\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.029635604470968246, \"Height\": 0.01048458181321621, \"Left\": 0.17772550880908966, \"Top\": 0.09486488997936249}, \"Polygon\": [{\"X\": 0.17797522246837616, \"Y\": 0.09486488997936249}, {\"X\": 0.2073611170053482, \"Y\": 0.09530086070299149}, {\"X\": 0.2071114033460617, \"Y\": 0.10534947365522385}, {\"X\": 0.17772550880908966, \"Y\": 0.10491351038217545}]}, \"Id\": \"7aab73a9-7838-46e7-bb67-5a947c0f6759\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83452606201172, \"Text\": \"Table\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0411611869931221, \"Height\": 0.011187171563506126, \"Left\": 0.11648466438055038, \"Top\": 0.7754037976264954}, \"Polygon\": [{\"X\": 0.11674758791923523, \"Y\": 0.7754037976264954}, {\"X\": 0.15764585137367249, \"Y\": 0.7760105729103088}, {\"X\": 0.15738292038440704, \"Y\": 0.7865909934043884}, {\"X\": 0.11648466438055038, \"Y\": 0.785984218120575}]}, \"Id\": \"b57380e3-e707-42c6-bd61-71a8e79c7a41\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.47185516357422, \"Text\": \"1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009038480930030346, \"Height\": 0.010187939740717411, \"Left\": 0.16181714832782745, \"Top\": 0.7761155962944031}, \"Polygon\": [{\"X\": 0.16206707060337067, \"Y\": 0.7761155962944031}, {\"X\": 0.17085562646389008, \"Y\": 0.7762459516525269}, {\"X\": 0.17060568928718567, \"Y\": 0.7863035202026367}, {\"X\": 0.16181714832782745, \"Y\": 0.7861731052398682}]}, \"Id\": \"67182cd4-88d8-4bdc-84cb-3a3edae1e34d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88773345947266, \"Text\": \"Row1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040959183126688004, \"Height\": 0.012133519165217876, \"Left\": 0.1271905153989792, \"Top\": 0.8327863812446594}, \"Polygon\": [{\"X\": 0.1274770349264145, \"Y\": 0.8327863812446594}, {\"X\": 0.1681496948003769, \"Y\": 0.8333897590637207}, {\"X\": 0.1678631752729416, \"Y\": 0.8449198603630066}, {\"X\": 0.1271905153989792, \"Y\": 0.8443164825439453}]}, \"Id\": \"11dfc512-dd7c-405c-b4c5-218505b4ad8e\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 94.79811096191406, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05145234242081642, \"Height\": 0.012839102186262608, \"Left\": 0.27896225452423096, \"Top\": 0.8323113918304443}, \"Polygon\": [{\"X\": 0.2792624533176422, \"Y\": 0.8323113918304443}, {\"X\": 0.3304145932197571, \"Y\": 0.8330702781677246}, {\"X\": 0.3301143944263458, \"Y\": 0.8451505303382874}, {\"X\": 0.27896225452423096, \"Y\": 0.8443916440010071}]}, \"Id\": \"fe4c0428-3162-459b-96ab-bab8ca1466b1\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82137298583984, \"Text\": \"Row2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057870805263519, \"Height\": 0.011043025180697441, \"Left\": 0.12680980563163757, \"Top\": 0.8503602743148804}, \"Polygon\": [{\"X\": 0.127069354057312, \"Y\": 0.8503602743148804}, {\"X\": 0.16738851368427277, \"Y\": 0.8509584665298462}, {\"X\": 0.16712895035743713, \"Y\": 0.8614032864570618}, {\"X\": 0.12680980563163757, \"Y\": 0.8608051538467407}]}, \"Id\": \"1546013e-1a39-4bf5-ae1d-048821be79be\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 96.68659973144531, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050711557269096375, \"Height\": 0.013867169618606567, \"Left\": 0.2793285548686981, \"Top\": 0.8495529890060425}, \"Polygon\": [{\"X\": 0.2796545922756195, \"Y\": 0.8495529890060425}, {\"X\": 0.3300400972366333, \"Y\": 0.8503004908561707}, {\"X\": 0.3297140896320343, \"Y\": 0.8634201884269714}, {\"X\": 0.2793285548686981, \"Y\": 0.8626726269721985}]}, \"Id\": \"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88434600830078, \"Text\": \"Row3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04029073938727379, \"Height\": 0.011043551377952099, \"Left\": 0.12695689499378204, \"Top\": 0.8679498434066772}, \"Polygon\": [{\"X\": 0.12721656262874603, \"Y\": 0.8679498434066772}, {\"X\": 0.16724762320518494, \"Y\": 0.8685437440872192}, {\"X\": 0.16698795557022095, \"Y\": 0.8789933919906616}, {\"X\": 0.12695689499378204, \"Y\": 0.8783994913101196}]}, \"Id\": \"6a82b262-e3e0-4dbe-aeee-83f644fd9e22\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 92.30506896972656, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051766179502010345, \"Height\": 0.01284286379814148, \"Left\": 0.2789941430091858, \"Top\": 0.8672682642936707}, \"Polygon\": [{\"X\": 0.27929434180259705, \"Y\": 0.8672682642936707}, {\"X\": 0.33076032996177673, \"Y\": 0.8680317997932434}, {\"X\": 0.33046016097068787, \"Y\": 0.8801111578941345}, {\"X\": 0.2789941430091858, \"Y\": 0.8793476223945618}]}, \"Id\": \"08034517-396e-4ffd-ad39-c248932f5050\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96064758300781, \"Text\": \"Row4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04057518392801285, \"Height\": 0.010992870666086674, \"Left\": 0.12726719677448273, \"Top\": 0.8855724930763245}, \"Polygon\": [{\"X\": 0.12752550840377808, \"Y\": 0.8855724930763245}, {\"X\": 0.16784238815307617, \"Y\": 0.8861706852912903}, {\"X\": 0.16758407652378082, \"Y\": 0.8965653777122498}, {\"X\": 0.12726719677448273, \"Y\": 0.8959672451019287}]}, \"Id\": \"ef8bd19c-2a40-427d-93ce-cdebfb3919cc\", \"Page\": 1}, {\"BlockType\": \"WORD\", \"Confidence\": 97.8868637084961, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050722748041152954, \"Height\": 0.013898242264986038, \"Left\": 0.2795186936855316, \"Top\": 0.8848941922187805}, \"Polygon\": [{\"X\": 0.2798455059528351, \"Y\": 0.8848941922187805}, {\"X\": 0.33024144172668457, \"Y\": 0.885641872882843}, {\"X\": 0.3299146592617035, \"Y\": 0.8987924456596375}, {\"X\": 0.2795186936855316, \"Y\": 0.898044764995575}]}, \"Id\": \"611d80e9-835e-4819-b393-73015c209508\", \"Page\": 1}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.88973236083984, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30756470561027527, \"Height\": 0.07569561898708344, \"Left\": 0.1173487976193428, \"Top\": 0.8275023698806763}, \"Polygon\": [{\"X\": 0.1191171184182167, \"Y\": 0.8275023698806763}, {\"X\": 0.4249134957790375, \"Y\": 0.8320391178131104}, {\"X\": 0.4231451749801636, \"Y\": 0.9031980037689209}, {\"X\": 0.1173487976193428, \"Y\": 0.898661196231842}]}, \"Id\": \"4894d2ba-0479-4196-9cbd-c0fea4d28762\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e0f87aa6-785e-499c-97ce-45cd54e81e46\", \"37d4aa52-4dd1-4d75-a36c-45d11bf87ff9\", \"fba9ab24-25ee-44c8-94e8-b6fa5384045a\", \"9c55a617-03db-46ef-b88f-7bb15d63612a\", \"b3eb8a3c-9d15-470b-b484-2d4b1007edca\", \"95d42fcd-3df2-4695-ab93-866f075f878e\", \"79b64ab0-9743-4212-9fe6-a32a4ea93c29\", \"af448929-2e1e-499b-bbb0-c4fb9597a411\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 83.76207733154297, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15188688039779663, \"Height\": 0.019870350137352943, \"Left\": 0.11867917329072952, \"Top\": 0.8275023698806763}, \"Polygon\": [{\"X\": 0.1191171184182167, \"Y\": 0.8275023698806763}, {\"X\": 0.27056604623794556, \"Y\": 0.8297492861747742}, {\"X\": 0.2701281011104584, \"Y\": 0.8473727107048035}, {\"X\": 0.11867917329072952, \"Y\": 0.8451258540153503}]}, \"Id\": \"e0f87aa6-785e-499c-97ce-45cd54e81e46\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"11dfc512-dd7c-405c-b4c5-218505b4ad8e\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 94.88778686523438, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547853797674179, \"Height\": 0.01991335116326809, \"Left\": 0.27012813091278076, \"Top\": 0.8297492861747742}, \"Polygon\": [{\"X\": 0.27056607604026794, \"Y\": 0.8297492861747742}, {\"X\": 0.4249134957790375, \"Y\": 0.8320391774177551}, {\"X\": 0.4244755506515503, \"Y\": 0.8496626019477844}, {\"X\": 0.27012813091278076, \"Y\": 0.8473727107048035}]}, \"Id\": \"37d4aa52-4dd1-4d75-a36c-45d11bf87ff9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fe4c0428-3162-459b-96ab-bab8ca1466b1\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.21428680419922, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15188688039779663, \"Height\": 0.019870350137352943, \"Left\": 0.11824122071266174, \"Top\": 0.8451257944107056}, \"Polygon\": [{\"X\": 0.11867917329072952, \"Y\": 0.8451257944107056}, {\"X\": 0.2701281011104584, \"Y\": 0.8473727107048035}, {\"X\": 0.2696901559829712, \"Y\": 0.8649961352348328}, {\"X\": 0.11824122071266174, \"Y\": 0.8627492785453796}]}, \"Id\": \"fba9ab24-25ee-44c8-94e8-b6fa5384045a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1546013e-1a39-4bf5-ae1d-048821be79be\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.70003509521484, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547853797674179, \"Height\": 0.01991335116326809, \"Left\": 0.2696901857852936, \"Top\": 0.8473727107048035}, \"Polygon\": [{\"X\": 0.27012813091278076, \"Y\": 0.8473727107048035}, {\"X\": 0.4244755506515503, \"Y\": 0.8496626019477844}, {\"X\": 0.4240376055240631, \"Y\": 0.8672860860824585}, {\"X\": 0.2696901857852936, \"Y\": 0.8649961948394775}]}, \"Id\": \"9c55a617-03db-46ef-b88f-7bb15d63612a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.45426177978516, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15188688039779663, \"Height\": 0.019870350137352943, \"Left\": 0.11780327558517456, \"Top\": 0.8627492785453796}, \"Polygon\": [{\"X\": 0.11824122816324234, \"Y\": 0.8627492785453796}, {\"X\": 0.2696901559829712, \"Y\": 0.8649961352348328}, {\"X\": 0.269252210855484, \"Y\": 0.8826196193695068}, {\"X\": 0.11780327558517456, \"Y\": 0.8803727030754089}]}, \"Id\": \"b3eb8a3c-9d15-470b-b484-2d4b1007edca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a82b262-e3e0-4dbe-aeee-83f644fd9e22\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 96.84454345703125, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1547853797674179, \"Height\": 0.01991335116326809, \"Left\": 0.2692522406578064, \"Top\": 0.8649961352348328}, \"Polygon\": [{\"X\": 0.2696901857852936, \"Y\": 0.8649961352348328}, {\"X\": 0.4240376055240631, \"Y\": 0.8672860264778137}, {\"X\": 0.4235996603965759, \"Y\": 0.8849095106124878}, {\"X\": 0.2692522406578064, \"Y\": 0.8826196193695068}]}, \"Id\": \"95d42fcd-3df2-4695-ab93-866f075f878e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"08034517-396e-4ffd-ad39-c248932f5050\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 93.50825500488281, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1519034057855606, \"Height\": 0.02053534798324108, \"Left\": 0.1173488050699234, \"Top\": 0.8803727626800537}, \"Polygon\": [{\"X\": 0.11780327558517456, \"Y\": 0.8803727626800537}, {\"X\": 0.269252210855484, \"Y\": 0.8826196789741516}, {\"X\": 0.26879772543907166, \"Y\": 0.9009081125259399}, {\"X\": 0.1173488050699234, \"Y\": 0.898661196231842}]}, \"Id\": \"79b64ab0-9743-4212-9fe6-a32a4ea93c29\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ef8bd19c-2a40-427d-93ce-cdebfb3919cc\"]}], \"Page\": 1}, {\"BlockType\": \"CELL\", \"Confidence\": 73.1482162475586, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15480190515518188, \"Height\": 0.020578349009156227, \"Left\": 0.26879775524139404, \"Top\": 0.8826196789741516}, \"Polygon\": [{\"X\": 0.269252210855484, \"Y\": 0.8826196789741516}, {\"X\": 0.4235996603965759, \"Y\": 0.8849095702171326}, {\"X\": 0.42314520478248596, \"Y\": 0.9031980037689209}, {\"X\": 0.26879775524139404, \"Y\": 0.9009081125259399}]}, \"Id\": \"af448929-2e1e-499b-bbb0-c4fb9597a411\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"611d80e9-835e-4819-b393-73015c209508\"]}], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 38.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03106166608631611, \"Height\": 0.011229692958295345, \"Left\": 0.280687153339386, \"Top\": 0.8330909013748169}, \"Polygon\": [{\"X\": 0.28095486760139465, \"Y\": 0.8330909013748169}, {\"X\": 0.31174883246421814, \"Y\": 0.8335477709770203}, {\"X\": 0.3114811182022095, \"Y\": 0.8443205952644348}, {\"X\": 0.280687153339386, \"Y\": 0.8438637256622314}]}, \"Id\": \"97a63c27-4fc4-490e-9efd-3dafa29e0079\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e445030d-9c67-4786-b918-afa23735dbc8\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"fe4c0428-3162-459b-96ab-bab8ca1466b1\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 38.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009743972681462765, \"Height\": 0.009884046390652657, \"Left\": 0.3206232786178589, \"Top\": 0.833858847618103}, \"Polygon\": [{\"X\": 0.3208653926849365, \"Y\": 0.833858847618103}, {\"X\": 0.3303672671318054, \"Y\": 0.8339998126029968}, {\"X\": 0.3301251232624054, \"Y\": 0.843742847442627}, {\"X\": 0.3206232786178589, \"Y\": 0.8436018824577332}]}, \"Id\": \"e445030d-9c67-4786-b918-afa23735dbc8\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 36.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04079622030258179, \"Height\": 0.01292468886822462, \"Left\": 0.28063613176345825, \"Top\": 0.8501228094100952}, \"Polygon\": [{\"X\": 0.2809423804283142, \"Y\": 0.8501228094100952}, {\"X\": 0.32143235206604004, \"Y\": 0.8507235050201416}, {\"X\": 0.3211261034011841, \"Y\": 0.8630474805831909}, {\"X\": 0.28063613176345825, \"Y\": 0.8624467849731445}]}, \"Id\": \"07897c5a-df3e-4e36-aa44-27398d79c026\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"13c55c7a-656d-455c-b9f2-539896bac5ea\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"2e6fb908-b7cf-4a16-b9dc-a60e3709216d\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 36.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01011290866881609, \"Height\": 0.01071246899664402, \"Left\": 0.3204089105129242, \"Top\": 0.8513528108596802}, \"Polygon\": [{\"X\": 0.3206714987754822, \"Y\": 0.8513528108596802}, {\"X\": 0.330521821975708, \"Y\": 0.8514989614486694}, {\"X\": 0.33025923371315, \"Y\": 0.862065315246582}, {\"X\": 0.3204089105129242, \"Y\": 0.8619191646575928}]}, \"Id\": \"13c55c7a-656d-455c-b9f2-539896bac5ea\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 34.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03632185980677605, \"Height\": 0.012207869440317154, \"Left\": 0.2807246148586273, \"Top\": 0.8683528900146484}, \"Polygon\": [{\"X\": 0.28101471066474915, \"Y\": 0.8683528900146484}, {\"X\": 0.31704646348953247, \"Y\": 0.8688874840736389}, {\"X\": 0.31675639748573303, \"Y\": 0.8805608153343201}, {\"X\": 0.2807246148586273, \"Y\": 0.8800262212753296}]}, \"Id\": \"d6738d51-c3df-493f-a0d1-7fb2f5f7dd8b\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"76fc8301-c6ba-4735-a0cd-26c0c7695350\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"08034517-396e-4ffd-ad39-c248932f5050\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 34.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010387061163783073, \"Height\": 0.010699293576180935, \"Left\": 0.321044385433197, \"Top\": 0.8691129684448242}, \"Polygon\": [{\"X\": 0.3213065266609192, \"Y\": 0.8691129684448242}, {\"X\": 0.33143144845962524, \"Y\": 0.8692631721496582}, {\"X\": 0.3311693072319031, \"Y\": 0.8798123002052307}, {\"X\": 0.321044385433197, \"Y\": 0.8796620965003967}]}, \"Id\": \"76fc8301-c6ba-4735-a0cd-26c0c7695350\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 24.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0325065441429615, \"Height\": 0.011595095507800579, \"Left\": 0.27988433837890625, \"Top\": 0.8859044909477234}, \"Polygon\": [{\"X\": 0.2801606059074402, \"Y\": 0.8859044909477234}, {\"X\": 0.31239086389541626, \"Y\": 0.8863826990127563}, {\"X\": 0.3121146261692047, \"Y\": 0.8974996209144592}, {\"X\": 0.27988433837890625, \"Y\": 0.897021472454071}]}, \"Id\": \"767a79d5-2b39-4015-86d8-b4c123c13f48\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"e4637441-20d0-4032-a0d0-b4a2ab561c73\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"611d80e9-835e-4819-b393-73015c209508\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 1}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 24.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.11696496605873108, \"Height\": 0.01724802702665329, \"Left\": 0.30474287271499634, \"Top\": 0.8834880590438843}, \"Polygon\": [{\"X\": 0.3051284849643707, \"Y\": 0.8834880590438843}, {\"X\": 0.4217078387737274, \"Y\": 0.8852176070213318}, {\"X\": 0.42132219672203064, \"Y\": 0.9007360935211182}, {\"X\": 0.30474287271499634, \"Y\": 0.8990064859390259}]}, \"Id\": \"e4637441-20d0-4032-a0d0-b4a2ab561c73\", \"EntityTypes\": [\"VALUE\"], \"Page\": 1}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 1.5849614334573464e-16, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 9.462437987838284e-17}, {\"X\": 1.0, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"ee355be2-cd03-4cac-91d7-1f5fd4547869\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8d79bff3-295c-4030-8d90-8f20b7416fe5\", \"30807a5e-fdfb-449c-a24f-4f9c1248a660\", \"3a8b90a8-a6fc-4448-aac2-061c83831436\", \"c9760ac6-8ee9-4580-8d73-7a1e558c54d8\", \"b3142495-5e24-4db4-aae2-11714cd9469a\", \"accc9ae1-d07d-4777-942b-a667864c0b94\", \"c4e1af0c-cb1e-490b-9f07-290a3e3bb1ad\", \"a4a1531c-f8fb-4bb5-b829-55d5827657de\", \"41e9e280-c1f6-49bc-83c4-faf72d3bb97e\", \"462f6e95-7544-4c5e-87e6-b32f4266f01b\", \"69697498-3262-4b54-8806-9d5312656bd1\", \"8e01d373-ec7e-477d-92d5-45bedd5ae5e2\", \"b1f29d2f-5d8b-4d9c-8e47-2ff0285a3a77\", \"eafcfd6f-afa2-4179-a92b-6b2a74a7eda3\", \"1dc489cc-9322-4538-b72d-1949c398426c\", \"8b62cba6-191c-4a84-a1f0-33bcc7e70045\", \"f71ec5f6-a71f-4d86-adb5-568bbf9151ed\", \"1e4df697-eedd-48ad-b5f0-da524c1669d7\", \"5b5598f3-0068-4f10-97bb-8720dd963aca\", \"8bbc3f4f-0354-4999-a001-4585631bb7fe\", \"b5e061ec-05be-48d5-83fc-6719fdd4397a\", \"d205000f-4f25-4cf4-86aa-da486d7fe94c\", \"b8fe40f9-9409-4d8b-881b-798ad47558f4\", \"fdea44f1-98c2-499b-bcdf-e1125803b442\", \"31b5a194-b3a3-42d5-9d38-c799e25b7993\", \"9ba62b1e-56e5-4ff0-bb44-68857cee029a\", \"4abf59cf-e74a-44ac-ab09-b18f90aa3e93\", \"83efca41-a78b-4683-b9a5-4e55fac4f65a\", \"595abd47-37ad-4507-8671-a4df7dce8727\", \"5cd0dfaa-f65e-4ece-8e45-211710bf3dbb\", \"774eb534-bcc9-450b-bba6-29dda7a1e9ce\", \"f67bf240-5f9e-423f-a45e-8bef17c9350a\", \"1cd9cc72-430c-4ad7-b551-0843fb42abb1\", \"6d8399b6-1142-4a28-89f5-47624905156c\", \"c5ca2612-76a1-4cf8-8b91-f7f4235a618c\", \"480d9dc7-94c1-4942-bdbf-ccbc30af9483\", \"5e363bb0-3464-4d5f-9755-47054b130293\", \"5070b0ce-2bce-47ad-8a5e-eb13c45d993e\", \"fcb77abe-b63e-47ef-a578-67e32112c200\", \"ad95455b-09fc-4c57-baa8-32af40376e66\", \"c6050c59-580c-4e3d-b06f-6e9963357a57\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.93040466308594, \"Text\": \"Row5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040123794227838516, \"Height\": 0.009720906615257263, \"Left\": 0.1270298957824707, \"Top\": 0.09563247859477997}, \"Polygon\": [{\"X\": 0.1270298957824707, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.10535338521003723}, {\"X\": 0.1270298957824707, \"Y\": 0.10535338521003723}]}, \"Id\": \"8d79bff3-295c-4030-8d90-8f20b7416fe5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57572e8c-e006-4729-a744-071a2913a17b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.94255065917969, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04988139122724533, \"Height\": 0.011624237522482872, \"Left\": 0.27981695532798767, \"Top\": 0.09497342258691788}, \"Polygon\": [{\"X\": 0.27981695532798767, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.1065976545214653}, {\"X\": 0.27981695532798767, \"Y\": 0.1065976545214653}]}, \"Id\": \"30807a5e-fdfb-449c-a24f-4f9c1248a660\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63478fb4-f00d-48bc-a17e-c38c97827bab\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.95655059814453, \"Text\": \"Row6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04041338339447975, \"Height\": 0.009645976126194, \"Left\": 0.12708434462547302, \"Top\": 0.11311991512775421}, \"Polygon\": [{\"X\": 0.12708434462547302, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.12276589125394821}, {\"X\": 0.12708434462547302, \"Y\": 0.12276589125394821}]}, \"Id\": \"3a8b90a8-a6fc-4448-aac2-061c83831436\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 97.20793914794922, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04917134717106819, \"Height\": 0.011841125786304474, \"Left\": 0.2796783149242401, \"Top\": 0.11246911436319351}, \"Polygon\": [{\"X\": 0.2796783149242401, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.12431024014949799}, {\"X\": 0.2796783149242401, \"Y\": 0.12431024014949799}]}, \"Id\": \"c9760ac6-8ee9-4580-8d73-7a1e558c54d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f907df7-d511-47aa-9b37-a02e9d5b89fe\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 98.69717407226562, \"Text\": \"Row7\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04046971723437309, \"Height\": 0.009632812812924385, \"Left\": 0.12697625160217285, \"Top\": 0.13067635893821716}, \"Polygon\": [{\"X\": 0.12697625160217285, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.1403091698884964}, {\"X\": 0.12697625160217285, \"Y\": 0.1403091698884964}]}, \"Id\": \"b3142495-5e24-4db4-aae2-11714cd9469a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"287e484f-72af-4402-b4d6-5694e22f71ce\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 92.4416275024414, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04979715868830681, \"Height\": 0.011570983566343784, \"Left\": 0.2795606553554535, \"Top\": 0.1302001178264618}, \"Polygon\": [{\"X\": 0.2795606553554535, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1417710930109024}, {\"X\": 0.2795606553554535, \"Y\": 0.1417710930109024}]}, \"Id\": \"accc9ae1-d07d-4777-942b-a667864c0b94\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90674591064453, \"Text\": \"Row8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04012669250369072, \"Height\": 0.009689707309007645, \"Left\": 0.12716782093048096, \"Top\": 0.1482255607843399}, \"Polygon\": [{\"X\": 0.12716782093048096, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.15791526436805725}, {\"X\": 0.12716782093048096, \"Y\": 0.15791526436805725}]}, \"Id\": \"c4e1af0c-cb1e-490b-9f07-290a3e3bb1ad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4520624-da46-449a-8c5d-d1ff6760ed7a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 93.18978881835938, \"Text\": \"Col2 8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049434106796979904, \"Height\": 0.011289082467556, \"Left\": 0.27998238801956177, \"Top\": 0.14770057797431946}, \"Polygon\": [{\"X\": 0.27998238801956177, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.15898966789245605}, {\"X\": 0.27998238801956177, \"Y\": 0.15898966789245605}]}, \"Id\": \"a4a1531c-f8fb-4bb5-b829-55d5827657de\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9043c3f4-eefd-44ee-9863-15f8414bd0fc\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83174133300781, \"Text\": \"Table 2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05320717394351959, \"Height\": 0.010385172441601753, \"Left\": 0.11726021021604538, \"Top\": 0.7515733242034912}, \"Polygon\": [{\"X\": 0.11726021021604538, \"Y\": 0.7515733242034912}, {\"X\": 0.17046739161014557, \"Y\": 0.7515733242034912}, {\"X\": 0.17046739161014557, \"Y\": 0.7619584798812866}, {\"X\": 0.11726021021604538, \"Y\": 0.7619584798812866}]}, \"Id\": \"41e9e280-c1f6-49bc-83c4-faf72d3bb97e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55ae1faf-5c76-4fb7-85f7-bb6598b455ad\", \"39382dfb-9f13-48db-91d4-c9e55fabf295\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88533020019531, \"Text\": \"Row1b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032783001661301, \"Height\": 0.01021028682589531, \"Left\": 0.12708768248558044, \"Top\": 0.8090674877166748}, \"Polygon\": [{\"X\": 0.12708768248558044, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8192777633666992}, {\"X\": 0.12708768248558044, \"Y\": 0.8192777633666992}]}, \"Id\": \"462f6e95-7544-4c5e-87e6-b32f4266f01b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"961c306d-398a-4454-9543-330ab9dfc6bd\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.90635681152344, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049399349838495255, \"Height\": 0.012244140729308128, \"Left\": 0.279590904712677, \"Top\": 0.8086855411529541}, \"Polygon\": [{\"X\": 0.279590904712677, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8209297060966492}, {\"X\": 0.279590904712677, \"Y\": 0.8209297060966492}]}, \"Id\": \"69697498-3262-4b54-8806-9d5312656bd1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.63731384277344, \"Text\": \"Row2b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032414570450783, \"Height\": 0.010286783799529076, \"Left\": 0.126973956823349, \"Top\": 0.8265323042869568}, \"Polygon\": [{\"X\": 0.126973956823349, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8368191123008728}, {\"X\": 0.126973956823349, \"Y\": 0.8368191123008728}]}, \"Id\": \"8e01d373-ec7e-477d-92d5-45bedd5ae5e2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a7b36d1-e101-4473-a6be-7a7b3e9d4b61\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.07293701171875, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04959582909941673, \"Height\": 0.012468261644244194, \"Left\": 0.27947625517845154, \"Top\": 0.8259990215301514}, \"Polygon\": [{\"X\": 0.27947625517845154, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8384672999382019}, {\"X\": 0.27947625517845154, \"Y\": 0.8384672999382019}]}, \"Id\": \"b1f29d2f-5d8b-4d9c-8e47-2ff0285a3a77\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8224868774414, \"Text\": \"Row3b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04970686882734299, \"Height\": 0.010225260630249977, \"Left\": 0.12732942402362823, \"Top\": 0.8442525863647461}, \"Polygon\": [{\"X\": 0.12732942402362823, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8544778823852539}, {\"X\": 0.12732942402362823, \"Y\": 0.8544778823852539}]}, \"Id\": \"eafcfd6f-afa2-4179-a92b-6b2a74a7eda3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a25f0257-0bda-4b43-9109-22b748d9832c\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 93.67516326904297, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05053584650158882, \"Height\": 0.012188313528895378, \"Left\": 0.2791886627674103, \"Top\": 0.8436267375946045}, \"Polygon\": [{\"X\": 0.2791886627674103, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8558149933815002}, {\"X\": 0.2791886627674103, \"Y\": 0.8558149933815002}]}, \"Id\": \"1dc489cc-9322-4538-b72d-1949c398426c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.9431381225586, \"Text\": \"Row4b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05011677369475365, \"Height\": 0.010186523199081421, \"Left\": 0.1272517591714859, \"Top\": 0.8617580533027649}, \"Polygon\": [{\"X\": 0.1272517591714859, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8719446063041687}, {\"X\": 0.1272517591714859, \"Y\": 0.8719446063041687}]}, \"Id\": \"8b62cba6-191c-4a84-a1f0-33bcc7e70045\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"312fa634-72be-4b16-9d11-d26c5fe704ed\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 96.51168060302734, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049513284116983414, \"Height\": 0.012050699442625046, \"Left\": 0.2797173261642456, \"Top\": 0.8614722490310669}, \"Polygon\": [{\"X\": 0.2797173261642456, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.873522937297821}, {\"X\": 0.2797173261642456, \"Y\": 0.873522937297821}]}, \"Id\": \"f71ec5f6-a71f-4d86-adb5-568bbf9151ed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83299056-9247-48a6-a6c2-51db9de923f9\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8187026977539, \"Text\": \"Row5b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05004899948835373, \"Height\": 0.01007918268442154, \"Left\": 0.12729330360889435, \"Top\": 0.8793925642967224}, \"Polygon\": [{\"X\": 0.12729330360889435, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8894717693328857}, {\"X\": 0.12729330360889435, \"Y\": 0.8894717693328857}]}, \"Id\": \"1e4df697-eedd-48ad-b5f0-da524c1669d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f273eb1e-2b7d-4387-accf-6be37f13b269\"]}], \"Page\": 2}, {\"BlockType\": \"LINE\", \"Confidence\": 86.34605407714844, \"Text\": \"Col1 8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04926806315779686, \"Height\": 0.011909586377441883, \"Left\": 0.2798742949962616, \"Top\": 0.8788388967514038}, \"Polygon\": [{\"X\": 0.2798742949962616, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8907484412193298}, {\"X\": 0.2798742949962616, \"Y\": 0.8907484412193298}]}, \"Id\": \"5b5598f3-0068-4f10-97bb-8720dd963aca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\"]}], \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93040466308594, \"Text\": \"Row5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040123794227838516, \"Height\": 0.009720906615257263, \"Left\": 0.1270298957824707, \"Top\": 0.09563247859477997}, \"Polygon\": [{\"X\": 0.1270298957824707, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.09563247859477997}, {\"X\": 0.16715368628501892, \"Y\": 0.10535338521003723}, {\"X\": 0.1270298957824707, \"Y\": 0.10535338521003723}]}, \"Id\": \"57572e8c-e006-4729-a744-071a2913a17b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.94255065917969, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04988139122724533, \"Height\": 0.011624237522482872, \"Left\": 0.27981695532798767, \"Top\": 0.09497342258691788}, \"Polygon\": [{\"X\": 0.27981695532798767, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.09497342258691788}, {\"X\": 0.3296983540058136, \"Y\": 0.1065976545214653}, {\"X\": 0.27981695532798767, \"Y\": 0.1065976545214653}]}, \"Id\": \"63478fb4-f00d-48bc-a17e-c38c97827bab\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95655059814453, \"Text\": \"Row6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04041338339447975, \"Height\": 0.009645976126194, \"Left\": 0.12708434462547302, \"Top\": 0.11311991512775421}, \"Polygon\": [{\"X\": 0.12708434462547302, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.11311991512775421}, {\"X\": 0.16749772429466248, \"Y\": 0.12276589125394821}, {\"X\": 0.12708434462547302, \"Y\": 0.12276589125394821}]}, \"Id\": \"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 97.20793914794922, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04917134717106819, \"Height\": 0.011841125786304474, \"Left\": 0.2796783149242401, \"Top\": 0.11246911436319351}, \"Polygon\": [{\"X\": 0.2796783149242401, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.11246911436319351}, {\"X\": 0.3288496434688568, \"Y\": 0.12431024014949799}, {\"X\": 0.2796783149242401, \"Y\": 0.12431024014949799}]}, \"Id\": \"3f907df7-d511-47aa-9b37-a02e9d5b89fe\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 98.69717407226562, \"Text\": \"Row7\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04046971723437309, \"Height\": 0.009632812812924385, \"Left\": 0.12697625160217285, \"Top\": 0.13067635893821716}, \"Polygon\": [{\"X\": 0.12697625160217285, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.13067635893821716}, {\"X\": 0.16744597256183624, \"Y\": 0.1403091698884964}, {\"X\": 0.12697625160217285, \"Y\": 0.1403091698884964}]}, \"Id\": \"287e484f-72af-4402-b4d6-5694e22f71ce\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 92.4416275024414, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04979715868830681, \"Height\": 0.011570983566343784, \"Left\": 0.2795606553554535, \"Top\": 0.1302001178264618}, \"Polygon\": [{\"X\": 0.2795606553554535, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1302001178264618}, {\"X\": 0.3293578028678894, \"Y\": 0.1417710930109024}, {\"X\": 0.2795606553554535, \"Y\": 0.1417710930109024}]}, \"Id\": \"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90674591064453, \"Text\": \"Row8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04012669250369072, \"Height\": 0.009689707309007645, \"Left\": 0.12716782093048096, \"Top\": 0.1482255607843399}, \"Polygon\": [{\"X\": 0.12716782093048096, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.1482255607843399}, {\"X\": 0.16729451715946198, \"Y\": 0.15791526436805725}, {\"X\": 0.12716782093048096, \"Y\": 0.15791526436805725}]}, \"Id\": \"b4520624-da46-449a-8c5d-d1ff6760ed7a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 93.18978881835938, \"Text\": \"Col2 8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049434106796979904, \"Height\": 0.011289082467556, \"Left\": 0.27998238801956177, \"Top\": 0.14770057797431946}, \"Polygon\": [{\"X\": 0.27998238801956177, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.14770057797431946}, {\"X\": 0.3294164836406708, \"Y\": 0.15898966789245605}, {\"X\": 0.27998238801956177, \"Y\": 0.15898966789245605}]}, \"Id\": \"9043c3f4-eefd-44ee-9863-15f8414bd0fc\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91995239257812, \"Text\": \"Table\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03991733491420746, \"Height\": 0.010385172441601753, \"Left\": 0.11726021021604538, \"Top\": 0.7515733242034912}, \"Polygon\": [{\"X\": 0.11726021021604538, \"Y\": 0.7515733242034912}, {\"X\": 0.15717755258083344, \"Y\": 0.7515733242034912}, {\"X\": 0.15717755258083344, \"Y\": 0.7619584798812866}, {\"X\": 0.11726021021604538, \"Y\": 0.7619584798812866}]}, \"Id\": \"55ae1faf-5c76-4fb7-85f7-bb6598b455ad\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74353790283203, \"Text\": \"2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008835392072796822, \"Height\": 0.009949625469744205, \"Left\": 0.1616320013999939, \"Top\": 0.7519487142562866}, \"Polygon\": [{\"X\": 0.1616320013999939, \"Y\": 0.7519487142562866}, {\"X\": 0.17046739161014557, \"Y\": 0.7519487142562866}, {\"X\": 0.17046739161014557, \"Y\": 0.7618983387947083}, {\"X\": 0.1616320013999939, \"Y\": 0.7618983387947083}]}, \"Id\": \"39382dfb-9f13-48db-91d4-c9e55fabf295\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88533020019531, \"Text\": \"Row1b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032783001661301, \"Height\": 0.01021028682589531, \"Left\": 0.12708768248558044, \"Top\": 0.8090674877166748}, \"Polygon\": [{\"X\": 0.12708768248558044, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8090674877166748}, {\"X\": 0.17741550505161285, \"Y\": 0.8192777633666992}, {\"X\": 0.12708768248558044, \"Y\": 0.8192777633666992}]}, \"Id\": \"961c306d-398a-4454-9543-330ab9dfc6bd\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.90635681152344, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049399349838495255, \"Height\": 0.012244140729308128, \"Left\": 0.279590904712677, \"Top\": 0.8086855411529541}, \"Polygon\": [{\"X\": 0.279590904712677, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8086855411529541}, {\"X\": 0.32899025082588196, \"Y\": 0.8209297060966492}, {\"X\": 0.279590904712677, \"Y\": 0.8209297060966492}]}, \"Id\": \"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.63731384277344, \"Text\": \"Row2b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05032414570450783, \"Height\": 0.010286783799529076, \"Left\": 0.126973956823349, \"Top\": 0.8265323042869568}, \"Polygon\": [{\"X\": 0.126973956823349, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8265323042869568}, {\"X\": 0.17729809880256653, \"Y\": 0.8368191123008728}, {\"X\": 0.126973956823349, \"Y\": 0.8368191123008728}]}, \"Id\": \"9a7b36d1-e101-4473-a6be-7a7b3e9d4b61\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.07293701171875, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04959582909941673, \"Height\": 0.012468261644244194, \"Left\": 0.27947625517845154, \"Top\": 0.8259990215301514}, \"Polygon\": [{\"X\": 0.27947625517845154, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8259990215301514}, {\"X\": 0.32907208800315857, \"Y\": 0.8384672999382019}, {\"X\": 0.27947625517845154, \"Y\": 0.8384672999382019}]}, \"Id\": \"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8224868774414, \"Text\": \"Row3b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04970686882734299, \"Height\": 0.010225260630249977, \"Left\": 0.12732942402362823, \"Top\": 0.8442525863647461}, \"Polygon\": [{\"X\": 0.12732942402362823, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8442525863647461}, {\"X\": 0.17703628540039062, \"Y\": 0.8544778823852539}, {\"X\": 0.12732942402362823, \"Y\": 0.8544778823852539}]}, \"Id\": \"a25f0257-0bda-4b43-9109-22b748d9832c\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 93.67516326904297, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05053584650158882, \"Height\": 0.012188313528895378, \"Left\": 0.2791886627674103, \"Top\": 0.8436267375946045}, \"Polygon\": [{\"X\": 0.2791886627674103, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8436267375946045}, {\"X\": 0.3297244906425476, \"Y\": 0.8558149933815002}, {\"X\": 0.2791886627674103, \"Y\": 0.8558149933815002}]}, \"Id\": \"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9431381225586, \"Text\": \"Row4b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05011677369475365, \"Height\": 0.010186523199081421, \"Left\": 0.1272517591714859, \"Top\": 0.8617580533027649}, \"Polygon\": [{\"X\": 0.1272517591714859, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8617580533027649}, {\"X\": 0.17736853659152985, \"Y\": 0.8719446063041687}, {\"X\": 0.1272517591714859, \"Y\": 0.8719446063041687}]}, \"Id\": \"312fa634-72be-4b16-9d11-d26c5fe704ed\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 96.51168060302734, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049513284116983414, \"Height\": 0.012050699442625046, \"Left\": 0.2797173261642456, \"Top\": 0.8614722490310669}, \"Polygon\": [{\"X\": 0.2797173261642456, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.8614722490310669}, {\"X\": 0.3292306065559387, \"Y\": 0.873522937297821}, {\"X\": 0.2797173261642456, \"Y\": 0.873522937297821}]}, \"Id\": \"83299056-9247-48a6-a6c2-51db9de923f9\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8187026977539, \"Text\": \"Row5b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05004899948835373, \"Height\": 0.01007918268442154, \"Left\": 0.12729330360889435, \"Top\": 0.8793925642967224}, \"Polygon\": [{\"X\": 0.12729330360889435, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8793925642967224}, {\"X\": 0.17734231054782867, \"Y\": 0.8894717693328857}, {\"X\": 0.12729330360889435, \"Y\": 0.8894717693328857}]}, \"Id\": \"f273eb1e-2b7d-4387-accf-6be37f13b269\", \"Page\": 2}, {\"BlockType\": \"WORD\", \"Confidence\": 86.34605407714844, \"Text\": \"Col1 8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04926806315779686, \"Height\": 0.011909586377441883, \"Left\": 0.2798742949962616, \"Top\": 0.8788388967514038}, \"Polygon\": [{\"X\": 0.2798742949962616, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8788388967514038}, {\"X\": 0.32914236187934875, \"Y\": 0.8907484412193298}, {\"X\": 0.2798742949962616, \"Y\": 0.8907484412193298}]}, \"Id\": \"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\", \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.85924530029297, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30584248900413513, \"Height\": 0.08837133646011353, \"Left\": 0.11849294602870941, \"Top\": 0.8050735592842102}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8934448957443237}, {\"X\": 0.11849294602870941, \"Y\": 0.8934448957443237}]}, \"Id\": \"8bbc3f4f-0354-4999-a001-4585631bb7fe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3ed74a67-865a-4eab-9d00-9c6494b2d8b7\", \"46cc3c0a-aba4-43b1-bfc7-85987e4b624d\", \"a3fa28eb-a8a7-4872-b273-89a4020c3288\", \"c8c1f3a9-abee-4881-b25e-301eb8668141\", \"5d25c7c2-05bc-4680-a11b-5700bc1a6e8f\", \"eb5fccde-3b16-440f-ad9d-a71bda8c9ef7\", \"56bb0e03-8d9b-4a01-ae9e-3e921ed161f3\", \"fa534006-0f9f-4363-95bc-a521612991a1\", \"28b82e78-67a3-4f10-ad82-3e950314cf7f\", \"f83cf1e2-4e8b-447f-ae0c-49cdf452cfef\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.06130981445312, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.017607828602194786, \"Left\": 0.11849294602870941, \"Top\": 0.8050735592842102}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8050735592842102}, {\"X\": 0.2692399322986603, \"Y\": 0.8050735592842102}, {\"X\": 0.2692399322986603, \"Y\": 0.8226813673973083}, {\"X\": 0.11849294602870941, \"Y\": 0.8226813673973083}]}, \"Id\": \"3ed74a67-865a-4eab-9d00-9c6494b2d8b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"961c306d-398a-4454-9543-330ab9dfc6bd\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 97.2547607421875, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.017607828602194786, \"Left\": 0.26923996210098267, \"Top\": 0.8050735592842102}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8050735592842102}, {\"X\": 0.42433542013168335, \"Y\": 0.8226813673973083}, {\"X\": 0.26923996210098267, \"Y\": 0.8226813673973083}]}, \"Id\": \"46cc3c0a-aba4-43b1-bfc7-85987e4b624d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.40906524658203, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.018272217363119125, \"Left\": 0.11849294602870941, \"Top\": 0.8226813673973083}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8226813673973083}, {\"X\": 0.2692399322986603, \"Y\": 0.8226813673973083}, {\"X\": 0.2692399322986603, \"Y\": 0.8409535884857178}, {\"X\": 0.11849294602870941, \"Y\": 0.8409535884857178}]}, \"Id\": \"a3fa28eb-a8a7-4872-b273-89a4020c3288\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9a7b36d1-e101-4473-a6be-7a7b3e9d4b61\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.21881103515625, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.018272217363119125, \"Left\": 0.26923996210098267, \"Top\": 0.8226813673973083}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8226813673973083}, {\"X\": 0.42433542013168335, \"Y\": 0.8226813673973083}, {\"X\": 0.42433542013168335, \"Y\": 0.8409535884857178}, {\"X\": 0.26923996210098267, \"Y\": 0.8409535884857178}]}, \"Id\": \"c8c1f3a9-abee-4881-b25e-301eb8668141\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.650146484375, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.017607828602194786, \"Left\": 0.11849294602870941, \"Top\": 0.8409535884857178}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8409535884857178}, {\"X\": 0.2692399322986603, \"Y\": 0.8409535884857178}, {\"X\": 0.2692399322986603, \"Y\": 0.8585613965988159}, {\"X\": 0.11849294602870941, \"Y\": 0.8585613965988159}]}, \"Id\": \"5d25c7c2-05bc-4680-a11b-5700bc1a6e8f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a25f0257-0bda-4b43-9109-22b748d9832c\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.34754180908203, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.017607828602194786, \"Left\": 0.26923996210098267, \"Top\": 0.8409535884857178}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8409535884857178}, {\"X\": 0.42433542013168335, \"Y\": 0.8409535884857178}, {\"X\": 0.42433542013168335, \"Y\": 0.8585613965988159}, {\"X\": 0.26923996210098267, \"Y\": 0.8585613965988159}]}, \"Id\": \"eb5fccde-3b16-440f-ad9d-a71bda8c9ef7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.59342956542969, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.017607828602194786, \"Left\": 0.11849294602870941, \"Top\": 0.8585614562034607}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8585614562034607}, {\"X\": 0.2692399322986603, \"Y\": 0.8585614562034607}, {\"X\": 0.2692399322986603, \"Y\": 0.8761692643165588}, {\"X\": 0.11849294602870941, \"Y\": 0.8761692643165588}]}, \"Id\": \"56bb0e03-8d9b-4a01-ae9e-3e921ed161f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"312fa634-72be-4b16-9d11-d26c5fe704ed\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.52392578125, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.017607828602194786, \"Left\": 0.26923996210098267, \"Top\": 0.8585614562034607}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8585614562034607}, {\"X\": 0.42433542013168335, \"Y\": 0.8585614562034607}, {\"X\": 0.42433542013168335, \"Y\": 0.8761692643165588}, {\"X\": 0.26923996210098267, \"Y\": 0.8761692643165588}]}, \"Id\": \"fa534006-0f9f-4363-95bc-a521612991a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"83299056-9247-48a6-a6c2-51db9de923f9\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.53343200683594, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15074700117111206, \"Height\": 0.01727563515305519, \"Left\": 0.11849294602870941, \"Top\": 0.8761692643165588}, \"Polygon\": [{\"X\": 0.11849294602870941, \"Y\": 0.8761692643165588}, {\"X\": 0.2692399322986603, \"Y\": 0.8761692643165588}, {\"X\": 0.2692399322986603, \"Y\": 0.8934448957443237}, {\"X\": 0.11849294602870941, \"Y\": 0.8934448957443237}]}, \"Id\": \"28b82e78-67a3-4f10-ad82-3e950314cf7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f273eb1e-2b7d-4387-accf-6be37f13b269\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.83329772949219, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15509547293186188, \"Height\": 0.01727563515305519, \"Left\": 0.26923996210098267, \"Top\": 0.8761692643165588}, \"Polygon\": [{\"X\": 0.26923996210098267, \"Y\": 0.8761692643165588}, {\"X\": 0.42433542013168335, \"Y\": 0.8761692643165588}, {\"X\": 0.42433542013168335, \"Y\": 0.8934448957443237}, {\"X\": 0.26923996210098267, \"Y\": 0.8934448957443237}]}, \"Id\": \"f83cf1e2-4e8b-447f-ae0c-49cdf452cfef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\"]}], \"Page\": 2}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.82941436767578, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3062293529510498, \"Height\": 0.07103625684976578, \"Left\": 0.11796987056732178, \"Top\": 0.09130068868398666}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.16233694553375244}, {\"X\": 0.11796987056732178, \"Y\": 0.16233694553375244}]}, \"Id\": \"b5e061ec-05be-48d5-83fc-6719fdd4397a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c3c6a866-d57a-45e7-8f0b-242506006cf9\", \"09bc52d1-39f8-4bed-9cb2-fa5085382709\", \"8596ed02-5d59-460b-a340-ad8466580e55\", \"55e4c934-3251-4b95-8467-3f34aaa6129a\", \"b36859bc-3d0c-4aa8-8c1c-cece7b4d40ea\", \"45e2e454-d80d-4e62-9996-393dc74b1121\", \"254b1566-e826-49ff-bf6c-fde6afec1843\", \"97c55dd3-9f51-4076-9108-4a29e9c2e87f\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 98.3082504272461, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.01759308949112892, \"Left\": 0.11796987056732178, \"Top\": 0.09130068868398666}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.09130068868398666}, {\"X\": 0.269619345664978, \"Y\": 0.09130068868398666}, {\"X\": 0.269619345664978, \"Y\": 0.10889377444982529}, {\"X\": 0.11796987056732178, \"Y\": 0.10889377444982529}]}, \"Id\": \"c3c6a866-d57a-45e7-8f0b-242506006cf9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"57572e8c-e006-4729-a744-071a2913a17b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.64373779296875, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.01759308949112892, \"Left\": 0.26961931586265564, \"Top\": 0.09130068868398666}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.09130068868398666}, {\"X\": 0.4241992235183716, \"Y\": 0.10889377444982529}, {\"X\": 0.26961931586265564, \"Y\": 0.10889377444982529}]}, \"Id\": \"09bc52d1-39f8-4bed-9cb2-fa5085382709\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63478fb4-f00d-48bc-a17e-c38c97827bab\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.72313690185547, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.01759308949112892, \"Left\": 0.11796987056732178, \"Top\": 0.10889378190040588}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.10889378190040588}, {\"X\": 0.269619345664978, \"Y\": 0.10889378190040588}, {\"X\": 0.269619345664978, \"Y\": 0.1264868676662445}, {\"X\": 0.11796987056732178, \"Y\": 0.1264868676662445}]}, \"Id\": \"8596ed02-5d59-460b-a340-ad8466580e55\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.54305267333984, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.01759308949112892, \"Left\": 0.26961931586265564, \"Top\": 0.10889378190040588}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.10889378190040588}, {\"X\": 0.4241992235183716, \"Y\": 0.10889378190040588}, {\"X\": 0.4241992235183716, \"Y\": 0.1264868676662445}, {\"X\": 0.26961931586265564, \"Y\": 0.1264868676662445}]}, \"Id\": \"55e4c934-3251-4b95-8467-3f34aaa6129a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f907df7-d511-47aa-9b37-a02e9d5b89fe\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.60491180419922, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.01759308949112892, \"Left\": 0.11796987056732178, \"Top\": 0.1264868676662445}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.1264868676662445}, {\"X\": 0.269619345664978, \"Y\": 0.1264868676662445}, {\"X\": 0.269619345664978, \"Y\": 0.14407995343208313}, {\"X\": 0.11796987056732178, \"Y\": 0.14407995343208313}]}, \"Id\": \"b36859bc-3d0c-4aa8-8c1c-cece7b4d40ea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"287e484f-72af-4402-b4d6-5694e22f71ce\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 99.60810852050781, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.01759308949112892, \"Left\": 0.26961931586265564, \"Top\": 0.1264868676662445}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.1264868676662445}, {\"X\": 0.4241992235183716, \"Y\": 0.1264868676662445}, {\"X\": 0.4241992235183716, \"Y\": 0.14407995343208313}, {\"X\": 0.26961931586265564, \"Y\": 0.14407995343208313}]}, \"Id\": \"45e2e454-d80d-4e62-9996-393dc74b1121\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 95.2337646484375, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15164946019649506, \"Height\": 0.018256988376379013, \"Left\": 0.11796987056732178, \"Top\": 0.14407995343208313}, \"Polygon\": [{\"X\": 0.11796987056732178, \"Y\": 0.14407995343208313}, {\"X\": 0.269619345664978, \"Y\": 0.14407995343208313}, {\"X\": 0.269619345664978, \"Y\": 0.16233694553375244}, {\"X\": 0.11796987056732178, \"Y\": 0.16233694553375244}]}, \"Id\": \"254b1566-e826-49ff-bf6c-fde6afec1843\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b4520624-da46-449a-8c5d-d1ff6760ed7a\"]}], \"Page\": 2}, {\"BlockType\": \"CELL\", \"Confidence\": 94.28562927246094, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15457990765571594, \"Height\": 0.018256988376379013, \"Left\": 0.26961931586265564, \"Top\": 0.14407995343208313}, \"Polygon\": [{\"X\": 0.26961931586265564, \"Y\": 0.14407995343208313}, {\"X\": 0.4241992235183716, \"Y\": 0.14407995343208313}, {\"X\": 0.4241992235183716, \"Y\": 0.16233694553375244}, {\"X\": 0.26961931586265564, \"Y\": 0.16233694553375244}]}, \"Id\": \"97c55dd3-9f51-4076-9108-4a29e9c2e87f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9043c3f4-eefd-44ee-9863-15f8414bd0fc\"]}], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 70.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04080376774072647, \"Height\": 0.012146667577326298, \"Left\": 0.1275845319032669, \"Top\": 0.14723552763462067}, \"Polygon\": [{\"X\": 0.1275845319032669, \"Y\": 0.14723552763462067}, {\"X\": 0.16838829219341278, \"Y\": 0.14723552763462067}, {\"X\": 0.16838829219341278, \"Y\": 0.15938220918178558}, {\"X\": 0.1275845319032669, \"Y\": 0.15938220918178558}]}, \"Id\": \"d205000f-4f25-4cf4-86aa-da486d7fe94c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"b8fe40f9-9409-4d8b-881b-798ad47558f4\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b4520624-da46-449a-8c5d-d1ff6760ed7a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 70.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051009856164455414, \"Height\": 0.013037841767072678, \"Left\": 0.2793886661529541, \"Top\": 0.14748966693878174}, \"Polygon\": [{\"X\": 0.2793886661529541, \"Y\": 0.14748966693878174}, {\"X\": 0.3303985297679901, \"Y\": 0.14748966693878174}, {\"X\": 0.3303985297679901, \"Y\": 0.16052751243114471}, {\"X\": 0.2793886661529541, \"Y\": 0.16052751243114471}]}, \"Id\": \"b8fe40f9-9409-4d8b-881b-798ad47558f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9043c3f4-eefd-44ee-9863-15f8414bd0fc\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 64.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04149603471159935, \"Height\": 0.012072814628481865, \"Left\": 0.12697917222976685, \"Top\": 0.12986759841442108}, \"Polygon\": [{\"X\": 0.12697917222976685, \"Y\": 0.12986759841442108}, {\"X\": 0.1684751957654953, \"Y\": 0.12986759841442108}, {\"X\": 0.1684751957654953, \"Y\": 0.1419404149055481}, {\"X\": 0.12697917222976685, \"Y\": 0.1419404149055481}]}, \"Id\": \"fdea44f1-98c2-499b-bcdf-e1125803b442\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"31b5a194-b3a3-42d5-9d38-c799e25b7993\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"287e484f-72af-4402-b4d6-5694e22f71ce\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 64.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04902755469083786, \"Height\": 0.011648702435195446, \"Left\": 0.28054115176200867, \"Top\": 0.13007806241512299}, \"Polygon\": [{\"X\": 0.28054115176200867, \"Y\": 0.13007806241512299}, {\"X\": 0.3295687139034271, \"Y\": 0.13007806241512299}, {\"X\": 0.3295687139034271, \"Y\": 0.1417267620563507}, {\"X\": 0.28054115176200867, \"Y\": 0.1417267620563507}]}, \"Id\": \"31b5a194-b3a3-42d5-9d38-c799e25b7993\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2214f0d9-31e9-42b6-8400-0d1b0627eb9b\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 58.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04198792204260826, \"Height\": 0.010439880192279816, \"Left\": 0.12652923166751862, \"Top\": 0.11325248330831528}, \"Polygon\": [{\"X\": 0.12652923166751862, \"Y\": 0.11325248330831528}, {\"X\": 0.16851715743541718, \"Y\": 0.11325248330831528}, {\"X\": 0.16851715743541718, \"Y\": 0.12369236350059509}, {\"X\": 0.12652923166751862, \"Y\": 0.12369236350059509}]}, \"Id\": \"9ba62b1e-56e5-4ff0-bb44-68857cee029a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"4abf59cf-e74a-44ac-ab09-b18f90aa3e93\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"6e65b5f2-6a08-4dd5-b302-41424ebffcbd\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 58.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050854239612817764, \"Height\": 0.011525492183864117, \"Left\": 0.2799079716205597, \"Top\": 0.11298011988401413}, \"Polygon\": [{\"X\": 0.2799079716205597, \"Y\": 0.11298011988401413}, {\"X\": 0.33076220750808716, \"Y\": 0.11298011988401413}, {\"X\": 0.33076220750808716, \"Y\": 0.12450561672449112}, {\"X\": 0.2799079716205597, \"Y\": 0.12450561672449112}]}, \"Id\": \"4abf59cf-e74a-44ac-ab09-b18f90aa3e93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3f907df7-d511-47aa-9b37-a02e9d5b89fe\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0512690432369709, \"Height\": 0.01191292330622673, \"Left\": 0.1272997260093689, \"Top\": 0.8790102601051331}, \"Polygon\": [{\"X\": 0.1272997260093689, \"Y\": 0.8790102601051331}, {\"X\": 0.1785687655210495, \"Y\": 0.8790102601051331}, {\"X\": 0.1785687655210495, \"Y\": 0.8909232020378113}, {\"X\": 0.1272997260093689, \"Y\": 0.8909232020378113}]}, \"Id\": \"83efca41-a78b-4683-b9a5-4e55fac4f65a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"595abd47-37ad-4507-8671-a4df7dce8727\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"f273eb1e-2b7d-4387-accf-6be37f13b269\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04891815036535263, \"Height\": 0.01130110677331686, \"Left\": 0.2808762192726135, \"Top\": 0.8796005845069885}, \"Polygon\": [{\"X\": 0.2808762192726135, \"Y\": 0.8796005845069885}, {\"X\": 0.32979437708854675, \"Y\": 0.8796005845069885}, {\"X\": 0.32979437708854675, \"Y\": 0.8909016847610474}, {\"X\": 0.2808762192726135, \"Y\": 0.8909016847610474}]}, \"Id\": \"595abd47-37ad-4507-8671-a4df7dce8727\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec81bbbb-1eb6-4e69-b59e-5f2b481ecfb6\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04099826142191887, \"Height\": 0.010334157384932041, \"Left\": 0.1273859590291977, \"Top\": 0.09506723284721375}, \"Polygon\": [{\"X\": 0.1273859590291977, \"Y\": 0.09506723284721375}, {\"X\": 0.16838422417640686, \"Y\": 0.09506723284721375}, {\"X\": 0.16838422417640686, \"Y\": 0.10540138930082321}, {\"X\": 0.1273859590291977, \"Y\": 0.10540138930082321}]}, \"Id\": \"5cd0dfaa-f65e-4ece-8e45-211710bf3dbb\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"774eb534-bcc9-450b-bba6-29dda7a1e9ce\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"57572e8c-e006-4729-a744-071a2913a17b\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 44.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05071747675538063, \"Height\": 0.011595336720347404, \"Left\": 0.2795299291610718, \"Top\": 0.09485869109630585}, \"Polygon\": [{\"X\": 0.2795299291610718, \"Y\": 0.09485869109630585}, {\"X\": 0.3302474021911621, \"Y\": 0.09485869109630585}, {\"X\": 0.3302474021911621, \"Y\": 0.1064540296792984}, {\"X\": 0.2795299291610718, \"Y\": 0.1064540296792984}]}, \"Id\": \"774eb534-bcc9-450b-bba6-29dda7a1e9ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63478fb4-f00d-48bc-a17e-c38c97827bab\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 41.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02974407933652401, \"Height\": 0.010709634982049465, \"Left\": 0.2804167866706848, \"Top\": 0.8621594905853271}, \"Polygon\": [{\"X\": 0.2804167866706848, \"Y\": 0.8621594905853271}, {\"X\": 0.31016087532043457, \"Y\": 0.8621594905853271}, {\"X\": 0.31016087532043457, \"Y\": 0.8728691339492798}, {\"X\": 0.2804167866706848, \"Y\": 0.8728691339492798}]}, \"Id\": \"f67bf240-5f9e-423f-a45e-8bef17c9350a\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"1cd9cc72-430c-4ad7-b551-0843fb42abb1\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"83299056-9247-48a6-a6c2-51db9de923f9\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 41.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009026515297591686, \"Height\": 0.010598388500511646, \"Left\": 0.3221786916255951, \"Top\": 0.8621411323547363}, \"Polygon\": [{\"X\": 0.3221786916255951, \"Y\": 0.8621411323547363}, {\"X\": 0.33120521903038025, \"Y\": 0.8621411323547363}, {\"X\": 0.33120521903038025, \"Y\": 0.8727394938468933}, {\"X\": 0.3221786916255951, \"Y\": 0.8727394938468933}]}, \"Id\": \"1cd9cc72-430c-4ad7-b551-0843fb42abb1\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 40.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030433082953095436, \"Height\": 0.011113199405372143, \"Left\": 0.2809098958969116, \"Top\": 0.8442106246948242}, \"Polygon\": [{\"X\": 0.2809098958969116, \"Y\": 0.8442106246948242}, {\"X\": 0.3113429546356201, \"Y\": 0.8442106246948242}, {\"X\": 0.3113429546356201, \"Y\": 0.8553237915039062}, {\"X\": 0.2809098958969116, \"Y\": 0.8553237915039062}]}, \"Id\": \"6d8399b6-1142-4a28-89f5-47624905156c\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c5ca2612-76a1-4cf8-8b91-f7f4235a618c\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"ce64b7f1-895f-4f88-9b36-8adc8b5f772f\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 40.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00924529880285263, \"Height\": 0.010148925706744194, \"Left\": 0.32168227434158325, \"Top\": 0.8447158336639404}, \"Polygon\": [{\"X\": 0.32168227434158325, \"Y\": 0.8447158336639404}, {\"X\": 0.3309275805950165, \"Y\": 0.8447158336639404}, {\"X\": 0.3309275805950165, \"Y\": 0.8548647165298462}, {\"X\": 0.32168227434158325, \"Y\": 0.8548647165298462}]}, \"Id\": \"c5ca2612-76a1-4cf8-8b91-f7f4235a618c\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03259711712598801, \"Height\": 0.011426025070250034, \"Left\": 0.279588520526886, \"Top\": 0.8087468147277832}, \"Polygon\": [{\"X\": 0.279588520526886, \"Y\": 0.8087468147277832}, {\"X\": 0.3121856451034546, \"Y\": 0.8087468147277832}, {\"X\": 0.3121856451034546, \"Y\": 0.8201728463172913}, {\"X\": 0.279588520526886, \"Y\": 0.8201728463172913}]}, \"Id\": \"480d9dc7-94c1-4942-bdbf-ccbc30af9483\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"5e363bb0-3464-4d5f-9755-47054b130293\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"05f3ca04-c2c2-4a6f-9e59-6b8ecf76b57a\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009856361895799637, \"Height\": 0.010775065049529076, \"Left\": 0.32141733169555664, \"Top\": 0.8093059062957764}, \"Polygon\": [{\"X\": 0.32141733169555664, \"Y\": 0.8093059062957764}, {\"X\": 0.3312736749649048, \"Y\": 0.8093059062957764}, {\"X\": 0.3312736749649048, \"Y\": 0.8200809955596924}, {\"X\": 0.32141733169555664, \"Y\": 0.8200809955596924}]}, \"Id\": \"5e363bb0-3464-4d5f-9755-47054b130293\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03189631924033165, \"Height\": 0.010591634549200535, \"Left\": 0.27988201379776, \"Top\": 0.8272466659545898}, \"Polygon\": [{\"X\": 0.27988201379776, \"Y\": 0.8272466659545898}, {\"X\": 0.31177833676338196, \"Y\": 0.8272466659545898}, {\"X\": 0.31177833676338196, \"Y\": 0.8378382921218872}, {\"X\": 0.27988201379776, \"Y\": 0.8378382921218872}]}, \"Id\": \"5070b0ce-2bce-47ad-8a5e-eb13c45d993e\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"fcb77abe-b63e-47ef-a578-67e32112c200\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"b64670ff-0f08-4dc2-aa06-cee7b6d8f4b2\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 37.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009518061764538288, \"Height\": 0.009988118894398212, \"Left\": 0.3216318190097809, \"Top\": 0.8274956941604614}, \"Polygon\": [{\"X\": 0.3216318190097809, \"Y\": 0.8274956941604614}, {\"X\": 0.3311498761177063, \"Y\": 0.8274956941604614}, {\"X\": 0.3311498761177063, \"Y\": 0.837483823299408}, {\"X\": 0.3216318190097809, \"Y\": 0.837483823299408}]}, \"Id\": \"fcb77abe-b63e-47ef-a578-67e32112c200\", \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 10.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04504936933517456, \"Height\": 0.01098950207233429, \"Left\": 0.11694080382585526, \"Top\": 0.7518727779388428}, \"Polygon\": [{\"X\": 0.11694080382585526, \"Y\": 0.7518727779388428}, {\"X\": 0.1619901806116104, \"Y\": 0.7518727779388428}, {\"X\": 0.1619901806116104, \"Y\": 0.7628623247146606}, {\"X\": 0.11694080382585526, \"Y\": 0.7628623247146606}]}, \"Id\": \"ad95455b-09fc-4c57-baa8-32af40376e66\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c6050c59-580c-4e3d-b06f-6e9963357a57\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"55ae1faf-5c76-4fb7-85f7-bb6598b455ad\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 2}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 10.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.009425626136362553, \"Height\": 0.01021061185747385, \"Left\": 0.1619901806116104, \"Top\": 0.7521825432777405}, \"Polygon\": [{\"X\": 0.1619901806116104, \"Y\": 0.7521825432777405}, {\"X\": 0.1714158058166504, \"Y\": 0.7521825432777405}, {\"X\": 0.1714158058166504, \"Y\": 0.7623931765556335}, {\"X\": 0.1619901806116104, \"Y\": 0.7623931765556335}]}, \"Id\": \"c6050c59-580c-4e3d-b06f-6e9963357a57\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"39382dfb-9f13-48db-91d4-c9e55fabf295\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 2}, {\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.000400237477151677, \"Y\": 0.0}, {\"X\": 1.0, \"Y\": 0.0005257856100797653}, {\"X\": 0.9995997548103333, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 0.9994742274284363}]}, \"Id\": \"fc767e53-6f12-483c-bbc7-a8139557bfc4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a6ab0b0e-8feb-4cd3-8cbe-d3db7d4c6b54\", \"6d5cfcea-a819-40a2-ade8-bd2a41c0e65f\", \"df088141-c738-4ea4-a36a-eee4ebdef71c\", \"79685631-6245-49c0-a951-17d09c21d578\", \"395d8728-375d-4327-9091-10e37a3e76bb\", \"143c5316-e1b7-4a6e-8ae7-4718321f50cb\", \"cf8e09a1-c317-40c1-9c45-e830e14167d5\", \"74c6bcc1-48f5-4105-921a-0fc81561349d\", \"f5316249-bf5a-4d5b-95db-5cd2e0545732\", \"f1aeef81-7b6d-4079-95ea-8ed53aff5457\", \"c0cc1be5-4a9f-437d-b5e1-31f46f675ecd\", \"dc7bf528-a1c8-4c73-9e08-75c347bc12e8\", \"7f8acdcc-2c3e-4e39-b2aa-da1d0bfab29a\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82660675048828, \"Text\": \"Row6b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05098580941557884, \"Height\": 0.011656317859888077, \"Left\": 0.12676970660686493, \"Top\": 0.09446584433317184}, \"Polygon\": [{\"X\": 0.12704066932201385, \"Y\": 0.09446584433317184}, {\"X\": 0.17775550484657288, \"Y\": 0.0952182486653328}, {\"X\": 0.17748454213142395, \"Y\": 0.10612215846776962}, {\"X\": 0.12676970660686493, \"Y\": 0.10536976158618927}]}, \"Id\": \"a6ab0b0e-8feb-4cd3-8cbe-d3db7d4c6b54\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5bff76b6-ae8e-4e66-b85f-77792f55a047\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 97.33594512939453, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050728343427181244, \"Height\": 0.013503748923540115, \"Left\": 0.2791037857532501, \"Top\": 0.09440571814775467}, \"Polygon\": [{\"X\": 0.27942079305648804, \"Y\": 0.09440571814775467}, {\"X\": 0.32983213663101196, \"Y\": 0.09515361487865448}, {\"X\": 0.32951515913009644, \"Y\": 0.10790946334600449}, {\"X\": 0.2791037857532501, \"Y\": 0.10716156661510468}]}, \"Id\": \"6d5cfcea-a819-40a2-ade8-bd2a41c0e65f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"700c0612-1d56-4af2-9f6b-537d304386cd\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.64236450195312, \"Text\": \"Row7b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05090001970529556, \"Height\": 0.011833332479000092, \"Left\": 0.12696722149848938, \"Top\": 0.11194874346256256}, \"Polygon\": [{\"X\": 0.12724262475967407, \"Y\": 0.11194874346256256}, {\"X\": 0.17786724865436554, \"Y\": 0.11269981414079666}, {\"X\": 0.17759184539318085, \"Y\": 0.12378207594156265}, {\"X\": 0.12696722149848938, \"Y\": 0.12303101271390915}]}, \"Id\": \"df088141-c738-4ea4-a36a-eee4ebdef71c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b48897e-3886-414f-8d96-5861ec818907\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 95.99404907226562, \"Text\": \"Col1_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05158643051981926, \"Height\": 0.012942059896886349, \"Left\": 0.27875372767448425, \"Top\": 0.11202514916658401}, \"Polygon\": [{\"X\": 0.2790564298629761, \"Y\": 0.11202514916658401}, {\"X\": 0.330340176820755, \"Y\": 0.11278599500656128}, {\"X\": 0.3300374448299408, \"Y\": 0.12496720999479294}, {\"X\": 0.27875372767448425, \"Y\": 0.12420637160539627}]}, \"Id\": \"79685631-6245-49c0-a951-17d09c21d578\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83966064453125, \"Text\": \"Row8b\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05077642947435379, \"Height\": 0.01085337158292532, \"Left\": 0.1270284354686737, \"Top\": 0.13003452122211456}, \"Polygon\": [{\"X\": 0.12727950513362885, \"Y\": 0.13003452122211456}, {\"X\": 0.1778048574924469, \"Y\": 0.13078412413597107}, {\"X\": 0.17755377292633057, \"Y\": 0.14088790118694305}, {\"X\": 0.1270284354686737, \"Y\": 0.14013829827308655}]}, \"Id\": \"395d8728-375d-4327-9091-10e37a3e76bb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19ebd05f-2064-40a1-af45-5bf4bb2b9720\"]}], \"Page\": 3}, {\"BlockType\": \"LINE\", \"Confidence\": 97.21160125732422, \"Text\": \"Col2_8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05060119181871414, \"Height\": 0.013671496883034706, \"Left\": 0.27921262383461, \"Top\": 0.12942373752593994}, \"Polygon\": [{\"X\": 0.27953383326530457, \"Y\": 0.12942373752593994}, {\"X\": 0.32981380820274353, \"Y\": 0.13016968965530396}, {\"X\": 0.32949259877204895, \"Y\": 0.1430952250957489}, {\"X\": 0.27921262383461, \"Y\": 0.14234928786754608}]}, \"Id\": \"143c5316-e1b7-4a6e-8ae7-4718321f50cb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\"]}], \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82660675048828, \"Text\": \"Row6b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05098580941557884, \"Height\": 0.011656317859888077, \"Left\": 0.12676970660686493, \"Top\": 0.09446584433317184}, \"Polygon\": [{\"X\": 0.12704066932201385, \"Y\": 0.09446584433317184}, {\"X\": 0.17775550484657288, \"Y\": 0.0952182486653328}, {\"X\": 0.17748454213142395, \"Y\": 0.10612215846776962}, {\"X\": 0.12676970660686493, \"Y\": 0.10536976158618927}]}, \"Id\": \"5bff76b6-ae8e-4e66-b85f-77792f55a047\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.33594512939453, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050728343427181244, \"Height\": 0.013503748923540115, \"Left\": 0.2791037857532501, \"Top\": 0.09440571814775467}, \"Polygon\": [{\"X\": 0.27942079305648804, \"Y\": 0.09440571814775467}, {\"X\": 0.32983213663101196, \"Y\": 0.09515361487865448}, {\"X\": 0.32951515913009644, \"Y\": 0.10790946334600449}, {\"X\": 0.2791037857532501, \"Y\": 0.10716156661510468}]}, \"Id\": \"700c0612-1d56-4af2-9f6b-537d304386cd\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.64236450195312, \"Text\": \"Row7b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05090001970529556, \"Height\": 0.011833332479000092, \"Left\": 0.12696722149848938, \"Top\": 0.11194874346256256}, \"Polygon\": [{\"X\": 0.12724262475967407, \"Y\": 0.11194874346256256}, {\"X\": 0.17786724865436554, \"Y\": 0.11269981414079666}, {\"X\": 0.17759184539318085, \"Y\": 0.12378207594156265}, {\"X\": 0.12696722149848938, \"Y\": 0.12303101271390915}]}, \"Id\": \"0b48897e-3886-414f-8d96-5861ec818907\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 95.99404907226562, \"Text\": \"Col1_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05158643051981926, \"Height\": 0.012942059896886349, \"Left\": 0.27875372767448425, \"Top\": 0.11202514916658401}, \"Polygon\": [{\"X\": 0.2790564298629761, \"Y\": 0.11202514916658401}, {\"X\": 0.330340176820755, \"Y\": 0.11278599500656128}, {\"X\": 0.3300374448299408, \"Y\": 0.12496720999479294}, {\"X\": 0.27875372767448425, \"Y\": 0.12420637160539627}]}, \"Id\": \"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83966064453125, \"Text\": \"Row8b\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05077642947435379, \"Height\": 0.01085337158292532, \"Left\": 0.1270284354686737, \"Top\": 0.13003452122211456}, \"Polygon\": [{\"X\": 0.12727950513362885, \"Y\": 0.13003452122211456}, {\"X\": 0.1778048574924469, \"Y\": 0.13078412413597107}, {\"X\": 0.17755377292633057, \"Y\": 0.14088790118694305}, {\"X\": 0.1270284354686737, \"Y\": 0.14013829827308655}]}, \"Id\": \"19ebd05f-2064-40a1-af45-5bf4bb2b9720\", \"Page\": 3}, {\"BlockType\": \"WORD\", \"Confidence\": 97.21160125732422, \"Text\": \"Col2_8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05060119181871414, \"Height\": 0.013671496883034706, \"Left\": 0.27921262383461, \"Top\": 0.12942373752593994}, \"Polygon\": [{\"X\": 0.27953383326530457, \"Y\": 0.12942373752593994}, {\"X\": 0.32981380820274353, \"Y\": 0.13016968965530396}, {\"X\": 0.32949259877204895, \"Y\": 0.1430952250957489}, {\"X\": 0.27921262383461, \"Y\": 0.14234928786754608}]}, \"Id\": \"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\", \"Page\": 3}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.88400268554688, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.30704912543296814, \"Height\": 0.05798517167568207, \"Left\": 0.11730676889419556, \"Top\": 0.08864963054656982}, \"Polygon\": [{\"X\": 0.11863500624895096, \"Y\": 0.08864963054656982}, {\"X\": 0.4243558943271637, \"Y\": 0.09318529069423676}, {\"X\": 0.4230276644229889, \"Y\": 0.1466348022222519}, {\"X\": 0.11730676889419556, \"Y\": 0.14209914207458496}]}, \"Id\": \"cf8e09a1-c317-40c1-9c45-e830e14167d5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6cbde6a5-b1f1-4f20-bac1-d64bf8f23b27\", \"248e8170-9874-4b54-b61b-24b880aa1fe0\", \"ff1bc55a-d031-4982-bef5-21ce60c43230\", \"39ddbcff-6a8d-4c03-9fa6-15e1d1eb6e78\", \"2c39f515-ead5-49e7-bde5-0b3a9d4e4b67\", \"95b47127-c671-4bb0-94fa-21f4e6ad1755\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 71.59398651123047, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15295107662677765, \"Height\": 0.02052159234881401, \"Left\": 0.1181812584400177, \"Top\": 0.08864963054656982}, \"Polygon\": [{\"X\": 0.11863500624895096, \"Y\": 0.08864963054656982}, {\"X\": 0.27113234996795654, \"Y\": 0.09091207385063171}, {\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}, {\"X\": 0.1181812584400177, \"Y\": 0.10690877586603165}]}, \"Id\": \"6cbde6a5-b1f1-4f20-bac1-d64bf8f23b27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5bff76b6-ae8e-4e66-b85f-77792f55a047\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 94.80577850341797, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.153677299618721, \"Height\": 0.020532365888357162, \"Left\": 0.2706786096096039, \"Top\": 0.09091207385063171}, \"Polygon\": [{\"X\": 0.27113234996795654, \"Y\": 0.09091207385063171}, {\"X\": 0.4243558943271637, \"Y\": 0.09318529069423676}, {\"X\": 0.42390215396881104, \"Y\": 0.11144443601369858}, {\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}]}, \"Id\": \"248e8170-9874-4b54-b61b-24b880aa1fe0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"700c0612-1d56-4af2-9f6b-537d304386cd\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 96.32347106933594, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15293458104133606, \"Height\": 0.019857630133628845, \"Left\": 0.11774401366710663, \"Top\": 0.10690877586603165}, \"Polygon\": [{\"X\": 0.1181812584400177, \"Y\": 0.10690877586603165}, {\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}, {\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}, {\"X\": 0.11774401366710663, \"Y\": 0.1245039626955986}]}, \"Id\": \"ff1bc55a-d031-4982-bef5-21ce60c43230\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b48897e-3886-414f-8d96-5861ec818907\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 95.25926971435547, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15366080403327942, \"Height\": 0.019868405535817146, \"Left\": 0.2702413499355316, \"Top\": 0.10917121917009354}, \"Polygon\": [{\"X\": 0.2706786096096039, \"Y\": 0.10917121917009354}, {\"X\": 0.42390215396881104, \"Y\": 0.11144443601369858}, {\"X\": 0.42346489429473877, \"Y\": 0.12903961539268494}, {\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}]}, \"Id\": \"39ddbcff-6a8d-4c03-9fa6-15e1d1eb6e78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 95.24032592773438, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15293458104133606, \"Height\": 0.0198576208204031, \"Left\": 0.11730676889419556, \"Top\": 0.1245039626955986}, \"Polygon\": [{\"X\": 0.11774401366710663, \"Y\": 0.1245039626955986}, {\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}, {\"X\": 0.26980409026145935, \"Y\": 0.14436158537864685}, {\"X\": 0.11730676889419556, \"Y\": 0.14209914207458496}]}, \"Id\": \"2c39f515-ead5-49e7-bde5-0b3a9d4e4b67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19ebd05f-2064-40a1-af45-5bf4bb2b9720\"]}], \"Page\": 3}, {\"BlockType\": \"CELL\", \"Confidence\": 79.30333709716797, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15366080403327942, \"Height\": 0.0198683962225914, \"Left\": 0.26980409026145935, \"Top\": 0.1267663985490799}, \"Polygon\": [{\"X\": 0.2702413499355316, \"Y\": 0.1267663985490799}, {\"X\": 0.42346489429473877, \"Y\": 0.12903961539268494}, {\"X\": 0.4230276644229889, \"Y\": 0.1466348022222519}, {\"X\": 0.26980409026145935, \"Y\": 0.14436158537864685}]}, \"Id\": \"95b47127-c671-4bb0-94fa-21f4e6ad1755\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\"]}], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 69.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.053037382662296295, \"Height\": 0.011863872408866882, \"Left\": 0.12560312449932098, \"Top\": 0.13018786907196045}, \"Polygon\": [{\"X\": 0.1258784979581833, \"Y\": 0.13018786907196045}, {\"X\": 0.17864051461219788, \"Y\": 0.13097065687179565}, {\"X\": 0.17836514115333557, \"Y\": 0.14205174148082733}, {\"X\": 0.12560312449932098, \"Y\": 0.14126896858215332}]}, \"Id\": \"74c6bcc1-48f5-4105-921a-0fc81561349d\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"f5316249-bf5a-4d5b-95db-5cd2e0545732\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"19ebd05f-2064-40a1-af45-5bf4bb2b9720\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 69.0, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.052074331790208817, \"Height\": 0.012668600305914879, \"Left\": 0.2790188789367676, \"Top\": 0.12979111075401306}, \"Polygon\": [{\"X\": 0.2793146073818207, \"Y\": 0.12979111075401306}, {\"X\": 0.3310932219028473, \"Y\": 0.1305592954158783}, {\"X\": 0.3307974934577942, \"Y\": 0.1424597054719925}, {\"X\": 0.2790188789367676, \"Y\": 0.14169152081012726}]}, \"Id\": \"f5316249-bf5a-4d5b-95db-5cd2e0545732\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dfa84a2a-e8dc-4fc8-a54d-55713006ee98\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 54.000003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050488073378801346, \"Height\": 0.012472798116505146, \"Left\": 0.12750546634197235, \"Top\": 0.1119389533996582}, \"Polygon\": [{\"X\": 0.12779691815376282, \"Y\": 0.1119389533996582}, {\"X\": 0.1779935359954834, \"Y\": 0.11268366873264313}, {\"X\": 0.17770209908485413, \"Y\": 0.12441174685955048}, {\"X\": 0.12750546634197235, \"Y\": 0.12366703152656555}]}, \"Id\": \"f1aeef81-7b6d-4079-95ea-8ed53aff5457\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"c0cc1be5-4a9f-437d-b5e1-31f46f675ecd\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"0b48897e-3886-414f-8d96-5861ec818907\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 54.000003814697266, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05023081600666046, \"Height\": 0.012434698641300201, \"Left\": 0.27983802556991577, \"Top\": 0.1121588796377182}, \"Polygon\": [{\"X\": 0.2801286280155182, \"Y\": 0.1121588796377182}, {\"X\": 0.3300688564777374, \"Y\": 0.1128997877240181}, {\"X\": 0.329778254032135, \"Y\": 0.1245935782790184}, {\"X\": 0.27983802556991577, \"Y\": 0.12385266274213791}]}, \"Id\": \"c0cc1be5-4a9f-437d-b5e1-31f46f675ecd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55b11b2d-2c09-4623-9c2a-c76bcb6ae0b9\"]}], \"EntityTypes\": [\"VALUE\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033533789217472076, \"Height\": 0.011719416826963425, \"Left\": 0.2783830165863037, \"Top\": 0.09511911123991013}, \"Polygon\": [{\"X\": 0.2786619961261749, \"Y\": 0.09511911123991013}, {\"X\": 0.3119167983531952, \"Y\": 0.09561248123645782}, {\"X\": 0.31163784861564636, \"Y\": 0.10683852434158325}, {\"X\": 0.2783830165863037, \"Y\": 0.10634516179561615}]}, \"Id\": \"dc7bf528-a1c8-4c73-9e08-75c347bc12e8\", \"Relationships\": [{\"Type\": \"VALUE\", \"Ids\": [\"7f8acdcc-2c3e-4e39-b2aa-da1d0bfab29a\"]}, {\"Type\": \"CHILD\", \"Ids\": [\"700c0612-1d56-4af2-9f6b-537d304386cd\"]}], \"EntityTypes\": [\"KEY\"], \"Page\": 3}, {\"BlockType\": \"KEY_VALUE_SET\", \"Confidence\": 46.5, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.010154496878385544, \"Height\": 0.011597048491239548, \"Left\": 0.32046273350715637, \"Top\": 0.09502559900283813}, \"Polygon\": [{\"X\": 0.3207472860813141, \"Y\": 0.09502559900283813}, {\"X\": 0.330617219209671, \"Y\": 0.09517203271389008}, {\"X\": 0.3303326666355133, \"Y\": 0.10662265121936798}, {\"X\": 0.32046273350715637, \"Y\": 0.10647621750831604}]}, \"Id\": \"7f8acdcc-2c3e-4e39-b2aa-da1d0bfab29a\", \"EntityTypes\": [\"VALUE\"], \"Page\": 3}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"51774f3b-4edd-4ea8-ac36-20b9603a85b4\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"51774f3b-4edd-4ea8-ac36-20b9603a85b4\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"83989\", \"date\": \"Wed, 15 Dec 2021 18:07:05 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/patient_intake_form_sample.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.9780868887901306,\n                    \"Height\": 0.9680877923965454,\n                    \"Left\": 0.008649002760648727,\n                    \"Top\": 0.01405724324285984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.008649002760648727,\n                        \"Y\": 0.014585006982088089\n                    },\n                    {\n                        \"X\": 0.9867358803749084,\n                        \"Y\": 0.01405724324285984\n                    },\n                    {\n                        \"X\": 0.9847087264060974,\n                        \"Y\": 0.9821450114250183\n                    },\n                    {\n                        \"X\": 0.010073013603687286,\n                        \"Y\": 0.9819282293319702\n                    }\n                ]\n            },\n            \"Id\": \"e8c2abe1-a014-4319-b59e-76405a4abb1e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"566c82e3-0f98-4123-ae36-de5e28a8f977\",\n                        \"5dea6a5b-d034-482b-af81-72ba4599c341\",\n                        \"6d3dbae5-2d5c-403a-aedc-2464a76a4b2b\",\n                        \"cdc085d5-8152-42b0-948a-fc400dec2b5d\",\n                        \"97dca2b2-04f9-4f93-94b7-51daec35c427\",\n                        \"ee68fe7c-06f3-44d0-a547-2ddecb382831\",\n                        \"9091f308-76d5-4154-8e11-9424c6001907\",\n                        \"8dfa8667-2f30-4298-90fb-6d0e99a02542\",\n                        \"5f8c1538-8641-48f0-9db6-15b544043d1c\",\n                        \"a2631106-6aeb-46d9-bc18-9f9f75fd0e97\",\n                        \"75f35bb1-1bc4-4b0a-b8ee-b19b928d7760\",\n                        \"52c93851-c968-4854-ae51-4f896171ae6a\",\n                        \"4acbb0d4-64d5-4294-85b4-7ad719ad81f2\",\n                        \"650f6a41-c7c9-4182-958e-1d7938f84065\",\n                        \"98773783-4ff2-405c-885d-1fc7b2b4c378\",\n                        \"3b40cd5a-a2f2-48b1-88b4-47c748987b00\",\n                        \"6c8ddc13-7ed6-4889-b111-8d1f66c6ecff\",\n                        \"fc23ab30-609e-4302-9300-f781ae173b20\",\n                        \"03c9975f-d5a5-486b-827c-a482734ac6ac\",\n                        \"b339da56-4863-4e9f-aa1a-8dbc81b37a6b\",\n                        \"3fc37f39-6969-4859-a18b-8d84d9dbb1ae\",\n                        \"d65bb579-c467-44e3-ad99-6966f51f0dc2\",\n                        \"a86a808c-8724-4d5f-87d6-cdccc4ed60b5\",\n                        \"1c2c922c-36ba-4cdd-a614-b95aae85855d\",\n                        \"23ef9d4e-3795-480a-96bb-bf3a214726d8\",\n                        \"00df43fb-f7c1-4ff0-a37f-28340abde066\",\n                        \"ee0ec822-d50b-4276-98e2-324e2a7672c3\",\n                        \"8d8ccac6-fff3-4db7-b70e-2e5221b77e8d\",\n                        \"ebb85f36-98c2-4cc3-81ff-bb6b6e5ba45a\",\n                        \"0f8adabc-f2cb-4ddd-9a49-4e0b4614e4ab\",\n                        \"274676ba-5a26-4173-b624-a7b65ba093c4\",\n                        \"773d2df4-c3e5-46ec-932a-bf6d80b148bd\",\n                        \"1fec2e82-348c-4ac4-a527-59f92f3961bd\",\n                        \"e71d705d-462a-4db8-bd6c-1206efe9c14e\",\n                        \"fb50ffb5-155a-40a5-9502-51a2934bc6f4\",\n                        \"dfa766c1-ec79-4177-b3ed-ec2b588a7a8f\",\n                        \"2c0b905e-1ff9-4eaa-a811-fd885bc552a1\",\n                        \"8fac75ae-8846-440e-bd2c-0878d26cd3d2\",\n                        \"1d900628-43bd-486d-8475-e000106aceaf\",\n                        \"2646537a-ac5c-438f-97ca-a62e1b7abfca\",\n                        \"18302992-fc1c-4251-b0c5-00fa7082b25f\",\n                        \"e7e4f04d-96f8-42f0-a1fb-b80303b44c98\",\n                        \"c9eee2cb-bbe2-4407-a708-89530aaf704b\",\n                        \"c3b75e43-66f5-4f36-b7b1-404744a6ac41\",\n                        \"ab718ef9-3112-423d-ba98-d70afc4a4b0a\",\n                        \"05c816ff-4dc5-459a-aea3-fb0981ab0c53\",\n                        \"ab1b8f73-d364-43e9-a8b7-6f62325799dd\",\n                        \"ae4b8d7e-bdfc-428f-802d-4d68ab5ceb5d\",\n                        \"4e035310-0069-4260-aa0c-4bc84be9dd74\",\n                        \"fde2c432-ad8c-4bf5-86b3-0bb0fd4e1c09\",\n                        \"b3d90e86-e336-4cf0-92de-48468d084c18\",\n                        \"b82064c6-6a57-4981-bf69-55570ca371e5\",\n                        \"d13e359a-3b3f-4f42-a23b-b2ace921fc20\",\n                        \"174d00c2-3322-4419-936a-33635729e7c2\",\n                        \"1afb469d-daf4-4531-bae9-167fb7e7b48d\",\n                        \"b43ddd1f-c343-4698-a872-ba1e7c9b6fd7\",\n                        \"7d0137f9-8fa4-46f0-a0f5-336844b90d81\",\n                        \"a3e89d1a-e942-4f4e-93a6-fbb545427f9b\",\n                        \"6d24cae0-05a2-4bda-b0bf-ccc84249c05f\",\n                        \"c9ff6b91-a00d-4e27-9ce8-8f78761e325b\",\n                        \"8eb803b8-5a7a-4b57-bdcb-fec5bdd9c33e\",\n                        \"916b11f1-5840-4460-a8d4-977c102c3d6c\",\n                        \"c510cace-3e57-470d-ad7d-bc1b0cc5fee9\",\n                        \"d6fb56a8-c669-4d4d-81b7-098934f1ef66\",\n                        \"b500dc4b-9138-41b2-8d2b-26c2fefcedae\",\n                        \"03717561-2bc9-418a-aafb-fe0eb7a16dd8\",\n                        \"a91a6e5a-d92e-4c76-b1c5-1ea3da14990d\",\n                        \"e073d8fe-e125-4345-8359-ce50d4a58470\",\n                        \"c637722a-61d4-4b54-92f7-ecb4759663f0\",\n                        \"7b164487-cd11-47c9-91c9-0399c0ded334\",\n                        \"5c952311-444a-44cf-9796-9aab94c96ba7\",\n                        \"8c24044d-2da1-4929-ae4c-35ca164e4798\",\n                        \"611dc538-ed40-4ae7-8f36-be1891123b99\",\n                        \"0e335795-b98c-4ffa-9453-5a6eb03aa9d8\",\n                        \"d678400b-e2f1-42b5-bec7-3d8362e8558d\",\n                        \"90b23ce7-dcdb-404d-96a2-d710ee74b143\",\n                        \"dafc5253-965b-4f20-ba72-12bb89674d68\",\n                        \"fb13a6bd-acc8-4686-b548-f4b557ab1276\",\n                        \"c29d5b10-336a-49da-88ac-9deb30e470fd\",\n                        \"e091cd17-2b83-4c6c-b73e-cd7553416b12\",\n                        \"bb6ca0c7-770e-41a7-918e-958bf9a79ded\",\n                        \"8c8bbf7d-b540-4405-813a-abf7f98b69c7\",\n                        \"1b20e9df-b2c8-4025-a7f2-817feff17c10\",\n                        \"9a5b5e19-1fbc-495e-a178-e272a7e78c4f\",\n                        \"f3511325-d100-4284-b55f-8f5caea0acb2\",\n                        \"55b5da32-af82-4212-b5dc-6b075ae2b2b9\",\n                        \"46b38ee1-dac4-4670-a03f-036dbdb5aa15\",\n                        \"768c80d3-06e6-4816-8540-91bcbbbdf7eb\",\n                        \"24360172-8713-4bc6-b423-d5429cee824b\",\n                        \"12be0d05-9ad2-4e89-8bdf-839e0f26d83c\",\n                        \"acd7e383-c242-4937-968d-5361ae9efc26\",\n                        \"c891806a-1ae4-4db8-b179-425ddfa98f83\",\n                        \"11264588-e66c-488e-8331-d856b521c7c1\",\n                        \"2df55bd0-c50e-49a8-8f3a-aeb772907391\",\n                        \"c947d1d9-5a9f-46d8-be5d-663bb87f68ea\",\n                        \"dc78d259-ad54-478a-aa65-ce1499d3919b\",\n                        \"496337a2-c46b-44a4-8d44-5bdc0e78be4e\",\n                        \"ee6a8c18-9c09-4ff9-b4d6-1dd35eb113a2\",\n                        \"b36a5d3c-3fb9-459a-8afa-dd3c34b66d5c\",\n                        \"b4c79e66-4ccd-42ce-aee1-807358cae936\",\n                        \"fe704a45-5c1d-4228-92ac-8ce600e587a3\",\n                        \"9e3f7b0d-bbcc-4b05-86e6-21fd2b74e782\",\n                        \"40aa88bd-be96-4d4f-bf5b-4467ca4ca5fe\",\n                        \"4ae22ea1-f21c-4003-9173-f511d82fac73\",\n                        \"007797e2-895e-470d-81e4-19c223462cd5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.47303771972656,\n            \"Text\": \"Patient Information\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22112320363521576,\n                    \"Height\": 0.014429302886128426,\n                    \"Left\": 0.024750223383307457,\n                    \"Top\": 0.05477751046419144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.024750223383307457,\n                        \"Y\": 0.054889798164367676\n                    },\n                    {\n                        \"X\": 0.24586471915245056,\n                        \"Y\": 0.05477751046419144\n                    },\n                    {\n                        \"X\": 0.24587342143058777,\n                        \"Y\": 0.06909701973199844\n                    },\n                    {\n                        \"X\": 0.024770462885499,\n                        \"Y\": 0.06920681148767471\n                    }\n                ]\n            },\n            \"Id\": \"566c82e3-0f98-4123-ae36-de5e28a8f977\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7f0e72e5-bf99-433a-a2df-83ac0e2a6e50\",\n                        \"27322c8e-0d6f-44b7-8464-60ef61e8dffa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76781463623047,\n            \"Text\": \"First\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03300444409251213,\n                    \"Height\": 0.010376243852078915,\n                    \"Left\": 0.024902865290641785,\n                    \"Top\": 0.10495096445083618\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.024902865290641785,\n                        \"Y\": 0.1049664169549942\n                    },\n                    {\n                        \"X\": 0.057893916964530945,\n                        \"Y\": 0.10495096445083618\n                    },\n                    {\n                        \"X\": 0.057907313108444214,\n                        \"Y\": 0.11531202495098114\n                    },\n                    {\n                        \"X\": 0.02491750754415989,\n                        \"Y\": 0.11532720923423767\n                    }\n                ]\n            },\n            \"Id\": \"5dea6a5b-d034-482b-af81-72ba4599c341\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4d3ba900-96cf-456b-9bd2-b98218a60188\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.38703155517578,\n            \"Text\": \"Name: ALEJANDRO Last Name: ROSALEZ\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.5666531920433044,\n                    \"Height\": 0.034006863832473755,\n                    \"Left\": 0.061271071434020996,\n                    \"Top\": 0.0831984207034111\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.061271071434020996,\n                        \"Y\": 0.08347341418266296\n                    },\n                    {\n                        \"X\": 0.6279242634773254,\n                        \"Y\": 0.0831984207034111\n                    },\n                    {\n                        \"X\": 0.6278977394104004,\n                        \"Y\": 0.11694537848234177\n                    },\n                    {\n                        \"X\": 0.06131426617503166,\n                        \"Y\": 0.11720528453588486\n                    }\n                ]\n            },\n            \"Id\": \"6d3dbae5-2d5c-403a-aedc-2464a76a4b2b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5b07e635-6071-46c6-8895-f656cad84dd8\",\n                        \"eecfe341-33ac-45f2-9ccb-4d2b14a557fb\",\n                        \"ebf9e970-1ea9-419c-8ea8-4e8020d4b158\",\n                        \"88f28f1f-ccc0-4e4c-b99b-56490afd5f88\",\n                        \"a14abacd-2a8e-4eb2-b70b-f70a6bb3d697\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.57328796386719,\n            \"Text\": \"Date of Birth: 10/10/1982\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.27315232157707214,\n                    \"Height\": 0.03505910560488701,\n                    \"Left\": 0.6988988518714905,\n                    \"Top\": 0.0901871770620346\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.698935329914093,\n                        \"Y\": 0.09031818062067032\n                    },\n                    {\n                        \"X\": 0.972051203250885,\n                        \"Y\": 0.0901871770620346\n                    },\n                    {\n                        \"X\": 0.9719798564910889,\n                        \"Y\": 0.1251228004693985\n                    },\n                    {\n                        \"X\": 0.6988988518714905,\n                        \"Y\": 0.12524628639221191\n                    }\n                ]\n            },\n            \"Id\": \"cdc085d5-8152-42b0-948a-fc400dec2b5d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"63a96e42-728a-47f1-ab28-11c4851dd163\",\n                        \"5676fc39-1107-48d2-a7a8-8a84233846ef\",\n                        \"61ec4b08-954a-4182-b800-cf0417b53744\",\n                        \"65f77b8a-b529-4cca-a09a-1144315b3e6b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.105224609375,\n            \"Text\": \"Sex: M\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09161209315061569,\n                    \"Height\": 0.025682901963591576,\n                    \"Left\": 0.02606121450662613,\n                    \"Top\": 0.12585987150669098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02606121450662613,\n                        \"Y\": 0.1259012669324875\n                    },\n                    {\n                        \"X\": 0.1176457330584526,\n                        \"Y\": 0.12585987150669098\n                    },\n                    {\n                        \"X\": 0.11767330765724182,\n                        \"Y\": 0.15150325000286102\n                    },\n                    {\n                        \"X\": 0.02609734795987606,\n                        \"Y\": 0.1515427827835083\n                    }\n                ]\n            },\n            \"Id\": \"97dca2b2-04f9-4f93-94b7-51daec35c427\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9ddcf789-e724-43d7-a4ea-6ab5d9c564a6\",\n                        \"5c7b0cec-a0a9-4b91-a351-36e5893de3c7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.29767608642578,\n            \"Text\": \"Marital Status: MARRIED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.24566742777824402,\n                    \"Height\": 0.025200383737683296,\n                    \"Left\": 0.16507448256015778,\n                    \"Top\": 0.12749364972114563\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16507448256015778,\n                        \"Y\": 0.12760432064533234\n                    },\n                    {\n                        \"X\": 0.41074174642562866,\n                        \"Y\": 0.12749364972114563\n                    },\n                    {\n                        \"X\": 0.4107418954372406,\n                        \"Y\": 0.15258821845054626\n                    },\n                    {\n                        \"X\": 0.16509711742401123,\n                        \"Y\": 0.15269403159618378\n                    }\n                ]\n            },\n            \"Id\": \"ee68fe7c-06f3-44d0-a547-2ddecb382831\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8be69434-0300-4dc9-85a2-b7f3dd3873eb\",\n                        \"c2e5c550-3811-4b8f-8a0c-6d41467e0859\",\n                        \"e0de7825-8ae8-4534-ade7-91c83a6ac072\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.50556182861328,\n            \"Text\": \"Email Address:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10933781415224075,\n                    \"Height\": 0.01057711336761713,\n                    \"Left\": 0.46349993348121643,\n                    \"Top\": 0.14209143817424774\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.463501900434494,\n                        \"Y\": 0.14213943481445312\n                    },\n                    {\n                        \"X\": 0.572837769985199,\n                        \"Y\": 0.14209143817424774\n                    },\n                    {\n                        \"X\": 0.5728316307067871,\n                        \"Y\": 0.15262147784233093\n                    },\n                    {\n                        \"X\": 0.46349993348121643,\n                        \"Y\": 0.1526685506105423\n                    }\n                ]\n            },\n            \"Id\": \"9091f308-76d5-4154-8e11-9424c6001907\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"380857be-751a-4fec-83e7-cb6b8e5ae853\",\n                        \"97c66f57-c239-4a06-8beb-1a5c91169483\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4350814819336,\n            \"Text\": \"Address: 123 ANY STREET\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.4036194980144501,\n                    \"Height\": 0.024809222668409348,\n                    \"Left\": 0.026537125930190086,\n                    \"Top\": 0.1671886444091797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026537125930190086,\n                        \"Y\": 0.16735786199569702\n                    },\n                    {\n                        \"X\": 0.4301566481590271,\n                        \"Y\": 0.1671886444091797\n                    },\n                    {\n                        \"X\": 0.43015503883361816,\n                        \"Y\": 0.19183650612831116\n                    },\n                    {\n                        \"X\": 0.026571810245513916,\n                        \"Y\": 0.19199787080287933\n                    }\n                ]\n            },\n            \"Id\": \"8dfa8667-2f30-4298-90fb-6d0e99a02542\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0cbfc0ca-3cb5-4e63-85e9-0c8e761cd745\",\n                        \"86d3e80d-94f0-4678-a582-92f18537b3dd\",\n                        \"1dc4bc24-0f91-4e03-9204-2de996b57195\",\n                        \"b9cdadaa-ca89-406f-a0f3-81ff8de054ff\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.60127258300781,\n            \"Text\": \"City: ANYTOWN\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22163230180740356,\n                    \"Height\": 0.023684285581111908,\n                    \"Left\": 0.6294335722923279,\n                    \"Top\": 0.17112264037132263\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6294522285461426,\n                        \"Y\": 0.17121483385562897\n                    },\n                    {\n                        \"X\": 0.8510658740997314,\n                        \"Y\": 0.17112264037132263\n                    },\n                    {\n                        \"X\": 0.8510280847549438,\n                        \"Y\": 0.1947188675403595\n                    },\n                    {\n                        \"X\": 0.6294335722923279,\n                        \"Y\": 0.19480693340301514\n                    }\n                ]\n            },\n            \"Id\": \"5f8c1538-8641-48f0-9db6-15b544043d1c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3f4ea8d1-eb6d-47b3-aa86-26127ab3ed9a\",\n                        \"8ebab614-c263-495b-a0ca-b99f80c85162\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.5450668334961,\n            \"Text\": \"State: CA Zip Code: 12345 Phone: 646-555-0111\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6629306077957153,\n                    \"Height\": 0.027481727302074432,\n                    \"Left\": 0.029684005305171013,\n                    \"Top\": 0.2077379822731018\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029684005305171013,\n                        \"Y\": 0.20799468457698822\n                    },\n                    {\n                        \"X\": 0.6926146149635315,\n                        \"Y\": 0.2077379822731018\n                    },\n                    {\n                        \"X\": 0.6925867795944214,\n                        \"Y\": 0.23497724533081055\n                    },\n                    {\n                        \"X\": 0.029722021892666817,\n                        \"Y\": 0.23521970212459564\n                    }\n                ]\n            },\n            \"Id\": \"a2631106-6aeb-46d9-bc18-9f9f75fd0e97\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"06c88670-8f85-4cb9-9626-c5f774928fa4\",\n                        \"7adc47fa-8481-48ee-b9be-2b2f7bb8f79e\",\n                        \"8770cd6f-dd1e-42b2-a1f0-a60d8966e682\",\n                        \"b604030d-198c-4d71-87d4-e0f25b41ab82\",\n                        \"0591943e-948f-4758-ac4e-5701843858c3\",\n                        \"9b9c3ea3-5405-4e4d-8100-bfe69d359d36\",\n                        \"2c4d6503-228c-4b98-8ff5-7654845f44d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.359619140625,\n            \"Text\": \"Emergency Contact 1:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23698876798152924,\n                    \"Height\": 0.016378134489059448,\n                    \"Left\": 0.028363563120365143,\n                    \"Top\": 0.2533695697784424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028363563120365143,\n                        \"Y\": 0.2534528374671936\n                    },\n                    {\n                        \"X\": 0.265343576669693,\n                        \"Y\": 0.2533695697784424\n                    },\n                    {\n                        \"X\": 0.265352338552475,\n                        \"Y\": 0.26966747641563416\n                    },\n                    {\n                        \"X\": 0.028386399149894714,\n                        \"Y\": 0.26974770426750183\n                    }\n                ]\n            },\n            \"Id\": \"75f35bb1-1bc4-4b0a-b8ee-b19b928d7760\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a1d8d060-614a-43fc-9664-8d4ed09c82fd\",\n                        \"eff4909d-0109-43db-a4c9-fd4e19a64c64\",\n                        \"10929a07-f0da-4962-808c-086697793ec7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.64696502685547,\n            \"Text\": \"First Name:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08324219286441803,\n                    \"Height\": 0.01016417145729065,\n                    \"Left\": 0.026568444445729256,\n                    \"Top\": 0.30072176456451416\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026568444445729256,\n                        \"Y\": 0.30074790120124817\n                    },\n                    {\n                        \"X\": 0.10979943722486496,\n                        \"Y\": 0.30072176456451416\n                    },\n                    {\n                        \"X\": 0.10981063544750214,\n                        \"Y\": 0.31086045503616333\n                    },\n                    {\n                        \"X\": 0.02658272162079811,\n                        \"Y\": 0.3108859360218048\n                    }\n                ]\n            },\n            \"Id\": \"52c93851-c968-4854-ae51-4f896171ae6a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6a874725-33b5-411f-b2bf-2380512cdd43\",\n                        \"1fb6c3e2-5244-4e5b-96d2-88731a67f718\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3665771484375,\n            \"Text\": \"CARLOS\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1125507578253746,\n                    \"Height\": 0.020094580948352814,\n                    \"Left\": 0.14590488374233246,\n                    \"Top\": 0.28983747959136963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14590488374233246,\n                        \"Y\": 0.28987377882003784\n                    },\n                    {\n                        \"X\": 0.2584443688392639,\n                        \"Y\": 0.28983747959136963\n                    },\n                    {\n                        \"X\": 0.25845563411712646,\n                        \"Y\": 0.3098975121974945\n                    },\n                    {\n                        \"X\": 0.1459244042634964,\n                        \"Y\": 0.30993205308914185\n                    }\n                ]\n            },\n            \"Id\": \"4acbb0d4-64d5-4294-85b4-7ad719ad81f2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7caef91-0794-4042-a5b9-9d397ab13855\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.52379608154297,\n            \"Text\": \"Last Name: SALAZAR\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2662397027015686,\n                    \"Height\": 0.02153628133237362,\n                    \"Left\": 0.36477676033973694,\n                    \"Top\": 0.2908293306827545\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36477676033973694,\n                        \"Y\": 0.29091501235961914\n                    },\n                    {\n                        \"X\": 0.6310164332389832,\n                        \"Y\": 0.2908293306827545\n                    },\n                    {\n                        \"X\": 0.6309993267059326,\n                        \"Y\": 0.3122844398021698\n                    },\n                    {\n                        \"X\": 0.3647804856300354,\n                        \"Y\": 0.3123656213283539\n                    }\n                ]\n            },\n            \"Id\": \"650f6a41-c7c9-4182-958e-1d7938f84065\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"74e3e7f8-af72-4d87-8051-9db5de05be55\",\n                        \"ca89c29f-cf90-4886-94ef-5a6f60a8a77b\",\n                        \"a50e4e63-cccd-47bd-8b87-593540812ae5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.94585418701172,\n            \"Text\": \"Phone: 212-555-0150\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.28256699442863464,\n                    \"Height\": 0.018597956746816635,\n                    \"Left\": 0.026661531999707222,\n                    \"Top\": 0.31775954365730286\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026661531999707222,\n                        \"Y\": 0.3178445100784302\n                    },\n                    {\n                        \"X\": 0.3092215359210968,\n                        \"Y\": 0.31775954365730286\n                    },\n                    {\n                        \"X\": 0.3092285096645355,\n                        \"Y\": 0.336276650428772\n                    },\n                    {\n                        \"X\": 0.02668759785592556,\n                        \"Y\": 0.3363575041294098\n                    }\n                ]\n            },\n            \"Id\": \"98773783-4ff2-405c-885d-1fc7b2b4c378\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46539895-324a-492c-acac-771a1d077812\",\n                        \"fc4b574b-9302-4689-9cd4-4e990c000476\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3597183227539,\n            \"Text\": \"Relationship to Patient:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16843090951442719,\n                    \"Height\": 0.012656309641897678,\n                    \"Left\": 0.3662097454071045,\n                    \"Top\": 0.3265528380870819\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3662097454071045,\n                        \"Y\": 0.3266023099422455\n                    },\n                    {\n                        \"X\": 0.5346406698226929,\n                        \"Y\": 0.3265528380870819\n                    },\n                    {\n                        \"X\": 0.5346350073814392,\n                        \"Y\": 0.33916133642196655\n                    },\n                    {\n                        \"X\": 0.3662118911743164,\n                        \"Y\": 0.3392091393470764\n                    }\n                ]\n            },\n            \"Id\": \"3b40cd5a-a2f2-48b1-88b4-47c748987b00\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46b2b1e9-33bf-4dcd-a189-8354178190e4\",\n                        \"3e568496-de63-43f8-ae4e-677962e48b55\",\n                        \"d4ff3114-1c7a-45fe-8766-b2fdaa3e97b6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36678314208984,\n            \"Text\": \"BROTHER\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14935685694217682,\n                    \"Height\": 0.022701581940054893,\n                    \"Left\": 0.5772362351417542,\n                    \"Top\": 0.3167421519756317\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5772498846054077,\n                        \"Y\": 0.31678715348243713\n                    },\n                    {\n                        \"X\": 0.7265931367874146,\n                        \"Y\": 0.3167421519756317\n                    },\n                    {\n                        \"X\": 0.7265671491622925,\n                        \"Y\": 0.33940139412879944\n                    },\n                    {\n                        \"X\": 0.5772362351417542,\n                        \"Y\": 0.33944374322891235\n                    }\n                ]\n            },\n            \"Id\": \"6c8ddc13-7ed6-4889-b111-8d1f66c6ecff\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"eefb51b8-7045-471f-a545-d27cc1467950\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4133071899414,\n            \"Text\": \"Emergency Contact 2:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23804780840873718,\n                    \"Height\": 0.016056399792432785,\n                    \"Left\": 0.027438711374998093,\n                    \"Top\": 0.3622821867465973\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027438711374998093,\n                        \"Y\": 0.362345427274704\n                    },\n                    {\n                        \"X\": 0.2654779553413391,\n                        \"Y\": 0.3622821867465973\n                    },\n                    {\n                        \"X\": 0.26548653841018677,\n                        \"Y\": 0.37827837467193604\n                    },\n                    {\n                        \"X\": 0.027461187914013863,\n                        \"Y\": 0.37833860516548157\n                    }\n                ]\n            },\n            \"Id\": \"fc23ab30-609e-4302-9300-f781ae173b20\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15ce9d8b-5126-49b0-9d5c-95a77160ec72\",\n                        \"24206965-8d24-441c-9026-57607a88605a\",\n                        \"1d9179aa-311d-4d03-a1bf-822810765210\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.48372650146484,\n            \"Text\": \"First Name: JANE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.216994509100914,\n                    \"Height\": 0.024114441126585007,\n                    \"Left\": 0.02615458518266678,\n                    \"Top\": 0.39776986837387085\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02615458518266678,\n                        \"Y\": 0.39782142639160156\n                    },\n                    {\n                        \"X\": 0.24313423037528992,\n                        \"Y\": 0.39776986837387085\n                    },\n                    {\n                        \"X\": 0.24314910173416138,\n                        \"Y\": 0.42183685302734375\n                    },\n                    {\n                        \"X\": 0.026188518851995468,\n                        \"Y\": 0.42188429832458496\n                    }\n                ]\n            },\n            \"Id\": \"03c9975f-d5a5-486b-827c-a482734ac6ac\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"64542f8a-0876-4514-92ba-857e91538b9c\",\n                        \"2e7c4590-8de3-4841-90bc-8a466b1ec1dc\",\n                        \"e3a2bb2e-25b4-4a97-90ba-96a2e4bb6966\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.63331604003906,\n            \"Text\": \"Last Name:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08145543932914734,\n                    \"Height\": 0.009971861727535725,\n                    \"Left\": 0.3642512261867523,\n                    \"Top\": 0.4118803143501282\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3642512261867523,\n                        \"Y\": 0.41189876198768616\n                    },\n                    {\n                        \"X\": 0.44570666551589966,\n                        \"Y\": 0.4118803143501282\n                    },\n                    {\n                        \"X\": 0.44570547342300415,\n                        \"Y\": 0.4218343496322632\n                    },\n                    {\n                        \"X\": 0.3642529845237732,\n                        \"Y\": 0.421852171421051\n                    }\n                ]\n            },\n            \"Id\": \"b339da56-4863-4e9f-aa1a-8dbc81b37a6b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d1b85909-a649-4fd0-bdfc-602dace86b3a\",\n                        \"edc4c419-c3a0-4976-a5a1-ad55d1c85a74\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36656188964844,\n            \"Text\": \"DOE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06082086265087128,\n                    \"Height\": 0.022709369659423828,\n                    \"Left\": 0.5087264180183411,\n                    \"Top\": 0.3982089161872864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.508734405040741,\n                        \"Y\": 0.398223340511322\n                    },\n                    {\n                        \"X\": 0.5695472359657288,\n                        \"Y\": 0.3982089161872864\n                    },\n                    {\n                        \"X\": 0.5695342421531677,\n                        \"Y\": 0.4209049344062805\n                    },\n                    {\n                        \"X\": 0.5087264180183411,\n                        \"Y\": 0.4209182858467102\n                    }\n                ]\n            },\n            \"Id\": \"3fc37f39-6969-4859-a18b-8d84d9dbb1ae\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"43c6c1c3-e32a-4132-aa39-97e5bb18f399\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.10330963134766,\n            \"Text\": \"Phone: 650-555-0123\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3125086724758148,\n                    \"Height\": 0.019550109282135963,\n                    \"Left\": 0.027077801525592804,\n                    \"Top\": 0.42579594254493713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027077801525592804,\n                        \"Y\": 0.4258633255958557\n                    },\n                    {\n                        \"X\": 0.33958128094673157,\n                        \"Y\": 0.42579594254493713\n                    },\n                    {\n                        \"X\": 0.339586466550827,\n                        \"Y\": 0.4452834725379944\n                    },\n                    {\n                        \"X\": 0.027105214074254036,\n                        \"Y\": 0.44534605741500854\n                    }\n                ]\n            },\n            \"Id\": \"d65bb579-c467-44e3-ad99-6966f51f0dc2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2808b2c9-91c0-48b7-9857-8ea1911b1dbc\",\n                        \"5fe9d9b0-a0ec-409f-91d8-8f1f9bb9aa8a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.24687194824219,\n            \"Text\": \"Relationship to Patient:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16575634479522705,\n                    \"Height\": 0.012117980979382992,\n                    \"Left\": 0.366242378950119,\n                    \"Top\": 0.435703307390213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.366242378950119,\n                        \"Y\": 0.4357377588748932\n                    },\n                    {\n                        \"X\": 0.5319987535476685,\n                        \"Y\": 0.435703307390213\n                    },\n                    {\n                        \"X\": 0.5319934487342834,\n                        \"Y\": 0.44778844714164734\n                    },\n                    {\n                        \"X\": 0.36624443531036377,\n                        \"Y\": 0.4478212893009186\n                    }\n                ]\n            },\n            \"Id\": \"a86a808c-8724-4d5f-87d6-cdccc4ed60b5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"555488ef-128e-43c4-bf3b-e5d0d5063951\",\n                        \"3f947731-7d5b-41a7-baa8-dbb617e6ea08\",\n                        \"8a1073eb-91f7-4a2e-93da-40e169a4bc39\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36680603027344,\n            \"Text\": \"FRIEND\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12327547371387482,\n                    \"Height\": 0.02097543329000473,\n                    \"Left\": 0.5734485387802124,\n                    \"Top\": 0.42639267444610596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5734608173370361,\n                        \"Y\": 0.4264191687107086\n                    },\n                    {\n                        \"X\": 0.696723997592926,\n                        \"Y\": 0.42639267444610596\n                    },\n                    {\n                        \"X\": 0.696702241897583,\n                        \"Y\": 0.4473436176776886\n                    },\n                    {\n                        \"X\": 0.5734485387802124,\n                        \"Y\": 0.4473680853843689\n                    }\n                ]\n            },\n            \"Id\": \"1c2c922c-36ba-4cdd-a614-b95aae85855d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"da325cfb-9f54-41b5-bbb7-5ae064085046\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6984634399414,\n            \"Text\": \"Did you feel fever or feverish lately?\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2959861755371094,\n                    \"Height\": 0.016353121027350426,\n                    \"Left\": 0.036096442490816116,\n                    \"Top\": 0.5895179510116577\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036096442490816116,\n                        \"Y\": 0.5895435810089111\n                    },\n                    {\n                        \"X\": 0.33207783102989197,\n                        \"Y\": 0.5895179510116577\n                    },\n                    {\n                        \"X\": 0.3320826292037964,\n                        \"Y\": 0.6058492064476013\n                    },\n                    {\n                        \"X\": 0.03611889109015465,\n                        \"Y\": 0.6058710813522339\n                    }\n                ]\n            },\n            \"Id\": \"23ef9d4e-3795-480a-96bb-bf3a214726d8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"171da7b7-1584-429d-8d14-fd4a3b1e96e2\",\n                        \"03861b0f-6254-4fe5-a226-fbbfbdfaaafc\",\n                        \"36a0f3c7-51df-4eee-9052-ab6c1a7717a0\",\n                        \"9861e08c-d07e-481e-bea7-b8bd31f8ee96\",\n                        \"a37d6407-f2fa-482a-a090-4dad53b726c4\",\n                        \"d0f2b228-fa1b-4330-a98e-18a64fee6d35\",\n                        \"d4b42171-0598-4b08-9738-22e0029e681e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92642974853516,\n            \"Text\": \"Yes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03204810991883278,\n                    \"Height\": 0.012207340449094772,\n                    \"Left\": 0.7173052430152893,\n                    \"Top\": 0.5948289632797241\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7173188328742981,\n                        \"Y\": 0.5948315858840942\n                    },\n                    {\n                        \"X\": 0.7493533492088318,\n                        \"Y\": 0.5948289632797241\n                    },\n                    {\n                        \"X\": 0.7493383288383484,\n                        \"Y\": 0.6070339679718018\n                    },\n                    {\n                        \"X\": 0.7173052430152893,\n                        \"Y\": 0.607036292552948\n                    }\n                ]\n            },\n            \"Id\": \"00df43fb-f7c1-4ff0-a37f-28340abde066\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a2a649d0-2586-482a-8509-0b688558a67b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71234130859375,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02409723401069641,\n                    \"Height\": 0.012760726734995842,\n                    \"Left\": 0.8178417682647705,\n                    \"Top\": 0.5957388877868652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8178606629371643,\n                        \"Y\": 0.5957408547401428\n                    },\n                    {\n                        \"X\": 0.8419389724731445,\n                        \"Y\": 0.5957388877868652\n                    },\n                    {\n                        \"X\": 0.8419189453125,\n                        \"Y\": 0.6084978580474854\n                    },\n                    {\n                        \"X\": 0.8178417682647705,\n                        \"Y\": 0.6084995865821838\n                    }\n                ]\n            },\n            \"Id\": \"ee0ec822-d50b-4276-98e2-324e2a7672c3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"747b263b-1abd-48c4-85bc-11092160df03\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84163665771484,\n            \"Text\": \"Are you having shortness of breath?\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2983400821685791,\n                    \"Height\": 0.015300423838198185,\n                    \"Left\": 0.03699076175689697,\n                    \"Top\": 0.6554993987083435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03699076175689697,\n                        \"Y\": 0.6555097699165344\n                    },\n                    {\n                        \"X\": 0.33532652258872986,\n                        \"Y\": 0.6554993987083435\n                    },\n                    {\n                        \"X\": 0.3353308439254761,\n                        \"Y\": 0.6707931160926819\n                    },\n                    {\n                        \"X\": 0.03701173886656761,\n                        \"Y\": 0.6707998514175415\n                    }\n                ]\n            },\n            \"Id\": \"8d8ccac6-fff3-4db7-b70e-2e5221b77e8d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9e8203e6-0768-4de4-b654-3637300ec7cc\",\n                        \"19e89164-8cbb-4f5a-846d-c90334c7d268\",\n                        \"7ccf02b4-49ea-42ba-bd3e-9717980f2f57\",\n                        \"cc6dec03-8f86-4af0-9a69-399c1ba9bd7d\",\n                        \"07c2ed48-1478-4e4f-b683-3b5d4b89d949\",\n                        \"d222aaad-9347-4c5a-89e6-90d2f9b6961d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93043518066406,\n            \"Text\": \"Yes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03121311031281948,\n                    \"Height\": 0.011897028423845768,\n                    \"Left\": 0.7167641520500183,\n                    \"Top\": 0.6613273024559021\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7167773842811584,\n                        \"Y\": 0.6613282561302185\n                    },\n                    {\n                        \"X\": 0.7479772567749023,\n                        \"Y\": 0.6613273024559021\n                    },\n                    {\n                        \"X\": 0.7479627132415771,\n                        \"Y\": 0.6732236742973328\n                    },\n                    {\n                        \"X\": 0.7167641520500183,\n                        \"Y\": 0.6732243299484253\n                    }\n                ]\n            },\n            \"Id\": \"ebb85f36-98c2-4cc3-81ff-bb6b6e5ba45a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6eb585b9-248c-491e-ace3-3cbc1b8d69fa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54241943359375,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024371694773435593,\n                    \"Height\": 0.013265123590826988,\n                    \"Left\": 0.8153091073036194,\n                    \"Top\": 0.6616281867027283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8153285980224609,\n                        \"Y\": 0.6616289019584656\n                    },\n                    {\n                        \"X\": 0.8396807909011841,\n                        \"Y\": 0.6616281867027283\n                    },\n                    {\n                        \"X\": 0.8396600484848022,\n                        \"Y\": 0.674892783164978\n                    },\n                    {\n                        \"X\": 0.8153091073036194,\n                        \"Y\": 0.6748932600021362\n                    }\n                ]\n            },\n            \"Id\": \"0f8adabc-f2cb-4ddd-9a49-4e0b4614e4ab\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"aedde6bf-a909-46d4-8d7b-806f52f2ae17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82064056396484,\n            \"Text\": \"Do you have a cough?\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.18314747512340546,\n                    \"Height\": 0.016025584191083908,\n                    \"Left\": 0.03948159143328667,\n                    \"Top\": 0.7202245593070984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03948159143328667,\n                        \"Y\": 0.7202245593070984\n                    },\n                    {\n                        \"X\": 0.2226179540157318,\n                        \"Y\": 0.7202275395393372\n                    },\n                    {\n                        \"X\": 0.22262907028198242,\n                        \"Y\": 0.736250102519989\n                    },\n                    {\n                        \"X\": 0.03950342908501625,\n                        \"Y\": 0.736244797706604\n                    }\n                ]\n            },\n            \"Id\": \"274676ba-5a26-4173-b624-a7b65ba093c4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e45f4e91-796b-4a84-86e3-c84f44805dbf\",\n                        \"697808ee-b8b9-4c1c-b633-4b2f4bde3a10\",\n                        \"bb5bdb57-79d8-48b7-9e4b-553a65af4168\",\n                        \"f52f40cb-8d38-472e-a21f-3b522e07df82\",\n                        \"e4fa54b4-e7f1-4671-9a16-93bfb23f1d3d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.912109375,\n            \"Text\": \"Yes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03136611729860306,\n                    \"Height\": 0.011920114979147911,\n                    \"Left\": 0.7147804498672485,\n                    \"Top\": 0.7269144654273987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7147936224937439,\n                        \"Y\": 0.7269144654273987\n                    },\n                    {\n                        \"X\": 0.746146559715271,\n                        \"Y\": 0.726915180683136\n                    },\n                    {\n                        \"X\": 0.7461320161819458,\n                        \"Y\": 0.7388346195220947\n                    },\n                    {\n                        \"X\": 0.7147804498672485,\n                        \"Y\": 0.7388336062431335\n                    }\n                ]\n            },\n            \"Id\": \"773d2df4-c3e5-46ec-932a-bf6d80b148bd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ac89133-1518-41db-bea2-1260959b0e52\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51188659667969,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024524737149477005,\n                    \"Height\": 0.013048297725617886,\n                    \"Left\": 0.8124504089355469,\n                    \"Top\": 0.7273125052452087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.812469482421875,\n                        \"Y\": 0.7273125052452087\n                    },\n                    {\n                        \"X\": 0.8369751572608948,\n                        \"Y\": 0.7273130416870117\n                    },\n                    {\n                        \"X\": 0.8369548916816711,\n                        \"Y\": 0.7403607964515686\n                    },\n                    {\n                        \"X\": 0.8124504089355469,\n                        \"Y\": 0.7403600215911865\n                    }\n                ]\n            },\n            \"Id\": \"1fec2e82-348c-4ac4-a527-59f92f3961bd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3d894399-7cc6-4f11-82c0-bc8bef75946c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75585174560547,\n            \"Text\": \"Did you experience loss of taste or smell?\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3379148542881012,\n                    \"Height\": 0.01633799821138382,\n                    \"Left\": 0.041360754519701004,\n                    \"Top\": 0.7838676571846008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.041360754519701004,\n                        \"Y\": 0.7838676571846008\n                    },\n                    {\n                        \"X\": 0.3792736232280731,\n                        \"Y\": 0.7838900685310364\n                    },\n                    {\n                        \"X\": 0.3792755901813507,\n                        \"Y\": 0.800205647945404\n                    },\n                    {\n                        \"X\": 0.04138288274407387,\n                        \"Y\": 0.8001788258552551\n                    }\n                ]\n            },\n            \"Id\": \"e71d705d-462a-4db8-bd6c-1206efe9c14e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"994d6ac5-ebec-4c2f-9269-14bb9e94564f\",\n                        \"147f7577-5171-46ab-93da-6dd1e502ede2\",\n                        \"052ce72e-5206-4180-b6d7-1df71b3e6e0d\",\n                        \"7daa5f5c-112f-4ad3-8f40-cd37f4249255\",\n                        \"acee2c91-8e21-4831-99f7-f57a9a7b523b\",\n                        \"a4f9f479-32c4-4f56-abe3-8a4f9c4a1401\",\n                        \"7382fd65-ab5f-4e11-bbe9-eed695a641f9\",\n                        \"33c575bb-2abd-444f-b45d-1472b9a55971\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94300842285156,\n            \"Text\": \"Yes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03102680668234825,\n                    \"Height\": 0.011901476420462132,\n                    \"Left\": 0.7124963998794556,\n                    \"Top\": 0.791111171245575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7125095129013062,\n                        \"Y\": 0.791111171245575\n                    },\n                    {\n                        \"X\": 0.7435232400894165,\n                        \"Y\": 0.7911133766174316\n                    },\n                    {\n                        \"X\": 0.7435088157653809,\n                        \"Y\": 0.8030126094818115\n                    },\n                    {\n                        \"X\": 0.7124963998794556,\n                        \"Y\": 0.803010106086731\n                    }\n                ]\n            },\n            \"Id\": \"fb50ffb5-155a-40a5-9502-51a2934bc6f4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fc183ebb-7f22-4f77-97cc-da6890e62f32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.59786987304688,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0226429495960474,\n                    \"Height\": 0.012448012828826904,\n                    \"Left\": 0.8113828301429749,\n                    \"Top\": 0.7918006181716919\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8114010095596313,\n                        \"Y\": 0.7918006181716919\n                    },\n                    {\n                        \"X\": 0.8340258002281189,\n                        \"Y\": 0.7918022871017456\n                    },\n                    {\n                        \"X\": 0.8340066075325012,\n                        \"Y\": 0.8042486310005188\n                    },\n                    {\n                        \"X\": 0.8113828301429749,\n                        \"Y\": 0.8042467832565308\n                    }\n                ]\n            },\n            \"Id\": \"dfa766c1-ec79-4177-b3ed-ec2b588a7a8f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a96f5978-2dd1-4215-b800-c842ae0d6a9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73033142089844,\n            \"Text\": \"Where you in contact with any confirmed COVID-19 positive patients?\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.5628048777580261,\n                    \"Height\": 0.01936245523393154,\n                    \"Left\": 0.04266298562288284,\n                    \"Top\": 0.847571074962616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04266298562288284,\n                        \"Y\": 0.847571074962616\n                    },\n                    {\n                        \"X\": 0.6054678559303284,\n                        \"Y\": 0.8476366996765137\n                    },\n                    {\n                        \"X\": 0.6054542660713196,\n                        \"Y\": 0.8669335246086121\n                    },\n                    {\n                        \"X\": 0.042689066380262375,\n                        \"Y\": 0.8668593168258667\n                    }\n                ]\n            },\n            \"Id\": \"2c0b905e-1ff9-4eaa-a811-fd885bc552a1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3b0d9cf9-2ac3-42c5-b851-e33f22e27b58\",\n                        \"b73f4f3d-58bb-4143-9f46-42a51b23533b\",\n                        \"3abb6b23-635b-4248-80f6-706dbece4acb\",\n                        \"ddefcc4a-8f48-4233-bd69-b80f7180dd54\",\n                        \"43986821-edff-42b2-b2fe-8b27d80f26f8\",\n                        \"bc0b87ab-c43c-4b6d-b452-4a4ed1c95c12\",\n                        \"31501b77-bb97-4634-80cd-4a4380eae383\",\n                        \"0ba7c023-4aa3-4e0e-bb44-a3f713dac399\",\n                        \"2c970d25-5578-469b-bcbd-9b96ad3d6670\",\n                        \"9a2d8116-739c-4fc6-aeae-b4fb27bf0758\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81636047363281,\n            \"Text\": \"Yes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03123343363404274,\n                    \"Height\": 0.01255446020513773,\n                    \"Left\": 0.7098665833473206,\n                    \"Top\": 0.8546563982963562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7098802328109741,\n                        \"Y\": 0.8546563982963562\n                    },\n                    {\n                        \"X\": 0.741100013256073,\n                        \"Y\": 0.8546602129936218\n                    },\n                    {\n                        \"X\": 0.7410849332809448,\n                        \"Y\": 0.867210865020752\n                    },\n                    {\n                        \"X\": 0.7098665833473206,\n                        \"Y\": 0.8672067523002625\n                    }\n                ]\n            },\n            \"Id\": \"8fac75ae-8846-440e-bd2c-0878d26cd3d2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"001908ca-346d-4529-9df5-f7ca534d1cb7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.61276245117188,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024016758427023888,\n                    \"Height\": 0.012698344886302948,\n                    \"Left\": 0.8081610202789307,\n                    \"Top\": 0.8563244342803955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8081793785095215,\n                        \"Y\": 0.8563244342803955\n                    },\n                    {\n                        \"X\": 0.8321777582168579,\n                        \"Y\": 0.8563274145126343\n                    },\n                    {\n                        \"X\": 0.8321582674980164,\n                        \"Y\": 0.869022786617279\n                    },\n                    {\n                        \"X\": 0.8081610202789307,\n                        \"Y\": 0.869019627571106\n                    }\n                ]\n            },\n            \"Id\": \"1d900628-43bd-486d-8475-e000106aceaf\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f4bfdf0a-682e-4041-b435-3a56e9ed631b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.74569702148438,\n            \"Text\": \"Did you travel in the past 14 days to any regions affected by COVID-19?\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.5807474255561829,\n                    \"Height\": 0.017704451456665993,\n                    \"Left\": 0.04306093975901604,\n                    \"Top\": 0.9125481247901917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04306093975901604,\n                        \"Y\": 0.9125481247901917\n                    },\n                    {\n                        \"X\": 0.6238083839416504,\n                        \"Y\": 0.9126455783843994\n                    },\n                    {\n                        \"X\": 0.6237947940826416,\n                        \"Y\": 0.9302525520324707\n                    },\n                    {\n                        \"X\": 0.04308471828699112,\n                        \"Y\": 0.9301470518112183\n                    }\n                ]\n            },\n            \"Id\": \"2646537a-ac5c-438f-97ca-a62e1b7abfca\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c6c80386-a15e-45e7-8820-1fa43b69a1a8\",\n                        \"596a4046-9769-4431-ab02-57162e134375\",\n                        \"be6cbd37-490b-474d-95b0-11b2a41e3923\",\n                        \"cc82707c-22fb-40f3-a9f4-4fa6f43c2890\",\n                        \"4ed7026a-3410-43ea-9329-cf3ee31beb68\",\n                        \"7d961e48-48fc-4ab7-9fdb-ae1a1f95a57f\",\n                        \"8b089198-3af2-4739-b131-e6e8859de844\",\n                        \"2dd3905a-f20c-4b82-a699-6f89b0a41bdb\",\n                        \"3f4ec19e-ce30-4977-b0da-9c9a8a8eb7e0\",\n                        \"d0ff285c-4791-42ff-9f54-3c97f28a5789\",\n                        \"6b124dc7-4764-42cc-aad3-e4e031726a1a\",\n                        \"5a1e722d-fb0b-4f9e-87bb-a1824cd8ed8c\",\n                        \"c5b7176a-1d03-4924-a822-05c3f0a3e5ff\",\n                        \"843c94ce-6555-4810-813e-1446adf4ee2b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81429290771484,\n            \"Text\": \"Yes\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03095269575715065,\n                    \"Height\": 0.012055384926497936,\n                    \"Left\": 0.708702802658081,\n                    \"Top\": 0.9184137582778931\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7087158560752869,\n                        \"Y\": 0.9184137582778931\n                    },\n                    {\n                        \"X\": 0.7396554946899414,\n                        \"Y\": 0.9184190630912781\n                    },\n                    {\n                        \"X\": 0.7396410703659058,\n                        \"Y\": 0.9304691553115845\n                    },\n                    {\n                        \"X\": 0.708702802658081,\n                        \"Y\": 0.9304634928703308\n                    }\n                ]\n            },\n            \"Id\": \"18302992-fc1c-4251-b0c5-00fa7082b25f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1525ab69-4a60-4db8-aae8-7e2c5c83b3d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.35918426513672,\n            \"Text\": \"No\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024850046262145042,\n                    \"Height\": 0.01393287442624569,\n                    \"Left\": 0.8061109781265259,\n                    \"Top\": 0.9197984337806702\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8061310648918152,\n                        \"Y\": 0.9197984337806702\n                    },\n                    {\n                        \"X\": 0.8309610486030579,\n                        \"Y\": 0.9198027849197388\n                    },\n                    {\n                        \"X\": 0.8309397101402283,\n                        \"Y\": 0.9337313175201416\n                    },\n                    {\n                        \"X\": 0.8061109781265259,\n                        \"Y\": 0.9337267279624939\n                    }\n                ]\n            },\n            \"Id\": \"e7e4f04d-96f8-42f0-a1fb-b80303b44c98\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a076375d-f45a-4ab3-8141-5219e70430aa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.10504913330078,\n            \"Text\": \"Patient\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08032263815402985,\n                    \"Height\": 0.013862594030797482,\n                    \"Left\": 0.02475062571465969,\n                    \"Top\": 0.055133599787950516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02475062571465969,\n                        \"Y\": 0.055174361914396286\n                    },\n                    {\n                        \"X\": 0.10505777597427368,\n                        \"Y\": 0.055133599787950516\n                    },\n                    {\n                        \"X\": 0.10507326573133469,\n                        \"Y\": 0.06895630806684494\n                    },\n                    {\n                        \"X\": 0.024770164862275124,\n                        \"Y\": 0.06899619102478027\n                    }\n                ]\n            },\n            \"Id\": \"7f0e72e5-bf99-433a-a2df-83ac0e2a6e50\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84102630615234,\n            \"Text\": \"Information\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13664454221725464,\n                    \"Height\": 0.014387357048690319,\n                    \"Left\": 0.10922887921333313,\n                    \"Top\": 0.05477751046419144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10922887921333313,\n                        \"Y\": 0.05484689772129059\n                    },\n                    {\n                        \"X\": 0.24586471915245056,\n                        \"Y\": 0.05477751046419144\n                    },\n                    {\n                        \"X\": 0.24587342143058777,\n                        \"Y\": 0.06909701973199844\n                    },\n                    {\n                        \"X\": 0.10924471169710159,\n                        \"Y\": 0.06916486471891403\n                    }\n                ]\n            },\n            \"Id\": \"27322c8e-0d6f-44b7-8464-60ef61e8dffa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76781463623047,\n            \"Text\": \"First\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03300444409251213,\n                    \"Height\": 0.010376243852078915,\n                    \"Left\": 0.024902865290641785,\n                    \"Top\": 0.10495096445083618\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.024902865290641785,\n                        \"Y\": 0.1049664169549942\n                    },\n                    {\n                        \"X\": 0.057893916964530945,\n                        \"Y\": 0.10495096445083618\n                    },\n                    {\n                        \"X\": 0.057907313108444214,\n                        \"Y\": 0.11531202495098114\n                    },\n                    {\n                        \"X\": 0.02491750754415989,\n                        \"Y\": 0.11532720923423767\n                    }\n                ]\n            },\n            \"Id\": \"4d3ba900-96cf-456b-9bd2-b98218a60188\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.29486846923828,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048054177314043045,\n                    \"Height\": 0.0104023776948452,\n                    \"Left\": 0.06129851192235947,\n                    \"Top\": 0.10488089174032211\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06129851192235947,\n                        \"Y\": 0.10490339249372482\n                    },\n                    {\n                        \"X\": 0.10934121906757355,\n                        \"Y\": 0.10488089174032211\n                    },\n                    {\n                        \"X\": 0.10935269296169281,\n                        \"Y\": 0.11526115983724594\n                    },\n                    {\n                        \"X\": 0.06131180375814438,\n                        \"Y\": 0.11528327316045761\n                    }\n                ]\n            },\n            \"Id\": \"5b07e635-6071-46c6-8895-f656cad84dd8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36082458496094,\n            \"Text\": \"ALEJANDRO\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21881930530071259,\n                    \"Height\": 0.03363017737865448,\n                    \"Left\": 0.12500520050525665,\n                    \"Top\": 0.08333630114793777\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12500520050525665,\n                        \"Y\": 0.08344248682260513\n                    },\n                    {\n                        \"X\": 0.3438161015510559,\n                        \"Y\": 0.08333630114793777\n                    },\n                    {\n                        \"X\": 0.34382450580596924,\n                        \"Y\": 0.11686607450246811\n                    },\n                    {\n                        \"X\": 0.12504033744335175,\n                        \"Y\": 0.11696647107601166\n                    }\n                ]\n            },\n            \"Id\": \"eecfe341-33ac-45f2-9ccb-4d2b14a557fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54488372802734,\n            \"Text\": \"Last\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03141770884394646,\n                    \"Height\": 0.010249393060803413,\n                    \"Left\": 0.36716175079345703,\n                    \"Top\": 0.10590724647045135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36716175079345703,\n                        \"Y\": 0.10592193156480789\n                    },\n                    {\n                        \"X\": 0.398578941822052,\n                        \"Y\": 0.10590724647045135\n                    },\n                    {\n                        \"X\": 0.3985794484615326,\n                        \"Y\": 0.11614220589399338\n                    },\n                    {\n                        \"X\": 0.36716344952583313,\n                        \"Y\": 0.11615663766860962\n                    }\n                ]\n            },\n            \"Id\": \"ebf9e970-1ea9-419c-8ea8-4e8020d4b158\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36756134033203,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04821689426898956,\n                    \"Height\": 0.010632471181452274,\n                    \"Left\": 0.40224871039390564,\n                    \"Top\": 0.10589882731437683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40224871039390564,\n                        \"Y\": 0.10592136532068253\n                    },\n                    {\n                        \"X\": 0.4504656195640564,\n                        \"Y\": 0.10589882731437683\n                    },\n                    {\n                        \"X\": 0.450464129447937,\n                        \"Y\": 0.11650916188955307\n                    },\n                    {\n                        \"X\": 0.4022490978240967,\n                        \"Y\": 0.11653129756450653\n                    }\n                ]\n            },\n            \"Id\": \"88f28f1f-ccc0-4e4c-b99b-56490afd5f88\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3670425415039,\n            \"Text\": \"ROSALEZ\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16856649518013,\n                    \"Height\": 0.026265637949109077,\n                    \"Left\": 0.45935186743736267,\n                    \"Top\": 0.09075705707073212\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4593563377857208,\n                        \"Y\": 0.09083785116672516\n                    },\n                    {\n                        \"X\": 0.6279183626174927,\n                        \"Y\": 0.09075705707073212\n                    },\n                    {\n                        \"X\": 0.6278977394104004,\n                        \"Y\": 0.11694537848234177\n                    },\n                    {\n                        \"X\": 0.45935186743736267,\n                        \"Y\": 0.11702269315719604\n                    }\n                ]\n            },\n            \"Id\": \"a14abacd-2a8e-4eb2-b70b-f70a6bb3d697\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4794692993164,\n            \"Text\": \"Date\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0350821390748024,\n                    \"Height\": 0.010621946305036545,\n                    \"Left\": 0.6989074349403381,\n                    \"Top\": 0.10643121600151062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6989184617996216,\n                        \"Y\": 0.10644759237766266\n                    },\n                    {\n                        \"X\": 0.7339895367622375,\n                        \"Y\": 0.10643121600151062\n                    },\n                    {\n                        \"X\": 0.7339770793914795,\n                        \"Y\": 0.11703707277774811\n                    },\n                    {\n                        \"X\": 0.6989074349403381,\n                        \"Y\": 0.11705315858125687\n                    }\n                ]\n            },\n            \"Id\": \"63a96e42-728a-47f1-ab28-11c4851dd163\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97974395751953,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015959957614541054,\n                    \"Height\": 0.010414093732833862,\n                    \"Left\": 0.7387254238128662,\n                    \"Top\": 0.10636987537145615\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7387377619743347,\n                        \"Y\": 0.10637731850147247\n                    },\n                    {\n                        \"X\": 0.7546853423118591,\n                        \"Y\": 0.10636987537145615\n                    },\n                    {\n                        \"X\": 0.7546723484992981,\n                        \"Y\": 0.11677665263414383\n                    },\n                    {\n                        \"X\": 0.7387254238128662,\n                        \"Y\": 0.11678396910429001\n                    }\n                ]\n            },\n            \"Id\": \"5676fc39-1107-48d2-a7a8-8a84233846ef\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57313537597656,\n            \"Text\": \"Birth:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040634430944919586,\n                    \"Height\": 0.010928429663181305,\n                    \"Left\": 0.757964551448822,\n                    \"Top\": 0.10627610236406326\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7579783201217651,\n                        \"Y\": 0.10629507899284363\n                    },\n                    {\n                        \"X\": 0.7985990047454834,\n                        \"Y\": 0.10627610236406326\n                    },\n                    {\n                        \"X\": 0.7985836267471313,\n                        \"Y\": 0.11718591302633286\n                    },\n                    {\n                        \"X\": 0.757964551448822,\n                        \"Y\": 0.11720453202724457\n                    }\n                ]\n            },\n            \"Id\": \"61ec4b08-954a-4182-b800-cf0417b53744\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.26081085205078,\n            \"Text\": \"10/10/1982\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.15486320853233337,\n                    \"Height\": 0.03500561788678169,\n                    \"Left\": 0.8171879649162292,\n                    \"Top\": 0.0901871770620346\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.81723952293396,\n                        \"Y\": 0.09026143699884415\n                    },\n                    {\n                        \"X\": 0.972051203250885,\n                        \"Y\": 0.0901871770620346\n                    },\n                    {\n                        \"X\": 0.9719798564910889,\n                        \"Y\": 0.1251228004693985\n                    },\n                    {\n                        \"X\": 0.8171879649162292,\n                        \"Y\": 0.125192791223526\n                    }\n                ]\n            },\n            \"Id\": \"65f77b8a-b529-4cca-a09a-1144315b3e6b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.84336853027344,\n            \"Text\": \"Sex:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03354981541633606,\n                    \"Height\": 0.010869767516851425,\n                    \"Left\": 0.026082051917910576,\n                    \"Top\": 0.14067301154136658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026082051917910576,\n                        \"Y\": 0.14068777859210968\n                    },\n                    {\n                        \"X\": 0.059617895632982254,\n                        \"Y\": 0.14067301154136658\n                    },\n                    {\n                        \"X\": 0.059631865471601486,\n                        \"Y\": 0.15152829885482788\n                    },\n                    {\n                        \"X\": 0.02609734795987606,\n                        \"Y\": 0.1515427827835083\n                    }\n                ]\n            },\n            \"Id\": \"9ddcf789-e724-43d7-a4ea-6ab5d9c564a6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36707305908203,\n            \"Text\": \"M\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04474335536360741,\n                    \"Height\": 0.023458218201994896,\n                    \"Left\": 0.0729275792837143,\n                    \"Top\": 0.12585987150669098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0729275792837143,\n                        \"Y\": 0.12588007748126984\n                    },\n                    {\n                        \"X\": 0.1176457330584526,\n                        \"Y\": 0.12585987150669098\n                    },\n                    {\n                        \"X\": 0.117670938372612,\n                        \"Y\": 0.14929871261119843\n                    },\n                    {\n                        \"X\": 0.07295659929513931,\n                        \"Y\": 0.14931809902191162\n                    }\n                ]\n            },\n            \"Id\": \"5c7b0cec-a0a9-4b91-a351-36e5893de3c7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68009948730469,\n            \"Text\": \"Marital\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04927489906549454,\n                    \"Height\": 0.010365604422986507,\n                    \"Left\": 0.16508658230304718,\n                    \"Top\": 0.141002357006073\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16508658230304718,\n                        \"Y\": 0.14102402329444885\n                    },\n                    {\n                        \"X\": 0.214354008436203,\n                        \"Y\": 0.141002357006073\n                    },\n                    {\n                        \"X\": 0.21436148881912231,\n                        \"Y\": 0.15134668350219727\n                    },\n                    {\n                        \"X\": 0.16509592533111572,\n                        \"Y\": 0.15136796236038208\n                    }\n                ]\n            },\n            \"Id\": \"8be69434-0300-4dc9-85a2-b7f3dd3873eb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.84651947021484,\n            \"Text\": \"Status:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05303719639778137,\n                    \"Height\": 0.010679547674953938,\n                    \"Left\": 0.21901072561740875,\n                    \"Top\": 0.14107781648635864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21901072561740875,\n                        \"Y\": 0.14110113680362701\n                    },\n                    {\n                        \"X\": 0.272042453289032,\n                        \"Y\": 0.14107781648635864\n                    },\n                    {\n                        \"X\": 0.27204790711402893,\n                        \"Y\": 0.15173448622226715\n                    },\n                    {\n                        \"X\": 0.21901823580265045,\n                        \"Y\": 0.1517573595046997\n                    }\n                ]\n            },\n            \"Id\": \"c2e5c550-3811-4b8f-8a0c-6d41467e0859\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36641693115234,\n            \"Text\": \"MARRIED\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13085173070430756,\n                    \"Height\": 0.025150932371616364,\n                    \"Left\": 0.27989017963409424,\n                    \"Top\": 0.12749364972114563\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27989017963409424,\n                        \"Y\": 0.1275525987148285\n                    },\n                    {\n                        \"X\": 0.41074174642562866,\n                        \"Y\": 0.12749364972114563\n                    },\n                    {\n                        \"X\": 0.4107418954372406,\n                        \"Y\": 0.15258821845054626\n                    },\n                    {\n                        \"X\": 0.27990230917930603,\n                        \"Y\": 0.1526445746421814\n                    }\n                ]\n            },\n            \"Id\": \"e0de7825-8ae8-4534-ade7-91c83a6ac072\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55941772460938,\n            \"Text\": \"Email\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03990183770656586,\n                    \"Height\": 0.01018483191728592,\n                    \"Left\": 0.4634999930858612,\n                    \"Top\": 0.1422037035226822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.463501900434494,\n                        \"Y\": 0.14222121238708496\n                    },\n                    {\n                        \"X\": 0.5034018158912659,\n                        \"Y\": 0.1422037035226822\n                    },\n                    {\n                        \"X\": 0.5033984780311584,\n                        \"Y\": 0.1523713320493698\n                    },\n                    {\n                        \"X\": 0.4634999930858612,\n                        \"Y\": 0.1523885279893875\n                    }\n                ]\n            },\n            \"Id\": \"380857be-751a-4fec-83e7-cb6b8e5ae853\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.45171356201172,\n            \"Text\": \"Address:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06486725807189941,\n                    \"Height\": 0.010557961650192738,\n                    \"Left\": 0.5079705119132996,\n                    \"Top\": 0.14209143817424774\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5079741477966309,\n                        \"Y\": 0.14211991429328918\n                    },\n                    {\n                        \"X\": 0.572837769985199,\n                        \"Y\": 0.14209143817424774\n                    },\n                    {\n                        \"X\": 0.5728316307067871,\n                        \"Y\": 0.15262147784233093\n                    },\n                    {\n                        \"X\": 0.5079705119132996,\n                        \"Y\": 0.1526494026184082\n                    }\n                ]\n            },\n            \"Id\": \"97c66f57-c239-4a06-8beb-1a5c91169483\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64506530761719,\n            \"Text\": \"Address:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06380358338356018,\n                    \"Height\": 0.010024805553257465,\n                    \"Left\": 0.026553478091955185,\n                    \"Top\": 0.17894883453845978\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026553478091955185,\n                        \"Y\": 0.17897498607635498\n                    },\n                    {\n                        \"X\": 0.09034531563520432,\n                        \"Y\": 0.17894883453845978\n                    },\n                    {\n                        \"X\": 0.09035705775022507,\n                        \"Y\": 0.18894797563552856\n                    },\n                    {\n                        \"X\": 0.026567552238702774,\n                        \"Y\": 0.18897363543510437\n                    }\n                ]\n            },\n            \"Id\": \"0cbfc0ca-3cb5-4e63-85e9-0c8e761cd745\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36164855957031,\n            \"Text\": \"123\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0588412843644619,\n                    \"Height\": 0.02016124501824379,\n                    \"Left\": 0.12021627277135849,\n                    \"Top\": 0.16804832220077515\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12021627277135849,\n                        \"Y\": 0.16807293891906738\n                    },\n                    {\n                        \"X\": 0.17904041707515717,\n                        \"Y\": 0.16804832220077515\n                    },\n                    {\n                        \"X\": 0.1790575534105301,\n                        \"Y\": 0.18818587064743042\n                    },\n                    {\n                        \"X\": 0.12023773044347763,\n                        \"Y\": 0.18820956349372864\n                    }\n                ]\n            },\n            \"Id\": \"86d3e80d-94f0-4678-a582-92f18537b3dd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36658477783203,\n            \"Text\": \"ANY\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08273490518331528,\n                    \"Height\": 0.023277215659618378,\n                    \"Left\": 0.21176673471927643,\n                    \"Top\": 0.16864660382270813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21176673471927643,\n                        \"Y\": 0.16868118941783905\n                    },\n                    {\n                        \"X\": 0.29449164867401123,\n                        \"Y\": 0.16864660382270813\n                    },\n                    {\n                        \"X\": 0.2945016324520111,\n                        \"Y\": 0.19189074635505676\n                    },\n                    {\n                        \"X\": 0.2117837518453598,\n                        \"Y\": 0.1919238269329071\n                    }\n                ]\n            },\n            \"Id\": \"1dc4bc24-0f91-4e03-9204-2de996b57195\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36701965332031,\n            \"Text\": \"STREET\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11357009410858154,\n                    \"Height\": 0.02088991366326809,\n                    \"Left\": 0.31658652424812317,\n                    \"Top\": 0.1671886444091797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31658652424812317,\n                        \"Y\": 0.16723626852035522\n                    },\n                    {\n                        \"X\": 0.4301566481590271,\n                        \"Y\": 0.1671886444091797\n                    },\n                    {\n                        \"X\": 0.43015527725219727,\n                        \"Y\": 0.1880328208208084\n                    },\n                    {\n                        \"X\": 0.31659382581710815,\n                        \"Y\": 0.18807856738567352\n                    }\n                ]\n            },\n            \"Id\": \"b9cdadaa-ca89-406f-a0f3-81ff8de054ff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83546447753906,\n            \"Text\": \"City:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03368040546774864,\n                    \"Height\": 0.012262634001672268,\n                    \"Left\": 0.6294342875480652,\n                    \"Top\": 0.18164220452308655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6294440031051636,\n                        \"Y\": 0.18165592849254608\n                    },\n                    {\n                        \"X\": 0.6631146669387817,\n                        \"Y\": 0.18164220452308655\n                    },\n                    {\n                        \"X\": 0.663103461265564,\n                        \"Y\": 0.19389143586158752\n                    },\n                    {\n                        \"X\": 0.6294342875480652,\n                        \"Y\": 0.1939048320055008\n                    }\n                ]\n            },\n            \"Id\": \"3f4ea8d1-eb6d-47b3-aa86-26127ab3ed9a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36707305908203,\n            \"Text\": \"ANYTOWN\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16173940896987915,\n                    \"Height\": 0.023660482838749886,\n                    \"Left\": 0.6893264651298523,\n                    \"Top\": 0.17112264037132263\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6893503069877625,\n                        \"Y\": 0.17118991911411285\n                    },\n                    {\n                        \"X\": 0.8510658740997314,\n                        \"Y\": 0.17112264037132263\n                    },\n                    {\n                        \"X\": 0.8510280847549438,\n                        \"Y\": 0.1947188675403595\n                    },\n                    {\n                        \"X\": 0.6893264651298523,\n                        \"Y\": 0.19478312134742737\n                    }\n                ]\n            },\n            \"Id\": \"8ebab614-c263-495b-a0ca-b99f80c85162\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.69918823242188,\n            \"Text\": \"State:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044010523706674576,\n                    \"Height\": 0.010138547979295254,\n                    \"Left\": 0.029704753309488297,\n                    \"Top\": 0.22283639013767242\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029704753309488297,\n                        \"Y\": 0.2228529155254364\n                    },\n                    {\n                        \"X\": 0.07370276749134064,\n                        \"Y\": 0.22283639013767242\n                    },\n                    {\n                        \"X\": 0.07371527701616287,\n                        \"Y\": 0.23295876383781433\n                    },\n                    {\n                        \"X\": 0.02971888706088066,\n                        \"Y\": 0.23297493159770966\n                    }\n                ]\n            },\n            \"Id\": \"06c88670-8f85-4cb9-9626-c5f774928fa4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36618041992188,\n            \"Text\": \"CA\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047348178923130035,\n                    \"Height\": 0.022613808512687683,\n                    \"Left\": 0.08867164701223373,\n                    \"Top\": 0.21164938807487488\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08867164701223373,\n                        \"Y\": 0.21166758239269257\n                    },\n                    {\n                        \"X\": 0.13599704205989838,\n                        \"Y\": 0.21164938807487488\n                    },\n                    {\n                        \"X\": 0.13601982593536377,\n                        \"Y\": 0.23424585163593292\n                    },\n                    {\n                        \"X\": 0.08869833499193192,\n                        \"Y\": 0.23426319658756256\n                    }\n                ]\n            },\n            \"Id\": \"7adc47fa-8481-48ee-b9be-2b2f7bb8f79e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3055191040039,\n            \"Text\": \"Zip\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023595893755555153,\n                    \"Height\": 0.012321129441261292,\n                    \"Left\": 0.1552908569574356,\n                    \"Top\": 0.2228526473045349\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1552908569574356,\n                        \"Y\": 0.22286149859428406\n                    },\n                    {\n                        \"X\": 0.17887626588344574,\n                        \"Y\": 0.2228526473045349\n                    },\n                    {\n                        \"X\": 0.1788867563009262,\n                        \"Y\": 0.23516514897346497\n                    },\n                    {\n                        \"X\": 0.15530240535736084,\n                        \"Y\": 0.2351737767457962\n                    }\n                ]\n            },\n            \"Id\": \"8770cd6f-dd1e-42b2-a1f0-a60d8966e682\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.44554901123047,\n            \"Text\": \"Code:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04168097674846649,\n                    \"Height\": 0.010696093551814556,\n                    \"Left\": 0.18339495360851288,\n                    \"Top\": 0.2225758135318756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18339495360851288,\n                        \"Y\": 0.22259147465229034\n                    },\n                    {\n                        \"X\": 0.22506862878799438,\n                        \"Y\": 0.2225758135318756\n                    },\n                    {\n                        \"X\": 0.22507593035697937,\n                        \"Y\": 0.23325660824775696\n                    },\n                    {\n                        \"X\": 0.183403879404068,\n                        \"Y\": 0.23327191174030304\n                    }\n                ]\n            },\n            \"Id\": \"b604030d-198c-4d71-87d4-e0f25b41ab82\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3669204711914,\n            \"Text\": \"12345\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12141817808151245,\n                    \"Height\": 0.0242132730782032,\n                    \"Left\": 0.25420230627059937,\n                    \"Top\": 0.20786072313785553\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25420230627059937,\n                        \"Y\": 0.20790773630142212\n                    },\n                    {\n                        \"X\": 0.37561723589897156,\n                        \"Y\": 0.20786072313785553\n                    },\n                    {\n                        \"X\": 0.3756204843521118,\n                        \"Y\": 0.23202930390834808\n                    },\n                    {\n                        \"X\": 0.2542162537574768,\n                        \"Y\": 0.23207399249076843\n                    }\n                ]\n            },\n            \"Id\": \"0591943e-948f-4758-ac4e-5701843858c3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.68334197998047,\n            \"Text\": \"Phone:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04995345324277878,\n                    \"Height\": 0.010454266332089901,\n                    \"Left\": 0.3846702575683594,\n                    \"Top\": 0.22376154363155365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3846702575683594,\n                        \"Y\": 0.22378025949001312\n                    },\n                    {\n                        \"X\": 0.43462371826171875,\n                        \"Y\": 0.22376154363155365\n                    },\n                    {\n                        \"X\": 0.4346228837966919,\n                        \"Y\": 0.2341974973678589\n                    },\n                    {\n                        \"X\": 0.38467133045196533,\n                        \"Y\": 0.23421581089496613\n                    }\n                ]\n            },\n            \"Id\": \"9b9c3ea3-5405-4e4d-8100-bfe69d359d36\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.94879150390625,\n            \"Text\": \"646-555-0111\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22915852069854736,\n                    \"Height\": 0.024991745129227638,\n                    \"Left\": 0.46345579624176025,\n                    \"Top\": 0.2080518752336502\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46346041560173035,\n                        \"Y\": 0.2081405520439148\n                    },\n                    {\n                        \"X\": 0.6926143169403076,\n                        \"Y\": 0.2080518752336502\n                    },\n                    {\n                        \"X\": 0.6925888657569885,\n                        \"Y\": 0.23295944929122925\n                    },\n                    {\n                        \"X\": 0.46345579624176025,\n                        \"Y\": 0.2330436259508133\n                    }\n                ]\n            },\n            \"Id\": \"2c4d6503-228c-4b98-8ff5-7654845f44d7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91412353515625,\n            \"Text\": \"Emergency\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11980940401554108,\n                    \"Height\": 0.015828607603907585,\n                    \"Left\": 0.0283642765134573,\n                    \"Top\": 0.2539190948009491\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0283642765134573,\n                        \"Y\": 0.25396114587783813\n                    },\n                    {\n                        \"X\": 0.148158460855484,\n                        \"Y\": 0.2539190948009491\n                    },\n                    {\n                        \"X\": 0.14817367494106293,\n                        \"Y\": 0.2697071433067322\n                    },\n                    {\n                        \"X\": 0.028386399149894714,\n                        \"Y\": 0.26974770426750183\n                    }\n                ]\n            },\n            \"Id\": \"a1d8d060-614a-43fc-9664-8d4ed09c82fd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.48374938964844,\n            \"Text\": \"Contact\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08485953509807587,\n                    \"Height\": 0.013704783283174038,\n                    \"Left\": 0.1539393961429596,\n                    \"Top\": 0.25337889790534973\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1539393961429596,\n                        \"Y\": 0.2534087002277374\n                    },\n                    {\n                        \"X\": 0.23879025876522064,\n                        \"Y\": 0.25337889790534973\n                    },\n                    {\n                        \"X\": 0.23879893124103546,\n                        \"Y\": 0.2670547664165497\n                    },\n                    {\n                        \"X\": 0.15395228564739227,\n                        \"Y\": 0.26708367466926575\n                    }\n                ]\n            },\n            \"Id\": \"eff4909d-0109-43db-a4c9-fd4e19a64c64\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68098449707031,\n            \"Text\": \"1:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019592076539993286,\n                    \"Height\": 0.012952578254044056,\n                    \"Left\": 0.2457585632801056,\n                    \"Top\": 0.2535778880119324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2457585632801056,\n                        \"Y\": 0.25358474254608154\n                    },\n                    {\n                        \"X\": 0.26534369587898254,\n                        \"Y\": 0.2535778880119324\n                    },\n                    {\n                        \"X\": 0.2653506398200989,\n                        \"Y\": 0.2665237784385681\n                    },\n                    {\n                        \"X\": 0.24576643109321594,\n                        \"Y\": 0.26653045415878296\n                    }\n                ]\n            },\n            \"Id\": \"10929a07-f0da-4962-808c-086697793ec7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87157440185547,\n            \"Text\": \"First\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032049279659986496,\n                    \"Height\": 0.009828884154558182,\n                    \"Left\": 0.026568444445729256,\n                    \"Top\": 0.3007378578186035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026568444445729256,\n                        \"Y\": 0.30074790120124817\n                    },\n                    {\n                        \"X\": 0.058605045080184937,\n                        \"Y\": 0.3007378578186035\n                    },\n                    {\n                        \"X\": 0.0586177259683609,\n                        \"Y\": 0.31055691838264465\n                    },\n                    {\n                        \"X\": 0.026582272723317146,\n                        \"Y\": 0.3105667233467102\n                    }\n                ]\n            },\n            \"Id\": \"6a874725-33b5-411f-b2bf-2380512cdd43\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.42236328125,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04716916009783745,\n                    \"Height\": 0.010075952857732773,\n                    \"Left\": 0.06264147907495499,\n                    \"Top\": 0.3007989227771759\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06264147907495499,\n                        \"Y\": 0.3008137345314026\n                    },\n                    {\n                        \"X\": 0.10979952663183212,\n                        \"Y\": 0.3007989227771759\n                    },\n                    {\n                        \"X\": 0.10981063544750214,\n                        \"Y\": 0.31086045503616333\n                    },\n                    {\n                        \"X\": 0.06265432387590408,\n                        \"Y\": 0.310874879360199\n                    }\n                ]\n            },\n            \"Id\": \"1fb6c3e2-5244-4e5b-96d2-88731a67f718\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3665771484375,\n            \"Text\": \"CARLOS\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1125507578253746,\n                    \"Height\": 0.020094580948352814,\n                    \"Left\": 0.14590488374233246,\n                    \"Top\": 0.28983747959136963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14590488374233246,\n                        \"Y\": 0.28987377882003784\n                    },\n                    {\n                        \"X\": 0.2584443688392639,\n                        \"Y\": 0.28983747959136963\n                    },\n                    {\n                        \"X\": 0.25845563411712646,\n                        \"Y\": 0.3098975121974945\n                    },\n                    {\n                        \"X\": 0.1459244042634964,\n                        \"Y\": 0.30993205308914185\n                    }\n                ]\n            },\n            \"Id\": \"a7caef91-0794-4042-a5b9-9d397ab13855\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72180938720703,\n            \"Text\": \"Last\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030700767412781715,\n                    \"Height\": 0.009949179366230965,\n                    \"Left\": 0.36477869749069214,\n                    \"Top\": 0.30211547017097473\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36477869749069214,\n                        \"Y\": 0.30212506651878357\n                    },\n                    {\n                        \"X\": 0.39547884464263916,\n                        \"Y\": 0.30211547017097473\n                    },\n                    {\n                        \"X\": 0.3954794704914093,\n                        \"Y\": 0.3120552599430084\n                    },\n                    {\n                        \"X\": 0.3647804260253906,\n                        \"Y\": 0.31206464767456055\n                    }\n                ]\n            },\n            \"Id\": \"74e3e7f8-af72-4d87-8051-9db5de05be55\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48284912109375,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047190312296152115,\n                    \"Height\": 0.00997465755790472,\n                    \"Left\": 0.3995490074157715,\n                    \"Top\": 0.30238035321235657\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3995490074157715,\n                        \"Y\": 0.30239513516426086\n                    },\n                    {\n                        \"X\": 0.4467393159866333,\n                        \"Y\": 0.30238035321235657\n                    },\n                    {\n                        \"X\": 0.446738064289093,\n                        \"Y\": 0.3123406171798706\n                    },\n                    {\n                        \"X\": 0.3995494842529297,\n                        \"Y\": 0.31235501170158386\n                    }\n                ]\n            },\n            \"Id\": \"ca89c29f-cf90-4886-94ef-5a6f60a8a77b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36673736572266,\n            \"Text\": \"SALAZAR\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16929976642131805,\n                    \"Height\": 0.021353349089622498,\n                    \"Left\": 0.4617166817188263,\n                    \"Top\": 0.2908293306827545\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4617205262184143,\n                        \"Y\": 0.2908838093280792\n                    },\n                    {\n                        \"X\": 0.6310164332389832,\n                        \"Y\": 0.2908293306827545\n                    },\n                    {\n                        \"X\": 0.6309994459152222,\n                        \"Y\": 0.31213104724884033\n                    },\n                    {\n                        \"X\": 0.4617166817188263,\n                        \"Y\": 0.3121826946735382\n                    }\n                ]\n            },\n            \"Id\": \"a50e4e63-cccd-47bd-8b87-593540812ae5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.77127075195312,\n            \"Text\": \"Phone:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049084022641181946,\n                    \"Height\": 0.010229979641735554,\n                    \"Left\": 0.026672963052988052,\n                    \"Top\": 0.32594823837280273\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026672963052988052,\n                        \"Y\": 0.3259626626968384\n                    },\n                    {\n                        \"X\": 0.07574443519115448,\n                        \"Y\": 0.32594823837280273\n                    },\n                    {\n                        \"X\": 0.0757569894194603,\n                        \"Y\": 0.3361641764640808\n                    },\n                    {\n                        \"X\": 0.026687346398830414,\n                        \"Y\": 0.3361782133579254\n                    }\n                ]\n            },\n            \"Id\": \"46539895-324a-492c-acac-771a1d077812\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.12044525146484,\n            \"Text\": \"212-555-0150\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2089032530784607,\n                    \"Height\": 0.018576882779598236,\n                    \"Left\": 0.10032527148723602,\n                    \"Top\": 0.31775954365730286\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10032527148723602,\n                        \"Y\": 0.31782233715057373\n                    },\n                    {\n                        \"X\": 0.3092215359210968,\n                        \"Y\": 0.31775954365730286\n                    },\n                    {\n                        \"X\": 0.3092285096645355,\n                        \"Y\": 0.336276650428772\n                    },\n                    {\n                        \"X\": 0.10034636408090591,\n                        \"Y\": 0.3363364338874817\n                    }\n                ]\n            },\n            \"Id\": \"fc4b574b-9302-4689-9cd4-4e990c000476\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74810028076172,\n            \"Text\": \"Relationship\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0887705460190773,\n                    \"Height\": 0.012632912956178188,\n                    \"Left\": 0.3662097454071045,\n                    \"Top\": 0.32657623291015625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3662097454071045,\n                        \"Y\": 0.3266023099422455\n                    },\n                    {\n                        \"X\": 0.4549802839756012,\n                        \"Y\": 0.32657623291015625\n                    },\n                    {\n                        \"X\": 0.454978346824646,\n                        \"Y\": 0.3391839563846588\n                    },\n                    {\n                        \"X\": 0.3662118911743164,\n                        \"Y\": 0.3392091393470764\n                    }\n                ]\n            },\n            \"Id\": \"46b2b1e9-33bf-4dcd-a189-8354178190e4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83804321289062,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01564270444214344,\n                    \"Height\": 0.009726461954414845,\n                    \"Left\": 0.45866459608078003,\n                    \"Top\": 0.3275710940361023\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45866623520851135,\n                        \"Y\": 0.32757568359375\n                    },\n                    {\n                        \"X\": 0.4743072986602783,\n                        \"Y\": 0.3275710940361023\n                    },\n                    {\n                        \"X\": 0.474305123090744,\n                        \"Y\": 0.3372930884361267\n                    },\n                    {\n                        \"X\": 0.45866459608078003,\n                        \"Y\": 0.33729755878448486\n                    }\n                ]\n            },\n            \"Id\": \"3e568496-de63-43f8-ae4e-677962e48b55\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.4930191040039,\n            \"Text\": \"Patient:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.055695462971925735,\n                    \"Height\": 0.01034997683018446,\n                    \"Left\": 0.4789448380470276,\n                    \"Top\": 0.3273773491382599\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47894734144210815,\n                        \"Y\": 0.32739368081092834\n                    },\n                    {\n                        \"X\": 0.5346403121948242,\n                        \"Y\": 0.3273773491382599\n                    },\n                    {\n                        \"X\": 0.5346356630325317,\n                        \"Y\": 0.33771148324012756\n                    },\n                    {\n                        \"X\": 0.4789448380470276,\n                        \"Y\": 0.3377273380756378\n                    }\n                ]\n            },\n            \"Id\": \"d4ff3114-1c7a-45fe-8766-b2fdaa3e97b6\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36678314208984,\n            \"Text\": \"BROTHER\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14935685694217682,\n                    \"Height\": 0.022701581940054893,\n                    \"Left\": 0.5772362351417542,\n                    \"Top\": 0.3167421519756317\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5772498846054077,\n                        \"Y\": 0.31678715348243713\n                    },\n                    {\n                        \"X\": 0.7265931367874146,\n                        \"Y\": 0.3167421519756317\n                    },\n                    {\n                        \"X\": 0.7265671491622925,\n                        \"Y\": 0.33940139412879944\n                    },\n                    {\n                        \"X\": 0.5772362351417542,\n                        \"Y\": 0.33944374322891235\n                    }\n                ]\n            },\n            \"Id\": \"eefb51b8-7045-471f-a545-d27cc1467950\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91854858398438,\n            \"Text\": \"Emergency\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12109358608722687,\n                    \"Height\": 0.016025332733988762,\n                    \"Left\": 0.027438711374998093,\n                    \"Top\": 0.36231327056884766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027438711374998093,\n                        \"Y\": 0.362345427274704\n                    },\n                    {\n                        \"X\": 0.14851689338684082,\n                        \"Y\": 0.36231327056884766\n                    },\n                    {\n                        \"X\": 0.14853230118751526,\n                        \"Y\": 0.378307968378067\n                    },\n                    {\n                        \"X\": 0.027461187914013863,\n                        \"Y\": 0.37833860516548157\n                    }\n                ]\n            },\n            \"Id\": \"15ce9d8b-5126-49b0-9d5c-95a77160ec72\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.5233383178711,\n            \"Text\": \"Contact\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08425749838352203,\n                    \"Height\": 0.01371695939451456,\n                    \"Left\": 0.1544046550989151,\n                    \"Top\": 0.3625735640525818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1544046550989151,\n                        \"Y\": 0.36259594559669495\n                    },\n                    {\n                        \"X\": 0.23865345120429993,\n                        \"Y\": 0.3625735640525818\n                    },\n                    {\n                        \"X\": 0.23866213858127594,\n                        \"Y\": 0.37626907229423523\n                    },\n                    {\n                        \"X\": 0.15441754460334778,\n                        \"Y\": 0.37629052996635437\n                    }\n                ]\n            },\n            \"Id\": \"24206965-8d24-441c-9026-57607a88605a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79802703857422,\n            \"Text\": \"2:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02011505328118801,\n                    \"Height\": 0.012594794854521751,\n                    \"Left\": 0.24537040293216705,\n                    \"Top\": 0.36369118094444275\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24537040293216705,\n                        \"Y\": 0.36369648575782776\n                    },\n                    {\n                        \"X\": 0.2654787003993988,\n                        \"Y\": 0.36369118094444275\n                    },\n                    {\n                        \"X\": 0.2654854655265808,\n                        \"Y\": 0.37628084421157837\n                    },\n                    {\n                        \"X\": 0.24537807703018188,\n                        \"Y\": 0.37628597021102905\n                    }\n                ]\n            },\n            \"Id\": \"1d9179aa-311d-4d03-a1bf-822810765210\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84590148925781,\n            \"Text\": \"First\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03243706747889519,\n                    \"Height\": 0.009772134944796562,\n                    \"Left\": 0.026170553639531136,\n                    \"Top\": 0.40913811326026917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026170553639531136,\n                        \"Y\": 0.4091455340385437\n                    },\n                    {\n                        \"X\": 0.05859500542283058,\n                        \"Y\": 0.40913811326026917\n                    },\n                    {\n                        \"X\": 0.058607619255781174,\n                        \"Y\": 0.41890308260917664\n                    },\n                    {\n                        \"X\": 0.0261843241751194,\n                        \"Y\": 0.4189102351665497\n                    }\n                ]\n            },\n            \"Id\": \"64542f8a-0876-4514-92ba-857e91538b9c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2391586303711,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04726552963256836,\n                    \"Height\": 0.009556148201227188,\n                    \"Left\": 0.06226638704538345,\n                    \"Top\": 0.40953412652015686\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06226638704538345,\n                        \"Y\": 0.4095449149608612\n                    },\n                    {\n                        \"X\": 0.10952135920524597,\n                        \"Y\": 0.40953412652015686\n                    },\n                    {\n                        \"X\": 0.10953191667795181,\n                        \"Y\": 0.41907984018325806\n                    },\n                    {\n                        \"X\": 0.062278587371110916,\n                        \"Y\": 0.41909027099609375\n                    }\n                ]\n            },\n            \"Id\": \"2e7c4590-8de3-4841-90bc-8a466b1ec1dc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36612701416016,\n            \"Text\": \"JANE\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09992596507072449,\n                    \"Height\": 0.024088839069008827,\n                    \"Left\": 0.1432231366634369,\n                    \"Top\": 0.39776986837387085\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1432231366634369,\n                        \"Y\": 0.39779362082481384\n                    },\n                    {\n                        \"X\": 0.24313423037528992,\n                        \"Y\": 0.39776986837387085\n                    },\n                    {\n                        \"X\": 0.24314910173416138,\n                        \"Y\": 0.42183685302734375\n                    },\n                    {\n                        \"X\": 0.14324678480625153,\n                        \"Y\": 0.42185869812965393\n                    }\n                ]\n            },\n            \"Id\": \"e3a2bb2e-25b4-4a97-90ba-96a2e4bb6966\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62157440185547,\n            \"Text\": \"Last\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030288241803646088,\n                    \"Height\": 0.00943103525787592,\n                    \"Left\": 0.3642512261867523,\n                    \"Top\": 0.411891907453537\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3642512261867523,\n                        \"Y\": 0.41189876198768616\n                    },\n                    {\n                        \"X\": 0.39453887939453125,\n                        \"Y\": 0.411891907453537\n                    },\n                    {\n                        \"X\": 0.394539475440979,\n                        \"Y\": 0.4213162958621979\n                    },\n                    {\n                        \"X\": 0.36425289511680603,\n                        \"Y\": 0.42132294178009033\n                    }\n                ]\n            },\n            \"Id\": \"d1b85909-a649-4fd0-bdfc-602dace86b3a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64505004882812,\n            \"Text\": \"Name:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04669259116053581,\n                    \"Height\": 0.009732519276440144,\n                    \"Left\": 0.39901405572891235,\n                    \"Top\": 0.4121120572090149\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39901405572891235,\n                        \"Y\": 0.41212260723114014\n                    },\n                    {\n                        \"X\": 0.44570663571357727,\n                        \"Y\": 0.4121120572090149\n                    },\n                    {\n                        \"X\": 0.44570547342300415,\n                        \"Y\": 0.4218343496322632\n                    },\n                    {\n                        \"X\": 0.39901453256607056,\n                        \"Y\": 0.42184457182884216\n                    }\n                ]\n            },\n            \"Id\": \"edc4c419-c3a0-4976-a5a1-ad55d1c85a74\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36656188964844,\n            \"Text\": \"DOE\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06082086265087128,\n                    \"Height\": 0.022709369659423828,\n                    \"Left\": 0.5087264180183411,\n                    \"Top\": 0.3982089161872864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.508734405040741,\n                        \"Y\": 0.398223340511322\n                    },\n                    {\n                        \"X\": 0.5695472359657288,\n                        \"Y\": 0.3982089161872864\n                    },\n                    {\n                        \"X\": 0.5695342421531677,\n                        \"Y\": 0.4209049344062805\n                    },\n                    {\n                        \"X\": 0.5087264180183411,\n                        \"Y\": 0.4209182858467102\n                    }\n                ]\n            },\n            \"Id\": \"43c6c1c3-e32a-4132-aa39-97e5bb18f399\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.94258117675781,\n            \"Text\": \"Phone:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04964631423354149,\n                    \"Height\": 0.010133435018360615,\n                    \"Left\": 0.027089720591902733,\n                    \"Top\": 0.4343242347240448\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027089720591902733,\n                        \"Y\": 0.4343346059322357\n                    },\n                    {\n                        \"X\": 0.0767236277461052,\n                        \"Y\": 0.4343242347240448\n                    },\n                    {\n                        \"X\": 0.07673603296279907,\n                        \"Y\": 0.44444769620895386\n                    },\n                    {\n                        \"X\": 0.027103964239358902,\n                        \"Y\": 0.44445767998695374\n                    }\n                ]\n            },\n            \"Id\": \"2808b2c9-91c0-48b7-9857-8ea1911b1dbc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.26404571533203,\n            \"Text\": \"650-555-0123\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2179778516292572,\n                    \"Height\": 0.01953118108212948,\n                    \"Left\": 0.12160860747098923,\n                    \"Top\": 0.42579594254493713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12160860747098923,\n                        \"Y\": 0.42584294080734253\n                    },\n                    {\n                        \"X\": 0.33958128094673157,\n                        \"Y\": 0.42579594254493713\n                    },\n                    {\n                        \"X\": 0.339586466550827,\n                        \"Y\": 0.4452834725379944\n                    },\n                    {\n                        \"X\": 0.12162929773330688,\n                        \"Y\": 0.44532713294029236\n                    }\n                ]\n            },\n            \"Id\": \"5fe9d9b0-a0ec-409f-91d8-8f1f9bb9aa8a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65647888183594,\n            \"Text\": \"Relationship\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08688019961118698,\n                    \"Height\": 0.012101594358682632,\n                    \"Left\": 0.366242378950119,\n                    \"Top\": 0.43571969866752625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.366242378950119,\n                        \"Y\": 0.4357377588748932\n                    },\n                    {\n                        \"X\": 0.4531225860118866,\n                        \"Y\": 0.43571969866752625\n                    },\n                    {\n                        \"X\": 0.45312079787254333,\n                        \"Y\": 0.4478040635585785\n                    },\n                    {\n                        \"X\": 0.36624443531036377,\n                        \"Y\": 0.4478212893009186\n                    }\n                ]\n            },\n            \"Id\": \"555488ef-128e-43c4-bf3b-e5d0d5063951\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95344543457031,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015049821697175503,\n                    \"Height\": 0.008996340446174145,\n                    \"Left\": 0.45756372809410095,\n                    \"Top\": 0.4368596374988556\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45756521821022034,\n                        \"Y\": 0.4368627369403839\n                    },\n                    {\n                        \"X\": 0.47261354327201843,\n                        \"Y\": 0.4368596374988556\n                    },\n                    {\n                        \"X\": 0.47261157631874084,\n                        \"Y\": 0.44585296511650085\n                    },\n                    {\n                        \"X\": 0.45756372809410095,\n                        \"Y\": 0.445855975151062\n                    }\n                ]\n            },\n            \"Id\": \"3f947731-7d5b-41a7-baa8-dbb617e6ea08\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.13069915771484,\n            \"Text\": \"Patient:\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05446331948041916,\n                    \"Height\": 0.010177087038755417,\n                    \"Left\": 0.47753506898880005,\n                    \"Top\": 0.43647342920303345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47753748297691345,\n                        \"Y\": 0.4364847242832184\n                    },\n                    {\n                        \"X\": 0.5319983959197998,\n                        \"Y\": 0.43647342920303345\n                    },\n                    {\n                        \"X\": 0.5319939255714417,\n                        \"Y\": 0.44663968682289124\n                    },\n                    {\n                        \"X\": 0.47753506898880005,\n                        \"Y\": 0.44665053486824036\n                    }\n                ]\n            },\n            \"Id\": \"8a1073eb-91f7-4a2e-93da-40e169a4bc39\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.36680603027344,\n            \"Text\": \"FRIEND\",\n            \"TextType\": \"HANDWRITING\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12327547371387482,\n                    \"Height\": 0.02097543329000473,\n                    \"Left\": 0.5734485387802124,\n                    \"Top\": 0.42639267444610596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5734608173370361,\n                        \"Y\": 0.4264191687107086\n                    },\n                    {\n                        \"X\": 0.696723997592926,\n                        \"Y\": 0.42639267444610596\n                    },\n                    {\n                        \"X\": 0.696702241897583,\n                        \"Y\": 0.4473436176776886\n                    },\n                    {\n                        \"X\": 0.5734485387802124,\n                        \"Y\": 0.4473680853843689\n                    }\n                ]\n            },\n            \"Id\": \"da325cfb-9f54-41b5-bbb7-5ae064085046\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.04804229736328,\n            \"Text\": \"Did\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027450567111372948,\n                    \"Height\": 0.012261266820132732,\n                    \"Left\": 0.036096442490816116,\n                    \"Top\": 0.5895411968231201\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036096442490816116,\n                        \"Y\": 0.5895435810089111\n                    },\n                    {\n                        \"X\": 0.06353138387203217,\n                        \"Y\": 0.5895411968231201\n                    },\n                    {\n                        \"X\": 0.06354700773954391,\n                        \"Y\": 0.6018003821372986\n                    },\n                    {\n                        \"X\": 0.03611329570412636,\n                        \"Y\": 0.6018024682998657\n                    }\n                ]\n            },\n            \"Id\": \"171da7b7-1584-429d-8d14-fd4a3b1e96e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92469787597656,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03100229986011982,\n                    \"Height\": 0.012408661656081676,\n                    \"Left\": 0.06780310720205307,\n                    \"Top\": 0.5920526385307312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06780310720205307,\n                        \"Y\": 0.5920552611351013\n                    },\n                    {\n                        \"X\": 0.09879118949174881,\n                        \"Y\": 0.5920526385307312\n                    },\n                    {\n                        \"X\": 0.09880540519952774,\n                        \"Y\": 0.6044589877128601\n                    },\n                    {\n                        \"X\": 0.06781872361898422,\n                        \"Y\": 0.6044613122940063\n                    }\n                ]\n            },\n            \"Id\": \"03861b0f-6254-4fe5-a226-fbbfbdfaaafc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55261993408203,\n            \"Text\": \"feel\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03208647668361664,\n                    \"Height\": 0.012318861670792103,\n                    \"Left\": 0.10175955295562744,\n                    \"Top\": 0.5900319218635559\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10175955295562744,\n                        \"Y\": 0.5900347232818604\n                    },\n                    {\n                        \"X\": 0.13383349776268005,\n                        \"Y\": 0.5900319218635559\n                    },\n                    {\n                        \"X\": 0.13384602963924408,\n                        \"Y\": 0.6023483276367188\n                    },\n                    {\n                        \"X\": 0.10177353024482727,\n                        \"Y\": 0.6023507714271545\n                    }\n                ]\n            },\n            \"Id\": \"36a0f3c7-51df-4eee-9052-ab6c1a7717a0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8469009399414,\n            \"Text\": \"fever\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.043378736823797226,\n                    \"Height\": 0.012133787386119366,\n                    \"Left\": 0.13743650913238525,\n                    \"Top\": 0.5905396938323975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13743650913238525,\n                        \"Y\": 0.5905433893203735\n                    },\n                    {\n                        \"X\": 0.18080498278141022,\n                        \"Y\": 0.5905396938323975\n                    },\n                    {\n                        \"X\": 0.18081523478031158,\n                        \"Y\": 0.6026701331138611\n                    },\n                    {\n                        \"X\": 0.13744869828224182,\n                        \"Y\": 0.6026734709739685\n                    }\n                ]\n            },\n            \"Id\": \"9861e08c-d07e-481e-bea7-b8bd31f8ee96\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96588897705078,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01827194355428219,\n                    \"Height\": 0.009261272847652435,\n                    \"Left\": 0.18482381105422974,\n                    \"Top\": 0.5934144258499146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18482381105422974,\n                        \"Y\": 0.5934159755706787\n                    },\n                    {\n                        \"X\": 0.2030886709690094,\n                        \"Y\": 0.5934144258499146\n                    },\n                    {\n                        \"X\": 0.20309574902057648,\n                        \"Y\": 0.6026743054389954\n                    },\n                    {\n                        \"X\": 0.18483151495456696,\n                        \"Y\": 0.6026756763458252\n                    }\n                ]\n            },\n            \"Id\": \"a37d6407-f2fa-482a-a090-4dad53b726c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77185821533203,\n            \"Text\": \"feverish\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06625021994113922,\n                    \"Height\": 0.012731986120343208,\n                    \"Left\": 0.20707009732723236,\n                    \"Top\": 0.5907130837440491\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20707009732723236,\n                        \"Y\": 0.5907187461853027\n                    },\n                    {\n                        \"X\": 0.27331385016441345,\n                        \"Y\": 0.5907130837440491\n                    },\n                    {\n                        \"X\": 0.2733203172683716,\n                        \"Y\": 0.6034400463104248\n                    },\n                    {\n                        \"X\": 0.20707964897155762,\n                        \"Y\": 0.6034450531005859\n                    }\n                ]\n            },\n            \"Id\": \"d0f2b228-fa1b-4330-a98e-18a64fee6d35\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7791976928711,\n            \"Text\": \"lately?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053284380584955215,\n                    \"Height\": 0.014727766625583172,\n                    \"Left\": 0.2787982225418091,\n                    \"Top\": 0.5911253690719604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2787982225418091,\n                        \"Y\": 0.5911299586296082\n                    },\n                    {\n                        \"X\": 0.33207830786705017,\n                        \"Y\": 0.5911253690719604\n                    },\n                    {\n                        \"X\": 0.3320826292037964,\n                        \"Y\": 0.6058492064476013\n                    },\n                    {\n                        \"X\": 0.2788054347038269,\n                        \"Y\": 0.6058531403541565\n                    }\n                ]\n            },\n            \"Id\": \"d4b42171-0598-4b08-9738-22e0029e681e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92642974853516,\n            \"Text\": \"Yes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03204810991883278,\n                    \"Height\": 0.012207340449094772,\n                    \"Left\": 0.7173052430152893,\n                    \"Top\": 0.5948289632797241\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7173188328742981,\n                        \"Y\": 0.5948315858840942\n                    },\n                    {\n                        \"X\": 0.7493533492088318,\n                        \"Y\": 0.5948289632797241\n                    },\n                    {\n                        \"X\": 0.7493383288383484,\n                        \"Y\": 0.6070339679718018\n                    },\n                    {\n                        \"X\": 0.7173052430152893,\n                        \"Y\": 0.607036292552948\n                    }\n                ]\n            },\n            \"Id\": \"a2a649d0-2586-482a-8509-0b688558a67b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71234130859375,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02409723401069641,\n                    \"Height\": 0.012760726734995842,\n                    \"Left\": 0.8178417682647705,\n                    \"Top\": 0.5957388877868652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8178606629371643,\n                        \"Y\": 0.5957408547401428\n                    },\n                    {\n                        \"X\": 0.8419389724731445,\n                        \"Y\": 0.5957388877868652\n                    },\n                    {\n                        \"X\": 0.8419189453125,\n                        \"Y\": 0.6084978580474854\n                    },\n                    {\n                        \"X\": 0.8178417682647705,\n                        \"Y\": 0.6084995865821838\n                    }\n                ]\n            },\n            \"Id\": \"747b263b-1abd-48c4-85bc-11092160df03\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5758056640625,\n            \"Text\": \"Are\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029788389801979065,\n                    \"Height\": 0.011896912939846516,\n                    \"Left\": 0.03699076175689697,\n                    \"Top\": 0.6555087566375732\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03699076175689697,\n                        \"Y\": 0.6555097699165344\n                    },\n                    {\n                        \"X\": 0.06676412373781204,\n                        \"Y\": 0.6555087566375732\n                    },\n                    {\n                        \"X\": 0.06677915155887604,\n                        \"Y\": 0.6674048900604248\n                    },\n                    {\n                        \"X\": 0.037007082253694534,\n                        \"Y\": 0.6674056649208069\n                    }\n                ]\n            },\n            \"Id\": \"9e8203e6-0768-4de4-b654-3637300ec7cc\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94479370117188,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030427953228354454,\n                    \"Height\": 0.012090667150914669,\n                    \"Left\": 0.07026422023773193,\n                    \"Top\": 0.6578953862190247\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07026422023773193,\n                        \"Y\": 0.6578963994979858\n                    },\n                    {\n                        \"X\": 0.10067840665578842,\n                        \"Y\": 0.6578953862190247\n                    },\n                    {\n                        \"X\": 0.10069217532873154,\n                        \"Y\": 0.6699853539466858\n                    },\n                    {\n                        \"X\": 0.07027933746576309,\n                        \"Y\": 0.6699860692024231\n                    }\n                ]\n            },\n            \"Id\": \"19e89164-8cbb-4f5a-846d-c90334c7d268\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94134521484375,\n            \"Text\": \"having\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05408811569213867,\n                    \"Height\": 0.015114851295948029,\n                    \"Left\": 0.10542415082454681,\n                    \"Top\": 0.6556834578514099\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10542415082454681,\n                        \"Y\": 0.655685305595398\n                    },\n                    {\n                        \"X\": 0.15949830412864685,\n                        \"Y\": 0.6556834578514099\n                    },\n                    {\n                        \"X\": 0.15951226651668549,\n                        \"Y\": 0.6707970499992371\n                    },\n                    {\n                        \"X\": 0.10544110834598541,\n                        \"Y\": 0.6707983016967773\n                    }\n                ]\n            },\n            \"Id\": \"7ccf02b4-49ea-42ba-bd3e-9717980f2f57\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85125732421875,\n            \"Text\": \"shortness\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08211616426706314,\n                    \"Height\": 0.012380381114780903,\n                    \"Left\": 0.16465257108211517,\n                    \"Top\": 0.6566084623336792\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16465257108211517,\n                        \"Y\": 0.6566112637519836\n                    },\n                    {\n                        \"X\": 0.2467612326145172,\n                        \"Y\": 0.6566084623336792\n                    },\n                    {\n                        \"X\": 0.24676872789859772,\n                        \"Y\": 0.6689869165420532\n                    },\n                    {\n                        \"X\": 0.16466377675533295,\n                        \"Y\": 0.6689888834953308\n                    }\n                ]\n            },\n            \"Id\": \"cc6dec03-8f86-4af0-9a69-399c1ba9bd7d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98750305175781,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.017633572220802307,\n                    \"Height\": 0.012417330406606197,\n                    \"Left\": 0.25052741169929504,\n                    \"Top\": 0.656852126121521\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25052741169929504,\n                        \"Y\": 0.6568527221679688\n                    },\n                    {\n                        \"X\": 0.26815444231033325,\n                        \"Y\": 0.656852126121521\n                    },\n                    {\n                        \"X\": 0.26816096901893616,\n                        \"Y\": 0.6692690253257751\n                    },\n                    {\n                        \"X\": 0.2505347430706024,\n                        \"Y\": 0.6692694425582886\n                    }\n                ]\n            },\n            \"Id\": \"07c2ed48-1478-4e4f-b683-3b5d4b89d949\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74910736083984,\n            \"Text\": \"breath?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06392763555049896,\n                    \"Height\": 0.012544557452201843,\n                    \"Left\": 0.27140286564826965,\n                    \"Top\": 0.6570625901222229\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27140286564826965,\n                        \"Y\": 0.65706467628479\n                    },\n                    {\n                        \"X\": 0.3353269696235657,\n                        \"Y\": 0.6570625901222229\n                    },\n                    {\n                        \"X\": 0.3353305160999298,\n                        \"Y\": 0.6696056127548218\n                    },\n                    {\n                        \"X\": 0.2714093327522278,\n                        \"Y\": 0.6696071028709412\n                    }\n                ]\n            },\n            \"Id\": \"d222aaad-9347-4c5a-89e6-90d2f9b6961d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93043518066406,\n            \"Text\": \"Yes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03121311031281948,\n                    \"Height\": 0.011897028423845768,\n                    \"Left\": 0.7167641520500183,\n                    \"Top\": 0.6613273024559021\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7167773842811584,\n                        \"Y\": 0.6613282561302185\n                    },\n                    {\n                        \"X\": 0.7479772567749023,\n                        \"Y\": 0.6613273024559021\n                    },\n                    {\n                        \"X\": 0.7479627132415771,\n                        \"Y\": 0.6732236742973328\n                    },\n                    {\n                        \"X\": 0.7167641520500183,\n                        \"Y\": 0.6732243299484253\n                    }\n                ]\n            },\n            \"Id\": \"6eb585b9-248c-491e-ace3-3cbc1b8d69fa\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54241943359375,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024371694773435593,\n                    \"Height\": 0.013265123590826988,\n                    \"Left\": 0.8153091073036194,\n                    \"Top\": 0.6616281867027283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8153285980224609,\n                        \"Y\": 0.6616289019584656\n                    },\n                    {\n                        \"X\": 0.8396807909011841,\n                        \"Y\": 0.6616281867027283\n                    },\n                    {\n                        \"X\": 0.8396600484848022,\n                        \"Y\": 0.674892783164978\n                    },\n                    {\n                        \"X\": 0.8153091073036194,\n                        \"Y\": 0.6748932600021362\n                    }\n                ]\n            },\n            \"Id\": \"aedde6bf-a909-46d4-8d7b-806f52f2ae17\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.53529357910156,\n            \"Text\": \"Do\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023539654910564423,\n                    \"Height\": 0.011638802476227283,\n                    \"Left\": 0.03948159143328667,\n                    \"Top\": 0.7202245593070984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03948159143328667,\n                        \"Y\": 0.7202245593070984\n                    },\n                    {\n                        \"X\": 0.06300637871026993,\n                        \"Y\": 0.720224916934967\n                    },\n                    {\n                        \"X\": 0.06302124261856079,\n                        \"Y\": 0.7318633198738098\n                    },\n                    {\n                        \"X\": 0.039497457444667816,\n                        \"Y\": 0.7318627238273621\n                    }\n                ]\n            },\n            \"Id\": \"e45f4e91-796b-4a84-86e3-c84f44805dbf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94393920898438,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03102593496441841,\n                    \"Height\": 0.011827770620584488,\n                    \"Left\": 0.06684461981058121,\n                    \"Top\": 0.7225871682167053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06684461981058121,\n                        \"Y\": 0.7225871682167053\n                    },\n                    {\n                        \"X\": 0.09785696119070053,\n                        \"Y\": 0.7225877642631531\n                    },\n                    {\n                        \"X\": 0.09787055850028992,\n                        \"Y\": 0.7344149351119995\n                    },\n                    {\n                        \"X\": 0.06685956567525864,\n                        \"Y\": 0.7344141006469727\n                    }\n                ]\n            },\n            \"Id\": \"697808ee-b8b9-4c1c-b633-4b2f4bde3a10\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96174621582031,\n            \"Text\": \"have\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.040027063339948654,\n                    \"Height\": 0.011910255067050457,\n                    \"Left\": 0.10231737792491913,\n                    \"Top\": 0.7206726670265198\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10231737792491913,\n                        \"Y\": 0.7206726670265198\n                    },\n                    {\n                        \"X\": 0.14233268797397614,\n                        \"Y\": 0.7206733226776123\n                    },\n                    {\n                        \"X\": 0.14234444499015808,\n                        \"Y\": 0.7325829267501831\n                    },\n                    {\n                        \"X\": 0.10233087092638016,\n                        \"Y\": 0.7325818538665771\n                    }\n                ]\n            },\n            \"Id\": \"bb5bdb57-79d8-48b7-9e4b-553a65af4168\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9167709350586,\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.011024534702301025,\n                    \"Height\": 0.008924296125769615,\n                    \"Left\": 0.14739173650741577,\n                    \"Top\": 0.7237982749938965\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14739173650741577,\n                        \"Y\": 0.7237982749938965\n                    },\n                    {\n                        \"X\": 0.15840798616409302,\n                        \"Y\": 0.7237985134124756\n                    },\n                    {\n                        \"X\": 0.1584162712097168,\n                        \"Y\": 0.7327225804328918\n                    },\n                    {\n                        \"X\": 0.1474003940820694,\n                        \"Y\": 0.732722282409668\n                    }\n                ]\n            },\n            \"Id\": \"f52f40cb-8d38-472e-a21f-3b522e07df82\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74544525146484,\n            \"Text\": \"cough?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0599048025906086,\n                    \"Height\": 0.014133390039205551,\n                    \"Left\": 0.16272425651550293,\n                    \"Top\": 0.7221167087554932\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16272425651550293,\n                        \"Y\": 0.7221167087554932\n                    },\n                    {\n                        \"X\": 0.22261926531791687,\n                        \"Y\": 0.7221177816390991\n                    },\n                    {\n                        \"X\": 0.22262907028198242,\n                        \"Y\": 0.736250102519989\n                    },\n                    {\n                        \"X\": 0.1627371609210968,\n                        \"Y\": 0.7362483739852905\n                    }\n                ]\n            },\n            \"Id\": \"e4fa54b4-e7f1-4671-9a16-93bfb23f1d3d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.912109375,\n            \"Text\": \"Yes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03136611729860306,\n                    \"Height\": 0.011920114979147911,\n                    \"Left\": 0.7147804498672485,\n                    \"Top\": 0.7269144654273987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7147936224937439,\n                        \"Y\": 0.7269144654273987\n                    },\n                    {\n                        \"X\": 0.746146559715271,\n                        \"Y\": 0.726915180683136\n                    },\n                    {\n                        \"X\": 0.7461320161819458,\n                        \"Y\": 0.7388346195220947\n                    },\n                    {\n                        \"X\": 0.7147804498672485,\n                        \"Y\": 0.7388336062431335\n                    }\n                ]\n            },\n            \"Id\": \"4ac89133-1518-41db-bea2-1260959b0e52\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.51188659667969,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024524737149477005,\n                    \"Height\": 0.013048297725617886,\n                    \"Left\": 0.8124504089355469,\n                    \"Top\": 0.7273125052452087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.812469482421875,\n                        \"Y\": 0.7273125052452087\n                    },\n                    {\n                        \"X\": 0.8369751572608948,\n                        \"Y\": 0.7273130416870117\n                    },\n                    {\n                        \"X\": 0.8369548916816711,\n                        \"Y\": 0.7403607964515686\n                    },\n                    {\n                        \"X\": 0.8124504089355469,\n                        \"Y\": 0.7403600215911865\n                    }\n                ]\n            },\n            \"Id\": \"3d894399-7cc6-4f11-82c0-bc8bef75946c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56449127197266,\n            \"Text\": \"Did\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027719547972083092,\n                    \"Height\": 0.011757818050682545,\n                    \"Left\": 0.041360754519701004,\n                    \"Top\": 0.7838676571846008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.041360754519701004,\n                        \"Y\": 0.7838676571846008\n                    },\n                    {\n                        \"X\": 0.06906554102897644,\n                        \"Y\": 0.7838695049285889\n                    },\n                    {\n                        \"X\": 0.06908030062913895,\n                        \"Y\": 0.7956254482269287\n                    },\n                    {\n                        \"X\": 0.04137670248746872,\n                        \"Y\": 0.7956233620643616\n                    }\n                ]\n            },\n            \"Id\": \"994d6ac5-ebec-4c2f-9269-14bb9e94564f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91967010498047,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030085332691669464,\n                    \"Height\": 0.01153846736997366,\n                    \"Left\": 0.07346951216459274,\n                    \"Top\": 0.7866607308387756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07346951216459274,\n                        \"Y\": 0.7866607308387756\n                    },\n                    {\n                        \"X\": 0.10354181379079819,\n                        \"Y\": 0.7866628170013428\n                    },\n                    {\n                        \"X\": 0.10355484485626221,\n                        \"Y\": 0.7981992363929749\n                    },\n                    {\n                        \"X\": 0.07348380982875824,\n                        \"Y\": 0.7981969118118286\n                    }\n                ]\n            },\n            \"Id\": \"147f7577-5171-46ab-93da-6dd1e502ede2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52007293701172,\n            \"Text\": \"experience\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08971712738275528,\n                    \"Height\": 0.014203905127942562,\n                    \"Left\": 0.10821115970611572,\n                    \"Top\": 0.7850445508956909\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10821115970611572,\n                        \"Y\": 0.7850445508956909\n                    },\n                    {\n                        \"X\": 0.1979171484708786,\n                        \"Y\": 0.7850505709648132\n                    },\n                    {\n                        \"X\": 0.1979282796382904,\n                        \"Y\": 0.799248456954956\n                    },\n                    {\n                        \"X\": 0.1082269474864006,\n                        \"Y\": 0.7992414236068726\n                    }\n                ]\n            },\n            \"Id\": \"052ce72e-5206-4180-b6d7-1df71b3e6e0d\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86563873291016,\n            \"Text\": \"loss\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032835084944963455,\n                    \"Height\": 0.011948589235544205,\n                    \"Left\": 0.2024383693933487,\n                    \"Top\": 0.7857367992401123\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2024383693933487,\n                        \"Y\": 0.7857367992401123\n                    },\n                    {\n                        \"X\": 0.23526571691036224,\n                        \"Y\": 0.785739004611969\n                    },\n                    {\n                        \"X\": 0.23527345061302185,\n                        \"Y\": 0.7976853847503662\n                    },\n                    {\n                        \"X\": 0.2024475336074829,\n                        \"Y\": 0.7976828217506409\n                    }\n                ]\n            },\n            \"Id\": \"7daa5f5c-112f-4ad3-8f40-cd37f4249255\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9578628540039,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.016842342913150787,\n                    \"Height\": 0.011463282629847527,\n                    \"Left\": 0.239424929022789,\n                    \"Top\": 0.7864077091217041\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.239424929022789,\n                        \"Y\": 0.7864077091217041\n                    },\n                    {\n                        \"X\": 0.2562607228755951,\n                        \"Y\": 0.7864088416099548\n                    },\n                    {\n                        \"X\": 0.2562672793865204,\n                        \"Y\": 0.7978709936141968\n                    },\n                    {\n                        \"X\": 0.2394321858882904,\n                        \"Y\": 0.7978696823120117\n                    }\n                ]\n            },\n            \"Id\": \"acee2c91-8e21-4831-99f7-f57a9a7b523b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88252258300781,\n            \"Text\": \"taste\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04033728688955307,\n                    \"Height\": 0.011253876611590385,\n                    \"Left\": 0.25928908586502075,\n                    \"Top\": 0.7873358726501465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25928908586502075,\n                        \"Y\": 0.7873358726501465\n                    },\n                    {\n                        \"X\": 0.29962173104286194,\n                        \"Y\": 0.7873386740684509\n                    },\n                    {\n                        \"X\": 0.2996263802051544,\n                        \"Y\": 0.7985897660255432\n                    },\n                    {\n                        \"X\": 0.25929540395736694,\n                        \"Y\": 0.7985866069793701\n                    }\n                ]\n            },\n            \"Id\": \"a4f9f479-32c4-4f56-abe3-8a4f9c4a1401\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90222930908203,\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01830766722559929,\n                    \"Height\": 0.009677430614829063,\n                    \"Left\": 0.3041279911994934,\n                    \"Top\": 0.7894644141197205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3041279911994934,\n                        \"Y\": 0.7894644141197205\n                    },\n                    {\n                        \"X\": 0.3224324882030487,\n                        \"Y\": 0.7894657254219055\n                    },\n                    {\n                        \"X\": 0.3224356472492218,\n                        \"Y\": 0.7991418242454529\n                    },\n                    {\n                        \"X\": 0.3041318356990814,\n                        \"Y\": 0.7991403937339783\n                    }\n                ]\n            },\n            \"Id\": \"7382fd65-ab5f-4e11-bbe9-eed695a641f9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.43437194824219,\n            \"Text\": \"smell?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05290819704532623,\n                    \"Height\": 0.011658916249871254,\n                    \"Left\": 0.32636740803718567,\n                    \"Top\": 0.7885467410087585\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32636740803718567,\n                        \"Y\": 0.7885467410087585\n                    },\n                    {\n                        \"X\": 0.3792741894721985,\n                        \"Y\": 0.7885504364967346\n                    },\n                    {\n                        \"X\": 0.3792755901813507,\n                        \"Y\": 0.800205647945404\n                    },\n                    {\n                        \"X\": 0.32637107372283936,\n                        \"Y\": 0.800201416015625\n                    }\n                ]\n            },\n            \"Id\": \"33c575bb-2abd-444f-b45d-1472b9a55971\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94300842285156,\n            \"Text\": \"Yes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03102680668234825,\n                    \"Height\": 0.011901476420462132,\n                    \"Left\": 0.7124963998794556,\n                    \"Top\": 0.791111171245575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7125095129013062,\n                        \"Y\": 0.791111171245575\n                    },\n                    {\n                        \"X\": 0.7435232400894165,\n                        \"Y\": 0.7911133766174316\n                    },\n                    {\n                        \"X\": 0.7435088157653809,\n                        \"Y\": 0.8030126094818115\n                    },\n                    {\n                        \"X\": 0.7124963998794556,\n                        \"Y\": 0.803010106086731\n                    }\n                ]\n            },\n            \"Id\": \"fc183ebb-7f22-4f77-97cc-da6890e62f32\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.59786987304688,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0226429495960474,\n                    \"Height\": 0.012448012828826904,\n                    \"Left\": 0.8113828301429749,\n                    \"Top\": 0.7918006181716919\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8114010095596313,\n                        \"Y\": 0.7918006181716919\n                    },\n                    {\n                        \"X\": 0.8340258002281189,\n                        \"Y\": 0.7918022871017456\n                    },\n                    {\n                        \"X\": 0.8340066075325012,\n                        \"Y\": 0.8042486310005188\n                    },\n                    {\n                        \"X\": 0.8113828301429749,\n                        \"Y\": 0.8042467832565308\n                    }\n                ]\n            },\n            \"Id\": \"a96f5978-2dd1-4215-b800-c842ae0d6a9b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79340362548828,\n            \"Text\": \"Where\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.053733378648757935,\n                    \"Height\": 0.012298258021473885,\n                    \"Left\": 0.04266298562288284,\n                    \"Top\": 0.847571074962616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04266298562288284,\n                        \"Y\": 0.847571074962616\n                    },\n                    {\n                        \"X\": 0.09638215601444244,\n                        \"Y\": 0.8475773334503174\n                    },\n                    {\n                        \"X\": 0.09639636427164078,\n                        \"Y\": 0.8598693013191223\n                    },\n                    {\n                        \"X\": 0.04267960786819458,\n                        \"Y\": 0.8598625063896179\n                    }\n                ]\n            },\n            \"Id\": \"3b0d9cf9-2ac3-42c5-b851-e33f22e27b58\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94843292236328,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03067396953701973,\n                    \"Height\": 0.012031801044940948,\n                    \"Left\": 0.10039383918046951,\n                    \"Top\": 0.8507129549980164\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10039383918046951,\n                        \"Y\": 0.8507129549980164\n                    },\n                    {\n                        \"X\": 0.13105542957782745,\n                        \"Y\": 0.8507165908813477\n                    },\n                    {\n                        \"X\": 0.13106781244277954,\n                        \"Y\": 0.8627447485923767\n                    },\n                    {\n                        \"X\": 0.10040756314992905,\n                        \"Y\": 0.8627408146858215\n                    }\n                ]\n            },\n            \"Id\": \"b73f4f3d-58bb-4143-9f46-42a51b23533b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92695617675781,\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.01380921620875597,\n                    \"Height\": 0.011500953696668148,\n                    \"Left\": 0.13591206073760986,\n                    \"Top\": 0.8486889600753784\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13591206073760986,\n                        \"Y\": 0.8486889600753784\n                    },\n                    {\n                        \"X\": 0.14971022307872772,\n                        \"Y\": 0.8486905694007874\n                    },\n                    {\n                        \"X\": 0.14972126483917236,\n                        \"Y\": 0.8601899147033691\n                    },\n                    {\n                        \"X\": 0.13592368364334106,\n                        \"Y\": 0.8601881861686707\n                    }\n                ]\n            },\n            \"Id\": \"3abb6b23-635b-4248-80f6-706dbece4acb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67644500732422,\n            \"Text\": \"contact\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06044452264904976,\n                    \"Height\": 0.011469057761132717,\n                    \"Left\": 0.15447619557380676,\n                    \"Top\": 0.849312424659729\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15447619557380676,\n                        \"Y\": 0.849312424659729\n                    },\n                    {\n                        \"X\": 0.21491244435310364,\n                        \"Y\": 0.8493195176124573\n                    },\n                    {\n                        \"X\": 0.21492071449756622,\n                        \"Y\": 0.8607814908027649\n                    },\n                    {\n                        \"X\": 0.1544870138168335,\n                        \"Y\": 0.8607738018035889\n                    }\n                ]\n            },\n            \"Id\": \"ddefcc4a-8f48-4233-bd69-b80f7180dd54\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95745849609375,\n            \"Text\": \"with\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.033227816224098206,\n                    \"Height\": 0.011598741635680199,\n                    \"Left\": 0.21846064925193787,\n                    \"Top\": 0.8493334054946899\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21846064925193787,\n                        \"Y\": 0.8493334054946899\n                    },\n                    {\n                        \"X\": 0.2516816556453705,\n                        \"Y\": 0.8493373394012451\n                    },\n                    {\n                        \"X\": 0.25168848037719727,\n                        \"Y\": 0.8609321713447571\n                    },\n                    {\n                        \"X\": 0.21846887469291687,\n                        \"Y\": 0.860927939414978\n                    }\n                ]\n            },\n            \"Id\": \"43986821-edff-42b2-b2fe-8b27d80f26f8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98383331298828,\n            \"Text\": \"any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030053623020648956,\n                    \"Height\": 0.011658161878585815,\n                    \"Left\": 0.2563645541667938,\n                    \"Top\": 0.8519651889801025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2563645541667938,\n                        \"Y\": 0.8519651889801025\n                    },\n                    {\n                        \"X\": 0.2864128053188324,\n                        \"Y\": 0.8519687652587891\n                    },\n                    {\n                        \"X\": 0.2864181697368622,\n                        \"Y\": 0.863623321056366\n                    },\n                    {\n                        \"X\": 0.2563712000846863,\n                        \"Y\": 0.8636194467544556\n                    }\n                ]\n            },\n            \"Id\": \"bc0b87ab-c43c-4b6d-b452-4a4ed1c95c12\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86753845214844,\n            \"Text\": \"confirmed\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08143950253725052,\n                    \"Height\": 0.012766188010573387,\n                    \"Left\": 0.2900313436985016,\n                    \"Top\": 0.8496994972229004\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2900313436985016,\n                        \"Y\": 0.8496994972229004\n                    },\n                    {\n                        \"X\": 0.3714689612388611,\n                        \"Y\": 0.8497090935707092\n                    },\n                    {\n                        \"X\": 0.3714708685874939,\n                        \"Y\": 0.8624656796455383\n                    },\n                    {\n                        \"X\": 0.2900370657444,\n                        \"Y\": 0.8624551892280579\n                    }\n                ]\n            },\n            \"Id\": \"31501b77-bb97-4634-80cd-4a4380eae383\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.62552642822266,\n            \"Text\": \"COVID-19\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0825839713215828,\n                    \"Height\": 0.012616808526217937,\n                    \"Left\": 0.3765316605567932,\n                    \"Top\": 0.8510804176330566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3765316605567932,\n                        \"Y\": 0.8510804176330566\n                    },\n                    {\n                        \"X\": 0.4591156542301178,\n                        \"Y\": 0.8510902523994446\n                    },\n                    {\n                        \"X\": 0.4591134786605835,\n                        \"Y\": 0.8636972308158875\n                    },\n                    {\n                        \"X\": 0.3765333294868469,\n                        \"Y\": 0.8636865615844727\n                    }\n                ]\n            },\n            \"Id\": \"0ba7c023-4aa3-4e0e-bb44-a3f713dac399\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81776428222656,\n            \"Text\": \"positive\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06215468421578407,\n                    \"Height\": 0.014077026396989822,\n                    \"Left\": 0.4634963572025299,\n                    \"Top\": 0.8525980710983276\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4634989798069,\n                        \"Y\": 0.8525980710983276\n                    },\n                    {\n                        \"X\": 0.5256510376930237,\n                        \"Y\": 0.8526055812835693\n                    },\n                    {\n                        \"X\": 0.5256451964378357,\n                        \"Y\": 0.8666751384735107\n                    },\n                    {\n                        \"X\": 0.4634963572025299,\n                        \"Y\": 0.8666669130325317\n                    }\n                ]\n            },\n            \"Id\": \"2c970d25-5578-469b-bcbd-9b96ad3d6670\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7059555053711,\n            \"Text\": \"patients?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07499184459447861,\n                    \"Height\": 0.013779894448816776,\n                    \"Left\": 0.5304720997810364,\n                    \"Top\": 0.853153645992279\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5304780602455139,\n                        \"Y\": 0.853153645992279\n                    },\n                    {\n                        \"X\": 0.605463981628418,\n                        \"Y\": 0.8531627058982849\n                    },\n                    {\n                        \"X\": 0.6054542660713196,\n                        \"Y\": 0.8669335246086121\n                    },\n                    {\n                        \"X\": 0.5304720997810364,\n                        \"Y\": 0.8669236302375793\n                    }\n                ]\n            },\n            \"Id\": \"9a2d8116-739c-4fc6-aeae-b4fb27bf0758\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81636047363281,\n            \"Text\": \"Yes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03123343363404274,\n                    \"Height\": 0.01255446020513773,\n                    \"Left\": 0.7098665833473206,\n                    \"Top\": 0.8546563982963562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7098802328109741,\n                        \"Y\": 0.8546563982963562\n                    },\n                    {\n                        \"X\": 0.741100013256073,\n                        \"Y\": 0.8546602129936218\n                    },\n                    {\n                        \"X\": 0.7410849332809448,\n                        \"Y\": 0.867210865020752\n                    },\n                    {\n                        \"X\": 0.7098665833473206,\n                        \"Y\": 0.8672067523002625\n                    }\n                ]\n            },\n            \"Id\": \"001908ca-346d-4529-9df5-f7ca534d1cb7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61276245117188,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024016758427023888,\n                    \"Height\": 0.012698344886302948,\n                    \"Left\": 0.8081610202789307,\n                    \"Top\": 0.8563244342803955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8081793785095215,\n                        \"Y\": 0.8563244342803955\n                    },\n                    {\n                        \"X\": 0.8321777582168579,\n                        \"Y\": 0.8563274145126343\n                    },\n                    {\n                        \"X\": 0.8321582674980164,\n                        \"Y\": 0.869022786617279\n                    },\n                    {\n                        \"X\": 0.8081610202789307,\n                        \"Y\": 0.869019627571106\n                    }\n                ]\n            },\n            \"Id\": \"f4bfdf0a-682e-4041-b435-3a56e9ed631b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5196304321289,\n            \"Text\": \"Did\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026684656739234924,\n                    \"Height\": 0.012038684450089931,\n                    \"Left\": 0.04306093975901604,\n                    \"Top\": 0.9125481247901917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04306093975901604,\n                        \"Y\": 0.9125481247901917\n                    },\n                    {\n                        \"X\": 0.06973051279783249,\n                        \"Y\": 0.9125525951385498\n                    },\n                    {\n                        \"X\": 0.06974560022354126,\n                        \"Y\": 0.9245867729187012\n                    },\n                    {\n                        \"X\": 0.04307720065116882,\n                        \"Y\": 0.9245820641517639\n                    }\n                ]\n            },\n            \"Id\": \"c6c80386-a15e-45e7-8820-1fa43b69a1a8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93675994873047,\n            \"Text\": \"you\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03022334910929203,\n                    \"Height\": 0.012001583352684975,\n                    \"Left\": 0.07406436651945114,\n                    \"Top\": 0.9153727889060974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07406436651945114,\n                        \"Y\": 0.9153727889060974\n                    },\n                    {\n                        \"X\": 0.1042741909623146,\n                        \"Y\": 0.9153779149055481\n                    },\n                    {\n                        \"X\": 0.10428771376609802,\n                        \"Y\": 0.9273743629455566\n                    },\n                    {\n                        \"X\": 0.07407920807600021,\n                        \"Y\": 0.9273689389228821\n                    }\n                ]\n            },\n            \"Id\": \"596a4046-9769-4431-ab02-57162e134375\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82720947265625,\n            \"Text\": \"travel\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04608286917209625,\n                    \"Height\": 0.01165202260017395,\n                    \"Left\": 0.1085861548781395,\n                    \"Top\": 0.9135163426399231\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1085861548781395,\n                        \"Y\": 0.9135163426399231\n                    },\n                    {\n                        \"X\": 0.15465804934501648,\n                        \"Y\": 0.9135240912437439\n                    },\n                    {\n                        \"X\": 0.15466901659965515,\n                        \"Y\": 0.9251683950424194\n                    },\n                    {\n                        \"X\": 0.10859909653663635,\n                        \"Y\": 0.9251601696014404\n                    }\n                ]\n            },\n            \"Id\": \"be6cbd37-490b-474d-95b0-11b2a41e3923\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93208312988281,\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.014095555990934372,\n                    \"Height\": 0.011430300772190094,\n                    \"Left\": 0.1589813083410263,\n                    \"Top\": 0.9134964942932129\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1589813083410263,\n                        \"Y\": 0.9134964942932129\n                    },\n                    {\n                        \"X\": 0.1730668544769287,\n                        \"Y\": 0.9134988784790039\n                    },\n                    {\n                        \"X\": 0.17307685315608978,\n                        \"Y\": 0.9249268174171448\n                    },\n                    {\n                        \"X\": 0.15899188816547394,\n                        \"Y\": 0.9249243140220642\n                    }\n                ]\n            },\n            \"Id\": \"cc82707c-22fb-40f3-a9f4-4fa6f43c2890\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.99263000488281,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02670302428305149,\n                    \"Height\": 0.011579846031963825,\n                    \"Left\": 0.17735616862773895,\n                    \"Top\": 0.9134452939033508\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17735616862773895,\n                        \"Y\": 0.9134452939033508\n                    },\n                    {\n                        \"X\": 0.20405036211013794,\n                        \"Y\": 0.913449764251709\n                    },\n                    {\n                        \"X\": 0.2040591835975647,\n                        \"Y\": 0.9250251054763794\n                    },\n                    {\n                        \"X\": 0.17736612260341644,\n                        \"Y\": 0.9250203967094421\n                    }\n                ]\n            },\n            \"Id\": \"4ed7026a-3410-43ea-9329-cf3ee31beb68\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.837890625,\n            \"Text\": \"past\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03615913540124893,\n                    \"Height\": 0.01338875014334917,\n                    \"Left\": 0.20835383236408234,\n                    \"Top\": 0.9140967726707458\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20835383236408234,\n                        \"Y\": 0.9140967726707458\n                    },\n                    {\n                        \"X\": 0.24450474977493286,\n                        \"Y\": 0.9141029119491577\n                    },\n                    {\n                        \"X\": 0.24451296031475067,\n                        \"Y\": 0.9274855256080627\n                    },\n                    {\n                        \"X\": 0.20836381614208221,\n                        \"Y\": 0.927479088306427\n                    }\n                ]\n            },\n            \"Id\": \"7d961e48-48fc-4ab7-9fdb-ae1a1f95a57f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.46482849121094,\n            \"Text\": \"14\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.019620520994067192,\n                    \"Height\": 0.010877986438572407,\n                    \"Left\": 0.250053346157074,\n                    \"Top\": 0.9137805700302124\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.250053346157074,\n                        \"Y\": 0.9137805700302124\n                    },\n                    {\n                        \"X\": 0.26966819167137146,\n                        \"Y\": 0.9137839078903198\n                    },\n                    {\n                        \"X\": 0.2696738839149475,\n                        \"Y\": 0.9246585369110107\n                    },\n                    {\n                        \"X\": 0.2500598132610321,\n                        \"Y\": 0.9246550798416138\n                    }\n                ]\n            },\n            \"Id\": \"8b089198-3af2-4739-b131-e6e8859de844\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93507385253906,\n            \"Text\": \"days\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0386429987847805,\n                    \"Height\": 0.014060046523809433,\n                    \"Left\": 0.2739938199520111,\n                    \"Top\": 0.9136501550674438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2739938199520111,\n                        \"Y\": 0.9136501550674438\n                    },\n                    {\n                        \"X\": 0.31263166666030884,\n                        \"Y\": 0.9136567115783691\n                    },\n                    {\n                        \"X\": 0.3126368224620819,\n                        \"Y\": 0.927710235118866\n                    },\n                    {\n                        \"X\": 0.2740009129047394,\n                        \"Y\": 0.9277032613754272\n                    }\n                ]\n            },\n            \"Id\": \"2dd3905a-f20c-4b82-a699-6f89b0a41bdb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96369171142578,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.015629328787326813,\n                    \"Height\": 0.010456490330398083,\n                    \"Left\": 0.3173157274723053,\n                    \"Top\": 0.9148551821708679\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3173157274723053,\n                        \"Y\": 0.9148551821708679\n                    },\n                    {\n                        \"X\": 0.33294203877449036,\n                        \"Y\": 0.9148578643798828\n                    },\n                    {\n                        \"X\": 0.3329450786113739,\n                        \"Y\": 0.9253116846084595\n                    },\n                    {\n                        \"X\": 0.3173193633556366,\n                        \"Y\": 0.925308883190155\n                    }\n                ]\n            },\n            \"Id\": \"3f4ec19e-ce30-4977-b0da-9c9a8a8eb7e0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98318481445312,\n            \"Text\": \"any\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03005349077284336,\n                    \"Height\": 0.011680237017571926,\n                    \"Left\": 0.3380753993988037,\n                    \"Top\": 0.9163033962249756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3380753993988037,\n                        \"Y\": 0.9163033962249756\n                    },\n                    {\n                        \"X\": 0.3681269884109497,\n                        \"Y\": 0.9163085222244263\n                    },\n                    {\n                        \"X\": 0.3681288957595825,\n                        \"Y\": 0.9279836416244507\n                    },\n                    {\n                        \"X\": 0.3380785584449768,\n                        \"Y\": 0.9279782176017761\n                    }\n                ]\n            },\n            \"Id\": \"d0ff285c-4791-42ff-9f54-3c97f28a5789\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48197937011719,\n            \"Text\": \"regions\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.060266830027103424,\n                    \"Height\": 0.014074109494686127,\n                    \"Left\": 0.3723437190055847,\n                    \"Top\": 0.9142943620681763\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3723437190055847,\n                        \"Y\": 0.9142943620681763\n                    },\n                    {\n                        \"X\": 0.43261054158210754,\n                        \"Y\": 0.9143045544624329\n                    },\n                    {\n                        \"X\": 0.432609498500824,\n                        \"Y\": 0.9283684492111206\n                    },\n                    {\n                        \"X\": 0.37234577536582947,\n                        \"Y\": 0.9283576011657715\n                    }\n                ]\n            },\n            \"Id\": \"6b124dc7-4764-42cc-aad3-e4e031726a1a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84110260009766,\n            \"Text\": \"affected\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06525502353906631,\n                    \"Height\": 0.012655789032578468,\n                    \"Left\": 0.43668946623802185,\n                    \"Top\": 0.9145818948745728\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4366905689239502,\n                        \"Y\": 0.9145818948745728\n                    },\n                    {\n                        \"X\": 0.5019444823265076,\n                        \"Y\": 0.9145929217338562\n                    },\n                    {\n                        \"X\": 0.5019403100013733,\n                        \"Y\": 0.9272376894950867\n                    },\n                    {\n                        \"X\": 0.43668946623802185,\n                        \"Y\": 0.9272259473800659\n                    }\n                ]\n            },\n            \"Id\": \"5a1e722d-fb0b-4f9e-87bb-a1824cd8ed8c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98844146728516,\n            \"Text\": \"by\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.020221436396241188,\n                    \"Height\": 0.014483035542070866,\n                    \"Left\": 0.5067461729049683,\n                    \"Top\": 0.9157519340515137\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5067511796951294,\n                        \"Y\": 0.9157519340515137\n                    },\n                    {\n                        \"X\": 0.5269675850868225,\n                        \"Y\": 0.9157553911209106\n                    },\n                    {\n                        \"X\": 0.5269615650177002,\n                        \"Y\": 0.930234968662262\n                    },\n                    {\n                        \"X\": 0.5067461729049683,\n                        \"Y\": 0.9302312731742859\n                    }\n                ]\n            },\n            \"Id\": \"c5b7176a-1d03-4924-a822-05c3f0a3e5ff\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.7352066040039,\n            \"Text\": \"COVID-19?\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09288106113672256,\n                    \"Height\": 0.01232382282614708,\n                    \"Left\": 0.5309245586395264,\n                    \"Top\": 0.9162410497665405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5309298634529114,\n                        \"Y\": 0.9162410497665405\n                    },\n                    {\n                        \"X\": 0.623805582523346,\n                        \"Y\": 0.9162569046020508\n                    },\n                    {\n                        \"X\": 0.6237961053848267,\n                        \"Y\": 0.9285649061203003\n                    },\n                    {\n                        \"X\": 0.5309245586395264,\n                        \"Y\": 0.9285481572151184\n                    }\n                ]\n            },\n            \"Id\": \"843c94ce-6555-4810-813e-1446adf4ee2b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81429290771484,\n            \"Text\": \"Yes\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03095269575715065,\n                    \"Height\": 0.012055384926497936,\n                    \"Left\": 0.708702802658081,\n                    \"Top\": 0.9184137582778931\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7087158560752869,\n                        \"Y\": 0.9184137582778931\n                    },\n                    {\n                        \"X\": 0.7396554946899414,\n                        \"Y\": 0.9184190630912781\n                    },\n                    {\n                        \"X\": 0.7396410703659058,\n                        \"Y\": 0.9304691553115845\n                    },\n                    {\n                        \"X\": 0.708702802658081,\n                        \"Y\": 0.9304634928703308\n                    }\n                ]\n            },\n            \"Id\": \"1525ab69-4a60-4db8-aae8-7e2c5c83b3d7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.35918426513672,\n            \"Text\": \"No\",\n            \"TextType\": \"PRINTED\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024850046262145042,\n                    \"Height\": 0.01393287442624569,\n                    \"Left\": 0.8061109781265259,\n                    \"Top\": 0.9197984337806702\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8061310648918152,\n                        \"Y\": 0.9197984337806702\n                    },\n                    {\n                        \"X\": 0.8309610486030579,\n                        \"Y\": 0.9198027849197388\n                    },\n                    {\n                        \"X\": 0.8309397101402283,\n                        \"Y\": 0.9337313175201416\n                    },\n                    {\n                        \"X\": 0.8061109781265259,\n                        \"Y\": 0.9337267279624939\n                    }\n                ]\n            },\n            \"Id\": \"a076375d-f45a-4ab3-8141-5219e70430aa\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 82.60331726074219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026936190202832222,\n                    \"Height\": 0.019335513934493065,\n                    \"Left\": 0.6836087107658386,\n                    \"Top\": 0.7869611978530884\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6836279034614563,\n                        \"Y\": 0.7869611978530884\n                    },\n                    {\n                        \"X\": 0.7105448842048645,\n                        \"Y\": 0.7869630455970764\n                    },\n                    {\n                        \"X\": 0.7105238437652588,\n                        \"Y\": 0.806296706199646\n                    },\n                    {\n                        \"X\": 0.6836087107658386,\n                        \"Y\": 0.8062944412231445\n                    }\n                ]\n            },\n            \"Id\": \"0ccb4d5b-6171-4b55-aa9c-32c1d8dc0b17\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 80.80503845214844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026876704767346382,\n                    \"Height\": 0.01959013193845749,\n                    \"Left\": 0.6852160096168518,\n                    \"Top\": 0.7225834131240845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6852355599403381,\n                        \"Y\": 0.7225834131240845\n                    },\n                    {\n                        \"X\": 0.7120927572250366,\n                        \"Y\": 0.7225838899612427\n                    },\n                    {\n                        \"X\": 0.7120712399482727,\n                        \"Y\": 0.7421735525131226\n                    },\n                    {\n                        \"X\": 0.6852160096168518,\n                        \"Y\": 0.7421726584434509\n                    }\n                ]\n            },\n            \"Id\": \"e73e5691-b63a-4a2a-8bc0-c0c323f5cc64\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 79.46937561035156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026902800425887108,\n                    \"Height\": 0.01943676918745041,\n                    \"Left\": 0.6875098943710327,\n                    \"Top\": 0.6565878391265869\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.687529444694519,\n                        \"Y\": 0.6565887331962585\n                    },\n                    {\n                        \"X\": 0.7144126892089844,\n                        \"Y\": 0.6565878391265869\n                    },\n                    {\n                        \"X\": 0.7143912315368652,\n                        \"Y\": 0.6760240793228149\n                    },\n                    {\n                        \"X\": 0.6875098943710327,\n                        \"Y\": 0.6760246157646179\n                    }\n                ]\n            },\n            \"Id\": \"e9fa55c0-95d1-4e41-8d11-53043cfc666f\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 79.40435791015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.026927610859274864,\n                    \"Height\": 0.019577328115701675,\n                    \"Left\": 0.7801841497421265,\n                    \"Top\": 0.8520488739013672\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7802104949951172,\n                        \"Y\": 0.8520488739013672\n                    },\n                    {\n                        \"X\": 0.8071117997169495,\n                        \"Y\": 0.8520521521568298\n                    },\n                    {\n                        \"X\": 0.8070835471153259,\n                        \"Y\": 0.8716261982917786\n                    },\n                    {\n                        \"X\": 0.7801841497421265,\n                        \"Y\": 0.8716225624084473\n                    }\n                ]\n            },\n            \"Id\": \"082c65dc-3be0-4381-8340-a3e01f850817\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 79.0535659790039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02687259204685688,\n                    \"Height\": 0.0200453270226717,\n                    \"Left\": 0.7891987562179565,\n                    \"Top\": 0.5906116962432861\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7892263531684875,\n                        \"Y\": 0.5906140208244324\n                    },\n                    {\n                        \"X\": 0.8160713315010071,\n                        \"Y\": 0.5906116962432861\n                    },\n                    {\n                        \"X\": 0.8160417675971985,\n                        \"Y\": 0.6106551885604858\n                    },\n                    {\n                        \"X\": 0.7891987562179565,\n                        \"Y\": 0.6106570363044739\n                    }\n                ]\n            },\n            \"Id\": \"737a3394-d8d3-4055-aabe-fb04c051191c\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 77.5559310913086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029347918927669525,\n                    \"Height\": 0.02215668372809887,\n                    \"Left\": 0.6870847940444946,\n                    \"Top\": 0.587248682975769\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6871070265769958,\n                        \"Y\": 0.5872513055801392\n                    },\n                    {\n                        \"X\": 0.7164327502250671,\n                        \"Y\": 0.587248682975769\n                    },\n                    {\n                        \"X\": 0.7164081335067749,\n                        \"Y\": 0.6094033122062683\n                    },\n                    {\n                        \"X\": 0.6870847940444946,\n                        \"Y\": 0.6094053983688354\n                    }\n                ]\n            },\n            \"Id\": \"cb1a46fd-f7ef-4128-b1d7-59a4106715c6\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 77.38296508789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027383247390389442,\n                    \"Height\": 0.01989389769732952,\n                    \"Left\": 0.784687340259552,\n                    \"Top\": 0.7223560214042664\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.78471440076828,\n                        \"Y\": 0.7223560214042664\n                    },\n                    {\n                        \"X\": 0.8120706081390381,\n                        \"Y\": 0.7223564982414246\n                    },\n                    {\n                        \"X\": 0.8120415210723877,\n                        \"Y\": 0.7422499060630798\n                    },\n                    {\n                        \"X\": 0.784687340259552,\n                        \"Y\": 0.7422490119934082\n                    }\n                ]\n            },\n            \"Id\": \"c8cbdca6-a3a3-43a1-9486-df28bcf67e63\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 77.1134262084961,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.027771512046456337,\n                    \"Height\": 0.02300051972270012,\n                    \"Left\": 0.6798736453056335,\n                    \"Top\": 0.8463537693023682\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6798961162567139,\n                        \"Y\": 0.8463537693023682\n                    },\n                    {\n                        \"X\": 0.7076451182365417,\n                        \"Y\": 0.846356987953186\n                    },\n                    {\n                        \"X\": 0.7076203227043152,\n                        \"Y\": 0.869354248046875\n                    },\n                    {\n                        \"X\": 0.6798736453056335,\n                        \"Y\": 0.8693505525588989\n                    }\n                ]\n            },\n            \"Id\": \"b8fa2fe2-46fd-4680-ac08-9c20800a2261\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 76.33333587646484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02662602812051773,\n                    \"Height\": 0.019559994339942932,\n                    \"Left\": 0.6806030869483948,\n                    \"Top\": 0.9142075181007385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6806222796440125,\n                        \"Y\": 0.9142075181007385\n                    },\n                    {\n                        \"X\": 0.7072291374206543,\n                        \"Y\": 0.9142119884490967\n                    },\n                    {\n                        \"X\": 0.7072080373764038,\n                        \"Y\": 0.9337674975395203\n                    },\n                    {\n                        \"X\": 0.6806030869483948,\n                        \"Y\": 0.9337626099586487\n                    }\n                ]\n            },\n            \"Id\": \"1eb49a0f-33e9-4740-8fb7-6ecb540c40cd\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 75.30896759033203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028482215479016304,\n                    \"Height\": 0.021947242319583893,\n                    \"Left\": 0.7849063277244568,\n                    \"Top\": 0.6558432579040527\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7849361896514893,\n                        \"Y\": 0.6558442115783691\n                    },\n                    {\n                        \"X\": 0.8133885264396667,\n                        \"Y\": 0.6558432579040527\n                    },\n                    {\n                        \"X\": 0.8133563995361328,\n                        \"Y\": 0.6777899861335754\n                    },\n                    {\n                        \"X\": 0.7849063277244568,\n                        \"Y\": 0.6777904629707336\n                    }\n                ]\n            },\n            \"Id\": \"d21d78b2-2082-443e-9224-86ba5d1ff2f9\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 73.32950592041016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028918592259287834,\n                    \"Height\": 0.022201310843229294,\n                    \"Left\": 0.7814228534698486,\n                    \"Top\": 0.78546541929245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7814527750015259,\n                        \"Y\": 0.78546541929245\n                    },\n                    {\n                        \"X\": 0.8103414177894592,\n                        \"Y\": 0.7854673862457275\n                    },\n                    {\n                        \"X\": 0.8103091716766357,\n                        \"Y\": 0.8076667785644531\n                    },\n                    {\n                        \"X\": 0.7814228534698486,\n                        \"Y\": 0.8076642751693726\n                    }\n                ]\n            },\n            \"Id\": \"b89a1d85-7603-4f5b-be91-b2e6e22bcd61\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 70.7633056640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02805699035525322,\n                    \"Height\": 0.02244790457189083,\n                    \"Left\": 0.7794029116630554,\n                    \"Top\": 0.9149357080459595\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7794330716133118,\n                        \"Y\": 0.9149357080459595\n                    },\n                    {\n                        \"X\": 0.8074599504470825,\n                        \"Y\": 0.9149404764175415\n                    },\n                    {\n                        \"X\": 0.8074275255203247,\n                        \"Y\": 0.9373836517333984\n                    },\n                    {\n                        \"X\": 0.7794029116630554,\n                        \"Y\": 0.9373783469200134\n                    }\n                ]\n            },\n            \"Id\": \"da802104-a574-4a04-b0ed-3d5692001f16\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.9820556640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8543274402618408,\n                    \"Height\": 0.38734114170074463,\n                    \"Left\": 0.036200590431690216,\n                    \"Top\": 0.5646852254867554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036200590431690216,\n                        \"Y\": 0.5647758841514587\n                    },\n                    {\n                        \"X\": 0.8905280232429504,\n                        \"Y\": 0.5646852254867554\n                    },\n                    {\n                        \"X\": 0.889851450920105,\n                        \"Y\": 0.9520263075828552\n                    },\n                    {\n                        \"X\": 0.036732591688632965,\n                        \"Y\": 0.9518567323684692\n                    }\n                ]\n            },\n            \"Id\": \"c9eee2cb-bbe2-4407-a708-89530aaf704b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e42cc5c8-bb82-44b9-bee8-39c108a30b5f\",\n                        \"0df8d30d-d6f7-4159-97e3-370fb01095fc\",\n                        \"80148f3c-740f-4d09-b398-c463bf6b8598\",\n                        \"bbafd39a-dbee-405c-8e76-1e8cba0a2a08\",\n                        \"79e0d7d7-517c-417d-b1fc-1b650be27c40\",\n                        \"2caff193-d502-4cf4-b0dc-f598efa8630a\",\n                        \"e944eec3-c746-40a6-95ee-9cc2143bf9c5\",\n                        \"0879ed24-3297-4c4b-8e9a-304d8bee0f8b\",\n                        \"68276372-dc8e-4337-976a-ecaa4d0a8e30\",\n                        \"c1bebc15-e05c-4ac6-8113-db141017e187\",\n                        \"0b26d5e6-f8ad-4b91-b9ba-7972122a3afa\",\n                        \"b0e49722-9098-403a-a8c5-303858d6b1e4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.44230651855469,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.623810887336731,\n                    \"Height\": 0.06542272120714188,\n                    \"Left\": 0.036200590431690216,\n                    \"Top\": 0.5647096633911133\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036200590431690216,\n                        \"Y\": 0.5647758841514587\n                    },\n                    {\n                        \"X\": 0.6600114703178406,\n                        \"Y\": 0.5647096633911133\n                    },\n                    {\n                        \"X\": 0.6599523425102234,\n                        \"Y\": 0.630098283290863\n                    },\n                    {\n                        \"X\": 0.03629041835665703,\n                        \"Y\": 0.6301323771476746\n                    }\n                ]\n            },\n            \"Id\": \"e42cc5c8-bb82-44b9-bee8-39c108a30b5f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"171da7b7-1584-429d-8d14-fd4a3b1e96e2\",\n                        \"03861b0f-6254-4fe5-a226-fbbfbdfaaafc\",\n                        \"36a0f3c7-51df-4eee-9052-ab6c1a7717a0\",\n                        \"9861e08c-d07e-481e-bea7-b8bd31f8ee96\",\n                        \"a37d6407-f2fa-482a-a090-4dad53b726c4\",\n                        \"d0f2b228-fa1b-4330-a98e-18a64fee6d35\",\n                        \"d4b42171-0598-4b08-9738-22e0029e681e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 96.15950012207031,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23057569563388824,\n                    \"Height\": 0.06541309505701065,\n                    \"Left\": 0.6599523425102234,\n                    \"Top\": 0.5646852254867554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6600114703178406,\n                        \"Y\": 0.5647096633911133\n                    },\n                    {\n                        \"X\": 0.8905280232429504,\n                        \"Y\": 0.5646852254867554\n                    },\n                    {\n                        \"X\": 0.890413761138916,\n                        \"Y\": 0.6300857067108154\n                    },\n                    {\n                        \"X\": 0.6599523425102234,\n                        \"Y\": 0.630098283290863\n                    }\n                ]\n            },\n            \"Id\": \"0df8d30d-d6f7-4159-97e3-370fb01095fc\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"737a3394-d8d3-4055-aabe-fb04c051191c\",\n                        \"cb1a46fd-f7ef-4128-b1d7-59a4106715c6\",\n                        \"a2a649d0-2586-482a-8509-0b688558a67b\",\n                        \"747b263b-1abd-48c4-85bc-11092160df03\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.67210388183594,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6236619353294373,\n                    \"Height\": 0.06719912588596344,\n                    \"Left\": 0.03629041835665703,\n                    \"Top\": 0.6300983428955078\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03629041835665703,\n                        \"Y\": 0.6301324367523193\n                    },\n                    {\n                        \"X\": 0.6599523425102234,\n                        \"Y\": 0.6300983428955078\n                    },\n                    {\n                        \"X\": 0.6598915457725525,\n                        \"Y\": 0.6972963213920593\n                    },\n                    {\n                        \"X\": 0.036382727324962616,\n                        \"Y\": 0.6972974538803101\n                    }\n                ]\n            },\n            \"Id\": \"80148f3c-740f-4d09-b398-c463bf6b8598\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9e8203e6-0768-4de4-b654-3637300ec7cc\",\n                        \"19e89164-8cbb-4f5a-846d-c90334c7d268\",\n                        \"7ccf02b4-49ea-42ba-bd3e-9717980f2f57\",\n                        \"cc6dec03-8f86-4af0-9a69-399c1ba9bd7d\",\n                        \"07c2ed48-1478-4e4f-b683-3b5d4b89d949\",\n                        \"d222aaad-9347-4c5a-89e6-90d2f9b6961d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.8657455444336,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2305222451686859,\n                    \"Height\": 0.06721062958240509,\n                    \"Left\": 0.6598915457725525,\n                    \"Top\": 0.6300857067108154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6599523425102234,\n                        \"Y\": 0.6300983428955078\n                    },\n                    {\n                        \"X\": 0.890413761138916,\n                        \"Y\": 0.6300857067108154\n                    },\n                    {\n                        \"X\": 0.8902963995933533,\n                        \"Y\": 0.6972959637641907\n                    },\n                    {\n                        \"X\": 0.6598915457725525,\n                        \"Y\": 0.6972963213920593\n                    }\n                ]\n            },\n            \"Id\": \"bbafd39a-dbee-405c-8e76-1e8cba0a2a08\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e9fa55c0-95d1-4e41-8d11-53043cfc666f\",\n                        \"d21d78b2-2082-443e-9224-86ba5d1ff2f9\",\n                        \"6eb585b9-248c-491e-ace3-3cbc1b8d69fa\",\n                        \"aedde6bf-a909-46d4-8d7b-806f52f2ae17\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.22244262695312,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6235088109970093,\n                    \"Height\": 0.06532526016235352,\n                    \"Left\": 0.036382727324962616,\n                    \"Top\": 0.6972963213920593\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036382727324962616,\n                        \"Y\": 0.6972973942756653\n                    },\n                    {\n                        \"X\": 0.6598915457725525,\n                        \"Y\": 0.6972963213920593\n                    },\n                    {\n                        \"X\": 0.6598324775695801,\n                        \"Y\": 0.7626215815544128\n                    },\n                    {\n                        \"X\": 0.036472465842962265,\n                        \"Y\": 0.7625905871391296\n                    }\n                ]\n            },\n            \"Id\": \"79e0d7d7-517c-417d-b1fc-1b650be27c40\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e45f4e91-796b-4a84-86e3-c84f44805dbf\",\n                        \"697808ee-b8b9-4c1c-b633-4b2f4bde3a10\",\n                        \"bb5bdb57-79d8-48b7-9e4b-553a65af4168\",\n                        \"f52f40cb-8d38-472e-a21f-3b522e07df82\",\n                        \"e4fa54b4-e7f1-4671-9a16-93bfb23f1d3d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 99.11231231689453,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2304639369249344,\n                    \"Height\": 0.06533710658550262,\n                    \"Left\": 0.6598324179649353,\n                    \"Top\": 0.6972959041595459\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6598915457725525,\n                        \"Y\": 0.6972963213920593\n                    },\n                    {\n                        \"X\": 0.8902963995933533,\n                        \"Y\": 0.6972959041595459\n                    },\n                    {\n                        \"X\": 0.8901822566986084,\n                        \"Y\": 0.7626330256462097\n                    },\n                    {\n                        \"X\": 0.6598324179649353,\n                        \"Y\": 0.7626215815544128\n                    }\n                ]\n            },\n            \"Id\": \"2caff193-d502-4cf4-b0dc-f598efa8630a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e73e5691-b63a-4a2a-8bc0-c0c323f5cc64\",\n                        \"c8cbdca6-a3a3-43a1-9486-df28bcf67e63\",\n                        \"4ac89133-1518-41db-bea2-1260959b0e52\",\n                        \"3d894399-7cc6-4f11-82c0-bc8bef75946c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.74129486083984,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6233599781990051,\n                    \"Height\": 0.06348627805709839,\n                    \"Left\": 0.036472465842962265,\n                    \"Top\": 0.7625905871391296\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036472465842962265,\n                        \"Y\": 0.7625905871391296\n                    },\n                    {\n                        \"X\": 0.6598324775695801,\n                        \"Y\": 0.7626215815544128\n                    },\n                    {\n                        \"X\": 0.6597750782966614,\n                        \"Y\": 0.826076865196228\n                    },\n                    {\n                        \"X\": 0.036559633910655975,\n                        \"Y\": 0.8260148167610168\n                    }\n                ]\n            },\n            \"Id\": \"e944eec3-c746-40a6-95ee-9cc2143bf9c5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"994d6ac5-ebec-4c2f-9269-14bb9e94564f\",\n                        \"147f7577-5171-46ab-93da-6dd1e502ede2\",\n                        \"052ce72e-5206-4180-b6d7-1df71b3e6e0d\",\n                        \"7daa5f5c-112f-4ad3-8f40-cd37f4249255\",\n                        \"acee2c91-8e21-4831-99f7-f57a9a7b523b\",\n                        \"a4f9f479-32c4-4f56-abe3-8a4f9c4a1401\",\n                        \"7382fd65-ab5f-4e11-bbe9-eed695a641f9\",\n                        \"33c575bb-2abd-444f-b45d-1472b9a55971\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.66065216064453,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2304072231054306,\n                    \"Height\": 0.0634782612323761,\n                    \"Left\": 0.6597750186920166,\n                    \"Top\": 0.7626215815544128\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6598324179649353,\n                        \"Y\": 0.7626215815544128\n                    },\n                    {\n                        \"X\": 0.8901822566986084,\n                        \"Y\": 0.7626330256462097\n                    },\n                    {\n                        \"X\": 0.8900713920593262,\n                        \"Y\": 0.8260998129844666\n                    },\n                    {\n                        \"X\": 0.6597750186920166,\n                        \"Y\": 0.826076865196228\n                    }\n                ]\n            },\n            \"Id\": \"0879ed24-3297-4c4b-8e9a-304d8bee0f8b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ccb4d5b-6171-4b55-aa9c-32c1d8dc0b17\",\n                        \"b89a1d85-7603-4f5b-be91-b2e6e22bcd61\",\n                        \"fc183ebb-7f22-4f77-97cc-da6890e62f32\",\n                        \"a96f5978-2dd1-4215-b800-c842ae0d6a9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 98.36009979248047,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6232154369354248,\n                    \"Height\": 0.06348796933889389,\n                    \"Left\": 0.036559633910655975,\n                    \"Top\": 0.8260148167610168\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.036559633910655975,\n                        \"Y\": 0.8260148167610168\n                    },\n                    {\n                        \"X\": 0.6597750782966614,\n                        \"Y\": 0.8260769248008728\n                    },\n                    {\n                        \"X\": 0.6597176790237427,\n                        \"Y\": 0.889502763748169\n                    },\n                    {\n                        \"X\": 0.0366467647254467,\n                        \"Y\": 0.889409601688385\n                    }\n                ]\n            },\n            \"Id\": \"68276372-dc8e-4337-976a-ecaa4d0a8e30\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3b0d9cf9-2ac3-42c5-b851-e33f22e27b58\",\n                        \"b73f4f3d-58bb-4143-9f46-42a51b23533b\",\n                        \"3abb6b23-635b-4248-80f6-706dbece4acb\",\n                        \"ddefcc4a-8f48-4233-bd69-b80f7180dd54\",\n                        \"43986821-edff-42b2-b2fe-8b27d80f26f8\",\n                        \"bc0b87ab-c43c-4b6d-b452-4a4ed1c95c12\",\n                        \"31501b77-bb97-4634-80cd-4a4380eae383\",\n                        \"0ba7c023-4aa3-4e0e-bb44-a3f713dac399\",\n                        \"2c970d25-5578-469b-bcbd-9b96ad3d6670\",\n                        \"9a2d8116-739c-4fc6-aeae-b4fb27bf0758\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 96.66577911376953,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2303537279367447,\n                    \"Height\": 0.06346031278371811,\n                    \"Left\": 0.6597176790237427,\n                    \"Top\": 0.8260769248008728\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6597750186920166,\n                        \"Y\": 0.8260769248008728\n                    },\n                    {\n                        \"X\": 0.8900713920593262,\n                        \"Y\": 0.8260998725891113\n                    },\n                    {\n                        \"X\": 0.8899605870246887,\n                        \"Y\": 0.8895372152328491\n                    },\n                    {\n                        \"X\": 0.6597176790237427,\n                        \"Y\": 0.889502763748169\n                    }\n                ]\n            },\n            \"Id\": \"c1bebc15-e05c-4ac6-8113-db141017e187\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"082c65dc-3be0-4381-8340-a3e01f850817\",\n                        \"b8fa2fe2-46fd-4680-ac08-9c20800a2261\",\n                        \"001908ca-346d-4529-9df5-f7ca534d1cb7\",\n                        \"f4bfdf0a-682e-4041-b435-3a56e9ed631b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.02071380615234,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.6230708956718445,\n                    \"Height\": 0.06257099658250809,\n                    \"Left\": 0.0366467647254467,\n                    \"Top\": 0.889409601688385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0366467647254467,\n                        \"Y\": 0.889409601688385\n                    },\n                    {\n                        \"X\": 0.6597176790237427,\n                        \"Y\": 0.889502763748169\n                    },\n                    {\n                        \"X\": 0.6596611738204956,\n                        \"Y\": 0.9519805908203125\n                    },\n                    {\n                        \"X\": 0.036732591688632965,\n                        \"Y\": 0.951856791973114\n                    }\n                ]\n            },\n            \"Id\": \"0b26d5e6-f8ad-4b91-b9ba-7972122a3afa\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c6c80386-a15e-45e7-8820-1fa43b69a1a8\",\n                        \"596a4046-9769-4431-ab02-57162e134375\",\n                        \"be6cbd37-490b-474d-95b0-11b2a41e3923\",\n                        \"cc82707c-22fb-40f3-a9f4-4fa6f43c2890\",\n                        \"4ed7026a-3410-43ea-9329-cf3ee31beb68\",\n                        \"7d961e48-48fc-4ab7-9fdb-ae1a1f95a57f\",\n                        \"8b089198-3af2-4739-b131-e6e8859de844\",\n                        \"2dd3905a-f20c-4b82-a699-6f89b0a41bdb\",\n                        \"3f4ec19e-ce30-4977-b0da-9c9a8a8eb7e0\",\n                        \"d0ff285c-4791-42ff-9f54-3c97f28a5789\",\n                        \"6b124dc7-4764-42cc-aad3-e4e031726a1a\",\n                        \"5a1e722d-fb0b-4f9e-87bb-a1824cd8ed8c\",\n                        \"c5b7176a-1d03-4924-a822-05c3f0a3e5ff\",\n                        \"843c94ce-6555-4810-813e-1446adf4ee2b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 90.0098648071289,\n            \"RowIndex\": 6,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2302994430065155,\n                    \"Height\": 0.06252355873584747,\n                    \"Left\": 0.6596611738204956,\n                    \"Top\": 0.889502763748169\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6597176790237427,\n                        \"Y\": 0.889502763748169\n                    },\n                    {\n                        \"X\": 0.8899605870246887,\n                        \"Y\": 0.8895372152328491\n                    },\n                    {\n                        \"X\": 0.889851450920105,\n                        \"Y\": 0.9520263671875\n                    },\n                    {\n                        \"X\": 0.6596611738204956,\n                        \"Y\": 0.9519805908203125\n                    }\n                ]\n            },\n            \"Id\": \"b0e49722-9098-403a-a8c5-303858d6b1e4\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1eb49a0f-33e9-4740-8fb7-6ecb540c40cd\",\n                        \"da802104-a574-4a04-b0ed-3d5692001f16\",\n                        \"1525ab69-4a60-4db8-aae8-7e2c5c83b3d7\",\n                        \"a076375d-f45a-4ab3-8141-5219e70430aa\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 100.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08310724794864655,\n                    \"Height\": 0.010499934665858746,\n                    \"Left\": 0.025963343679904938,\n                    \"Top\": 0.10552968829870224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.025963343679904938,\n                        \"Y\": 0.10556857287883759\n                    },\n                    {\n                        \"X\": 0.10905901342630386,\n                        \"Y\": 0.10552968829870224\n                    },\n                    {\n                        \"X\": 0.10907059162855148,\n                        \"Y\": 0.11599142849445343\n                    },\n                    {\n                        \"X\": 0.02597808837890625,\n                        \"Y\": 0.11602962762117386\n                    }\n                ]\n            },\n            \"Id\": \"c3b75e43-66f5-4f36-b7b1-404744a6ac41\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"ab718ef9-3112-423d-ba98-d70afc4a4b0a\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4d3ba900-96cf-456b-9bd2-b98218a60188\",\n                        \"5b07e635-6071-46c6-8895-f656cad84dd8\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 100.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21833436191082,\n                    \"Height\": 0.034747783094644547,\n                    \"Left\": 0.1265861839056015,\n                    \"Top\": 0.08356737345457077\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1265861839056015,\n                        \"Y\": 0.08367329090833664\n                    },\n                    {\n                        \"X\": 0.34491202235221863,\n                        \"Y\": 0.08356737345457077\n                    },\n                    {\n                        \"X\": 0.3449205458164215,\n                        \"Y\": 0.11821521818637848\n                    },\n                    {\n                        \"X\": 0.1266222894191742,\n                        \"Y\": 0.11831516027450562\n                    }\n                ]\n            },\n            \"Id\": \"ab718ef9-3112-423d-ba98-d70afc4a4b0a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"eecfe341-33ac-45f2-9ccb-4d2b14a557fb\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 100.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08394569158554077,\n                    \"Height\": 0.010748857632279396,\n                    \"Left\": 0.02709221839904785,\n                    \"Top\": 0.30089741945266724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02709221839904785,\n                        \"Y\": 0.30092376470565796\n                    },\n                    {\n                        \"X\": 0.11102611571550369,\n                        \"Y\": 0.30089741945266724\n                    },\n                    {\n                        \"X\": 0.11103790998458862,\n                        \"Y\": 0.3116206228733063\n                    },\n                    {\n                        \"X\": 0.027107298374176025,\n                        \"Y\": 0.3116462528705597\n                    }\n                ]\n            },\n            \"Id\": \"05c816ff-4dc5-459a-aea3-fb0981ab0c53\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"ab1b8f73-d364-43e9-a8b7-6f62325799dd\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6a874725-33b5-411f-b2bf-2380512cdd43\",\n                        \"1fb6c3e2-5244-4e5b-96d2-88731a67f718\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 100.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1122979149222374,\n                    \"Height\": 0.01974496804177761,\n                    \"Left\": 0.14604945480823517,\n                    \"Top\": 0.29026007652282715\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14604945480823517,\n                        \"Y\": 0.2902962565422058\n                    },\n                    {\n                        \"X\": 0.25833627581596375,\n                        \"Y\": 0.29026007652282715\n                    },\n                    {\n                        \"X\": 0.25834736227989197,\n                        \"Y\": 0.30997058749198914\n                    },\n                    {\n                        \"X\": 0.14606861770153046,\n                        \"Y\": 0.3100050389766693\n                    }\n                ]\n            },\n            \"Id\": \"ab1b8f73-d364-43e9-a8b7-6f62325799dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a7caef91-0794-4042-a5b9-9d397ab13855\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16991949081420898,\n                    \"Height\": 0.0135584631934762,\n                    \"Left\": 0.36542266607284546,\n                    \"Top\": 0.3265058994293213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36542266607284546,\n                        \"Y\": 0.3265557885169983\n                    },\n                    {\n                        \"X\": 0.5353421568870544,\n                        \"Y\": 0.3265058994293213\n                    },\n                    {\n                        \"X\": 0.5353360772132874,\n                        \"Y\": 0.34001624584198\n                    },\n                    {\n                        \"X\": 0.3654249608516693,\n                        \"Y\": 0.3400643467903137\n                    }\n                ]\n            },\n            \"Id\": \"ae4b8d7e-bdfc-428f-802d-4d68ab5ceb5d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"4e035310-0069-4260-aa0c-4bc84be9dd74\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46b2b1e9-33bf-4dcd-a189-8354178190e4\",\n                        \"3e568496-de63-43f8-ae4e-677962e48b55\",\n                        \"d4ff3114-1c7a-45fe-8766-b2fdaa3e97b6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14798614382743835,\n                    \"Height\": 0.020640330389142036,\n                    \"Left\": 0.5787491798400879,\n                    \"Top\": 0.3182245194911957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5787616968154907,\n                        \"Y\": 0.31826895475387573\n                    },\n                    {\n                        \"X\": 0.7267353534698486,\n                        \"Y\": 0.3182245194911957\n                    },\n                    {\n                        \"X\": 0.7267116904258728,\n                        \"Y\": 0.3388228416442871\n                    },\n                    {\n                        \"X\": 0.5787491798400879,\n                        \"Y\": 0.33886486291885376\n                    }\n                ]\n            },\n            \"Id\": \"4e035310-0069-4260-aa0c-4bc84be9dd74\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"eefb51b8-7045-471f-a545-d27cc1467950\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08343972265720367,\n                    \"Height\": 0.010931513272225857,\n                    \"Left\": 0.026627400889992714,\n                    \"Top\": 0.409033864736557\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.026627400889992714,\n                        \"Y\": 0.4090529680252075\n                    },\n                    {\n                        \"X\": 0.11005507409572601,\n                        \"Y\": 0.409033864736557\n                    },\n                    {\n                        \"X\": 0.11006712168455124,\n                        \"Y\": 0.4199469983577728\n                    },\n                    {\n                        \"X\": 0.026642771437764168,\n                        \"Y\": 0.41996538639068604\n                    }\n                ]\n            },\n            \"Id\": \"fde2c432-ad8c-4bf5-86b3-0bb0fd4e1c09\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"b3d90e86-e336-4cf0-92de-48468d084c18\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"64542f8a-0876-4514-92ba-857e91538b9c\",\n                        \"2e7c4590-8de3-4841-90bc-8a466b1ec1dc\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10201265662908554,\n                    \"Height\": 0.02331743761897087,\n                    \"Left\": 0.141341432929039,\n                    \"Top\": 0.39844977855682373\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.141341432929039,\n                        \"Y\": 0.39847394824028015\n                    },\n                    {\n                        \"X\": 0.24333970248699188,\n                        \"Y\": 0.39844977855682373\n                    },\n                    {\n                        \"X\": 0.24335408210754395,\n                        \"Y\": 0.4217448830604553\n                    },\n                    {\n                        \"X\": 0.14136448502540588,\n                        \"Y\": 0.4217672049999237\n                    }\n                ]\n            },\n            \"Id\": \"b3d90e86-e336-4cf0-92de-48468d084c18\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e3a2bb2e-25b4-4a97-90ba-96a2e4bb6966\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10757050663232803,\n                    \"Height\": 0.011171775870025158,\n                    \"Left\": 0.16523313522338867,\n                    \"Top\": 0.14094771444797516\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16523313522338867,\n                        \"Y\": 0.14099504053592682\n                    },\n                    {\n                        \"X\": 0.27279797196388245,\n                        \"Y\": 0.14094771444797516\n                    },\n                    {\n                        \"X\": 0.2728036344051361,\n                        \"Y\": 0.15207311511039734\n                    },\n                    {\n                        \"X\": 0.16524316370487213,\n                        \"Y\": 0.1521194875240326\n                    }\n                ]\n            },\n            \"Id\": \"b82064c6-6a57-4981-bf69-55570ca371e5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"d13e359a-3b3f-4f42-a23b-b2ace921fc20\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8be69434-0300-4dc9-85a2-b7f3dd3873eb\",\n                        \"c2e5c550-3811-4b8f-8a0c-6d41467e0859\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1299700289964676,\n                    \"Height\": 0.02413858473300934,\n                    \"Left\": 0.2813577353954315,\n                    \"Top\": 0.12838782370090485\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2813577353954315,\n                        \"Y\": 0.1284462809562683\n                    },\n                    {\n                        \"X\": 0.41132768988609314,\n                        \"Y\": 0.12838782370090485\n                    },\n                    {\n                        \"X\": 0.4113277792930603,\n                        \"Y\": 0.1524704247713089\n                    },\n                    {\n                        \"X\": 0.28136926889419556,\n                        \"Y\": 0.15252640843391418\n                    }\n                ]\n            },\n            \"Id\": \"d13e359a-3b3f-4f42-a23b-b2ace921fc20\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e0de7825-8ae8-4534-ade7-91c83a6ac072\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04964448884129524,\n                    \"Height\": 0.011591913178563118,\n                    \"Left\": 0.38523435592651367,\n                    \"Top\": 0.22364497184753418\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38523435592651367,\n                        \"Y\": 0.2236635833978653\n                    },\n                    {\n                        \"X\": 0.4348788261413574,\n                        \"Y\": 0.22364497184753418\n                    },\n                    {\n                        \"X\": 0.434877872467041,\n                        \"Y\": 0.23521873354911804\n                    },\n                    {\n                        \"X\": 0.3852354884147644,\n                        \"Y\": 0.23523688316345215\n                    }\n                ]\n            },\n            \"Id\": \"174d00c2-3322-4419-936a-33635729e7c2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"1afb469d-daf4-4531-bae9-167fb7e7b48d\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9b9c3ea3-5405-4e4d-8100-bfe69d359d36\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23357582092285156,\n                    \"Height\": 0.025240406394004822,\n                    \"Left\": 0.46071577072143555,\n                    \"Top\": 0.2083246111869812\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4607201814651489,\n                        \"Y\": 0.2084149569272995\n                    },\n                    {\n                        \"X\": 0.6942915916442871,\n                        \"Y\": 0.2083246111869812\n                    },\n                    {\n                        \"X\": 0.6942657232284546,\n                        \"Y\": 0.2334793210029602\n                    },\n                    {\n                        \"X\": 0.46071577072143555,\n                        \"Y\": 0.23356501758098602\n                    }\n                ]\n            },\n            \"Id\": \"1afb469d-daf4-4531-bae9-167fb7e7b48d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2c4d6503-228c-4b98-8ff5-7654845f44d7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 98.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08201900124549866,\n                    \"Height\": 0.01087244413793087,\n                    \"Left\": 0.36543986201286316,\n                    \"Top\": 0.3019595444202423\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36543986201286316,\n                        \"Y\": 0.3019852042198181\n                    },\n                    {\n                        \"X\": 0.44745883345603943,\n                        \"Y\": 0.3019595444202423\n                    },\n                    {\n                        \"X\": 0.4474574625492096,\n                        \"Y\": 0.31280699372291565\n                    },\n                    {\n                        \"X\": 0.3654417097568512,\n                        \"Y\": 0.31283196806907654\n                    }\n                ]\n            },\n            \"Id\": \"b43ddd1f-c343-4698-a872-ba1e7c9b6fd7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"7d0137f9-8fa4-46f0-a0f5-336844b90d81\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"74e3e7f8-af72-4d87-8051-9db5de05be55\",\n                        \"ca89c29f-cf90-4886-94ef-5a6f60a8a77b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 98.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17152073979377747,\n                    \"Height\": 0.022385334596037865,\n                    \"Left\": 0.46047133207321167,\n                    \"Top\": 0.29098618030548096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46047523617744446,\n                        \"Y\": 0.29104137420654297\n                    },\n                    {\n                        \"X\": 0.6319920420646667,\n                        \"Y\": 0.29098618030548096\n                    },\n                    {\n                        \"X\": 0.6319741606712341,\n                        \"Y\": 0.3133193552494049\n                    },\n                    {\n                        \"X\": 0.46047133207321167,\n                        \"Y\": 0.3133715093135834\n                    }\n                ]\n            },\n            \"Id\": \"7d0137f9-8fa4-46f0-a0f5-336844b90d81\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a50e4e63-cccd-47bd-8b87-593540812ae5\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 98.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.049810249358415604,\n                    \"Height\": 0.009751597419381142,\n                    \"Left\": 0.027009785175323486,\n                    \"Top\": 0.32658663392066956\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027009785175323486,\n                        \"Y\": 0.3266012370586395\n                    },\n                    {\n                        \"X\": 0.07680810987949371,\n                        \"Y\": 0.32658663392066956\n                    },\n                    {\n                        \"X\": 0.07682003825902939,\n                        \"Y\": 0.33632397651672363\n                    },\n                    {\n                        \"X\": 0.02702348306775093,\n                        \"Y\": 0.33633822202682495\n                    }\n                ]\n            },\n            \"Id\": \"a3e89d1a-e942-4f4e-93a6-fbb545427f9b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"6d24cae0-05a2-4bda-b0bf-ccc84249c05f\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"46539895-324a-492c-acac-771a1d077812\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 98.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2093118280172348,\n                    \"Height\": 0.0194346122443676,\n                    \"Left\": 0.10003259778022766,\n                    \"Top\": 0.31763893365859985\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10003259778022766,\n                        \"Y\": 0.31770190596580505\n                    },\n                    {\n                        \"X\": 0.30933713912963867,\n                        \"Y\": 0.31763893365859985\n                    },\n                    {\n                        \"X\": 0.30934441089630127,\n                        \"Y\": 0.3370138108730316\n                    },\n                    {\n                        \"X\": 0.10005468875169754,\n                        \"Y\": 0.33707356452941895\n                    }\n                ]\n            },\n            \"Id\": \"6d24cae0-05a2-4bda-b0bf-ccc84249c05f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fc4b574b-9302-4689-9cd4-4e990c000476\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 98.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1668882668018341,\n                    \"Height\": 0.01309194602072239,\n                    \"Left\": 0.36605024337768555,\n                    \"Top\": 0.4354327321052551\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36605024337768555,\n                        \"Y\": 0.4354674518108368\n                    },\n                    {\n                        \"X\": 0.532938539981842,\n                        \"Y\": 0.4354327321052551\n                    },\n                    {\n                        \"X\": 0.5329327583312988,\n                        \"Y\": 0.4484916925430298\n                    },\n                    {\n                        \"X\": 0.36605244874954224,\n                        \"Y\": 0.44852468371391296\n                    }\n                ]\n            },\n            \"Id\": \"c9ff6b91-a00d-4e27-9ce8-8f78761e325b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"8eb803b8-5a7a-4b57-bdcb-fec5bdd9c33e\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"555488ef-128e-43c4-bf3b-e5d0d5063951\",\n                        \"3f947731-7d5b-41a7-baa8-dbb617e6ea08\",\n                        \"8a1073eb-91f7-4a2e-93da-40e169a4bc39\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 98.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12199098616838455,\n                    \"Height\": 0.019882485270500183,\n                    \"Left\": 0.5740680694580078,\n                    \"Top\": 0.42797139286994934\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5740797519683838,\n                        \"Y\": 0.4279974699020386\n                    },\n                    {\n                        \"X\": 0.6960590481758118,\n                        \"Y\": 0.42797139286994934\n                    },\n                    {\n                        \"X\": 0.6960384845733643,\n                        \"Y\": 0.4478296935558319\n                    },\n                    {\n                        \"X\": 0.5740680694580078,\n                        \"Y\": 0.44785386323928833\n                    }\n                ]\n            },\n            \"Id\": \"8eb803b8-5a7a-4b57-bdcb-fec5bdd9c33e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"da325cfb-9f54-41b5-bbb7-5ae064085046\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 97.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08322174102067947,\n                    \"Height\": 0.011009779758751392,\n                    \"Left\": 0.3676946759223938,\n                    \"Top\": 0.10571405291557312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3676946759223938,\n                        \"Y\": 0.10575297474861145\n                    },\n                    {\n                        \"X\": 0.45091643929481506,\n                        \"Y\": 0.10571405291557312\n                    },\n                    {\n                        \"X\": 0.4509148895740509,\n                        \"Y\": 0.11668563634157181\n                    },\n                    {\n                        \"X\": 0.36769646406173706,\n                        \"Y\": 0.11672383546829224\n                    }\n                ]\n            },\n            \"Id\": \"916b11f1-5840-4460-a8d4-977c102c3d6c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c510cace-3e57-470d-ad7d-bc1b0cc5fee9\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ebf9e970-1ea9-419c-8ea8-4e8020d4b158\",\n                        \"88f28f1f-ccc0-4e4c-b99b-56490afd5f88\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 97.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1648690104484558,\n                    \"Height\": 0.026868822053074837,\n                    \"Left\": 0.46114417910575867,\n                    \"Top\": 0.09069428592920303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4611489474773407,\n                        \"Y\": 0.0907733216881752\n                    },\n                    {\n                        \"X\": 0.6260132193565369,\n                        \"Y\": 0.09069428592920303\n                    },\n                    {\n                        \"X\": 0.6259922981262207,\n                        \"Y\": 0.11748755723237991\n                    },\n                    {\n                        \"X\": 0.46114417910575867,\n                        \"Y\": 0.11756310611963272\n                    }\n                ]\n            },\n            \"Id\": \"c510cace-3e57-470d-ad7d-bc1b0cc5fee9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a14abacd-2a8e-4eb2-b70b-f70a6bb3d697\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03447325527667999,\n                    \"Height\": 0.012686706148087978,\n                    \"Left\": 0.6294426321983337,\n                    \"Top\": 0.18164311349391937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.629452645778656,\n                        \"Y\": 0.18165718019008636\n                    },\n                    {\n                        \"X\": 0.6639158725738525,\n                        \"Y\": 0.18164311349391937\n                    },\n                    {\n                        \"X\": 0.6639042496681213,\n                        \"Y\": 0.19431611895561218\n                    },\n                    {\n                        \"X\": 0.6294426321983337,\n                        \"Y\": 0.19432982802391052\n                    }\n                ]\n            },\n            \"Id\": \"d6fb56a8-c669-4d4d-81b7-098934f1ef66\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"b500dc4b-9138-41b2-8d2b-26c2fefcedae\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3f4ea8d1-eb6d-47b3-aa86-26127ab3ed9a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16319648921489716,\n                    \"Height\": 0.023427560925483704,\n                    \"Left\": 0.6889086961746216,\n                    \"Top\": 0.17139489948749542\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6889322996139526,\n                        \"Y\": 0.171462744474411\n                    },\n                    {\n                        \"X\": 0.8521052002906799,\n                        \"Y\": 0.17139489948749542\n                    },\n                    {\n                        \"X\": 0.8520677089691162,\n                        \"Y\": 0.1947576254606247\n                    },\n                    {\n                        \"X\": 0.6889086961746216,\n                        \"Y\": 0.19482246041297913\n                    }\n                ]\n            },\n            \"Id\": \"b500dc4b-9138-41b2-8d2b-26c2fefcedae\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8ebab614-c263-495b-a0ca-b99f80c85162\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04979059472680092,\n                    \"Height\": 0.00962279736995697,\n                    \"Left\": 0.027143122628331184,\n                    \"Top\": 0.4351080656051636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027143122628331184,\n                        \"Y\": 0.4351184368133545\n                    },\n                    {\n                        \"X\": 0.07692193984985352,\n                        \"Y\": 0.4351080656051636\n                    },\n                    {\n                        \"X\": 0.07693371921777725,\n                        \"Y\": 0.4447208642959595\n                    },\n                    {\n                        \"X\": 0.0271566454321146,\n                        \"Y\": 0.44473084807395935\n                    }\n                ]\n            },\n            \"Id\": \"03717561-2bc9-418a-aafb-fe0eb7a16dd8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"a91a6e5a-d92e-4c76-b1c5-1ea3da14990d\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"2808b2c9-91c0-48b7-9857-8ea1911b1dbc\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.22296619415283203,\n                    \"Height\": 0.020902201533317566,\n                    \"Left\": 0.12133929878473282,\n                    \"Top\": 0.426033079624176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12133929878473282,\n                        \"Y\": 0.426081120967865\n                    },\n                    {\n                        \"X\": 0.3443002998828888,\n                        \"Y\": 0.426033079624176\n                    },\n                    {\n                        \"X\": 0.34430548548698425,\n                        \"Y\": 0.4468909204006195\n                    },\n                    {\n                        \"X\": 0.12136146426200867,\n                        \"Y\": 0.4469352960586548\n                    }\n                ]\n            },\n            \"Id\": \"a91a6e5a-d92e-4c76-b1c5-1ea3da14990d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5fe9d9b0-a0ec-409f-91d8-8f1f9bb9aa8a\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06350310146808624,\n                    \"Height\": 0.010639844462275505,\n                    \"Left\": 0.027126679196953773,\n                    \"Top\": 0.1787111610174179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027126679196953773,\n                        \"Y\": 0.17873720824718475\n                    },\n                    {\n                        \"X\": 0.09061731398105621,\n                        \"Y\": 0.1787111610174179\n                    },\n                    {\n                        \"X\": 0.09062977880239487,\n                        \"Y\": 0.1893254816532135\n                    },\n                    {\n                        \"X\": 0.027141597121953964,\n                        \"Y\": 0.18935100734233856\n                    }\n                ]\n            },\n            \"Id\": \"e073d8fe-e125-4345-8359-ce50d4a58470\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c637722a-61d4-4b54-92f7-ecb4759663f0\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0cbfc0ca-3cb5-4e63-85e9-0c8e761cd745\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.3090780973434448,\n                    \"Height\": 0.023877127096056938,\n                    \"Left\": 0.12023454159498215,\n                    \"Top\": 0.1670708805322647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12023454159498215,\n                        \"Y\": 0.1672004759311676\n                    },\n                    {\n                        \"X\": 0.42931264638900757,\n                        \"Y\": 0.1670708805322647\n                    },\n                    {\n                        \"X\": 0.42931118607521057,\n                        \"Y\": 0.19082419574260712\n                    },\n                    {\n                        \"X\": 0.1202598512172699,\n                        \"Y\": 0.1909480094909668\n                    }\n                ]\n            },\n            \"Id\": \"c637722a-61d4-4b54-92f7-ecb4759663f0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"86d3e80d-94f0-4678-a582-92f18537b3dd\",\n                        \"1dc4bc24-0f91-4e03-9204-2de996b57195\",\n                        \"b9cdadaa-ca89-406f-a0f3-81ff8de054ff\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03120383620262146,\n                    \"Height\": 0.01170117873698473,\n                    \"Left\": 0.718232274055481,\n                    \"Top\": 0.5957292914390564\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7182453274726868,\n                        \"Y\": 0.595731794834137\n                    },\n                    {\n                        \"X\": 0.74943608045578,\n                        \"Y\": 0.5957292914390564\n                    },\n                    {\n                        \"X\": 0.7494217157363892,\n                        \"Y\": 0.6074281930923462\n                    },\n                    {\n                        \"X\": 0.718232274055481,\n                        \"Y\": 0.6074304580688477\n                    }\n                ]\n            },\n            \"Id\": \"7b164487-cd11-47c9-91c9-0399c0ded334\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"5c952311-444a-44cf-9796-9aab94c96ba7\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a2a649d0-2586-482a-8509-0b688558a67b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030027106404304504,\n                    \"Height\": 0.02274668775498867,\n                    \"Left\": 0.6879922151565552,\n                    \"Top\": 0.58855801820755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6880151033401489,\n                        \"Y\": 0.5885606408119202\n                    },\n                    {\n                        \"X\": 0.7180193066596985,\n                        \"Y\": 0.58855801820755\n                    },\n                    {\n                        \"X\": 0.7179939150810242,\n                        \"Y\": 0.6113026142120361\n                    },\n                    {\n                        \"X\": 0.6879922151565552,\n                        \"Y\": 0.6113047003746033\n                    }\n                ]\n            },\n            \"Id\": \"5c952311-444a-44cf-9796-9aab94c96ba7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cb1a46fd-f7ef-4128-b1d7-59a4106715c6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030303560197353363,\n                    \"Height\": 0.010930783115327358,\n                    \"Left\": 0.7159078121185303,\n                    \"Top\": 0.7279202938079834\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7159199118614197,\n                        \"Y\": 0.7279202938079834\n                    },\n                    {\n                        \"X\": 0.7462113499641418,\n                        \"Y\": 0.7279210090637207\n                    },\n                    {\n                        \"X\": 0.7461980581283569,\n                        \"Y\": 0.7388511300086975\n                    },\n                    {\n                        \"X\": 0.7159078121185303,\n                        \"Y\": 0.7388501763343811\n                    }\n                ]\n            },\n            \"Id\": \"8c24044d-2da1-4929-ae4c-35ca164e4798\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"611dc538-ed40-4ae7-8f36-be1891123b99\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4ac89133-1518-41db-bea2-1260959b0e52\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02958214282989502,\n                    \"Height\": 0.02158505655825138,\n                    \"Left\": 0.6849896311759949,\n                    \"Top\": 0.7218461036682129\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.685011088848114,\n                        \"Y\": 0.7218461036682129\n                    },\n                    {\n                        \"X\": 0.7145717740058899,\n                        \"Y\": 0.7218466401100159\n                    },\n                    {\n                        \"X\": 0.7145479321479797,\n                        \"Y\": 0.7434311509132385\n                    },\n                    {\n                        \"X\": 0.6849896311759949,\n                        \"Y\": 0.7434301376342773\n                    }\n                ]\n            },\n            \"Id\": \"611dc538-ed40-4ae7-8f36-be1891123b99\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e73e5691-b63a-4a2a-8bc0-c0c323f5cc64\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09972943365573883,\n                    \"Height\": 0.01102965697646141,\n                    \"Left\": 0.6992866396903992,\n                    \"Top\": 0.10630008578300476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6992981433868408,\n                        \"Y\": 0.10634665936231613\n                    },\n                    {\n                        \"X\": 0.7990160584449768,\n                        \"Y\": 0.10630008578300476\n                    },\n                    {\n                        \"X\": 0.7990005612373352,\n                        \"Y\": 0.11728403717279434\n                    },\n                    {\n                        \"X\": 0.6992866396903992,\n                        \"Y\": 0.11732974648475647\n                    }\n                ]\n            },\n            \"Id\": \"0e335795-b98c-4ffa-9453-5a6eb03aa9d8\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"d678400b-e2f1-42b5-bec7-3d8362e8558d\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"63a96e42-728a-47f1-ab28-11c4851dd163\",\n                        \"5676fc39-1107-48d2-a7a8-8a84233846ef\",\n                        \"61ec4b08-954a-4182-b800-cf0417b53744\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1530255526304245,\n                    \"Height\": 0.0342826321721077,\n                    \"Left\": 0.8175352811813354,\n                    \"Top\": 0.09123199433088303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.817585825920105,\n                        \"Y\": 0.09130524843931198\n                    },\n                    {\n                        \"X\": 0.9705607891082764,\n                        \"Y\": 0.09123199433088303\n                    },\n                    {\n                        \"X\": 0.9704911708831787,\n                        \"Y\": 0.12544550001621246\n                    },\n                    {\n                        \"X\": 0.8175352811813354,\n                        \"Y\": 0.12551462650299072\n                    }\n                ]\n            },\n            \"Id\": \"d678400b-e2f1-42b5-bec7-3d8362e8558d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"65f77b8a-b529-4cca-a09a-1144315b3e6b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08237431943416595,\n                    \"Height\": 0.010096922516822815,\n                    \"Left\": 0.36471638083457947,\n                    \"Top\": 0.4121706783771515\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36471638083457947,\n                        \"Y\": 0.4121893346309662\n                    },\n                    {\n                        \"X\": 0.4470907151699066,\n                        \"Y\": 0.4121706783771515\n                    },\n                    {\n                        \"X\": 0.44708943367004395,\n                        \"Y\": 0.42224961519241333\n                    },\n                    {\n                        \"X\": 0.36471813917160034,\n                        \"Y\": 0.4222676157951355\n                    }\n                ]\n            },\n            \"Id\": \"90b23ce7-dcdb-404d-96a2-d710ee74b143\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"dafc5253-965b-4f20-ba72-12bb89674d68\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d1b85909-a649-4fd0-bdfc-602dace86b3a\",\n                        \"edc4c419-c3a0-4976-a5a1-ad55d1c85a74\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0563490092754364,\n                    \"Height\": 0.021631423383951187,\n                    \"Left\": 0.5108560919761658,\n                    \"Top\": 0.39944732189178467\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5108638405799866,\n                        \"Y\": 0.39946064352989197\n                    },\n                    {\n                        \"X\": 0.5672050714492798,\n                        \"Y\": 0.39944732189178467\n                    },\n                    {\n                        \"X\": 0.5671928524971008,\n                        \"Y\": 0.42106640338897705\n                    },\n                    {\n                        \"X\": 0.5108560919761658,\n                        \"Y\": 0.42107874155044556\n                    }\n                ]\n            },\n            \"Id\": \"dafc5253-965b-4f20-ba72-12bb89674d68\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"43c6c1c3-e32a-4132-aa39-97e5bb18f399\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03318079188466072,\n                    \"Height\": 0.010140947997570038,\n                    \"Left\": 0.02663191221654415,\n                    \"Top\": 0.14163738489151\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02663191221654415,\n                        \"Y\": 0.1416519582271576\n                    },\n                    {\n                        \"X\": 0.0597996786236763,\n                        \"Y\": 0.14163738489151\n                    },\n                    {\n                        \"X\": 0.05981270223855972,\n                        \"Y\": 0.15176402032375336\n                    },\n                    {\n                        \"X\": 0.026646163314580917,\n                        \"Y\": 0.15177832543849945\n                    }\n                ]\n            },\n            \"Id\": \"fb13a6bd-acc8-4686-b548-f4b557ab1276\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c29d5b10-336a-49da-88ac-9deb30e470fd\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9ddcf789-e724-43d7-a4ea-6ab5d9c564a6\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04473816230893135,\n                    \"Height\": 0.02171211689710617,\n                    \"Left\": 0.07366517931222916,\n                    \"Top\": 0.12720878422260284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07366517931222916,\n                        \"Y\": 0.12722894549369812\n                    },\n                    {\n                        \"X\": 0.11838007718324661,\n                        \"Y\": 0.12720878422260284\n                    },\n                    {\n                        \"X\": 0.11840333789587021,\n                        \"Y\": 0.14890150725841522\n                    },\n                    {\n                        \"X\": 0.07369197905063629,\n                        \"Y\": 0.1489209085702896\n                    }\n                ]\n            },\n            \"Id\": \"c29d5b10-336a-49da-88ac-9deb30e470fd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5c7b0cec-a0a9-4b91-a351-36e5893de3c7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03188825026154518,\n                    \"Height\": 0.011719254776835442,\n                    \"Left\": 0.7166634798049927,\n                    \"Top\": 0.6618092656135559\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7166764736175537,\n                        \"Y\": 0.6618102192878723\n                    },\n                    {\n                        \"X\": 0.7485517263412476,\n                        \"Y\": 0.6618092656135559\n                    },\n                    {\n                        \"X\": 0.7485373020172119,\n                        \"Y\": 0.6735278964042664\n                    },\n                    {\n                        \"X\": 0.7166634798049927,\n                        \"Y\": 0.6735285520553589\n                    }\n                ]\n            },\n            \"Id\": \"e091cd17-2b83-4c6c-b73e-cd7553416b12\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"bb6ca0c7-770e-41a7-918e-958bf9a79ded\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6eb585b9-248c-491e-ace3-3cbc1b8d69fa\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 95.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029341833665966988,\n                    \"Height\": 0.022076867520809174,\n                    \"Left\": 0.6866402626037598,\n                    \"Top\": 0.6556797623634338\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6866623759269714,\n                        \"Y\": 0.655680775642395\n                    },\n                    {\n                        \"X\": 0.7159820795059204,\n                        \"Y\": 0.6556797623634338\n                    },\n                    {\n                        \"X\": 0.7159576416015625,\n                        \"Y\": 0.677756130695343\n                    },\n                    {\n                        \"X\": 0.6866402626037598,\n                        \"Y\": 0.677756667137146\n                    }\n                ]\n            },\n            \"Id\": \"bb6ca0c7-770e-41a7-918e-958bf9a79ded\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e9fa55c0-95d1-4e41-8d11-53043cfc666f\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029896223917603493,\n                    \"Height\": 0.01099435705691576,\n                    \"Left\": 0.7100583910942078,\n                    \"Top\": 0.9196256399154663\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7100703120231628,\n                        \"Y\": 0.9196256399154663\n                    },\n                    {\n                        \"X\": 0.7399545907974243,\n                        \"Y\": 0.9196308255195618\n                    },\n                    {\n                        \"X\": 0.739941418170929,\n                        \"Y\": 0.930620014667511\n                    },\n                    {\n                        \"X\": 0.7100583910942078,\n                        \"Y\": 0.9306145310401917\n                    }\n                ]\n            },\n            \"Id\": \"8c8bbf7d-b540-4405-813a-abf7f98b69c7\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"1b20e9df-b2c8-4025-a7f2-817feff17c10\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1525ab69-4a60-4db8-aae8-7e2c5c83b3d7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02977108024060726,\n                    \"Height\": 0.021426912397146225,\n                    \"Left\": 0.6787738800048828,\n                    \"Top\": 0.9129457473754883\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.678794801235199,\n                        \"Y\": 0.9129457473754883\n                    },\n                    {\n                        \"X\": 0.7085449695587158,\n                        \"Y\": 0.9129507541656494\n                    },\n                    {\n                        \"X\": 0.7085217833518982,\n                        \"Y\": 0.9343726634979248\n                    },\n                    {\n                        \"X\": 0.6787738800048828,\n                        \"Y\": 0.9343671798706055\n                    }\n                ]\n            },\n            \"Id\": \"1b20e9df-b2c8-4025-a7f2-817feff17c10\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1eb49a0f-33e9-4740-8fb7-6ecb540c40cd\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03143521025776863,\n                    \"Height\": 0.011026663705706596,\n                    \"Left\": 0.7125957012176514,\n                    \"Top\": 0.7922734022140503\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7126078009605408,\n                        \"Y\": 0.7922734022140503\n                    },\n                    {\n                        \"X\": 0.7440308928489685,\n                        \"Y\": 0.7922756671905518\n                    },\n                    {\n                        \"X\": 0.7440175414085388,\n                        \"Y\": 0.8033000230789185\n                    },\n                    {\n                        \"X\": 0.7125957012176514,\n                        \"Y\": 0.8032974600791931\n                    }\n                ]\n            },\n            \"Id\": \"9a5b5e19-1fbc-495e-a178-e272a7e78c4f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"f3511325-d100-4284-b55f-8f5caea0acb2\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"fc183ebb-7f22-4f77-97cc-da6890e62f32\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029343903064727783,\n                    \"Height\": 0.020898116752505302,\n                    \"Left\": 0.6827448606491089,\n                    \"Top\": 0.7862667441368103\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.682765543460846,\n                        \"Y\": 0.7862667441368103\n                    },\n                    {\n                        \"X\": 0.7120887637138367,\n                        \"Y\": 0.7862687110900879\n                    },\n                    {\n                        \"X\": 0.7120658755302429,\n                        \"Y\": 0.8071648478507996\n                    },\n                    {\n                        \"X\": 0.6827448606491089,\n                        \"Y\": 0.807162344455719\n                    }\n                ]\n            },\n            \"Id\": \"f3511325-d100-4284-b55f-8f5caea0acb2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0ccb4d5b-6171-4b55-aa9c-32c1d8dc0b17\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.044945940375328064,\n                    \"Height\": 0.01101754978299141,\n                    \"Left\": 0.029477069154381752,\n                    \"Top\": 0.2225206196308136\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029477069154381752,\n                        \"Y\": 0.22253750264644623\n                    },\n                    {\n                        \"X\": 0.07440944015979767,\n                        \"Y\": 0.2225206196308136\n                    },\n                    {\n                        \"X\": 0.07442300766706467,\n                        \"Y\": 0.23352167010307312\n                    },\n                    {\n                        \"X\": 0.029492439702153206,\n                        \"Y\": 0.2335381656885147\n                    }\n                ]\n            },\n            \"Id\": \"55b5da32-af82-4212-b5dc-6b075ae2b2b9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"46b38ee1-dac4-4670-a03f-036dbdb5aa15\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"06c88670-8f85-4cb9-9626-c5f774928fa4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04572674259543419,\n                    \"Height\": 0.02076750621199608,\n                    \"Left\": 0.08829304575920105,\n                    \"Top\": 0.212446928024292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08829304575920105,\n                        \"Y\": 0.21246446669101715\n                    },\n                    {\n                        \"X\": 0.13399870693683624,\n                        \"Y\": 0.212446928024292\n                    },\n                    {\n                        \"X\": 0.13401979207992554,\n                        \"Y\": 0.2331976592540741\n                    },\n                    {\n                        \"X\": 0.08831758797168732,\n                        \"Y\": 0.23321443796157837\n                    }\n                ]\n            },\n            \"Id\": \"46b38ee1-dac4-4670-a03f-036dbdb5aa15\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"7adc47fa-8481-48ee-b9be-2b2f7bb8f79e\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07037807255983353,\n                    \"Height\": 0.013257882557809353,\n                    \"Left\": 0.15526877343654633,\n                    \"Top\": 0.2224959433078766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15526877343654633,\n                        \"Y\": 0.22252237796783447\n                    },\n                    {\n                        \"X\": 0.22563783824443817,\n                        \"Y\": 0.2224959433078766\n                    },\n                    {\n                        \"X\": 0.22564685344696045,\n                        \"Y\": 0.23572811484336853\n                    },\n                    {\n                        \"X\": 0.1552811861038208,\n                        \"Y\": 0.23575381934642792\n                    }\n                ]\n            },\n            \"Id\": \"768c80d3-06e6-4816-8540-91bcbbbdf7eb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"24360172-8713-4bc6-b423-d5429cee824b\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8770cd6f-dd1e-42b2-a1f0-a60d8966e682\",\n                        \"b604030d-198c-4d71-87d4-e0f25b41ab82\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12014304101467133,\n                    \"Height\": 0.024146215990185738,\n                    \"Left\": 0.25516417622566223,\n                    \"Top\": 0.20857861638069153\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25516417622566223,\n                        \"Y\": 0.20862507820129395\n                    },\n                    {\n                        \"X\": 0.3753039538860321,\n                        \"Y\": 0.20857861638069153\n                    },\n                    {\n                        \"X\": 0.37530720233917236,\n                        \"Y\": 0.23268066346645355\n                    },\n                    {\n                        \"X\": 0.2551780045032501,\n                        \"Y\": 0.2327248454093933\n                    }\n                ]\n            },\n            \"Id\": \"24360172-8713-4bc6-b423-d5429cee824b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0591943e-948f-4758-ac4e-5701843858c3\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10835731774568558,\n                    \"Height\": 0.010600502602756023,\n                    \"Left\": 0.4641549289226532,\n                    \"Top\": 0.14226117730140686\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4641569256782532,\n                        \"Y\": 0.14230872690677643\n                    },\n                    {\n                        \"X\": 0.5725122094154358,\n                        \"Y\": 0.14226117730140686\n                    },\n                    {\n                        \"X\": 0.5725060701370239,\n                        \"Y\": 0.15281502902507782\n                    },\n                    {\n                        \"X\": 0.4641549289226532,\n                        \"Y\": 0.15286166965961456\n                    }\n                ]\n            },\n            \"Id\": \"12be0d05-9ad2-4e89-8bdf-839e0f26d83c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"acd7e383-c242-4937-968d-5361ae9efc26\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"380857be-751a-4fec-83e7-cb6b8e5ae853\",\n                        \"97c66f57-c239-4a06-8beb-1a5c91169483\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.39706557989120483,\n                    \"Height\": 0.026261935010552406,\n                    \"Left\": 0.577130913734436,\n                    \"Top\": 0.1312304586172104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.577146589756012,\n                        \"Y\": 0.13140808045864105\n                    },\n                    {\n                        \"X\": 0.9741964936256409,\n                        \"Y\": 0.1312304586172104\n                    },\n                    {\n                        \"X\": 0.9741430282592773,\n                        \"Y\": 0.1573229432106018\n                    },\n                    {\n                        \"X\": 0.577130913734436,\n                        \"Y\": 0.15749238431453705\n                    }\n                ]\n            },\n            \"Id\": \"acd7e383-c242-4937-968d-5361ae9efc26\",\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 85.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023506099358201027,\n                    \"Height\": 0.011191612109541893,\n                    \"Left\": 0.818986713886261,\n                    \"Top\": 0.5970603227615356\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8190033435821533,\n                        \"Y\": 0.5970622301101685\n                    },\n                    {\n                        \"X\": 0.8424928188323975,\n                        \"Y\": 0.5970603227615356\n                    },\n                    {\n                        \"X\": 0.8424752354621887,\n                        \"Y\": 0.6082502603530884\n                    },\n                    {\n                        \"X\": 0.818986713886261,\n                        \"Y\": 0.6082519292831421\n                    }\n                ]\n            },\n            \"Id\": \"c891806a-1ae4-4db8-b179-425ddfa98f83\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"11264588-e66c-488e-8331-d856b521c7c1\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"747b263b-1abd-48c4-85bc-11092160df03\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 85.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02916582301259041,\n                    \"Height\": 0.020724937319755554,\n                    \"Left\": 0.7881664633750916,\n                    \"Top\": 0.5904054641723633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7881948947906494,\n                        \"Y\": 0.5904079675674438\n                    },\n                    {\n                        \"X\": 0.8173322677612305,\n                        \"Y\": 0.5904054641723633\n                    },\n                    {\n                        \"X\": 0.8173015713691711,\n                        \"Y\": 0.6111283898353577\n                    },\n                    {\n                        \"X\": 0.7881664633750916,\n                        \"Y\": 0.61113041639328\n                    }\n                ]\n            },\n            \"Id\": \"11264588-e66c-488e-8331-d856b521c7c1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"737a3394-d8d3-4055-aabe-fb04c051191c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02254718914628029,\n                    \"Height\": 0.010701132006943226,\n                    \"Left\": 0.814746081829071,\n                    \"Top\": 0.728668749332428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8147618174552917,\n                        \"Y\": 0.728668749332428\n                    },\n                    {\n                        \"X\": 0.837293267250061,\n                        \"Y\": 0.728669285774231\n                    },\n                    {\n                        \"X\": 0.8372766375541687,\n                        \"Y\": 0.7393699288368225\n                    },\n                    {\n                        \"X\": 0.814746081829071,\n                        \"Y\": 0.7393692135810852\n                    }\n                ]\n            },\n            \"Id\": \"2df55bd0-c50e-49a8-8f3a-aeb772907391\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c947d1d9-5a9f-46d8-be5d-663bb87f68ea\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"3d894399-7cc6-4f11-82c0-bc8bef75946c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029528239741921425,\n                    \"Height\": 0.023183850571513176,\n                    \"Left\": 0.7831681370735168,\n                    \"Top\": 0.7214452624320984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7831995487213135,\n                        \"Y\": 0.7214452624320984\n                    },\n                    {\n                        \"X\": 0.8126963376998901,\n                        \"Y\": 0.7214457392692566\n                    },\n                    {\n                        \"X\": 0.8126624226570129,\n                        \"Y\": 0.7446290850639343\n                    },\n                    {\n                        \"X\": 0.7831681370735168,\n                        \"Y\": 0.7446280717849731\n                    }\n                ]\n            },\n            \"Id\": \"c947d1d9-5a9f-46d8-be5d-663bb87f68ea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c8cbdca6-a3a3-43a1-9486-df28bcf67e63\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023000912740826607,\n                    \"Height\": 0.01131055410951376,\n                    \"Left\": 0.8094741702079773,\n                    \"Top\": 0.8575143814086914\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8094906210899353,\n                        \"Y\": 0.8575143814086914\n                    },\n                    {\n                        \"X\": 0.8324750661849976,\n                        \"Y\": 0.8575172424316406\n                    },\n                    {\n                        \"X\": 0.8324577212333679,\n                        \"Y\": 0.8688249588012695\n                    },\n                    {\n                        \"X\": 0.8094741702079773,\n                        \"Y\": 0.868821918964386\n                    }\n                ]\n            },\n            \"Id\": \"dc78d259-ad54-478a-aa65-ce1499d3919b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"496337a2-c46b-44a4-8d44-5bdc0e78be4e\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"f4bfdf0a-682e-4041-b435-3a56e9ed631b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.02959541045129299,\n                    \"Height\": 0.02117820829153061,\n                    \"Left\": 0.7789112329483032,\n                    \"Top\": 0.8513906002044678\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7789396047592163,\n                        \"Y\": 0.8513906002044678\n                    },\n                    {\n                        \"X\": 0.8085066676139832,\n                        \"Y\": 0.8513941168785095\n                    },\n                    {\n                        \"X\": 0.8084759712219238,\n                        \"Y\": 0.8725687861442566\n                    },\n                    {\n                        \"X\": 0.7789112329483032,\n                        \"Y\": 0.8725647330284119\n                    }\n                ]\n            },\n            \"Id\": \"496337a2-c46b-44a4-8d44-5bdc0e78be4e\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"082c65dc-3be0-4381-8340-a3e01f850817\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 80.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.032358087599277496,\n                    \"Height\": 0.011793986894190311,\n                    \"Left\": 0.7095605731010437,\n                    \"Top\": 0.8553094267845154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7095733880996704,\n                        \"Y\": 0.8553094267845154\n                    },\n                    {\n                        \"X\": 0.741918683052063,\n                        \"Y\": 0.8553133606910706\n                    },\n                    {\n                        \"X\": 0.7419044375419617,\n                        \"Y\": 0.8671033978462219\n                    },\n                    {\n                        \"X\": 0.7095605731010437,\n                        \"Y\": 0.8670991659164429\n                    }\n                ]\n            },\n            \"Id\": \"ee6a8c18-9c09-4ff9-b4d6-1dd35eb113a2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"b36a5d3c-3fb9-459a-8afa-dd3c34b66d5c\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"001908ca-346d-4529-9df5-f7ca534d1cb7\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 80.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.028389405459165573,\n                    \"Height\": 0.025161173194646835,\n                    \"Left\": 0.6802643537521362,\n                    \"Top\": 0.8477328419685364\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6802890300750732,\n                        \"Y\": 0.8477328419685364\n                    },\n                    {\n                        \"X\": 0.7086538076400757,\n                        \"Y\": 0.8477361798286438\n                    },\n                    {\n                        \"X\": 0.7086265087127686,\n                        \"Y\": 0.8728940486907959\n                    },\n                    {\n                        \"X\": 0.6802643537521362,\n                        \"Y\": 0.8728901743888855\n                    }\n                ]\n            },\n            \"Id\": \"b36a5d3c-3fb9-459a-8afa-dd3c34b66d5c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b8fa2fe2-46fd-4680-ac08-9c20800a2261\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023199578747153282,\n                    \"Height\": 0.011754564009606838,\n                    \"Left\": 0.8168076276779175,\n                    \"Top\": 0.6625846028327942\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8168249726295471,\n                        \"Y\": 0.6625852584838867\n                    },\n                    {\n                        \"X\": 0.8400071859359741,\n                        \"Y\": 0.6625846028327942\n                    },\n                    {\n                        \"X\": 0.8399888277053833,\n                        \"Y\": 0.674338698387146\n                    },\n                    {\n                        \"X\": 0.8168076276779175,\n                        \"Y\": 0.6743391156196594\n                    }\n                ]\n            },\n            \"Id\": \"b4c79e66-4ccd-42ce-aee1-807358cae936\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"fe704a45-5c1d-4228-92ac-8ce600e587a3\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"aedde6bf-a909-46d4-8d7b-806f52f2ae17\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029450448229908943,\n                    \"Height\": 0.02330303192138672,\n                    \"Left\": 0.785984456539154,\n                    \"Top\": 0.6554747819900513\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7860162854194641,\n                        \"Y\": 0.6554757952690125\n                    },\n                    {\n                        \"X\": 0.8154349327087402,\n                        \"Y\": 0.6554747819900513\n                    },\n                    {\n                        \"X\": 0.8154006004333496,\n                        \"Y\": 0.678777277469635\n                    },\n                    {\n                        \"X\": 0.785984456539154,\n                        \"Y\": 0.678777813911438\n                    }\n                ]\n            },\n            \"Id\": \"fe704a45-5c1d-4228-92ac-8ce600e587a3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d21d78b2-2082-443e-9224-86ba5d1ff2f9\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 78.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021738529205322266,\n                    \"Height\": 0.010927991010248661,\n                    \"Left\": 0.8125474452972412,\n                    \"Top\": 0.7929017543792725\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.812563419342041,\n                        \"Y\": 0.7929017543792725\n                    },\n                    {\n                        \"X\": 0.8342859745025635,\n                        \"Y\": 0.7929033041000366\n                    },\n                    {\n                        \"X\": 0.834269106388092,\n                        \"Y\": 0.8038297295570374\n                    },\n                    {\n                        \"X\": 0.8125474452972412,\n                        \"Y\": 0.8038279414176941\n                    }\n                ]\n            },\n            \"Id\": \"9e3f7b0d-bbcc-4b05-86e6-21fd2b74e782\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"40aa88bd-be96-4d4f-bf5b-4467ca4ca5fe\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a96f5978-2dd1-4215-b800-c842ae0d6a9b\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 78.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.030945179983973503,\n                    \"Height\": 0.024297790601849556,\n                    \"Left\": 0.7803308367729187,\n                    \"Top\": 0.7854323387145996\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7803635597229004,\n                        \"Y\": 0.7854323387145996\n                    },\n                    {\n                        \"X\": 0.8112760186195374,\n                        \"Y\": 0.7854344248771667\n                    },\n                    {\n                        \"X\": 0.8112406134605408,\n                        \"Y\": 0.8097301721572876\n                    },\n                    {\n                        \"X\": 0.7803308367729187,\n                        \"Y\": 0.8097274899482727\n                    }\n                ]\n            },\n            \"Id\": \"40aa88bd-be96-4d4f-bf5b-4467ca4ca5fe\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b89a1d85-7603-4f5b-be91-b2e6e22bcd61\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 71.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.023438502103090286,\n                    \"Height\": 0.011949170380830765,\n                    \"Left\": 0.8077498078346252,\n                    \"Top\": 0.9214121699333191\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8077670931816101,\n                        \"Y\": 0.9214121699333191\n                    },\n                    {\n                        \"X\": 0.8311883211135864,\n                        \"Y\": 0.9214162230491638\n                    },\n                    {\n                        \"X\": 0.8311700224876404,\n                        \"Y\": 0.9333613514900208\n                    },\n                    {\n                        \"X\": 0.8077498078346252,\n                        \"Y\": 0.9333570003509521\n                    }\n                ]\n            },\n            \"Id\": \"4ae22ea1-f21c-4003-9173-f511d82fac73\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"007797e2-895e-470d-81e4-19c223462cd5\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a076375d-f45a-4ab3-8141-5219e70430aa\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 71.5,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.024511510506272316,\n                    \"Height\": 0.01802738383412361,\n                    \"Left\": 0.7793685793876648,\n                    \"Top\": 0.9166702628135681\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7793927788734436,\n                        \"Y\": 0.9166702628135681\n                    },\n                    {\n                        \"X\": 0.8038800954818726,\n                        \"Y\": 0.9166744351387024\n                    },\n                    {\n                        \"X\": 0.8038542866706848,\n                        \"Y\": 0.9346976280212402\n                    },\n                    {\n                        \"X\": 0.7793685793876648,\n                        \"Y\": 0.9346930980682373\n                    }\n                ]\n            },\n            \"Id\": \"007797e2-895e-470d-81e4-19c223462cd5\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"da802104-a574-4a04-b0ed-3d5692001f16\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        }\n    ],\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"ResponseMetadata\": {\n        \"RequestId\": \"364a3e67-8a49-4fed-b08b-20f44f932f8a\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"x-amzn-requestid\": \"364a3e67-8a49-4fed-b08b-20f44f932f8a\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"142402\",\n            \"date\": \"Mon, 04 Oct 2021 22:43:57 GMT\",\n            \"age\": \"12\",\n            \"via\": \"some via proxy\"\n        },\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/tests/data/paystub_with_signature.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 0.9965640306472778,\n          \"Left\": 0,\n          \"Top\": 0.003435956547036767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0.003435956547036767\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0.0039773182943463326\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"77cb648a-435d-4c46-aba4-84083751e47b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5904b3b7-0b14-428c-8c88-5d690856da87\",\n            \"689866c4-c36d-4bc9-bc1b-8c67c3dbb167\",\n            \"dbba7916-ee7d-4b5f-bddd-a3d61f6dd9c8\",\n            \"136e1b03-bd06-4db1-ad3f-38ea49225d9d\",\n            \"98f29c59-cb19-4e43-a8e8-39deb1b5a14c\",\n            \"32a0084d-725c-4c98-9022-c8baa2d01392\",\n            \"276d3701-deff-452e-8b90-e3129fc7ea2e\",\n            \"27ccdb8f-bd26-403f-aaa6-d48cf3dd1b7c\",\n            \"f6abef31-2f3c-47fe-80e6-52d23d0192ca\",\n            \"531d7aa5-7bf3-422b-be2c-b061321fabff\",\n            \"8bd3e461-0bec-4691-a5b0-679057bad4aa\",\n            \"9cce6a0c-0d17-46f6-a67d-2aed61c8d9ab\",\n            \"52830107-6657-44de-9f62-7f602868d885\",\n            \"09edea74-343b-4160-a55b-f317216749f0\",\n            \"9488aa79-0578-4bd1-8baa-7af3c90278da\",\n            \"101a051e-21d8-43ab-a570-a1e9df562ab1\",\n            \"a83996cd-677b-4364-a92f-aeee64619b63\",\n            \"9d71c178-ee05-4a34-b861-6f5ea49ec990\",\n            \"74114006-c0ba-46ef-a526-17b9ed10e151\",\n            \"558214c8-3ae7-4bca-a9cc-151f2968e8f5\",\n            \"eb7591f0-9daf-4716-b93c-c485fbf90e5c\",\n            \"7486dc96-df12-41d3-8d67-da4713cddace\",\n            \"a5bf3881-b2be-4be2-862d-040f9e63a4cc\",\n            \"0879df32-05cf-4ba5-a3e5-1784103a37d8\",\n            \"5c6a8817-ba64-4c66-aa4f-522de9f0bb78\",\n            \"9881093d-8e4e-49e4-a15b-ebf00a62aa3d\",\n            \"4d2e3f9d-6fc7-41c3-a51b-88219157e882\",\n            \"ab04f63f-4e8a-4fda-8fa8-519c0e199b26\",\n            \"085f3130-fde9-4fb2-b8e0-3800828fe040\",\n            \"55b21ec9-4cc8-4ec3-ad65-342da2ed72e3\",\n            \"650ce0ce-4cae-4aff-a908-3ed27651d3fa\",\n            \"88051072-c182-4b4a-b54a-74abf8a0e9e7\",\n            \"ff1092a3-87b0-44b3-8dbd-047a7b351dd5\",\n            \"c896c7ec-367d-44ff-9a3b-26df3030d745\",\n            \"dd8fd0a8-1c35-4e72-a317-fd72bc497d23\",\n            \"646b4de5-42e9-439a-b7ef-bdea542dcc21\",\n            \"6b6e4574-87cd-4bdb-b700-0a82174f3779\",\n            \"82f9ad1e-0c66-42de-a757-99858c580837\",\n            \"6b3e4860-6950-4f43-9a9d-1b81af39a3f3\",\n            \"e964bd4b-f898-4740-a1ec-043f9e1f9071\",\n            \"3544c748-5686-45ba-b676-487cc38870cf\",\n            \"5647884f-d26b-4533-b749-27940da2cc83\",\n            \"832037e0-4871-4085-8126-bd462a3d9e40\",\n            \"208b44e5-1a4b-48fd-a183-69380e46ffcc\",\n            \"78e7601f-2e04-4f67-9eca-5572e5c760a0\",\n            \"a3d3d723-8df8-4bf3-b369-d0e5ff65615d\",\n            \"716fb2cd-4fe0-4c2e-be2e-f6cfd5757ce7\",\n            \"d6aca9db-5457-48c9-a9fd-909781630710\",\n            \"300750d1-c3c7-4988-b6da-d82c04043381\",\n            \"3badb3d2-efff-472e-987c-35dc8727f948\",\n            \"8689085a-b238-4c87-b701-9e87b7a98433\",\n            \"1a01897e-b875-495b-8e66-a12d2a441081\",\n            \"71b1265c-0f4a-4282-aa6b-04474aae3584\",\n            \"0c3f3c5a-adf2-4c16-a11c-1ce43fdf333a\",\n            \"210717d8-86d3-4187-9da6-ed83f2b6fe25\",\n            \"67295890-a126-4c5c-bf8b-137e6eecfa94\",\n            \"91456476-bc9c-40c1-9a19-45dfc917d15b\",\n            \"851ee3fa-cefa-43cd-81a7-41db91f3b8ec\",\n            \"cbfaeccd-8525-4fbd-9e65-208910d92597\",\n            \"5e507713-a621-4d70-8048-5f36e105e322\",\n            \"f3dbbb87-38e1-477f-9552-32e56c0bc468\",\n            \"80483639-d0f6-438b-9557-9b245db1b660\",\n            \"81d536e7-70b5-4644-8803-cbb686226e95\",\n            \"91546705-209c-4e27-beab-9da2c4f5e29a\",\n            \"c075621b-a85c-4245-92e9-95a21f7a8e12\",\n            \"57a4d6cc-7423-473d-a9ce-ae6891d96161\",\n            \"ac31959e-7057-41b6-9aea-90959b649881\",\n            \"729701f9-1c03-4da5-b3f7-7dcbcab944ff\",\n            \"427c6d06-238f-43ae-a55d-ce848c214667\",\n            \"5cac025f-2383-48fc-a58f-eef33fea4838\",\n            \"5de83aee-1729-4349-a388-334e4cfa519a\",\n            \"e232f40a-5bfa-4d34-8021-955adadad9bb\",\n            \"6da6a303-60aa-48cd-ba01-bfd3b64b5b28\",\n            \"1a7c4b03-68bb-4807-8051-dd831c526cf5\",\n            \"010f998e-e7fb-405a-b82f-f182a598a0d6\",\n            \"d3a63b11-9f3c-4adf-a732-6553a9a35bf3\",\n            \"f48fb3b6-635c-4996-b1af-934be4b3f386\",\n            \"14d201a6-cf5c-428a-b7ae-d6740855bab7\",\n            \"d16323ae-889c-4284-89dd-b4120a5a23ff\",\n            \"8cee717d-40cc-487f-be92-0fff42a97afc\",\n            \"2d2bfb70-450d-4084-9c6b-cb3d9bd3d1b0\",\n            \"b9465376-26be-4e09-98cd-995b8f4fd3c0\",\n            \"dcfffca3-57a2-43fd-bbb4-2cceae7b2e64\",\n            \"bf58b0bc-be17-4dee-89a6-6780124096cf\",\n            \"c577a0f1-e05b-4650-adb0-cc73d595346d\",\n            \"17e32b94-8051-46a3-8bc1-a0ad54fd2ca7\",\n            \"de91e1af-4c3c-46b3-b3a9-7ac80a58942b\",\n            \"8341f834-422c-4e5c-9209-4b959f1dd1ea\",\n            \"eb380a47-b2a6-4282-b682-e606000f7e58\",\n            \"eab97a5f-32cd-4553-b384-cd5602896285\",\n            \"55c3ccb1-09f8-4f4c-b78b-31a35ab556cf\",\n            \"f2ed822f-ebfa-494d-8f9d-0da776194d92\",\n            \"b33fbfba-d31f-4e5a-bb37-139e9060f87f\",\n            \"7b5b1627-257c-4bec-8abd-fa3e0218d662\",\n            \"c26ddc84-d1c0-4371-b2ff-06ac2eab866d\",\n            \"3ecbe1fc-82b2-4fba-9513-80dc7d71157d\",\n            \"5f8442c5-eb22-43a1-a3f2-7c9e91ff9cd0\",\n            \"300ebb5d-b242-43d2-ba15-01a66b34b55a\",\n            \"6b94872d-9cc5-44e8-a505-1cd67c2c3ab9\",\n            \"d5aa7034-66e4-4ac3-a093-757ad47b5a5e\",\n            \"39d05006-014e-43db-8e16-f2dc3ccc7cd9\",\n            \"17c65999-c9f8-48e3-ae18-2ac43ed53fb5\",\n            \"2e52ca6a-af32-438d-9cb0-c41bfff296d2\",\n            \"d51abfc5-dde6-4688-a440-daa4533f6f12\",\n            \"3214229a-0813-4b28-ae7d-a188df000da6\",\n            \"a9990332-1216-4121-8d65-85a36179f479\",\n            \"242952bf-16d4-432e-abbf-9a03317f3e0f\",\n            \"446a23ea-dfb6-4811-984e-04662a8f629d\",\n            \"640b892d-bfe5-4908-9b5c-3afd842072bd\",\n            \"7055b856-9d1f-444c-9141-35d330b5cdef\",\n            \"bf7d47e4-f04d-4d08-9241-163459bf98e1\",\n            \"a18c3e63-6c04-4ad4-a729-2eed18050eb6\",\n            \"7d40c315-3018-42d4-b93e-e7e2251b9b5d\",\n            \"f522b18a-adf1-4412-b458-33f56d10af3b\",\n            \"58646bb3-c7a0-4a9b-9b1f-1593358b8827\",\n            \"046f618d-830c-452b-b079-b4db8e6e10d5\",\n            \"a084f3c6-9eab-4572-a180-15fc9bff3c28\",\n            \"28cecbd6-7fc2-4587-9737-115338fae66b\",\n            \"a014f173-7acf-4034-b54d-5898e936ad84\",\n            \"ff6bba04-71f5-4102-9b3b-f9daf6fab0d8\",\n            \"18ebe9c3-87c4-4353-afeb-8ae1f612b838\",\n            \"5d9bf228-b518-4f65-a780-ddec7a9beb1f\",\n            \"02f9d22c-3394-44ec-a370-3542b1d8c07e\",\n            \"7ea5f6b4-2aa8-4c9b-81d4-e2b85a403293\",\n            \"bd3e8199-825c-46bb-9784-fdf335b197d2\",\n            \"8c59ab6b-a7c4-45d0-b33b-ebf18f57d92c\",\n            \"f2561ecf-eb2c-4385-ab31-f8f97bf0a9c9\",\n            \"d10c33a6-76c2-4e29-9571-0212f7e696aa\",\n            \"990ea779-e62e-410d-b29b-767761001008\",\n            \"b01b5d6f-d6f9-4c38-b3b9-0328bb1919da\",\n            \"0fb19305-bcc9-4eea-995f-ac88023c2d5d\",\n            \"7aa86407-7b83-4a04-9e4b-7ac7afd685a2\",\n            \"9ceb097f-a1f0-41ac-aaed-118bf2a6046b\",\n            \"841fee6c-eb3a-4bbf-9994-9bf2a592751b\",\n            \"9690ab25-938d-4081-951b-99e2c42b9e56\",\n            \"11097e75-fa3e-476c-9190-ce4eb7f0dab9\",\n            \"ca8eec04-5464-486d-ab63-e79ba5de3073\",\n            \"11af94e3-bddb-462b-9374-76e125c34d5c\",\n            \"1ec21249-e6f8-4794-8125-1f23dc0d8c11\",\n            \"d4d24d2a-6ddd-4c3b-a4b4-ddad8bf856e4\",\n            \"f90e5a16-3361-4d62-9331-3422a9e45d78\",\n            \"5d67a680-26ce-42d6-b016-da7663fad205\",\n            \"0fb50747-a054-406a-bc59-641987c960d7\",\n            \"30b8b960-ff7f-4f8e-bc7e-2db7d7a138f7\",\n            \"c7802519-0b28-4865-a0cb-1c2c8b946d3c\",\n            \"7c57894f-77e0-4089-a9f3-a700785a3e11\",\n            \"cda827a7-44b2-41ec-b4db-694805d9995b\",\n            \"6f92c8af-d1d4-4c0b-b70c-4b8da6da7cad\",\n            \"b90f5bff-ec80-4dd7-a49b-f4b7ea1baade\",\n            \"3e5f7a14-bcb5-497b-b1fe-de9c9fa8dbbb\",\n            \"48aac832-e8ed-42a5-9442-fc15e7690c00\",\n            \"0cdf0585-b4cc-41e3-91cc-508db5900b6c\",\n            \"8e6e4115-e4f1-46fc-b3ae-e18ddf51eb4a\",\n            \"35bb72ee-e66b-4773-bf58-a31e363e1ff5\",\n            \"a6d93ffa-34b4-4609-9c2a-d7c330030f11\",\n            \"d806b3a5-755d-4634-b91c-964c98962dd1\",\n            \"57a56db6-31a0-4bf9-abef-ff006331cdab\",\n            \"ae8d8a25-af3b-49ac-a435-4552758d90de\",\n            \"60484c5e-993a-4b5e-8a1a-d4bf1f1f6e03\",\n            \"27bef7d0-a793-4045-94b6-591ab6a4bd86\",\n            \"12c0f2fd-20ca-4ccc-b42e-d15e481debaf\",\n            \"ab327403-4707-4862-bde0-14e36733ba25\",\n            \"9e7bf588-935a-4403-9072-9789216d401f\",\n            \"5e543f4d-1bda-4362-98c4-2a7181673b7b\",\n            \"73251fcd-9d11-415b-b2c7-e24cfd872106\",\n            \"d5135f13-45c5-46e8-9212-c17bdae90be8\",\n            \"01c77092-9ace-452c-91dd-8860b0e37b89\",\n            \"1ed93314-1251-4069-8a45-9dae0a13b12a\",\n            \"e9b791d0-7110-45a0-98c1-e505f319a4d5\",\n            \"3643eca5-303c-49cd-80ba-2a02b628a512\",\n            \"706ce907-74f5-4e23-a353-538543dcf426\",\n            \"5e2798b9-02b5-4e1f-9999-f4b5ca0d7eed\",\n            \"36700bc7-9c6f-4373-8513-0a12d3845e6f\",\n            \"cd47e6c0-f6ec-4632-8c80-2f1cf8d8de9a\",\n            \"9add7237-ef3d-433e-874c-084c55d7bb10\",\n            \"b22c57b6-54d2-4a5f-9d77-6548afa284a8\",\n            \"00bcacd8-ff34-4acf-9633-d9b80984f8cd\",\n            \"fca9f16d-1208-4a13-86ff-0a9fd157938d\",\n            \"75f580e9-e3a6-4d6d-a1be-50039834c3bd\",\n            \"c81c34d0-400c-4c25-9e0a-452ba8aead7b\",\n            \"14744980-6a74-4e74-a361-fa2388b0ac33\",\n            \"31ada995-7af5-476d-b609-e1a2a9d7f975\",\n            \"61758b25-0dca-407b-99aa-9a3f56c686b3\",\n            \"b2135e15-be2d-45e0-aeb3-8d2ce3dd45c4\",\n            \"c758028b-7a21-407b-9b51-4ac7dc7b5af1\",\n            \"cecf8f21-e726-499a-92c4-668ca8948b40\",\n            \"034aca12-40ed-456e-bb79-7c05809979ae\",\n            \"1874ad76-706e-486e-9fac-effbce79076d\",\n            \"90661a35-5553-4d68-ba10-a7a6d4b72352\",\n            \"f79d388e-8e5c-4530-a855-84d34e7a517c\",\n            \"39d28d2b-15a0-4ba2-bae9-c24a3a56404a\",\n            \"77757308-6e67-4903-82f3-5714f5ccd454\",\n            \"d953a370-3fbf-426a-8881-78b055e9935a\",\n            \"c475c6cf-b307-4921-a31c-1d09eb96fac5\",\n            \"10e149d1-4f56-4764-86de-137801000100\",\n            \"95c6cca4-324f-48fc-8f64-419014182a65\",\n            \"f164efd4-12d1-4d0e-9a36-530dab40324d\",\n            \"4fa42791-2752-4a50-852b-b015e85fe916\",\n            \"081a1a22-3925-4c11-b31e-83530521b029\",\n            \"2ecc80f9-8933-4fcc-84bb-37d2c79d1483\",\n            \"7d20a5b7-4451-44d0-85f5-2de89af69463\",\n            \"22373334-c758-4112-b972-f5258c780dc5\",\n            \"fb4ef1e0-f89b-4dc8-8dff-5dfef2dd45a6\",\n            \"cf31c3f6-469d-47e4-9b9b-78de30aef443\",\n            \"5edaa20b-0f7d-4b54-817e-004fc9a7a54c\",\n            \"02f6b745-427e-443a-9158-612a480b4497\",\n            \"3e316ed7-4e66-4f4c-96a2-d94b6a929503\",\n            \"f54c0175-7a09-47f0-bcae-23586c1b99ba\",\n            \"6b0938c5-74dc-4781-9a34-0e164530a554\",\n            \"3bcdf71b-b8bf-4347-8aa7-e94784b18a3c\",\n            \"6619ccbb-0ddb-4f10-b677-3d591d0bbe3c\",\n            \"a9520342-4b10-458c-83b7-87a6d894f8c7\",\n            \"c795cca5-fb6c-405b-81e9-f5372ed796e6\",\n            \"c0190f8f-6149-44d0-8b25-040a39918896\",\n            \"c651d263-1b54-48ae-a763-dfa66a433e35\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.144775390625,\n      \"Text\": \"CO. FILE DEPT. CLOCK NUMBER\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2536987364292145,\n          \"Height\": 0.009026790037751198,\n          \"Left\": 0.1648917943239212,\n          \"Top\": 0.0345170684158802\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16489256918430328,\n            \"Y\": 0.0345170684158802\n          },\n          {\n            \"X\": 0.4185904264450073,\n            \"Y\": 0.0346534363925457\n          },\n          {\n            \"X\": 0.4185905456542969,\n            \"Y\": 0.04354385659098625\n          },\n          {\n            \"X\": 0.1648917943239212,\n            \"Y\": 0.04340771213173866\n          }\n        ]\n      },\n      \"Id\": \"5904b3b7-0b14-428c-8c88-5d690856da87\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e610c723-d01a-4f46-949e-f6772326aa4e\",\n            \"a3a39dd8-58c2-43c2-a98a-85719deb725f\",\n            \"70ccd6a2-1fc1-48ba-99b4-a695f72f783f\",\n            \"4482b5ff-b1ff-47b9-bd0b-f77ea9e55d0e\",\n            \"32e4486d-0af1-4ce7-aa6b-2fd9ef9ac7ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.58735656738281,\n      \"Text\": \"ABC 126543 123456 12345 00000000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26200973987579346,\n          \"Height\": 0.010502425953745842,\n          \"Left\": 0.16495054960250854,\n          \"Top\": 0.04666973650455475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16495145857334137,\n            \"Y\": 0.04666973650455475\n          },\n          {\n            \"X\": 0.4269601106643677,\n            \"Y\": 0.04681025817990303\n          },\n          {\n            \"X\": 0.426960289478302,\n            \"Y\": 0.05717216059565544\n          },\n          {\n            \"X\": 0.16495054960250854,\n            \"Y\": 0.05703190714120865\n          }\n        ]\n      },\n      \"Id\": \"689866c4-c36d-4bc9-bc1b-8c67c3dbb167\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b7c419c-6e6a-4479-9bd4-1c688d16d476\",\n            \"f0753f25-b08f-4755-88b5-0f74c3f1632b\",\n            \"03fda3cd-379d-41fd-8f72-f7676ab64355\",\n            \"89d513bf-9810-45f6-8810-a59e05210d11\",\n            \"b740d708-0c5e-4a39-af77-cd76662513c3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.65509033203125,\n      \"Text\": \"1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006587401498109102,\n          \"Height\": 0.008248131722211838,\n          \"Left\": 0.44835329055786133,\n          \"Top\": 0.047755733132362366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44835329055786133,\n            \"Y\": 0.047755733132362366\n          },\n          {\n            \"X\": 0.45494046807289124,\n            \"Y\": 0.04775926470756531\n          },\n          {\n            \"X\": 0.45494067668914795,\n            \"Y\": 0.056003864854574203\n          },\n          {\n            \"X\": 0.44835349917411804,\n            \"Y\": 0.05600033700466156\n          }\n        ]\n      },\n      \"Id\": \"dbba7916-ee7d-4b5f-bddd-a3d61f6dd9c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96b07267-dfce-482a-813d-5a9a1af47b68\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89851379394531,\n      \"Text\": \"Earnings Statement\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23522374033927917,\n          \"Height\": 0.018239689990878105,\n          \"Left\": 0.5793696641921997,\n          \"Top\": 0.04107304662466049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5793696641921997,\n            \"Y\": 0.04107304662466049\n          },\n          {\n            \"X\": 0.814590334892273,\n            \"Y\": 0.04119933769106865\n          },\n          {\n            \"X\": 0.8145934343338013,\n            \"Y\": 0.059312738478183746\n          },\n          {\n            \"X\": 0.5793710350990295,\n            \"Y\": 0.059186868369579315\n          }\n        ]\n      },\n      \"Id\": \"136e1b03-bd06-4db1-ad3f-38ea49225d9d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"279d23f5-b745-4485-ba0b-71d5954d23e1\",\n            \"3851d244-94dd-4838-8f43-f2e20f09717b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.21881103515625,\n      \"Text\": \"ANY COMPANY CORP.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1600331962108612,\n          \"Height\": 0.01082935556769371,\n          \"Left\": 0.1663833111524582,\n          \"Top\": 0.07316377013921738\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1663842350244522,\n            \"Y\": 0.07316377013921738\n          },\n          {\n            \"X\": 0.3264164924621582,\n            \"Y\": 0.07324917614459991\n          },\n          {\n            \"X\": 0.3264162540435791,\n            \"Y\": 0.08399312198162079\n          },\n          {\n            \"X\": 0.1663833111524582,\n            \"Y\": 0.08390787988901138\n          }\n        ]\n      },\n      \"Id\": \"98f29c59-cb19-4e43-a8e8-39deb1b5a14c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fdd99d63-09fc-4bbf-a931-5339c9a1bb23\",\n            \"14d9efee-f529-48fa-9a60-781dae10f8a6\",\n            \"308f915d-60ca-4c47-95a8-6ef2e9ce6b1d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.02977752685547,\n      \"Text\": \"Period ending:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09982381761074066,\n          \"Height\": 0.01339530386030674,\n          \"Left\": 0.5789139866828918,\n          \"Top\": 0.07151687145233154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5789139866828918,\n            \"Y\": 0.07151687145233154\n          },\n          {\n            \"X\": 0.6787362694740295,\n            \"Y\": 0.07157016545534134\n          },\n          {\n            \"X\": 0.6787378191947937,\n            \"Y\": 0.08491217344999313\n          },\n          {\n            \"X\": 0.578914999961853,\n            \"Y\": 0.08485901355743408\n          }\n        ]\n      },\n      \"Id\": \"32a0084d-725c-4c98-9022-c8baa2d01392\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7cc14f2f-4771-4dbd-b814-9b39a2f421ac\",\n            \"b0f28755-3f57-4346-ac3b-39fdd681e9df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87276458740234,\n      \"Text\": \"7/18/2008\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07078549265861511,\n          \"Height\": 0.011136953718960285,\n          \"Left\": 0.745150625705719,\n          \"Top\": 0.07156092673540115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.745150625705719,\n            \"Y\": 0.07156092673540115\n          },\n          {\n            \"X\": 0.8159342408180237,\n            \"Y\": 0.07159871608018875\n          },\n          {\n            \"X\": 0.8159360885620117,\n            \"Y\": 0.08269788324832916\n          },\n          {\n            \"X\": 0.7451521754264832,\n            \"Y\": 0.08266016840934753\n          }\n        ]\n      },\n      \"Id\": \"276d3701-deff-452e-8b90-e3129fc7ea2e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"31ef405e-dd9a-4539-921c-3ae6c4732a9f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90446472167969,\n      \"Text\": \"475 ANY AVENUE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12553614377975464,\n          \"Height\": 0.010348331183195114,\n          \"Left\": 0.16707342863082886,\n          \"Top\": 0.08869541436433792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1670743077993393,\n            \"Y\": 0.08869541436433792\n          },\n          {\n            \"X\": 0.2926095724105835,\n            \"Y\": 0.08876221626996994\n          },\n          {\n            \"X\": 0.29260918498039246,\n            \"Y\": 0.09904374182224274\n          },\n          {\n            \"X\": 0.16707342863082886,\n            \"Y\": 0.09897706657648087\n          }\n        ]\n      },\n      \"Id\": \"27ccdb8f-bd26-403f-aaa6-d48cf3dd1b7c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"064b0e68-301f-43ce-aa59-d142abefb35d\",\n            \"2558ca3a-3011-4da4-a3c6-1e2530d4cb87\",\n            \"8c597c73-cf3e-467b-b7a0-bbbaabb8e69a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.91317749023438,\n      \"Text\": \"Pay date:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06654775142669678,\n          \"Height\": 0.012733392417430878,\n          \"Left\": 0.5785626173019409,\n          \"Top\": 0.08726245909929276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785626173019409,\n            \"Y\": 0.08726245909929276\n          },\n          {\n            \"X\": 0.6451090574264526,\n            \"Y\": 0.08729788661003113\n          },\n          {\n            \"X\": 0.6451103687286377,\n            \"Y\": 0.09999585151672363\n          },\n          {\n            \"X\": 0.5785635709762573,\n            \"Y\": 0.09996051341295242\n          }\n        ]\n      },\n      \"Id\": \"f6abef31-2f3c-47fe-80e6-52d23d0192ca\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f764d32-b7f3-4e26-a752-e6a094610b34\",\n            \"2b088102-6131-4637-8aa2-ef349268b49f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90161895751953,\n      \"Text\": \"7/25/2008\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07123647630214691,\n          \"Height\": 0.010762719437479973,\n          \"Left\": 0.7445810437202454,\n          \"Top\": 0.08705495297908783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7445810437202454,\n            \"Y\": 0.08705495297908783\n          },\n          {\n            \"X\": 0.8158157467842102,\n            \"Y\": 0.08709287643432617\n          },\n          {\n            \"X\": 0.8158175349235535,\n            \"Y\": 0.09781767427921295\n          },\n          {\n            \"X\": 0.7445825934410095,\n            \"Y\": 0.09777982532978058\n          }\n        ]\n      },\n      \"Id\": \"531d7aa5-7bf3-422b-be2c-b061321fabff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b7b80fcc-3ee0-40fd-89dc-ecc8186ca4b9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 89.7862548828125,\n      \"Text\": \"ANYTOWN USA 10101\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15934304893016815,\n          \"Height\": 0.011651662178337574,\n          \"Left\": 0.16673345863819122,\n          \"Top\": 0.10391460359096527\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1667344570159912,\n            \"Y\": 0.10391460359096527\n          },\n          {\n            \"X\": 0.3260765075683594,\n            \"Y\": 0.10399916023015976\n          },\n          {\n            \"X\": 0.3260762393474579,\n            \"Y\": 0.11556626856327057\n          },\n          {\n            \"X\": 0.16673345863819122,\n            \"Y\": 0.1154818907380104\n          }\n        ]\n      },\n      \"Id\": \"8bd3e461-0bec-4691-a5b0-679057bad4aa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7bdb4ecd-5f05-4ae9-82ef-ed48c9e23d5d\",\n            \"73bfcf31-dbf7-44d1-b679-46b90575209a\",\n            \"a251b49b-8fa3-4631-a7b5-02f702a40d42\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.3310546875,\n      \"Text\": \"Social Security Number: 987-65-4321\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.211502805352211,\n          \"Height\": 0.010499222204089165,\n          \"Left\": 0.1657143086194992,\n          \"Top\": 0.14504849910736084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16571521759033203,\n            \"Y\": 0.14504849910736084\n          },\n          {\n            \"X\": 0.3772171139717102,\n            \"Y\": 0.14515987038612366\n          },\n          {\n            \"X\": 0.3772170841693878,\n            \"Y\": 0.15554772317409515\n          },\n          {\n            \"X\": 0.1657143086194992,\n            \"Y\": 0.15543656051158905\n          }\n        ]\n      },\n      \"Id\": \"9cce6a0c-0d17-46f6-a67d-2aed61c8d9ab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cb8bd762-48c0-481a-95fb-3f0226141d98\",\n            \"9f6d86c1-a3e8-48dd-9d8e-171d5f94fe11\",\n            \"cced817b-886b-497d-aff9-6bb5cf499ee9\",\n            \"84911617-53b1-41db-8fa9-445373854242\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4296646118164,\n      \"Text\": \"Taxable Marital Status: Married\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18324382603168488,\n          \"Height\": 0.009466402232646942,\n          \"Left\": 0.1662297248840332,\n          \"Top\": 0.15498550236225128\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16623054444789886,\n            \"Y\": 0.15498550236225128\n          },\n          {\n            \"X\": 0.3494735360145569,\n            \"Y\": 0.1550818234682083\n          },\n          {\n            \"X\": 0.34947341680526733,\n            \"Y\": 0.16445191204547882\n          },\n          {\n            \"X\": 0.1662297248840332,\n            \"Y\": 0.16435576975345612\n          }\n        ]\n      },\n      \"Id\": \"52830107-6657-44de-9f62-7f602868d885\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7764f5be-0c19-49c2-a86a-620e4aac57e2\",\n            \"b0c8670e-c608-4e58-bc4b-dd53b7aa263f\",\n            \"a5cf6166-80e9-4664-a858-6d696cf72b9b\",\n            \"4f6bfb2d-1178-41b5-bf86-a890663938fc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91573333740234,\n      \"Text\": \"JOHN STILES\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10456061363220215,\n          \"Height\": 0.010888518765568733,\n          \"Left\": 0.5788884162902832,\n          \"Top\": 0.1502630114555359\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5788884162902832,\n            \"Y\": 0.1502630114555359\n          },\n          {\n            \"X\": 0.6834477782249451,\n            \"Y\": 0.15031802654266357\n          },\n          {\n            \"X\": 0.6834490299224854,\n            \"Y\": 0.16115152835845947\n          },\n          {\n            \"X\": 0.5788892507553101,\n            \"Y\": 0.16109663248062134\n          }\n        ]\n      },\n      \"Id\": \"09edea74-343b-4160-a55b-f317216749f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f7eb3d4-5486-4c89-8179-2e4ed6023562\",\n            \"23eb59ab-cfc2-419e-b70a-91147b7280df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 72.89268493652344,\n      \"Text\": \"Exemptions/Allowances:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14550407230854034,\n          \"Height\": 0.010661812499165535,\n          \"Left\": 0.16551117599010468,\n          \"Top\": 0.1662767231464386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1655120998620987,\n            \"Y\": 0.1662767231464386\n          },\n          {\n            \"X\": 0.311015248298645,\n            \"Y\": 0.1663530319929123\n          },\n          {\n            \"X\": 0.31101492047309875,\n            \"Y\": 0.17693853378295898\n          },\n          {\n            \"X\": 0.16551117599010468,\n            \"Y\": 0.17686237394809723\n          }\n        ]\n      },\n      \"Id\": \"9488aa79-0578-4bd1-8baa-7af3c90278da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d7d9693e-1c00-445f-8a48-7a2655c84dc4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93885040283203,\n      \"Text\": \"101 MAIN STREET\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15633812546730042,\n          \"Height\": 0.011289249174296856,\n          \"Left\": 0.5794377326965332,\n          \"Top\": 0.16194522380828857\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5794377326965332,\n            \"Y\": 0.16194522380828857\n          },\n          {\n            \"X\": 0.7357742786407471,\n            \"Y\": 0.1620272994041443\n          },\n          {\n            \"X\": 0.7357758283615112,\n            \"Y\": 0.1732344776391983\n          },\n          {\n            \"X\": 0.5794385671615601,\n            \"Y\": 0.17315258085727692\n          }\n        ]\n      },\n      \"Id\": \"101a051e-21d8-43ab-a570-a1e9df562ab1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"abb4ee4a-8408-4815-b1ff-d6328a9a036c\",\n            \"b8a9b286-4169-4bda-8c62-ca37b6147bbe\",\n            \"0d38397b-9838-469d-a829-cd6afceb9384\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.584716796875,\n      \"Text\": \"Federal: 3. $25 Additional Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18709829449653625,\n          \"Height\": 0.010425246320664883,\n          \"Left\": 0.18438352644443512,\n          \"Top\": 0.17788280546665192\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18438434600830078,\n            \"Y\": 0.17788280546665192\n          },\n          {\n            \"X\": 0.37148183584213257,\n            \"Y\": 0.1779807209968567\n          },\n          {\n            \"X\": 0.3714817762374878,\n            \"Y\": 0.18830804526805878\n          },\n          {\n            \"X\": 0.18438352644443512,\n            \"Y\": 0.18821032345294952\n          }\n        ]\n      },\n      \"Id\": \"a83996cd-677b-4364-a92f-aeee64619b63\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"481e1e26-4d60-4253-acd0-52da717c6469\",\n            \"24ee258d-683a-4f93-b9d6-268696cffcbb\",\n            \"ef4671ba-d5c0-48e9-87df-7b813f143de9\",\n            \"57dd1e69-dae5-4e40-97c6-f1b1ad848080\",\n            \"21617a59-8c15-45b0-8b4f-754a0222702c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.68244171142578,\n      \"Text\": \"ANYTOWN, USA 12345\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19434048235416412,\n          \"Height\": 0.013348865322768688,\n          \"Left\": 0.5781306028366089,\n          \"Top\": 0.17580297589302063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781306028366089,\n            \"Y\": 0.17580297589302063\n          },\n          {\n            \"X\": 0.7724690437316895,\n            \"Y\": 0.17590472102165222\n          },\n          {\n            \"X\": 0.7724710702896118,\n            \"Y\": 0.1891518384218216\n          },\n          {\n            \"X\": 0.5781316161155701,\n            \"Y\": 0.1890503466129303\n          }\n        ]\n      },\n      \"Id\": \"9d71c178-ee05-4a34-b861-6f5ea49ec990\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"73f34bd2-08e6-4068-9eb4-45706ec4eda0\",\n            \"7fe9f3ae-5ae8-4ce8-975e-6da5109bc1fa\",\n            \"ee30d969-31dc-41d2-8592-19b7081c6285\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.41807556152344,\n      \"Text\": \"State: 2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06329090148210526,\n          \"Height\": 0.008877173997461796,\n          \"Left\": 0.18516546487808228,\n          \"Top\": 0.18944638967514038\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18516618013381958,\n            \"Y\": 0.18944638967514038\n          },\n          {\n            \"X\": 0.24845637381076813,\n            \"Y\": 0.18947944045066833\n          },\n          {\n            \"X\": 0.24845589697360992,\n            \"Y\": 0.1983235627412796\n          },\n          {\n            \"X\": 0.18516546487808228,\n            \"Y\": 0.19829057157039642\n          }\n        ]\n      },\n      \"Id\": \"74114006-c0ba-46ef-a526-17b9ed10e151\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c8ec732-e095-4ad5-81b1-d77537efb993\",\n            \"68981ed5-1e11-4f96-8e2b-48c56322d15e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.12574768066406,\n      \"Text\": \"Local: 2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06348910182714462,\n          \"Height\": 0.00930629950016737,\n          \"Left\": 0.18479199707508087,\n          \"Top\": 0.20012450218200684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18479274213314056,\n            \"Y\": 0.20012450218200684\n          },\n          {\n            \"X\": 0.2482811063528061,\n            \"Y\": 0.20015758275985718\n          },\n          {\n            \"X\": 0.2482805997133255,\n            \"Y\": 0.20943079888820648\n          },\n          {\n            \"X\": 0.18479199707508087,\n            \"Y\": 0.20939777791500092\n          }\n        ]\n      },\n      \"Id\": \"558214c8-3ae7-4bca-a9cc-151f2968e8f5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d2a0d463-cecb-4a83-8bc6-9fd4f397c65b\",\n            \"aaf81227-5ca8-423a-9b45-4e2aa0459a59\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9607925415039,\n      \"Text\": \"Earnings\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06931082904338837,\n          \"Height\": 0.013459205627441406,\n          \"Left\": 0.048463236540555954,\n          \"Top\": 0.23626023530960083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048465024679899216,\n            \"Y\": 0.23626023530960083\n          },\n          {\n            \"X\": 0.11777406185865402,\n            \"Y\": 0.23629610240459442\n          },\n          {\n            \"X\": 0.11777263879776001,\n            \"Y\": 0.24971944093704224\n          },\n          {\n            \"X\": 0.048463236540555954,\n            \"Y\": 0.2496836632490158\n          }\n        ]\n      },\n      \"Id\": \"eb7591f0-9daf-4716-b93c-c485fbf90e5c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f28b4358-dfae-4e17-9076-887520726675\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96734619140625,\n      \"Text\": \"rate\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02945694699883461,\n          \"Height\": 0.010017167776823044,\n          \"Left\": 0.16499583423137665,\n          \"Top\": 0.23764441907405853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1649966984987259,\n            \"Y\": 0.23764441907405853\n          },\n          {\n            \"X\": 0.19445277750492096,\n            \"Y\": 0.23765966296195984\n          },\n          {\n            \"X\": 0.19445201754570007,\n            \"Y\": 0.24766159057617188\n          },\n          {\n            \"X\": 0.16499583423137665,\n            \"Y\": 0.24764637649059296\n          }\n        ]\n      },\n      \"Id\": \"7486dc96-df12-41d3-8d67-da4713cddace\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61141a1a-1f30-443d-b28a-8681c62ff192\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9582748413086,\n      \"Text\": \"hours\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041159678250551224,\n          \"Height\": 0.010125490836799145,\n          \"Left\": 0.24279560148715973,\n          \"Top\": 0.23747625946998596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2427961826324463,\n            \"Y\": 0.23747625946998596\n          },\n          {\n            \"X\": 0.28395527601242065,\n            \"Y\": 0.23749755322933197\n          },\n          {\n            \"X\": 0.2839548885822296,\n            \"Y\": 0.24760174751281738\n          },\n          {\n            \"X\": 0.24279560148715973,\n            \"Y\": 0.24758048355579376\n          }\n        ]\n      },\n      \"Id\": \"a5bf3881-b2be-4be2-862d-040f9e63a4cc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0fd65814-d6a3-4169-993d-b40367918119\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86711883544922,\n      \"Text\": \"this period\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07600773125886917,\n          \"Height\": 0.012722792103886604,\n          \"Left\": 0.34537237882614136,\n          \"Top\": 0.23713549971580505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34537258744239807,\n            \"Y\": 0.23713549971580505\n          },\n          {\n            \"X\": 0.421379953622818,\n            \"Y\": 0.2371748387813568\n          },\n          {\n            \"X\": 0.42138010263442993,\n            \"Y\": 0.2498582899570465\n          },\n          {\n            \"X\": 0.34537237882614136,\n            \"Y\": 0.2498190551996231\n          }\n        ]\n      },\n      \"Id\": \"0879df32-05cf-4ba5-a3e5-1784103a37d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"06e0e3ed-efe6-48f6-bbd1-43aafbed4cac\",\n            \"c69f6646-5db9-4568-863a-2f9656f69362\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92044067382812,\n      \"Text\": \"year to date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08525195717811584,\n          \"Height\": 0.011907589621841908,\n          \"Left\": 0.44469812512397766,\n          \"Top\": 0.23751327395439148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44469812512397766,\n            \"Y\": 0.23751327395439148\n          },\n          {\n            \"X\": 0.529949426651001,\n            \"Y\": 0.23755739629268646\n          },\n          {\n            \"X\": 0.5299500823020935,\n            \"Y\": 0.2494208663702011\n          },\n          {\n            \"X\": 0.44469839334487915,\n            \"Y\": 0.24937684834003448\n          }\n        ]\n      },\n      \"Id\": \"5c6a8817-ba64-4c66-aa4f-522de9f0bb78\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef8b9774-7b3e-456e-978b-acf7c56836d2\",\n            \"b1bf6bd9-f91c-49a5-a632-dc6c4ba16281\",\n            \"ecea9eb1-d04d-419e-8539-656650259181\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95258331298828,\n      \"Text\": \"Other Benefits and\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14670562744140625,\n          \"Height\": 0.01175178587436676,\n          \"Left\": 0.5766529440879822,\n          \"Top\": 0.23722980916500092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5766529440879822,\n            \"Y\": 0.23722980916500092\n          },\n          {\n            \"X\": 0.7233570218086243,\n            \"Y\": 0.23730573058128357\n          },\n          {\n            \"X\": 0.7233585715293884,\n            \"Y\": 0.24898159503936768\n          },\n          {\n            \"X\": 0.5766538381576538,\n            \"Y\": 0.24890585243701935\n          }\n        ]\n      },\n      \"Id\": \"9881093d-8e4e-49e4-a15b-ebf00a62aa3d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"101393ca-9748-43a7-bf79-a4ac8014f8ca\",\n            \"8aff941d-e0fb-4d4d-8161-c0e1a735617c\",\n            \"c2264798-0928-4355-90f8-51ce8ebf314d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85408782958984,\n      \"Text\": \"Regular\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05216872692108154,\n          \"Height\": 0.012287428602576256,\n          \"Left\": 0.04820391908288002,\n          \"Top\": 0.2524224817752838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048205554485321045,\n            \"Y\": 0.2524224817752838\n          },\n          {\n            \"X\": 0.10037264972925186,\n            \"Y\": 0.2524493932723999\n          },\n          {\n            \"X\": 0.10037126392126083,\n            \"Y\": 0.2647099196910858\n          },\n          {\n            \"X\": 0.04820391908288002,\n            \"Y\": 0.2646830677986145\n          }\n        ]\n      },\n      \"Id\": \"4d2e3f9d-6fc7-41c3-a51b-88219157e882\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93231b6d-c44f-4adc-a75f-471d509e8498\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9853286743164,\n      \"Text\": \"10.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03768472000956535,\n          \"Height\": 0.009851118549704552,\n          \"Left\": 0.16607119143009186,\n          \"Top\": 0.2533145844936371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1660720407962799,\n            \"Y\": 0.2533145844936371\n          },\n          {\n            \"X\": 0.2037559151649475,\n            \"Y\": 0.25333404541015625\n          },\n          {\n            \"X\": 0.2037551999092102,\n            \"Y\": 0.2631657123565674\n          },\n          {\n            \"X\": 0.16607119143009186,\n            \"Y\": 0.263146311044693\n          }\n        ]\n      },\n      \"Id\": \"ab04f63f-4e8a-4fda-8fa8-519c0e199b26\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"013613c2-7cc8-4802-8002-7d9b02f8e4d9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95726013183594,\n      \"Text\": \"32.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038650620728731155,\n          \"Height\": 0.010002532042562962,\n          \"Left\": 0.24577964842319489,\n          \"Top\": 0.25323572754859924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24578019976615906,\n            \"Y\": 0.25323572754859924\n          },\n          {\n            \"X\": 0.28443026542663574,\n            \"Y\": 0.2532556653022766\n          },\n          {\n            \"X\": 0.2844298779964447,\n            \"Y\": 0.26323825120925903\n          },\n          {\n            \"X\": 0.24577964842319489,\n            \"Y\": 0.26321834325790405\n          }\n        ]\n      },\n      \"Id\": \"085f3130-fde9-4fb2-b8e0-3800828fe040\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7a2ec5f6-e404-4375-8f72-9e594661f698\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93513488769531,\n      \"Text\": \"320.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04622955992817879,\n          \"Height\": 0.010005136020481586,\n          \"Left\": 0.37489357590675354,\n          \"Top\": 0.2532278597354889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3748936355113983,\n            \"Y\": 0.2532278597354889\n          },\n          {\n            \"X\": 0.4211229979991913,\n            \"Y\": 0.25325170159339905\n          },\n          {\n            \"X\": 0.4211231470108032,\n            \"Y\": 0.2632329761981964\n          },\n          {\n            \"X\": 0.37489357590675354,\n            \"Y\": 0.26320916414260864\n          }\n        ]\n      },\n      \"Id\": \"55b21ec9-4cc8-4ec3-ad65-342da2ed72e3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ecf1f6a-9e32-4e55-8bde-a49ac447d943\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87945556640625,\n      \"Text\": \"16,640.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06557746231555939,\n          \"Height\": 0.010449650697410107,\n          \"Left\": 0.4640209376811981,\n          \"Top\": 0.2532294690608978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4640209376811981,\n            \"Y\": 0.2532294690608978\n          },\n          {\n            \"X\": 0.529597818851471,\n            \"Y\": 0.25326329469680786\n          },\n          {\n            \"X\": 0.5295984148979187,\n            \"Y\": 0.2636791169643402\n          },\n          {\n            \"X\": 0.4640212655067444,\n            \"Y\": 0.26364535093307495\n          }\n        ]\n      },\n      \"Id\": \"650ce0ce-4cae-4aff-a908-3ed27651d3fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ee4b7057-65b8-4423-8206-f65213d48339\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5367202758789,\n      \"Text\": \"Information\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09015334397554398,\n          \"Height\": 0.011279510334134102,\n          \"Left\": 0.5768205523490906,\n          \"Top\": 0.2517431080341339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768205523490906,\n            \"Y\": 0.2517431080341339\n          },\n          {\n            \"X\": 0.6669726371765137,\n            \"Y\": 0.2517896294593811\n          },\n          {\n            \"X\": 0.666973888874054,\n            \"Y\": 0.26302260160446167\n          },\n          {\n            \"X\": 0.5768213868141174,\n            \"Y\": 0.26297619938850403\n          }\n        ]\n      },\n      \"Id\": \"88051072-c182-4b4a-b54a-74abf8a0e9e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f705033f-5a78-4b2b-bec2-61121ac352f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91167449951172,\n      \"Text\": \"this period\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07585716247558594,\n          \"Height\": 0.012192899361252785,\n          \"Left\": 0.7564947605133057,\n          \"Top\": 0.2525874376296997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7564947605133057,\n            \"Y\": 0.2525874376296997\n          },\n          {\n            \"X\": 0.8323497772216797,\n            \"Y\": 0.25262656807899475\n          },\n          {\n            \"X\": 0.8323519229888916,\n            \"Y\": 0.26478034257888794\n          },\n          {\n            \"X\": 0.7564964890480042,\n            \"Y\": 0.26474127173423767\n          }\n        ]\n      },\n      \"Id\": \"ff1092a3-87b0-44b3-8dbd-047a7b351dd5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2391bded-dfa9-4042-949f-93787a3ae076\",\n            \"902d82e7-66ce-4ab7-ac11-43c5afc7bc69\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91117095947266,\n      \"Text\": \"total to date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08627023547887802,\n          \"Height\": 0.010268193669617176,\n          \"Left\": 0.8563255071640015,\n          \"Top\": 0.25275588035583496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8563255071640015,\n            \"Y\": 0.25275588035583496\n          },\n          {\n            \"X\": 0.942593514919281,\n            \"Y\": 0.2528004050254822\n          },\n          {\n            \"X\": 0.9425957202911377,\n            \"Y\": 0.26302409172058105\n          },\n          {\n            \"X\": 0.8563273549079895,\n            \"Y\": 0.262979656457901\n          }\n        ]\n      },\n      \"Id\": \"c896c7ec-367d-44ff-9a3b-26df3030d745\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"272a19d1-5972-4595-8f8e-2aab7beaa1b4\",\n            \"024452d2-618a-4e7a-9eec-5dfa47fa6504\",\n            \"59b8ddff-76d9-4229-b840-e515f05191b5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94938659667969,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06074037775397301,\n          \"Height\": 0.010400752536952496,\n          \"Left\": 0.04815497621893883,\n          \"Top\": 0.2667449414730072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048156362026929855,\n            \"Y\": 0.2667449414730072\n          },\n          {\n            \"X\": 0.10889535397291183,\n            \"Y\": 0.2667762041091919\n          },\n          {\n            \"X\": 0.1088942214846611,\n            \"Y\": 0.2771456837654114\n          },\n          {\n            \"X\": 0.04815497621893883,\n            \"Y\": 0.27711451053619385\n          }\n        ]\n      },\n      \"Id\": \"dd8fd0a8-1c35-4e72-a317-fd72bc497d23\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8e70620b-b3e0-4d3e-a47e-721dd5b2317a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97119140625,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037271689623594284,\n          \"Height\": 0.009945896454155445,\n          \"Left\": 0.16658230125904083,\n          \"Top\": 0.26755163073539734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16658316552639008,\n            \"Y\": 0.26755163073539734\n          },\n          {\n            \"X\": 0.20385399460792542,\n            \"Y\": 0.2675707936286926\n          },\n          {\n            \"X\": 0.2038532793521881,\n            \"Y\": 0.2774975299835205\n          },\n          {\n            \"X\": 0.16658230125904083,\n            \"Y\": 0.2774783968925476\n          }\n        ]\n      },\n      \"Id\": \"646b4de5-42e9-439a-b7ef-bdea542dcc21\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"910a0dc6-a9a5-4674-a277-48f0dec5acc7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98035430908203,\n      \"Text\": \"1.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029214758425951004,\n          \"Height\": 0.01006261259317398,\n          \"Left\": 0.2552531957626343,\n          \"Top\": 0.2675531804561615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25525373220443726,\n            \"Y\": 0.2675531804561615\n          },\n          {\n            \"X\": 0.2844679653644562,\n            \"Y\": 0.2675682306289673\n          },\n          {\n            \"X\": 0.28446754813194275,\n            \"Y\": 0.27761581540107727\n          },\n          {\n            \"X\": 0.2552531957626343,\n            \"Y\": 0.27760079503059387\n          }\n        ]\n      },\n      \"Id\": \"6b6e4574-87cd-4bdb-b700-0a82174f3779\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1004582d-03fc-442e-980a-632cc7426778\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97041320800781,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03686118870973587,\n          \"Height\": 0.009980025701224804,\n          \"Left\": 0.3845655918121338,\n          \"Top\": 0.2675122618675232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2675122618675232\n          },\n          {\n            \"X\": 0.4214266240596771,\n            \"Y\": 0.26753121614456177\n          },\n          {\n            \"X\": 0.42142677307128906,\n            \"Y\": 0.2774922847747803\n          },\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2774733603000641\n          }\n        ]\n      },\n      \"Id\": \"82f9ad1e-0c66-42de-a757-99858c580837\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46599f68-23c3-4df6-909a-0e5f4c41ee07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96766662597656,\n      \"Text\": \"780.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046530354768037796,\n          \"Height\": 0.010219424962997437,\n          \"Left\": 0.48337647318840027,\n          \"Top\": 0.26737067103385925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48337647318840027,\n            \"Y\": 0.26737067103385925\n          },\n          {\n            \"X\": 0.5299062728881836,\n            \"Y\": 0.26739463210105896\n          },\n          {\n            \"X\": 0.5299068093299866,\n            \"Y\": 0.2775900959968567\n          },\n          {\n            \"X\": 0.4833768606185913,\n            \"Y\": 0.27756622433662415\n          }\n        ]\n      },\n      \"Id\": \"6b3e4860-6950-4f43-9a9d-1b81af39a3f3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9eafa986-33f4-43d1-9c9b-8beca147d189\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68309020996094,\n      \"Text\": \"Group Term Life\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11140777170658112,\n          \"Height\": 0.01232247892767191,\n          \"Left\": 0.5767555832862854,\n          \"Top\": 0.26781925559043884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767555832862854,\n            \"Y\": 0.26781925559043884\n          },\n          {\n            \"X\": 0.6881619095802307,\n            \"Y\": 0.2678765654563904\n          },\n          {\n            \"X\": 0.6881633400917053,\n            \"Y\": 0.2801417112350464\n          },\n          {\n            \"X\": 0.5767565369606018,\n            \"Y\": 0.2800845503807068\n          }\n        ]\n      },\n      \"Id\": \"e964bd4b-f898-4740-a1ec-043f9e1f9071\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ad99093-a1fc-4401-ae26-d8ccd9bec453\",\n            \"0e1d9485-0cd1-4c3f-857d-54416a258eff\",\n            \"195d362a-b6e2-4c5b-9d74-fb1661adf515\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91934967041016,\n      \"Text\": \"0.51\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028741711750626564,\n          \"Height\": 0.009984729811549187,\n          \"Left\": 0.8023031949996948,\n          \"Top\": 0.2685137987136841\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8023031949996948,\n            \"Y\": 0.2685137987136841\n          },\n          {\n            \"X\": 0.8310431241989136,\n            \"Y\": 0.2685285806655884\n          },\n          {\n            \"X\": 0.8310449123382568,\n            \"Y\": 0.2784985303878784\n          },\n          {\n            \"X\": 0.8023048043251038,\n            \"Y\": 0.2784837782382965\n          }\n        ]\n      },\n      \"Id\": \"3544c748-5686-45ba-b676-487cc38870cf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a5d5ce60-dc3b-4137-96e0-51ca5f3f1dc0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96684265136719,\n      \"Text\": \"27.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037982746958732605,\n          \"Height\": 0.010073179379105568,\n          \"Left\": 0.9043900370597839,\n          \"Top\": 0.268672376871109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9043900370597839,\n            \"Y\": 0.268672376871109\n          },\n          {\n            \"X\": 0.942370593547821,\n            \"Y\": 0.26869192719459534\n          },\n          {\n            \"X\": 0.942372739315033,\n            \"Y\": 0.27874556183815\n          },\n          {\n            \"X\": 0.9043920636177063,\n            \"Y\": 0.27872607111930847\n          }\n        ]\n      },\n      \"Id\": \"5647884f-d26b-4533-b749-27940da2cc83\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"79f8d481-27c5-4fa5-8981-71e5041efcc3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93984985351562,\n      \"Text\": \"Holiday\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050633981823921204,\n          \"Height\": 0.012951508164405823,\n          \"Left\": 0.04812180995941162,\n          \"Top\": 0.2820318341255188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04812353476881981,\n            \"Y\": 0.2820318341255188\n          },\n          {\n            \"X\": 0.09875579178333282,\n            \"Y\": 0.28205782175064087\n          },\n          {\n            \"X\": 0.09875432401895523,\n            \"Y\": 0.2949833571910858\n          },\n          {\n            \"X\": 0.04812180995941162,\n            \"Y\": 0.2949574291706085\n          }\n        ]\n      },\n      \"Id\": \"832037e0-4871-4085-8126-bd462a3d9e40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2afc07dc-29b3-45e7-bc76-efdc5c314ab1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9839096069336,\n      \"Text\": \"10.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03735325112938881,\n          \"Height\": 0.00993636716157198,\n          \"Left\": 0.1664377748966217,\n          \"Top\": 0.2827611565589905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16643863916397095,\n            \"Y\": 0.2827611565589905\n          },\n          {\n            \"X\": 0.20379102230072021,\n            \"Y\": 0.28278031945228577\n          },\n          {\n            \"X\": 0.2037903070449829,\n            \"Y\": 0.2926975190639496\n          },\n          {\n            \"X\": 0.1664377748966217,\n            \"Y\": 0.2926783859729767\n          }\n        ]\n      },\n      \"Id\": \"208b44e5-1a4b-48fd-a183-69380e46ffcc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a6a9e18-29bd-44a3-9a2a-f619c89e1792\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93985748291016,\n      \"Text\": \"8.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0303603895008564,\n          \"Height\": 0.009918317198753357,\n          \"Left\": 0.2541239559650421,\n          \"Top\": 0.282818078994751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2541244626045227,\n            \"Y\": 0.282818078994751\n          },\n          {\n            \"X\": 0.2844843566417694,\n            \"Y\": 0.28283363580703735\n          },\n          {\n            \"X\": 0.284483939409256,\n            \"Y\": 0.29273638129234314\n          },\n          {\n            \"X\": 0.2541239559650421,\n            \"Y\": 0.29272085428237915\n          }\n        ]\n      },\n      \"Id\": \"78e7601f-2e04-4f67-9eca-5572e5c760a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c927005-1f6e-4e71-8af9-7e7bc0fc2d73\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92776489257812,\n      \"Text\": \"80.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03822328895330429,\n          \"Height\": 0.009878597222268581,\n          \"Left\": 0.3833726644515991,\n          \"Top\": 0.2828782796859741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.2828782796859741\n          },\n          {\n            \"X\": 0.42159581184387207,\n            \"Y\": 0.2828978896141052\n          },\n          {\n            \"X\": 0.421595960855484,\n            \"Y\": 0.2927568852901459\n          },\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.29273730516433716\n          }\n        ]\n      },\n      \"Id\": \"a3d3d723-8df8-4bf3-b369-d0e5ff65615d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e93d0c0-eb9a-4471-b646-377c331b6825\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9427261352539,\n      \"Text\": \"4,160.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058800388127565384,\n          \"Height\": 0.010359588079154491,\n          \"Left\": 0.47135302424430847,\n          \"Top\": 0.2825688123703003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47135302424430847,\n            \"Y\": 0.2825688123703003\n          },\n          {\n            \"X\": 0.5301528573036194,\n            \"Y\": 0.28259897232055664\n          },\n          {\n            \"X\": 0.5301533937454224,\n            \"Y\": 0.29292839765548706\n          },\n          {\n            \"X\": 0.4713533818721771,\n            \"Y\": 0.2928982973098755\n          }\n        ]\n      },\n      \"Id\": \"716fb2cd-4fe0-4c2e-be2e-f6cfd5757ce7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"72970b90-e3f6-4ad4-b36f-9c9d6b67241c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82693481445312,\n      \"Text\": \"Loan Amt Paid\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09797006845474243,\n          \"Height\": 0.010524420067667961,\n          \"Left\": 0.5767179727554321,\n          \"Top\": 0.28300994634628296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767179727554321,\n            \"Y\": 0.28300994634628296\n          },\n          {\n            \"X\": 0.674686849117279,\n            \"Y\": 0.283060222864151\n          },\n          {\n            \"X\": 0.6746880412101746,\n            \"Y\": 0.29353436827659607\n          },\n          {\n            \"X\": 0.5767187476158142,\n            \"Y\": 0.29348424077033997\n          }\n        ]\n      },\n      \"Id\": \"d6aca9db-5457-48c9-a9fd-909781630710\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81bc505a-69fd-484f-af61-cf5be23cf0d8\",\n            \"7b928b73-75bc-4dc3-9e82-e48ef3974067\",\n            \"3768fca1-b5f7-40af-ba03-c5a5e04a9712\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92259216308594,\n      \"Text\": \"840.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046753834933042526,\n          \"Height\": 0.010666605085134506,\n          \"Left\": 0.8956746459007263,\n          \"Top\": 0.28368595242500305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8956746459007263,\n            \"Y\": 0.28368595242500305\n          },\n          {\n            \"X\": 0.9424261450767517,\n            \"Y\": 0.28370994329452515\n          },\n          {\n            \"X\": 0.942428469657898,\n            \"Y\": 0.29435256123542786\n          },\n          {\n            \"X\": 0.8956767916679382,\n            \"Y\": 0.29432862997055054\n          }\n        ]\n      },\n      \"Id\": \"300750d1-c3c7-4988-b6da-d82c04043381\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d79ae10f-be73-4f56-8fa2-8eaf706a01b3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.42350769042969,\n      \"Text\": \"Tuition\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04613829031586647,\n          \"Height\": 0.01095814909785986,\n          \"Left\": 0.04747363179922104,\n          \"Top\": 0.2969394624233246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.047475092113018036,\n            \"Y\": 0.2969394624233246\n          },\n          {\n            \"X\": 0.09361192584037781,\n            \"Y\": 0.29696306586265564\n          },\n          {\n            \"X\": 0.09361065924167633,\n            \"Y\": 0.3078975975513458\n          },\n          {\n            \"X\": 0.04747363179922104,\n            \"Y\": 0.30787405371665955\n          }\n        ]\n      },\n      \"Id\": \"3badb3d2-efff-472e-987c-35dc8727f948\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8df60e36-6dc6-4e56-9b9c-ac90dbff50d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 65.8167953491211,\n      \"Text\": \"37.43*\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04241195693612099,\n          \"Height\": 0.009879774414002895,\n          \"Left\": 0.3839637041091919,\n          \"Top\": 0.2979101836681366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.2979101836681366\n          },\n          {\n            \"X\": 0.42637550830841064,\n            \"Y\": 0.29793187975883484\n          },\n          {\n            \"X\": 0.4263756573200226,\n            \"Y\": 0.30778995156288147\n          },\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.307768315076828\n          }\n        ]\n      },\n      \"Id\": \"8689085a-b238-4c87-b701-9e87b7a98433\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"35ae6aa2-def6-4427-948e-d5bbe83aac7c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84208679199219,\n      \"Text\": \"1,946.80\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058109480887651443,\n          \"Height\": 0.010069272480905056,\n          \"Left\": 0.4719546139240265,\n          \"Top\": 0.29820770025253296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4719546139240265,\n            \"Y\": 0.29820770025253296\n          },\n          {\n            \"X\": 0.5300635099411011,\n            \"Y\": 0.2982374131679535\n          },\n          {\n            \"X\": 0.5300641059875488,\n            \"Y\": 0.3082769811153412\n          },\n          {\n            \"X\": 0.47195497155189514,\n            \"Y\": 0.30824732780456543\n          }\n        ]\n      },\n      \"Id\": \"1a01897e-b875-495b-8e66-a12d2a441081\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0891535a-fa26-43eb-9809-64237ee1fb0a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8459701538086,\n      \"Text\": \"Gross Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07325101643800735,\n          \"Height\": 0.012313134036958218,\n          \"Left\": 0.16702543199062347,\n          \"Top\": 0.31260812282562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16702648997306824,\n            \"Y\": 0.31260812282562256\n          },\n          {\n            \"X\": 0.24027644097805023,\n            \"Y\": 0.31264546513557434\n          },\n          {\n            \"X\": 0.24027572572231293,\n            \"Y\": 0.32492125034332275\n          },\n          {\n            \"X\": 0.16702543199062347,\n            \"Y\": 0.32488399744033813\n          }\n        ]\n      },\n      \"Id\": \"71b1265c-0f4a-4282-aa6b-04474aae3584\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce3537c4-9283-43a4-9636-a54ee7e1bea9\",\n            \"1004a297-a725-41ee-bdd0-4279d2b20335\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 83.06597137451172,\n      \"Text\": \"$ 452.43\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087379530072212,\n          \"Height\": 0.010658894665539265,\n          \"Left\": 0.3595705032348633,\n          \"Top\": 0.3125160336494446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35957059264183044,\n            \"Y\": 0.3125160336494446\n          },\n          {\n            \"X\": 0.42044416069984436,\n            \"Y\": 0.31254708766937256\n          },\n          {\n            \"X\": 0.4204442799091339,\n            \"Y\": 0.32317495346069336\n          },\n          {\n            \"X\": 0.3595705032348633,\n            \"Y\": 0.32314395904541016\n          }\n        ]\n      },\n      \"Id\": \"0c3f3c5a-adf2-4c16-a11c-1ce43fdf333a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7116a7da-e1fd-4185-9c54-2d89eb6f1214\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82225799560547,\n      \"Text\": \"23,526.80\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0667140781879425,\n          \"Height\": 0.0105618080124259,\n          \"Left\": 0.46298760175704956,\n          \"Top\": 0.31343764066696167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46298760175704956,\n            \"Y\": 0.31343764066696167\n          },\n          {\n            \"X\": 0.5297011137008667,\n            \"Y\": 0.3134716749191284\n          },\n          {\n            \"X\": 0.5297016501426697,\n            \"Y\": 0.32399946451187134\n          },\n          {\n            \"X\": 0.4629879295825958,\n            \"Y\": 0.32396548986434937\n          }\n        ]\n      },\n      \"Id\": \"210717d8-86d3-4187-9da6-ed83f2b6fe25\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d9e1e57-cb15-4791-ad88-2ec7468379f1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54537200927734,\n      \"Text\": \"Vac Hrs\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.057751111686229706,\n          \"Height\": 0.01052361261099577,\n          \"Left\": 0.5758248567581177,\n          \"Top\": 0.31365978717803955\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758248567581177,\n            \"Y\": 0.31365978717803955\n          },\n          {\n            \"X\": 0.633574903011322,\n            \"Y\": 0.3136892318725586\n          },\n          {\n            \"X\": 0.6335759162902832,\n            \"Y\": 0.3241834044456482\n          },\n          {\n            \"X\": 0.5758256316184998,\n            \"Y\": 0.3241540193557739\n          }\n        ]\n      },\n      \"Id\": \"67295890-a126-4c5c-bf8b-137e6eecfa94\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c7ec916-4a44-4299-a218-fd7909537f2d\",\n            \"709143fc-5137-40c8-a2ed-e094bea1a6e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9650650024414,\n      \"Text\": \"40.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038161877542734146,\n          \"Height\": 0.010520696640014648,\n          \"Left\": 0.904356062412262,\n          \"Top\": 0.31415197253227234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.904356062412262,\n            \"Y\": 0.31415197253227234\n          },\n          {\n            \"X\": 0.9425156712532043,\n            \"Y\": 0.3141714334487915\n          },\n          {\n            \"X\": 0.9425179958343506,\n            \"Y\": 0.324672669172287\n          },\n          {\n            \"X\": 0.9043582081794739,\n            \"Y\": 0.3246532678604126\n          }\n        ]\n      },\n      \"Id\": \"91456476-bc9c-40c1-9a19-45dfc917d15b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1157363-ccc1-4e5e-9a6b-eab4591c9962\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6441879272461,\n      \"Text\": \"Sick Hrs\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05672655999660492,\n          \"Height\": 0.010479644872248173,\n          \"Left\": 0.5764848589897156,\n          \"Top\": 0.329056054353714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764848589897156,\n            \"Y\": 0.329056054353714\n          },\n          {\n            \"X\": 0.6332103610038757,\n            \"Y\": 0.3290849030017853\n          },\n          {\n            \"X\": 0.6332113742828369,\n            \"Y\": 0.3395357131958008\n          },\n          {\n            \"X\": 0.5764856338500977,\n            \"Y\": 0.33950692415237427\n          }\n        ]\n      },\n      \"Id\": \"851ee3fa-cefa-43cd-81a7-41db91f3b8ec\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2e58008e-1e63-46c4-b755-4a4b4cea9572\",\n            \"1bfc6c9f-7a40-4828-bfcc-61161f8a0f0a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.833984375,\n      \"Text\": \"16.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03717483952641487,\n          \"Height\": 0.010468751192092896,\n          \"Left\": 0.9054335355758667,\n          \"Top\": 0.3296695649623871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054335355758667,\n            \"Y\": 0.3296695649623871\n          },\n          {\n            \"X\": 0.9426060914993286,\n            \"Y\": 0.3296884596347809\n          },\n          {\n            \"X\": 0.9426083564758301,\n            \"Y\": 0.34013831615448\n          },\n          {\n            \"X\": 0.9054356813430786,\n            \"Y\": 0.34011945128440857\n          }\n        ]\n      },\n      \"Id\": \"cbfaeccd-8525-4fbd-9e65-208910d92597\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47030a68-6a4f-4552-9429-f76d3efff98a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74022674560547,\n      \"Text\": \"Deductions\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09023692458868027,\n          \"Height\": 0.011784988455474377,\n          \"Left\": 0.047912683337926865,\n          \"Top\": 0.34313178062438965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04791424795985222,\n            \"Y\": 0.34313178062438965\n          },\n          {\n            \"X\": 0.13814960420131683,\n            \"Y\": 0.34317752718925476\n          },\n          {\n            \"X\": 0.1381484568119049,\n            \"Y\": 0.3549167513847351\n          },\n          {\n            \"X\": 0.047912683337926865,\n            \"Y\": 0.35487112402915955\n          }\n        ]\n      },\n      \"Id\": \"5e507713-a621-4d70-8048-5f36e105e322\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b1fd60c8-19c1-4fc3-84eb-ae6d8886ff84\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80423736572266,\n      \"Text\": \"Statutory\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06641349196434021,\n          \"Height\": 0.01263391226530075,\n          \"Left\": 0.16528518497943878,\n          \"Top\": 0.3442513644695282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16528627276420593,\n            \"Y\": 0.3442513644695282\n          },\n          {\n            \"X\": 0.2316986620426178,\n            \"Y\": 0.3442850112915039\n          },\n          {\n            \"X\": 0.2316979020833969,\n            \"Y\": 0.35688528418540955\n          },\n          {\n            \"X\": 0.16528518497943878,\n            \"Y\": 0.3568516969680786\n          }\n        ]\n      },\n      \"Id\": \"f3dbbb87-38e1-477f-9552-32e56c0bc468\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"04d41d85-6498-4b62-9f57-c4ea41811a31\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89875793457031,\n      \"Text\": \"Title\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029553616419434547,\n          \"Height\": 0.010047758929431438,\n          \"Left\": 0.5760388970375061,\n          \"Top\": 0.3433203101158142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5760388970375061,\n            \"Y\": 0.3433203101158142\n          },\n          {\n            \"X\": 0.6055916547775269,\n            \"Y\": 0.3433353006839752\n          },\n          {\n            \"X\": 0.6055925488471985,\n            \"Y\": 0.3533680737018585\n          },\n          {\n            \"X\": 0.5760396718978882,\n            \"Y\": 0.3533531129360199\n          }\n        ]\n      },\n      \"Id\": \"80483639-d0f6-438b-9557-9b245db1b660\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60549656-64af-446e-96f8-53589a2c23ad\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52043151855469,\n      \"Text\": \"Operator\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05878404900431633,\n          \"Height\": 0.012305991724133492,\n          \"Left\": 0.7732459902763367,\n          \"Top\": 0.34344255924224854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7732459902763367,\n            \"Y\": 0.34344255924224854\n          },\n          {\n            \"X\": 0.8320278525352478,\n            \"Y\": 0.34347236156463623\n          },\n          {\n            \"X\": 0.8320299983024597,\n            \"Y\": 0.35574856400489807\n          },\n          {\n            \"X\": 0.7732478380203247,\n            \"Y\": 0.35571882128715515\n          }\n        ]\n      },\n      \"Id\": \"81d536e7-70b5-4644-8803-cbb686226e95\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac72e0ef-1510-4f03-a124-4659ee31e2c4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54546356201172,\n      \"Text\": \"Federal Income Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13092420995235443,\n          \"Height\": 0.010644624009728432,\n          \"Left\": 0.16601119935512543,\n          \"Top\": 0.3594367802143097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16601210832595825,\n            \"Y\": 0.3594367802143097\n          },\n          {\n            \"X\": 0.29693540930747986,\n            \"Y\": 0.3595029413700104\n          },\n          {\n            \"X\": 0.2969350218772888,\n            \"Y\": 0.3700813949108124\n          },\n          {\n            \"X\": 0.16601119935512543,\n            \"Y\": 0.37001538276672363\n          }\n        ]\n      },\n      \"Id\": \"91546705-209c-4e27-beab-9da2c4f5e29a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"59d82251-044c-4c9a-960d-001e167e91f3\",\n            \"00ff535d-064d-4444-8225-4aaea6e786c7\",\n            \"0b6af67c-6d89-47bf-9f2a-9c80733ea80f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.72803497314453,\n      \"Text\": \"-40.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04919637739658356,\n          \"Height\": 0.009934278205037117,\n          \"Left\": 0.37207096815109253,\n          \"Top\": 0.36035916209220886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720710277557373,\n            \"Y\": 0.36035916209220886\n          },\n          {\n            \"X\": 0.42126721143722534,\n            \"Y\": 0.3603840172290802\n          },\n          {\n            \"X\": 0.4212673306465149,\n            \"Y\": 0.37029343843460083\n          },\n          {\n            \"X\": 0.37207096815109253,\n            \"Y\": 0.3702686131000519\n          }\n        ]\n      },\n      \"Id\": \"c075621b-a85c-4245-92e9-95a21f7a8e12\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2139a99f-8a8d-452a-91d5-ec5a41e550f6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84791564941406,\n      \"Text\": \"2,111.20\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05892305448651314,\n          \"Height\": 0.01003853976726532,\n          \"Left\": 0.47084134817123413,\n          \"Top\": 0.3605228662490845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47084134817123413,\n            \"Y\": 0.3605228662490845\n          },\n          {\n            \"X\": 0.5297638177871704,\n            \"Y\": 0.3605526387691498\n          },\n          {\n            \"X\": 0.5297644138336182,\n            \"Y\": 0.3705613911151886\n          },\n          {\n            \"X\": 0.4708416759967804,\n            \"Y\": 0.37053167819976807\n          }\n        ]\n      },\n      \"Id\": \"57a4d6cc-7423-473d-a9ce-ae6891d96161\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2be678e5-a22d-4bf2-be30-efb8fb30be70\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94284057617188,\n      \"Text\": \"Social Security Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12738551199436188,\n          \"Height\": 0.012634352780878544,\n          \"Left\": 0.16579467058181763,\n          \"Top\": 0.3736853003501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16579577326774597,\n            \"Y\": 0.3736853003501892\n          },\n          {\n            \"X\": 0.2931801974773407,\n            \"Y\": 0.3737494945526123\n          },\n          {\n            \"X\": 0.2931797206401825,\n            \"Y\": 0.386319637298584\n          },\n          {\n            \"X\": 0.16579467058181763,\n            \"Y\": 0.3862556219100952\n          }\n        ]\n      },\n      \"Id\": \"ac31959e-7057-41b6-9aea-90959b649881\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c0e2faea-9bc7-49f7-8879-54cb3533ebc1\",\n            \"7e960910-c609-46db-9761-06d214177bdc\",\n            \"4be1d5f3-1ba0-4231-a4ee-9d5c525cca23\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.64322662353516,\n      \"Text\": \"-28.05\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048776742070913315,\n          \"Height\": 0.009982314892113209,\n          \"Left\": 0.3720327615737915,\n          \"Top\": 0.3746964931488037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720328211784363,\n            \"Y\": 0.3746964931488037\n          },\n          {\n            \"X\": 0.42080938816070557,\n            \"Y\": 0.37472108006477356\n          },\n          {\n            \"X\": 0.4208095073699951,\n            \"Y\": 0.38467881083488464\n          },\n          {\n            \"X\": 0.3720327615737915,\n            \"Y\": 0.38465428352355957\n          }\n        ]\n      },\n      \"Id\": \"729701f9-1c03-4da5-b3f7-7dcbcab944ff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37033432-69bf-4f05-aa8c-617a36ef3ffb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.878662109375,\n      \"Text\": \"1,458.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0583278127014637,\n          \"Height\": 0.010592943988740444,\n          \"Left\": 0.4716467261314392,\n          \"Top\": 0.374478280544281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716467261314392,\n            \"Y\": 0.374478280544281\n          },\n          {\n            \"X\": 0.5299739241600037,\n            \"Y\": 0.3745076656341553\n          },\n          {\n            \"X\": 0.5299745202064514,\n            \"Y\": 0.3850712180137634\n          },\n          {\n            \"X\": 0.47164708375930786,\n            \"Y\": 0.38504189252853394\n          }\n        ]\n      },\n      \"Id\": \"427c6d06-238f-43ae-a55d-ce848c214667\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b829d152-a9d5-4238-beab-7f4370763713\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9271240234375,\n      \"Text\": \"Medicare Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09063677489757538,\n          \"Height\": 0.010500307194888592,\n          \"Left\": 0.16576078534126282,\n          \"Top\": 0.3891349136829376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16576170921325684,\n            \"Y\": 0.3891349136829376\n          },\n          {\n            \"X\": 0.2563975751399994,\n            \"Y\": 0.389180451631546\n          },\n          {\n            \"X\": 0.2563970386981964,\n            \"Y\": 0.3996352255344391\n          },\n          {\n            \"X\": 0.16576078534126282,\n            \"Y\": 0.39958977699279785\n          }\n        ]\n      },\n      \"Id\": \"5cac025f-2383-48fc-a58f-eef33fea4838\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9780c953-5a6e-4a2f-81d9-4db89edc1480\",\n            \"4253d1c3-157c-47a3-bba1-73657c60b044\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 78.7468490600586,\n      \"Text\": \"-6.56\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04244004189968109,\n          \"Height\": 0.009964492172002792,\n          \"Left\": 0.37839993834495544,\n          \"Top\": 0.3901442885398865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37839996814727783,\n            \"Y\": 0.3901442885398865\n          },\n          {\n            \"X\": 0.4208398461341858,\n            \"Y\": 0.39016562700271606\n          },\n          {\n            \"X\": 0.42083999514579773,\n            \"Y\": 0.40010878443717957\n          },\n          {\n            \"X\": 0.37839993834495544,\n            \"Y\": 0.40008750557899475\n          }\n        ]\n      },\n      \"Id\": \"5de83aee-1729-4349-a388-334e4cfa519a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"03a9dd3f-096a-4360-805f-ec6c4a0234a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8979721069336,\n      \"Text\": \"341.12\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046127788722515106,\n          \"Height\": 0.010035618208348751,\n          \"Left\": 0.48332643508911133,\n          \"Top\": 0.3897542953491211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48332643508911133,\n            \"Y\": 0.3897542953491211\n          },\n          {\n            \"X\": 0.529453694820404,\n            \"Y\": 0.38977745175361633\n          },\n          {\n            \"X\": 0.529454231262207,\n            \"Y\": 0.3997898995876312\n          },\n          {\n            \"X\": 0.48332682251930237,\n            \"Y\": 0.3997667729854584\n          }\n        ]\n      },\n      \"Id\": \"e232f40a-5bfa-4d34-8021-955adadad9bb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bc565239-2ef4-4df8-8a68-6b734eb9d898\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65757751464844,\n      \"Text\": \"Important Notes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13237833976745605,\n          \"Height\": 0.013642820529639721,\n          \"Left\": 0.5768430829048157,\n          \"Top\": 0.3883585035800934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768430829048157,\n            \"Y\": 0.3883585035800934\n          },\n          {\n            \"X\": 0.7092196941375732,\n            \"Y\": 0.3884250223636627\n          },\n          {\n            \"X\": 0.7092214226722717,\n            \"Y\": 0.4020013213157654\n          },\n          {\n            \"X\": 0.5768440961837769,\n            \"Y\": 0.40193498134613037\n          }\n        ]\n      },\n      \"Id\": \"6da6a303-60aa-48cd-ba01-bfd3b64b5b28\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ff26122-bab7-4d00-88c6-ad969c79fc5a\",\n            \"05160f5d-5a62-400b-9c36-dd4e6b2902ef\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.1019515991211,\n      \"Text\": \"NY State Income Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14121556282043457,\n          \"Height\": 0.010689537972211838,\n          \"Left\": 0.16564060747623444,\n          \"Top\": 0.4043307602405548\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16564153134822845,\n            \"Y\": 0.4043307602405548\n          },\n          {\n            \"X\": 0.3068561553955078,\n            \"Y\": 0.4044014811515808\n          },\n          {\n            \"X\": 0.30685582756996155,\n            \"Y\": 0.41502028703689575\n          },\n          {\n            \"X\": 0.16564060747623444,\n            \"Y\": 0.4149497151374817\n          }\n        ]\n      },\n      \"Id\": \"1a7c4b03-68bb-4807-8051-dd831c526cf5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"00bfee77-b0ca-452e-808f-2efe754dd9d0\",\n            \"bc7b307a-b727-4277-8294-a328efb27f9b\",\n            \"1d92b6bc-13e5-449a-abf7-63fc85c4ad5c\",\n            \"c7faf137-5be6-4023-b2bc-4e1bc4f6e21d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.22126007080078,\n      \"Text\": \"-8.43\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039588768035173416,\n          \"Height\": 0.01017859298735857,\n          \"Left\": 0.3816371262073517,\n          \"Top\": 0.40510061383247375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816371560096741,\n            \"Y\": 0.40510061383247375\n          },\n          {\n            \"X\": 0.42122575640678406,\n            \"Y\": 0.40512046217918396\n          },\n          {\n            \"X\": 0.421225905418396,\n            \"Y\": 0.41527920961380005\n          },\n          {\n            \"X\": 0.3816371262073517,\n            \"Y\": 0.4152594208717346\n          }\n        ]\n      },\n      \"Id\": \"010f998e-e7fb-405a-b82f-f182a598a0d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"91ce2559-871d-4c65-a33d-4adfb69ed8a9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.59510803222656,\n      \"Text\": \"438.36\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04687277972698212,\n          \"Height\": 0.010192235000431538,\n          \"Left\": 0.48327845335006714,\n          \"Top\": 0.40503618121147156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48327845335006714,\n            \"Y\": 0.40503618121147156\n          },\n          {\n            \"X\": 0.5301506519317627,\n            \"Y\": 0.40505966544151306\n          },\n          {\n            \"X\": 0.5301512479782104,\n            \"Y\": 0.4152284264564514\n          },\n          {\n            \"X\": 0.4832788407802582,\n            \"Y\": 0.4152050018310547\n          }\n        ]\n      },\n      \"Id\": \"d3a63b11-9f3c-4adf-a732-6553a9a35bf3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"acf660a8-abe0-4867-a7de-152c68e2df3b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86100769042969,\n      \"Text\": \"EFFECTIVE THIS PAY PERIOD YOUR REGULAR\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2863543927669525,\n          \"Height\": 0.009734034538269043,\n          \"Left\": 0.576397716999054,\n          \"Top\": 0.4064553380012512\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576397716999054,\n            \"Y\": 0.4064553380012512\n          },\n          {\n            \"X\": 0.8627502918243408,\n            \"Y\": 0.4065987169742584\n          },\n          {\n            \"X\": 0.8627520799636841,\n            \"Y\": 0.41618937253952026\n          },\n          {\n            \"X\": 0.5763984322547913,\n            \"Y\": 0.41604626178741455\n          }\n        ]\n      },\n      \"Id\": \"f48fb3b6-635c-4996-b1af-934be4b3f386\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b6667b2d-341e-402d-9a17-e1ab66710bd8\",\n            \"912a926f-57ee-4e00-a4f7-48241549d9c0\",\n            \"259dc0f1-0526-42f0-8b4a-02232fa69041\",\n            \"ad57deb2-0791-4ca6-abca-f58ea2ec7729\",\n            \"0891eed3-1fdc-4be4-8ec5-86d6ec386862\",\n            \"cc34168d-5c78-4793-8738-1d5f7e389be6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.23914337158203,\n      \"Text\": \"NYC Income Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11266598105430603,\n          \"Height\": 0.010376174002885818,\n          \"Left\": 0.16557785868644714,\n          \"Top\": 0.419806569814682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16557876765727997,\n            \"Y\": 0.419806569814682\n          },\n          {\n            \"X\": 0.2782438397407532,\n            \"Y\": 0.41986283659935\n          },\n          {\n            \"X\": 0.27824339270591736,\n            \"Y\": 0.4301827549934387\n          },\n          {\n            \"X\": 0.16557785868644714,\n            \"Y\": 0.4301266074180603\n          }\n        ]\n      },\n      \"Id\": \"14d201a6-cf5c-428a-b7ae-d6740855bab7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2543a3be-0340-4f36-a802-a58c7e95d36a\",\n            \"e913f58a-a03c-47d3-b12a-5655e4d4d36e\",\n            \"760c7c58-e7da-4aa2-b8a4-28be9ea54bce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.88884735107422,\n      \"Text\": \"-5.94\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03948596119880676,\n          \"Height\": 0.009952288120985031,\n          \"Left\": 0.3815154433250427,\n          \"Top\": 0.42050880193710327\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3815154731273651,\n            \"Y\": 0.42050880193710327\n          },\n          {\n            \"X\": 0.42100128531455994,\n            \"Y\": 0.4205285310745239\n          },\n          {\n            \"X\": 0.4210014045238495,\n            \"Y\": 0.4304611086845398\n          },\n          {\n            \"X\": 0.3815154433250427,\n            \"Y\": 0.4304414391517639\n          }\n        ]\n      },\n      \"Id\": \"d16323ae-889c-4284-89dd-b4120a5a23ff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"19d893f3-9acd-47d3-8fad-916a2cc16911\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54515075683594,\n      \"Text\": \"308.88\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04655349999666214,\n          \"Height\": 0.009958788752555847,\n          \"Left\": 0.48320090770721436,\n          \"Top\": 0.4206897020339966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48320090770721436,\n            \"Y\": 0.4206897020339966\n          },\n          {\n            \"X\": 0.5297538638114929,\n            \"Y\": 0.420712947845459\n          },\n          {\n            \"X\": 0.5297544002532959,\n            \"Y\": 0.43064847588539124\n          },\n          {\n            \"X\": 0.483201265335083,\n            \"Y\": 0.4306252896785736\n          }\n        ]\n      },\n      \"Id\": \"8cee717d-40cc-487f-be92-0fff42a97afc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9dd348ff-e9ab-46d4-b297-7f9285958f0e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84711456298828,\n      \"Text\": \"HOURLY RATE HAS BEEN CHANGED FROM $8.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30472785234451294,\n          \"Height\": 0.010281101800501347,\n          \"Left\": 0.5761998891830444,\n          \"Top\": 0.4227530360221863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5761998891830444,\n            \"Y\": 0.4227530360221863\n          },\n          {\n            \"X\": 0.8809257745742798,\n            \"Y\": 0.4229051172733307\n          },\n          {\n            \"X\": 0.8809277415275574,\n            \"Y\": 0.43303412199020386\n          },\n          {\n            \"X\": 0.5762006640434265,\n            \"Y\": 0.4328823387622833\n          }\n        ]\n      },\n      \"Id\": \"2d2bfb70-450d-4084-9c6b-cb3d9bd3d1b0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cd73d5ae-61e5-4a51-bcc8-7d45bd8efa4a\",\n            \"fb0e8553-83f3-4882-a3a5-fac217e6c247\",\n            \"e2cb431a-e4f7-4324-a3b7-bee94aee16ce\",\n            \"f4103f41-b4a9-4610-80c9-9764585ca7c1\",\n            \"38a78061-fb00-4071-a515-ee7b11ac4948\",\n            \"02375807-c26f-4f24-98d6-745d423b00b5\",\n            \"8d76a30c-9430-4425-830f-8a6244dba2f2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.5591049194336,\n      \"Text\": \"NY SUI/SDI Tax\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10613624006509781,\n          \"Height\": 0.01058150827884674,\n          \"Left\": 0.16559144854545593,\n          \"Top\": 0.4350857436656952\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16559235751628876,\n            \"Y\": 0.4350857436656952\n          },\n          {\n            \"X\": 0.27172768115997314,\n            \"Y\": 0.4351385831832886\n          },\n          {\n            \"X\": 0.27172720432281494,\n            \"Y\": 0.44566723704338074\n          },\n          {\n            \"X\": 0.16559144854545593,\n            \"Y\": 0.4456145167350769\n          }\n        ]\n      },\n      \"Id\": \"b9465376-26be-4e09-98cd-995b8f4fd3c0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c191ce95-28e3-46f5-ae2a-49e7a3c26f8b\",\n            \"b3676fd6-4cec-4c3e-825e-46e961fdbba8\",\n            \"3519be0d-6c77-4c32-b229-d90910e2400b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.85523223876953,\n      \"Text\": \"-0.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03971990942955017,\n          \"Height\": 0.009622905403375626,\n          \"Left\": 0.3816964030265808,\n          \"Top\": 0.43616586923599243\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.43616586923599243\n          },\n          {\n            \"X\": 0.42141616344451904,\n            \"Y\": 0.43618565797805786\n          },\n          {\n            \"X\": 0.421416312456131,\n            \"Y\": 0.44578877091407776\n          },\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.4457690417766571\n          }\n        ]\n      },\n      \"Id\": \"dcfffca3-57a2-43fd-bbb4-2cceae7b2e64\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a4eb6f7-2bc0-457c-9033-acb9127b7014\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.60066986083984,\n      \"Text\": \"31.20\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03847702220082283,\n          \"Height\": 0.009795776568353176,\n          \"Left\": 0.4915713369846344,\n          \"Top\": 0.4360893666744232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4915713369846344,\n            \"Y\": 0.4360893666744232\n          },\n          {\n            \"X\": 0.5300478339195251,\n            \"Y\": 0.4361085295677185\n          },\n          {\n            \"X\": 0.5300483703613281,\n            \"Y\": 0.44588515162467957\n          },\n          {\n            \"X\": 0.4915717542171478,\n            \"Y\": 0.44586601853370667\n          }\n        ]\n      },\n      \"Id\": \"bf58b0bc-be17-4dee-89a6-6780124096cf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5a688c8-4e37-4303-91fe-0d003a034b5d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.13438415527344,\n      \"Text\": \"TO $10.00 PER HOUR\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13700613379478455,\n          \"Height\": 0.009491557255387306,\n          \"Left\": 0.5758348107337952,\n          \"Top\": 0.4396425783634186\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758348107337952,\n            \"Y\": 0.4396425783634186\n          },\n          {\n            \"X\": 0.7128397226333618,\n            \"Y\": 0.43971073627471924\n          },\n          {\n            \"X\": 0.7128409743309021,\n            \"Y\": 0.44913414120674133\n          },\n          {\n            \"X\": 0.5758355259895325,\n            \"Y\": 0.4490661025047302\n          }\n        ]\n      },\n      \"Id\": \"c577a0f1-e05b-4650-adb0-cc73d595346d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2cadf5b6-2a65-426e-81e0-ad443c078be3\",\n            \"bd1a730f-b12b-4f7a-8e58-880c99dd6fa2\",\n            \"f97d9ea6-9c5e-419d-9021-0c2275d3aab4\",\n            \"99f7bf84-c5a1-47ba-b593-612869c293fd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 32.72475051879883,\n      \"Text\": \"&\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009392748586833477,\n          \"Height\": 0.012527450919151306,\n          \"Left\": 0.9785712957382202,\n          \"Top\": 0.44773444533348083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9785712957382202,\n            \"Y\": 0.44773444533348083\n          },\n          {\n            \"X\": 0.9879610538482666,\n            \"Y\": 0.4477391242980957\n          },\n          {\n            \"X\": 0.9879640340805054,\n            \"Y\": 0.46026191115379333\n          },\n          {\n            \"X\": 0.9785742163658142,\n            \"Y\": 0.46025723218917847\n          }\n        ]\n      },\n      \"Id\": \"17e32b94-8051-46a3-8bc1-a0ad54fd2ca7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b33292b-eb6e-4f0d-ac56-159b4b7df407\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92845153808594,\n      \"Text\": \"Other\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04166742041707039,\n          \"Height\": 0.010379514656960964,\n          \"Left\": 0.16534243524074554,\n          \"Top\": 0.4571443796157837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534334421157837,\n            \"Y\": 0.4571443796157837\n          },\n          {\n            \"X\": 0.20700985193252563,\n            \"Y\": 0.45716503262519836\n          },\n          {\n            \"X\": 0.20700912177562714,\n            \"Y\": 0.4675239026546478\n          },\n          {\n            \"X\": 0.16534243524074554,\n            \"Y\": 0.46750327944755554\n          }\n        ]\n      },\n      \"Id\": \"de91e1af-4c3c-46b3-b3a9-7ac80a58942b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dcbc8abc-3e2e-4b34-bd03-21f2300f243c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93050384521484,\n      \"Text\": \"Bond\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03663105517625809,\n          \"Height\": 0.010264110751450062,\n          \"Left\": 0.16576214134693146,\n          \"Top\": 0.47256383299827576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657630354166031,\n            \"Y\": 0.47256383299827576\n          },\n          {\n            \"X\": 0.20239320397377014,\n            \"Y\": 0.4725819230079651\n          },\n          {\n            \"X\": 0.20239245891571045,\n            \"Y\": 0.48282793164253235\n          },\n          {\n            \"X\": 0.16576214134693146,\n            \"Y\": 0.4828098714351654\n          }\n        ]\n      },\n      \"Id\": \"8341f834-422c-4e5c-9209-4b959f1dd1ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"738681aa-f1ac-4512-b5d6-bdf633711ebb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 85.17346954345703,\n      \"Text\": \"-5.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04021134972572327,\n          \"Height\": 0.009741549380123615,\n          \"Left\": 0.3806985914707184,\n          \"Top\": 0.47330498695373535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38069862127304077,\n            \"Y\": 0.47330498695373535\n          },\n          {\n            \"X\": 0.4209098219871521,\n            \"Y\": 0.47332486510276794\n          },\n          {\n            \"X\": 0.42090994119644165,\n            \"Y\": 0.4830465316772461\n          },\n          {\n            \"X\": 0.3806985914707184,\n            \"Y\": 0.4830267131328583\n          }\n        ]\n      },\n      \"Id\": \"eb380a47-b2a6-4282-b682-e606000f7e58\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f497a03-9565-4328-a4d2-7476f3aff644\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.50401306152344,\n      \"Text\": \"100.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04519687965512276,\n          \"Height\": 0.00982965249568224,\n          \"Left\": 0.48456546664237976,\n          \"Top\": 0.4732814431190491\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48456546664237976,\n            \"Y\": 0.4732814431190491\n          },\n          {\n            \"X\": 0.529761791229248,\n            \"Y\": 0.47330376505851746\n          },\n          {\n            \"X\": 0.529762327671051,\n            \"Y\": 0.48311108350753784\n          },\n          {\n            \"X\": 0.4845658242702484,\n            \"Y\": 0.48308882117271423\n          }\n        ]\n      },\n      \"Id\": \"eab97a5f-32cd-4553-b384-cd5602896285\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"15961085-e3d9-412c-be71-bd4d1f78baab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82745361328125,\n      \"Text\": \"WE WILL BE STARTING OUR UNITED WAY FUND\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2979136109352112,\n          \"Height\": 0.010192508809268475,\n          \"Left\": 0.575558602809906,\n          \"Top\": 0.4721502363681793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.575558602809906,\n            \"Y\": 0.4721502363681793\n          },\n          {\n            \"X\": 0.8734702467918396,\n            \"Y\": 0.4722974896430969\n          },\n          {\n            \"X\": 0.8734722137451172,\n            \"Y\": 0.48234274983406067\n          },\n          {\n            \"X\": 0.5755593180656433,\n            \"Y\": 0.48219579458236694\n          }\n        ]\n      },\n      \"Id\": \"55c3ccb1-09f8-4f4c-b78b-31a35ab556cf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e292a0c6-8d3c-4ec8-b6a7-d8c9215f9742\",\n            \"083b6adf-2239-43c2-b13d-9b3c00bf25e6\",\n            \"ec16fdac-79ce-44bb-892b-186b1cf6a635\",\n            \"3be1423d-9f10-4ca6-be92-628d5a1554ab\",\n            \"59978cd2-9bf9-46fb-992f-15c0d11b923e\",\n            \"7cec59a2-b9f3-4cb8-88b7-9240b7c40d0e\",\n            \"a73c4195-0e2f-4baf-acb9-b7cf81044713\",\n            \"68a6319b-e89c-4288-96d1-590ac8707ac3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 20.746511459350586,\n      \"Text\": \"PDP\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011251576244831085,\n          \"Height\": 0.015544673427939415,\n          \"Left\": 0.9762770533561707,\n          \"Top\": 0.4635232090950012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9762770533561707,\n            \"Y\": 0.4635232090950012\n          },\n          {\n            \"X\": 0.9875249266624451,\n            \"Y\": 0.4635287821292877\n          },\n          {\n            \"X\": 0.9875286221504211,\n            \"Y\": 0.479067862033844\n          },\n          {\n            \"X\": 0.976280689239502,\n            \"Y\": 0.4790623188018799\n          }\n        ]\n      },\n      \"Id\": \"f2ed822f-ebfa-494d-8f9d-0da776194d92\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d9755315-098d-4773-bfae-c567d7dd5346\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.72502136230469,\n      \"Text\": \"401(k)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04080589860677719,\n          \"Height\": 0.011710687540471554,\n          \"Left\": 0.1653653085231781,\n          \"Top\": 0.4880644679069519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16536633670330048,\n            \"Y\": 0.4880644679069519\n          },\n          {\n            \"X\": 0.2061712145805359,\n            \"Y\": 0.4880845844745636\n          },\n          {\n            \"X\": 0.20617038011550903,\n            \"Y\": 0.4997751712799072\n          },\n          {\n            \"X\": 0.1653653085231781,\n            \"Y\": 0.4997551143169403\n          }\n        ]\n      },\n      \"Id\": \"b33fbfba-d31f-4e5a-bb37-139e9060f87f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"524b581c-f489-4549-816a-6ff32fd6b9a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 55.95808029174805,\n      \"Text\": \"-28.85*\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05343848466873169,\n          \"Height\": 0.009626035578548908,\n          \"Left\": 0.3734176754951477,\n          \"Top\": 0.48896968364715576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3734177052974701,\n            \"Y\": 0.48896968364715576\n          },\n          {\n            \"X\": 0.42685598134994507,\n            \"Y\": 0.4889959990978241\n          },\n          {\n            \"X\": 0.4268561601638794,\n            \"Y\": 0.4985957145690918\n          },\n          {\n            \"X\": 0.3734176754951477,\n            \"Y\": 0.49856942892074585\n          }\n        ]\n      },\n      \"Id\": \"7b5b1627-257c-4bec-8abd-fa3e0218d662\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3faef2bd-4810-4c22-bdf5-e1a145fd90ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.917724609375,\n      \"Text\": \"1,500.20\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05830708518624306,\n          \"Height\": 0.010335884988307953,\n          \"Left\": 0.4716174304485321,\n          \"Top\": 0.48859354853630066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716174304485321,\n            \"Y\": 0.48859354853630066\n          },\n          {\n            \"X\": 0.5299239158630371,\n            \"Y\": 0.4886222779750824\n          },\n          {\n            \"X\": 0.5299245119094849,\n            \"Y\": 0.4989294409751892\n          },\n          {\n            \"X\": 0.47161775827407837,\n            \"Y\": 0.49890077114105225\n          }\n        ]\n      },\n      \"Id\": \"c26ddc84-d1c0-4371-b2ff-06ac2eab866d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b89b5bb-443d-450f-9019-5c13641763c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90685272216797,\n      \"Text\": \"DRIVE SOON AND LOOK FORWARD TO YOUR\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28093212842941284,\n          \"Height\": 0.009782819077372551,\n          \"Left\": 0.576322078704834,\n          \"Top\": 0.48865917325019836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576322078704834,\n            \"Y\": 0.48865917325019836\n          },\n          {\n            \"X\": 0.8572524189949036,\n            \"Y\": 0.4887975752353668\n          },\n          {\n            \"X\": 0.8572542071342468,\n            \"Y\": 0.49844199419021606\n          },\n          {\n            \"X\": 0.5763227939605713,\n            \"Y\": 0.4983038902282715\n          }\n        ]\n      },\n      \"Id\": \"3ecbe1fc-82b2-4fba-9513-80dc7d71157d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"18233780-3339-4bca-bfce-cfe93f862de5\",\n            \"ac7df885-5a75-445e-9617-2df5804a8a25\",\n            \"f1ebc27b-da53-4940-83d6-389293475acc\",\n            \"7b30686f-c772-4ed9-be49-cc93aec5a08a\",\n            \"db5bf66c-2b68-411d-a7bf-ab18f74d0bba\",\n            \"dbb1beb9-d8c6-45c5-8293-08a21c8a5b2f\",\n            \"df4afff9-f651-4c0b-859c-9e808ac28929\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 20.658769607543945,\n      \"Text\": \"8000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01206609234213829,\n          \"Height\": 0.01607183739542961,\n          \"Left\": 0.9756705164909363,\n          \"Top\": 0.4813154935836792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9756705164909363,\n            \"Y\": 0.4813154935836792\n          },\n          {\n            \"X\": 0.9877328276634216,\n            \"Y\": 0.48132142424583435\n          },\n          {\n            \"X\": 0.9877365827560425,\n            \"Y\": 0.4973873198032379\n          },\n          {\n            \"X\": 0.9756742715835571,\n            \"Y\": 0.49738138914108276\n          }\n        ]\n      },\n      \"Id\": \"5f8442c5-eb22-43a1-a3f2-7c9e91ff9cd0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ba08e213-33d6-441a-9995-2abe95c3b0f6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82644653320312,\n      \"Text\": \"Stock Plan\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0718761757016182,\n          \"Height\": 0.01048008818179369,\n          \"Left\": 0.16561101377010345,\n          \"Top\": 0.5030400156974792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16561192274093628,\n            \"Y\": 0.5030400156974792\n          },\n          {\n            \"X\": 0.23748718202114105,\n            \"Y\": 0.5030753016471863\n          },\n          {\n            \"X\": 0.2374865710735321,\n            \"Y\": 0.5135201215744019\n          },\n          {\n            \"X\": 0.16561101377010345,\n            \"Y\": 0.5134848952293396\n          }\n        ]\n      },\n      \"Id\": \"300ebb5d-b242-43d2-ba15-01a66b34b55a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d30673f2-7591-47ad-aa93-ccee400eebf3\",\n            \"5381a4e9-52e8-431c-86a5-2cda7707d9b1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.43785858154297,\n      \"Text\": \"-15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04389195889234543,\n          \"Height\": 0.009818912483751774,\n          \"Left\": 0.3776674270629883,\n          \"Top\": 0.5039076805114746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37766745686531067,\n            \"Y\": 0.5039076805114746\n          },\n          {\n            \"X\": 0.42155924439430237,\n            \"Y\": 0.5039291977882385\n          },\n          {\n            \"X\": 0.4215593636035919,\n            \"Y\": 0.5137265920639038\n          },\n          {\n            \"X\": 0.3776674270629883,\n            \"Y\": 0.5137050747871399\n          }\n        ]\n      },\n      \"Id\": \"6b94872d-9cc5-44e8-a505-1cd67c2c3ab9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8a55bb67-248d-4465-9fee-6edee611fd01\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70083618164062,\n      \"Text\": \"150.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045238297432661057,\n          \"Height\": 0.009857072494924068,\n          \"Left\": 0.4847920835018158,\n          \"Top\": 0.5039575099945068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4847920835018158,\n            \"Y\": 0.5039575099945068\n          },\n          {\n            \"X\": 0.530029833316803,\n            \"Y\": 0.5039797425270081\n          },\n          {\n            \"X\": 0.530030369758606,\n            \"Y\": 0.5138146281242371\n          },\n          {\n            \"X\": 0.48479247093200684,\n            \"Y\": 0.5137924551963806\n          }\n        ]\n      },\n      \"Id\": \"d5aa7034-66e4-4ac3-a093-757ad47b5a5e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ec0a951-e801-4749-8093-acec931e3ced\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 81.60974884033203,\n      \"Text\": \"PARTICIPATION\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10165880620479584,\n          \"Height\": 0.009729065001010895,\n          \"Left\": 0.5767770409584045,\n          \"Top\": 0.5050473213195801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767770409584045,\n            \"Y\": 0.5050473213195801\n          },\n          {\n            \"X\": 0.6784347295761108,\n            \"Y\": 0.5050972104072571\n          },\n          {\n            \"X\": 0.6784358620643616,\n            \"Y\": 0.5147764086723328\n          },\n          {\n            \"X\": 0.5767777562141418,\n            \"Y\": 0.5147265791893005\n          }\n        ]\n      },\n      \"Id\": \"39d05006-014e-43db-8e16-f2dc3ccc7cd9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0999396f-327a-47b7-bf51-e1bb9e239233\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 72.43475341796875,\n      \"Text\": \"2000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009551375173032284,\n          \"Height\": 0.020518435165286064,\n          \"Left\": 0.9777013063430786,\n          \"Top\": 0.5007089972496033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777013063430786,\n            \"Y\": 0.5007089972496033\n          },\n          {\n            \"X\": 0.987247884273529,\n            \"Y\": 0.5007137060165405\n          },\n          {\n            \"X\": 0.9872527122497559,\n            \"Y\": 0.5212274789810181\n          },\n          {\n            \"X\": 0.9777061343193054,\n            \"Y\": 0.5212227702140808\n          }\n        ]\n      },\n      \"Id\": \"17c65999-c9f8-48e3-ae18-2ac43ed53fb5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aa6826ef-bc34-438c-b074-ac1a56387cc1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.66083526611328,\n      \"Text\": \"Life Insurance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09358707070350647,\n          \"Height\": 0.010449059307575226,\n          \"Left\": 0.16534756124019623,\n          \"Top\": 0.5186297297477722\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534847021102905,\n            \"Y\": 0.5186297297477722\n          },\n          {\n            \"X\": 0.2589346170425415,\n            \"Y\": 0.5186755657196045\n          },\n          {\n            \"X\": 0.2589341104030609,\n            \"Y\": 0.5290787816047668\n          },\n          {\n            \"X\": 0.16534756124019623,\n            \"Y\": 0.5290330648422241\n          }\n        ]\n      },\n      \"Id\": \"2e52ca6a-af32-438d-9cb0-c41bfff296d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6aa85396-f766-4efd-9900-70c11cd5af14\",\n            \"034c02f4-f85d-4e57-b51e-267d37a79da2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 85.11956024169922,\n      \"Text\": \"-5.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040407564491033554,\n          \"Height\": 0.009700830094516277,\n          \"Left\": 0.3808732032775879,\n          \"Top\": 0.519393801689148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.519393801689148\n          },\n          {\n            \"X\": 0.4212806224822998,\n            \"Y\": 0.5194135904312134\n          },\n          {\n            \"X\": 0.42128074169158936,\n            \"Y\": 0.5290946364402771\n          },\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.5290749073028564\n          }\n        ]\n      },\n      \"Id\": \"d51abfc5-dde6-4688-a440-daa4533f6f12\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"622c0d47-0f62-424c-b6fd-c183b76c562e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.5484619140625,\n      \"Text\": \"50.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03804484009742737,\n          \"Height\": 0.009686019271612167,\n          \"Left\": 0.49207040667533875,\n          \"Top\": 0.5194575786590576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49207040667533875,\n            \"Y\": 0.5194575786590576\n          },\n          {\n            \"X\": 0.5301147103309631,\n            \"Y\": 0.5194761753082275\n          },\n          {\n            \"X\": 0.5301152467727661,\n            \"Y\": 0.5291435718536377\n          },\n          {\n            \"X\": 0.4920707941055298,\n            \"Y\": 0.5291249752044678\n          }\n        ]\n      },\n      \"Id\": \"3214229a-0813-4b28-ae7d-a188df000da6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1869ba4b-8b76-4ace-993f-3f24c4856dcc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98017883300781,\n      \"Text\": \"Loan\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033557310700416565,\n          \"Height\": 0.010077397339046001,\n          \"Left\": 0.16546224057674408,\n          \"Top\": 0.5340374112129211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16546311974525452,\n            \"Y\": 0.5340374112129211\n          },\n          {\n            \"X\": 0.19901955127716064,\n            \"Y\": 0.5340538024902344\n          },\n          {\n            \"X\": 0.19901880621910095,\n            \"Y\": 0.5441148281097412\n          },\n          {\n            \"X\": 0.16546224057674408,\n            \"Y\": 0.5440984964370728\n          }\n        ]\n      },\n      \"Id\": \"a9990332-1216-4121-8d65-85a36179f479\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c89adf05-f928-4844-8c2d-5451b74fb8bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 49.552772521972656,\n      \"Text\": \"2001\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009131364524364471,\n          \"Height\": 0.01764838956296444,\n          \"Left\": 0.9777453541755676,\n          \"Top\": 0.5230948328971863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777453541755676,\n            \"Y\": 0.5230948328971863\n          },\n          {\n            \"X\": 0.9868725538253784,\n            \"Y\": 0.5230993032455444\n          },\n          {\n            \"X\": 0.9868767261505127,\n            \"Y\": 0.5407432317733765\n          },\n          {\n            \"X\": 0.9777494668960571,\n            \"Y\": 0.5407388210296631\n          }\n        ]\n      },\n      \"Id\": \"242952bf-16d4-432e-abbf-9a03317f3e0f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eb2d7366-ea8c-48b1-9e94-033b6649c222\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 70.24380493164062,\n      \"Text\": \"-30.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04858388379216194,\n          \"Height\": 0.009743551723659039,\n          \"Left\": 0.3726392686367035,\n          \"Top\": 0.534624457359314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37263932824134827,\n            \"Y\": 0.534624457359314\n          },\n          {\n            \"X\": 0.4212230145931244,\n            \"Y\": 0.5346481800079346\n          },\n          {\n            \"X\": 0.42122316360473633,\n            \"Y\": 0.5443680286407471\n          },\n          {\n            \"X\": 0.3726392686367035,\n            \"Y\": 0.5443443655967712\n          }\n        ]\n      },\n      \"Id\": \"446a23ea-dfb6-4811-984e-04662a8f629d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8aebe610-8ab7-4c10-a49d-35e897f5d327\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.50465393066406,\n      \"Text\": \"150.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045781053602695465,\n          \"Height\": 0.009885708801448345,\n          \"Left\": 0.4842190742492676,\n          \"Top\": 0.5347295999526978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4842190742492676,\n            \"Y\": 0.5347295999526978\n          },\n          {\n            \"X\": 0.5299995541572571,\n            \"Y\": 0.5347519516944885\n          },\n          {\n            \"X\": 0.5300001502037048,\n            \"Y\": 0.5446153283119202\n          },\n          {\n            \"X\": 0.4842194616794586,\n            \"Y\": 0.5445930361747742\n          }\n        ]\n      },\n      \"Id\": \"640b892d-bfe5-4908-9b5c-3afd842072bd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7943e5ff-4a39-43b7-a5e6-70f1b4e6fcba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92391967773438,\n      \"Text\": \"Adjustment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08251450955867767,\n          \"Height\": 0.012692177668213844,\n          \"Left\": 0.1650719940662384,\n          \"Top\": 0.5555633902549744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16507309675216675,\n            \"Y\": 0.5555633902549744\n          },\n          {\n            \"X\": 0.24758650362491608,\n            \"Y\": 0.5556034445762634\n          },\n          {\n            \"X\": 0.24758580327033997,\n            \"Y\": 0.5682555437088013\n          },\n          {\n            \"X\": 0.1650719940662384,\n            \"Y\": 0.568215548992157\n          }\n        ]\n      },\n      \"Id\": \"7055b856-9d1f-444c-9141-35d330b5cdef\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fedaeef5-b806-48b0-9fdf-589c859b443a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 19.263839721679688,\n      \"Text\": \"00000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009525571949779987,\n          \"Height\": 0.023477010428905487,\n          \"Left\": 0.9778505563735962,\n          \"Top\": 0.5443591475486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9778505563735962,\n            \"Y\": 0.5443591475486755\n          },\n          {\n            \"X\": 0.9873705506324768,\n            \"Y\": 0.5443637371063232\n          },\n          {\n            \"X\": 0.9873760938644409,\n            \"Y\": 0.5678361654281616\n          },\n          {\n            \"X\": 0.9778560400009155,\n            \"Y\": 0.5678315162658691\n          }\n        ]\n      },\n      \"Id\": \"bf7d47e4-f04d-4d08-9241-163459bf98e1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3a536f29-7d45-4eb6-98bb-1541188c770c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.41851043701172,\n      \"Text\": \"Life Insurance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09293319284915924,\n          \"Height\": 0.010524203069508076,\n          \"Left\": 0.16571971774101257,\n          \"Top\": 0.5709601044654846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657206416130066,\n            \"Y\": 0.5709601044654846\n          },\n          {\n            \"X\": 0.258652925491333,\n            \"Y\": 0.5710051655769348\n          },\n          {\n            \"X\": 0.25865238904953003,\n            \"Y\": 0.581484317779541\n          },\n          {\n            \"X\": 0.16571971774101257,\n            \"Y\": 0.5814394354820251\n          }\n        ]\n      },\n      \"Id\": \"a18c3e63-6c04-4ad4-a729-2eed18050eb6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afa302f2-0027-4850-a3dd-cbac8bab19e6\",\n            \"883a5f20-8b8a-47ed-8759-d1734c408e65\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 50.21247100830078,\n      \"Text\": \"+ 13.50\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049284689128398895,\n          \"Height\": 0.01033841073513031,\n          \"Left\": 0.3715052306652069,\n          \"Top\": 0.5710830688476562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3715052902698517,\n            \"Y\": 0.5710830688476562\n          },\n          {\n            \"X\": 0.42078977823257446,\n            \"Y\": 0.5711069107055664\n          },\n          {\n            \"X\": 0.420789897441864,\n            \"Y\": 0.581421434879303\n          },\n          {\n            \"X\": 0.3715052306652069,\n            \"Y\": 0.5813976526260376\n          }\n        ]\n      },\n      \"Id\": \"7d40c315-3018-42d4-b93e-e7e2251b9b5d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5ca99e6-3de1-497b-94ff-c3220e32795e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.6935043334961,\n      \"Text\": \"Net Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056822843849658966,\n          \"Height\": 0.012562345713376999,\n          \"Left\": 0.16664579510688782,\n          \"Top\": 0.5937259793281555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16664688289165497,\n            \"Y\": 0.5937259793281555\n          },\n          {\n            \"X\": 0.22346864640712738,\n            \"Y\": 0.5937533378601074\n          },\n          {\n            \"X\": 0.2234678417444229,\n            \"Y\": 0.6062883138656616\n          },\n          {\n            \"X\": 0.16664579510688782,\n            \"Y\": 0.6062609553337097\n          }\n        ]\n      },\n      \"Id\": \"f522b18a-adf1-4412-b458-33f56d10af3b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f854bcdb-5bff-4097-aebd-ea66e02bfd7c\",\n            \"b6c893d0-a11b-49e3-8689-7cc319bbd1fa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.27107238769531,\n      \"Text\": \"$291.90\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059976059943437576,\n          \"Height\": 0.010888412594795227,\n          \"Left\": 0.36117327213287354,\n          \"Top\": 0.5935595631599426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3611733913421631,\n            \"Y\": 0.5935595631599426\n          },\n          {\n            \"X\": 0.42114919424057007,\n            \"Y\": 0.5935884714126587\n          },\n          {\n            \"X\": 0.421149343252182,\n            \"Y\": 0.6044479608535767\n          },\n          {\n            \"X\": 0.36117327213287354,\n            \"Y\": 0.6044191122055054\n          }\n        ]\n      },\n      \"Id\": \"58646bb3-c7a0-4a9b-9b1f-1593358b8827\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f9ab73b-dff5-4d82-809f-b4924feb4d07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.43260192871094,\n      \"Text\": \"Excluded from federal taxable wages\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.28239428997039795,\n          \"Height\": 0.013086359016597271,\n          \"Left\": 0.17361393570899963,\n          \"Top\": 0.6250417828559875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17361502349376678,\n            \"Y\": 0.6250417828559875\n          },\n          {\n            \"X\": 0.45600786805152893,\n            \"Y\": 0.6251770853996277\n          },\n          {\n            \"X\": 0.4560082256793976,\n            \"Y\": 0.6381281614303589\n          },\n          {\n            \"X\": 0.17361393570899963,\n            \"Y\": 0.6379932165145874\n          }\n        ]\n      },\n      \"Id\": \"046f618d-830c-452b-b079-b4db8e6e10d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0637c24f-5785-4820-9875-d2aaf09a220a\",\n            \"025bdd1b-e258-4493-ba8a-67b57cced0ce\",\n            \"785afe99-cd2b-4e2f-b6ad-9bfed85a698b\",\n            \"397b5de8-4f0c-4b9d-aba1-e1795798b99f\",\n            \"9ffa9d23-9f8c-4a72-afd2-b5d445af174d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81452941894531,\n      \"Text\": \"Your federal wages this period are $386.15\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30866745114326477,\n          \"Height\": 0.01362847350537777,\n          \"Left\": 0.17867182195186615,\n          \"Top\": 0.656588077545166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786729246377945,\n            \"Y\": 0.656588077545166\n          },\n          {\n            \"X\": 0.48733875155448914,\n            \"Y\": 0.6567350029945374\n          },\n          {\n            \"X\": 0.4873392879962921,\n            \"Y\": 0.6702165603637695\n          },\n          {\n            \"X\": 0.17867182195186615,\n            \"Y\": 0.6700700521469116\n          }\n        ]\n      },\n      \"Id\": \"a084f3c6-9eab-4572-a180-15fc9bff3c28\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e4f8aef4-31d3-4b64-b070-85b124bf9829\",\n            \"edaeab53-8f77-4417-9b4b-3e1b141d53d0\",\n            \"28747244-8f11-4952-9c1f-d135261ff38d\",\n            \"9b5c3118-48d7-4666-8e5f-c59c76e446c3\",\n            \"0311ced2-55bd-4733-936d-3a3a133e9eb6\",\n            \"87a4b628-752e-407e-a726-3c2dd8e9e49c\",\n            \"4a69215f-2333-41e8-a778-26ea4771b23e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 39.01307678222656,\n      \"Text\": \"ESTS8E103\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15482279658317566,\n          \"Height\": 0.01946660876274109,\n          \"Left\": 0.7813716530799866,\n          \"Top\": 0.7087773084640503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7813716530799866,\n            \"Y\": 0.7087773084640503\n          },\n          {\n            \"X\": 0.9361902475357056,\n            \"Y\": 0.7088501453399658\n          },\n          {\n            \"X\": 0.9361944198608398,\n            \"Y\": 0.728243887424469\n          },\n          {\n            \"X\": 0.7813746333122253,\n            \"Y\": 0.7281712889671326\n          }\n        ]\n      },\n      \"Id\": \"28cecbd6-7fc2-4587-9737-115338fae66b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d62b63b7-49e1-4e97-acc7-8a6c1b9ed628\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.56800842285156,\n      \"Text\": \"ANY COMPANY CORP.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1464475691318512,\n          \"Height\": 0.01069613266736269,\n          \"Left\": 0.1556549072265625,\n          \"Top\": 0.7286847233772278\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1556558758020401,\n            \"Y\": 0.7286847233772278\n          },\n          {\n            \"X\": 0.3021024763584137,\n            \"Y\": 0.728753387928009\n          },\n          {\n            \"X\": 0.30210211873054504,\n            \"Y\": 0.7393808960914612\n          },\n          {\n            \"X\": 0.1556549072265625,\n            \"Y\": 0.7393123507499695\n          }\n        ]\n      },\n      \"Id\": \"a014f173-7acf-4034-b54d-5898e936ad84\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9f7366c3-490b-452d-a9cc-333c3776e9c3\",\n            \"bdf465b0-ec8f-4d56-9d92-fb3ae3b78230\",\n            \"e57219bd-1e80-4a7f-a33f-2bb4d6b5f8c3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.37149810791016,\n      \"Text\": \"Payroll check number: 0000000000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26348546147346497,\n          \"Height\": 0.01319978293031454,\n          \"Left\": 0.576890230178833,\n          \"Top\": 0.7281169295310974\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576890230178833,\n            \"Y\": 0.7281169295310974\n          },\n          {\n            \"X\": 0.8403733968734741,\n            \"Y\": 0.728240430355072\n          },\n          {\n            \"X\": 0.8403757214546204,\n            \"Y\": 0.7413166761398315\n          },\n          {\n            \"X\": 0.5768912434577942,\n            \"Y\": 0.7411934733390808\n          }\n        ]\n      },\n      \"Id\": \"ff6bba04-71f5-4102-9b3b-f9daf6fab0d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef459bf4-39a9-4605-b5e3-a6ec71ada8a3\",\n            \"101aaf0d-2770-4108-8d42-44842ffd4f57\",\n            \"77ba268f-1a09-45b4-8d85-f7c7c94b6e6d\",\n            \"c9040c00-22f4-4521-b5e4-8f7b8da59eaa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9583969116211,\n      \"Text\": \"475 ANY AVENUE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13187545537948608,\n          \"Height\": 0.01040145568549633,\n          \"Left\": 0.15589039027690887,\n          \"Top\": 0.7452518343925476\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1558913290500641,\n            \"Y\": 0.7452518343925476\n          },\n          {\n            \"X\": 0.28776586055755615,\n            \"Y\": 0.7453134655952454\n          },\n          {\n            \"X\": 0.2877654433250427,\n            \"Y\": 0.7556533217430115\n          },\n          {\n            \"X\": 0.15589039027690887,\n            \"Y\": 0.755591869354248\n          }\n        ]\n      },\n      \"Id\": \"18ebe9c3-87c4-4353-afeb-8ae1f612b838\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c8881eba-67b3-4d91-9aeb-377d10c5518d\",\n            \"25d28dd6-c535-4d8a-8125-4f3859a88fbf\",\n            \"a0823581-466e-4ed9-8490-520e7ef2de07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.94738006591797,\n      \"Text\": \"Pay date:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06635254621505737,\n          \"Height\": 0.012356774881482124,\n          \"Left\": 0.577531635761261,\n          \"Top\": 0.7436504364013672\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.577531635761261,\n            \"Y\": 0.7436504364013672\n          },\n          {\n            \"X\": 0.6438829302787781,\n            \"Y\": 0.7436814308166504\n          },\n          {\n            \"X\": 0.6438841819763184,\n            \"Y\": 0.756007194519043\n          },\n          {\n            \"X\": 0.5775325894355774,\n            \"Y\": 0.7559762597084045\n          }\n        ]\n      },\n      \"Id\": \"5d9bf228-b518-4f65-a780-ddec7a9beb1f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5bbf1d68-23e7-4668-b0fd-bfb8c2229ce9\",\n            \"2b58335d-96ef-4d52-8ca3-a4e3ac355e98\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83737182617188,\n      \"Text\": \"7/25/2008\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06732150167226791,\n          \"Height\": 0.010527209378778934,\n          \"Left\": 0.7587701082229614,\n          \"Top\": 0.7437589168548584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7587701082229614,\n            \"Y\": 0.7437589168548584\n          },\n          {\n            \"X\": 0.8260897994041443,\n            \"Y\": 0.7437903881072998\n          },\n          {\n            \"X\": 0.8260916471481323,\n            \"Y\": 0.7542861700057983\n          },\n          {\n            \"X\": 0.7587716579437256,\n            \"Y\": 0.7542547583580017\n          }\n        ]\n      },\n      \"Id\": \"02f9d22c-3394-44ec-a370-3542b1d8c07e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4142b714-81fd-452b-8cce-5fdfea36ebd1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.1014404296875,\n      \"Text\": \"ANYTOWN USA 10101\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15301087498664856,\n          \"Height\": 0.010760429315268993,\n          \"Left\": 0.15558114647865295,\n          \"Top\": 0.7599571347236633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15558211505413055,\n            \"Y\": 0.7599571347236633\n          },\n          {\n            \"X\": 0.3085920214653015,\n            \"Y\": 0.7600284218788147\n          },\n          {\n            \"X\": 0.30859169363975525,\n            \"Y\": 0.7707175612449646\n          },\n          {\n            \"X\": 0.15558114647865295,\n            \"Y\": 0.7706465125083923\n          }\n        ]\n      },\n      \"Id\": \"7ea5f6b4-2aa8-4c9b-81d4-e2b85a403293\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f2740c27-ae73-4688-a75f-5f8f5ef8d0e9\",\n            \"56d4bceb-b728-4d7e-b5c8-41d53e8a3835\",\n            \"0044e953-9e5d-4d7d-b2b6-a9f209fa13b1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90554809570312,\n      \"Text\": \"Social Security No.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1332491785287857,\n          \"Height\": 0.012657275423407555,\n          \"Left\": 0.5769157409667969,\n          \"Top\": 0.7588292360305786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5769157409667969,\n            \"Y\": 0.7588292360305786\n          },\n          {\n            \"X\": 0.7101633548736572,\n            \"Y\": 0.7588912844657898\n          },\n          {\n            \"X\": 0.7101649045944214,\n            \"Y\": 0.7714865207672119\n          },\n          {\n            \"X\": 0.5769166946411133,\n            \"Y\": 0.7714245915412903\n          }\n        ]\n      },\n      \"Id\": \"bd3e8199-825c-46bb-9784-fdf335b197d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6d70ca53-9b7a-4191-8be1-5cecd82b8ca6\",\n            \"ab1ae090-9afb-467c-8bd1-d0a5135a5a59\",\n            \"301ebe2f-65bc-4fc4-baf6-a9b5a8bf8db8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.62288665771484,\n      \"Text\": \"987-65-4321\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07716964185237885,\n          \"Height\": 0.009116117842495441,\n          \"Left\": 0.7581342458724976,\n          \"Top\": 0.7597204446792603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7581342458724976,\n            \"Y\": 0.7597204446792603\n          },\n          {\n            \"X\": 0.8353022933006287,\n            \"Y\": 0.7597563862800598\n          },\n          {\n            \"X\": 0.8353039026260376,\n            \"Y\": 0.7688365578651428\n          },\n          {\n            \"X\": 0.7581356167793274,\n            \"Y\": 0.7688007354736328\n          }\n        ]\n      },\n      \"Id\": \"8c59ab6b-a7c4-45d0-b33b-ebf18f57d92c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d41aeb06-ae44-4560-9d09-605f8d9aad58\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85274505615234,\n      \"Text\": \"Pay to the\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06952238827943802,\n          \"Height\": 0.011078543029725552,\n          \"Left\": 0.053030237555503845,\n          \"Top\": 0.8006242513656616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.053031690418720245,\n            \"Y\": 0.8006242513656616\n          },\n          {\n            \"X\": 0.12255262583494186,\n            \"Y\": 0.8006563186645508\n          },\n          {\n            \"X\": 0.12255147844552994,\n            \"Y\": 0.8117027878761292\n          },\n          {\n            \"X\": 0.053030237555503845,\n            \"Y\": 0.8116707801818848\n          }\n        ]\n      },\n      \"Id\": \"f2561ecf-eb2c-4385-ab31-f8f97bf0a9c9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"114cf0da-7ff1-408f-a449-64176d973dab\",\n            \"c0f4e6f0-40ee-45d1-a629-911b096b13fc\",\n            \"4c27ef63-ec15-4762-849f-5c8dc64cb4d3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.11622619628906,\n      \"Text\": \"order of:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05254054814577103,\n          \"Height\": 0.009199238382279873,\n          \"Left\": 0.052512288093566895,\n          \"Top\": 0.8107377290725708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052513495087623596,\n            \"Y\": 0.8107377290725708\n          },\n          {\n            \"X\": 0.10505283623933792,\n            \"Y\": 0.8107619285583496\n          },\n          {\n            \"X\": 0.10505181550979614,\n            \"Y\": 0.8199369311332703\n          },\n          {\n            \"X\": 0.052512288093566895,\n            \"Y\": 0.8199127912521362\n          }\n        ]\n      },\n      \"Id\": \"d10c33a6-76c2-4e29-9571-0212f7e696aa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"520aae23-fe74-4e98-b435-c940cae5069c\",\n            \"8b618eb6-4057-472e-ac0c-ff5887d43806\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93109130859375,\n      \"Text\": \"JOHN STILES\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11000292748212814,\n          \"Height\": 0.012110373005270958,\n          \"Left\": 0.1554965376853943,\n          \"Top\": 0.8107413053512573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15549764037132263,\n            \"Y\": 0.8107413053512573\n          },\n          {\n            \"X\": 0.265499472618103,\n            \"Y\": 0.8107920289039612\n          },\n          {\n            \"X\": 0.26549890637397766,\n            \"Y\": 0.8228517174720764\n          },\n          {\n            \"X\": 0.1554965376853943,\n            \"Y\": 0.8228011727333069\n          }\n        ]\n      },\n      \"Id\": \"990ea779-e62e-410d-b29b-767761001008\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e5db8fa7-2ea7-44b3-a2a6-c019421edc44\",\n            \"fd00bebf-5bf6-49cc-aaf1-6b8cb482b0ce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 93.34493255615234,\n      \"Text\": \"This amount:\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08307094871997833,\n          \"Height\": 0.00962622556835413,\n          \"Left\": 0.052255064249038696,\n          \"Top\": 0.8289413452148438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052256327122449875,\n            \"Y\": 0.8289413452148438\n          },\n          {\n            \"X\": 0.13532601296901703,\n            \"Y\": 0.8289794325828552\n          },\n          {\n            \"X\": 0.13532507419586182,\n            \"Y\": 0.8385675549507141\n          },\n          {\n            \"X\": 0.052255064249038696,\n            \"Y\": 0.8385295271873474\n          }\n        ]\n      },\n      \"Id\": \"b01b5d6f-d6f9-4c38-b3b9-0328bb1919da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"843bd1f0-3745-4f39-aa6b-d6cf459a385c\",\n            \"371ad7dd-075d-4bb6-96c4-b2569451fdcf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8796615600586,\n      \"Text\": \"TWO HUNDRED NINETY-ONE AND 90/100 DOLLARS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3838396668434143,\n          \"Height\": 0.010917792096734047,\n          \"Left\": 0.15508317947387695,\n          \"Top\": 0.8310438394546509\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15508416295051575,\n            \"Y\": 0.8310438394546509\n          },\n          {\n            \"X\": 0.5389221906661987,\n            \"Y\": 0.8312199115753174\n          },\n          {\n            \"X\": 0.5389228463172913,\n            \"Y\": 0.8419616222381592\n          },\n          {\n            \"X\": 0.15508317947387695,\n            \"Y\": 0.8417859673500061\n          }\n        ]\n      },\n      \"Id\": \"0fb19305-bcc9-4eea-995f-ac88023c2d5d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c939ea3d-6872-4bba-ab37-e4ec94212aaf\",\n            \"ec0b346a-6001-47c7-92e6-fdbd68a23110\",\n            \"67c289af-f854-4383-a8f5-dfdfb11f9189\",\n            \"9e518b3c-e856-4d4d-9c8b-5cffe0ab42a9\",\n            \"aecd0d14-7bc5-4e79-a6b2-c3daf5fb644c\",\n            \"e27da746-3afe-4e94-b159-8ce40130b698\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8681640625,\n      \"Text\": \"$291.90\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054515570402145386,\n          \"Height\": 0.011175752617418766,\n          \"Left\": 0.8945171236991882,\n          \"Top\": 0.8310860991477966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8945171236991882,\n            \"Y\": 0.8310860991477966\n          },\n          {\n            \"X\": 0.9490302205085754,\n            \"Y\": 0.8311111330986023\n          },\n          {\n            \"X\": 0.949032723903656,\n            \"Y\": 0.8422618508338928\n          },\n          {\n            \"X\": 0.8945193886756897,\n            \"Y\": 0.8422369360923767\n          }\n        ]\n      },\n      \"Id\": \"7aa86407-7b83-4a04-9e4b-7ac7afd685a2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"20eaf3c5-8b02-40aa-9362-a835a93de775\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91527557373047,\n      \"Text\": \"SAMPLE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087924912571907,\n          \"Height\": 0.010260836221277714,\n          \"Left\": 0.18704988062381744,\n          \"Top\": 0.8727636933326721\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1870506852865219,\n            \"Y\": 0.8727636933326721\n          },\n          {\n            \"X\": 0.2479291409254074,\n            \"Y\": 0.8727913498878479\n          },\n          {\n            \"X\": 0.24792857468128204,\n            \"Y\": 0.8830245137214661\n          },\n          {\n            \"X\": 0.18704988062381744,\n            \"Y\": 0.8829969167709351\n          }\n        ]\n      },\n      \"Id\": \"9ceb097f-a1f0-41ac-aaed-118bf2a6046b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32c086c6-2187-4c2a-b529-fca369b35ef8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.68993377685547,\n      \"Text\": \"NON-NEGOTIABLE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1339421421289444,\n          \"Height\": 0.010696114972233772,\n          \"Left\": 0.18531093001365662,\n          \"Top\": 0.8848074674606323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18531177937984467,\n            \"Y\": 0.8848074674606323\n          },\n          {\n            \"X\": 0.3192530870437622,\n            \"Y\": 0.8848682045936584\n          },\n          {\n            \"X\": 0.31925278902053833,\n            \"Y\": 0.895503580570221\n          },\n          {\n            \"X\": 0.18531093001365662,\n            \"Y\": 0.8954430222511292\n          }\n        ]\n      },\n      \"Id\": \"841fee6c-eb3a-4bbf-9994-9bf2a592751b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2365e22f-a60b-4a2a-ae72-015f043e4c8f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8550796508789,\n      \"Text\": \"BANK NAME\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06045692041516304,\n          \"Height\": 0.007286563981324434,\n          \"Left\": 0.052389614284038544,\n          \"Top\": 0.8988009691238403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05239057168364525,\n            \"Y\": 0.8988009691238403\n          },\n          {\n            \"X\": 0.11284653097391129,\n            \"Y\": 0.8988283276557922\n          },\n          {\n            \"X\": 0.11284574866294861,\n            \"Y\": 0.9060875773429871\n          },\n          {\n            \"X\": 0.052389614284038544,\n            \"Y\": 0.9060602784156799\n          }\n        ]\n      },\n      \"Id\": \"9690ab25-938d-4081-951b-99e2c42b9e56\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5a482f5-65aa-47ef-aca2-1e8a742c9938\",\n            \"7310c6c2-a207-4857-a352-75c444e182c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90771484375,\n      \"Text\": \"VOID VOID VOID\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11401166766881943,\n          \"Height\": 0.01057253684848547,\n          \"Left\": 0.18641573190689087,\n          \"Top\": 0.8980157375335693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18641655147075653,\n            \"Y\": 0.8980157375335693\n          },\n          {\n            \"X\": 0.3004274070262909,\n            \"Y\": 0.8980672359466553\n          },\n          {\n            \"X\": 0.30042704939842224,\n            \"Y\": 0.9085882306098938\n          },\n          {\n            \"X\": 0.18641573190689087,\n            \"Y\": 0.9085368514060974\n          }\n        ]\n      },\n      \"Id\": \"11097e75-fa3e-476c-9190-ce4eb7f0dab9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d8a4887c-aa18-49cf-8b0d-ba859f8fdd23\",\n            \"c0f984ca-5c1f-498c-8ca8-bdd82bcc4aa6\",\n            \"98bb8f54-71a1-4ec6-95a8-caae3a17dc8c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.93590545654297,\n      \"Text\": \"AUTHORIZED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0620577409863472,\n          \"Height\": 0.00737388152629137,\n          \"Left\": 0.5392360091209412,\n          \"Top\": 0.9010159969329834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5392360091209412,\n            \"Y\": 0.9010159969329834\n          },\n          {\n            \"X\": 0.6012930870056152,\n            \"Y\": 0.9010440707206726\n          },\n          {\n            \"X\": 0.6012937426567078,\n            \"Y\": 0.9083898663520813\n          },\n          {\n            \"X\": 0.5392364263534546,\n            \"Y\": 0.9083619117736816\n          }\n        ]\n      },\n      \"Id\": \"ca8eec04-5464-486d-ab63-e79ba5de3073\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e3a15024-dee3-44f0-b16e-ef92757f2144\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 69.12090301513672,\n      \"Text\": \"Authorized\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1761792004108429,\n          \"Height\": 0.05295070633292198,\n          \"Left\": 0.5416198968887329,\n          \"Top\": 0.8642136454582214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5416198968887329,\n            \"Y\": 0.8642136454582214\n          },\n          {\n            \"X\": 0.7177922129631042,\n            \"Y\": 0.8642938733100891\n          },\n          {\n            \"X\": 0.7177991271018982,\n            \"Y\": 0.9171643853187561\n          },\n          {\n            \"X\": 0.5416231155395508,\n            \"Y\": 0.9170850515365601\n          }\n        ]\n      },\n      \"Id\": \"11af94e3-bddb-462b-9374-76e125c34d5c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"23f0b526-35db-4213-b3c8-baf2294621a0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.97434997558594,\n      \"Text\": \"SIGNATURE Signature\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2826750576496124,\n          \"Height\": 0.05800812318921089,\n          \"Left\": 0.6047844290733337,\n          \"Top\": 0.862274169921875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6047844290733337,\n            \"Y\": 0.862274169921875\n          },\n          {\n            \"X\": 0.8874480128288269,\n            \"Y\": 0.8624029159545898\n          },\n          {\n            \"X\": 0.8874594569206238,\n            \"Y\": 0.9202823042869568\n          },\n          {\n            \"X\": 0.6047893762588501,\n            \"Y\": 0.9201551079750061\n          }\n        ]\n      },\n      \"Id\": \"1ec21249-e6f8-4794-8125-1f23dc0d8c11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"53e1e7a0-a350-44f9-816d-5e5a0bcf3924\",\n            \"fe746647-5c97-4cb6-8054-c24cf0489e00\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82587432861328,\n      \"Text\": \"STREET ADDRESS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08909900486469269,\n          \"Height\": 0.007301071658730507,\n          \"Left\": 0.05239022895693779,\n          \"Top\": 0.9065069556236267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052391186356544495,\n            \"Y\": 0.9065069556236267\n          },\n          {\n            \"X\": 0.14148923754692078,\n            \"Y\": 0.9065471291542053\n          },\n          {\n            \"X\": 0.14148853719234467,\n            \"Y\": 0.9138079881668091\n          },\n          {\n            \"X\": 0.05239022895693779,\n            \"Y\": 0.9137678742408752\n          }\n        ]\n      },\n      \"Id\": \"d4d24d2a-6ddd-4c3b-a4b4-ddad8bf856e4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bde8c3d3-fea4-4f0c-824e-157f1d4fbdeb\",\n            \"0673ad56-2855-4be5-bd3b-a8a3d06697f6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81066131591797,\n      \"Text\": \"CITY STATE ZIP\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07789036631584167,\n          \"Height\": 0.007259258534759283,\n          \"Left\": 0.05252686142921448,\n          \"Top\": 0.9143714904785156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052527811378240585,\n            \"Y\": 0.9143714904785156\n          },\n          {\n            \"X\": 0.13041722774505615,\n            \"Y\": 0.9144065976142883\n          },\n          {\n            \"X\": 0.13041649758815765,\n            \"Y\": 0.9216307401657104\n          },\n          {\n            \"X\": 0.05252686142921448,\n            \"Y\": 0.9215956926345825\n          }\n        ]\n      },\n      \"Id\": \"f90e5a16-3361-4d62-9331-3422a9e45d78\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4612075-7899-4744-9166-07151c6900bb\",\n            \"53756fc6-fbbf-498d-bb9e-fb37011d4de3\",\n            \"98f1d9a8-197f-43f1-8b3a-7462f0dc0801\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 88.26286315917969,\n      \"Text\": \"VOID AFTER 90 DAYS\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10553260147571564,\n          \"Height\": 0.007237828802317381,\n          \"Left\": 0.5372782349586487,\n          \"Top\": 0.9109068512916565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5372782349586487,\n            \"Y\": 0.9109068512916565\n          },\n          {\n            \"X\": 0.6428101062774658,\n            \"Y\": 0.9109544157981873\n          },\n          {\n            \"X\": 0.6428108215332031,\n            \"Y\": 0.918144702911377\n          },\n          {\n            \"X\": 0.5372786521911621,\n            \"Y\": 0.918097198009491\n          }\n        ]\n      },\n      \"Id\": \"5d67a680-26ce-42d6-b016-da7663fad205\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"04bbe3a9-4622-462b-8d9c-f8d8c36ea946\",\n            \"168bbf08-a0d4-4fbb-a03e-dc821e834b18\",\n            \"07054808-960a-4af8-9cec-3d348e4ec5eb\",\n            \"53c903f8-6adf-4163-9fb3-ad3f35d2c038\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 71.64351654052734,\n      \"Text\": \"001379⑈ ⑆122000496⑆4040110157⑈\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4466712176799774,\n          \"Height\": 0.013302411884069443,\n          \"Left\": 0.23862919211387634,\n          \"Top\": 0.9569131135940552\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23862995207309723,\n            \"Y\": 0.9569131135940552\n          },\n          {\n            \"X\": 0.6852988600730896,\n            \"Y\": 0.9571124315261841\n          },\n          {\n            \"X\": 0.6853004097938538,\n            \"Y\": 0.9702155590057373\n          },\n          {\n            \"X\": 0.23862919211387634,\n            \"Y\": 0.9700167775154114\n          }\n        ]\n      },\n      \"Id\": \"0fb50747-a054-406a-bc59-641987c960d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0d18d0e1-1774-431a-9ece-472229d9cc95\",\n            \"155e08aa-5591-4414-a65c-c4c29973d71c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 12.64504623413086,\n      \"Text\": \"THEORIGINALDOCUMENTHASAREFLECTIVEWATERMARKONTHEBAOK.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4536792039871216,\n          \"Height\": 0.009257529862225056,\n          \"Left\": 0.04399150609970093,\n          \"Top\": 0.9754505157470703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04399272799491882,\n            \"Y\": 0.9754505157470703\n          },\n          {\n            \"X\": 0.49767032265663147,\n            \"Y\": 0.9756521582603455\n          },\n          {\n            \"X\": 0.4976707100868225,\n            \"Y\": 0.9847080707550049\n          },\n          {\n            \"X\": 0.04399150609970093,\n            \"Y\": 0.9845068454742432\n          }\n        ]\n      },\n      \"Id\": \"30b8b960-ff7f-4f8e-bc7e-2db7d7a138f7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e58309f8-44ad-4320-b546-b59be8c464b6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 80.2921142578125,\n      \"Text\": \"CO.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01907811500132084,\n          \"Height\": 0.008388671092689037,\n          \"Left\": 0.1648918092250824,\n          \"Top\": 0.03480307012796402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1648925393819809,\n            \"Y\": 0.03480307012796402\n          },\n          {\n            \"X\": 0.18396992981433868,\n            \"Y\": 0.034813325852155685\n          },\n          {\n            \"X\": 0.18396925926208496,\n            \"Y\": 0.04319174215197563\n          },\n          {\n            \"X\": 0.1648918092250824,\n            \"Y\": 0.04318150505423546\n          }\n        ]\n      },\n      \"Id\": \"e610c723-d01a-4f46-949e-f6772326aa4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72889709472656,\n      \"Text\": \"FILE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024935271590948105,\n          \"Height\": 0.00844508782029152,\n          \"Left\": 0.2099919617176056,\n          \"Top\": 0.03477632254362106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20999254286289215,\n            \"Y\": 0.03477632254362106\n          },\n          {\n            \"X\": 0.234927237033844,\n            \"Y\": 0.03478972241282463\n          },\n          {\n            \"X\": 0.2349267303943634,\n            \"Y\": 0.04322141036391258\n          },\n          {\n            \"X\": 0.2099919617176056,\n            \"Y\": 0.04320802912116051\n          }\n        ]\n      },\n      \"Id\": \"a3a39dd8-58c2-43c2-a98a-85719deb725f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.5239486694336,\n      \"Text\": \"DEPT.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032793283462524414,\n          \"Height\": 0.008406493812799454,\n          \"Left\": 0.26291805505752563,\n          \"Top\": 0.03478841483592987\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2629184424877167,\n            \"Y\": 0.03478841483592987\n          },\n          {\n            \"X\": 0.29571133852005005,\n            \"Y\": 0.03480604290962219\n          },\n          {\n            \"X\": 0.29571104049682617,\n            \"Y\": 0.043194908648729324\n          },\n          {\n            \"X\": 0.26291805505752563,\n            \"Y\": 0.04317731037735939\n          }\n        ]\n      },\n      \"Id\": \"70ccd6a2-1fc1-48ba-99b4-a695f72f783f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50889587402344,\n      \"Text\": \"CLOCK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041945114731788635,\n          \"Height\": 0.008913020603358746,\n          \"Left\": 0.31527549028396606,\n          \"Top\": 0.03459790349006653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31527575850486755,\n            \"Y\": 0.03459790349006653\n          },\n          {\n            \"X\": 0.3572206199169159,\n            \"Y\": 0.03462044894695282\n          },\n          {\n            \"X\": 0.35722050070762634,\n            \"Y\": 0.04351092502474785\n          },\n          {\n            \"X\": 0.31527549028396606,\n            \"Y\": 0.04348841309547424\n          }\n        ]\n      },\n      \"Id\": \"4482b5ff-b1ff-47b9-bd0b-f77ea9e55d0e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67003631591797,\n      \"Text\": \"NUMBER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0509302020072937,\n          \"Height\": 0.008238906972110271,\n          \"Left\": 0.3676603436470032,\n          \"Top\": 0.03480812907218933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36766040325164795,\n            \"Y\": 0.03480812907218933\n          },\n          {\n            \"X\": 0.4185904264450073,\n            \"Y\": 0.03483550250530243\n          },\n          {\n            \"X\": 0.4185905456542969,\n            \"Y\": 0.04304703697562218\n          },\n          {\n            \"X\": 0.3676603436470032,\n            \"Y\": 0.043019700795412064\n          }\n        ]\n      },\n      \"Id\": \"32e4486d-0af1-4ce7-aa6b-2fd9ef9ac7ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93267059326172,\n      \"Text\": \"ABC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028706319630146027,\n          \"Height\": 0.009623170830309391,\n          \"Left\": 0.16495062410831451,\n          \"Top\": 0.04666973650455475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16495145857334137,\n            \"Y\": 0.04666973650455475\n          },\n          {\n            \"X\": 0.19365693628787994,\n            \"Y\": 0.04668512940406799\n          },\n          {\n            \"X\": 0.19365620613098145,\n            \"Y\": 0.056292906403541565\n          },\n          {\n            \"X\": 0.16495062410831451,\n            \"Y\": 0.05627753585577011\n          }\n        ]\n      },\n      \"Id\": \"5b7c419c-6e6a-4479-9bd4-1c688d16d476\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25843048095703,\n      \"Text\": \"126543\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044344212859869,\n          \"Height\": 0.009338905103504658,\n          \"Left\": 0.21090802550315857,\n          \"Top\": 0.047060899436473846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2109086662530899,\n            \"Y\": 0.047060899436473846\n          },\n          {\n            \"X\": 0.25525224208831787,\n            \"Y\": 0.04708467796444893\n          },\n          {\n            \"X\": 0.25525176525115967,\n            \"Y\": 0.05639980360865593\n          },\n          {\n            \"X\": 0.21090802550315857,\n            \"Y\": 0.05637606233358383\n          }\n        ]\n      },\n      \"Id\": \"f0753f25-b08f-4755-88b5-0f74c3f1632b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9498519897461,\n      \"Text\": \"123456\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044026751071214676,\n          \"Height\": 0.009698059409856796,\n          \"Left\": 0.263863742351532,\n          \"Top\": 0.04680684208869934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2638642191886902,\n            \"Y\": 0.04680684208869934\n          },\n          {\n            \"X\": 0.30789050459861755,\n            \"Y\": 0.04683045297861099\n          },\n          {\n            \"X\": 0.3078902065753937,\n            \"Y\": 0.05650490149855614\n          },\n          {\n            \"X\": 0.263863742351532,\n            \"Y\": 0.05648133158683777\n          }\n        ]\n      },\n      \"Id\": \"03fda3cd-379d-41fd-8f72-f7676ab64355\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94639587402344,\n      \"Text\": \"12345\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03744831308722496,\n          \"Height\": 0.009444006718695164,\n          \"Left\": 0.3160986006259918,\n          \"Top\": 0.04698577895760536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3160988688468933,\n            \"Y\": 0.04698577895760536\n          },\n          {\n            \"X\": 0.3535469174385071,\n            \"Y\": 0.04700586199760437\n          },\n          {\n            \"X\": 0.35354679822921753,\n            \"Y\": 0.05642978474497795\n          },\n          {\n            \"X\": 0.3160986006259918,\n            \"Y\": 0.05640973523259163\n          }\n        ]\n      },\n      \"Id\": \"89d513bf-9810-45f6-8810-a59e05210d11\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84942626953125,\n      \"Text\": \"00000000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06008065864443779,\n          \"Height\": 0.010111921466886997,\n          \"Left\": 0.3668796420097351,\n          \"Top\": 0.04706024006009102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3668797016143799,\n            \"Y\": 0.04706024006009102\n          },\n          {\n            \"X\": 0.42696014046669006,\n            \"Y\": 0.047092460095882416\n          },\n          {\n            \"X\": 0.426960289478302,\n            \"Y\": 0.05717216059565544\n          },\n          {\n            \"X\": 0.3668796420097351,\n            \"Y\": 0.05714000016450882\n          }\n        ]\n      },\n      \"Id\": \"b740d708-0c5e-4a39-af77-cd76662513c3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.65509033203125,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006587401498109102,\n          \"Height\": 0.008248131722211838,\n          \"Left\": 0.44835329055786133,\n          \"Top\": 0.047755733132362366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44835329055786133,\n            \"Y\": 0.047755733132362366\n          },\n          {\n            \"X\": 0.45494046807289124,\n            \"Y\": 0.04775926470756531\n          },\n          {\n            \"X\": 0.45494067668914795,\n            \"Y\": 0.056003864854574203\n          },\n          {\n            \"X\": 0.44835349917411804,\n            \"Y\": 0.05600033700466156\n          }\n        ]\n      },\n      \"Id\": \"96b07267-dfce-482a-813d-5a9a1af47b68\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97154235839844,\n      \"Text\": \"Earnings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10458025336265564,\n          \"Height\": 0.018169783055782318,\n          \"Left\": 0.5793696641921997,\n          \"Top\": 0.04107304662466049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5793696641921997,\n            \"Y\": 0.04107304662466049\n          },\n          {\n            \"X\": 0.6839478015899658,\n            \"Y\": 0.04112919420003891\n          },\n          {\n            \"X\": 0.6839499473571777,\n            \"Y\": 0.05924282968044281\n          },\n          {\n            \"X\": 0.5793710350990295,\n            \"Y\": 0.059186868369579315\n          }\n        ]\n      },\n      \"Id\": \"279d23f5-b745-4485-ba0b-71d5954d23e1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82549285888672,\n      \"Text\": \"Statement\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12353111803531647,\n          \"Height\": 0.014936991967260838,\n          \"Left\": 0.691061794757843,\n          \"Top\": 0.04124016314744949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.691061794757843,\n            \"Y\": 0.04124016314744949\n          },\n          {\n            \"X\": 0.8145903944969177,\n            \"Y\": 0.04130648449063301\n          },\n          {\n            \"X\": 0.8145928978919983,\n            \"Y\": 0.056177154183387756\n          },\n          {\n            \"X\": 0.6910635232925415,\n            \"Y\": 0.056111015379428864\n          }\n        ]\n      },\n      \"Id\": \"3851d244-94dd-4838-8f43-f2e20f09717b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9559097290039,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0327485129237175,\n          \"Height\": 0.01012183353304863,\n          \"Left\": 0.16638332605361938,\n          \"Top\": 0.07356321066617966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16638420522212982,\n            \"Y\": 0.07356321066617966\n          },\n          {\n            \"X\": 0.19913184642791748,\n            \"Y\": 0.07358068972826004\n          },\n          {\n            \"X\": 0.1991311013698578,\n            \"Y\": 0.08368504792451859\n          },\n          {\n            \"X\": 0.16638332605361938,\n            \"Y\": 0.08366759866476059\n          }\n        ]\n      },\n      \"Id\": \"fdd99d63-09fc-4bbf-a931-5339c9a1bb23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82170104980469,\n      \"Text\": \"COMPANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07468311488628387,\n          \"Height\": 0.010783856734633446,\n          \"Left\": 0.20220284163951874,\n          \"Top\": 0.07318288087844849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20220361649990082,\n            \"Y\": 0.07318288087844849\n          },\n          {\n            \"X\": 0.2768859565258026,\n            \"Y\": 0.07322274148464203\n          },\n          {\n            \"X\": 0.2768854796886444,\n            \"Y\": 0.08396673947572708\n          },\n          {\n            \"X\": 0.20220284163951874,\n            \"Y\": 0.0839269608259201\n          }\n        ]\n      },\n      \"Id\": \"14d9efee-f529-48fa-9a60-781dae10f8a6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.8788070678711,\n      \"Text\": \"CORP.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04598347097635269,\n          \"Height\": 0.010545332916080952,\n          \"Left\": 0.2804330289363861,\n          \"Top\": 0.0733809694647789\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2804334759712219,\n            \"Y\": 0.0733809694647789\n          },\n          {\n            \"X\": 0.3264164924621582,\n            \"Y\": 0.07340550422668457\n          },\n          {\n            \"X\": 0.3264162540435791,\n            \"Y\": 0.08392629772424698\n          },\n          {\n            \"X\": 0.2804330289363861,\n            \"Y\": 0.08390180766582489\n          }\n        ]\n      },\n      \"Id\": \"308f915d-60ca-4c47-95a8-6ef2e9ce6b1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82001495361328,\n      \"Text\": \"Period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043342892080545425,\n          \"Height\": 0.011130236089229584,\n          \"Left\": 0.5789139866828918,\n          \"Top\": 0.07151687145233154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5789139866828918,\n            \"Y\": 0.07151687145233154\n          },\n          {\n            \"X\": 0.6222558617591858,\n            \"Y\": 0.07154000550508499\n          },\n          {\n            \"X\": 0.622256875038147,\n            \"Y\": 0.08264710754156113\n          },\n          {\n            \"X\": 0.5789148211479187,\n            \"Y\": 0.08262401074171066\n          }\n        ]\n      },\n      \"Id\": \"7cc14f2f-4771-4dbd-b814-9b39a2f421ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 86.23955535888672,\n      \"Text\": \"ending:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04995226114988327,\n          \"Height\": 0.013010664843022823,\n          \"Left\": 0.6287855505943298,\n          \"Top\": 0.07190150767564774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6287855505943298,\n            \"Y\": 0.07190150767564774\n          },\n          {\n            \"X\": 0.6787363290786743,\n            \"Y\": 0.07192817330360413\n          },\n          {\n            \"X\": 0.6787378191947937,\n            \"Y\": 0.08491217344999313\n          },\n          {\n            \"X\": 0.6287868022918701,\n            \"Y\": 0.08488556742668152\n          }\n        ]\n      },\n      \"Id\": \"b0f28755-3f57-4346-ac3b-39fdd681e9df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87276458740234,\n      \"Text\": \"7/18/2008\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07078549265861511,\n          \"Height\": 0.011136953718960285,\n          \"Left\": 0.745150625705719,\n          \"Top\": 0.07156092673540115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.745150625705719,\n            \"Y\": 0.07156092673540115\n          },\n          {\n            \"X\": 0.8159342408180237,\n            \"Y\": 0.07159871608018875\n          },\n          {\n            \"X\": 0.8159360885620117,\n            \"Y\": 0.08269788324832916\n          },\n          {\n            \"X\": 0.7451521754264832,\n            \"Y\": 0.08266016840934753\n          }\n        ]\n      },\n      \"Id\": \"31ef405e-dd9a-4539-921c-3ae6c4732a9f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94763946533203,\n      \"Text\": \"475\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0262457225471735,\n          \"Height\": 0.010022114031016827,\n          \"Left\": 0.16707342863082886,\n          \"Top\": 0.08896888792514801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1670742928981781,\n            \"Y\": 0.08896888792514801\n          },\n          {\n            \"X\": 0.1933191418647766,\n            \"Y\": 0.08898285776376724\n          },\n          {\n            \"X\": 0.19331838190555573,\n            \"Y\": 0.09899100661277771\n          },\n          {\n            \"X\": 0.16707342863082886,\n            \"Y\": 0.09897706657648087\n          }\n        ]\n      },\n      \"Id\": \"064b0e68-301f-43ce-aa59-d142abefb35d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93801879882812,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03221428394317627,\n          \"Height\": 0.010264543816447258,\n          \"Left\": 0.1959039866924286,\n          \"Top\": 0.08871075510978699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19590474665164948,\n            \"Y\": 0.08871075510978699\n          },\n          {\n            \"X\": 0.22811827063560486,\n            \"Y\": 0.08872789889574051\n          },\n          {\n            \"X\": 0.22811762988567352,\n            \"Y\": 0.0989753007888794\n          },\n          {\n            \"X\": 0.1959039866924286,\n            \"Y\": 0.09895818680524826\n          }\n        ]\n      },\n      \"Id\": \"2558ca3a-3011-4da4-a3c6-1e2530d4cb87\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82774353027344,\n      \"Text\": \"AVENUE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06206626817584038,\n          \"Height\": 0.009835277684032917,\n          \"Left\": 0.23054328560829163,\n          \"Top\": 0.08909773826599121\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23054389655590057,\n            \"Y\": 0.08909773826599121\n          },\n          {\n            \"X\": 0.2926095426082611,\n            \"Y\": 0.08913075923919678\n          },\n          {\n            \"X\": 0.29260918498039246,\n            \"Y\": 0.09893301129341125\n          },\n          {\n            \"X\": 0.23054328560829163,\n            \"Y\": 0.09890004247426987\n          }\n        ]\n      },\n      \"Id\": \"8c597c73-cf3e-467b-b7a0-bbbaabb8e69a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85336303710938,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026507575064897537,\n          \"Height\": 0.012667246162891388,\n          \"Left\": 0.5785626173019409,\n          \"Top\": 0.08730734139680862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785626173019409,\n            \"Y\": 0.08730734139680862\n          },\n          {\n            \"X\": 0.605069100856781,\n            \"Y\": 0.0873214527964592\n          },\n          {\n            \"X\": 0.605070173740387,\n            \"Y\": 0.09997458755970001\n          },\n          {\n            \"X\": 0.5785635709762573,\n            \"Y\": 0.09996051341295242\n          }\n        ]\n      },\n      \"Id\": \"2f764d32-b7f3-4e26-a752-e6a094610b34\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.97298431396484,\n      \"Text\": \"date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03382411599159241,\n          \"Height\": 0.010524893179535866,\n          \"Left\": 0.6112859845161438,\n          \"Top\": 0.08727987855672836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6112859845161438,\n            \"Y\": 0.08727987855672836\n          },\n          {\n            \"X\": 0.6451090574264526,\n            \"Y\": 0.08729788661003113\n          },\n          {\n            \"X\": 0.6451101303100586,\n            \"Y\": 0.09780476987361908\n          },\n          {\n            \"X\": 0.6112869381904602,\n            \"Y\": 0.0977867990732193\n          }\n        ]\n      },\n      \"Id\": \"2b088102-6131-4637-8aa2-ef349268b49f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90161895751953,\n      \"Text\": \"7/25/2008\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07123647630214691,\n          \"Height\": 0.010762719437479973,\n          \"Left\": 0.7445810437202454,\n          \"Top\": 0.08705495297908783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7445810437202454,\n            \"Y\": 0.08705495297908783\n          },\n          {\n            \"X\": 0.8158157467842102,\n            \"Y\": 0.08709287643432617\n          },\n          {\n            \"X\": 0.8158175349235535,\n            \"Y\": 0.09781767427921295\n          },\n          {\n            \"X\": 0.7445825934410095,\n            \"Y\": 0.09777982532978058\n          }\n        ]\n      },\n      \"Id\": \"b7b80fcc-3ee0-40fd-89dc-ecc8186ca4b9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.60357666015625,\n      \"Text\": \"ANYTOWN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08049211651086807,\n          \"Height\": 0.011519135907292366,\n          \"Left\": 0.16673345863819122,\n          \"Top\": 0.1040053740143776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1667344570159912,\n            \"Y\": 0.1040053740143776\n          },\n          {\n            \"X\": 0.2472255825996399,\n            \"Y\": 0.10404808819293976\n          },\n          {\n            \"X\": 0.24722495675086975,\n            \"Y\": 0.11552451550960541\n          },\n          {\n            \"X\": 0.16673345863819122,\n            \"Y\": 0.1154818907380104\n          }\n        ]\n      },\n      \"Id\": \"7bdb4ecd-5f05-4ae9-82ef-ed48c9e23d5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86196899414062,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03112851083278656,\n          \"Height\": 0.01063804142177105,\n          \"Left\": 0.2509182095527649,\n          \"Top\": 0.10395927727222443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25091877579689026,\n            \"Y\": 0.10395927727222443\n          },\n          {\n            \"X\": 0.28204670548439026,\n            \"Y\": 0.1039757952094078\n          },\n          {\n            \"X\": 0.28204625844955444,\n            \"Y\": 0.11459732055664062\n          },\n          {\n            \"X\": 0.2509182095527649,\n            \"Y\": 0.11458083242177963\n          }\n        ]\n      },\n      \"Id\": \"73bfcf31-dbf7-44d1-b679-46b90575209a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89322662353516,\n      \"Text\": \"10101\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039865050464868546,\n          \"Height\": 0.010068289935588837,\n          \"Left\": 0.28621143102645874,\n          \"Top\": 0.1045248955488205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28621184825897217,\n            \"Y\": 0.1045248955488205\n          },\n          {\n            \"X\": 0.3260765075683594,\n            \"Y\": 0.10454604774713516\n          },\n          {\n            \"X\": 0.3260762393474579,\n            \"Y\": 0.11459318548440933\n          },\n          {\n            \"X\": 0.28621143102645874,\n            \"Y\": 0.11457207053899765\n          }\n        ]\n      },\n      \"Id\": \"a251b49b-8fa3-4631-a7b5-02f702a40d42\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20953369140625,\n      \"Text\": \"Social\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03558187931776047,\n          \"Height\": 0.00872616097331047,\n          \"Left\": 0.16571445763111115,\n          \"Top\": 0.14504849910736084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16571521759033203,\n            \"Y\": 0.14504849910736084\n          },\n          {\n            \"X\": 0.20129632949829102,\n            \"Y\": 0.1450672298669815\n          },\n          {\n            \"X\": 0.20129568874835968,\n            \"Y\": 0.1537746638059616\n          },\n          {\n            \"X\": 0.16571445763111115,\n            \"Y\": 0.15375594794750214\n          }\n        ]\n      },\n      \"Id\": \"cb8bd762-48c0-481a-95fb-3f0226141d98\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86858367919922,\n      \"Text\": \"Security\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049227263778448105,\n          \"Height\": 0.01033596508204937,\n          \"Left\": 0.20333445072174072,\n          \"Top\": 0.1451462358236313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20333519577980042,\n            \"Y\": 0.1451462358236313\n          },\n          {\n            \"X\": 0.2525617182254791,\n            \"Y\": 0.14517216384410858\n          },\n          {\n            \"X\": 0.25256118178367615,\n            \"Y\": 0.1554822027683258\n          },\n          {\n            \"X\": 0.20333445072174072,\n            \"Y\": 0.1554563343524933\n          }\n        ]\n      },\n      \"Id\": \"9f6d86c1-a3e8-48dd-9d8e-171d5f94fe11\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 67.63676452636719,\n      \"Text\": \"Number:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0518396832048893,\n          \"Height\": 0.008623520843684673,\n          \"Left\": 0.2537716329097748,\n          \"Top\": 0.145291268825531\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2537720799446106,\n            \"Y\": 0.145291268825531\n          },\n          {\n            \"X\": 0.3056113123893738,\n            \"Y\": 0.14531856775283813\n          },\n          {\n            \"X\": 0.3056110143661499,\n            \"Y\": 0.15391479432582855\n          },\n          {\n            \"X\": 0.2537716329097748,\n            \"Y\": 0.153887540102005\n          }\n        ]\n      },\n      \"Id\": \"cced817b-886b-497d-aff9-6bb5cf499ee9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.60932922363281,\n      \"Text\": \"987-65-4321\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07045836746692657,\n          \"Height\": 0.008958150632679462,\n          \"Left\": 0.3067587614059448,\n          \"Top\": 0.1451849490404129\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3067590296268463,\n            \"Y\": 0.1451849490404129\n          },\n          {\n            \"X\": 0.3772171139717102,\n            \"Y\": 0.14522205293178558\n          },\n          {\n            \"X\": 0.3772170841693878,\n            \"Y\": 0.1541430950164795\n          },\n          {\n            \"X\": 0.3067587614059448,\n            \"Y\": 0.15410606563091278\n          }\n        ]\n      },\n      \"Id\": \"84911617-53b1-41db-8fa9-445373854242\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79582977294922,\n      \"Text\": \"Taxable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04587414488196373,\n          \"Height\": 0.008901442401111126,\n          \"Left\": 0.1662297397851944,\n          \"Top\": 0.1553070992231369\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16623051464557648,\n            \"Y\": 0.1553070992231369\n          },\n          {\n            \"X\": 0.21210388839244843,\n            \"Y\": 0.15533120930194855\n          },\n          {\n            \"X\": 0.21210327744483948,\n            \"Y\": 0.1642085462808609\n          },\n          {\n            \"X\": 0.1662297397851944,\n            \"Y\": 0.16418448090553284\n          }\n        ]\n      },\n      \"Id\": \"7764f5be-0c19-49c2-a86a-620e4aac57e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.93267822265625,\n      \"Text\": \"Marital\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041334375739097595,\n          \"Height\": 0.008672661148011684,\n          \"Left\": 0.214925155043602,\n          \"Top\": 0.1554088443517685\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21492575109004974,\n            \"Y\": 0.1554088443517685\n          },\n          {\n            \"X\": 0.2562595307826996,\n            \"Y\": 0.15543057024478912\n          },\n          {\n            \"X\": 0.25625908374786377,\n            \"Y\": 0.16408149898052216\n          },\n          {\n            \"X\": 0.214925155043602,\n            \"Y\": 0.1640598177909851\n          }\n        ]\n      },\n      \"Id\": \"b0c8670e-c608-4e58-bc4b-dd53b7aa263f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.05659484863281,\n      \"Text\": \"Status:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04164393991231918,\n          \"Height\": 0.008941303007304668,\n          \"Left\": 0.25858399271965027,\n          \"Top\": 0.15540465712547302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2585844397544861,\n            \"Y\": 0.15540465712547302\n          },\n          {\n            \"X\": 0.30022791028022766,\n            \"Y\": 0.15542654693126678\n          },\n          {\n            \"X\": 0.3002276122570038,\n            \"Y\": 0.16434596478939056\n          },\n          {\n            \"X\": 0.25858399271965027,\n            \"Y\": 0.16432411968708038\n          }\n        ]\n      },\n      \"Id\": \"a5cf6166-80e9-4664-a858-6d696cf72b9b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93355560302734,\n      \"Text\": \"Married\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04578782245516777,\n          \"Height\": 0.009394154883921146,\n          \"Left\": 0.30368572473526,\n          \"Top\": 0.15505775809288025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3036860227584839,\n            \"Y\": 0.15505775809288025\n          },\n          {\n            \"X\": 0.3494735360145569,\n            \"Y\": 0.1550818234682083\n          },\n          {\n            \"X\": 0.34947341680526733,\n            \"Y\": 0.16445191204547882\n          },\n          {\n            \"X\": 0.30368572473526,\n            \"Y\": 0.16442789137363434\n          }\n        ]\n      },\n      \"Id\": \"4f6bfb2d-1178-41b5-bf86-a890663938fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9361801147461,\n      \"Text\": \"JOHN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04456353187561035,\n          \"Height\": 0.010857019573450089,\n          \"Left\": 0.5788884162902832,\n          \"Top\": 0.1502630114555359\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5788884162902832,\n            \"Y\": 0.1502630114555359\n          },\n          {\n            \"X\": 0.6234509944915771,\n            \"Y\": 0.150286465883255\n          },\n          {\n            \"X\": 0.6234519481658936,\n            \"Y\": 0.16112002730369568\n          },\n          {\n            \"X\": 0.5788892507553101,\n            \"Y\": 0.16109663248062134\n          }\n        ]\n      },\n      \"Id\": \"6f7eb3d4-5486-4c89-8179-2e4ed6023562\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89529418945312,\n      \"Text\": \"STILES\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05616707727313042,\n          \"Height\": 0.01010938547551632,\n          \"Left\": 0.627281904220581,\n          \"Top\": 0.15047107636928558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.627281904220581,\n            \"Y\": 0.15047107636928558\n          },\n          {\n            \"X\": 0.6834478378295898,\n            \"Y\": 0.15050062537193298\n          },\n          {\n            \"X\": 0.6834489703178406,\n            \"Y\": 0.16058045625686646\n          },\n          {\n            \"X\": 0.6272828578948975,\n            \"Y\": 0.16055096685886383\n          }\n        ]\n      },\n      \"Id\": \"23eb59ab-cfc2-419e-b70a-91147b7280df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 72.89268493652344,\n      \"Text\": \"Exemptions/Allowances:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14550407230854034,\n          \"Height\": 0.010661812499165535,\n          \"Left\": 0.16551117599010468,\n          \"Top\": 0.1662767231464386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1655120998620987,\n            \"Y\": 0.1662767231464386\n          },\n          {\n            \"X\": 0.311015248298645,\n            \"Y\": 0.1663530319929123\n          },\n          {\n            \"X\": 0.31101492047309875,\n            \"Y\": 0.17693853378295898\n          },\n          {\n            \"X\": 0.16551117599010468,\n            \"Y\": 0.17686237394809723\n          }\n        ]\n      },\n      \"Id\": \"d7d9693e-1c00-445f-8a48-7a2655c84dc4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95838928222656,\n      \"Text\": \"101\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027510302141308784,\n          \"Height\": 0.01081211306154728,\n          \"Left\": 0.5794377326965332,\n          \"Top\": 0.1622643917798996\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5794377326965332,\n            \"Y\": 0.1622643917798996\n          },\n          {\n            \"X\": 0.606947124004364,\n            \"Y\": 0.16227883100509644\n          },\n          {\n            \"X\": 0.6069480180740356,\n            \"Y\": 0.17307651042938232\n          },\n          {\n            \"X\": 0.5794385671615601,\n            \"Y\": 0.17306208610534668\n          }\n        ]\n      },\n      \"Id\": \"abb4ee4a-8408-4815-b1ff-d6328a9a036c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96450805664062,\n      \"Text\": \"MAIN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04661845043301582,\n          \"Height\": 0.011174209415912628,\n          \"Left\": 0.6140115857124329,\n          \"Top\": 0.16202090680599213\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6140115857124329,\n            \"Y\": 0.16202090680599213\n          },\n          {\n            \"X\": 0.6606287956237793,\n            \"Y\": 0.16204537451267242\n          },\n          {\n            \"X\": 0.6606300473213196,\n            \"Y\": 0.17319510877132416\n          },\n          {\n            \"X\": 0.614012598991394,\n            \"Y\": 0.17317070066928864\n          }\n        ]\n      },\n      \"Id\": \"b8a9b286-4169-4bda-8c62-ca37b6147bbe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89366149902344,\n      \"Text\": \"STREET\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06991599500179291,\n          \"Height\": 0.011101502925157547,\n          \"Left\": 0.6658598184585571,\n          \"Top\": 0.16199059784412384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6658598184585571,\n            \"Y\": 0.16199059784412384\n          },\n          {\n            \"X\": 0.7357742786407471,\n            \"Y\": 0.1620272994041443\n          },\n          {\n            \"X\": 0.7357758283615112,\n            \"Y\": 0.1730920970439911\n          },\n          {\n            \"X\": 0.6658610105514526,\n            \"Y\": 0.1730554699897766\n          }\n        ]\n      },\n      \"Id\": \"0d38397b-9838-469d-a829-cd6afceb9384\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.95182037353516,\n      \"Text\": \"Federal:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04946086183190346,\n          \"Height\": 0.009524892084300518,\n          \"Left\": 0.1843835860490799,\n          \"Top\": 0.17804661393165588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18438434600830078,\n            \"Y\": 0.17804661393165588\n          },\n          {\n            \"X\": 0.23384444415569305,\n            \"Y\": 0.1780724972486496\n          },\n          {\n            \"X\": 0.2338438779115677,\n            \"Y\": 0.18757151067256927\n          },\n          {\n            \"X\": 0.1843835860490799,\n            \"Y\": 0.18754567205905914\n          }\n        ]\n      },\n      \"Id\": \"481e1e26-4d60-4253-acd0-52da717c6469\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.79071044921875,\n      \"Text\": \"3.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011696861125528812,\n          \"Height\": 0.00988834723830223,\n          \"Left\": 0.23991364240646362,\n          \"Top\": 0.1783570945262909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.239914208650589,\n            \"Y\": 0.1783570945262909\n          },\n          {\n            \"X\": 0.25161048769950867,\n            \"Y\": 0.17836321890354156\n          },\n          {\n            \"X\": 0.2516099810600281,\n            \"Y\": 0.18824544548988342\n          },\n          {\n            \"X\": 0.23991364240646362,\n            \"Y\": 0.18823933601379395\n          }\n        ]\n      },\n      \"Id\": \"24ee258d-683a-4f93-b9d6-268696cffcbb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.6720199584961,\n      \"Text\": \"$25\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023550108075141907,\n          \"Height\": 0.00955806765705347,\n          \"Left\": 0.2543315291404724,\n          \"Top\": 0.17796240746974945\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.254332035779953,\n            \"Y\": 0.17796240746974945\n          },\n          {\n            \"X\": 0.2778816521167755,\n            \"Y\": 0.17797473073005676\n          },\n          {\n            \"X\": 0.2778812348842621,\n            \"Y\": 0.18752047419548035\n          },\n          {\n            \"X\": 0.2543315291404724,\n            \"Y\": 0.18750816583633423\n          }\n        ]\n      },\n      \"Id\": \"ef4671ba-d5c0-48e9-87df-7b813f143de9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88633728027344,\n      \"Text\": \"Additional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06134025752544403,\n          \"Height\": 0.009208199568092823,\n          \"Left\": 0.28275516629219055,\n          \"Top\": 0.17829152941703796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2827555537223816,\n            \"Y\": 0.17829152941703796\n          },\n          {\n            \"X\": 0.3440954089164734,\n            \"Y\": 0.1783236265182495\n          },\n          {\n            \"X\": 0.34409525990486145,\n            \"Y\": 0.1874997317790985\n          },\n          {\n            \"X\": 0.28275516629219055,\n            \"Y\": 0.18746767938137054\n          }\n        ]\n      },\n      \"Id\": \"57dd1e69-dae5-4e40-97c6-f1b1ad848080\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6226806640625,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02225675620138645,\n          \"Height\": 0.009669603779911995,\n          \"Left\": 0.34922507405281067,\n          \"Top\": 0.1779690682888031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3492252230644226,\n            \"Y\": 0.1779690682888031\n          },\n          {\n            \"X\": 0.37148183584213257,\n            \"Y\": 0.1779807209968567\n          },\n          {\n            \"X\": 0.3714817762374878,\n            \"Y\": 0.18763867020606995\n          },\n          {\n            \"X\": 0.34922507405281067,\n            \"Y\": 0.18762704730033875\n          }\n        ]\n      },\n      \"Id\": \"21617a59-8c15-45b0-8b4f-754a0222702c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.17655181884766,\n      \"Text\": \"ANYTOWN,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09616769850254059,\n          \"Height\": 0.013297594152390957,\n          \"Left\": 0.5781306028366089,\n          \"Top\": 0.17580297589302063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5781306028366089,\n            \"Y\": 0.17580297589302063\n          },\n          {\n            \"X\": 0.6742967963218689,\n            \"Y\": 0.17585332691669464\n          },\n          {\n            \"X\": 0.6742982864379883,\n            \"Y\": 0.18910056352615356\n          },\n          {\n            \"X\": 0.5781316161155701,\n            \"Y\": 0.1890503466129303\n          }\n        ]\n      },\n      \"Id\": \"73f34bd2-08e6-4068-9eb4-45706ec4eda0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.913330078125,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03730420395731926,\n          \"Height\": 0.011619972065091133,\n          \"Left\": 0.67974853515625,\n          \"Top\": 0.1760115921497345\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.67974853515625,\n            \"Y\": 0.1760115921497345\n          },\n          {\n            \"X\": 0.7170512676239014,\n            \"Y\": 0.17603111267089844\n          },\n          {\n            \"X\": 0.7170527577400208,\n            \"Y\": 0.18763156235218048\n          },\n          {\n            \"X\": 0.6797499060630798,\n            \"Y\": 0.18761207163333893\n          }\n        ]\n      },\n      \"Id\": \"7fe9f3ae-5ae8-4ce8-975e-6da5109bc1fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95745086669922,\n      \"Text\": \"12345\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04985219985246658,\n          \"Height\": 0.011417772620916367,\n          \"Left\": 0.7226186394691467,\n          \"Top\": 0.17628200352191925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7226186394691467,\n            \"Y\": 0.17628200352191925\n          },\n          {\n            \"X\": 0.772469162940979,\n            \"Y\": 0.17630809545516968\n          },\n          {\n            \"X\": 0.7724708914756775,\n            \"Y\": 0.18769977986812592\n          },\n          {\n            \"X\": 0.7226201891899109,\n            \"Y\": 0.18767373263835907\n          }\n        ]\n      },\n      \"Id\": \"ee30d969-31dc-41d2-8592-19b7081c6285\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.1081314086914,\n      \"Text\": \"State:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03432091698050499,\n          \"Height\": 0.008773516863584518,\n          \"Left\": 0.18516546487808228,\n          \"Top\": 0.18953494727611542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1851661652326584,\n            \"Y\": 0.18953494727611542\n          },\n          {\n            \"X\": 0.21948638558387756,\n            \"Y\": 0.18955285847187042\n          },\n          {\n            \"X\": 0.219485804438591,\n            \"Y\": 0.19830845296382904\n          },\n          {\n            \"X\": 0.18516546487808228,\n            \"Y\": 0.19829057157039642\n          }\n        ]\n      },\n      \"Id\": \"3c8ec732-e095-4ad5-81b1-d77537efb993\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72801208496094,\n      \"Text\": \"2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008675971068441868,\n          \"Height\": 0.008449831046164036,\n          \"Left\": 0.23978041112422943,\n          \"Top\": 0.1894749104976654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23978088796138763,\n            \"Y\": 0.1894749104976654\n          },\n          {\n            \"X\": 0.24845637381076813,\n            \"Y\": 0.18947944045066833\n          },\n          {\n            \"X\": 0.24845591187477112,\n            \"Y\": 0.19792473316192627\n          },\n          {\n            \"X\": 0.23978041112422943,\n            \"Y\": 0.19792021811008453\n          }\n        ]\n      },\n      \"Id\": \"68981ed5-1e11-4f96-8e2b-48c56322d15e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.39920043945312,\n      \"Text\": \"Local:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03624672070145607,\n          \"Height\": 0.009292127564549446,\n          \"Left\": 0.18479199707508087,\n          \"Top\": 0.20012450218200684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18479274213314056,\n            \"Y\": 0.20012450218200684\n          },\n          {\n            \"X\": 0.22103872895240784,\n            \"Y\": 0.20014339685440063\n          },\n          {\n            \"X\": 0.2210381180047989,\n            \"Y\": 0.20941662788391113\n          },\n          {\n            \"X\": 0.18479199707508087,\n            \"Y\": 0.20939777791500092\n          }\n        ]\n      },\n      \"Id\": \"d2a0d463-cecb-4a83-8bc6-9fd4f397c65b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.852294921875,\n      \"Text\": \"2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008743328973650932,\n          \"Height\": 0.008801726624369621,\n          \"Left\": 0.23953777551651,\n          \"Top\": 0.20028091967105865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2395382821559906,\n            \"Y\": 0.20028091967105865\n          },\n          {\n            \"X\": 0.2482811063528061,\n            \"Y\": 0.20028547942638397\n          },\n          {\n            \"X\": 0.2482806146144867,\n            \"Y\": 0.20908264815807343\n          },\n          {\n            \"X\": 0.23953777551651,\n            \"Y\": 0.2090781033039093\n          }\n        ]\n      },\n      \"Id\": \"aaf81227-5ca8-423a-9b45-4e2aa0459a59\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9607925415039,\n      \"Text\": \"Earnings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06931082904338837,\n          \"Height\": 0.013459205627441406,\n          \"Left\": 0.048463236540555954,\n          \"Top\": 0.23626023530960083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048465024679899216,\n            \"Y\": 0.23626023530960083\n          },\n          {\n            \"X\": 0.11777406185865402,\n            \"Y\": 0.23629610240459442\n          },\n          {\n            \"X\": 0.11777263879776001,\n            \"Y\": 0.24971944093704224\n          },\n          {\n            \"X\": 0.048463236540555954,\n            \"Y\": 0.2496836632490158\n          }\n        ]\n      },\n      \"Id\": \"f28b4358-dfae-4e17-9076-887520726675\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96734619140625,\n      \"Text\": \"rate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02945694699883461,\n          \"Height\": 0.010017167776823044,\n          \"Left\": 0.16499583423137665,\n          \"Top\": 0.23764441907405853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1649966984987259,\n            \"Y\": 0.23764441907405853\n          },\n          {\n            \"X\": 0.19445277750492096,\n            \"Y\": 0.23765966296195984\n          },\n          {\n            \"X\": 0.19445201754570007,\n            \"Y\": 0.24766159057617188\n          },\n          {\n            \"X\": 0.16499583423137665,\n            \"Y\": 0.24764637649059296\n          }\n        ]\n      },\n      \"Id\": \"61141a1a-1f30-443d-b28a-8681c62ff192\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9582748413086,\n      \"Text\": \"hours\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041159678250551224,\n          \"Height\": 0.010125490836799145,\n          \"Left\": 0.24279560148715973,\n          \"Top\": 0.23747625946998596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2427961826324463,\n            \"Y\": 0.23747625946998596\n          },\n          {\n            \"X\": 0.28395527601242065,\n            \"Y\": 0.23749755322933197\n          },\n          {\n            \"X\": 0.2839548885822296,\n            \"Y\": 0.24760174751281738\n          },\n          {\n            \"X\": 0.24279560148715973,\n            \"Y\": 0.24758048355579376\n          }\n        ]\n      },\n      \"Id\": \"0fd65814-d6a3-4169-993d-b40367918119\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82648468017578,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026677051559090614,\n          \"Height\": 0.010334692895412445,\n          \"Left\": 0.34537240862846375,\n          \"Top\": 0.23726646602153778\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34537258744239807,\n            \"Y\": 0.23726646602153778\n          },\n          {\n            \"X\": 0.372049480676651,\n            \"Y\": 0.23728027939796448\n          },\n          {\n            \"X\": 0.3720494210720062,\n            \"Y\": 0.24760116636753082\n          },\n          {\n            \"X\": 0.34537240862846375,\n            \"Y\": 0.2475873827934265\n          }\n        ]\n      },\n      \"Id\": \"06e0e3ed-efe6-48f6-bbd1-43aafbed4cac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90774536132812,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046613968908786774,\n          \"Height\": 0.01270758081227541,\n          \"Left\": 0.37476614117622375,\n          \"Top\": 0.23715071380138397\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37476620078086853,\n            \"Y\": 0.23715071380138397\n          },\n          {\n            \"X\": 0.421379953622818,\n            \"Y\": 0.2371748387813568\n          },\n          {\n            \"X\": 0.42138010263442993,\n            \"Y\": 0.2498582899570465\n          },\n          {\n            \"X\": 0.37476614117622375,\n            \"Y\": 0.24983422458171844\n          }\n        ]\n      },\n      \"Id\": \"c69f6646-5db9-4568-863a-2f9656f69362\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89580535888672,\n      \"Text\": \"year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03149498626589775,\n          \"Height\": 0.010030963458120823,\n          \"Left\": 0.44469818472862244,\n          \"Top\": 0.23936215043067932\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44469818472862244,\n            \"Y\": 0.23936215043067932\n          },\n          {\n            \"X\": 0.47619280219078064,\n            \"Y\": 0.2393784373998642\n          },\n          {\n            \"X\": 0.4761931598186493,\n            \"Y\": 0.24939312040805817\n          },\n          {\n            \"X\": 0.44469839334487915,\n            \"Y\": 0.24937684834003448\n          }\n        ]\n      },\n      \"Id\": \"ef8b9774-7b3e-456e-978b-acf7c56836d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92435455322266,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015135987661778927,\n          \"Height\": 0.00959678553044796,\n          \"Left\": 0.47899478673934937,\n          \"Top\": 0.2378387302160263\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47899478673934937,\n            \"Y\": 0.2378387302160263\n          },\n          {\n            \"X\": 0.49413037300109863,\n            \"Y\": 0.23784656822681427\n          },\n          {\n            \"X\": 0.49413079023361206,\n            \"Y\": 0.2474355250597\n          },\n          {\n            \"X\": 0.478995144367218,\n            \"Y\": 0.24742770195007324\n          }\n        ]\n      },\n      \"Id\": \"b1bf6bd9-f91c-49a5-a632-dc6c4ba16281\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94115447998047,\n      \"Text\": \"date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03262513503432274,\n          \"Height\": 0.009978185407817364,\n          \"Left\": 0.4973248541355133,\n          \"Top\": 0.23754051327705383\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4973248541355133,\n            \"Y\": 0.23754051327705383\n          },\n          {\n            \"X\": 0.529949426651001,\n            \"Y\": 0.23755739629268646\n          },\n          {\n            \"X\": 0.529949963092804,\n            \"Y\": 0.24751868844032288\n          },\n          {\n            \"X\": 0.49732527136802673,\n            \"Y\": 0.24750185012817383\n          }\n        ]\n      },\n      \"Id\": \"ecea9eb1-d04d-419e-8539-656650259181\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92572784423828,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04539421573281288,\n          \"Height\": 0.011327377520501614,\n          \"Left\": 0.5766529440879822,\n          \"Top\": 0.23737099766731262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5766529440879822,\n            \"Y\": 0.23737099766731262\n          },\n          {\n            \"X\": 0.6220461130142212,\n            \"Y\": 0.23739448189735413\n          },\n          {\n            \"X\": 0.6220471858978271,\n            \"Y\": 0.2486983835697174\n          },\n          {\n            \"X\": 0.5766538381576538,\n            \"Y\": 0.24867494404315948\n          }\n        ]\n      },\n      \"Id\": \"101393ca-9748-43a7-bf79-a4ac8014f8ca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9710464477539,\n      \"Text\": \"Benefits\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06486208736896515,\n          \"Height\": 0.01170947216451168,\n          \"Left\": 0.6252940893173218,\n          \"Top\": 0.23725497722625732\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6252940893173218,\n            \"Y\": 0.23725497722625732\n          },\n          {\n            \"X\": 0.6901547908782959,\n            \"Y\": 0.23728854954242706\n          },\n          {\n            \"X\": 0.6901562213897705,\n            \"Y\": 0.24896445870399475\n          },\n          {\n            \"X\": 0.6252952218055725,\n            \"Y\": 0.24893096089363098\n          }\n        ]\n      },\n      \"Id\": \"8aff941d-e0fb-4d4d-8161-c0e1a735617c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96096801757812,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029920078814029694,\n          \"Height\": 0.011004794389009476,\n          \"Left\": 0.6934384703636169,\n          \"Top\": 0.23766571283340454\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6934384703636169,\n            \"Y\": 0.23766571283340454\n          },\n          {\n            \"X\": 0.723357081413269,\n            \"Y\": 0.23768119513988495\n          },\n          {\n            \"X\": 0.7233585119247437,\n            \"Y\": 0.2486705183982849\n          },\n          {\n            \"X\": 0.693439781665802,\n            \"Y\": 0.2486550658941269\n          }\n        ]\n      },\n      \"Id\": \"c2264798-0928-4355-90f8-51ce8ebf314d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85408782958984,\n      \"Text\": \"Regular\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05216872692108154,\n          \"Height\": 0.012287428602576256,\n          \"Left\": 0.04820391908288002,\n          \"Top\": 0.2524224817752838\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048205554485321045,\n            \"Y\": 0.2524224817752838\n          },\n          {\n            \"X\": 0.10037264972925186,\n            \"Y\": 0.2524493932723999\n          },\n          {\n            \"X\": 0.10037126392126083,\n            \"Y\": 0.2647099196910858\n          },\n          {\n            \"X\": 0.04820391908288002,\n            \"Y\": 0.2646830677986145\n          }\n        ]\n      },\n      \"Id\": \"93231b6d-c44f-4adc-a75f-471d509e8498\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9853286743164,\n      \"Text\": \"10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03768472000956535,\n          \"Height\": 0.009851118549704552,\n          \"Left\": 0.16607119143009186,\n          \"Top\": 0.2533145844936371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1660720407962799,\n            \"Y\": 0.2533145844936371\n          },\n          {\n            \"X\": 0.2037559151649475,\n            \"Y\": 0.25333404541015625\n          },\n          {\n            \"X\": 0.2037551999092102,\n            \"Y\": 0.2631657123565674\n          },\n          {\n            \"X\": 0.16607119143009186,\n            \"Y\": 0.263146311044693\n          }\n        ]\n      },\n      \"Id\": \"013613c2-7cc8-4802-8002-7d9b02f8e4d9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95726013183594,\n      \"Text\": \"32.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038650620728731155,\n          \"Height\": 0.010002532042562962,\n          \"Left\": 0.24577964842319489,\n          \"Top\": 0.25323572754859924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24578019976615906,\n            \"Y\": 0.25323572754859924\n          },\n          {\n            \"X\": 0.28443026542663574,\n            \"Y\": 0.2532556653022766\n          },\n          {\n            \"X\": 0.2844298779964447,\n            \"Y\": 0.26323825120925903\n          },\n          {\n            \"X\": 0.24577964842319489,\n            \"Y\": 0.26321834325790405\n          }\n        ]\n      },\n      \"Id\": \"7a2ec5f6-e404-4375-8f72-9e594661f698\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93513488769531,\n      \"Text\": \"320.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04622955992817879,\n          \"Height\": 0.010005136020481586,\n          \"Left\": 0.37489357590675354,\n          \"Top\": 0.2532278597354889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3748936355113983,\n            \"Y\": 0.2532278597354889\n          },\n          {\n            \"X\": 0.4211229979991913,\n            \"Y\": 0.25325170159339905\n          },\n          {\n            \"X\": 0.4211231470108032,\n            \"Y\": 0.2632329761981964\n          },\n          {\n            \"X\": 0.37489357590675354,\n            \"Y\": 0.26320916414260864\n          }\n        ]\n      },\n      \"Id\": \"7ecf1f6a-9e32-4e55-8bde-a49ac447d943\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87945556640625,\n      \"Text\": \"16,640.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06557746231555939,\n          \"Height\": 0.010449650697410107,\n          \"Left\": 0.4640209376811981,\n          \"Top\": 0.2532294690608978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4640209376811981,\n            \"Y\": 0.2532294690608978\n          },\n          {\n            \"X\": 0.529597818851471,\n            \"Y\": 0.25326329469680786\n          },\n          {\n            \"X\": 0.5295984148979187,\n            \"Y\": 0.2636791169643402\n          },\n          {\n            \"X\": 0.4640212655067444,\n            \"Y\": 0.26364535093307495\n          }\n        ]\n      },\n      \"Id\": \"ee4b7057-65b8-4423-8206-f65213d48339\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5367202758789,\n      \"Text\": \"Information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09015334397554398,\n          \"Height\": 0.011279510334134102,\n          \"Left\": 0.5768205523490906,\n          \"Top\": 0.2517431080341339\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768205523490906,\n            \"Y\": 0.2517431080341339\n          },\n          {\n            \"X\": 0.6669726371765137,\n            \"Y\": 0.2517896294593811\n          },\n          {\n            \"X\": 0.666973888874054,\n            \"Y\": 0.26302260160446167\n          },\n          {\n            \"X\": 0.5768213868141174,\n            \"Y\": 0.26297619938850403\n          }\n        ]\n      },\n      \"Id\": \"f705033f-5a78-4b2b-bec2-61121ac352f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89653015136719,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02671503648161888,\n          \"Height\": 0.010363224893808365,\n          \"Left\": 0.7564947605133057,\n          \"Top\": 0.2525874376296997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7564947605133057,\n            \"Y\": 0.2525874376296997\n          },\n          {\n            \"X\": 0.7832081317901611,\n            \"Y\": 0.2526012063026428\n          },\n          {\n            \"X\": 0.7832097411155701,\n            \"Y\": 0.2629506587982178\n          },\n          {\n            \"X\": 0.756496250629425,\n            \"Y\": 0.26293689012527466\n          }\n        ]\n      },\n      \"Id\": \"2391bded-dfa9-4042-949f-93787a3ae076\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92682647705078,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04546458274126053,\n          \"Height\": 0.012134036049246788,\n          \"Left\": 0.7868872880935669,\n          \"Top\": 0.2526462972164154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7868872880935669,\n            \"Y\": 0.2526462972164154\n          },\n          {\n            \"X\": 0.8323497772216797,\n            \"Y\": 0.2526697516441345\n          },\n          {\n            \"X\": 0.8323519229888916,\n            \"Y\": 0.26478034257888794\n          },\n          {\n            \"X\": 0.7868891954421997,\n            \"Y\": 0.2647569179534912\n          }\n        ]\n      },\n      \"Id\": \"902d82e7-66ce-4ab7-ac11-43c5afc7bc69\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91203308105469,\n      \"Text\": \"total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032755762338638306,\n          \"Height\": 0.01001412607729435,\n          \"Left\": 0.8563255071640015,\n          \"Top\": 0.25277841091156006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8563255071640015,\n            \"Y\": 0.25277841091156006\n          },\n          {\n            \"X\": 0.8890792727470398,\n            \"Y\": 0.2527953088283539\n          },\n          {\n            \"X\": 0.8890812397003174,\n            \"Y\": 0.26279252767562866\n          },\n          {\n            \"X\": 0.8563273549079895,\n            \"Y\": 0.2627756595611572\n          }\n        ]\n      },\n      \"Id\": \"272a19d1-5972-4595-8f8e-2aab7beaa1b4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8738021850586,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014885489828884602,\n          \"Height\": 0.009542438201606274,\n          \"Left\": 0.8919167518615723,\n          \"Top\": 0.25319939851760864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8919167518615723,\n            \"Y\": 0.25319939851760864\n          },\n          {\n            \"X\": 0.9068002700805664,\n            \"Y\": 0.25320708751678467\n          },\n          {\n            \"X\": 0.906802237033844,\n            \"Y\": 0.2627418637275696\n          },\n          {\n            \"X\": 0.8919186592102051,\n            \"Y\": 0.26273417472839355\n          }\n        ]\n      },\n      \"Id\": \"024452d2-618a-4e7a-9eec-5dfa47fa6504\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94766998291016,\n      \"Text\": \"date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03256719931960106,\n          \"Height\": 0.010240484960377216,\n          \"Left\": 0.9100285172462463,\n          \"Top\": 0.2527835965156555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9100285172462463,\n            \"Y\": 0.2527835965156555\n          },\n          {\n            \"X\": 0.942593514919281,\n            \"Y\": 0.2528004050254822\n          },\n          {\n            \"X\": 0.9425957202911377,\n            \"Y\": 0.26302409172058105\n          },\n          {\n            \"X\": 0.9100306630134583,\n            \"Y\": 0.2630073130130768\n          }\n        ]\n      },\n      \"Id\": \"59b8ddff-76d9-4229-b840-e515f05191b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94938659667969,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06074037775397301,\n          \"Height\": 0.010400752536952496,\n          \"Left\": 0.04815497621893883,\n          \"Top\": 0.2667449414730072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048156362026929855,\n            \"Y\": 0.2667449414730072\n          },\n          {\n            \"X\": 0.10889535397291183,\n            \"Y\": 0.2667762041091919\n          },\n          {\n            \"X\": 0.1088942214846611,\n            \"Y\": 0.2771456837654114\n          },\n          {\n            \"X\": 0.04815497621893883,\n            \"Y\": 0.27711451053619385\n          }\n        ]\n      },\n      \"Id\": \"8e70620b-b3e0-4d3e-a47e-721dd5b2317a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97119140625,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037271689623594284,\n          \"Height\": 0.009945896454155445,\n          \"Left\": 0.16658230125904083,\n          \"Top\": 0.26755163073539734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16658316552639008,\n            \"Y\": 0.26755163073539734\n          },\n          {\n            \"X\": 0.20385399460792542,\n            \"Y\": 0.2675707936286926\n          },\n          {\n            \"X\": 0.2038532793521881,\n            \"Y\": 0.2774975299835205\n          },\n          {\n            \"X\": 0.16658230125904083,\n            \"Y\": 0.2774783968925476\n          }\n        ]\n      },\n      \"Id\": \"910a0dc6-a9a5-4674-a277-48f0dec5acc7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98035430908203,\n      \"Text\": \"1.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029214758425951004,\n          \"Height\": 0.01006261259317398,\n          \"Left\": 0.2552531957626343,\n          \"Top\": 0.2675531804561615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25525373220443726,\n            \"Y\": 0.2675531804561615\n          },\n          {\n            \"X\": 0.2844679653644562,\n            \"Y\": 0.2675682306289673\n          },\n          {\n            \"X\": 0.28446754813194275,\n            \"Y\": 0.27761581540107727\n          },\n          {\n            \"X\": 0.2552531957626343,\n            \"Y\": 0.27760079503059387\n          }\n        ]\n      },\n      \"Id\": \"1004582d-03fc-442e-980a-632cc7426778\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97041320800781,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03686118870973587,\n          \"Height\": 0.009980025701224804,\n          \"Left\": 0.3845655918121338,\n          \"Top\": 0.2675122618675232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2675122618675232\n          },\n          {\n            \"X\": 0.4214266240596771,\n            \"Y\": 0.26753121614456177\n          },\n          {\n            \"X\": 0.42142677307128906,\n            \"Y\": 0.2774922847747803\n          },\n          {\n            \"X\": 0.3845655918121338,\n            \"Y\": 0.2774733603000641\n          }\n        ]\n      },\n      \"Id\": \"46599f68-23c3-4df6-909a-0e5f4c41ee07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96766662597656,\n      \"Text\": \"780.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046530354768037796,\n          \"Height\": 0.010219424962997437,\n          \"Left\": 0.48337647318840027,\n          \"Top\": 0.26737067103385925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48337647318840027,\n            \"Y\": 0.26737067103385925\n          },\n          {\n            \"X\": 0.5299062728881836,\n            \"Y\": 0.26739463210105896\n          },\n          {\n            \"X\": 0.5299068093299866,\n            \"Y\": 0.2775900959968567\n          },\n          {\n            \"X\": 0.4833768606185913,\n            \"Y\": 0.27756622433662415\n          }\n        ]\n      },\n      \"Id\": \"9eafa986-33f4-43d1-9c9b-8beca147d189\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9143295288086,\n      \"Text\": \"Group\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042627379298210144,\n          \"Height\": 0.01228717714548111,\n          \"Left\": 0.5767555832862854,\n          \"Top\": 0.26781925559043884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767555832862854,\n            \"Y\": 0.26781925559043884\n          },\n          {\n            \"X\": 0.619381844997406,\n            \"Y\": 0.2678411602973938\n          },\n          {\n            \"X\": 0.6193829774856567,\n            \"Y\": 0.28010642528533936\n          },\n          {\n            \"X\": 0.5767565369606018,\n            \"Y\": 0.2800845503807068\n          }\n        ]\n      },\n      \"Id\": \"7ad99093-a1fc-4401-ae26-d8ccd9bec453\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.45491790771484,\n      \"Text\": \"Term\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03536194935441017,\n          \"Height\": 0.010313731618225574,\n          \"Left\": 0.623176097869873,\n          \"Top\": 0.26787617802619934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.623176097869873,\n            \"Y\": 0.26787617802619934\n          },\n          {\n            \"X\": 0.6585369110107422,\n            \"Y\": 0.26789435744285583\n          },\n          {\n            \"X\": 0.6585380434989929,\n            \"Y\": 0.27818989753723145\n          },\n          {\n            \"X\": 0.6231770515441895,\n            \"Y\": 0.27817174792289734\n          }\n        ]\n      },\n      \"Id\": \"0e1d9485-0cd1-4c3f-857d-54416a258eff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68003845214844,\n      \"Text\": \"Life\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025305896997451782,\n          \"Height\": 0.010303042829036713,\n          \"Left\": 0.6628572344779968,\n          \"Top\": 0.2679847180843353\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6628572344779968,\n            \"Y\": 0.2679847180843353\n          },\n          {\n            \"X\": 0.6881619095802307,\n            \"Y\": 0.26799771189689636\n          },\n          {\n            \"X\": 0.688163161277771,\n            \"Y\": 0.27828773856163025\n          },\n          {\n            \"X\": 0.6628583669662476,\n            \"Y\": 0.2782747447490692\n          }\n        ]\n      },\n      \"Id\": \"195d362a-b6e2-4c5b-9d74-fb1661adf515\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91934967041016,\n      \"Text\": \"0.51\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028741711750626564,\n          \"Height\": 0.009984729811549187,\n          \"Left\": 0.8023031949996948,\n          \"Top\": 0.2685137987136841\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8023031949996948,\n            \"Y\": 0.2685137987136841\n          },\n          {\n            \"X\": 0.8310431241989136,\n            \"Y\": 0.2685285806655884\n          },\n          {\n            \"X\": 0.8310449123382568,\n            \"Y\": 0.2784985303878784\n          },\n          {\n            \"X\": 0.8023048043251038,\n            \"Y\": 0.2784837782382965\n          }\n        ]\n      },\n      \"Id\": \"a5d5ce60-dc3b-4137-96e0-51ca5f3f1dc0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96684265136719,\n      \"Text\": \"27.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037982746958732605,\n          \"Height\": 0.010073179379105568,\n          \"Left\": 0.9043900370597839,\n          \"Top\": 0.268672376871109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9043900370597839,\n            \"Y\": 0.268672376871109\n          },\n          {\n            \"X\": 0.942370593547821,\n            \"Y\": 0.26869192719459534\n          },\n          {\n            \"X\": 0.942372739315033,\n            \"Y\": 0.27874556183815\n          },\n          {\n            \"X\": 0.9043920636177063,\n            \"Y\": 0.27872607111930847\n          }\n        ]\n      },\n      \"Id\": \"79f8d481-27c5-4fa5-8981-71e5041efcc3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93984985351562,\n      \"Text\": \"Holiday\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050633981823921204,\n          \"Height\": 0.012951508164405823,\n          \"Left\": 0.04812180995941162,\n          \"Top\": 0.2820318341255188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04812353476881981,\n            \"Y\": 0.2820318341255188\n          },\n          {\n            \"X\": 0.09875579178333282,\n            \"Y\": 0.28205782175064087\n          },\n          {\n            \"X\": 0.09875432401895523,\n            \"Y\": 0.2949833571910858\n          },\n          {\n            \"X\": 0.04812180995941162,\n            \"Y\": 0.2949574291706085\n          }\n        ]\n      },\n      \"Id\": \"2afc07dc-29b3-45e7-bc76-efdc5c314ab1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9839096069336,\n      \"Text\": \"10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03735325112938881,\n          \"Height\": 0.00993636716157198,\n          \"Left\": 0.1664377748966217,\n          \"Top\": 0.2827611565589905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16643863916397095,\n            \"Y\": 0.2827611565589905\n          },\n          {\n            \"X\": 0.20379102230072021,\n            \"Y\": 0.28278031945228577\n          },\n          {\n            \"X\": 0.2037903070449829,\n            \"Y\": 0.2926975190639496\n          },\n          {\n            \"X\": 0.1664377748966217,\n            \"Y\": 0.2926783859729767\n          }\n        ]\n      },\n      \"Id\": \"6a6a9e18-29bd-44a3-9a2a-f619c89e1792\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93985748291016,\n      \"Text\": \"8.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0303603895008564,\n          \"Height\": 0.009918317198753357,\n          \"Left\": 0.2541239559650421,\n          \"Top\": 0.282818078994751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2541244626045227,\n            \"Y\": 0.282818078994751\n          },\n          {\n            \"X\": 0.2844843566417694,\n            \"Y\": 0.28283363580703735\n          },\n          {\n            \"X\": 0.284483939409256,\n            \"Y\": 0.29273638129234314\n          },\n          {\n            \"X\": 0.2541239559650421,\n            \"Y\": 0.29272085428237915\n          }\n        ]\n      },\n      \"Id\": \"3c927005-1f6e-4e71-8af9-7e7bc0fc2d73\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92776489257812,\n      \"Text\": \"80.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03822328895330429,\n          \"Height\": 0.009878597222268581,\n          \"Left\": 0.3833726644515991,\n          \"Top\": 0.2828782796859741\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.2828782796859741\n          },\n          {\n            \"X\": 0.42159581184387207,\n            \"Y\": 0.2828978896141052\n          },\n          {\n            \"X\": 0.421595960855484,\n            \"Y\": 0.2927568852901459\n          },\n          {\n            \"X\": 0.3833726644515991,\n            \"Y\": 0.29273730516433716\n          }\n        ]\n      },\n      \"Id\": \"9e93d0c0-eb9a-4471-b646-377c331b6825\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9427261352539,\n      \"Text\": \"4,160.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058800388127565384,\n          \"Height\": 0.010359588079154491,\n          \"Left\": 0.47135302424430847,\n          \"Top\": 0.2825688123703003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47135302424430847,\n            \"Y\": 0.2825688123703003\n          },\n          {\n            \"X\": 0.5301528573036194,\n            \"Y\": 0.28259897232055664\n          },\n          {\n            \"X\": 0.5301533937454224,\n            \"Y\": 0.29292839765548706\n          },\n          {\n            \"X\": 0.4713533818721771,\n            \"Y\": 0.2928982973098755\n          }\n        ]\n      },\n      \"Id\": \"72970b90-e3f6-4ad4-b36f-9c9d6b67241c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9623031616211,\n      \"Text\": \"Loan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033292870968580246,\n          \"Height\": 0.010152917355298996,\n          \"Left\": 0.5767180323600769,\n          \"Top\": 0.28334835171699524\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767180323600769,\n            \"Y\": 0.28334835171699524\n          },\n          {\n            \"X\": 0.6100099682807922,\n            \"Y\": 0.2833654284477234\n          },\n          {\n            \"X\": 0.6100108623504639,\n            \"Y\": 0.29350125789642334\n          },\n          {\n            \"X\": 0.5767187476158142,\n            \"Y\": 0.29348424077033997\n          }\n        ]\n      },\n      \"Id\": \"81bc505a-69fd-484f-af61-cf5be23cf0d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79383850097656,\n      \"Text\": \"Amt\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028360793367028236,\n          \"Height\": 0.010158434510231018,\n          \"Left\": 0.6128195524215698,\n          \"Top\": 0.283267080783844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6128195524215698,\n            \"Y\": 0.283267080783844\n          },\n          {\n            \"X\": 0.6411793231964111,\n            \"Y\": 0.2832816243171692\n          },\n          {\n            \"X\": 0.6411803364753723,\n            \"Y\": 0.2934255003929138\n          },\n          {\n            \"X\": 0.6128204464912415,\n            \"Y\": 0.293410986661911\n          }\n        ]\n      },\n      \"Id\": \"7b928b73-75bc-4dc3-9e82-e48ef3974067\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72465515136719,\n      \"Text\": \"Paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030518002808094025,\n          \"Height\": 0.010469081811606884,\n          \"Left\": 0.6441700458526611,\n          \"Top\": 0.2830445468425751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6441700458526611,\n            \"Y\": 0.2830445468425751\n          },\n          {\n            \"X\": 0.674686849117279,\n            \"Y\": 0.283060222864151\n          },\n          {\n            \"X\": 0.6746880412101746,\n            \"Y\": 0.2935136556625366\n          },\n          {\n            \"X\": 0.6441711187362671,\n            \"Y\": 0.2934980094432831\n          }\n        ]\n      },\n      \"Id\": \"3768fca1-b5f7-40af-ba03-c5a5e04a9712\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92259216308594,\n      \"Text\": \"840.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046753834933042526,\n          \"Height\": 0.010666605085134506,\n          \"Left\": 0.8956746459007263,\n          \"Top\": 0.28368595242500305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8956746459007263,\n            \"Y\": 0.28368595242500305\n          },\n          {\n            \"X\": 0.9424261450767517,\n            \"Y\": 0.28370994329452515\n          },\n          {\n            \"X\": 0.942428469657898,\n            \"Y\": 0.29435256123542786\n          },\n          {\n            \"X\": 0.8956767916679382,\n            \"Y\": 0.29432862997055054\n          }\n        ]\n      },\n      \"Id\": \"d79ae10f-be73-4f56-8fa2-8eaf706a01b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42350769042969,\n      \"Text\": \"Tuition\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04613829031586647,\n          \"Height\": 0.01095814909785986,\n          \"Left\": 0.04747363179922104,\n          \"Top\": 0.2969394624233246\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.047475092113018036,\n            \"Y\": 0.2969394624233246\n          },\n          {\n            \"X\": 0.09361192584037781,\n            \"Y\": 0.29696306586265564\n          },\n          {\n            \"X\": 0.09361065924167633,\n            \"Y\": 0.3078975975513458\n          },\n          {\n            \"X\": 0.04747363179922104,\n            \"Y\": 0.30787405371665955\n          }\n        ]\n      },\n      \"Id\": \"8df60e36-6dc6-4e56-9b9c-ac90dbff50d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.8167953491211,\n      \"Text\": \"37.43*\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04241195693612099,\n          \"Height\": 0.009879774414002895,\n          \"Left\": 0.3839637041091919,\n          \"Top\": 0.2979101836681366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.2979101836681366\n          },\n          {\n            \"X\": 0.42637550830841064,\n            \"Y\": 0.29793187975883484\n          },\n          {\n            \"X\": 0.4263756573200226,\n            \"Y\": 0.30778995156288147\n          },\n          {\n            \"X\": 0.3839637041091919,\n            \"Y\": 0.307768315076828\n          }\n        ]\n      },\n      \"Id\": \"35ae6aa2-def6-4427-948e-d5bbe83aac7c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84208679199219,\n      \"Text\": \"1,946.80\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058109480887651443,\n          \"Height\": 0.010069272480905056,\n          \"Left\": 0.4719546139240265,\n          \"Top\": 0.29820770025253296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4719546139240265,\n            \"Y\": 0.29820770025253296\n          },\n          {\n            \"X\": 0.5300635099411011,\n            \"Y\": 0.2982374131679535\n          },\n          {\n            \"X\": 0.5300641059875488,\n            \"Y\": 0.3082769811153412\n          },\n          {\n            \"X\": 0.47195497155189514,\n            \"Y\": 0.30824732780456543\n          }\n        ]\n      },\n      \"Id\": \"0891535a-fa26-43eb-9809-64237ee1fb0a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.951171875,\n      \"Text\": \"Gross\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042702220380306244,\n          \"Height\": 0.010434250347316265,\n          \"Left\": 0.1670255810022354,\n          \"Top\": 0.31260812282562256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16702648997306824,\n            \"Y\": 0.31260812282562256\n          },\n          {\n            \"X\": 0.20972780883312225,\n            \"Y\": 0.31262990832328796\n          },\n          {\n            \"X\": 0.20972707867622375,\n            \"Y\": 0.3230423629283905\n          },\n          {\n            \"X\": 0.1670255810022354,\n            \"Y\": 0.3230206370353699\n          }\n        ]\n      },\n      \"Id\": \"ce3537c4-9283-43a4-9636-a54ee7e1bea9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74077606201172,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026880936697125435,\n          \"Height\": 0.01218110229820013,\n          \"Left\": 0.21339549124240875,\n          \"Top\": 0.31274014711380005\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2133963257074356,\n            \"Y\": 0.31274014711380005\n          },\n          {\n            \"X\": 0.24027644097805023,\n            \"Y\": 0.3127538561820984\n          },\n          {\n            \"X\": 0.24027572572231293,\n            \"Y\": 0.32492125034332275\n          },\n          {\n            \"X\": 0.21339549124240875,\n            \"Y\": 0.3249075710773468\n          }\n        ]\n      },\n      \"Id\": \"1004a297-a725-41ee-bdd0-4279d2b20335\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.06597137451172,\n      \"Text\": \"$ 452.43\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087379530072212,\n          \"Height\": 0.010658894665539265,\n          \"Left\": 0.3595705032348633,\n          \"Top\": 0.3125160336494446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35957059264183044,\n            \"Y\": 0.3125160336494446\n          },\n          {\n            \"X\": 0.42044416069984436,\n            \"Y\": 0.31254708766937256\n          },\n          {\n            \"X\": 0.4204442799091339,\n            \"Y\": 0.32317495346069336\n          },\n          {\n            \"X\": 0.3595705032348633,\n            \"Y\": 0.32314395904541016\n          }\n        ]\n      },\n      \"Id\": \"7116a7da-e1fd-4185-9c54-2d89eb6f1214\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82225799560547,\n      \"Text\": \"23,526.80\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0667140781879425,\n          \"Height\": 0.0105618080124259,\n          \"Left\": 0.46298760175704956,\n          \"Top\": 0.31343764066696167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46298760175704956,\n            \"Y\": 0.31343764066696167\n          },\n          {\n            \"X\": 0.5297011137008667,\n            \"Y\": 0.3134716749191284\n          },\n          {\n            \"X\": 0.5297016501426697,\n            \"Y\": 0.32399946451187134\n          },\n          {\n            \"X\": 0.4629879295825958,\n            \"Y\": 0.32396548986434937\n          }\n        ]\n      },\n      \"Id\": \"2d9e1e57-cb15-4791-ad88-2ec7468379f1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46178436279297,\n      \"Text\": \"Vac\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026975693181157112,\n          \"Height\": 0.01033420953899622,\n          \"Left\": 0.5758248567581177,\n          \"Top\": 0.3138124644756317\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758248567581177,\n            \"Y\": 0.3138124644756317\n          },\n          {\n            \"X\": 0.602799654006958,\n            \"Y\": 0.31382620334625244\n          },\n          {\n            \"X\": 0.6028005480766296,\n            \"Y\": 0.32414665818214417\n          },\n          {\n            \"X\": 0.5758256316184998,\n            \"Y\": 0.3241329491138458\n          }\n        ]\n      },\n      \"Id\": \"1c7ec916-4a44-4299-a218-fd7909537f2d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62895202636719,\n      \"Text\": \"Hrs\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02345903590321541,\n          \"Height\": 0.01050612609833479,\n          \"Left\": 0.6101168990135193,\n          \"Top\": 0.31367728114128113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6101168990135193,\n            \"Y\": 0.31367728114128113\n          },\n          {\n            \"X\": 0.633574903011322,\n            \"Y\": 0.3136892318725586\n          },\n          {\n            \"X\": 0.6335759162902832,\n            \"Y\": 0.3241834044456482\n          },\n          {\n            \"X\": 0.6101178526878357,\n            \"Y\": 0.3241714835166931\n          }\n        ]\n      },\n      \"Id\": \"709143fc-5137-40c8-a2ed-e094bea1a6e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9650650024414,\n      \"Text\": \"40.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038161877542734146,\n          \"Height\": 0.010520696640014648,\n          \"Left\": 0.904356062412262,\n          \"Top\": 0.31415197253227234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.904356062412262,\n            \"Y\": 0.31415197253227234\n          },\n          {\n            \"X\": 0.9425156712532043,\n            \"Y\": 0.3141714334487915\n          },\n          {\n            \"X\": 0.9425179958343506,\n            \"Y\": 0.324672669172287\n          },\n          {\n            \"X\": 0.9043582081794739,\n            \"Y\": 0.3246532678604126\n          }\n        ]\n      },\n      \"Id\": \"a1157363-ccc1-4e5e-9a6b-eab4591c9962\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73625183105469,\n      \"Text\": \"Sick\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02987760677933693,\n          \"Height\": 0.010379652492702007,\n          \"Left\": 0.5764848589897156,\n          \"Top\": 0.329090416431427\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764848589897156,\n            \"Y\": 0.329090416431427\n          },\n          {\n            \"X\": 0.6063615679740906,\n            \"Y\": 0.3291056156158447\n          },\n          {\n            \"X\": 0.6063624620437622,\n            \"Y\": 0.3394700884819031\n          },\n          {\n            \"X\": 0.5764856338500977,\n            \"Y\": 0.33945491909980774\n          }\n        ]\n      },\n      \"Id\": \"2e58008e-1e63-46c4-b755-4a4b4cea9572\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5521240234375,\n      \"Text\": \"Hrs\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02402915619313717,\n          \"Height\": 0.010463021695613861,\n          \"Left\": 0.6091822385787964,\n          \"Top\": 0.3290726840496063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6091822385787964,\n            \"Y\": 0.3290726840496063\n          },\n          {\n            \"X\": 0.6332103610038757,\n            \"Y\": 0.3290849030017853\n          },\n          {\n            \"X\": 0.6332113742828369,\n            \"Y\": 0.3395357131958008\n          },\n          {\n            \"X\": 0.609183132648468,\n            \"Y\": 0.3395235240459442\n          }\n        ]\n      },\n      \"Id\": \"1bfc6c9f-7a40-4828-bfcc-61161f8a0f0a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.833984375,\n      \"Text\": \"16.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03717483952641487,\n          \"Height\": 0.010468751192092896,\n          \"Left\": 0.9054335355758667,\n          \"Top\": 0.3296695649623871\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9054335355758667,\n            \"Y\": 0.3296695649623871\n          },\n          {\n            \"X\": 0.9426060914993286,\n            \"Y\": 0.3296884596347809\n          },\n          {\n            \"X\": 0.9426083564758301,\n            \"Y\": 0.34013831615448\n          },\n          {\n            \"X\": 0.9054356813430786,\n            \"Y\": 0.34011945128440857\n          }\n        ]\n      },\n      \"Id\": \"47030a68-6a4f-4552-9429-f76d3efff98a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74022674560547,\n      \"Text\": \"Deductions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09023692458868027,\n          \"Height\": 0.011784988455474377,\n          \"Left\": 0.047912683337926865,\n          \"Top\": 0.34313178062438965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04791424795985222,\n            \"Y\": 0.34313178062438965\n          },\n          {\n            \"X\": 0.13814960420131683,\n            \"Y\": 0.34317752718925476\n          },\n          {\n            \"X\": 0.1381484568119049,\n            \"Y\": 0.3549167513847351\n          },\n          {\n            \"X\": 0.047912683337926865,\n            \"Y\": 0.35487112402915955\n          }\n        ]\n      },\n      \"Id\": \"b1fd60c8-19c1-4fc3-84eb-ae6d8886ff84\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80423736572266,\n      \"Text\": \"Statutory\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06641349196434021,\n          \"Height\": 0.01263391226530075,\n          \"Left\": 0.16528518497943878,\n          \"Top\": 0.3442513644695282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16528627276420593,\n            \"Y\": 0.3442513644695282\n          },\n          {\n            \"X\": 0.2316986620426178,\n            \"Y\": 0.3442850112915039\n          },\n          {\n            \"X\": 0.2316979020833969,\n            \"Y\": 0.35688528418540955\n          },\n          {\n            \"X\": 0.16528518497943878,\n            \"Y\": 0.3568516969680786\n          }\n        ]\n      },\n      \"Id\": \"04d41d85-6498-4b62-9f57-c4ea41811a31\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89875793457031,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029553616419434547,\n          \"Height\": 0.010047758929431438,\n          \"Left\": 0.5760388970375061,\n          \"Top\": 0.3433203101158142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5760388970375061,\n            \"Y\": 0.3433203101158142\n          },\n          {\n            \"X\": 0.6055916547775269,\n            \"Y\": 0.3433353006839752\n          },\n          {\n            \"X\": 0.6055925488471985,\n            \"Y\": 0.3533680737018585\n          },\n          {\n            \"X\": 0.5760396718978882,\n            \"Y\": 0.3533531129360199\n          }\n        ]\n      },\n      \"Id\": \"60549656-64af-446e-96f8-53589a2c23ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52043151855469,\n      \"Text\": \"Operator\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05878404900431633,\n          \"Height\": 0.012305991724133492,\n          \"Left\": 0.7732459902763367,\n          \"Top\": 0.34344255924224854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7732459902763367,\n            \"Y\": 0.34344255924224854\n          },\n          {\n            \"X\": 0.8320278525352478,\n            \"Y\": 0.34347236156463623\n          },\n          {\n            \"X\": 0.8320299983024597,\n            \"Y\": 0.35574856400489807\n          },\n          {\n            \"X\": 0.7732478380203247,\n            \"Y\": 0.35571882128715515\n          }\n        ]\n      },\n      \"Id\": \"ac72e0ef-1510-4f03-a124-4659ee31e2c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94131469726562,\n      \"Text\": \"Federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04935089126229286,\n          \"Height\": 0.010272800922393799,\n          \"Left\": 0.16601119935512543,\n          \"Top\": 0.35976746678352356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16601209342479706,\n            \"Y\": 0.35976746678352356\n          },\n          {\n            \"X\": 0.215362086892128,\n            \"Y\": 0.3597923815250397\n          },\n          {\n            \"X\": 0.21536140143871307,\n            \"Y\": 0.37004026770591736\n          },\n          {\n            \"X\": 0.16601119935512543,\n            \"Y\": 0.37001538276672363\n          }\n        ]\n      },\n      \"Id\": \"59d82251-044c-4c9a-960d-001e167e91f3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.75132751464844,\n      \"Text\": \"Income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04984023794531822,\n          \"Height\": 0.010114293545484543,\n          \"Left\": 0.21853552758693695,\n          \"Top\": 0.35983243584632874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21853619813919067,\n            \"Y\": 0.35983243584632874\n          },\n          {\n            \"X\": 0.2683757543563843,\n            \"Y\": 0.35985761880874634\n          },\n          {\n            \"X\": 0.26837530732154846,\n            \"Y\": 0.3699467182159424\n          },\n          {\n            \"X\": 0.21853552758693695,\n            \"Y\": 0.36992159485816956\n          }\n        ]\n      },\n      \"Id\": \"00ff535d-064d-4444-8225-4aaea6e786c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9437484741211,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026268139481544495,\n          \"Height\": 0.010290557518601418,\n          \"Left\": 0.27066725492477417,\n          \"Top\": 0.35948964953422546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2706677317619324,\n            \"Y\": 0.35948964953422546\n          },\n          {\n            \"X\": 0.29693540930747986,\n            \"Y\": 0.3595029413700104\n          },\n          {\n            \"X\": 0.2969350516796112,\n            \"Y\": 0.36978021264076233\n          },\n          {\n            \"X\": 0.27066725492477417,\n            \"Y\": 0.3697669804096222\n          }\n        ]\n      },\n      \"Id\": \"0b6af67c-6d89-47bf-9f2a-9c80733ea80f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.72803497314453,\n      \"Text\": \"-40.60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04919637739658356,\n          \"Height\": 0.009934278205037117,\n          \"Left\": 0.37207096815109253,\n          \"Top\": 0.36035916209220886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720710277557373,\n            \"Y\": 0.36035916209220886\n          },\n          {\n            \"X\": 0.42126721143722534,\n            \"Y\": 0.3603840172290802\n          },\n          {\n            \"X\": 0.4212673306465149,\n            \"Y\": 0.37029343843460083\n          },\n          {\n            \"X\": 0.37207096815109253,\n            \"Y\": 0.3702686131000519\n          }\n        ]\n      },\n      \"Id\": \"2139a99f-8a8d-452a-91d5-ec5a41e550f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84791564941406,\n      \"Text\": \"2,111.20\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05892305448651314,\n          \"Height\": 0.01003853976726532,\n          \"Left\": 0.47084134817123413,\n          \"Top\": 0.3605228662490845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47084134817123413,\n            \"Y\": 0.3605228662490845\n          },\n          {\n            \"X\": 0.5297638177871704,\n            \"Y\": 0.3605526387691498\n          },\n          {\n            \"X\": 0.5297644138336182,\n            \"Y\": 0.3705613911151886\n          },\n          {\n            \"X\": 0.4708416759967804,\n            \"Y\": 0.37053167819976807\n          }\n        ]\n      },\n      \"Id\": \"2be678e5-a22d-4bf2-be30-efb8fb30be70\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93062591552734,\n      \"Text\": \"Social\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040845002979040146,\n          \"Height\": 0.010468686930835247,\n          \"Left\": 0.16579486429691315,\n          \"Top\": 0.3736853003501892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16579577326774597,\n            \"Y\": 0.3736853003501892\n          },\n          {\n            \"X\": 0.2066398561000824,\n            \"Y\": 0.3737058639526367\n          },\n          {\n            \"X\": 0.2066391259431839,\n            \"Y\": 0.38415399193763733\n          },\n          {\n            \"X\": 0.16579486429691315,\n            \"Y\": 0.3841334283351898\n          }\n        ]\n      },\n      \"Id\": \"c0e2faea-9bc7-49f7-8879-54cb3533ebc1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97443389892578,\n      \"Text\": \"Security\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05427538976073265,\n          \"Height\": 0.012033622711896896,\n          \"Left\": 0.2098391205072403,\n          \"Top\": 0.374271422624588\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20983995497226715,\n            \"Y\": 0.374271422624588\n          },\n          {\n            \"X\": 0.26411449909210205,\n            \"Y\": 0.37429875135421753\n          },\n          {\n            \"X\": 0.2641139328479767,\n            \"Y\": 0.386305034160614\n          },\n          {\n            \"X\": 0.2098391205072403,\n            \"Y\": 0.3862777650356293\n          }\n        ]\n      },\n      \"Id\": \"7e960910-c609-46db-9761-06d214177bdc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92344665527344,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026159992441534996,\n          \"Height\": 0.010212439112365246,\n          \"Left\": 0.26702019572257996,\n          \"Top\": 0.37388116121292114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26702067255973816,\n            \"Y\": 0.37388116121292114\n          },\n          {\n            \"X\": 0.2931801676750183,\n            \"Y\": 0.3738943338394165\n          },\n          {\n            \"X\": 0.29317981004714966,\n            \"Y\": 0.38409361243247986\n          },\n          {\n            \"X\": 0.26702019572257996,\n            \"Y\": 0.3840804398059845\n          }\n        ]\n      },\n      \"Id\": \"4be1d5f3-1ba0-4231-a4ee-9d5c525cca23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.64322662353516,\n      \"Text\": \"-28.05\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048776742070913315,\n          \"Height\": 0.009982314892113209,\n          \"Left\": 0.3720327615737915,\n          \"Top\": 0.3746964931488037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3720328211784363,\n            \"Y\": 0.3746964931488037\n          },\n          {\n            \"X\": 0.42080938816070557,\n            \"Y\": 0.37472108006477356\n          },\n          {\n            \"X\": 0.4208095073699951,\n            \"Y\": 0.38467881083488464\n          },\n          {\n            \"X\": 0.3720327615737915,\n            \"Y\": 0.38465428352355957\n          }\n        ]\n      },\n      \"Id\": \"37033432-69bf-4f05-aa8c-617a36ef3ffb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.878662109375,\n      \"Text\": \"1,458.60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0583278127014637,\n          \"Height\": 0.010592943988740444,\n          \"Left\": 0.4716467261314392,\n          \"Top\": 0.374478280544281\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716467261314392,\n            \"Y\": 0.374478280544281\n          },\n          {\n            \"X\": 0.5299739241600037,\n            \"Y\": 0.3745076656341553\n          },\n          {\n            \"X\": 0.5299745202064514,\n            \"Y\": 0.3850712180137634\n          },\n          {\n            \"X\": 0.47164708375930786,\n            \"Y\": 0.38504189252853394\n          }\n        ]\n      },\n      \"Id\": \"b829d152-a9d5-4238-beab-7f4370763713\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92350006103516,\n      \"Text\": \"Medicare\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06183071434497833,\n          \"Height\": 0.010176248848438263,\n          \"Left\": 0.16576078534126282,\n          \"Top\": 0.3894445300102234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16576167941093445,\n            \"Y\": 0.3894445300102234\n          },\n          {\n            \"X\": 0.22759149968624115,\n            \"Y\": 0.38947561383247375\n          },\n          {\n            \"X\": 0.227590873837471,\n            \"Y\": 0.39962080121040344\n          },\n          {\n            \"X\": 0.16576078534126282,\n            \"Y\": 0.39958977699279785\n          }\n        ]\n      },\n      \"Id\": \"9780c953-5a6e-4a2f-81d9-4db89edc1480\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93074798583984,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026099078357219696,\n          \"Height\": 0.010319681838154793,\n          \"Left\": 0.2302984893321991,\n          \"Top\": 0.38916733860969543\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23029913008213043,\n            \"Y\": 0.38916733860969543\n          },\n          {\n            \"X\": 0.2563975751399994,\n            \"Y\": 0.389180451631546\n          },\n          {\n            \"X\": 0.2563970386981964,\n            \"Y\": 0.3994870185852051\n          },\n          {\n            \"X\": 0.2302984893321991,\n            \"Y\": 0.3994739353656769\n          }\n        ]\n      },\n      \"Id\": \"4253d1c3-157c-47a3-bba1-73657c60b044\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 78.7468490600586,\n      \"Text\": \"-6.56\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04244004189968109,\n          \"Height\": 0.009964492172002792,\n          \"Left\": 0.37839993834495544,\n          \"Top\": 0.3901442885398865\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37839996814727783,\n            \"Y\": 0.3901442885398865\n          },\n          {\n            \"X\": 0.4208398461341858,\n            \"Y\": 0.39016562700271606\n          },\n          {\n            \"X\": 0.42083999514579773,\n            \"Y\": 0.40010878443717957\n          },\n          {\n            \"X\": 0.37839993834495544,\n            \"Y\": 0.40008750557899475\n          }\n        ]\n      },\n      \"Id\": \"03a9dd3f-096a-4360-805f-ec6c4a0234a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8979721069336,\n      \"Text\": \"341.12\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046127788722515106,\n          \"Height\": 0.010035618208348751,\n          \"Left\": 0.48332643508911133,\n          \"Top\": 0.3897542953491211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48332643508911133,\n            \"Y\": 0.3897542953491211\n          },\n          {\n            \"X\": 0.529453694820404,\n            \"Y\": 0.38977745175361633\n          },\n          {\n            \"X\": 0.529454231262207,\n            \"Y\": 0.3997898995876312\n          },\n          {\n            \"X\": 0.48332682251930237,\n            \"Y\": 0.3997667729854584\n          }\n        ]\n      },\n      \"Id\": \"bc565239-2ef4-4df8-8a68-6b734eb9d898\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.35563659667969,\n      \"Text\": \"Important\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07837128639221191,\n          \"Height\": 0.01350462343543768,\n          \"Left\": 0.5768430829048157,\n          \"Top\": 0.3884696364402771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768430829048157,\n            \"Y\": 0.3884696364402771\n          },\n          {\n            \"X\": 0.655212938785553,\n            \"Y\": 0.38850900530815125\n          },\n          {\n            \"X\": 0.6552143692970276,\n            \"Y\": 0.40197426080703735\n          },\n          {\n            \"X\": 0.5768440961837769,\n            \"Y\": 0.40193498134613037\n          }\n        ]\n      },\n      \"Id\": \"4ff26122-bab7-4d00-88c6-ad969c79fc5a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95951843261719,\n      \"Text\": \"Notes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04711438715457916,\n          \"Height\": 0.011478225700557232,\n          \"Left\": 0.6621067523956299,\n          \"Top\": 0.3884013593196869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6621067523956299,\n            \"Y\": 0.3884013593196869\n          },\n          {\n            \"X\": 0.7092196941375732,\n            \"Y\": 0.3884250223636627\n          },\n          {\n            \"X\": 0.7092211246490479,\n            \"Y\": 0.3998795747756958\n          },\n          {\n            \"X\": 0.6621080040931702,\n            \"Y\": 0.39985594153404236\n          }\n        ]\n      },\n      \"Id\": \"05160f5d-5a62-400b-9c36-dd4e6b2902ef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97681427001953,\n      \"Text\": \"NY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021086469292640686,\n          \"Height\": 0.009894262999296188,\n          \"Left\": 0.16564063727855682,\n          \"Top\": 0.40465840697288513\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16564150154590607,\n            \"Y\": 0.40465840697288513\n          },\n          {\n            \"X\": 0.1867271065711975,\n            \"Y\": 0.4046689569950104\n          },\n          {\n            \"X\": 0.18672633171081543,\n            \"Y\": 0.4145526587963104\n          },\n          {\n            \"X\": 0.16564063727855682,\n            \"Y\": 0.41454213857650757\n          }\n        ]\n      },\n      \"Id\": \"00bfee77-b0ca-452e-808f-2efe754dd9d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9471206665039,\n      \"Text\": \"State\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035696860402822495,\n          \"Height\": 0.010373448953032494,\n          \"Left\": 0.18974536657333374,\n          \"Top\": 0.4046025276184082\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1897461712360382,\n            \"Y\": 0.4046025276184082\n          },\n          {\n            \"X\": 0.22544221580028534,\n            \"Y\": 0.4046204090118408\n          },\n          {\n            \"X\": 0.2254415601491928,\n            \"Y\": 0.41497597098350525\n          },\n          {\n            \"X\": 0.18974536657333374,\n            \"Y\": 0.4149581491947174\n          }\n        ]\n      },\n      \"Id\": \"bc7b307a-b727-4277-8294-a328efb27f9b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.53309631347656,\n      \"Text\": \"Income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05012987554073334,\n          \"Height\": 0.010466568171977997,\n          \"Left\": 0.2283274084329605,\n          \"Top\": 0.4045395255088806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22832804918289185,\n            \"Y\": 0.4045395255088806\n          },\n          {\n            \"X\": 0.27845728397369385,\n            \"Y\": 0.40456464886665344\n          },\n          {\n            \"X\": 0.27845683693885803,\n            \"Y\": 0.4150061011314392\n          },\n          {\n            \"X\": 0.2283274084329605,\n            \"Y\": 0.41498103737831116\n          }\n        ]\n      },\n      \"Id\": \"1d92b6bc-13e5-449a-abf7-63fc85c4ad5c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95079040527344,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026311594992876053,\n          \"Height\": 0.010378565639257431,\n          \"Left\": 0.28054457902908325,\n          \"Top\": 0.40438830852508545\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2805449962615967,\n            \"Y\": 0.40438830852508545\n          },\n          {\n            \"X\": 0.3068561553955078,\n            \"Y\": 0.4044014811515808\n          },\n          {\n            \"X\": 0.30685582756996155,\n            \"Y\": 0.4147668778896332\n          },\n          {\n            \"X\": 0.28054457902908325,\n            \"Y\": 0.4147537350654602\n          }\n        ]\n      },\n      \"Id\": \"c7faf137-5be6-4023-b2bc-4e1bc4f6e21d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.22126007080078,\n      \"Text\": \"-8.43\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039588768035173416,\n          \"Height\": 0.01017859298735857,\n          \"Left\": 0.3816371262073517,\n          \"Top\": 0.40510061383247375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816371560096741,\n            \"Y\": 0.40510061383247375\n          },\n          {\n            \"X\": 0.42122575640678406,\n            \"Y\": 0.40512046217918396\n          },\n          {\n            \"X\": 0.421225905418396,\n            \"Y\": 0.41527920961380005\n          },\n          {\n            \"X\": 0.3816371262073517,\n            \"Y\": 0.4152594208717346\n          }\n        ]\n      },\n      \"Id\": \"91ce2559-871d-4c65-a33d-4adfb69ed8a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.59510803222656,\n      \"Text\": \"438.36\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04687277972698212,\n          \"Height\": 0.010192235000431538,\n          \"Left\": 0.48327845335006714,\n          \"Top\": 0.40503618121147156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48327845335006714,\n            \"Y\": 0.40503618121147156\n          },\n          {\n            \"X\": 0.5301506519317627,\n            \"Y\": 0.40505966544151306\n          },\n          {\n            \"X\": 0.5301512479782104,\n            \"Y\": 0.4152284264564514\n          },\n          {\n            \"X\": 0.4832788407802582,\n            \"Y\": 0.4152050018310547\n          }\n        ]\n      },\n      \"Id\": \"acf660a8-abe0-4867-a7de-152c68e2df3b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81791687011719,\n      \"Text\": \"EFFECTIVE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06862348318099976,\n          \"Height\": 0.00934558268636465,\n          \"Left\": 0.576397716999054,\n          \"Top\": 0.40673497319221497\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576397716999054,\n            \"Y\": 0.40673497319221497\n          },\n          {\n            \"X\": 0.6450202465057373,\n            \"Y\": 0.406769335269928\n          },\n          {\n            \"X\": 0.6450212001800537,\n            \"Y\": 0.4160805642604828\n          },\n          {\n            \"X\": 0.5763984322547913,\n            \"Y\": 0.41604626178741455\n          }\n        ]\n      },\n      \"Id\": \"b6667b2d-341e-402d-9a17-e1ab66710bd8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90097045898438,\n      \"Text\": \"THIS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02976958081126213,\n          \"Height\": 0.00910420622676611,\n          \"Left\": 0.6471924781799316,\n          \"Top\": 0.4067222774028778\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6471924781799316,\n            \"Y\": 0.4067222774028778\n          },\n          {\n            \"X\": 0.6769610643386841,\n            \"Y\": 0.40673717856407166\n          },\n          {\n            \"X\": 0.6769620776176453,\n            \"Y\": 0.4158264696598053\n          },\n          {\n            \"X\": 0.647193431854248,\n            \"Y\": 0.41581159830093384\n          }\n        ]\n      },\n      \"Id\": \"912a926f-57ee-4e00-a4f7-48241549d9c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95889282226562,\n      \"Text\": \"PAY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026685526594519615,\n          \"Height\": 0.009249559603631496,\n          \"Left\": 0.6797308325767517,\n          \"Top\": 0.4066205620765686\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6797308325767517,\n            \"Y\": 0.4066205620765686\n          },\n          {\n            \"X\": 0.7064151763916016,\n            \"Y\": 0.4066339135169983\n          },\n          {\n            \"X\": 0.7064163088798523,\n            \"Y\": 0.4158701002597809\n          },\n          {\n            \"X\": 0.6797318458557129,\n            \"Y\": 0.4158567786216736\n          }\n        ]\n      },\n      \"Id\": \"259dc0f1-0526-42f0-8b4a-02232fa69041\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75724029541016,\n      \"Text\": \"PERIOD\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049611736088991165,\n          \"Height\": 0.009456287138164043,\n          \"Left\": 0.7085244059562683,\n          \"Top\": 0.406613290309906\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7085244059562683,\n            \"Y\": 0.406613290309906\n          },\n          {\n            \"X\": 0.7581347227096558,\n            \"Y\": 0.40663811564445496\n          },\n          {\n            \"X\": 0.7581360936164856,\n            \"Y\": 0.41606956720352173\n          },\n          {\n            \"X\": 0.7085255980491638,\n            \"Y\": 0.41604477167129517\n          }\n        ]\n      },\n      \"Id\": \"ad57deb2-0791-4ca6-abca-f58ea2ec7729\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90437316894531,\n      \"Text\": \"YOUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037846628576517105,\n          \"Height\": 0.00906900130212307,\n          \"Left\": 0.7606750726699829,\n          \"Top\": 0.40676015615463257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7606750726699829,\n            \"Y\": 0.40676015615463257\n          },\n          {\n            \"X\": 0.7985202074050903,\n            \"Y\": 0.40677911043167114\n          },\n          {\n            \"X\": 0.7985216975212097,\n            \"Y\": 0.4158291518688202\n          },\n          {\n            \"X\": 0.760676383972168,\n            \"Y\": 0.4158102571964264\n          }\n        ]\n      },\n      \"Id\": \"0891eed3-1fdc-4be4-8ec5-86d6ec386862\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82666015625,\n      \"Text\": \"REGULAR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06199900433421135,\n          \"Height\": 0.0094817616045475,\n          \"Left\": 0.8007530570030212,\n          \"Top\": 0.40656766295433044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8007530570030212,\n            \"Y\": 0.40656766295433044\n          },\n          {\n            \"X\": 0.8627502918243408,\n            \"Y\": 0.4065987169742584\n          },\n          {\n            \"X\": 0.8627520799636841,\n            \"Y\": 0.41604945063591003\n          },\n          {\n            \"X\": 0.8007546067237854,\n            \"Y\": 0.41601845622062683\n          }\n        ]\n      },\n      \"Id\": \"cc34168d-5c78-4793-8738-1d5f7e389be6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96880340576172,\n      \"Text\": \"NYC\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03186038136482239,\n          \"Height\": 0.010181508958339691,\n          \"Left\": 0.16557787358760834,\n          \"Top\": 0.4198364317417145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16557876765727997,\n            \"Y\": 0.4198364317417145\n          },\n          {\n            \"X\": 0.19743825495243073,\n            \"Y\": 0.4198523461818695\n          },\n          {\n            \"X\": 0.19743749499320984,\n            \"Y\": 0.43001794815063477\n          },\n          {\n            \"X\": 0.16557787358760834,\n            \"Y\": 0.4300020635128021\n          }\n        ]\n      },\n      \"Id\": \"2543a3be-0340-4f36-a802-a58c7e95d36a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.81990051269531,\n      \"Text\": \"Income\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048998188227415085,\n          \"Height\": 0.010191085748374462,\n          \"Left\": 0.20072896778583527,\n          \"Top\": 0.41997745633125305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20072971284389496,\n            \"Y\": 0.41997745633125305\n          },\n          {\n            \"X\": 0.24972715973854065,\n            \"Y\": 0.42000192403793335\n          },\n          {\n            \"X\": 0.24972660839557648,\n            \"Y\": 0.4301685392856598\n          },\n          {\n            \"X\": 0.20072896778583527,\n            \"Y\": 0.4301441013813019\n          }\n        ]\n      },\n      \"Id\": \"e913f58a-a03c-47d3-b12a-5655e4d4d36e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92872619628906,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02551284059882164,\n          \"Height\": 0.010208935476839542,\n          \"Left\": 0.25273099541664124,\n          \"Top\": 0.41985008120536804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2527315318584442,\n            \"Y\": 0.41985008120536804\n          },\n          {\n            \"X\": 0.2782438397407532,\n            \"Y\": 0.41986283659935\n          },\n          {\n            \"X\": 0.27824342250823975,\n            \"Y\": 0.430059015750885\n          },\n          {\n            \"X\": 0.25273099541664124,\n            \"Y\": 0.43004631996154785\n          }\n        ]\n      },\n      \"Id\": \"760c7c58-e7da-4aa2-b8a4-28be9ea54bce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.88884735107422,\n      \"Text\": \"-5.94\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03948596119880676,\n          \"Height\": 0.009952288120985031,\n          \"Left\": 0.3815154433250427,\n          \"Top\": 0.42050880193710327\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3815154731273651,\n            \"Y\": 0.42050880193710327\n          },\n          {\n            \"X\": 0.42100128531455994,\n            \"Y\": 0.4205285310745239\n          },\n          {\n            \"X\": 0.4210014045238495,\n            \"Y\": 0.4304611086845398\n          },\n          {\n            \"X\": 0.3815154433250427,\n            \"Y\": 0.4304414391517639\n          }\n        ]\n      },\n      \"Id\": \"19d893f3-9acd-47d3-8fad-916a2cc16911\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54515075683594,\n      \"Text\": \"308.88\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04655349999666214,\n          \"Height\": 0.009958788752555847,\n          \"Left\": 0.48320090770721436,\n          \"Top\": 0.4206897020339966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48320090770721436,\n            \"Y\": 0.4206897020339966\n          },\n          {\n            \"X\": 0.5297538638114929,\n            \"Y\": 0.420712947845459\n          },\n          {\n            \"X\": 0.5297544002532959,\n            \"Y\": 0.43064847588539124\n          },\n          {\n            \"X\": 0.483201265335083,\n            \"Y\": 0.4306252896785736\n          }\n        ]\n      },\n      \"Id\": \"9dd348ff-e9ab-46d4-b297-7f9285958f0e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90168762207031,\n      \"Text\": \"HOURLY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0560748428106308,\n          \"Height\": 0.009099747985601425,\n          \"Left\": 0.5761999487876892,\n          \"Top\": 0.4233008921146393\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5761999487876892,\n            \"Y\": 0.4233008921146393\n          },\n          {\n            \"X\": 0.6322739124298096,\n            \"Y\": 0.42332887649536133\n          },\n          {\n            \"X\": 0.6322748064994812,\n            \"Y\": 0.432400643825531\n          },\n          {\n            \"X\": 0.5762006044387817,\n            \"Y\": 0.43237271904945374\n          }\n        ]\n      },\n      \"Id\": \"cd73d5ae-61e5-4a51-bcc8-7d45bd8efa4a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92486572265625,\n      \"Text\": \"RATE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034308455884456635,\n          \"Height\": 0.009076039306819439,\n          \"Left\": 0.6335840821266174,\n          \"Top\": 0.42323964834213257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6335840821266174,\n            \"Y\": 0.42323964834213257\n          },\n          {\n            \"X\": 0.6678915619850159,\n            \"Y\": 0.4232567548751831\n          },\n          {\n            \"X\": 0.667892575263977,\n            \"Y\": 0.4323156774044037\n          },\n          {\n            \"X\": 0.6335849761962891,\n            \"Y\": 0.43229860067367554\n          }\n        ]\n      },\n      \"Id\": \"fb0e8553-83f3-4882-a3a5-fac217e6c247\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83885955810547,\n      \"Text\": \"HAS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027083702385425568,\n          \"Height\": 0.009181766770780087,\n          \"Left\": 0.6702347993850708,\n          \"Top\": 0.4233166575431824\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6702347993850708,\n            \"Y\": 0.4233166575431824\n          },\n          {\n            \"X\": 0.697317361831665,\n            \"Y\": 0.423330157995224\n          },\n          {\n            \"X\": 0.6973184943199158,\n            \"Y\": 0.43249842524528503\n          },\n          {\n            \"X\": 0.670235812664032,\n            \"Y\": 0.4324849247932434\n          }\n        ]\n      },\n      \"Id\": \"e2cb431a-e4f7-4324-a3b7-bee94aee16ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96790313720703,\n      \"Text\": \"BEEN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03591987490653992,\n          \"Height\": 0.009218355640769005,\n          \"Left\": 0.7000350952148438,\n          \"Top\": 0.4232025146484375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7000350952148438,\n            \"Y\": 0.4232025146484375\n          },\n          {\n            \"X\": 0.735953688621521,\n            \"Y\": 0.4232204556465149\n          },\n          {\n            \"X\": 0.7359549403190613,\n            \"Y\": 0.43242087960243225\n          },\n          {\n            \"X\": 0.7000362277030945,\n            \"Y\": 0.43240299820899963\n          }\n        ]\n      },\n      \"Id\": \"f4103f41-b4a9-4610-80c9-9764585ca7c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90547943115234,\n      \"Text\": \"CHANGED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06508832424879074,\n          \"Height\": 0.0095116151496768,\n          \"Left\": 0.7379435300827026,\n          \"Top\": 0.42300182580947876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7379435300827026,\n            \"Y\": 0.42300182580947876\n          },\n          {\n            \"X\": 0.8030303120613098,\n            \"Y\": 0.42303431034088135\n          },\n          {\n            \"X\": 0.803031861782074,\n            \"Y\": 0.43251344561576843\n          },\n          {\n            \"X\": 0.7379448413848877,\n            \"Y\": 0.4324810206890106\n          }\n        ]\n      },\n      \"Id\": \"38a78061-fb00-4071-a515-ee7b11ac4948\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84761810302734,\n      \"Text\": \"FROM\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03915011137723923,\n          \"Height\": 0.009476016275584698,\n          \"Left\": 0.8052725195884705,\n          \"Top\": 0.4230719804763794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8052725195884705,\n            \"Y\": 0.4230719804763794\n          },\n          {\n            \"X\": 0.8444209098815918,\n            \"Y\": 0.4230915307998657\n          },\n          {\n            \"X\": 0.8444226384162903,\n            \"Y\": 0.43254801630973816\n          },\n          {\n            \"X\": 0.8052740693092346,\n            \"Y\": 0.4325284957885742\n          }\n        ]\n      },\n      \"Id\": \"02375807-c26f-4f24-98d6-745d423b00b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54336547851562,\n      \"Text\": \"$8.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03384557366371155,\n          \"Height\": 0.010145897977054119,\n          \"Left\": 0.8470821976661682,\n          \"Top\": 0.42288821935653687\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8470821976661682,\n            \"Y\": 0.42288821935653687\n          },\n          {\n            \"X\": 0.8809257745742798,\n            \"Y\": 0.4229051172733307\n          },\n          {\n            \"X\": 0.8809277415275574,\n            \"Y\": 0.43303412199020386\n          },\n          {\n            \"X\": 0.8470840454101562,\n            \"Y\": 0.4330172836780548\n          }\n        ]\n      },\n      \"Id\": \"8d76a30c-9430-4425-830f-8a6244dba2f2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9725341796875,\n      \"Text\": \"NY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02106025069952011,\n          \"Height\": 0.010049689561128616,\n          \"Left\": 0.16559147834777832,\n          \"Top\": 0.4352140426635742\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16559234261512756,\n            \"Y\": 0.4352140426635742\n          },\n          {\n            \"X\": 0.18665172159671783,\n            \"Y\": 0.4352245032787323\n          },\n          {\n            \"X\": 0.18665093183517456,\n            \"Y\": 0.44526371359825134\n          },\n          {\n            \"X\": 0.16559147834777832,\n            \"Y\": 0.44525325298309326\n          }\n        ]\n      },\n      \"Id\": \"c191ce95-28e3-46f5-ae2a-49e7a3c26f8b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.81659698486328,\n      \"Text\": \"SUI/SDI\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05304966866970062,\n          \"Height\": 0.01050408836454153,\n          \"Left\": 0.18997623026371002,\n          \"Top\": 0.4351488947868347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1899770349264145,\n            \"Y\": 0.4351488947868347\n          },\n          {\n            \"X\": 0.24302589893341064,\n            \"Y\": 0.4351752996444702\n          },\n          {\n            \"X\": 0.2430253028869629,\n            \"Y\": 0.4456529915332794\n          },\n          {\n            \"X\": 0.18997623026371002,\n            \"Y\": 0.4456266164779663\n          }\n        ]\n      },\n      \"Id\": \"b3676fd6-4cec-4c3e-825e-46e961fdbba8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88817596435547,\n      \"Text\": \"Tax\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02550383098423481,\n          \"Height\": 0.010226752609014511,\n          \"Left\": 0.24622385203838348,\n          \"Top\": 0.4351258873939514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24622441828250885,\n            \"Y\": 0.4351258873939514\n          },\n          {\n            \"X\": 0.27172768115997314,\n            \"Y\": 0.4351385831832886\n          },\n          {\n            \"X\": 0.27172723412513733,\n            \"Y\": 0.4453526437282562\n          },\n          {\n            \"X\": 0.24622385203838348,\n            \"Y\": 0.44533994793891907\n          }\n        ]\n      },\n      \"Id\": \"3519be0d-6c77-4c32-b229-d90910e2400b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.85523223876953,\n      \"Text\": \"-0.60\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03971990942955017,\n          \"Height\": 0.009622905403375626,\n          \"Left\": 0.3816964030265808,\n          \"Top\": 0.43616586923599243\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.43616586923599243\n          },\n          {\n            \"X\": 0.42141616344451904,\n            \"Y\": 0.43618565797805786\n          },\n          {\n            \"X\": 0.421416312456131,\n            \"Y\": 0.44578877091407776\n          },\n          {\n            \"X\": 0.3816964030265808,\n            \"Y\": 0.4457690417766571\n          }\n        ]\n      },\n      \"Id\": \"9a4eb6f7-2bc0-457c-9033-acb9127b7014\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60066986083984,\n      \"Text\": \"31.20\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03847702220082283,\n          \"Height\": 0.009795776568353176,\n          \"Left\": 0.4915713369846344,\n          \"Top\": 0.4360893666744232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4915713369846344,\n            \"Y\": 0.4360893666744232\n          },\n          {\n            \"X\": 0.5300478339195251,\n            \"Y\": 0.4361085295677185\n          },\n          {\n            \"X\": 0.5300483703613281,\n            \"Y\": 0.44588515162467957\n          },\n          {\n            \"X\": 0.4915717542171478,\n            \"Y\": 0.44586601853370667\n          }\n        ]\n      },\n      \"Id\": \"f5a688c8-4e37-4303-91fe-0d003a034b5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74107360839844,\n      \"Text\": \"TO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01881721056997776,\n          \"Height\": 0.009343252517282963,\n          \"Left\": 0.5758348107337952,\n          \"Top\": 0.4397321939468384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758348107337952,\n            \"Y\": 0.4397321939468384\n          },\n          {\n            \"X\": 0.5946512818336487,\n            \"Y\": 0.4397415518760681\n          },\n          {\n            \"X\": 0.5946520566940308,\n            \"Y\": 0.44907546043395996\n          },\n          {\n            \"X\": 0.5758355259895325,\n            \"Y\": 0.4490661025047302\n          }\n        ]\n      },\n      \"Id\": \"2cadf5b6-2a65-426e-81e0-ad443c078be3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6883316040039,\n      \"Text\": \"$10.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04103569686412811,\n          \"Height\": 0.009443250484764576,\n          \"Left\": 0.597653329372406,\n          \"Top\": 0.4396534264087677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.597653329372406,\n            \"Y\": 0.4396534264087677\n          },\n          {\n            \"X\": 0.6386880874633789,\n            \"Y\": 0.43967384099960327\n          },\n          {\n            \"X\": 0.6386889815330505,\n            \"Y\": 0.4490966796875\n          },\n          {\n            \"X\": 0.5976541042327881,\n            \"Y\": 0.4490763247013092\n          }\n        ]\n      },\n      \"Id\": \"bd1a730f-b12b-4f7a-8e58-880c99dd6fa2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87431335449219,\n      \"Text\": \"PER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02662653848528862,\n          \"Height\": 0.009241021238267422,\n          \"Left\": 0.6413688659667969,\n          \"Top\": 0.43979254364967346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6413688659667969,\n            \"Y\": 0.43979254364967346\n          },\n          {\n            \"X\": 0.6679943799972534,\n            \"Y\": 0.4398057758808136\n          },\n          {\n            \"X\": 0.6679953932762146,\n            \"Y\": 0.44903355836868286\n          },\n          {\n            \"X\": 0.6413698196411133,\n            \"Y\": 0.4490203261375427\n          }\n        ]\n      },\n      \"Id\": \"f97d9ea6-9c5e-419d-9021-0c2275d3aab4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.23381805419922,\n      \"Text\": \"HOUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042784761637449265,\n          \"Height\": 0.009397015906870365,\n          \"Left\": 0.670056164264679,\n          \"Top\": 0.43972957134246826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.670056164264679,\n            \"Y\": 0.43972957134246826\n          },\n          {\n            \"X\": 0.7128397226333618,\n            \"Y\": 0.4397508502006531\n          },\n          {\n            \"X\": 0.7128409743309021,\n            \"Y\": 0.44912657141685486\n          },\n          {\n            \"X\": 0.6700572371482849,\n            \"Y\": 0.44910532236099243\n          }\n        ]\n      },\n      \"Id\": \"99f7bf84-c5a1-47ba-b593-612869c293fd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 32.72475051879883,\n      \"Text\": \"&\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009392748586833477,\n          \"Height\": 0.012527450919151306,\n          \"Left\": 0.9785712957382202,\n          \"Top\": 0.44773444533348083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9785712957382202,\n            \"Y\": 0.44773444533348083\n          },\n          {\n            \"X\": 0.9879610538482666,\n            \"Y\": 0.4477391242980957\n          },\n          {\n            \"X\": 0.9879640340805054,\n            \"Y\": 0.46026191115379333\n          },\n          {\n            \"X\": 0.9785742163658142,\n            \"Y\": 0.46025723218917847\n          }\n        ]\n      },\n      \"Id\": \"8b33292b-eb6e-4f0d-ac56-159b4b7df407\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92845153808594,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04166742041707039,\n          \"Height\": 0.010379514656960964,\n          \"Left\": 0.16534243524074554,\n          \"Top\": 0.4571443796157837\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534334421157837,\n            \"Y\": 0.4571443796157837\n          },\n          {\n            \"X\": 0.20700985193252563,\n            \"Y\": 0.45716503262519836\n          },\n          {\n            \"X\": 0.20700912177562714,\n            \"Y\": 0.4675239026546478\n          },\n          {\n            \"X\": 0.16534243524074554,\n            \"Y\": 0.46750327944755554\n          }\n        ]\n      },\n      \"Id\": \"dcbc8abc-3e2e-4b34-bd03-21f2300f243c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93050384521484,\n      \"Text\": \"Bond\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03663105517625809,\n          \"Height\": 0.010264110751450062,\n          \"Left\": 0.16576214134693146,\n          \"Top\": 0.47256383299827576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657630354166031,\n            \"Y\": 0.47256383299827576\n          },\n          {\n            \"X\": 0.20239320397377014,\n            \"Y\": 0.4725819230079651\n          },\n          {\n            \"X\": 0.20239245891571045,\n            \"Y\": 0.48282793164253235\n          },\n          {\n            \"X\": 0.16576214134693146,\n            \"Y\": 0.4828098714351654\n          }\n        ]\n      },\n      \"Id\": \"738681aa-f1ac-4512-b5d6-bdf633711ebb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.17346954345703,\n      \"Text\": \"-5.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04021134972572327,\n          \"Height\": 0.009741549380123615,\n          \"Left\": 0.3806985914707184,\n          \"Top\": 0.47330498695373535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38069862127304077,\n            \"Y\": 0.47330498695373535\n          },\n          {\n            \"X\": 0.4209098219871521,\n            \"Y\": 0.47332486510276794\n          },\n          {\n            \"X\": 0.42090994119644165,\n            \"Y\": 0.4830465316772461\n          },\n          {\n            \"X\": 0.3806985914707184,\n            \"Y\": 0.4830267131328583\n          }\n        ]\n      },\n      \"Id\": \"2f497a03-9565-4328-a4d2-7476f3aff644\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50401306152344,\n      \"Text\": \"100.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04519687965512276,\n          \"Height\": 0.00982965249568224,\n          \"Left\": 0.48456546664237976,\n          \"Top\": 0.4732814431190491\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48456546664237976,\n            \"Y\": 0.4732814431190491\n          },\n          {\n            \"X\": 0.529761791229248,\n            \"Y\": 0.47330376505851746\n          },\n          {\n            \"X\": 0.529762327671051,\n            \"Y\": 0.48311108350753784\n          },\n          {\n            \"X\": 0.4845658242702484,\n            \"Y\": 0.48308882117271423\n          }\n        ]\n      },\n      \"Id\": \"15961085-e3d9-412c-be71-bd4d1f78baab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64082336425781,\n      \"Text\": \"WE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022146351635456085,\n          \"Height\": 0.008958603255450726,\n          \"Left\": 0.575558602809906,\n          \"Top\": 0.4723031520843506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.575558602809906,\n            \"Y\": 0.4723031520843506\n          },\n          {\n            \"X\": 0.5977042317390442,\n            \"Y\": 0.47231411933898926\n          },\n          {\n            \"X\": 0.5977049469947815,\n            \"Y\": 0.4812617599964142\n          },\n          {\n            \"X\": 0.5755592584609985,\n            \"Y\": 0.4812508523464203\n          }\n        ]\n      },\n      \"Id\": \"e292a0c6-8d3c-4ec8-b6a7-d8c9215f9742\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79141998291016,\n      \"Text\": \"WILL\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032322049140930176,\n          \"Height\": 0.009389984421432018,\n          \"Left\": 0.5991902947425842,\n          \"Top\": 0.4726877212524414\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5991902947425842,\n            \"Y\": 0.4726877212524414\n          },\n          {\n            \"X\": 0.6315114498138428,\n            \"Y\": 0.4727036952972412\n          },\n          {\n            \"X\": 0.6315123438835144,\n            \"Y\": 0.4820777177810669\n          },\n          {\n            \"X\": 0.5991910696029663,\n            \"Y\": 0.4820617735385895\n          }\n        ]\n      },\n      \"Id\": \"083b6adf-2239-43c2-b13d-9b3c00bf25e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87254333496094,\n      \"Text\": \"BE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01763339154422283,\n          \"Height\": 0.009307599626481533,\n          \"Left\": 0.6339937448501587,\n          \"Top\": 0.47241654992103577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6339937448501587,\n            \"Y\": 0.47241654992103577\n          },\n          {\n            \"X\": 0.6516261696815491,\n            \"Y\": 0.472425252199173\n          },\n          {\n            \"X\": 0.6516271829605103,\n            \"Y\": 0.4817241430282593\n          },\n          {\n            \"X\": 0.6339946985244751,\n            \"Y\": 0.48171544075012207\n          }\n        ]\n      },\n      \"Id\": \"ec16fdac-79ce-44bb-892b-186b1cf6a635\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95793914794922,\n      \"Text\": \"STARTING\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06485544890165329,\n          \"Height\": 0.009564821608364582,\n          \"Left\": 0.6544713377952576,\n          \"Top\": 0.47244980931282043\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6544713377952576,\n            \"Y\": 0.47244980931282043\n          },\n          {\n            \"X\": 0.7193255424499512,\n            \"Y\": 0.4724818766117096\n          },\n          {\n            \"X\": 0.7193267941474915,\n            \"Y\": 0.48201462626457214\n          },\n          {\n            \"X\": 0.6544723510742188,\n            \"Y\": 0.48198264837265015\n          }\n        ]\n      },\n      \"Id\": \"3be1423d-9f10-4ca6-be92-628d5a1554ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.738525390625,\n      \"Text\": \"OUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02970312535762787,\n          \"Height\": 0.00947886984795332,\n          \"Left\": 0.7216252088546753,\n          \"Top\": 0.4723363518714905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7216252088546753,\n            \"Y\": 0.4723363518714905\n          },\n          {\n            \"X\": 0.7513269782066345,\n            \"Y\": 0.4723510146141052\n          },\n          {\n            \"X\": 0.7513283491134644,\n            \"Y\": 0.4818152189254761\n          },\n          {\n            \"X\": 0.7216264605522156,\n            \"Y\": 0.48180055618286133\n          }\n        ]\n      },\n      \"Id\": \"59978cd2-9bf9-46fb-992f-15c0d11b923e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93145751953125,\n      \"Text\": \"UNITED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04779624566435814,\n          \"Height\": 0.009390078485012054,\n          \"Left\": 0.753862202167511,\n          \"Top\": 0.47226518392562866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.753862202167511,\n            \"Y\": 0.47226518392562866\n          },\n          {\n            \"X\": 0.8016569018363953,\n            \"Y\": 0.4722888171672821\n          },\n          {\n            \"X\": 0.8016584515571594,\n            \"Y\": 0.4816552698612213\n          },\n          {\n            \"X\": 0.7538635730743408,\n            \"Y\": 0.48163169622421265\n          }\n        ]\n      },\n      \"Id\": \"7cec59a2-b9f3-4cb8-88b7-9240b7c40d0e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7958984375,\n      \"Text\": \"WAY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03239158168435097,\n          \"Height\": 0.009366209618747234,\n          \"Left\": 0.8020788431167603,\n          \"Top\": 0.4722622036933899\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8020788431167603,\n            \"Y\": 0.4722622036933899\n          },\n          {\n            \"X\": 0.8344687819480896,\n            \"Y\": 0.4722782075405121\n          },\n          {\n            \"X\": 0.8344704508781433,\n            \"Y\": 0.4816283881664276\n          },\n          {\n            \"X\": 0.8020803928375244,\n            \"Y\": 0.4816124141216278\n          }\n        ]\n      },\n      \"Id\": \"a73c4195-0e2f-4baf-acb9-b7cf81044713\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89104461669922,\n      \"Text\": \"FUND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03728378191590309,\n          \"Height\": 0.009766828268766403,\n          \"Left\": 0.8361884355545044,\n          \"Top\": 0.47257593274116516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8361884355545044,\n            \"Y\": 0.47257593274116516\n          },\n          {\n            \"X\": 0.8734703063964844,\n            \"Y\": 0.47259435057640076\n          },\n          {\n            \"X\": 0.8734722137451172,\n            \"Y\": 0.48234274983406067\n          },\n          {\n            \"X\": 0.8361901640892029,\n            \"Y\": 0.48232436180114746\n          }\n        ]\n      },\n      \"Id\": \"68a6319b-e89c-4288-96d1-590ac8707ac3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 20.746511459350586,\n      \"Text\": \"PDP\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011251576244831085,\n          \"Height\": 0.015544673427939415,\n          \"Left\": 0.9762770533561707,\n          \"Top\": 0.4635232090950012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9762770533561707,\n            \"Y\": 0.4635232090950012\n          },\n          {\n            \"X\": 0.9875249266624451,\n            \"Y\": 0.4635287821292877\n          },\n          {\n            \"X\": 0.9875286221504211,\n            \"Y\": 0.479067862033844\n          },\n          {\n            \"X\": 0.976280689239502,\n            \"Y\": 0.4790623188018799\n          }\n        ]\n      },\n      \"Id\": \"d9755315-098d-4773-bfae-c567d7dd5346\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.72502136230469,\n      \"Text\": \"401(k)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04080589860677719,\n          \"Height\": 0.011710687540471554,\n          \"Left\": 0.1653653085231781,\n          \"Top\": 0.4880644679069519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16536633670330048,\n            \"Y\": 0.4880644679069519\n          },\n          {\n            \"X\": 0.2061712145805359,\n            \"Y\": 0.4880845844745636\n          },\n          {\n            \"X\": 0.20617038011550903,\n            \"Y\": 0.4997751712799072\n          },\n          {\n            \"X\": 0.1653653085231781,\n            \"Y\": 0.4997551143169403\n          }\n        ]\n      },\n      \"Id\": \"524b581c-f489-4549-816a-6ff32fd6b9a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 55.95808029174805,\n      \"Text\": \"-28.85*\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05343848466873169,\n          \"Height\": 0.009626035578548908,\n          \"Left\": 0.3734176754951477,\n          \"Top\": 0.48896968364715576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3734177052974701,\n            \"Y\": 0.48896968364715576\n          },\n          {\n            \"X\": 0.42685598134994507,\n            \"Y\": 0.4889959990978241\n          },\n          {\n            \"X\": 0.4268561601638794,\n            \"Y\": 0.4985957145690918\n          },\n          {\n            \"X\": 0.3734176754951477,\n            \"Y\": 0.49856942892074585\n          }\n        ]\n      },\n      \"Id\": \"3faef2bd-4810-4c22-bdf5-e1a145fd90ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.917724609375,\n      \"Text\": \"1,500.20\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05830708518624306,\n          \"Height\": 0.010335884988307953,\n          \"Left\": 0.4716174304485321,\n          \"Top\": 0.48859354853630066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4716174304485321,\n            \"Y\": 0.48859354853630066\n          },\n          {\n            \"X\": 0.5299239158630371,\n            \"Y\": 0.4886222779750824\n          },\n          {\n            \"X\": 0.5299245119094849,\n            \"Y\": 0.4989294409751892\n          },\n          {\n            \"X\": 0.47161775827407837,\n            \"Y\": 0.49890077114105225\n          }\n        ]\n      },\n      \"Id\": \"0b89b5bb-443d-450f-9019-5c13641763c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92007446289062,\n      \"Text\": \"DRIVE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038724638521671295,\n          \"Height\": 0.009412858635187149,\n          \"Left\": 0.576322078704834,\n          \"Top\": 0.48879408836364746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.576322078704834,\n            \"Y\": 0.48879408836364746\n          },\n          {\n            \"X\": 0.6150459051132202,\n            \"Y\": 0.4888131618499756\n          },\n          {\n            \"X\": 0.6150467395782471,\n            \"Y\": 0.4982069432735443\n          },\n          {\n            \"X\": 0.5763227939605713,\n            \"Y\": 0.4981878995895386\n          }\n        ]\n      },\n      \"Id\": \"18233780-3339-4bca-bfce-cfe93f862de5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90444946289062,\n      \"Text\": \"SOON\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03929765149950981,\n          \"Height\": 0.009431937709450722,\n          \"Left\": 0.6173473596572876,\n          \"Top\": 0.48879027366638184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6173473596572876,\n            \"Y\": 0.48879027366638184\n          },\n          {\n            \"X\": 0.6566440463066101,\n            \"Y\": 0.48880961537361145\n          },\n          {\n            \"X\": 0.6566449999809265,\n            \"Y\": 0.4982222020626068\n          },\n          {\n            \"X\": 0.6173482537269592,\n            \"Y\": 0.4982028901576996\n          }\n        ]\n      },\n      \"Id\": \"ac7df885-5a75-445e-9617-2df5804a8a25\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94512176513672,\n      \"Text\": \"AND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02901875413954258,\n          \"Height\": 0.0094564538449049,\n          \"Left\": 0.6582708358764648,\n          \"Top\": 0.4888558089733124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6582708358764648,\n            \"Y\": 0.4888558089733124\n          },\n          {\n            \"X\": 0.6872884631156921,\n            \"Y\": 0.48887011408805847\n          },\n          {\n            \"X\": 0.6872895956039429,\n            \"Y\": 0.4983122646808624\n          },\n          {\n            \"X\": 0.658271849155426,\n            \"Y\": 0.4982980191707611\n          }\n        ]\n      },\n      \"Id\": \"f1ebc27b-da53-4940-83d6-389293475acc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88664245605469,\n      \"Text\": \"LOOK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037521444261074066,\n          \"Height\": 0.009446186013519764,\n          \"Left\": 0.6892567873001099,\n          \"Top\": 0.48880481719970703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6892567873001099,\n            \"Y\": 0.48880481719970703\n          },\n          {\n            \"X\": 0.7267770171165466,\n            \"Y\": 0.4888232946395874\n          },\n          {\n            \"X\": 0.7267782688140869,\n            \"Y\": 0.4982509911060333\n          },\n          {\n            \"X\": 0.6892579197883606,\n            \"Y\": 0.49823254346847534\n          }\n        ]\n      },\n      \"Id\": \"7b30686f-c772-4ed9-be49-cc93aec5a08a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9275894165039,\n      \"Text\": \"FORWARD\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06710369139909744,\n          \"Height\": 0.009677546098828316,\n          \"Left\": 0.7286721467971802,\n          \"Top\": 0.48873424530029297\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7286721467971802,\n            \"Y\": 0.48873424530029297\n          },\n          {\n            \"X\": 0.7957742810249329,\n            \"Y\": 0.4887672960758209\n          },\n          {\n            \"X\": 0.795775830745697,\n            \"Y\": 0.49841177463531494\n          },\n          {\n            \"X\": 0.7286733984947205,\n            \"Y\": 0.49837878346443176\n          }\n        ]\n      },\n      \"Id\": \"db5bf66c-2b68-411d-a7bf-ab18f74d0bba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93864440917969,\n      \"Text\": \"TO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01848890259861946,\n          \"Height\": 0.009209102019667625,\n          \"Left\": 0.7979978322982788,\n          \"Top\": 0.48884493112564087\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7979978322982788,\n            \"Y\": 0.48884493112564087\n          },\n          {\n            \"X\": 0.8164851665496826,\n            \"Y\": 0.4888540208339691\n          },\n          {\n            \"X\": 0.8164867162704468,\n            \"Y\": 0.49805402755737305\n          },\n          {\n            \"X\": 0.7979993224143982,\n            \"Y\": 0.4980449378490448\n          }\n        ]\n      },\n      \"Id\": \"dbb1beb9-d8c6-45c5-8293-08a21c8a5b2f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82540893554688,\n      \"Text\": \"YOUR\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03829444944858551,\n          \"Height\": 0.009317644871771336,\n          \"Left\": 0.8189597129821777,\n          \"Top\": 0.48881426453590393\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8189597129821777,\n            \"Y\": 0.48881426453590393\n          },\n          {\n            \"X\": 0.8572524189949036,\n            \"Y\": 0.48883312940597534\n          },\n          {\n            \"X\": 0.857254147529602,\n            \"Y\": 0.4981319010257721\n          },\n          {\n            \"X\": 0.8189612627029419,\n            \"Y\": 0.49811309576034546\n          }\n        ]\n      },\n      \"Id\": \"df4afff9-f651-4c0b-859c-9e808ac28929\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 20.658769607543945,\n      \"Text\": \"8000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01206609234213829,\n          \"Height\": 0.01607183739542961,\n          \"Left\": 0.9756705164909363,\n          \"Top\": 0.4813154935836792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9756705164909363,\n            \"Y\": 0.4813154935836792\n          },\n          {\n            \"X\": 0.9877328276634216,\n            \"Y\": 0.48132142424583435\n          },\n          {\n            \"X\": 0.9877365827560425,\n            \"Y\": 0.4973873198032379\n          },\n          {\n            \"X\": 0.9756742715835571,\n            \"Y\": 0.49738138914108276\n          }\n        ]\n      },\n      \"Id\": \"ba08e213-33d6-441a-9995-2abe95c3b0f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86009216308594,\n      \"Text\": \"Stock\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03948558121919632,\n          \"Height\": 0.010403621941804886,\n          \"Left\": 0.16561101377010345,\n          \"Top\": 0.5030400156974792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16561192274093628,\n            \"Y\": 0.5030400156974792\n          },\n          {\n            \"X\": 0.20509660243988037,\n            \"Y\": 0.5030593872070312\n          },\n          {\n            \"X\": 0.20509585738182068,\n            \"Y\": 0.513443648815155\n          },\n          {\n            \"X\": 0.16561101377010345,\n            \"Y\": 0.513424277305603\n          }\n        ]\n      },\n      \"Id\": \"d30673f2-7591-47ad-aa93-ccee400eebf3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79281616210938,\n      \"Text\": \"Plan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029751131311058998,\n          \"Height\": 0.010428785346448421,\n          \"Left\": 0.2077360600233078,\n          \"Top\": 0.5030913352966309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2077367901802063,\n            \"Y\": 0.5030913352966309\n          },\n          {\n            \"X\": 0.23748718202114105,\n            \"Y\": 0.5031059384346008\n          },\n          {\n            \"X\": 0.2374865710735321,\n            \"Y\": 0.5135201215744019\n          },\n          {\n            \"X\": 0.2077360600233078,\n            \"Y\": 0.5135055184364319\n          }\n        ]\n      },\n      \"Id\": \"5381a4e9-52e8-431c-86a5-2cda7707d9b1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.43785858154297,\n      \"Text\": \"-15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04389195889234543,\n          \"Height\": 0.009818912483751774,\n          \"Left\": 0.3776674270629883,\n          \"Top\": 0.5039076805114746\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37766745686531067,\n            \"Y\": 0.5039076805114746\n          },\n          {\n            \"X\": 0.42155924439430237,\n            \"Y\": 0.5039291977882385\n          },\n          {\n            \"X\": 0.4215593636035919,\n            \"Y\": 0.5137265920639038\n          },\n          {\n            \"X\": 0.3776674270629883,\n            \"Y\": 0.5137050747871399\n          }\n        ]\n      },\n      \"Id\": \"8a55bb67-248d-4465-9fee-6edee611fd01\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70083618164062,\n      \"Text\": \"150.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045238297432661057,\n          \"Height\": 0.009857072494924068,\n          \"Left\": 0.4847920835018158,\n          \"Top\": 0.5039575099945068\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4847920835018158,\n            \"Y\": 0.5039575099945068\n          },\n          {\n            \"X\": 0.530029833316803,\n            \"Y\": 0.5039797425270081\n          },\n          {\n            \"X\": 0.530030369758606,\n            \"Y\": 0.5138146281242371\n          },\n          {\n            \"X\": 0.48479247093200684,\n            \"Y\": 0.5137924551963806\n          }\n        ]\n      },\n      \"Id\": \"7ec0a951-e801-4749-8093-acec931e3ced\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 81.60974884033203,\n      \"Text\": \"PARTICIPATION\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10165880620479584,\n          \"Height\": 0.009729065001010895,\n          \"Left\": 0.5767770409584045,\n          \"Top\": 0.5050473213195801\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767770409584045,\n            \"Y\": 0.5050473213195801\n          },\n          {\n            \"X\": 0.6784347295761108,\n            \"Y\": 0.5050972104072571\n          },\n          {\n            \"X\": 0.6784358620643616,\n            \"Y\": 0.5147764086723328\n          },\n          {\n            \"X\": 0.5767777562141418,\n            \"Y\": 0.5147265791893005\n          }\n        ]\n      },\n      \"Id\": \"0999396f-327a-47b7-bf51-e1bb9e239233\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 72.43475341796875,\n      \"Text\": \"2000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009551375173032284,\n          \"Height\": 0.020518435165286064,\n          \"Left\": 0.9777013063430786,\n          \"Top\": 0.5007089972496033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777013063430786,\n            \"Y\": 0.5007089972496033\n          },\n          {\n            \"X\": 0.987247884273529,\n            \"Y\": 0.5007137060165405\n          },\n          {\n            \"X\": 0.9872527122497559,\n            \"Y\": 0.5212274789810181\n          },\n          {\n            \"X\": 0.9777061343193054,\n            \"Y\": 0.5212227702140808\n          }\n        ]\n      },\n      \"Id\": \"aa6826ef-bc34-438c-b074-ac1a56387cc1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79086303710938,\n      \"Text\": \"Life\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02501334808766842,\n          \"Height\": 0.010393071919679642,\n          \"Left\": 0.16534756124019623,\n          \"Top\": 0.5186522006988525\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16534847021102905,\n            \"Y\": 0.5186522006988525\n          },\n          {\n            \"X\": 0.1903609037399292,\n            \"Y\": 0.5186644196510315\n          },\n          {\n            \"X\": 0.19036011397838593,\n            \"Y\": 0.5290452837944031\n          },\n          {\n            \"X\": 0.16534756124019623,\n            \"Y\": 0.5290330648422241\n          }\n        ]\n      },\n      \"Id\": \"6aa85396-f766-4efd-9900-70c11cd5af14\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.53080749511719,\n      \"Text\": \"Insurance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06482359766960144,\n          \"Height\": 0.010144668631255627,\n          \"Left\": 0.19411103427410126,\n          \"Top\": 0.5186437964439392\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19411180913448334,\n            \"Y\": 0.5186437964439392\n          },\n          {\n            \"X\": 0.2589346170425415,\n            \"Y\": 0.5186755657196045\n          },\n          {\n            \"X\": 0.2589341104030609,\n            \"Y\": 0.5287884473800659\n          },\n          {\n            \"X\": 0.19411103427410126,\n            \"Y\": 0.5287567973136902\n          }\n        ]\n      },\n      \"Id\": \"034c02f4-f85d-4e57-b51e-267d37a79da2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.11956024169922,\n      \"Text\": \"-5.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040407564491033554,\n          \"Height\": 0.009700830094516277,\n          \"Left\": 0.3808732032775879,\n          \"Top\": 0.519393801689148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.519393801689148\n          },\n          {\n            \"X\": 0.4212806224822998,\n            \"Y\": 0.5194135904312134\n          },\n          {\n            \"X\": 0.42128074169158936,\n            \"Y\": 0.5290946364402771\n          },\n          {\n            \"X\": 0.3808732032775879,\n            \"Y\": 0.5290749073028564\n          }\n        ]\n      },\n      \"Id\": \"622c0d47-0f62-424c-b6fd-c183b76c562e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5484619140625,\n      \"Text\": \"50.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03804484009742737,\n          \"Height\": 0.009686019271612167,\n          \"Left\": 0.49207040667533875,\n          \"Top\": 0.5194575786590576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49207040667533875,\n            \"Y\": 0.5194575786590576\n          },\n          {\n            \"X\": 0.5301147103309631,\n            \"Y\": 0.5194761753082275\n          },\n          {\n            \"X\": 0.5301152467727661,\n            \"Y\": 0.5291435718536377\n          },\n          {\n            \"X\": 0.4920707941055298,\n            \"Y\": 0.5291249752044678\n          }\n        ]\n      },\n      \"Id\": \"1869ba4b-8b76-4ace-993f-3f24c4856dcc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98017883300781,\n      \"Text\": \"Loan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033557310700416565,\n          \"Height\": 0.010077397339046001,\n          \"Left\": 0.16546224057674408,\n          \"Top\": 0.5340374112129211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16546311974525452,\n            \"Y\": 0.5340374112129211\n          },\n          {\n            \"X\": 0.19901955127716064,\n            \"Y\": 0.5340538024902344\n          },\n          {\n            \"X\": 0.19901880621910095,\n            \"Y\": 0.5441148281097412\n          },\n          {\n            \"X\": 0.16546224057674408,\n            \"Y\": 0.5440984964370728\n          }\n        ]\n      },\n      \"Id\": \"c89adf05-f928-4844-8c2d-5451b74fb8bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 49.552772521972656,\n      \"Text\": \"2001\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009131364524364471,\n          \"Height\": 0.01764838956296444,\n          \"Left\": 0.9777453541755676,\n          \"Top\": 0.5230948328971863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9777453541755676,\n            \"Y\": 0.5230948328971863\n          },\n          {\n            \"X\": 0.9868725538253784,\n            \"Y\": 0.5230993032455444\n          },\n          {\n            \"X\": 0.9868767261505127,\n            \"Y\": 0.5407432317733765\n          },\n          {\n            \"X\": 0.9777494668960571,\n            \"Y\": 0.5407388210296631\n          }\n        ]\n      },\n      \"Id\": \"eb2d7366-ea8c-48b1-9e94-033b6649c222\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 70.24380493164062,\n      \"Text\": \"-30.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04858388379216194,\n          \"Height\": 0.009743551723659039,\n          \"Left\": 0.3726392686367035,\n          \"Top\": 0.534624457359314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37263932824134827,\n            \"Y\": 0.534624457359314\n          },\n          {\n            \"X\": 0.4212230145931244,\n            \"Y\": 0.5346481800079346\n          },\n          {\n            \"X\": 0.42122316360473633,\n            \"Y\": 0.5443680286407471\n          },\n          {\n            \"X\": 0.3726392686367035,\n            \"Y\": 0.5443443655967712\n          }\n        ]\n      },\n      \"Id\": \"8aebe610-8ab7-4c10-a49d-35e897f5d327\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50465393066406,\n      \"Text\": \"150.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045781053602695465,\n          \"Height\": 0.009885708801448345,\n          \"Left\": 0.4842190742492676,\n          \"Top\": 0.5347295999526978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4842190742492676,\n            \"Y\": 0.5347295999526978\n          },\n          {\n            \"X\": 0.5299995541572571,\n            \"Y\": 0.5347519516944885\n          },\n          {\n            \"X\": 0.5300001502037048,\n            \"Y\": 0.5446153283119202\n          },\n          {\n            \"X\": 0.4842194616794586,\n            \"Y\": 0.5445930361747742\n          }\n        ]\n      },\n      \"Id\": \"7943e5ff-4a39-43b7-a5e6-70f1b4e6fcba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92391967773438,\n      \"Text\": \"Adjustment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08251450955867767,\n          \"Height\": 0.012692177668213844,\n          \"Left\": 0.1650719940662384,\n          \"Top\": 0.5555633902549744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16507309675216675,\n            \"Y\": 0.5555633902549744\n          },\n          {\n            \"X\": 0.24758650362491608,\n            \"Y\": 0.5556034445762634\n          },\n          {\n            \"X\": 0.24758580327033997,\n            \"Y\": 0.5682555437088013\n          },\n          {\n            \"X\": 0.1650719940662384,\n            \"Y\": 0.568215548992157\n          }\n        ]\n      },\n      \"Id\": \"fedaeef5-b806-48b0-9fdf-589c859b443a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 19.263839721679688,\n      \"Text\": \"00000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009525571949779987,\n          \"Height\": 0.023477010428905487,\n          \"Left\": 0.9778505563735962,\n          \"Top\": 0.5443591475486755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9778505563735962,\n            \"Y\": 0.5443591475486755\n          },\n          {\n            \"X\": 0.9873705506324768,\n            \"Y\": 0.5443637371063232\n          },\n          {\n            \"X\": 0.9873760938644409,\n            \"Y\": 0.5678361654281616\n          },\n          {\n            \"X\": 0.9778560400009155,\n            \"Y\": 0.5678315162658691\n          }\n        ]\n      },\n      \"Id\": \"3a536f29-7d45-4eb6-98bb-1541188c770c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72137451171875,\n      \"Text\": \"Life\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02444257214665413,\n          \"Height\": 0.010491094551980495,\n          \"Left\": 0.16571971774101257,\n          \"Top\": 0.5709601044654846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1657206416130066,\n            \"Y\": 0.5709601044654846\n          },\n          {\n            \"X\": 0.1901623010635376,\n            \"Y\": 0.5709719657897949\n          },\n          {\n            \"X\": 0.19016148149967194,\n            \"Y\": 0.5814512372016907\n          },\n          {\n            \"X\": 0.16571971774101257,\n            \"Y\": 0.5814394354820251\n          }\n        ]\n      },\n      \"Id\": \"afa302f2-0027-4850-a3dd-cbac8bab19e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.11564636230469,\n      \"Text\": \"Insurance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06437728554010391,\n          \"Height\": 0.010127737186849117,\n          \"Left\": 0.1942756325006485,\n          \"Top\": 0.5710605382919312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19427639245986938,\n            \"Y\": 0.5710605382919312\n          },\n          {\n            \"X\": 0.2586528956890106,\n            \"Y\": 0.5710917115211487\n          },\n          {\n            \"X\": 0.25865238904953003,\n            \"Y\": 0.5811883211135864\n          },\n          {\n            \"X\": 0.1942756325006485,\n            \"Y\": 0.5811571478843689\n          }\n        ]\n      },\n      \"Id\": \"883a5f20-8b8a-47ed-8759-d1734c408e65\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 50.21247100830078,\n      \"Text\": \"+ 13.50\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049284689128398895,\n          \"Height\": 0.01033841073513031,\n          \"Left\": 0.3715052306652069,\n          \"Top\": 0.5710830688476562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3715052902698517,\n            \"Y\": 0.5710830688476562\n          },\n          {\n            \"X\": 0.42078977823257446,\n            \"Y\": 0.5711069107055664\n          },\n          {\n            \"X\": 0.420789897441864,\n            \"Y\": 0.581421434879303\n          },\n          {\n            \"X\": 0.3715052306652069,\n            \"Y\": 0.5813976526260376\n          }\n        ]\n      },\n      \"Id\": \"f5ca99e6-3de1-497b-94ff-c3220e32795e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67620086669922,\n      \"Text\": \"Net\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02631325274705887,\n          \"Height\": 0.01062931027263403,\n          \"Left\": 0.16664595901966095,\n          \"Top\": 0.5937259793281555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16664688289165497,\n            \"Y\": 0.5937259793281555\n          },\n          {\n            \"X\": 0.19295921921730042,\n            \"Y\": 0.5937386155128479\n          },\n          {\n            \"X\": 0.19295839965343475,\n            \"Y\": 0.6043552756309509\n          },\n          {\n            \"X\": 0.16664595901966095,\n            \"Y\": 0.6043425798416138\n          }\n        ]\n      },\n      \"Id\": \"f854bcdb-5bff-4097-aebd-ea66e02bfd7c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7108154296875,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027636241167783737,\n          \"Height\": 0.012285953387618065,\n          \"Left\": 0.19583238661289215,\n          \"Top\": 0.594002366065979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19583331048488617,\n            \"Y\": 0.594002366065979\n          },\n          {\n            \"X\": 0.2234686315059662,\n            \"Y\": 0.5940156579017639\n          },\n          {\n            \"X\": 0.2234678417444229,\n            \"Y\": 0.6062883138656616\n          },\n          {\n            \"X\": 0.19583238661289215,\n            \"Y\": 0.6062750220298767\n          }\n        ]\n      },\n      \"Id\": \"b6c893d0-a11b-49e3-8689-7cc319bbd1fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.27107238769531,\n      \"Text\": \"$291.90\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059976059943437576,\n          \"Height\": 0.010888412594795227,\n          \"Left\": 0.36117327213287354,\n          \"Top\": 0.5935595631599426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3611733913421631,\n            \"Y\": 0.5935595631599426\n          },\n          {\n            \"X\": 0.42114919424057007,\n            \"Y\": 0.5935884714126587\n          },\n          {\n            \"X\": 0.421149343252182,\n            \"Y\": 0.6044479608535767\n          },\n          {\n            \"X\": 0.36117327213287354,\n            \"Y\": 0.6044191122055054\n          }\n        ]\n      },\n      \"Id\": \"6f9ab73b-dff5-4d82-809f-b4924feb4d07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.66609954833984,\n      \"Text\": \"Excluded\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07191898673772812,\n          \"Height\": 0.011313659138977528,\n          \"Left\": 0.17361406981945038,\n          \"Top\": 0.6250417828559875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17361502349376678,\n            \"Y\": 0.6250417828559875\n          },\n          {\n            \"X\": 0.2455330640077591,\n            \"Y\": 0.6250762343406677\n          },\n          {\n            \"X\": 0.24553243815898895,\n            \"Y\": 0.636355459690094\n          },\n          {\n            \"X\": 0.17361406981945038,\n            \"Y\": 0.6363210678100586\n          }\n        ]\n      },\n      \"Id\": \"0637c24f-5785-4820-9875-d2aaf09a220a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97282409667969,\n      \"Text\": \"from\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034399960190057755,\n          \"Height\": 0.0106013473123312,\n          \"Left\": 0.25225964188575745,\n          \"Top\": 0.6254462003707886\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2522602081298828,\n            \"Y\": 0.6254462003707886\n          },\n          {\n            \"X\": 0.2866595983505249,\n            \"Y\": 0.6254627108573914\n          },\n          {\n            \"X\": 0.2866591811180115,\n            \"Y\": 0.6360475420951843\n          },\n          {\n            \"X\": 0.25225964188575745,\n            \"Y\": 0.6360310912132263\n          }\n        ]\n      },\n      \"Id\": \"025bdd1b-e258-4493-ba8a-67b57cced0ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8582992553711,\n      \"Text\": \"federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050328463315963745,\n          \"Height\": 0.010853709653019905,\n          \"Left\": 0.29324519634246826,\n          \"Top\": 0.625353991985321\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2932455837726593,\n            \"Y\": 0.625353991985321\n          },\n          {\n            \"X\": 0.343573659658432,\n            \"Y\": 0.6253781318664551\n          },\n          {\n            \"X\": 0.3435734808444977,\n            \"Y\": 0.6362076997756958\n          },\n          {\n            \"X\": 0.29324519634246826,\n            \"Y\": 0.6361836791038513\n          }\n        ]\n      },\n      \"Id\": \"785afe99-cd2b-4e2f-b6ad-9bfed85a698b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81031799316406,\n      \"Text\": \"taxable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05278989300131798,\n          \"Height\": 0.010744208469986916,\n          \"Left\": 0.349907249212265,\n          \"Top\": 0.6254357099533081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34990739822387695,\n            \"Y\": 0.6254357099533081\n          },\n          {\n            \"X\": 0.40269705653190613,\n            \"Y\": 0.6254609823226929\n          },\n          {\n            \"X\": 0.4026971459388733,\n            \"Y\": 0.6361799240112305\n          },\n          {\n            \"X\": 0.349907249212265,\n            \"Y\": 0.6361546516418457\n          }\n        ]\n      },\n      \"Id\": \"397b5de8-4f0c-4b9d-aba1-e1795798b99f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8554458618164,\n      \"Text\": \"wages\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04726226255297661,\n          \"Height\": 0.010768145322799683,\n          \"Left\": 0.40874597430229187,\n          \"Top\": 0.6273600459098816\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40874597430229187,\n            \"Y\": 0.6273600459098816\n          },\n          {\n            \"X\": 0.4560079276561737,\n            \"Y\": 0.6273826360702515\n          },\n          {\n            \"X\": 0.4560082256793976,\n            \"Y\": 0.6381281614303589\n          },\n          {\n            \"X\": 0.40874606370925903,\n            \"Y\": 0.638105571269989\n          }\n        ]\n      },\n      \"Id\": \"9ffa9d23-9f8c-4a72-afd2-b5d445af174d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76924896240234,\n      \"Text\": \"Your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03369719907641411,\n          \"Height\": 0.010599708184599876,\n          \"Left\": 0.17867200076580048,\n          \"Top\": 0.6571917533874512\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1786728799343109,\n            \"Y\": 0.6571917533874512\n          },\n          {\n            \"X\": 0.21236920356750488,\n            \"Y\": 0.6572077870368958\n          },\n          {\n            \"X\": 0.21236847341060638,\n            \"Y\": 0.6677914261817932\n          },\n          {\n            \"X\": 0.17867200076580048,\n            \"Y\": 0.6677754521369934\n          }\n        ]\n      },\n      \"Id\": \"e4f8aef4-31d3-4b64-b070-85b124bf9829\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88612365722656,\n      \"Text\": \"federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04723221808671951,\n          \"Height\": 0.010994775220751762,\n          \"Left\": 0.21782034635543823,\n          \"Top\": 0.6570504903793335\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21782107651233673,\n            \"Y\": 0.6570504903793335\n          },\n          {\n            \"X\": 0.26505255699157715,\n            \"Y\": 0.6570729613304138\n          },\n          {\n            \"X\": 0.26505202054977417,\n            \"Y\": 0.6680452823638916\n          },\n          {\n            \"X\": 0.21782034635543823,\n            \"Y\": 0.6680228114128113\n          }\n        ]\n      },\n      \"Id\": \"edaeab53-8f77-4417-9b4b-3e1b141d53d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93282318115234,\n      \"Text\": \"wages\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0451899953186512,\n          \"Height\": 0.010853021405637264,\n          \"Left\": 0.27042484283447266,\n          \"Top\": 0.6592820286750793\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27042534947395325,\n            \"Y\": 0.6592820286750793\n          },\n          {\n            \"X\": 0.31561484932899475,\n            \"Y\": 0.6593035459518433\n          },\n          {\n            \"X\": 0.3156145215034485,\n            \"Y\": 0.6701350808143616\n          },\n          {\n            \"X\": 0.27042484283447266,\n            \"Y\": 0.6701136231422424\n          }\n        ]\n      },\n      \"Id\": \"28747244-8f11-4952-9c1f-d135261ff38d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8707504272461,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025236966088414192,\n          \"Height\": 0.010532569140195847,\n          \"Left\": 0.32224714756011963,\n          \"Top\": 0.6574049592018127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3222474157810211,\n            \"Y\": 0.6574049592018127\n          },\n          {\n            \"X\": 0.34748411178588867,\n            \"Y\": 0.6574169397354126\n          },\n          {\n            \"X\": 0.34748393297195435,\n            \"Y\": 0.6679375171661377\n          },\n          {\n            \"X\": 0.32224714756011963,\n            \"Y\": 0.6679255366325378\n          }\n        ]\n      },\n      \"Id\": \"9b5c3118-48d7-4666-8e5f-c59c76e446c3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5494613647461,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04361151158809662,\n          \"Height\": 0.01264331117272377,\n          \"Left\": 0.35372984409332275,\n          \"Top\": 0.6572222113609314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3537299931049347,\n            \"Y\": 0.6572222113609314\n          },\n          {\n            \"X\": 0.3973413109779358,\n            \"Y\": 0.657243013381958\n          },\n          {\n            \"X\": 0.3973413407802582,\n            \"Y\": 0.6698655486106873\n          },\n          {\n            \"X\": 0.35372984409332275,\n            \"Y\": 0.6698448657989502\n          }\n        ]\n      },\n      \"Id\": \"0311ced2-55bd-4733-936d-3a3a133e9eb6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96856689453125,\n      \"Text\": \"are\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023013204336166382,\n          \"Height\": 0.008587394841015339,\n          \"Left\": 0.4034115970134735,\n          \"Top\": 0.6592597961425781\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4034115970134735,\n            \"Y\": 0.6592597961425781\n          },\n          {\n            \"X\": 0.42642465233802795,\n            \"Y\": 0.659270703792572\n          },\n          {\n            \"X\": 0.4264248013496399,\n            \"Y\": 0.6678471565246582\n          },\n          {\n            \"X\": 0.4034116566181183,\n            \"Y\": 0.6678362488746643\n          }\n        ]\n      },\n      \"Id\": \"87a4b628-752e-407e-a726-3c2dd8e9e49c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72470092773438,\n      \"Text\": \"$386.15\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05440014973282814,\n          \"Height\": 0.011684946715831757,\n          \"Left\": 0.4329390525817871,\n          \"Top\": 0.6567091345787048\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4329390525817871,\n            \"Y\": 0.6567091345787048\n          },\n          {\n            \"X\": 0.48733875155448914,\n            \"Y\": 0.6567350029945374\n          },\n          {\n            \"X\": 0.48733919858932495,\n            \"Y\": 0.6683940887451172\n          },\n          {\n            \"X\": 0.4329392611980438,\n            \"Y\": 0.6683682203292847\n          }\n        ]\n      },\n      \"Id\": \"4a69215f-2333-41e8-a778-26ea4771b23e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 39.01307678222656,\n      \"Text\": \"ESTS8E103\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15482279658317566,\n          \"Height\": 0.01946660876274109,\n          \"Left\": 0.7813716530799866,\n          \"Top\": 0.7087773084640503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7813716530799866,\n            \"Y\": 0.7087773084640503\n          },\n          {\n            \"X\": 0.9361902475357056,\n            \"Y\": 0.7088501453399658\n          },\n          {\n            \"X\": 0.9361944198608398,\n            \"Y\": 0.728243887424469\n          },\n          {\n            \"X\": 0.7813746333122253,\n            \"Y\": 0.7281712889671326\n          }\n        ]\n      },\n      \"Id\": \"d62b63b7-49e1-4e97-acc7-8a6c1b9ed628\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93576049804688,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028792085126042366,\n          \"Height\": 0.009275209158658981,\n          \"Left\": 0.15565495193004608,\n          \"Top\": 0.7296340465545654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15565578639507294,\n            \"Y\": 0.7296340465545654\n          },\n          {\n            \"X\": 0.1844470351934433,\n            \"Y\": 0.7296475172042847\n          },\n          {\n            \"X\": 0.1844463050365448,\n            \"Y\": 0.7389092445373535\n          },\n          {\n            \"X\": 0.15565495193004608,\n            \"Y\": 0.7388957738876343\n          }\n        ]\n      },\n      \"Id\": \"9f7366c3-490b-452d-a9cc-333c3776e9c3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91629791259766,\n      \"Text\": \"COMPANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06996900588274002,\n          \"Height\": 0.010660325177013874,\n          \"Left\": 0.1869933009147644,\n          \"Top\": 0.7286994457244873\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18699413537979126,\n            \"Y\": 0.7286994457244873\n          },\n          {\n            \"X\": 0.2569623291492462,\n            \"Y\": 0.7287322282791138\n          },\n          {\n            \"X\": 0.25696176290512085,\n            \"Y\": 0.7393597364425659\n          },\n          {\n            \"X\": 0.1869933009147644,\n            \"Y\": 0.7393270134925842\n          }\n        ]\n      },\n      \"Id\": \"bdf465b0-ec8f-4d56-9d92-fb3ae3b78230\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.85197448730469,\n      \"Text\": \"CORP.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04296444356441498,\n          \"Height\": 0.009685636498034,\n          \"Left\": 0.2591380178928375,\n          \"Top\": 0.7291597723960876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2591385245323181,\n            \"Y\": 0.7291597723960876\n          },\n          {\n            \"X\": 0.3021024763584137,\n            \"Y\": 0.7291799187660217\n          },\n          {\n            \"X\": 0.30210214853286743,\n            \"Y\": 0.7388454079627991\n          },\n          {\n            \"X\": 0.2591380178928375,\n            \"Y\": 0.7388253211975098\n          }\n        ]\n      },\n      \"Id\": \"e57219bd-1e80-4a7f-a33f-2bb4d6b5f8c3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8669204711914,\n      \"Text\": \"Payroll\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04977186769247055,\n          \"Height\": 0.01286307629197836,\n          \"Left\": 0.5768902897834778,\n          \"Top\": 0.7283536791801453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768902897834778,\n            \"Y\": 0.7283536791801453\n          },\n          {\n            \"X\": 0.626660943031311,\n            \"Y\": 0.7283769845962524\n          },\n          {\n            \"X\": 0.6266621351242065,\n            \"Y\": 0.741216778755188\n          },\n          {\n            \"X\": 0.5768912434577942,\n            \"Y\": 0.7411934733390808\n          }\n        ]\n      },\n      \"Id\": \"ef459bf4-39a9-4605-b5e3-a6ec71ada8a3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89656829833984,\n      \"Text\": \"check\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044556424021720886,\n          \"Height\": 0.010516264475882053,\n          \"Left\": 0.6327598094940186,\n          \"Top\": 0.7285091876983643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6327598094940186,\n            \"Y\": 0.7285091876983643\n          },\n          {\n            \"X\": 0.6773150563240051,\n            \"Y\": 0.7285300493240356\n          },\n          {\n            \"X\": 0.6773162484169006,\n            \"Y\": 0.7390254139900208\n          },\n          {\n            \"X\": 0.6327608227729797,\n            \"Y\": 0.7390046119689941\n          }\n        ]\n      },\n      \"Id\": \"101aaf0d-2770-4108-8d42-44842ffd4f57\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.63739776611328,\n      \"Text\": \"number:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05958341807126999,\n          \"Height\": 0.010097214952111244,\n          \"Left\": 0.6831035614013672,\n          \"Top\": 0.7287666201591492\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6831035614013672,\n            \"Y\": 0.7287666201591492\n          },\n          {\n            \"X\": 0.7426855564117432,\n            \"Y\": 0.728794515132904\n          },\n          {\n            \"X\": 0.7426869869232178,\n            \"Y\": 0.7388638257980347\n          },\n          {\n            \"X\": 0.6831047534942627,\n            \"Y\": 0.7388359308242798\n          }\n        ]\n      },\n      \"Id\": \"77ba268f-1a09-45b4-8d85-f7c7c94b6e6d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.08511352539062,\n      \"Text\": \"0000000000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08322829753160477,\n          \"Height\": 0.010623566806316376,\n          \"Left\": 0.757146954536438,\n          \"Top\": 0.7282014489173889\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.757146954536438,\n            \"Y\": 0.7282014489173889\n          },\n          {\n            \"X\": 0.8403733968734741,\n            \"Y\": 0.728240430355072\n          },\n          {\n            \"X\": 0.8403752446174622,\n            \"Y\": 0.7388249635696411\n          },\n          {\n            \"X\": 0.7571485042572021,\n            \"Y\": 0.7387860417366028\n          }\n        ]\n      },\n      \"Id\": \"c9040c00-22f4-4521-b5e4-8f7b8da59eaa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96957397460938,\n      \"Text\": \"475\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025667477399110794,\n          \"Height\": 0.009577604942023754,\n          \"Left\": 0.15589042007923126,\n          \"Top\": 0.745729923248291\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1558912843465805,\n            \"Y\": 0.745729923248291\n          },\n          {\n            \"X\": 0.18155789375305176,\n            \"Y\": 0.7457419037818909\n          },\n          {\n            \"X\": 0.18155711889266968,\n            \"Y\": 0.7553074955940247\n          },\n          {\n            \"X\": 0.15589042007923126,\n            \"Y\": 0.7552955746650696\n          }\n        ]\n      },\n      \"Id\": \"c8881eba-67b3-4d91-9aeb-377d10c5518d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9460678100586,\n      \"Text\": \"ANY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03120543248951435,\n          \"Height\": 0.009304285049438477,\n          \"Left\": 0.18798625469207764,\n          \"Top\": 0.7458422780036926\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18798698484897614,\n            \"Y\": 0.7458422780036926\n          },\n          {\n            \"X\": 0.21919168531894684,\n            \"Y\": 0.7458568811416626\n          },\n          {\n            \"X\": 0.2191910743713379,\n            \"Y\": 0.7551465630531311\n          },\n          {\n            \"X\": 0.18798625469207764,\n            \"Y\": 0.7551320195198059\n          }\n        ]\n      },\n      \"Id\": \"25d28dd6-c535-4d8a-8125-4f3859a88fbf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95954895019531,\n      \"Text\": \"AVENUE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06070936098694801,\n          \"Height\": 0.010368208400905132,\n          \"Left\": 0.22705648839473724,\n          \"Top\": 0.7452850937843323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22705712914466858,\n            \"Y\": 0.7452850937843323\n          },\n          {\n            \"X\": 0.28776586055755615,\n            \"Y\": 0.7453134655952454\n          },\n          {\n            \"X\": 0.2877654433250427,\n            \"Y\": 0.7556533217430115\n          },\n          {\n            \"X\": 0.22705648839473724,\n            \"Y\": 0.7556250095367432\n          }\n        ]\n      },\n      \"Id\": \"a0823581-466e-4ed9-8490-520e7ef2de07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.14222717285156,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025951247662305832,\n          \"Height\": 0.01233794167637825,\n          \"Left\": 0.577531635761261,\n          \"Top\": 0.7436504364013672\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.577531635761261,\n            \"Y\": 0.7436504364013672\n          },\n          {\n            \"X\": 0.6034818291664124,\n            \"Y\": 0.7436625361442566\n          },\n          {\n            \"X\": 0.6034829020500183,\n            \"Y\": 0.755988359451294\n          },\n          {\n            \"X\": 0.5775325894355774,\n            \"Y\": 0.7559762597084045\n          }\n        ]\n      },\n      \"Id\": \"5bbf1d68-23e7-4668-b0fd-bfb8c2229ce9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.75252532958984,\n      \"Text\": \"date:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03473709151148796,\n          \"Height\": 0.010174005292356014,\n          \"Left\": 0.6091468930244446,\n          \"Top\": 0.7438768148422241\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6091468930244446,\n            \"Y\": 0.7438768148422241\n          },\n          {\n            \"X\": 0.6438829302787781,\n            \"Y\": 0.743893027305603\n          },\n          {\n            \"X\": 0.643884003162384,\n            \"Y\": 0.7540507912635803\n          },\n          {\n            \"X\": 0.6091477870941162,\n            \"Y\": 0.7540345788002014\n          }\n        ]\n      },\n      \"Id\": \"2b58335d-96ef-4d52-8ca3-a4e3ac355e98\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83737182617188,\n      \"Text\": \"7/25/2008\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06732150167226791,\n          \"Height\": 0.010527209378778934,\n          \"Left\": 0.7587701082229614,\n          \"Top\": 0.7437589168548584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7587701082229614,\n            \"Y\": 0.7437589168548584\n          },\n          {\n            \"X\": 0.8260897994041443,\n            \"Y\": 0.7437903881072998\n          },\n          {\n            \"X\": 0.8260916471481323,\n            \"Y\": 0.7542861700057983\n          },\n          {\n            \"X\": 0.7587716579437256,\n            \"Y\": 0.7542547583580017\n          }\n        ]\n      },\n      \"Id\": \"4142b714-81fd-452b-8cce-5fdfea36ebd1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 64.60087585449219,\n      \"Text\": \"ANYTOWN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07362344115972519,\n          \"Height\": 0.010723540559411049,\n          \"Left\": 0.15558114647865295,\n          \"Top\": 0.7599571347236633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15558211505413055,\n            \"Y\": 0.7599571347236633\n          },\n          {\n            \"X\": 0.22920458018779755,\n            \"Y\": 0.759991466999054\n          },\n          {\n            \"X\": 0.22920392453670502,\n            \"Y\": 0.7706807255744934\n          },\n          {\n            \"X\": 0.15558114647865295,\n            \"Y\": 0.7706465125083923\n          }\n        ]\n      },\n      \"Id\": \"f2740c27-ae73-4688-a75f-5f8f5ef8d0e9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81849670410156,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02981932833790779,\n          \"Height\": 0.009609045460820198,\n          \"Left\": 0.23591749370098114,\n          \"Top\": 0.7600727677345276\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2359180599451065,\n            \"Y\": 0.7600727677345276\n          },\n          {\n            \"X\": 0.26573681831359863,\n            \"Y\": 0.7600866556167603\n          },\n          {\n            \"X\": 0.2657363712787628,\n            \"Y\": 0.7696818113327026\n          },\n          {\n            \"X\": 0.23591749370098114,\n            \"Y\": 0.76966792345047\n          }\n        ]\n      },\n      \"Id\": \"56d4bceb-b728-4d7e-b5c8-41d53e8a3835\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88493347167969,\n      \"Text\": \"10101\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03604523465037346,\n          \"Height\": 0.009566728956997395,\n          \"Left\": 0.27254676818847656,\n          \"Top\": 0.7601276636123657\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2725472152233124,\n            \"Y\": 0.7601276636123657\n          },\n          {\n            \"X\": 0.3085920214653015,\n            \"Y\": 0.7601444721221924\n          },\n          {\n            \"X\": 0.30859172344207764,\n            \"Y\": 0.7696943879127502\n          },\n          {\n            \"X\": 0.27254676818847656,\n            \"Y\": 0.7696776390075684\n          }\n        ]\n      },\n      \"Id\": \"0044e953-9e5d-4d7d-b2b6-a9f209fa13b1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95441436767578,\n      \"Text\": \"Social\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04106291010975838,\n          \"Height\": 0.010454986244440079,\n          \"Left\": 0.5769158005714417,\n          \"Top\": 0.759122371673584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5769158005714417,\n            \"Y\": 0.759122371673584\n          },\n          {\n            \"X\": 0.6179777383804321,\n            \"Y\": 0.7591414451599121\n          },\n          {\n            \"X\": 0.6179786920547485,\n            \"Y\": 0.7695773243904114\n          },\n          {\n            \"X\": 0.5769165754318237,\n            \"Y\": 0.7695582509040833\n          }\n        ]\n      },\n      \"Id\": \"6d70ca53-9b7a-4191-8be1-5cecd82b8ca6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98368835449219,\n      \"Text\": \"Security\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055688273161649704,\n          \"Height\": 0.012621180154383183,\n          \"Left\": 0.6249842643737793,\n          \"Top\": 0.7588515877723694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6249842643737793,\n            \"Y\": 0.7588515877723694\n          },\n          {\n            \"X\": 0.6806710958480835,\n            \"Y\": 0.7588775753974915\n          },\n          {\n            \"X\": 0.6806725263595581,\n            \"Y\": 0.7714728116989136\n          },\n          {\n            \"X\": 0.6249854564666748,\n            \"Y\": 0.771446943283081\n          }\n        ]\n      },\n      \"Id\": \"ab1ae090-9afb-467c-8bd1-d0a5135a5a59\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77853393554688,\n      \"Text\": \"No.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02325323596596718,\n          \"Height\": 0.010454089380800724,\n          \"Left\": 0.6869114637374878,\n          \"Top\": 0.7591426372528076\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6869114637374878,\n            \"Y\": 0.7591426372528076\n          },\n          {\n            \"X\": 0.7101633548736572,\n            \"Y\": 0.7591534852981567\n          },\n          {\n            \"X\": 0.7101646661758423,\n            \"Y\": 0.7695967555046082\n          },\n          {\n            \"X\": 0.6869127154350281,\n            \"Y\": 0.7695859670639038\n          }\n        ]\n      },\n      \"Id\": \"301ebe2f-65bc-4fc4-baf6-a9b5a8bf8db8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.62288665771484,\n      \"Text\": \"987-65-4321\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07716964185237885,\n          \"Height\": 0.009116117842495441,\n          \"Left\": 0.7581342458724976,\n          \"Top\": 0.7597204446792603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7581342458724976,\n            \"Y\": 0.7597204446792603\n          },\n          {\n            \"X\": 0.8353022933006287,\n            \"Y\": 0.7597563862800598\n          },\n          {\n            \"X\": 0.8353039026260376,\n            \"Y\": 0.7688365578651428\n          },\n          {\n            \"X\": 0.7581356167793274,\n            \"Y\": 0.7688007354736328\n          }\n        ]\n      },\n      \"Id\": \"d41aeb06-ae44-4560-9d09-605f8d9aad58\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84986114501953,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024854453280568123,\n          \"Height\": 0.011057969182729721,\n          \"Left\": 0.053030237555503845,\n          \"Top\": 0.8006242513656616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.053031690418720245,\n            \"Y\": 0.8006242513656616\n          },\n          {\n            \"X\": 0.07788468897342682,\n            \"Y\": 0.8006356954574585\n          },\n          {\n            \"X\": 0.07788334786891937,\n            \"Y\": 0.8116822242736816\n          },\n          {\n            \"X\": 0.053030237555503845,\n            \"Y\": 0.8116707801818848\n          }\n        ]\n      },\n      \"Id\": \"114cf0da-7ff1-408f-a449-64176d973dab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86454010009766,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013831173069775105,\n          \"Height\": 0.008887264877557755,\n          \"Left\": 0.08249719440937042,\n          \"Top\": 0.8010762929916382\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08249825984239578,\n            \"Y\": 0.8010762929916382\n          },\n          {\n            \"X\": 0.09632837027311325,\n            \"Y\": 0.8010826706886292\n          },\n          {\n            \"X\": 0.09632734954357147,\n            \"Y\": 0.809963583946228\n          },\n          {\n            \"X\": 0.08249719440937042,\n            \"Y\": 0.8099572062492371\n          }\n        ]\n      },\n      \"Id\": \"c0f4e6f0-40ee-45d1-a629-911b096b13fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84383392333984,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020744087174534798,\n          \"Height\": 0.009186464361846447,\n          \"Left\": 0.10180851817131042,\n          \"Top\": 0.8008617758750916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1018095463514328,\n            \"Y\": 0.8008617758750916\n          },\n          {\n            \"X\": 0.12255260348320007,\n            \"Y\": 0.8008713126182556\n          },\n          {\n            \"X\": 0.12255164980888367,\n            \"Y\": 0.8100482225418091\n          },\n          {\n            \"X\": 0.10180851817131042,\n            \"Y\": 0.8100386261940002\n          }\n        ]\n      },\n      \"Id\": \"4c27ef63-ec15-4762-849f-5c8dc64cb4d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7083511352539,\n      \"Text\": \"order\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03397776186466217,\n          \"Height\": 0.008858593180775642,\n          \"Left\": 0.052512332797050476,\n          \"Top\": 0.8107377290725708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052513495087623596,\n            \"Y\": 0.8107377290725708\n          },\n          {\n            \"X\": 0.08649009466171265,\n            \"Y\": 0.810753345489502\n          },\n          {\n            \"X\": 0.08648905158042908,\n            \"Y\": 0.8195962905883789\n          },\n          {\n            \"X\": 0.052512332797050476,\n            \"Y\": 0.8195806741714478\n          }\n        ]\n      },\n      \"Id\": \"520aae23-fe74-4e98-b435-c940cae5069c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.52409362792969,\n      \"Text\": \"of:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01609433814883232,\n          \"Height\": 0.009173479862511158,\n          \"Left\": 0.0889584943652153,\n          \"Top\": 0.8107634782791138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08895957469940186,\n            \"Y\": 0.8107634782791138\n          },\n          {\n            \"X\": 0.10505283623933792,\n            \"Y\": 0.8107708692550659\n          },\n          {\n            \"X\": 0.10505181550979614,\n            \"Y\": 0.8199369311332703\n          },\n          {\n            \"X\": 0.0889584943652153,\n            \"Y\": 0.8199295401573181\n          }\n        ]\n      },\n      \"Id\": \"8b618eb6-4057-472e-ac0c-ff5887d43806\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.947998046875,\n      \"Text\": \"JOHN\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046056874096393585,\n          \"Height\": 0.012022157199680805,\n          \"Left\": 0.1554965376853943,\n          \"Top\": 0.8108001351356506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15549764037132263,\n            \"Y\": 0.8108001351356506\n          },\n          {\n            \"X\": 0.20155341923236847,\n            \"Y\": 0.8108213543891907\n          },\n          {\n            \"X\": 0.20155254006385803,\n            \"Y\": 0.8228223323822021\n          },\n          {\n            \"X\": 0.1554965376853943,\n            \"Y\": 0.8228011727333069\n          }\n        ]\n      },\n      \"Id\": \"e5db8fa7-2ea7-44b3-a2a6-c019421edc44\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9141845703125,\n      \"Text\": \"STILES\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05745862051844597,\n          \"Height\": 0.0118257412686944,\n          \"Left\": 0.20804084837436676,\n          \"Top\": 0.8107655048370361\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20804168283939362,\n            \"Y\": 0.8107655048370361\n          },\n          {\n            \"X\": 0.265499472618103,\n            \"Y\": 0.8107920289039612\n          },\n          {\n            \"X\": 0.26549890637397766,\n            \"Y\": 0.822591245174408\n          },\n          {\n            \"X\": 0.20804084837436676,\n            \"Y\": 0.8225648999214172\n          }\n        ]\n      },\n      \"Id\": \"fd00bebf-5bf6-49cc-aaf1-6b8cb482b0ce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82328796386719,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02663291245698929,\n          \"Height\": 0.009550248272716999,\n          \"Left\": 0.05225507169961929,\n          \"Top\": 0.8289413452148438\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052256327122449875,\n            \"Y\": 0.8289413452148438\n          },\n          {\n            \"X\": 0.07888798415660858,\n            \"Y\": 0.8289535641670227\n          },\n          {\n            \"X\": 0.07888682931661606,\n            \"Y\": 0.8384915590286255\n          },\n          {\n            \"X\": 0.05225507169961929,\n            \"Y\": 0.8384793996810913\n          }\n        ]\n      },\n      \"Id\": \"843bd1f0-3745-4f39-aa6b-d6cf459a385c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 86.86658477783203,\n      \"Text\": \"amount:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05015043169260025,\n          \"Height\": 0.008631310425698757,\n          \"Left\": 0.08517549186944962,\n          \"Top\": 0.8299362063407898\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0851765125989914,\n            \"Y\": 0.8299362063407898\n          },\n          {\n            \"X\": 0.13532592356204987,\n            \"Y\": 0.8299592733383179\n          },\n          {\n            \"X\": 0.13532507419586182,\n            \"Y\": 0.8385675549507141\n          },\n          {\n            \"X\": 0.08517549186944962,\n            \"Y\": 0.8385446071624756\n          }\n        ]\n      },\n      \"Id\": \"371ad7dd-075d-4bb6-96c4-b2569451fdcf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86312866210938,\n      \"Text\": \"TWO\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03542651608586311,\n          \"Height\": 0.010627028532326221,\n          \"Left\": 0.15508319437503815,\n          \"Top\": 0.8310512900352478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15508416295051575,\n            \"Y\": 0.8310512900352478\n          },\n          {\n            \"X\": 0.19050970673561096,\n            \"Y\": 0.8310675621032715\n          },\n          {\n            \"X\": 0.1905088871717453,\n            \"Y\": 0.8416783213615417\n          },\n          {\n            \"X\": 0.15508319437503815,\n            \"Y\": 0.8416621088981628\n          }\n        ]\n      },\n      \"Id\": \"c939ea3d-6872-4bba-ab37-e4ec94212aaf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96095275878906,\n      \"Text\": \"HUNDRED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07321619242429733,\n          \"Height\": 0.010450581088662148,\n          \"Left\": 0.1976194679737091,\n          \"Top\": 0.8313883543014526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1976202428340912,\n            \"Y\": 0.8313883543014526\n          },\n          {\n            \"X\": 0.27083566784858704,\n            \"Y\": 0.8314219117164612\n          },\n          {\n            \"X\": 0.27083519101142883,\n            \"Y\": 0.8418389558792114\n          },\n          {\n            \"X\": 0.1976194679737091,\n            \"Y\": 0.8418053984642029\n          }\n        ]\n      },\n      \"Id\": \"ec0b346a-6001-47c7-92e6-fdbd68a23110\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67034149169922,\n      \"Text\": \"NINETY-ONE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09124232083559036,\n          \"Height\": 0.010377226397395134,\n          \"Left\": 0.27817460894584656,\n          \"Top\": 0.8312934637069702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2781750559806824,\n            \"Y\": 0.8312934637069702\n          },\n          {\n            \"X\": 0.3694169223308563,\n            \"Y\": 0.8313353061676025\n          },\n          {\n            \"X\": 0.36941686272621155,\n            \"Y\": 0.8416706919670105\n          },\n          {\n            \"X\": 0.27817460894584656,\n            \"Y\": 0.841628909111023\n          }\n        ]\n      },\n      \"Id\": \"67c289af-f854-4383-a8f5-dfdfb11f9189\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98081970214844,\n      \"Text\": \"AND\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032898563891649246,\n          \"Height\": 0.010133239440619946,\n          \"Left\": 0.3754265606403351,\n          \"Top\": 0.8314455151557922\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37542659044265747,\n            \"Y\": 0.8314455151557922\n          },\n          {\n            \"X\": 0.4083250164985657,\n            \"Y\": 0.8314606547355652\n          },\n          {\n            \"X\": 0.40832510590553284,\n            \"Y\": 0.8415787816047668\n          },\n          {\n            \"X\": 0.3754265606403351,\n            \"Y\": 0.8415637016296387\n          }\n        ]\n      },\n      \"Id\": \"9e518b3c-e856-4d4d-9c8b-5cffe0ab42a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8636474609375,\n      \"Text\": \"90/100\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04790346696972847,\n          \"Height\": 0.01048013474792242,\n          \"Left\": 0.41457927227020264,\n          \"Top\": 0.8311628699302673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41457927227020264,\n            \"Y\": 0.8311628699302673\n          },\n          {\n            \"X\": 0.46248242259025574,\n            \"Y\": 0.8311848044395447\n          },\n          {\n            \"X\": 0.4624827206134796,\n            \"Y\": 0.8416429758071899\n          },\n          {\n            \"X\": 0.4145793616771698,\n            \"Y\": 0.8416210412979126\n          }\n        ]\n      },\n      \"Id\": \"aecd0d14-7bc5-4e79-a6b2-c3daf5fb644c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93905639648438,\n      \"Text\": \"DOLLARS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06950504332780838,\n          \"Height\": 0.010265217162668705,\n          \"Left\": 0.4694177508354187,\n          \"Top\": 0.8312948942184448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4694177508354187,\n            \"Y\": 0.8312948942184448\n          },\n          {\n            \"X\": 0.5389221906661987,\n            \"Y\": 0.8313267827033997\n          },\n          {\n            \"X\": 0.5389227867126465,\n            \"Y\": 0.8415601253509521\n          },\n          {\n            \"X\": 0.46941810846328735,\n            \"Y\": 0.8415282964706421\n          }\n        ]\n      },\n      \"Id\": \"e27da746-3afe-4e94-b159-8ce40130b698\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8681640625,\n      \"Text\": \"$291.90\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.054515570402145386,\n          \"Height\": 0.011175752617418766,\n          \"Left\": 0.8945171236991882,\n          \"Top\": 0.8310860991477966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8945171236991882,\n            \"Y\": 0.8310860991477966\n          },\n          {\n            \"X\": 0.9490302205085754,\n            \"Y\": 0.8311111330986023\n          },\n          {\n            \"X\": 0.949032723903656,\n            \"Y\": 0.8422618508338928\n          },\n          {\n            \"X\": 0.8945193886756897,\n            \"Y\": 0.8422369360923767\n          }\n        ]\n      },\n      \"Id\": \"20eaf3c5-8b02-40aa-9362-a835a93de775\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91527557373047,\n      \"Text\": \"SAMPLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06087924912571907,\n          \"Height\": 0.010260836221277714,\n          \"Left\": 0.18704988062381744,\n          \"Top\": 0.8727636933326721\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1870506852865219,\n            \"Y\": 0.8727636933326721\n          },\n          {\n            \"X\": 0.2479291409254074,\n            \"Y\": 0.8727913498878479\n          },\n          {\n            \"X\": 0.24792857468128204,\n            \"Y\": 0.8830245137214661\n          },\n          {\n            \"X\": 0.18704988062381744,\n            \"Y\": 0.8829969167709351\n          }\n        ]\n      },\n      \"Id\": \"32c086c6-2187-4c2a-b529-fca369b35ef8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68993377685547,\n      \"Text\": \"NON-NEGOTIABLE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1339421421289444,\n          \"Height\": 0.010696114972233772,\n          \"Left\": 0.18531093001365662,\n          \"Top\": 0.8848074674606323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18531177937984467,\n            \"Y\": 0.8848074674606323\n          },\n          {\n            \"X\": 0.3192530870437622,\n            \"Y\": 0.8848682045936584\n          },\n          {\n            \"X\": 0.31925278902053833,\n            \"Y\": 0.895503580570221\n          },\n          {\n            \"X\": 0.18531093001365662,\n            \"Y\": 0.8954430222511292\n          }\n        ]\n      },\n      \"Id\": \"2365e22f-a60b-4a2a-ae72-015f043e4c8f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85540771484375,\n      \"Text\": \"BANK\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029565729200839996,\n          \"Height\": 0.00727262394502759,\n          \"Left\": 0.052389614284038544,\n          \"Top\": 0.8988009691238403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05239057168364525,\n            \"Y\": 0.8988009691238403\n          },\n          {\n            \"X\": 0.08195534348487854,\n            \"Y\": 0.8988143801689148\n          },\n          {\n            \"X\": 0.0819544717669487,\n            \"Y\": 0.9060736298561096\n          },\n          {\n            \"X\": 0.052389614284038544,\n            \"Y\": 0.9060602784156799\n          }\n        ]\n      },\n      \"Id\": \"f5a482f5-65aa-47ef-aca2-1e8a742c9938\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85475158691406,\n      \"Text\": \"NAME\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028877640143036842,\n          \"Height\": 0.006518868263810873,\n          \"Left\": 0.083968885242939,\n          \"Top\": 0.8989003896713257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08396966010332108,\n            \"Y\": 0.8989003896713257\n          },\n          {\n            \"X\": 0.11284652352333069,\n            \"Y\": 0.8989134430885315\n          },\n          {\n            \"X\": 0.11284582316875458,\n            \"Y\": 0.9054192900657654\n          },\n          {\n            \"X\": 0.083968885242939,\n            \"Y\": 0.9054062366485596\n          }\n        ]\n      },\n      \"Id\": \"7310c6c2-a207-4857-a352-75c444e182c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90333557128906,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03615986928343773,\n          \"Height\": 0.010232134722173214,\n          \"Left\": 0.18641574680805206,\n          \"Top\": 0.8981636166572571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18641655147075653,\n            \"Y\": 0.8981636166572571\n          },\n          {\n            \"X\": 0.2225756049156189,\n            \"Y\": 0.8981800079345703\n          },\n          {\n            \"X\": 0.22257494926452637,\n            \"Y\": 0.9083957672119141\n          },\n          {\n            \"X\": 0.18641574680805206,\n            \"Y\": 0.9083794951438904\n          }\n        ]\n      },\n      \"Id\": \"d8a4887c-aa18-49cf-8b0d-ba859f8fdd23\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9173355102539,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03659425303339958,\n          \"Height\": 0.010188784450292587,\n          \"Left\": 0.225104421377182,\n          \"Top\": 0.8980332016944885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22510506212711334,\n            \"Y\": 0.8980332016944885\n          },\n          {\n            \"X\": 0.2616986632347107,\n            \"Y\": 0.8980497717857361\n          },\n          {\n            \"X\": 0.2616981863975525,\n            \"Y\": 0.9082220196723938\n          },\n          {\n            \"X\": 0.225104421377182,\n            \"Y\": 0.908205509185791\n          }\n        ]\n      },\n      \"Id\": \"c0f984ca-5c1f-498c-8ca8-bdd82bcc4aa6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90247344970703,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03632781282067299,\n          \"Height\": 0.010527177713811398,\n          \"Left\": 0.2640995681285858,\n          \"Top\": 0.8980610966682434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2641001045703888,\n            \"Y\": 0.8980610966682434\n          },\n          {\n            \"X\": 0.3004274070262909,\n            \"Y\": 0.8980774879455566\n          },\n          {\n            \"X\": 0.30042704939842224,\n            \"Y\": 0.9085882306098938\n          },\n          {\n            \"X\": 0.2640995681285858,\n            \"Y\": 0.9085718989372253\n          }\n        ]\n      },\n      \"Id\": \"98bb8f54-71a1-4ec6-95a8-caae3a17dc8c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.93590545654297,\n      \"Text\": \"AUTHORIZED\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0620577409863472,\n          \"Height\": 0.00737388152629137,\n          \"Left\": 0.5392360091209412,\n          \"Top\": 0.9010159969329834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5392360091209412,\n            \"Y\": 0.9010159969329834\n          },\n          {\n            \"X\": 0.6012930870056152,\n            \"Y\": 0.9010440707206726\n          },\n          {\n            \"X\": 0.6012937426567078,\n            \"Y\": 0.9083898663520813\n          },\n          {\n            \"X\": 0.5392364263534546,\n            \"Y\": 0.9083619117736816\n          }\n        ]\n      },\n      \"Id\": \"e3a15024-dee3-44f0-b16e-ef92757f2144\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.12090301513672,\n      \"Text\": \"Authorized\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1761792004108429,\n          \"Height\": 0.05295070633292198,\n          \"Left\": 0.5416198968887329,\n          \"Top\": 0.8642136454582214\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5416198968887329,\n            \"Y\": 0.8642136454582214\n          },\n          {\n            \"X\": 0.7177922129631042,\n            \"Y\": 0.8642938733100891\n          },\n          {\n            \"X\": 0.7177991271018982,\n            \"Y\": 0.9171643853187561\n          },\n          {\n            \"X\": 0.5416231155395508,\n            \"Y\": 0.9170850515365601\n          }\n        ]\n      },\n      \"Id\": \"23f0b526-35db-4213-b3c8-baf2294621a0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.05839538574219,\n      \"Text\": \"SIGNATURE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05717724934220314,\n          \"Height\": 0.00832012202590704,\n          \"Left\": 0.6047877669334412,\n          \"Top\": 0.9011437892913818\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6047877669334412,\n            \"Y\": 0.9011437892913818\n          },\n          {\n            \"X\": 0.6619641184806824,\n            \"Y\": 0.9011696577072144\n          },\n          {\n            \"X\": 0.661965012550354,\n            \"Y\": 0.9094639420509338\n          },\n          {\n            \"X\": 0.6047884821891785,\n            \"Y\": 0.9094381332397461\n          }\n        ]\n      },\n      \"Id\": \"53e1e7a0-a350-44f9-816d-5e5a0bcf3924\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.89030456542969,\n      \"Text\": \"Signature\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16762907803058624,\n          \"Height\": 0.057955704629421234,\n          \"Left\": 0.7198303937911987,\n          \"Top\": 0.8623265624046326\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7198303937911987,\n            \"Y\": 0.8623265624046326\n          },\n          {\n            \"X\": 0.8874480128288269,\n            \"Y\": 0.8624029159545898\n          },\n          {\n            \"X\": 0.8874594569206238,\n            \"Y\": 0.9202823042869568\n          },\n          {\n            \"X\": 0.7198379635810852,\n            \"Y\": 0.9202068448066711\n          }\n        ]\n      },\n      \"Id\": \"fe746647-5c97-4cb6-8054-c24cf0489e00\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90996551513672,\n      \"Text\": \"STREET\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03626565635204315,\n          \"Height\": 0.007271513808518648,\n          \"Left\": 0.05239022895693779,\n          \"Top\": 0.9065126776695251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052391182631254196,\n            \"Y\": 0.9065126776695251\n          },\n          {\n            \"X\": 0.08865588158369064,\n            \"Y\": 0.9065290689468384\n          },\n          {\n            \"X\": 0.0886550322175026,\n            \"Y\": 0.9137842059135437\n          },\n          {\n            \"X\": 0.05239022895693779,\n            \"Y\": 0.9137678742408752\n          }\n        ]\n      },\n      \"Id\": \"bde8c3d3-fea4-4f0c-824e-157f1d4fbdeb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74178314208984,\n      \"Text\": \"ADDRESS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04796506091952324,\n          \"Height\": 0.006638592574745417,\n          \"Left\": 0.09352417290210724,\n          \"Top\": 0.9065254926681519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09352494031190872,\n            \"Y\": 0.9065254926681519\n          },\n          {\n            \"X\": 0.14148923754692078,\n            \"Y\": 0.9065471291542053\n          },\n          {\n            \"X\": 0.14148859679698944,\n            \"Y\": 0.9131640791893005\n          },\n          {\n            \"X\": 0.09352417290210724,\n            \"Y\": 0.9131425023078918\n          }\n        ]\n      },\n      \"Id\": \"0673ad56-2855-4be5-bd3b-a8a3d06697f6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81913757324219,\n      \"Text\": \"CITY\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02231975831091404,\n          \"Height\": 0.006916387472301722,\n          \"Left\": 0.052526868879795074,\n          \"Top\": 0.9146180748939514\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0525277778506279,\n            \"Y\": 0.9146180748939514\n          },\n          {\n            \"X\": 0.07484662532806396,\n            \"Y\": 0.9146281480789185\n          },\n          {\n            \"X\": 0.07484578341245651,\n            \"Y\": 0.9215344786643982\n          },\n          {\n            \"X\": 0.052526868879795074,\n            \"Y\": 0.9215244054794312\n          }\n        ]\n      },\n      \"Id\": \"b4612075-7899-4744-9166-07151c6900bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94165802001953,\n      \"Text\": \"STATE\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030795404687523842,\n          \"Height\": 0.006630615331232548,\n          \"Left\": 0.07955888658761978,\n          \"Top\": 0.9145399928092957\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07955969125032425,\n            \"Y\": 0.9145399928092957\n          },\n          {\n            \"X\": 0.11035429686307907,\n            \"Y\": 0.9145538210868835\n          },\n          {\n            \"X\": 0.11035357415676117,\n            \"Y\": 0.9211705923080444\n          },\n          {\n            \"X\": 0.07955888658761978,\n            \"Y\": 0.9211567044258118\n          }\n        ]\n      },\n      \"Id\": \"53756fc6-fbbf-498d-bb9e-fb37011d4de3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67118835449219,\n      \"Text\": \"ZIP\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01545895729213953,\n          \"Height\": 0.007231137249618769,\n          \"Left\": 0.1149582713842392,\n          \"Top\": 0.9143996238708496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11495904624462128,\n            \"Y\": 0.9143996238708496\n          },\n          {\n            \"X\": 0.13041722774505615,\n            \"Y\": 0.9144065976142883\n          },\n          {\n            \"X\": 0.13041649758815765,\n            \"Y\": 0.9216307401657104\n          },\n          {\n            \"X\": 0.1149582713842392,\n            \"Y\": 0.9216238260269165\n          }\n        ]\n      },\n      \"Id\": \"98f1d9a8-197f-43f1-8b3a-7462f0dc0801\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3439712524414,\n      \"Text\": \"VOID\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02533930353820324,\n          \"Height\": 0.006987281143665314,\n          \"Left\": 0.5372782349586487,\n          \"Top\": 0.9109068512916565\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5372782349586487,\n            \"Y\": 0.9109068512916565\n          },\n          {\n            \"X\": 0.5626170635223389,\n            \"Y\": 0.9109182953834534\n          },\n          {\n            \"X\": 0.5626175403594971,\n            \"Y\": 0.9178941249847412\n          },\n          {\n            \"X\": 0.5372786521911621,\n            \"Y\": 0.9178827404975891\n          }\n        ]\n      },\n      \"Id\": \"04bbe3a9-4622-462b-8d9c-f8d8c36ea946\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88875579833984,\n      \"Text\": \"AFTER\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03255317732691765,\n          \"Height\": 0.0071054319851100445,\n          \"Left\": 0.5661666989326477,\n          \"Top\": 0.9110194444656372\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5661666989326477,\n            \"Y\": 0.9110194444656372\n          },\n          {\n            \"X\": 0.5987192988395691,\n            \"Y\": 0.911034107208252\n          },\n          {\n            \"X\": 0.5987198948860168,\n            \"Y\": 0.9181248545646667\n          },\n          {\n            \"X\": 0.5661672353744507,\n            \"Y\": 0.918110191822052\n          }\n        ]\n      },\n      \"Id\": \"168bbf08-a0d4-4fbb-a03e-dc821e834b18\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 54.29126739501953,\n      \"Text\": \"90\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012345596216619015,\n          \"Height\": 0.006658708211034536,\n          \"Left\": 0.6015636920928955,\n          \"Top\": 0.9113535284996033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6015636920928955,\n            \"Y\": 0.9113535284996033\n          },\n          {\n            \"X\": 0.6139087080955505,\n            \"Y\": 0.9113590717315674\n          },\n          {\n            \"X\": 0.6139093041419983,\n            \"Y\": 0.9180122017860413\n          },\n          {\n            \"X\": 0.6015642881393433,\n            \"Y\": 0.9180066585540771\n          }\n        ]\n      },\n      \"Id\": \"07054808-960a-4af8-9cec-3d348e4ec5eb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52745056152344,\n      \"Text\": \"DAYS\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02634461782872677,\n          \"Height\": 0.006803481839597225,\n          \"Left\": 0.6164661645889282,\n          \"Top\": 0.9110757112503052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6164661645889282,\n            \"Y\": 0.9110757112503052\n          },\n          {\n            \"X\": 0.6428101062774658,\n            \"Y\": 0.9110875725746155\n          },\n          {\n            \"X\": 0.6428108215332031,\n            \"Y\": 0.9178791642189026\n          },\n          {\n            \"X\": 0.6164668202400208,\n            \"Y\": 0.9178673028945923\n          }\n        ]\n      },\n      \"Id\": \"53c903f8-6adf-4163-9fb3-ad3f35d2c038\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 43.8668327331543,\n      \"Text\": \"001379⑈\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10830622911453247,\n          \"Height\": 0.012486505322158337,\n          \"Left\": 0.23862920701503754,\n          \"Top\": 0.9572156667709351\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23862993717193604,\n            \"Y\": 0.9572156667709351\n          },\n          {\n            \"X\": 0.3469354510307312,\n            \"Y\": 0.9572640061378479\n          },\n          {\n            \"X\": 0.3469352424144745,\n            \"Y\": 0.9697021842002869\n          },\n          {\n            \"X\": 0.23862920701503754,\n            \"Y\": 0.9696540236473083\n          }\n        ]\n      },\n      \"Id\": \"0d18d0e1-1774-431a-9ece-472229d9cc95\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.42019653320312,\n      \"Text\": \"⑆122000496⑆4040110157⑈\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.32243287563323975,\n          \"Height\": 0.013246973045170307,\n          \"Left\": 0.362867534160614,\n          \"Top\": 0.9569685459136963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36286765336990356,\n            \"Y\": 0.9569685459136963\n          },\n          {\n            \"X\": 0.6852988600730896,\n            \"Y\": 0.9571124315261841\n          },\n          {\n            \"X\": 0.6853004097938538,\n            \"Y\": 0.9702155590057373\n          },\n          {\n            \"X\": 0.362867534160614,\n            \"Y\": 0.9700720906257629\n          }\n        ]\n      },\n      \"Id\": \"155e08aa-5591-4414-a65c-c4c29973d71c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 12.64504623413086,\n      \"Text\": \"THEORIGINALDOCUMENTHASAREFLECTIVEWATERMARKONTHEBAOK.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4536792039871216,\n          \"Height\": 0.009257529862225056,\n          \"Left\": 0.04399150609970093,\n          \"Top\": 0.9754505157470703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04399272799491882,\n            \"Y\": 0.9754505157470703\n          },\n          {\n            \"X\": 0.49767032265663147,\n            \"Y\": 0.9756521582603455\n          },\n          {\n            \"X\": 0.4976707100868225,\n            \"Y\": 0.9847080707550049\n          },\n          {\n            \"X\": 0.04399150609970093,\n            \"Y\": 0.9845068454742432\n          }\n        ]\n      },\n      \"Id\": \"e58309f8-44ad-4320-b546-b59be8c464b6\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 75.25981903076172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.29058021306991577,\n          \"Height\": 0.024514339864253998,\n          \"Left\": 0.16266170144081116,\n          \"Top\": 0.0335911400616169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16266384720802307,\n            \"Y\": 0.0335911400616169\n          },\n          {\n            \"X\": 0.4532412886619568,\n            \"Y\": 0.0337473563849926\n          },\n          {\n            \"X\": 0.45324191451072693,\n            \"Y\": 0.058105479925870895\n          },\n          {\n            \"X\": 0.16266170144081116,\n            \"Y\": 0.05794995650649071\n          }\n        ]\n      },\n      \"Id\": \"c7802519-0b28-4865-a0cb-1c2c8b946d3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bac7275d-1327-4791-80e8-fefaacea8df5\",\n            \"9629fae8-963f-48db-a034-e9bf98d68fee\",\n            \"6a70e751-1783-4417-8d93-b4e72068d5d9\",\n            \"513a5334-ee72-404f-b41c-b91dd773cb32\",\n            \"ca274fd0-7b29-4bb5-926f-5407dae59d2a\",\n            \"e9191fab-f616-4e65-97c0-7747f120783a\",\n            \"b833e246-72f4-45d3-bf4e-7a9c8c65f1ae\",\n            \"9d90dc9f-7d54-4ef5-8ad2-8d5eabc25278\",\n            \"5d6585ea-1a1d-4233-b711-eac9b67ff3d9\",\n            \"081493e5-e298-49e9-afb3-3577ee12b777\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.33275604248047,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038769129663705826,\n          \"Height\": 0.011597754433751106,\n          \"Left\": 0.1626628339290619,\n          \"Top\": 0.0335911400616169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16266384720802307,\n            \"Y\": 0.0335911400616169\n          },\n          {\n            \"X\": 0.20143195986747742,\n            \"Y\": 0.033611979335546494\n          },\n          {\n            \"X\": 0.20143111050128937,\n            \"Y\": 0.045188892632722855\n          },\n          {\n            \"X\": 0.1626628339290619,\n            \"Y\": 0.04516809433698654\n          }\n        ]\n      },\n      \"Id\": \"bac7275d-1327-4791-80e8-fefaacea8df5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e610c723-d01a-4f46-949e-f6772326aa4e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.49236297607422,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05816075578331947,\n          \"Height\": 0.011608113534748554,\n          \"Left\": 0.20143111050128937,\n          \"Top\": 0.033611979335546494\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20143195986747742,\n            \"Y\": 0.033611979335546494\n          },\n          {\n            \"X\": 0.25959187746047974,\n            \"Y\": 0.03364324942231178\n          },\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          },\n          {\n            \"X\": 0.20143111050128937,\n            \"Y\": 0.045188892632722855\n          }\n        ]\n      },\n      \"Id\": \"9629fae8-963f-48db-a034-e9bf98d68fee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a3a39dd8-58c2-43c2-a98a-85719deb725f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.6332015991211,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05248577892780304,\n          \"Height\": 0.011605002917349339,\n          \"Left\": 0.259591281414032,\n          \"Top\": 0.03364324942231178\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25959187746047974,\n            \"Y\": 0.03364324942231178\n          },\n          {\n            \"X\": 0.3120770752429962,\n            \"Y\": 0.03367146477103233\n          },\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          },\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          }\n        ]\n      },\n      \"Id\": \"6a70e751-1783-4417-8d93-b4e72068d5d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"70ccd6a2-1fc1-48ba-99b4-a695f72f783f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 54.79265594482422,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05106649547815323,\n          \"Height\": 0.011604181490838528,\n          \"Left\": 0.31207671761512756,\n          \"Top\": 0.03367146477103233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3120770752429962,\n            \"Y\": 0.03367146477103233\n          },\n          {\n            \"X\": 0.3631432354450226,\n            \"Y\": 0.033698920160532\n          },\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          },\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          }\n        ]\n      },\n      \"Id\": \"513a5334-ee72-404f-b41c-b91dd773cb32\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4482b5ff-b1ff-47b9-bd0b-f77ea9e55d0e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 46.5023193359375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09009846299886703,\n          \"Height\": 0.011625062674283981,\n          \"Left\": 0.36314311623573303,\n          \"Top\": 0.033698920160532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3631432354450226,\n            \"Y\": 0.033698920160532\n          },\n          {\n            \"X\": 0.4532412886619568,\n            \"Y\": 0.0337473563849926\n          },\n          {\n            \"X\": 0.45324158668518066,\n            \"Y\": 0.04532398283481598\n          },\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          }\n        ]\n      },\n      \"Id\": \"ca274fd0-7b29-4bb5-926f-5407dae59d2a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32e4486d-0af1-4ce7-aa6b-2fd9ef9ac7ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.49461364746094,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03876941278576851,\n          \"Height\": 0.012802612036466599,\n          \"Left\": 0.16266170144081116,\n          \"Top\": 0.04516809433698654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1626628339290619,\n            \"Y\": 0.04516809433698654\n          },\n          {\n            \"X\": 0.20143111050128937,\n            \"Y\": 0.045188892632722855\n          },\n          {\n            \"X\": 0.20143018662929535,\n            \"Y\": 0.05797070637345314\n          },\n          {\n            \"X\": 0.16266170144081116,\n            \"Y\": 0.05794995650649071\n          }\n        ]\n      },\n      \"Id\": \"e9191fab-f616-4e65-97c0-7747f120783a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b7c419c-6e6a-4479-9bd4-1c688d16d476\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.6585693359375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05816110968589783,\n          \"Height\": 0.012812942266464233,\n          \"Left\": 0.20143018662929535,\n          \"Top\": 0.045188892632722855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20143111050128937,\n            \"Y\": 0.045188892632722855\n          },\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          },\n          {\n            \"X\": 0.25959065556526184,\n            \"Y\": 0.05800183489918709\n          },\n          {\n            \"X\": 0.20143018662929535,\n            \"Y\": 0.05797070637345314\n          }\n        ]\n      },\n      \"Id\": \"b833e246-72f4-45d3-bf4e-7a9c8c65f1ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f0753f25-b08f-4755-88b5-0f74c3f1632b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.79566192626953,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052486076951026917,\n          \"Height\": 0.012809831649065018,\n          \"Left\": 0.25959065556526184,\n          \"Top\": 0.04522009566426277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.259591281414032,\n            \"Y\": 0.04522009566426277\n          },\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          },\n          {\n            \"X\": 0.3120763599872589,\n            \"Y\": 0.05802992731332779\n          },\n          {\n            \"X\": 0.25959065556526184,\n            \"Y\": 0.05800183489918709\n          }\n        ]\n      },\n      \"Id\": \"9d90dc9f-7d54-4ef5-8ad2-8d5eabc25278\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"03fda3cd-379d-41fd-8f72-f7676ab64355\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 54.90306091308594,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05106676369905472,\n          \"Height\": 0.012809005565941334,\n          \"Left\": 0.3120763599872589,\n          \"Top\": 0.04524825140833855\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31207671761512756,\n            \"Y\": 0.04524825140833855\n          },\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          },\n          {\n            \"X\": 0.3631429970264435,\n            \"Y\": 0.058057256042957306\n          },\n          {\n            \"X\": 0.3120763599872589,\n            \"Y\": 0.05802992731332779\n          }\n        ]\n      },\n      \"Id\": \"5d6585ea-1a1d-4233-b711-eac9b67ff3d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89d513bf-9810-45f6-8810-a59e05210d11\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 46.59601593017578,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09009891748428345,\n          \"Height\": 0.012829831801354885,\n          \"Left\": 0.3631429970264435,\n          \"Top\": 0.045275647193193436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36314311623573303,\n            \"Y\": 0.045275647193193436\n          },\n          {\n            \"X\": 0.45324158668518066,\n            \"Y\": 0.04532398283481598\n          },\n          {\n            \"X\": 0.45324191451072693,\n            \"Y\": 0.058105479925870895\n          },\n          {\n            \"X\": 0.3631429970264435,\n            \"Y\": 0.058057256042957306\n          }\n        ]\n      },\n      \"Id\": \"081493e5-e298-49e9-afb3-3577ee12b777\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b740d708-0c5e-4a39-af77-cd76662513c3\",\n            \"96b07267-dfce-482a-813d-5a9a1af47b68\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 81.39466857910156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.24011299014091492,\n          \"Height\": 0.029724538326263428,\n          \"Left\": 0.5775256752967834,\n          \"Top\": 0.07056083530187607\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5775256752967834,\n            \"Y\": 0.07056083530187607\n          },\n          {\n            \"X\": 0.8176336288452148,\n            \"Y\": 0.07068904489278793\n          },\n          {\n            \"X\": 0.8176386952400208,\n            \"Y\": 0.1002853736281395\n          },\n          {\n            \"X\": 0.5775278806686401,\n            \"Y\": 0.10015786439180374\n          }\n        ]\n      },\n      \"Id\": \"7c57894f-77e0-4089-a9f3-a700785a3e11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5eae0a19-452c-4e99-bc85-f3d6b31c1d88\",\n            \"1295f22b-61fa-4c48-a0bf-ff5342bc8940\",\n            \"39e9a561-fd96-492d-929b-5a62a0906fa2\",\n            \"1f91ec0a-ccdb-438f-ad60-89e5e26981f0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.10505676269531,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1317254900932312,\n          \"Height\": 0.014352019876241684,\n          \"Left\": 0.5775256752967834,\n          \"Top\": 0.07056083530187607\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5775256752967834,\n            \"Y\": 0.07056083530187607\n          },\n          {\n            \"X\": 0.7092493772506714,\n            \"Y\": 0.07063117623329163\n          },\n          {\n            \"X\": 0.7092511653900146,\n            \"Y\": 0.08491285145282745\n          },\n          {\n            \"X\": 0.5775267481803894,\n            \"Y\": 0.08484270423650742\n          }\n        ]\n      },\n      \"Id\": \"5eae0a19-452c-4e99-bc85-f3d6b31c1d88\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7cc14f2f-4771-4dbd-b814-9b39a2f421ac\",\n            \"b0f28755-3f57-4346-ac3b-39fdd681e9df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 92.50774383544922,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10838671773672104,\n          \"Height\": 0.014339404180645943,\n          \"Left\": 0.7092493772506714,\n          \"Top\": 0.07063117623329163\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7092493772506714,\n            \"Y\": 0.07063117623329163\n          },\n          {\n            \"X\": 0.8176336288452148,\n            \"Y\": 0.07068904489278793\n          },\n          {\n            \"X\": 0.8176360726356506,\n            \"Y\": 0.08497057855129242\n          },\n          {\n            \"X\": 0.7092511653900146,\n            \"Y\": 0.08491285145282745\n          }\n        ]\n      },\n      \"Id\": \"1295f22b-61fa-4c48-a0bf-ff5342bc8940\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"31ef405e-dd9a-4539-921c-3ae6c4732a9f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.85918426513672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13172635436058044,\n          \"Height\": 0.015385112725198269,\n          \"Left\": 0.5775267481803894,\n          \"Top\": 0.08484270423650742\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5775267481803894,\n            \"Y\": 0.08484270423650742\n          },\n          {\n            \"X\": 0.7092511653900146,\n            \"Y\": 0.08491285145282745\n          },\n          {\n            \"X\": 0.7092531323432922,\n            \"Y\": 0.10022781789302826\n          },\n          {\n            \"X\": 0.5775278806686401,\n            \"Y\": 0.10015786439180374\n          }\n        ]\n      },\n      \"Id\": \"39e9a561-fd96-492d-929b-5a62a0906fa2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f764d32-b7f3-4e26-a752-e6a094610b34\",\n            \"2b088102-6131-4637-8aa2-ef349268b49f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.2433090209961,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10838750749826431,\n          \"Height\": 0.015372518450021744,\n          \"Left\": 0.7092511653900146,\n          \"Top\": 0.08491285145282745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7092511653900146,\n            \"Y\": 0.08491285145282745\n          },\n          {\n            \"X\": 0.8176360726356506,\n            \"Y\": 0.08497057855129242\n          },\n          {\n            \"X\": 0.8176386952400208,\n            \"Y\": 0.1002853736281395\n          },\n          {\n            \"X\": 0.7092531323432922,\n            \"Y\": 0.10022781789302826\n          }\n        ]\n      },\n      \"Id\": \"1f91ec0a-ccdb-438f-ad60-89e5e26981f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b7b80fcc-3ee0-40fd-89dc-ecc8186ca4b9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 83.67568969726562,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1927413046360016,\n          \"Height\": 0.032465022057294846,\n          \"Left\": 0.1821197271347046,\n          \"Top\": 0.1780700832605362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1821223348379135,\n            \"Y\": 0.1780700832605362\n          },\n          {\n            \"X\": 0.3748610317707062,\n            \"Y\": 0.17817094922065735\n          },\n          {\n            \"X\": 0.37486088275909424,\n            \"Y\": 0.21053510904312134\n          },\n          {\n            \"X\": 0.1821197271347046,\n            \"Y\": 0.21043485403060913\n          }\n        ]\n      },\n      \"Id\": \"cda827a7-44b2-41ec-b4db-694805d9995b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b8d54801-1ed1-4a48-948d-beb78ec69eb0\",\n            \"2cfedac7-9217-4ce3-a203-942a5a80f8ab\",\n            \"29e80408-6e7b-4386-a502-c75115b16279\",\n            \"d77e2f1f-8544-4276-b744-a09d9dc2ab93\",\n            \"924984a0-79de-4a5f-ac4f-dd9894bcc8fc\",\n            \"ebb9aa4e-e7e8-43d9-93f8-3c90b34710bc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 62.50974655151367,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05476539954543114,\n          \"Height\": 0.010710162110626698,\n          \"Left\": 0.18212147057056427,\n          \"Top\": 0.1780700832605362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1821223348379135,\n            \"Y\": 0.1780700832605362\n          },\n          {\n            \"X\": 0.2368868738412857,\n            \"Y\": 0.17809873819351196\n          },\n          {\n            \"X\": 0.23688624799251556,\n            \"Y\": 0.18878024816513062\n          },\n          {\n            \"X\": 0.18212147057056427,\n            \"Y\": 0.18875163793563843\n          }\n        ]\n      },\n      \"Id\": \"b8d54801-1ed1-4a48-948d-beb78ec69eb0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"481e1e26-4d60-4253-acd0-52da717c6469\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 63.176536560058594,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1379747837781906,\n          \"Height\": 0.010753561742603779,\n          \"Left\": 0.23688624799251556,\n          \"Top\": 0.17809873819351196\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2368868738412857,\n            \"Y\": 0.17809873819351196\n          },\n          {\n            \"X\": 0.3748610317707062,\n            \"Y\": 0.17817094922065735\n          },\n          {\n            \"X\": 0.3748609721660614,\n            \"Y\": 0.18885231018066406\n          },\n          {\n            \"X\": 0.23688624799251556,\n            \"Y\": 0.18878024816513062\n          }\n        ]\n      },\n      \"Id\": \"2cfedac7-9217-4ce3-a203-942a5a80f8ab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"24ee258d-683a-4f93-b9d6-268696cffcbb\",\n            \"ef4671ba-d5c0-48e9-87df-7b813f143de9\",\n            \"57dd1e69-dae5-4e40-97c6-f1b1ad848080\",\n            \"21617a59-8c15-45b0-8b4f-754a0222702c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.04177856445312,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05476565286517143,\n          \"Height\": 0.010988987982273102,\n          \"Left\": 0.18212059140205383,\n          \"Top\": 0.18875163793563843\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18212147057056427,\n            \"Y\": 0.18875163793563843\n          },\n          {\n            \"X\": 0.23688624799251556,\n            \"Y\": 0.18878024816513062\n          },\n          {\n            \"X\": 0.23688559234142303,\n            \"Y\": 0.19974063336849213\n          },\n          {\n            \"X\": 0.18212059140205383,\n            \"Y\": 0.1997120976448059\n          }\n        ]\n      },\n      \"Id\": \"29e80408-6e7b-4386-a502-c75115b16279\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c8ec732-e095-4ad5-81b1-d77537efb993\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.9382553100586,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13797537982463837,\n          \"Height\": 0.01103229634463787,\n          \"Left\": 0.23688559234142303,\n          \"Top\": 0.18878024816513062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23688624799251556,\n            \"Y\": 0.18878024816513062\n          },\n          {\n            \"X\": 0.3748609721660614,\n            \"Y\": 0.18885231018066406\n          },\n          {\n            \"X\": 0.374860942363739,\n            \"Y\": 0.19981254637241364\n          },\n          {\n            \"X\": 0.23688559234142303,\n            \"Y\": 0.19974063336849213\n          }\n        ]\n      },\n      \"Id\": \"d77e2f1f-8544-4276-b744-a09d9dc2ab93\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68981ed5-1e11-4f96-8e2b-48c56322d15e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 83.95645904541016,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05476586893200874,\n          \"Height\": 0.010751252062618732,\n          \"Left\": 0.1821197271347046,\n          \"Top\": 0.1997120976448059\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18212059140205383,\n            \"Y\": 0.1997120976448059\n          },\n          {\n            \"X\": 0.23688559234142303,\n            \"Y\": 0.19974063336849213\n          },\n          {\n            \"X\": 0.2368849664926529,\n            \"Y\": 0.21046334505081177\n          },\n          {\n            \"X\": 0.1821197271347046,\n            \"Y\": 0.21043485403060913\n          }\n        ]\n      },\n      \"Id\": \"924984a0-79de-4a5f-ac4f-dd9894bcc8fc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d2a0d463-cecb-4a83-8bc6-9fd4f397c65b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.8520278930664,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13797596096992493,\n          \"Height\": 0.010794473811984062,\n          \"Left\": 0.2368849664926529,\n          \"Top\": 0.19974063336849213\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23688559234142303,\n            \"Y\": 0.19974063336849213\n          },\n          {\n            \"X\": 0.374860942363739,\n            \"Y\": 0.19981254637241364\n          },\n          {\n            \"X\": 0.37486088275909424,\n            \"Y\": 0.21053510904312134\n          },\n          {\n            \"X\": 0.2368849664926529,\n            \"Y\": 0.21046334505081177\n          }\n        ]\n      },\n      \"Id\": \"ebb9aa4e-e7e8-43d9-93f8-3c90b34710bc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aaf81227-5ca8-423a-9b45-4e2aa0459a59\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 99.44058990478516,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.494962602853775,\n          \"Height\": 0.09662789851427078,\n          \"Left\": 0.04577476158738136,\n          \"Top\": 0.2286093384027481\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04578770324587822,\n            \"Y\": 0.2286093384027481\n          },\n          {\n            \"X\": 0.5407315492630005,\n            \"Y\": 0.2288658618927002\n          },\n          {\n            \"X\": 0.5407373905181885,\n            \"Y\": 0.3252372443675995\n          },\n          {\n            \"X\": 0.04577476158738136,\n            \"Y\": 0.32498541474342346\n          }\n        ]\n      },\n      \"Id\": \"6f92c8af-d1d4-4c0b-b70c-4b8da6da7cad\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"38b6c7ab-004a-4bda-a650-155a5f0ea5b1\",\n            \"888e7fd6-dd2f-4bc4-9631-48eb9590b9c7\",\n            \"2822827b-8f50-4f10-a0e6-e4669b25c4c6\",\n            \"7b9e1ad5-75da-4ae0-9148-95bce940d32d\",\n            \"149efe72-28be-437e-a2ab-c7eac613386c\",\n            \"ca555b57-ac37-4adf-8c85-aafa7958641e\",\n            \"0b3b5aa8-4c32-44bc-bc31-6064027cadb7\",\n            \"72494ea2-85f8-4a6d-8d78-003f6c94d9b4\",\n            \"adfeb731-bd05-4237-a5b3-21c42598e4d6\",\n            \"bc734f12-5677-47f5-8938-21ccd11b9f85\",\n            \"562c2018-771e-433e-8346-ae357878379f\",\n            \"6d62887b-5f54-4320-aa26-108a52c26ee8\",\n            \"7f60c2be-f450-44f7-93ea-a98f1dae5e1e\",\n            \"cf7b390a-6751-4e1b-9b25-c81bbf15552a\",\n            \"b3a73fe4-9371-4c82-8d06-389012f76c85\",\n            \"55402959-dd0c-4a71-8cf1-855a48ca8772\",\n            \"eb1b3250-f5ae-49e8-9120-d19a43213aaa\",\n            \"8f345aeb-0110-470c-a87c-a3f3dc126006\",\n            \"4910fbf7-6b62-4476-b1f8-9ff9e5d38f65\",\n            \"d857c110-4aa4-4fd1-a155-b812f5f6539d\",\n            \"83df2bb9-e3a0-4568-ac38-31fe7e4b7a2c\",\n            \"e7945095-8b6c-4a85-ba69-5aadf5ab124a\",\n            \"5d9a9a94-dd80-46d7-b2af-3e5f7ca62200\",\n            \"9a4a33f0-f9e7-4c9e-af5a-ad2b82aab389\",\n            \"c8a849b2-0017-49bb-868e-074c31c97ecc\",\n            \"3e875b5a-bbe4-40d4-871b-ffa3a6612b76\",\n            \"147c7bd2-f3b8-4202-be8e-1c3326503a7d\",\n            \"8efed9c8-264f-42d2-b1e0-328fdea3c94f\",\n            \"12e3d230-d691-4740-985b-5ad63d458d31\",\n            \"37c73b57-a6ab-46d1-a181-ebebb3dd4469\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"515d39b2-e0a6-4bf5-a32e-867b3835dc8e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.2928695678711,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888651967048645,\n          \"Height\": 0.021502699702978134,\n          \"Left\": 0.04578482359647751,\n          \"Top\": 0.2286093384027481\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04578770324587822,\n            \"Y\": 0.2286093384027481\n          },\n          {\n            \"X\": 0.14467133581638336,\n            \"Y\": 0.22866058349609375\n          },\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          },\n          {\n            \"X\": 0.04578482359647751,\n            \"Y\": 0.2500609755516052\n          }\n        ]\n      },\n      \"Id\": \"38b6c7ab-004a-4bda-a650-155a5f0ea5b1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f28b4358-dfae-4e17-9076-887520726675\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.27661895751953,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08228409290313721,\n          \"Height\": 0.02149392105638981,\n          \"Left\": 0.1446692943572998,\n          \"Top\": 0.22866058349609375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14467133581638336,\n            \"Y\": 0.22866058349609375\n          },\n          {\n            \"X\": 0.226953387260437,\n            \"Y\": 0.22870323061943054\n          },\n          {\n            \"X\": 0.22695203125476837,\n            \"Y\": 0.2501544952392578\n          },\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          }\n        ]\n      },\n      \"Id\": \"888e7fd6-dd2f-4bc4-9631-48eb9590b9c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61141a1a-1f30-443d-b28a-8681c62ff192\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.04339599609375,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937516063451767,\n          \"Height\": 0.02149740606546402,\n          \"Left\": 0.22695203125476837,\n          \"Top\": 0.22870323061943054\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.226953387260437,\n            \"Y\": 0.22870323061943054\n          },\n          {\n            \"X\": 0.31632718443870544,\n            \"Y\": 0.22874955832958221\n          },\n          {\n            \"X\": 0.3163265883922577,\n            \"Y\": 0.25020062923431396\n          },\n          {\n            \"X\": 0.22695203125476837,\n            \"Y\": 0.2501544952392578\n          }\n        ]\n      },\n      \"Id\": \"2822827b-8f50-4f10-a0e6-e4669b25c4c6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0fd65814-d6a3-4169-993d-b40367918119\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.49403381347656,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12200082093477249,\n          \"Height\": 0.021514058113098145,\n          \"Left\": 0.3163265883922577,\n          \"Top\": 0.22874955832958221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31632718443870544,\n            \"Y\": 0.22874955832958221\n          },\n          {\n            \"X\": 0.43832698464393616,\n            \"Y\": 0.2288127839565277\n          },\n          {\n            \"X\": 0.438327431678772,\n            \"Y\": 0.25026360154151917\n          },\n          {\n            \"X\": 0.3163265883922577,\n            \"Y\": 0.25020062923431396\n          }\n        ]\n      },\n      \"Id\": \"7b9e1ad5-75da-4ae0-9148-95bce940d32d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"06e0e3ed-efe6-48f6-bbd1-43aafbed4cac\",\n            \"c69f6646-5db9-4568-863a-2f9656f69362\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.0569839477539,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.102405846118927,\n          \"Height\": 0.021503685042262077,\n          \"Left\": 0.43832698464393616,\n          \"Top\": 0.2288127839565277\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43832698464393616,\n            \"Y\": 0.2288127839565277\n          },\n          {\n            \"X\": 0.5407315492630005,\n            \"Y\": 0.2288658618927002\n          },\n          {\n            \"X\": 0.5407328605651855,\n            \"Y\": 0.25031647086143494\n          },\n          {\n            \"X\": 0.438327431678772,\n            \"Y\": 0.25026360154151917\n          }\n        ]\n      },\n      \"Id\": \"149efe72-28be-437e-a2ab-c7eac613386c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef8b9774-7b3e-456e-978b-acf7c56836d2\",\n            \"b1bf6bd9-f91c-49a5-a632-dc6c4ba16281\",\n            \"ecea9eb1-d04d-419e-8539-656650259181\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.5218276977539,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888653457164764,\n          \"Height\": 0.015396492555737495,\n          \"Left\": 0.04578276351094246,\n          \"Top\": 0.2500609755516052\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04578482359647751,\n            \"Y\": 0.2500609755516052\n          },\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          },\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          },\n          {\n            \"X\": 0.04578276351094246,\n            \"Y\": 0.2654065787792206\n          }\n        ]\n      },\n      \"Id\": \"ca555b57-ac37-4adf-8c85-aafa7958641e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93231b6d-c44f-4adc-a75f-471d509e8498\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.569580078125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08228420466184616,\n          \"Height\": 0.01538779865950346,\n          \"Left\": 0.1446678340435028,\n          \"Top\": 0.25011202692985535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446692943572998,\n            \"Y\": 0.25011202692985535\n          },\n          {\n            \"X\": 0.22695203125476837,\n            \"Y\": 0.2501544952392578\n          },\n          {\n            \"X\": 0.22695107758045197,\n            \"Y\": 0.2654998302459717\n          },\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          }\n        ]\n      },\n      \"Id\": \"0b3b5aa8-4c32-44bc-bc31-6064027cadb7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"013613c2-7cc8-4802-8002-7d9b02f8e4d9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.28028106689453,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937552571296692,\n          \"Height\": 0.01539132371544838,\n          \"Left\": 0.22695107758045197,\n          \"Top\": 0.2501544952392578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22695203125476837,\n            \"Y\": 0.2501544952392578\n          },\n          {\n            \"X\": 0.3163265883922577,\n            \"Y\": 0.25020062923431396\n          },\n          {\n            \"X\": 0.31632617115974426,\n            \"Y\": 0.2655458152294159\n          },\n          {\n            \"X\": 0.22695107758045197,\n            \"Y\": 0.2654998302459717\n          }\n        ]\n      },\n      \"Id\": \"72494ea2-85f8-4a6d-8d78-003f6c94d9b4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7a2ec5f6-e404-4375-8f72-9e594661f698\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.71661376953125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12200155854225159,\n          \"Height\": 0.015407980419695377,\n          \"Left\": 0.31632617115974426,\n          \"Top\": 0.25020062923431396\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3163265883922577,\n            \"Y\": 0.25020062923431396\n          },\n          {\n            \"X\": 0.438327431678772,\n            \"Y\": 0.25026360154151917\n          },\n          {\n            \"X\": 0.43832772970199585,\n            \"Y\": 0.26560860872268677\n          },\n          {\n            \"X\": 0.31632617115974426,\n            \"Y\": 0.2655458152294159\n          }\n        ]\n      },\n      \"Id\": \"adfeb731-bd05-4237-a5b3-21c42598e4d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ecf1f6a-9e32-4e55-8bde-a49ac447d943\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 83.32518005371094,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1024063378572464,\n          \"Height\": 0.015397709794342518,\n          \"Left\": 0.438327431678772,\n          \"Top\": 0.25026360154151917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.438327431678772,\n            \"Y\": 0.25026360154151917\n          },\n          {\n            \"X\": 0.5407328605651855,\n            \"Y\": 0.25031647086143494\n          },\n          {\n            \"X\": 0.5407337546348572,\n            \"Y\": 0.2656613290309906\n          },\n          {\n            \"X\": 0.43832772970199585,\n            \"Y\": 0.26560860872268677\n          }\n        ]\n      },\n      \"Id\": \"bc734f12-5677-47f5-8938-21ccd11b9f85\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ee4b7057-65b8-4423-8206-f65213d48339\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.17558288574219,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888698160648346,\n          \"Height\": 0.01430040504783392,\n          \"Left\": 0.04578084871172905,\n          \"Top\": 0.2654065787792206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04578276351094246,\n            \"Y\": 0.2654065787792206\n          },\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          },\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          },\n          {\n            \"X\": 0.04578084871172905,\n            \"Y\": 0.27965623140335083\n          }\n        ]\n      },\n      \"Id\": \"562c2018-771e-433e-8346-ae357878379f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8e70620b-b3e0-4d3e-a47e-721dd5b2317a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.18513488769531,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0822845995426178,\n          \"Height\": 0.014291745610535145,\n          \"Left\": 0.14466647803783417,\n          \"Top\": 0.26545748114585876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446678340435028,\n            \"Y\": 0.26545748114585876\n          },\n          {\n            \"X\": 0.22695107758045197,\n            \"Y\": 0.2654998302459717\n          },\n          {\n            \"X\": 0.22695018351078033,\n            \"Y\": 0.27974921464920044\n          },\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          }\n        ]\n      },\n      \"Id\": \"6d62887b-5f54-4320-aa26-108a52c26ee8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"910a0dc6-a9a5-4674-a277-48f0dec5acc7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.92931365966797,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937600255012512,\n          \"Height\": 0.01429526973515749,\n          \"Left\": 0.22695018351078033,\n          \"Top\": 0.2654998302459717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22695107758045197,\n            \"Y\": 0.2654998302459717\n          },\n          {\n            \"X\": 0.31632617115974426,\n            \"Y\": 0.2655458152294159\n          },\n          {\n            \"X\": 0.3163257837295532,\n            \"Y\": 0.2797951102256775\n          },\n          {\n            \"X\": 0.22695018351078033,\n            \"Y\": 0.27974921464920044\n          }\n        ]\n      },\n      \"Id\": \"7f60c2be-f450-44f7-93ea-a98f1dae5e1e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1004582d-03fc-442e-980a-632cc7426778\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.37417602539062,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1220022439956665,\n          \"Height\": 0.014311889186501503,\n          \"Left\": 0.3163257837295532,\n          \"Top\": 0.2655458152294159\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31632617115974426,\n            \"Y\": 0.2655458152294159\n          },\n          {\n            \"X\": 0.43832772970199585,\n            \"Y\": 0.26560860872268677\n          },\n          {\n            \"X\": 0.4383280277252197,\n            \"Y\": 0.27985772490501404\n          },\n          {\n            \"X\": 0.3163257837295532,\n            \"Y\": 0.2797951102256775\n          }\n        ]\n      },\n      \"Id\": \"cf7b390a-6751-4e1b-9b25-c81bbf15552a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"46599f68-23c3-4df6-909a-0e5f4c41ee07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.95552062988281,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10240688920021057,\n          \"Height\": 0.014301660470664501,\n          \"Left\": 0.43832772970199585,\n          \"Top\": 0.26560860872268677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43832772970199585,\n            \"Y\": 0.26560860872268677\n          },\n          {\n            \"X\": 0.5407337546348572,\n            \"Y\": 0.2656613290309906\n          },\n          {\n            \"X\": 0.5407346487045288,\n            \"Y\": 0.27991026639938354\n          },\n          {\n            \"X\": 0.4383280277252197,\n            \"Y\": 0.27985772490501404\n          }\n        ]\n      },\n      \"Id\": \"b3a73fe4-9371-4c82-8d06-389012f76c85\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9eafa986-33f4-43d1-9c9b-8beca147d189\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.82705688476562,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888768941164017,\n          \"Height\": 0.015396561473608017,\n          \"Left\": 0.045778788626194,\n          \"Top\": 0.27965623140335083\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04578084871172905,\n            \"Y\": 0.27965623140335083\n          },\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          },\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          },\n          {\n            \"X\": 0.045778788626194,\n            \"Y\": 0.29500219225883484\n          }\n        ]\n      },\n      \"Id\": \"55402959-dd0c-4a71-8cf1-855a48ca8772\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2afc07dc-29b3-45e7-bc76-efdc5c314ab1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.96014404296875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08228516578674316,\n          \"Height\": 0.015387916006147861,\n          \"Left\": 0.14466501772403717,\n          \"Top\": 0.2797069847583771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466647803783417,\n            \"Y\": 0.2797069847583771\n          },\n          {\n            \"X\": 0.22695018351078033,\n            \"Y\": 0.27974921464920044\n          },\n          {\n            \"X\": 0.22694921493530273,\n            \"Y\": 0.29509490728378296\n          },\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          }\n        ]\n      },\n      \"Id\": \"eb1b3250-f5ae-49e8-9120-d19a43213aaa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6a6a9e18-29bd-44a3-9a2a-f619c89e1792\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.5960693359375,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937656879425049,\n          \"Height\": 0.01539142057299614,\n          \"Left\": 0.22694921493530273,\n          \"Top\": 0.27974921464920044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22695018351078033,\n            \"Y\": 0.27974921464920044\n          },\n          {\n            \"X\": 0.3163257837295532,\n            \"Y\": 0.2797951102256775\n          },\n          {\n            \"X\": 0.3163253664970398,\n            \"Y\": 0.29514065384864807\n          },\n          {\n            \"X\": 0.22694921493530273,\n            \"Y\": 0.29509490728378296\n          }\n        ]\n      },\n      \"Id\": \"8f345aeb-0110-470c-a87c-a3f3dc126006\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c927005-1f6e-4e71-8af9-7e7bc0fc2d73\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.01332092285156,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1220029816031456,\n          \"Height\": 0.015407981351017952,\n          \"Left\": 0.3163253664970398,\n          \"Top\": 0.2797951102256775\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3163257837295532,\n            \"Y\": 0.2797951102256775\n          },\n          {\n            \"X\": 0.4383280277252197,\n            \"Y\": 0.27985772490501404\n          },\n          {\n            \"X\": 0.4383283257484436,\n            \"Y\": 0.2952030897140503\n          },\n          {\n            \"X\": 0.3163253664970398,\n            \"Y\": 0.29514065384864807\n          }\n        ]\n      },\n      \"Id\": \"4910fbf7-6b62-4476-b1f8-9ff9e5d38f65\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e93d0c0-eb9a-4471-b646-377c331b6825\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.6827163696289,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1024075374007225,\n          \"Height\": 0.015397768467664719,\n          \"Left\": 0.4383280277252197,\n          \"Top\": 0.27985772490501404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4383280277252197,\n            \"Y\": 0.27985772490501404\n          },\n          {\n            \"X\": 0.5407346487045288,\n            \"Y\": 0.27991026639938354\n          },\n          {\n            \"X\": 0.5407355427742004,\n            \"Y\": 0.29525548219680786\n          },\n          {\n            \"X\": 0.4383283257484436,\n            \"Y\": 0.2952030897140503\n          }\n        ]\n      },\n      \"Id\": \"d857c110-4aa4-4fd1-a155-b812f5f6539d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"72970b90-e3f6-4ad4-b36f-9c9d6b67241c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.91767120361328,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888828545808792,\n          \"Height\": 0.015396596863865852,\n          \"Left\": 0.04577672854065895,\n          \"Top\": 0.29500219225883484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.045778788626194,\n            \"Y\": 0.29500219225883484\n          },\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          },\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.04577672854065895,\n            \"Y\": 0.3103483319282532\n          }\n        ]\n      },\n      \"Id\": \"83df2bb9-e3a0-4568-ac38-31fe7e4b7a2c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8df60e36-6dc6-4e56-9b9c-ac90dbff50d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.02557373046875,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08228566497564316,\n          \"Height\": 0.015387976542115211,\n          \"Left\": 0.14466354250907898,\n          \"Top\": 0.29505279660224915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466501772403717,\n            \"Y\": 0.29505279660224915\n          },\n          {\n            \"X\": 0.22694921493530273,\n            \"Y\": 0.29509490728378296\n          },\n          {\n            \"X\": 0.22694824635982513,\n            \"Y\": 0.3104407787322998\n          },\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          }\n        ]\n      },\n      \"Id\": \"e7945095-8b6c-4a85-ba69-5aadf5ab124a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.6835708618164,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937711268663406,\n          \"Height\": 0.015391469933092594,\n          \"Left\": 0.22694824635982513,\n          \"Top\": 0.29509490728378296\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22694921493530273,\n            \"Y\": 0.29509490728378296\n          },\n          {\n            \"X\": 0.3163253664970398,\n            \"Y\": 0.29514065384864807\n          },\n          {\n            \"X\": 0.316324919462204,\n            \"Y\": 0.310486376285553\n          },\n          {\n            \"X\": 0.22694824635982513,\n            \"Y\": 0.3104407787322998\n          }\n        ]\n      },\n      \"Id\": \"5d9a9a94-dd80-46d7-b2af-3e5f7ca62200\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.10646057128906,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1220037192106247,\n          \"Height\": 0.015407981351017952,\n          \"Left\": 0.316324919462204,\n          \"Top\": 0.29514065384864807\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3163253664970398,\n            \"Y\": 0.29514065384864807\n          },\n          {\n            \"X\": 0.4383283257484436,\n            \"Y\": 0.2952030897140503\n          },\n          {\n            \"X\": 0.43832865357398987,\n            \"Y\": 0.3105486333370209\n          },\n          {\n            \"X\": 0.316324919462204,\n            \"Y\": 0.310486376285553\n          }\n        ]\n      },\n      \"Id\": \"9a4a33f0-f9e7-4c9e-af5a-ad2b82aab389\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"35ae6aa2-def6-4427-948e-d5bbe83aac7c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.75789642333984,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10240815579891205,\n          \"Height\": 0.015397798269987106,\n          \"Left\": 0.4383283257484436,\n          \"Top\": 0.2952030897140503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4383283257484436,\n            \"Y\": 0.2952030897140503\n          },\n          {\n            \"X\": 0.5407355427742004,\n            \"Y\": 0.29525548219680786\n          },\n          {\n            \"X\": 0.5407364964485168,\n            \"Y\": 0.3106008768081665\n          },\n          {\n            \"X\": 0.43832865357398987,\n            \"Y\": 0.3105486333370209\n          }\n        ]\n      },\n      \"Id\": \"c8a849b2-0017-49bb-868e-074c31c97ecc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0891535a-fa26-43eb-9809-64237ee1fb0a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 77.24456787109375,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09888878464698792,\n          \"Height\": 0.014687378890812397,\n          \"Left\": 0.04577476158738136,\n          \"Top\": 0.3103483319282532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04577672854065895,\n            \"Y\": 0.3103483319282532\n          },\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.14466215670108795,\n            \"Y\": 0.3250357210636139\n          },\n          {\n            \"X\": 0.04577476158738136,\n            \"Y\": 0.32498541474342346\n          }\n        ]\n      },\n      \"Id\": \"3e875b5a-bbe4-40d4-871b-ffa3a6612b76\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 64.4264144897461,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0822860524058342,\n          \"Height\": 0.014291884377598763,\n          \"Left\": 0.14466218650341034,\n          \"Top\": 0.31039878726005554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.22694824635982513,\n            \"Y\": 0.3104407787322998\n          },\n          {\n            \"X\": 0.2269473522901535,\n            \"Y\": 0.32469066977500916\n          },\n          {\n            \"X\": 0.14466218650341034,\n            \"Y\": 0.32464879751205444\n          }\n        ]\n      },\n      \"Id\": \"147c7bd2-f3b8-4202-be8e-1c3326503a7d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce3537c4-9283-43a4-9636-a54ee7e1bea9\",\n            \"1004a297-a725-41ee-bdd0-4279d2b20335\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 64.4264144897461,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937758207321167,\n          \"Height\": 0.01429537683725357,\n          \"Left\": 0.2269473522901535,\n          \"Top\": 0.3104407787322998\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22694824635982513,\n            \"Y\": 0.3104407787322998\n          },\n          {\n            \"X\": 0.316324919462204,\n            \"Y\": 0.310486376285553\n          },\n          {\n            \"X\": 0.31632453203201294,\n            \"Y\": 0.3247361481189728\n          },\n          {\n            \"X\": 0.2269473522901535,\n            \"Y\": 0.32469066977500916\n          }\n        ]\n      },\n      \"Id\": \"8efed9c8-264f-42d2-b1e0-328fdea3c94f\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 77.4225845336914,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1220044195652008,\n          \"Height\": 0.014698749408125877,\n          \"Left\": 0.31632453203201294,\n          \"Top\": 0.310486376285553\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.316324919462204,\n            \"Y\": 0.310486376285553\n          },\n          {\n            \"X\": 0.43832865357398987,\n            \"Y\": 0.3105486333370209\n          },\n          {\n            \"X\": 0.43832895159721375,\n            \"Y\": 0.3251851201057434\n          },\n          {\n            \"X\": 0.31632453203201294,\n            \"Y\": 0.32512304186820984\n          }\n        ]\n      },\n      \"Id\": \"12e3d230-d691-4740-985b-5ad63d458d31\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7116a7da-e1fd-4185-9c54-2d89eb6f1214\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 76.15094757080078,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 5,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10240872949361801,\n          \"Height\": 0.014688602648675442,\n          \"Left\": 0.43832865357398987,\n          \"Top\": 0.3105486333370209\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43832865357398987,\n            \"Y\": 0.3105486333370209\n          },\n          {\n            \"X\": 0.5407364964485168,\n            \"Y\": 0.3106008768081665\n          },\n          {\n            \"X\": 0.5407373905181885,\n            \"Y\": 0.3252372443675995\n          },\n          {\n            \"X\": 0.43832895159721375,\n            \"Y\": 0.3251851201057434\n          }\n        ]\n      },\n      \"Id\": \"37c73b57-a6ab-46d1-a181-ebebb3dd4469\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d9e1e57-cb15-4791-ad88-2ec7468379f1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 64.4264144897461,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 2,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17166277766227722,\n          \"Height\": 0.014724262058734894,\n          \"Left\": 0.14466215670108795,\n          \"Top\": 0.31039878726005554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14466354250907898,\n            \"Y\": 0.31039878726005554\n          },\n          {\n            \"X\": 0.316324919462204,\n            \"Y\": 0.310486376285553\n          },\n          {\n            \"X\": 0.31632453203201294,\n            \"Y\": 0.32512304186820984\n          },\n          {\n            \"X\": 0.14466215670108795,\n            \"Y\": 0.3250357210636139\n          }\n        ]\n      },\n      \"Id\": \"515d39b2-e0a6-4bf5-a32e-867b3835dc8e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"147c7bd2-f3b8-4202-be8e-1c3326503a7d\",\n            \"8efed9c8-264f-42d2-b1e0-328fdea3c94f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 87.58031463623047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3950326442718506,\n          \"Height\": 0.046914372593164444,\n          \"Left\": 0.5582336187362671,\n          \"Top\": 0.24962562322616577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5582336187362671,\n            \"Y\": 0.24962562322616577\n          },\n          {\n            \"X\": 0.953255832195282,\n            \"Y\": 0.24982956051826477\n          },\n          {\n            \"X\": 0.9532662630081177,\n            \"Y\": 0.2965399920940399\n          },\n          {\n            \"X\": 0.5582367777824402,\n            \"Y\": 0.29633790254592896\n          }\n        ]\n      },\n      \"Id\": \"b90f5bff-ec80-4dd7-a49b-f4b7ea1baade\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3b5c2750-85f7-4227-859a-a404eaa8ad68\",\n            \"4b2cff18-4342-4ec0-8085-e3d082a6090a\",\n            \"9921a46a-ba02-4531-819a-99507ed0d5e6\",\n            \"40f404b2-ca6a-4779-a8e8-21387fe28255\",\n            \"cc1cec2f-17b3-4aa0-bfa7-600a6f87c40a\",\n            \"2583faaa-172d-4fe7-b887-5baf5729430c\",\n            \"0d3dc209-3e6e-47a3-8745-ffdf60a01b8e\",\n            \"597e85a1-3bbe-478a-a6e0-bbc94cc974e8\",\n            \"bda49d9b-8c67-4b41-8b5a-c4792f5672d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.67359161376953,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17941105365753174,\n          \"Height\": 0.01613704301416874,\n          \"Left\": 0.5582336187362671,\n          \"Top\": 0.24962562322616577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5582336187362671,\n            \"Y\": 0.24962562322616577\n          },\n          {\n            \"X\": 0.7376424670219421,\n            \"Y\": 0.24971824884414673\n          },\n          {\n            \"X\": 0.7376446723937988,\n            \"Y\": 0.26576265692710876\n          },\n          {\n            \"X\": 0.558234691619873,\n            \"Y\": 0.2656703293323517\n          }\n        ]\n      },\n      \"Id\": \"3b5c2750-85f7-4227-859a-a404eaa8ad68\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f705033f-5a78-4b2b-bec2-61121ac352f2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.23625946044922,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064568907022476,\n          \"Height\": 0.01610136777162552,\n          \"Left\": 0.7376424670219421,\n          \"Top\": 0.24971824884414673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376424670219421,\n            \"Y\": 0.24971824884414673\n          },\n          {\n            \"X\": 0.8482851982116699,\n            \"Y\": 0.24977536499500275\n          },\n          {\n            \"X\": 0.8482881188392639,\n            \"Y\": 0.26581960916519165\n          },\n          {\n            \"X\": 0.7376446723937988,\n            \"Y\": 0.26576265692710876\n          }\n        ]\n      },\n      \"Id\": \"4b2cff18-4342-4ec0-8085-e3d082a6090a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2391bded-dfa9-4042-949f-93787a3ae076\",\n            \"902d82e7-66ce-4ab7-ac11-43c5afc7bc69\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.75304412841797,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10497419536113739,\n          \"Height\": 0.016098272055387497,\n          \"Left\": 0.8482851982116699,\n          \"Top\": 0.24977536499500275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8482851982116699,\n            \"Y\": 0.24977536499500275\n          },\n          {\n            \"X\": 0.953255832195282,\n            \"Y\": 0.24982956051826477\n          },\n          {\n            \"X\": 0.9532594084739685,\n            \"Y\": 0.26587364077568054\n          },\n          {\n            \"X\": 0.8482881188392639,\n            \"Y\": 0.26581960916519165\n          }\n        ]\n      },\n      \"Id\": \"9921a46a-ba02-4531-819a-99507ed0d5e6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"272a19d1-5972-4595-8f8e-2aab7beaa1b4\",\n            \"024452d2-618a-4e7a-9eec-5dfa47fa6504\",\n            \"59b8ddff-76d9-4229-b840-e515f05191b5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.82828521728516,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17941194772720337,\n          \"Height\": 0.014341014437377453,\n          \"Left\": 0.558234691619873,\n          \"Top\": 0.2656703293323517\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.558234691619873,\n            \"Y\": 0.2656703293323517\n          },\n          {\n            \"X\": 0.7376446723937988,\n            \"Y\": 0.26576265692710876\n          },\n          {\n            \"X\": 0.7376466393470764,\n            \"Y\": 0.2800113558769226\n          },\n          {\n            \"X\": 0.5582356452941895,\n            \"Y\": 0.27991926670074463\n          }\n        ]\n      },\n      \"Id\": \"40f404b2-ca6a-4779-a8e8-21387fe28255\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ad99093-a1fc-4401-ae26-d8ccd9bec453\",\n            \"0e1d9485-0cd1-4c3f-857d-54416a258eff\",\n            \"195d362a-b6e2-4c5b-9d74-fb1661adf515\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.39922332763672,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064606159925461,\n          \"Height\": 0.014305466786026955,\n          \"Left\": 0.7376446723937988,\n          \"Top\": 0.26576265692710876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376446723937988,\n            \"Y\": 0.26576265692710876\n          },\n          {\n            \"X\": 0.8482881188392639,\n            \"Y\": 0.26581960916519165\n          },\n          {\n            \"X\": 0.848290741443634,\n            \"Y\": 0.28006812930107117\n          },\n          {\n            \"X\": 0.7376466393470764,\n            \"Y\": 0.2800113558769226\n          }\n        ]\n      },\n      \"Id\": \"cc1cec2f-17b3-4aa0-bfa7-600a6f87c40a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a5d5ce60-dc3b-4137-96e0-51ca5f3f1dc0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.99696350097656,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10497445613145828,\n          \"Height\": 0.014302399940788746,\n          \"Left\": 0.8482881188392639,\n          \"Top\": 0.26581960916519165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8482881188392639,\n            \"Y\": 0.26581960916519165\n          },\n          {\n            \"X\": 0.9532594084739685,\n            \"Y\": 0.26587364077568054\n          },\n          {\n            \"X\": 0.9532625675201416,\n            \"Y\": 0.2801220118999481\n          },\n          {\n            \"X\": 0.848290741443634,\n            \"Y\": 0.28006812930107117\n          }\n        ]\n      },\n      \"Id\": \"2583faaa-172d-4fe7-b887-5baf5729430c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"79f8d481-27c5-4fa5-8981-71e5041efcc3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.10033416748047,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17941325902938843,\n          \"Height\": 0.01651041954755783,\n          \"Left\": 0.5582356452941895,\n          \"Top\": 0.27991926670074463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5582356452941895,\n            \"Y\": 0.27991926670074463\n          },\n          {\n            \"X\": 0.7376466393470764,\n            \"Y\": 0.2800113558769226\n          },\n          {\n            \"X\": 0.7376489043235779,\n            \"Y\": 0.29642969369888306\n          },\n          {\n            \"X\": 0.5582367777824402,\n            \"Y\": 0.29633790254592896\n          }\n        ]\n      },\n      \"Id\": \"0d3dc209-3e6e-47a3-8745-ffdf60a01b8e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81bc505a-69fd-484f-af61-cf5be23cf0d8\",\n            \"7b928b73-75bc-4dc3-9e82-e48ef3974067\",\n            \"3768fca1-b5f7-40af-ba03-c5a5e04a9712\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.68036651611328,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064707487821579,\n          \"Height\": 0.016474945470690727,\n          \"Left\": 0.7376466393470764,\n          \"Top\": 0.2800113558769226\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376466393470764,\n            \"Y\": 0.2800113558769226\n          },\n          {\n            \"X\": 0.848290741443634,\n            \"Y\": 0.28006812930107117\n          },\n          {\n            \"X\": 0.8482937216758728,\n            \"Y\": 0.2964862883090973\n          },\n          {\n            \"X\": 0.7376489043235779,\n            \"Y\": 0.29642969369888306\n          }\n        ]\n      },\n      \"Id\": \"597e85a1-3bbe-478a-a6e0-bbc94cc974e8\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.3673095703125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10497552901506424,\n          \"Height\": 0.01647186279296875,\n          \"Left\": 0.848290741443634,\n          \"Top\": 0.28006812930107117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.848290741443634,\n            \"Y\": 0.28006812930107117\n          },\n          {\n            \"X\": 0.9532625675201416,\n            \"Y\": 0.2801220118999481\n          },\n          {\n            \"X\": 0.9532662630081177,\n            \"Y\": 0.2965399920940399\n          },\n          {\n            \"X\": 0.8482937216758728,\n            \"Y\": 0.2964862883090973\n          }\n        ]\n      },\n      \"Id\": \"bda49d9b-8c67-4b41-8b5a-c4792f5672d6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d79ae10f-be73-4f56-8fa2-8eaf706a01b3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 79.35041809082031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.39849716424942017,\n          \"Height\": 0.0574764721095562,\n          \"Left\": 0.5559654235839844,\n          \"Top\": 0.2963593602180481\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5559654235839844,\n            \"Y\": 0.2963593602180481\n          },\n          {\n            \"X\": 0.9544497728347778,\n            \"Y\": 0.2965632379055023\n          },\n          {\n            \"X\": 0.9544625878334045,\n            \"Y\": 0.3538358509540558\n          },\n          {\n            \"X\": 0.55596923828125,\n            \"Y\": 0.35363420844078064\n          }\n        ]\n      },\n      \"Id\": \"3e5f7a14-bcb5-497b-b1fe-de9c9fa8dbbb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5c8df6e1-c8c0-45a5-9388-2625eb1fc957\",\n            \"853f05cf-3536-4dfc-91af-064e74c8d0f2\",\n            \"f0f36a2b-dcb3-4c18-b207-6064bc44f4fe\",\n            \"f6010c04-cefe-4cc4-aeba-3a41fc52072a\",\n            \"ecc4b2b4-bfc5-4bd1-b1bd-462f7a64db79\",\n            \"de2bb072-00bb-4e5c-a9dc-5c5efcf837a1\",\n            \"67a781b5-f76d-4063-a34f-f5bbd0c0fa4e\",\n            \"95d46b27-1647-437c-9058-95723daa416b\",\n            \"c8336ede-d55b-4baf-803d-24e80c390774\",\n            \"5d585be5-78f8-45b0-8d2e-9c4f13ffd799\",\n            \"d186d236-de3a-4064-86a7-5a0a1e12eb0a\",\n            \"9c81ef61-27c0-4e89-8a95-b61f73a23c76\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.11875915527344,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18168440461158752,\n          \"Height\": 0.006669406779110432,\n          \"Left\": 0.5559654235839844,\n          \"Top\": 0.2963593602180481\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5559654235839844,\n            \"Y\": 0.2963593602180481\n          },\n          {\n            \"X\": 0.7376489043235779,\n            \"Y\": 0.2964523136615753\n          },\n          {\n            \"X\": 0.7376497983932495,\n            \"Y\": 0.30302879214286804\n          },\n          {\n            \"X\": 0.5559658408164978,\n            \"Y\": 0.302935928106308\n          }\n        ]\n      },\n      \"Id\": \"5c8df6e1-c8c0-45a5-9388-2625eb1fc957\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.48223114013672,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064600199460983,\n          \"Height\": 0.006632989272475243,\n          \"Left\": 0.7376489043235779,\n          \"Top\": 0.2964523136615753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376489043235779,\n            \"Y\": 0.2964523136615753\n          },\n          {\n            \"X\": 0.8482937216758728,\n            \"Y\": 0.29650893807411194\n          },\n          {\n            \"X\": 0.8482949137687683,\n            \"Y\": 0.3030853271484375\n          },\n          {\n            \"X\": 0.7376497983932495,\n            \"Y\": 0.30302879214286804\n          }\n        ]\n      },\n      \"Id\": \"853f05cf-3536-4dfc-91af-064e74c8d0f2\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 84.1091537475586,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10615752637386322,\n          \"Height\": 0.006630623713135719,\n          \"Left\": 0.8482937216758728,\n          \"Top\": 0.29650893807411194\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8482937216758728,\n            \"Y\": 0.29650893807411194\n          },\n          {\n            \"X\": 0.9544497728347778,\n            \"Y\": 0.2965632379055023\n          },\n          {\n            \"X\": 0.9544512033462524,\n            \"Y\": 0.3031395673751831\n          },\n          {\n            \"X\": 0.8482949137687683,\n            \"Y\": 0.3030853271484375\n          }\n        ]\n      },\n      \"Id\": \"f0f36a2b-dcb3-4c18-b207-6064bc44f4fe\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.48575592041016,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18168729543685913,\n          \"Height\": 0.02420678548514843,\n          \"Left\": 0.5559658408164978,\n          \"Top\": 0.302935928106308\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5559658408164978,\n            \"Y\": 0.302935928106308\n          },\n          {\n            \"X\": 0.7376497983932495,\n            \"Y\": 0.30302879214286804\n          },\n          {\n            \"X\": 0.7376531362533569,\n            \"Y\": 0.32714271545410156\n          },\n          {\n            \"X\": 0.5559674501419067,\n            \"Y\": 0.3270503282546997\n          }\n        ]\n      },\n      \"Id\": \"f6010c04-cefe-4cc4-aeba-3a41fc52072a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c7ec916-4a44-4299-a218-fd7909537f2d\",\n            \"709143fc-5137-40c8-a2ed-e094bea1a6e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 75.01011657714844,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1106494814157486,\n          \"Height\": 0.024170221760869026,\n          \"Left\": 0.7376497983932495,\n          \"Top\": 0.30302879214286804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376497983932495,\n            \"Y\": 0.30302879214286804\n          },\n          {\n            \"X\": 0.8482949137687683,\n            \"Y\": 0.3030853271484375\n          },\n          {\n            \"X\": 0.8482992649078369,\n            \"Y\": 0.3271990120410919\n          },\n          {\n            \"X\": 0.7376531362533569,\n            \"Y\": 0.32714271545410156\n          }\n        ]\n      },\n      \"Id\": \"ecc4b2b4-bfc5-4bd1-b1bd-462f7a64db79\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 80.38809967041016,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10616172105073929,\n          \"Height\": 0.024167675524950027,\n          \"Left\": 0.8482949137687683,\n          \"Top\": 0.3030853271484375\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8482949137687683,\n            \"Y\": 0.3030853271484375\n          },\n          {\n            \"X\": 0.9544512033462524,\n            \"Y\": 0.3031395673751831\n          },\n          {\n            \"X\": 0.954456627368927,\n            \"Y\": 0.32725298404693604\n          },\n          {\n            \"X\": 0.8482992649078369,\n            \"Y\": 0.3271990120410919\n          }\n        ]\n      },\n      \"Id\": \"de2bb072-00bb-4e5c-a9dc-5c5efcf837a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1157363-ccc1-4e5e-9a6b-eab4591c9962\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 76.59981536865234,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1816881150007248,\n          \"Height\": 0.017630109563469887,\n          \"Left\": 0.5559674501419067,\n          \"Top\": 0.3270503282546997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5559674501419067,\n            \"Y\": 0.3270503282546997\n          },\n          {\n            \"X\": 0.7376531362533569,\n            \"Y\": 0.32714271545410156\n          },\n          {\n            \"X\": 0.7376555800437927,\n            \"Y\": 0.34468042850494385\n          },\n          {\n            \"X\": 0.5559686422348022,\n            \"Y\": 0.34458833932876587\n          }\n        ]\n      },\n      \"Id\": \"67a781b5-f76d-4063-a34f-f5bbd0c0fa4e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2e58008e-1e63-46c4-b755-4a4b4cea9572\",\n            \"1bfc6c9f-7a40-4828-bfcc-61161f8a0f0a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 73.20768737792969,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064933240413666,\n          \"Height\": 0.017593787983059883,\n          \"Left\": 0.7376531362533569,\n          \"Top\": 0.32714271545410156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376531362533569,\n            \"Y\": 0.32714271545410156\n          },\n          {\n            \"X\": 0.8482992649078369,\n            \"Y\": 0.3271990120410919\n          },\n          {\n            \"X\": 0.8483024835586548,\n            \"Y\": 0.3447365164756775\n          },\n          {\n            \"X\": 0.7376555800437927,\n            \"Y\": 0.34468042850494385\n          }\n        ]\n      },\n      \"Id\": \"95d46b27-1647-437c-9058-95723daa416b\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.4564437866211,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10616125911474228,\n          \"Height\": 0.017591319978237152,\n          \"Left\": 0.8482992649078369,\n          \"Top\": 0.3271990120410919\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8482992649078369,\n            \"Y\": 0.3271990120410919\n          },\n          {\n            \"X\": 0.954456627368927,\n            \"Y\": 0.32725298404693604\n          },\n          {\n            \"X\": 0.9544605612754822,\n            \"Y\": 0.3447903096675873\n          },\n          {\n            \"X\": 0.8483024835586548,\n            \"Y\": 0.3447365164756775\n          }\n        ]\n      },\n      \"Id\": \"c8336ede-d55b-4baf-803d-24e80c390774\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47030a68-6a4f-4552-9429-f76d3efff98a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 79.87494659423828,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.18168820440769196,\n          \"Height\": 0.009137806482613087,\n          \"Left\": 0.5559686422348022,\n          \"Top\": 0.34458833932876587\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5559686422348022,\n            \"Y\": 0.34458833932876587\n          },\n          {\n            \"X\": 0.7376555800437927,\n            \"Y\": 0.34468042850494385\n          },\n          {\n            \"X\": 0.737656831741333,\n            \"Y\": 0.3537261486053467\n          },\n          {\n            \"X\": 0.55596923828125,\n            \"Y\": 0.35363420844078064\n          }\n        ]\n      },\n      \"Id\": \"5d585be5-78f8-45b0-8d2e-9c4f13ffd799\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60549656-64af-446e-96f8-53589a2c23ad\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 76.33777618408203,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11064855754375458,\n          \"Height\": 0.00910170003771782,\n          \"Left\": 0.7376555800437927,\n          \"Top\": 0.34468042850494385\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7376555800437927,\n            \"Y\": 0.34468042850494385\n          },\n          {\n            \"X\": 0.8483024835586548,\n            \"Y\": 0.3447365164756775\n          },\n          {\n            \"X\": 0.8483040928840637,\n            \"Y\": 0.35378214716911316\n          },\n          {\n            \"X\": 0.737656831741333,\n            \"Y\": 0.3537261486053467\n          }\n        ]\n      },\n      \"Id\": \"d186d236-de3a-4064-86a7-5a0a1e12eb0a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac72e0ef-1510-4f03-a124-4659ee31e2c4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.81095123291016,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10616008937358856,\n          \"Height\": 0.009099329821765423,\n          \"Left\": 0.8483024835586548,\n          \"Top\": 0.3447365164756775\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8483024835586548,\n            \"Y\": 0.3447365164756775\n          },\n          {\n            \"X\": 0.9544605612754822,\n            \"Y\": 0.3447903096675873\n          },\n          {\n            \"X\": 0.9544625878334045,\n            \"Y\": 0.3538358509540558\n          },\n          {\n            \"X\": 0.8483040928840637,\n            \"Y\": 0.35378214716911316\n          }\n        ]\n      },\n      \"Id\": \"9c81ef61-27c0-4e89-8a95-b61f73a23c76\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 92.13606262207031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4951667785644531,\n          \"Height\": 0.26075366139411926,\n          \"Left\": 0.04612702503800392,\n          \"Top\": 0.3481409251689911\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046161964535713196,\n            \"Y\": 0.3481409251689911\n          },\n          {\n            \"X\": 0.5412779450416565,\n            \"Y\": 0.34839168190956116\n          },\n          {\n            \"X\": 0.5412937998771667,\n            \"Y\": 0.6088945865631104\n          },\n          {\n            \"X\": 0.04612702503800392,\n            \"Y\": 0.6086565852165222\n          }\n        ]\n      },\n      \"Id\": \"48aac832-e8ed-42a5-9442-fc15e7690c00\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"93a633b9-1257-4045-ae2c-97efa3e63dc0\",\n            \"b32576ad-3b3b-4a05-8d39-14110444d67e\",\n            \"b851de4b-254f-4c80-b9fb-18038c171840\",\n            \"f4351dc6-659e-4438-9ad3-060762a06762\",\n            \"45305f97-688e-4b57-97e5-c4966a4e7884\",\n            \"630c9e5d-d2f5-4acd-9de0-66e61515d10d\",\n            \"42980e49-0b57-4dcf-8e39-bab02bedd0e9\",\n            \"4dea6062-2260-4f8e-b15f-b1e6c42b1337\",\n            \"c3be1a6e-1d28-4bd1-9996-f6cc9a68a1d6\",\n            \"0371d060-8d01-47f5-9fb8-f59175b7214d\",\n            \"b0e441ef-af11-4a2a-83fa-657362f6491f\",\n            \"e55af455-d632-485d-a1f2-f8810c0a23a6\",\n            \"6214943d-671c-4669-bc65-d9b0cd7f32a4\",\n            \"a7d7c64b-e3b1-4570-9026-31c310faa8b6\",\n            \"f56673ea-7e15-4232-9246-f36352a9eaf4\",\n            \"90aad647-6cca-4d68-afdc-8730ab585836\",\n            \"bf0cd0da-ea83-4dd5-86d8-38782ad9453d\",\n            \"fbd20c82-3c9e-4b96-ae11-65a9b4a44473\",\n            \"4a654a67-9509-4187-9e07-0312d4ebc3f9\",\n            \"9df13264-e415-4f37-a090-ea58576b2889\",\n            \"11d8e6c5-9956-4549-81be-46727ae3c6e0\",\n            \"4581ed9d-6d31-4ca1-838f-117bb6c96942\",\n            \"ce713de4-61d3-408d-abcf-ce4952370093\",\n            \"2710ed6f-a5db-4db2-a453-1c10b01f7d60\",\n            \"9f39db88-0513-4eaa-a3b4-ed152700aba1\",\n            \"0321c682-802b-447a-a607-f770c20d5b11\",\n            \"a7a9b25f-185e-4198-a473-c557a309c8f6\",\n            \"dca33391-9aab-411b-a633-37c44630cec1\",\n            \"b8d5cadf-406d-4169-b5f1-c4f6d9642cec\",\n            \"cd16975a-3531-41d7-8000-caf7cd0c93d5\",\n            \"9ab941a0-8f5a-423c-b19a-ff1959e4a861\",\n            \"85002353-90fc-4ed7-abee-9474c901a542\",\n            \"1328d558-5f06-44df-9d79-e11767f2d33c\",\n            \"dc9f86f6-1fb6-476f-85bb-27be361104f3\",\n            \"062ff750-f1fc-4b49-85e0-4a1d7ddb833b\",\n            \"e1302db9-5d90-47a6-8484-e1801129116f\",\n            \"87c445ae-1971-4de2-bb18-6688ac3c4eba\",\n            \"d64b0977-2050-4322-8027-6525727c80e8\",\n            \"37c09e9a-5d49-49fc-86a1-ef1c013245fd\",\n            \"bda67168-16e5-47c6-acf5-0b2f14f9300c\",\n            \"d3bc91b4-c4ca-4edc-b67e-30086120052a\",\n            \"be72e756-9113-4264-a399-d1e85f0ff04a\",\n            \"b609b652-7959-4a17-88ab-675874e1f0f2\",\n            \"5e6be542-9d6c-45d5-b79d-707a9da80d03\",\n            \"c3ecc555-fbf3-4e10-acbe-78da64e505b4\",\n            \"43c6bba1-5df0-4bd3-a543-6d482bbbcb1e\",\n            \"1913be6c-4188-4178-a2ef-7dcaa659fc99\",\n            \"13931b14-3987-4cc9-9027-e96e5bc01c95\",\n            \"a1eedf2e-181b-4a4f-a1de-90ff45b3c2f0\",\n            \"846be2d7-f4fe-4341-954b-af80d629ac1f\",\n            \"052cc3ab-101e-4f8a-93cb-b7b7401ba541\",\n            \"2c45d30f-e0a9-4495-a2fb-edabba1dde19\",\n            \"a870a822-2408-47e2-8e13-cf938d67cd6c\",\n            \"8d224b02-7251-4383-a61d-ed196a3989d1\",\n            \"cf385359-a697-4546-b913-fc7b46936656\",\n            \"32f326da-4ca9-4855-b3f1-8f13a3ea1134\",\n            \"fd81a676-c679-48b8-99a1-cf93b587508a\",\n            \"c4ff04b4-1a56-4dcd-aad1-4d9c2a4c4747\",\n            \"8048ddf3-856d-43c7-bc38-b6b8d378ab4d\",\n            \"a2838e3f-9086-4613-b904-198260efe0ad\",\n            \"9e8601d9-19d6-4332-9c04-f5ef13fce3a7\",\n            \"7fc1e5e3-0640-4c0f-9576-0f3340bfb9f4\",\n            \"a76271b0-341a-4d6a-9028-5dd6cf8107e3\",\n            \"1d2d464e-6806-4bb6-be21-f7e787737d15\",\n            \"93b0e002-c686-47a9-b3b4-8fa73a8e716b\",\n            \"96d383c3-13ec-4778-a2bf-0ecac1163c5c\",\n            \"1071e586-6f09-4c6a-b6c6-97139db43d34\",\n            \"17f6dc56-1d2b-43e3-b776-5b3ab05b64af\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"6dc0b328-13b1-4d54-8fc2-34bcf11095f0\",\n            \"34ea651a-87aa-444c-80de-5323a56531d9\",\n            \"fafba93a-a085-4c38-9121-90029225d640\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 78.99778747558594,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09849908947944641,\n          \"Height\": 0.008296968415379524,\n          \"Left\": 0.04616085812449455,\n          \"Top\": 0.3481409251689911\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046161964535713196,\n            \"Y\": 0.3481409251689911\n          },\n          {\n            \"X\": 0.14465995132923126,\n            \"Y\": 0.3481908142566681\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.04616085812449455,\n            \"Y\": 0.3563880920410156\n          }\n        ]\n      },\n      \"Id\": \"93a633b9-1257-4045-ae2c-97efa3e63dc0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b1fd60c8-19c1-4fc3-84eb-ae6d8886ff84\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.706573486328125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20287573337554932,\n          \"Height\": 0.008872066624462605,\n          \"Left\": 0.144659161567688,\n          \"Top\": 0.3476684093475342\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465999603271484,\n            \"Y\": 0.3476684093475342\n          },\n          {\n            \"X\": 0.3475348949432373,\n            \"Y\": 0.34777116775512695\n          },\n          {\n            \"X\": 0.34753474593162537,\n            \"Y\": 0.3565404713153839\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          }\n        ]\n      },\n      \"Id\": \"b32576ad-3b3b-4a05-8d39-14110444d67e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"04d41d85-6498-4b62-9f57-c4ea41811a31\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.706573486328125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937617391347885,\n          \"Height\": 0.008814497850835323,\n          \"Left\": 0.34753474593162537,\n          \"Top\": 0.34777116775512695\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475348949432373,\n            \"Y\": 0.34777116775512695\n          },\n          {\n            \"X\": 0.4369107484817505,\n            \"Y\": 0.34781643748283386\n          },\n          {\n            \"X\": 0.4369109272956848,\n            \"Y\": 0.35658568143844604\n          },\n          {\n            \"X\": 0.34753474593162537,\n            \"Y\": 0.3565404713153839\n          }\n        ]\n      },\n      \"Id\": \"b851de4b-254f-4c80-b9fb-18038c171840\",\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 38.706573486328125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10497969388961792,\n          \"Height\": 0.008822310715913773,\n          \"Left\": 0.4369107484817505,\n          \"Top\": 0.34781643748283386\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369107484817505,\n            \"Y\": 0.34781643748283386\n          },\n          {\n            \"X\": 0.5418899059295654,\n            \"Y\": 0.3478696048259735\n          },\n          {\n            \"X\": 0.5418904423713684,\n            \"Y\": 0.35663875937461853\n          },\n          {\n            \"X\": 0.4369109272956848,\n            \"Y\": 0.35658568143844604\n          }\n        ]\n      },\n      \"Id\": \"f4351dc6-659e-4438-9ad3-060762a06762\",\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09789598733186722,\n          \"Height\": 0.015396236442029476,\n          \"Left\": 0.04676317051053047,\n          \"Top\": 0.3563883900642395\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04676522687077522,\n            \"Y\": 0.3563883900642395\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.144657701253891,\n            \"Y\": 0.37178462743759155\n          },\n          {\n            \"X\": 0.04676317051053047,\n            \"Y\": 0.37173527479171753\n          }\n        ]\n      },\n      \"Id\": \"45305f97-688e-4b57-97e5-c4966a4e7884\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 49.17487335205078,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20287705957889557,\n          \"Height\": 0.015449014492332935,\n          \"Left\": 0.144657701253891,\n          \"Top\": 0.35643789172172546\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.34753474593162537,\n            \"Y\": 0.3565404713153839\n          },\n          {\n            \"X\": 0.34753450751304626,\n            \"Y\": 0.3718869090080261\n          },\n          {\n            \"X\": 0.144657701253891,\n            \"Y\": 0.37178462743759155\n          }\n        ]\n      },\n      \"Id\": \"630c9e5d-d2f5-4acd-9de0-66e61515d10d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"59d82251-044c-4c9a-960d-001e167e91f3\",\n            \"00ff535d-064d-4444-8225-4aaea6e786c7\",\n            \"0b6af67c-6d89-47bf-9f2a-9c80733ea80f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 46.964500427246094,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937671035528183,\n          \"Height\": 0.015391486696898937,\n          \"Left\": 0.34753450751304626,\n          \"Top\": 0.3565404713153839\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753474593162537,\n            \"Y\": 0.3565404713153839\n          },\n          {\n            \"X\": 0.4369109272956848,\n            \"Y\": 0.35658568143844604\n          },\n          {\n            \"X\": 0.4369112253189087,\n            \"Y\": 0.3719319701194763\n          },\n          {\n            \"X\": 0.34753450751304626,\n            \"Y\": 0.3718869090080261\n          }\n        ]\n      },\n      \"Id\": \"42980e49-0b57-4dcf-8e39-bab02bedd0e9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2139a99f-8a8d-452a-91d5-ec5a41e550f6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 74.87296295166016,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10436846315860748,\n          \"Height\": 0.015398908406496048,\n          \"Left\": 0.4369109272956848,\n          \"Top\": 0.35658568143844604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369109272956848,\n            \"Y\": 0.35658568143844604\n          },\n          {\n            \"X\": 0.5412784814834595,\n            \"Y\": 0.35663843154907227\n          },\n          {\n            \"X\": 0.5412793755531311,\n            \"Y\": 0.3719845712184906\n          },\n          {\n            \"X\": 0.4369112253189087,\n            \"Y\": 0.3719319701194763\n          }\n        ]\n      },\n      \"Id\": \"4dea6062-2260-4f8e-b15f-b1e6c42b1337\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2be678e5-a22d-4bf2-be30-efb8fb30be70\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09789643436670303,\n          \"Height\": 0.014300058595836163,\n          \"Left\": 0.04676126316189766,\n          \"Top\": 0.37173527479171753\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04676317051053047,\n            \"Y\": 0.37173527479171753\n          },\n          {\n            \"X\": 0.144657701253891,\n            \"Y\": 0.37178462743759155\n          },\n          {\n            \"X\": 0.14465634524822235,\n            \"Y\": 0.38603532314300537\n          },\n          {\n            \"X\": 0.04676126316189766,\n            \"Y\": 0.3859861195087433\n          }\n        ]\n      },\n      \"Id\": \"c3be1a6e-1d28-4bd1-9996-f6cc9a68a1d6\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 46.162841796875,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2028781771659851,\n          \"Height\": 0.014352699741721153,\n          \"Left\": 0.14465634524822235,\n          \"Top\": 0.37178462743759155\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.144657701253891,\n            \"Y\": 0.37178462743759155\n          },\n          {\n            \"X\": 0.34753450751304626,\n            \"Y\": 0.3718869090080261\n          },\n          {\n            \"X\": 0.34753429889678955,\n            \"Y\": 0.38613733649253845\n          },\n          {\n            \"X\": 0.14465634524822235,\n            \"Y\": 0.38603532314300537\n          }\n        ]\n      },\n      \"Id\": \"0371d060-8d01-47f5-9fb8-f59175b7214d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c0e2faea-9bc7-49f7-8879-54cb3533ebc1\",\n            \"7e960910-c609-46db-9761-06d214177bdc\",\n            \"4be1d5f3-1ba0-4231-a4ee-9d5c525cca23\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.08785629272461,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937721699476242,\n          \"Height\": 0.014295353554189205,\n          \"Left\": 0.34753429889678955,\n          \"Top\": 0.3718869090080261\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753450751304626,\n            \"Y\": 0.3718869090080261\n          },\n          {\n            \"X\": 0.4369112253189087,\n            \"Y\": 0.3719319701194763\n          },\n          {\n            \"X\": 0.43691152334213257,\n            \"Y\": 0.3861822485923767\n          },\n          {\n            \"X\": 0.34753429889678955,\n            \"Y\": 0.38613733649253845\n          }\n        ]\n      },\n      \"Id\": \"b0e441ef-af11-4a2a-83fa-657362f6491f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"37033432-69bf-4f05-aa8c-617a36ef3ffb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 70.2868881225586,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10436902195215225,\n          \"Height\": 0.01430276408791542,\n          \"Left\": 0.4369112253189087,\n          \"Top\": 0.3719319701194763\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369112253189087,\n            \"Y\": 0.3719319701194763\n          },\n          {\n            \"X\": 0.5412793755531311,\n            \"Y\": 0.3719845712184906\n          },\n          {\n            \"X\": 0.5412802696228027,\n            \"Y\": 0.38623473048210144\n          },\n          {\n            \"X\": 0.43691152334213257,\n            \"Y\": 0.3861822485923767\n          }\n        ]\n      },\n      \"Id\": \"e55af455-d632-485d-a1f2-f8810c0a23a6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b829d152-a9d5-4238-beab-7f4370763713\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09789713472127914,\n          \"Height\": 0.015396308153867722,\n          \"Left\": 0.04675920680165291,\n          \"Top\": 0.3859861195087433\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04676126316189766,\n            \"Y\": 0.3859861195087433\n          },\n          {\n            \"X\": 0.14465634524822235,\n            \"Y\": 0.38603532314300537\n          },\n          {\n            \"X\": 0.14465487003326416,\n            \"Y\": 0.4013824164867401\n          },\n          {\n            \"X\": 0.04675920680165291,\n            \"Y\": 0.40133336186408997\n          }\n        ]\n      },\n      \"Id\": \"6214943d-671c-4669-bc65-d9b0cd7f32a4\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 39.53126525878906,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2028794288635254,\n          \"Height\": 0.015448778867721558,\n          \"Left\": 0.14465487003326416,\n          \"Top\": 0.38603532314300537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465634524822235,\n            \"Y\": 0.38603532314300537\n          },\n          {\n            \"X\": 0.34753429889678955,\n            \"Y\": 0.38613733649253845\n          },\n          {\n            \"X\": 0.34753406047821045,\n            \"Y\": 0.40148410201072693\n          },\n          {\n            \"X\": 0.14465487003326416,\n            \"Y\": 0.4013824164867401\n          }\n        ]\n      },\n      \"Id\": \"a7d7c64b-e3b1-4570-9026-31c310faa8b6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9780c953-5a6e-4a2f-81d9-4db89edc1480\",\n            \"4253d1c3-157c-47a3-bba1-73657c60b044\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 37.754364013671875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0893777534365654,\n          \"Height\": 0.015391582623124123,\n          \"Left\": 0.34753406047821045,\n          \"Top\": 0.38613733649253845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753429889678955,\n            \"Y\": 0.38613733649253845\n          },\n          {\n            \"X\": 0.43691152334213257,\n            \"Y\": 0.3861822485923767\n          },\n          {\n            \"X\": 0.43691182136535645,\n            \"Y\": 0.40152889490127563\n          },\n          {\n            \"X\": 0.34753406047821045,\n            \"Y\": 0.40148410201072693\n          }\n        ]\n      },\n      \"Id\": \"f56673ea-7e15-4232-9246-f36352a9eaf4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"03a9dd3f-096a-4360-805f-ec6c4a0234a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 60.18974304199219,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10436967760324478,\n          \"Height\": 0.015398961491882801,\n          \"Left\": 0.43691152334213257,\n          \"Top\": 0.3861822485923767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43691152334213257,\n            \"Y\": 0.3861822485923767\n          },\n          {\n            \"X\": 0.5412802696228027,\n            \"Y\": 0.38623473048210144\n          },\n          {\n            \"X\": 0.5412811636924744,\n            \"Y\": 0.4015812277793884\n          },\n          {\n            \"X\": 0.43691182136535645,\n            \"Y\": 0.40152889490127563\n          }\n        ]\n      },\n      \"Id\": \"90aad647-6cca-4d68-afdc-8730ab585836\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bc565239-2ef4-4df8-8a68-6b734eb9d898\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0978977233171463,\n          \"Height\": 0.015396345406770706,\n          \"Left\": 0.046757154166698456,\n          \"Top\": 0.40133336186408997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04675920680165291,\n            \"Y\": 0.40133336186408997\n          },\n          {\n            \"X\": 0.14465487003326416,\n            \"Y\": 0.4013824164867401\n          },\n          {\n            \"X\": 0.14465340971946716,\n            \"Y\": 0.4167296886444092\n          },\n          {\n            \"X\": 0.046757154166698456,\n            \"Y\": 0.41668078303337097\n          }\n        ]\n      },\n      \"Id\": \"bf0cd0da-ea83-4dd5-86d8-38782ad9453d\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.345191955566406,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2028806507587433,\n          \"Height\": 0.015448656864464283,\n          \"Left\": 0.14465340971946716,\n          \"Top\": 0.4013824164867401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465487003326416,\n            \"Y\": 0.4013824164867401\n          },\n          {\n            \"X\": 0.34753406047821045,\n            \"Y\": 0.40148410201072693\n          },\n          {\n            \"X\": 0.34753382205963135,\n            \"Y\": 0.4168310761451721\n          },\n          {\n            \"X\": 0.14465340971946716,\n            \"Y\": 0.4167296886444092\n          }\n        ]\n      },\n      \"Id\": \"fbd20c82-3c9e-4b96-ae11-65a9b4a44473\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"00bfee77-b0ca-452e-808f-2efe754dd9d0\",\n            \"bc7b307a-b727-4277-8294-a328efb27f9b\",\n            \"1d92b6bc-13e5-449a-abf7-63fc85c4ad5c\",\n            \"c7faf137-5be6-4023-b2bc-4e1bc4f6e21d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 46.17211151123047,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937829732894897,\n          \"Height\": 0.015391632914543152,\n          \"Left\": 0.34753382205963135,\n          \"Top\": 0.40148410201072693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753406047821045,\n            \"Y\": 0.40148410201072693\n          },\n          {\n            \"X\": 0.43691182136535645,\n            \"Y\": 0.40152889490127563\n          },\n          {\n            \"X\": 0.4369121193885803,\n            \"Y\": 0.4168757498264313\n          },\n          {\n            \"X\": 0.34753382205963135,\n            \"Y\": 0.4168310761451721\n          }\n        ]\n      },\n      \"Id\": \"4a654a67-9509-4187-9e07-0312d4ebc3f9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"91ce2559-871d-4c65-a33d-4adfb69ed8a9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 73.60969543457031,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437031090259552,\n          \"Height\": 0.015398988500237465,\n          \"Left\": 0.43691182136535645,\n          \"Top\": 0.40152889490127563\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43691182136535645,\n            \"Y\": 0.40152889490127563\n          },\n          {\n            \"X\": 0.5412811636924744,\n            \"Y\": 0.4015812277793884\n          },\n          {\n            \"X\": 0.5412821173667908,\n            \"Y\": 0.41692790389060974\n          },\n          {\n            \"X\": 0.4369121193885803,\n            \"Y\": 0.4168757498264313\n          }\n        ]\n      },\n      \"Id\": \"9df13264-e415-4f37-a090-ea58576b2889\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"acf660a8-abe0-4867-a7de-152c68e2df3b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09789875149726868,\n          \"Height\": 0.018685149028897285,\n          \"Left\": 0.046754658222198486,\n          \"Top\": 0.41668078303337097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046757154166698456,\n            \"Y\": 0.41668078303337097\n          },\n          {\n            \"X\": 0.14465340971946716,\n            \"Y\": 0.4167296886444092\n          },\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          },\n          {\n            \"X\": 0.046754658222198486,\n            \"Y\": 0.43531718850135803\n          }\n        ]\n      },\n      \"Id\": \"11d8e6c5-9956-4549-81be-46727ae3c6e0\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 46.85105514526367,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20288218557834625,\n          \"Height\": 0.01873723603785038,\n          \"Left\": 0.1446516364812851,\n          \"Top\": 0.4167296886444092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465340971946716,\n            \"Y\": 0.4167296886444092\n          },\n          {\n            \"X\": 0.34753382205963135,\n            \"Y\": 0.4168310761451721\n          },\n          {\n            \"X\": 0.34753352403640747,\n            \"Y\": 0.4354669451713562\n          },\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          }\n        ]\n      },\n      \"Id\": \"4581ed9d-6d31-4ca1-838f-117bb6c96942\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2543a3be-0340-4f36-a802-a58c7e95d36a\",\n            \"e913f58a-a03c-47d3-b12a-5655e4d4d36e\",\n            \"760c7c58-e7da-4aa2-b8a4-28be9ea54bce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.745140075683594,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0893789529800415,\n          \"Height\": 0.018680354580283165,\n          \"Left\": 0.34753352403640747,\n          \"Top\": 0.4168310761451721\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753382205963135,\n            \"Y\": 0.4168310761451721\n          },\n          {\n            \"X\": 0.4369121193885803,\n            \"Y\": 0.4168757498264313\n          },\n          {\n            \"X\": 0.436912477016449,\n            \"Y\": 0.43551144003868103\n          },\n          {\n            \"X\": 0.34753352403640747,\n            \"Y\": 0.4354669451713562\n          }\n        ]\n      },\n      \"Id\": \"ce713de4-61d3-408d-abcf-ce4952370093\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"19d893f3-9acd-47d3-8fad-916a2cc16911\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 71.33474731445312,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437113791704178,\n          \"Height\": 0.018687654286623,\n          \"Left\": 0.4369121193885803,\n          \"Top\": 0.4168757498264313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369121193885803,\n            \"Y\": 0.4168757498264313\n          },\n          {\n            \"X\": 0.5412821173667908,\n            \"Y\": 0.41692790389060974\n          },\n          {\n            \"X\": 0.5412832498550415,\n            \"Y\": 0.4355633854866028\n          },\n          {\n            \"X\": 0.436912477016449,\n            \"Y\": 0.43551144003868103\n          }\n        ]\n      },\n      \"Id\": \"2710ed6f-a5db-4db2-a453-1c10b01f7d60\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9dd348ff-e9ab-46d4-b297-7f9285958f0e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09789932519197464,\n          \"Height\": 0.017588969320058823,\n          \"Left\": 0.04675230756402016,\n          \"Top\": 0.43531718850135803\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046754658222198486,\n            \"Y\": 0.43531718850135803\n          },\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          },\n          {\n            \"X\": 0.14464996755123138,\n            \"Y\": 0.45290616154670715\n          },\n          {\n            \"X\": 0.04675230756402016,\n            \"Y\": 0.4528575837612152\n          }\n        ]\n      },\n      \"Id\": \"9f39db88-0513-4eaa-a3b4-ed152700aba1\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 44.48230743408203,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20288357138633728,\n          \"Height\": 0.017640884965658188,\n          \"Left\": 0.14464996755123138,\n          \"Top\": 0.4353659152984619\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446516364812851,\n            \"Y\": 0.4353659152984619\n          },\n          {\n            \"X\": 0.34753352403640747,\n            \"Y\": 0.4354669451713562\n          },\n          {\n            \"X\": 0.347533255815506,\n            \"Y\": 0.4530068039894104\n          },\n          {\n            \"X\": 0.14464996755123138,\n            \"Y\": 0.45290616154670715\n          }\n        ]\n      },\n      \"Id\": \"0321c682-802b-447a-a607-f770c20d5b11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c191ce95-28e3-46f5-ae2a-49e7a3c26f8b\",\n            \"b3676fd6-4cec-4c3e-825e-46e961fdbba8\",\n            \"3519be0d-6c77-4c32-b229-d90910e2400b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 42.48286056518555,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08937957137823105,\n          \"Height\": 0.017584223300218582,\n          \"Left\": 0.347533255815506,\n          \"Top\": 0.4354669451713562\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753352403640747,\n            \"Y\": 0.4354669451713562\n          },\n          {\n            \"X\": 0.436912477016449,\n            \"Y\": 0.43551144003868103\n          },\n          {\n            \"X\": 0.4369128346443176,\n            \"Y\": 0.4530511498451233\n          },\n          {\n            \"X\": 0.347533255815506,\n            \"Y\": 0.4530068039894104\n          }\n        ]\n      },\n      \"Id\": \"a7a9b25f-185e-4198-a473-c557a309c8f6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a4eb6f7-2bc0-457c-9033-acb9127b7014\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 67.7281265258789,\n      \"RowIndex\": 7,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437183827161789,\n          \"Height\": 0.017591506242752075,\n          \"Left\": 0.436912477016449,\n          \"Top\": 0.43551144003868103\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.436912477016449,\n            \"Y\": 0.43551144003868103\n          },\n          {\n            \"X\": 0.5412832498550415,\n            \"Y\": 0.4355633854866028\n          },\n          {\n            \"X\": 0.5412843227386475,\n            \"Y\": 0.4531029462814331\n          },\n          {\n            \"X\": 0.4369128346443176,\n            \"Y\": 0.4530511498451233\n          }\n        ]\n      },\n      \"Id\": \"dca33391-9aab-411b-a633-37c44630cec1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5a688c8-4e37-4303-91fe-0d003a034b5d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09789985418319702,\n          \"Height\": 0.016492756083607674,\n          \"Left\": 0.046750105917453766,\n          \"Top\": 0.4528575837612152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04675230756402016,\n            \"Y\": 0.4528575837612152\n          },\n          {\n            \"X\": 0.14464996755123138,\n            \"Y\": 0.45290616154670715\n          },\n          {\n            \"X\": 0.14464840292930603,\n            \"Y\": 0.46935033798217773\n          },\n          {\n            \"X\": 0.046750105917453766,\n            \"Y\": 0.4693019390106201\n          }\n        ]\n      },\n      \"Id\": \"b8d5cadf-406d-4169-b5f1-c4f6d9642cec\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 22.733474731445312,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20288486778736115,\n          \"Height\": 0.016544511541724205,\n          \"Left\": 0.14464840292930603,\n          \"Top\": 0.45290616154670715\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464996755123138,\n            \"Y\": 0.45290616154670715\n          },\n          {\n            \"X\": 0.347533255815506,\n            \"Y\": 0.4530068039894104\n          },\n          {\n            \"X\": 0.3475330173969269,\n            \"Y\": 0.4694506824016571\n          },\n          {\n            \"X\": 0.14464840292930603,\n            \"Y\": 0.46935033798217773\n          }\n        ]\n      },\n      \"Id\": \"cd16975a-3531-41d7-8000-caf7cd0c93d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dcbc8abc-3e2e-4b34-bd03-21f2300f243c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 21.711624145507812,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938014507293701,\n          \"Height\": 0.016488054767251015,\n          \"Left\": 0.3475330173969269,\n          \"Top\": 0.4530068039894104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.347533255815506,\n            \"Y\": 0.4530068039894104\n          },\n          {\n            \"X\": 0.4369128346443176,\n            \"Y\": 0.4530511498451233\n          },\n          {\n            \"X\": 0.4369131624698639,\n            \"Y\": 0.46949487924575806\n          },\n          {\n            \"X\": 0.3475330173969269,\n            \"Y\": 0.4694506824016571\n          }\n        ]\n      },\n      \"Id\": \"9ab941a0-8f5a-423c-b19a-ff1959e4a861\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 34.61366653442383,\n      \"RowIndex\": 8,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437249392271042,\n          \"Height\": 0.016495322808623314,\n          \"Left\": 0.4369128346443176,\n          \"Top\": 0.4530511498451233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369128346443176,\n            \"Y\": 0.4530511498451233\n          },\n          {\n            \"X\": 0.5412843227386475,\n            \"Y\": 0.4531029462814331\n          },\n          {\n            \"X\": 0.5412853360176086,\n            \"Y\": 0.46954646706581116\n          },\n          {\n            \"X\": 0.4369131624698639,\n            \"Y\": 0.46949487924575806\n          }\n        ]\n      },\n      \"Id\": \"85002353-90fc-4ed7-abee-9474c901a542\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0979006364941597,\n          \"Height\": 0.017589110881090164,\n          \"Left\": 0.046747758984565735,\n          \"Top\": 0.4693019390106201\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046750105917453766,\n            \"Y\": 0.4693019390106201\n          },\n          {\n            \"X\": 0.14464840292930603,\n            \"Y\": 0.46935033798217773\n          },\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          },\n          {\n            \"X\": 0.046747758984565735,\n            \"Y\": 0.4868428111076355\n          }\n        ]\n      },\n      \"Id\": \"1328d558-5f06-44df-9d79-e11767f2d33c\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 45.58561325073242,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20288628339767456,\n          \"Height\": 0.017640674486756325,\n          \"Left\": 0.14464671909809113,\n          \"Top\": 0.46935033798217773\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464840292930603,\n            \"Y\": 0.46935033798217773\n          },\n          {\n            \"X\": 0.3475330173969269,\n            \"Y\": 0.4694506824016571\n          },\n          {\n            \"X\": 0.3475327491760254,\n            \"Y\": 0.4869910180568695\n          },\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          }\n        ]\n      },\n      \"Id\": \"dc9f86f6-1fb6-476f-85bb-27be361104f3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"738681aa-f1ac-4512-b5d6-bdf633711ebb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 43.53657531738281,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938076347112656,\n          \"Height\": 0.017584392800927162,\n          \"Left\": 0.3475327491760254,\n          \"Top\": 0.4694506824016571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475330173969269,\n            \"Y\": 0.4694506824016571\n          },\n          {\n            \"X\": 0.4369131624698639,\n            \"Y\": 0.46949487924575806\n          },\n          {\n            \"X\": 0.43691352009773254,\n            \"Y\": 0.4870350658893585\n          },\n          {\n            \"X\": 0.3475327491760254,\n            \"Y\": 0.4869910180568695\n          }\n        ]\n      },\n      \"Id\": \"062ff750-f1fc-4b49-85e0-4a1d7ddb833b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f497a03-9565-4328-a4d2-7476f3aff644\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 69.40799713134766,\n      \"RowIndex\": 9,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437323898077011,\n          \"Height\": 0.017591625452041626,\n          \"Left\": 0.4369131624698639,\n          \"Top\": 0.46949487924575806\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369131624698639,\n            \"Y\": 0.46949487924575806\n          },\n          {\n            \"X\": 0.5412853360176086,\n            \"Y\": 0.46954646706581116\n          },\n          {\n            \"X\": 0.5412864089012146,\n            \"Y\": 0.4870865046977997\n          },\n          {\n            \"X\": 0.43691352009773254,\n            \"Y\": 0.4870350658893585\n          }\n        ]\n      },\n      \"Id\": \"e1302db9-5d90-47a6-8484-e1801129116f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"15961085-e3d9-412c-be71-bd4d1f78baab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0979008749127388,\n          \"Height\": 0.014300238341093063,\n          \"Left\": 0.04674585163593292,\n          \"Top\": 0.4868428111076355\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046747758984565735,\n            \"Y\": 0.4868428111076355\n          },\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          },\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          },\n          {\n            \"X\": 0.04674585163593292,\n            \"Y\": 0.5010949373245239\n          }\n        ]\n      },\n      \"Id\": \"87c445ae-1971-4de2-bb18-6688ac3c4eba\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 43.20171356201172,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2028873711824417,\n          \"Height\": 0.014351685531437397,\n          \"Left\": 0.14464536309242249,\n          \"Top\": 0.4868910610675812\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464671909809113,\n            \"Y\": 0.4868910610675812\n          },\n          {\n            \"X\": 0.3475327491760254,\n            \"Y\": 0.4869910180568695\n          },\n          {\n            \"X\": 0.3475325107574463,\n            \"Y\": 0.5012427568435669\n          },\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          }\n        ]\n      },\n      \"Id\": \"d64b0977-2050-4322-8027-6525727c80e8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"524b581c-f489-4549-816a-6ff32fd6b9a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 41.259830474853516,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938127011060715,\n          \"Height\": 0.014295629225671291,\n          \"Left\": 0.3475325107574463,\n          \"Top\": 0.4869910180568695\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475327491760254,\n            \"Y\": 0.4869910180568695\n          },\n          {\n            \"X\": 0.43691352009773254,\n            \"Y\": 0.4870350658893585\n          },\n          {\n            \"X\": 0.43691378831863403,\n            \"Y\": 0.5012866258621216\n          },\n          {\n            \"X\": 0.3475325107574463,\n            \"Y\": 0.5012427568435669\n          }\n        ]\n      },\n      \"Id\": \"37c09e9a-5d49-49fc-86a1-ef1c013245fd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3faef2bd-4810-4c22-bdf5-e1a145fd90ed\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 65.77831268310547,\n      \"RowIndex\": 10,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1043737530708313,\n          \"Height\": 0.014302869327366352,\n          \"Left\": 0.43691352009773254,\n          \"Top\": 0.4870350658893585\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43691352009773254,\n            \"Y\": 0.4870350658893585\n          },\n          {\n            \"X\": 0.5412864089012146,\n            \"Y\": 0.4870865046977997\n          },\n          {\n            \"X\": 0.5412872433662415,\n            \"Y\": 0.5013379454612732\n          },\n          {\n            \"X\": 0.43691378831863403,\n            \"Y\": 0.5012866258621216\n          }\n        ]\n      },\n      \"Id\": \"bda67168-16e5-47c6-acf5-0b2f14f9300c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0b89b5bb-443d-450f-9019-5c13641763c7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09790142625570297,\n          \"Height\": 0.014300260692834854,\n          \"Left\": 0.04674394428730011,\n          \"Top\": 0.5010949373245239\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04674585163593292,\n            \"Y\": 0.5010949373245239\n          },\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          },\n          {\n            \"X\": 0.14464400708675385,\n            \"Y\": 0.5153952240943909\n          },\n          {\n            \"X\": 0.04674394428730011,\n            \"Y\": 0.5153472423553467\n          }\n        ]\n      },\n      \"Id\": \"d3bc91b4-c4ca-4edc-b67e-30086120052a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.069332122802734,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20288851857185364,\n          \"Height\": 0.014351559802889824,\n          \"Left\": 0.14464400708675385,\n          \"Top\": 0.5011430382728577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464536309242249,\n            \"Y\": 0.5011430382728577\n          },\n          {\n            \"X\": 0.3475325107574463,\n            \"Y\": 0.5012427568435669\n          },\n          {\n            \"X\": 0.3475323021411896,\n            \"Y\": 0.5154945850372314\n          },\n          {\n            \"X\": 0.14464400708675385,\n            \"Y\": 0.5153952240943909\n          }\n        ]\n      },\n      \"Id\": \"be72e756-9113-4264-a399-d1e85f0ff04a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d30673f2-7591-47ad-aa93-ccee400eebf3\",\n            \"5381a4e9-52e8-431c-86a5-2cda7707d9b1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 45.90864944458008,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938176929950714,\n          \"Height\": 0.014295663684606552,\n          \"Left\": 0.3475323021411896,\n          \"Top\": 0.5012427568435669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475325107574463,\n            \"Y\": 0.5012427568435669\n          },\n          {\n            \"X\": 0.43691378831863403,\n            \"Y\": 0.5012866258621216\n          },\n          {\n            \"X\": 0.4369140863418579,\n            \"Y\": 0.5155383944511414\n          },\n          {\n            \"X\": 0.3475323021411896,\n            \"Y\": 0.5154945850372314\n          }\n        ]\n      },\n      \"Id\": \"b609b652-7959-4a17-88ab-675874e1f0f2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8a55bb67-248d-4465-9fee-6edee611fd01\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 73.1896743774414,\n      \"RowIndex\": 11,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437434166669846,\n          \"Height\": 0.014302882365882397,\n          \"Left\": 0.43691378831863403,\n          \"Top\": 0.5012866258621216\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43691378831863403,\n            \"Y\": 0.5012866258621216\n          },\n          {\n            \"X\": 0.5412872433662415,\n            \"Y\": 0.5013379454612732\n          },\n          {\n            \"X\": 0.5412881374359131,\n            \"Y\": 0.5155895352363586\n          },\n          {\n            \"X\": 0.4369140863418579,\n            \"Y\": 0.5155383944511414\n          }\n        ]\n      },\n      \"Id\": \"5e6be542-9d6c-45d5-b79d-707a9da80d03\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ec0a951-e801-4749-8093-acec931e3ced\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09790197014808655,\n          \"Height\": 0.01430028211325407,\n          \"Left\": 0.046742033213377,\n          \"Top\": 0.5153472423553467\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04674394428730011,\n            \"Y\": 0.5153472423553467\n          },\n          {\n            \"X\": 0.14464400708675385,\n            \"Y\": 0.5153952240943909\n          },\n          {\n            \"X\": 0.1446426510810852,\n            \"Y\": 0.5296475291252136\n          },\n          {\n            \"X\": 0.046742033213377,\n            \"Y\": 0.5295997262001038\n          }\n        ]\n      },\n      \"Id\": \"c3ecc555-fbf3-4e10-acbe-78da64e505b4\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 47.473716735839844,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20288965106010437,\n          \"Height\": 0.01435143407434225,\n          \"Left\": 0.1446426510810852,\n          \"Top\": 0.5153952240943909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14464400708675385,\n            \"Y\": 0.5153952240943909\n          },\n          {\n            \"X\": 0.3475323021411896,\n            \"Y\": 0.5154945850372314\n          },\n          {\n            \"X\": 0.34753209352493286,\n            \"Y\": 0.5297466516494751\n          },\n          {\n            \"X\": 0.1446426510810852,\n            \"Y\": 0.5296475291252136\n          }\n        ]\n      },\n      \"Id\": \"43c6bba1-5df0-4bd3-a543-6d482bbbcb1e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6aa85396-f766-4efd-9900-70c11cd5af14\",\n            \"034c02f4-f85d-4e57-b51e-267d37a79da2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 45.33980941772461,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938226848840714,\n          \"Height\": 0.014295697212219238,\n          \"Left\": 0.34753209352493286,\n          \"Top\": 0.5154945850372314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475323021411896,\n            \"Y\": 0.5154945850372314\n          },\n          {\n            \"X\": 0.4369140863418579,\n            \"Y\": 0.5155383944511414\n          },\n          {\n            \"X\": 0.4369143545627594,\n            \"Y\": 0.5297902822494507\n          },\n          {\n            \"X\": 0.34753209352493286,\n            \"Y\": 0.5297466516494751\n          }\n        ]\n      },\n      \"Id\": \"1913be6c-4188-4178-a2ef-7dcaa659fc99\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"622c0d47-0f62-424c-b6fd-c183b76c562e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 72.28280639648438,\n      \"RowIndex\": 12,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437493026256561,\n          \"Height\": 0.014302895404398441,\n          \"Left\": 0.4369140863418579,\n          \"Top\": 0.5155383944511414\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369140863418579,\n            \"Y\": 0.5155383944511414\n          },\n          {\n            \"X\": 0.5412881374359131,\n            \"Y\": 0.5155895352363586\n          },\n          {\n            \"X\": 0.5412889719009399,\n            \"Y\": 0.5298413038253784\n          },\n          {\n            \"X\": 0.4369143545627594,\n            \"Y\": 0.5297902822494507\n          }\n        ]\n      },\n      \"Id\": \"13931b14-3987-4cc9-9027-e96e5bc01c95\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1869ba4b-8b76-4ace-993f-3f24c4856dcc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09790369868278503,\n          \"Height\": 0.02307114005088806,\n          \"Left\": 0.04673895239830017,\n          \"Top\": 0.5295997262001038\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046742033213377,\n            \"Y\": 0.5295997262001038\n          },\n          {\n            \"X\": 0.1446426510810852,\n            \"Y\": 0.5296475291252136\n          },\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          },\n          {\n            \"X\": 0.04673895239830017,\n            \"Y\": 0.5526232123374939\n          }\n        ]\n      },\n      \"Id\": \"a1eedf2e-181b-4a4f-a1de-90ff45b3c2f0\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 50.93214416503906,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20289163291454315,\n          \"Height\": 0.023121967911720276,\n          \"Left\": 0.1446404606103897,\n          \"Top\": 0.5296475291252136\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446426510810852,\n            \"Y\": 0.5296475291252136\n          },\n          {\n            \"X\": 0.34753209352493286,\n            \"Y\": 0.5297466516494751\n          },\n          {\n            \"X\": 0.3475317358970642,\n            \"Y\": 0.5527694821357727\n          },\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          }\n        ]\n      },\n      \"Id\": \"846be2d7-f4fe-4341-954b-af80d629ac1f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c89adf05-f928-4844-8c2d-5451b74fb8bb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 48.64278793334961,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0893830806016922,\n          \"Height\": 0.023066313937306404,\n          \"Left\": 0.3475317358970642,\n          \"Top\": 0.5297466516494751\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753209352493286,\n            \"Y\": 0.5297466516494751\n          },\n          {\n            \"X\": 0.4369143545627594,\n            \"Y\": 0.5297902822494507\n          },\n          {\n            \"X\": 0.4369148015975952,\n            \"Y\": 0.552812933921814\n          },\n          {\n            \"X\": 0.3475317358970642,\n            \"Y\": 0.5527694821357727\n          }\n        ]\n      },\n      \"Id\": \"052cc3ab-101e-4f8a-93cb-b7b7401ba541\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8aebe610-8ab7-4c10-a49d-35e897f5d327\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 77.5485610961914,\n      \"RowIndex\": 13,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437604784965515,\n          \"Height\": 0.023073401302099228,\n          \"Left\": 0.4369143545627594,\n          \"Top\": 0.5297902822494507\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369143545627594,\n            \"Y\": 0.5297902822494507\n          },\n          {\n            \"X\": 0.5412889719009399,\n            \"Y\": 0.5298413038253784\n          },\n          {\n            \"X\": 0.5412904024124146,\n            \"Y\": 0.5528637170791626\n          },\n          {\n            \"X\": 0.4369148015975952,\n            \"Y\": 0.552812933921814\n          }\n        ]\n      },\n      \"Id\": \"2c45d30f-e0a9-4495-a2fb-edabba1dde19\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7943e5ff-4a39-43b7-a5e6-70f1b4e6fcba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09790370613336563,\n          \"Height\": 0.01649308390915394,\n          \"Left\": 0.04673675075173378,\n          \"Top\": 0.5526232123374939\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04673895239830017,\n            \"Y\": 0.5526232123374939\n          },\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          },\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          },\n          {\n            \"X\": 0.04673675075173378,\n            \"Y\": 0.5690688490867615\n          }\n        ]\n      },\n      \"Id\": \"a870a822-2408-47e2-8e13-cf938d67cd6c\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 27.026779174804688,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20289283990859985,\n          \"Height\": 0.016543803736567497,\n          \"Left\": 0.14463888108730316,\n          \"Top\": 0.5526708364486694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446404606103897,\n            \"Y\": 0.5526708364486694\n          },\n          {\n            \"X\": 0.3475317358970642,\n            \"Y\": 0.5527694821357727\n          },\n          {\n            \"X\": 0.3475314676761627,\n            \"Y\": 0.5692146420478821\n          },\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          }\n        ]\n      },\n      \"Id\": \"8d224b02-7251-4383-a61d-ed196a3989d1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fedaeef5-b806-48b0-9fdf-589c859b443a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 25.81194305419922,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938366174697876,\n          \"Height\": 0.016488466411828995,\n          \"Left\": 0.3475314676761627,\n          \"Top\": 0.5527694821357727\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475317358970642,\n            \"Y\": 0.5527694821357727\n          },\n          {\n            \"X\": 0.4369148015975952,\n            \"Y\": 0.552812933921814\n          },\n          {\n            \"X\": 0.4369151294231415,\n            \"Y\": 0.5692579746246338\n          },\n          {\n            \"X\": 0.3475314676761627,\n            \"Y\": 0.5692146420478821\n          }\n        ]\n      },\n      \"Id\": \"cf385359-a697-4546-b913-fc7b46936656\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 41.15058517456055,\n      \"RowIndex\": 14,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437659174203873,\n          \"Height\": 0.016495587304234505,\n          \"Left\": 0.4369148015975952,\n          \"Top\": 0.552812933921814\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369148015975952,\n            \"Y\": 0.552812933921814\n          },\n          {\n            \"X\": 0.5412904024124146,\n            \"Y\": 0.5528637170791626\n          },\n          {\n            \"X\": 0.5412914156913757,\n            \"Y\": 0.5693085193634033\n          },\n          {\n            \"X\": 0.4369151294231415,\n            \"Y\": 0.5692579746246338\n          }\n        ]\n      },\n      \"Id\": \"32f326da-4ca9-4855-b3f1-8f13a3ea1134\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09790360182523727,\n          \"Height\": 0.01101121585816145,\n          \"Left\": 0.046735282987356186,\n          \"Top\": 0.5690688490867615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04673675075173378,\n            \"Y\": 0.5690688490867615\n          },\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          },\n          {\n            \"X\": 0.1446378380060196,\n            \"Y\": 0.5800800919532776\n          },\n          {\n            \"X\": 0.046735282987356186,\n            \"Y\": 0.5800327658653259\n          }\n        ]\n      },\n      \"Id\": \"fd81a676-c679-48b8-99a1-cf93b587508a\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 19.33024787902832,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20289362967014313,\n          \"Height\": 0.011061876080930233,\n          \"Left\": 0.1446378380060196,\n          \"Top\": 0.5691162943840027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14463888108730316,\n            \"Y\": 0.5691162943840027\n          },\n          {\n            \"X\": 0.3475314676761627,\n            \"Y\": 0.5692146420478821\n          },\n          {\n            \"X\": 0.3475313186645508,\n            \"Y\": 0.5801782011985779\n          },\n          {\n            \"X\": 0.1446378380060196,\n            \"Y\": 0.5800800919532776\n          }\n        ]\n      },\n      \"Id\": \"c4ff04b4-1a56-4dcd-aad1-4d9c2a4c4747\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afa302f2-0027-4850-a3dd-cbac8bab19e6\",\n            \"883a5f20-8b8a-47ed-8759-d1734c408e65\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 31.584352493286133,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0893840491771698,\n          \"Height\": 0.011006771586835384,\n          \"Left\": 0.3475313186645508,\n          \"Top\": 0.5692146420478821\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475314676761627,\n            \"Y\": 0.5692146420478821\n          },\n          {\n            \"X\": 0.4369151294231415,\n            \"Y\": 0.5692579746246338\n          },\n          {\n            \"X\": 0.4369153380393982,\n            \"Y\": 0.58022141456604\n          },\n          {\n            \"X\": 0.3475313186645508,\n            \"Y\": 0.5801782011985779\n          }\n        ]\n      },\n      \"Id\": \"8048ddf3-856d-43c7-bc38-b6b8d378ab4d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5ca99e6-3de1-497b-94ff-c3220e32795e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 29.43195915222168,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437693446874619,\n          \"Height\": 0.011013924144208431,\n          \"Left\": 0.4369151294231415,\n          \"Top\": 0.5692579746246338\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369151294231415,\n            \"Y\": 0.5692579746246338\n          },\n          {\n            \"X\": 0.5412914156913757,\n            \"Y\": 0.5693085193634033\n          },\n          {\n            \"X\": 0.5412920713424683,\n            \"Y\": 0.5802718997001648\n          },\n          {\n            \"X\": 0.4369153380393982,\n            \"Y\": 0.58022141456604\n          }\n        ]\n      },\n      \"Id\": \"a2838e3f-9086-4613-b904-198260efe0ad\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 16,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09790417551994324,\n          \"Height\": 0.01210759673267603,\n          \"Left\": 0.04673366621136665,\n          \"Top\": 0.5800327658653259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046735282987356186,\n            \"Y\": 0.5800327658653259\n          },\n          {\n            \"X\": 0.1446378380060196,\n            \"Y\": 0.5800800919532776\n          },\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          },\n          {\n            \"X\": 0.04673366621136665,\n            \"Y\": 0.5920931100845337\n          }\n        ]\n      },\n      \"Id\": \"9e8601d9-19d6-4332-9c04-f5ef13fce3a7\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 20.968103408813477,\n      \"RowIndex\": 16,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20289461314678192,\n          \"Height\": 0.012158120982348919,\n          \"Left\": 0.14463669061660767,\n          \"Top\": 0.5800800919532776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1446378380060196,\n            \"Y\": 0.5800800919532776\n          },\n          {\n            \"X\": 0.3475313186645508,\n            \"Y\": 0.5801782011985779\n          },\n          {\n            \"X\": 0.34753111004829407,\n            \"Y\": 0.592238187789917\n          },\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          }\n        ]\n      },\n      \"Id\": \"7fc1e5e3-0640-4c0f-9576-0f3340bfb9f4\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 31.584352493286133,\n      \"RowIndex\": 16,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938446640968323,\n          \"Height\": 0.012103129178285599,\n          \"Left\": 0.34753111004829407,\n          \"Top\": 0.5801782011985779\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475313186645508,\n            \"Y\": 0.5801782011985779\n          },\n          {\n            \"X\": 0.4369153380393982,\n            \"Y\": 0.58022141456604\n          },\n          {\n            \"X\": 0.4369155764579773,\n            \"Y\": 0.5922813415527344\n          },\n          {\n            \"X\": 0.34753111004829407,\n            \"Y\": 0.592238187789917\n          }\n        ]\n      },\n      \"Id\": \"a76271b0-341a-4d6a-9028-5dd6cf8107e3\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 31.925735473632812,\n      \"RowIndex\": 16,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437745600938797,\n          \"Height\": 0.012110254727303982,\n          \"Left\": 0.4369153380393982,\n          \"Top\": 0.58022141456604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369153380393982,\n            \"Y\": 0.58022141456604\n          },\n          {\n            \"X\": 0.5412920713424683,\n            \"Y\": 0.5802718997001648\n          },\n          {\n            \"X\": 0.5412927865982056,\n            \"Y\": 0.5923316478729248\n          },\n          {\n            \"X\": 0.4369155764579773,\n            \"Y\": 0.5922813415527344\n          }\n        ]\n      },\n      \"Id\": \"1d2d464e-6806-4bb6-be21-f7e787737d15\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 17,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0979052260518074,\n          \"Height\": 0.016493212431669235,\n          \"Left\": 0.04673146456480026,\n          \"Top\": 0.5920931100845337\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04673366621136665,\n            \"Y\": 0.5920931100845337\n          },\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          },\n          {\n            \"X\": 0.1446351259946823,\n            \"Y\": 0.608586311340332\n          },\n          {\n            \"X\": 0.04673146456480026,\n            \"Y\": 0.6085392832756042\n          }\n        ]\n      },\n      \"Id\": \"93b0e002-c686-47a9-b3b4-8fa73a8e716b\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 31.109142303466797,\n      \"RowIndex\": 17,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20289601385593414,\n          \"Height\": 0.01666110008955002,\n          \"Left\": 0.14463511109352112,\n          \"Top\": 0.5921403169631958\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14463669061660767,\n            \"Y\": 0.5921403169631958\n          },\n          {\n            \"X\": 0.34753111004829407,\n            \"Y\": 0.592238187789917\n          },\n          {\n            \"X\": 0.34753087162971497,\n            \"Y\": 0.6088014245033264\n          },\n          {\n            \"X\": 0.14463511109352112,\n            \"Y\": 0.6087039113044739\n          }\n        ]\n      },\n      \"Id\": \"96d383c3-13ec-4778-a2bf-0ecac1163c5c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f854bcdb-5bff-4097-aebd-ea66e02bfd7c\",\n            \"b6c893d0-a11b-49e3-8689-7cc319bbd1fa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 29.710811614990234,\n      \"RowIndex\": 17,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938505500555038,\n          \"Height\": 0.016606202349066734,\n          \"Left\": 0.34753087162971497,\n          \"Top\": 0.592238187789917\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34753111004829407,\n            \"Y\": 0.592238187789917\n          },\n          {\n            \"X\": 0.4369155764579773,\n            \"Y\": 0.5922813415527344\n          },\n          {\n            \"X\": 0.43691590428352356,\n            \"Y\": 0.6088443994522095\n          },\n          {\n            \"X\": 0.34753087162971497,\n            \"Y\": 0.6088014245033264\n          }\n        ]\n      },\n      \"Id\": \"1071e586-6f09-4c6a-b6c6-97139db43d34\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f9ab73b-dff5-4d82-809f-b4924feb4d07\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 47.366336822509766,\n      \"RowIndex\": 17,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10437822341918945,\n          \"Height\": 0.01661326363682747,\n          \"Left\": 0.4369155764579773,\n          \"Top\": 0.5922813415527344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4369155764579773,\n            \"Y\": 0.5922813415527344\n          },\n          {\n            \"X\": 0.5412927865982056,\n            \"Y\": 0.5923316478729248\n          },\n          {\n            \"X\": 0.5412937998771667,\n            \"Y\": 0.6088945865631104\n          },\n          {\n            \"X\": 0.43691590428352356,\n            \"Y\": 0.6088443994522095\n          }\n        ]\n      },\n      \"Id\": \"17f6dc56-1d2b-43e3-b776-5b3ab05b64af\"\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 38.706573486328125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 3,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3966192901134491,\n          \"Height\": 0.008447636850178242,\n          \"Left\": 0.144659161567688,\n          \"Top\": 0.3481908142566681\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14465995132923126,\n            \"Y\": 0.3481908142566681\n          },\n          {\n            \"X\": 0.5412779450416565,\n            \"Y\": 0.34839168190956116\n          },\n          {\n            \"X\": 0.5412784814834595,\n            \"Y\": 0.35663843154907227\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          }\n        ]\n      },\n      \"Id\": \"6dc0b328-13b1-4d54-8fc2-34bcf11095f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b32576ad-3b3b-4a05-8d39-14110444d67e\",\n            \"b851de4b-254f-4c80-b9fb-18038c171840\",\n            \"f4351dc6-659e-4438-9ad3-060762a06762\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 52.80290222167969,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 16,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09853213280439377,\n          \"Height\": 0.25231581926345825,\n          \"Left\": 0.04612702503800392,\n          \"Top\": 0.3563880920410156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04616085812449455,\n            \"Y\": 0.3563880920410156\n          },\n          {\n            \"X\": 0.144659161567688,\n            \"Y\": 0.35643789172172546\n          },\n          {\n            \"X\": 0.14463511109352112,\n            \"Y\": 0.6087039113044739\n          },\n          {\n            \"X\": 0.04612702503800392,\n            \"Y\": 0.6086565852165222\n          }\n        ]\n      },\n      \"Id\": \"34ea651a-87aa-444c-80de-5323a56531d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"45305f97-688e-4b57-97e5-c4966a4e7884\",\n            \"c3be1a6e-1d28-4bd1-9996-f6cc9a68a1d6\",\n            \"6214943d-671c-4669-bc65-d9b0cd7f32a4\",\n            \"bf0cd0da-ea83-4dd5-86d8-38782ad9453d\",\n            \"11d8e6c5-9956-4549-81be-46727ae3c6e0\",\n            \"9f39db88-0513-4eaa-a3b4-ed152700aba1\",\n            \"b8d5cadf-406d-4169-b5f1-c4f6d9642cec\",\n            \"1328d558-5f06-44df-9d79-e11767f2d33c\",\n            \"87c445ae-1971-4de2-bb18-6688ac3c4eba\",\n            \"d3bc91b4-c4ca-4edc-b67e-30086120052a\",\n            \"c3ecc555-fbf3-4e10-acbe-78da64e505b4\",\n            \"a1eedf2e-181b-4a4f-a1de-90ff45b3c2f0\",\n            \"a870a822-2408-47e2-8e13-cf938d67cd6c\",\n            \"fd81a676-c679-48b8-99a1-cf93b587508a\",\n            \"9e8601d9-19d6-4332-9c04-f5ef13fce3a7\",\n            \"93b0e002-c686-47a9-b3b4-8fa73a8e716b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 31.584352493286133,\n      \"RowIndex\": 15,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 2,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08938446640968323,\n          \"Height\": 0.023066680878400803,\n          \"Left\": 0.34753111004829407,\n          \"Top\": 0.5692146420478821\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3475314676761627,\n            \"Y\": 0.5692146420478821\n          },\n          {\n            \"X\": 0.4369151294231415,\n            \"Y\": 0.5692579746246338\n          },\n          {\n            \"X\": 0.4369155764579773,\n            \"Y\": 0.5922813415527344\n          },\n          {\n            \"X\": 0.34753111004829407,\n            \"Y\": 0.592238187789917\n          }\n        ]\n      },\n      \"Id\": \"fafba93a-a085-4c38-9121-90029225d640\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8048ddf3-856d-43c7-bc38-b6b8d378ab4d\",\n            \"a76271b0-341a-4d6a-9028-5dd6cf8107e3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 91.7267074584961,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.26419973373413086,\n          \"Height\": 0.04257962480187416,\n          \"Left\": 0.5763026475906372,\n          \"Top\": 0.7280915975570679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5763026475906372,\n            \"Y\": 0.7280915975570679\n          },\n          {\n            \"X\": 0.8404947519302368,\n            \"Y\": 0.7282154560089111\n          },\n          {\n            \"X\": 0.8405023813247681,\n            \"Y\": 0.7706712484359741\n          },\n          {\n            \"X\": 0.5763058066368103,\n            \"Y\": 0.7705484628677368\n          }\n        ]\n      },\n      \"Id\": \"0cdf0585-b4cc-41e3-91cc-508db5900b6c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5a90bb12-9787-400b-ba6d-5d7dcea5b035\",\n            \"c6d2fe80-a76f-433c-babc-84319f24a1c7\",\n            \"76287e1a-7edc-47ba-9613-66bc183a81bf\",\n            \"5e59a457-cd05-4577-b1b4-ec07ca90260b\",\n            \"497b8a1b-c231-460b-8cf8-63aca58db570\",\n            \"132cce81-978a-4848-bfc9-83831a84709d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.61872100830078,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1727580726146698,\n          \"Height\": 0.013449475169181824,\n          \"Left\": 0.5763026475906372,\n          \"Top\": 0.7280915975570679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5763026475906372,\n            \"Y\": 0.7280915975570679\n          },\n          {\n            \"X\": 0.7490587830543518,\n            \"Y\": 0.7281726002693176\n          },\n          {\n            \"X\": 0.7490606904029846,\n            \"Y\": 0.7415410876274109\n          },\n          {\n            \"X\": 0.5763036012649536,\n            \"Y\": 0.7414603233337402\n          }\n        ]\n      },\n      \"Id\": \"5a90bb12-9787-400b-ba6d-5d7dcea5b035\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef459bf4-39a9-4605-b5e3-a6ec71ada8a3\",\n            \"101aaf0d-2770-4108-8d42-44842ffd4f57\",\n            \"77ba268f-1a09-45b4-8d85-f7c7c94b6e6d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.64286041259766,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09143836051225662,\n          \"Height\": 0.013411222957074642,\n          \"Left\": 0.7490587830543518,\n          \"Top\": 0.7281726002693176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7490587830543518,\n            \"Y\": 0.7281726002693176\n          },\n          {\n            \"X\": 0.8404947519302368,\n            \"Y\": 0.7282154560089111\n          },\n          {\n            \"X\": 0.8404971361160278,\n            \"Y\": 0.7415838241577148\n          },\n          {\n            \"X\": 0.7490606904029846,\n            \"Y\": 0.7415410876274109\n          }\n        ]\n      },\n      \"Id\": \"c6d2fe80-a76f-433c-babc-84319f24a1c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c9040c00-22f4-4521-b5e4-8f7b8da59eaa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.94145202636719,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1727592647075653,\n          \"Height\": 0.01543124858289957,\n          \"Left\": 0.5763036012649536,\n          \"Top\": 0.7414603233337402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5763036012649536,\n            \"Y\": 0.7414603233337402\n          },\n          {\n            \"X\": 0.7490606904029846,\n            \"Y\": 0.7415410876274109\n          },\n          {\n            \"X\": 0.7490628957748413,\n            \"Y\": 0.7568915486335754\n          },\n          {\n            \"X\": 0.5763047933578491,\n            \"Y\": 0.7568110227584839\n          }\n        ]\n      },\n      \"Id\": \"76287e1a-7edc-47ba-9613-66bc183a81bf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5bbf1d68-23e7-4668-b0fd-bfb8c2229ce9\",\n            \"2b58335d-96ef-4d52-8ca3-a4e3ac355e98\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.04918670654297,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09143919497728348,\n          \"Height\": 0.015393085777759552,\n          \"Left\": 0.7490606904029846,\n          \"Top\": 0.7415410876274109\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7490606904029846,\n            \"Y\": 0.7415410876274109\n          },\n          {\n            \"X\": 0.8404971361160278,\n            \"Y\": 0.7415838241577148\n          },\n          {\n            \"X\": 0.8404998779296875,\n            \"Y\": 0.7569341659545898\n          },\n          {\n            \"X\": 0.7490628957748413,\n            \"Y\": 0.7568915486335754\n          }\n        ]\n      },\n      \"Id\": \"5e59a457-cd05-4577-b1b4-ec07ca90260b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4142b714-81fd-452b-8cce-5fdfea36ebd1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.18531036376953,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17276008427143097,\n          \"Height\": 0.01381770335137844,\n          \"Left\": 0.5763047933578491,\n          \"Top\": 0.7568110227584839\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5763047933578491,\n            \"Y\": 0.7568110227584839\n          },\n          {\n            \"X\": 0.7490628957748413,\n            \"Y\": 0.7568915486335754\n          },\n          {\n            \"X\": 0.7490648627281189,\n            \"Y\": 0.7706287503242493\n          },\n          {\n            \"X\": 0.5763058066368103,\n            \"Y\": 0.7705484628677368\n          }\n        ]\n      },\n      \"Id\": \"497b8a1b-c231-460b-8cf8-63aca58db570\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6d70ca53-9b7a-4191-8be1-5cecd82b8ca6\",\n            \"ab1ae090-9afb-467c-8bd1-d0a5135a5a59\",\n            \"301ebe2f-65bc-4fc4-baf6-a9b5a8bf8db8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 85.24683380126953,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09143946319818497,\n          \"Height\": 0.013779678381979465,\n          \"Left\": 0.7490628957748413,\n          \"Top\": 0.7568915486335754\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7490628957748413,\n            \"Y\": 0.7568915486335754\n          },\n          {\n            \"X\": 0.8404998779296875,\n            \"Y\": 0.7569341659545898\n          },\n          {\n            \"X\": 0.8405023813247681,\n            \"Y\": 0.7706712484359741\n          },\n          {\n            \"X\": 0.7490648627281189,\n            \"Y\": 0.7706287503242493\n          }\n        ]\n      },\n      \"Id\": \"132cce81-978a-4848-bfc9-83831a84709d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d41aeb06-ae44-4560-9d09-605f8d9aad58\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 79.26332092285156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.9066179394721985,\n          \"Height\": 0.049015309661626816,\n          \"Left\": 0.04976870119571686,\n          \"Top\": 0.801758885383606\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.049775149673223495,\n            \"Y\": 0.801758885383606\n          },\n          {\n            \"X\": 0.956375777721405,\n            \"Y\": 0.802177369594574\n          },\n          {\n            \"X\": 0.9563866853713989,\n            \"Y\": 0.8507741689682007\n          },\n          {\n            \"X\": 0.04976870119571686,\n            \"Y\": 0.850360095500946\n          }\n        ]\n      },\n      \"Id\": \"8e6e4115-e4f1-46fc-b3ae-e18ddf51eb4a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e6259ea-7535-425d-8aa8-2b8255ddb894\",\n            \"337da243-3273-4bd4-9924-e1412b9ff186\",\n            \"819b6d47-638c-439c-939c-a07662e26191\",\n            \"7b3b109e-8507-454c-9704-6e25bef1e5e5\",\n            \"fba8ad79-ede6-4dc0-a91e-2aa94b1484f0\",\n            \"6096de89-ef7f-4a7e-9a5b-66d6706e5421\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 81.9457778930664,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09910139441490173,\n          \"Height\": 0.02174326591193676,\n          \"Left\": 0.049772270023822784,\n          \"Top\": 0.801758885383606\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.049775149673223495,\n            \"Y\": 0.801758885383606\n          },\n          {\n            \"X\": 0.14887367188930511,\n            \"Y\": 0.8018046021461487\n          },\n          {\n            \"X\": 0.14887163043022156,\n            \"Y\": 0.8235021233558655\n          },\n          {\n            \"X\": 0.049772270023822784,\n            \"Y\": 0.8234566450119019\n          }\n        ]\n      },\n      \"Id\": \"9e6259ea-7535-425d-8aa8-2b8255ddb894\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"114cf0da-7ff1-408f-a449-64176d973dab\",\n            \"c0f4e6f0-40ee-45d1-a629-911b096b13fc\",\n            \"4c27ef63-ec15-4762-849f-5c8dc64cb4d3\",\n            \"520aae23-fe74-4e98-b435-c940cae5069c\",\n            \"8b618eb6-4057-472e-ac0c-ff5887d43806\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.97335815429688,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6824923157691956,\n          \"Height\": 0.022011086344718933,\n          \"Left\": 0.14887163043022156,\n          \"Top\": 0.8018046021461487\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14887367188930511,\n            \"Y\": 0.8018046021461487\n          },\n          {\n            \"X\": 0.8313601016998291,\n            \"Y\": 0.8021196722984314\n          },\n          {\n            \"X\": 0.8313639163970947,\n            \"Y\": 0.8238157033920288\n          },\n          {\n            \"X\": 0.14887163043022156,\n            \"Y\": 0.8235021233558655\n          }\n        ]\n      },\n      \"Id\": \"337da243-3273-4bd4-9924-e1412b9ff186\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e5db8fa7-2ea7-44b3-a2a6-c019421edc44\",\n            \"fd00bebf-5bf6-49cc-aaf1-6b8cb482b0ce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 71.52046203613281,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12502050399780273,\n          \"Height\": 0.021753497421741486,\n          \"Left\": 0.8313601016998291,\n          \"Top\": 0.8021196722984314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8313601016998291,\n            \"Y\": 0.8021196722984314\n          },\n          {\n            \"X\": 0.956375777721405,\n            \"Y\": 0.802177369594574\n          },\n          {\n            \"X\": 0.9563806056976318,\n            \"Y\": 0.8238731622695923\n          },\n          {\n            \"X\": 0.8313639163970947,\n            \"Y\": 0.8238157033920288\n          }\n        ]\n      },\n      \"Id\": \"819b6d47-638c-439c-939c-a07662e26191\"\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 82.68229675292969,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0991029292345047,\n          \"Height\": 0.0269487202167511,\n          \"Left\": 0.04976870119571686,\n          \"Top\": 0.8234566450119019\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.049772270023822784,\n            \"Y\": 0.8234566450119019\n          },\n          {\n            \"X\": 0.14887163043022156,\n            \"Y\": 0.8235021233558655\n          },\n          {\n            \"X\": 0.1488691121339798,\n            \"Y\": 0.8504053354263306\n          },\n          {\n            \"X\": 0.04976870119571686,\n            \"Y\": 0.850360095500946\n          }\n        ]\n      },\n      \"Id\": \"7b3b109e-8507-454c-9704-6e25bef1e5e5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"843bd1f0-3745-4f39-aa6b-d6cf459a385c\",\n            \"371ad7dd-075d-4bb6-96c4-b2569451fdcf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.77304077148438,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6824995279312134,\n          \"Height\": 0.027214938774704933,\n          \"Left\": 0.1488691121339798,\n          \"Top\": 0.8235021233558655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14887163043022156,\n            \"Y\": 0.8235021233558655\n          },\n          {\n            \"X\": 0.8313639163970947,\n            \"Y\": 0.8238157033920288\n          },\n          {\n            \"X\": 0.831368625164032,\n            \"Y\": 0.8507170677185059\n          },\n          {\n            \"X\": 0.1488691121339798,\n            \"Y\": 0.8504053354263306\n          }\n        ]\n      },\n      \"Id\": \"fba8ad79-ede6-4dc0-a91e-2aa94b1484f0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c939ea3d-6872-4bba-ab37-e4ec94212aaf\",\n            \"ec0b346a-6001-47c7-92e6-fdbd68a23110\",\n            \"67c289af-f854-4383-a8f5-dfdfb11f9189\",\n            \"9e518b3c-e856-4d4d-9c8b-5cffe0ab42a9\",\n            \"aecd0d14-7bc5-4e79-a6b2-c3daf5fb644c\",\n            \"e27da746-3afe-4e94-b159-8ce40130b698\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 72.16328430175781,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1250227391719818,\n          \"Height\": 0.02695848047733307,\n          \"Left\": 0.8313639163970947,\n          \"Top\": 0.8238157033920288\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8313639163970947,\n            \"Y\": 0.8238157033920288\n          },\n          {\n            \"X\": 0.9563806056976318,\n            \"Y\": 0.8238731622695923\n          },\n          {\n            \"X\": 0.9563866853713989,\n            \"Y\": 0.8507741689682007\n          },\n          {\n            \"X\": 0.831368625164032,\n            \"Y\": 0.8507170677185059\n          }\n        ]\n      },\n      \"Id\": \"6096de89-ef7f-4a7e-9a5b-66d6706e5421\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"20eaf3c5-8b02-40aa-9362-a835a93de775\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.69062805175781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06576777249574661,\n          \"Height\": 0.013009188696742058,\n          \"Left\": 0.5791708827018738,\n          \"Top\": 0.08746793121099472\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5791708827018738,\n            \"Y\": 0.08746793121099472\n          },\n          {\n            \"X\": 0.6449373364448547,\n            \"Y\": 0.08750294148921967\n          },\n          {\n            \"X\": 0.6449386477470398,\n            \"Y\": 0.10047712177038193\n          },\n          {\n            \"X\": 0.5791718363761902,\n            \"Y\": 0.10044219344854355\n          }\n        ]\n      },\n      \"Id\": \"35bb72ee-e66b-4773-bf58-a31e363e1ff5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"a6d93ffa-34b4-4609-9c2a-d7c330030f11\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f764d32-b7f3-4e26-a752-e6a094610b34\",\n            \"2b088102-6131-4637-8aa2-ef349268b49f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.69062805175781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06962206214666367,\n          \"Height\": 0.010751952417194843,\n          \"Left\": 0.7465397119522095,\n          \"Top\": 0.08758439868688583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7465397119522095,\n            \"Y\": 0.08758439868688583\n          },\n          {\n            \"X\": 0.8161599636077881,\n            \"Y\": 0.08762145787477493\n          },\n          {\n            \"X\": 0.8161617517471313,\n            \"Y\": 0.0983363464474678\n          },\n          {\n            \"X\": 0.7465412020683289,\n            \"Y\": 0.09829936176538467\n          }\n        ]\n      },\n      \"Id\": \"a6d93ffa-34b4-4609-9c2a-d7c330030f11\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b7b80fcc-3ee0-40fd-89dc-ecc8186ca4b9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.22034454345703,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16570276021957397,\n          \"Height\": 0.013010509312152863,\n          \"Left\": 0.5767516493797302,\n          \"Top\": 0.7283569574356079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5767516493797302,\n            \"Y\": 0.7283569574356079\n          },\n          {\n            \"X\": 0.7424525618553162,\n            \"Y\": 0.7284346222877502\n          },\n          {\n            \"X\": 0.7424543499946594,\n            \"Y\": 0.7413674592971802\n          },\n          {\n            \"X\": 0.5767526030540466,\n            \"Y\": 0.7412899732589722\n          }\n        ]\n      },\n      \"Id\": \"d806b3a5-755d-4634-b91c-964c98962dd1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"57a56db6-31a0-4bf9-abef-ff006331cdab\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ef459bf4-39a9-4605-b5e3-a6ec71ada8a3\",\n            \"101aaf0d-2770-4108-8d42-44842ffd4f57\",\n            \"77ba268f-1a09-45b4-8d85-f7c7c94b6e6d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.22034454345703,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08278586715459824,\n          \"Height\": 0.009954879060387611,\n          \"Left\": 0.7582829594612122,\n          \"Top\": 0.728904128074646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7582829594612122,\n            \"Y\": 0.728904128074646\n          },\n          {\n            \"X\": 0.8410670161247253,\n            \"Y\": 0.7289429306983948\n          },\n          {\n            \"X\": 0.8410688042640686,\n            \"Y\": 0.7388589978218079\n          },\n          {\n            \"X\": 0.7582843899726868,\n            \"Y\": 0.7388202548027039\n          }\n        ]\n      },\n      \"Id\": \"57a56db6-31a0-4bf9-abef-ff006331cdab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c9040c00-22f4-4521-b5e4-8f7b8da59eaa\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.0018310546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10009650141000748,\n          \"Height\": 0.01302455086261034,\n          \"Left\": 0.5784713625907898,\n          \"Top\": 0.07190907746553421\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5784713625907898,\n            \"Y\": 0.07190907746553421\n          },\n          {\n            \"X\": 0.6785663962364197,\n            \"Y\": 0.07196251302957535\n          },\n          {\n            \"X\": 0.6785678863525391,\n            \"Y\": 0.08493363112211227\n          },\n          {\n            \"X\": 0.5784723162651062,\n            \"Y\": 0.08488032221794128\n          }\n        ]\n      },\n      \"Id\": \"ae8d8a25-af3b-49ac-a435-4552758d90de\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"60484c5e-993a-4b5e-8a1a-d4bf1f1f6e03\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7cc14f2f-4771-4dbd-b814-9b39a2f421ac\",\n            \"b0f28755-3f57-4346-ac3b-39fdd681e9df\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.0018310546875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07054593414068222,\n          \"Height\": 0.010492264293134212,\n          \"Left\": 0.7455787062644958,\n          \"Top\": 0.0721767470240593\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7455787062644958,\n            \"Y\": 0.0721767470240593\n          },\n          {\n            \"X\": 0.8161228895187378,\n            \"Y\": 0.07221440225839615\n          },\n          {\n            \"X\": 0.816124677658081,\n            \"Y\": 0.08266901224851608\n          },\n          {\n            \"X\": 0.7455801963806152,\n            \"Y\": 0.0826314240694046\n          }\n        ]\n      },\n      \"Id\": \"60484c5e-993a-4b5e-8a1a-d4bf1f1f6e03\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"31ef405e-dd9a-4539-921c-3ae6c4732a9f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.88318634033203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06508032977581024,\n          \"Height\": 0.012307059019804,\n          \"Left\": 0.5785074830055237,\n          \"Top\": 0.7440122365951538\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5785074830055237,\n            \"Y\": 0.7440122365951538\n          },\n          {\n            \"X\": 0.6435865759849548,\n            \"Y\": 0.7440426349639893\n          },\n          {\n            \"X\": 0.6435878276824951,\n            \"Y\": 0.7563192844390869\n          },\n          {\n            \"X\": 0.5785084366798401,\n            \"Y\": 0.756289005279541\n          }\n        ]\n      },\n      \"Id\": \"27bef7d0-a793-4045-94b6-591ab6a4bd86\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"12c0f2fd-20ca-4ccc-b42e-d15e481debaf\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5bbf1d68-23e7-4668-b0fd-bfb8c2229ce9\",\n            \"2b58335d-96ef-4d52-8ca3-a4e3ac355e98\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.88318634033203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0672643780708313,\n          \"Height\": 0.010203009471297264,\n          \"Left\": 0.7596192359924316,\n          \"Top\": 0.7441241145133972\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7596192359924316,\n            \"Y\": 0.7441241145133972\n          },\n          {\n            \"X\": 0.8268818855285645,\n            \"Y\": 0.7441555857658386\n          },\n          {\n            \"X\": 0.8268836140632629,\n            \"Y\": 0.754327118396759\n          },\n          {\n            \"X\": 0.759620726108551,\n            \"Y\": 0.7542957663536072\n          }\n        ]\n      },\n      \"Id\": \"12c0f2fd-20ca-4ccc-b42e-d15e481debaf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4142b714-81fd-452b-8cce-5fdfea36ebd1\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.55244445800781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13346359133720398,\n          \"Height\": 0.012688427232205868,\n          \"Left\": 0.577256441116333,\n          \"Top\": 0.7590189576148987\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.577256441116333,\n            \"Y\": 0.7590189576148987\n          },\n          {\n            \"X\": 0.7107184529304504,\n            \"Y\": 0.7590811252593994\n          },\n          {\n            \"X\": 0.7107200622558594,\n            \"Y\": 0.7717074155807495\n          },\n          {\n            \"X\": 0.5772573947906494,\n            \"Y\": 0.7716453671455383\n          }\n        ]\n      },\n      \"Id\": \"ab327403-4707-4862-bde0-14e36733ba25\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"9e7bf588-935a-4403-9072-9789216d401f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6d70ca53-9b7a-4191-8be1-5cecd82b8ca6\",\n            \"ab1ae090-9afb-467c-8bd1-d0a5135a5a59\",\n            \"301ebe2f-65bc-4fc4-baf6-a9b5a8bf8db8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 90.55244445800781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07709211111068726,\n          \"Height\": 0.008951048366725445,\n          \"Left\": 0.7590271234512329,\n          \"Top\": 0.7600213289260864\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7590271234512329,\n            \"Y\": 0.7600213289260864\n          },\n          {\n            \"X\": 0.8361176252365112,\n            \"Y\": 0.7600572109222412\n          },\n          {\n            \"X\": 0.8361192345619202,\n            \"Y\": 0.7689723372459412\n          },\n          {\n            \"X\": 0.759028434753418,\n            \"Y\": 0.7689365148544312\n          }\n        ]\n      },\n      \"Id\": \"9e7bf588-935a-4403-9072-9789216d401f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d41aeb06-ae44-4560-9d09-605f8d9aad58\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.83272552490234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035174544900655746,\n          \"Height\": 0.009385552257299423,\n          \"Left\": 0.18591837584972382,\n          \"Top\": 0.1895863264799118\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1859191209077835,\n            \"Y\": 0.1895863264799118\n          },\n          {\n            \"X\": 0.22109292447566986,\n            \"Y\": 0.18960469961166382\n          },\n          {\n            \"X\": 0.2210923135280609,\n            \"Y\": 0.19897188246250153\n          },\n          {\n            \"X\": 0.18591837584972382,\n            \"Y\": 0.1989535391330719\n          }\n        ]\n      },\n      \"Id\": \"5e543f4d-1bda-4362-98c4-2a7181673b7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"73251fcd-9d11-415b-b2c7-e24cfd872106\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c8ec732-e095-4ad5-81b1-d77537efb993\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.83272552490234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008087885566055775,\n          \"Height\": 0.00853184424340725,\n          \"Left\": 0.2405158430337906,\n          \"Top\": 0.1900462657213211\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24051633477210999,\n            \"Y\": 0.1900462657213211\n          },\n          {\n            \"X\": 0.2486037313938141,\n            \"Y\": 0.19005049765110016\n          },\n          {\n            \"X\": 0.24860326945781708,\n            \"Y\": 0.1985781192779541\n          },\n          {\n            \"X\": 0.2405158430337906,\n            \"Y\": 0.19857390224933624\n          }\n        ]\n      },\n      \"Id\": \"73251fcd-9d11-415b-b2c7-e24cfd872106\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68981ed5-1e11-4f96-8e2b-48c56322d15e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.6108627319336,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03623625263571739,\n          \"Height\": 0.009136066772043705,\n          \"Left\": 0.1852654069662094,\n          \"Top\": 0.20044569671154022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1852661371231079,\n            \"Y\": 0.20044569671154022\n          },\n          {\n            \"X\": 0.2215016633272171,\n            \"Y\": 0.20046457648277283\n          },\n          {\n            \"X\": 0.22150106728076935,\n            \"Y\": 0.20958176255226135\n          },\n          {\n            \"X\": 0.1852654069662094,\n            \"Y\": 0.20956291258335114\n          }\n        ]\n      },\n      \"Id\": \"d5135f13-45c5-46e8-9212-c17bdae90be8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"01c77092-9ace-452c-91dd-8860b0e37b89\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d2a0d463-cecb-4a83-8bc6-9fd4f397c65b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 88.6108627319336,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008905463851988316,\n          \"Height\": 0.008905017748475075,\n          \"Left\": 0.24006453156471252,\n          \"Top\": 0.20034630596637726\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24006503820419312,\n            \"Y\": 0.20034630596637726\n          },\n          {\n            \"X\": 0.24897000193595886,\n            \"Y\": 0.20035094022750854\n          },\n          {\n            \"X\": 0.24896951019763947,\n            \"Y\": 0.20925132930278778\n          },\n          {\n            \"X\": 0.24006453156471252,\n            \"Y\": 0.2092466950416565\n          }\n        ]\n      },\n      \"Id\": \"01c77092-9ace-452c-91dd-8860b0e37b89\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aaf81227-5ca8-423a-9b45-4e2aa0459a59\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.97872161865234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048466842621564865,\n          \"Height\": 0.009269848465919495,\n          \"Left\": 0.18510651588439941,\n          \"Top\": 0.1785372495651245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1851072460412979,\n            \"Y\": 0.1785372495651245\n          },\n          {\n            \"X\": 0.23357336223125458,\n            \"Y\": 0.17856261134147644\n          },\n          {\n            \"X\": 0.2335727959871292,\n            \"Y\": 0.187807098031044\n          },\n          {\n            \"X\": 0.18510651588439941,\n            \"Y\": 0.18778178095817566\n          }\n        ]\n      },\n      \"Id\": \"1ed93314-1251-4069-8a45-9dae0a13b12a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e9b791d0-7110-45a0-98c1-e505f319a4d5\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"481e1e26-4d60-4253-acd0-52da717c6469\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.97872161865234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13039807975292206,\n          \"Height\": 0.00994387362152338,\n          \"Left\": 0.24102617800235748,\n          \"Top\": 0.1784059852361679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24102674424648285,\n            \"Y\": 0.1784059852361679\n          },\n          {\n            \"X\": 0.37142425775527954,\n            \"Y\": 0.17847421765327454\n          },\n          {\n            \"X\": 0.37142419815063477,\n            \"Y\": 0.1883498579263687\n          },\n          {\n            \"X\": 0.24102617800235748,\n            \"Y\": 0.18828175961971283\n          }\n        ]\n      },\n      \"Id\": \"e9b791d0-7110-45a0-98c1-e505f319a4d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"24ee258d-683a-4f93-b9d6-268696cffcbb\",\n            \"ef4671ba-d5c0-48e9-87df-7b813f143de9\",\n            \"57dd1e69-dae5-4e40-97c6-f1b1ad848080\",\n            \"21617a59-8c15-45b0-8b4f-754a0222702c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.03881072998047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02395077981054783,\n          \"Height\": 0.008190265856683254,\n          \"Left\": 0.21176649630069733,\n          \"Top\": 0.03506695479154587\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2117670625448227,\n            \"Y\": 0.03506695479154587\n          },\n          {\n            \"X\": 0.2357172816991806,\n            \"Y\": 0.03507982939481735\n          },\n          {\n            \"X\": 0.2357167899608612,\n            \"Y\": 0.0432572215795517\n          },\n          {\n            \"X\": 0.21176649630069733,\n            \"Y\": 0.043244369328022\n          }\n        ]\n      },\n      \"Id\": \"3643eca5-303c-49cd-80ba-2a02b628a512\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"706ce907-74f5-4e23-a353-538543dcf426\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a3a39dd8-58c2-43c2-a98a-85719deb725f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 85.03881072998047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04303330183029175,\n          \"Height\": 0.00873976107686758,\n          \"Left\": 0.21206894516944885,\n          \"Top\": 0.04807813838124275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2120695412158966,\n            \"Y\": 0.04807813838124275\n          },\n          {\n            \"X\": 0.2551022469997406,\n            \"Y\": 0.048101212829351425\n          },\n          {\n            \"X\": 0.2551017999649048,\n            \"Y\": 0.05681790038943291\n          },\n          {\n            \"X\": 0.21206894516944885,\n            \"Y\": 0.05679486319422722\n          }\n        ]\n      },\n      \"Id\": \"706ce907-74f5-4e23-a353-538543dcf426\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f0753f25-b08f-4755-88b5-0f74c3f1632b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.63528442382812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01842648722231388,\n          \"Height\": 0.00803929753601551,\n          \"Left\": 0.16645820438861847,\n          \"Top\": 0.035170428454875946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16645890474319458,\n            \"Y\": 0.035170428454875946\n          },\n          {\n            \"X\": 0.1848846971988678,\n            \"Y\": 0.035180334001779556\n          },\n          {\n            \"X\": 0.18488405644893646,\n            \"Y\": 0.043209727853536606\n          },\n          {\n            \"X\": 0.16645820438861847,\n            \"Y\": 0.04319984093308449\n          }\n        ]\n      },\n      \"Id\": \"5e2798b9-02b5-4e1f-9999-f4b5ca0d7eed\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"36700bc7-9c6f-4373-8513-0a12d3845e6f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e610c723-d01a-4f46-949e-f6772326aa4e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.63528442382812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027087751775979996,\n          \"Height\": 0.0089115547016263,\n          \"Left\": 0.16625557839870453,\n          \"Top\": 0.04745478183031082\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1662563532590866,\n            \"Y\": 0.04745478183031082\n          },\n          {\n            \"X\": 0.19334332644939423,\n            \"Y\": 0.047469306737184525\n          },\n          {\n            \"X\": 0.1933426558971405,\n            \"Y\": 0.05636633560061455\n          },\n          {\n            \"X\": 0.16625557839870453,\n            \"Y\": 0.056351836770772934\n          }\n        ]\n      },\n      \"Id\": \"36700bc7-9c6f-4373-8513-0a12d3845e6f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b7c419c-6e6a-4479-9bd4-1c688d16d476\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.29480743408203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03188693895936012,\n          \"Height\": 0.008325708098709583,\n          \"Left\": 0.2638351023197174,\n          \"Top\": 0.035064153373241425\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26383548974990845,\n            \"Y\": 0.035064153373241425\n          },\n          {\n            \"X\": 0.29572203755378723,\n            \"Y\": 0.03508129343390465\n          },\n          {\n            \"X\": 0.29572173953056335,\n            \"Y\": 0.04338986054062843\n          },\n          {\n            \"X\": 0.2638351023197174,\n            \"Y\": 0.0433727502822876\n          }\n        ]\n      },\n      \"Id\": \"cd47e6c0-f6ec-4632-8c80-2f1cf8d8de9a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"9add7237-ef3d-433e-874c-084c55d7bb10\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"70ccd6a2-1fc1-48ba-99b4-a695f72f783f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 84.29480743408203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04361912980675697,\n          \"Height\": 0.009090260602533817,\n          \"Left\": 0.26503607630729675,\n          \"Top\": 0.04789496958255768\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26503652334213257,\n            \"Y\": 0.04789496958255768\n          },\n          {\n            \"X\": 0.3086552321910858,\n            \"Y\": 0.04791835695505142\n          },\n          {\n            \"X\": 0.30865493416786194,\n            \"Y\": 0.05698522925376892\n          },\n          {\n            \"X\": 0.26503607630729675,\n            \"Y\": 0.05696187913417816\n          }\n        ]\n      },\n      \"Id\": \"9add7237-ef3d-433e-874c-084c55d7bb10\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"03fda3cd-379d-41fd-8f72-f7676ab64355\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.1779556274414,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042047951370477676,\n          \"Height\": 0.008370817638933659,\n          \"Left\": 0.31585049629211426,\n          \"Top\": 0.0348484143614769\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31585073471069336,\n            \"Y\": 0.0348484143614769\n          },\n          {\n            \"X\": 0.35789844393730164,\n            \"Y\": 0.03487101569771767\n          },\n          {\n            \"X\": 0.3578983545303345,\n            \"Y\": 0.04321923106908798\n          },\n          {\n            \"X\": 0.31585049629211426,\n            \"Y\": 0.0431966669857502\n          }\n        ]\n      },\n      \"Id\": \"b22c57b6-54d2-4a5f-9d77-6548afa284a8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"00bcacd8-ff34-4acf-9633-d9b80984f8cd\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4482b5ff-b1ff-47b9-bd0b-f77ea9e55d0e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.1779556274414,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03713446483016014,\n          \"Height\": 0.009140672162175179,\n          \"Left\": 0.31652045249938965,\n          \"Top\": 0.04788212850689888\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31652072072029114,\n            \"Y\": 0.04788212850689888\n          },\n          {\n            \"X\": 0.3536549210548401,\n            \"Y\": 0.04790204018354416\n          },\n          {\n            \"X\": 0.35365480184555054,\n            \"Y\": 0.05702279880642891\n          },\n          {\n            \"X\": 0.31652045249938965,\n            \"Y\": 0.057002920657396317\n          }\n        ]\n      },\n      \"Id\": \"00bcacd8-ff34-4acf-9633-d9b80984f8cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89d513bf-9810-45f6-8810-a59e05210d11\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.01332092285156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13454850018024445,\n          \"Height\": 0.009702258743345737,\n          \"Left\": 0.1673125922679901,\n          \"Top\": 0.1553223878145218\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16731342673301697,\n            \"Y\": 0.1553223878145218\n          },\n          {\n            \"X\": 0.30186110734939575,\n            \"Y\": 0.1553931087255478\n          },\n          {\n            \"X\": 0.3018607795238495,\n            \"Y\": 0.16502465307712555\n          },\n          {\n            \"X\": 0.1673125922679901,\n            \"Y\": 0.1649540662765503\n          }\n        ]\n      },\n      \"Id\": \"fca9f16d-1208-4a13-86ff-0a9fd157938d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"75f580e9-e3a6-4d6d-a1be-50039834c3bd\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7764f5be-0c19-49c2-a86a-620e4aac57e2\",\n            \"b0c8670e-c608-4e58-bc4b-dd53b7aa263f\",\n            \"a5cf6166-80e9-4664-a858-6d696cf72b9b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 83.01332092285156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04518067464232445,\n          \"Height\": 0.008495192974805832,\n          \"Left\": 0.30528175830841064,\n          \"Top\": 0.15592515468597412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30528202652931213,\n            \"Y\": 0.15592515468597412\n          },\n          {\n            \"X\": 0.3504624366760254,\n            \"Y\": 0.15594890713691711\n          },\n          {\n            \"X\": 0.35046231746673584,\n            \"Y\": 0.16442035138607025\n          },\n          {\n            \"X\": 0.30528175830841064,\n            \"Y\": 0.16439664363861084\n          }\n        ]\n      },\n      \"Id\": \"75f580e9-e3a6-4d6d-a1be-50039834c3bd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4f6bfb2d-1178-41b5-bf86-a890663938fc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 82.37641143798828,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13886983692646027,\n          \"Height\": 0.009940926916897297,\n          \"Left\": 0.16582275927066803,\n          \"Top\": 0.14522936940193176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16582362353801727,\n            \"Y\": 0.14522936940193176\n          },\n          {\n            \"X\": 0.3046925961971283,\n            \"Y\": 0.14530248939990997\n          },\n          {\n            \"X\": 0.30469226837158203,\n            \"Y\": 0.1551702916622162\n          },\n          {\n            \"X\": 0.16582275927066803,\n            \"Y\": 0.15509730577468872\n          }\n        ]\n      },\n      \"Id\": \"c81c34d0-400c-4c25-9e0a-452ba8aead7b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"14744980-6a74-4e74-a361-fa2388b0ac33\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cb8bd762-48c0-481a-95fb-3f0226141d98\",\n            \"9f6d86c1-a3e8-48dd-9d8e-171d5f94fe11\",\n            \"cced817b-886b-497d-aff9-6bb5cf499ee9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 82.37641143798828,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0688716322183609,\n          \"Height\": 0.008263660594820976,\n          \"Left\": 0.30767330527305603,\n          \"Top\": 0.14608825743198395\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30767354369163513,\n            \"Y\": 0.14608825743198395\n          },\n          {\n            \"X\": 0.37654492259025574,\n            \"Y\": 0.14612452685832977\n          },\n          {\n            \"X\": 0.37654489278793335,\n            \"Y\": 0.15435191988945007\n          },\n          {\n            \"X\": 0.30767330527305603,\n            \"Y\": 0.15431572496891022\n          }\n        ]\n      },\n      \"Id\": \"14744980-6a74-4e74-a361-fa2388b0ac33\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84911617-53b1-41db-8fa9-445373854242\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 81.7175064086914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04999684914946556,\n          \"Height\": 0.008326597511768341,\n          \"Left\": 0.36864641308784485,\n          \"Top\": 0.0349913127720356\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3686464726924896,\n            \"Y\": 0.0349913127720356\n          },\n          {\n            \"X\": 0.41864314675331116,\n            \"Y\": 0.035018183290958405\n          },\n          {\n            \"X\": 0.4186432659626007,\n            \"Y\": 0.04331791028380394\n          },\n          {\n            \"X\": 0.36864641308784485,\n            \"Y\": 0.04329107701778412\n          }\n        ]\n      },\n      \"Id\": \"31ada995-7af5-476d-b609-e1a2a9d7f975\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"61758b25-0dca-407b-99aa-9a3f56c686b3\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32e4486d-0af1-4ce7-aa6b-2fd9ef9ac7ed\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 81.7175064086914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.058784984052181244,\n          \"Height\": 0.009012183174490929,\n          \"Left\": 0.36897575855255127,\n          \"Top\": 0.04756075516343117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36897581815719604,\n            \"Y\": 0.04756075516343117\n          },\n          {\n            \"X\": 0.42776060104370117,\n            \"Y\": 0.04759227856993675\n          },\n          {\n            \"X\": 0.4277607202529907,\n            \"Y\": 0.056572940200567245\n          },\n          {\n            \"X\": 0.36897575855255127,\n            \"Y\": 0.05654146894812584\n          }\n        ]\n      },\n      \"Id\": \"61758b25-0dca-407b-99aa-9a3f56c686b3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b740d708-0c5e-4a39-af77-cd76662513c3\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 77.92689514160156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05603229999542236,\n          \"Height\": 0.012419162318110466,\n          \"Left\": 0.16735200583934784,\n          \"Top\": 0.5940744876861572\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1673530787229538,\n            \"Y\": 0.5940744876861572\n          },\n          {\n            \"X\": 0.2233843207359314,\n            \"Y\": 0.5941014885902405\n          },\n          {\n            \"X\": 0.22338351607322693,\n            \"Y\": 0.6064936518669128\n          },\n          {\n            \"X\": 0.16735200583934784,\n            \"Y\": 0.6064667105674744\n          }\n        ]\n      },\n      \"Id\": \"b2135e15-be2d-45e0-aeb3-8d2ce3dd45c4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"c758028b-7a21-407b-9b51-4ac7dc7b5af1\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f854bcdb-5bff-4097-aebd-ea66e02bfd7c\",\n            \"b6c893d0-a11b-49e3-8689-7cc319bbd1fa\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 77.92689514160156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05794195458292961,\n          \"Height\": 0.01101758610457182,\n          \"Left\": 0.3634811043739319,\n          \"Top\": 0.5939036011695862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36348122358322144,\n            \"Y\": 0.5939036011695862\n          },\n          {\n            \"X\": 0.42142292857170105,\n            \"Y\": 0.5939314961433411\n          },\n          {\n            \"X\": 0.421423077583313,\n            \"Y\": 0.6049211621284485\n          },\n          {\n            \"X\": 0.3634811043739319,\n            \"Y\": 0.6048932671546936\n          }\n        ]\n      },\n      \"Id\": \"c758028b-7a21-407b-9b51-4ac7dc7b5af1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f9ab73b-dff5-4d82-809f-b4924feb4d07\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 50.679744720458984,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028779955580830574,\n          \"Height\": 0.010255936533212662,\n          \"Left\": 0.5775362253189087,\n          \"Top\": 0.3436110317707062\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5775362253189087,\n            \"Y\": 0.3436110317707062\n          },\n          {\n            \"X\": 0.6063153147697449,\n            \"Y\": 0.34362560510635376\n          },\n          {\n            \"X\": 0.6063162088394165,\n            \"Y\": 0.35386696457862854\n          },\n          {\n            \"X\": 0.5775370001792908,\n            \"Y\": 0.35385239124298096\n          }\n        ]\n      },\n      \"Id\": \"cecf8f21-e726-499a-92c4-668ca8948b40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"034aca12-40ed-456e-bb79-7c05809979ae\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60549656-64af-446e-96f8-53589a2c23ad\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 50.679744720458984,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059046100825071335,\n          \"Height\": 0.011613728478550911,\n          \"Left\": 0.7744100689888,\n          \"Top\": 0.344127893447876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7744100689888,\n            \"Y\": 0.344127893447876\n          },\n          {\n            \"X\": 0.8334541320800781,\n            \"Y\": 0.3441578149795532\n          },\n          {\n            \"X\": 0.8334561586380005,\n            \"Y\": 0.35574162006378174\n          },\n          {\n            \"X\": 0.7744118571281433,\n            \"Y\": 0.35571175813674927\n          }\n        ]\n      },\n      \"Id\": \"034aca12-40ed-456e-bb79-7c05809979ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ac72e0ef-1510-4f03-a124-4659ee31e2c4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 48.08003616333008,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056183964014053345,\n          \"Height\": 0.010275687091052532,\n          \"Left\": 0.5771529674530029,\n          \"Top\": 0.32936331629753113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5771529674530029,\n            \"Y\": 0.32936331629753113\n          },\n          {\n            \"X\": 0.6333359479904175,\n            \"Y\": 0.32939186692237854\n          },\n          {\n            \"X\": 0.6333369612693787,\n            \"Y\": 0.33963900804519653\n          },\n          {\n            \"X\": 0.577153742313385,\n            \"Y\": 0.3396104872226715\n          }\n        ]\n      },\n      \"Id\": \"1874ad76-706e-486e-9fac-effbce79076d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"90661a35-5553-4d68-ba10-a7a6d4b72352\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2e58008e-1e63-46c4-b755-4a4b4cea9572\",\n            \"1bfc6c9f-7a40-4828-bfcc-61161f8a0f0a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 48.08003616333008,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03531855717301369,\n          \"Height\": 0.009485051967203617,\n          \"Left\": 0.9071249961853027,\n          \"Top\": 0.3304809629917145\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9071249961853027,\n            \"Y\": 0.3304809629917145\n          },\n          {\n            \"X\": 0.9424415230751038,\n            \"Y\": 0.33049893379211426\n          },\n          {\n            \"X\": 0.9424435496330261,\n            \"Y\": 0.3399660289287567\n          },\n          {\n            \"X\": 0.9071269631385803,\n            \"Y\": 0.3399481177330017\n          }\n        ]\n      },\n      \"Id\": \"90661a35-5553-4d68-ba10-a7a6d4b72352\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"47030a68-6a4f-4552-9429-f76d3efff98a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 47.354957580566406,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12110593169927597,\n          \"Height\": 0.015134569257497787,\n          \"Left\": 0.537363588809967,\n          \"Top\": 0.901386022567749\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.537363588809967,\n            \"Y\": 0.901386022567749\n          },\n          {\n            \"X\": 0.6584679484367371,\n            \"Y\": 0.9014407396316528\n          },\n          {\n            \"X\": 0.658469557762146,\n            \"Y\": 0.9165205955505371\n          },\n          {\n            \"X\": 0.5373644828796387,\n            \"Y\": 0.9164660573005676\n          }\n        ]\n      },\n      \"Id\": \"f79d388e-8e5c-4530-a855-84d34e7a517c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"39d28d2b-15a0-4ba2-bae9-c24a3a56404a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e3a15024-dee3-44f0-b16e-ef92757f2144\",\n            \"53e1e7a0-a350-44f9-816d-5e5a0bcf3924\",\n            \"04bbe3a9-4622-462b-8d9c-f8d8c36ea946\",\n            \"168bbf08-a0d4-4fbb-a03e-dc821e834b18\",\n            \"07054808-960a-4af8-9cec-3d348e4ec5eb\",\n            \"53c903f8-6adf-4163-9fb3-ad3f35d2c038\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 47.354957580566406,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3445076644420624,\n          \"Height\": 0.038714781403541565,\n          \"Left\": 0.5425235033035278,\n          \"Top\": 0.8628292083740234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5425235033035278,\n            \"Y\": 0.8628292083740234\n          },\n          {\n            \"X\": 0.8870235681533813,\n            \"Y\": 0.862986147403717\n          },\n          {\n            \"X\": 0.8870311379432678,\n            \"Y\": 0.9015439748764038\n          },\n          {\n            \"X\": 0.5425258874893188,\n            \"Y\": 0.9013883471488953\n          }\n        ]\n      },\n      \"Id\": \"39d28d2b-15a0-4ba2-bae9-c24a3a56404a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"23f0b526-35db-4213-b3c8-baf2294621a0\",\n            \"fe746647-5c97-4cb6-8054-c24cf0489e00\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 45.36577606201172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0728902518749237,\n          \"Height\": 0.012443512678146362,\n          \"Left\": 0.16758964955806732,\n          \"Top\": 0.31269848346710205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16759072244167328,\n            \"Y\": 0.31269848346710205\n          },\n          {\n            \"X\": 0.24047990143299103,\n            \"Y\": 0.3127356767654419\n          },\n          {\n            \"X\": 0.24047918617725372,\n            \"Y\": 0.3251419961452484\n          },\n          {\n            \"X\": 0.16758964955806732,\n            \"Y\": 0.3251049220561981\n          }\n        ]\n      },\n      \"Id\": \"77757308-6e67-4903-82f3-5714f5ccd454\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"d953a370-3fbf-426a-8881-78b055e9935a\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce3537c4-9283-43a4-9636-a54ee7e1bea9\",\n            \"1004a297-a725-41ee-bdd0-4279d2b20335\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 45.36577606201172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06245122477412224,\n          \"Height\": 0.011050543747842312,\n          \"Left\": 0.35860463976860046,\n          \"Top\": 0.3129030764102936\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35860475897789,\n            \"Y\": 0.3129030764102936\n          },\n          {\n            \"X\": 0.42105570435523987,\n            \"Y\": 0.312934935092926\n          },\n          {\n            \"X\": 0.4210558533668518,\n            \"Y\": 0.32395362854003906\n          },\n          {\n            \"X\": 0.35860463976860046,\n            \"Y\": 0.3239218592643738\n          }\n        ]\n      },\n      \"Id\": \"d953a370-3fbf-426a-8881-78b055e9935a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7116a7da-e1fd-4185-9c54-2d89eb6f1214\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 45.126991271972656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05723685771226883,\n          \"Height\": 0.010107861831784248,\n          \"Left\": 0.5764842629432678,\n          \"Top\": 0.3140488266944885\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5764842629432678,\n            \"Y\": 0.3140488266944885\n          },\n          {\n            \"X\": 0.6337200999259949,\n            \"Y\": 0.3140780031681061\n          },\n          {\n            \"X\": 0.633721113204956,\n            \"Y\": 0.32415667176246643\n          },\n          {\n            \"X\": 0.5764849781990051,\n            \"Y\": 0.32412755489349365\n          }\n        ]\n      },\n      \"Id\": \"c475c6cf-b307-4921-a31c-1d09eb96fac5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"10e149d1-4f56-4764-86de-137801000100\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c7ec916-4a44-4299-a218-fd7909537f2d\",\n            \"709143fc-5137-40c8-a2ed-e094bea1a6e8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 45.126991271972656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036279160529375076,\n          \"Height\": 0.009356332011520863,\n          \"Left\": 0.9058469533920288,\n          \"Top\": 0.31500184535980225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9058469533920288,\n            \"Y\": 0.31500184535980225\n          },\n          {\n            \"X\": 0.94212406873703,\n            \"Y\": 0.315020352602005\n          },\n          {\n            \"X\": 0.9421261548995972,\n            \"Y\": 0.324358195066452\n          },\n          {\n            \"X\": 0.9058488607406616,\n            \"Y\": 0.32433971762657166\n          }\n        ]\n      },\n      \"Id\": \"10e149d1-4f56-4764-86de-137801000100\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1157363-ccc1-4e5e-9a6b-eab4591c9962\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 43.986026763916016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0895090401172638,\n          \"Height\": 0.023512983694672585,\n          \"Left\": 0.052602410316467285,\n          \"Top\": 0.8989097476005554\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05260549858212471,\n            \"Y\": 0.8989097476005554\n          },\n          {\n            \"X\": 0.14211145043373108,\n            \"Y\": 0.8989501595497131\n          },\n          {\n            \"X\": 0.14210918545722961,\n            \"Y\": 0.9224227070808411\n          },\n          {\n            \"X\": 0.052602410316467285,\n            \"Y\": 0.9223824739456177\n          }\n        ]\n      },\n      \"Id\": \"95c6cca4-324f-48fc-8f64-419014182a65\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f164efd4-12d1-4d0e-9a36-530dab40324d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5a482f5-65aa-47ef-aca2-1e8a742c9938\",\n            \"7310c6c2-a207-4857-a352-75c444e182c7\",\n            \"bde8c3d3-fea4-4f0c-824e-157f1d4fbdeb\",\n            \"0673ad56-2855-4be5-bd3b-a8a3d06697f6\",\n            \"b4612075-7899-4744-9166-07151c6900bb\",\n            \"53756fc6-fbbf-498d-bb9e-fb37011d4de3\",\n            \"98f1d9a8-197f-43f1-8b3a-7462f0dc0801\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 43.986026763916016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13129128515720367,\n          \"Height\": 0.03657669201493263,\n          \"Left\": 0.1879776120185852,\n          \"Top\": 0.8727887868881226\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18798047304153442,\n            \"Y\": 0.8727887868881226\n          },\n          {\n            \"X\": 0.3192689120769501,\n            \"Y\": 0.8728484511375427\n          },\n          {\n            \"X\": 0.3192679286003113,\n            \"Y\": 0.9093654751777649\n          },\n          {\n            \"X\": 0.1879776120185852,\n            \"Y\": 0.9093062877655029\n          }\n        ]\n      },\n      \"Id\": \"f164efd4-12d1-4d0e-9a36-530dab40324d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"32c086c6-2187-4c2a-b529-fca369b35ef8\",\n            \"2365e22f-a60b-4a2a-ae72-015f043e4c8f\",\n            \"d8a4887c-aa18-49cf-8b0d-ba859f8fdd23\",\n            \"c0f984ca-5c1f-498c-8ca8-bdd82bcc4aa6\",\n            \"98bb8f54-71a1-4ec6-95a8-caae3a17dc8c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 36.43941879272461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09210860729217529,\n          \"Height\": 0.010382741689682007,\n          \"Left\": 0.1661687046289444,\n          \"Top\": 0.5714064240455627\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16616961359977722,\n            \"Y\": 0.5714064240455627\n          },\n          {\n            \"X\": 0.2582773268222809,\n            \"Y\": 0.5714510083198547\n          },\n          {\n            \"X\": 0.2582767903804779,\n            \"Y\": 0.5817891359329224\n          },\n          {\n            \"X\": 0.1661687046289444,\n            \"Y\": 0.5817446112632751\n          }\n        ]\n      },\n      \"Id\": \"4fa42791-2752-4a50-852b-b015e85fe916\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"081a1a22-3925-4c11-b31e-83530521b029\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"afa302f2-0027-4850-a3dd-cbac8bab19e6\",\n            \"883a5f20-8b8a-47ed-8759-d1734c408e65\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 36.43941879272461,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04847842827439308,\n          \"Height\": 0.01018398068845272,\n          \"Left\": 0.3726814091205597,\n          \"Top\": 0.5714642405509949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37268146872520447,\n            \"Y\": 0.5714642405509949\n          },\n          {\n            \"X\": 0.4211597144603729,\n            \"Y\": 0.5714877247810364\n          },\n          {\n            \"X\": 0.4211598336696625,\n            \"Y\": 0.5816482305526733\n          },\n          {\n            \"X\": 0.3726814091205597,\n            \"Y\": 0.5816247463226318\n          }\n        ]\n      },\n      \"Id\": \"081a1a22-3925-4c11-b31e-83530521b029\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f5ca99e6-3de1-497b-94ff-c3220e32795e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 35.884456634521484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.24769259989261627,\n          \"Height\": 0.013185887597501278,\n          \"Left\": 0.1796426773071289,\n          \"Top\": 0.6571527123451233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17964375019073486,\n            \"Y\": 0.6571527123451233\n          },\n          {\n            \"X\": 0.42733508348464966,\n            \"Y\": 0.657270610332489\n          },\n          {\n            \"X\": 0.42733529210090637,\n            \"Y\": 0.6703385710716248\n          },\n          {\n            \"X\": 0.1796426773071289,\n            \"Y\": 0.6702210307121277\n          }\n        ]\n      },\n      \"Id\": \"2ecc80f9-8933-4fcc-84bb-37d2c79d1483\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"7d20a5b7-4451-44d0-85f5-2de89af69463\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e4f8aef4-31d3-4b64-b070-85b124bf9829\",\n            \"edaeab53-8f77-4417-9b4b-3e1b141d53d0\",\n            \"28747244-8f11-4952-9c1f-d135261ff38d\",\n            \"9b5c3118-48d7-4666-8e5f-c59c76e446c3\",\n            \"0311ced2-55bd-4733-936d-3a3a133e9eb6\",\n            \"87a4b628-752e-407e-a726-3c2dd8e9e49c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 35.884456634521484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05456747114658356,\n          \"Height\": 0.0104202376678586,\n          \"Left\": 0.4333724081516266,\n          \"Top\": 0.6579055190086365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4333724081516266,\n            \"Y\": 0.6579055190086365\n          },\n          {\n            \"X\": 0.4879394769668579,\n            \"Y\": 0.6579315066337585\n          },\n          {\n            \"X\": 0.48793989419937134,\n            \"Y\": 0.6683257222175598\n          },\n          {\n            \"X\": 0.4333726167678833,\n            \"Y\": 0.6682998538017273\n          }\n        ]\n      },\n      \"Id\": \"7d20a5b7-4451-44d0-85f5-2de89af69463\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a69215f-2333-41e8-a778-26ea4771b23e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 33.564002990722656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09776131808757782,\n          \"Height\": 0.010448281653225422,\n          \"Left\": 0.5772364139556885,\n          \"Top\": 0.2834779918193817\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5772364139556885,\n            \"Y\": 0.2834779918193817\n          },\n          {\n            \"X\": 0.674996554851532,\n            \"Y\": 0.2835281193256378\n          },\n          {\n            \"X\": 0.6749977469444275,\n            \"Y\": 0.29392626881599426\n          },\n          {\n            \"X\": 0.5772371888160706,\n            \"Y\": 0.2938762307167053\n          }\n        ]\n      },\n      \"Id\": \"22373334-c758-4112-b972-f5258c780dc5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"fb4ef1e0-f89b-4dc8-8dff-5dfef2dd45a6\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81bc505a-69fd-484f-af61-cf5be23cf0d8\",\n            \"7b928b73-75bc-4dc3-9e82-e48ef3974067\",\n            \"3768fca1-b5f7-40af-ba03-c5a5e04a9712\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 33.564002990722656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04473063349723816,\n          \"Height\": 0.009153136052191257,\n          \"Left\": 0.897945761680603,\n          \"Top\": 0.2845821976661682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.897945761680603,\n            \"Y\": 0.2845821976661682\n          },\n          {\n            \"X\": 0.9426743984222412,\n            \"Y\": 0.28460511565208435\n          },\n          {\n            \"X\": 0.9426763653755188,\n            \"Y\": 0.2937353253364563\n          },\n          {\n            \"X\": 0.8979476094245911,\n            \"Y\": 0.29371243715286255\n          }\n        ]\n      },\n      \"Id\": \"fb4ef1e0-f89b-4dc8-8dff-5dfef2dd45a6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d79ae10f-be73-4f56-8fa2-8eaf706a01b3\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 32.10908126831055,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06994474679231644,\n          \"Height\": 0.01991931162774563,\n          \"Left\": 0.05307817459106445,\n          \"Top\": 0.8009875416755676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05308078974485397,\n            \"Y\": 0.8009875416755676\n          },\n          {\n            \"X\": 0.12302292138338089,\n            \"Y\": 0.8010198473930359\n          },\n          {\n            \"X\": 0.12302085757255554,\n            \"Y\": 0.8209068775177002\n          },\n          {\n            \"X\": 0.05307817459106445,\n            \"Y\": 0.8208747506141663\n          }\n        ]\n      },\n      \"Id\": \"cf31c3f6-469d-47e4-9b9b-78de30aef443\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"5edaa20b-0f7d-4b54-817e-004fc9a7a54c\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"114cf0da-7ff1-408f-a449-64176d973dab\",\n            \"c0f4e6f0-40ee-45d1-a629-911b096b13fc\",\n            \"4c27ef63-ec15-4762-849f-5c8dc64cb4d3\",\n            \"520aae23-fe74-4e98-b435-c940cae5069c\",\n            \"8b618eb6-4057-472e-ac0c-ff5887d43806\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 32.10908126831055,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10987455397844315,\n          \"Height\": 0.011045994237065315,\n          \"Left\": 0.15571817755699158,\n          \"Top\": 0.8113622665405273\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15571917593479156,\n            \"Y\": 0.8113622665405273\n          },\n          {\n            \"X\": 0.2655927240848541,\n            \"Y\": 0.8114128708839417\n          },\n          {\n            \"X\": 0.26559221744537354,\n            \"Y\": 0.8224082589149475\n          },\n          {\n            \"X\": 0.15571817755699158,\n            \"Y\": 0.8223577737808228\n          }\n        ]\n      },\n      \"Id\": \"5edaa20b-0f7d-4b54-817e-004fc9a7a54c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e5db8fa7-2ea7-44b3-a2a6-c019421edc44\",\n            \"fd00bebf-5bf6-49cc-aaf1-6b8cb482b0ce\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 32.07524490356445,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08283206075429916,\n          \"Height\": 0.010026366449892521,\n          \"Left\": 0.05324440822005272,\n          \"Top\": 0.8289802074432373\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05324571952223778,\n            \"Y\": 0.8289802074432373\n          },\n          {\n            \"X\": 0.13607646524906158,\n            \"Y\": 0.8290181756019592\n          },\n          {\n            \"X\": 0.1360754817724228,\n            \"Y\": 0.8390065431594849\n          },\n          {\n            \"X\": 0.05324440822005272,\n            \"Y\": 0.8389686346054077\n          }\n        ]\n      },\n      \"Id\": \"02f6b745-427e-443a-9158-612a480b4497\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"3e316ed7-4e66-4f4c-96a2-d94b6a929503\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"843bd1f0-3745-4f39-aa6b-d6cf459a385c\",\n            \"371ad7dd-075d-4bb6-96c4-b2569451fdcf\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 32.07524490356445,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3805367946624756,\n          \"Height\": 0.010622318834066391,\n          \"Left\": 0.1594110131263733,\n          \"Top\": 0.8312004804611206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1594119369983673,\n            \"Y\": 0.8312004804611206\n          },\n          {\n            \"X\": 0.5399471521377563,\n            \"Y\": 0.831375002861023\n          },\n          {\n            \"X\": 0.5399478077888489,\n            \"Y\": 0.8418228030204773\n          },\n          {\n            \"X\": 0.1594110131263733,\n            \"Y\": 0.8416486382484436\n          }\n        ]\n      },\n      \"Id\": \"3e316ed7-4e66-4f4c-96a2-d94b6a929503\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c939ea3d-6872-4bba-ab37-e4ec94212aaf\",\n            \"ec0b346a-6001-47c7-92e6-fdbd68a23110\",\n            \"67c289af-f854-4383-a8f5-dfdfb11f9189\",\n            \"9e518b3c-e856-4d4d-9c8b-5cffe0ab42a9\",\n            \"aecd0d14-7bc5-4e79-a6b2-c3daf5fb644c\",\n            \"e27da746-3afe-4e94-b159-8ce40130b698\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 18.687427520751953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13334406912326813,\n          \"Height\": 0.013497351668775082,\n          \"Left\": 0.5765280723571777,\n          \"Top\": 0.3884986340999603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5765280723571777,\n            \"Y\": 0.3884986340999603\n          },\n          {\n            \"X\": 0.7098703980445862,\n            \"Y\": 0.38856565952301025\n          },\n          {\n            \"X\": 0.7098721265792847,\n            \"Y\": 0.401995986700058\n          },\n          {\n            \"X\": 0.5765290856361389,\n            \"Y\": 0.40192916989326477\n          }\n        ]\n      },\n      \"Id\": \"f54c0175-7a09-47f0-bcae-23586c1b99ba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6b0938c5-74dc-4781-9a34-0e164530a554\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ff26122-bab7-4d00-88c6-ad969c79fc5a\",\n            \"05160f5d-5a62-400b-9c36-dd4e6b2902ef\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 18.687427520751953,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3081907629966736,\n          \"Height\": 0.10671661794185638,\n          \"Left\": 0.5758464336395264,\n          \"Top\": 0.40643665194511414\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5758464336395264,\n            \"Y\": 0.40643665194511414\n          },\n          {\n            \"X\": 0.8840163350105286,\n            \"Y\": 0.4065909683704376\n          },\n          {\n            \"X\": 0.8840372562408447,\n            \"Y\": 0.5131532549858093\n          },\n          {\n            \"X\": 0.5758544206619263,\n            \"Y\": 0.5130022168159485\n          }\n        ]\n      },\n      \"Id\": \"6b0938c5-74dc-4781-9a34-0e164530a554\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b6667b2d-341e-402d-9a17-e1ab66710bd8\",\n            \"912a926f-57ee-4e00-a4f7-48241549d9c0\",\n            \"259dc0f1-0526-42f0-8b4a-02232fa69041\",\n            \"ad57deb2-0791-4ca6-abca-f58ea2ec7729\",\n            \"0891eed3-1fdc-4be4-8ec5-86d6ec386862\",\n            \"cc34168d-5c78-4793-8738-1d5f7e389be6\",\n            \"cd73d5ae-61e5-4a51-bcc8-7d45bd8efa4a\",\n            \"fb0e8553-83f3-4882-a3a5-fac217e6c247\",\n            \"e2cb431a-e4f7-4324-a3b7-bee94aee16ce\",\n            \"f4103f41-b4a9-4610-80c9-9764585ca7c1\",\n            \"38a78061-fb00-4071-a515-ee7b11ac4948\",\n            \"02375807-c26f-4f24-98d6-745d423b00b5\",\n            \"8d76a30c-9430-4425-830f-8a6244dba2f2\",\n            \"2cadf5b6-2a65-426e-81e0-ad443c078be3\",\n            \"bd1a730f-b12b-4f7a-8e58-880c99dd6fa2\",\n            \"f97d9ea6-9c5e-419d-9021-0c2275d3aab4\",\n            \"99f7bf84-c5a1-47ba-b593-612869c293fd\",\n            \"e292a0c6-8d3c-4ec8-b6a7-d8c9215f9742\",\n            \"083b6adf-2239-43c2-b13d-9b3c00bf25e6\",\n            \"ec16fdac-79ce-44bb-892b-186b1cf6a635\",\n            \"3be1423d-9f10-4ca6-be92-628d5a1554ab\",\n            \"59978cd2-9bf9-46fb-992f-15c0d11b923e\",\n            \"7cec59a2-b9f3-4cb8-88b7-9240b7c40d0e\",\n            \"a73c4195-0e2f-4baf-acb9-b7cf81044713\",\n            \"68a6319b-e89c-4288-96d1-590ac8707ac3\",\n            \"18233780-3339-4bca-bfce-cfe93f862de5\",\n            \"ac7df885-5a75-445e-9617-2df5804a8a25\",\n            \"f1ebc27b-da53-4940-83d6-389293475acc\",\n            \"7b30686f-c772-4ed9-be49-cc93aec5a08a\",\n            \"db5bf66c-2b68-411d-a7bf-ab18f74d0bba\",\n            \"dbb1beb9-d8c6-45c5-8293-08a21c8a5b2f\",\n            \"df4afff9-f651-4c0b-859c-9e808ac28929\",\n            \"0999396f-327a-47b7-bf51-e1bb9e239233\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"3bcdf71b-b8bf-4347-8aa7-e94784b18a3c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"6619ccbb-0ddb-4f10-b677-3d591d0bbe3c\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the YTD Gross Pay?\",\n        \"Alias\": \"YTD gross pay\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 96,\n      \"Text\": \"23,526.80\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06667555868625641,\n          \"Height\": 0.01099514402449131,\n          \"Left\": 0.46244537830352783,\n          \"Top\": 0.31275317072868347\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46244537830352783,\n            \"Y\": 0.31275317072868347\n          },\n          {\n            \"X\": 0.5291203260421753,\n            \"Y\": 0.31278717517852783\n          },\n          {\n            \"X\": 0.529120922088623,\n            \"Y\": 0.32374832034111023\n          },\n          {\n            \"X\": 0.4624457061290741,\n            \"Y\": 0.32371437549591064\n          }\n        ]\n      },\n      \"Id\": \"6619ccbb-0ddb-4f10-b677-3d591d0bbe3c\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"a9520342-4b10-458c-83b7-87a6d894f8c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"c795cca5-fb6c-405b-81e9-f5372ed796e6\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the Gross Pay for this period?\",\n        \"Alias\": \"gross pay\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 97,\n      \"Text\": \"$ 452.43\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06100200116634369,\n          \"Height\": 0.010992366820573807,\n          \"Left\": 0.3588845729827881,\n          \"Top\": 0.31160423159599304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35888469219207764,\n            \"Y\": 0.31160423159599304\n          },\n          {\n            \"X\": 0.41988644003868103,\n            \"Y\": 0.3116353452205658\n          },\n          {\n            \"X\": 0.4198865592479706,\n            \"Y\": 0.32259657979011536\n          },\n          {\n            \"X\": 0.3588845729827881,\n            \"Y\": 0.3225655257701874\n          }\n        ]\n      },\n      \"Id\": \"c795cca5-fb6c-405b-81e9-f5372ed796e6\"\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"c0190f8f-6149-44d0-8b25-040a39918896\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"c651d263-1b54-48ae-a763-dfa66a433e35\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the Federal income tax this period?\",\n        \"Alias\": \"income tax\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 96,\n      \"Text\": \"-40.60\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0482349768280983,\n          \"Height\": 0.009889869019389153,\n          \"Left\": 0.371652215719223,\n          \"Top\": 0.35984116792678833\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3716522753238678,\n            \"Y\": 0.35984116792678833\n          },\n          {\n            \"X\": 0.41988706588745117,\n            \"Y\": 0.35986554622650146\n          },\n          {\n            \"X\": 0.4198871850967407,\n            \"Y\": 0.36973103880882263\n          },\n          {\n            \"X\": 0.371652215719223,\n            \"Y\": 0.3697067201137543\n          }\n        ]\n      },\n      \"Id\": \"c651d263-1b54-48ae-a763-dfa66a433e35\"\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-python/tests/data/queries_sample.json",
    "content": "{\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 1.0,\n                    \"Left\": 0.0,\n                    \"Top\": 0.0,\n                    \"Width\": 1.0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 1.5861063837740178e-16,\n                        \"Y\": 0.0\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 9.455606137723086e-17\n                    },\n                    {\n                        \"X\": 1.0,\n                        \"Y\": 1.0\n                    },\n                    {\n                        \"X\": 0.0,\n                        \"Y\": 1.0\n                    }\n                ]\n            },\n            \"Id\": \"d86a93a8-c7b9-49dd-b392-553d4305ba9a\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4c915715-f6ce-428d-ba77-101fe0ba6d0d\",\n                        \"a9ece416-c7ae-4ee8-884d-043532e3b4f6\",\n                        \"ce419df1-076b-4efe-9591-37b21599b724\",\n                        \"c6fc86b1-305f-49db-81bc-a52358e8a7bb\",\n                        \"44f87f9e-363b-4542-8fb3-09e40344384e\",\n                        \"77af7eb9-de6f-43dc-a34a-528906d9344d\",\n                        \"099df39e-a438-4f3a-834a-2d6cfecbbf85\",\n                        \"71738299-2211-4ef5-8d96-e1d5ae0c1ee4\",\n                        \"0d258f18-22bd-431f-bb57-2c0d5730ff01\",\n                        \"8d5407d4-2a67-4adc-8373-d623c6e17974\",\n                        \"a73be150-8517-4aaa-985e-bdb5b9759c7c\",\n                        \"e535eec7-c866-4b9e-9406-7b79d278aee7\",\n                        \"bc34698b-b2ab-47c5-9a85-abe40add50dd\",\n                        \"15b67b6c-b652-4f7e-b678-90c1d3d39fda\",\n                        \"3c9359b0-049a-40d8-a854-3e8b83b257c8\",\n                        \"e167630c-facb-4683-ac79-3647987b3523\",\n                        \"15d2b201-22d5-4c92-a9d7-4da66dab87ba\",\n                        \"ac0a2cab-d3ba-49e8-80d7-08606e22cb57\",\n                        \"0a940cec-532d-420d-a245-9590f9378749\",\n                        \"2367c131-0638-495d-bea0-f5c92832efd7\",\n                        \"df3c0f5f-a87a-4281-8606-0306df184b03\",\n                        \"807e4123-c271-48e3-8620-60eb9e8b0dbc\",\n                        \"a6b13a6b-e1a3-44b8-8e01-ff5e8622abce\",\n                        \"ceb81403-b712-4171-970b-4e1157df6883\",\n                        \"ad1b3b6f-6046-46ab-81b7-788e32ec0924\",\n                        \"fa25edb3-d9bd-47d3-a25a-21dc9d23ce77\",\n                        \"4a8c06b6-73ba-433d-b047-143ab17dbd16\",\n                        \"6b809a9a-b15a-4b86-b847-b7023ba61981\",\n                        \"1c897995-ebcb-47f1-b263-fbc7c8393287\",\n                        \"c9d6b391-c1c5-4096-84ca-a471395abee4\",\n                        \"fffdecb9-4e66-492b-93dd-dfb5093bc28c\",\n                        \"3a6d1a09-0746-4e53-b9d5-e356e3930e14\",\n                        \"e14029fc-c03a-4a53-9715-20dfd3595830\",\n                        \"6b2177d2-8a1d-4b16-96e9-5c02e07453be\",\n                        \"5b63d04e-cf1f-45ca-8996-a0d52869de8a\",\n                        \"44998c12-299e-4299-b56e-ad8a3395632f\",\n                        \"8c8a0e6e-25f9-4111-b269-75bce6d6ebaf\",\n                        \"d30f04b4-4a9c-4e5f-bcd6-e313502bf6f4\",\n                        \"89350918-a76a-457b-aaf3-620ea4fd9a9d\",\n                        \"787abff2-5f95-44ec-892d-07295e7612fc\",\n                        \"7eff7af7-3b1e-4ab3-99fc-5f79554c4128\",\n                        \"360114c1-1368-465e-af84-c64590e67be9\",\n                        \"bd973566-3f9d-42f4-9d60-a910702f543d\",\n                        \"3fbf9497-9527-441d-9a7a-d8e0b019af4e\",\n                        \"dd741eee-9ea9-498f-8626-137539240bf9\",\n                        \"566774ee-a0d9-4d08-bc1a-09b9fa49b5cc\",\n                        \"2fd3c32b-b045-456d-a34b-da9145c67a2f\",\n                        \"8729518c-4453-4177-8ec7-18f9cf78bd04\",\n                        \"3885ac97-bd33-4828-9f4c-a5ef71f99f7c\",\n                        \"500dee1c-d43f-4f06-9a55-5ebe9aebcdde\",\n                        \"0d37365c-54fd-4268-bbff-05a9ec306874\",\n                        \"459e0adb-86b9-4b92-9dd5-1ce13b5884e4\",\n                        \"a4a05060-abc9-4b82-af75-16c718479862\",\n                        \"79e70977-27c9-41df-b2d9-57d8edc89659\",\n                        \"7fc2cf63-86cb-427a-82bf-91ee71454bcc\",\n                        \"3ee92cae-af74-43f5-83c8-1ef4e4fa5fe0\",\n                        \"bdc9984a-5be7-4085-ad21-aba5b485fcb3\",\n                        \"59c46f4e-fdee-4854-b2f7-ca80a5b9380a\",\n                        \"9aab027a-1407-4c8f-9ea2-6df61652e700\",\n                        \"dd9733e0-824f-4f8e-8493-1b8a811df478\",\n                        \"175a923c-3896-4c07-ac6f-59423abe1f56\",\n                        \"817a32b6-f130-4651-928a-6d0d03f0d329\",\n                        \"2f1f301b-b27f-4881-9028-c6b2105727d3\",\n                        \"b156f96f-f1c3-43bf-95ea-3c8a842c5647\",\n                        \"fae35f76-bcd5-4462-b24c-ba1961400998\",\n                        \"916b20d7-84d6-4802-8ffb-9f8b486e6e21\",\n                        \"fd753e4a-d9f6-4f3b-a277-d831e9e9fa1d\",\n                        \"0e7f2225-6629-4bca-b3c3-ccdddf3337fe\",\n                        \"6dd25cc4-d711-4e02-9c0e-4fcacbd00e40\",\n                        \"522c58e3-56fe-41e9-9dd6-29644ec8e958\",\n                        \"bc4a58e3-7fff-4b97-a63f-f1c896a49b60\",\n                        \"781892a6-c321-4aff-81e0-54dffd793e6d\",\n                        \"4cf45000-21df-46b9-86b0-6866a991f113\",\n                        \"9429e220-3440-47bc-a3a2-77daadd20f7e\",\n                        \"754e2aec-0fd6-46fd-a720-29643e922ca5\",\n                        \"0a533d18-303e-47a2-8c73-3d53cefe5224\",\n                        \"bf4f9135-30b4-40d6-bfd5-50cb9e02170f\",\n                        \"b7e18d5d-9cf9-4a4d-ac3d-7f5e7330b895\",\n                        \"1be42bb4-abf1-4178-a378-17a4129d2e09\",\n                        \"3783ae58-a588-43b7-9e60-52a3a9d551d0\",\n                        \"19f05d06-2675-4335-8045-34570145bc46\",\n                        \"c9b71cc4-5319-4842-b9e9-83790da893d2\",\n                        \"17c13c52-c8f1-4114-99c6-09224164b35d\",\n                        \"e8b8b454-f8e7-43cb-bfbb-5fd01a080d65\",\n                        \"5a7319f3-6652-4be4-9a41-022695b7a6a4\",\n                        \"9078ee01-989d-4a4a-bb18-5a405b031c1b\",\n                        \"7478ab7c-91a8-464d-bd95-5d52e247f4ec\",\n                        \"290a34a4-3a0f-4293-bfae-a7f1de5162ca\",\n                        \"d17bf36f-fa93-4a77-9dd7-9fb43c7d8ef2\",\n                        \"b07125d1-6083-49e9-8a97-9040bc552f41\",\n                        \"b0b33012-2c52-45e8-b05a-935a2ff495fd\",\n                        \"df0e5f1d-4d35-484c-918f-956529ff1dba\",\n                        \"9032164c-3cdf-4da6-8557-61ae8d17266c\",\n                        \"3d52b150-eca8-4abe-8d31-81be1a603ed4\",\n                        \"f90b6bdc-22b6-4311-8463-5645223056d7\",\n                        \"1ed04ab4-100b-4783-a1e0-6cc6ff04070a\",\n                        \"fce0a847-4d03-413a-8143-dbc44e0eb5c5\",\n                        \"5f2ec4d3-1207-4e92-83b1-c5a5020874de\",\n                        \"4dab6cae-be0f-4b07-a426-7ba06c7ccdb7\",\n                        \"2b13cb88-a365-4153-be27-26ce3059726f\",\n                        \"a406a319-81f0-4cb5-b949-23948b6d596e\",\n                        \"e727fe9d-c724-4ef0-ba25-7c82c9595b99\",\n                        \"4bb90be2-eb62-42d6-9b64-66a520319694\",\n                        \"6a81e633-e7b3-44b5-8823-068bc9b6c2e9\",\n                        \"fe660dd4-ab13-4e51-9be8-acd9b517ee69\",\n                        \"dc18869f-e377-4d9c-9a45-28f9fd8eb500\",\n                        \"26c9f2fe-df65-4473-ba71-7ad16548b95d\",\n                        \"67936752-5d9d-4a7f-b503-46e1dbafb68a\",\n                        \"555e700a-1597-4bfc-8098-83e439238198\",\n                        \"f9be7ed6-4259-49de-9566-ffbcdb821062\",\n                        \"1c70e0c9-5c21-4ac4-be30-bd507f500921\",\n                        \"f2f4e25a-8d09-4ca0-9029-244c518e3322\",\n                        \"d115cb44-da14-4489-957e-201463479da9\",\n                        \"672d3a60-e2db-4e94-8288-d702082b179e\",\n                        \"326e6601-ec96-4587-84dc-c1a3241d5c21\",\n                        \"fbdb2135-865e-48d2-8083-693ae21a576a\",\n                        \"061ee951-9fea-4f75-bc97-b45144877f22\",\n                        \"268996c2-df2b-4b7a-b30f-c0332d36ab7e\",\n                        \"7b4e0d98-b7e9-41a8-b857-d986f0730866\",\n                        \"d23f1ef0-976a-424d-8734-947fde58bea0\",\n                        \"2d32ee9e-5411-47d3-86d1-6255160daad2\",\n                        \"bd940d74-af54-4930-9d62-be41d6f69dfe\",\n                        \"b453b278-f921-499c-9fd2-aefd051f4fc3\",\n                        \"1c2a4e56-9d6a-44de-a08b-c67b8d2772f6\",\n                        \"395b0363-f51e-4fd5-ad0c-99b6a822c589\",\n                        \"d39a0969-7849-40b1-ab78-7c0006902837\",\n                        \"c19a9036-914e-4879-9809-6f8d38121a3a\",\n                        \"29b27b32-da49-4f4c-b5c4-49046fc971ec\",\n                        \"7bb54992-3b83-497c-9c6d-2fdbe8b24c5e\",\n                        \"2d4a74c5-bea2-4ada-a708-b073a89c2f7a\",\n                        \"1bf8e296-d183-4bc4-abea-ebb36d583b9b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 57.79740905761719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00747243408113718,\n                    \"Left\": 0.16350236535072327,\n                    \"Top\": 0.05193289369344711,\n                    \"Width\": 0.019068926572799683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16350236535072327,\n                        \"Y\": 0.05193289369344711\n                    },\n                    {\n                        \"X\": 0.18257129192352295,\n                        \"Y\": 0.05193289369344711\n                    },\n                    {\n                        \"X\": 0.18257129192352295,\n                        \"Y\": 0.05940533056855202\n                    },\n                    {\n                        \"X\": 0.16350236535072327,\n                        \"Y\": 0.05940533056855202\n                    }\n                ]\n            },\n            \"Id\": \"4c915715-f6ce-428d-ba77-101fe0ba6d0d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5fc4408d-6e4d-4d49-9953-7f84cef5e3d4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"CO.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84630584716797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007594075985252857,\n                    \"Left\": 0.2095053493976593,\n                    \"Top\": 0.051555734127759933,\n                    \"Width\": 0.022744961082935333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2095053493976593,\n                        \"Y\": 0.051555734127759933\n                    },\n                    {\n                        \"X\": 0.23225030303001404,\n                        \"Y\": 0.051555734127759933\n                    },\n                    {\n                        \"X\": 0.23225030303001404,\n                        \"Y\": 0.059149809181690216\n                    },\n                    {\n                        \"X\": 0.2095053493976593,\n                        \"Y\": 0.059149809181690216\n                    }\n                ]\n            },\n            \"Id\": \"a9ece416-c7ae-4ee8-884d-043532e3b4f6\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3061f261-0444-47a3-ada2-3982ba993d04\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"FILE\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.33470153808594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007839549332857132,\n                    \"Left\": 0.2619761526584625,\n                    \"Top\": 0.051377974450588226,\n                    \"Width\": 0.030805477872490883\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2619761526584625,\n                        \"Y\": 0.051377974450588226\n                    },\n                    {\n                        \"X\": 0.29278162121772766,\n                        \"Y\": 0.051377974450588226\n                    },\n                    {\n                        \"X\": 0.29278162121772766,\n                        \"Y\": 0.05921752378344536\n                    },\n                    {\n                        \"X\": 0.2619761526584625,\n                        \"Y\": 0.05921752378344536\n                    }\n                ]\n            },\n            \"Id\": \"ce419df1-076b-4efe-9591-37b21599b724\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dc9d9a3a-c2d8-474b-b861-995918888369\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"DEPT.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.45960998535156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007769742514938116,\n                    \"Left\": 0.31492388248443604,\n                    \"Top\": 0.05106426775455475,\n                    \"Width\": 0.03521428257226944\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31492388248443604,\n                        \"Y\": 0.05106426775455475\n                    },\n                    {\n                        \"X\": 0.3501381576061249,\n                        \"Y\": 0.05106426775455475\n                    },\n                    {\n                        \"X\": 0.3501381576061249,\n                        \"Y\": 0.0588340125977993\n                    },\n                    {\n                        \"X\": 0.31492388248443604,\n                        \"Y\": 0.0588340125977993\n                    }\n                ]\n            },\n            \"Id\": \"c6fc86b1-305f-49db-81bc-a52358e8a7bb\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"856b4d41-d1d1-4b3d-ae7a-ad6b550c726d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"CLOCK\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.43995666503906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007801081985235214,\n                    \"Left\": 0.36383500695228577,\n                    \"Top\": 0.05139005184173584,\n                    \"Width\": 0.05710667744278908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36383500695228577,\n                        \"Y\": 0.05139005184173584\n                    },\n                    {\n                        \"X\": 0.42094168066978455,\n                        \"Y\": 0.05139005184173584\n                    },\n                    {\n                        \"X\": 0.42094168066978455,\n                        \"Y\": 0.059191133826971054\n                    },\n                    {\n                        \"X\": 0.36383500695228577,\n                        \"Y\": 0.059191133826971054\n                    }\n                ]\n            },\n            \"Id\": \"44f87f9e-363b-4542-8fb3-09e40344384e\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7e9116c1-ff8f-489a-9724-5fbb122e4378\",\n                        \"8f18daab-f0cf-4dbe-956a-baf0f76b8caf\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"VCHR. NO.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85846710205078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007285236846655607,\n                    \"Left\": 0.43886277079582214,\n                    \"Top\": 0.051035769283771515,\n                    \"Width\": 0.018407253548502922\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43886277079582214,\n                        \"Y\": 0.051035769283771515\n                    },\n                    {\n                        \"X\": 0.4572700262069702,\n                        \"Y\": 0.051035769283771515\n                    },\n                    {\n                        \"X\": 0.4572700262069702,\n                        \"Y\": 0.05832100659608841\n                    },\n                    {\n                        \"X\": 0.43886277079582214,\n                        \"Y\": 0.05832100659608841\n                    }\n                ]\n            },\n            \"Id\": \"77af7eb9-de6f-43dc-a34a-528906d9344d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5430e451-d1ad-4ede-a774-4bd8c721c555\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"046\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87419891357422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008249248377978802,\n                    \"Left\": 0.16477474570274353,\n                    \"Top\": 0.06261423230171204,\n                    \"Width\": 0.021953733637928963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16477474570274353,\n                        \"Y\": 0.06261423230171204\n                    },\n                    {\n                        \"X\": 0.18672847747802734,\n                        \"Y\": 0.06261423230171204\n                    },\n                    {\n                        \"X\": 0.18672847747802734,\n                        \"Y\": 0.07086347788572311\n                    },\n                    {\n                        \"X\": 0.16477474570274353,\n                        \"Y\": 0.07086347788572311\n                    }\n                ]\n            },\n            \"Id\": \"099df39e-a438-4f3a-834a-2d6cfecbbf85\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"37dfd822-4e28-435a-9c9a-16e2dc2a936d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"LV3\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.72770690917969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00822491105645895,\n                    \"Left\": 0.20732784271240234,\n                    \"Top\": 0.06330199539661407,\n                    \"Width\": 0.03947128355503082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20732784271240234,\n                        \"Y\": 0.06330199539661407\n                    },\n                    {\n                        \"X\": 0.24679912626743317,\n                        \"Y\": 0.06330199539661407\n                    },\n                    {\n                        \"X\": 0.24679912626743317,\n                        \"Y\": 0.0715269073843956\n                    },\n                    {\n                        \"X\": 0.20732784271240234,\n                        \"Y\": 0.0715269073843956\n                    }\n                ]\n            },\n            \"Id\": \"71738299-2211-4ef5-8d96-e1d5ae0c1ee4\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"70a3c93d-b942-4444-9af9-4277e465611a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"000342\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.91703033447266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007980359718203545,\n                    \"Left\": 0.26018714904785156,\n                    \"Top\": 0.06345470249652863,\n                    \"Width\": 0.03854002803564072\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26018714904785156,\n                        \"Y\": 0.06345470249652863\n                    },\n                    {\n                        \"X\": 0.2987271547317505,\n                        \"Y\": 0.06345470249652863\n                    },\n                    {\n                        \"X\": 0.2987271547317505,\n                        \"Y\": 0.07143506407737732\n                    },\n                    {\n                        \"X\": 0.26018714904785156,\n                        \"Y\": 0.07143506407737732\n                    }\n                ]\n            },\n            \"Id\": \"0d258f18-22bd-431f-bb57-2c0d5730ff01\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0c41fd20-dc75-4416-b33a-444a53814d4d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"000300\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 91.70362091064453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008210080675780773,\n                    \"Left\": 0.36396586894989014,\n                    \"Top\": 0.06333304941654205,\n                    \"Width\": 0.06454736739397049\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36396586894989014,\n                        \"Y\": 0.06333304941654205\n                    },\n                    {\n                        \"X\": 0.42851322889328003,\n                        \"Y\": 0.06333304941654205\n                    },\n                    {\n                        \"X\": 0.42851322889328003,\n                        \"Y\": 0.0715431347489357\n                    },\n                    {\n                        \"X\": 0.36396586894989014,\n                        \"Y\": 0.0715431347489357\n                    }\n                ]\n            },\n            \"Id\": \"8d5407d4-2a67-4adc-8373-d623c6e17974\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"48050673-05df-4b3b-a53c-e0297e595509\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"0000651284\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82050323486328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00813013594597578,\n                    \"Left\": 0.4535598158836365,\n                    \"Top\": 0.0634450912475586,\n                    \"Width\": 0.007738289888948202\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4535598158836365,\n                        \"Y\": 0.0634450912475586\n                    },\n                    {\n                        \"X\": 0.4612981081008911,\n                        \"Y\": 0.0634450912475586\n                    },\n                    {\n                        \"X\": 0.4612981081008911,\n                        \"Y\": 0.07157522439956665\n                    },\n                    {\n                        \"X\": 0.4535598158836365,\n                        \"Y\": 0.07157522439956665\n                    }\n                ]\n            },\n            \"Id\": \"a73be150-8517-4aaa-985e-bdb5b9759c7c\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1ca62ad6-f389-45b8-bf73-ab8c16eb72d7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"2\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91487884521484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01952042430639267,\n                    \"Left\": 0.56464684009552,\n                    \"Top\": 0.05803358182311058,\n                    \"Width\": 0.2430235743522644\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.56464684009552,\n                        \"Y\": 0.05803358182311058\n                    },\n                    {\n                        \"X\": 0.8076704144477844,\n                        \"Y\": 0.05803358182311058\n                    },\n                    {\n                        \"X\": 0.8076704144477844,\n                        \"Y\": 0.07755400985479355\n                    },\n                    {\n                        \"X\": 0.56464684009552,\n                        \"Y\": 0.07755400985479355\n                    }\n                ]\n            },\n            \"Id\": \"e535eec7-c866-4b9e-9406-7b79d278aee7\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"2972c888-eda8-4bd4-a75e-d4c34dac4360\",\n                        \"22be2eaf-f041-45ad-8b95-81401b981074\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Earnings Statement\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76412963867188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00886586681008339,\n                    \"Left\": 0.12390506267547607,\n                    \"Top\": 0.09563913196325302,\n                    \"Width\": 0.14727924764156342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12390506267547607,\n                        \"Y\": 0.09563913196325302\n                    },\n                    {\n                        \"X\": 0.2711842954158783,\n                        \"Y\": 0.09563913196325302\n                    },\n                    {\n                        \"X\": 0.2711842954158783,\n                        \"Y\": 0.10450499504804611\n                    },\n                    {\n                        \"X\": 0.12390506267547607,\n                        \"Y\": 0.10450499504804611\n                    }\n                ]\n            },\n            \"Id\": \"bc34698b-b2ab-47c5-9a85-abe40add50dd\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"926a6ea0-d11b-474b-a644-3df021eedbab\",\n                        \"6e62b7e1-b005-4baf-a1b9-049e81b99db7\",\n                        \"090ab5fa-6594-4bcf-8198-2411a24e3dc2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"ANYCOMPANY INC. USA\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73788452148438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012405040673911572,\n                    \"Left\": 0.5690472722053528,\n                    \"Top\": 0.09255556762218475,\n                    \"Width\": 0.09736151248216629\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5690472722053528,\n                        \"Y\": 0.09255556762218475\n                    },\n                    {\n                        \"X\": 0.6664087772369385,\n                        \"Y\": 0.09255556762218475\n                    },\n                    {\n                        \"X\": 0.6664087772369385,\n                        \"Y\": 0.1049606055021286\n                    },\n                    {\n                        \"X\": 0.5690472722053528,\n                        \"Y\": 0.1049606055021286\n                    }\n                ]\n            },\n            \"Id\": \"15b67b6c-b652-4f7e-b678-90c1d3d39fda\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dd9e3436-27b6-4563-8828-43e078e4a983\",\n                        \"9c6c8fa4-23d6-40f2-be00-a556d53baeb6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Period Ending:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.26754760742188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01001033652573824,\n                    \"Left\": 0.7752424478530884,\n                    \"Top\": 0.09265592694282532,\n                    \"Width\": 0.0751953125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7752424478530884,\n                        \"Y\": 0.09265592694282532\n                    },\n                    {\n                        \"X\": 0.8504377603530884,\n                        \"Y\": 0.09265592694282532\n                    },\n                    {\n                        \"X\": 0.8504377603530884,\n                        \"Y\": 0.10266625881195068\n                    },\n                    {\n                        \"X\": 0.7752424478530884,\n                        \"Y\": 0.10266625881195068\n                    }\n                ]\n            },\n            \"Id\": \"3c9359b0-049a-40d8-a854-3e8b83b257c8\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"255e9b88-37e8-4ede-86af-9dd738fea686\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"04/30/2019\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75688171386719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008922655135393143,\n                    \"Left\": 0.12535633146762848,\n                    \"Top\": 0.10983675718307495,\n                    \"Width\": 0.13140298426151276\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12535633146762848,\n                        \"Y\": 0.10983675718307495\n                    },\n                    {\n                        \"X\": 0.25675931572914124,\n                        \"Y\": 0.10983675718307495\n                    },\n                    {\n                        \"X\": 0.25675931572914124,\n                        \"Y\": 0.11875941604375839\n                    },\n                    {\n                        \"X\": 0.12535633146762848,\n                        \"Y\": 0.11875941604375839\n                    }\n                ]\n            },\n            \"Id\": \"e167630c-facb-4683-ac79-3647987b3523\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cac483a1-8994-460c-85f8-a3552db78a47\",\n                        \"e708b20e-f326-46ed-9ab5-41cd634be0e4\",\n                        \"f70a33ca-8983-4d0f-9266-ffb996d8e109\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1212 FICTIONAL BLVD\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.45245361328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012764019891619682,\n                    \"Left\": 0.5688372850418091,\n                    \"Top\": 0.10754478722810745,\n                    \"Width\": 0.06548140197992325\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5688372850418091,\n                        \"Y\": 0.10754478722810745\n                    },\n                    {\n                        \"X\": 0.6343187093734741,\n                        \"Y\": 0.10754478722810745\n                    },\n                    {\n                        \"X\": 0.6343187093734741,\n                        \"Y\": 0.12030880153179169\n                    },\n                    {\n                        \"X\": 0.5688372850418091,\n                        \"Y\": 0.12030880153179169\n                    }\n                ]\n            },\n            \"Id\": \"15d2b201-22d5-4c92-a9d7-4da66dab87ba\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4482c25a-4ab4-4c58-b779-301fba5f79bc\",\n                        \"472694f2-d61a-494f-9c6a-7d6ff4c8a01c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Pay Date:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5789566040039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00998600386083126,\n                    \"Left\": 0.7752217054367065,\n                    \"Top\": 0.10813913494348526,\n                    \"Width\": 0.07482076436281204\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7752217054367065,\n                        \"Y\": 0.10813913494348526\n                    },\n                    {\n                        \"X\": 0.850042462348938,\n                        \"Y\": 0.10813913494348526\n                    },\n                    {\n                        \"X\": 0.850042462348938,\n                        \"Y\": 0.11812514066696167\n                    },\n                    {\n                        \"X\": 0.7752217054367065,\n                        \"Y\": 0.11812514066696167\n                    }\n                ]\n            },\n            \"Id\": \"ac0a2cab-d3ba-49e8-80d7-08606e22cb57\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3e70ea79-350c-4d53-8e47-f467d70d77f8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"04/29/2019\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.89861297607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00977564137428999,\n                    \"Left\": 0.1247895285487175,\n                    \"Top\": 0.125528484582901,\n                    \"Width\": 0.06052963435649872\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1247895285487175,\n                        \"Y\": 0.125528484582901\n                    },\n                    {\n                        \"X\": 0.18531915545463562,\n                        \"Y\": 0.125528484582901\n                    },\n                    {\n                        \"X\": 0.18531915545463562,\n                        \"Y\": 0.13530412316322327\n                    },\n                    {\n                        \"X\": 0.1247895285487175,\n                        \"Y\": 0.13530412316322327\n                    }\n                ]\n            },\n            \"Id\": \"0a940cec-532d-420d-a245-9590f9378749\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0b7d8d51-16a9-4cd7-9121-b87589fc98dd\",\n                        \"a738b071-ba14-4b53-8c01-9e6b574086a9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"SUITE 28,\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5507583618164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010083187371492386,\n                    \"Left\": 0.12353947013616562,\n                    \"Top\": 0.13795486092567444,\n                    \"Width\": 0.13398157060146332\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12353947013616562,\n                        \"Y\": 0.13795486092567444\n                    },\n                    {\n                        \"X\": 0.25752103328704834,\n                        \"Y\": 0.13795486092567444\n                    },\n                    {\n                        \"X\": 0.25752103328704834,\n                        \"Y\": 0.14803805947303772\n                    },\n                    {\n                        \"X\": 0.12353947013616562,\n                        \"Y\": 0.14803805947303772\n                    }\n                ]\n            },\n            \"Id\": \"2367c131-0638-495d-bea0-f5c92832efd7\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e9e79b5a-149b-475a-87ea-928fee1ddd08\",\n                        \"e0e7f50c-c810-478d-96b9-d43d00dd0b50\",\n                        \"ff80d3cb-6678-442e-8cfe-4b8b5c3451ce\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"ANYTOWN, USA 10101\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77843475341797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012159524485468864,\n                    \"Left\": 0.12402775883674622,\n                    \"Top\": 0.18159104883670807,\n                    \"Width\": 0.25497138500213623\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12402775883674622,\n                        \"Y\": 0.18159104883670807\n                    },\n                    {\n                        \"X\": 0.37899914383888245,\n                        \"Y\": 0.18159104883670807\n                    },\n                    {\n                        \"X\": 0.37899914383888245,\n                        \"Y\": 0.1937505602836609\n                    },\n                    {\n                        \"X\": 0.12402775883674622,\n                        \"Y\": 0.1937505602836609\n                    }\n                ]\n            },\n            \"Id\": \"df3c0f5f-a87a-4281-8606-0306df184b03\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7452325e-f279-4cd1-a84d-be38a08f89ef\",\n                        \"1c565b90-8de9-4725-bd5c-36e0ca2ccb8b\",\n                        \"5bd94c39-e8a5-4b56-867a-6d3626ee3f28\",\n                        \"93715c41-2ee4-46bc-9a1a-e4ea3527fb13\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Social Security Number: 518-85-7136\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.49748229980469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01373875793069601,\n                    \"Left\": 0.5983403325080872,\n                    \"Top\": 0.182119682431221,\n                    \"Width\": 0.1432933807373047\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5983403325080872,\n                        \"Y\": 0.182119682431221\n                    },\n                    {\n                        \"X\": 0.7416337132453918,\n                        \"Y\": 0.182119682431221\n                    },\n                    {\n                        \"X\": 0.7416337132453918,\n                        \"Y\": 0.1958584487438202\n                    },\n                    {\n                        \"X\": 0.5983403325080872,\n                        \"Y\": 0.1958584487438202\n                    }\n                ]\n            },\n            \"Id\": \"807e4123-c271-48e3-8620-60eb9e8b0dbc\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"376e1fa5-c3ab-4e4a-95ac-23550480a50a\",\n                        \"39e6a2dc-0a36-4626-87d0-ab69620df5ba\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Alejandro Rosalez\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.53321838378906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01040543895214796,\n                    \"Left\": 0.1234658733010292,\n                    \"Top\": 0.19507884979248047,\n                    \"Width\": 0.21055443584918976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1234658733010292,\n                        \"Y\": 0.19507884979248047\n                    },\n                    {\n                        \"X\": 0.33402031660079956,\n                        \"Y\": 0.19507884979248047\n                    },\n                    {\n                        \"X\": 0.33402031660079956,\n                        \"Y\": 0.2054842859506607\n                    },\n                    {\n                        \"X\": 0.1234658733010292,\n                        \"Y\": 0.2054842859506607\n                    }\n                ]\n            },\n            \"Id\": \"a6b13a6b-e1a3-44b8-8e01-ff5e8622abce\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bffcc1a9-540d-43bb-8dd0-58878ad77169\",\n                        \"d439b44b-0982-4d3c-9914-3133ef2dabf6\",\n                        \"f28a7bc9-b151-4b2e-b6de-ba19774761e2\",\n                        \"d9b15400-d72f-4cc1-94c4-0e37c479691e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Taxable Marital Status: Married\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87744140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013087802566587925,\n                    \"Left\": 0.5993978977203369,\n                    \"Top\": 0.19689145684242249,\n                    \"Width\": 0.12494281679391861\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993978977203369,\n                        \"Y\": 0.19689145684242249\n                    },\n                    {\n                        \"X\": 0.7243407368659973,\n                        \"Y\": 0.19689145684242249\n                    },\n                    {\n                        \"X\": 0.7243407368659973,\n                        \"Y\": 0.20997925102710724\n                    },\n                    {\n                        \"X\": 0.5993978977203369,\n                        \"Y\": 0.20997925102710724\n                    }\n                ]\n            },\n            \"Id\": \"ceb81403-b712-4171-970b-4e1157df6883\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"060c2c22-912a-456e-ae3d-e697f600a550\",\n                        \"50626fef-c65c-4d48-8ff0-7d2972f168d6\",\n                        \"40074044-7cc1-4d93-bdd7-f36a18b8a070\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"400 Kozey Light\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 81.84607696533203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012008840218186378,\n                    \"Left\": 0.1249840036034584,\n                    \"Top\": 0.20823527872562408,\n                    \"Width\": 0.15819695591926575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1249840036034584,\n                        \"Y\": 0.20823527872562408\n                    },\n                    {\n                        \"X\": 0.28318095207214355,\n                        \"Y\": 0.20823527872562408\n                    },\n                    {\n                        \"X\": 0.28318095207214355,\n                        \"Y\": 0.22024410963058472\n                    },\n                    {\n                        \"X\": 0.1249840036034584,\n                        \"Y\": 0.22024410963058472\n                    }\n                ]\n            },\n            \"Id\": \"ad1b3b6f-6046-46ab-81b7-788e32ec0924\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a8003327-e639-4592-bdb5-68ba85ba0e34\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Exemptions/Allowances\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.88740539550781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013074619695544243,\n                    \"Left\": 0.5988011956214905,\n                    \"Top\": 0.2110283076763153,\n                    \"Width\": 0.1725974678993225\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5988011956214905,\n                        \"Y\": 0.2110283076763153\n                    },\n                    {\n                        \"X\": 0.771398663520813,\n                        \"Y\": 0.2110283076763153\n                    },\n                    {\n                        \"X\": 0.771398663520813,\n                        \"Y\": 0.2241029292345047\n                    },\n                    {\n                        \"X\": 0.5988011956214905,\n                        \"Y\": 0.2241029292345047\n                    }\n                ]\n            },\n            \"Id\": \"fa25edb3-d9bd-47d3-a25a-21dc9d23ce77\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"efc2215a-0319-425f-a76b-c92681ba4229\",\n                        \"09ac6446-1aec-4111-8880-6d51aae5be6e\",\n                        \"022ca3a4-6b42-43f4-91be-fe8801b9937c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Weberburgh, HI 29922\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.0718994140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010097477585077286,\n                    \"Left\": 0.1431739628314972,\n                    \"Top\": 0.2218809723854065,\n                    \"Width\": 0.06823892891407013\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1431739628314972,\n                        \"Y\": 0.2218809723854065\n                    },\n                    {\n                        \"X\": 0.21141289174556732,\n                        \"Y\": 0.2218809723854065\n                    },\n                    {\n                        \"X\": 0.21141289174556732,\n                        \"Y\": 0.23197844624519348\n                    },\n                    {\n                        \"X\": 0.1431739628314972,\n                        \"Y\": 0.23197844624519348\n                    }\n                ]\n            },\n            \"Id\": \"4a8c06b6-73ba-433d-b047-143ab17dbd16\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1a0d508b-e46a-4abc-83d4-8a173d2126ad\",\n                        \"b057e36c-5ee0-47b1-bd51-b0ef1cd9fdae\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Federal: 3\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.64529418945312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009997430257499218,\n                    \"Left\": 0.14218488335609436,\n                    \"Top\": 0.23507870733737946,\n                    \"Width\": 0.08385037630796432\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14218488335609436,\n                        \"Y\": 0.23507870733737946\n                    },\n                    {\n                        \"X\": 0.2260352522134781,\n                        \"Y\": 0.23507870733737946\n                    },\n                    {\n                        \"X\": 0.2260352522134781,\n                        \"Y\": 0.24507613480091095\n                    },\n                    {\n                        \"X\": 0.14218488335609436,\n                        \"Y\": 0.24507613480091095\n                    }\n                ]\n            },\n            \"Id\": \"6b809a9a-b15a-4b86-b847-b7023ba61981\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"798027ee-c9c7-4443-8918-12cc32f278b7\",\n                        \"f50c27d0-d123-44f3-a333-c6083abc642b\",\n                        \"efe77b9e-b2c9-4771-b58a-0ca38bd30a57\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Tax State: 2\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93499755859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012873919680714607,\n                    \"Left\": 0.07025602459907532,\n                    \"Top\": 0.2990618050098419,\n                    \"Width\": 0.06880509853363037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07025602459907532,\n                        \"Y\": 0.2990618050098419\n                    },\n                    {\n                        \"X\": 0.1390611231327057,\n                        \"Y\": 0.2990618050098419\n                    },\n                    {\n                        \"X\": 0.1390611231327057,\n                        \"Y\": 0.3119357228279114\n                    },\n                    {\n                        \"X\": 0.07025602459907532,\n                        \"Y\": 0.3119357228279114\n                    }\n                ]\n            },\n            \"Id\": \"1c897995-ebcb-47f1-b263-fbc7c8393287\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"32b21e55-004a-4ee5-9af6-afd4a481842d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Earnings\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96603393554688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009521623142063618,\n                    \"Left\": 0.21060852706432343,\n                    \"Top\": 0.29902783036231995,\n                    \"Width\": 0.02769084833562374\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21060852706432343,\n                        \"Y\": 0.29902783036231995\n                    },\n                    {\n                        \"X\": 0.23829936981201172,\n                        \"Y\": 0.29902783036231995\n                    },\n                    {\n                        \"X\": 0.23829936981201172,\n                        \"Y\": 0.3085494637489319\n                    },\n                    {\n                        \"X\": 0.21060852706432343,\n                        \"Y\": 0.3085494637489319\n                    }\n                ]\n            },\n            \"Id\": \"c9d6b391-c1c5-4096-84ca-a471395abee4\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"77dddbfd-8b88-4505-89a1-5fc4379cf631\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"rate\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.62782287597656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010034850798547268,\n                    \"Left\": 0.28141021728515625,\n                    \"Top\": 0.298642635345459,\n                    \"Width\": 0.041197050362825394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28141021728515625,\n                        \"Y\": 0.298642635345459\n                    },\n                    {\n                        \"X\": 0.32260724902153015,\n                        \"Y\": 0.298642635345459\n                    },\n                    {\n                        \"X\": 0.32260724902153015,\n                        \"Y\": 0.3086774945259094\n                    },\n                    {\n                        \"X\": 0.28141021728515625,\n                        \"Y\": 0.3086774945259094\n                    }\n                ]\n            },\n            \"Id\": \"fffdecb9-4e66-492b-93dd-dfb5093bc28c\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b706a1eb-4a1f-4813-99a9-13b0bc048a44\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"hours\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96745300292969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012180388905107975,\n                    \"Left\": 0.3483469486236572,\n                    \"Top\": 0.2984272837638855,\n                    \"Width\": 0.07588238269090652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3483469486236572,\n                        \"Y\": 0.2984272837638855\n                    },\n                    {\n                        \"X\": 0.42422932386398315,\n                        \"Y\": 0.2984272837638855\n                    },\n                    {\n                        \"X\": 0.42422932386398315,\n                        \"Y\": 0.3106076717376709\n                    },\n                    {\n                        \"X\": 0.3483469486236572,\n                        \"Y\": 0.3106076717376709\n                    }\n                ]\n            },\n            \"Id\": \"3a6d1a09-0746-4e53-b9d5-e356e3930e14\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"369b5fde-4e79-4bc1-97e3-a1e622599d05\",\n                        \"0d0bdeac-5233-4867-8247-db187571e5b1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"this period\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94508361816406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011889745481312275,\n                    \"Left\": 0.4665904641151428,\n                    \"Top\": 0.29884204268455505,\n                    \"Width\": 0.08297590911388397\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4665904641151428,\n                        \"Y\": 0.29884204268455505\n                    },\n                    {\n                        \"X\": 0.549566388130188,\n                        \"Y\": 0.29884204268455505\n                    },\n                    {\n                        \"X\": 0.549566388130188,\n                        \"Y\": 0.31073176860809326\n                    },\n                    {\n                        \"X\": 0.4665904641151428,\n                        \"Y\": 0.31073176860809326\n                    }\n                ]\n            },\n            \"Id\": \"e14029fc-c03a-4a53-9715-20dfd3595830\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f6b1909b-277d-43af-911c-9f38de3995f6\",\n                        \"b637f74f-312a-422f-ba11-ac39c36e21b0\",\n                        \"74146882-435b-4d50-bffe-d8f405c487bf\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"year to date\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88348388671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010633749887347221,\n                    \"Left\": 0.5993179082870483,\n                    \"Top\": 0.29371377825737,\n                    \"Width\": 0.1019437238574028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993179082870483,\n                        \"Y\": 0.29371377825737\n                    },\n                    {\n                        \"X\": 0.7012616395950317,\n                        \"Y\": 0.29371377825737\n                    },\n                    {\n                        \"X\": 0.7012616395950317,\n                        \"Y\": 0.30434751510620117\n                    },\n                    {\n                        \"X\": 0.5993179082870483,\n                        \"Y\": 0.30434751510620117\n                    }\n                ]\n            },\n            \"Id\": \"6b2177d2-8a1d-4b16-96e9-5c02e07453be\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"87acac46-1130-466e-ae3f-2c135c637988\",\n                        \"a014aaf4-d01d-4767-961a-8a5983fe1253\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Other Benefits\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84172058105469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009953955188393593,\n                    \"Left\": 0.5995515584945679,\n                    \"Top\": 0.3071271479129791,\n                    \"Width\": 0.11074282228946686\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5995515584945679,\n                        \"Y\": 0.3071271479129791\n                    },\n                    {\n                        \"X\": 0.7102943658828735,\n                        \"Y\": 0.3071271479129791\n                    },\n                    {\n                        \"X\": 0.7102943658828735,\n                        \"Y\": 0.317081093788147\n                    },\n                    {\n                        \"X\": 0.5995515584945679,\n                        \"Y\": 0.317081093788147\n                    }\n                ]\n            },\n            \"Id\": \"5b63d04e-cf1f-45ca-8996-a0d52869de8a\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"40bae06a-176d-4c56-bed4-14aa45499667\",\n                        \"74f5d1a5-3cc1-4792-be50-0227afcd72b5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"and Information\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95870971679688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012202256359159946,\n                    \"Left\": 0.7415679097175598,\n                    \"Top\": 0.300169438123703,\n                    \"Width\": 0.07612401247024536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7415679097175598,\n                        \"Y\": 0.300169438123703\n                    },\n                    {\n                        \"X\": 0.8176919221878052,\n                        \"Y\": 0.300169438123703\n                    },\n                    {\n                        \"X\": 0.8176919221878052,\n                        \"Y\": 0.31237170100212097\n                    },\n                    {\n                        \"X\": 0.7415679097175598,\n                        \"Y\": 0.31237170100212097\n                    }\n                ]\n            },\n            \"Id\": \"44998c12-299e-4299-b56e-ad8a3395632f\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3be76415-9bc4-4741-b79e-4b12599b057a\",\n                        \"3f1131e3-684b-408e-b3dc-39a12f50f069\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"this period\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8860092163086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0101335309445858,\n                    \"Left\": 0.8901745676994324,\n                    \"Top\": 0.30007413029670715,\n                    \"Width\": 0.03072102926671505\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8901745676994324,\n                        \"Y\": 0.30007413029670715\n                    },\n                    {\n                        \"X\": 0.9208955764770508,\n                        \"Y\": 0.30007413029670715\n                    },\n                    {\n                        \"X\": 0.9208955764770508,\n                        \"Y\": 0.31020766496658325\n                    },\n                    {\n                        \"X\": 0.8901745676994324,\n                        \"Y\": 0.31020766496658325\n                    }\n                ]\n            },\n            \"Id\": \"8c8a0e6e-25f9-4111-b269-75bce6d6ebaf\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"89ec37c7-b007-4948-847a-713b423cb273\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"YTD\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85372161865234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012135201133787632,\n                    \"Left\": 0.06997334212064743,\n                    \"Top\": 0.32002073526382446,\n                    \"Width\": 0.05190309137105942\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06997334212064743,\n                        \"Y\": 0.32002073526382446\n                    },\n                    {\n                        \"X\": 0.12187642604112625,\n                        \"Y\": 0.32002073526382446\n                    },\n                    {\n                        \"X\": 0.12187642604112625,\n                        \"Y\": 0.3321559429168701\n                    },\n                    {\n                        \"X\": 0.06997334212064743,\n                        \"Y\": 0.3321559429168701\n                    }\n                ]\n            },\n            \"Id\": \"d30f04b4-4a9c-4e5f-bcd6-e313502bf6f4\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e5ebb409-1edc-4b7c-b8a7-b5bc0815ac60\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Regular\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81845092773438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009859772399067879,\n                    \"Left\": 0.2014435976743698,\n                    \"Top\": 0.3201325833797455,\n                    \"Width\": 0.036780718713998795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2014435976743698,\n                        \"Y\": 0.3201325833797455\n                    },\n                    {\n                        \"X\": 0.2382243126630783,\n                        \"Y\": 0.3201325833797455\n                    },\n                    {\n                        \"X\": 0.2382243126630783,\n                        \"Y\": 0.3299923539161682\n                    },\n                    {\n                        \"X\": 0.2014435976743698,\n                        \"Y\": 0.3299923539161682\n                    }\n                ]\n            },\n            \"Id\": \"89350918-a76a-457b-aaf3-620ea4fd9a9d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"18c825fe-d183-45be-8e5a-5d24eb13832a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"10.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.78376007080078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009894165210425854,\n                    \"Left\": 0.28472936153411865,\n                    \"Top\": 0.3201007843017578,\n                    \"Width\": 0.03815575689077377\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28472936153411865,\n                        \"Y\": 0.3201007843017578\n                    },\n                    {\n                        \"X\": 0.322885125875473,\n                        \"Y\": 0.3201007843017578\n                    },\n                    {\n                        \"X\": 0.322885125875473,\n                        \"Y\": 0.32999494671821594\n                    },\n                    {\n                        \"X\": 0.28472936153411865,\n                        \"Y\": 0.32999494671821594\n                    }\n                ]\n            },\n            \"Id\": \"787abff2-5f95-44ec-892d-07295e7612fc\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ba6e5de1-a89a-430b-b0d6-687f05dd6b54\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"40.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77479553222656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009893231093883514,\n                    \"Left\": 0.37874963879585266,\n                    \"Top\": 0.32017868757247925,\n                    \"Width\": 0.045163776725530624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37874963879585266,\n                        \"Y\": 0.32017868757247925\n                    },\n                    {\n                        \"X\": 0.4239133894443512,\n                        \"Y\": 0.32017868757247925\n                    },\n                    {\n                        \"X\": 0.4239133894443512,\n                        \"Y\": 0.33007192611694336\n                    },\n                    {\n                        \"X\": 0.37874963879585266,\n                        \"Y\": 0.33007192611694336\n                    }\n                ]\n            },\n            \"Id\": \"7eff7af7-3b1e-4ab3-99fc-5f79554c4128\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b17b5b22-fc5c-4253-9769-bb785aa77d1f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"400.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.63064575195312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01122372131794691,\n                    \"Left\": 0.4964635968208313,\n                    \"Top\": 0.3201235830783844,\n                    \"Width\": 0.056298255920410156\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4964635968208313,\n                        \"Y\": 0.3201235830783844\n                    },\n                    {\n                        \"X\": 0.5527618527412415,\n                        \"Y\": 0.3201235830783844\n                    },\n                    {\n                        \"X\": 0.5527618527412415,\n                        \"Y\": 0.3313473165035248\n                    },\n                    {\n                        \"X\": 0.4964635968208313,\n                        \"Y\": 0.3313473165035248\n                    }\n                ]\n            },\n            \"Id\": \"360114c1-1368-465e-af84-c64590e67be9\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e0a67ceb-b6a8-414b-a428-cd157d11b863\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1,200.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76886749267578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012320209294557571,\n                    \"Left\": 0.5994647145271301,\n                    \"Top\": 0.32319873571395874,\n                    \"Width\": 0.10756312310695648\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5994647145271301,\n                        \"Y\": 0.32319873571395874\n                    },\n                    {\n                        \"X\": 0.7070278525352478,\n                        \"Y\": 0.32319873571395874\n                    },\n                    {\n                        \"X\": 0.7070278525352478,\n                        \"Y\": 0.3355189263820648\n                    },\n                    {\n                        \"X\": 0.5994647145271301,\n                        \"Y\": 0.3355189263820648\n                    }\n                ]\n            },\n            \"Id\": \"bd973566-3f9d-42f4-9d60-a910702f543d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"544ed65e-dd67-41d4-8d45-8ce2bd5835af\",\n                        \"6f3a8b18-7c3a-4725-b522-59111a249373\",\n                        \"57de8cb4-c529-4a29-a3f5-789097f6ad96\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Group Term Life\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8238525390625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010144084692001343,\n                    \"Left\": 0.788446843624115,\n                    \"Top\": 0.3234468400478363,\n                    \"Width\": 0.027686748653650284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.788446843624115,\n                        \"Y\": 0.3234468400478363\n                    },\n                    {\n                        \"X\": 0.8161336183547974,\n                        \"Y\": 0.3234468400478363\n                    },\n                    {\n                        \"X\": 0.8161336183547974,\n                        \"Y\": 0.33359092473983765\n                    },\n                    {\n                        \"X\": 0.788446843624115,\n                        \"Y\": 0.33359092473983765\n                    }\n                ]\n            },\n            \"Id\": \"3fbf9497-9527-441d-9a7a-d8e0b019af4e\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d7990303-a433-42ec-8834-c7df9642c1aa\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"0.51\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.79698944091797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01014616061002016,\n                    \"Left\": 0.8832603693008423,\n                    \"Top\": 0.3234269618988037,\n                    \"Width\": 0.03728584945201874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8832603693008423,\n                        \"Y\": 0.3234269618988037\n                    },\n                    {\n                        \"X\": 0.9205462336540222,\n                        \"Y\": 0.3234269618988037\n                    },\n                    {\n                        \"X\": 0.9205462336540222,\n                        \"Y\": 0.3335731029510498\n                    },\n                    {\n                        \"X\": 0.8832603693008423,\n                        \"Y\": 0.3335731029510498\n                    }\n                ]\n            },\n            \"Id\": \"dd741eee-9ea9-498f-8626-137539240bf9\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"79d69783-cb33-4efd-9d59-a5d2c1a6584a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"27.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88472747802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010117372497916222,\n                    \"Left\": 0.06962619721889496,\n                    \"Top\": 0.33808380365371704,\n                    \"Width\": 0.05988564342260361\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06962619721889496,\n                        \"Y\": 0.33808380365371704\n                    },\n                    {\n                        \"X\": 0.12951183319091797,\n                        \"Y\": 0.33808380365371704\n                    },\n                    {\n                        \"X\": 0.12951183319091797,\n                        \"Y\": 0.348201185464859\n                    },\n                    {\n                        \"X\": 0.06962619721889496,\n                        \"Y\": 0.348201185464859\n                    }\n                ]\n            },\n            \"Id\": \"566774ee-a0d9-4d08-bc1a-09b9fa49b5cc\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a1f932c8-ac4c-4793-8f18-c24027a3f408\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Overtime\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92415618896484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009887798689305782,\n                    \"Left\": 0.20176410675048828,\n                    \"Top\": 0.33821406960487366,\n                    \"Width\": 0.03656870871782303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20176410675048828,\n                        \"Y\": 0.33821406960487366\n                    },\n                    {\n                        \"X\": 0.2383328080177307,\n                        \"Y\": 0.33821406960487366\n                    },\n                    {\n                        \"X\": 0.2383328080177307,\n                        \"Y\": 0.3481018543243408\n                    },\n                    {\n                        \"X\": 0.20176410675048828,\n                        \"Y\": 0.3481018543243408\n                    }\n                ]\n            },\n            \"Id\": \"2fd3c32b-b045-456d-a34b-da9145c67a2f\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9b1cfb0f-68c0-403d-8872-1146810e030a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"15.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80098724365234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009967172518372536,\n                    \"Left\": 0.28615203499794006,\n                    \"Top\": 0.3382280468940735,\n                    \"Width\": 0.03657831996679306\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28615203499794006,\n                        \"Y\": 0.3382280468940735\n                    },\n                    {\n                        \"X\": 0.3227303624153137,\n                        \"Y\": 0.3382280468940735\n                    },\n                    {\n                        \"X\": 0.3227303624153137,\n                        \"Y\": 0.34819522500038147\n                    },\n                    {\n                        \"X\": 0.28615203499794006,\n                        \"Y\": 0.34819522500038147\n                    }\n                ]\n            },\n            \"Id\": \"8729518c-4453-4177-8ec7-18f9cf78bd04\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1990485d-875c-41ba-a721-d2c25edfb2ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"14.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70832061767578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009961221367120743,\n                    \"Left\": 0.378692090511322,\n                    \"Top\": 0.3382893204689026,\n                    \"Width\": 0.04565313085913658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.378692090511322,\n                        \"Y\": 0.3382893204689026\n                    },\n                    {\n                        \"X\": 0.4243452250957489,\n                        \"Y\": 0.3382893204689026\n                    },\n                    {\n                        \"X\": 0.4243452250957489,\n                        \"Y\": 0.34825053811073303\n                    },\n                    {\n                        \"X\": 0.378692090511322,\n                        \"Y\": 0.34825053811073303\n                    }\n                ]\n            },\n            \"Id\": \"3885ac97-bd33-4828-9f4c-a5ef71f99f7c\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cfa16d82-370e-454f-97ad-ffc2901e419d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"210.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.64220428466797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009810156188905239,\n                    \"Left\": 0.5070266723632812,\n                    \"Top\": 0.3382924497127533,\n                    \"Width\": 0.0458882637321949\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5070266723632812,\n                        \"Y\": 0.3382924497127533\n                    },\n                    {\n                        \"X\": 0.5529149174690247,\n                        \"Y\": 0.3382924497127533\n                    },\n                    {\n                        \"X\": 0.5529149174690247,\n                        \"Y\": 0.3481025993824005\n                    },\n                    {\n                        \"X\": 0.5070266723632812,\n                        \"Y\": 0.3481025993824005\n                    }\n                ]\n            },\n            \"Id\": \"500dee1c-d43f-4f06-9a55-5ebe9aebcdde\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5e9c8f1c-c948-4b59-8f7c-8f1649151472\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"630.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.46513366699219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010139689780771732,\n                    \"Left\": 0.5992659330368042,\n                    \"Top\": 0.3415752649307251,\n                    \"Width\": 0.052805449813604355\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5992659330368042,\n                        \"Y\": 0.3415752649307251\n                    },\n                    {\n                        \"X\": 0.6520713567733765,\n                        \"Y\": 0.3415752649307251\n                    },\n                    {\n                        \"X\": 0.6520713567733765,\n                        \"Y\": 0.35171493887901306\n                    },\n                    {\n                        \"X\": 0.5992659330368042,\n                        \"Y\": 0.35171493887901306\n                    }\n                ]\n            },\n            \"Id\": \"0d37365c-54fd-4268-bbff-05a9ec306874\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a2154088-2e84-45a0-bc2f-bdf24528ff72\",\n                        \"cd2f7ab6-a331-468c-a4e1-67048a65a423\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Vac Hrs\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.59508514404297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009798252955079079,\n                    \"Left\": 0.8084457516670227,\n                    \"Top\": 0.34183284640312195,\n                    \"Width\": 0.00923934206366539\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8084457516670227,\n                        \"Y\": 0.34183284640312195\n                    },\n                    {\n                        \"X\": 0.8176851272583008,\n                        \"Y\": 0.34183284640312195\n                    },\n                    {\n                        \"X\": 0.8176851272583008,\n                        \"Y\": 0.3516311049461365\n                    },\n                    {\n                        \"X\": 0.8084457516670227,\n                        \"Y\": 0.3516311049461365\n                    }\n                ]\n            },\n            \"Id\": \"459e0adb-86b9-4b92-9dd5-1ce13b5884e4\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b44f1111-3065-4607-9821-f99aed8845e1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"4\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89442443847656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009814792312681675,\n                    \"Left\": 0.9115040302276611,\n                    \"Top\": 0.34148505330085754,\n                    \"Width\": 0.00909423828125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9115040302276611,\n                        \"Y\": 0.34148505330085754\n                    },\n                    {\n                        \"X\": 0.9205982685089111,\n                        \"Y\": 0.34148505330085754\n                    },\n                    {\n                        \"X\": 0.9205982685089111,\n                        \"Y\": 0.35129985213279724\n                    },\n                    {\n                        \"X\": 0.9115040302276611,\n                        \"Y\": 0.35129985213279724\n                    }\n                ]\n            },\n            \"Id\": \"a4a05060-abc9-4b82-af75-16c718479862\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3879bc1e-b670-490d-9719-05816c5fc82b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"7\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73861694335938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012161601334810257,\n                    \"Left\": 0.07009425014257431,\n                    \"Top\": 0.3558134138584137,\n                    \"Width\": 0.04909878224134445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07009425014257431,\n                        \"Y\": 0.3558134138584137\n                    },\n                    {\n                        \"X\": 0.11919303238391876,\n                        \"Y\": 0.3558134138584137\n                    },\n                    {\n                        \"X\": 0.11919303238391876,\n                        \"Y\": 0.36797499656677246\n                    },\n                    {\n                        \"X\": 0.07009425014257431,\n                        \"Y\": 0.36797499656677246\n                    }\n                ]\n            },\n            \"Id\": \"79e70977-27c9-41df-b2d9-57d8edc89659\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0da3d81f-5e11-44b9-80c1-dc5a7f8cf760\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Holiday\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83226013183594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009791160002350807,\n                    \"Left\": 0.20153091847896576,\n                    \"Top\": 0.35591188073158264,\n                    \"Width\": 0.036526717245578766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20153091847896576,\n                        \"Y\": 0.35591188073158264\n                    },\n                    {\n                        \"X\": 0.23805762827396393,\n                        \"Y\": 0.35591188073158264\n                    },\n                    {\n                        \"X\": 0.23805762827396393,\n                        \"Y\": 0.3657030463218689\n                    },\n                    {\n                        \"X\": 0.20153091847896576,\n                        \"Y\": 0.3657030463218689\n                    }\n                ]\n            },\n            \"Id\": \"7fc2cf63-86cb-427a-82bf-91ee71454bcc\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b9f81577-2d39-45fa-981b-28cc38a2cc6c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"10.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73686218261719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009808564558625221,\n                    \"Left\": 0.28598493337631226,\n                    \"Top\": 0.35584694147109985,\n                    \"Width\": 0.03678273409605026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28598493337631226,\n                        \"Y\": 0.35584694147109985\n                    },\n                    {\n                        \"X\": 0.3227676749229431,\n                        \"Y\": 0.35584694147109985\n                    },\n                    {\n                        \"X\": 0.3227676749229431,\n                        \"Y\": 0.3656555116176605\n                    },\n                    {\n                        \"X\": 0.28598493337631226,\n                        \"Y\": 0.3656555116176605\n                    }\n                ]\n            },\n            \"Id\": \"3ee92cae-af74-43f5-83c8-1ef4e4fa5fe0\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"acb81653-6302-43ab-9d24-18b30202f676\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"16.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.65497589111328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00991987343877554,\n                    \"Left\": 0.37972357869148254,\n                    \"Top\": 0.35586217045783997,\n                    \"Width\": 0.04450780525803566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37972357869148254,\n                        \"Y\": 0.35586217045783997\n                    },\n                    {\n                        \"X\": 0.4242314100265503,\n                        \"Y\": 0.35586217045783997\n                    },\n                    {\n                        \"X\": 0.4242314100265503,\n                        \"Y\": 0.3657820224761963\n                    },\n                    {\n                        \"X\": 0.37972357869148254,\n                        \"Y\": 0.3657820224761963\n                    }\n                ]\n            },\n            \"Id\": \"bdc9984a-5be7-4085-ad21-aba5b485fcb3\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"600c2e23-10a2-4ce5-9738-10f3f6131226\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"160.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.69437408447266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009521137923002243,\n                    \"Left\": 0.5073003172874451,\n                    \"Top\": 0.3560676872730255,\n                    \"Width\": 0.04574401304125786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5073003172874451,\n                        \"Y\": 0.3560676872730255\n                    },\n                    {\n                        \"X\": 0.553044319152832,\n                        \"Y\": 0.3560676872730255\n                    },\n                    {\n                        \"X\": 0.553044319152832,\n                        \"Y\": 0.36558881402015686\n                    },\n                    {\n                        \"X\": 0.5073003172874451,\n                        \"Y\": 0.36558881402015686\n                    }\n                ]\n            },\n            \"Id\": \"59c46f4e-fdee-4854-b2f7-ca80a5b9380a\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b34d2c92-c88c-4787-a706-0a6ef05a151d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"480.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.52993774414062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010174532420933247,\n                    \"Left\": 0.5994206070899963,\n                    \"Top\": 0.35910433530807495,\n                    \"Width\": 0.05513621121644974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5994206070899963,\n                        \"Y\": 0.35910433530807495\n                    },\n                    {\n                        \"X\": 0.6545568108558655,\n                        \"Y\": 0.35910433530807495\n                    },\n                    {\n                        \"X\": 0.6545568108558655,\n                        \"Y\": 0.36927884817123413\n                    },\n                    {\n                        \"X\": 0.5994206070899963,\n                        \"Y\": 0.36927884817123413\n                    }\n                ]\n            },\n            \"Id\": \"9aab027a-1407-4c8f-9ea2-6df61652e700\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"202a920a-5273-4909-942c-a4a02456ce73\",\n                        \"b24c0b35-66fd-4da4-966c-caca6a3c6913\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Sick Hrs\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82894134521484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00972005631774664,\n                    \"Left\": 0.808893084526062,\n                    \"Top\": 0.35948261618614197,\n                    \"Width\": 0.008947252295911312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.808893084526062,\n                        \"Y\": 0.35948261618614197\n                    },\n                    {\n                        \"X\": 0.8178403377532959,\n                        \"Y\": 0.35948261618614197\n                    },\n                    {\n                        \"X\": 0.8178403377532959,\n                        \"Y\": 0.3692026734352112\n                    },\n                    {\n                        \"X\": 0.808893084526062,\n                        \"Y\": 0.3692026734352112\n                    }\n                ]\n            },\n            \"Id\": \"dd9733e0-824f-4f8e-8493-1b8a811df478\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5f531631-c558-4826-b796-32fe12e098a0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"2\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80908966064453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00967338029295206,\n                    \"Left\": 0.9116646647453308,\n                    \"Top\": 0.3595333695411682,\n                    \"Width\": 0.008935511112213135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9116646647453308,\n                        \"Y\": 0.3595333695411682\n                    },\n                    {\n                        \"X\": 0.920600175857544,\n                        \"Y\": 0.3595333695411682\n                    },\n                    {\n                        \"X\": 0.920600175857544,\n                        \"Y\": 0.3692067563533783\n                    },\n                    {\n                        \"X\": 0.9116646647453308,\n                        \"Y\": 0.3692067563533783\n                    }\n                ]\n            },\n            \"Id\": \"175a923c-3896-4c07-ac6f-59423abe1f56\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"820bba7f-56d0-419a-81ed-1727e4e0259f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"2\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73139953613281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012077279388904572,\n                    \"Left\": 0.15803693234920502,\n                    \"Top\": 0.3757379949092865,\n                    \"Width\": 0.07339214533567429\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15803693234920502,\n                        \"Y\": 0.3757379949092865\n                    },\n                    {\n                        \"X\": 0.2314290702342987,\n                        \"Y\": 0.3757379949092865\n                    },\n                    {\n                        \"X\": 0.2314290702342987,\n                        \"Y\": 0.3878152668476105\n                    },\n                    {\n                        \"X\": 0.15803693234920502,\n                        \"Y\": 0.3878152668476105\n                    }\n                ]\n            },\n            \"Id\": \"817a32b6-f130-4651-928a-6d0d03f0d329\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"825ca4c0-6e76-4c9b-8178-de7ba549bd3f\",\n                        \"35906af4-10c8-48f1-af62-09cec7e040ff\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Gross Pay\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90182495117188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011518517509102821,\n                    \"Left\": 0.3709953725337982,\n                    \"Top\": 0.3751891255378723,\n                    \"Width\": 0.05343217775225639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3709953725337982,\n                        \"Y\": 0.3751891255378723\n                    },\n                    {\n                        \"X\": 0.4244275391101837,\n                        \"Y\": 0.3751891255378723\n                    },\n                    {\n                        \"X\": 0.4244275391101837,\n                        \"Y\": 0.3867076337337494\n                    },\n                    {\n                        \"X\": 0.3709953725337982,\n                        \"Y\": 0.3867076337337494\n                    }\n                ]\n            },\n            \"Id\": \"2f1f301b-b27f-4881-9028-c6b2105727d3\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d8c31500-9bd9-4928-aa17-be810f2be276\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$770.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72306823730469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011165834963321686,\n                    \"Left\": 0.494879812002182,\n                    \"Top\": 0.3756245970726013,\n                    \"Width\": 0.05800522118806839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.494879812002182,\n                        \"Y\": 0.3756245970726013\n                    },\n                    {\n                        \"X\": 0.5528850555419922,\n                        \"Y\": 0.3756245970726013\n                    },\n                    {\n                        \"X\": 0.5528850555419922,\n                        \"Y\": 0.3867904543876648\n                    },\n                    {\n                        \"X\": 0.494879812002182,\n                        \"Y\": 0.3867904543876648\n                    }\n                ]\n            },\n            \"Id\": \"b156f96f-f1c3-43bf-95ea-3c8a842c5647\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"00a2fa69-4e45-4c20-8753-aa539fe8cd15\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"2,310.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88404846191406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010636414401233196,\n                    \"Left\": 0.07026395946741104,\n                    \"Top\": 0.41640087962150574,\n                    \"Width\": 0.08768026530742645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07026395946741104,\n                        \"Y\": 0.41640087962150574\n                    },\n                    {\n                        \"X\": 0.1579442173242569,\n                        \"Y\": 0.41640087962150574\n                    },\n                    {\n                        \"X\": 0.1579442173242569,\n                        \"Y\": 0.4270372688770294\n                    },\n                    {\n                        \"X\": 0.07026395946741104,\n                        \"Y\": 0.4270372688770294\n                    }\n                ]\n            },\n            \"Id\": \"fae35f76-bcd5-4462-b24c-ba1961400998\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d99a86c5-4855-4888-9780-2ceb99e686bf\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Deductions\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82674407958984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011975312605500221,\n                    \"Left\": 0.17635150253772736,\n                    \"Top\": 0.4165501594543457,\n                    \"Width\": 0.06545073539018631\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17635150253772736,\n                        \"Y\": 0.4165501594543457\n                    },\n                    {\n                        \"X\": 0.24180224537849426,\n                        \"Y\": 0.4165501594543457\n                    },\n                    {\n                        \"X\": 0.24180224537849426,\n                        \"Y\": 0.42852547764778137\n                    },\n                    {\n                        \"X\": 0.17635150253772736,\n                        \"Y\": 0.42852547764778137\n                    }\n                ]\n            },\n            \"Id\": \"916b20d7-84d6-4802-8ffb-9f8b486e6e21\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f2d37b6e-36d8-49cf-8c67-47758d40296a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Statutory\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96559143066406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012053198181092739,\n                    \"Left\": 0.3518538177013397,\n                    \"Top\": 0.4164825677871704,\n                    \"Width\": 0.07624541223049164\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3518538177013397,\n                        \"Y\": 0.4164825677871704\n                    },\n                    {\n                        \"X\": 0.42809924483299255,\n                        \"Y\": 0.4164825677871704\n                    },\n                    {\n                        \"X\": 0.42809924483299255,\n                        \"Y\": 0.4285357594490051\n                    },\n                    {\n                        \"X\": 0.3518538177013397,\n                        \"Y\": 0.4285357594490051\n                    }\n                ]\n            },\n            \"Id\": \"fd753e4a-d9f6-4f3b-a277-d831e9e9fa1d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3e7c6e2d-4a5b-42de-a94a-90b17160c909\",\n                        \"37c6b17f-0b03-4b86-ba4a-5cb1b96aaa84\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"this period\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.27262115478516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012675901874899864,\n                    \"Left\": 0.5998026728630066,\n                    \"Top\": 0.4135952889919281,\n                    \"Width\": 0.12507273256778717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5998026728630066,\n                        \"Y\": 0.4135952889919281\n                    },\n                    {\n                        \"X\": 0.7248753905296326,\n                        \"Y\": 0.4135952889919281\n                    },\n                    {\n                        \"X\": 0.7248753905296326,\n                        \"Y\": 0.4262712001800537\n                    },\n                    {\n                        \"X\": 0.5998026728630066,\n                        \"Y\": 0.4262712001800537\n                    }\n                ]\n            },\n            \"Id\": \"0e7f2225-6629-4bca-b3c3-ccdddf3337fe\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"24e76f70-a77f-457c-92d2-dccec6cc965c\",\n                        \"0314211c-cc58-452c-b540-cab12ab6d601\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Important Notes\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90638732910156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010070247575640678,\n                    \"Left\": 0.17678429186344147,\n                    \"Top\": 0.43966740369796753,\n                    \"Width\": 0.13086628913879395\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17678429186344147,\n                        \"Y\": 0.43966740369796753\n                    },\n                    {\n                        \"X\": 0.3076505661010742,\n                        \"Y\": 0.43966740369796753\n                    },\n                    {\n                        \"X\": 0.3076505661010742,\n                        \"Y\": 0.44973763823509216\n                    },\n                    {\n                        \"X\": 0.17678429186344147,\n                        \"Y\": 0.44973763823509216\n                    }\n                ]\n            },\n            \"Id\": \"6dd25cc4-d711-4e02-9c0e-4fcacbd00e40\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"76503ed0-6906-40be-bc9e-76153213d013\",\n                        \"1ed10093-030a-473c-90f5-b9a9301f49d0\",\n                        \"fb940d5e-cdb2-4de3-92c5-a468b02161fc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Federal Income Tax\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55653381347656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009967898949980736,\n                    \"Left\": 0.3900908827781677,\n                    \"Top\": 0.43976685404777527,\n                    \"Width\": 0.03771708160638809\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3900908827781677,\n                        \"Y\": 0.43976685404777527\n                    },\n                    {\n                        \"X\": 0.4278079569339752,\n                        \"Y\": 0.43976685404777527\n                    },\n                    {\n                        \"X\": 0.4278079569339752,\n                        \"Y\": 0.44973474740982056\n                    },\n                    {\n                        \"X\": 0.3900908827781677,\n                        \"Y\": 0.44973474740982056\n                    }\n                ]\n            },\n            \"Id\": \"522c58e3-56fe-41e9-9dd6-29644ec8e958\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1016cf73-8a2d-4854-a6df-719f5c9c0a5c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"40.60\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.27571105957031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011214863508939743,\n                    \"Left\": 0.4953158497810364,\n                    \"Top\": 0.4397408068180084,\n                    \"Width\": 0.057847391813993454\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4953158497810364,\n                        \"Y\": 0.4397408068180084\n                    },\n                    {\n                        \"X\": 0.5531632304191589,\n                        \"Y\": 0.4397408068180084\n                    },\n                    {\n                        \"X\": 0.5531632304191589,\n                        \"Y\": 0.45095565915107727\n                    },\n                    {\n                        \"X\": 0.4953158497810364,\n                        \"Y\": 0.45095565915107727\n                    }\n                ]\n            },\n            \"Id\": \"bc4a58e3-7fff-4b97-a63f-f1c896a49b60\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"42eaf40f-2e89-4f5a-81cf-f3656d0526a7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"2,111.20\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.50234985351562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010954426601529121,\n                    \"Left\": 0.5990983247756958,\n                    \"Top\": 0.4355508089065552,\n                    \"Width\": 0.18094073235988617\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5990983247756958,\n                        \"Y\": 0.4355508089065552\n                    },\n                    {\n                        \"X\": 0.7800390720367432,\n                        \"Y\": 0.4355508089065552\n                    },\n                    {\n                        \"X\": 0.7800390720367432,\n                        \"Y\": 0.44650524854660034\n                    },\n                    {\n                        \"X\": 0.5990983247756958,\n                        \"Y\": 0.44650524854660034\n                    }\n                ]\n            },\n            \"Id\": \"781892a6-c321-4aff-81e0-54dffd793e6d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7978c293-b652-4c83-b6b9-b9cfdc730393\",\n                        \"e1ac19a0-83d2-418f-bd84-4867636b4ecf\",\n                        \"5f9ed683-7158-4889-91c1-e0f8b16d91c1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"COMPANY PH: (888)555-0101\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73944091796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009013308212161064,\n                    \"Left\": 0.5993844866752625,\n                    \"Top\": 0.45380398631095886,\n                    \"Width\": 0.14938390254974365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993844866752625,\n                        \"Y\": 0.45380398631095886\n                    },\n                    {\n                        \"X\": 0.7487683892250061,\n                        \"Y\": 0.45380398631095886\n                    },\n                    {\n                        \"X\": 0.7487683892250061,\n                        \"Y\": 0.46281731128692627\n                    },\n                    {\n                        \"X\": 0.5993844866752625,\n                        \"Y\": 0.46281731128692627\n                    }\n                ]\n            },\n            \"Id\": \"4cf45000-21df-46b9-86b0-6866a991f113\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1a960ca1-11b5-4ba0-bb70-f3c4b0b0d7b6\",\n                        \"125dff7f-b5ac-4285-93eb-c6e3ea14befa\",\n                        \"9af6c5df-98f0-410c-9e24-47b14ae4b029\",\n                        \"a738fc8b-d342-4bdd-9e15-a8978dfaae49\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"BASIS OF PAY: SALARY\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89685821533203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012166029773652554,\n                    \"Left\": 0.1762884259223938,\n                    \"Top\": 0.4588674008846283,\n                    \"Width\": 0.12687070667743683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1762884259223938,\n                        \"Y\": 0.4588674008846283\n                    },\n                    {\n                        \"X\": 0.3031591475009918,\n                        \"Y\": 0.4588674008846283\n                    },\n                    {\n                        \"X\": 0.3031591475009918,\n                        \"Y\": 0.4710334241390228\n                    },\n                    {\n                        \"X\": 0.1762884259223938,\n                        \"Y\": 0.4710334241390228\n                    }\n                ]\n            },\n            \"Id\": \"9429e220-3440-47bc-a3a2-77daadd20f7e\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"29ca1728-27c2-4b96-a5c1-d443b8032262\",\n                        \"c2409de5-9efe-4771-9365-279e924a2ca1\",\n                        \"3fb57e43-6413-4666-89db-dc9eadee5406\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Social Security Tax\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51765441894531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01005315501242876,\n                    \"Left\": 0.3901738226413727,\n                    \"Top\": 0.45896658301353455,\n                    \"Width\": 0.037475720047950745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3901738226413727,\n                        \"Y\": 0.45896658301353455\n                    },\n                    {\n                        \"X\": 0.4276495575904846,\n                        \"Y\": 0.45896658301353455\n                    },\n                    {\n                        \"X\": 0.4276495575904846,\n                        \"Y\": 0.46901974081993103\n                    },\n                    {\n                        \"X\": 0.3901738226413727,\n                        \"Y\": 0.46901974081993103\n                    }\n                ]\n            },\n            \"Id\": \"754e2aec-0fd6-46fd-a720-29643e922ca5\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b464b66d-83f8-4e52-9a4b-4ff28f6b7cab\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"28.05\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5104751586914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011237388476729393,\n                    \"Left\": 0.4956342279911041,\n                    \"Top\": 0.45890936255455017,\n                    \"Width\": 0.05709032341837883\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4956342279911041,\n                        \"Y\": 0.45890936255455017\n                    },\n                    {\n                        \"X\": 0.5527245402336121,\n                        \"Y\": 0.45890936255455017\n                    },\n                    {\n                        \"X\": 0.5527245402336121,\n                        \"Y\": 0.4701467454433441\n                    },\n                    {\n                        \"X\": 0.4956342279911041,\n                        \"Y\": 0.4701467454433441\n                    }\n                ]\n            },\n            \"Id\": \"0a533d18-303e-47a2-8c73-3d53cefe5224\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"28ee3fd5-8a9f-4849-994b-3b4819e2d0e8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1,458.60\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71392822265625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008877189829945564,\n                    \"Left\": 0.5993247032165527,\n                    \"Top\": 0.4685954451560974,\n                    \"Width\": 0.29718148708343506\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993247032165527,\n                        \"Y\": 0.4685954451560974\n                    },\n                    {\n                        \"X\": 0.896506130695343,\n                        \"Y\": 0.4685954451560974\n                    },\n                    {\n                        \"X\": 0.896506130695343,\n                        \"Y\": 0.4774726331233978\n                    },\n                    {\n                        \"X\": 0.5993247032165527,\n                        \"Y\": 0.4774726331233978\n                    }\n                ]\n            },\n            \"Id\": \"bf4f9135-30b4-40d6-bfd5-50cb9e02170f\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c17a7912-bdfd-47bd-acc1-375aae3e5a32\",\n                        \"3909d5d4-d0a8-4a4b-8188-c4b822ad9113\",\n                        \"0eea63f9-0b4b-4ed2-acb4-e9341a1e4dd8\",\n                        \"3a9181d8-81e7-4594-a02d-4dc986bd6f93\",\n                        \"b1344d96-8585-4e90-9dd8-b8afefc63cf8\",\n                        \"b378862b-22c3-46fc-b2c4-073018be4161\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"EFFECTIVE THIS PAY PERIOD YOUR REGULAR\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89154815673828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009996306151151657,\n                    \"Left\": 0.176249161362648,\n                    \"Top\": 0.4771156311035156,\n                    \"Width\": 0.08995470404624939\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.176249161362648,\n                        \"Y\": 0.4771156311035156\n                    },\n                    {\n                        \"X\": 0.2662038803100586,\n                        \"Y\": 0.4771156311035156\n                    },\n                    {\n                        \"X\": 0.2662038803100586,\n                        \"Y\": 0.4871119260787964\n                    },\n                    {\n                        \"X\": 0.176249161362648,\n                        \"Y\": 0.4871119260787964\n                    }\n                ]\n            },\n            \"Id\": \"b7e18d5d-9cf9-4a4d-ac3d-7f5e7330b895\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"13b9f31c-7924-4b92-b042-80e71854011d\",\n                        \"96461403-c4ab-424b-a931-be29cfcc576e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Medicare Tax\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8451919555664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009982362389564514,\n                    \"Left\": 0.39136844873428345,\n                    \"Top\": 0.4771563708782196,\n                    \"Width\": 0.036626607179641724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39136844873428345,\n                        \"Y\": 0.4771563708782196\n                    },\n                    {\n                        \"X\": 0.42799505591392517,\n                        \"Y\": 0.4771563708782196\n                    },\n                    {\n                        \"X\": 0.42799505591392517,\n                        \"Y\": 0.4871387481689453\n                    },\n                    {\n                        \"X\": 0.39136844873428345,\n                        \"Y\": 0.4871387481689453\n                    }\n                ]\n            },\n            \"Id\": \"1be42bb4-abf1-4178-a378-17a4129d2e09\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"199218b0-63a3-4b48-892f-b8db3b8e81cd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"12.56\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54993438720703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010321550071239471,\n                    \"Left\": 0.5070061683654785,\n                    \"Top\": 0.4772336184978485,\n                    \"Width\": 0.045646678656339645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5070061683654785,\n                        \"Y\": 0.4772336184978485\n                    },\n                    {\n                        \"X\": 0.5526528358459473,\n                        \"Y\": 0.4772336184978485\n                    },\n                    {\n                        \"X\": 0.5526528358459473,\n                        \"Y\": 0.4875551462173462\n                    },\n                    {\n                        \"X\": 0.5070061683654785,\n                        \"Y\": 0.4875551462173462\n                    }\n                ]\n            },\n            \"Id\": \"3783ae58-a588-43b7-9e60-52a3a9d551d0\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bf10ce2d-ad59-4ab8-9899-033096109348\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"682.36\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86196899414062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009543178603053093,\n                    \"Left\": 0.5994051694869995,\n                    \"Top\": 0.4798673391342163,\n                    \"Width\": 0.31070834398269653\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5994051694869995,\n                        \"Y\": 0.4798673391342163\n                    },\n                    {\n                        \"X\": 0.910113513469696,\n                        \"Y\": 0.4798673391342163\n                    },\n                    {\n                        \"X\": 0.910113513469696,\n                        \"Y\": 0.48941048979759216\n                    },\n                    {\n                        \"X\": 0.5994051694869995,\n                        \"Y\": 0.48941048979759216\n                    }\n                ]\n            },\n            \"Id\": \"19f05d06-2675-4335-8045-34570145bc46\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6e542677-290a-47e8-a3ca-c04133c97b9d\",\n                        \"f915a3a9-a1a6-4f71-be23-42d0b8799f62\",\n                        \"25518ef4-18e1-41a5-af79-4f84a8059c4b\",\n                        \"1f0ac676-e3a4-42ad-a58c-308e772a4214\",\n                        \"12522c6a-1809-4e2b-ac66-1012e648f719\",\n                        \"8368297e-b098-4980-ae47-48c4980858bd\",\n                        \"4d83f9de-8221-4f1a-ab59-ad32848c97be\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"HOURLY RATE HAS BEEN CHANGED FROM $8.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89593505859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010035369545221329,\n                    \"Left\": 0.17629417777061462,\n                    \"Top\": 0.49470582604408264,\n                    \"Width\": 0.1157185360789299\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17629417777061462,\n                        \"Y\": 0.49470582604408264\n                    },\n                    {\n                        \"X\": 0.2920127213001251,\n                        \"Y\": 0.49470582604408264\n                    },\n                    {\n                        \"X\": 0.2920127213001251,\n                        \"Y\": 0.5047411918640137\n                    },\n                    {\n                        \"X\": 0.17629417777061462,\n                        \"Y\": 0.5047411918640137\n                    }\n                ]\n            },\n            \"Id\": \"c9b71cc4-5319-4842-b9e9-83790da893d2\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0b705307-b12e-4c97-8418-95977bbf4ea2\",\n                        \"d8f51711-259e-4c6a-b4a5-370921a98787\",\n                        \"4557029a-df44-42e4-9e78-6276bfe5dbfa\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"State Income Tax\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.68650817871094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010006928816437721,\n                    \"Left\": 0.3985583484172821,\n                    \"Top\": 0.49470439553260803,\n                    \"Width\": 0.0291129183024168\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3985583484172821,\n                        \"Y\": 0.49470439553260803\n                    },\n                    {\n                        \"X\": 0.42767128348350525,\n                        \"Y\": 0.49470439553260803\n                    },\n                    {\n                        \"X\": 0.42767128348350525,\n                        \"Y\": 0.5047113299369812\n                    },\n                    {\n                        \"X\": 0.3985583484172821,\n                        \"Y\": 0.5047113299369812\n                    }\n                ]\n            },\n            \"Id\": \"17c13c52-c8f1-4114-99c6-09224164b35d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9cc757bf-058d-4470-b94b-c3d676c68f43\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"8.53\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.23080444335938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009942537173628807,\n                    \"Left\": 0.5073931217193604,\n                    \"Top\": 0.4947883188724518,\n                    \"Width\": 0.045383986085653305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5073931217193604,\n                        \"Y\": 0.4947883188724518\n                    },\n                    {\n                        \"X\": 0.552777111530304,\n                        \"Y\": 0.4947883188724518\n                    },\n                    {\n                        \"X\": 0.552777111530304,\n                        \"Y\": 0.5047308206558228\n                    },\n                    {\n                        \"X\": 0.5073931217193604,\n                        \"Y\": 0.5047308206558228\n                    }\n                ]\n            },\n            \"Id\": \"e8b8b454-f8e7-43cb-bfbb-5fd01a080d65\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f6015e68-4137-42a2-8f67-a76232e9ca0f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"308.88\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82105255126953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009302878752350807,\n                    \"Left\": 0.599082887172699,\n                    \"Top\": 0.4916762709617615,\n                    \"Width\": 0.13816718757152557\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.599082887172699,\n                        \"Y\": 0.4916762709617615\n                    },\n                    {\n                        \"X\": 0.7372500896453857,\n                        \"Y\": 0.4916762709617615\n                    },\n                    {\n                        \"X\": 0.7372500896453857,\n                        \"Y\": 0.5009791851043701\n                    },\n                    {\n                        \"X\": 0.599082887172699,\n                        \"Y\": 0.5009791851043701\n                    }\n                ]\n            },\n            \"Id\": \"5a7319f3-6652-4be4-9a41-022695b7a6a4\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"334c3836-3271-4221-a742-77b61cfe99cf\",\n                        \"68987de0-4d46-467f-a9c4-13bd818d5081\",\n                        \"ed5fbd85-0b1d-45d4-a21c-91bd1ffd95f0\",\n                        \"fec9b3cc-42c5-4036-98af-5ffd499c0df1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"TO $10.00 PER HOUR.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.57048034667969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009955823421478271,\n                    \"Left\": 0.17622120678424835,\n                    \"Top\": 0.5127599835395813,\n                    \"Width\": 0.12101545929908752\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17622120678424835,\n                        \"Y\": 0.5127599835395813\n                    },\n                    {\n                        \"X\": 0.2972366511821747,\n                        \"Y\": 0.5127599835395813\n                    },\n                    {\n                        \"X\": 0.2972366511821747,\n                        \"Y\": 0.5227158069610596\n                    },\n                    {\n                        \"X\": 0.17622120678424835,\n                        \"Y\": 0.5227158069610596\n                    }\n                ]\n            },\n            \"Id\": \"9078ee01-989d-4a4a-bb18-5a405b031c1b\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"edb4414b-91c2-41c1-8bf6-4978ba93a06d\",\n                        \"5d5f930a-e5a7-47ef-9e9c-cd8aa6319819\",\n                        \"f654782c-1f6e-42a9-a4e3-d197b07f8bc5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"State SUI/SDI Tax\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7883529663086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009920773096382618,\n                    \"Left\": 0.3983638286590576,\n                    \"Top\": 0.5129008889198303,\n                    \"Width\": 0.029667343944311142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3983638286590576,\n                        \"Y\": 0.5129008889198303\n                    },\n                    {\n                        \"X\": 0.42803117632865906,\n                        \"Y\": 0.5129008889198303\n                    },\n                    {\n                        \"X\": 0.42803117632865906,\n                        \"Y\": 0.5228216648101807\n                    },\n                    {\n                        \"X\": 0.3983638286590576,\n                        \"Y\": 0.5228216648101807\n                    }\n                ]\n            },\n            \"Id\": \"7478ab7c-91a8-464d-bd95-5d52e247f4ec\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"012d09b7-e030-4674-bcb9-9c6a233867c3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"0.60\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5943832397461,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00997807178646326,\n                    \"Left\": 0.5154975652694702,\n                    \"Top\": 0.5129286646842957,\n                    \"Width\": 0.03726263344287872\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5154975652694702,\n                        \"Y\": 0.5129286646842957\n                    },\n                    {\n                        \"X\": 0.5527601838111877,\n                        \"Y\": 0.5129286646842957\n                    },\n                    {\n                        \"X\": 0.5527601838111877,\n                        \"Y\": 0.5229067802429199\n                    },\n                    {\n                        \"X\": 0.5154975652694702,\n                        \"Y\": 0.5229067802429199\n                    }\n                ]\n            },\n            \"Id\": \"290a34a4-3a0f-4293-bfae-a7f1de5162ca\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a2577004-0441-43d2-bef1-79c262190799\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"31.20\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9273681640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01007858570665121,\n                    \"Left\": 0.1764260232448578,\n                    \"Top\": 0.5484979748725891,\n                    \"Width\": 0.03972839564085007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1764260232448578,\n                        \"Y\": 0.5484979748725891\n                    },\n                    {\n                        \"X\": 0.21615441143512726,\n                        \"Y\": 0.5484979748725891\n                    },\n                    {\n                        \"X\": 0.21615441143512726,\n                        \"Y\": 0.5585765242576599\n                    },\n                    {\n                        \"X\": 0.1764260232448578,\n                        \"Y\": 0.5585765242576599\n                    }\n                ]\n            },\n            \"Id\": \"d17bf36f-fa93-4a77-9dd7-9fb43c7d8ef2\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"137af27b-768b-418b-99a8-9731792234e5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Other\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.83855438232422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011969360522925854,\n                    \"Left\": 0.1766798496246338,\n                    \"Top\": 0.5667872428894043,\n                    \"Width\": 0.04138895124197006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1766798496246338,\n                        \"Y\": 0.5667872428894043\n                    },\n                    {\n                        \"X\": 0.21806879341602325,\n                        \"Y\": 0.5667872428894043\n                    },\n                    {\n                        \"X\": 0.21806879341602325,\n                        \"Y\": 0.57875657081604\n                    },\n                    {\n                        \"X\": 0.1766798496246338,\n                        \"Y\": 0.57875657081604\n                    }\n                ]\n            },\n            \"Id\": \"b07125d1-6083-49e9-8a97-9040bc552f41\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e6ab0cb9-1967-4670-a6de-c004e42ca4ef\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"401(k)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54102325439453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010011876001954079,\n                    \"Left\": 0.39023467898368835,\n                    \"Top\": 0.5668289065361023,\n                    \"Width\": 0.037868235260248184\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39023467898368835,\n                        \"Y\": 0.5668289065361023\n                    },\n                    {\n                        \"X\": 0.42810291051864624,\n                        \"Y\": 0.5668289065361023\n                    },\n                    {\n                        \"X\": 0.42810291051864624,\n                        \"Y\": 0.5768407583236694\n                    },\n                    {\n                        \"X\": 0.39023467898368835,\n                        \"Y\": 0.5768407583236694\n                    }\n                ]\n            },\n            \"Id\": \"b0b33012-2c52-45e8-b05a-935a2ff495fd\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4e22214e-4187-4970-ae4d-5470b970d389\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"20.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75775909423828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011270259507000446,\n                    \"Left\": 0.49625736474990845,\n                    \"Top\": 0.5667789578437805,\n                    \"Width\": 0.05644756928086281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49625736474990845,\n                        \"Y\": 0.5667789578437805\n                    },\n                    {\n                        \"X\": 0.552704930305481,\n                        \"Y\": 0.5667789578437805\n                    },\n                    {\n                        \"X\": 0.552704930305481,\n                        \"Y\": 0.5780492424964905\n                    },\n                    {\n                        \"X\": 0.49625736474990845,\n                        \"Y\": 0.5780492424964905\n                    }\n                ]\n            },\n            \"Id\": \"df0e5f1d-4d35-484c-918f-956529ff1dba\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c4feb2ec-f6f4-442b-9c5a-7951cc3879e1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1,200.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.37783813476562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010099726729094982,\n                    \"Left\": 0.1762428730726242,\n                    \"Top\": 0.5835988521575928,\n                    \"Width\": 0.07045814394950867\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1762428730726242,\n                        \"Y\": 0.5835988521575928\n                    },\n                    {\n                        \"X\": 0.24670100212097168,\n                        \"Y\": 0.5835988521575928\n                    },\n                    {\n                        \"X\": 0.24670100212097168,\n                        \"Y\": 0.5936985611915588\n                    },\n                    {\n                        \"X\": 0.1762428730726242,\n                        \"Y\": 0.5936985611915588\n                    }\n                ]\n            },\n            \"Id\": \"9032164c-3cdf-4da6-8557-61ae8d17266c\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ccd2e13d-6a6f-424b-988c-3fcb36e0d8db\",\n                        \"a0cc1c33-fbea-4647-941c-177bba7b91b6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Stock Plan\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88752746582031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010195154696702957,\n                    \"Left\": 0.39115574955940247,\n                    \"Top\": 0.583683967590332,\n                    \"Width\": 0.03649606555700302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39115574955940247,\n                        \"Y\": 0.583683967590332\n                    },\n                    {\n                        \"X\": 0.4276518225669861,\n                        \"Y\": 0.583683967590332\n                    },\n                    {\n                        \"X\": 0.4276518225669861,\n                        \"Y\": 0.5938791036605835\n                    },\n                    {\n                        \"X\": 0.39115574955940247,\n                        \"Y\": 0.5938791036605835\n                    }\n                ]\n            },\n            \"Id\": \"3d52b150-eca8-4abe-8d31-81be1a603ed4\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"501e158d-b1a4-4bea-bdea-658f4bd1c899\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"15.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88897705078125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009502039290964603,\n                    \"Left\": 0.5075739622116089,\n                    \"Top\": 0.5838237404823303,\n                    \"Width\": 0.045547954738140106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5075739622116089,\n                        \"Y\": 0.5838237404823303\n                    },\n                    {\n                        \"X\": 0.5531219244003296,\n                        \"Y\": 0.5838237404823303\n                    },\n                    {\n                        \"X\": 0.5531219244003296,\n                        \"Y\": 0.5933257937431335\n                    },\n                    {\n                        \"X\": 0.5075739622116089,\n                        \"Y\": 0.5933257937431335\n                    }\n                ]\n            },\n            \"Id\": \"f90b6bdc-22b6-4311-8463-5645223056d7\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"2cdd8a66-d756-4e1a-a083-9c7ab50d45eb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"700.00\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.61991882324219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01242764387279749,\n                    \"Left\": 0.1760719120502472,\n                    \"Top\": 0.6033467650413513,\n                    \"Width\": 0.05491196736693382\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1760719120502472,\n                        \"Y\": 0.6033467650413513\n                    },\n                    {\n                        \"X\": 0.23098386824131012,\n                        \"Y\": 0.6033467650413513\n                    },\n                    {\n                        \"X\": 0.23098386824131012,\n                        \"Y\": 0.615774393081665\n                    },\n                    {\n                        \"X\": 0.1760719120502472,\n                        \"Y\": 0.615774393081665\n                    }\n                ]\n            },\n            \"Id\": \"1ed04ab4-100b-4783-a1e0-6cc6ff04070a\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"984c1282-2bc4-4e5e-8459-b3017ef5e219\",\n                        \"57b86118-e07a-4e11-8156-77c26840f53d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Net Pay\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84355926513672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011548930779099464,\n                    \"Left\": 0.37394094467163086,\n                    \"Top\": 0.6030424237251282,\n                    \"Width\": 0.05417367443442345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37394094467163086,\n                        \"Y\": 0.6030424237251282\n                    },\n                    {\n                        \"X\": 0.4281146228313446,\n                        \"Y\": 0.6030424237251282\n                    },\n                    {\n                        \"X\": 0.4281146228313446,\n                        \"Y\": 0.6145913600921631\n                    },\n                    {\n                        \"X\": 0.37394094467163086,\n                        \"Y\": 0.6145913600921631\n                    }\n                ]\n            },\n            \"Id\": \"fce0a847-4d03-413a-8143-dbc44e0eb5c5\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6bd633fc-5c9d-4fc5-bf05-b02c62a43eb0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$644.66\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.71001434326172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009065727703273296,\n                    \"Left\": 0.10932295769453049,\n                    \"Top\": 0.7196169495582581,\n                    \"Width\": 0.15482982993125916\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10932295769453049,\n                        \"Y\": 0.7196169495582581\n                    },\n                    {\n                        \"X\": 0.26415279507637024,\n                        \"Y\": 0.7196169495582581\n                    },\n                    {\n                        \"X\": 0.26415279507637024,\n                        \"Y\": 0.7286826968193054\n                    },\n                    {\n                        \"X\": 0.10932295769453049,\n                        \"Y\": 0.7286826968193054\n                    }\n                ]\n            },\n            \"Id\": \"5f2ec4d3-1207-4e92-83b1-c5a5020874de\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3000b611-f170-4426-821d-2d142064bfc0\",\n                        \"66987fed-f1a3-4b7e-9307-3a52d86442ed\",\n                        \"0295a242-58a1-494c-a9fb-3573a786bb4d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"ANYCOMPANY INC. USA\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.60777282714844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010191002860665321,\n                    \"Left\": 0.5247613191604614,\n                    \"Top\": 0.71559739112854,\n                    \"Width\": 0.11582039296627045\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5247613191604614,\n                        \"Y\": 0.71559739112854\n                    },\n                    {\n                        \"X\": 0.6405817270278931,\n                        \"Y\": 0.71559739112854\n                    },\n                    {\n                        \"X\": 0.6405817270278931,\n                        \"Y\": 0.725788414478302\n                    },\n                    {\n                        \"X\": 0.5247613191604614,\n                        \"Y\": 0.725788414478302\n                    }\n                ]\n            },\n            \"Id\": \"4dab6cae-be0f-4b07-a426-7ba06c7ccdb7\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fce2575f-e43f-4aea-8472-5442b68d8456\",\n                        \"70bd3dd2-bf3b-4c8d-ba69-cbd0ab726401\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Advice number:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.80306243896484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010250999592244625,\n                    \"Left\": 0.7060394287109375,\n                    \"Top\": 0.7149945497512817,\n                    \"Width\": 0.07464908808469772\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7060394287109375,\n                        \"Y\": 0.7149945497512817\n                    },\n                    {\n                        \"X\": 0.7806885242462158,\n                        \"Y\": 0.7149945497512817\n                    },\n                    {\n                        \"X\": 0.7806885242462158,\n                        \"Y\": 0.7252455353736877\n                    },\n                    {\n                        \"X\": 0.7060394287109375,\n                        \"Y\": 0.7252455353736877\n                    }\n                ]\n            },\n            \"Id\": \"2b13cb88-a365-4153-be27-26ce3059726f\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7e8d7578-5d7c-436b-9653-927b42bcc308\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"650101270\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.46047973632812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010130451992154121,\n                    \"Left\": 0.1106451004743576,\n                    \"Top\": 0.7332044243812561,\n                    \"Width\": 0.20616872608661652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1106451004743576,\n                        \"Y\": 0.7332044243812561\n                    },\n                    {\n                        \"X\": 0.3168138265609741,\n                        \"Y\": 0.7332044243812561\n                    },\n                    {\n                        \"X\": 0.3168138265609741,\n                        \"Y\": 0.7433348298072815\n                    },\n                    {\n                        \"X\": 0.1106451004743576,\n                        \"Y\": 0.7433348298072815\n                    }\n                ]\n            },\n            \"Id\": \"a406a319-81f0-4cb5-b949-23948b6d596e\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fe5b7b34-5472-4b9c-bc1d-248a3bfa20c9\",\n                        \"6f0cfcba-46b2-41ea-a7bf-a1cd74835c46\",\n                        \"ab8daeba-f04f-4202-a0be-5403dda9e4c6\",\n                        \"c4f72639-7e00-4691-a21a-694cdbf8e533\",\n                        \"83268dfd-ad6e-45cb-bb28-db6ff53d1d58\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1212 FICTIONAL BLVD, SUITE 28,\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7236328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012223155237734318,\n                    \"Left\": 0.5253340601921082,\n                    \"Top\": 0.7310652136802673,\n                    \"Width\": 0.06264053285121918\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5253340601921082,\n                        \"Y\": 0.7310652136802673\n                    },\n                    {\n                        \"X\": 0.5879746079444885,\n                        \"Y\": 0.7310652136802673\n                    },\n                    {\n                        \"X\": 0.5879746079444885,\n                        \"Y\": 0.7432883381843567\n                    },\n                    {\n                        \"X\": 0.5253340601921082,\n                        \"Y\": 0.7432883381843567\n                    }\n                ]\n            },\n            \"Id\": \"e727fe9d-c724-4ef0-ba25-7c82c9595b99\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"030aec07-ef47-4690-82eb-432e6e63c7f6\",\n                        \"a4b59a39-af6c-4849-bce0-f60eee4fa158\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Pay date:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 22.27074432373047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010506420396268368,\n                    \"Left\": 0.7011188864707947,\n                    \"Top\": 0.7310549020767212,\n                    \"Width\": 0.07927445322275162\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7011188864707947,\n                        \"Y\": 0.7310549020767212\n                    },\n                    {\n                        \"X\": 0.7803933620452881,\n                        \"Y\": 0.7310549020767212\n                    },\n                    {\n                        \"X\": 0.7803933620452881,\n                        \"Y\": 0.7415612936019897\n                    },\n                    {\n                        \"X\": 0.7011188864707947,\n                        \"Y\": 0.7415612936019897\n                    }\n                ]\n            },\n            \"Id\": \"4bb90be2-eb62-42d6-9b64-66a520319694\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a6eb3f87-a938-48ae-b74c-b6ad38cc83ae\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"11/29/2019\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.62437438964844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009983607567846775,\n                    \"Left\": 0.10944241285324097,\n                    \"Top\": 0.7474202513694763,\n                    \"Width\": 0.14091703295707703\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10944241285324097,\n                        \"Y\": 0.7474202513694763\n                    },\n                    {\n                        \"X\": 0.250359445810318,\n                        \"Y\": 0.7474202513694763\n                    },\n                    {\n                        \"X\": 0.250359445810318,\n                        \"Y\": 0.7574038505554199\n                    },\n                    {\n                        \"X\": 0.10944241285324097,\n                        \"Y\": 0.7574038505554199\n                    }\n                ]\n            },\n            \"Id\": \"6a81e633-e7b3-44b5-8823-068bc9b6c2e9\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d3989775-e76c-4c6a-9938-a17abba88912\",\n                        \"4599fff8-a8e4-45d2-89bd-6d775f8e4942\",\n                        \"a7f97c23-a720-4929-ac42-83f05fc69b4f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"ANYTOWN, USA 10101\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98236846923828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01000056229531765,\n                    \"Left\": 0.111144058406353,\n                    \"Top\": 0.7904263138771057,\n                    \"Width\": 0.1938561499118805\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.111144058406353,\n                        \"Y\": 0.7904263138771057\n                    },\n                    {\n                        \"X\": 0.3050002157688141,\n                        \"Y\": 0.7904263138771057\n                    },\n                    {\n                        \"X\": 0.3050002157688141,\n                        \"Y\": 0.8004269003868103\n                    },\n                    {\n                        \"X\": 0.111144058406353,\n                        \"Y\": 0.8004269003868103\n                    }\n                ]\n            },\n            \"Id\": \"fe660dd4-ab13-4e51-9be8-acd9b517ee69\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"40589f0d-7052-427a-b072-91ebb9feda7f\",\n                        \"3159b01a-b1be-456d-a152-693ca036e73d\",\n                        \"1d23caa8-9afe-457d-be71-b7c0974c675f\",\n                        \"b8463bff-c165-4174-b3a2-ffc97f88b81e\",\n                        \"8f7ac8ea-e64d-4ed5-8b44-f4611e7cf461\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Deposited to the account of\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97188568115234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008265281096100807,\n                    \"Left\": 0.5420383810997009,\n                    \"Top\": 0.7936447262763977,\n                    \"Width\": 0.1005176454782486\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5420383810997009,\n                        \"Y\": 0.7936447262763977\n                    },\n                    {\n                        \"X\": 0.6425560116767883,\n                        \"Y\": 0.7936447262763977\n                    },\n                    {\n                        \"X\": 0.6425560116767883,\n                        \"Y\": 0.8019099831581116\n                    },\n                    {\n                        \"X\": 0.5420383810997009,\n                        \"Y\": 0.8019099831581116\n                    }\n                ]\n            },\n            \"Id\": \"dc18869f-e377-4d9c-9a45-28f9fd8eb500\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c8146a7d-1d2c-4e31-a772-8e402feb1d7f\",\n                        \"2182aa66-bf26-4f12-8c6f-cdc530908a8c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"account number\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84908294677734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00824915710836649,\n                    \"Left\": 0.6802096962928772,\n                    \"Top\": 0.7934746146202087,\n                    \"Width\": 0.0803951770067215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6802096962928772,\n                        \"Y\": 0.7934746146202087\n                    },\n                    {\n                        \"X\": 0.7606048583984375,\n                        \"Y\": 0.7934746146202087\n                    },\n                    {\n                        \"X\": 0.7606048583984375,\n                        \"Y\": 0.8017237782478333\n                    },\n                    {\n                        \"X\": 0.6802096962928772,\n                        \"Y\": 0.8017237782478333\n                    }\n                ]\n            },\n            \"Id\": \"26c9f2fe-df65-4473-ba71-7ad16548b95d\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"da065213-cff2-4ee3-bdb3-cc0528d93623\",\n                        \"faa45524-b5eb-4f48-a200-ca7c9d07e9d9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"transit ABA\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9541015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0079030841588974,\n                    \"Left\": 0.8503483533859253,\n                    \"Top\": 0.7927887439727783,\n                    \"Width\": 0.04759335145354271\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8503483533859253,\n                        \"Y\": 0.7927887439727783\n                    },\n                    {\n                        \"X\": 0.8979417085647583,\n                        \"Y\": 0.7927887439727783\n                    },\n                    {\n                        \"X\": 0.8979417085647583,\n                        \"Y\": 0.8006918430328369\n                    },\n                    {\n                        \"X\": 0.8503483533859253,\n                        \"Y\": 0.8006918430328369\n                    }\n                ]\n            },\n            \"Id\": \"67936752-5d9d-4a7f-b503-46e1dbafb68a\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3f202962-4029-437d-91f5-35f29f292904\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"amount\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6269760131836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009930461645126343,\n                    \"Left\": 0.11083870381116867,\n                    \"Top\": 0.8080773949623108,\n                    \"Width\": 0.11242113262414932\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11083870381116867,\n                        \"Y\": 0.8080773949623108\n                    },\n                    {\n                        \"X\": 0.223259836435318,\n                        \"Y\": 0.8080773949623108\n                    },\n                    {\n                        \"X\": 0.223259836435318,\n                        \"Y\": 0.8180078268051147\n                    },\n                    {\n                        \"X\": 0.11083870381116867,\n                        \"Y\": 0.8180078268051147\n                    }\n                ]\n            },\n            \"Id\": \"555e700a-1597-4bfc-8098-83e439238198\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"132fa158-eedb-4eb5-9053-56e410ebbe35\",\n                        \"db0f1b54-78ff-437c-a7f7-ef12b4856437\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Alejandro Rosalez\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 66.97557067871094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008283342234790325,\n                    \"Left\": 0.5602371096611023,\n                    \"Top\": 0.8065016865730286,\n                    \"Width\": 0.059967443346977234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5602371096611023,\n                        \"Y\": 0.8065016865730286\n                    },\n                    {\n                        \"X\": 0.620204508304596,\n                        \"Y\": 0.8065016865730286\n                    },\n                    {\n                        \"X\": 0.620204508304596,\n                        \"Y\": 0.8147850036621094\n                    },\n                    {\n                        \"X\": 0.5602371096611023,\n                        \"Y\": 0.8147850036621094\n                    }\n                ]\n            },\n            \"Id\": \"f9be7ed6-4259-49de-9566-ffbcdb821062\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"df438d6f-64d0-42e2-9591-9ca2c46f11a9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"xxxxx5967\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 72.69644927978516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0068679084070026875,\n                    \"Left\": 0.6825339198112488,\n                    \"Top\": 0.8079061508178711,\n                    \"Width\": 0.02599317952990532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6825339198112488,\n                        \"Y\": 0.8079061508178711\n                    },\n                    {\n                        \"X\": 0.7085270881652832,\n                        \"Y\": 0.8079061508178711\n                    },\n                    {\n                        \"X\": 0.7085270881652832,\n                        \"Y\": 0.8147740960121155\n                    },\n                    {\n                        \"X\": 0.6825339198112488,\n                        \"Y\": 0.8147740960121155\n                    }\n                ]\n            },\n            \"Id\": \"1c70e0c9-5c21-4ac4-be30-bd507f500921\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"51c51517-d3c1-4866-9f00-5823d2a3adef\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"xxxx\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 77.27925872802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.006862718146294355,\n                    \"Left\": 0.7335848808288574,\n                    \"Top\": 0.8079339265823364,\n                    \"Width\": 0.026102298870682716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7335848808288574,\n                        \"Y\": 0.8079339265823364\n                    },\n                    {\n                        \"X\": 0.7596871852874756,\n                        \"Y\": 0.8079339265823364\n                    },\n                    {\n                        \"X\": 0.7596871852874756,\n                        \"Y\": 0.8147966265678406\n                    },\n                    {\n                        \"X\": 0.7335848808288574,\n                        \"Y\": 0.8147966265678406\n                    }\n                ]\n            },\n            \"Id\": \"f2f4e25a-8d09-4ca0-9029-244c518e3322\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a396a432-c80a-441b-af8c-af2a65d0ed38\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"xxxx\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82832336425781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009240806102752686,\n                    \"Left\": 0.8345751166343689,\n                    \"Top\": 0.8083831071853638,\n                    \"Width\": 0.04491712525486946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8345751166343689,\n                        \"Y\": 0.8083831071853638\n                    },\n                    {\n                        \"X\": 0.8794922232627869,\n                        \"Y\": 0.8083831071853638\n                    },\n                    {\n                        \"X\": 0.8794922232627869,\n                        \"Y\": 0.8176239132881165\n                    },\n                    {\n                        \"X\": 0.8345751166343689,\n                        \"Y\": 0.8176239132881165\n                    }\n                ]\n            },\n            \"Id\": \"d115cb44-da14-4489-957e-201463479da9\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"80e44489-2a2d-4eba-a5be-df395890a217\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$644.66\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.1099624633789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016335276886820793,\n                    \"Left\": 0.6002804040908813,\n                    \"Top\": 0.889022946357727,\n                    \"Width\": 0.23597849905490875\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6002804040908813,\n                        \"Y\": 0.889022946357727\n                    },\n                    {\n                        \"X\": 0.8362588882446289,\n                        \"Y\": 0.889022946357727\n                    },\n                    {\n                        \"X\": 0.8362588882446289,\n                        \"Y\": 0.9053581953048706\n                    },\n                    {\n                        \"X\": 0.6002804040908813,\n                        \"Y\": 0.9053581953048706\n                    }\n                ]\n            },\n            \"Id\": \"672d3a60-e2db-4e94-8288-d702082b179e\",\n            \"Page\": 1,\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"18274630-02ae-4bc3-b723-692bad4938de\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"NON-NEGOTIABLE\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 57.79740905761719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00747243408113718,\n                    \"Left\": 0.16350236535072327,\n                    \"Top\": 0.05193289369344711,\n                    \"Width\": 0.019068926572799683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16350236535072327,\n                        \"Y\": 0.05193289369344711\n                    },\n                    {\n                        \"X\": 0.18257129192352295,\n                        \"Y\": 0.05193289369344711\n                    },\n                    {\n                        \"X\": 0.18257129192352295,\n                        \"Y\": 0.05940533056855202\n                    },\n                    {\n                        \"X\": 0.16350236535072327,\n                        \"Y\": 0.05940533056855202\n                    }\n                ]\n            },\n            \"Id\": \"5fc4408d-6e4d-4d49-9953-7f84cef5e3d4\",\n            \"Page\": 1,\n            \"Text\": \"CO.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84630584716797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007594075985252857,\n                    \"Left\": 0.2095053493976593,\n                    \"Top\": 0.051555734127759933,\n                    \"Width\": 0.022744961082935333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2095053493976593,\n                        \"Y\": 0.051555734127759933\n                    },\n                    {\n                        \"X\": 0.23225030303001404,\n                        \"Y\": 0.051555734127759933\n                    },\n                    {\n                        \"X\": 0.23225030303001404,\n                        \"Y\": 0.059149809181690216\n                    },\n                    {\n                        \"X\": 0.2095053493976593,\n                        \"Y\": 0.059149809181690216\n                    }\n                ]\n            },\n            \"Id\": \"3061f261-0444-47a3-ada2-3982ba993d04\",\n            \"Page\": 1,\n            \"Text\": \"FILE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.33470153808594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007839549332857132,\n                    \"Left\": 0.2619761526584625,\n                    \"Top\": 0.051377974450588226,\n                    \"Width\": 0.030805477872490883\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2619761526584625,\n                        \"Y\": 0.051377974450588226\n                    },\n                    {\n                        \"X\": 0.29278162121772766,\n                        \"Y\": 0.051377974450588226\n                    },\n                    {\n                        \"X\": 0.29278162121772766,\n                        \"Y\": 0.05921752378344536\n                    },\n                    {\n                        \"X\": 0.2619761526584625,\n                        \"Y\": 0.05921752378344536\n                    }\n                ]\n            },\n            \"Id\": \"dc9d9a3a-c2d8-474b-b861-995918888369\",\n            \"Page\": 1,\n            \"Text\": \"DEPT.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.45960998535156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007769742514938116,\n                    \"Left\": 0.31492388248443604,\n                    \"Top\": 0.05106426775455475,\n                    \"Width\": 0.03521428257226944\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31492388248443604,\n                        \"Y\": 0.05106426775455475\n                    },\n                    {\n                        \"X\": 0.3501381576061249,\n                        \"Y\": 0.05106426775455475\n                    },\n                    {\n                        \"X\": 0.3501381576061249,\n                        \"Y\": 0.0588340125977993\n                    },\n                    {\n                        \"X\": 0.31492388248443604,\n                        \"Y\": 0.0588340125977993\n                    }\n                ]\n            },\n            \"Id\": \"856b4d41-d1d1-4b3d-ae7a-ad6b550c726d\",\n            \"Page\": 1,\n            \"Text\": \"CLOCK\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 84.21094512939453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007801081985235214,\n                    \"Left\": 0.36383500695228577,\n                    \"Top\": 0.05139005184173584,\n                    \"Width\": 0.03246232494711876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36383500695228577,\n                        \"Y\": 0.05139005184173584\n                    },\n                    {\n                        \"X\": 0.3962973356246948,\n                        \"Y\": 0.05139005184173584\n                    },\n                    {\n                        \"X\": 0.3962973356246948,\n                        \"Y\": 0.059191133826971054\n                    },\n                    {\n                        \"X\": 0.36383500695228577,\n                        \"Y\": 0.059191133826971054\n                    }\n                ]\n            },\n            \"Id\": \"7e9116c1-ff8f-489a-9724-5fbb122e4378\",\n            \"Page\": 1,\n            \"Text\": \"VCHR.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.6689682006836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007468541618436575,\n                    \"Left\": 0.40200990438461304,\n                    \"Top\": 0.051567599177360535,\n                    \"Width\": 0.018931787461042404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40200990438461304,\n                        \"Y\": 0.051567599177360535\n                    },\n                    {\n                        \"X\": 0.42094168066978455,\n                        \"Y\": 0.051567599177360535\n                    },\n                    {\n                        \"X\": 0.42094168066978455,\n                        \"Y\": 0.059036143124103546\n                    },\n                    {\n                        \"X\": 0.40200990438461304,\n                        \"Y\": 0.059036143124103546\n                    }\n                ]\n            },\n            \"Id\": \"8f18daab-f0cf-4dbe-956a-baf0f76b8caf\",\n            \"Page\": 1,\n            \"Text\": \"NO.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85846710205078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007285236846655607,\n                    \"Left\": 0.43886277079582214,\n                    \"Top\": 0.051035769283771515,\n                    \"Width\": 0.018407253548502922\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43886277079582214,\n                        \"Y\": 0.051035769283771515\n                    },\n                    {\n                        \"X\": 0.4572700262069702,\n                        \"Y\": 0.051035769283771515\n                    },\n                    {\n                        \"X\": 0.4572700262069702,\n                        \"Y\": 0.05832100659608841\n                    },\n                    {\n                        \"X\": 0.43886277079582214,\n                        \"Y\": 0.05832100659608841\n                    }\n                ]\n            },\n            \"Id\": \"5430e451-d1ad-4ede-a774-4bd8c721c555\",\n            \"Page\": 1,\n            \"Text\": \"046\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87419891357422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008249248377978802,\n                    \"Left\": 0.16477474570274353,\n                    \"Top\": 0.06261423230171204,\n                    \"Width\": 0.021953733637928963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16477474570274353,\n                        \"Y\": 0.06261423230171204\n                    },\n                    {\n                        \"X\": 0.18672847747802734,\n                        \"Y\": 0.06261423230171204\n                    },\n                    {\n                        \"X\": 0.18672847747802734,\n                        \"Y\": 0.07086347788572311\n                    },\n                    {\n                        \"X\": 0.16477474570274353,\n                        \"Y\": 0.07086347788572311\n                    }\n                ]\n            },\n            \"Id\": \"37dfd822-4e28-435a-9c9a-16e2dc2a936d\",\n            \"Page\": 1,\n            \"Text\": \"LV3\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.72770690917969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00822491105645895,\n                    \"Left\": 0.20732784271240234,\n                    \"Top\": 0.06330199539661407,\n                    \"Width\": 0.03947128355503082\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20732784271240234,\n                        \"Y\": 0.06330199539661407\n                    },\n                    {\n                        \"X\": 0.24679912626743317,\n                        \"Y\": 0.06330199539661407\n                    },\n                    {\n                        \"X\": 0.24679912626743317,\n                        \"Y\": 0.0715269073843956\n                    },\n                    {\n                        \"X\": 0.20732784271240234,\n                        \"Y\": 0.0715269073843956\n                    }\n                ]\n            },\n            \"Id\": \"70a3c93d-b942-4444-9af9-4277e465611a\",\n            \"Page\": 1,\n            \"Text\": \"000342\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.91703033447266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007980359718203545,\n                    \"Left\": 0.26018714904785156,\n                    \"Top\": 0.06345470249652863,\n                    \"Width\": 0.03854002803564072\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26018714904785156,\n                        \"Y\": 0.06345470249652863\n                    },\n                    {\n                        \"X\": 0.2987271547317505,\n                        \"Y\": 0.06345470249652863\n                    },\n                    {\n                        \"X\": 0.2987271547317505,\n                        \"Y\": 0.07143506407737732\n                    },\n                    {\n                        \"X\": 0.26018714904785156,\n                        \"Y\": 0.07143506407737732\n                    }\n                ]\n            },\n            \"Id\": \"0c41fd20-dc75-4416-b33a-444a53814d4d\",\n            \"Page\": 1,\n            \"Text\": \"000300\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.70362091064453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008210080675780773,\n                    \"Left\": 0.36396586894989014,\n                    \"Top\": 0.06333304941654205,\n                    \"Width\": 0.06454736739397049\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36396586894989014,\n                        \"Y\": 0.06333304941654205\n                    },\n                    {\n                        \"X\": 0.42851322889328003,\n                        \"Y\": 0.06333304941654205\n                    },\n                    {\n                        \"X\": 0.42851322889328003,\n                        \"Y\": 0.0715431347489357\n                    },\n                    {\n                        \"X\": 0.36396586894989014,\n                        \"Y\": 0.0715431347489357\n                    }\n                ]\n            },\n            \"Id\": \"48050673-05df-4b3b-a53c-e0297e595509\",\n            \"Page\": 1,\n            \"Text\": \"0000651284\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82050323486328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00813013594597578,\n                    \"Left\": 0.4535598158836365,\n                    \"Top\": 0.0634450912475586,\n                    \"Width\": 0.007738289888948202\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4535598158836365,\n                        \"Y\": 0.0634450912475586\n                    },\n                    {\n                        \"X\": 0.4612981081008911,\n                        \"Y\": 0.0634450912475586\n                    },\n                    {\n                        \"X\": 0.4612981081008911,\n                        \"Y\": 0.07157522439956665\n                    },\n                    {\n                        \"X\": 0.4535598158836365,\n                        \"Y\": 0.07157522439956665\n                    }\n                ]\n            },\n            \"Id\": \"1ca62ad6-f389-45b8-bf73-ab8c16eb72d7\",\n            \"Page\": 1,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95761108398438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01952042430639267,\n                    \"Left\": 0.56464684009552,\n                    \"Top\": 0.05803358182311058,\n                    \"Width\": 0.10740049928426743\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.56464684009552,\n                        \"Y\": 0.05803358182311058\n                    },\n                    {\n                        \"X\": 0.6720473766326904,\n                        \"Y\": 0.05803358182311058\n                    },\n                    {\n                        \"X\": 0.6720473766326904,\n                        \"Y\": 0.07755400985479355\n                    },\n                    {\n                        \"X\": 0.56464684009552,\n                        \"Y\": 0.07755400985479355\n                    }\n                ]\n            },\n            \"Id\": \"2972c888-eda8-4bd4-a75e-d4c34dac4360\",\n            \"Page\": 1,\n            \"Text\": \"Earnings\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87213897705078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015873655676841736,\n                    \"Left\": 0.6832025051116943,\n                    \"Top\": 0.05820164084434509,\n                    \"Width\": 0.1244678944349289\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6832025051116943,\n                        \"Y\": 0.05820164084434509\n                    },\n                    {\n                        \"X\": 0.8076704144477844,\n                        \"Y\": 0.05820164084434509\n                    },\n                    {\n                        \"X\": 0.8076704144477844,\n                        \"Y\": 0.07407529652118683\n                    },\n                    {\n                        \"X\": 0.6832025051116943,\n                        \"Y\": 0.07407529652118683\n                    }\n                ]\n            },\n            \"Id\": \"22be2eaf-f041-45ad-8b95-81401b981074\",\n            \"Page\": 1,\n            \"Text\": \"Statement\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74317932128906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008774305693805218,\n                    \"Left\": 0.12390506267547607,\n                    \"Top\": 0.09564127773046494,\n                    \"Width\": 0.09032448381185532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12390506267547607,\n                        \"Y\": 0.09564127773046494\n                    },\n                    {\n                        \"X\": 0.2142295390367508,\n                        \"Y\": 0.09564127773046494\n                    },\n                    {\n                        \"X\": 0.2142295390367508,\n                        \"Y\": 0.10441558063030243\n                    },\n                    {\n                        \"X\": 0.12390506267547607,\n                        \"Y\": 0.10441558063030243\n                    }\n                ]\n            },\n            \"Id\": \"926a6ea0-d11b-474b-a644-3df021eedbab\",\n            \"Page\": 1,\n            \"Text\": \"ANYCOMPANY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72069549560547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008833584375679493,\n                    \"Left\": 0.2161874920129776,\n                    \"Top\": 0.09567141532897949,\n                    \"Width\": 0.025198668241500854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2161874920129776,\n                        \"Y\": 0.09567141532897949\n                    },\n                    {\n                        \"X\": 0.24138616025447845,\n                        \"Y\": 0.09567141532897949\n                    },\n                    {\n                        \"X\": 0.24138616025447845,\n                        \"Y\": 0.10450499504804611\n                    },\n                    {\n                        \"X\": 0.2161874920129776,\n                        \"Y\": 0.10450499504804611\n                    }\n                ]\n            },\n            \"Id\": \"6e62b7e1-b005-4baf-a1b9-049e81b99db7\",\n            \"Page\": 1,\n            \"Text\": \"INC.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82850646972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008701384998857975,\n                    \"Left\": 0.24473728239536285,\n                    \"Top\": 0.09563913196325302,\n                    \"Width\": 0.026447022333741188\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24473728239536285,\n                        \"Y\": 0.09563913196325302\n                    },\n                    {\n                        \"X\": 0.2711842954158783,\n                        \"Y\": 0.09563913196325302\n                    },\n                    {\n                        \"X\": 0.2711842954158783,\n                        \"Y\": 0.10434051603078842\n                    },\n                    {\n                        \"X\": 0.24473728239536285,\n                        \"Y\": 0.10434051603078842\n                    }\n                ]\n            },\n            \"Id\": \"090ab5fa-6594-4bcf-8198-2411a24e3dc2\",\n            \"Page\": 1,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92822265625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010065039619803429,\n                    \"Left\": 0.5690472722053528,\n                    \"Top\": 0.09275214374065399,\n                    \"Width\": 0.0431770421564579\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5690472722053528,\n                        \"Y\": 0.09275214374065399\n                    },\n                    {\n                        \"X\": 0.612224280834198,\n                        \"Y\": 0.09275214374065399\n                    },\n                    {\n                        \"X\": 0.612224280834198,\n                        \"Y\": 0.10281717777252197\n                    },\n                    {\n                        \"X\": 0.5690472722053528,\n                        \"Y\": 0.10281717777252197\n                    }\n                ]\n            },\n            \"Id\": \"dd9e3436-27b6-4563-8828-43e078e4a983\",\n            \"Page\": 1,\n            \"Text\": \"Period\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54754638671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012405040673911572,\n                    \"Left\": 0.6164937019348145,\n                    \"Top\": 0.09255556762218475,\n                    \"Width\": 0.04991506040096283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6164937019348145,\n                        \"Y\": 0.09255556762218475\n                    },\n                    {\n                        \"X\": 0.6664087772369385,\n                        \"Y\": 0.09255556762218475\n                    },\n                    {\n                        \"X\": 0.6664087772369385,\n                        \"Y\": 0.1049606055021286\n                    },\n                    {\n                        \"X\": 0.6164937019348145,\n                        \"Y\": 0.1049606055021286\n                    }\n                ]\n            },\n            \"Id\": \"9c6c8fa4-23d6-40f2-be00-a556d53baeb6\",\n            \"Page\": 1,\n            \"Text\": \"Ending:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.26754760742188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01001033652573824,\n                    \"Left\": 0.7752424478530884,\n                    \"Top\": 0.09265592694282532,\n                    \"Width\": 0.0751953125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7752424478530884,\n                        \"Y\": 0.09265592694282532\n                    },\n                    {\n                        \"X\": 0.8504377603530884,\n                        \"Y\": 0.09265592694282532\n                    },\n                    {\n                        \"X\": 0.8504377603530884,\n                        \"Y\": 0.10266625881195068\n                    },\n                    {\n                        \"X\": 0.7752424478530884,\n                        \"Y\": 0.10266625881195068\n                    }\n                ]\n            },\n            \"Id\": \"255e9b88-37e8-4ede-86af-9dd738fea686\",\n            \"Page\": 1,\n            \"Text\": \"04/30/2019\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86128997802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008921002969145775,\n                    \"Left\": 0.12535633146762848,\n                    \"Top\": 0.10983841121196747,\n                    \"Width\": 0.028313837945461273\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12535633146762848,\n                        \"Y\": 0.10983841121196747\n                    },\n                    {\n                        \"X\": 0.15367016196250916,\n                        \"Y\": 0.10983841121196747\n                    },\n                    {\n                        \"X\": 0.15367016196250916,\n                        \"Y\": 0.11875941604375839\n                    },\n                    {\n                        \"X\": 0.12535633146762848,\n                        \"Y\": 0.11875941604375839\n                    }\n                ]\n            },\n            \"Id\": \"cac483a1-8994-460c-85f8-a3552db78a47\",\n            \"Page\": 1,\n            \"Text\": \"1212\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76104736328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008826863020658493,\n                    \"Left\": 0.15569955110549927,\n                    \"Top\": 0.10983675718307495,\n                    \"Width\": 0.06536613404750824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15569955110549927,\n                        \"Y\": 0.10983675718307495\n                    },\n                    {\n                        \"X\": 0.2210656851530075,\n                        \"Y\": 0.10983675718307495\n                    },\n                    {\n                        \"X\": 0.2210656851530075,\n                        \"Y\": 0.11866362392902374\n                    },\n                    {\n                        \"X\": 0.15569955110549927,\n                        \"Y\": 0.11866362392902374\n                    }\n                ]\n            },\n            \"Id\": \"e708b20e-f326-46ed-9ab5-41cd634be0e4\",\n            \"Page\": 1,\n            \"Text\": \"FICTIONAL\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64830017089844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008751589804887772,\n                    \"Left\": 0.22357381880283356,\n                    \"Top\": 0.10988182574510574,\n                    \"Width\": 0.03318548947572708\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22357381880283356,\n                        \"Y\": 0.10988182574510574\n                    },\n                    {\n                        \"X\": 0.25675931572914124,\n                        \"Y\": 0.10988182574510574\n                    },\n                    {\n                        \"X\": 0.25675931572914124,\n                        \"Y\": 0.11863341927528381\n                    },\n                    {\n                        \"X\": 0.22357381880283356,\n                        \"Y\": 0.11863341927528381\n                    }\n                ]\n            },\n            \"Id\": \"f70a33ca-8983-4d0f-9266-ffb996d8e109\",\n            \"Page\": 1,\n            \"Text\": \"BLVD\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64080810546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012241355143487453,\n                    \"Left\": 0.5688372850418091,\n                    \"Top\": 0.10806745290756226,\n                    \"Width\": 0.025836065411567688\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5688372850418091,\n                        \"Y\": 0.10806745290756226\n                    },\n                    {\n                        \"X\": 0.5946733951568604,\n                        \"Y\": 0.10806745290756226\n                    },\n                    {\n                        \"X\": 0.5946733951568604,\n                        \"Y\": 0.12030880153179169\n                    },\n                    {\n                        \"X\": 0.5688372850418091,\n                        \"Y\": 0.12030880153179169\n                    }\n                ]\n            },\n            \"Id\": \"4482c25a-4ab4-4c58-b779-301fba5f79bc\",\n            \"Page\": 1,\n            \"Text\": \"Pay\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.26410675048828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01075605396181345,\n                    \"Left\": 0.5984019637107849,\n                    \"Top\": 0.10754478722810745,\n                    \"Width\": 0.03591672331094742\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5984019637107849,\n                        \"Y\": 0.10754478722810745\n                    },\n                    {\n                        \"X\": 0.6343187093734741,\n                        \"Y\": 0.10754478722810745\n                    },\n                    {\n                        \"X\": 0.6343187093734741,\n                        \"Y\": 0.11830084025859833\n                    },\n                    {\n                        \"X\": 0.5984019637107849,\n                        \"Y\": 0.11830084025859833\n                    }\n                ]\n            },\n            \"Id\": \"472694f2-d61a-494f-9c6a-7d6ff4c8a01c\",\n            \"Page\": 1,\n            \"Text\": \"Date:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5789566040039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00998600386083126,\n                    \"Left\": 0.7752217054367065,\n                    \"Top\": 0.10813913494348526,\n                    \"Width\": 0.07482076436281204\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7752217054367065,\n                        \"Y\": 0.10813913494348526\n                    },\n                    {\n                        \"X\": 0.850042462348938,\n                        \"Y\": 0.10813913494348526\n                    },\n                    {\n                        \"X\": 0.850042462348938,\n                        \"Y\": 0.11812514066696167\n                    },\n                    {\n                        \"X\": 0.7752217054367065,\n                        \"Y\": 0.11812514066696167\n                    }\n                ]\n            },\n            \"Id\": \"3e70ea79-350c-4d53-8e47-f467d70d77f8\",\n            \"Page\": 1,\n            \"Text\": \"04/29/2019\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74826049804688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008912413381040096,\n                    \"Left\": 0.1247895285487175,\n                    \"Top\": 0.125528484582901,\n                    \"Width\": 0.03930716589093208\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1247895285487175,\n                        \"Y\": 0.125528484582901\n                    },\n                    {\n                        \"X\": 0.16409669816493988,\n                        \"Y\": 0.125528484582901\n                    },\n                    {\n                        \"X\": 0.16409669816493988,\n                        \"Y\": 0.13444088399410248\n                    },\n                    {\n                        \"X\": 0.1247895285487175,\n                        \"Y\": 0.13444088399410248\n                    }\n                ]\n            },\n            \"Id\": \"0b7d8d51-16a9-4cd7-9121-b87589fc98dd\",\n            \"Page\": 1,\n            \"Text\": \"SUITE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.04895782470703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009574172087013721,\n                    \"Left\": 0.16669438779354095,\n                    \"Top\": 0.12572994828224182,\n                    \"Width\": 0.018624763935804367\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16669438779354095,\n                        \"Y\": 0.12572994828224182\n                    },\n                    {\n                        \"X\": 0.18531915545463562,\n                        \"Y\": 0.12572994828224182\n                    },\n                    {\n                        \"X\": 0.18531915545463562,\n                        \"Y\": 0.13530412316322327\n                    },\n                    {\n                        \"X\": 0.16669438779354095,\n                        \"Y\": 0.13530412316322327\n                    }\n                ]\n            },\n            \"Id\": \"a738b071-ba14-4b53-8c01-9e6b574086a9\",\n            \"Page\": 1,\n            \"Text\": \"28,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55318450927734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009952234104275703,\n                    \"Left\": 0.12353947013616562,\n                    \"Top\": 0.13808582723140717,\n                    \"Width\": 0.06796050816774368\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12353947013616562,\n                        \"Y\": 0.13808582723140717\n                    },\n                    {\n                        \"X\": 0.1914999783039093,\n                        \"Y\": 0.13808582723140717\n                    },\n                    {\n                        \"X\": 0.1914999783039093,\n                        \"Y\": 0.14803805947303772\n                    },\n                    {\n                        \"X\": 0.12353947013616562,\n                        \"Y\": 0.14803805947303772\n                    }\n                ]\n            },\n            \"Id\": \"e9e79b5a-149b-475a-87ea-928fee1ddd08\",\n            \"Page\": 1,\n            \"Text\": \"ANYTOWN,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.53978729248047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00885591097176075,\n                    \"Left\": 0.19485771656036377,\n                    \"Top\": 0.13795486092567444,\n                    \"Width\": 0.026878725737333298\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19485771656036377,\n                        \"Y\": 0.13795486092567444\n                    },\n                    {\n                        \"X\": 0.22173644602298737,\n                        \"Y\": 0.13795486092567444\n                    },\n                    {\n                        \"X\": 0.22173644602298737,\n                        \"Y\": 0.14681078493595123\n                    },\n                    {\n                        \"X\": 0.19485771656036377,\n                        \"Y\": 0.14681078493595123\n                    }\n                ]\n            },\n            \"Id\": \"e0e7f50c-c810-478d-96b9-d43d00dd0b50\",\n            \"Page\": 1,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55931091308594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008668557740747929,\n                    \"Left\": 0.2242262214422226,\n                    \"Top\": 0.1381428837776184,\n                    \"Width\": 0.033294811844825745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2242262214422226,\n                        \"Y\": 0.1381428837776184\n                    },\n                    {\n                        \"X\": 0.25752103328704834,\n                        \"Y\": 0.1381428837776184\n                    },\n                    {\n                        \"X\": 0.25752103328704834,\n                        \"Y\": 0.14681144058704376\n                    },\n                    {\n                        \"X\": 0.2242262214422226,\n                        \"Y\": 0.14681144058704376\n                    }\n                ]\n            },\n            \"Id\": \"ff80d3cb-6678-442e-8cfe-4b8b5c3451ce\",\n            \"Page\": 1,\n            \"Text\": \"10101\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71659088134766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010198493488132954,\n                    \"Left\": 0.12402775883674622,\n                    \"Top\": 0.18159104883670807,\n                    \"Width\": 0.04007160663604736\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12402775883674622,\n                        \"Y\": 0.18159104883670807\n                    },\n                    {\n                        \"X\": 0.16409936547279358,\n                        \"Y\": 0.18159104883670807\n                    },\n                    {\n                        \"X\": 0.16409936547279358,\n                        \"Y\": 0.19178953766822815\n                    },\n                    {\n                        \"X\": 0.12402775883674622,\n                        \"Y\": 0.19178953766822815\n                    }\n                ]\n            },\n            \"Id\": \"7452325e-f279-4cd1-a84d-be38a08f89ef\",\n            \"Page\": 1,\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96446228027344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0121013093739748,\n                    \"Left\": 0.1681721955537796,\n                    \"Top\": 0.18164925277233124,\n                    \"Width\": 0.05483356863260269\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1681721955537796,\n                        \"Y\": 0.18164925277233124\n                    },\n                    {\n                        \"X\": 0.2230057716369629,\n                        \"Y\": 0.18164925277233124\n                    },\n                    {\n                        \"X\": 0.2230057716369629,\n                        \"Y\": 0.1937505602836609\n                    },\n                    {\n                        \"X\": 0.1681721955537796,\n                        \"Y\": 0.1937505602836609\n                    }\n                ]\n            },\n            \"Id\": \"1c565b90-8de9-4725-bd5c-36e0ca2ccb8b\",\n            \"Page\": 1,\n            \"Text\": \"Security\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73197937011719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01011133473366499,\n                    \"Left\": 0.2272936850786209,\n                    \"Top\": 0.1815999448299408,\n                    \"Width\": 0.05716487020254135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2272936850786209,\n                        \"Y\": 0.1815999448299408\n                    },\n                    {\n                        \"X\": 0.28445854783058167,\n                        \"Y\": 0.1815999448299408\n                    },\n                    {\n                        \"X\": 0.28445854783058167,\n                        \"Y\": 0.19171129167079926\n                    },\n                    {\n                        \"X\": 0.2272936850786209,\n                        \"Y\": 0.19171129167079926\n                    }\n                ]\n            },\n            \"Id\": \"5bd94c39-e8a5-4b56-867a-6d3626ee3f28\",\n            \"Page\": 1,\n            \"Text\": \"Number:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70069885253906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010074208490550518,\n                    \"Left\": 0.29089847207069397,\n                    \"Top\": 0.18172703683376312,\n                    \"Width\": 0.08810068666934967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29089847207069397,\n                        \"Y\": 0.18172703683376312\n                    },\n                    {\n                        \"X\": 0.37899914383888245,\n                        \"Y\": 0.18172703683376312\n                    },\n                    {\n                        \"X\": 0.37899914383888245,\n                        \"Y\": 0.1918012499809265\n                    },\n                    {\n                        \"X\": 0.29089847207069397,\n                        \"Y\": 0.1918012499809265\n                    }\n                ]\n            },\n            \"Id\": \"93715c41-2ee4-46bc-9a1a-e4ea3527fb13\",\n            \"Page\": 1,\n            \"Text\": \"518-85-7136\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58570861816406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01373875793069601,\n                    \"Left\": 0.5983403325080872,\n                    \"Top\": 0.182119682431221,\n                    \"Width\": 0.07652109861373901\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5983403325080872,\n                        \"Y\": 0.182119682431221\n                    },\n                    {\n                        \"X\": 0.6748614311218262,\n                        \"Y\": 0.182119682431221\n                    },\n                    {\n                        \"X\": 0.6748614311218262,\n                        \"Y\": 0.1958584487438202\n                    },\n                    {\n                        \"X\": 0.5983403325080872,\n                        \"Y\": 0.1958584487438202\n                    }\n                ]\n            },\n            \"Id\": \"376e1fa5-c3ab-4e4a-95ac-23550480a50a\",\n            \"Page\": 1,\n            \"Text\": \"Alejandro\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.40926361083984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011014302261173725,\n                    \"Left\": 0.6783040165901184,\n                    \"Top\": 0.18274559080600739,\n                    \"Width\": 0.06332971155643463\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6783040165901184,\n                        \"Y\": 0.18274559080600739\n                    },\n                    {\n                        \"X\": 0.7416337132453918,\n                        \"Y\": 0.18274559080600739\n                    },\n                    {\n                        \"X\": 0.7416337132453918,\n                        \"Y\": 0.19375988841056824\n                    },\n                    {\n                        \"X\": 0.6783040165901184,\n                        \"Y\": 0.19375988841056824\n                    }\n                ]\n            },\n            \"Id\": \"39e6a2dc-0a36-4626-87d0-ab69620df5ba\",\n            \"Page\": 1,\n            \"Text\": \"Rosalez\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8695297241211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010295772925019264,\n                    \"Left\": 0.1234658733010292,\n                    \"Top\": 0.19507884979248047,\n                    \"Width\": 0.0535978302359581\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1234658733010292,\n                        \"Y\": 0.19507884979248047\n                    },\n                    {\n                        \"X\": 0.1770637035369873,\n                        \"Y\": 0.19507884979248047\n                    },\n                    {\n                        \"X\": 0.1770637035369873,\n                        \"Y\": 0.205374613404274\n                    },\n                    {\n                        \"X\": 0.1234658733010292,\n                        \"Y\": 0.205374613404274\n                    }\n                ]\n            },\n            \"Id\": \"bffcc1a9-540d-43bb-8dd0-58878ad77169\",\n            \"Page\": 1,\n            \"Text\": \"Taxable\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81495666503906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010095643810927868,\n                    \"Left\": 0.1812187284231186,\n                    \"Top\": 0.19527627527713776,\n                    \"Width\": 0.04457604140043259\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1812187284231186,\n                        \"Y\": 0.19527627527713776\n                    },\n                    {\n                        \"X\": 0.22579476237297058,\n                        \"Y\": 0.19527627527713776\n                    },\n                    {\n                        \"X\": 0.22579476237297058,\n                        \"Y\": 0.2053719162940979\n                    },\n                    {\n                        \"X\": 0.1812187284231186,\n                        \"Y\": 0.2053719162940979\n                    }\n                ]\n            },\n            \"Id\": \"d439b44b-0982-4d3c-9914-3133ef2dabf6\",\n            \"Page\": 1,\n            \"Text\": \"Marital\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.46822357177734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010000198148190975,\n                    \"Left\": 0.23024694621562958,\n                    \"Top\": 0.19548408687114716,\n                    \"Width\": 0.048161979764699936\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23024694621562958,\n                        \"Y\": 0.19548408687114716\n                    },\n                    {\n                        \"X\": 0.278408944606781,\n                        \"Y\": 0.19548408687114716\n                    },\n                    {\n                        \"X\": 0.278408944606781,\n                        \"Y\": 0.2054842859506607\n                    },\n                    {\n                        \"X\": 0.23024694621562958,\n                        \"Y\": 0.2054842859506607\n                    }\n                ]\n            },\n            \"Id\": \"f28a7bc9-b151-4b2e-b6de-ba19774761e2\",\n            \"Page\": 1,\n            \"Text\": \"Status:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98015594482422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010125815868377686,\n                    \"Left\": 0.28365325927734375,\n                    \"Top\": 0.19521202147006989,\n                    \"Width\": 0.050367046147584915\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28365325927734375,\n                        \"Y\": 0.19521202147006989\n                    },\n                    {\n                        \"X\": 0.33402031660079956,\n                        \"Y\": 0.19521202147006989\n                    },\n                    {\n                        \"X\": 0.33402031660079956,\n                        \"Y\": 0.20533783733844757\n                    },\n                    {\n                        \"X\": 0.28365325927734375,\n                        \"Y\": 0.20533783733844757\n                    }\n                ]\n            },\n            \"Id\": \"d9b15400-d72f-4cc1-94c4-0e37c479691e\",\n            \"Page\": 1,\n            \"Text\": \"Married\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93208312988281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010455574840307236,\n                    \"Left\": 0.5993978977203369,\n                    \"Top\": 0.19707836210727692,\n                    \"Width\": 0.02714415267109871\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993978977203369,\n                        \"Y\": 0.19707836210727692\n                    },\n                    {\n                        \"X\": 0.6265420317649841,\n                        \"Y\": 0.19707836210727692\n                    },\n                    {\n                        \"X\": 0.6265420317649841,\n                        \"Y\": 0.20753394067287445\n                    },\n                    {\n                        \"X\": 0.5993978977203369,\n                        \"Y\": 0.20753394067287445\n                    }\n                ]\n            },\n            \"Id\": \"060c2c22-912a-456e-ae3d-e697f600a550\",\n            \"Page\": 1,\n            \"Text\": \"400\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76900482177734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0130459014326334,\n                    \"Left\": 0.6305310130119324,\n                    \"Top\": 0.19693335890769958,\n                    \"Width\": 0.049316272139549255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6305310130119324,\n                        \"Y\": 0.19693335890769958\n                    },\n                    {\n                        \"X\": 0.679847240447998,\n                        \"Y\": 0.19693335890769958\n                    },\n                    {\n                        \"X\": 0.679847240447998,\n                        \"Y\": 0.20997925102710724\n                    },\n                    {\n                        \"X\": 0.6305310130119324,\n                        \"Y\": 0.20997925102710724\n                    }\n                ]\n            },\n            \"Id\": \"50626fef-c65c-4d48-8ff0-7d2972f168d6\",\n            \"Page\": 1,\n            \"Text\": \"Kozey\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93123626708984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013003550469875336,\n                    \"Left\": 0.6840406060218811,\n                    \"Top\": 0.19689145684242249,\n                    \"Width\": 0.040300142019987106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6840406060218811,\n                        \"Y\": 0.19689145684242249\n                    },\n                    {\n                        \"X\": 0.7243407368659973,\n                        \"Y\": 0.19689145684242249\n                    },\n                    {\n                        \"X\": 0.7243407368659973,\n                        \"Y\": 0.20989499986171722\n                    },\n                    {\n                        \"X\": 0.6840406060218811,\n                        \"Y\": 0.20989499986171722\n                    }\n                ]\n            },\n            \"Id\": \"40074044-7cc1-4d93-bdd7-f36a18b8a070\",\n            \"Page\": 1,\n            \"Text\": \"Light\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 81.84607696533203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012008840218186378,\n                    \"Left\": 0.1249840036034584,\n                    \"Top\": 0.20823527872562408,\n                    \"Width\": 0.15819695591926575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1249840036034584,\n                        \"Y\": 0.20823527872562408\n                    },\n                    {\n                        \"X\": 0.28318095207214355,\n                        \"Y\": 0.20823527872562408\n                    },\n                    {\n                        \"X\": 0.28318095207214355,\n                        \"Y\": 0.22024410963058472\n                    },\n                    {\n                        \"X\": 0.1249840036034584,\n                        \"Y\": 0.22024410963058472\n                    }\n                ]\n            },\n            \"Id\": \"a8003327-e639-4592-bdb5-68ba85ba0e34\",\n            \"Page\": 1,\n            \"Text\": \"Exemptions/Allowances\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.6214828491211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013074619695544243,\n                    \"Left\": 0.5988011956214905,\n                    \"Top\": 0.2110283076763153,\n                    \"Width\": 0.10121286660432816\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5988011956214905,\n                        \"Y\": 0.2110283076763153\n                    },\n                    {\n                        \"X\": 0.7000141143798828,\n                        \"Y\": 0.2110283076763153\n                    },\n                    {\n                        \"X\": 0.7000141143798828,\n                        \"Y\": 0.2241029292345047\n                    },\n                    {\n                        \"X\": 0.5988011956214905,\n                        \"Y\": 0.2241029292345047\n                    }\n                ]\n            },\n            \"Id\": \"efc2215a-0319-425f-a76b-c92681ba4229\",\n            \"Page\": 1,\n            \"Text\": \"Weberburgh,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.57304382324219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010839207097887993,\n                    \"Left\": 0.704266369342804,\n                    \"Top\": 0.21104729175567627,\n                    \"Width\": 0.016988610848784447\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.704266369342804,\n                        \"Y\": 0.21104729175567627\n                    },\n                    {\n                        \"X\": 0.7212550044059753,\n                        \"Y\": 0.21104729175567627\n                    },\n                    {\n                        \"X\": 0.7212550044059753,\n                        \"Y\": 0.2218865007162094\n                    },\n                    {\n                        \"X\": 0.704266369342804,\n                        \"Y\": 0.2218865007162094\n                    }\n                ]\n            },\n            \"Id\": \"09ac6446-1aec-4111-8880-6d51aae5be6e\",\n            \"Page\": 1,\n            \"Text\": \"HI\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.46770477294922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011105059646070004,\n                    \"Left\": 0.7247807383537292,\n                    \"Top\": 0.2110329121351242,\n                    \"Width\": 0.04661795496940613\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7247807383537292,\n                        \"Y\": 0.2110329121351242\n                    },\n                    {\n                        \"X\": 0.771398663520813,\n                        \"Y\": 0.2110329121351242\n                    },\n                    {\n                        \"X\": 0.771398663520813,\n                        \"Y\": 0.22213797271251678\n                    },\n                    {\n                        \"X\": 0.7247807383537292,\n                        \"Y\": 0.22213797271251678\n                    }\n                ]\n            },\n            \"Id\": \"022ca3a4-6b42-43f4-91be-fe8801b9937c\",\n            \"Page\": 1,\n            \"Text\": \"29922\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.45838165283203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010097477585077286,\n                    \"Left\": 0.1431739628314972,\n                    \"Top\": 0.2218809723854065,\n                    \"Width\": 0.053275302052497864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1431739628314972,\n                        \"Y\": 0.2218809723854065\n                    },\n                    {\n                        \"X\": 0.19644926488399506,\n                        \"Y\": 0.2218809723854065\n                    },\n                    {\n                        \"X\": 0.19644926488399506,\n                        \"Y\": 0.23197844624519348\n                    },\n                    {\n                        \"X\": 0.1431739628314972,\n                        \"Y\": 0.23197844624519348\n                    }\n                ]\n            },\n            \"Id\": \"1a0d508b-e46a-4abc-83d4-8a173d2126ad\",\n            \"Page\": 1,\n            \"Text\": \"Federal:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68541717529297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009344001300632954,\n                    \"Left\": 0.20308944582939148,\n                    \"Top\": 0.22232572734355927,\n                    \"Width\": 0.008323456160724163\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20308944582939148,\n                        \"Y\": 0.22232572734355927\n                    },\n                    {\n                        \"X\": 0.21141289174556732,\n                        \"Y\": 0.22232572734355927\n                    },\n                    {\n                        \"X\": 0.21141289174556732,\n                        \"Y\": 0.23166972398757935\n                    },\n                    {\n                        \"X\": 0.20308944582939148,\n                        \"Y\": 0.23166972398757935\n                    }\n                ]\n            },\n            \"Id\": \"b057e36c-5ee0-47b1-bd51-b0ef1cd9fdae\",\n            \"Page\": 1,\n            \"Text\": \"3\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92132568359375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009951913729310036,\n                    \"Left\": 0.14218488335609436,\n                    \"Top\": 0.23507870733737946,\n                    \"Width\": 0.026067916303873062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14218488335609436,\n                        \"Y\": 0.23507870733737946\n                    },\n                    {\n                        \"X\": 0.16825279593467712,\n                        \"Y\": 0.23507870733737946\n                    },\n                    {\n                        \"X\": 0.16825279593467712,\n                        \"Y\": 0.24503061175346375\n                    },\n                    {\n                        \"X\": 0.14218488335609436,\n                        \"Y\": 0.24503061175346375\n                    }\n                ]\n            },\n            \"Id\": \"798027ee-c9c7-4443-8918-12cc32f278b7\",\n            \"Page\": 1,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.20021057128906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009988313540816307,\n                    \"Left\": 0.17142145335674286,\n                    \"Top\": 0.2350878268480301,\n                    \"Width\": 0.040230054408311844\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17142145335674286,\n                        \"Y\": 0.2350878268480301\n                    },\n                    {\n                        \"X\": 0.2116515040397644,\n                        \"Y\": 0.2350878268480301\n                    },\n                    {\n                        \"X\": 0.2116515040397644,\n                        \"Y\": 0.24507613480091095\n                    },\n                    {\n                        \"X\": 0.17142145335674286,\n                        \"Y\": 0.24507613480091095\n                    }\n                ]\n            },\n            \"Id\": \"f50c27d0-d123-44f3-a333-c6083abc642b\",\n            \"Page\": 1,\n            \"Text\": \"State:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81434631347656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00969014409929514,\n                    \"Left\": 0.21727688610553741,\n                    \"Top\": 0.23514780402183533,\n                    \"Width\": 0.008758366107940674\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21727688610553741,\n                        \"Y\": 0.23514780402183533\n                    },\n                    {\n                        \"X\": 0.2260352522134781,\n                        \"Y\": 0.23514780402183533\n                    },\n                    {\n                        \"X\": 0.2260352522134781,\n                        \"Y\": 0.2448379397392273\n                    },\n                    {\n                        \"X\": 0.21727688610553741,\n                        \"Y\": 0.2448379397392273\n                    }\n                ]\n            },\n            \"Id\": \"efe77b9e-b2c9-4771-b58a-0ca38bd30a57\",\n            \"Page\": 1,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93499755859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012873919680714607,\n                    \"Left\": 0.07025602459907532,\n                    \"Top\": 0.2990618050098419,\n                    \"Width\": 0.06880509853363037\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07025602459907532,\n                        \"Y\": 0.2990618050098419\n                    },\n                    {\n                        \"X\": 0.1390611231327057,\n                        \"Y\": 0.2990618050098419\n                    },\n                    {\n                        \"X\": 0.1390611231327057,\n                        \"Y\": 0.3119357228279114\n                    },\n                    {\n                        \"X\": 0.07025602459907532,\n                        \"Y\": 0.3119357228279114\n                    }\n                ]\n            },\n            \"Id\": \"32b21e55-004a-4ee5-9af6-afd4a481842d\",\n            \"Page\": 1,\n            \"Text\": \"Earnings\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96603393554688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009521623142063618,\n                    \"Left\": 0.21060852706432343,\n                    \"Top\": 0.29902783036231995,\n                    \"Width\": 0.02769084833562374\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21060852706432343,\n                        \"Y\": 0.29902783036231995\n                    },\n                    {\n                        \"X\": 0.23829936981201172,\n                        \"Y\": 0.29902783036231995\n                    },\n                    {\n                        \"X\": 0.23829936981201172,\n                        \"Y\": 0.3085494637489319\n                    },\n                    {\n                        \"X\": 0.21060852706432343,\n                        \"Y\": 0.3085494637489319\n                    }\n                ]\n            },\n            \"Id\": \"77dddbfd-8b88-4505-89a1-5fc4379cf631\",\n            \"Page\": 1,\n            \"Text\": \"rate\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62782287597656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010034850798547268,\n                    \"Left\": 0.28141021728515625,\n                    \"Top\": 0.298642635345459,\n                    \"Width\": 0.041197050362825394\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28141021728515625,\n                        \"Y\": 0.298642635345459\n                    },\n                    {\n                        \"X\": 0.32260724902153015,\n                        \"Y\": 0.298642635345459\n                    },\n                    {\n                        \"X\": 0.32260724902153015,\n                        \"Y\": 0.3086774945259094\n                    },\n                    {\n                        \"X\": 0.28141021728515625,\n                        \"Y\": 0.3086774945259094\n                    }\n                ]\n            },\n            \"Id\": \"b706a1eb-4a1f-4813-99a9-13b0bc048a44\",\n            \"Page\": 1,\n            \"Text\": \"hours\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97877502441406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010341237299144268,\n                    \"Left\": 0.3483469486236572,\n                    \"Top\": 0.2984272837638855,\n                    \"Width\": 0.02708253636956215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3483469486236572,\n                        \"Y\": 0.2984272837638855\n                    },\n                    {\n                        \"X\": 0.3754294812679291,\n                        \"Y\": 0.2984272837638855\n                    },\n                    {\n                        \"X\": 0.3754294812679291,\n                        \"Y\": 0.30876851081848145\n                    },\n                    {\n                        \"X\": 0.3483469486236572,\n                        \"Y\": 0.30876851081848145\n                    }\n                ]\n            },\n            \"Id\": \"369b5fde-4e79-4bc1-97e3-a1e622599d05\",\n            \"Page\": 1,\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95612335205078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011974274180829525,\n                    \"Left\": 0.3787408471107483,\n                    \"Top\": 0.2986333966255188,\n                    \"Width\": 0.04548848792910576\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3787408471107483,\n                        \"Y\": 0.2986333966255188\n                    },\n                    {\n                        \"X\": 0.42422932386398315,\n                        \"Y\": 0.2986333966255188\n                    },\n                    {\n                        \"X\": 0.42422932386398315,\n                        \"Y\": 0.3106076717376709\n                    },\n                    {\n                        \"X\": 0.3787408471107483,\n                        \"Y\": 0.3106076717376709\n                    }\n                ]\n            },\n            \"Id\": \"0d0bdeac-5233-4867-8247-db187571e5b1\",\n            \"Page\": 1,\n            \"Text\": \"period\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96353149414062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01017031166702509,\n                    \"Left\": 0.4665904641151428,\n                    \"Top\": 0.30056145787239075,\n                    \"Width\": 0.03169199079275131\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4665904641151428,\n                        \"Y\": 0.30056145787239075\n                    },\n                    {\n                        \"X\": 0.49828246235847473,\n                        \"Y\": 0.30056145787239075\n                    },\n                    {\n                        \"X\": 0.49828246235847473,\n                        \"Y\": 0.31073176860809326\n                    },\n                    {\n                        \"X\": 0.4665904641151428,\n                        \"Y\": 0.31073176860809326\n                    }\n                ]\n            },\n            \"Id\": \"f6b1909b-277d-43af-911c-9f38de3995f6\",\n            \"Page\": 1,\n            \"Text\": \"year\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97066497802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009401870891451836,\n                    \"Left\": 0.5006657242774963,\n                    \"Top\": 0.2990702688694,\n                    \"Width\": 0.014939586631953716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5006657242774963,\n                        \"Y\": 0.2990702688694\n                    },\n                    {\n                        \"X\": 0.5156053304672241,\n                        \"Y\": 0.2990702688694\n                    },\n                    {\n                        \"X\": 0.5156053304672241,\n                        \"Y\": 0.3084721267223358\n                    },\n                    {\n                        \"X\": 0.5006657242774963,\n                        \"Y\": 0.3084721267223358\n                    }\n                ]\n            },\n            \"Id\": \"b637f74f-312a-422f-ba11-ac39c36e21b0\",\n            \"Page\": 1,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90106201171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009666910395026207,\n                    \"Left\": 0.5189870595932007,\n                    \"Top\": 0.29884204268455505,\n                    \"Width\": 0.030579330399632454\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5189870595932007,\n                        \"Y\": 0.29884204268455505\n                    },\n                    {\n                        \"X\": 0.549566388130188,\n                        \"Y\": 0.29884204268455505\n                    },\n                    {\n                        \"X\": 0.549566388130188,\n                        \"Y\": 0.3085089325904846\n                    },\n                    {\n                        \"X\": 0.5189870595932007,\n                        \"Y\": 0.3085089325904846\n                    }\n                ]\n            },\n            \"Id\": \"74146882-435b-4d50-bffe-d8f405c487bf\",\n            \"Page\": 1,\n            \"Text\": \"date\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96099090576172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010173287242650986,\n                    \"Left\": 0.5993179082870483,\n                    \"Top\": 0.29397469758987427,\n                    \"Width\": 0.04015969857573509\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993179082870483,\n                        \"Y\": 0.29397469758987427\n                    },\n                    {\n                        \"X\": 0.6394776105880737,\n                        \"Y\": 0.29397469758987427\n                    },\n                    {\n                        \"X\": 0.6394776105880737,\n                        \"Y\": 0.30414798855781555\n                    },\n                    {\n                        \"X\": 0.5993179082870483,\n                        \"Y\": 0.30414798855781555\n                    }\n                ]\n            },\n            \"Id\": \"87acac46-1130-466e-ae3f-2c135c637988\",\n            \"Page\": 1,\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80598449707031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010633749887347221,\n                    \"Left\": 0.6426896452903748,\n                    \"Top\": 0.29371377825737,\n                    \"Width\": 0.05857201665639877\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6426896452903748,\n                        \"Y\": 0.29371377825737\n                    },\n                    {\n                        \"X\": 0.7012616395950317,\n                        \"Y\": 0.29371377825737\n                    },\n                    {\n                        \"X\": 0.7012616395950317,\n                        \"Y\": 0.30434751510620117\n                    },\n                    {\n                        \"X\": 0.6426896452903748,\n                        \"Y\": 0.30434751510620117\n                    }\n                ]\n            },\n            \"Id\": \"a014aaf4-d01d-4767-961a-8a5983fe1253\",\n            \"Page\": 1,\n            \"Text\": \"Benefits\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9862060546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009862056002020836,\n                    \"Left\": 0.5995515584945679,\n                    \"Top\": 0.30712905526161194,\n                    \"Width\": 0.026520313695073128\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5995515584945679,\n                        \"Y\": 0.30712905526161194\n                    },\n                    {\n                        \"X\": 0.6260718703269958,\n                        \"Y\": 0.30712905526161194\n                    },\n                    {\n                        \"X\": 0.6260718703269958,\n                        \"Y\": 0.31699109077453613\n                    },\n                    {\n                        \"X\": 0.5995515584945679,\n                        \"Y\": 0.31699109077453613\n                    }\n                ]\n            },\n            \"Id\": \"40bae06a-176d-4c56-bed4-14aa45499667\",\n            \"Page\": 1,\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.69722747802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009953955188393593,\n                    \"Left\": 0.629874587059021,\n                    \"Top\": 0.3071271479129791,\n                    \"Width\": 0.08041977882385254\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.629874587059021,\n                        \"Y\": 0.3071271479129791\n                    },\n                    {\n                        \"X\": 0.7102943658828735,\n                        \"Y\": 0.3071271479129791\n                    },\n                    {\n                        \"X\": 0.7102943658828735,\n                        \"Y\": 0.317081093788147\n                    },\n                    {\n                        \"X\": 0.629874587059021,\n                        \"Y\": 0.317081093788147\n                    }\n                ]\n            },\n            \"Id\": \"74f5d1a5-3cc1-4792-be50-0227afcd72b5\",\n            \"Page\": 1,\n            \"Text\": \"Information\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98039245605469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010346600785851479,\n                    \"Left\": 0.7415679097175598,\n                    \"Top\": 0.300169438123703,\n                    \"Width\": 0.026928871870040894\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7415679097175598,\n                        \"Y\": 0.300169438123703\n                    },\n                    {\n                        \"X\": 0.7684968113899231,\n                        \"Y\": 0.300169438123703\n                    },\n                    {\n                        \"X\": 0.7684968113899231,\n                        \"Y\": 0.3105160593986511\n                    },\n                    {\n                        \"X\": 0.7415679097175598,\n                        \"Y\": 0.3105160593986511\n                    }\n                ]\n            },\n            \"Id\": \"3be76415-9bc4-4741-b79e-4b12599b057a\",\n            \"Page\": 1,\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9370346069336,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012182083912193775,\n                    \"Left\": 0.7719172835350037,\n                    \"Top\": 0.3001896142959595,\n                    \"Width\": 0.0457746647298336\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7719172835350037,\n                        \"Y\": 0.3001896142959595\n                    },\n                    {\n                        \"X\": 0.8176919221878052,\n                        \"Y\": 0.3001896142959595\n                    },\n                    {\n                        \"X\": 0.8176919221878052,\n                        \"Y\": 0.31237170100212097\n                    },\n                    {\n                        \"X\": 0.7719172835350037,\n                        \"Y\": 0.31237170100212097\n                    }\n                ]\n            },\n            \"Id\": \"3f1131e3-684b-408e-b3dc-39a12f50f069\",\n            \"Page\": 1,\n            \"Text\": \"period\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8860092163086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0101335309445858,\n                    \"Left\": 0.8901745676994324,\n                    \"Top\": 0.30007413029670715,\n                    \"Width\": 0.03072102926671505\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8901745676994324,\n                        \"Y\": 0.30007413029670715\n                    },\n                    {\n                        \"X\": 0.9208955764770508,\n                        \"Y\": 0.30007413029670715\n                    },\n                    {\n                        \"X\": 0.9208955764770508,\n                        \"Y\": 0.31020766496658325\n                    },\n                    {\n                        \"X\": 0.8901745676994324,\n                        \"Y\": 0.31020766496658325\n                    }\n                ]\n            },\n            \"Id\": \"89ec37c7-b007-4948-847a-713b423cb273\",\n            \"Page\": 1,\n            \"Text\": \"YTD\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85372161865234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012135201133787632,\n                    \"Left\": 0.06997334212064743,\n                    \"Top\": 0.32002073526382446,\n                    \"Width\": 0.05190309137105942\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06997334212064743,\n                        \"Y\": 0.32002073526382446\n                    },\n                    {\n                        \"X\": 0.12187642604112625,\n                        \"Y\": 0.32002073526382446\n                    },\n                    {\n                        \"X\": 0.12187642604112625,\n                        \"Y\": 0.3321559429168701\n                    },\n                    {\n                        \"X\": 0.06997334212064743,\n                        \"Y\": 0.3321559429168701\n                    }\n                ]\n            },\n            \"Id\": \"e5ebb409-1edc-4b7c-b8a7-b5bc0815ac60\",\n            \"Page\": 1,\n            \"Text\": \"Regular\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81845092773438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009859772399067879,\n                    \"Left\": 0.2014435976743698,\n                    \"Top\": 0.3201325833797455,\n                    \"Width\": 0.036780718713998795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2014435976743698,\n                        \"Y\": 0.3201325833797455\n                    },\n                    {\n                        \"X\": 0.2382243126630783,\n                        \"Y\": 0.3201325833797455\n                    },\n                    {\n                        \"X\": 0.2382243126630783,\n                        \"Y\": 0.3299923539161682\n                    },\n                    {\n                        \"X\": 0.2014435976743698,\n                        \"Y\": 0.3299923539161682\n                    }\n                ]\n            },\n            \"Id\": \"18c825fe-d183-45be-8e5a-5d24eb13832a\",\n            \"Page\": 1,\n            \"Text\": \"10.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78376007080078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009894165210425854,\n                    \"Left\": 0.28472936153411865,\n                    \"Top\": 0.3201007843017578,\n                    \"Width\": 0.03815575689077377\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28472936153411865,\n                        \"Y\": 0.3201007843017578\n                    },\n                    {\n                        \"X\": 0.322885125875473,\n                        \"Y\": 0.3201007843017578\n                    },\n                    {\n                        \"X\": 0.322885125875473,\n                        \"Y\": 0.32999494671821594\n                    },\n                    {\n                        \"X\": 0.28472936153411865,\n                        \"Y\": 0.32999494671821594\n                    }\n                ]\n            },\n            \"Id\": \"ba6e5de1-a89a-430b-b0d6-687f05dd6b54\",\n            \"Page\": 1,\n            \"Text\": \"40.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77479553222656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009893231093883514,\n                    \"Left\": 0.37874963879585266,\n                    \"Top\": 0.32017868757247925,\n                    \"Width\": 0.045163776725530624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37874963879585266,\n                        \"Y\": 0.32017868757247925\n                    },\n                    {\n                        \"X\": 0.4239133894443512,\n                        \"Y\": 0.32017868757247925\n                    },\n                    {\n                        \"X\": 0.4239133894443512,\n                        \"Y\": 0.33007192611694336\n                    },\n                    {\n                        \"X\": 0.37874963879585266,\n                        \"Y\": 0.33007192611694336\n                    }\n                ]\n            },\n            \"Id\": \"b17b5b22-fc5c-4253-9769-bb785aa77d1f\",\n            \"Page\": 1,\n            \"Text\": \"400.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63064575195312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01122372131794691,\n                    \"Left\": 0.4964635968208313,\n                    \"Top\": 0.3201235830783844,\n                    \"Width\": 0.056298255920410156\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4964635968208313,\n                        \"Y\": 0.3201235830783844\n                    },\n                    {\n                        \"X\": 0.5527618527412415,\n                        \"Y\": 0.3201235830783844\n                    },\n                    {\n                        \"X\": 0.5527618527412415,\n                        \"Y\": 0.3313473165035248\n                    },\n                    {\n                        \"X\": 0.4964635968208313,\n                        \"Y\": 0.3313473165035248\n                    }\n                ]\n            },\n            \"Id\": \"e0a67ceb-b6a8-414b-a428-cd157d11b863\",\n            \"Page\": 1,\n            \"Text\": \"1,200.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72032928466797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011927148327231407,\n                    \"Left\": 0.5994647145271301,\n                    \"Top\": 0.32359179854393005,\n                    \"Width\": 0.04118111729621887\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5994647145271301,\n                        \"Y\": 0.32359179854393005\n                    },\n                    {\n                        \"X\": 0.6406458616256714,\n                        \"Y\": 0.32359179854393005\n                    },\n                    {\n                        \"X\": 0.6406458616256714,\n                        \"Y\": 0.3355189263820648\n                    },\n                    {\n                        \"X\": 0.5994647145271301,\n                        \"Y\": 0.3355189263820648\n                    }\n                ]\n            },\n            \"Id\": \"544ed65e-dd67-41d4-8d45-8ce2bd5835af\",\n            \"Page\": 1,\n            \"Text\": \"Group\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7528305053711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010085194371640682,\n                    \"Left\": 0.6437799334526062,\n                    \"Top\": 0.3234783709049225,\n                    \"Width\": 0.03513550013303757\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6437799334526062,\n                        \"Y\": 0.3234783709049225\n                    },\n                    {\n                        \"X\": 0.6789154410362244,\n                        \"Y\": 0.3234783709049225\n                    },\n                    {\n                        \"X\": 0.6789154410362244,\n                        \"Y\": 0.33356356620788574\n                    },\n                    {\n                        \"X\": 0.6437799334526062,\n                        \"Y\": 0.33356356620788574\n                    }\n                ]\n            },\n            \"Id\": \"6f3a8b18-7c3a-4725-b522-59111a249373\",\n            \"Page\": 1,\n            \"Text\": \"Term\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83342742919922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010393276810646057,\n                    \"Left\": 0.6823252439498901,\n                    \"Top\": 0.32319873571395874,\n                    \"Width\": 0.024702612310647964\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6823252439498901,\n                        \"Y\": 0.32319873571395874\n                    },\n                    {\n                        \"X\": 0.7070278525352478,\n                        \"Y\": 0.32319873571395874\n                    },\n                    {\n                        \"X\": 0.7070278525352478,\n                        \"Y\": 0.3335919976234436\n                    },\n                    {\n                        \"X\": 0.6823252439498901,\n                        \"Y\": 0.3335919976234436\n                    }\n                ]\n            },\n            \"Id\": \"57de8cb4-c529-4a29-a3f5-789097f6ad96\",\n            \"Page\": 1,\n            \"Text\": \"Life\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8238525390625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010144084692001343,\n                    \"Left\": 0.788446843624115,\n                    \"Top\": 0.3234468400478363,\n                    \"Width\": 0.027686748653650284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.788446843624115,\n                        \"Y\": 0.3234468400478363\n                    },\n                    {\n                        \"X\": 0.8161336183547974,\n                        \"Y\": 0.3234468400478363\n                    },\n                    {\n                        \"X\": 0.8161336183547974,\n                        \"Y\": 0.33359092473983765\n                    },\n                    {\n                        \"X\": 0.788446843624115,\n                        \"Y\": 0.33359092473983765\n                    }\n                ]\n            },\n            \"Id\": \"d7990303-a433-42ec-8834-c7df9642c1aa\",\n            \"Page\": 1,\n            \"Text\": \"0.51\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79698944091797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01014616061002016,\n                    \"Left\": 0.8832603693008423,\n                    \"Top\": 0.3234269618988037,\n                    \"Width\": 0.03728584945201874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8832603693008423,\n                        \"Y\": 0.3234269618988037\n                    },\n                    {\n                        \"X\": 0.9205462336540222,\n                        \"Y\": 0.3234269618988037\n                    },\n                    {\n                        \"X\": 0.9205462336540222,\n                        \"Y\": 0.3335731029510498\n                    },\n                    {\n                        \"X\": 0.8832603693008423,\n                        \"Y\": 0.3335731029510498\n                    }\n                ]\n            },\n            \"Id\": \"79d69783-cb33-4efd-9d59-a5d2c1a6584a\",\n            \"Page\": 1,\n            \"Text\": \"27.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88472747802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010117372497916222,\n                    \"Left\": 0.06962619721889496,\n                    \"Top\": 0.33808380365371704,\n                    \"Width\": 0.05988564342260361\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06962619721889496,\n                        \"Y\": 0.33808380365371704\n                    },\n                    {\n                        \"X\": 0.12951183319091797,\n                        \"Y\": 0.33808380365371704\n                    },\n                    {\n                        \"X\": 0.12951183319091797,\n                        \"Y\": 0.348201185464859\n                    },\n                    {\n                        \"X\": 0.06962619721889496,\n                        \"Y\": 0.348201185464859\n                    }\n                ]\n            },\n            \"Id\": \"a1f932c8-ac4c-4793-8f18-c24027a3f408\",\n            \"Page\": 1,\n            \"Text\": \"Overtime\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92415618896484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009887798689305782,\n                    \"Left\": 0.20176410675048828,\n                    \"Top\": 0.33821406960487366,\n                    \"Width\": 0.03656870871782303\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20176410675048828,\n                        \"Y\": 0.33821406960487366\n                    },\n                    {\n                        \"X\": 0.2383328080177307,\n                        \"Y\": 0.33821406960487366\n                    },\n                    {\n                        \"X\": 0.2383328080177307,\n                        \"Y\": 0.3481018543243408\n                    },\n                    {\n                        \"X\": 0.20176410675048828,\n                        \"Y\": 0.3481018543243408\n                    }\n                ]\n            },\n            \"Id\": \"9b1cfb0f-68c0-403d-8872-1146810e030a\",\n            \"Page\": 1,\n            \"Text\": \"15.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80098724365234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009967172518372536,\n                    \"Left\": 0.28615203499794006,\n                    \"Top\": 0.3382280468940735,\n                    \"Width\": 0.03657831996679306\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28615203499794006,\n                        \"Y\": 0.3382280468940735\n                    },\n                    {\n                        \"X\": 0.3227303624153137,\n                        \"Y\": 0.3382280468940735\n                    },\n                    {\n                        \"X\": 0.3227303624153137,\n                        \"Y\": 0.34819522500038147\n                    },\n                    {\n                        \"X\": 0.28615203499794006,\n                        \"Y\": 0.34819522500038147\n                    }\n                ]\n            },\n            \"Id\": \"1990485d-875c-41ba-a721-d2c25edfb2ac\",\n            \"Page\": 1,\n            \"Text\": \"14.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70832061767578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009961221367120743,\n                    \"Left\": 0.378692090511322,\n                    \"Top\": 0.3382893204689026,\n                    \"Width\": 0.04565313085913658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.378692090511322,\n                        \"Y\": 0.3382893204689026\n                    },\n                    {\n                        \"X\": 0.4243452250957489,\n                        \"Y\": 0.3382893204689026\n                    },\n                    {\n                        \"X\": 0.4243452250957489,\n                        \"Y\": 0.34825053811073303\n                    },\n                    {\n                        \"X\": 0.378692090511322,\n                        \"Y\": 0.34825053811073303\n                    }\n                ]\n            },\n            \"Id\": \"cfa16d82-370e-454f-97ad-ffc2901e419d\",\n            \"Page\": 1,\n            \"Text\": \"210.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64220428466797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009810156188905239,\n                    \"Left\": 0.5070266723632812,\n                    \"Top\": 0.3382924497127533,\n                    \"Width\": 0.0458882637321949\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5070266723632812,\n                        \"Y\": 0.3382924497127533\n                    },\n                    {\n                        \"X\": 0.5529149174690247,\n                        \"Y\": 0.3382924497127533\n                    },\n                    {\n                        \"X\": 0.5529149174690247,\n                        \"Y\": 0.3481025993824005\n                    },\n                    {\n                        \"X\": 0.5070266723632812,\n                        \"Y\": 0.3481025993824005\n                    }\n                ]\n            },\n            \"Id\": \"5e9c8f1c-c948-4b59-8f7c-8f1649151472\",\n            \"Page\": 1,\n            \"Text\": \"630.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.1053466796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010006997734308243,\n                    \"Left\": 0.5992659330368042,\n                    \"Top\": 0.34162622690200806,\n                    \"Width\": 0.026844847947359085\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5992659330368042,\n                        \"Y\": 0.34162622690200806\n                    },\n                    {\n                        \"X\": 0.6261107921600342,\n                        \"Y\": 0.34162622690200806\n                    },\n                    {\n                        \"X\": 0.6261107921600342,\n                        \"Y\": 0.351633220911026\n                    },\n                    {\n                        \"X\": 0.5992659330368042,\n                        \"Y\": 0.351633220911026\n                    }\n                ]\n            },\n            \"Id\": \"a2154088-2e84-45a0-bc2f-bdf24528ff72\",\n            \"Page\": 1,\n            \"Text\": \"Vac\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82492065429688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010139689780771732,\n                    \"Left\": 0.6289716362953186,\n                    \"Top\": 0.3415752649307251,\n                    \"Width\": 0.0230997446924448\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6289716362953186,\n                        \"Y\": 0.3415752649307251\n                    },\n                    {\n                        \"X\": 0.6520713567733765,\n                        \"Y\": 0.3415752649307251\n                    },\n                    {\n                        \"X\": 0.6520713567733765,\n                        \"Y\": 0.35171493887901306\n                    },\n                    {\n                        \"X\": 0.6289716362953186,\n                        \"Y\": 0.35171493887901306\n                    }\n                ]\n            },\n            \"Id\": \"cd2f7ab6-a331-468c-a4e1-67048a65a423\",\n            \"Page\": 1,\n            \"Text\": \"Hrs\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.59508514404297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009798252955079079,\n                    \"Left\": 0.8084457516670227,\n                    \"Top\": 0.34183284640312195,\n                    \"Width\": 0.00923934206366539\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8084457516670227,\n                        \"Y\": 0.34183284640312195\n                    },\n                    {\n                        \"X\": 0.8176851272583008,\n                        \"Y\": 0.34183284640312195\n                    },\n                    {\n                        \"X\": 0.8176851272583008,\n                        \"Y\": 0.3516311049461365\n                    },\n                    {\n                        \"X\": 0.8084457516670227,\n                        \"Y\": 0.3516311049461365\n                    }\n                ]\n            },\n            \"Id\": \"b44f1111-3065-4607-9821-f99aed8845e1\",\n            \"Page\": 1,\n            \"Text\": \"4\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89442443847656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009814792312681675,\n                    \"Left\": 0.9115040302276611,\n                    \"Top\": 0.34148505330085754,\n                    \"Width\": 0.00909423828125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9115040302276611,\n                        \"Y\": 0.34148505330085754\n                    },\n                    {\n                        \"X\": 0.9205982685089111,\n                        \"Y\": 0.34148505330085754\n                    },\n                    {\n                        \"X\": 0.9205982685089111,\n                        \"Y\": 0.35129985213279724\n                    },\n                    {\n                        \"X\": 0.9115040302276611,\n                        \"Y\": 0.35129985213279724\n                    }\n                ]\n            },\n            \"Id\": \"3879bc1e-b670-490d-9719-05816c5fc82b\",\n            \"Page\": 1,\n            \"Text\": \"7\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73861694335938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012161601334810257,\n                    \"Left\": 0.07009425014257431,\n                    \"Top\": 0.3558134138584137,\n                    \"Width\": 0.04909878224134445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07009425014257431,\n                        \"Y\": 0.3558134138584137\n                    },\n                    {\n                        \"X\": 0.11919303238391876,\n                        \"Y\": 0.3558134138584137\n                    },\n                    {\n                        \"X\": 0.11919303238391876,\n                        \"Y\": 0.36797499656677246\n                    },\n                    {\n                        \"X\": 0.07009425014257431,\n                        \"Y\": 0.36797499656677246\n                    }\n                ]\n            },\n            \"Id\": \"0da3d81f-5e11-44b9-80c1-dc5a7f8cf760\",\n            \"Page\": 1,\n            \"Text\": \"Holiday\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83226013183594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009791160002350807,\n                    \"Left\": 0.20153091847896576,\n                    \"Top\": 0.35591188073158264,\n                    \"Width\": 0.036526717245578766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20153091847896576,\n                        \"Y\": 0.35591188073158264\n                    },\n                    {\n                        \"X\": 0.23805762827396393,\n                        \"Y\": 0.35591188073158264\n                    },\n                    {\n                        \"X\": 0.23805762827396393,\n                        \"Y\": 0.3657030463218689\n                    },\n                    {\n                        \"X\": 0.20153091847896576,\n                        \"Y\": 0.3657030463218689\n                    }\n                ]\n            },\n            \"Id\": \"b9f81577-2d39-45fa-981b-28cc38a2cc6c\",\n            \"Page\": 1,\n            \"Text\": \"10.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73686218261719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009808564558625221,\n                    \"Left\": 0.28598493337631226,\n                    \"Top\": 0.35584694147109985,\n                    \"Width\": 0.03678273409605026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28598493337631226,\n                        \"Y\": 0.35584694147109985\n                    },\n                    {\n                        \"X\": 0.3227676749229431,\n                        \"Y\": 0.35584694147109985\n                    },\n                    {\n                        \"X\": 0.3227676749229431,\n                        \"Y\": 0.3656555116176605\n                    },\n                    {\n                        \"X\": 0.28598493337631226,\n                        \"Y\": 0.3656555116176605\n                    }\n                ]\n            },\n            \"Id\": \"acb81653-6302-43ab-9d24-18b30202f676\",\n            \"Page\": 1,\n            \"Text\": \"16.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65497589111328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00991987343877554,\n                    \"Left\": 0.37972357869148254,\n                    \"Top\": 0.35586217045783997,\n                    \"Width\": 0.04450780525803566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37972357869148254,\n                        \"Y\": 0.35586217045783997\n                    },\n                    {\n                        \"X\": 0.4242314100265503,\n                        \"Y\": 0.35586217045783997\n                    },\n                    {\n                        \"X\": 0.4242314100265503,\n                        \"Y\": 0.3657820224761963\n                    },\n                    {\n                        \"X\": 0.37972357869148254,\n                        \"Y\": 0.3657820224761963\n                    }\n                ]\n            },\n            \"Id\": \"600c2e23-10a2-4ce5-9738-10f3f6131226\",\n            \"Page\": 1,\n            \"Text\": \"160.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.69437408447266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009521137923002243,\n                    \"Left\": 0.5073003172874451,\n                    \"Top\": 0.3560676872730255,\n                    \"Width\": 0.04574401304125786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5073003172874451,\n                        \"Y\": 0.3560676872730255\n                    },\n                    {\n                        \"X\": 0.553044319152832,\n                        \"Y\": 0.3560676872730255\n                    },\n                    {\n                        \"X\": 0.553044319152832,\n                        \"Y\": 0.36558881402015686\n                    },\n                    {\n                        \"X\": 0.5073003172874451,\n                        \"Y\": 0.36558881402015686\n                    }\n                ]\n            },\n            \"Id\": \"b34d2c92-c88c-4787-a706-0a6ef05a151d\",\n            \"Page\": 1,\n            \"Text\": \"480.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63099670410156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010107719339430332,\n                    \"Left\": 0.5994206070899963,\n                    \"Top\": 0.35910433530807495,\n                    \"Width\": 0.028731873258948326\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5994206070899963,\n                        \"Y\": 0.35910433530807495\n                    },\n                    {\n                        \"X\": 0.6281524300575256,\n                        \"Y\": 0.35910433530807495\n                    },\n                    {\n                        \"X\": 0.6281524300575256,\n                        \"Y\": 0.3692120313644409\n                    },\n                    {\n                        \"X\": 0.5994206070899963,\n                        \"Y\": 0.3692120313644409\n                    }\n                ]\n            },\n            \"Id\": \"202a920a-5273-4909-942c-a4a02456ce73\",\n            \"Page\": 1,\n            \"Text\": \"Sick\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.42887878417969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009986929595470428,\n                    \"Left\": 0.6315782070159912,\n                    \"Top\": 0.3592919111251831,\n                    \"Width\": 0.02297857031226158\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6315782070159912,\n                        \"Y\": 0.3592919111251831\n                    },\n                    {\n                        \"X\": 0.6545568108558655,\n                        \"Y\": 0.3592919111251831\n                    },\n                    {\n                        \"X\": 0.6545568108558655,\n                        \"Y\": 0.36927884817123413\n                    },\n                    {\n                        \"X\": 0.6315782070159912,\n                        \"Y\": 0.36927884817123413\n                    }\n                ]\n            },\n            \"Id\": \"b24c0b35-66fd-4da4-966c-caca6a3c6913\",\n            \"Page\": 1,\n            \"Text\": \"Hrs\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82894134521484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00972005631774664,\n                    \"Left\": 0.808893084526062,\n                    \"Top\": 0.35948261618614197,\n                    \"Width\": 0.008947252295911312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.808893084526062,\n                        \"Y\": 0.35948261618614197\n                    },\n                    {\n                        \"X\": 0.8178403377532959,\n                        \"Y\": 0.35948261618614197\n                    },\n                    {\n                        \"X\": 0.8178403377532959,\n                        \"Y\": 0.3692026734352112\n                    },\n                    {\n                        \"X\": 0.808893084526062,\n                        \"Y\": 0.3692026734352112\n                    }\n                ]\n            },\n            \"Id\": \"5f531631-c558-4826-b796-32fe12e098a0\",\n            \"Page\": 1,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80908966064453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00967338029295206,\n                    \"Left\": 0.9116646647453308,\n                    \"Top\": 0.3595333695411682,\n                    \"Width\": 0.008935511112213135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9116646647453308,\n                        \"Y\": 0.3595333695411682\n                    },\n                    {\n                        \"X\": 0.920600175857544,\n                        \"Y\": 0.3595333695411682\n                    },\n                    {\n                        \"X\": 0.920600175857544,\n                        \"Y\": 0.3692067563533783\n                    },\n                    {\n                        \"X\": 0.9116646647453308,\n                        \"Y\": 0.3692067563533783\n                    }\n                ]\n            },\n            \"Id\": \"820bba7f-56d0-419a-81ed-1727e4e0259f\",\n            \"Page\": 1,\n            \"Text\": \"2\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82432556152344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009599646553397179,\n                    \"Left\": 0.15803693234920502,\n                    \"Top\": 0.3759085237979889,\n                    \"Width\": 0.04277059808373451\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15803693234920502,\n                        \"Y\": 0.3759085237979889\n                    },\n                    {\n                        \"X\": 0.20080752670764923,\n                        \"Y\": 0.3759085237979889\n                    },\n                    {\n                        \"X\": 0.20080752670764923,\n                        \"Y\": 0.3855081796646118\n                    },\n                    {\n                        \"X\": 0.15803693234920502,\n                        \"Y\": 0.3855081796646118\n                    }\n                ]\n            },\n            \"Id\": \"825ca4c0-6e76-4c9b-8178-de7ba549bd3f\",\n            \"Page\": 1,\n            \"Text\": \"Gross\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63847351074219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012077279388904572,\n                    \"Left\": 0.20483481884002686,\n                    \"Top\": 0.3757379949092865,\n                    \"Width\": 0.02659425511956215\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20483481884002686,\n                        \"Y\": 0.3757379949092865\n                    },\n                    {\n                        \"X\": 0.2314290702342987,\n                        \"Y\": 0.3757379949092865\n                    },\n                    {\n                        \"X\": 0.2314290702342987,\n                        \"Y\": 0.3878152668476105\n                    },\n                    {\n                        \"X\": 0.20483481884002686,\n                        \"Y\": 0.3878152668476105\n                    }\n                ]\n            },\n            \"Id\": \"35906af4-10c8-48f1-af62-09cec7e040ff\",\n            \"Page\": 1,\n            \"Text\": \"Pay\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90182495117188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011518517509102821,\n                    \"Left\": 0.3709953725337982,\n                    \"Top\": 0.3751891255378723,\n                    \"Width\": 0.05343217775225639\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3709953725337982,\n                        \"Y\": 0.3751891255378723\n                    },\n                    {\n                        \"X\": 0.4244275391101837,\n                        \"Y\": 0.3751891255378723\n                    },\n                    {\n                        \"X\": 0.4244275391101837,\n                        \"Y\": 0.3867076337337494\n                    },\n                    {\n                        \"X\": 0.3709953725337982,\n                        \"Y\": 0.3867076337337494\n                    }\n                ]\n            },\n            \"Id\": \"d8c31500-9bd9-4928-aa17-be810f2be276\",\n            \"Page\": 1,\n            \"Text\": \"$770.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.72306823730469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011165834963321686,\n                    \"Left\": 0.494879812002182,\n                    \"Top\": 0.3756245970726013,\n                    \"Width\": 0.05800522118806839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.494879812002182,\n                        \"Y\": 0.3756245970726013\n                    },\n                    {\n                        \"X\": 0.5528850555419922,\n                        \"Y\": 0.3756245970726013\n                    },\n                    {\n                        \"X\": 0.5528850555419922,\n                        \"Y\": 0.3867904543876648\n                    },\n                    {\n                        \"X\": 0.494879812002182,\n                        \"Y\": 0.3867904543876648\n                    }\n                ]\n            },\n            \"Id\": \"00a2fa69-4e45-4c20-8753-aa539fe8cd15\",\n            \"Page\": 1,\n            \"Text\": \"2,310.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88404846191406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010636414401233196,\n                    \"Left\": 0.07026395946741104,\n                    \"Top\": 0.41640087962150574,\n                    \"Width\": 0.08768026530742645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07026395946741104,\n                        \"Y\": 0.41640087962150574\n                    },\n                    {\n                        \"X\": 0.1579442173242569,\n                        \"Y\": 0.41640087962150574\n                    },\n                    {\n                        \"X\": 0.1579442173242569,\n                        \"Y\": 0.4270372688770294\n                    },\n                    {\n                        \"X\": 0.07026395946741104,\n                        \"Y\": 0.4270372688770294\n                    }\n                ]\n            },\n            \"Id\": \"d99a86c5-4855-4888-9780-2ceb99e686bf\",\n            \"Page\": 1,\n            \"Text\": \"Deductions\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82674407958984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011975312605500221,\n                    \"Left\": 0.17635150253772736,\n                    \"Top\": 0.4165501594543457,\n                    \"Width\": 0.06545073539018631\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17635150253772736,\n                        \"Y\": 0.4165501594543457\n                    },\n                    {\n                        \"X\": 0.24180224537849426,\n                        \"Y\": 0.4165501594543457\n                    },\n                    {\n                        \"X\": 0.24180224537849426,\n                        \"Y\": 0.42852547764778137\n                    },\n                    {\n                        \"X\": 0.17635150253772736,\n                        \"Y\": 0.42852547764778137\n                    }\n                ]\n            },\n            \"Id\": \"f2d37b6e-36d8-49cf-8c67-47758d40296a\",\n            \"Page\": 1,\n            \"Text\": \"Statutory\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97618103027344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01024518720805645,\n                    \"Left\": 0.3518538177013397,\n                    \"Top\": 0.4164825677871704,\n                    \"Width\": 0.02722073905169964\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3518538177013397,\n                        \"Y\": 0.4164825677871704\n                    },\n                    {\n                        \"X\": 0.3790745735168457,\n                        \"Y\": 0.4164825677871704\n                    },\n                    {\n                        \"X\": 0.3790745735168457,\n                        \"Y\": 0.4267277419567108\n                    },\n                    {\n                        \"X\": 0.3518538177013397,\n                        \"Y\": 0.4267277419567108\n                    }\n                ]\n            },\n            \"Id\": \"3e7c6e2d-4a5b-42de-a94a-90b17160c909\",\n            \"Page\": 1,\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95499420166016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012049737386405468,\n                    \"Left\": 0.38222405314445496,\n                    \"Top\": 0.4164860248565674,\n                    \"Width\": 0.0458751805126667\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38222405314445496,\n                        \"Y\": 0.4164860248565674\n                    },\n                    {\n                        \"X\": 0.42809924483299255,\n                        \"Y\": 0.4164860248565674\n                    },\n                    {\n                        \"X\": 0.42809924483299255,\n                        \"Y\": 0.4285357594490051\n                    },\n                    {\n                        \"X\": 0.38222405314445496,\n                        \"Y\": 0.4285357594490051\n                    }\n                ]\n            },\n            \"Id\": \"37c6b17f-0b03-4b86-ba4a-5cb1b96aaa84\",\n            \"Page\": 1,\n            \"Text\": \"period\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.78213500976562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012537257745862007,\n                    \"Left\": 0.5998026728630066,\n                    \"Top\": 0.41373392939567566,\n                    \"Width\": 0.07537716627120972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5998026728630066,\n                        \"Y\": 0.41373392939567566\n                    },\n                    {\n                        \"X\": 0.6751798391342163,\n                        \"Y\": 0.41373392939567566\n                    },\n                    {\n                        \"X\": 0.6751798391342163,\n                        \"Y\": 0.4262712001800537\n                    },\n                    {\n                        \"X\": 0.5998026728630066,\n                        \"Y\": 0.4262712001800537\n                    }\n                ]\n            },\n            \"Id\": \"24e76f70-a77f-457c-92d2-dccec6cc965c\",\n            \"Page\": 1,\n            \"Text\": \"Important\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76309967041016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010753467679023743,\n                    \"Left\": 0.6791103482246399,\n                    \"Top\": 0.4135952889919281,\n                    \"Width\": 0.04576503112912178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6791103482246399,\n                        \"Y\": 0.4135952889919281\n                    },\n                    {\n                        \"X\": 0.7248753905296326,\n                        \"Y\": 0.4135952889919281\n                    },\n                    {\n                        \"X\": 0.7248753905296326,\n                        \"Y\": 0.42434877157211304\n                    },\n                    {\n                        \"X\": 0.6791103482246399,\n                        \"Y\": 0.42434877157211304\n                    }\n                ]\n            },\n            \"Id\": \"0314211c-cc58-452c-b540-cab12ab6d601\",\n            \"Page\": 1,\n            \"Text\": \"Notes\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90157318115234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010070247575640678,\n                    \"Left\": 0.17678429186344147,\n                    \"Top\": 0.43966740369796753,\n                    \"Width\": 0.04979788884520531\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17678429186344147,\n                        \"Y\": 0.43966740369796753\n                    },\n                    {\n                        \"X\": 0.22658216953277588,\n                        \"Y\": 0.43966740369796753\n                    },\n                    {\n                        \"X\": 0.22658216953277588,\n                        \"Y\": 0.44973763823509216\n                    },\n                    {\n                        \"X\": 0.17678429186344147,\n                        \"Y\": 0.44973763823509216\n                    }\n                ]\n            },\n            \"Id\": \"76503ed0-6906-40be-bc9e-76153213d013\",\n            \"Page\": 1,\n            \"Text\": \"Federal\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86793518066406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009566879831254482,\n                    \"Left\": 0.23055697977542877,\n                    \"Top\": 0.44002023339271545,\n                    \"Width\": 0.04829198494553566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23055697977542877,\n                        \"Y\": 0.44002023339271545\n                    },\n                    {\n                        \"X\": 0.2788489758968353,\n                        \"Y\": 0.44002023339271545\n                    },\n                    {\n                        \"X\": 0.2788489758968353,\n                        \"Y\": 0.4495871067047119\n                    },\n                    {\n                        \"X\": 0.23055697977542877,\n                        \"Y\": 0.4495871067047119\n                    }\n                ]\n            },\n            \"Id\": \"1ed10093-030a-473c-90f5-b9a9301f49d0\",\n            \"Page\": 1,\n            \"Text\": \"Income\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94965362548828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009976549074053764,\n                    \"Left\": 0.2823468744754791,\n                    \"Top\": 0.4397125840187073,\n                    \"Width\": 0.025303687900304794\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2823468744754791,\n                        \"Y\": 0.4397125840187073\n                    },\n                    {\n                        \"X\": 0.3076505661010742,\n                        \"Y\": 0.4397125840187073\n                    },\n                    {\n                        \"X\": 0.3076505661010742,\n                        \"Y\": 0.4496891498565674\n                    },\n                    {\n                        \"X\": 0.2823468744754791,\n                        \"Y\": 0.4496891498565674\n                    }\n                ]\n            },\n            \"Id\": \"fb940d5e-cdb2-4de3-92c5-a468b02161fc\",\n            \"Page\": 1,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55653381347656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009967898949980736,\n                    \"Left\": 0.3900908827781677,\n                    \"Top\": 0.43976685404777527,\n                    \"Width\": 0.03771708160638809\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3900908827781677,\n                        \"Y\": 0.43976685404777527\n                    },\n                    {\n                        \"X\": 0.4278079569339752,\n                        \"Y\": 0.43976685404777527\n                    },\n                    {\n                        \"X\": 0.4278079569339752,\n                        \"Y\": 0.44973474740982056\n                    },\n                    {\n                        \"X\": 0.3900908827781677,\n                        \"Y\": 0.44973474740982056\n                    }\n                ]\n            },\n            \"Id\": \"1016cf73-8a2d-4854-a6df-719f5c9c0a5c\",\n            \"Page\": 1,\n            \"Text\": \"40.60\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.27571105957031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011214863508939743,\n                    \"Left\": 0.4953158497810364,\n                    \"Top\": 0.4397408068180084,\n                    \"Width\": 0.057847391813993454\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4953158497810364,\n                        \"Y\": 0.4397408068180084\n                    },\n                    {\n                        \"X\": 0.5531632304191589,\n                        \"Y\": 0.4397408068180084\n                    },\n                    {\n                        \"X\": 0.5531632304191589,\n                        \"Y\": 0.45095565915107727\n                    },\n                    {\n                        \"X\": 0.4953158497810364,\n                        \"Y\": 0.45095565915107727\n                    }\n                ]\n            },\n            \"Id\": \"42eaf40f-2e89-4f5a-81cf-f3656d0526a7\",\n            \"Page\": 1,\n            \"Text\": \"2,111.20\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75984191894531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009004553779959679,\n                    \"Left\": 0.5990983247756958,\n                    \"Top\": 0.4355793595314026,\n                    \"Width\": 0.06641010195016861\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5990983247756958,\n                        \"Y\": 0.4355793595314026\n                    },\n                    {\n                        \"X\": 0.6655084490776062,\n                        \"Y\": 0.4355793595314026\n                    },\n                    {\n                        \"X\": 0.6655084490776062,\n                        \"Y\": 0.444583922624588\n                    },\n                    {\n                        \"X\": 0.5990983247756958,\n                        \"Y\": 0.444583922624588\n                    }\n                ]\n            },\n            \"Id\": \"7978c293-b652-4c83-b6b9-b9cfdc730393\",\n            \"Page\": 1,\n            \"Text\": \"COMPANY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85631561279297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0089411661028862,\n                    \"Left\": 0.6686426401138306,\n                    \"Top\": 0.4357278048992157,\n                    \"Width\": 0.021767951548099518\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6686426401138306,\n                        \"Y\": 0.4357278048992157\n                    },\n                    {\n                        \"X\": 0.6904106140136719,\n                        \"Y\": 0.4357278048992157\n                    },\n                    {\n                        \"X\": 0.6904106140136719,\n                        \"Y\": 0.4446689784526825\n                    },\n                    {\n                        \"X\": 0.6686426401138306,\n                        \"Y\": 0.4446689784526825\n                    }\n                ]\n            },\n            \"Id\": \"e1ac19a0-83d2-418f-bd84-4867636b4ecf\",\n            \"Page\": 1,\n            \"Text\": \"PH:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.89088439941406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010954426601529121,\n                    \"Left\": 0.6938355565071106,\n                    \"Top\": 0.4355508089065552,\n                    \"Width\": 0.08620350807905197\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6938355565071106,\n                        \"Y\": 0.4355508089065552\n                    },\n                    {\n                        \"X\": 0.7800390720367432,\n                        \"Y\": 0.4355508089065552\n                    },\n                    {\n                        \"X\": 0.7800390720367432,\n                        \"Y\": 0.44650524854660034\n                    },\n                    {\n                        \"X\": 0.6938355565071106,\n                        \"Y\": 0.44650524854660034\n                    }\n                ]\n            },\n            \"Id\": \"5f9ed683-7158-4889-91c1-e0f8b16d91c1\",\n            \"Page\": 1,\n            \"Text\": \"(888)555-0101\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57750701904297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00880598183721304,\n                    \"Left\": 0.5993844866752625,\n                    \"Top\": 0.45380398631095886,\n                    \"Width\": 0.038125865161418915\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993844866752625,\n                        \"Y\": 0.45380398631095886\n                    },\n                    {\n                        \"X\": 0.637510359287262,\n                        \"Y\": 0.45380398631095886\n                    },\n                    {\n                        \"X\": 0.637510359287262,\n                        \"Y\": 0.4626099765300751\n                    },\n                    {\n                        \"X\": 0.5993844866752625,\n                        \"Y\": 0.4626099765300751\n                    }\n                ]\n            },\n            \"Id\": \"1a960ca1-11b5-4ba0-bb70-f3c4b0b0d7b6\",\n            \"Page\": 1,\n            \"Text\": \"BASIS\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97345733642578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008677718229591846,\n                    \"Left\": 0.6409681439399719,\n                    \"Top\": 0.45386046171188354,\n                    \"Width\": 0.018610794097185135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6409681439399719,\n                        \"Y\": 0.45386046171188354\n                    },\n                    {\n                        \"X\": 0.6595789194107056,\n                        \"Y\": 0.45386046171188354\n                    },\n                    {\n                        \"X\": 0.6595789194107056,\n                        \"Y\": 0.4625381827354431\n                    },\n                    {\n                        \"X\": 0.6409681439399719,\n                        \"Y\": 0.4625381827354431\n                    }\n                ]\n            },\n            \"Id\": \"125dff7f-b5ac-4285-93eb-c6e3ea14befa\",\n            \"Page\": 1,\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48345184326172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008927222341299057,\n                    \"Left\": 0.6627917289733887,\n                    \"Top\": 0.4538900852203369,\n                    \"Width\": 0.030244892463088036\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6627917289733887,\n                        \"Y\": 0.4538900852203369\n                    },\n                    {\n                        \"X\": 0.6930366158485413,\n                        \"Y\": 0.4538900852203369\n                    },\n                    {\n                        \"X\": 0.6930366158485413,\n                        \"Y\": 0.46281731128692627\n                    },\n                    {\n                        \"X\": 0.6627917289733887,\n                        \"Y\": 0.46281731128692627\n                    }\n                ]\n            },\n            \"Id\": \"9af6c5df-98f0-410c-9e24-47b14ae4b029\",\n            \"Page\": 1,\n            \"Text\": \"PAY:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92337036132812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008834181353449821,\n                    \"Left\": 0.6965624690055847,\n                    \"Top\": 0.4538254737854004,\n                    \"Width\": 0.05220594257116318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6965624690055847,\n                        \"Y\": 0.4538254737854004\n                    },\n                    {\n                        \"X\": 0.7487683892250061,\n                        \"Y\": 0.4538254737854004\n                    },\n                    {\n                        \"X\": 0.7487683892250061,\n                        \"Y\": 0.46265965700149536\n                    },\n                    {\n                        \"X\": 0.6965624690055847,\n                        \"Y\": 0.46265965700149536\n                    }\n                ]\n            },\n            \"Id\": \"a738fc8b-d342-4bdd-9e15-a8978dfaae49\",\n            \"Page\": 1,\n            \"Text\": \"SALARY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79149627685547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010049867443740368,\n                    \"Left\": 0.1762884259223938,\n                    \"Top\": 0.4589065909385681,\n                    \"Width\": 0.04054222255945206\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1762884259223938,\n                        \"Y\": 0.4589065909385681\n                    },\n                    {\n                        \"X\": 0.21683064103126526,\n                        \"Y\": 0.4589065909385681\n                    },\n                    {\n                        \"X\": 0.21683064103126526,\n                        \"Y\": 0.46895647048950195\n                    },\n                    {\n                        \"X\": 0.1762884259223938,\n                        \"Y\": 0.46895647048950195\n                    }\n                ]\n            },\n            \"Id\": \"29ca1728-27c2-4b96-a5c1-d443b8032262\",\n            \"Page\": 1,\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97862243652344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012166029773652554,\n                    \"Left\": 0.22019362449645996,\n                    \"Top\": 0.4588674008846283,\n                    \"Width\": 0.0540635921061039\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22019362449645996,\n                        \"Y\": 0.4588674008846283\n                    },\n                    {\n                        \"X\": 0.27425721287727356,\n                        \"Y\": 0.4588674008846283\n                    },\n                    {\n                        \"X\": 0.27425721287727356,\n                        \"Y\": 0.4710334241390228\n                    },\n                    {\n                        \"X\": 0.22019362449645996,\n                        \"Y\": 0.4710334241390228\n                    }\n                ]\n            },\n            \"Id\": \"c2409de5-9efe-4771-9365-279e924a2ca1\",\n            \"Page\": 1,\n            \"Text\": \"Security\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92045593261719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010028588585555553,\n                    \"Left\": 0.27727267146110535,\n                    \"Top\": 0.4589439034461975,\n                    \"Width\": 0.025886457413434982\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27727267146110535,\n                        \"Y\": 0.4589439034461975\n                    },\n                    {\n                        \"X\": 0.3031591475009918,\n                        \"Y\": 0.4589439034461975\n                    },\n                    {\n                        \"X\": 0.3031591475009918,\n                        \"Y\": 0.46897247433662415\n                    },\n                    {\n                        \"X\": 0.27727267146110535,\n                        \"Y\": 0.46897247433662415\n                    }\n                ]\n            },\n            \"Id\": \"3fb57e43-6413-4666-89db-dc9eadee5406\",\n            \"Page\": 1,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.51765441894531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01005315501242876,\n                    \"Left\": 0.3901738226413727,\n                    \"Top\": 0.45896658301353455,\n                    \"Width\": 0.037475720047950745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3901738226413727,\n                        \"Y\": 0.45896658301353455\n                    },\n                    {\n                        \"X\": 0.4276495575904846,\n                        \"Y\": 0.45896658301353455\n                    },\n                    {\n                        \"X\": 0.4276495575904846,\n                        \"Y\": 0.46901974081993103\n                    },\n                    {\n                        \"X\": 0.3901738226413727,\n                        \"Y\": 0.46901974081993103\n                    }\n                ]\n            },\n            \"Id\": \"b464b66d-83f8-4e52-9a4b-4ff28f6b7cab\",\n            \"Page\": 1,\n            \"Text\": \"28.05\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5104751586914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011237388476729393,\n                    \"Left\": 0.4956342279911041,\n                    \"Top\": 0.45890936255455017,\n                    \"Width\": 0.05709032341837883\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4956342279911041,\n                        \"Y\": 0.45890936255455017\n                    },\n                    {\n                        \"X\": 0.5527245402336121,\n                        \"Y\": 0.45890936255455017\n                    },\n                    {\n                        \"X\": 0.5527245402336121,\n                        \"Y\": 0.4701467454433441\n                    },\n                    {\n                        \"X\": 0.4956342279911041,\n                        \"Y\": 0.4701467454433441\n                    }\n                ]\n            },\n            \"Id\": \"28ee3fd5-8a9f-4849-994b-3b4819e2d0e8\",\n            \"Page\": 1,\n            \"Text\": \"1,458.60\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6963119506836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008716020733118057,\n                    \"Left\": 0.5993247032165527,\n                    \"Top\": 0.46875661611557007,\n                    \"Width\": 0.07287010550498962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5993247032165527,\n                        \"Y\": 0.46875661611557007\n                    },\n                    {\n                        \"X\": 0.67219477891922,\n                        \"Y\": 0.46875661611557007\n                    },\n                    {\n                        \"X\": 0.67219477891922,\n                        \"Y\": 0.4774726331233978\n                    },\n                    {\n                        \"X\": 0.5993247032165527,\n                        \"Y\": 0.4774726331233978\n                    }\n                ]\n            },\n            \"Id\": \"c17a7912-bdfd-47bd-acc1-375aae3e5a32\",\n            \"Page\": 1,\n            \"Text\": \"EFFECTIVE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93478393554688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008815843611955643,\n                    \"Left\": 0.6742597222328186,\n                    \"Top\": 0.46864044666290283,\n                    \"Width\": 0.030965842306613922\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6742597222328186,\n                        \"Y\": 0.46864044666290283\n                    },\n                    {\n                        \"X\": 0.7052255868911743,\n                        \"Y\": 0.46864044666290283\n                    },\n                    {\n                        \"X\": 0.7052255868911743,\n                        \"Y\": 0.47745630145072937\n                    },\n                    {\n                        \"X\": 0.6742597222328186,\n                        \"Y\": 0.47745630145072937\n                    }\n                ]\n            },\n            \"Id\": \"3909d5d4-d0a8-4a4b-8188-c4b822ad9113\",\n            \"Page\": 1,\n            \"Text\": \"THIS\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66484069824219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008723702281713486,\n                    \"Left\": 0.7084018588066101,\n                    \"Top\": 0.4686744809150696,\n                    \"Width\": 0.026423383504152298\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7084018588066101,\n                        \"Y\": 0.4686744809150696\n                    },\n                    {\n                        \"X\": 0.7348252534866333,\n                        \"Y\": 0.4686744809150696\n                    },\n                    {\n                        \"X\": 0.7348252534866333,\n                        \"Y\": 0.477398157119751\n                    },\n                    {\n                        \"X\": 0.7084018588066101,\n                        \"Y\": 0.477398157119751\n                    }\n                ]\n            },\n            \"Id\": \"0eea63f9-0b4b-4ed2-acb4-e9341a1e4dd8\",\n            \"Page\": 1,\n            \"Text\": \"PAY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85557556152344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00877304282039404,\n                    \"Left\": 0.7373943328857422,\n                    \"Top\": 0.4686259627342224,\n                    \"Width\": 0.05080043151974678\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7373943328857422,\n                        \"Y\": 0.4686259627342224\n                    },\n                    {\n                        \"X\": 0.7881947159767151,\n                        \"Y\": 0.4686259627342224\n                    },\n                    {\n                        \"X\": 0.7881947159767151,\n                        \"Y\": 0.47739899158477783\n                    },\n                    {\n                        \"X\": 0.7373943328857422,\n                        \"Y\": 0.47739899158477783\n                    }\n                ]\n            },\n            \"Id\": \"3a9181d8-81e7-4594-a02d-4dc986bd6f93\",\n            \"Page\": 1,\n            \"Text\": \"PERIOD\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89863586425781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00863014254719019,\n                    \"Left\": 0.7909467220306396,\n                    \"Top\": 0.4685954451560974,\n                    \"Width\": 0.03899402543902397\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7909467220306396,\n                        \"Y\": 0.4685954451560974\n                    },\n                    {\n                        \"X\": 0.8299407362937927,\n                        \"Y\": 0.4685954451560974\n                    },\n                    {\n                        \"X\": 0.8299407362937927,\n                        \"Y\": 0.47722557187080383\n                    },\n                    {\n                        \"X\": 0.7909467220306396,\n                        \"Y\": 0.47722557187080383\n                    }\n                ]\n            },\n            \"Id\": \"b1344d96-8585-4e90-9dd8-b8afefc63cf8\",\n            \"Page\": 1,\n            \"Text\": \"YOUR\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.23342895507812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008598552085459232,\n                    \"Left\": 0.8331117033958435,\n                    \"Top\": 0.46871086955070496,\n                    \"Width\": 0.0633944645524025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8331117033958435,\n                        \"Y\": 0.46871086955070496\n                    },\n                    {\n                        \"X\": 0.896506130695343,\n                        \"Y\": 0.46871086955070496\n                    },\n                    {\n                        \"X\": 0.896506130695343,\n                        \"Y\": 0.4773094058036804\n                    },\n                    {\n                        \"X\": 0.8331117033958435,\n                        \"Y\": 0.4773094058036804\n                    }\n                ]\n            },\n            \"Id\": \"b378862b-22c3-46fc-b2c4-073018be4161\",\n            \"Page\": 1,\n            \"Text\": \"REGULAR\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84933471679688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009808529168367386,\n                    \"Left\": 0.176249161362648,\n                    \"Top\": 0.47717994451522827,\n                    \"Width\": 0.06155567988753319\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.176249161362648,\n                        \"Y\": 0.47717994451522827\n                    },\n                    {\n                        \"X\": 0.2378048449754715,\n                        \"Y\": 0.47717994451522827\n                    },\n                    {\n                        \"X\": 0.2378048449754715,\n                        \"Y\": 0.48698848485946655\n                    },\n                    {\n                        \"X\": 0.176249161362648,\n                        \"Y\": 0.48698848485946655\n                    }\n                ]\n            },\n            \"Id\": \"13b9f31c-7924-4b92-b042-80e71854011d\",\n            \"Page\": 1,\n            \"Text\": \"Medicare\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93376159667969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009996306151151657,\n                    \"Left\": 0.24050311744213104,\n                    \"Top\": 0.4771156311035156,\n                    \"Width\": 0.025700751692056656\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24050311744213104,\n                        \"Y\": 0.4771156311035156\n                    },\n                    {\n                        \"X\": 0.2662038803100586,\n                        \"Y\": 0.4771156311035156\n                    },\n                    {\n                        \"X\": 0.2662038803100586,\n                        \"Y\": 0.4871119260787964\n                    },\n                    {\n                        \"X\": 0.24050311744213104,\n                        \"Y\": 0.4871119260787964\n                    }\n                ]\n            },\n            \"Id\": \"96461403-c4ab-424b-a931-be29cfcc576e\",\n            \"Page\": 1,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8451919555664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009982362389564514,\n                    \"Left\": 0.39136844873428345,\n                    \"Top\": 0.4771563708782196,\n                    \"Width\": 0.036626607179641724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39136844873428345,\n                        \"Y\": 0.4771563708782196\n                    },\n                    {\n                        \"X\": 0.42799505591392517,\n                        \"Y\": 0.4771563708782196\n                    },\n                    {\n                        \"X\": 0.42799505591392517,\n                        \"Y\": 0.4871387481689453\n                    },\n                    {\n                        \"X\": 0.39136844873428345,\n                        \"Y\": 0.4871387481689453\n                    }\n                ]\n            },\n            \"Id\": \"199218b0-63a3-4b48-892f-b8db3b8e81cd\",\n            \"Page\": 1,\n            \"Text\": \"12.56\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54993438720703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010321550071239471,\n                    \"Left\": 0.5070061683654785,\n                    \"Top\": 0.4772336184978485,\n                    \"Width\": 0.045646678656339645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5070061683654785,\n                        \"Y\": 0.4772336184978485\n                    },\n                    {\n                        \"X\": 0.5526528358459473,\n                        \"Y\": 0.4772336184978485\n                    },\n                    {\n                        \"X\": 0.5526528358459473,\n                        \"Y\": 0.4875551462173462\n                    },\n                    {\n                        \"X\": 0.5070061683654785,\n                        \"Y\": 0.4875551462173462\n                    }\n                ]\n            },\n            \"Id\": \"bf10ce2d-ad59-4ab8-9899-033096109348\",\n            \"Page\": 1,\n            \"Text\": \"682.36\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93603515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008712665177881718,\n                    \"Left\": 0.5994051694869995,\n                    \"Top\": 0.4799448847770691,\n                    \"Width\": 0.054670337587594986\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5994051694869995,\n                        \"Y\": 0.4799448847770691\n                    },\n                    {\n                        \"X\": 0.6540755033493042,\n                        \"Y\": 0.4799448847770691\n                    },\n                    {\n                        \"X\": 0.6540755033493042,\n                        \"Y\": 0.48865756392478943\n                    },\n                    {\n                        \"X\": 0.5994051694869995,\n                        \"Y\": 0.48865756392478943\n                    }\n                ]\n            },\n            \"Id\": \"6e542677-290a-47e8-a3ca-c04133c97b9d\",\n            \"Page\": 1,\n            \"Text\": \"HOURLY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80642700195312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009048877283930779,\n                    \"Left\": 0.6570464968681335,\n                    \"Top\": 0.4799374043941498,\n                    \"Width\": 0.03568195179104805\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6570464968681335,\n                        \"Y\": 0.4799374043941498\n                    },\n                    {\n                        \"X\": 0.6927284598350525,\n                        \"Y\": 0.4799374043941498\n                    },\n                    {\n                        \"X\": 0.6927284598350525,\n                        \"Y\": 0.4889862537384033\n                    },\n                    {\n                        \"X\": 0.6570464968681335,\n                        \"Y\": 0.4889862537384033\n                    }\n                ]\n            },\n            \"Id\": \"f915a3a9-a1a6-4f71-be23-42d0b8799f62\",\n            \"Page\": 1,\n            \"Text\": \"RATE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85107421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008961995132267475,\n                    \"Left\": 0.6955918073654175,\n                    \"Top\": 0.4798673391342163,\n                    \"Width\": 0.027489570900797844\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6955918073654175,\n                        \"Y\": 0.4798673391342163\n                    },\n                    {\n                        \"X\": 0.7230814099311829,\n                        \"Y\": 0.4798673391342163\n                    },\n                    {\n                        \"X\": 0.7230814099311829,\n                        \"Y\": 0.4888293147087097\n                    },\n                    {\n                        \"X\": 0.6955918073654175,\n                        \"Y\": 0.4888293147087097\n                    }\n                ]\n            },\n            \"Id\": \"25518ef4-18e1-41a5-af79-4f84a8059c4b\",\n            \"Page\": 1,\n            \"Text\": \"HAS\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86287689208984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00868252757936716,\n                    \"Left\": 0.7262709736824036,\n                    \"Top\": 0.4800238013267517,\n                    \"Width\": 0.03596463054418564\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7262709736824036,\n                        \"Y\": 0.4800238013267517\n                    },\n                    {\n                        \"X\": 0.7622356414794922,\n                        \"Y\": 0.4800238013267517\n                    },\n                    {\n                        \"X\": 0.7622356414794922,\n                        \"Y\": 0.4887063205242157\n                    },\n                    {\n                        \"X\": 0.7262709736824036,\n                        \"Y\": 0.4887063205242157\n                    }\n                ]\n            },\n            \"Id\": \"1f0ac676-e3a4-42ad-a58c-308e772a4214\",\n            \"Page\": 1,\n            \"Text\": \"BEEN\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87810516357422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00866138655692339,\n                    \"Left\": 0.7647765278816223,\n                    \"Top\": 0.48006731271743774,\n                    \"Width\": 0.0662262812256813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7647765278816223,\n                        \"Y\": 0.48006731271743774\n                    },\n                    {\n                        \"X\": 0.8310027718544006,\n                        \"Y\": 0.48006731271743774\n                    },\n                    {\n                        \"X\": 0.8310027718544006,\n                        \"Y\": 0.48872870206832886\n                    },\n                    {\n                        \"X\": 0.7647765278816223,\n                        \"Y\": 0.48872870206832886\n                    }\n                ]\n            },\n            \"Id\": \"12522c6a-1809-4e2b-ac66-1012e648f719\",\n            \"Page\": 1,\n            \"Text\": \"CHANGED\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82494354248047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00852751825004816,\n                    \"Left\": 0.8342941999435425,\n                    \"Top\": 0.48016276955604553,\n                    \"Width\": 0.0391535609960556\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8342941999435425,\n                        \"Y\": 0.48016276955604553\n                    },\n                    {\n                        \"X\": 0.8734477758407593,\n                        \"Y\": 0.48016276955604553\n                    },\n                    {\n                        \"X\": 0.8734477758407593,\n                        \"Y\": 0.4886902868747711\n                    },\n                    {\n                        \"X\": 0.8342941999435425,\n                        \"Y\": 0.4886902868747711\n                    }\n                ]\n            },\n            \"Id\": \"8368297e-b098-4980-ae47-48c4980858bd\",\n            \"Page\": 1,\n            \"Text\": \"FROM\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87430572509766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009449204429984093,\n                    \"Left\": 0.8764384984970093,\n                    \"Top\": 0.4799613058567047,\n                    \"Width\": 0.03367500379681587\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8764384984970093,\n                        \"Y\": 0.4799613058567047\n                    },\n                    {\n                        \"X\": 0.910113513469696,\n                        \"Y\": 0.4799613058567047\n                    },\n                    {\n                        \"X\": 0.910113513469696,\n                        \"Y\": 0.48941048979759216\n                    },\n                    {\n                        \"X\": 0.8764384984970093,\n                        \"Y\": 0.48941048979759216\n                    }\n                ]\n            },\n            \"Id\": \"4d83f9de-8221-4f1a-ab59-ad32848c97be\",\n            \"Page\": 1,\n            \"Text\": \"$8.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91157531738281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009870810434222221,\n                    \"Left\": 0.17629417777061462,\n                    \"Top\": 0.4948066473007202,\n                    \"Width\": 0.03484112396836281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17629417777061462,\n                        \"Y\": 0.4948066473007202\n                    },\n                    {\n                        \"X\": 0.21113529801368713,\n                        \"Y\": 0.4948066473007202\n                    },\n                    {\n                        \"X\": 0.21113529801368713,\n                        \"Y\": 0.5046774744987488\n                    },\n                    {\n                        \"X\": 0.17629417777061462,\n                        \"Y\": 0.5046774744987488\n                    }\n                ]\n            },\n            \"Id\": \"0b705307-b12e-4c97-8418-95977bbf4ea2\",\n            \"Page\": 1,\n            \"Text\": \"State\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85287475585938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009820743463933468,\n                    \"Left\": 0.21478818356990814,\n                    \"Top\": 0.49484002590179443,\n                    \"Width\": 0.04859449341893196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21478818356990814,\n                        \"Y\": 0.49484002590179443\n                    },\n                    {\n                        \"X\": 0.2633826732635498,\n                        \"Y\": 0.49484002590179443\n                    },\n                    {\n                        \"X\": 0.2633826732635498,\n                        \"Y\": 0.5046607851982117\n                    },\n                    {\n                        \"X\": 0.21478818356990814,\n                        \"Y\": 0.5046607851982117\n                    }\n                ]\n            },\n            \"Id\": \"d8f51711-259e-4c6a-b4a5-370921a98787\",\n            \"Page\": 1,\n            \"Text\": \"Income\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92335510253906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010035369545221329,\n                    \"Left\": 0.2665724754333496,\n                    \"Top\": 0.49470582604408264,\n                    \"Width\": 0.025440232828259468\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2665724754333496,\n                        \"Y\": 0.49470582604408264\n                    },\n                    {\n                        \"X\": 0.2920127213001251,\n                        \"Y\": 0.49470582604408264\n                    },\n                    {\n                        \"X\": 0.2920127213001251,\n                        \"Y\": 0.5047411918640137\n                    },\n                    {\n                        \"X\": 0.2665724754333496,\n                        \"Y\": 0.5047411918640137\n                    }\n                ]\n            },\n            \"Id\": \"4557029a-df44-42e4-9e78-6276bfe5dbfa\",\n            \"Page\": 1,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68650817871094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010006928816437721,\n                    \"Left\": 0.3985583484172821,\n                    \"Top\": 0.49470439553260803,\n                    \"Width\": 0.0291129183024168\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3985583484172821,\n                        \"Y\": 0.49470439553260803\n                    },\n                    {\n                        \"X\": 0.42767128348350525,\n                        \"Y\": 0.49470439553260803\n                    },\n                    {\n                        \"X\": 0.42767128348350525,\n                        \"Y\": 0.5047113299369812\n                    },\n                    {\n                        \"X\": 0.3985583484172821,\n                        \"Y\": 0.5047113299369812\n                    }\n                ]\n            },\n            \"Id\": \"9cc757bf-058d-4470-b94b-c3d676c68f43\",\n            \"Page\": 1,\n            \"Text\": \"8.53\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.23080444335938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009942537173628807,\n                    \"Left\": 0.5073931217193604,\n                    \"Top\": 0.4947883188724518,\n                    \"Width\": 0.045383986085653305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5073931217193604,\n                        \"Y\": 0.4947883188724518\n                    },\n                    {\n                        \"X\": 0.552777111530304,\n                        \"Y\": 0.4947883188724518\n                    },\n                    {\n                        \"X\": 0.552777111530304,\n                        \"Y\": 0.5047308206558228\n                    },\n                    {\n                        \"X\": 0.5073931217193604,\n                        \"Y\": 0.5047308206558228\n                    }\n                ]\n            },\n            \"Id\": \"f6015e68-4137-42a2-8f67-a76232e9ca0f\",\n            \"Page\": 1,\n            \"Text\": \"308.88\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87770080566406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008738995529711246,\n                    \"Left\": 0.599082887172699,\n                    \"Top\": 0.4917832314968109,\n                    \"Width\": 0.019173597916960716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.599082887172699,\n                        \"Y\": 0.4917832314968109\n                    },\n                    {\n                        \"X\": 0.6182565093040466,\n                        \"Y\": 0.4917832314968109\n                    },\n                    {\n                        \"X\": 0.6182565093040466,\n                        \"Y\": 0.5005221962928772\n                    },\n                    {\n                        \"X\": 0.599082887172699,\n                        \"Y\": 0.5005221962928772\n                    }\n                ]\n            },\n            \"Id\": \"334c3836-3271-4221-a742-77b61cfe99cf\",\n            \"Page\": 1,\n            \"Text\": \"TO\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84819030761719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009302878752350807,\n                    \"Left\": 0.6214768290519714,\n                    \"Top\": 0.4916762709617615,\n                    \"Width\": 0.0401700958609581\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6214768290519714,\n                        \"Y\": 0.4916762709617615\n                    },\n                    {\n                        \"X\": 0.6616469621658325,\n                        \"Y\": 0.4916762709617615\n                    },\n                    {\n                        \"X\": 0.6616469621658325,\n                        \"Y\": 0.5009791851043701\n                    },\n                    {\n                        \"X\": 0.6214768290519714,\n                        \"Y\": 0.5009791851043701\n                    }\n                ]\n            },\n            \"Id\": \"68987de0-4d46-467f-a9c4-13bd818d5081\",\n            \"Page\": 1,\n            \"Text\": \"$10.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83935546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008891099132597446,\n                    \"Left\": 0.6647090911865234,\n                    \"Top\": 0.4918496012687683,\n                    \"Width\": 0.027441397309303284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6647090911865234,\n                        \"Y\": 0.4918496012687683\n                    },\n                    {\n                        \"X\": 0.6921504735946655,\n                        \"Y\": 0.4918496012687683\n                    },\n                    {\n                        \"X\": 0.6921504735946655,\n                        \"Y\": 0.5007407069206238\n                    },\n                    {\n                        \"X\": 0.6647090911865234,\n                        \"Y\": 0.5007407069206238\n                    }\n                ]\n            },\n            \"Id\": \"ed5fbd85-0b1d-45d4-a21c-91bd1ffd95f0\",\n            \"Page\": 1,\n            \"Text\": \"PER\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71895599365234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008718062192201614,\n                    \"Left\": 0.6955254673957825,\n                    \"Top\": 0.49190062284469604,\n                    \"Width\": 0.041724611073732376\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6955254673957825,\n                        \"Y\": 0.49190062284469604\n                    },\n                    {\n                        \"X\": 0.7372500896453857,\n                        \"Y\": 0.49190062284469604\n                    },\n                    {\n                        \"X\": 0.7372500896453857,\n                        \"Y\": 0.5006186962127686\n                    },\n                    {\n                        \"X\": 0.6955254673957825,\n                        \"Y\": 0.5006186962127686\n                    }\n                ]\n            },\n            \"Id\": \"fec9b3cc-42c5-4036-98af-5ffd499c0df1\",\n            \"Page\": 1,\n            \"Text\": \"HOUR.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90623474121094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009687392972409725,\n                    \"Left\": 0.17622120678424835,\n                    \"Top\": 0.5130283832550049,\n                    \"Width\": 0.03495604917407036\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17622120678424835,\n                        \"Y\": 0.5130283832550049\n                    },\n                    {\n                        \"X\": 0.21117724478244781,\n                        \"Y\": 0.5130283832550049\n                    },\n                    {\n                        \"X\": 0.21117724478244781,\n                        \"Y\": 0.5227158069610596\n                    },\n                    {\n                        \"X\": 0.17622120678424835,\n                        \"Y\": 0.5227158069610596\n                    }\n                ]\n            },\n            \"Id\": \"edb4414b-91c2-41c1-8bf6-4978ba93a06d\",\n            \"Page\": 1,\n            \"Text\": \"State\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.89933776855469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009866554290056229,\n                    \"Left\": 0.21521009504795074,\n                    \"Top\": 0.5127599835395813,\n                    \"Width\": 0.05273531749844551\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21521009504795074,\n                        \"Y\": 0.5127599835395813\n                    },\n                    {\n                        \"X\": 0.26794540882110596,\n                        \"Y\": 0.5127599835395813\n                    },\n                    {\n                        \"X\": 0.26794540882110596,\n                        \"Y\": 0.522626519203186\n                    },\n                    {\n                        \"X\": 0.21521009504795074,\n                        \"Y\": 0.522626519203186\n                    }\n                ]\n            },\n            \"Id\": \"5d5f930a-e5a7-47ef-9e9c-cd8aa6319819\",\n            \"Page\": 1,\n            \"Text\": \"SUI/SDI\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90585327148438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009839600883424282,\n                    \"Left\": 0.27131250500679016,\n                    \"Top\": 0.5128752589225769,\n                    \"Width\": 0.025924144312739372\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.27131250500679016,\n                        \"Y\": 0.5128752589225769\n                    },\n                    {\n                        \"X\": 0.2972366511821747,\n                        \"Y\": 0.5128752589225769\n                    },\n                    {\n                        \"X\": 0.2972366511821747,\n                        \"Y\": 0.5227148532867432\n                    },\n                    {\n                        \"X\": 0.27131250500679016,\n                        \"Y\": 0.5227148532867432\n                    }\n                ]\n            },\n            \"Id\": \"f654782c-1f6e-42a9-a4e3-d197b07f8bc5\",\n            \"Page\": 1,\n            \"Text\": \"Tax\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7883529663086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009920773096382618,\n                    \"Left\": 0.3983638286590576,\n                    \"Top\": 0.5129008889198303,\n                    \"Width\": 0.029667343944311142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3983638286590576,\n                        \"Y\": 0.5129008889198303\n                    },\n                    {\n                        \"X\": 0.42803117632865906,\n                        \"Y\": 0.5129008889198303\n                    },\n                    {\n                        \"X\": 0.42803117632865906,\n                        \"Y\": 0.5228216648101807\n                    },\n                    {\n                        \"X\": 0.3983638286590576,\n                        \"Y\": 0.5228216648101807\n                    }\n                ]\n            },\n            \"Id\": \"012d09b7-e030-4674-bcb9-9c6a233867c3\",\n            \"Page\": 1,\n            \"Text\": \"0.60\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5943832397461,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00997807178646326,\n                    \"Left\": 0.5154975652694702,\n                    \"Top\": 0.5129286646842957,\n                    \"Width\": 0.03726263344287872\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5154975652694702,\n                        \"Y\": 0.5129286646842957\n                    },\n                    {\n                        \"X\": 0.5527601838111877,\n                        \"Y\": 0.5129286646842957\n                    },\n                    {\n                        \"X\": 0.5527601838111877,\n                        \"Y\": 0.5229067802429199\n                    },\n                    {\n                        \"X\": 0.5154975652694702,\n                        \"Y\": 0.5229067802429199\n                    }\n                ]\n            },\n            \"Id\": \"a2577004-0441-43d2-bef1-79c262190799\",\n            \"Page\": 1,\n            \"Text\": \"31.20\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9273681640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01007858570665121,\n                    \"Left\": 0.1764260232448578,\n                    \"Top\": 0.5484979748725891,\n                    \"Width\": 0.03972839564085007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1764260232448578,\n                        \"Y\": 0.5484979748725891\n                    },\n                    {\n                        \"X\": 0.21615441143512726,\n                        \"Y\": 0.5484979748725891\n                    },\n                    {\n                        \"X\": 0.21615441143512726,\n                        \"Y\": 0.5585765242576599\n                    },\n                    {\n                        \"X\": 0.1764260232448578,\n                        \"Y\": 0.5585765242576599\n                    }\n                ]\n            },\n            \"Id\": \"137af27b-768b-418b-99a8-9731792234e5\",\n            \"Page\": 1,\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.83855438232422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011969360522925854,\n                    \"Left\": 0.1766798496246338,\n                    \"Top\": 0.5667872428894043,\n                    \"Width\": 0.04138895124197006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1766798496246338,\n                        \"Y\": 0.5667872428894043\n                    },\n                    {\n                        \"X\": 0.21806879341602325,\n                        \"Y\": 0.5667872428894043\n                    },\n                    {\n                        \"X\": 0.21806879341602325,\n                        \"Y\": 0.57875657081604\n                    },\n                    {\n                        \"X\": 0.1766798496246338,\n                        \"Y\": 0.57875657081604\n                    }\n                ]\n            },\n            \"Id\": \"e6ab0cb9-1967-4670-a6de-c004e42ca4ef\",\n            \"Page\": 1,\n            \"Text\": \"401(k)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54102325439453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010011876001954079,\n                    \"Left\": 0.39023467898368835,\n                    \"Top\": 0.5668289065361023,\n                    \"Width\": 0.037868235260248184\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39023467898368835,\n                        \"Y\": 0.5668289065361023\n                    },\n                    {\n                        \"X\": 0.42810291051864624,\n                        \"Y\": 0.5668289065361023\n                    },\n                    {\n                        \"X\": 0.42810291051864624,\n                        \"Y\": 0.5768407583236694\n                    },\n                    {\n                        \"X\": 0.39023467898368835,\n                        \"Y\": 0.5768407583236694\n                    }\n                ]\n            },\n            \"Id\": \"4e22214e-4187-4970-ae4d-5470b970d389\",\n            \"Page\": 1,\n            \"Text\": \"20.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75775909423828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011270259507000446,\n                    \"Left\": 0.49625736474990845,\n                    \"Top\": 0.5667789578437805,\n                    \"Width\": 0.05644756928086281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49625736474990845,\n                        \"Y\": 0.5667789578437805\n                    },\n                    {\n                        \"X\": 0.552704930305481,\n                        \"Y\": 0.5667789578437805\n                    },\n                    {\n                        \"X\": 0.552704930305481,\n                        \"Y\": 0.5780492424964905\n                    },\n                    {\n                        \"X\": 0.49625736474990845,\n                        \"Y\": 0.5780492424964905\n                    }\n                ]\n            },\n            \"Id\": \"c4feb2ec-f6f4-442b-9c5a-7951cc3879e1\",\n            \"Page\": 1,\n            \"Text\": \"1,200.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75967407226562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010099726729094982,\n                    \"Left\": 0.1762428730726242,\n                    \"Top\": 0.5835988521575928,\n                    \"Width\": 0.03809003904461861\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1762428730726242,\n                        \"Y\": 0.5835988521575928\n                    },\n                    {\n                        \"X\": 0.21433290839195251,\n                        \"Y\": 0.5835988521575928\n                    },\n                    {\n                        \"X\": 0.21433290839195251,\n                        \"Y\": 0.5936985611915588\n                    },\n                    {\n                        \"X\": 0.1762428730726242,\n                        \"Y\": 0.5936985611915588\n                    }\n                ]\n            },\n            \"Id\": \"ccd2e13d-6a6f-424b-988c-3fcb36e0d8db\",\n            \"Page\": 1,\n            \"Text\": \"Stock\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.99600982666016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01002547424286604,\n                    \"Left\": 0.21747547388076782,\n                    \"Top\": 0.5836651921272278,\n                    \"Width\": 0.029225531965494156\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21747547388076782,\n                        \"Y\": 0.5836651921272278\n                    },\n                    {\n                        \"X\": 0.24670100212097168,\n                        \"Y\": 0.5836651921272278\n                    },\n                    {\n                        \"X\": 0.24670100212097168,\n                        \"Y\": 0.5936906933784485\n                    },\n                    {\n                        \"X\": 0.21747547388076782,\n                        \"Y\": 0.5936906933784485\n                    }\n                ]\n            },\n            \"Id\": \"a0cc1c33-fbea-4647-941c-177bba7b91b6\",\n            \"Page\": 1,\n            \"Text\": \"Plan\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88752746582031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010195154696702957,\n                    \"Left\": 0.39115574955940247,\n                    \"Top\": 0.583683967590332,\n                    \"Width\": 0.03649606555700302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39115574955940247,\n                        \"Y\": 0.583683967590332\n                    },\n                    {\n                        \"X\": 0.4276518225669861,\n                        \"Y\": 0.583683967590332\n                    },\n                    {\n                        \"X\": 0.4276518225669861,\n                        \"Y\": 0.5938791036605835\n                    },\n                    {\n                        \"X\": 0.39115574955940247,\n                        \"Y\": 0.5938791036605835\n                    }\n                ]\n            },\n            \"Id\": \"501e158d-b1a4-4bea-bdea-658f4bd1c899\",\n            \"Page\": 1,\n            \"Text\": \"15.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88897705078125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009502039290964603,\n                    \"Left\": 0.5075739622116089,\n                    \"Top\": 0.5838237404823303,\n                    \"Width\": 0.045547954738140106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5075739622116089,\n                        \"Y\": 0.5838237404823303\n                    },\n                    {\n                        \"X\": 0.5531219244003296,\n                        \"Y\": 0.5838237404823303\n                    },\n                    {\n                        \"X\": 0.5531219244003296,\n                        \"Y\": 0.5933257937431335\n                    },\n                    {\n                        \"X\": 0.5075739622116089,\n                        \"Y\": 0.5933257937431335\n                    }\n                ]\n            },\n            \"Id\": \"2cdd8a66-d756-4e1a-a083-9c7ab50d45eb\",\n            \"Page\": 1,\n            \"Text\": \"700.00\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52671813964844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0105440653860569,\n                    \"Left\": 0.1760719120502472,\n                    \"Top\": 0.6033467650413513,\n                    \"Width\": 0.0254079457372427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1760719120502472,\n                        \"Y\": 0.6033467650413513\n                    },\n                    {\n                        \"X\": 0.20147985219955444,\n                        \"Y\": 0.6033467650413513\n                    },\n                    {\n                        \"X\": 0.20147985219955444,\n                        \"Y\": 0.6138908267021179\n                    },\n                    {\n                        \"X\": 0.1760719120502472,\n                        \"Y\": 0.6138908267021179\n                    }\n                ]\n            },\n            \"Id\": \"984c1282-2bc4-4e5e-8459-b3017ef5e219\",\n            \"Page\": 1,\n            \"Text\": \"Net\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71311950683594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012212013825774193,\n                    \"Left\": 0.20432698726654053,\n                    \"Top\": 0.6035624146461487,\n                    \"Width\": 0.026656880974769592\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20432698726654053,\n                        \"Y\": 0.6035624146461487\n                    },\n                    {\n                        \"X\": 0.23098386824131012,\n                        \"Y\": 0.6035624146461487\n                    },\n                    {\n                        \"X\": 0.23098386824131012,\n                        \"Y\": 0.615774393081665\n                    },\n                    {\n                        \"X\": 0.20432698726654053,\n                        \"Y\": 0.615774393081665\n                    }\n                ]\n            },\n            \"Id\": \"57b86118-e07a-4e11-8156-77c26840f53d\",\n            \"Page\": 1,\n            \"Text\": \"Pay\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84355926513672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011548930779099464,\n                    \"Left\": 0.37394094467163086,\n                    \"Top\": 0.6030424237251282,\n                    \"Width\": 0.05417367443442345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37394094467163086,\n                        \"Y\": 0.6030424237251282\n                    },\n                    {\n                        \"X\": 0.4281146228313446,\n                        \"Y\": 0.6030424237251282\n                    },\n                    {\n                        \"X\": 0.4281146228313446,\n                        \"Y\": 0.6145913600921631\n                    },\n                    {\n                        \"X\": 0.37394094467163086,\n                        \"Y\": 0.6145913600921631\n                    }\n                ]\n            },\n            \"Id\": \"6bd633fc-5c9d-4fc5-bf05-b02c62a43eb0\",\n            \"Page\": 1,\n            \"Text\": \"$644.66\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77720642089844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008918260224163532,\n                    \"Left\": 0.10932295769453049,\n                    \"Top\": 0.7197617888450623,\n                    \"Width\": 0.09481046348810196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10932295769453049,\n                        \"Y\": 0.7197617888450623\n                    },\n                    {\n                        \"X\": 0.20413342118263245,\n                        \"Y\": 0.7197617888450623\n                    },\n                    {\n                        \"X\": 0.20413342118263245,\n                        \"Y\": 0.7286800742149353\n                    },\n                    {\n                        \"X\": 0.10932295769453049,\n                        \"Y\": 0.7286800742149353\n                    }\n                ]\n            },\n            \"Id\": \"3000b611-f170-4426-821d-2d142064bfc0\",\n            \"Page\": 1,\n            \"Text\": \"ANYCOMPANY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60197448730469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008955144323408604,\n                    \"Left\": 0.20646390318870544,\n                    \"Top\": 0.7197275161743164,\n                    \"Width\": 0.026454729959368706\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20646390318870544,\n                        \"Y\": 0.7197275161743164\n                    },\n                    {\n                        \"X\": 0.2329186201095581,\n                        \"Y\": 0.7197275161743164\n                    },\n                    {\n                        \"X\": 0.2329186201095581,\n                        \"Y\": 0.7286826968193054\n                    },\n                    {\n                        \"X\": 0.20646390318870544,\n                        \"Y\": 0.7286826968193054\n                    }\n                ]\n            },\n            \"Id\": \"66987fed-f1a3-4b7e-9307-3a52d86442ed\",\n            \"Page\": 1,\n            \"Text\": \"INC.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75086975097656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008804010227322578,\n                    \"Left\": 0.2365065962076187,\n                    \"Top\": 0.7196169495582581,\n                    \"Width\": 0.02764619141817093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2365065962076187,\n                        \"Y\": 0.7196169495582581\n                    },\n                    {\n                        \"X\": 0.26415279507637024,\n                        \"Y\": 0.7196169495582581\n                    },\n                    {\n                        \"X\": 0.26415279507637024,\n                        \"Y\": 0.7284209728240967\n                    },\n                    {\n                        \"X\": 0.2365065962076187,\n                        \"Y\": 0.7284209728240967\n                    }\n                ]\n            },\n            \"Id\": \"0295a242-58a1-494c-a9fb-3573a786bb4d\",\n            \"Page\": 1,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76627349853516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010191002860665321,\n                    \"Left\": 0.5247613191604614,\n                    \"Top\": 0.71559739112854,\n                    \"Width\": 0.04946688935160637\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5247613191604614,\n                        \"Y\": 0.71559739112854\n                    },\n                    {\n                        \"X\": 0.5742282271385193,\n                        \"Y\": 0.71559739112854\n                    },\n                    {\n                        \"X\": 0.5742282271385193,\n                        \"Y\": 0.725788414478302\n                    },\n                    {\n                        \"X\": 0.5247613191604614,\n                        \"Y\": 0.725788414478302\n                    }\n                ]\n            },\n            \"Id\": \"fce2575f-e43f-4aea-8472-5442b68d8456\",\n            \"Page\": 1,\n            \"Text\": \"Advice\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.44927978515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00974361877888441,\n                    \"Left\": 0.5820989012718201,\n                    \"Top\": 0.7159198522567749,\n                    \"Width\": 0.05848279222846031\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5820989012718201,\n                        \"Y\": 0.7159198522567749\n                    },\n                    {\n                        \"X\": 0.6405817270278931,\n                        \"Y\": 0.7159198522567749\n                    },\n                    {\n                        \"X\": 0.6405817270278931,\n                        \"Y\": 0.725663423538208\n                    },\n                    {\n                        \"X\": 0.5820989012718201,\n                        \"Y\": 0.725663423538208\n                    }\n                ]\n            },\n            \"Id\": \"70bd3dd2-bf3b-4c8d-ba69-cbd0ab726401\",\n            \"Page\": 1,\n            \"Text\": \"number:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.80306243896484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010250999592244625,\n                    \"Left\": 0.7060394287109375,\n                    \"Top\": 0.7149945497512817,\n                    \"Width\": 0.07464908808469772\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7060394287109375,\n                        \"Y\": 0.7149945497512817\n                    },\n                    {\n                        \"X\": 0.7806885242462158,\n                        \"Y\": 0.7149945497512817\n                    },\n                    {\n                        \"X\": 0.7806885242462158,\n                        \"Y\": 0.7252455353736877\n                    },\n                    {\n                        \"X\": 0.7060394287109375,\n                        \"Y\": 0.7252455353736877\n                    }\n                ]\n            },\n            \"Id\": \"7e8d7578-5d7c-436b-9653-927b42bcc308\",\n            \"Page\": 1,\n            \"Text\": \"650101270\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84701538085938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009208627045154572,\n                    \"Left\": 0.1106451004743576,\n                    \"Top\": 0.7333357334136963,\n                    \"Width\": 0.02985192835330963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1106451004743576,\n                        \"Y\": 0.7333357334136963\n                    },\n                    {\n                        \"X\": 0.14049702882766724,\n                        \"Y\": 0.7333357334136963\n                    },\n                    {\n                        \"X\": 0.14049702882766724,\n                        \"Y\": 0.7425443530082703\n                    },\n                    {\n                        \"X\": 0.1106451004743576,\n                        \"Y\": 0.7425443530082703\n                    }\n                ]\n            },\n            \"Id\": \"fe5b7b34-5472-4b9c-bc1d-248a3bfa20c9\",\n            \"Page\": 1,\n            \"Text\": \"1212\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77889251708984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008893071673810482,\n                    \"Left\": 0.1426442414522171,\n                    \"Top\": 0.7334729433059692,\n                    \"Width\": 0.06915416568517685\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1426442414522171,\n                        \"Y\": 0.7334729433059692\n                    },\n                    {\n                        \"X\": 0.21179839968681335,\n                        \"Y\": 0.7334729433059692\n                    },\n                    {\n                        \"X\": 0.21179839968681335,\n                        \"Y\": 0.7423660159111023\n                    },\n                    {\n                        \"X\": 0.1426442414522171,\n                        \"Y\": 0.7423660159111023\n                    }\n                ]\n            },\n            \"Id\": \"6f0cfcba-46b2-41ea-a7bf-a1cd74835c46\",\n            \"Page\": 1,\n            \"Text\": \"FICTIONAL\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.216064453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010070247575640678,\n                    \"Left\": 0.21506381034851074,\n                    \"Top\": 0.7332646250724792,\n                    \"Width\": 0.037501487880945206\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21506381034851074,\n                        \"Y\": 0.7332646250724792\n                    },\n                    {\n                        \"X\": 0.25256529450416565,\n                        \"Y\": 0.7332646250724792\n                    },\n                    {\n                        \"X\": 0.25256529450416565,\n                        \"Y\": 0.7433348298072815\n                    },\n                    {\n                        \"X\": 0.21506381034851074,\n                        \"Y\": 0.7433348298072815\n                    }\n                ]\n            },\n            \"Id\": \"ab8daeba-f04f-4202-a0be-5403dda9e4c6\",\n            \"Page\": 1,\n            \"Text\": \"BLVD,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74493408203125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009108701720833778,\n                    \"Left\": 0.2560538947582245,\n                    \"Top\": 0.7332044243812561,\n                    \"Width\": 0.039730459451675415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2560538947582245,\n                        \"Y\": 0.7332044243812561\n                    },\n                    {\n                        \"X\": 0.2957843542098999,\n                        \"Y\": 0.7332044243812561\n                    },\n                    {\n                        \"X\": 0.2957843542098999,\n                        \"Y\": 0.7423130869865417\n                    },\n                    {\n                        \"X\": 0.2560538947582245,\n                        \"Y\": 0.7423130869865417\n                    }\n                ]\n            },\n            \"Id\": \"c4f72639-7e00-4691-a21a-694cdbf8e533\",\n            \"Page\": 1,\n            \"Text\": \"SUITE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.71550750732422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009877453558146954,\n                    \"Left\": 0.2982032001018524,\n                    \"Top\": 0.7333639860153198,\n                    \"Width\": 0.01861063577234745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2982032001018524,\n                        \"Y\": 0.7333639860153198\n                    },\n                    {\n                        \"X\": 0.3168138265609741,\n                        \"Y\": 0.7333639860153198\n                    },\n                    {\n                        \"X\": 0.3168138265609741,\n                        \"Y\": 0.7432414293289185\n                    },\n                    {\n                        \"X\": 0.2982032001018524,\n                        \"Y\": 0.7432414293289185\n                    }\n                ]\n            },\n            \"Id\": \"83268dfd-ad6e-45cb-bb28-db6ff53d1d58\",\n            \"Page\": 1,\n            \"Text\": \"28,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73052978515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012223155237734318,\n                    \"Left\": 0.5253340601921082,\n                    \"Top\": 0.7310652136802673,\n                    \"Width\": 0.02616615779697895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5253340601921082,\n                        \"Y\": 0.7310652136802673\n                    },\n                    {\n                        \"X\": 0.5515002012252808,\n                        \"Y\": 0.7310652136802673\n                    },\n                    {\n                        \"X\": 0.5515002012252808,\n                        \"Y\": 0.7432883381843567\n                    },\n                    {\n                        \"X\": 0.5253340601921082,\n                        \"Y\": 0.7432883381843567\n                    }\n                ]\n            },\n            \"Id\": \"030aec07-ef47-4690-82eb-432e6e63c7f6\",\n            \"Page\": 1,\n            \"Text\": \"Pay\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71672821044922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010184567421674728,\n                    \"Left\": 0.5548896789550781,\n                    \"Top\": 0.7312309741973877,\n                    \"Width\": 0.03308491036295891\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5548896789550781,\n                        \"Y\": 0.7312309741973877\n                    },\n                    {\n                        \"X\": 0.5879746079444885,\n                        \"Y\": 0.7312309741973877\n                    },\n                    {\n                        \"X\": 0.5879746079444885,\n                        \"Y\": 0.7414155602455139\n                    },\n                    {\n                        \"X\": 0.5548896789550781,\n                        \"Y\": 0.7414155602455139\n                    }\n                ]\n            },\n            \"Id\": \"a4b59a39-af6c-4849-bce0-f60eee4fa158\",\n            \"Page\": 1,\n            \"Text\": \"date:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 22.27074432373047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010506420396268368,\n                    \"Left\": 0.7011188864707947,\n                    \"Top\": 0.7310549020767212,\n                    \"Width\": 0.07927445322275162\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7011188864707947,\n                        \"Y\": 0.7310549020767212\n                    },\n                    {\n                        \"X\": 0.7803933620452881,\n                        \"Y\": 0.7310549020767212\n                    },\n                    {\n                        \"X\": 0.7803933620452881,\n                        \"Y\": 0.7415612936019897\n                    },\n                    {\n                        \"X\": 0.7011188864707947,\n                        \"Y\": 0.7415612936019897\n                    }\n                ]\n            },\n            \"Id\": \"a6eb3f87-a938-48ae-b74c-b6ad38cc83ae\",\n            \"Page\": 1,\n            \"Text\": \"11/29/2019\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52632904052734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009983607567846775,\n                    \"Left\": 0.10944241285324097,\n                    \"Top\": 0.7474202513694763,\n                    \"Width\": 0.07090245932340622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10944241285324097,\n                        \"Y\": 0.7474202513694763\n                    },\n                    {\n                        \"X\": 0.1803448647260666,\n                        \"Y\": 0.7474202513694763\n                    },\n                    {\n                        \"X\": 0.1803448647260666,\n                        \"Y\": 0.7574038505554199\n                    },\n                    {\n                        \"X\": 0.10944241285324097,\n                        \"Y\": 0.7574038505554199\n                    }\n                ]\n            },\n            \"Id\": \"d3989775-e76c-4c6a-9938-a17abba88912\",\n            \"Page\": 1,\n            \"Text\": \"ANYTOWN,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75017547607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008699377998709679,\n                    \"Left\": 0.18378883600234985,\n                    \"Top\": 0.7475541234016418,\n                    \"Width\": 0.02822682075202465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18378883600234985,\n                        \"Y\": 0.7475541234016418\n                    },\n                    {\n                        \"X\": 0.21201565861701965,\n                        \"Y\": 0.7475541234016418\n                    },\n                    {\n                        \"X\": 0.21201565861701965,\n                        \"Y\": 0.7562534809112549\n                    },\n                    {\n                        \"X\": 0.18378883600234985,\n                        \"Y\": 0.7562534809112549\n                    }\n                ]\n            },\n            \"Id\": \"4599fff8-a8e4-45d2-89bd-6d775f8e4942\",\n            \"Page\": 1,\n            \"Text\": \"USA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.59661865234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008869128301739693,\n                    \"Left\": 0.21481220424175262,\n                    \"Top\": 0.7475335001945496,\n                    \"Width\": 0.03554724156856537\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21481220424175262,\n                        \"Y\": 0.7475335001945496\n                    },\n                    {\n                        \"X\": 0.250359445810318,\n                        \"Y\": 0.7475335001945496\n                    },\n                    {\n                        \"X\": 0.250359445810318,\n                        \"Y\": 0.7564026117324829\n                    },\n                    {\n                        \"X\": 0.21481220424175262,\n                        \"Y\": 0.7564026117324829\n                    }\n                ]\n            },\n            \"Id\": \"a7f97c23-a720-4929-ac42-83f05fc69b4f\",\n            \"Page\": 1,\n            \"Text\": \"10101\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97203826904297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01000056229531765,\n                    \"Left\": 0.111144058406353,\n                    \"Top\": 0.7904263138771057,\n                    \"Width\": 0.063008613884449\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.111144058406353,\n                        \"Y\": 0.7904263138771057\n                    },\n                    {\n                        \"X\": 0.174152672290802,\n                        \"Y\": 0.7904263138771057\n                    },\n                    {\n                        \"X\": 0.174152672290802,\n                        \"Y\": 0.8004269003868103\n                    },\n                    {\n                        \"X\": 0.111144058406353,\n                        \"Y\": 0.8004269003868103\n                    }\n                ]\n            },\n            \"Id\": \"40589f0d-7052-427a-b072-91ebb9feda7f\",\n            \"Page\": 1,\n            \"Text\": \"Deposited\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98322296142578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008250264450907707,\n                    \"Left\": 0.18558141589164734,\n                    \"Top\": 0.790664792060852,\n                    \"Width\": 0.013600096106529236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18558141589164734,\n                        \"Y\": 0.790664792060852\n                    },\n                    {\n                        \"X\": 0.19918151199817657,\n                        \"Y\": 0.790664792060852\n                    },\n                    {\n                        \"X\": 0.19918151199817657,\n                        \"Y\": 0.7989150285720825\n                    },\n                    {\n                        \"X\": 0.18558141589164734,\n                        \"Y\": 0.7989150285720825\n                    }\n                ]\n            },\n            \"Id\": \"3159b01a-b1be-456d-a152-693ca036e73d\",\n            \"Page\": 1,\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9965591430664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008269018493592739,\n                    \"Left\": 0.2033190131187439,\n                    \"Top\": 0.7905591130256653,\n                    \"Width\": 0.02043118327856064\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2033190131187439,\n                        \"Y\": 0.7905591130256653\n                    },\n                    {\n                        \"X\": 0.22375020384788513,\n                        \"Y\": 0.7905591130256653\n                    },\n                    {\n                        \"X\": 0.22375020384788513,\n                        \"Y\": 0.798828125\n                    },\n                    {\n                        \"X\": 0.2033190131187439,\n                        \"Y\": 0.798828125\n                    }\n                ]\n            },\n            \"Id\": \"1d23caa8-9afe-457d-be71-b7c0974c675f\",\n            \"Page\": 1,\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97740936279297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007961351424455643,\n                    \"Left\": 0.23115228116512299,\n                    \"Top\": 0.7908057570457458,\n                    \"Width\": 0.04956601560115814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23115228116512299,\n                        \"Y\": 0.7908057570457458\n                    },\n                    {\n                        \"X\": 0.28071829676628113,\n                        \"Y\": 0.7908057570457458\n                    },\n                    {\n                        \"X\": 0.28071829676628113,\n                        \"Y\": 0.79876708984375\n                    },\n                    {\n                        \"X\": 0.23115228116512299,\n                        \"Y\": 0.79876708984375\n                    }\n                ]\n            },\n            \"Id\": \"b8463bff-c165-4174-b3a2-ffc97f88b81e\",\n            \"Page\": 1,\n            \"Text\": \"account\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98262786865234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00839932356029749,\n                    \"Left\": 0.2915950417518616,\n                    \"Top\": 0.7904651165008545,\n                    \"Width\": 0.013405148871243\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2915950417518616,\n                        \"Y\": 0.7904651165008545\n                    },\n                    {\n                        \"X\": 0.3050002157688141,\n                        \"Y\": 0.7904651165008545\n                    },\n                    {\n                        \"X\": 0.3050002157688141,\n                        \"Y\": 0.798864483833313\n                    },\n                    {\n                        \"X\": 0.2915950417518616,\n                        \"Y\": 0.798864483833313\n                    }\n                ]\n            },\n            \"Id\": \"8f7ac8ea-e64d-4ed5-8b44-f4611e7cf461\",\n            \"Page\": 1,\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97611236572266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008167638443410397,\n                    \"Left\": 0.5420383810997009,\n                    \"Top\": 0.7937264442443848,\n                    \"Width\": 0.05032743141055107\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5420383810997009,\n                        \"Y\": 0.7937264442443848\n                    },\n                    {\n                        \"X\": 0.5923658013343811,\n                        \"Y\": 0.7937264442443848\n                    },\n                    {\n                        \"X\": 0.5923658013343811,\n                        \"Y\": 0.8018940687179565\n                    },\n                    {\n                        \"X\": 0.5420383810997009,\n                        \"Y\": 0.8018940687179565\n                    }\n                ]\n            },\n            \"Id\": \"c8146a7d-1d2c-4e31-a772-8e402feb1d7f\",\n            \"Page\": 1,\n            \"Text\": \"account\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96765899658203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008265281096100807,\n                    \"Left\": 0.5949305295944214,\n                    \"Top\": 0.7936447262763977,\n                    \"Width\": 0.04762548208236694\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5949305295944214,\n                        \"Y\": 0.7936447262763977\n                    },\n                    {\n                        \"X\": 0.6425560116767883,\n                        \"Y\": 0.7936447262763977\n                    },\n                    {\n                        \"X\": 0.6425560116767883,\n                        \"Y\": 0.8019099831581116\n                    },\n                    {\n                        \"X\": 0.5949305295944214,\n                        \"Y\": 0.8019099831581116\n                    }\n                ]\n            },\n            \"Id\": \"2182aa66-bf26-4f12-8c6f-cdc530908a8c\",\n            \"Page\": 1,\n            \"Text\": \"number\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8514404296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00815760437399149,\n                    \"Left\": 0.6802096962928772,\n                    \"Top\": 0.7935661673545837,\n                    \"Width\": 0.040364090353250504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6802096962928772,\n                        \"Y\": 0.7935661673545837\n                    },\n                    {\n                        \"X\": 0.7205737829208374,\n                        \"Y\": 0.7935661673545837\n                    },\n                    {\n                        \"X\": 0.7205737829208374,\n                        \"Y\": 0.8017237782478333\n                    },\n                    {\n                        \"X\": 0.6802096962928772,\n                        \"Y\": 0.8017237782478333\n                    }\n                ]\n            },\n            \"Id\": \"da065213-cff2-4ee3-bdb3-cc0528d93623\",\n            \"Page\": 1,\n            \"Text\": \"transit\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84671783447266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008207844570279121,\n                    \"Left\": 0.7316280007362366,\n                    \"Top\": 0.7934746146202087,\n                    \"Width\": 0.028976866975426674\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7316280007362366,\n                        \"Y\": 0.7934746146202087\n                    },\n                    {\n                        \"X\": 0.7606048583984375,\n                        \"Y\": 0.7934746146202087\n                    },\n                    {\n                        \"X\": 0.7606048583984375,\n                        \"Y\": 0.8016824722290039\n                    },\n                    {\n                        \"X\": 0.7316280007362366,\n                        \"Y\": 0.8016824722290039\n                    }\n                ]\n            },\n            \"Id\": \"faa45524-b5eb-4f48-a200-ca7c9d07e9d9\",\n            \"Page\": 1,\n            \"Text\": \"ABA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9541015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0079030841588974,\n                    \"Left\": 0.8503483533859253,\n                    \"Top\": 0.7927887439727783,\n                    \"Width\": 0.04759335145354271\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8503483533859253,\n                        \"Y\": 0.7927887439727783\n                    },\n                    {\n                        \"X\": 0.8979417085647583,\n                        \"Y\": 0.7927887439727783\n                    },\n                    {\n                        \"X\": 0.8979417085647583,\n                        \"Y\": 0.8006918430328369\n                    },\n                    {\n                        \"X\": 0.8503483533859253,\n                        \"Y\": 0.8006918430328369\n                    }\n                ]\n            },\n            \"Id\": \"3f202962-4029-437d-91f5-35f29f292904\",\n            \"Page\": 1,\n            \"Text\": \"amount\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63610076904297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009902780875563622,\n                    \"Left\": 0.11083870381116867,\n                    \"Top\": 0.8081050515174866,\n                    \"Width\": 0.05961592122912407\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11083870381116867,\n                        \"Y\": 0.8081050515174866\n                    },\n                    {\n                        \"X\": 0.17045462131500244,\n                        \"Y\": 0.8081050515174866\n                    },\n                    {\n                        \"X\": 0.17045462131500244,\n                        \"Y\": 0.8180078268051147\n                    },\n                    {\n                        \"X\": 0.11083870381116867,\n                        \"Y\": 0.8180078268051147\n                    }\n                ]\n            },\n            \"Id\": \"132fa158-eedb-4eb5-9053-56e410ebbe35\",\n            \"Page\": 1,\n            \"Text\": \"Alejandro\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61785125732422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00834846030920744,\n                    \"Left\": 0.17419542372226715,\n                    \"Top\": 0.8080773949623108,\n                    \"Width\": 0.04906441271305084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17419542372226715,\n                        \"Y\": 0.8080773949623108\n                    },\n                    {\n                        \"X\": 0.223259836435318,\n                        \"Y\": 0.8080773949623108\n                    },\n                    {\n                        \"X\": 0.223259836435318,\n                        \"Y\": 0.8164258599281311\n                    },\n                    {\n                        \"X\": 0.17419542372226715,\n                        \"Y\": 0.8164258599281311\n                    }\n                ]\n            },\n            \"Id\": \"db0f1b54-78ff-437c-a7f7-ef12b4856437\",\n            \"Page\": 1,\n            \"Text\": \"Rosalez\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 66.97557067871094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008283342234790325,\n                    \"Left\": 0.5602371096611023,\n                    \"Top\": 0.8065016865730286,\n                    \"Width\": 0.059967443346977234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5602371096611023,\n                        \"Y\": 0.8065016865730286\n                    },\n                    {\n                        \"X\": 0.620204508304596,\n                        \"Y\": 0.8065016865730286\n                    },\n                    {\n                        \"X\": 0.620204508304596,\n                        \"Y\": 0.8147850036621094\n                    },\n                    {\n                        \"X\": 0.5602371096611023,\n                        \"Y\": 0.8147850036621094\n                    }\n                ]\n            },\n            \"Id\": \"df438d6f-64d0-42e2-9591-9ca2c46f11a9\",\n            \"Page\": 1,\n            \"Text\": \"xxxxx5967\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 72.69644927978516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0068679084070026875,\n                    \"Left\": 0.6825339198112488,\n                    \"Top\": 0.8079061508178711,\n                    \"Width\": 0.02599317952990532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6825339198112488,\n                        \"Y\": 0.8079061508178711\n                    },\n                    {\n                        \"X\": 0.7085270881652832,\n                        \"Y\": 0.8079061508178711\n                    },\n                    {\n                        \"X\": 0.7085270881652832,\n                        \"Y\": 0.8147740960121155\n                    },\n                    {\n                        \"X\": 0.6825339198112488,\n                        \"Y\": 0.8147740960121155\n                    }\n                ]\n            },\n            \"Id\": \"51c51517-d3c1-4866-9f00-5823d2a3adef\",\n            \"Page\": 1,\n            \"Text\": \"xxxx\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 77.27925872802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.006862718146294355,\n                    \"Left\": 0.7335848808288574,\n                    \"Top\": 0.8079339265823364,\n                    \"Width\": 0.026102298870682716\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7335848808288574,\n                        \"Y\": 0.8079339265823364\n                    },\n                    {\n                        \"X\": 0.7596871852874756,\n                        \"Y\": 0.8079339265823364\n                    },\n                    {\n                        \"X\": 0.7596871852874756,\n                        \"Y\": 0.8147966265678406\n                    },\n                    {\n                        \"X\": 0.7335848808288574,\n                        \"Y\": 0.8147966265678406\n                    }\n                ]\n            },\n            \"Id\": \"a396a432-c80a-441b-af8c-af2a65d0ed38\",\n            \"Page\": 1,\n            \"Text\": \"xxxx\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82832336425781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009240806102752686,\n                    \"Left\": 0.8345751166343689,\n                    \"Top\": 0.8083831071853638,\n                    \"Width\": 0.04491712525486946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8345751166343689,\n                        \"Y\": 0.8083831071853638\n                    },\n                    {\n                        \"X\": 0.8794922232627869,\n                        \"Y\": 0.8083831071853638\n                    },\n                    {\n                        \"X\": 0.8794922232627869,\n                        \"Y\": 0.8176239132881165\n                    },\n                    {\n                        \"X\": 0.8345751166343689,\n                        \"Y\": 0.8176239132881165\n                    }\n                ]\n            },\n            \"Id\": \"80e44489-2a2d-4eba-a5be-df395890a217\",\n            \"Page\": 1,\n            \"Text\": \"$644.66\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.1099624633789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016335276886820793,\n                    \"Left\": 0.6002804040908813,\n                    \"Top\": 0.889022946357727,\n                    \"Width\": 0.23597849905490875\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6002804040908813,\n                        \"Y\": 0.889022946357727\n                    },\n                    {\n                        \"X\": 0.8362588882446289,\n                        \"Y\": 0.889022946357727\n                    },\n                    {\n                        \"X\": 0.8362588882446289,\n                        \"Y\": 0.9053581953048706\n                    },\n                    {\n                        \"X\": 0.6002804040908813,\n                        \"Y\": 0.9053581953048706\n                    }\n                ]\n            },\n            \"Id\": \"18274630-02ae-4bc3-b723-692bad4938de\",\n            \"Page\": 1,\n            \"Text\": \"NON-NEGOTIABLE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"326e6601-ec96-4587-84dc-c1a3241d5c21\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_START_DATE\",\n                \"Text\": \"What is the Pay Period Start Date?\"\n            }\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"fbdb2135-865e-48d2-8083-693ae21a576a\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_END_DATE\",\n                \"Text\": \"What is the Pay Period End Date?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"061ee951-9fea-4f75-bc97-b45144877f22\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 95.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010204081423580647,\n                    \"Left\": 0.7745961546897888,\n                    \"Top\": 0.09240362793207169,\n                    \"Width\": 0.07562407851219177\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7745961546897888,\n                        \"Y\": 0.09240362793207169\n                    },\n                    {\n                        \"X\": 0.850220263004303,\n                        \"Y\": 0.09240362793207169\n                    },\n                    {\n                        \"X\": 0.850220263004303,\n                        \"Y\": 0.10260771214962006\n                    },\n                    {\n                        \"X\": 0.7745961546897888,\n                        \"Y\": 0.10260771214962006\n                    }\n                ]\n            },\n            \"Id\": \"061ee951-9fea-4f75-bc97-b45144877f22\",\n            \"Page\": 1,\n            \"Text\": \"04/30/2019\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"268996c2-df2b-4b7a-b30f-c0332d36ab7e\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_PAY_DATE\",\n                \"Text\": \"What is the Pay Date?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7b4e0d98-b7e9-41a8-b857-d986f0730866\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 83.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010204081423580647,\n                    \"Left\": 0.7745961546897888,\n                    \"Top\": 0.10770975053310394,\n                    \"Width\": 0.07488986849784851\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7745961546897888,\n                        \"Y\": 0.10770975053310394\n                    },\n                    {\n                        \"X\": 0.8494860529899597,\n                        \"Y\": 0.10770975053310394\n                    },\n                    {\n                        \"X\": 0.8494860529899597,\n                        \"Y\": 0.11791383475065231\n                    },\n                    {\n                        \"X\": 0.7745961546897888,\n                        \"Y\": 0.11791383475065231\n                    }\n                ]\n            },\n            \"Id\": \"7b4e0d98-b7e9-41a8-b857-d986f0730866\",\n            \"Page\": 1,\n            \"Text\": \"04/29/2019\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"d23f1ef0-976a-424d-8734-947fde58bea0\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_EMPLOYEE_NAME\",\n                \"Text\": \"What is the Employee Name?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"2d32ee9e-5411-47d3-86d1-6255160daad2\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 100.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013605441898107529,\n                    \"Left\": 0.5976505279541016,\n                    \"Top\": 0.18197278678417206,\n                    \"Width\": 0.14390602707862854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5976505279541016,\n                        \"Y\": 0.18197278678417206\n                    },\n                    {\n                        \"X\": 0.7415565252304077,\n                        \"Y\": 0.18197278678417206\n                    },\n                    {\n                        \"X\": 0.7415565252304077,\n                        \"Y\": 0.19557823240756989\n                    },\n                    {\n                        \"X\": 0.5976505279541016,\n                        \"Y\": 0.19557823240756989\n                    }\n                ]\n            },\n            \"Id\": \"2d32ee9e-5411-47d3-86d1-6255160daad2\",\n            \"Page\": 1,\n            \"Text\": \"Alejandro Rosalez\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"bd940d74-af54-4930-9d62-be41d6f69dfe\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_COMPANY_NAME\",\n                \"Text\": \"What is the company Name?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b453b278-f921-499c-9fd2-aefd051f4fc3\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 96.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.6332199573516846,\n                    \"Left\": 0.10866373032331467,\n                    \"Top\": 0.095238097012043,\n                    \"Width\": 0.15491923689842224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10866373032331467,\n                        \"Y\": 0.095238097012043\n                    },\n                    {\n                        \"X\": 0.2635829746723175,\n                        \"Y\": 0.095238097012043\n                    },\n                    {\n                        \"X\": 0.2635829746723175,\n                        \"Y\": 0.728458046913147\n                    },\n                    {\n                        \"X\": 0.10866373032331467,\n                        \"Y\": 0.728458046913147\n                    }\n                ]\n            },\n            \"Id\": \"b453b278-f921-499c-9fd2-aefd051f4fc3\",\n            \"Page\": 1,\n            \"Text\": \"ANYCOMPANY INC. USA\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"1c2a4e56-9d6a-44de-a08b-c67b8d2772f6\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_CURRENT_GROSS_PAY\",\n                \"Text\": \"What is the Current Gross Pay?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"395b0363-f51e-4fd5-ad0c-99b6a822c589\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011904762126505375,\n                    \"Left\": 0.37077826261520386,\n                    \"Top\": 0.37471655011177063,\n                    \"Width\": 0.05359765142202377\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.37077826261520386,\n                        \"Y\": 0.37471655011177063\n                    },\n                    {\n                        \"X\": 0.4243759214878082,\n                        \"Y\": 0.37471655011177063\n                    },\n                    {\n                        \"X\": 0.4243759214878082,\n                        \"Y\": 0.3866213262081146\n                    },\n                    {\n                        \"X\": 0.37077826261520386,\n                        \"Y\": 0.3866213262081146\n                    }\n                ]\n            },\n            \"Id\": \"395b0363-f51e-4fd5-ad0c-99b6a822c589\",\n            \"Page\": 1,\n            \"Text\": \"$770.00\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"d39a0969-7849-40b1-ab78-7c0006902837\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_YTD_GROSS_PAY\",\n                \"Text\": \"What is the YTD Gross Pay?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c19a9036-914e-4879-9809-6f8d38121a3a\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 98.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011337868869304657,\n                    \"Left\": 0.4948605000972748,\n                    \"Top\": 0.37528344988822937,\n                    \"Width\": 0.05800293758511543\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4948605000972748,\n                        \"Y\": 0.37528344988822937\n                    },\n                    {\n                        \"X\": 0.5528634190559387,\n                        \"Y\": 0.37528344988822937\n                    },\n                    {\n                        \"X\": 0.5528634190559387,\n                        \"Y\": 0.3866213262081146\n                    },\n                    {\n                        \"X\": 0.4948605000972748,\n                        \"Y\": 0.3866213262081146\n                    }\n                ]\n            },\n            \"Id\": \"c19a9036-914e-4879-9809-6f8d38121a3a\",\n            \"Page\": 1,\n            \"Text\": \"2,310.00\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"29b27b32-da49-4f4c-b5c4-49046fc971ec\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_REGULAR_HOURLY_RATE\",\n                \"Text\": \"What is the regular hourly rate?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7bb54992-3b83-497c-9c6d-2fdbe8b24c5e\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010204081423580647,\n                    \"Left\": 0.20117473602294922,\n                    \"Top\": 0.31972789764404297,\n                    \"Width\": 0.036710720509290695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20117473602294922,\n                        \"Y\": 0.31972789764404297\n                    },\n                    {\n                        \"X\": 0.2378854602575302,\n                        \"Y\": 0.31972789764404297\n                    },\n                    {\n                        \"X\": 0.2378854602575302,\n                        \"Y\": 0.32993197441101074\n                    },\n                    {\n                        \"X\": 0.20117473602294922,\n                        \"Y\": 0.32993197441101074\n                    }\n                ]\n            },\n            \"Id\": \"7bb54992-3b83-497c-9c6d-2fdbe8b24c5e\",\n            \"Page\": 1,\n            \"Text\": \"10.00\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"2d4a74c5-bea2-4ada-a708-b073a89c2f7a\",\n            \"Page\": 1,\n            \"Query\": {\n                \"Alias\": \"PAYSTUB_PERIOD_HOLIDAY_RATE\",\n                \"Text\": \"What is the holiday rate?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1bf8e296-d183-4bc4-abea-ebb36d583b9b\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 99.0,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010204081423580647,\n                    \"Left\": 0.20117473602294922,\n                    \"Top\": 0.3554421663284302,\n                    \"Width\": 0.036710720509290695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20117473602294922,\n                        \"Y\": 0.3554421663284302\n                    },\n                    {\n                        \"X\": 0.2378854602575302,\n                        \"Y\": 0.3554421663284302\n                    },\n                    {\n                        \"X\": 0.2378854602575302,\n                        \"Y\": 0.36564627289772034\n                    },\n                    {\n                        \"X\": 0.20117473602294922,\n                        \"Y\": 0.36564627289772034\n                    }\n                ]\n            },\n            \"Id\": \"1bf8e296-d183-4bc4-abea-ebb36d583b9b\",\n            \"Page\": 1,\n            \"Text\": \"10.00\"\n        }\n    ],\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"JobStatus\": \"SUCCEEDED\"\n}"
  },
  {
    "path": "src-python/tests/data/request_for_verification_of_employment.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 8.37506945572386e-7,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0.0000016363445638489793\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"f8871fc1-3616-465b-af44-a2abdc3be4ca\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"00cf4d83-8e25-4689-be64-3a9e3cba54da\",\n            \"3dc797ee-5b26-4371-b515-5c6747e83415\",\n            \"52a0a08c-658e-4b67-bd7a-94d8addfda8a\",\n            \"ba5f837f-3fe7-43fa-8202-cd8f8f0ecb6a\",\n            \"a2917b26-b7bf-47a2-8794-df4de8a89f08\",\n            \"23a64f16-f465-44cf-8ee8-bd5b9d7b25ab\",\n            \"f5bd8c64-3214-4424-884b-bdee57873de3\",\n            \"782a9b11-a031-419d-bdf2-0a4a730a40c1\",\n            \"ff0a5962-2eaf-43e2-99b8-3ff802221610\",\n            \"b36d0bf6-40c7-493f-99ba-178b5e5c5d85\",\n            \"5d6ca23a-1cb2-4db7-b1fb-9df11f730b38\",\n            \"1c8c869f-a084-484b-95b9-d55022974eab\",\n            \"048ded25-a3e4-44b6-a35e-d2007a6df446\",\n            \"bef3f893-6a01-44a8-a697-f1be47bcb325\",\n            \"29b52e2f-7f61-43d3-b11c-c883b6c11a1d\",\n            \"94ab75c5-cc71-40d0-aba7-5cd717f14a8c\",\n            \"a0bbeee2-bce8-410c-bc1d-e3b7082984e7\",\n            \"3c3ae04f-56ea-4677-9326-b5d7a998ff40\",\n            \"8cef68ba-0e62-4c74-aa5d-e298f186e8a1\",\n            \"92e96330-a3f0-4427-89a9-32aac8b44cd4\",\n            \"5b3c488c-c7ef-48bd-a655-cc6227cc9a48\",\n            \"cf0c5bca-8f18-48f1-b1f9-62e91b3ce00e\",\n            \"6929384e-f1dd-4c28-8970-7c782cfb3c02\",\n            \"d8d6fcb5-8b60-4bc8-a2ba-84102d5bcd82\",\n            \"7db56f96-5607-4098-b67a-7fd0f0d23b20\",\n            \"3f4f83cb-4019-47bb-97a8-557d8338e315\",\n            \"b0db42b0-06c9-4101-9cd2-33f993ed530a\",\n            \"87422b69-3e93-4e00-9970-b3464fa644ea\",\n            \"c6967aca-f5cd-468f-bf57-afa6f8b42c0b\",\n            \"07fb5ca6-e454-456d-adf4-9d2c224ed21a\",\n            \"df48d574-fd95-45d4-90e9-da68182fc5c7\",\n            \"86a18ae8-5e0a-4262-ada1-2c426cff8c86\",\n            \"ee064afe-cefc-4547-9fd3-7a599688d0ee\",\n            \"62258b5a-9eff-4ff0-bdbd-c0e7e97da1c7\",\n            \"959aa433-f7d6-49bb-be1b-8d80f3155417\",\n            \"a68d728f-e9f6-4127-9664-46c0169148ae\",\n            \"28bcbc31-3918-4b0f-9914-2b710966d015\",\n            \"7f29a91a-28b1-4474-a6f4-c6f521761567\",\n            \"41845a61-941d-4c24-8824-f927f9c19d12\",\n            \"0c9a971f-78f3-4ba2-9ebe-4eba0e2dc556\",\n            \"0d998dc0-3524-44b8-a3ee-d4d230aeb4a6\",\n            \"f69a4df9-c8d1-41b4-8be2-4ba1574b8e9b\",\n            \"c6343025-acf3-4680-a833-ad5782d8bcc1\",\n            \"cc681691-6e21-4deb-af53-8d3a83662012\",\n            \"14ed556d-1b06-4417-9378-8ddf3047b549\",\n            \"b7dce340-f02a-4d5c-8470-09ce4c311b20\",\n            \"edbbba90-cfc2-4157-9d3a-68d936a6867a\",\n            \"770fe896-09bd-4b2b-90b6-9633f3571436\",\n            \"97c06f67-15c6-4ecb-8c63-96d9ac068d90\",\n            \"572eb8dc-b5e3-40a9-9702-befa2a71b6d5\",\n            \"d46be836-b69c-477d-b031-87a83a3afbcb\",\n            \"69b15918-87e1-46e2-82ea-90291df79219\",\n            \"07347210-be4a-44a3-b1ce-8a86057ec298\",\n            \"ff64dbe7-5de2-4455-a35e-70f3a087c241\",\n            \"142d4b68-ffee-465d-a779-6b295ff09e6d\",\n            \"c7155f49-dec9-4b6d-b106-79a6ab174b84\",\n            \"1aa3a467-6010-4c69-84e7-67911b1ea0bf\",\n            \"9f3bb9aa-8ace-40ee-973c-b8d635d7f981\",\n            \"f5a47409-972c-427f-9afd-d8031f35347c\",\n            \"e37bdb3d-cae3-4309-a0a5-ac66a487646e\",\n            \"eab7d241-9ff3-4ecd-a0d6-7d6b84891409\",\n            \"ad8f6b6e-1857-4ac6-80fc-9d05a0ae57a0\",\n            \"d55269de-023e-4c80-b4e1-45d2df3586cc\",\n            \"f1b3b377-941b-4187-a05e-def41a7e3866\",\n            \"3d7d6ed3-f1b3-4026-a82d-9309312f0c91\",\n            \"d7335f60-0570-4dc7-8c51-6a01674ba141\",\n            \"900f5b76-4121-410e-92ed-e5291931aace\",\n            \"cc6ab85c-9eea-4b55-b8cb-55a693eb0624\",\n            \"4fe4b405-c113-4b3f-89f3-a24a44eb26e6\",\n            \"ef078ebc-2daa-4675-a57c-47043cc5e01c\",\n            \"771db64a-0c0b-41c7-bd23-95405bd3d6d9\",\n            \"2f02e045-96d2-4a9c-b98d-023466c9835b\",\n            \"36b79647-756b-427f-92a2-6e4a0e828f90\",\n            \"cf95916e-38d2-4c57-ac17-ed07a677c2b3\",\n            \"d60a1d5a-feff-4ab0-86c6-2cf7092d2715\",\n            \"4132ea2b-b431-454a-923b-c1f9b3bded51\",\n            \"c4a09a6d-6a8e-492e-b15c-3d621cc0b3fa\",\n            \"28945234-57cf-4cd9-9834-e7444ed1efb1\",\n            \"9e335f07-3866-4a1f-99d2-23f9839986b0\",\n            \"4b45e25e-193f-4d96-acda-40c468671b43\",\n            \"7334e93b-dfb5-444b-b447-c8272e1b5e79\",\n            \"c2005f94-bfbb-493c-aa71-5a54eb6c7946\",\n            \"21cd3a38-bcc9-402a-9723-605794cfb0df\",\n            \"a796d739-f6c1-4760-97bc-431e2e85e3c7\",\n            \"1d6d320c-10f5-48f0-bb2f-ec58cf09640f\",\n            \"47501b35-5e88-416f-a0fc-c330662d495e\",\n            \"41865819-1348-4a3d-804d-c6be23c3612f\",\n            \"b30503f5-9618-4ccb-b4d3-d1c9ff6d3805\",\n            \"6e0d04b6-6ec3-4118-9ce2-be75dd498cdf\",\n            \"f68126ce-ec99-482e-98f5-c3a58bb21f1b\",\n            \"930c9aee-7c75-4b83-8000-947bf5fbb8a2\",\n            \"8c281fcf-0381-4f93-a1bb-b97cca781f18\",\n            \"3a9a2426-0182-4963-a5b5-be446d79170c\",\n            \"c541e872-6d23-4042-b440-209a3eae6205\",\n            \"9e625cb4-fb08-4a10-8b7e-4f148711b8e4\",\n            \"740e56b4-7a34-4993-a427-f49d3c3ffc96\",\n            \"26efcdb1-ab03-4b37-9221-a407c274e822\",\n            \"f51db0b6-ba9a-4fc6-ad6b-c52101aa0db4\",\n            \"5be988d8-17a6-413e-9a8b-7c039caac1d2\",\n            \"652738c8-4b6e-479e-8c5c-d640e0c00280\",\n            \"3da10745-2d2a-4a51-8b79-7f17ce0b4652\",\n            \"2f57d924-536a-4715-9d9f-320edd6a61eb\",\n            \"39dbaddd-e133-46c0-816f-a319c3e78014\",\n            \"ba871249-c03b-47db-9511-99e362cc796f\",\n            \"b51cdc7f-62e0-429f-9be6-61beeec36b7e\",\n            \"1b24520b-6bd8-4edf-9215-6fefb5bc7197\",\n            \"a32c6c57-d381-4d24-beaa-23a59c9a2098\",\n            \"51496029-f71d-4ce3-a93a-862e82b54a28\",\n            \"1a1316f5-a64e-4a0d-9dad-673f187a7102\",\n            \"84eb7134-3683-455b-a4ab-7a49a9273c07\",\n            \"89c05d4d-da2e-4088-a4b8-07f240f11407\",\n            \"6d708a1d-75f2-4e21-8b09-649ba8aa5d90\",\n            \"9b70fd3d-6241-4a3e-842d-1ec27570604b\",\n            \"d494bc70-2832-489b-a828-d781e0baa064\",\n            \"e22f105d-ba54-4bb9-9e4a-0c94829360d2\",\n            \"b6ad1e01-e433-4702-b796-67edf372d9db\",\n            \"07b2e79f-b5c1-4f10-9e03-69bda1f8abd1\",\n            \"6e61c7fa-2b00-4376-b23c-81e2aed0aa9a\",\n            \"b522564d-1347-4878-bfbd-cbc8d93d207a\",\n            \"51606985-c9ce-469a-817d-0c3dbc6ceb2b\",\n            \"0ea5076b-ad54-48cb-b9f4-2f58ac3b74df\",\n            \"2c14e2bb-7933-4d02-b153-cbf4b82ad8f9\",\n            \"02258a2e-8f72-4573-a9f9-5f6bb23c0098\",\n            \"3d1c526e-8637-4f26-a67d-cc26c139a664\",\n            \"01cc027a-e13f-4867-a339-2ba15fdbbd6b\",\n            \"0d599fcb-f048-46c2-9451-84384b6d23c1\",\n            \"6ca68b38-88bc-4ea1-b9cd-661f7cfd19d1\",\n            \"d3276fb2-839b-44c9-b80d-dbf68b81fcc4\",\n            \"7607496b-8da1-45a9-b1c0-7a1bcb2d876a\",\n            \"78234260-ba0d-40f7-b423-8036c090663e\",\n            \"26544cc8-448e-4878-9d0d-a8a6a2f8b6ff\",\n            \"08976342-db24-4e34-aaf8-2244549d942b\",\n            \"e2e2d94d-5fa3-4885-8f92-14170b0e5b24\",\n            \"0b53670b-defb-42ff-a2f6-4941038f9391\",\n            \"01ecdbcd-491a-4efc-8e1e-eb8ee945bd77\",\n            \"9ec5d75f-82f5-4df5-9fcf-2684d266dca5\",\n            \"ecdfa731-0b49-445e-8dd7-750f7129e7ee\",\n            \"42a77dca-bb33-4016-af64-a1c3d3011527\",\n            \"e0134009-ced8-45a7-a2e8-416ec36c06a0\",\n            \"15ed7399-0ab5-48f9-97c4-583670b82b00\",\n            \"08affbdb-1b26-45f2-897a-ef8e47e5d5d7\",\n            \"4844518a-4150-405f-b6c2-05e36f4c44d7\",\n            \"e3f3c609-410a-4f87-9c23-32c80938fbb9\",\n            \"865989b7-7198-4139-b9b8-e76564cab186\",\n            \"4806c78e-e132-417a-a47b-f79cbd41248a\",\n            \"7900d273-f6e6-46f1-ba2e-fb11074497ae\",\n            \"2d0bd371-2822-48e2-9fdf-baef492637cb\",\n            \"e1346c35-fac4-4fdf-a8c1-bfed591cb567\",\n            \"127d368a-b053-46ef-bda6-01e0e878df82\",\n            \"ddcc4b3d-4b10-432c-a4f8-80d6cf62ba1a\",\n            \"df9cdb3a-9946-4203-be54-d9295eecf00a\",\n            \"2ca60d78-09ca-4558-94eb-d40c5505c35d\",\n            \"2d5f3fe9-6a87-496d-aa15-6d14b99e14b5\",\n            \"2f77e205-2792-4c6a-ab79-2652a434addb\",\n            \"e32b11e7-2423-4960-b8c1-c0a618091289\",\n            \"cbb382d4-7b8a-4086-8128-3610bec6f610\",\n            \"c6444a8e-0420-4cc0-b26b-2f1282e31ec2\",\n            \"4162cf09-f14a-4f73-a707-305d856ab588\",\n            \"39d9c025-2970-447f-ba40-853783191069\",\n            \"af21e9ce-ff16-497b-a37c-334167deca68\",\n            \"617c5e67-1a18-415f-8bb2-7c954fcba752\",\n            \"544a0df1-94fa-48fb-80ac-47ea21f4272f\",\n            \"15016633-2d6d-4f4c-a352-c7a948fbd033\",\n            \"0eb37b5b-b29d-40ff-a280-efaa682baa32\",\n            \"912f94d2-e8d9-4019-ace9-ae3554fd9ef3\",\n            \"aa8103f3-07db-4a96-a3dc-6b0feb242e7d\",\n            \"6d21a131-73e8-4ebf-b3e8-e91cef67a903\",\n            \"4d431171-d8b0-4a0c-87a1-d793315ec1fc\",\n            \"ba826ef9-b332-412c-b693-17e3ce516479\",\n            \"4151f038-0a47-4dbc-bc25-4566e06cc7d9\",\n            \"4d3911a2-c555-4bd5-9e8a-5d42ae41ef0b\",\n            \"dc956db9-4965-4c1f-bbae-f2d937afe5ae\",\n            \"c8d697af-67d8-44bf-a92d-4e7467aee666\",\n            \"d89b13fe-91de-43ad-832f-a999de64832a\",\n            \"c2bcd5fb-1ab5-44bf-a4cb-e5796375b059\",\n            \"603f0d46-7a48-420c-8791-d9a625574852\",\n            \"e76ae668-6abb-4491-b9a2-3ae724d21f3e\",\n            \"59ca1a28-46af-431c-9576-4e42300be00a\",\n            \"2d364ff0-8829-493f-bcea-b6be003e1659\",\n            \"6f6eae6f-811d-46fe-a96f-3676231e034e\",\n            \"0f30c49b-fb30-45f3-b70d-349af41ddfba\",\n            \"6c78c70b-d1e7-4808-a566-f03f26faec81\",\n            \"6987b8b7-6daa-4c68-8c27-565db007f94e\",\n            \"9c333978-884b-493e-a627-9185a5a431d2\",\n            \"52572b2a-9c03-4528-a60f-4288952e2970\",\n            \"2618e747-2504-41fc-aebc-87215bfc4ca4\",\n            \"6f66ab80-8a6d-4677-96c7-90e3553e9873\",\n            \"dda6d89f-afed-4963-b6a8-4658f3e5a553\",\n            \"6df0f71b-9f16-4368-a324-e98475b0e65b\",\n            \"fd9588bd-0fac-4f9a-beb3-29c333157ee9\",\n            \"8f9dd3cc-761b-4f50-92e7-d3f4456ba978\",\n            \"fb930d79-212a-4d58-8315-ab2f18128035\",\n            \"2c7bd57d-b978-4e46-a522-05d46463d1b9\",\n            \"79748507-464d-446a-8bce-6bdd335b622c\",\n            \"521ef67d-0a24-48b3-ae81-d8f2e30dce97\",\n            \"2bd0563d-8f9c-4e83-9819-1df7db271fb7\",\n            \"83e1b5a3-368a-46f6-b5a2-ca1a3d27fae5\",\n            \"3f510e82-34a5-41c4-a754-8c13f0749dcb\",\n            \"9a9cb586-3a96-4fd8-a35d-cf811e65a5bd\",\n            \"0498b889-f2e8-4465-97ee-d4ecce3b8ad5\",\n            \"0417a05e-d75b-4d92-a3a0-2e88e483def6\",\n            \"88d5b2bb-7c9b-4793-8ff5-c98031821529\",\n            \"3474938d-b10d-42af-87e2-3bf7a2cee5e7\",\n            \"47330cc5-25fe-422d-b3ff-17d0fc07c17c\",\n            \"f85e2662-56c7-4a05-ac92-56ce9b137bfd\",\n            \"2bf91ce3-9b91-4ebd-815c-eb9a919733ff\",\n            \"10d3ae72-7aff-455b-b38f-ca7b0032b3f4\",\n            \"fe756230-5991-4c26-bf97-8cabbf132851\",\n            \"e1004e6f-ded9-405b-bf99-25718e88a9ec\",\n            \"3690a53d-4028-407f-a434-13296fa5224d\",\n            \"85f56444-ca51-4686-a91b-09b42d2b2230\",\n            \"763582f8-4518-4467-ad69-b8bf612b2fff\",\n            \"6528cbcc-594d-4ac3-9561-0c3a58bd4e92\",\n            \"ab844c11-fbbb-4a29-aed6-e2a020b0eb1d\",\n            \"0d823653-846a-40b8-963c-dfdcb46c144b\",\n            \"5da88401-0442-4c05-8233-122d84c84e8d\",\n            \"00fa14c2-d8d5-4575-9632-87b608d507da\",\n            \"72c5933a-781e-41a8-99c7-f9023d16fde7\",\n            \"dd5500d9-63d7-4fc7-bde8-a7e0b5dc1028\",\n            \"1a135655-92b8-48c0-8dc2-96d14d681607\",\n            \"5fe9c18d-8813-46de-a68d-7c8a4b9c3f74\",\n            \"b7131762-6b65-4818-8501-2589843a724b\",\n            \"b92cd7db-49ac-4d33-8351-c2827d16b31c\",\n            \"789565b9-1efb-4d39-b014-ee931eb6836d\",\n            \"1c7ef72f-6476-4b02-9269-4acf4d610bf0\",\n            \"873efaa1-e0b3-4acd-9cfb-be07e1c41736\",\n            \"1a27748f-8ca0-4801-90a6-2f3907d5e241\",\n            \"670296fd-d99e-42ac-b7f2-2a00c09ee1f2\",\n            \"1a925fc2-fa0c-4a80-a1f8-a4b30dc742a3\",\n            \"147921d1-9dac-4f5f-9851-36c0f000f95d\",\n            \"589a7ae9-9baf-456e-a419-897623132350\",\n            \"4c0a7ede-8f20-4c1b-859c-8d4bfe31be21\",\n            \"60f39f68-7355-4d69-873b-a0fef6566583\",\n            \"a621de7b-ad59-48dc-80e5-7deaa77da3cd\",\n            \"b1d71139-15a9-4295-b9c2-8190db5638a1\",\n            \"80576267-570c-4059-a0e0-6e3d4b20b9c5\",\n            \"e1481cbe-8767-44cc-b215-533cae1f0dfe\",\n            \"8388d41d-ee13-47a4-ad0a-ed9aa2bc58e7\",\n            \"7d045fef-080a-4ff1-b5a4-ea89266a4500\",\n            \"c3e28339-3e92-4d84-8206-38da6cd89c95\",\n            \"768b9800-e3c9-415d-8e0e-69c935cd4062\",\n            \"4127aec0-4ef0-4649-852a-08d6de2f268e\",\n            \"11fbc810-36e4-416f-8678-2b6ec446ca55\",\n            \"76def37a-f142-40d2-bf1c-03e95eb505a6\",\n            \"08582a2a-cd95-4bbf-9244-10f3a53aa1c8\",\n            \"98f580cf-1b00-401a-aa31-c7df62150773\",\n            \"e4802834-7f98-494f-96b9-20d5c2d227d3\",\n            \"1ece2be6-f51e-4aba-b4e8-fd149d622fb0\",\n            \"f737bc26-a128-49b8-8b54-bceaa175b08f\",\n            \"072d5297-33f4-482d-8a31-c2ee1a8a860b\",\n            \"94c90b3a-4865-4286-b6fc-5d527739e082\",\n            \"973bbec5-9154-4167-acc5-16160b823bc4\",\n            \"6c37430f-7f52-486f-ac06-6548619d5027\",\n            \"28a57ea6-2ae4-42aa-9785-ecfe82b947dd\",\n            \"ed42f3e7-b328-441a-a46d-25581d86be3d\",\n            \"ae23d1b4-edcd-479d-9aad-2a9e84e72c06\",\n            \"19408332-29cd-4d93-936c-04b752cb3b9b\",\n            \"bf705edb-f771-4654-8787-d2af7e163666\",\n            \"cb19e44f-82d4-42e0-9f0c-e18114000ea9\",\n            \"181e80f5-7069-4334-a010-3f28cfd2ca88\",\n            \"e3e061ab-a489-4c64-b5df-8b70402759ec\",\n            \"2998bd01-7a39-4cfa-b827-a34cbcaac8b4\",\n            \"f5064323-6b95-4fb9-b83a-2b6e491611ea\",\n            \"5775e64f-d2de-486f-bc3a-8e96447c8e8f\",\n            \"1998a77c-f707-44c9-b5e6-f680714575d2\",\n            \"f3cc403a-0b7f-4180-b507-131c516ff555\",\n            \"27b59426-904b-4695-a807-d9ff5ababe6b\",\n            \"e58852f2-f948-48b7-82cb-35927a056d76\",\n            \"fc253814-f84a-42b6-b71d-98458d436eb0\",\n            \"8eaf2559-547d-4fb6-90d5-c49f7665503a\",\n            \"9548a80b-a54c-4ece-bf7c-1a6af98f61a4\",\n            \"071f4dec-5022-4e7b-bad5-a5fb130452db\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93281555175781,\n      \"Text\": \"Request for Verification of Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5720629096031189,\n          \"Height\": 0.0242980495095253,\n          \"Left\": 0.048121001571416855,\n          \"Top\": 0.0776592567563057\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048136040568351746,\n            \"Y\": 0.0776592567563057\n          },\n          {\n            \"X\": 0.6201838850975037,\n            \"Y\": 0.07837600260972977\n          },\n          {\n            \"X\": 0.620174765586853,\n            \"Y\": 0.101957306265831\n          },\n          {\n            \"X\": 0.048121001571416855,\n            \"Y\": 0.10123469680547714\n          }\n        ]\n      },\n      \"Id\": \"00cf4d83-8e25-4689-be64-3a9e3cba54da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"161e029e-b814-4bf4-84b4-e7debda91429\",\n            \"4a7b858d-a18c-4255-8311-522449963502\",\n            \"36087567-7b00-4131-a841-a1ef438bb6d9\",\n            \"245c97ad-0d67-4c43-9b99-00bd2beb435f\",\n            \"92180bc8-c608-4753-8b1a-52f60ba29afb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.57499694824219,\n      \"Text\": \"Privacy Act Notice: This information is to be used by the agency collecting it or its assignees in determining whether you qualify as a prospective mortgagor under its program. It will\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.872205913066864,\n          \"Height\": 0.01153297908604145,\n          \"Left\": 0.046745605766773224,\n          \"Top\": 0.10857418924570084\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04675225913524628,\n            \"Y\": 0.10857418924570084\n          },\n          {\n            \"X\": 0.9189515113830566,\n            \"Y\": 0.1096787229180336\n          },\n          {\n            \"X\": 0.9189488291740417,\n            \"Y\": 0.12010717391967773\n          },\n          {\n            \"X\": 0.046745605766773224,\n            \"Y\": 0.1189986914396286\n          }\n        ]\n      },\n      \"Id\": \"3dc797ee-5b26-4371-b515-5c6747e83415\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8449d125-7943-4682-879b-e9c7a31d488e\",\n            \"5cf944e3-b8d9-4ca9-a354-1c959daf2b57\",\n            \"38165075-5f6b-47f3-b8dc-fa334af50fcb\",\n            \"6608543d-3e2c-4790-a5c4-95803a567a29\",\n            \"cbe232e9-edb0-4cd0-94c2-1f2409bfa938\",\n            \"6783d7e0-bc51-49ac-86e0-20c6b71e1c5e\",\n            \"b74fa356-a621-47a7-abaa-c739e13703d9\",\n            \"5c528835-746f-41b6-8f2b-bf04da1d1fc6\",\n            \"97e01ab6-78a0-4990-b041-61286e50292e\",\n            \"d8061527-51a1-4cb0-974d-34ba40186f53\",\n            \"f7515735-c15c-45ca-949b-d08df650cfa3\",\n            \"d07723fb-83e5-43be-855b-b9f73af8e68e\",\n            \"34ff9602-7cbe-4786-bb4f-359edb0ba0d0\",\n            \"9af235be-29c6-44f0-8796-4b69176347d1\",\n            \"471b1ed8-33f0-4971-8964-43829c846c6b\",\n            \"ecd6cc91-a997-43ba-bc30-3bd2dcc5c48e\",\n            \"a63c71c7-eae9-4ebe-a580-7f41dcae9c29\",\n            \"42c54700-da31-42ce-bb3d-afda803cd346\",\n            \"05455141-e609-435a-894a-761f816ac664\",\n            \"527d5ccf-e3e5-465a-8497-52b59542d737\",\n            \"488b6335-51a2-4ac9-b7b4-a796dc0ce5b7\",\n            \"63a0e993-2086-48e8-8f9a-31c0ec0bd60a\",\n            \"d70cbbb9-8fef-42a5-84bc-25343036081a\",\n            \"a0b74ee4-7d0c-43e2-85bd-6dc8f8e9fe35\",\n            \"411385b6-2e3b-415b-a515-bdf4f15becec\",\n            \"b1555574-4f2d-49c2-aff0-7efdb0fb2930\",\n            \"a2f319a9-7402-43e7-a856-54f870fabb12\",\n            \"45e2793d-686e-40f8-82ea-47dad61fcfbb\",\n            \"1b86340e-f35d-4560-9049-24ef2b18360e\",\n            \"7e91fc74-b07d-4507-8079-d9d24ed5f447\",\n            \"74f07418-e417-47f3-a0d3-f4e8fb36cd5e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.30109405517578,\n      \"Text\": \"not be disclosed outside the agency except as required and permitted by law. You do not have to provide this information, but if you do not your application for approval as a prospec-\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8728941082954407,\n          \"Height\": 0.010645116679370403,\n          \"Left\": 0.046363502740859985,\n          \"Top\": 0.11814768612384796\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04636958986520767,\n            \"Y\": 0.11814768612384796\n          },\n          {\n            \"X\": 0.919257640838623,\n            \"Y\": 0.11925671994686127\n          },\n          {\n            \"X\": 0.9192551970481873,\n            \"Y\": 0.12879280745983124\n          },\n          {\n            \"X\": 0.046363502740859985,\n            \"Y\": 0.12768015265464783\n          }\n        ]\n      },\n      \"Id\": \"52a0a08c-658e-4b67-bd7a-94d8addfda8a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7be700b2-8347-42af-9dbc-c8fb2ac428d2\",\n            \"8f4189b9-1861-49e3-ac3b-72a84c3c171d\",\n            \"57e10458-c175-407a-8649-4f93facf0fa4\",\n            \"76dfb847-4465-413e-8cf0-5bcaa89ed053\",\n            \"d9cd7771-6833-42e1-9d48-54e925885989\",\n            \"8002d399-c2b8-4182-a710-cf040a8ba56d\",\n            \"dd7fa4ac-42f5-4f85-acdc-4f90e8058305\",\n            \"293273eb-3111-4097-85f0-9ba0489eac8b\",\n            \"b19e53a5-6738-4dd7-bf3a-194685477bd7\",\n            \"dd37e75d-5b66-4716-ad52-d4a5ef18347a\",\n            \"edfbca64-be6c-492a-9bba-2650c0319d25\",\n            \"b893ff98-52ab-4768-9237-e6b5c4bc4ff5\",\n            \"b74faa64-3d4f-43db-b6e9-30d7f57cdffd\",\n            \"29d8b1df-e0bb-410b-988a-5876180b36d8\",\n            \"3d528bf7-828c-4dd7-a800-9d71da467fde\",\n            \"dd8a326f-5cfe-42ca-b918-61017557cbca\",\n            \"51ed5281-9a52-4398-8d14-96539a43252d\",\n            \"2c1c22f3-75f7-4b47-a6fd-d0c3470cbe3e\",\n            \"d1aed83d-0282-4b6c-98bf-8cabb7a640c5\",\n            \"198dd4a1-6d96-4345-b6d1-9261575c9dc1\",\n            \"5bd8ef0e-1101-4f4b-8c4a-2bce8b838748\",\n            \"c6f8cd14-1d40-4e74-9dc8-63a32c9bd62b\",\n            \"7884240a-cefb-4057-818f-7b449ebe08b3\",\n            \"90fdcfa0-4200-4fe3-8a28-1e6a232ff86e\",\n            \"7c7edd40-065b-4f90-99ba-1bd7edd718c7\",\n            \"7dfb8fdf-72af-4b5d-b6bc-110b5601178c\",\n            \"c39f315c-f1b6-4001-a548-864ab3c11151\",\n            \"fb6e8151-f066-439f-ace9-c4e378736746\",\n            \"70cae295-1178-4df5-a357-5d91298fed0b\",\n            \"6ade1be4-3f39-48a4-9840-af8a23437486\",\n            \"ac08d647-b335-4832-8c4f-10a216253f07\",\n            \"122ccfde-8420-4304-996a-41637ac513c4\",\n            \"a34fd7ab-a448-46ca-b67b-280780ca1291\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.05840301513672,\n      \"Text\": \"tive mortgagor or borrower may be delayed or rejected The information requested in this form is authorized by Title 38. USC. Chapter 37 (if VA): by 12 USC. Section 1701 et seq. (if\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8685705661773682,\n          \"Height\": 0.011390959843993187,\n          \"Left\": 0.04630959779024124,\n          \"Top\": 0.12761282920837402\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04631616175174713,\n            \"Y\": 0.12761282920837402\n          },\n          {\n            \"X\": 0.9148801565170288,\n            \"Y\": 0.12871994078159332\n          },\n          {\n            \"X\": 0.9148774743080139,\n            \"Y\": 0.13900379836559296\n          },\n          {\n            \"X\": 0.04630959779024124,\n            \"Y\": 0.13789281249046326\n          }\n        ]\n      },\n      \"Id\": \"ba5f837f-3fe7-43fa-8202-cd8f8f0ecb6a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8cc4a1e3-20a8-463f-ab08-2852ba15e973\",\n            \"7aeb961e-0e9e-4914-9655-2589586d97d8\",\n            \"95c43370-ddff-4040-a817-337ee7ea709a\",\n            \"2f05ea87-717f-4671-ac86-972c39709b0c\",\n            \"e01d3d07-fceb-4f4d-9274-73b6e8255952\",\n            \"5cab1e71-c129-4bdb-a118-4badf4cacb4b\",\n            \"756ade2d-f054-4397-823e-cb5f51579a22\",\n            \"cdf635a9-a081-4f1e-81da-4cecc91f4050\",\n            \"d1119243-bf0f-4918-ac43-101ad0500d44\",\n            \"85e46b95-3ce3-4fe3-82c9-e26b243bdb2f\",\n            \"8a039327-b823-45fc-bef2-af96deb7bebe\",\n            \"35c6ee58-45d8-4e14-b2d2-89a3910f7cc6\",\n            \"258e38db-9fdc-4cf2-bb25-9ada3d581a28\",\n            \"da2a452e-6312-491e-a102-23e5ed28b815\",\n            \"c9c512f1-9e62-4c65-9562-e4abe3a88bf6\",\n            \"27784d53-5607-4d1c-a2c0-81c237284217\",\n            \"791c2c59-7daf-44c0-92bf-339ee7d3227c\",\n            \"4649f977-a77b-4c45-a6d3-905221302bbe\",\n            \"a182e2c6-8ebf-4860-8204-4ba5b689afe1\",\n            \"67cd74ab-8a06-40bf-bc9b-feeb4615d816\",\n            \"b80b09e1-072e-44b0-8bda-4d8d18d56021\",\n            \"f492c1e0-6313-49ae-950e-2ea4e45be24f\",\n            \"25767c45-dd98-4d7e-95ac-534e0ca6074c\",\n            \"17579d41-be55-41ea-bddd-32fd69cfcbeb\",\n            \"68306dd7-bd1c-4509-ab56-56b631feff2b\",\n            \"64a8c052-55ef-4946-b5bd-08f28e4d8395\",\n            \"ccaee2a7-18d2-43e4-8481-43361ee122bd\",\n            \"0f0df333-4ce7-4d34-8770-f78b6511cc2c\",\n            \"2803bd62-ad15-4bfe-8ed2-5409ac16a435\",\n            \"c04d30b1-2618-47c1-9e6d-09f4d06a220a\",\n            \"f7470c8d-23fa-42a0-ba58-8d6ed541883f\",\n            \"552096c7-1714-4997-b24f-313c41964d22\",\n            \"d78bbe58-551d-4826-a778-5078b2524cb1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 85.3040542602539,\n      \"Text\": \"HUD/FHA); by 42 USC, Section 1452b (if HUD/CPD): and Title 42 USC, 1471 et. seq., or 7 USC. 1921 et. seq. (if USDA/FmHAI\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6219465732574463,\n          \"Height\": 0.010687744244933128,\n          \"Left\": 0.04671335592865944,\n          \"Top\": 0.13728974759578705\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04671967029571533,\n            \"Y\": 0.13728974759578705\n          },\n          {\n            \"X\": 0.6686599254608154,\n            \"Y\": 0.13808511197566986\n          },\n          {\n            \"X\": 0.6686562895774841,\n            \"Y\": 0.14797748625278473\n          },\n          {\n            \"X\": 0.04671335592865944,\n            \"Y\": 0.14717945456504822\n          }\n        ]\n      },\n      \"Id\": \"a2917b26-b7bf-47a2-8794-df4de8a89f08\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"03ae7cf5-7d20-4159-bad6-0c180c99de77\",\n            \"a92e8c7c-0b3c-4fb3-9aae-47cbdc5bc4c7\",\n            \"e86e7bf1-bfc5-4896-a96e-0e43978f384b\",\n            \"ba5b3da8-e2ce-48ce-84e8-3a518c2a9c1f\",\n            \"c6a56af1-6da1-413d-9cb5-f774a00ec84d\",\n            \"1680fe2b-b95d-4644-aa85-14754f43f805\",\n            \"9a8dfefc-b5e9-420d-8785-084488f212b2\",\n            \"42b0d582-1bb2-488a-8e92-bbb79083a037\",\n            \"260a196e-70c4-4933-bc37-cafb15e7f6a9\",\n            \"304aef73-fca4-453f-90b8-62d6803f926d\",\n            \"dd768912-47b6-44b1-bd20-37ae634747b6\",\n            \"f1030270-f095-450f-8af8-f3b369d34822\",\n            \"4cae01e9-ef6d-47a7-a759-d574e94489b3\",\n            \"65cf8508-d3b9-4db0-965b-dd5b9bc211a1\",\n            \"b1f48bd6-fd29-4bc9-b524-5c87dd1aec5d\",\n            \"d4375d7b-f229-454d-b27d-e238b99586c6\",\n            \"6fbfc559-0658-4463-ae45-12c73297528d\",\n            \"9c5922fd-3d2c-4270-b6d3-c4b43925c08f\",\n            \"7d6ebe61-ffd4-46f9-9c28-061619286d41\",\n            \"6beaca0d-8194-443d-a555-44bf04c1afe3\",\n            \"2ba0837b-0410-4d26-9b99-106524c8eba0\",\n            \"d5c3d825-2a7e-4250-88f1-56f860005f41\",\n            \"08a0ef5a-3806-4651-aef9-db578ef9b994\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.83300018310547,\n      \"Text\": \"Instructions: Lender - Complete items 1 through 7. Have applicant complete item 8. Forward directly to employer named in item 1.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6427584290504456,\n          \"Height\": 0.010449457913637161,\n          \"Left\": 0.04572010785341263,\n          \"Top\": 0.15636056661605835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04572625458240509,\n            \"Y\": 0.15636056661605835\n          },\n          {\n            \"X\": 0.6884785890579224,\n            \"Y\": 0.15718786418437958\n          },\n          {\n            \"X\": 0.6884751319885254,\n            \"Y\": 0.1668100208044052\n          },\n          {\n            \"X\": 0.04572010785341263,\n            \"Y\": 0.1659800261259079\n          }\n        ]\n      },\n      \"Id\": \"23a64f16-f465-44cf-8ee8-bd5b9d7b25ab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"479dc0ad-807a-499e-b468-1270151a4499\",\n            \"c47307ec-e4bb-411d-a8d4-7db210cf2a92\",\n            \"0a290fe8-dcfa-4dbb-96e9-a0e48d4fbfc3\",\n            \"7f8b2745-97e2-49ed-ad7b-aedd2902c509\",\n            \"5ab7e7d3-9c63-4133-8d9e-408436f402c1\",\n            \"193046aa-a76b-4051-b428-b5433c86cca9\",\n            \"bc2081db-6d18-40cf-a29f-e3179b69fa6d\",\n            \"90f06808-b4bd-4c7d-801f-bfe3fac753f8\",\n            \"e1357c47-abda-4eb9-a430-376349767e4f\",\n            \"9d003567-b75e-4209-8bdd-99a5f9f462b8\",\n            \"ffa7cc6e-f2d9-46a9-aaa1-80d3f9adc7ee\",\n            \"3383b9e4-7f06-4d43-935e-c5e9a46c226f\",\n            \"5a4c9d12-aa69-4818-b304-c309c0ab8eb3\",\n            \"cdde8088-b5da-48d1-af39-aa2eac232b42\",\n            \"c0123889-b599-4526-bcc6-d58f11e348dc\",\n            \"1c842343-d2e0-4ed0-978b-eb41354cb338\",\n            \"0c5eb0af-eae7-46aa-8666-dde2897a7f3d\",\n            \"e94662ce-160c-4825-955f-ed1331211e8c\",\n            \"d5e4c858-885b-4140-9167-a20e42b32a81\",\n            \"9eb3f1dd-128a-44de-93b0-e149fb670919\",\n            \"b0d2de31-a4b7-41e3-a4d7-c1ec12db1a30\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.85812377929688,\n      \"Text\": \"Employer Please complete either Part II or Part III as applicable Complete Part IV and return directly to lender named in item 2.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6236759424209595,\n          \"Height\": 0.011462762951850891,\n          \"Left\": 0.12305746972560883,\n          \"Top\": 0.1654299944639206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12306392192840576,\n            \"Y\": 0.1654299944639206\n          },\n          {\n            \"X\": 0.7467334270477295,\n            \"Y\": 0.16623516380786896\n          },\n          {\n            \"X\": 0.746729850769043,\n            \"Y\": 0.17689275741577148\n          },\n          {\n            \"X\": 0.12305746972560883,\n            \"Y\": 0.1760846972465515\n          }\n        ]\n      },\n      \"Id\": \"f5bd8c64-3214-4424-884b-bdee57873de3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2e5a60fd-a9c3-48d6-b1ee-35fc8bcd4b46\",\n            \"60690b4f-31ea-4d71-9318-00b10b37bf63\",\n            \"9bc9bde9-43a7-4d98-98f1-7e7bfc339755\",\n            \"413cf14c-4339-4f67-8a40-e7dfa556d578\",\n            \"f5cdb876-f220-430c-a3b6-65533c211b2e\",\n            \"d000e02c-0d62-46d2-9960-c4ec340f9c82\",\n            \"ba0c0db2-dede-4b11-ad06-f3887dc04fa6\",\n            \"9d17f309-c5a4-4719-baba-d0c42a024fe0\",\n            \"1cc04328-7f2f-4555-86ba-ec2d35d888aa\",\n            \"5438ccf6-acad-4f2d-8f1c-6f0973839b16\",\n            \"4e08d73f-876c-4d58-a558-2c42cb8bae18\",\n            \"54122326-df22-40c1-928b-5e5d00939dad\",\n            \"45299a70-da20-4246-ab67-ea83203efbcb\",\n            \"7a33499b-7d19-4cd7-a5c7-2130f4fb0be7\",\n            \"9d00c25d-c57c-4713-9219-af343c8b2022\",\n            \"5a079e20-05ea-49ae-a42b-d1c29ec3c1e9\",\n            \"c2abcf62-d632-4843-8ab9-583fe887bd6f\",\n            \"d8ec3cd3-e367-4aa2-9377-f23a8d4ea9f7\",\n            \"0f8c3f21-2547-4fa9-9dc8-ae8924289e49\",\n            \"147c9073-0f5b-4728-b0cf-244393e25629\",\n            \"1aef89b4-ee34-4728-8901-d9a9bb9b52a9\",\n            \"633e6110-128b-41f8-b654-197d4a073dda\",\n            \"5a3f2584-e1ef-44e5-8b75-5fb20581cd17\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.21664428710938,\n      \"Text\": \"The form is to be transmitted directly to the lender and is not to be transmitted through the applicant or any other party.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.6351824402809143,\n          \"Height\": 0.010548186488449574,\n          \"Left\": 0.12264451384544373,\n          \"Top\": 0.17550744116306305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1226503923535347,\n            \"Y\": 0.17550744116306305\n          },\n          {\n            \"X\": 0.7578269243240356,\n            \"Y\": 0.17633025348186493\n          },\n          {\n            \"X\": 0.7578237652778625,\n            \"Y\": 0.18605563044548035\n          },\n          {\n            \"X\": 0.12264451384544373,\n            \"Y\": 0.18523013591766357\n          }\n        ]\n      },\n      \"Id\": \"782a9b11-a031-419d-bdf2-0a4a730a40c1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"89c9f5aa-6503-4b89-9805-4cd7c1557989\",\n            \"452bf079-31f2-430e-95a8-c7e667c198dd\",\n            \"d4e132b0-eb75-40e7-9bcb-531ab525eda2\",\n            \"72c7efe7-71ed-4b4d-bc11-ee32510c5b73\",\n            \"a85725df-3797-47cb-8ead-c0215197bfe3\",\n            \"4150589f-3c55-4850-9dd4-d3c4a838d8ec\",\n            \"bd001ea6-cf4c-464e-a043-4f21ddffd507\",\n            \"fa2bf902-922d-4c41-8753-d745e7142a51\",\n            \"8e02255c-c791-4668-8ec9-f1f973ffb64a\",\n            \"4a7b8de7-b449-41e0-93a7-9b806e06eeab\",\n            \"d7be728a-54cf-4c44-9c67-37ada0d4f8b2\",\n            \"266a6136-a24c-4820-bcaa-41362b012a1b\",\n            \"e98f6985-cf7c-4760-8549-d5081dd1e895\",\n            \"e58f5602-e4a0-4dc4-8b4f-55097d01b7fd\",\n            \"9100b3a9-ddb2-4f87-8da7-175663f82dec\",\n            \"6936adcd-953e-415f-a473-58c8e4a80669\",\n            \"de286cec-fc3d-4889-b074-1a0baa440374\",\n            \"8db3ac7d-3a86-4c62-abaf-0c835f2281c8\",\n            \"a485a114-42b3-4c5d-be25-c4d8da4fef1d\",\n            \"02992bcd-d056-4ffa-84e3-d8e3012a1223\",\n            \"71e0dbb9-7866-4789-a84a-515a1c4eddf8\",\n            \"96478485-2e60-46ff-b9f0-f757caeca2ef\",\n            \"b44164b8-a6b1-4878-9d98-2da13824e8df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.31970977783203,\n      \"Text\": \"Part I Request\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12074872851371765,\n          \"Height\": 0.011355113238096237,\n          \"Left\": 0.04337155446410179,\n          \"Top\": 0.19877995550632477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04337872192263603,\n            \"Y\": 0.19877995550632477\n          },\n          {\n            \"X\": 0.16412028670310974,\n            \"Y\": 0.19893759489059448\n          },\n          {\n            \"X\": 0.16411371529102325,\n            \"Y\": 0.2101350724697113\n          },\n          {\n            \"X\": 0.04337155446410179,\n            \"Y\": 0.20997685194015503\n          }\n        ]\n      },\n      \"Id\": \"ff0a5962-2eaf-43e2-99b8-3ff802221610\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ca88b970-87b4-4c99-b09b-5d6bcde6eb6e\",\n            \"7137fc09-e208-4354-9de2-94ae24c1ea80\",\n            \"f5133965-4653-4f0d-a646-9ccad3351f57\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.39188385009766,\n      \"Text\": \"1. To (Name and address of employer)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21001526713371277,\n          \"Height\": 0.009648044593632221,\n          \"Left\": 0.04344172775745392,\n          \"Top\": 0.21236222982406616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04344772547483444,\n            \"Y\": 0.21236222982406616\n          },\n          {\n            \"X\": 0.2534569799900055,\n            \"Y\": 0.21263764798641205\n          },\n          {\n            \"X\": 0.2534518539905548,\n            \"Y\": 0.2220102697610855\n          },\n          {\n            \"X\": 0.04344172775745392,\n            \"Y\": 0.22173400223255157\n          }\n        ]\n      },\n      \"Id\": \"b36d0bf6-40c7-493f-99ba-178b5e5c5d85\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"401879e0-cd0a-48c8-804d-ad9a6f2366de\",\n            \"54418385-32da-49a9-9ad5-512298555916\",\n            \"8381112f-2ca4-4fac-bb8e-92375a11a80b\",\n            \"e743f0b9-64fd-4aca-a8ed-ce08a33a824e\",\n            \"f83bb4be-acae-442a-83a5-d74ac33c1dd8\",\n            \"827b6e20-786f-4df0-bd77-77a4e378f532\",\n            \"5c8e9154-2418-4915-ac03-2b8b3ab0e468\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.73070526123047,\n      \"Text\": \"2. From (Name and address of lender)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.209568053483963,\n          \"Height\": 0.00887221284210682,\n          \"Left\": 0.4907003939151764,\n          \"Top\": 0.21177555620670319\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.490704208612442,\n            \"Y\": 0.21177555620670319\n          },\n          {\n            \"X\": 0.7002684473991394,\n            \"Y\": 0.21205028891563416\n          },\n          {\n            \"X\": 0.7002654075622559,\n            \"Y\": 0.22064776718616486\n          },\n          {\n            \"X\": 0.4907003939151764,\n            \"Y\": 0.2203722596168518\n          }\n        ]\n      },\n      \"Id\": \"5d6ca23a-1cb2-4db7-b1fb-9df11f730b38\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"88f6b8f1-0d4b-4abe-a5b9-de12b3f86bb7\",\n            \"acce9083-ea25-4989-996a-64edd8f5582d\",\n            \"11c548c9-d59b-4050-b0b0-e43e862eccfe\",\n            \"7f38921c-b0ea-4cde-99dd-23be54006aa3\",\n            \"e33211c8-36ed-4331-a80a-a4ca40bdee58\",\n            \"cf5a6720-4592-4c59-8ed0-21bacb1fcc06\",\n            \"ef53829a-5014-45d4-8bbb-d2232756a66a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.39361572265625,\n      \"Text\": \"Alejandro Rosalez\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1597435176372528,\n          \"Height\": 0.014470377936959267,\n          \"Left\": 0.07605338096618652,\n          \"Top\": 0.23047727346420288\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07606229931116104,\n            \"Y\": 0.23047727346420288\n          },\n          {\n            \"X\": 0.23579688370227814,\n            \"Y\": 0.23068800568580627\n          },\n          {\n            \"X\": 0.2357889711856842,\n            \"Y\": 0.2449476420879364\n          },\n          {\n            \"X\": 0.07605338096618652,\n            \"Y\": 0.2447359263896942\n          }\n        ]\n      },\n      \"Id\": \"1c8c869f-a084-484b-95b9-d55022974eab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51666927-acdf-46e8-bd15-5c5e687de29d\",\n            \"d26730e9-bc64-41f3-b1a0-6cf86904cbfd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75497436523438,\n      \"Text\": \"Carlos Salazar\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12825055420398712,\n          \"Height\": 0.01230499055236578,\n          \"Left\": 0.5079284906387329,\n          \"Top\": 0.2315678745508194\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5079337358474731,\n            \"Y\": 0.2315678745508194\n          },\n          {\n            \"X\": 0.6361790299415588,\n            \"Y\": 0.23173709213733673\n          },\n          {\n            \"X\": 0.6361743807792664,\n            \"Y\": 0.24387286603450775\n          },\n          {\n            \"X\": 0.5079284906387329,\n            \"Y\": 0.2437029629945755\n          }\n        ]\n      },\n      \"Id\": \"048ded25-a3e4-44b6-a35e-d2007a6df446\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"70ce6cbd-d9de-4b57-b766-004426f1f739\",\n            \"6e994e36-fe0d-4f55-9641-41042d758673\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88883972167969,\n      \"Text\": \"123 Any Street, Any Town, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27806127071380615,\n          \"Height\": 0.015637699514627457,\n          \"Left\": 0.07811850309371948,\n          \"Top\": 0.24519796669483185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07812803983688354,\n            \"Y\": 0.24519796669483185\n          },\n          {\n            \"X\": 0.35617977380752563,\n            \"Y\": 0.24556657671928406\n          },\n          {\n            \"X\": 0.3561720848083496,\n            \"Y\": 0.2608356773853302\n          },\n          {\n            \"X\": 0.07811850309371948,\n            \"Y\": 0.26046520471572876\n          }\n        ]\n      },\n      \"Id\": \"bef3f893-6a01-44a8-a697-f1be47bcb325\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5852d2b3-1bd7-4d7f-90f9-682273b3b5d1\",\n            \"b5f92fb5-da67-4e58-a37e-ed5f4d25cb14\",\n            \"89fd11ca-f496-46c2-8d98-268e1d0bcd7a\",\n            \"aca92416-5289-4293-996e-21647aee9afa\",\n            \"22f98f57-12c8-4eac-b5f5-963452beb986\",\n            \"b37d5d67-185c-494c-b2bb-fa0654bb1ffb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8850326538086,\n      \"Text\": \"100 Main Street, Anytown, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27434098720550537,\n          \"Height\": 0.015337689779698849,\n          \"Left\": 0.5089448094367981,\n          \"Top\": 0.24650156497955322\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5089513659477234,\n            \"Y\": 0.24650156497955322\n          },\n          {\n            \"X\": 0.7832857966423035,\n            \"Y\": 0.24686534702777863\n          },\n          {\n            \"X\": 0.7832810878753662,\n            \"Y\": 0.26183927059173584\n          },\n          {\n            \"X\": 0.5089448094367981,\n            \"Y\": 0.26147371530532837\n          }\n        ]\n      },\n      \"Id\": \"29b52e2f-7f61-43d3-b11c-c883b6c11a1d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d9719752-e1fa-4185-aa6f-a636c9b53530\",\n            \"23f75aee-2239-4343-91fc-59e3f66b1c59\",\n            \"d2f0e599-e441-4023-baa0-e494302aa844\",\n            \"a6d0fc9c-4df2-4100-a349-37986281f008\",\n            \"4ddddb93-d798-445e-aabf-8823e063e9fd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.42879486083984,\n      \"Text\": \"I certify that this verification has been sent directly to the employer and has not passed through the hands of the applicant or any other interested party.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8358539938926697,\n          \"Height\": 0.012273235246539116,\n          \"Left\": 0.04263468086719513,\n          \"Top\": 0.2713693082332611\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04264182224869728,\n            \"Y\": 0.2713693082332611\n          },\n          {\n            \"X\": 0.8784886598587036,\n            \"Y\": 0.2724868953227997\n          },\n          {\n            \"X\": 0.8784856200218201,\n            \"Y\": 0.2836425304412842\n          },\n          {\n            \"X\": 0.04263468086719513,\n            \"Y\": 0.2825208902359009\n          }\n        ]\n      },\n      \"Id\": \"94ab75c5-cc71-40d0-aba7-5cd717f14a8c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a3a1e5c-5fc3-4fa2-b979-9879338a0154\",\n            \"4f3157cf-f918-4046-b2d7-af2a9fe0bc07\",\n            \"64fa9a48-c0e5-4437-bcf0-258f71260d87\",\n            \"86b3c501-01a1-473a-ba61-5be2ecddca06\",\n            \"a33cc125-7594-4ca2-a440-0a644a4ea9aa\",\n            \"40ef8b68-a34f-4faf-9c1a-5b9347457b28\",\n            \"7fe9d969-e0a6-4ee4-9c45-252bcf32de21\",\n            \"e0a5469f-9ea0-4ef9-a06e-2949cc560c5b\",\n            \"fd95f8f7-8b03-43f8-a4fb-71e15dc2f48f\",\n            \"40cd9611-53d4-4c1f-b596-15da3994d4fa\",\n            \"9895eac2-4736-49f0-a2e4-db4b5840de77\",\n            \"945c20c4-e1f3-4a04-a1ef-1e029c65dd59\",\n            \"ba37bf13-bc30-423f-9198-44f18f7f95d3\",\n            \"b2f5c81c-2722-4d03-8f94-cb17157846b5\",\n            \"f9b9fce3-bb47-487d-bee8-6099f3458299\",\n            \"f4f0937e-258e-4e9f-aa88-a59f97378678\",\n            \"e5347505-f713-4f74-9795-864107e70b50\",\n            \"746acce8-6e7b-4aa7-aa9f-b4a6be61d9ac\",\n            \"3853797e-1000-475f-9893-e29cd9f7fa0b\",\n            \"02b72b5b-2163-45ab-b1d4-a68ce5c14974\",\n            \"1f2850ba-49be-43b4-82de-e7f30695c979\",\n            \"c16806d8-cf3a-48d1-890c-6f1a1a9c0629\",\n            \"9c781f3a-f103-4d3f-a559-0b8198e08ee9\",\n            \"a9044e1d-b51c-4fe0-94a7-8586f01e3cb7\",\n            \"6f2132d0-2368-433c-a067-08348d16b0e8\",\n            \"054df87d-7c49-4976-9be8-0ad5ac314528\",\n            \"c8a945a2-ba08-401b-bb6a-f31f2cf4b1a4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.2507095336914,\n      \"Text\": \"3. Signature of Lender\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12283805757761002,\n          \"Height\": 0.009533312171697617,\n          \"Left\": 0.04251034930348396,\n          \"Top\": 0.28786832094192505\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04251634702086449,\n            \"Y\": 0.28786832094192505\n          },\n          {\n            \"X\": 0.16534841060638428,\n            \"Y\": 0.2880334258079529\n          },\n          {\n            \"X\": 0.16534291207790375,\n            \"Y\": 0.29740163683891296\n          },\n          {\n            \"X\": 0.04251034930348396,\n            \"Y\": 0.29723602533340454\n          }\n        ]\n      },\n      \"Id\": \"a0bbeee2-bce8-410c-bc1d-e3b7082984e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0c48f286-51a3-47be-b436-19631be4177c\",\n            \"3820107a-2e8c-4be4-b6b5-c4b62139e125\",\n            \"6b80a76e-7db5-4a71-91a6-cb60714a9d09\",\n            \"65237d8c-49e0-4e94-b71a-4fab201905dd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7113265991211,\n      \"Text\": \"4. Title\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03871056064963341,\n          \"Height\": 0.008058036677539349,\n          \"Left\": 0.3735886216163635,\n          \"Top\": 0.287683367729187\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3735925853252411,\n            \"Y\": 0.287683367729187\n          },\n          {\n            \"X\": 0.41229918599128723,\n            \"Y\": 0.28773537278175354\n          },\n          {\n            \"X\": 0.4122953414916992,\n            \"Y\": 0.29574137926101685\n          },\n          {\n            \"X\": 0.3735886216163635,\n            \"Y\": 0.2956892251968384\n          }\n        ]\n      },\n      \"Id\": \"3c3ae04f-56ea-4677-9326-b5d7a998ff40\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94857599-41ef-4312-9551-bcf3ddc454e3\",\n            \"4a431f09-7906-43dc-b2a9-27f956514294\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83245086669922,\n      \"Text\": \"5. Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04107779636979103,\n          \"Height\": 0.00810326635837555,\n          \"Left\": 0.6277146935462952,\n          \"Top\": 0.28735560178756714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6277177333831787,\n            \"Y\": 0.28735560178756714\n          },\n          {\n            \"X\": 0.6687924861907959,\n            \"Y\": 0.28741076588630676\n          },\n          {\n            \"X\": 0.6687895059585571,\n            \"Y\": 0.2954588532447815\n          },\n          {\n            \"X\": 0.6277146935462952,\n            \"Y\": 0.29540351033210754\n          }\n        ]\n      },\n      \"Id\": \"8cef68ba-0e62-4c74-aa5d-e298f186e8a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"228aa116-1323-4596-9c14-fd22c80a74ab\",\n            \"e4fe2148-19e0-40f8-b4ec-1ccf54b8f4d6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86614227294922,\n      \"Text\": \"6. Lender's Number\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10852910578250885,\n          \"Height\": 0.008150755427777767,\n          \"Left\": 0.7451707720756531,\n          \"Top\": 0.2874426543712616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7451733946800232,\n            \"Y\": 0.2874426543712616\n          },\n          {\n            \"X\": 0.8536998629570007,\n            \"Y\": 0.2875884771347046\n          },\n          {\n            \"X\": 0.8536975979804993,\n            \"Y\": 0.29559341073036194\n          },\n          {\n            \"X\": 0.7451707720756531,\n            \"Y\": 0.2954472005367279\n          }\n        ]\n      },\n      \"Id\": \"92e96330-a3f0-4427-89a9-32aac8b44cd4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"72613989-b9e2-4290-b548-5aaeb65d84d0\",\n            \"f04a570f-9dae-4cd0-a23c-32a3766830b9\",\n            \"384370f6-5582-40e9-8a90-f5b9f501822d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.5025405883789,\n      \"Text\": \"(Optional)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051935892552137375,\n          \"Height\": 0.009004163555800915,\n          \"Left\": 0.7606687545776367,\n          \"Top\": 0.2976815700531006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7606716156005859,\n            \"Y\": 0.2976815700531006\n          },\n          {\n            \"X\": 0.8126046061515808,\n            \"Y\": 0.2977515757083893\n          },\n          {\n            \"X\": 0.8126019239425659,\n            \"Y\": 0.3066857159137726\n          },\n          {\n            \"X\": 0.7606687545776367,\n            \"Y\": 0.3066155016422272\n          }\n        ]\n      },\n      \"Id\": \"5b3c488c-c7ef-48bd-a655-cc6227cc9a48\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"90461fa2-3ff7-44c8-ace5-b405213753c9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.17220306396484,\n      \"Text\": \"Carlos Salazar\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14956212043762207,\n          \"Height\": 0.027505507692694664,\n          \"Left\": 0.12738659977912903,\n          \"Top\": 0.3002519905567169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12740306556224823,\n            \"Y\": 0.3002519905567169\n          },\n          {\n            \"X\": 0.2769487202167511,\n            \"Y\": 0.3004538118839264\n          },\n          {\n            \"X\": 0.27693402767181396,\n            \"Y\": 0.32775747776031494\n          },\n          {\n            \"X\": 0.12738659977912903,\n            \"Y\": 0.3275538980960846\n          }\n        ]\n      },\n      \"Id\": \"cf0c5bca-8f18-48f1-b1f9-62e91b3ce00e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7ad2c8d8-d598-48e7-b987-0426eeea9d1a\",\n            \"230a526f-7746-4757-b95e-0731be4d1901\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96575927734375,\n      \"Text\": \"Project Manager\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11970999836921692,\n          \"Height\": 0.012966897338628769,\n          \"Left\": 0.40833601355552673,\n          \"Top\": 0.30517736077308655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4083421528339386,\n            \"Y\": 0.30517736077308655\n          },\n          {\n            \"X\": 0.5280460119247437,\n            \"Y\": 0.30533915758132935\n          },\n          {\n            \"X\": 0.5280405282974243,\n            \"Y\": 0.3181442618370056\n          },\n          {\n            \"X\": 0.40833601355552673,\n            \"Y\": 0.3179818093776703\n          }\n        ]\n      },\n      \"Id\": \"6929384e-f1dd-4c28-8970-7c782cfb3c02\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"75b13c19-3026-481e-a40b-d91b36c63ca1\",\n            \"9e9f0271-b083-4911-bd88-806f0aef7107\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8945541381836,\n      \"Text\": \"12/12/2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08076254278421402,\n          \"Height\": 0.010538050904870033,\n          \"Left\": 0.6365628242492676,\n          \"Top\": 0.30779242515563965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6365668177604675,\n            \"Y\": 0.30779242515563965\n          },\n          {\n            \"X\": 0.7173253893852234,\n            \"Y\": 0.30790165066719055\n          },\n          {\n            \"X\": 0.7173217535018921,\n            \"Y\": 0.31833046674728394\n          },\n          {\n            \"X\": 0.6365628242492676,\n            \"Y\": 0.3182208836078644\n          }\n        ]\n      },\n      \"Id\": \"d8d6fcb5-8b60-4bc8-a2ba-84102d5bcd82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a7ed2fee-ba02-4969-a7d9-949a2e6834eb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.78538513183594,\n      \"Text\": \"5555-5555-5555\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11950211971998215,\n          \"Height\": 0.0104298684746027,\n          \"Left\": 0.761132538318634,\n          \"Top\": 0.3135582208633423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7611358761787415,\n            \"Y\": 0.3135582208633423\n          },\n          {\n            \"X\": 0.8806346654891968,\n            \"Y\": 0.31372013688087463\n          },\n          {\n            \"X\": 0.8806318640708923,\n            \"Y\": 0.32398808002471924\n          },\n          {\n            \"X\": 0.761132538318634,\n            \"Y\": 0.3238256573677063\n          }\n        ]\n      },\n      \"Id\": \"7db56f96-5607-4098-b67a-7fd0f0d23b20\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61704f3e-ecaa-4d6d-8f12-a21746e38429\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.04962158203125,\n      \"Text\": \"I have applied for a mortgage loan and stated that am now or was formerly employed by you. My signature below authorizes verification of this information\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8649786710739136,\n          \"Height\": 0.013174103572964668,\n          \"Left\": 0.04256569966673851,\n          \"Top\": 0.3312329947948456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04257337749004364,\n            \"Y\": 0.3312329947948456\n          },\n          {\n            \"X\": 0.9075443744659424,\n            \"Y\": 0.3324120044708252\n          },\n          {\n            \"X\": 0.9075412750244141,\n            \"Y\": 0.3444070816040039\n          },\n          {\n            \"X\": 0.04256569966673851,\n            \"Y\": 0.34322354197502136\n          }\n        ]\n      },\n      \"Id\": \"3f4f83cb-4019-47bb-97a8-557d8338e315\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1f92320e-8ab5-41a7-bca6-db7f68aef79c\",\n            \"5bda93c0-9c8b-4ad5-8ab0-1bd47c174eff\",\n            \"aa04333b-92e2-4e9d-929a-409f734e6217\",\n            \"6f672d22-c4d3-4a95-9280-d9c6f3e5a40a\",\n            \"3e25727e-18d1-46c8-b55d-6f0bb31a8d44\",\n            \"5b445502-206e-4a08-b3fb-05a2feebb12d\",\n            \"ced26207-36b4-44ca-83fe-cf5ba4968e71\",\n            \"d7ad10d7-15ae-4dab-9fdf-4200315eefb8\",\n            \"3150286d-3a52-4bcb-bbda-03c00288370b\",\n            \"991fb5e9-0cca-4185-b2b6-5cec5159ade4\",\n            \"6c17f767-5e7c-4f42-87ab-d064483c0904\",\n            \"93038e96-fd30-4a08-bd6c-237ef2c45b90\",\n            \"62cf6907-4a80-468b-baad-0e290595dfb2\",\n            \"c4824603-941f-431b-a82d-8be21774e5f9\",\n            \"dc6436d5-36ee-467b-a453-21b33ded150e\",\n            \"bc88928b-d89e-49d3-8f8c-b42d1cb453c1\",\n            \"09646fff-713f-4c51-9e23-6b0775642ac1\",\n            \"45e1b9a2-d489-4b13-b384-f934d9da0d0f\",\n            \"e280db9a-3496-4299-a505-33aa2a5e30b5\",\n            \"efaecf39-0488-4d1a-8568-db9a6eaee6f0\",\n            \"4627b08a-7f35-44c9-95cd-ece7ec750d50\",\n            \"e1b1e127-feff-4fac-9075-83da919e6dd4\",\n            \"ecafdbf8-3c68-4baa-a891-04e0e5ffc3ad\",\n            \"fb5d0927-132e-47fe-b64e-f3a4bbe1abd9\",\n            \"a137f8d6-b489-4581-ba7e-6a6c08b90a1e\",\n            \"5cff9bfc-c19c-45c7-9303-91b309b55aab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.92740631103516,\n      \"Text\": \"7. Name and Address of Applicant (include employee or badge number)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3929606080055237,\n          \"Height\": 0.010637260042130947,\n          \"Left\": 0.04236258193850517,\n          \"Top\": 0.34766048192977905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042369045317173004,\n            \"Y\": 0.34766048192977905\n          },\n          {\n            \"X\": 0.43532317876815796,\n            \"Y\": 0.34819892048835754\n          },\n          {\n            \"X\": 0.4353184401988983,\n            \"Y\": 0.358297735452652\n          },\n          {\n            \"X\": 0.04236258193850517,\n            \"Y\": 0.3577575981616974\n          }\n        ]\n      },\n      \"Id\": \"b0db42b0-06c9-4101-9cd2-33f993ed530a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dcf74957-62e4-49e2-816b-a712c05b6b7c\",\n            \"a263c642-45c8-4929-96c2-be70006aa14c\",\n            \"c13d83db-1a9b-4c56-a7b4-ccc918f9e6ea\",\n            \"911e30b6-3840-469c-8413-a8a37c253b1f\",\n            \"8e5a1fd0-037c-4832-8740-fcea20cfb066\",\n            \"79e45cb8-dab0-47ec-b42a-d008f2cfcd6a\",\n            \"ebf8dfef-d807-470d-9936-39224e48135e\",\n            \"a8d85dd3-48f4-4b28-b749-70947bbeb83c\",\n            \"6113a3f0-335e-462d-a437-466f8ebd32ee\",\n            \"8d60018d-9c03-44d9-ac3b-8351bfd5d759\",\n            \"629aebb3-37d9-4f7c-8426-fcb194c58e05\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82945251464844,\n      \"Text\": \"8. Signature of Applicant\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13849292695522308,\n          \"Height\": 0.010094141587615013,\n          \"Left\": 0.5886377692222595,\n          \"Top\": 0.34777143597602844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5886417627334595,\n            \"Y\": 0.34777143597602844\n          },\n          {\n            \"X\": 0.7271307110786438,\n            \"Y\": 0.3479611575603485\n          },\n          {\n            \"X\": 0.7271273136138916,\n            \"Y\": 0.357865571975708\n          },\n          {\n            \"X\": 0.5886377692222595,\n            \"Y\": 0.3576752543449402\n          }\n        ]\n      },\n      \"Id\": \"87422b69-3e93-4e00-9970-b3464fa644ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bc5fc0f4-9451-4ead-b496-92e31695155f\",\n            \"73781e78-90ce-4a67-acdb-51a0222dced2\",\n            \"9d8db403-831b-4507-b2b0-0ec2166b2e3f\",\n            \"30cd6cfc-abd2-43ce-b1d2-5233c8fbe48b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.49873352050781,\n      \"Text\": \"Paulo Santos\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11503680795431137,\n          \"Height\": 0.01188313402235508,\n          \"Left\": 0.07124190032482147,\n          \"Top\": 0.35876014828681946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07124926149845123,\n            \"Y\": 0.35876014828681946\n          },\n          {\n            \"X\": 0.18627870082855225,\n            \"Y\": 0.35891830921173096\n          },\n          {\n            \"X\": 0.18627193570137024,\n            \"Y\": 0.3706432580947876\n          },\n          {\n            \"X\": 0.07124190032482147,\n            \"Y\": 0.37048450112342834\n          }\n        ]\n      },\n      \"Id\": \"c6967aca-f5cd-468f-bf57-afa6f8b42c0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"af049ec2-d8c0-4ce0-92ba-da7d7be64373\",\n            \"46281634-2c03-4f29-92c6-abbc7d4e42a0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9472427368164,\n      \"Text\": \"123 Any Street, Any Town, USA\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2776707708835602,\n          \"Height\": 0.01574293151497841,\n          \"Left\": 0.0716189593076706,\n          \"Top\": 0.37314876914024353\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07162859290838242,\n            \"Y\": 0.37314876914024353\n          },\n          {\n            \"X\": 0.3492897152900696,\n            \"Y\": 0.3735322952270508\n          },\n          {\n            \"X\": 0.3492819368839264,\n            \"Y\": 0.38889169692993164\n          },\n          {\n            \"X\": 0.0716189593076706,\n            \"Y\": 0.38850632309913635\n          }\n        ]\n      },\n      \"Id\": \"07fb5ca6-e454-456d-adf4-9d2c224ed21a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"27541814-65f6-4fda-a53b-57e2c648d3cc\",\n            \"56fea8ae-780f-4389-97d7-d4cfe0e9786f\",\n            \"63b9b180-6159-41ae-baf4-ec0db9dc201a\",\n            \"1dca9e80-c1ec-4f06-82bd-b2068c5a416c\",\n            \"b1021a7d-fc95-415b-b192-a9fc1b988587\",\n            \"e92bea10-a7e3-4746-9971-2c129946be06\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.38761138916016,\n      \"Text\": \"Paulo Santos\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16443443298339844,\n          \"Height\": 0.017898347228765488,\n          \"Left\": 0.6291235089302063,\n          \"Top\": 0.3641825318336487\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6291303038597107,\n            \"Y\": 0.3641825318336487\n          },\n          {\n            \"X\": 0.7935579419136047,\n            \"Y\": 0.3644089698791504\n          },\n          {\n            \"X\": 0.7935524582862854,\n            \"Y\": 0.38208088278770447\n          },\n          {\n            \"X\": 0.6291235089302063,\n            \"Y\": 0.3818531930446625\n          }\n        ]\n      },\n      \"Id\": \"df48d574-fd95-45d4-90e9-da68182fc5c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9f5f8093-83e8-457f-bb45-92902fbedc7b\",\n            \"30f859f6-438c-4d96-93ac-927e95c15e3a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.28856658935547,\n      \"Text\": \"Part II - Verification of Present Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3245609402656555,\n          \"Height\": 0.012145663611590862,\n          \"Left\": 0.04277266189455986,\n          \"Top\": 0.3944162130355835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04278014600276947,\n            \"Y\": 0.3944162130355835\n          },\n          {\n            \"X\": 0.36733362078666687,\n            \"Y\": 0.39486750960350037\n          },\n          {\n            \"X\": 0.3673277795314789,\n            \"Y\": 0.40656188130378723\n          },\n          {\n            \"X\": 0.04277266189455986,\n            \"Y\": 0.40610894560813904\n          }\n        ]\n      },\n      \"Id\": \"86a18ae8-5e0a-4262-ada1-2c426cff8c86\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"091f50c0-8e02-4756-a717-73a56b1c871a\",\n            \"0938b049-99b9-4a2e-8d24-36f9610cfa02\",\n            \"cc0f9344-da8c-4696-b532-32b9d820fae2\",\n            \"ca9c1c8e-cea6-408d-b1be-423c74688f34\",\n            \"72bd0c70-58f1-414e-83b1-5817b6c42d5d\",\n            \"a139ea18-01b7-431f-9ad9-b512b0b78510\",\n            \"47aedf59-b8f7-40b0-9a2d-dd66fdd2b59f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 95.14385986328125,\n      \"Text\": \"9. Applicant's Date of Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19134072959423065,\n          \"Height\": 0.010046574287116528,\n          \"Left\": 0.04188941791653633,\n          \"Top\": 0.4087906777858734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041895680129528046,\n            \"Y\": 0.4087906777858734\n          },\n          {\n            \"X\": 0.23323014378547668,\n            \"Y\": 0.40905794501304626\n          },\n          {\n            \"X\": 0.23322470486164093,\n            \"Y\": 0.4188372492790222\n          },\n          {\n            \"X\": 0.04188941791653633,\n            \"Y\": 0.4185692071914673\n          }\n        ]\n      },\n      \"Id\": \"ee064afe-cefc-4547-9fd3-7a599688d0ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b18cd12c-7b39-4784-a4f2-44299237c2f3\",\n            \"8550dd8d-9c80-4905-8b17-0d9c3e438aa0\",\n            \"625a9cdc-7ecf-437f-bb37-943942fb28fc\",\n            \"00064e17-1759-42a0-a9ab-ccc4c444882b\",\n            \"a57a2c5b-bfca-4e56-aa0f-429ae948c2d4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.54580688476562,\n      \"Text\": \"10. Present Position\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10834060609340668,\n          \"Height\": 0.008246379904448986,\n          \"Left\": 0.2765420079231262,\n          \"Top\": 0.4086487293243408\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2765463888645172,\n            \"Y\": 0.4086487293243408\n          },\n          {\n            \"X\": 0.3848826289176941,\n            \"Y\": 0.40880003571510315\n          },\n          {\n            \"X\": 0.38487866520881653,\n            \"Y\": 0.4168951213359833\n          },\n          {\n            \"X\": 0.2765420079231262,\n            \"Y\": 0.4167434573173523\n          }\n        ]\n      },\n      \"Id\": \"62258b5a-9eff-4ff0-bdbd-c0e7e97da1c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7deff2f-38b2-4050-a422-ab02f31c86c6\",\n            \"a23f6228-bbc9-4122-b690-f2c6e8928933\",\n            \"c56388e4-d0d2-4cf1-9337-72e97e802773\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7696304321289,\n      \"Text\": \"11. Probability of Continued Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.224000483751297,\n          \"Height\": 0.00999181903898716,\n          \"Left\": 0.6480617523193359,\n          \"Top\": 0.4082431495189667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6480653882026672,\n            \"Y\": 0.4082431495189667\n          },\n          {\n            \"X\": 0.8720622658729553,\n            \"Y\": 0.40855586528778076\n          },\n          {\n            \"X\": 0.8720595836639404,\n            \"Y\": 0.4182349443435669\n          },\n          {\n            \"X\": 0.6480617523193359,\n            \"Y\": 0.4179212749004364\n          }\n        ]\n      },\n      \"Id\": \"959aa433-f7d6-49bb-be1b-8d80f3155417\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0bd44b83-f206-423c-b2ff-9eab68bf6a9b\",\n            \"32fc7bb5-baf6-4be8-ac6e-6bbaa6f6dfaf\",\n            \"d9ff5522-689f-43b0-9c94-cfe6771a8f0c\",\n            \"bd9f2670-949b-4f77-911c-1fbc07ad5cb0\",\n            \"94a51342-5707-4136-a60d-09cec0d68e9d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89732360839844,\n      \"Text\": \"06/06/2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08189316838979721,\n          \"Height\": 0.010266105644404888,\n          \"Left\": 0.1051507443189621,\n          \"Top\": 0.42972052097320557\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10515696555376053,\n            \"Y\": 0.42972052097320557\n          },\n          {\n            \"X\": 0.1870439201593399,\n            \"Y\": 0.42983564734458923\n          },\n          {\n            \"X\": 0.18703804910182953,\n            \"Y\": 0.43998661637306213\n          },\n          {\n            \"X\": 0.1051507443189621,\n            \"Y\": 0.4398711621761322\n          }\n        ]\n      },\n      \"Id\": \"a68d728f-e9f6-4127-9664-46c0169148ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bc0ef9ee-be22-446e-a3d1-ac137ca1c256\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88998413085938,\n      \"Text\": \"General Manager\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12729185819625854,\n          \"Height\": 0.012934965081512928,\n          \"Left\": 0.33619123697280884,\n          \"Top\": 0.42933011054992676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33619776368141174,\n            \"Y\": 0.42933011054992676\n          },\n          {\n            \"X\": 0.4634830951690674,\n            \"Y\": 0.4295090138912201\n          },\n          {\n            \"X\": 0.4634772837162018,\n            \"Y\": 0.4422650635242462\n          },\n          {\n            \"X\": 0.33619123697280884,\n            \"Y\": 0.44208547472953796\n          }\n        ]\n      },\n      \"Id\": \"28bcbc31-3918-4b0f-9914-2b710966d015\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34ee933d-204c-4a0d-b262-40d92090088a\",\n            \"bb4161f9-0001-407f-880a-05999b5490a2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92202758789062,\n      \"Text\": \"3 years\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052911899983882904,\n          \"Height\": 0.012336233630776405,\n          \"Left\": 0.727807879447937,\n          \"Top\": 0.42827391624450684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7278120517730713,\n            \"Y\": 0.42827391624450684\n          },\n          {\n            \"X\": 0.7807198166847229,\n            \"Y\": 0.42834824323654175\n          },\n          {\n            \"X\": 0.7807158827781677,\n            \"Y\": 0.4406101405620575\n          },\n          {\n            \"X\": 0.727807879447937,\n            \"Y\": 0.4405355453491211\n          }\n        ]\n      },\n      \"Id\": \"7f29a91a-28b1-4474-a6f4-c6f521761567\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"41bd3cb9-e961-4da7-bc44-84eee2e58f9e\",\n            \"903e2055-9fb3-49c5-81de-12086409f2ab\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.97223663330078,\n      \"Text\": \"12A Current Gross Base Pay (Enter Amount and Check Period)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3517979383468628,\n          \"Height\": 0.010248282924294472,\n          \"Left\": 0.05214618146419525,\n          \"Top\": 0.4537990093231201\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05215238034725189,\n            \"Y\": 0.4537990093231201\n          },\n          {\n            \"X\": 0.40394410490989685,\n            \"Y\": 0.45429727435112\n          },\n          {\n            \"X\": 0.4039393961429596,\n            \"Y\": 0.46404731273651123\n          },\n          {\n            \"X\": 0.05214618146419525,\n            \"Y\": 0.46354755759239197\n          }\n        ]\n      },\n      \"Id\": \"41845a61-941d-4c24-8824-f927f9c19d12\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c8c5befb-fb00-4c6f-80ff-e5c97f33bdde\",\n            \"056f9eb6-1fd1-402a-8dd6-ba989189b130\",\n            \"9e24505d-d70b-4433-8530-333d4413263e\",\n            \"d0befd0c-538a-4e5f-95d7-911b37d43fc4\",\n            \"ba1c18a2-3ca4-4c28-92c1-14d9a5e86cac\",\n            \"a45b550e-438e-454d-b2b7-db29add58fd0\",\n            \"f0330f86-96ae-4da5-a28b-968df2c7d836\",\n            \"e580e912-3464-49ec-8e1f-2472e17adfc2\",\n            \"06c217b5-be52-4a7c-9169-45d31b91cdd3\",\n            \"8f4116f1-d5eb-4892-80c7-40e5d157cd20\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.60478210449219,\n      \"Text\": \"13. For Military Personnel Only\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16823776066303253,\n          \"Height\": 0.009623396210372448,\n          \"Left\": 0.46245431900024414,\n          \"Top\": 0.4539722502231598\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46245861053466797,\n            \"Y\": 0.4539722502231598\n          },\n          {\n            \"X\": 0.6306920647621155,\n            \"Y\": 0.454210489988327\n          },\n          {\n            \"X\": 0.630688488483429,\n            \"Y\": 0.4635956585407257\n          },\n          {\n            \"X\": 0.46245431900024414,\n            \"Y\": 0.46335673332214355\n          }\n        ]\n      },\n      \"Id\": \"0c9a971f-78f3-4ba2-9ebe-4eba0e2dc556\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a12ea4c2-de3a-4ad5-be74-1e916ae81b16\",\n            \"8fba26ea-b3c5-43ab-b48b-ea638c7a5f08\",\n            \"f0188855-bca6-4ec0-a9ca-6af9f4c55c33\",\n            \"5c49555e-7db1-4008-bb3b-114844e8ab62\",\n            \"7dd4948f-82e7-42eb-9d14-7195b91bb0c1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 92.6804428100586,\n      \"Text\": \"14. If Overtime or Bonus is Applicable,\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21074996888637543,\n          \"Height\": 0.009893611073493958,\n          \"Left\": 0.6942451000213623,\n          \"Top\": 0.4601592421531677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6942484974861145,\n            \"Y\": 0.4601592421531677\n          },\n          {\n            \"X\": 0.9049950242042542,\n            \"Y\": 0.4604582190513611\n          },\n          {\n            \"X\": 0.9049925208091736,\n            \"Y\": 0.4700528383255005\n          },\n          {\n            \"X\": 0.6942451000213623,\n            \"Y\": 0.4697529673576355\n          }\n        ]\n      },\n      \"Id\": \"0d998dc0-3524-44b8-a3ee-d4d230aeb4a6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d85bb783-03b0-4574-ab39-7f08d1f3927e\",\n            \"592bb21a-edd6-4f90-9070-071f4f1bfb05\",\n            \"3956f2ec-c90f-428c-b2ea-afdb610e3e8e\",\n            \"4af55cf2-8550-4ea9-bf40-a73c8ddf5bf8\",\n            \"f09d251e-7b31-47f2-b1d7-783c13c26849\",\n            \"50469c2f-23d3-4df0-ba6e-bb68ffb2c088\",\n            \"ec659076-4b65-4044-9808-a7c8d2867f52\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93900299072266,\n      \"Text\": \"Annual\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03838041424751282,\n          \"Height\": 0.007692558690905571,\n          \"Left\": 0.17551203072071075,\n          \"Top\": 0.4697299599647522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17551647126674652,\n            \"Y\": 0.4697299599647522\n          },\n          {\n            \"X\": 0.21389244496822357,\n            \"Y\": 0.46978458762168884\n          },\n          {\n            \"X\": 0.21388812363147736,\n            \"Y\": 0.4774225354194641\n          },\n          {\n            \"X\": 0.17551203072071075,\n            \"Y\": 0.4773677885532379\n          }\n        ]\n      },\n      \"Id\": \"f69a4df9-c8d1-41b4-8be2-4ba1574b8e9b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"98935b3c-7a9d-467e-affd-3f58b4ff477f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.44683074951172,\n      \"Text\": \"Hourly\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03584225848317146,\n          \"Height\": 0.009362763725221157,\n          \"Left\": 0.2729756832122803,\n          \"Top\": 0.4697292149066925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2729807198047638,\n            \"Y\": 0.4697292149066925\n          },\n          {\n            \"X\": 0.30881795287132263,\n            \"Y\": 0.46978023648262024\n          },\n          {\n            \"X\": 0.30881306529045105,\n            \"Y\": 0.479092001914978\n          },\n          {\n            \"X\": 0.2729756832122803,\n            \"Y\": 0.47904083132743835\n          }\n        ]\n      },\n      \"Id\": \"c6343025-acf3-4680-a833-ad5782d8bcc1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"856f44ec-e066-4dcf-8578-ecb744de5269\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8951644897461,\n      \"Text\": \"Pay Grade\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05568369850516319,\n          \"Height\": 0.009428045712411404,\n          \"Left\": 0.46290504932403564,\n          \"Top\": 0.4693853259086609\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4629093408584595,\n            \"Y\": 0.4693853259086609\n          },\n          {\n            \"X\": 0.5185887813568115,\n            \"Y\": 0.4694645404815674\n          },\n          {\n            \"X\": 0.5185847282409668,\n            \"Y\": 0.47881338000297546\n          },\n          {\n            \"X\": 0.46290504932403564,\n            \"Y\": 0.47873392701148987\n          }\n        ]\n      },\n      \"Id\": \"cc681691-6e21-4deb-af53-8d3a83662012\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"45fd537d-5784-4069-b11f-6bd5ff7cfdb9\",\n            \"e8c7fbee-826b-4e48-9006-48c439166752\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.94813537597656,\n      \"Text\": \"10\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014048181474208832,\n          \"Height\": 0.008025703951716423,\n          \"Left\": 0.6050521731376648,\n          \"Top\": 0.4701174795627594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6050553321838379,\n            \"Y\": 0.4701174795627594\n          },\n          {\n            \"X\": 0.6191003322601318,\n            \"Y\": 0.47013744711875916\n          },\n          {\n            \"X\": 0.6190972328186035,\n            \"Y\": 0.47814318537712097\n          },\n          {\n            \"X\": 0.6050521731376648,\n            \"Y\": 0.47812312841415405\n          }\n        ]\n      },\n      \"Id\": \"14ed556d-1b06-4417-9378-8ddf3047b549\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8ae41e56-9472-44d5-a6e2-c683cffc5d6b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 85.08487701416016,\n      \"Text\": \"Is Its Continuance Likely?\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1381954401731491,\n          \"Height\": 0.009420263580977917,\n          \"Left\": 0.7140699028968811,\n          \"Top\": 0.47037869691848755\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.714073121547699,\n            \"Y\": 0.47037869691848755\n          },\n          {\n            \"X\": 0.8522653579711914,\n            \"Y\": 0.47057536244392395\n          },\n          {\n            \"X\": 0.8522627353668213,\n            \"Y\": 0.47979897260665894\n          },\n          {\n            \"X\": 0.7140699028968811,\n            \"Y\": 0.47960174083709717\n          }\n        ]\n      },\n      \"Id\": \"b7dce340-f02a-4d5c-8470-09ce4c311b20\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5a5d71c5-aca9-49f4-9e03-56cd49c72a51\",\n            \"619adf1b-d067-49e0-ac78-55b1c54baf11\",\n            \"136b8861-c903-4188-9928-d5bcbec828ff\",\n            \"45b3ef61-049e-4e87-ac0d-794011094417\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86404418945312,\n      \"Text\": \"Monthly\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04427186772227287,\n          \"Height\": 0.00941950548440218,\n          \"Left\": 0.1755121350288391,\n          \"Top\": 0.484845370054245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17551757395267487,\n            \"Y\": 0.484845370054245\n          },\n          {\n            \"X\": 0.21978400647640228,\n            \"Y\": 0.48490867018699646\n          },\n          {\n            \"X\": 0.21977873146533966,\n            \"Y\": 0.4942648708820343\n          },\n          {\n            \"X\": 0.1755121350288391,\n            \"Y\": 0.4942013919353485\n          }\n        ]\n      },\n      \"Id\": \"edbbba90-cfc2-4157-9d3a-68d936a6867a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e574810a-52f4-4133-ae47-330884ae2734\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.99365997314453,\n      \"Text\": \"Other (Specify)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08257727324962616,\n          \"Height\": 0.009935587644577026,\n          \"Left\": 0.2728836238384247,\n          \"Top\": 0.4843900203704834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2728889286518097,\n            \"Y\": 0.4843900203704834\n          },\n          {\n            \"X\": 0.35546088218688965,\n            \"Y\": 0.48450803756713867\n          },\n          {\n            \"X\": 0.3554559648036957,\n            \"Y\": 0.4943256080150604\n          },\n          {\n            \"X\": 0.2728836238384247,\n            \"Y\": 0.4942072033882141\n          }\n        ]\n      },\n      \"Id\": \"770fe896-09bd-4b2b-90b6-9633f3571436\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96d13d5c-3804-4c35-9041-fb66abcb1718\",\n            \"ca16f948-a2a0-49d0-8605-17044ff06ab8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92318725585938,\n      \"Text\": \"Type\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026384277269244194,\n          \"Height\": 0.009137836284935474,\n          \"Left\": 0.462668240070343,\n          \"Top\": 0.4847314953804016\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626723825931549,\n            \"Y\": 0.4847314953804016\n          },\n          {\n            \"X\": 0.48905250430107117,\n            \"Y\": 0.48476919531822205\n          },\n          {\n            \"X\": 0.48904845118522644,\n            \"Y\": 0.4938693344593048\n          },\n          {\n            \"X\": 0.462668240070343,\n            \"Y\": 0.4938315153121948\n          }\n        ]\n      },\n      \"Id\": \"97c06f67-15c6-4ecb-8c63-96d9ac068d90\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b9a9d7af-a0fa-4f67-b4ac-b54fbcc028db\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84526062011719,\n      \"Text\": \"Monthly Amount\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09261556714773178,\n          \"Height\": 0.009281455539166927,\n          \"Left\": 0.5695671439170837,\n          \"Top\": 0.48455724120140076\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5695708990097046,\n            \"Y\": 0.48455724120140076\n          },\n          {\n            \"X\": 0.6621827483177185,\n            \"Y\": 0.4846895933151245\n          },\n          {\n            \"X\": 0.6621793508529663,\n            \"Y\": 0.49383869767189026\n          },\n          {\n            \"X\": 0.5695671439170837,\n            \"Y\": 0.49370595812797546\n          }\n        ]\n      },\n      \"Id\": \"572eb8dc-b5e3-40a9-9702-befa2a71b6d5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7593261b-e271-4b0b-be79-5c21bae93bed\",\n            \"11831c96-76a4-433c-b848-2df0c875fe71\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74715423583984,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04845358803868294,\n          \"Height\": 0.007899788208305836,\n          \"Left\": 0.7160584330558777,\n          \"Top\": 0.4856394827365875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7160611152648926,\n            \"Y\": 0.4856394827365875\n          },\n          {\n            \"X\": 0.7645120024681091,\n            \"Y\": 0.48570874333381653\n          },\n          {\n            \"X\": 0.7645094394683838,\n            \"Y\": 0.4935392737388611\n          },\n          {\n            \"X\": 0.7160584330558777,\n            \"Y\": 0.49346983432769775\n          }\n        ]\n      },\n      \"Id\": \"d46be836-b69c-477d-b031-87a83a3afbcb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2a1573e2-cc2f-45bb-9138-4eadd193dd14\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9555435180664,\n      \"Text\": \"Yes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019709477201104164,\n          \"Height\": 0.007816274650394917,\n          \"Left\": 0.8208832144737244,\n          \"Top\": 0.48560675978660583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8208855390548706,\n            \"Y\": 0.48560675978660583\n          },\n          {\n            \"X\": 0.8405926823616028,\n            \"Y\": 0.4856349229812622\n          },\n          {\n            \"X\": 0.8405904173851013,\n            \"Y\": 0.4934230148792267\n          },\n          {\n            \"X\": 0.8208832144737244,\n            \"Y\": 0.49339479207992554\n          }\n        ]\n      },\n      \"Id\": \"69b15918-87e1-46e2-82ea-90291df79219\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6432a709-ea33-4d8e-9a3e-f22398e00027\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7380599975586,\n      \"Text\": \"No\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01565852016210556,\n          \"Height\": 0.007779306266456842,\n          \"Left\": 0.8813149929046631,\n          \"Top\": 0.48560619354248047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.881317138671875,\n            \"Y\": 0.48560619354248047\n          },\n          {\n            \"X\": 0.8969734907150269,\n            \"Y\": 0.48562857508659363\n          },\n          {\n            \"X\": 0.8969714641571045,\n            \"Y\": 0.4933854937553406\n          },\n          {\n            \"X\": 0.8813149929046631,\n            \"Y\": 0.49336308240890503\n          }\n        ]\n      },\n      \"Id\": \"07347210-be4a-44a3-b1ce-8a86057ec298\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"09cb51d3-cb7c-4642-aec8-e9ecd0b57f74\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73889923095703,\n      \"Text\": \"$ 5600\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04923964664340019,\n          \"Height\": 0.009113410487771034,\n          \"Left\": 0.05217764154076576,\n          \"Top\": 0.4988800585269928\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05218339338898659,\n            \"Y\": 0.4988800585269928\n          },\n          {\n            \"X\": 0.10141728818416595,\n            \"Y\": 0.4989507496356964\n          },\n          {\n            \"X\": 0.10141173005104065,\n            \"Y\": 0.5079934597015381\n          },\n          {\n            \"X\": 0.05217764154076576,\n            \"Y\": 0.5079225897789001\n          }\n        ]\n      },\n      \"Id\": \"ff64dbe7-5de2-4455-a35e-70f3a087c241\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08fc984f-dd16-46c8-ab0d-c2bd7869c17a\",\n            \"944bfdf1-daac-4712-8de4-61324c542448\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74958038330078,\n      \"Text\": \"Bonus\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03436942771077156,\n          \"Height\": 0.007922503165900707,\n          \"Left\": 0.7163385152816772,\n          \"Top\": 0.49594831466674805\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7163412570953369,\n            \"Y\": 0.49594831466674805\n          },\n          {\n            \"X\": 0.7507079243659973,\n            \"Y\": 0.4959976077079773\n          },\n          {\n            \"X\": 0.7507053017616272,\n            \"Y\": 0.5038708448410034\n          },\n          {\n            \"X\": 0.7163385152816772,\n            \"Y\": 0.5038214325904846\n          }\n        ]\n      },\n      \"Id\": \"142d4b68-ffee-465d-a779-6b295ff09e6d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ce9ea12a-45f9-4b2c-a666-b9e008329abf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96216583251953,\n      \"Text\": \"Yes\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019678566604852676,\n          \"Height\": 0.007666279096156359,\n          \"Left\": 0.8209297060966492,\n          \"Top\": 0.4959058165550232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8209319710731506,\n            \"Y\": 0.4959058165550232\n          },\n          {\n            \"X\": 0.8406082987785339,\n            \"Y\": 0.49593403935432434\n          },\n          {\n            \"X\": 0.8406060338020325,\n            \"Y\": 0.5035721063613892\n          },\n          {\n            \"X\": 0.8209297060966492,\n            \"Y\": 0.5035437941551208\n          }\n        ]\n      },\n      \"Id\": \"c7155f49-dec9-4b6d-b106-79a6ab174b84\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b47c12ea-a04a-4db0-8cf4-066d445d7157\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.36814880371094,\n      \"Text\": \"No\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015940174460411072,\n          \"Height\": 0.007573725655674934,\n          \"Left\": 0.8807739019393921,\n          \"Top\": 0.49604514241218567\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8807759881019592,\n            \"Y\": 0.49604514241218567\n          },\n          {\n            \"X\": 0.8967140913009644,\n            \"Y\": 0.49606800079345703\n          },\n          {\n            \"X\": 0.896712064743042,\n            \"Y\": 0.5036188960075378\n          },\n          {\n            \"X\": 0.8807739019393921,\n            \"Y\": 0.5035959482192993\n          }\n        ]\n      },\n      \"Id\": \"1aa3a467-6010-4c69-84e7-67911b1ea0bf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94344424-d063-42fc-b499-7ba40eed8b35\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7439956665039,\n      \"Text\": \"Weekly\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03984353318810463,\n          \"Height\": 0.009626110084354877,\n          \"Left\": 0.17517277598381042,\n          \"Top\": 0.4998665750026703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17517833411693573,\n            \"Y\": 0.4998665750026703\n          },\n          {\n            \"X\": 0.21501630544662476,\n            \"Y\": 0.49992379546165466\n          },\n          {\n            \"X\": 0.2150108963251114,\n            \"Y\": 0.5094926953315735\n          },\n          {\n            \"X\": 0.17517277598381042,\n            \"Y\": 0.5094352960586548\n          }\n        ]\n      },\n      \"Id\": \"9f3bb9aa-8ace-40ee-973c-b8d635d7f981\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1d7b7db-204a-4c19-8c0b-bb78e1a05201\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87137603759766,\n      \"Text\": \"Base Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050305452197790146,\n          \"Height\": 0.009340310469269753,\n          \"Left\": 0.4625256359577179,\n          \"Top\": 0.5084462761878967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46252986788749695,\n            \"Y\": 0.5084462761878967\n          },\n          {\n            \"X\": 0.5128310918807983,\n            \"Y\": 0.5085186958312988\n          },\n          {\n            \"X\": 0.5128270387649536,\n            \"Y\": 0.5177865624427795\n          },\n          {\n            \"X\": 0.4625256359577179,\n            \"Y\": 0.5177139639854431\n          }\n        ]\n      },\n      \"Id\": \"f5a47409-972c-427f-9afd-d8031f35347c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61d009c3-913a-47df-8f64-92fb4a27b1cd\",\n            \"640fa90c-ec11-4c3f-b627-adf87dc7295d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.78705596923828,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006718913558870554,\n          \"Height\": 0.007566181942820549,\n          \"Left\": 0.5692899227142334,\n          \"Top\": 0.508323609828949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692930221557617,\n            \"Y\": 0.508323609828949\n          },\n          {\n            \"X\": 0.5760087966918945,\n            \"Y\": 0.5083332657814026\n          },\n          {\n            \"X\": 0.576005756855011,\n            \"Y\": 0.5158897638320923\n          },\n          {\n            \"X\": 0.5692899227142334,\n            \"Y\": 0.5158800482749939\n          }\n        ]\n      },\n      \"Id\": \"e37bdb3d-cae3-4309-a0a5-ac66a487646e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d5de3a7-08d9-4413-bebf-85a38d9e1f86\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95744323730469,\n      \"Text\": \"520\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021973054856061935,\n          \"Height\": 0.008403418585658073,\n          \"Left\": 0.6006745100021362,\n          \"Top\": 0.5078282952308655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6006778478622437,\n            \"Y\": 0.5078282952308655\n          },\n          {\n            \"X\": 0.6226475834846497,\n            \"Y\": 0.5078598856925964\n          },\n          {\n            \"X\": 0.6226443648338318,\n            \"Y\": 0.5162317156791687\n          },\n          {\n            \"X\": 0.6006745100021362,\n            \"Y\": 0.5162000060081482\n          }\n        ]\n      },\n      \"Id\": \"eab7d241-9ff3-4ecd-a0d6-7d6b84891409\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"48a2f899-a3d6-43ee-b615-5dbec74c8d12\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 90.53528594970703,\n      \"Text\": \"12B. Gross Earnings\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11248417943716049,\n          \"Height\": 0.009807610884308815,\n          \"Left\": 0.1914297342300415,\n          \"Top\": 0.5148518085479736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19143527746200562,\n            \"Y\": 0.5148518085479736\n          },\n          {\n            \"X\": 0.3039139211177826,\n            \"Y\": 0.5150140523910522\n          },\n          {\n            \"X\": 0.3039088249206543,\n            \"Y\": 0.5246593952178955\n          },\n          {\n            \"X\": 0.1914297342300415,\n            \"Y\": 0.5244966745376587\n          }\n        ]\n      },\n      \"Id\": \"ad8f6b6e-1857-4ac6-80fc-9d05a0ae57a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"78efdf5e-9150-4b19-83b2-f1fdf99d59ad\",\n            \"6ca2d74f-fa6a-41ee-9d00-5789a880651b\",\n            \"d8b7acf6-c42c-433c-b5f0-d74f26ad8834\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.5081787109375,\n      \"Text\": \"15. If paid hourly - average hours per\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20985504984855652,\n          \"Height\": 0.010070739313960075,\n          \"Left\": 0.6944704651832581,\n          \"Top\": 0.514414370059967\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.694473922252655,\n            \"Y\": 0.514414370059967\n          },\n          {\n            \"X\": 0.9043254852294922,\n            \"Y\": 0.5147169828414917\n          },\n          {\n            \"X\": 0.9043229222297668,\n            \"Y\": 0.5244850516319275\n          },\n          {\n            \"X\": 0.6944704651832581,\n            \"Y\": 0.5241815447807312\n          }\n        ]\n      },\n      \"Id\": \"d55269de-023e-4c80-b4e1-45d2df3586cc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c281b1c8-cf3c-4287-a295-f1593a57795d\",\n            \"c88d7963-12d1-4b5b-8b42-b85a4847df6a\",\n            \"dda04e2a-4696-4f08-a6d2-16b348fcaad4\",\n            \"55a587c6-f259-482e-ad8d-f46e7fb0e27b\",\n            \"42bc55de-ea8d-4c38-bf50-ab5cd9719884\",\n            \"0f4fb00a-dd76-4b80-be95-5e776b0a59da\",\n            \"93a22742-901d-4b58-b778-a2bdea4cf71d\",\n            \"522ab9da-c766-4720-90c2-81444dc58ee3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74410247802734,\n      \"Text\": \"week\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028857946395874023,\n          \"Height\": 0.00718946848064661,\n          \"Left\": 0.7133444547653198,\n          \"Top\": 0.5256057381629944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7133468985557556,\n            \"Y\": 0.5256057381629944\n          },\n          {\n            \"X\": 0.7422024011611938,\n            \"Y\": 0.5256475210189819\n          },\n          {\n            \"X\": 0.7422000169754028,\n            \"Y\": 0.532795250415802\n          },\n          {\n            \"X\": 0.7133444547653198,\n            \"Y\": 0.5327534079551697\n          }\n        ]\n      },\n      \"Id\": \"f1b3b377-941b-4187-a05e-def41a7e3866\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a375d7ac-c6d6-483a-9feb-db4ed16505ac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86339569091797,\n      \"Text\": \"Type\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026461929082870483,\n          \"Height\": 0.009184257127344608,\n          \"Left\": 0.05229908600449562,\n          \"Top\": 0.5304486155509949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05230490118265152,\n            \"Y\": 0.5304486155509949\n          },\n          {\n            \"X\": 0.0787610113620758,\n            \"Y\": 0.5304869413375854\n          },\n          {\n            \"X\": 0.07875530421733856,\n            \"Y\": 0.5396328568458557\n          },\n          {\n            \"X\": 0.05229908600449562,\n            \"Y\": 0.5395944118499756\n          }\n        ]\n      },\n      \"Id\": \"3d7d6ed3-f1b3-4026-a82d-9309312f0c91\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b310bff4-b28d-4dbb-b111-17217ce87496\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.60762023925781,\n      \"Text\": \"Year To Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07313553243875504,\n          \"Height\": 0.008074353449046612,\n          \"Left\": 0.13932524621486664,\n          \"Top\": 0.5301872491836548\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13933001458644867,\n            \"Y\": 0.5301872491836548\n          },\n          {\n            \"X\": 0.21246078610420227,\n            \"Y\": 0.5302932262420654\n          },\n          {\n            \"X\": 0.21245627105236053,\n            \"Y\": 0.5382615923881531\n          },\n          {\n            \"X\": 0.13932524621486664,\n            \"Y\": 0.5381553173065186\n          }\n        ]\n      },\n      \"Id\": \"d7335f60-0570-4dc7-8c51-6a01674ba141\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b61d6d9b-4734-4916-b44d-fa3199a41dbd\",\n            \"48faeb8a-21c8-4b68-a9a2-01014bc255e0\",\n            \"e03e47c3-e088-467a-ae77-4d0136dbbb3d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87535858154297,\n      \"Text\": \"Past Year\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05159572884440422,\n          \"Height\": 0.008029079996049404,\n          \"Left\": 0.24767500162124634,\n          \"Top\": 0.5300987958908081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24767936766147614,\n            \"Y\": 0.5300987958908081\n          },\n          {\n            \"X\": 0.29927071928977966,\n            \"Y\": 0.5301735401153564\n          },\n          {\n            \"X\": 0.299266517162323,\n            \"Y\": 0.5381278991699219\n          },\n          {\n            \"X\": 0.24767500162124634,\n            \"Y\": 0.5380529165267944\n          }\n        ]\n      },\n      \"Id\": \"900f5b76-4121-410e-92ed-e5291931aace\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e91653c-2957-41ce-9372-f7f75d6f5917\",\n            \"8ccf9718-a268-4927-89aa-f583745b98bd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.87643432617188,\n      \"Text\": \"Past Year\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05211803317070007,\n          \"Height\": 0.00797399040311575,\n          \"Left\": 0.35484448075294495,\n          \"Top\": 0.5300955176353455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3548484742641449,\n            \"Y\": 0.5300955176353455\n          },\n          {\n            \"X\": 0.406962513923645,\n            \"Y\": 0.5301710367202759\n          },\n          {\n            \"X\": 0.4069587290287018,\n            \"Y\": 0.538069486618042\n          },\n          {\n            \"X\": 0.35484448075294495,\n            \"Y\": 0.5379937887191772\n          }\n        ]\n      },\n      \"Id\": \"cc6ab85c-9eea-4b55-b8cb-55a693eb0624\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08613794-08c1-4aea-b5d8-659c705be39f\",\n            \"9af5aed1-09e7-4f6e-b942-304657a88cec\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.57719421386719,\n      \"Text\": \"Rations\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039598189294338226,\n          \"Height\": 0.007904591970145702,\n          \"Left\": 0.46253660321235657,\n          \"Top\": 0.5300867557525635\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4625401794910431,\n            \"Y\": 0.5300867557525635\n          },\n          {\n            \"X\": 0.5021347999572754,\n            \"Y\": 0.5301441550254822\n          },\n          {\n            \"X\": 0.5021313428878784,\n            \"Y\": 0.5379913449287415\n          },\n          {\n            \"X\": 0.46253660321235657,\n            \"Y\": 0.5379338264465332\n          }\n        ]\n      },\n      \"Id\": \"4fe4b405-c113-4b3f-89f3-a24a44eb26e6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"669598fb-8bb0-4f33-a7a5-050c210e04a3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7801742553711,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0066278656013309956,\n          \"Height\": 0.007577778771519661,\n          \"Left\": 0.5692310929298401,\n          \"Top\": 0.5301686525344849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692341923713684,\n            \"Y\": 0.5301686525344849\n          },\n          {\n            \"X\": 0.5758589506149292,\n            \"Y\": 0.5301783084869385\n          },\n          {\n            \"X\": 0.5758559107780457,\n            \"Y\": 0.5377464294433594\n          },\n          {\n            \"X\": 0.5692310929298401,\n            \"Y\": 0.5377368330955505\n          }\n        ]\n      },\n      \"Id\": \"ef078ebc-2daa-4675-a57c-47043cc5e01c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5074532-74be-4c99-adc5-f695df23b2ae\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8836669921875,\n      \"Text\": \"162\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021551037207245827,\n          \"Height\": 0.008229863829910755,\n          \"Left\": 0.6044975519180298,\n          \"Top\": 0.5316083431243896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6045008301734924,\n            \"Y\": 0.5316083431243896\n          },\n          {\n            \"X\": 0.6260486245155334,\n            \"Y\": 0.531639575958252\n          },\n          {\n            \"X\": 0.6260454654693604,\n            \"Y\": 0.5398381948471069\n          },\n          {\n            \"X\": 0.6044975519180298,\n            \"Y\": 0.5398068428039551\n          }\n        ]\n      },\n      \"Id\": \"771db64a-0c0b-41c7-bd23-95405bd3d6d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f249583d-7ac9-462f-b0cd-0b4ef6f9baa3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.46598052978516,\n      \"Text\": \"40 hours\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05128831788897514,\n          \"Height\": 0.008498166687786579,\n          \"Left\": 0.7710414528846741,\n          \"Top\": 0.5287617444992065\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7710441946983337,\n            \"Y\": 0.5287617444992065\n          },\n          {\n            \"X\": 0.8223297595977783,\n            \"Y\": 0.5288360118865967\n          },\n          {\n            \"X\": 0.8223272562026978,\n            \"Y\": 0.5372598767280579\n          },\n          {\n            \"X\": 0.7710414528846741,\n            \"Y\": 0.5371854305267334\n          }\n        ]\n      },\n      \"Id\": \"2f02e045-96d2-4a9c-b98d-023466c9835b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"802826f9-a879-4573-84b8-8fba2ddcb2c6\",\n            \"225d707d-9804-462c-8c2d-01602224e9b4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95330810546875,\n      \"Text\": \"Thru 2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06776044517755508,\n          \"Height\": 0.009386950172483921,\n          \"Left\": 0.1398094892501831,\n          \"Top\": 0.544090747833252\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1398150473833084,\n            \"Y\": 0.544090747833252\n          },\n          {\n            \"X\": 0.2075699418783188,\n            \"Y\": 0.5441893935203552\n          },\n          {\n            \"X\": 0.20756466686725616,\n            \"Y\": 0.5534777045249939\n          },\n          {\n            \"X\": 0.1398094892501831,\n            \"Y\": 0.5533788204193115\n          }\n        ]\n      },\n      \"Id\": \"36b79647-756b-427f-92a2-6e4a0e828f90\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55b35b39-58f1-4095-a648-69266cca6892\",\n            \"18884121-0066-44c5-9419-57e6e97d54ee\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.88816833496094,\n      \"Text\": \"16. Date of applicant's next pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22227013111114502,\n          \"Height\": 0.010086644440889359,\n          \"Left\": 0.6939640045166016,\n          \"Top\": 0.5446575880050659\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6939674615859985,\n            \"Y\": 0.5446575880050659\n          },\n          {\n            \"X\": 0.9162341356277466,\n            \"Y\": 0.544981062412262\n          },\n          {\n            \"X\": 0.916231632232666,\n            \"Y\": 0.5547442436218262\n          },\n          {\n            \"X\": 0.6939640045166016,\n            \"Y\": 0.5544198155403137\n          }\n        ]\n      },\n      \"Id\": \"cf95916e-38d2-4c57-ac17-ed07a677c2b3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fa85ad29-f58e-453a-a4f9-618f27bf4872\",\n            \"e2fdd0e9-4600-4dd2-8de2-e3fccac19b75\",\n            \"44051e98-3dc1-447d-8d7a-7220f8370495\",\n            \"e35d82fd-d0da-4b44-8258-403e61d42565\",\n            \"ceb9a29d-5b68-42b4-a23f-0dedc1b9892d\",\n            \"533bad34-9272-4eee-af7e-cfa880c10455\",\n            \"3e4b83d8-420a-46d5-a8da-a8db09fc35d9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95062255859375,\n      \"Text\": \"30.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03305026888847351,\n          \"Height\": 0.008661860600113869,\n          \"Left\": 0.37401077151298523,\n          \"Top\": 0.5549578070640564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37401503324508667,\n            \"Y\": 0.5549578070640564\n          },\n          {\n            \"X\": 0.40706104040145874,\n            \"Y\": 0.5550060272216797\n          },\n          {\n            \"X\": 0.40705689787864685,\n            \"Y\": 0.5636196732521057\n          },\n          {\n            \"X\": 0.37401077151298523,\n            \"Y\": 0.5635712742805481\n          }\n        ]\n      },\n      \"Id\": \"d60a1d5a-feff-4ab0-86c6-2cf7092d2715\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0747851f-235e-49ef-b5c2-3c639dac6cba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75765228271484,\n      \"Text\": \"Flight or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044845279306173325,\n          \"Height\": 0.009649980813264847,\n          \"Left\": 0.4627981185913086,\n          \"Top\": 0.5500805974006653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4628024995326996,\n            \"Y\": 0.5500805974006653\n          },\n          {\n            \"X\": 0.5076434016227722,\n            \"Y\": 0.5501459836959839\n          },\n          {\n            \"X\": 0.5076392292976379,\n            \"Y\": 0.559730589389801\n          },\n          {\n            \"X\": 0.4627981185913086,\n            \"Y\": 0.5596650242805481\n          }\n        ]\n      },\n      \"Id\": \"4132ea2b-b431-454a-923b-c1f9b3bded51\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"56670517-cd59-48b0-9240-9aded194c6ed\",\n            \"3e77dbfc-32f6-4711-8310-edea980620e9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88160705566406,\n      \"Text\": \"Base Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049637265503406525,\n          \"Height\": 0.009226515889167786,\n          \"Left\": 0.0525318868458271,\n          \"Top\": 0.5606141090393066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0525377094745636,\n            \"Y\": 0.5606141090393066\n          },\n          {\n            \"X\": 0.10216915607452393,\n            \"Y\": 0.5606866478919983\n          },\n          {\n            \"X\": 0.10216353088617325,\n            \"Y\": 0.5698406100273132\n          },\n          {\n            \"X\": 0.0525318868458271,\n            \"Y\": 0.5697677731513977\n          }\n        ]\n      },\n      \"Id\": \"c4a09a6d-6a8e-492e-b15c-3d621cc0b3fa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4efe221d-c1bd-4b0c-8a17-bc316fea6cd4\",\n            \"7cfd9e29-8fbe-4bf3-9bea-2d35e5f648dd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8270263671875,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005909447558224201,\n          \"Height\": 0.007693252991884947,\n          \"Left\": 0.1395750343799591,\n          \"Top\": 0.5607089400291443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1395796239376068,\n            \"Y\": 0.5607089400291443\n          },\n          {\n            \"X\": 0.14548447728157043,\n            \"Y\": 0.5607175827026367\n          },\n          {\n            \"X\": 0.14547990262508392,\n            \"Y\": 0.5684021711349487\n          },\n          {\n            \"X\": 0.1395750343799591,\n            \"Y\": 0.5683935284614563\n          }\n        ]\n      },\n      \"Id\": \"28945234-57cf-4cd9-9834-e7444ed1efb1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5982c4d2-0792-4a9f-8707-75241ded624e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88854217529297,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03189331665635109,\n          \"Height\": 0.00840272568166256,\n          \"Left\": 0.16981592774391174,\n          \"Top\": 0.5627397894859314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16982081532478333,\n            \"Y\": 0.5627397894859314\n          },\n          {\n            \"X\": 0.20170924067497253,\n            \"Y\": 0.5627864599227905\n          },\n          {\n            \"X\": 0.2017044723033905,\n            \"Y\": 0.5711424946784973\n          },\n          {\n            \"X\": 0.16981592774391174,\n            \"Y\": 0.5710957050323486\n          }\n        ]\n      },\n      \"Id\": \"9e335f07-3866-4a1f-99d2-23f9839986b0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8929679c-3c0a-4b45-aff1-6a3ee891ca93\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.27263641357422,\n      \"Text\": \"$ 20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05020901560783386,\n          \"Height\": 0.009275113232433796,\n          \"Left\": 0.24683712422847748,\n          \"Top\": 0.5589931011199951\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2468421906232834,\n            \"Y\": 0.5589931011199951\n          },\n          {\n            \"X\": 0.29704612493515015,\n            \"Y\": 0.5590664744377136\n          },\n          {\n            \"X\": 0.29704126715660095,\n            \"Y\": 0.5682681798934937\n          },\n          {\n            \"X\": 0.24683712422847748,\n            \"Y\": 0.5681946277618408\n          }\n        ]\n      },\n      \"Id\": \"4b45e25e-193f-4d96-acda-40c468671b43\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cb31f9d1-040c-43f3-9e82-a9caa012fcfe\",\n            \"bb4feb9e-502e-4579-a5de-b99e778c2e2f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83856964111328,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006859424524009228,\n          \"Height\": 0.007708266377449036,\n          \"Left\": 0.3539978265762329,\n          \"Top\": 0.5605785250663757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3540017008781433,\n            \"Y\": 0.5605785250663757\n          },\n          {\n            \"X\": 0.3608572483062744,\n            \"Y\": 0.560588538646698\n          },\n          {\n            \"X\": 0.3608534038066864,\n            \"Y\": 0.5682867765426636\n          },\n          {\n            \"X\": 0.3539978265762329,\n            \"Y\": 0.5682767629623413\n          }\n        ]\n      },\n      \"Id\": \"7334e93b-dfb5-444b-b447-c8272e1b5e79\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f8461892-8d78-4439-9f7e-59bc097b7a03\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83779907226562,\n      \"Text\": \"Hazard\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03740635886788368,\n          \"Height\": 0.00775926886126399,\n          \"Left\": 0.4621685743331909,\n          \"Top\": 0.5605485439300537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46217212080955505,\n            \"Y\": 0.5605485439300537\n          },\n          {\n            \"X\": 0.4995749592781067,\n            \"Y\": 0.5606032609939575\n          },\n          {\n            \"X\": 0.4995715618133545,\n            \"Y\": 0.5683078169822693\n          },\n          {\n            \"X\": 0.4621685743331909,\n            \"Y\": 0.5682529807090759\n          }\n        ]\n      },\n      \"Id\": \"c2005f94-bfbb-493c-aa71-5a54eb6c7946\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"35e1dd25-f1aa-4558-811e-f76f799da294\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.64952087402344,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0064594941213727,\n          \"Height\": 0.0076482295989990234,\n          \"Left\": 0.569337785243988,\n          \"Top\": 0.5604580044746399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693408846855164,\n            \"Y\": 0.5604580044746399\n          },\n          {\n            \"X\": 0.5757972598075867,\n            \"Y\": 0.5604674220085144\n          },\n          {\n            \"X\": 0.5757941603660583,\n            \"Y\": 0.5681062340736389\n          },\n          {\n            \"X\": 0.569337785243988,\n            \"Y\": 0.5680967569351196\n          }\n        ]\n      },\n      \"Id\": \"21cd3a38-bcc9-402a-9723-605794cfb0df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"020cbd22-63e3-4b05-a993-f89a07093946\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92417907714844,\n      \"Text\": \"756\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022130480036139488,\n          \"Height\": 0.00852182973176241,\n          \"Left\": 0.6071352362632751,\n          \"Top\": 0.5555989146232605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6071385741233826,\n            \"Y\": 0.5555989146232605\n          },\n          {\n            \"X\": 0.6292657256126404,\n            \"Y\": 0.5556312203407288\n          },\n          {\n            \"X\": 0.6292624473571777,\n            \"Y\": 0.5641207695007324\n          },\n          {\n            \"X\": 0.6071352362632751,\n            \"Y\": 0.5640883445739746\n          }\n        ]\n      },\n      \"Id\": \"a796d739-f6c1-4760-97bc-431e2e85e3c7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"571ee72e-449d-46d6-ad5b-6512cca1798d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90284729003906,\n      \"Text\": \"08/08/2007\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06619724631309509,\n          \"Height\": 0.008677440695464611,\n          \"Left\": 0.7729403376579285,\n          \"Top\": 0.5650748014450073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7729431390762329,\n            \"Y\": 0.5650748014450073\n          },\n          {\n            \"X\": 0.839137613773346,\n            \"Y\": 0.5651717185974121\n          },\n          {\n            \"X\": 0.8391351103782654,\n            \"Y\": 0.573752224445343\n          },\n          {\n            \"X\": 0.7729403376579285,\n            \"Y\": 0.5736550688743591\n          }\n        ]\n      },\n      \"Id\": \"1d6d320c-10f5-48f0-bb2f-ec58cf09640f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0689d1e7-96bb-4360-a2b8-e51a9358039a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84420776367188,\n      \"Text\": \"Clothing\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04470117762684822,\n          \"Height\": 0.00981816928833723,\n          \"Left\": 0.4620550572872162,\n          \"Top\": 0.5753482580184937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46205952763557434,\n            \"Y\": 0.5753482580184937\n          },\n          {\n            \"X\": 0.5067562460899353,\n            \"Y\": 0.5754139423370361\n          },\n          {\n            \"X\": 0.5067519545555115,\n            \"Y\": 0.5851664543151855\n          },\n          {\n            \"X\": 0.4620550572872162,\n            \"Y\": 0.5851005911827087\n          }\n        ]\n      },\n      \"Id\": \"47501b35-5e88-416f-a0fc-c330662d495e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"12baef2f-fe16-48ed-bb16-019d5a6e9598\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.37628173828125,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006539630703628063,\n          \"Height\": 0.0075494893826544285,\n          \"Left\": 0.569307804107666,\n          \"Top\": 0.5756174921989441\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693109035491943,\n            \"Y\": 0.5756174921989441\n          },\n          {\n            \"X\": 0.5758474469184875,\n            \"Y\": 0.5756270885467529\n          },\n          {\n            \"X\": 0.575844407081604,\n            \"Y\": 0.5831670165061951\n          },\n          {\n            \"X\": 0.569307804107666,\n            \"Y\": 0.5831573605537415\n          }\n        ]\n      },\n      \"Id\": \"41865819-1348-4a3d-804d-c6be23c3612f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f6bd0308-a369-45df-a138-47c7436ba56a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.9748764038086,\n      \"Text\": \"452\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02244962938129902,\n          \"Height\": 0.008498603478074074,\n          \"Left\": 0.6035396456718445,\n          \"Top\": 0.574485182762146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6035429835319519,\n            \"Y\": 0.574485182762146\n          },\n          {\n            \"X\": 0.6259892582893372,\n            \"Y\": 0.5745181441307068\n          },\n          {\n            \"X\": 0.6259859800338745,\n            \"Y\": 0.5829837918281555\n          },\n          {\n            \"X\": 0.6035396456718445,\n            \"Y\": 0.58295077085495\n          }\n        ]\n      },\n      \"Id\": \"b30503f5-9618-4ccb-b4d3-d1c9ff6d3805\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1a6ead24-be6d-4d9e-978c-f9671b650f4d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.80686950683594,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04869156330823898,\n          \"Height\": 0.008171332068741322,\n          \"Left\": 0.051883045583963394,\n          \"Top\": 0.5908547043800354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05188819766044617,\n            \"Y\": 0.5908547043800354\n          },\n          {\n            \"X\": 0.10057460516691208,\n            \"Y\": 0.5909265875816345\n          },\n          {\n            \"X\": 0.10056962817907333,\n            \"Y\": 0.5990260243415833\n          },\n          {\n            \"X\": 0.051883045583963394,\n            \"Y\": 0.5989540219306946\n          }\n        ]\n      },\n      \"Id\": \"6e0d04b6-6ec3-4118-9ce2-be75dd498cdf\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6c3bfe04-7aaf-4be0-96b0-bc3c2bf9b974\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8759536743164,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006240266840904951,\n          \"Height\": 0.00792025588452816,\n          \"Left\": 0.13938474655151367,\n          \"Top\": 0.5908544063568115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13938948512077332,\n            \"Y\": 0.5908544063568115\n          },\n          {\n            \"X\": 0.1456250250339508,\n            \"Y\": 0.5908636450767517\n          },\n          {\n            \"X\": 0.14562031626701355,\n            \"Y\": 0.5987746715545654\n          },\n          {\n            \"X\": 0.13938474655151367,\n            \"Y\": 0.5987654328346252\n          }\n        ]\n      },\n      \"Id\": \"f68126ce-ec99-482e-98f5-c3a58bb21f1b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc81f53e-ef9f-4058-8658-87b0c216b23d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84979248046875,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03168423846364021,\n          \"Height\": 0.00841780100017786,\n          \"Left\": 0.17005884647369385,\n          \"Top\": 0.589033842086792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17006373405456543,\n            \"Y\": 0.589033842086792\n          },\n          {\n            \"X\": 0.20174308121204376,\n            \"Y\": 0.5890805721282959\n          },\n          {\n            \"X\": 0.20173829793930054,\n            \"Y\": 0.5974516272544861\n          },\n          {\n            \"X\": 0.17005884647369385,\n            \"Y\": 0.5974048376083374\n          }\n        ]\n      },\n      \"Id\": \"930c9aee-7c75-4b83-8000-947bf5fbb8a2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42d292e4-43b7-425a-bddd-4e417643984a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72821807861328,\n      \"Text\": \"30.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032911673188209534,\n          \"Height\": 0.008564823307096958,\n          \"Left\": 0.3762516975402832,\n          \"Top\": 0.5851816534996033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37625589966773987,\n            \"Y\": 0.5851816534996033\n          },\n          {\n            \"X\": 0.40916335582733154,\n            \"Y\": 0.5852301120758057\n          },\n          {\n            \"X\": 0.40915927290916443,\n            \"Y\": 0.5937464833259583\n          },\n          {\n            \"X\": 0.3762516975402832,\n            \"Y\": 0.5936978459358215\n          }\n        ]\n      },\n      \"Id\": \"8c281fcf-0381-4f93-a1bb-b97cca781f18\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"06698294-3059-458c-81e2-98d4a943e875\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81456756591797,\n      \"Text\": \"$ 20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05765184015035629,\n          \"Height\": 0.008457472547888756,\n          \"Left\": 0.2468976080417633,\n          \"Top\": 0.590246319770813\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2469022274017334,\n            \"Y\": 0.590246319770813\n          },\n          {\n            \"X\": 0.3045494556427002,\n            \"Y\": 0.5903313755989075\n          },\n          {\n            \"X\": 0.3045450448989868,\n            \"Y\": 0.5987037420272827\n          },\n          {\n            \"X\": 0.2468976080417633,\n            \"Y\": 0.5986185073852539\n          }\n        ]\n      },\n      \"Id\": \"3a9a2426-0182-4963-a5b5-be446d79170c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f54805d5-903a-406d-bdca-70f0c49ab8e5\",\n            \"74057eca-80de-4f75-8b7c-744a756be8a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72956848144531,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006789215374737978,\n          \"Height\": 0.007596552837640047,\n          \"Left\": 0.3541618883609772,\n          \"Top\": 0.5905881524085999\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3541657030582428,\n            \"Y\": 0.5905881524085999\n          },\n          {\n            \"X\": 0.36095109581947327,\n            \"Y\": 0.5905981659889221\n          },\n          {\n            \"X\": 0.36094731092453003,\n            \"Y\": 0.5981847047805786\n          },\n          {\n            \"X\": 0.3541618883609772,\n            \"Y\": 0.5981746315956116\n          }\n        ]\n      },\n      \"Id\": \"c541e872-6d23-4042-b440-209a3eae6205\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9b2ecf16-261e-4137-880e-1f14f478b6e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.43658447265625,\n      \"Text\": \"17. Projected amount of next pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.23148490488529205,\n          \"Height\": 0.01011156477034092,\n          \"Left\": 0.6932927966117859,\n          \"Top\": 0.5901795029640198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6932962536811829,\n            \"Y\": 0.5901795029640198\n          },\n          {\n            \"X\": 0.9247776865959167,\n            \"Y\": 0.590520977973938\n          },\n          {\n            \"X\": 0.9247751832008362,\n            \"Y\": 0.6002910733222961\n          },\n          {\n            \"X\": 0.6932927966117859,\n            \"Y\": 0.5999485850334167\n          }\n        ]\n      },\n      \"Id\": \"9e625cb4-fb08-4a10-8b7e-4f148711b8e4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4c8c1ae-9a3f-4541-bb34-f96763ea0a1d\",\n            \"ff81b78b-56df-4a97-bbfd-f182afd817fc\",\n            \"407d7612-670d-4e4c-ba53-d66b2dc6e585\",\n            \"a2ec3405-8fca-4c9c-a005-41b07c14f36c\",\n            \"59d486ed-35c1-4398-bb15-fdbbba94da63\",\n            \"85626070-b9ff-4883-aef3-19d2db26ee86\",\n            \"4059362e-62d2-4554-94ec-ac697e62b9b0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.70548248291016,\n      \"Text\": \"Quarters\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0460071861743927,\n          \"Height\": 0.00761609710752964,\n          \"Left\": 0.461988240480423,\n          \"Top\": 0.5996404886245728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46199166774749756,\n            \"Y\": 0.5996404886245728\n          },\n          {\n            \"X\": 0.5079954266548157,\n            \"Y\": 0.5997084975242615\n          },\n          {\n            \"X\": 0.507992148399353,\n            \"Y\": 0.6072565317153931\n          },\n          {\n            \"X\": 0.461988240480423,\n            \"Y\": 0.60718834400177\n          }\n        ]\n      },\n      \"Id\": \"740e56b4-7a34-4993-a427-f49d3c3ffc96\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3aa172d9-e0e5-4f0f-93d9-7e403bc4fbce\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.52610778808594,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006405787542462349,\n          \"Height\": 0.007476863916963339,\n          \"Left\": 0.5692138075828552,\n          \"Top\": 0.599517285823822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692168474197388,\n            \"Y\": 0.599517285823822\n          },\n          {\n            \"X\": 0.5756195783615112,\n            \"Y\": 0.5995267629623413\n          },\n          {\n            \"X\": 0.5756165385246277,\n            \"Y\": 0.6069941520690918\n          },\n          {\n            \"X\": 0.5692138075828552,\n            \"Y\": 0.6069846749305725\n          }\n        ]\n      },\n      \"Id\": \"26efcdb1-ab03-4b37-9221-a407c274e822\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b90db72-686a-4513-b932-c7bf6c67b37d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.89862060546875,\n      \"Text\": \"986\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02230067551136017,\n          \"Height\": 0.008418107405304909,\n          \"Left\": 0.6052896976470947,\n          \"Top\": 0.6025235652923584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6052929759025574,\n            \"Y\": 0.6025235652923584\n          },\n          {\n            \"X\": 0.6275903582572937,\n            \"Y\": 0.602556586265564\n          },\n          {\n            \"X\": 0.6275871396064758,\n            \"Y\": 0.6109416484832764\n          },\n          {\n            \"X\": 0.6052896976470947,\n            \"Y\": 0.610908567905426\n          }\n        ]\n      },\n      \"Id\": \"f51db0b6-ba9a-4fc6-ad6b-c52101aa0db4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8d93735f-17bb-4331-9b88-57ce879641ac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.51509857177734,\n      \"Text\": \"$ 5600\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040267497301101685,\n          \"Height\": 0.009578663855791092,\n          \"Left\": 0.7755263447761536,\n          \"Top\": 0.6045122742652893\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7755293846130371,\n            \"Y\": 0.6045122742652893\n          },\n          {\n            \"X\": 0.8157938122749329,\n            \"Y\": 0.6045718789100647\n          },\n          {\n            \"X\": 0.8157909512519836,\n            \"Y\": 0.6140909194946289\n          },\n          {\n            \"X\": 0.7755263447761536,\n            \"Y\": 0.6140311360359192\n          }\n        ]\n      },\n      \"Id\": \"5be988d8-17a6-413e-9a8b-7c039caac1d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"10586b08-ccef-4d55-9ac1-fa7cfc9350c6\",\n            \"d5f409ca-8e55-4f44-8fc2-c7713974401e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.2958755493164,\n      \"Text\": \"Commissions\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07096902281045914,\n          \"Height\": 0.008197550661861897,\n          \"Left\": 0.05184777081012726,\n          \"Top\": 0.6213597059249878\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.051852915436029434,\n            \"Y\": 0.6213597059249878\n          },\n          {\n            \"X\": 0.1228167936205864,\n            \"Y\": 0.6214653849601746\n          },\n          {\n            \"X\": 0.12281189113855362,\n            \"Y\": 0.6295572519302368\n          },\n          {\n            \"X\": 0.05184777081012726,\n            \"Y\": 0.629451334476471\n          }\n        ]\n      },\n      \"Id\": \"652738c8-4b6e-479e-8c5c-d640e0c00280\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"48e62465-2fea-49f7-a54c-e32ac5820ef2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81147766113281,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006534801330417395,\n          \"Height\": 0.0077490415424108505,\n          \"Left\": 0.13934658467769623,\n          \"Top\": 0.6213086247444153\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13935120403766632,\n            \"Y\": 0.6213086247444153\n          },\n          {\n            \"X\": 0.14588138461112976,\n            \"Y\": 0.6213183403015137\n          },\n          {\n            \"X\": 0.14587678015232086,\n            \"Y\": 0.6290576457977295\n          },\n          {\n            \"X\": 0.13934658467769623,\n            \"Y\": 0.6290479302406311\n          }\n        ]\n      },\n      \"Id\": \"3da10745-2d2a-4a51-8b79-7f17ce0b4652\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"962a6689-11c3-48f2-84a3-ea3dad26a157\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83078002929688,\n      \"Text\": \"20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032977648079395294,\n          \"Height\": 0.008424871601164341,\n          \"Left\": 0.17258866131305695,\n          \"Top\": 0.6199641823768616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17259353399276733,\n            \"Y\": 0.6199641823768616\n          },\n          {\n            \"X\": 0.20556630194187164,\n            \"Y\": 0.6200132369995117\n          },\n          {\n            \"X\": 0.2055615335702896,\n            \"Y\": 0.6283890604972839\n          },\n          {\n            \"X\": 0.17258866131305695,\n            \"Y\": 0.6283398270606995\n          }\n        ]\n      },\n      \"Id\": \"2f57d924-536a-4715-9d9f-320edd6a61eb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8c7a80bf-b31b-4ed2-a1f5-511e587dbd16\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.8222427368164,\n      \"Text\": \"$ 20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05578295886516571,\n          \"Height\": 0.009749902412295341,\n          \"Left\": 0.24674516916275024,\n          \"Top\": 0.6192625164985657\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24675048887729645,\n            \"Y\": 0.6192625164985657\n          },\n          {\n            \"X\": 0.30252811312675476,\n            \"Y\": 0.619345486164093\n          },\n          {\n            \"X\": 0.30252304673194885,\n            \"Y\": 0.629012405872345\n          },\n          {\n            \"X\": 0.24674516916275024,\n            \"Y\": 0.6289291977882385\n          }\n        ]\n      },\n      \"Id\": \"39dbaddd-e133-46c0-816f-a319c3e78014\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7769e1e2-55ea-44b8-8541-c8815654ca3c\",\n            \"bcf4fc46-0eef-48f2-a531-79c75f6700e1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.84425354003906,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00657517509534955,\n          \"Height\": 0.007567297667264938,\n          \"Left\": 0.35425692796707153,\n          \"Top\": 0.6212207078933716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35426074266433716,\n            \"Y\": 0.6212207078933716\n          },\n          {\n            \"X\": 0.3608321249485016,\n            \"Y\": 0.6212304830551147\n          },\n          {\n            \"X\": 0.36082834005355835,\n            \"Y\": 0.6287879943847656\n          },\n          {\n            \"X\": 0.35425692796707153,\n            \"Y\": 0.6287781596183777\n          }\n        ]\n      },\n      \"Id\": \"ba871249-c03b-47db-9511-99e362cc796f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d029dc0d-03bc-405c-9312-fb4f3093ed38\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.73922729492188,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03178597241640091,\n          \"Height\": 0.008465203456580639,\n          \"Left\": 0.38051217794418335,\n          \"Top\": 0.6183637976646423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3805163502693176,\n            \"Y\": 0.6183637976646423\n          },\n          {\n            \"X\": 0.41229817271232605,\n            \"Y\": 0.6184110641479492\n          },\n          {\n            \"X\": 0.4122941493988037,\n            \"Y\": 0.6268290281295776\n          },\n          {\n            \"X\": 0.38051217794418335,\n            \"Y\": 0.6267816424369812\n          }\n        ]\n      },\n      \"Id\": \"b51cdc7f-62e0-429f-9be6-61beeec36b7e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dfdf65b9-3377-4b00-8091-a11db21c388a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4544677734375,\n      \"Text\": \"Pro Pay\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.042556557804346085,\n          \"Height\": 0.00926020834594965,\n          \"Left\": 0.462490975856781,\n          \"Top\": 0.6209709644317627\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46249517798423767,\n            \"Y\": 0.6209709644317627\n          },\n          {\n            \"X\": 0.5050475597381592,\n            \"Y\": 0.6210342645645142\n          },\n          {\n            \"X\": 0.5050435066223145,\n            \"Y\": 0.6302311420440674\n          },\n          {\n            \"X\": 0.462490975856781,\n            \"Y\": 0.6301676630973816\n          }\n        ]\n      },\n      \"Id\": \"1b24520b-6bd8-4edf-9215-6fefb5bc7197\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3577110f-4604-4429-aef1-99f40a7926ba\",\n            \"3330b7e3-c7f3-462f-a20a-d3fb29c3d349\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.63226318359375,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006569019053131342,\n          \"Height\": 0.0076403249986469746,\n          \"Left\": 0.5691277980804443,\n          \"Top\": 0.6210506558418274\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5691309571266174,\n            \"Y\": 0.6210506558418274\n          },\n          {\n            \"X\": 0.5756968259811401,\n            \"Y\": 0.6210604310035706\n          },\n          {\n            \"X\": 0.5756937265396118,\n            \"Y\": 0.6286910176277161\n          },\n          {\n            \"X\": 0.5691277980804443,\n            \"Y\": 0.6286812424659729\n          }\n        ]\n      },\n      \"Id\": \"a32c6c57-d381-4d24-beaa-23a59c9a2098\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"43cb091e-e13b-4e8e-9000-df0f8702f439\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97032165527344,\n      \"Text\": \"123\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0213675145059824,\n          \"Height\": 0.008473580703139305,\n          \"Left\": 0.6040246486663818,\n          \"Top\": 0.6216451525688171\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6040279865264893,\n            \"Y\": 0.6216451525688171\n          },\n          {\n            \"X\": 0.6253921389579773,\n            \"Y\": 0.6216769218444824\n          },\n          {\n            \"X\": 0.6253889203071594,\n            \"Y\": 0.630118727684021\n          },\n          {\n            \"X\": 0.6040246486663818,\n            \"Y\": 0.6300868391990662\n          }\n        ]\n      },\n      \"Id\": \"51496029-f71d-4ce3-a93a-862e82b54a28\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d81f9eb9-2de5-4770-a0e8-6cc22bd399b1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.92774963378906,\n      \"Text\": \"18. Date of applicant's last pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21747520565986633,\n          \"Height\": 0.009922776371240616,\n          \"Left\": 0.6939760446548462,\n          \"Top\": 0.6206665635108948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6939794421195984,\n            \"Y\": 0.6206665635108948\n          },\n          {\n            \"X\": 0.9114512205123901,\n            \"Y\": 0.6209902167320251\n          },\n          {\n            \"X\": 0.9114487171173096,\n            \"Y\": 0.6305893063545227\n          },\n          {\n            \"X\": 0.6939760446548462,\n            \"Y\": 0.6302646994590759\n          }\n        ]\n      },\n      \"Id\": \"1a1316f5-a64e-4a0d-9dad-673f187a7102\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ca10ad8-36b6-4a9d-91c1-3b2dc21371f0\",\n            \"5522b1d5-ceee-4c68-baf1-e4724dacc43c\",\n            \"e6c04eb7-3ead-4436-b741-396fb80c12d0\",\n            \"8a163271-b014-48a2-8ecb-576f4b5cdcb8\",\n            \"bfe6b426-e390-430a-9743-2c5961cb850c\",\n            \"53f34c3c-a8f5-4d82-a214-85288e20c309\",\n            \"4a4a3464-3305-4b05-93c1-710f13977d1f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.86107635498047,\n      \"Text\": \"09/08/2006\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06581968814134598,\n          \"Height\": 0.008549900725483894,\n          \"Left\": 0.7770389318466187,\n          \"Top\": 0.6353018879890442\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7770416140556335,\n            \"Y\": 0.6353018879890442\n          },\n          {\n            \"X\": 0.842858612537384,\n            \"Y\": 0.6354002356529236\n          },\n          {\n            \"X\": 0.8428561687469482,\n            \"Y\": 0.6438517570495605\n          },\n          {\n            \"X\": 0.7770389318466187,\n            \"Y\": 0.643753170967102\n          }\n        ]\n      },\n      \"Id\": \"84eb7134-3683-455b-a4ab-7a49a9273c07\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"45979ce2-5910-4bc9-8dd8-f16321c2d4be\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.53672790527344,\n      \"Text\": \"Overseas or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0641833171248436,\n          \"Height\": 0.007784553337842226,\n          \"Left\": 0.46182507276535034,\n          \"Top\": 0.6410828232765198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4618285894393921,\n            \"Y\": 0.6410828232765198\n          },\n          {\n            \"X\": 0.5260083675384521,\n            \"Y\": 0.6411789059638977\n          },\n          {\n            \"X\": 0.5260050892829895,\n            \"Y\": 0.6488673686981201\n          },\n          {\n            \"X\": 0.46182507276535034,\n            \"Y\": 0.6487710475921631\n          }\n        ]\n      },\n      \"Id\": \"89c05d4d-da2e-4088-a4b8-07f240f11407\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"01f555f2-648c-4149-a6e4-79f8610da5e0\",\n            \"c8a9300f-f182-4f8d-8dec-5a1047aaf9c4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75513458251953,\n      \"Text\": \"Bonus\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034214410930871964,\n          \"Height\": 0.008098340593278408,\n          \"Left\": 0.05209069699048996,\n          \"Top\": 0.6515802145004272\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05209581181406975,\n            \"Y\": 0.6515802145004272\n          },\n          {\n            \"X\": 0.08630510419607162,\n            \"Y\": 0.6516315937042236\n          },\n          {\n            \"X\": 0.08630010485649109,\n            \"Y\": 0.65967857837677\n          },\n          {\n            \"X\": 0.05209069699048996,\n            \"Y\": 0.6596270799636841\n          }\n        ]\n      },\n      \"Id\": \"6d708a1d-75f2-4e21-8b09-649ba8aa5d90\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fe9e0552-6d79-4ad3-a855-b1dc3ed84b7d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79175567626953,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006170398555696011,\n          \"Height\": 0.007676032371819019,\n          \"Left\": 0.13926801085472107,\n          \"Top\": 0.6513897776603699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13927260041236877,\n            \"Y\": 0.6513897776603699\n          },\n          {\n            \"X\": 0.14543841779232025,\n            \"Y\": 0.6513990163803101\n          },\n          {\n            \"X\": 0.14543385803699493,\n            \"Y\": 0.659065842628479\n          },\n          {\n            \"X\": 0.13926801085472107,\n            \"Y\": 0.659056544303894\n          }\n        ]\n      },\n      \"Id\": \"9b70fd3d-6241-4a3e-842d-1ec27570604b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"253a5c0c-0874-4b60-a47a-e32322ad1cd2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90885925292969,\n      \"Text\": \"20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03337864205241203,\n          \"Height\": 0.008377701044082642,\n          \"Left\": 0.17235583066940308,\n          \"Top\": 0.6502684950828552\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17236068844795227,\n            \"Y\": 0.6502684950828552\n          },\n          {\n            \"X\": 0.2057344764471054,\n            \"Y\": 0.6503186225891113\n          },\n          {\n            \"X\": 0.20572973787784576,\n            \"Y\": 0.6586462259292603\n          },\n          {\n            \"X\": 0.17235583066940308,\n            \"Y\": 0.6585959792137146\n          }\n        ]\n      },\n      \"Id\": \"d494bc70-2832-489b-a828-d781e0baa064\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c7ed4d6-24db-4a73-b198-4d324fedc40b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.7799072265625,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00634154723957181,\n          \"Height\": 0.0076589398086071014,\n          \"Left\": 0.24662142992019653,\n          \"Top\": 0.651431143283844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2466256320476532,\n            \"Y\": 0.651431143283844\n          },\n          {\n            \"X\": 0.25296297669410706,\n            \"Y\": 0.6514406800270081\n          },\n          {\n            \"X\": 0.2529587745666504,\n            \"Y\": 0.6590901017189026\n          },\n          {\n            \"X\": 0.24662142992019653,\n            \"Y\": 0.6590805053710938\n          }\n        ]\n      },\n      \"Id\": \"e22f105d-ba54-4bb9-9e4a-0c94829360d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68d1a720-a9d5-4750-9698-069f885275c8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.81355285644531,\n      \"Text\": \"20.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03271743655204773,\n          \"Height\": 0.008432149887084961,\n          \"Left\": 0.2737768590450287,\n          \"Top\": 0.6469133496284485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27378135919570923,\n            \"Y\": 0.6469133496284485\n          },\n          {\n            \"X\": 0.3064942955970764,\n            \"Y\": 0.6469624042510986\n          },\n          {\n            \"X\": 0.30648988485336304,\n            \"Y\": 0.6553454995155334\n          },\n          {\n            \"X\": 0.2737768590450287,\n            \"Y\": 0.655296266078949\n          }\n        ]\n      },\n      \"Id\": \"b6ad1e01-e433-4702-b796-67edf372d9db\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3c4d50d0-69b7-45af-a91b-659740439c2d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.78624725341797,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00661100260913372,\n          \"Height\": 0.007493280805647373,\n          \"Left\": 0.35418665409088135,\n          \"Top\": 0.6513409614562988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3541904091835022,\n            \"Y\": 0.6513409614562988\n          },\n          {\n            \"X\": 0.360797643661499,\n            \"Y\": 0.6513508558273315\n          },\n          {\n            \"X\": 0.3607938885688782,\n            \"Y\": 0.6588342189788818\n          },\n          {\n            \"X\": 0.35418665409088135,\n            \"Y\": 0.6588242650032043\n          }\n        ]\n      },\n      \"Id\": \"07b2e79f-b5c1-4f10-9e03-69bda1f8abd1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"536c83a8-4ff2-4b8b-9631-fd5ce9491046\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.74756622314453,\n      \"Text\": \"15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032267943024635315,\n          \"Height\": 0.00856053177267313,\n          \"Left\": 0.3838583827018738,\n          \"Top\": 0.6469407081604004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38386255502700806,\n            \"Y\": 0.6469407081604004\n          },\n          {\n            \"X\": 0.4161263108253479,\n            \"Y\": 0.646989107131958\n          },\n          {\n            \"X\": 0.4161222577095032,\n            \"Y\": 0.6555012464523315\n          },\n          {\n            \"X\": 0.3838583827018738,\n            \"Y\": 0.6554527282714844\n          }\n        ]\n      },\n      \"Id\": \"6e61c7fa-2b00-4376-b23c-81e2aed0aa9a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a10055a-4b5e-4d6b-b65a-0248ccc295be\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.65752410888672,\n      \"Text\": \"Combat\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04192671552300453,\n          \"Height\": 0.008013003505766392,\n          \"Left\": 0.4623778760433197,\n          \"Top\": 0.6512777209281921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.462381511926651,\n            \"Y\": 0.6512777209281921\n          },\n          {\n            \"X\": 0.5043045878410339,\n            \"Y\": 0.6513407230377197\n          },\n          {\n            \"X\": 0.504301130771637,\n            \"Y\": 0.6592907309532166\n          },\n          {\n            \"X\": 0.4623778760433197,\n            \"Y\": 0.6592276096343994\n          }\n        ]\n      },\n      \"Id\": \"b522564d-1347-4878-bfbd-cbc8d93d207a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"784df844-97c6-4351-a48b-de2cb65c28dd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.83407592773438,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006347160320729017,\n          \"Height\": 0.007688824087381363,\n          \"Left\": 0.5693024396896362,\n          \"Top\": 0.6513631343841553\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693055987358093,\n            \"Y\": 0.6513631343841553\n          },\n          {\n            \"X\": 0.575649619102478,\n            \"Y\": 0.6513726711273193\n          },\n          {\n            \"X\": 0.5756464600563049,\n            \"Y\": 0.6590519547462463\n          },\n          {\n            \"X\": 0.5693024396896362,\n            \"Y\": 0.6590424180030823\n          }\n        ]\n      },\n      \"Id\": \"51606985-c9ce-469a-817d-0c3dbc6ceb2b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f174c198-7b59-4e7e-bbc2-adbf31336351\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96173858642578,\n      \"Text\": \"645\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022296780720353127,\n          \"Height\": 0.008555342443287373,\n          \"Left\": 0.6070799231529236,\n          \"Top\": 0.6481133103370667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.607083261013031,\n            \"Y\": 0.6481133103370667\n          },\n          {\n            \"X\": 0.6293767094612122,\n            \"Y\": 0.6481468081474304\n          },\n          {\n            \"X\": 0.6293734312057495,\n            \"Y\": 0.6566686630249023\n          },\n          {\n            \"X\": 0.6070799231529236,\n            \"Y\": 0.6566351652145386\n          }\n        ]\n      },\n      \"Id\": \"0ea5076b-ad54-48cb-b9f4-2f58ac3b74df\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6505d8c8-2153-4c0b-ab8b-48db6d292e14\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.72840881347656,\n      \"Text\": \"19. Amount of last pay increase\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17357192933559418,\n          \"Height\": 0.010051896795630455,\n          \"Left\": 0.6942372918128967,\n          \"Top\": 0.6508351564407349\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6942408084869385,\n            \"Y\": 0.6508351564407349\n          },\n          {\n            \"X\": 0.8678092360496521,\n            \"Y\": 0.6510957479476929\n          },\n          {\n            \"X\": 0.8678064942359924,\n            \"Y\": 0.6608870029449463\n          },\n          {\n            \"X\": 0.6942372918128967,\n            \"Y\": 0.660625696182251\n          }\n        ]\n      },\n      \"Id\": \"2c14e2bb-7933-4d02-b153-cbf4b82ad8f9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4fbe435-c7eb-4742-a4ed-6ab39a2cda51\",\n            \"7f650c99-9e20-4d96-8460-6c1c22a9aaf2\",\n            \"f13fa00a-9b6a-4cf0-80d6-58c8d5eee457\",\n            \"dabede3e-111d-47ff-a540-1132c94f6848\",\n            \"3e077c65-172d-457a-8f63-67b822243891\",\n            \"15dd6843-1487-4033-95d6-767c0dd43b64\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.77603912353516,\n      \"Text\": \"Variable Housing\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09214422106742859,\n          \"Height\": 0.009866568259894848,\n          \"Left\": 0.4615282118320465,\n          \"Top\": 0.6700921654701233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46153268218040466,\n            \"Y\": 0.6700921654701233\n          },\n          {\n            \"X\": 0.5536724328994751,\n            \"Y\": 0.670231282711029\n          },\n          {\n            \"X\": 0.5536683797836304,\n            \"Y\": 0.679958701133728\n          },\n          {\n            \"X\": 0.4615282118320465,\n            \"Y\": 0.6798191666603088\n          }\n        ]\n      },\n      \"Id\": \"02258a2e-8f72-4573-a9f9-5f6bb23c0098\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0fcd7c1f-fe75-4c8f-8c3e-93990dcfeb24\",\n            \"d1c8c860-eb8a-49a6-8556-339f47df8afa\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.75518798828125,\n      \"Text\": \"$ 4800\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0405852310359478,\n          \"Height\": 0.009513660334050655,\n          \"Left\": 0.7765133380889893,\n          \"Top\": 0.6717118620872498\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.776516318321228,\n            \"Y\": 0.6717118620872498\n          },\n          {\n            \"X\": 0.8170985579490662,\n            \"Y\": 0.6717731356620789\n          },\n          {\n            \"X\": 0.8170956969261169,\n            \"Y\": 0.6812255382537842\n          },\n          {\n            \"X\": 0.7765133380889893,\n            \"Y\": 0.681164026260376\n          }\n        ]\n      },\n      \"Id\": \"3d1c526e-8637-4f26-a67d-cc26c139a664\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e629cb75-4909-4ecc-a4ac-8ec23321ffe3\",\n            \"3f5f1d2e-7bb0-4a95-a1cb-a921842348d8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85657501220703,\n      \"Text\": \"Total\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027747726067900658,\n          \"Height\": 0.00800800509750843,\n          \"Left\": 0.05158679187297821,\n          \"Top\": 0.6818933486938477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05159185826778412,\n            \"Y\": 0.6818933486938477\n          },\n          {\n            \"X\": 0.07933451980352402,\n            \"Y\": 0.6819354295730591\n          },\n          {\n            \"X\": 0.07932955026626587,\n            \"Y\": 0.6899013519287109\n          },\n          {\n            \"X\": 0.05158679187297821,\n            \"Y\": 0.6898592114448547\n          }\n        ]\n      },\n      \"Id\": \"01cc027a-e13f-4867-a339-2ba15fdbbd6b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d1bea94-5ec2-4c65-afbd-64ac907b00df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.27792358398438,\n      \"Text\": \"$ 70.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04405275359749794,\n          \"Height\": 0.011599305085837841,\n          \"Left\": 0.13933520019054413,\n          \"Top\": 0.6779989004135132\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13934208452701569,\n            \"Y\": 0.6779989004135132\n          },\n          {\n            \"X\": 0.18338795006275177,\n            \"Y\": 0.6780655980110168\n          },\n          {\n            \"X\": 0.18338127434253693,\n            \"Y\": 0.6895982027053833\n          },\n          {\n            \"X\": 0.13933520019054413,\n            \"Y\": 0.6895313262939453\n          }\n        ]\n      },\n      \"Id\": \"0d599fcb-f048-46c2-9451-84384b6d23c1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f28f120-dbe6-416e-bb81-0bf5b611b957\",\n            \"67480bb1-cd1d-4b57-82d4-82c3bf6288e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.18206787109375,\n      \"Text\": \"$ 80.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04472217336297035,\n          \"Height\": 0.011491244658827782,\n          \"Left\": 0.24669919908046722,\n          \"Top\": 0.6780697107315063\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24670548737049103,\n            \"Y\": 0.6780697107315063\n          },\n          {\n            \"X\": 0.29142138361930847,\n            \"Y\": 0.6781374216079712\n          },\n          {\n            \"X\": 0.2914153039455414,\n            \"Y\": 0.6895609498023987\n          },\n          {\n            \"X\": 0.24669919908046722,\n            \"Y\": 0.6894930601119995\n          }\n        ]\n      },\n      \"Id\": \"6ca68b38-88bc-4ea1-b9cd-661f7cfd19d1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81f1d3b4-7b4f-4e64-866a-3870cf338d9e\",\n            \"052c71e4-9338-43bc-b2b3-194f9aeee8a7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.84307098388672,\n      \"Text\": \"$ 90.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04397597536444664,\n          \"Height\": 0.01253280509263277,\n          \"Left\": 0.3541472852230072,\n          \"Top\": 0.6768386960029602\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.354153573513031,\n            \"Y\": 0.6768386960029602\n          },\n          {\n            \"X\": 0.39812326431274414,\n            \"Y\": 0.6769052147865295\n          },\n          {\n            \"X\": 0.39811721444129944,\n            \"Y\": 0.6893714666366577\n          },\n          {\n            \"X\": 0.3541472852230072,\n            \"Y\": 0.6893047094345093\n          }\n        ]\n      },\n      \"Id\": \"d3276fb2-839b-44c9-b80d-dbf68b81fcc4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7f04bde2-64e7-4133-b166-d3509e1546c2\",\n            \"ead99bcb-a1b5-4e8d-bdef-f98729c630e9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85662078857422,\n      \"Text\": \"Allowance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05638602375984192,\n          \"Height\": 0.00800548866391182,\n          \"Left\": 0.4617246091365814,\n          \"Top\": 0.680382490158081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46172821521759033,\n            \"Y\": 0.680382490158081\n          },\n          {\n            \"X\": 0.5181106328964233,\n            \"Y\": 0.6804678440093994\n          },\n          {\n            \"X\": 0.5181071758270264,\n            \"Y\": 0.6883879899978638\n          },\n          {\n            \"X\": 0.4617246091365814,\n            \"Y\": 0.6883023977279663\n          }\n        ]\n      },\n      \"Id\": \"7607496b-8da1-45a9-b1c0-7a1bcb2d876a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"535b6615-5769-47a4-893e-d868224a7dea\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.15426635742188,\n      \"Text\": \"$\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005884947255253792,\n          \"Height\": 0.0073980907909572124,\n          \"Left\": 0.5698274374008179,\n          \"Top\": 0.6805639863014221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698304772377014,\n            \"Y\": 0.6805639863014221\n          },\n          {\n            \"X\": 0.5757123827934265,\n            \"Y\": 0.6805729269981384\n          },\n          {\n            \"X\": 0.5757094025611877,\n            \"Y\": 0.6879621148109436\n          },\n          {\n            \"X\": 0.5698274374008179,\n            \"Y\": 0.6879531741142273\n          }\n        ]\n      },\n      \"Id\": \"78234260-ba0d-40f7-b423-8036c090663e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"724f616c-9ba0-4689-bc68-7a9814412cb4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92557525634766,\n      \"Text\": \"587\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02145482785999775,\n          \"Height\": 0.008350266143679619,\n          \"Left\": 0.6079360246658325,\n          \"Top\": 0.6783530712127686\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6079393029212952,\n            \"Y\": 0.6783530712127686\n          },\n          {\n            \"X\": 0.6293908357620239,\n            \"Y\": 0.6783854961395264\n          },\n          {\n            \"X\": 0.6293876767158508,\n            \"Y\": 0.6867033243179321\n          },\n          {\n            \"X\": 0.6079360246658325,\n            \"Y\": 0.6866707801818848\n          }\n        ]\n      },\n      \"Id\": \"26544cc8-448e-4878-9d0d-a8a6a2f8b6ff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b246bcf0-e5c6-45bc-815b-7527c8cd8e8d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.75704956054688,\n      \"Text\": \"20. Remarks (If employee was off work for any length of time, please indicate time period and reason)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5560442209243774,\n          \"Height\": 0.010998156853020191,\n          \"Left\": 0.04176522046327591,\n          \"Top\": 0.6958469748497009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041771721094846725,\n            \"Y\": 0.6958469748497009\n          },\n          {\n            \"X\": 0.5978094339370728,\n            \"Y\": 0.696692943572998\n          },\n          {\n            \"X\": 0.597805380821228,\n            \"Y\": 0.7068451642990112\n          },\n          {\n            \"X\": 0.04176522046327591,\n            \"Y\": 0.7059966921806335\n          }\n        ]\n      },\n      \"Id\": \"08976342-db24-4e34-aaf8-2244549d942b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"972627f1-01af-4a2b-9cc6-03aec66fd75e\",\n            \"c4d2f65c-bf2d-4db2-a039-4d01500f14c9\",\n            \"1c7d0c0b-27cc-4e5d-99c7-d0cb7d98f91d\",\n            \"bdc93f55-df69-40df-99f9-c55294d7ea2a\",\n            \"1e4f4f5a-acb2-47ce-bc85-0a05e92c0abe\",\n            \"8c3dd02a-27e1-4f7f-bc50-84f6fb16f4c9\",\n            \"b440b0be-8157-4957-83b4-5fd982ce3953\",\n            \"c241a502-c9ac-4c33-9f13-844e85e92533\",\n            \"75b97d09-1e99-48e0-90e8-9a6cce152918\",\n            \"2914be51-d6e2-472d-804a-de86a02d1a7a\",\n            \"7459b021-a105-45b6-bdc7-c10deb34506e\",\n            \"c07031ed-3776-4668-bd1a-141d64513e2c\",\n            \"829a45c7-9833-47a6-8543-6606e83c3622\",\n            \"fe0b209c-c9f4-46ca-b6ac-8f5424361bbf\",\n            \"168973fd-8198-434d-bbf1-c1a2ed31dfbf\",\n            \"b3741fbe-a4af-426d-872d-5e689272d085\",\n            \"2b2b8064-5d2d-4179-90a2-f011d66bd6eb\",\n            \"5d973866-f6cd-41d0-986d-1ae0ccb6024e\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91227722167969,\n      \"Text\": \"Not Applicable\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10491976141929626,\n          \"Height\": 0.012505654245615005,\n          \"Left\": 0.05794248357415199,\n          \"Top\": 0.7153335809707642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.057950299233198166,\n            \"Y\": 0.7153335809707642\n          },\n          {\n            \"X\": 0.16286224126815796,\n            \"Y\": 0.7154940366744995\n          },\n          {\n            \"X\": 0.16285499930381775,\n            \"Y\": 0.7278392314910889\n          },\n          {\n            \"X\": 0.05794248357415199,\n            \"Y\": 0.727678120136261\n          }\n        ]\n      },\n      \"Id\": \"e2e2d94d-5fa3-4885-8f92-14170b0e5b24\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e1f66751-bbca-4078-a7be-ef22aa884205\",\n            \"bb083684-3afb-4c9b-9b23-26a5ecebde77\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.7997055053711,\n      \"Text\": \"Part III - Verification of Previous Employment\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3369874656200409,\n          \"Height\": 0.011944742873311043,\n          \"Left\": 0.04236247390508652,\n          \"Top\": 0.75809645652771\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0423697866499424,\n            \"Y\": 0.75809645652771\n          },\n          {\n            \"X\": 0.379349946975708,\n            \"Y\": 0.7586182355880737\n          },\n          {\n            \"X\": 0.37934431433677673,\n            \"Y\": 0.7700411677360535\n          },\n          {\n            \"X\": 0.04236247390508652,\n            \"Y\": 0.769517719745636\n          }\n        ]\n      },\n      \"Id\": \"0b53670b-defb-42ff-a2f6-4941038f9391\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5e5ee25b-8fd2-4aa2-9d40-ec263224606b\",\n            \"699c0f70-2292-47d6-a779-b9f0da529073\",\n            \"af170e28-da9b-4e50-97c4-2a69323be273\",\n            \"d744b0be-4271-4d8f-ad5e-9ba9870ff6af\",\n            \"faa1a822-8fef-434b-9420-95596c4642f9\",\n            \"d50b87b2-3f63-4984-be62-066310c1034d\",\n            \"15b75da4-c408-4e06-a442-4445b10d0fca\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.38059997558594,\n      \"Text\": \"21. Date Hired\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0743967741727829,\n          \"Height\": 0.007882051169872284,\n          \"Left\": 0.041313882917165756,\n          \"Top\": 0.7728627920150757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0413188599050045,\n            \"Y\": 0.7728627920150757\n          },\n          {\n            \"X\": 0.11571065336465836,\n            \"Y\": 0.7729784250259399\n          },\n          {\n            \"X\": 0.1157059296965599,\n            \"Y\": 0.7807448506355286\n          },\n          {\n            \"X\": 0.041313882917165756,\n            \"Y\": 0.7806289196014404\n          }\n        ]\n      },\n      \"Id\": \"01ecdbcd-491a-4efc-8e1e-eb8ee945bd77\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4224337b-61e9-4cf8-af83-91025810c7e2\",\n            \"ff994120-c949-4f13-820d-e41864d14c7d\",\n            \"a5203476-2b23-4be4-bedc-529142f37f76\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95388793945312,\n      \"Text\": \"04/04/2004\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06526118516921997,\n          \"Height\": 0.00870621856302023,\n          \"Left\": 0.14098210632801056,\n          \"Top\": 0.7747585773468018\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14098724722862244,\n            \"Y\": 0.7747585773468018\n          },\n          {\n            \"X\": 0.20624329149723053,\n            \"Y\": 0.7748600840568542\n          },\n          {\n            \"X\": 0.20623838901519775,\n            \"Y\": 0.783464789390564\n          },\n          {\n            \"X\": 0.14098210632801056,\n            \"Y\": 0.7833630442619324\n          }\n        ]\n      },\n      \"Id\": \"9ec5d75f-82f5-4df5-9fcf-2684d266dca5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a9e3142-2e71-4760-b6bb-449cea3052c9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.03321075439453,\n      \"Text\": \"23. Salary/Wage at Termination Per (Year) (Month) (Week)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.30405786633491516,\n          \"Height\": 0.010112701915204525,\n          \"Left\": 0.2854490876197815,\n          \"Top\": 0.7722811698913574\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.28545424342155457,\n            \"Y\": 0.7722811698913574\n          },\n          {\n            \"X\": 0.589506983757019,\n            \"Y\": 0.7727538347244263\n          },\n          {\n            \"X\": 0.5895031094551086,\n            \"Y\": 0.7823938727378845\n          },\n          {\n            \"X\": 0.2854490876197815,\n            \"Y\": 0.7819199562072754\n          }\n        ]\n      },\n      \"Id\": \"ecdfa731-0b49-445e-8dd7-750f7129e7ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"149ba2d6-ab26-47e5-8a0c-64d06baea8de\",\n            \"2616b7e8-7a75-4f8a-820c-ba9c39fd6060\",\n            \"22e0cda1-32be-4372-9312-e903d27e76b2\",\n            \"bf0b990a-5190-4de3-87fe-bb0764375491\",\n            \"35524e99-0677-4bf0-8428-7d73d762eed1\",\n            \"ae675d1b-0d5f-47e8-8d61-a9430cb4d76f\",\n            \"4ac766fa-04dd-4856-89f0-f24a3777bb7f\",\n            \"49f40934-993d-4302-a3da-aebb618cbcf0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 94.4369888305664,\n      \"Text\": \"22. Date Terminated\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10359326750040054,\n          \"Height\": 0.008482321165502071,\n          \"Left\": 0.04153933748602867,\n          \"Top\": 0.7897937297821045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04154466837644577,\n            \"Y\": 0.7897937297821045\n          },\n          {\n            \"X\": 0.14513260126113892,\n            \"Y\": 0.7899555563926697\n          },\n          {\n            \"X\": 0.14512765407562256,\n            \"Y\": 0.7982760667800903\n          },\n          {\n            \"X\": 0.04153933748602867,\n            \"Y\": 0.7981138229370117\n          }\n        ]\n      },\n      \"Id\": \"42a77dca-bb33-4016-af64-a1c3d3011527\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a0000fcf-d91d-437e-a148-ff7c699c602e\",\n            \"9dfafeb5-ccf6-4cbe-9759-8e0b0ede4ee8\",\n            \"b6ad479d-3439-4cfd-a0a6-8adfb90af0d7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.90304565429688,\n      \"Text\": \"01/03/2005\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06550457328557968,\n          \"Height\": 0.008753936737775803,\n          \"Left\": 0.169297993183136,\n          \"Top\": 0.7888053059577942\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1693030595779419,\n            \"Y\": 0.7888053059577942\n          },\n          {\n            \"X\": 0.23480257391929626,\n            \"Y\": 0.7889075875282288\n          },\n          {\n            \"X\": 0.23479776084423065,\n            \"Y\": 0.7975592017173767\n          },\n          {\n            \"X\": 0.169297993183136,\n            \"Y\": 0.797456681728363\n          }\n        ]\n      },\n      \"Id\": \"e0134009-ced8-45a7-a2e8-416ec36c06a0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6b65af51-452a-41f1-9e99-a16d69139344\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93396759033203,\n      \"Text\": \"Base\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024102872237563133,\n          \"Height\": 0.007524016313254833,\n          \"Left\": 0.3050488531589508,\n          \"Top\": 0.788079559803009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.305052787065506,\n            \"Y\": 0.788079559803009\n          },\n          {\n            \"X\": 0.3291517198085785,\n            \"Y\": 0.7881171703338623\n          },\n          {\n            \"X\": 0.3291478753089905,\n            \"Y\": 0.7956035733222961\n          },\n          {\n            \"X\": 0.3050488531589508,\n            \"Y\": 0.7955658435821533\n          }\n        ]\n      },\n      \"Id\": \"15ed7399-0ab5-48f9-97c4-583670b82b00\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ba3f95e2-08fb-43d0-bcfd-21ae8029d495\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.38278198242188,\n      \"Text\": \"$ 9500\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03897617757320404,\n          \"Height\": 0.009418662637472153,\n          \"Left\": 0.35201236605644226,\n          \"Top\": 0.7847816348075867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3520171046257019,\n            \"Y\": 0.7847816348075867\n          },\n          {\n            \"X\": 0.3909885585308075,\n            \"Y\": 0.7848424315452576\n          },\n          {\n            \"X\": 0.3909839689731598,\n            \"Y\": 0.7942003011703491\n          },\n          {\n            \"X\": 0.35201236605644226,\n            \"Y\": 0.7941393256187439\n          }\n        ]\n      },\n      \"Id\": \"08affbdb-1b26-45f2-897a-ef8e47e5d5d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"40fa7465-6ea6-462b-86df-6e5beb489a33\",\n            \"c397edf9-6423-4369-b532-65fcb104536f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79443359375,\n      \"Text\": \"Overtime\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04562950134277344,\n          \"Height\": 0.007468591444194317,\n          \"Left\": 0.43564698100090027,\n          \"Top\": 0.7878733277320862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43565043807029724,\n            \"Y\": 0.7878733277320862\n          },\n          {\n            \"X\": 0.4812764823436737,\n            \"Y\": 0.7879445552825928\n          },\n          {\n            \"X\": 0.48127317428588867,\n            \"Y\": 0.7953419089317322\n          },\n          {\n            \"X\": 0.43564698100090027,\n            \"Y\": 0.7952705025672913\n          }\n        ]\n      },\n      \"Id\": \"4844518a-4150-405f-b6c2-05e36f4c44d7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"caff6f2b-a24c-47e7-b974-5576f85b58d5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96920776367188,\n      \"Text\": \"1250\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02790924720466137,\n          \"Height\": 0.008410838432610035,\n          \"Left\": 0.5000621676445007,\n          \"Top\": 0.7859663367271423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5000658631324768,\n            \"Y\": 0.7859663367271423\n          },\n          {\n            \"X\": 0.5279714465141296,\n            \"Y\": 0.7860099077224731\n          },\n          {\n            \"X\": 0.5279678702354431,\n            \"Y\": 0.7943772077560425\n          },\n          {\n            \"X\": 0.5000621676445007,\n            \"Y\": 0.7943335175514221\n          }\n        ]\n      },\n      \"Id\": \"e3f3c609-410a-4f87-9c23-32c80938fbb9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d2a97d9-a503-4c78-9cb5-49f44a1dfbd7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4081039428711,\n      \"Text\": \"Commissions\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06599078327417374,\n          \"Height\": 0.007702809292823076,\n          \"Left\": 0.5878944396972656,\n          \"Top\": 0.7877348065376282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5878974795341492,\n            \"Y\": 0.7877348065376282\n          },\n          {\n            \"X\": 0.6538851857185364,\n            \"Y\": 0.7878378033638\n          },\n          {\n            \"X\": 0.6538823843002319,\n            \"Y\": 0.7954376339912415\n          },\n          {\n            \"X\": 0.5878944396972656,\n            \"Y\": 0.7953343987464905\n          }\n        ]\n      },\n      \"Id\": \"865989b7-7198-4139-b9b8-e76564cab186\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dad0fb1c-b84f-4b8c-a1ac-0cf157c1c6f7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.98257446289062,\n      \"Text\": \"4500\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029703041538596153,\n          \"Height\": 0.008346308954060078,\n          \"Left\": 0.6795932054519653,\n          \"Top\": 0.785436749458313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6795961856842041,\n            \"Y\": 0.785436749458313\n          },\n          {\n            \"X\": 0.7092962265014648,\n            \"Y\": 0.7854830622673035\n          },\n          {\n            \"X\": 0.7092933058738708,\n            \"Y\": 0.7937830090522766\n          },\n          {\n            \"X\": 0.6795932054519653,\n            \"Y\": 0.7937365770339966\n          }\n        ]\n      },\n      \"Id\": \"4806c78e-e132-417a-a47b-f79cbd41248a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd83486f-0a96-4e99-9d09-ee79c30a3bba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.85948181152344,\n      \"Text\": \"Bonus\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031636375933885574,\n          \"Height\": 0.007475486025214195,\n          \"Left\": 0.7611423134803772,\n          \"Top\": 0.7879124879837036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.761144757270813,\n            \"Y\": 0.7879124879837036\n          },\n          {\n            \"X\": 0.792778730392456,\n            \"Y\": 0.7879618406295776\n          },\n          {\n            \"X\": 0.7927764058113098,\n            \"Y\": 0.7953879237174988\n          },\n          {\n            \"X\": 0.7611423134803772,\n            \"Y\": 0.7953384518623352\n          }\n        ]\n      },\n      \"Id\": \"7900d273-f6e6-46f1-ba2e-fb11074497ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"487d64f4-0195-4c41-9a1e-53009f109a86\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.96612548828125,\n      \"Text\": \"4000\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029527196660637856,\n          \"Height\": 0.008420160040259361,\n          \"Left\": 0.8135125041007996,\n          \"Top\": 0.7861029505729675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8135150671005249,\n            \"Y\": 0.7861029505729675\n          },\n          {\n            \"X\": 0.8430396914482117,\n            \"Y\": 0.7861490249633789\n          },\n          {\n            \"X\": 0.8430373072624207,\n            \"Y\": 0.7945231199264526\n          },\n          {\n            \"X\": 0.8135125041007996,\n            \"Y\": 0.7944769263267517\n          }\n        ]\n      },\n      \"Id\": \"2d0bd371-2822-48e2-9fdf-baef492637cb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42bd0911-a688-4183-a9f1-708b2a96dfe9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.28245544433594,\n      \"Text\": \"24. Reason for Leaving\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1176355704665184,\n          \"Height\": 0.009368500672280788,\n          \"Left\": 0.04137426242232323,\n          \"Top\": 0.8042629957199097\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0413801446557045,\n            \"Y\": 0.8042629957199097\n          },\n          {\n            \"X\": 0.15900982916355133,\n            \"Y\": 0.8044475317001343\n          },\n          {\n            \"X\": 0.15900442004203796,\n            \"Y\": 0.813631534576416\n          },\n          {\n            \"X\": 0.04137426242232323,\n            \"Y\": 0.8134465217590332\n          }\n        ]\n      },\n      \"Id\": \"e1346c35-fac4-4fdf-a8c1-bfed591cb567\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8184dfaf-0b56-41e0-ae32-c1c71c0501a4\",\n            \"4bc28e3b-dfc7-4bdc-94fb-14b304cc9a8e\",\n            \"0c97838c-d9bf-41f2-89eb-dd2172ccf822\",\n            \"78034b72-c6ce-4a31-adbf-e7a00977e7ad\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.55400085449219,\n      \"Text\": \"25. Position Held\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08690624684095383,\n          \"Height\": 0.007886126637458801,\n          \"Left\": 0.49100127816200256,\n          \"Top\": 0.8041186332702637\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49100470542907715,\n            \"Y\": 0.8041186332702637\n          },\n          {\n            \"X\": 0.5779075026512146,\n            \"Y\": 0.8042548894882202\n          },\n          {\n            \"X\": 0.5779044032096863,\n            \"Y\": 0.8120047450065613\n          },\n          {\n            \"X\": 0.49100127816200256,\n            \"Y\": 0.8118681907653809\n          }\n        ]\n      },\n      \"Id\": \"127d368a-b053-46ef-bda6-01e0e878df82\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3dfd8334-23ce-4675-a423-4aa3048e6578\",\n            \"ee04c3fa-f44f-4e6e-a539-a642c1529d0d\",\n            \"6d4a7277-e0d6-4560-ab2c-61c56227eadf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.14087677001953,\n      \"Text\": \"Medical Issue\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08003074675798416,\n          \"Height\": 0.008527572266757488,\n          \"Left\": 0.16343237459659576,\n          \"Top\": 0.8149076104164124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16343730688095093,\n            \"Y\": 0.8149076104164124\n          },\n          {\n            \"X\": 0.24346312880516052,\n            \"Y\": 0.815033495426178\n          },\n          {\n            \"X\": 0.24345849454402924,\n            \"Y\": 0.8234351873397827\n          },\n          {\n            \"X\": 0.16343237459659576,\n            \"Y\": 0.8233090043067932\n          }\n        ]\n      },\n      \"Id\": \"ddcc4b3d-4b10-432c-a4f8-80d6cf62ba1a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9da06c04-141a-4a42-8a41-3ad7082f8053\",\n            \"8abb1dee-4e89-499c-aebd-1654c8321aba\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.93670654296875,\n      \"Text\": \"Device Operator\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0952015146613121,\n          \"Height\": 0.010517172515392303,\n          \"Left\": 0.5571738481521606,\n          \"Top\": 0.8143945336341858\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5571781396865845,\n            \"Y\": 0.8143945336341858\n          },\n          {\n            \"X\": 0.652375340461731,\n            \"Y\": 0.8145442605018616\n          },\n          {\n            \"X\": 0.6523714661598206,\n            \"Y\": 0.8249117136001587\n          },\n          {\n            \"X\": 0.5571738481521606,\n            \"Y\": 0.8247615694999695\n          }\n        ]\n      },\n      \"Id\": \"df9cdb3a-9946-4203-be54-d9295eecf00a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60f2d252-7994-4402-b041-094f671c3c92\",\n            \"99f0888a-3c8d-44a1-9137-33247f346863\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.18891143798828,\n      \"Text\": \"Part IV - Authorized Signature Federal statutes provide severe penalties for any fraud, intentional misrepresentation or criminal connivance\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8689990043640137,\n          \"Height\": 0.012832336127758026,\n          \"Left\": 0.04242221638560295,\n          \"Top\": 0.8335466384887695\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042429547756910324,\n            \"Y\": 0.8335466384887695\n          },\n          {\n            \"X\": 0.9114212393760681,\n            \"Y\": 0.8349207043647766\n          },\n          {\n            \"X\": 0.9114182591438293,\n            \"Y\": 0.8463789820671082\n          },\n          {\n            \"X\": 0.04242221638560295,\n            \"Y\": 0.8450005650520325\n          }\n        ]\n      },\n      \"Id\": \"2ca60d78-09ca-4558-94eb-d40c5505c35d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9a71d8c5-dac5-4a26-a287-eff9991fede0\",\n            \"fa86190a-51cf-4509-bce5-52ff9e055a00\",\n            \"cc0a8dfd-3fac-4684-b414-150929fac3fc\",\n            \"b5e5bd0e-9d4d-4f5f-b08e-02c81f4e6a5e\",\n            \"2d88f1cb-b6a8-4230-a0aa-9d2726bbccfc\",\n            \"ebbc2a39-4c58-4d01-bf1f-d7efe7d71a04\",\n            \"a2d0b07b-9a15-4f09-b785-f8e9954e76a1\",\n            \"7a20a4df-3c89-44f8-9333-d174c2b5c437\",\n            \"4e037618-c7a2-40e7-9d11-c284d3ade5f7\",\n            \"13adb975-28b6-4b0b-9f8f-77c6c351d3c5\",\n            \"3d4c022a-302d-4aeb-bad0-a7e542265a79\",\n            \"40341810-7a64-4871-b454-c1a7193d9ea4\",\n            \"173590d9-28d0-4d45-833f-28b84f95a56d\",\n            \"1faa4d28-e22c-45d6-914a-747db4ca7631\",\n            \"1571a0e9-8867-45e2-ae9f-321c188f480a\",\n            \"f75c85d1-050c-45e7-a480-27ee3fedd6da\",\n            \"ab43f4fb-56ea-45e2-adbf-493a2a3c67e6\",\n            \"ce295d77-27f3-4448-be7b-3b9759859e5b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.80530548095703,\n      \"Text\": \"or conspiracy purposed to influence the issuance of any guaranty or insurance by the VA Secretary, the U.S.D.A., FmHA/FHA Commissioner, or\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.8492760062217712,\n          \"Height\": 0.01287444680929184,\n          \"Left\": 0.04185176268219948,\n          \"Top\": 0.8436164259910583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04185914248228073,\n            \"Y\": 0.8436164259910583\n          },\n          {\n            \"X\": 0.8911277651786804,\n            \"Y\": 0.844963014125824\n          },\n          {\n            \"X\": 0.8911246657371521,\n            \"Y\": 0.8564908504486084\n          },\n          {\n            \"X\": 0.04185176268219948,\n            \"Y\": 0.855139970779419\n          }\n        ]\n      },\n      \"Id\": \"2d5f3fe9-6a87-496d-aa15-6d14b99e14b5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1548078d-729a-4bae-a0d9-779531d6278b\",\n            \"e44773cd-6ad3-4ccd-ad71-465b3b6a26cc\",\n            \"0dc57de5-6004-4f09-9711-0786c5f130fb\",\n            \"23d99bf2-40eb-4d03-ac58-d027f677380f\",\n            \"876e9f65-db68-4d5b-887c-ece42243c167\",\n            \"f1f3502e-e561-4f89-af5a-a474913f4a93\",\n            \"8785c9c3-797f-44e1-9e29-204d161581d3\",\n            \"ce082b73-fee2-4a47-9721-4bd710e6722a\",\n            \"84e098ba-2a9c-4429-a6f1-bc33d1690840\",\n            \"46ca911e-0a0d-4905-b857-6e8674ed81bb\",\n            \"d9efd543-62d5-46b0-9a9a-13e6de187731\",\n            \"b74bd220-b406-45ed-92d6-562cc6175a11\",\n            \"5de71baa-1140-494f-83a3-fe50995edaee\",\n            \"a4aab8a3-afe0-4de3-8cd3-e25e35464a38\",\n            \"440581f5-6d86-4637-bbea-96d98f17a4f7\",\n            \"d54c3561-2932-4036-9a0f-28cb36cf4a07\",\n            \"846afbb7-5b64-4094-988b-bb2037928381\",\n            \"4c3f0240-b8bb-4c12-ad0e-f87d8265a695\",\n            \"fe7ea31b-6634-46b0-a97f-5c81a2786f20\",\n            \"e6ccde76-391c-4172-82cb-3bc53ee37530\",\n            \"8ac5bbed-e6a6-4476-ac54-b4ddb6fa50a9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.4596176147461,\n      \"Text\": \"the HUD/CPD Assistant Secretary.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20294885337352753,\n          \"Height\": 0.010287599638104439,\n          \"Left\": 0.041744258254766464,\n          \"Top\": 0.8552374839782715\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04175063595175743,\n            \"Y\": 0.8552374839782715\n          },\n          {\n            \"X\": 0.2446931153535843,\n            \"Y\": 0.855560302734375\n          },\n          {\n            \"X\": 0.24468761682510376,\n            \"Y\": 0.8655250668525696\n          },\n          {\n            \"X\": 0.041744258254766464,\n            \"Y\": 0.8652013540267944\n          }\n        ]\n      },\n      \"Id\": \"2f77e205-2792-4c6a-ab79-2652a434addb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4263e6c0-da1a-44cb-a8df-699ef280df65\",\n            \"585c1dbe-4391-44b6-8810-15e16dfd4d4e\",\n            \"47703988-53d3-4bcf-85bc-67595f0b60ef\",\n            \"4af3532a-abfa-44d6-b8f9-3003b258dab3\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.04552459716797,\n      \"Text\": \"26. Signature of Employer\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13288521766662598,\n          \"Height\": 0.008854154497385025,\n          \"Left\": 0.04161980003118515,\n          \"Top\": 0.8738476037979126\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041625335812568665,\n            \"Y\": 0.8738476037979126\n          },\n          {\n            \"X\": 0.17450501024723053,\n            \"Y\": 0.8740600347518921\n          },\n          {\n            \"X\": 0.174499973654747,\n            \"Y\": 0.8827017545700073\n          },\n          {\n            \"X\": 0.04161980003118515,\n            \"Y\": 0.8824887871742249\n          }\n        ]\n      },\n      \"Id\": \"e32b11e7-2423-4960-b8c1-c0a618091289\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aa9c1375-1256-4148-aeeb-e429fae14c4a\",\n            \"a5d3a997-4de9-4f15-970e-3e7ded1e4f4c\",\n            \"e7a67881-f334-40be-8383-554c5ed4f22a\",\n            \"94033ba8-a96e-4391-ab9b-c478f8671360\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.68026733398438,\n      \"Text\": \"27. Title (Please print or type)\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15235748887062073,\n          \"Height\": 0.00920682493597269,\n          \"Left\": 0.4122699797153473,\n          \"Top\": 0.8736281394958496\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4122742712497711,\n            \"Y\": 0.8736281394958496\n          },\n          {\n            \"X\": 0.564627468585968,\n            \"Y\": 0.8738716840744019\n          },\n          {\n            \"X\": 0.5646237730979919,\n            \"Y\": 0.8828349709510803\n          },\n          {\n            \"X\": 0.4122699797153473,\n            \"Y\": 0.8825908303260803\n          }\n        ]\n      },\n      \"Id\": \"cbb382d4-7b8a-4086-8128-3610bec6f610\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5f687a5-7358-4121-8a88-125417b12449\",\n            \"d8eb410e-c021-4980-9157-426aa18dc986\",\n            \"ccf82ba2-f6f7-4d5b-9662-e09ef2d946a2\",\n            \"53e71626-9008-4fa6-ae0c-51e09ba2a505\",\n            \"6ef01329-c506-4ec1-97c5-ba1f8bf2891d\",\n            \"3b83f1f2-1678-4576-9947-c604cedaa840\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 91.33235168457031,\n      \"Text\": \"28. Date\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04348061606287956,\n          \"Height\": 0.007734570186585188,\n          \"Left\": 0.7841504216194153,\n          \"Top\": 0.873586118221283\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7841528058052063,\n            \"Y\": 0.873586118221283\n          },\n          {\n            \"X\": 0.8276309967041016,\n            \"Y\": 0.8736556172370911\n          },\n          {\n            \"X\": 0.8276287317276001,\n            \"Y\": 0.8813207149505615\n          },\n          {\n            \"X\": 0.7841504216194153,\n            \"Y\": 0.8812510967254639\n          }\n        ]\n      },\n      \"Id\": \"c6444a8e-0420-4cc0-b26b-2f1282e31ec2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7181bcac-bf59-4627-ba53-0284a38cc600\",\n            \"c0d3cb87-ad7c-4f0a-8f74-d5de17c78a46\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.8558349609375,\n      \"Text\": \"Richard Roe\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14720436930656433,\n          \"Height\": 0.018229318782687187,\n          \"Left\": 0.11439472436904907,\n          \"Top\": 0.8892667889595032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11440567672252655,\n            \"Y\": 0.8892667889595032\n          },\n          {\n            \"X\": 0.2615990936756134,\n            \"Y\": 0.8895031213760376\n          },\n          {\n            \"X\": 0.26158931851387024,\n            \"Y\": 0.9074961543083191\n          },\n          {\n            \"X\": 0.11439472436904907,\n            \"Y\": 0.9072586894035339\n          }\n        ]\n      },\n      \"Id\": \"4162cf09-f14a-4f73-a707-305d856ab588\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d144fdda-4a21-425f-b8f3-9a4ddb851b5d\",\n            \"528d9939-2638-4476-bc31-50c293f418cc\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82430267333984,\n      \"Text\": \"VA Secretary\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09683514386415482,\n          \"Height\": 0.012301212176680565,\n          \"Left\": 0.49221715331077576,\n          \"Top\": 0.892946183681488\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49222254753112793,\n            \"Y\": 0.892946183681488\n          },\n          {\n            \"X\": 0.5890522599220276,\n            \"Y\": 0.8931017518043518\n          },\n          {\n            \"X\": 0.5890474319458008,\n            \"Y\": 0.9052473902702332\n          },\n          {\n            \"X\": 0.49221715331077576,\n            \"Y\": 0.9050912857055664\n          }\n        ]\n      },\n      \"Id\": \"39d9c025-2970-447f-ba40-853783191069\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3e2a2753-ec6d-4ea3-ba36-27a63d1b0b55\",\n            \"12be31e1-fa6f-4f37-b1be-d774ccccd7df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.92327117919922,\n      \"Text\": \"01/05/2007\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08114872872829437,\n          \"Height\": 0.010597536340355873,\n          \"Left\": 0.8064961433410645,\n          \"Top\": 0.9041160941123962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8064993619918823,\n            \"Y\": 0.9041160941123962\n          },\n          {\n            \"X\": 0.88764488697052,\n            \"Y\": 0.9042468070983887\n          },\n          {\n            \"X\": 0.8876420259475708,\n            \"Y\": 0.9147136211395264\n          },\n          {\n            \"X\": 0.8064961433410645,\n            \"Y\": 0.9145824909210205\n          }\n        ]\n      },\n      \"Id\": \"af21e9ce-ff16-497b-a37c-334167deca68\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84f5f7c5-1be8-45a9-a3b6-87134db33523\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.28626251220703,\n      \"Text\": \"29. Print or type name signed in Item 26\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20664212107658386,\n          \"Height\": 0.008474928326904774,\n          \"Left\": 0.041557952761650085,\n          \"Top\": 0.9189240336418152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041563164442777634,\n            \"Y\": 0.9189240336418152\n          },\n          {\n            \"X\": 0.24820007383823395,\n            \"Y\": 0.9192584156990051\n          },\n          {\n            \"X\": 0.2481955885887146,\n            \"Y\": 0.9273989796638489\n          },\n          {\n            \"X\": 0.041557952761650085,\n            \"Y\": 0.9270638227462769\n          }\n        ]\n      },\n      \"Id\": \"617c5e67-1a18-415f-8bb2-7c954fcba752\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e0438392-3b1a-4272-b036-f12043ecbce3\",\n            \"6cda84ae-835a-4760-a22f-4718b961d1e2\",\n            \"9ab61a04-124c-4395-96a7-89a8c49b265f\",\n            \"b3b6fafa-9f54-417e-8965-1f8df2d4cf8b\",\n            \"89848641-9986-4c41-a6ba-1bc7b80f83c7\",\n            \"e074a644-8fe6-4ec8-b0fb-5a4cb9596115\",\n            \"3c8587dd-dba5-4ef3-b43a-84eb25a430d8\",\n            \"0a88821a-56a1-4a8f-92da-287ac8d5379b\",\n            \"157dfdf2-199f-48dc-924c-641d4955188c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.51439666748047,\n      \"Text\": \"30. Phone No.\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07406199723482132,\n          \"Height\": 0.008052471093833447,\n          \"Left\": 0.4124184250831604,\n          \"Top\": 0.9190635681152344\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.412422239780426,\n            \"Y\": 0.9190635681152344\n          },\n          {\n            \"X\": 0.4864804148674011,\n            \"Y\": 0.9191833734512329\n          },\n          {\n            \"X\": 0.4864768981933594,\n            \"Y\": 0.9271160364151001\n          },\n          {\n            \"X\": 0.4124184250831604,\n            \"Y\": 0.9269959330558777\n          }\n        ]\n      },\n      \"Id\": \"544a0df1-94fa-48fb-80ac-47ea21f4272f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94651d6d-2505-44a8-9ee4-a3044323e386\",\n            \"08411395-6455-42a8-904e-11b63608dd5c\",\n            \"a6e2dad0-3940-4e43-8437-8d36d3dfed26\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.79634094238281,\n      \"Text\": \"Richard Roe\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10813403874635696,\n          \"Height\": 0.012519358657300472,\n          \"Left\": 0.0926700159907341,\n          \"Top\": 0.9323376417160034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09267765283584595,\n            \"Y\": 0.9323376417160034\n          },\n          {\n            \"X\": 0.20080405473709106,\n            \"Y\": 0.9325132369995117\n          },\n          {\n            \"X\": 0.20079702138900757,\n            \"Y\": 0.9448570013046265\n          },\n          {\n            \"X\": 0.0926700159907341,\n            \"Y\": 0.9446808099746704\n          }\n        ]\n      },\n      \"Id\": \"15016633-2d6d-4f4c-a352-c7a948fbd033\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f552c7e-b5ad-46c4-95e8-60f09b4b59ed\",\n            \"0d0c58c4-df78-4575-a418-c396d01e98ea\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.91144561767578,\n      \"Text\": \"555-0100\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08273287117481232,\n          \"Height\": 0.01224044244736433,\n          \"Left\": 0.49861449003219604,\n          \"Top\": 0.9279195070266724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49861982464790344,\n            \"Y\": 0.9279195070266724\n          },\n          {\n            \"X\": 0.5813473463058472,\n            \"Y\": 0.9280536770820618\n          },\n          {\n            \"X\": 0.5813424587249756,\n            \"Y\": 0.9401599168777466\n          },\n          {\n            \"X\": 0.49861449003219604,\n            \"Y\": 0.9400253295898438\n          }\n        ]\n      },\n      \"Id\": \"0eb37b5b-b29d-40ff-a280-efaa682baa32\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13362472-9734-4538-a450-3246bf4c4660\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.88089752197266,\n      \"Text\": \"Form 1005\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06649765372276306,\n          \"Height\": 0.008670230396091938,\n          \"Left\": 0.783087968826294,\n          \"Top\": 0.9640403985977173\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7830907106399536,\n            \"Y\": 0.9640403985977173\n          },\n          {\n            \"X\": 0.8495856523513794,\n            \"Y\": 0.9641492366790771\n          },\n          {\n            \"X\": 0.8495832085609436,\n            \"Y\": 0.9727106094360352\n          },\n          {\n            \"X\": 0.783087968826294,\n            \"Y\": 0.9726014733314514\n          }\n        ]\n      },\n      \"Id\": \"912f94d2-e8d9-4019-ace9-ae3554fd9ef3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"660dbf49-99c9-4e8f-9f92-e7b929fa06df\",\n            \"4b430fc8-c8a8-445f-b311-7973933e5be1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.78759765625,\n      \"Text\": \"July 96\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04516580328345299,\n          \"Height\": 0.010182472877204418,\n          \"Left\": 0.8748310804367065,\n          \"Top\": 0.9640653133392334\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8748338222503662,\n            \"Y\": 0.9640653133392334\n          },\n          {\n            \"X\": 0.9199968576431274,\n            \"Y\": 0.9641392230987549\n          },\n          {\n            \"X\": 0.9199942350387573,\n            \"Y\": 0.9742477536201477\n          },\n          {\n            \"X\": 0.8748310804367065,\n            \"Y\": 0.9741736054420471\n          }\n        ]\n      },\n      \"Id\": \"aa8103f3-07db-4a96-a3dc-6b0feb242e7d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"888d7cca-57e8-461b-ba8a-e578594af1b6\",\n            \"cba7d020-04a1-40ad-847b-272843bab710\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9635009765625,\n      \"Text\": \"Request\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11501947045326233,\n          \"Height\": 0.02208620309829712,\n          \"Left\": 0.048121001571416855,\n          \"Top\": 0.07929377257823944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.048134997487068176,\n            \"Y\": 0.07929377257823944\n          },\n          {\n            \"X\": 0.16314047574996948,\n            \"Y\": 0.07943794876337051\n          },\n          {\n            \"X\": 0.1631275862455368,\n            \"Y\": 0.10137997567653656\n          },\n          {\n            \"X\": 0.048121001571416855,\n            \"Y\": 0.10123469680547714\n          }\n        ]\n      },\n      \"Id\": \"161e029e-b814-4bf4-84b4-e7debda91429\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9867172241211,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04179174453020096,\n          \"Height\": 0.01748150773346424,\n          \"Left\": 0.1725427508354187,\n          \"Top\": 0.07936718314886093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1725529134273529,\n            \"Y\": 0.07936718314886093\n          },\n          {\n            \"X\": 0.21433448791503906,\n            \"Y\": 0.0794195607304573\n          },\n          {\n            \"X\": 0.21432463824748993,\n            \"Y\": 0.09684869647026062\n          },\n          {\n            \"X\": 0.1725427508354187,\n            \"Y\": 0.09679599851369858\n          }\n        ]\n      },\n      \"Id\": \"4a7b858d-a18c-4255-8311-522449963502\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80477905273438,\n      \"Text\": \"Verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16466741263866425,\n          \"Height\": 0.01785285957157612,\n          \"Left\": 0.22389839589595795,\n          \"Top\": 0.07869274914264679\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22390829026699066,\n            \"Y\": 0.07869274914264679\n          },\n          {\n            \"X\": 0.3885658085346222,\n            \"Y\": 0.07889911532402039\n          },\n          {\n            \"X\": 0.38855716586112976,\n            \"Y\": 0.09654561430215836\n          },\n          {\n            \"X\": 0.22389839589595795,\n            \"Y\": 0.09633798152208328\n          }\n        ]\n      },\n      \"Id\": \"36087567-7b00-4131-a841-a1ef438bb6d9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96063232421875,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030016308650374413,\n          \"Height\": 0.01772499457001686,\n          \"Left\": 0.4002906382083893,\n          \"Top\": 0.07831460982561111\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.40029919147491455,\n            \"Y\": 0.07831460982561111\n          },\n          {\n            \"X\": 0.43030694127082825,\n            \"Y\": 0.07835220545530319\n          },\n          {\n            \"X\": 0.4302985966205597,\n            \"Y\": 0.09603960067033768\n          },\n          {\n            \"X\": 0.4002906382083893,\n            \"Y\": 0.0960017666220665\n          }\n        ]\n      },\n      \"Id\": \"245c97ad-0d67-4c43-9b99-00bd2beb435f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94844818115234,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.17833161354064941,\n          \"Height\": 0.022751502692699432,\n          \"Left\": 0.44185227155685425,\n          \"Top\": 0.07815257459878922\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4418627619743347,\n            \"Y\": 0.07815257459878922\n          },\n          {\n            \"X\": 0.6201838850975037,\n            \"Y\": 0.07837600260972977\n          },\n          {\n            \"X\": 0.6201751828193665,\n            \"Y\": 0.10090407729148865\n          },\n          {\n            \"X\": 0.44185227155685425,\n            \"Y\": 0.10067890584468842\n          }\n        ]\n      },\n      \"Id\": \"92180bc8-c608-4753-8b1a-52f60ba29afb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82830047607422,\n      \"Text\": \"Privacy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03771020472049713,\n          \"Height\": 0.008428622968494892,\n          \"Left\": 0.046745605766773224,\n          \"Top\": 0.1106179878115654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.046750955283641815,\n            \"Y\": 0.1106179878115654\n          },\n          {\n            \"X\": 0.08445581048727036,\n            \"Y\": 0.11066576838493347\n          },\n          {\n            \"X\": 0.08445059508085251,\n            \"Y\": 0.11904660612344742\n          },\n          {\n            \"X\": 0.046745605766773224,\n            \"Y\": 0.1189986914396286\n          }\n        ]\n      },\n      \"Id\": \"8449d125-7943-4682-879b-e9c7a31d488e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8788070678711,\n      \"Text\": \"Act\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017837844789028168,\n          \"Height\": 0.006746902596205473,\n          \"Left\": 0.08807297050952911,\n          \"Top\": 0.11084070801734924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08807714283466339,\n            \"Y\": 0.11084070801734924\n          },\n          {\n            \"X\": 0.10591081529855728,\n            \"Y\": 0.11086331307888031\n          },\n          {\n            \"X\": 0.10590669512748718,\n            \"Y\": 0.117587611079216\n          },\n          {\n            \"X\": 0.08807297050952911,\n            \"Y\": 0.11756496131420135\n          }\n        ]\n      },\n      \"Id\": \"5cf944e3-b8d9-4ca9-a354-1c959daf2b57\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.8466567993164,\n      \"Text\": \"Notice:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03641187399625778,\n          \"Height\": 0.0067610954865813255,\n          \"Left\": 0.11045622825622559,\n          \"Top\": 0.11068719625473022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1104603260755539,\n            \"Y\": 0.11068719625473022\n          },\n          {\n            \"X\": 0.14686810970306396,\n            \"Y\": 0.11073333770036697\n          },\n          {\n            \"X\": 0.146864116191864,\n            \"Y\": 0.11744829267263412\n          },\n          {\n            \"X\": 0.11045622825622559,\n            \"Y\": 0.11740205436944962\n          }\n        ]\n      },\n      \"Id\": \"38165075-5f6b-47f3-b8dc-fa334af50fcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93769836425781,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01923746056854725,\n          \"Height\": 0.006672295276075602,\n          \"Left\": 0.1506357640028,\n          \"Top\": 0.11034587025642395\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15063971281051636,\n            \"Y\": 0.11034587025642395\n          },\n          {\n            \"X\": 0.1698732227087021,\n            \"Y\": 0.11037024110555649\n          },\n          {\n            \"X\": 0.1698693484067917,\n            \"Y\": 0.11701817065477371\n          },\n          {\n            \"X\": 0.1506357640028,\n            \"Y\": 0.1169937402009964\n          }\n        ]\n      },\n      \"Id\": \"6608543d-3e2c-4790-a5c4-95803a567a29\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79381561279297,\n      \"Text\": \"information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053690265864133835,\n          \"Height\": 0.007092063315212727,\n          \"Left\": 0.1733434498310089,\n          \"Top\": 0.10997198522090912\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17334754765033722,\n            \"Y\": 0.10997198522090912\n          },\n          {\n            \"X\": 0.22703371942043304,\n            \"Y\": 0.11004000157117844\n          },\n          {\n            \"X\": 0.22702978551387787,\n            \"Y\": 0.11706405133008957\n          },\n          {\n            \"X\": 0.1733434498310089,\n            \"Y\": 0.11699587106704712\n          }\n        ]\n      },\n      \"Id\": \"cbe232e9-edb0-4cd0-94c2-1f2409bfa938\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69444274902344,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008095159195363522,\n          \"Height\": 0.006986143533140421,\n          \"Left\": 0.23016658425331116,\n          \"Top\": 0.10981865227222443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23017047345638275,\n            \"Y\": 0.10981865227222443\n          },\n          {\n            \"X\": 0.23826174437999725,\n            \"Y\": 0.1098288968205452\n          },\n          {\n            \"X\": 0.23825787007808685,\n            \"Y\": 0.11680479347705841\n          },\n          {\n            \"X\": 0.23016658425331116,\n            \"Y\": 0.11679451912641525\n          }\n        ]\n      },\n      \"Id\": \"6783d7e0-bc51-49ac-86e0-20c6b71e1c5e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.60961151123047,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009959444403648376,\n          \"Height\": 0.006329339928925037,\n          \"Left\": 0.24126772582530975,\n          \"Top\": 0.11044038832187653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2412712275981903,\n            \"Y\": 0.11044038832187653\n          },\n          {\n            \"X\": 0.25122717022895813,\n            \"Y\": 0.11045300960540771\n          },\n          {\n            \"X\": 0.25122371315956116,\n            \"Y\": 0.11676973104476929\n          },\n          {\n            \"X\": 0.24126772582530975,\n            \"Y\": 0.11675708740949631\n          }\n        ]\n      },\n      \"Id\": \"b74fa356-a621-47a7-abaa-c739e13703d9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70462799072266,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011914667673408985,\n          \"Height\": 0.0068259285762906075,\n          \"Left\": 0.25461751222610474,\n          \"Top\": 0.11007505655288696\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2546212375164032,\n            \"Y\": 0.11007505655288696\n          },\n          {\n            \"X\": 0.26653218269348145,\n            \"Y\": 0.11009015142917633\n          },\n          {\n            \"X\": 0.26652848720550537,\n            \"Y\": 0.1169009879231453\n          },\n          {\n            \"X\": 0.25461751222610474,\n            \"Y\": 0.11688586324453354\n          }\n        ]\n      },\n      \"Id\": \"5c528835-746f-41b6-8f2b-bf04da1d1fc6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.53125,\n      \"Text\": \"used\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022405428811907768,\n          \"Height\": 0.006750986911356449,\n          \"Left\": 0.2699834704399109,\n          \"Top\": 0.10991662740707397\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2699871063232422,\n            \"Y\": 0.10991662740707397\n          },\n          {\n            \"X\": 0.2923888862133026,\n            \"Y\": 0.10994500666856766\n          },\n          {\n            \"X\": 0.2923853099346161,\n            \"Y\": 0.11666762083768845\n          },\n          {\n            \"X\": 0.2699834704399109,\n            \"Y\": 0.11663917452096939\n          }\n        ]\n      },\n      \"Id\": \"97e01ab6-78a0-4990-b041-61286e50292e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94709777832031,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012303692288696766,\n          \"Height\": 0.008192251436412334,\n          \"Left\": 0.29577985405921936,\n          \"Top\": 0.10981493443250656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2957841753959656,\n            \"Y\": 0.10981493443250656\n          },\n          {\n            \"X\": 0.30808353424072266,\n            \"Y\": 0.10983051359653473\n          },\n          {\n            \"X\": 0.30807924270629883,\n            \"Y\": 0.11800719052553177\n          },\n          {\n            \"X\": 0.29577985405921936,\n            \"Y\": 0.11799156665802002\n          }\n        ]\n      },\n      \"Id\": \"d8061527-51a1-4cb0-974d-34ba40186f53\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65510559082031,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014939110726118088,\n          \"Height\": 0.006731218192726374,\n          \"Left\": 0.31111037731170654,\n          \"Top\": 0.1100497841835022\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3111138939857483,\n            \"Y\": 0.1100497841835022\n          },\n          {\n            \"X\": 0.32604947686195374,\n            \"Y\": 0.11006870120763779\n          },\n          {\n            \"X\": 0.32604601979255676,\n            \"Y\": 0.11678099632263184\n          },\n          {\n            \"X\": 0.31111037731170654,\n            \"Y\": 0.11676203459501266\n          }\n        ]\n      },\n      \"Id\": \"f7515735-c15c-45ca-949b-d08df650cfa3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9233627319336,\n      \"Text\": \"agency\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0346609503030777,\n          \"Height\": 0.007128372322767973,\n          \"Left\": 0.3296167254447937,\n          \"Top\": 0.11104550212621689\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3296203911304474,\n            \"Y\": 0.11104550212621689\n          },\n          {\n            \"X\": 0.3642776906490326,\n            \"Y\": 0.11108942329883575\n          },\n          {\n            \"X\": 0.36427414417266846,\n            \"Y\": 0.11817387491464615\n          },\n          {\n            \"X\": 0.3296167254447937,\n            \"Y\": 0.11812984943389893\n          }\n        ]\n      },\n      \"Id\": \"d07723fb-83e5-43be-855b-b9f73af8e68e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72972106933594,\n      \"Text\": \"collecting\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045676250010728836,\n          \"Height\": 0.008212276734411716,\n          \"Left\": 0.3660494089126587,\n          \"Top\": 0.1096513420343399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3660534620285034,\n            \"Y\": 0.1096513420343399\n          },\n          {\n            \"X\": 0.41172564029693604,\n            \"Y\": 0.10970918834209442\n          },\n          {\n            \"X\": 0.41172173619270325,\n            \"Y\": 0.11786361783742905\n          },\n          {\n            \"X\": 0.3660494089126587,\n            \"Y\": 0.1178056076169014\n          }\n        ]\n      },\n      \"Id\": \"34ff9602-7cbe-4786-bb4f-359edb0ba0d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.5304183959961,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006723874248564243,\n          \"Height\": 0.007048937026411295,\n          \"Left\": 0.41468480229377747,\n          \"Top\": 0.1095198541879654\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4146881699562073,\n            \"Y\": 0.1095198541879654\n          },\n          {\n            \"X\": 0.42140868306159973,\n            \"Y\": 0.10952837020158768\n          },\n          {\n            \"X\": 0.4214053452014923,\n            \"Y\": 0.11656878888607025\n          },\n          {\n            \"X\": 0.41468480229377747,\n            \"Y\": 0.11656025797128677\n          }\n        ]\n      },\n      \"Id\": \"9af235be-29c6-44f0-8796-4b69176347d1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.87124633789062,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009927724488079548,\n          \"Height\": 0.005242684856057167,\n          \"Left\": 0.4244527816772461,\n          \"Top\": 0.11083836853504181\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4244552552700043,\n            \"Y\": 0.11083836853504181\n          },\n          {\n            \"X\": 0.43438050150871277,\n            \"Y\": 0.11085094511508942\n          },\n          {\n            \"X\": 0.434378057718277,\n            \"Y\": 0.11608105152845383\n          },\n          {\n            \"X\": 0.4244527816772461,\n            \"Y\": 0.11606845259666443\n          }\n        ]\n      },\n      \"Id\": \"471b1ed8-33f0-4971-8964-43829c846c6b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.59075164794922,\n      \"Text\": \"its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011228456161916256,\n          \"Height\": 0.006834194529801607,\n          \"Left\": 0.43749353289604187,\n          \"Top\": 0.10948140919208527\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43749672174453735,\n            \"Y\": 0.10948140919208527\n          },\n          {\n            \"X\": 0.4487219750881195,\n            \"Y\": 0.1094956248998642\n          },\n          {\n            \"X\": 0.4487188160419464,\n            \"Y\": 0.11631560325622559\n          },\n          {\n            \"X\": 0.43749353289604187,\n            \"Y\": 0.11630135029554367\n          }\n        ]\n      },\n      \"Id\": \"ecd6cc91-a997-43ba-bc30-3bd2dcc5c48e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.40089416503906,\n      \"Text\": \"assignees\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04416860267519951,\n          \"Height\": 0.007695701904594898,\n          \"Left\": 0.4528483748435974,\n          \"Top\": 0.10959634184837341\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45285189151763916,\n            \"Y\": 0.10959634184837341\n          },\n          {\n            \"X\": 0.497016966342926,\n            \"Y\": 0.10965228080749512\n          },\n          {\n            \"X\": 0.4970135986804962,\n            \"Y\": 0.11729204654693604\n          },\n          {\n            \"X\": 0.4528483748435974,\n            \"Y\": 0.11723595857620239\n          }\n        ]\n      },\n      \"Id\": \"a63c71c7-eae9-4ebe-a580-7f41dcae9c29\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79925537109375,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00921799335628748,\n          \"Height\": 0.006758033763617277,\n          \"Left\": 0.4999179542064667,\n          \"Top\": 0.10939443856477737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49992093443870544,\n            \"Y\": 0.10939443856477737\n          },\n          {\n            \"X\": 0.5091359615325928,\n            \"Y\": 0.10940610617399216\n          },\n          {\n            \"X\": 0.5091330409049988,\n            \"Y\": 0.11615247279405594\n          },\n          {\n            \"X\": 0.4999179542064667,\n            \"Y\": 0.11614077538251877\n          }\n        ]\n      },\n      \"Id\": \"42c54700-da31-42ce-bb3d-afda803cd346\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73839569091797,\n      \"Text\": \"determining\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05555466189980507,\n          \"Height\": 0.008392205461859703,\n          \"Left\": 0.5122988820075989,\n          \"Top\": 0.10916375368833542\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5123025178909302,\n            \"Y\": 0.10916375368833542\n          },\n          {\n            \"X\": 0.5678535103797913,\n            \"Y\": 0.10923410207033157\n          },\n          {\n            \"X\": 0.5678501129150391,\n            \"Y\": 0.11755595356225967\n          },\n          {\n            \"X\": 0.5122988820075989,\n            \"Y\": 0.1174854040145874\n          }\n        ]\n      },\n      \"Id\": \"05455141-e609-435a-894a-761f816ac664\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87957000732422,\n      \"Text\": \"whether\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03873156011104584,\n          \"Height\": 0.006820688024163246,\n          \"Left\": 0.5710024237632751,\n          \"Top\": 0.10948838293552399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5710052251815796,\n            \"Y\": 0.10948838293552399\n          },\n          {\n            \"X\": 0.6097339987754822,\n            \"Y\": 0.10953743010759354\n          },\n          {\n            \"X\": 0.6097313165664673,\n            \"Y\": 0.11630906909704208\n          },\n          {\n            \"X\": 0.5710024237632751,\n            \"Y\": 0.11625991016626358\n          }\n        ]\n      },\n      \"Id\": \"527d5ccf-e3e5-465a-8497-52b59542d737\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.68743896484375,\n      \"Text\": \"you\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01808200404047966,\n          \"Height\": 0.006321077235043049,\n          \"Left\": 0.6128280162811279,\n          \"Top\": 0.1111476793885231\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6128305196762085,\n            \"Y\": 0.1111476793885231\n          },\n          {\n            \"X\": 0.6309100389480591,\n            \"Y\": 0.11117058992385864\n          },\n          {\n            \"X\": 0.6309076547622681,\n            \"Y\": 0.11746875941753387\n          },\n          {\n            \"X\": 0.6128280162811279,\n            \"Y\": 0.11744579672813416\n          }\n        ]\n      },\n      \"Id\": \"488b6335-51a2-4ac9-b7b4-a796dc0ce5b7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.7072525024414,\n      \"Text\": \"qualify\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03185570612549782,\n          \"Height\": 0.008148932829499245,\n          \"Left\": 0.6337052583694458,\n          \"Top\": 0.10955313593149185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6337083578109741,\n            \"Y\": 0.10955313593149185\n          },\n          {\n            \"X\": 0.6655609607696533,\n            \"Y\": 0.1095934733748436\n          },\n          {\n            \"X\": 0.6655579805374146,\n            \"Y\": 0.11770206689834595\n          },\n          {\n            \"X\": 0.6337052583694458,\n            \"Y\": 0.11766161024570465\n          }\n        ]\n      },\n      \"Id\": \"63a0e993-2086-48e8-8f9a-31c0ec0bd60a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90113830566406,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010654806159436703,\n          \"Height\": 0.005591474939137697,\n          \"Left\": 0.6681233048439026,\n          \"Top\": 0.11109256744384766\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.668125331401825,\n            \"Y\": 0.11109256744384766\n          },\n          {\n            \"X\": 0.6787781119346619,\n            \"Y\": 0.11110606789588928\n          },\n          {\n            \"X\": 0.6787760853767395,\n            \"Y\": 0.11668404191732407\n          },\n          {\n            \"X\": 0.6681233048439026,\n            \"Y\": 0.11667051911354065\n          }\n        ]\n      },\n      \"Id\": \"d70cbbb9-8fef-42a5-84bc-25343036081a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.89109802246094,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0060392869636416435,\n          \"Height\": 0.00539276422932744,\n          \"Left\": 0.6821748614311218,\n          \"Top\": 0.11127956956624985\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6821767687797546,\n            \"Y\": 0.11127956956624985\n          },\n          {\n            \"X\": 0.688214123249054,\n            \"Y\": 0.11128722131252289\n          },\n          {\n            \"X\": 0.6882122159004211,\n            \"Y\": 0.1166723370552063\n          },\n          {\n            \"X\": 0.6821748614311218,\n            \"Y\": 0.11666467040777206\n          }\n        ]\n      },\n      \"Id\": \"a0b74ee4-7d0c-43e2-85bd-6dc8f8e9fe35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.82006072998047,\n      \"Text\": \"prospective\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05281711742281914,\n          \"Height\": 0.008135709911584854,\n          \"Left\": 0.6921625733375549,\n          \"Top\": 0.10992676019668579\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6921654939651489,\n            \"Y\": 0.10992676019668579\n          },\n          {\n            \"X\": 0.744979739189148,\n            \"Y\": 0.10999365150928497\n          },\n          {\n            \"X\": 0.7449769973754883,\n            \"Y\": 0.11806246638298035\n          },\n          {\n            \"X\": 0.6921625733375549,\n            \"Y\": 0.11799538880586624\n          }\n        ]\n      },\n      \"Id\": \"411385b6-2e3b-415b-a515-bdf4f15becec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.79400634765625,\n      \"Text\": \"mortgagor\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04954741895198822,\n          \"Height\": 0.007265149615705013,\n          \"Left\": 0.7483553290367126,\n          \"Top\": 0.11083482205867767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7483577728271484,\n            \"Y\": 0.11083482205867767\n          },\n          {\n            \"X\": 0.7979027628898621,\n            \"Y\": 0.11089759320020676\n          },\n          {\n            \"X\": 0.7979005575180054,\n            \"Y\": 0.11809997260570526\n          },\n          {\n            \"X\": 0.7483553290367126,\n            \"Y\": 0.11803704500198364\n          }\n        ]\n      },\n      \"Id\": \"b1555574-4f2d-49c2-aff0-7efdb0fb2930\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92793273925781,\n      \"Text\": \"under\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026685960590839386,\n          \"Height\": 0.006629737559705973,\n          \"Left\": 0.8012595772743225,\n          \"Top\": 0.110297791659832\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8012616038322449,\n            \"Y\": 0.110297791659832\n          },\n          {\n            \"X\": 0.8279455304145813,\n            \"Y\": 0.11033159494400024\n          },\n          {\n            \"X\": 0.8279435634613037,\n            \"Y\": 0.11692753434181213\n          },\n          {\n            \"X\": 0.8012595772743225,\n            \"Y\": 0.11689365655183792\n          }\n        ]\n      },\n      \"Id\": \"a2f319a9-7402-43e7-a856-54f870fabb12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70086669921875,\n      \"Text\": \"its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010631604120135307,\n          \"Height\": 0.007025678642094135,\n          \"Left\": 0.8313921689987183,\n          \"Top\": 0.10993692278862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8313942551612854,\n            \"Y\": 0.10993692278862\n          },\n          {\n            \"X\": 0.8420237898826599,\n            \"Y\": 0.10995038598775864\n          },\n          {\n            \"X\": 0.8420217633247375,\n            \"Y\": 0.11696260422468185\n          },\n          {\n            \"X\": 0.8313921689987183,\n            \"Y\": 0.11694910377264023\n          }\n        ]\n      },\n      \"Id\": \"45e2793d-686e-40f8-82ea-47dad61fcfbb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 88.72396087646484,\n      \"Text\": \"program.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04285845533013344,\n          \"Height\": 0.007101396564394236,\n          \"Left\": 0.8458113074302673,\n          \"Top\": 0.11143263429403305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8458133339881897,\n            \"Y\": 0.11143263429403305\n          },\n          {\n            \"X\": 0.8886697888374329,\n            \"Y\": 0.11148694157600403\n          },\n          {\n            \"X\": 0.8886678814888,\n            \"Y\": 0.11853402853012085\n          },\n          {\n            \"X\": 0.8458113074302673,\n            \"Y\": 0.11847958713769913\n          }\n        ]\n      },\n      \"Id\": \"1b86340e-f35d-4560-9049-24ef2b18360e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.6385269165039,\n      \"Text\": \"It\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006415233481675386,\n          \"Height\": 0.00665635010227561,\n          \"Left\": 0.8925946354866028,\n          \"Top\": 0.11018729954957962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.892596423625946,\n            \"Y\": 0.11018729954957962\n          },\n          {\n            \"X\": 0.8990098834037781,\n            \"Y\": 0.11019542813301086\n          },\n          {\n            \"X\": 0.8990080952644348,\n            \"Y\": 0.11684365570545197\n          },\n          {\n            \"X\": 0.8925946354866028,\n            \"Y\": 0.11683551222085953\n          }\n        ]\n      },\n      \"Id\": \"7e91fc74-b07d-4507-8079-d9d24ed5f447\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.14144897460938,\n      \"Text\": \"will\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016963006928563118,\n          \"Height\": 0.006646245718002319,\n          \"Left\": 0.9019883275032043,\n          \"Top\": 0.11038000136613846\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9019901156425476,\n            \"Y\": 0.11038000136613846\n          },\n          {\n            \"X\": 0.9189513325691223,\n            \"Y\": 0.11040148138999939\n          },\n          {\n            \"X\": 0.9189496636390686,\n            \"Y\": 0.11702624708414078\n          },\n          {\n            \"X\": 0.9019883275032043,\n            \"Y\": 0.11700471490621567\n          }\n        ]\n      },\n      \"Id\": \"74f07418-e417-47f3-a0d3-f4e8fb36cd5e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93505096435547,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015815312042832375,\n          \"Height\": 0.006116053555160761,\n          \"Left\": 0.04636373370885849,\n          \"Top\": 0.12122195214033127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04636762663722038,\n            \"Y\": 0.12122195214033127\n          },\n          {\n            \"X\": 0.062179047614336014,\n            \"Y\": 0.12124206125736237\n          },\n          {\n            \"X\": 0.062175195664167404,\n            \"Y\": 0.1273380070924759\n          },\n          {\n            \"X\": 0.04636373370885849,\n            \"Y\": 0.12731784582138062\n          }\n        ]\n      },\n      \"Id\": \"7be700b2-8347-42af-9dbc-c8fb2ac428d2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69445037841797,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011807595379650593,\n          \"Height\": 0.006780384574085474,\n          \"Left\": 0.06540179252624512,\n          \"Top\": 0.12054888159036636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06540605425834656,\n            \"Y\": 0.12054888159036636\n          },\n          {\n            \"X\": 0.07720938324928284,\n            \"Y\": 0.12056388705968857\n          },\n          {\n            \"X\": 0.07720515877008438,\n            \"Y\": 0.1273292601108551\n          },\n          {\n            \"X\": 0.06540179252624512,\n            \"Y\": 0.1273142248392105\n          }\n        ]\n      },\n      \"Id\": \"8f4189b9-1861-49e3-ac3b-72a84c3c171d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85073852539062,\n      \"Text\": \"disclosed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04252924025058746,\n          \"Height\": 0.007178212981671095,\n          \"Left\": 0.08059553802013397,\n          \"Top\": 0.12009744346141815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08059997856616974,\n            \"Y\": 0.12009744346141815\n          },\n          {\n            \"X\": 0.12312477827072144,\n            \"Y\": 0.12015151232481003\n          },\n          {\n            \"X\": 0.12312046438455582,\n            \"Y\": 0.12727566063404083\n          },\n          {\n            \"X\": 0.08059553802013397,\n            \"Y\": 0.1272214651107788\n          }\n        ]\n      },\n      \"Id\": \"57e10458-c175-407a-8649-4f93facf0fa4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90302276611328,\n      \"Text\": \"outside\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03387003391981125,\n          \"Height\": 0.0067316098138689995,\n          \"Left\": 0.12654943764209747,\n          \"Top\": 0.11999442428350449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.126553475856781,\n            \"Y\": 0.11999442428350449\n          },\n          {\n            \"X\": 0.16041947901248932,\n            \"Y\": 0.12003747373819351\n          },\n          {\n            \"X\": 0.16041553020477295,\n            \"Y\": 0.12672603130340576\n          },\n          {\n            \"X\": 0.12654943764209747,\n            \"Y\": 0.12668287754058838\n          }\n        ]\n      },\n      \"Id\": \"76dfb847-4465-413e-8cf0-5bcaa89ed053\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95860290527344,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015329458750784397,\n          \"Height\": 0.006923999637365341,\n          \"Left\": 0.1634865254163742,\n          \"Top\": 0.11981498450040817\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16349057853221893,\n            \"Y\": 0.11981498450040817\n          },\n          {\n            \"X\": 0.17881599068641663,\n            \"Y\": 0.11983446776866913\n          },\n          {\n            \"X\": 0.1788119673728943,\n            \"Y\": 0.12673898041248322\n          },\n          {\n            \"X\": 0.1634865254163742,\n            \"Y\": 0.12671945989131927\n          }\n        ]\n      },\n      \"Id\": \"d9cd7771-6833-42e1-9d48-54e925885989\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96431732177734,\n      \"Text\": \"agency\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033823687583208084,\n          \"Height\": 0.00709925964474678,\n          \"Left\": 0.18230104446411133,\n          \"Top\": 0.1207972839474678\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18230514228343964,\n            \"Y\": 0.1207972839474678\n          },\n          {\n            \"X\": 0.2161247432231903,\n            \"Y\": 0.12084028869867325\n          },\n          {\n            \"X\": 0.21612074971199036,\n            \"Y\": 0.12789654731750488\n          },\n          {\n            \"X\": 0.18230104446411133,\n            \"Y\": 0.12785343825817108\n          }\n        ]\n      },\n      \"Id\": \"8002d399-c2b8-4182-a710-cf040a8ba56d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87543487548828,\n      \"Text\": \"except\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0314200259745121,\n          \"Height\": 0.0076155089773237705,\n          \"Left\": 0.2193089872598648,\n          \"Top\": 0.12023848295211792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21931324899196625,\n            \"Y\": 0.12023848295211792\n          },\n          {\n            \"X\": 0.2507290244102478,\n            \"Y\": 0.12027842551469803\n          },\n          {\n            \"X\": 0.2507248520851135,\n            \"Y\": 0.12785398960113525\n          },\n          {\n            \"X\": 0.2193089872598648,\n            \"Y\": 0.12781395018100739\n          }\n        ]\n      },\n      \"Id\": \"dd7fa4ac-42f5-4f85-acdc-4f90e8058305\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63590240478516,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010809320956468582,\n          \"Height\": 0.005456684157252312,\n          \"Left\": 0.2537144720554352,\n          \"Top\": 0.12110844254493713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25371745228767395,\n            \"Y\": 0.12110844254493713\n          },\n          {\n            \"X\": 0.26452377438545227,\n            \"Y\": 0.12112218886613846\n          },\n          {\n            \"X\": 0.2645208239555359,\n            \"Y\": 0.1265651285648346\n          },\n          {\n            \"X\": 0.2537144720554352,\n            \"Y\": 0.12655135989189148\n          }\n        ]\n      },\n      \"Id\": \"293273eb-3111-4097-85f0-9ba0489eac8b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69645690917969,\n      \"Text\": \"required\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03795193135738373,\n          \"Height\": 0.007966307923197746,\n          \"Left\": 0.2679959237575531,\n          \"Top\": 0.11961952596902847\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26800021529197693,\n            \"Y\": 0.11961952596902847\n          },\n          {\n            \"X\": 0.305947870016098,\n            \"Y\": 0.11966775357723236\n          },\n          {\n            \"X\": 0.30594369769096375,\n            \"Y\": 0.12758582830429077\n          },\n          {\n            \"X\": 0.2679959237575531,\n            \"Y\": 0.12753747403621674\n          }\n        ]\n      },\n      \"Id\": \"b19e53a5-6738-4dd7-bf3a-194685477bd7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92317199707031,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017510225996375084,\n          \"Height\": 0.00679091177880764,\n          \"Left\": 0.3095359206199646,\n          \"Top\": 0.11946253478527069\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30953946709632874,\n            \"Y\": 0.11946253478527069\n          },\n          {\n            \"X\": 0.32704612612724304,\n            \"Y\": 0.1194847822189331\n          },\n          {\n            \"X\": 0.3270426392555237,\n            \"Y\": 0.12625344097614288\n          },\n          {\n            \"X\": 0.3095359206199646,\n            \"Y\": 0.1262311488389969\n          }\n        ]\n      },\n      \"Id\": \"dd37e75d-5b66-4716-ad52-d4a5ef18347a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3976821899414,\n      \"Text\": \"permitted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.045370858162641525,\n          \"Height\": 0.0075785918161273,\n          \"Left\": 0.330564945936203,\n          \"Top\": 0.11968005448579788\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.330568790435791,\n            \"Y\": 0.11968005448579788\n          },\n          {\n            \"X\": 0.37593579292297363,\n            \"Y\": 0.11973772197961807\n          },\n          {\n            \"X\": 0.37593206763267517,\n            \"Y\": 0.12725864350795746\n          },\n          {\n            \"X\": 0.330564945936203,\n            \"Y\": 0.12720084190368652\n          }\n        ]\n      },\n      \"Id\": \"edfbca64-be6c-492a-9bba-2650c0319d25\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94609069824219,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012113714590668678,\n          \"Height\": 0.008011355064809322,\n          \"Left\": 0.37844210863113403,\n          \"Top\": 0.11937511712312698\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3784460425376892,\n            \"Y\": 0.11937511712312698\n          },\n          {\n            \"X\": 0.39055582880973816,\n            \"Y\": 0.11939050257205963\n          },\n          {\n            \"X\": 0.39055192470550537,\n            \"Y\": 0.12738646566867828\n          },\n          {\n            \"X\": 0.37844210863113403,\n            \"Y\": 0.12737104296684265\n          }\n        ]\n      },\n      \"Id\": \"b893ff98-52ab-4768-9237-e6b5c4bc4ff5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 84.59241485595703,\n      \"Text\": \"law.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019566623494029045,\n          \"Height\": 0.006788795348256826,\n          \"Left\": 0.39357179403305054,\n          \"Top\": 0.11964428424835205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39357510209083557,\n            \"Y\": 0.11964428424835205\n          },\n          {\n            \"X\": 0.41313841938972473,\n            \"Y\": 0.11966915428638458\n          },\n          {\n            \"X\": 0.41313520073890686,\n            \"Y\": 0.12643307447433472\n          },\n          {\n            \"X\": 0.39357179403305054,\n            \"Y\": 0.1264081597328186\n          }\n        ]\n      },\n      \"Id\": \"b74faa64-3d4f-43db-b6e9-30d7f57cdffd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.03042602539062,\n      \"Text\": \"You\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019387295469641685,\n          \"Height\": 0.0068739354610443115,\n          \"Left\": 0.4170180857181549,\n          \"Top\": 0.11917512863874435\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41702136397361755,\n            \"Y\": 0.11917512863874435\n          },\n          {\n            \"X\": 0.43640539050102234,\n            \"Y\": 0.11919976025819778\n          },\n          {\n            \"X\": 0.43640217185020447,\n            \"Y\": 0.12604905664920807\n          },\n          {\n            \"X\": 0.4170180857181549,\n            \"Y\": 0.12602436542510986\n          }\n        ]\n      },\n      \"Id\": \"29d8b1df-e0bb-410b-988a-5876180b36d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71742248535156,\n      \"Text\": \"do\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01254405826330185,\n          \"Height\": 0.006561753805726767,\n          \"Left\": 0.43959328532218933,\n          \"Top\": 0.1194244921207428\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43959635496139526,\n            \"Y\": 0.1194244921207428\n          },\n          {\n            \"X\": 0.4521373510360718,\n            \"Y\": 0.11944042891263962\n          },\n          {\n            \"X\": 0.4521343410015106,\n            \"Y\": 0.125986248254776\n          },\n          {\n            \"X\": 0.43959328532218933,\n            \"Y\": 0.1259702742099762\n          }\n        ]\n      },\n      \"Id\": \"3d528bf7-828c-4dd7-a800-9d71da467fde\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90365600585938,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016512583941221237,\n          \"Height\": 0.0064146858640015125,\n          \"Left\": 0.4551067352294922,\n          \"Top\": 0.1195545345544815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45510968565940857,\n            \"Y\": 0.1195545345544815\n          },\n          {\n            \"X\": 0.4716193377971649,\n            \"Y\": 0.11957551538944244\n          },\n          {\n            \"X\": 0.4716164469718933,\n            \"Y\": 0.12596921622753143\n          },\n          {\n            \"X\": 0.4551067352294922,\n            \"Y\": 0.12594819068908691\n          }\n        ]\n      },\n      \"Id\": \"dd8a326f-5cfe-42ca-b918-61017557cbca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89830017089844,\n      \"Text\": \"have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022622058168053627,\n          \"Height\": 0.00678700115531683,\n          \"Left\": 0.4745034873485565,\n          \"Top\": 0.11933775246143341\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47450652718544006,\n            \"Y\": 0.11933775246143341\n          },\n          {\n            \"X\": 0.4971255362033844,\n            \"Y\": 0.11936649680137634\n          },\n          {\n            \"X\": 0.49712255597114563,\n            \"Y\": 0.12612475454807281\n          },\n          {\n            \"X\": 0.4745034873485565,\n            \"Y\": 0.1260959357023239\n          }\n        ]\n      },\n      \"Id\": \"51ed5281-9a52-4398-8d14-96539a43252d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.91943359375,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010175668634474277,\n          \"Height\": 0.006434570997953415,\n          \"Left\": 0.5002086758613586,\n          \"Top\": 0.11948627978563309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5002115368843079,\n            \"Y\": 0.11948627978563309\n          },\n          {\n            \"X\": 0.5103843808174133,\n            \"Y\": 0.11949920654296875\n          },\n          {\n            \"X\": 0.5103815793991089,\n            \"Y\": 0.1259208470582962\n          },\n          {\n            \"X\": 0.5002086758613586,\n            \"Y\": 0.12590789794921875\n          }\n        ]\n      },\n      \"Id\": \"2c1c22f3-75f7-4b47-a6fd-d0c3470cbe3e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80938720703125,\n      \"Text\": \"provide\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035347830504179,\n          \"Height\": 0.007858487777411938,\n          \"Left\": 0.5135396122932434,\n          \"Top\": 0.11925721168518066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5135430097579956,\n            \"Y\": 0.11925721168518066\n          },\n          {\n            \"X\": 0.5488874316215515,\n            \"Y\": 0.11930212378501892\n          },\n          {\n            \"X\": 0.5488841533660889,\n            \"Y\": 0.12711569666862488\n          },\n          {\n            \"X\": 0.5135396122932434,\n            \"Y\": 0.12707066535949707\n          }\n        ]\n      },\n      \"Id\": \"d1aed83d-0282-4b6c-98bf-8cabb7a640c5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.784423828125,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016969580203294754,\n          \"Height\": 0.007005034945905209,\n          \"Left\": 0.5518550872802734,\n          \"Top\": 0.11913324892520905\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5518580079078674,\n            \"Y\": 0.11913324892520905\n          },\n          {\n            \"X\": 0.5688247084617615,\n            \"Y\": 0.11915481090545654\n          },\n          {\n            \"X\": 0.5688218474388123,\n            \"Y\": 0.12613828480243683\n          },\n          {\n            \"X\": 0.5518550872802734,\n            \"Y\": 0.12611667811870575\n          }\n        ]\n      },\n      \"Id\": \"198dd4a1-6d96-4345-b6d1-9261575c9dc1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 79.3267822265625,\n      \"Text\": \"information,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056508343666791916,\n          \"Height\": 0.007755109574645758,\n          \"Left\": 0.572158694267273,\n          \"Top\": 0.11905258148908615\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.572161853313446,\n            \"Y\": 0.11905258148908615\n          },\n          {\n            \"X\": 0.6286670565605164,\n            \"Y\": 0.1191243827342987\n          },\n          {\n            \"X\": 0.6286640763282776,\n            \"Y\": 0.12680768966674805\n          },\n          {\n            \"X\": 0.572158694267273,\n            \"Y\": 0.12673570215702057\n          }\n        ]\n      },\n      \"Id\": \"5bd8ef0e-1101-4f4b-8c4a-2bce8b838748\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7632827758789,\n      \"Text\": \"but\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01649695634841919,\n          \"Height\": 0.006630467250943184,\n          \"Left\": 0.6321574449539185,\n          \"Top\": 0.11940576881170273\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6321600079536438,\n            \"Y\": 0.11940576881170273\n          },\n          {\n            \"X\": 0.6486544013023376,\n            \"Y\": 0.11942672729492188\n          },\n          {\n            \"X\": 0.6486518979072571,\n            \"Y\": 0.12603624165058136\n          },\n          {\n            \"X\": 0.6321574449539185,\n            \"Y\": 0.12601523101329803\n          }\n        ]\n      },\n      \"Id\": \"c6f8cd14-1d40-4e74-9dc8-63a32c9bd62b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.66554260253906,\n      \"Text\": \"if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0070460340939462185,\n          \"Height\": 0.007278553210198879,\n          \"Left\": 0.6512385606765747,\n          \"Top\": 0.11891619861125946\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6512413024902344,\n            \"Y\": 0.11891619861125946\n          },\n          {\n            \"X\": 0.658284604549408,\n            \"Y\": 0.11892514675855637\n          },\n          {\n            \"X\": 0.6582819223403931,\n            \"Y\": 0.12619474530220032\n          },\n          {\n            \"X\": 0.6512385606765747,\n            \"Y\": 0.12618577480316162\n          }\n        ]\n      },\n      \"Id\": \"7884240a-cefb-4057-818f-7b449ebe08b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.8854751586914,\n      \"Text\": \"you\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017864756286144257,\n          \"Height\": 0.0068162973038852215,\n          \"Left\": 0.6615405082702637,\n          \"Top\": 0.12050646543502808\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6615430116653442,\n            \"Y\": 0.12050646543502808\n          },\n          {\n            \"X\": 0.6794052720069885,\n            \"Y\": 0.1205291673541069\n          },\n          {\n            \"X\": 0.679402768611908,\n            \"Y\": 0.12732276320457458\n          },\n          {\n            \"X\": 0.6615405082702637,\n            \"Y\": 0.12730000913143158\n          }\n        ]\n      },\n      \"Id\": \"90fdcfa0-4200-4fe3-8a28-1e6a232ff86e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74516296386719,\n      \"Text\": \"do\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01202369388192892,\n          \"Height\": 0.00663790013641119,\n          \"Left\": 0.6827983260154724,\n          \"Top\": 0.11951930820941925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6828007102012634,\n            \"Y\": 0.11951930820941925\n          },\n          {\n            \"X\": 0.6948220729827881,\n            \"Y\": 0.11953458935022354\n          },\n          {\n            \"X\": 0.6948196887969971,\n            \"Y\": 0.12615720927715302\n          },\n          {\n            \"X\": 0.6827983260154724,\n            \"Y\": 0.12614190578460693\n          }\n        ]\n      },\n      \"Id\": \"7c7edd40-065b-4f90-99ba-1bd7edd718c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85462188720703,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016206268221139908,\n          \"Height\": 0.005995164159685373,\n          \"Left\": 0.6981497406959534,\n          \"Top\": 0.1203300878405571\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6981518864631653,\n            \"Y\": 0.1203300878405571\n          },\n          {\n            \"X\": 0.714356005191803,\n            \"Y\": 0.120350681245327\n          },\n          {\n            \"X\": 0.7143539786338806,\n            \"Y\": 0.12632524967193604\n          },\n          {\n            \"X\": 0.6981497406959534,\n            \"Y\": 0.12630461156368256\n          }\n        ]\n      },\n      \"Id\": \"7dfb8fdf-72af-4b5d-b6bc-110b5601178c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52503204345703,\n      \"Text\": \"your\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020782247185707092,\n          \"Height\": 0.006197498179972172,\n          \"Left\": 0.7175658345222473,\n          \"Top\": 0.12107828259468079\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7175679802894592,\n            \"Y\": 0.12107828259468079\n          },\n          {\n            \"X\": 0.7383480668067932,\n            \"Y\": 0.12110470235347748\n          },\n          {\n            \"X\": 0.7383459806442261,\n            \"Y\": 0.12727577984333038\n          },\n          {\n            \"X\": 0.7175658345222473,\n            \"Y\": 0.12724930047988892\n          }\n        ]\n      },\n      \"Id\": \"c39f315c-f1b6-4001-a548-864ab3c11151\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90777587890625,\n      \"Text\": \"application\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05064646899700165,\n          \"Height\": 0.008643249049782753,\n          \"Left\": 0.7418923377990723,\n          \"Top\": 0.11938004195690155\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7418952584266663,\n            \"Y\": 0.11938004195690155\n          },\n          {\n            \"X\": 0.7925388216972351,\n            \"Y\": 0.11944440007209778\n          },\n          {\n            \"X\": 0.7925361394882202,\n            \"Y\": 0.12802329659461975\n          },\n          {\n            \"X\": 0.7418923377990723,\n            \"Y\": 0.1279587596654892\n          }\n        ]\n      },\n      \"Id\": \"fb6e8151-f066-439f-ace9-c4e378736746\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85889434814453,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013560481369495392,\n          \"Height\": 0.006997223012149334,\n          \"Left\": 0.7960394024848938,\n          \"Top\": 0.11949624121189117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7960415482521057,\n            \"Y\": 0.11949624121189117\n          },\n          {\n            \"X\": 0.8095998764038086,\n            \"Y\": 0.11951346695423126\n          },\n          {\n            \"X\": 0.8095977306365967,\n            \"Y\": 0.12649346888065338\n          },\n          {\n            \"X\": 0.7960394024848938,\n            \"Y\": 0.1264761984348297\n          }\n        ]\n      },\n      \"Id\": \"70cae295-1178-4df5-a357-5d91298fed0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90699005126953,\n      \"Text\": \"approval\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03998545929789543,\n          \"Height\": 0.008285928517580032,\n          \"Left\": 0.8127807378768921,\n          \"Top\": 0.11993414163589478\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8127832412719727,\n            \"Y\": 0.11993414163589478\n          },\n          {\n            \"X\": 0.852766215801239,\n            \"Y\": 0.1199849545955658\n          },\n          {\n            \"X\": 0.852763831615448,\n            \"Y\": 0.1282200664281845\n          },\n          {\n            \"X\": 0.8127807378768921,\n            \"Y\": 0.12816911935806274\n          }\n        ]\n      },\n      \"Id\": \"6ade1be4-3f39-48a4-9840-af8a23437486\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69134521484375,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010350365191698074,\n          \"Height\": 0.005598676390945911,\n          \"Left\": 0.8562877178192139,\n          \"Top\": 0.12109839916229248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8562893271446228,\n            \"Y\": 0.12109839916229248\n          },\n          {\n            \"X\": 0.8666381239891052,\n            \"Y\": 0.12111155688762665\n          },\n          {\n            \"X\": 0.8666365146636963,\n            \"Y\": 0.12669707834720612\n          },\n          {\n            \"X\": 0.8562877178192139,\n            \"Y\": 0.12668389081954956\n          }\n        ]\n      },\n      \"Id\": \"ac08d647-b335-4832-8c4f-10a216253f07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64999389648438,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006500093266367912,\n          \"Height\": 0.005360524170100689,\n          \"Left\": 0.8695926070213318,\n          \"Top\": 0.12101808190345764\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8695940971374512,\n            \"Y\": 0.12101808190345764\n          },\n          {\n            \"X\": 0.8760926723480225,\n            \"Y\": 0.12102634459733963\n          },\n          {\n            \"X\": 0.8760911822319031,\n            \"Y\": 0.1263786107301712\n          },\n          {\n            \"X\": 0.8695926070213318,\n            \"Y\": 0.12637032568454742\n          }\n        ]\n      },\n      \"Id\": \"122ccfde-8420-4304-996a-41637ac513c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.71890258789062,\n      \"Text\": \"prospec-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039928533136844635,\n          \"Height\": 0.006710627116262913,\n          \"Left\": 0.8793285489082336,\n          \"Top\": 0.12132182717323303\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8793303966522217,\n            \"Y\": 0.12132182717323303\n          },\n          {\n            \"X\": 0.9192571043968201,\n            \"Y\": 0.12137258797883987\n          },\n          {\n            \"X\": 0.9192553758621216,\n            \"Y\": 0.12803244590759277\n          },\n          {\n            \"X\": 0.8793285489082336,\n            \"Y\": 0.12798157334327698\n          }\n        ]\n      },\n      \"Id\": \"a34fd7ab-a448-46ca-b67b-280780ca1291\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.21365356445312,\n      \"Text\": \"tive\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017256252467632294,\n          \"Height\": 0.006511372048407793,\n          \"Left\": 0.04631026089191437,\n          \"Top\": 0.13036596775054932\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04631440341472626,\n            \"Y\": 0.13036596775054932\n          },\n          {\n            \"X\": 0.06356651335954666,\n            \"Y\": 0.13038797676563263\n          },\n          {\n            \"X\": 0.06356241554021835,\n            \"Y\": 0.13687734305858612\n          },\n          {\n            \"X\": 0.04631026089191437,\n            \"Y\": 0.13685527443885803\n          }\n        ]\n      },\n      \"Id\": \"8cc4a1e3-20a8-463f-ab08-2852ba15e973\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.17530059814453,\n      \"Text\": \"mortgagor\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048283085227012634,\n          \"Height\": 0.007921691983938217,\n          \"Left\": 0.06695754826068878,\n          \"Top\": 0.13005927205085754\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06696250289678574,\n            \"Y\": 0.13005927205085754\n          },\n          {\n            \"X\": 0.11524064093828201,\n            \"Y\": 0.13012085855007172\n          },\n          {\n            \"X\": 0.11523585766553879,\n            \"Y\": 0.13798096776008606\n          },\n          {\n            \"X\": 0.06695754826068878,\n            \"Y\": 0.13791921734809875\n          }\n        ]\n      },\n      \"Id\": \"7aeb961e-0e9e-4914-9655-2589586d97d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.21952056884766,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01046574767678976,\n          \"Height\": 0.005619306117296219,\n          \"Left\": 0.11863716691732407,\n          \"Top\": 0.130722776055336\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11864057183265686,\n            \"Y\": 0.130722776055336\n          },\n          {\n            \"X\": 0.1291029155254364,\n            \"Y\": 0.13073612749576569\n          },\n          {\n            \"X\": 0.1290995329618454,\n            \"Y\": 0.13634207844734192\n          },\n          {\n            \"X\": 0.11863716691732407,\n            \"Y\": 0.13632871210575104\n          }\n        ]\n      },\n      \"Id\": \"95c43370-ddff-4040-a817-337ee7ea709a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87396240234375,\n      \"Text\": \"borrower\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04217411205172539,\n          \"Height\": 0.006881281267851591,\n          \"Left\": 0.1315854787826538,\n          \"Top\": 0.12936915457248688\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1315895915031433,\n            \"Y\": 0.12936915457248688\n          },\n          {\n            \"X\": 0.1737595945596695,\n            \"Y\": 0.12942293286323547\n          },\n          {\n            \"X\": 0.17375561594963074,\n            \"Y\": 0.13625043630599976\n          },\n          {\n            \"X\": 0.1315854787826538,\n            \"Y\": 0.13619652390480042\n          }\n        ]\n      },\n      \"Id\": \"2f05ea87-717f-4671-ac86-972c39709b0c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91134643554688,\n      \"Text\": \"may\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020849740132689476,\n          \"Height\": 0.006539846304804087,\n          \"Left\": 0.17672379314899445,\n          \"Top\": 0.1305527240037918\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17672757804393768,\n            \"Y\": 0.1305527240037918\n          },\n          {\n            \"X\": 0.19757352769374847,\n            \"Y\": 0.13057932257652283\n          },\n          {\n            \"X\": 0.19756980240345,\n            \"Y\": 0.13709257543087006\n          },\n          {\n            \"X\": 0.17672379314899445,\n            \"Y\": 0.13706591725349426\n          }\n        ]\n      },\n      \"Id\": \"e01d3d07-fceb-4f4d-9274-73b6e8255952\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79139709472656,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012047662399709225,\n          \"Height\": 0.006763990968465805,\n          \"Left\": 0.2004667967557907,\n          \"Top\": 0.12930044531822205\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20047064125537872,\n            \"Y\": 0.12930044531822205\n          },\n          {\n            \"X\": 0.2125144600868225,\n            \"Y\": 0.1293158084154129\n          },\n          {\n            \"X\": 0.2125106304883957,\n            \"Y\": 0.13606444001197815\n          },\n          {\n            \"X\": 0.2004667967557907,\n            \"Y\": 0.1360490471124649\n          }\n        ]\n      },\n      \"Id\": \"5cab1e71-c129-4bdb-a118-4badf4cacb4b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62530517578125,\n      \"Text\": \"delayed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03507726639509201,\n          \"Height\": 0.007455056067556143,\n          \"Left\": 0.216200053691864,\n          \"Top\": 0.12905579805374146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21620424091815948,\n            \"Y\": 0.12905579805374146\n          },\n          {\n            \"X\": 0.2512773275375366,\n            \"Y\": 0.1291005164384842\n          },\n          {\n            \"X\": 0.2512732446193695,\n            \"Y\": 0.13651084899902344\n          },\n          {\n            \"X\": 0.216200053691864,\n            \"Y\": 0.13646601140499115\n          }\n        ]\n      },\n      \"Id\": \"756ade2d-f054-4397-823e-cb5f51579a22\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49557495117188,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010262045077979565,\n          \"Height\": 0.005757452454417944,\n          \"Left\": 0.25505754351615906,\n          \"Top\": 0.13006450235843658\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25506067276000977,\n            \"Y\": 0.13006450235843658\n          },\n          {\n            \"X\": 0.2653195858001709,\n            \"Y\": 0.13007758557796478\n          },\n          {\n            \"X\": 0.2653164565563202,\n            \"Y\": 0.13582195341587067\n          },\n          {\n            \"X\": 0.25505754351615906,\n            \"Y\": 0.13580884039402008\n          }\n        ]\n      },\n      \"Id\": \"cdf635a9-a081-4f1e-81da-4cecc91f4050\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.3438491821289,\n      \"Text\": \"rejected\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0403057225048542,\n          \"Height\": 0.007817250676453114,\n          \"Left\": 0.26836881041526794,\n          \"Top\": 0.12919673323631287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2683730125427246,\n            \"Y\": 0.12919673323631287\n          },\n          {\n            \"X\": 0.30867451429367065,\n            \"Y\": 0.12924812734127045\n          },\n          {\n            \"X\": 0.3086704611778259,\n            \"Y\": 0.1370139867067337\n          },\n          {\n            \"X\": 0.26836881041526794,\n            \"Y\": 0.13696245849132538\n          }\n        ]\n      },\n      \"Id\": \"d1119243-bf0f-4918-ac43-101ad0500d44\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81004333496094,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018437093123793602,\n          \"Height\": 0.0070572830736637115,\n          \"Left\": 0.31232911348342896,\n          \"Top\": 0.1286344826221466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31233277916908264,\n            \"Y\": 0.1286344826221466\n          },\n          {\n            \"X\": 0.3307662010192871,\n            \"Y\": 0.1286579817533493\n          },\n          {\n            \"X\": 0.3307625949382782,\n            \"Y\": 0.13569176197052002\n          },\n          {\n            \"X\": 0.31232911348342896,\n            \"Y\": 0.13566820323467255\n          }\n        ]\n      },\n      \"Id\": \"85e46b95-3ce3-4fe3-82c9-e26b243bdb2f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8079605102539,\n      \"Text\": \"information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05384229123592377,\n          \"Height\": 0.006873530335724354,\n          \"Left\": 0.33381035923957825,\n          \"Top\": 0.12888745963573456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3338138461112976,\n            \"Y\": 0.12888745963573456\n          },\n          {\n            \"X\": 0.3876526653766632,\n            \"Y\": 0.12895609438419342\n          },\n          {\n            \"X\": 0.3876493275165558,\n            \"Y\": 0.13576097786426544\n          },\n          {\n            \"X\": 0.33381035923957825,\n            \"Y\": 0.13569217920303345\n          }\n        ]\n      },\n      \"Id\": \"8a039327-b823-45fc-bef2-af96deb7bebe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71543884277344,\n      \"Text\": \"requested\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046176496893167496,\n          \"Height\": 0.007813324220478535,\n          \"Left\": 0.39080867171287537,\n          \"Top\": 0.12897364795207977\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3908124566078186,\n            \"Y\": 0.12897364795207977\n          },\n          {\n            \"X\": 0.43698516488075256,\n            \"Y\": 0.12903252243995667\n          },\n          {\n            \"X\": 0.43698152899742126,\n            \"Y\": 0.13678696751594543\n          },\n          {\n            \"X\": 0.39080867171287537,\n            \"Y\": 0.1367279440164566\n          }\n        ]\n      },\n      \"Id\": \"35c6ee58-45d8-4e14-b2d2-89a3910f7cc6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.65550994873047,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009046338498592377,\n          \"Height\": 0.006705481559038162,\n          \"Left\": 0.44017308950424194,\n          \"Top\": 0.12891125679016113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44017618894577026,\n            \"Y\": 0.12891125679016113\n          },\n          {\n            \"X\": 0.44921940565109253,\n            \"Y\": 0.12892279028892517\n          },\n          {\n            \"X\": 0.4492163062095642,\n            \"Y\": 0.1356167495250702\n          },\n          {\n            \"X\": 0.44017308950424194,\n            \"Y\": 0.13560518622398376\n          }\n        ]\n      },\n      \"Id\": \"258e38db-9fdc-4cf2-bb25-9ada3d581a28\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76618957519531,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017611060291528702,\n          \"Height\": 0.007062917575240135,\n          \"Left\": 0.45203930139541626,\n          \"Top\": 0.12863071262836456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45204252004623413,\n            \"Y\": 0.12863071262836456\n          },\n          {\n            \"X\": 0.46965035796165466,\n            \"Y\": 0.1286531537771225\n          },\n          {\n            \"X\": 0.4696471691131592,\n            \"Y\": 0.13569362461566925\n          },\n          {\n            \"X\": 0.45203930139541626,\n            \"Y\": 0.13567112386226654\n          }\n        ]\n      },\n      \"Id\": \"da2a452e-6312-491e-a102-23e5ed28b815\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6324234008789,\n      \"Text\": \"form\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022223947569727898,\n          \"Height\": 0.006887192837893963,\n          \"Left\": 0.47264352440834045,\n          \"Top\": 0.1286817044019699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4726466238498688,\n            \"Y\": 0.1286817044019699\n          },\n          {\n            \"X\": 0.4948674738407135,\n            \"Y\": 0.12871003150939941\n          },\n          {\n            \"X\": 0.49486443400382996,\n            \"Y\": 0.13556888699531555\n          },\n          {\n            \"X\": 0.47264352440834045,\n            \"Y\": 0.13554050028324127\n          }\n        ]\n      },\n      \"Id\": \"c9c512f1-9e62-4c65-9562-e4abe3a88bf6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7212142944336,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008178042247891426,\n          \"Height\": 0.006787874735891819,\n          \"Left\": 0.49783000349998474,\n          \"Top\": 0.12870024144649506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4978330135345459,\n            \"Y\": 0.12870024144649506\n          },\n          {\n            \"X\": 0.5060080289840698,\n            \"Y\": 0.12871065735816956\n          },\n          {\n            \"X\": 0.5060051083564758,\n            \"Y\": 0.1354881227016449\n          },\n          {\n            \"X\": 0.49783000349998474,\n            \"Y\": 0.13547766208648682\n          }\n        ]\n      },\n      \"Id\": \"27784d53-5607-4d1c-a2c0-81c237284217\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89546203613281,\n      \"Text\": \"authorized\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049421001225709915,\n          \"Height\": 0.007284811232239008,\n          \"Left\": 0.5090465545654297,\n          \"Top\": 0.12846612930297852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5090497136116028,\n            \"Y\": 0.12846612930297852\n          },\n          {\n            \"X\": 0.5584675669670105,\n            \"Y\": 0.1285291314125061\n          },\n          {\n            \"X\": 0.5584645867347717,\n            \"Y\": 0.1357509344816208\n          },\n          {\n            \"X\": 0.5090465545654297,\n            \"Y\": 0.13568778336048126\n          }\n        ]\n      },\n      \"Id\": \"791c2c59-7daf-44c0-92bf-339ee7d3227c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91190338134766,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012144488282501698,\n          \"Height\": 0.008221078664064407,\n          \"Left\": 0.5614691376686096,\n          \"Top\": 0.1286550909280777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.561472475528717,\n            \"Y\": 0.1286550909280777\n          },\n          {\n            \"X\": 0.5736135840415955,\n            \"Y\": 0.1286705583333969\n          },\n          {\n            \"X\": 0.573610246181488,\n            \"Y\": 0.1368761658668518\n          },\n          {\n            \"X\": 0.5614691376686096,\n            \"Y\": 0.13686063885688782\n          }\n        ]\n      },\n      \"Id\": \"4649f977-a77b-4c45-a6d3-905221302bbe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73841857910156,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020499764010310173,\n          \"Height\": 0.007289839908480644,\n          \"Left\": 0.5768871307373047,\n          \"Top\": 0.12830626964569092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5768901109695435,\n            \"Y\": 0.12830626964569092\n          },\n          {\n            \"X\": 0.59738689661026,\n            \"Y\": 0.12833239138126373\n          },\n          {\n            \"X\": 0.5973840355873108,\n            \"Y\": 0.1355961114168167\n          },\n          {\n            \"X\": 0.5768871307373047,\n            \"Y\": 0.13556991517543793\n          }\n        ]\n      },\n      \"Id\": \"a182e2c6-8ebf-4860-8204-4ba5b689afe1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.74124145507812,\n      \"Text\": \"38.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014182412065565586,\n          \"Height\": 0.007730195298790932,\n          \"Left\": 0.6006355285644531,\n          \"Top\": 0.1283193975687027\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6006385684013367,\n            \"Y\": 0.1283193975687027\n          },\n          {\n            \"X\": 0.6148179173469543,\n            \"Y\": 0.12833747267723083\n          },\n          {\n            \"X\": 0.6148148775100708,\n            \"Y\": 0.13604959845542908\n          },\n          {\n            \"X\": 0.6006355285644531,\n            \"Y\": 0.13603147864341736\n          }\n        ]\n      },\n      \"Id\": \"67cd74ab-8a06-40bf-bc9b-feeb4615d816\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 77.33811950683594,\n      \"Text\": \"USC.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02509450726211071,\n          \"Height\": 0.008042915724217892,\n          \"Left\": 0.6189740896224976,\n          \"Top\": 0.12847860157489777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6189771890640259,\n            \"Y\": 0.12847860157489777\n          },\n          {\n            \"X\": 0.6440685987472534,\n            \"Y\": 0.12851059436798096\n          },\n          {\n            \"X\": 0.6440655589103699,\n            \"Y\": 0.13652151823043823\n          },\n          {\n            \"X\": 0.6189740896224976,\n            \"Y\": 0.13648945093154907\n          }\n        ]\n      },\n      \"Id\": \"b80b09e1-072e-44b0-8bda-4d8d18d56021\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.59444427490234,\n      \"Text\": \"Chapter\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036948222666978836,\n          \"Height\": 0.008210673928260803,\n          \"Left\": 0.648002564907074,\n          \"Top\": 0.12862524390220642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6480056047439575,\n            \"Y\": 0.12862524390220642\n          },\n          {\n            \"X\": 0.6849507689476013,\n            \"Y\": 0.12867233157157898\n          },\n          {\n            \"X\": 0.6849478483200073,\n            \"Y\": 0.13683591783046722\n          },\n          {\n            \"X\": 0.648002564907074,\n            \"Y\": 0.13678868114948273\n          }\n        ]\n      },\n      \"Id\": \"f492c1e0-6313-49ae-950e-2ea4e45be24f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83935546875,\n      \"Text\": \"37\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011867590248584747,\n          \"Height\": 0.006798586808145046,\n          \"Left\": 0.688021719455719,\n          \"Top\": 0.12871520221233368\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6880241632461548,\n            \"Y\": 0.12871520221233368\n          },\n          {\n            \"X\": 0.6998893022537231,\n            \"Y\": 0.12873032689094543\n          },\n          {\n            \"X\": 0.6998869180679321,\n            \"Y\": 0.1355137974023819\n          },\n          {\n            \"X\": 0.688021719455719,\n            \"Y\": 0.13549862802028656\n          }\n        ]\n      },\n      \"Id\": \"25767c45-dd98-4d7e-95ac-534e0ca6074c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.4184341430664,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009936216287314892,\n          \"Height\": 0.007253922987729311,\n          \"Left\": 0.7035753726959229,\n          \"Top\": 0.1287938505411148\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7035779356956482,\n            \"Y\": 0.1287938505411148\n          },\n          {\n            \"X\": 0.71351158618927,\n            \"Y\": 0.12880651652812958\n          },\n          {\n            \"X\": 0.7135090827941895,\n            \"Y\": 0.13604776561260223\n          },\n          {\n            \"X\": 0.7035753726959229,\n            \"Y\": 0.13603508472442627\n          }\n        ]\n      },\n      \"Id\": \"17579d41-be55-41ea-bddd-32fd69cfcbeb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.78727722167969,\n      \"Text\": \"VA):\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021762769669294357,\n          \"Height\": 0.0073241121135652065,\n          \"Left\": 0.7166697382926941,\n          \"Top\": 0.12901848554611206\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7166722416877747,\n            \"Y\": 0.12901848554611206\n          },\n          {\n            \"X\": 0.7384325265884399,\n            \"Y\": 0.129046231508255\n          },\n          {\n            \"X\": 0.7384300827980042,\n            \"Y\": 0.1363425999879837\n          },\n          {\n            \"X\": 0.7166697382926941,\n            \"Y\": 0.13631479442119598\n          }\n        ]\n      },\n      \"Id\": \"68306dd7-bd1c-4509-ab56-56b631feff2b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94851684570312,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012162774801254272,\n          \"Height\": 0.00791449286043644,\n          \"Left\": 0.7420276999473572,\n          \"Top\": 0.12911558151245117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7420303225517273,\n            \"Y\": 0.12911558151245117\n          },\n          {\n            \"X\": 0.7541904449462891,\n            \"Y\": 0.12913107872009277\n          },\n          {\n            \"X\": 0.7541878819465637,\n            \"Y\": 0.13703007996082306\n          },\n          {\n            \"X\": 0.7420276999473572,\n            \"Y\": 0.13701452314853668\n          }\n        ]\n      },\n      \"Id\": \"64a8c052-55ef-4946-b5bd-08f28e4d8395\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90028381347656,\n      \"Text\": \"12\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010467037558555603,\n          \"Height\": 0.006812549661844969,\n          \"Left\": 0.7578794956207275,\n          \"Top\": 0.1289599984884262\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.757881760597229,\n            \"Y\": 0.1289599984884262\n          },\n          {\n            \"X\": 0.7683465480804443,\n            \"Y\": 0.1289733350276947\n          },\n          {\n            \"X\": 0.7683443427085876,\n            \"Y\": 0.13577254116535187\n          },\n          {\n            \"X\": 0.7578794956207275,\n            \"Y\": 0.135759174823761\n          }\n        ]\n      },\n      \"Id\": \"ccaee2a7-18d2-43e4-8481-43361ee122bd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 62.10014724731445,\n      \"Text\": \"USC.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02514592558145523,\n          \"Height\": 0.00800006091594696,\n          \"Left\": 0.7718284726142883,\n          \"Top\": 0.12905073165893555\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7718310356140137,\n            \"Y\": 0.12905073165893555\n          },\n          {\n            \"X\": 0.7969744205474854,\n            \"Y\": 0.1290827840566635\n          },\n          {\n            \"X\": 0.7969719171524048,\n            \"Y\": 0.1370507925748825\n          },\n          {\n            \"X\": 0.7718284726142883,\n            \"Y\": 0.13701865077018738\n          }\n        ]\n      },\n      \"Id\": \"0f0df333-4ce7-4d34-8770-f78b6511cc2c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88424682617188,\n      \"Text\": \"Section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035770758986473083,\n          \"Height\": 0.007050186395645142,\n          \"Left\": 0.8008256554603577,\n          \"Top\": 0.1291513442993164\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8008278012275696,\n            \"Y\": 0.1291513442993164\n          },\n          {\n            \"X\": 0.8365964293479919,\n            \"Y\": 0.12919694185256958\n          },\n          {\n            \"X\": 0.8365943431854248,\n            \"Y\": 0.13620153069496155\n          },\n          {\n            \"X\": 0.8008256554603577,\n            \"Y\": 0.13615582883358002\n          }\n        ]\n      },\n      \"Id\": \"2803bd62-ad15-4bfe-8ed2-5409ac16a435\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77201843261719,\n      \"Text\": \"1701\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020452149212360382,\n          \"Height\": 0.007019826211035252,\n          \"Left\": 0.840686023235321,\n          \"Top\": 0.1291772872209549\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8406880497932434,\n            \"Y\": 0.1291772872209549\n          },\n          {\n            \"X\": 0.8611381649971008,\n            \"Y\": 0.12920336425304413\n          },\n          {\n            \"X\": 0.8611361980438232,\n            \"Y\": 0.13619711995124817\n          },\n          {\n            \"X\": 0.840686023235321,\n            \"Y\": 0.13617098331451416\n          }\n        ]\n      },\n      \"Id\": \"c04d30b1-2618-47c1-9e6d-09f4d06a220a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 72.06259155273438,\n      \"Text\": \"et\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012055768631398678,\n          \"Height\": 0.006039767060428858,\n          \"Left\": 0.8651884198188782,\n          \"Top\": 0.13018685579299927\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8651900887489319,\n            \"Y\": 0.13018685579299927\n          },\n          {\n            \"X\": 0.8772441744804382,\n            \"Y\": 0.13020221889019012\n          },\n          {\n            \"X\": 0.8772425055503845,\n            \"Y\": 0.1362266093492508\n          },\n          {\n            \"X\": 0.8651884198188782,\n            \"Y\": 0.13621121644973755\n          }\n        ]\n      },\n      \"Id\": \"f7470c8d-23fa-42a0-ba58-8d6ed541883f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.73722839355469,\n      \"Text\": \"seq.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01957022212445736,\n          \"Height\": 0.006447754334658384,\n          \"Left\": 0.8816681504249573,\n          \"Top\": 0.13069655001163483\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8816698789596558,\n            \"Y\": 0.13069655001163483\n          },\n          {\n            \"X\": 0.9012383818626404,\n            \"Y\": 0.13072150945663452\n          },\n          {\n            \"X\": 0.9012366533279419,\n            \"Y\": 0.1371442973613739\n          },\n          {\n            \"X\": 0.8816681504249573,\n            \"Y\": 0.13711927831172943\n          }\n        ]\n      },\n      \"Id\": \"552096c7-1714-4997-b24f-313c41964d22\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.4988784790039,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009483006782829762,\n          \"Height\": 0.006770723033696413,\n          \"Left\": 0.9053969383239746,\n          \"Top\": 0.1294964998960495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9053987264633179,\n            \"Y\": 0.1294964998960495\n          },\n          {\n            \"X\": 0.9148799777030945,\n            \"Y\": 0.1295085847377777\n          },\n          {\n            \"X\": 0.9148781895637512,\n            \"Y\": 0.13626721501350403\n          },\n          {\n            \"X\": 0.9053969383239746,\n            \"Y\": 0.13625510036945343\n          }\n        ]\n      },\n      \"Id\": \"d78bbe58-551d-4826-a778-5078b2524cb1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 66.79912567138672,\n      \"Text\": \"HUD/FHA);\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05603701248764992,\n          \"Height\": 0.007887209765613079,\n          \"Left\": 0.04671340063214302,\n          \"Top\": 0.13929417729377747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04671839252114296,\n            \"Y\": 0.13929417729377747\n          },\n          {\n            \"X\": 0.10275041311979294,\n            \"Y\": 0.13936588168144226\n          },\n          {\n            \"X\": 0.10274561494588852,\n            \"Y\": 0.14718139171600342\n          },\n          {\n            \"X\": 0.04671340063214302,\n            \"Y\": 0.1471094936132431\n          }\n        ]\n      },\n      \"Id\": \"03ae7cf5-7d20-4159-bad6-0c180c99de77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91921997070312,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01177810225635767,\n          \"Height\": 0.008016648702323437,\n          \"Left\": 0.10648159682750702,\n          \"Top\": 0.1392545998096466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1064864918589592,\n            \"Y\": 0.1392545998096466\n          },\n          {\n            \"X\": 0.11825969815254211,\n            \"Y\": 0.1392696648836136\n          },\n          {\n            \"X\": 0.11825484037399292,\n            \"Y\": 0.14727124571800232\n          },\n          {\n            \"X\": 0.10648159682750702,\n            \"Y\": 0.14725613594055176\n          }\n        ]\n      },\n      \"Id\": \"a92e8c7c-0b3c-4fb3-9aae-47cbdc5bc4c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92735290527344,\n      \"Text\": \"42\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011732487939298153,\n          \"Height\": 0.006777217611670494,\n          \"Left\": 0.12146802246570587,\n          \"Top\": 0.13901013135910034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12147212028503418,\n            \"Y\": 0.13901013135910034\n          },\n          {\n            \"X\": 0.1332005113363266,\n            \"Y\": 0.13902513682842255\n          },\n          {\n            \"X\": 0.13319644331932068,\n            \"Y\": 0.1457873433828354\n          },\n          {\n            \"X\": 0.12146802246570587,\n            \"Y\": 0.1457723081111908\n          }\n        ]\n      },\n      \"Id\": \"e86e7bf1-bfc5-4896-a96e-0e43978f384b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 54.2513313293457,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02456982433795929,\n          \"Height\": 0.0077781458385288715,\n          \"Left\": 0.13649839162826538,\n          \"Top\": 0.13895000517368317\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13650304079055786,\n            \"Y\": 0.13895000517368317\n          },\n          {\n            \"X\": 0.16106821596622467,\n            \"Y\": 0.13898144662380219\n          },\n          {\n            \"X\": 0.16106365621089935,\n            \"Y\": 0.14672815799713135\n          },\n          {\n            \"X\": 0.13649839162826538,\n            \"Y\": 0.14669664204120636\n          }\n        ]\n      },\n      \"Id\": \"ba5b3da8-e2ce-48ce-84e8-3a518c2a9c1f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90278625488281,\n      \"Text\": \"Section\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03592659905552864,\n          \"Height\": 0.0071933153085410595,\n          \"Left\": 0.16556106507778168,\n          \"Top\": 0.1389489769935608\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16556525230407715,\n            \"Y\": 0.1389489769935608\n          },\n          {\n            \"X\": 0.20148766040802002,\n            \"Y\": 0.13899493217468262\n          },\n          {\n            \"X\": 0.2014835774898529,\n            \"Y\": 0.14614228904247284\n          },\n          {\n            \"X\": 0.16556106507778168,\n            \"Y\": 0.14609621465206146\n          }\n        ]\n      },\n      \"Id\": \"c6a56af1-6da1-413d-9cb5-f774a00ec84d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7105484008789,\n      \"Text\": \"1452b\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026723377406597137,\n          \"Height\": 0.006825019605457783,\n          \"Left\": 0.20508190989494324,\n          \"Top\": 0.13877655565738678\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20508576929569244,\n            \"Y\": 0.13877655565738678\n          },\n          {\n            \"X\": 0.23180527985095978,\n            \"Y\": 0.13881073892116547\n          },\n          {\n            \"X\": 0.23180149495601654,\n            \"Y\": 0.14560158550739288\n          },\n          {\n            \"X\": 0.20508190989494324,\n            \"Y\": 0.14556731283664703\n          }\n        ]\n      },\n      \"Id\": \"1680fe2b-b95d-4644-aa85-14754f43f805\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.63703918457031,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009647789411246777,\n          \"Height\": 0.006963045336306095,\n          \"Left\": 0.23591677844524384,\n          \"Top\": 0.1386326253414154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23592063784599304,\n            \"Y\": 0.1386326253414154\n          },\n          {\n            \"X\": 0.2455645650625229,\n            \"Y\": 0.1386449635028839\n          },\n          {\n            \"X\": 0.24556073546409607,\n            \"Y\": 0.14559566974639893\n          },\n          {\n            \"X\": 0.23591677844524384,\n            \"Y\": 0.14558330178260803\n          }\n        ]\n      },\n      \"Id\": \"9a8dfefc-b5e9-420d-8785-084488f212b2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 45.02802658081055,\n      \"Text\": \"HUD/CPD):\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05712835118174553,\n          \"Height\": 0.00819171592593193,\n          \"Left\": 0.2485584020614624,\n          \"Top\": 0.13843245804309845\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24856287240982056,\n            \"Y\": 0.13843245804309845\n          },\n          {\n            \"X\": 0.3056867718696594,\n            \"Y\": 0.13850553333759308\n          },\n          {\n            \"X\": 0.305682510137558,\n            \"Y\": 0.14662417769432068\n          },\n          {\n            \"X\": 0.2485584020614624,\n            \"Y\": 0.14655089378356934\n          }\n        ]\n      },\n      \"Id\": \"42b0d582-1bb2-488a-8e92-bbb79083a037\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9586410522461,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017642119899392128,\n          \"Height\": 0.007049116306006908,\n          \"Left\": 0.3094027638435364,\n          \"Top\": 0.13845738768577576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30940645933151245,\n            \"Y\": 0.13845738768577576\n          },\n          {\n            \"X\": 0.32704490423202515,\n            \"Y\": 0.13847994804382324\n          },\n          {\n            \"X\": 0.32704126834869385,\n            \"Y\": 0.14550650119781494\n          },\n          {\n            \"X\": 0.3094027638435364,\n            \"Y\": 0.14548388123512268\n          }\n        ]\n      },\n      \"Id\": \"260a196e-70c4-4933-bc37-cafb15e7f6a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63388061523438,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020395535975694656,\n          \"Height\": 0.007223797496408224,\n          \"Left\": 0.3303811848163605,\n          \"Top\": 0.13821746408939362\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33038488030433655,\n            \"Y\": 0.13821746408939362\n          },\n          {\n            \"X\": 0.35077670216560364,\n            \"Y\": 0.13824354112148285\n          },\n          {\n            \"X\": 0.35077306628227234,\n            \"Y\": 0.14544126391410828\n          },\n          {\n            \"X\": 0.3303811848163605,\n            \"Y\": 0.14541511237621307\n          }\n        ]\n      },\n      \"Id\": \"304aef73-fca4-453f-90b8-62d6803f926d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87007141113281,\n      \"Text\": \"42\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011508782394230366,\n          \"Height\": 0.007050715386867523,\n          \"Left\": 0.3538353443145752,\n          \"Top\": 0.13827677071094513\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35383889079093933,\n            \"Y\": 0.13827677071094513\n          },\n          {\n            \"X\": 0.3653441369533539,\n            \"Y\": 0.13829149305820465\n          },\n          {\n            \"X\": 0.36534062027931213,\n            \"Y\": 0.14532749354839325\n          },\n          {\n            \"X\": 0.3538353443145752,\n            \"Y\": 0.14531274139881134\n          }\n        ]\n      },\n      \"Id\": \"dd768912-47b6-44b1-bd20-37ae634747b6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 51.19755935668945,\n      \"Text\": \"USC,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02503974549472332,\n          \"Height\": 0.007707915734499693,\n          \"Left\": 0.36887869238853455,\n          \"Top\": 0.1385311633348465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36888250708580017,\n            \"Y\": 0.1385311633348465\n          },\n          {\n            \"X\": 0.3939184248447418,\n            \"Y\": 0.13856318593025208\n          },\n          {\n            \"X\": 0.39391469955444336,\n            \"Y\": 0.14623907208442688\n          },\n          {\n            \"X\": 0.36887869238853455,\n            \"Y\": 0.14620697498321533\n          }\n        ]\n      },\n      \"Id\": \"f1030270-f095-450f-8af8-f3b369d34822\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77796173095703,\n      \"Text\": \"1471\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020798327401280403,\n          \"Height\": 0.006832779385149479,\n          \"Left\": 0.39831972122192383,\n          \"Top\": 0.1384180784225464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39832302927970886,\n            \"Y\": 0.1384180784225464\n          },\n          {\n            \"X\": 0.4191180467605591,\n            \"Y\": 0.1384446769952774\n          },\n          {\n            \"X\": 0.4191147983074188,\n            \"Y\": 0.1452508568763733\n          },\n          {\n            \"X\": 0.39831972122192383,\n            \"Y\": 0.1452241986989975\n          }\n        ]\n      },\n      \"Id\": \"4cae01e9-ef6d-47a7-a759-d574e94489b3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 78.6283950805664,\n      \"Text\": \"et.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012538977898657322,\n          \"Height\": 0.006393061019480228,\n          \"Left\": 0.422756165266037,\n          \"Top\": 0.13896432518959045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42275917530059814,\n            \"Y\": 0.13896432518959045\n          },\n          {\n            \"X\": 0.43529513478279114,\n            \"Y\": 0.13898035883903503\n          },\n          {\n            \"X\": 0.43529215455055237,\n            \"Y\": 0.1453573852777481\n          },\n          {\n            \"X\": 0.422756165266037,\n            \"Y\": 0.14534130692481995\n          }\n        ]\n      },\n      \"Id\": \"65cf8508-d3b9-4db0-965b-dd5b9bc211a1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.5548095703125,\n      \"Text\": \"seq.,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023054208606481552,\n          \"Height\": 0.006504625082015991,\n          \"Left\": 0.4391428530216217,\n          \"Top\": 0.139685720205307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43914586305618286,\n            \"Y\": 0.139685720205307\n          },\n          {\n            \"X\": 0.46219706535339355,\n            \"Y\": 0.13971520960330963\n          },\n          {\n            \"X\": 0.4621940851211548,\n            \"Y\": 0.146190345287323\n          },\n          {\n            \"X\": 0.4391428530216217,\n            \"Y\": 0.1461607813835144\n          }\n        ]\n      },\n      \"Id\": \"b1f48bd6-fd29-4bc9-b524-5c87dd1aec5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.9145736694336,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010722977109253407,\n          \"Height\": 0.005760656204074621,\n          \"Left\": 0.46595579385757446,\n          \"Top\": 0.13938699662685394\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4659584164619446,\n            \"Y\": 0.13938699662685394\n          },\n          {\n            \"X\": 0.4766787588596344,\n            \"Y\": 0.13940072059631348\n          },\n          {\n            \"X\": 0.47667616605758667,\n            \"Y\": 0.1451476514339447\n          },\n          {\n            \"X\": 0.46595579385757446,\n            \"Y\": 0.14513391256332397\n          }\n        ]\n      },\n      \"Id\": \"d4375d7b-f229-454d-b27d-e238b99586c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.90596008300781,\n      \"Text\": \"7\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00637136772274971,\n          \"Height\": 0.0069049750454723835,\n          \"Left\": 0.4792776107788086,\n          \"Top\": 0.13819408416748047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4792807102203369,\n            \"Y\": 0.13819408416748047\n          },\n          {\n            \"X\": 0.4856489896774292,\n            \"Y\": 0.1382022202014923\n          },\n          {\n            \"X\": 0.48564592003822327,\n            \"Y\": 0.14509905874729156\n          },\n          {\n            \"X\": 0.4792776107788086,\n            \"Y\": 0.14509089291095734\n          }\n        ]\n      },\n      \"Id\": \"6fbfc559-0658-4463-ae45-12c73297528d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 65.31766510009766,\n      \"Text\": \"USC.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025264402851462364,\n          \"Height\": 0.008168556727468967,\n          \"Left\": 0.48897886276245117,\n          \"Top\": 0.13812819123268127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48898249864578247,\n            \"Y\": 0.13812819123268127\n          },\n          {\n            \"X\": 0.5142432451248169,\n            \"Y\": 0.13816049695014954\n          },\n          {\n            \"X\": 0.5142397284507751,\n            \"Y\": 0.14629673957824707\n          },\n          {\n            \"X\": 0.48897886276245117,\n            \"Y\": 0.14626434445381165\n          }\n        ]\n      },\n      \"Id\": \"9c5922fd-3d2c-4270-b6d3-c4b43925c08f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89302825927734,\n      \"Text\": \"1921\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020626559853553772,\n          \"Height\": 0.007117451634258032,\n          \"Left\": 0.5186200141906738,\n          \"Top\": 0.13812972605228424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5186230540275574,\n            \"Y\": 0.13812972605228424\n          },\n          {\n            \"X\": 0.5392465591430664,\n            \"Y\": 0.13815610110759735\n          },\n          {\n            \"X\": 0.5392435789108276,\n            \"Y\": 0.1452471762895584\n          },\n          {\n            \"X\": 0.5186200141906738,\n            \"Y\": 0.14522072672843933\n          }\n        ]\n      },\n      \"Id\": \"7d6ebe61-ffd4-46f9-9c28-061619286d41\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.62210845947266,\n      \"Text\": \"et.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012771411798894405,\n          \"Height\": 0.006097073201090097,\n          \"Left\": 0.5433029532432556,\n          \"Top\": 0.13927681744098663\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.543305516242981,\n            \"Y\": 0.13927681744098663\n          },\n          {\n            \"X\": 0.5560743808746338,\n            \"Y\": 0.13929316401481628\n          },\n          {\n            \"X\": 0.5560718178749084,\n            \"Y\": 0.1453738957643509\n          },\n          {\n            \"X\": 0.5433029532432556,\n            \"Y\": 0.14535751938819885\n          }\n        ]\n      },\n      \"Id\": \"6beaca0d-8194-443d-a555-44bf04c1afe3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.11544036865234,\n      \"Text\": \"seq.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019270077347755432,\n          \"Height\": 0.006667615845799446,\n          \"Left\": 0.5597913861274719,\n          \"Top\": 0.13953270018100739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5597941279411316,\n            \"Y\": 0.13953270018100739\n          },\n          {\n            \"X\": 0.5790614485740662,\n            \"Y\": 0.139557346701622\n          },\n          {\n            \"X\": 0.5790587663650513,\n            \"Y\": 0.14620031416416168\n          },\n          {\n            \"X\": 0.5597913861274719,\n            \"Y\": 0.14617560803890228\n          }\n        ]\n      },\n      \"Id\": \"2ba0837b-0410-4d26-9b99-106524c8eba0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.93523406982422,\n      \"Text\": \"(if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010252970270812511,\n          \"Height\": 0.00708024762570858,\n          \"Left\": 0.5829481482505798,\n          \"Top\": 0.13797955214977264\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.582951009273529,\n            \"Y\": 0.13797955214977264\n          },\n          {\n            \"X\": 0.5932011008262634,\n            \"Y\": 0.13799266517162323\n          },\n          {\n            \"X\": 0.593198299407959,\n            \"Y\": 0.14505979418754578\n          },\n          {\n            \"X\": 0.5829481482505798,\n            \"Y\": 0.145046666264534\n          }\n        ]\n      },\n      \"Id\": \"d5c3d825-2a7e-4250-88f1-56f860005f41\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 34.49253463745117,\n      \"Text\": \"USDA/FmHAI\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07261655479669571,\n          \"Height\": 0.007757744751870632,\n          \"Left\": 0.5960433483123779,\n          \"Top\": 0.1379922479391098\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5960464477539062,\n            \"Y\": 0.1379922479391098\n          },\n          {\n            \"X\": 0.6686599254608154,\n            \"Y\": 0.13808511197566986\n          },\n          {\n            \"X\": 0.668657124042511,\n            \"Y\": 0.1457499861717224\n          },\n          {\n            \"X\": 0.5960433483123779,\n            \"Y\": 0.14565688371658325\n          }\n        ]\n      },\n      \"Id\": \"08a0ef5a-3806-4651-aef9-db578ef9b994\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.8219223022461,\n      \"Text\": \"Instructions:\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0639631375670433,\n          \"Height\": 0.007193558383733034,\n          \"Left\": 0.04572039842605591,\n          \"Top\": 0.15841686725616455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04572493955492973,\n            \"Y\": 0.15841686725616455\n          },\n          {\n            \"X\": 0.10968353599309921,\n            \"Y\": 0.15849924087524414\n          },\n          {\n            \"X\": 0.1096791923046112,\n            \"Y\": 0.1656104177236557\n          },\n          {\n            \"X\": 0.04572039842605591,\n            \"Y\": 0.1655278503894806\n          }\n        ]\n      },\n      \"Id\": \"479dc0ad-807a-499e-b468-1270151a4499\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4278793334961,\n      \"Text\": \"Lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035318270325660706,\n          \"Height\": 0.006761438213288784,\n          \"Left\": 0.12292768061161041,\n          \"Top\": 0.15795807540416718\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12293174862861633,\n            \"Y\": 0.15795807540416718\n          },\n          {\n            \"X\": 0.15824595093727112,\n            \"Y\": 0.1580035537481308\n          },\n          {\n            \"X\": 0.15824198722839355,\n            \"Y\": 0.16471950709819794\n          },\n          {\n            \"X\": 0.12292768061161041,\n            \"Y\": 0.16467392444610596\n          }\n        ]\n      },\n      \"Id\": \"c47307ec-e4bb-411d-a8d4-7db210cf2a92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 88.48516082763672,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008441835641860962,\n          \"Height\": 0.0026281450409442186,\n          \"Left\": 0.16177082061767578,\n          \"Top\": 0.16092437505722046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16177237033843994,\n            \"Y\": 0.16092437505722046\n          },\n          {\n            \"X\": 0.17021265625953674,\n            \"Y\": 0.16093525290489197\n          },\n          {\n            \"X\": 0.17021113634109497,\n            \"Y\": 0.16355250775814056\n          },\n          {\n            \"X\": 0.16177082061767578,\n            \"Y\": 0.16354162991046906\n          }\n        ]\n      },\n      \"Id\": \"0a290fe8-dcfa-4dbb-96e9-a0e48d4fbfc3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58785247802734,\n      \"Text\": \"Complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043874312192201614,\n          \"Height\": 0.008260991424322128,\n          \"Left\": 0.17577499151229858,\n          \"Top\": 0.15794362127780914\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17577975988388062,\n            \"Y\": 0.15794362127780914\n          },\n          {\n            \"X\": 0.2196492999792099,\n            \"Y\": 0.1580001264810562\n          },\n          {\n            \"X\": 0.2196446806192398,\n            \"Y\": 0.16620461642742157\n          },\n          {\n            \"X\": 0.17577499151229858,\n            \"Y\": 0.16614797711372375\n          }\n        ]\n      },\n      \"Id\": \"7f8b2745-97e2-49ed-ad7b-aedd2902c509\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3016586303711,\n      \"Text\": \"items\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024906637147068977,\n          \"Height\": 0.00660519627854228,\n          \"Left\": 0.22293150424957275,\n          \"Top\": 0.15804553031921387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22293519973754883,\n            \"Y\": 0.15804553031921387\n          },\n          {\n            \"X\": 0.24783815443515778,\n            \"Y\": 0.15807761251926422\n          },\n          {\n            \"X\": 0.24783453345298767,\n            \"Y\": 0.16465073823928833\n          },\n          {\n            \"X\": 0.22293150424957275,\n            \"Y\": 0.1646185964345932\n          }\n        ]\n      },\n      \"Id\": \"5ab7e7d3-9c63-4133-8d9e-408436f402c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.62429809570312,\n      \"Text\": \"1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.004013269208371639,\n          \"Height\": 0.00649391720071435,\n          \"Left\": 0.25201836228370667,\n          \"Top\": 0.15806089341640472\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2520219087600708,\n            \"Y\": 0.15806089341640472\n          },\n          {\n            \"X\": 0.2560316324234009,\n            \"Y\": 0.158066064119339\n          },\n          {\n            \"X\": 0.25602808594703674,\n            \"Y\": 0.16455481946468353\n          },\n          {\n            \"X\": 0.25201836228370667,\n            \"Y\": 0.16454963386058807\n          }\n        ]\n      },\n      \"Id\": \"193046aa-a76b-4051-b428-b5433c86cca9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93246459960938,\n      \"Text\": \"through\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03609141707420349,\n          \"Height\": 0.008143195882439613,\n          \"Left\": 0.2610885500907898,\n          \"Top\": 0.15780606865882874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2610929608345032,\n            \"Y\": 0.15780606865882874\n          },\n          {\n            \"X\": 0.2971799671649933,\n            \"Y\": 0.15785254538059235\n          },\n          {\n            \"X\": 0.29717567563056946,\n            \"Y\": 0.1659492701292038\n          },\n          {\n            \"X\": 0.2610885500907898,\n            \"Y\": 0.16590267419815063\n          }\n        ]\n      },\n      \"Id\": \"bc2081db-6d18-40cf-a29f-e3179b69fa6d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.17011260986328,\n      \"Text\": \"7.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010273237712681293,\n          \"Height\": 0.007079804316163063,\n          \"Left\": 0.3003760278224945,\n          \"Top\": 0.15769639611244202\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30037975311279297,\n            \"Y\": 0.15769639611244202\n          },\n          {\n            \"X\": 0.3106492757797241,\n            \"Y\": 0.15770961344242096\n          },\n          {\n            \"X\": 0.31064558029174805,\n            \"Y\": 0.16477619111537933\n          },\n          {\n            \"X\": 0.3003760278224945,\n            \"Y\": 0.164762943983078\n          }\n        ]\n      },\n      \"Id\": \"90f06808-b4bd-4c7d-801f-bfe3fac753f8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8388900756836,\n      \"Text\": \"Have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023766016587615013,\n          \"Height\": 0.006687527988106012,\n          \"Left\": 0.31397169828414917,\n          \"Top\": 0.15794725716114044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.31397515535354614,\n            \"Y\": 0.15794725716114044\n          },\n          {\n            \"X\": 0.33773770928382874,\n            \"Y\": 0.1579778641462326\n          },\n          {\n            \"X\": 0.33773431181907654,\n            \"Y\": 0.1646347939968109\n          },\n          {\n            \"X\": 0.31397169828414917,\n            \"Y\": 0.16460412740707397\n          }\n        ]\n      },\n      \"Id\": \"e1357c47-abda-4eb9-a430-376349767e4f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58301544189453,\n      \"Text\": \"applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04327792301774025,\n          \"Height\": 0.00848209299147129,\n          \"Left\": 0.3405413031578064,\n          \"Top\": 0.15772685408592224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3405455946922302,\n            \"Y\": 0.15772685408592224\n          },\n          {\n            \"X\": 0.38381922245025635,\n            \"Y\": 0.15778256952762604\n          },\n          {\n            \"X\": 0.38381507992744446,\n            \"Y\": 0.16620893776416779\n          },\n          {\n            \"X\": 0.3405413031578064,\n            \"Y\": 0.16615305840969086\n          }\n        ]\n      },\n      \"Id\": \"9d003567-b75e-4209-8bdd-99a5f9f462b8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6812744140625,\n      \"Text\": \"complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04278884828090668,\n          \"Height\": 0.00811570230871439,\n          \"Left\": 0.3868939280509949,\n          \"Top\": 0.15763899683952332\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38689789175987244,\n            \"Y\": 0.15763899683952332\n          },\n          {\n            \"X\": 0.42968279123306274,\n            \"Y\": 0.15769408643245697\n          },\n          {\n            \"X\": 0.4296789765357971,\n            \"Y\": 0.16575470566749573\n          },\n          {\n            \"X\": 0.3868939280509949,\n            \"Y\": 0.16569946706295013\n          }\n        ]\n      },\n      \"Id\": \"ffa7cc6e-f2d9-46a9-aaa1-80d3f9adc7ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.64878845214844,\n      \"Text\": \"item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020893650129437447,\n          \"Height\": 0.006864615250378847,\n          \"Left\": 0.43275851011276245,\n          \"Top\": 0.15754207968711853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4327617287635803,\n            \"Y\": 0.15754207968711853\n          },\n          {\n            \"X\": 0.45365217328071594,\n            \"Y\": 0.15756897628307343\n          },\n          {\n            \"X\": 0.45364901423454285,\n            \"Y\": 0.1644067019224167\n          },\n          {\n            \"X\": 0.43275851011276245,\n            \"Y\": 0.16437974572181702\n          }\n        ]\n      },\n      \"Id\": \"3383b9e4-7f06-4d43-935e-c5e9a46c226f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.39559173583984,\n      \"Text\": \"8.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009215324185788631,\n          \"Height\": 0.0068588946014642715,\n          \"Left\": 0.45707231760025024,\n          \"Top\": 0.15746575593948364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.45707547664642334,\n            \"Y\": 0.15746575593948364\n          },\n          {\n            \"X\": 0.46628764271736145,\n            \"Y\": 0.15747761726379395\n          },\n          {\n            \"X\": 0.46628451347351074,\n            \"Y\": 0.16432465612888336\n          },\n          {\n            \"X\": 0.45707231760025024,\n            \"Y\": 0.16431276500225067\n          }\n        ]\n      },\n      \"Id\": \"5a4c9d12-aa69-4818-b304-c309c0ab8eb3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70429229736328,\n      \"Text\": \"Forward\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03870181366801262,\n          \"Height\": 0.007335904520004988,\n          \"Left\": 0.4702492654323578,\n          \"Top\": 0.15704676508903503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4702525734901428,\n            \"Y\": 0.15704676508903503\n          },\n          {\n            \"X\": 0.5089510679244995,\n            \"Y\": 0.15709656476974487\n          },\n          {\n            \"X\": 0.5089479088783264,\n            \"Y\": 0.164382666349411\n          },\n          {\n            \"X\": 0.4702492654323578,\n            \"Y\": 0.16433273255825043\n          }\n        ]\n      },\n      \"Id\": \"cdde8088-b5da-48d1-af39-aa2eac232b42\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89141845703125,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03445812314748764,\n          \"Height\": 0.00806117057800293,\n          \"Left\": 0.512084424495697,\n          \"Top\": 0.15721793472766876\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5120879411697388,\n            \"Y\": 0.15721793472766876\n          },\n          {\n            \"X\": 0.5465425848960876,\n            \"Y\": 0.15726229548454285\n          },\n          {\n            \"X\": 0.5465391874313354,\n            \"Y\": 0.1652791053056717\n          },\n          {\n            \"X\": 0.512084424495697,\n            \"Y\": 0.16523464024066925\n          }\n        ]\n      },\n      \"Id\": \"c0123889-b599-4526-bcc6-d58f11e348dc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75569152832031,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00982062891125679,\n          \"Height\": 0.006562951486557722,\n          \"Left\": 0.5496408343315125,\n          \"Top\": 0.15765927731990814\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5496435761451721,\n            \"Y\": 0.15765927731990814\n          },\n          {\n            \"X\": 0.5594614148139954,\n            \"Y\": 0.15767191350460052\n          },\n          {\n            \"X\": 0.5594587326049805,\n            \"Y\": 0.16422222554683685\n          },\n          {\n            \"X\": 0.5496408343315125,\n            \"Y\": 0.16420955955982208\n          }\n        ]\n      },\n      \"Id\": \"1c842343-d2e0-4ed0-978b-eb41354cb338\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9117202758789,\n      \"Text\": \"employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043025147169828415,\n          \"Height\": 0.008212217129766941,\n          \"Left\": 0.5628697872161865,\n          \"Top\": 0.15727901458740234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.562873125076294,\n            \"Y\": 0.15727901458740234\n          },\n          {\n            \"X\": 0.605894923210144,\n            \"Y\": 0.15733438730239868\n          },\n          {\n            \"X\": 0.6058917045593262,\n            \"Y\": 0.1654912233352661\n          },\n          {\n            \"X\": 0.5628697872161865,\n            \"Y\": 0.16543568670749664\n          }\n        ]\n      },\n      \"Id\": \"0c5eb0af-eae7-46aa-8666-dde2897a7f3d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88504791259766,\n      \"Text\": \"named\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032160330563783646,\n          \"Height\": 0.006946001201868057,\n          \"Left\": 0.6091022491455078,\n          \"Top\": 0.15717925131320953\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6091049909591675,\n            \"Y\": 0.15717925131320953\n          },\n          {\n            \"X\": 0.6412625908851624,\n            \"Y\": 0.15722064673900604\n          },\n          {\n            \"X\": 0.6412599682807922,\n            \"Y\": 0.1641252636909485\n          },\n          {\n            \"X\": 0.6091022491455078,\n            \"Y\": 0.16408376395702362\n          }\n        ]\n      },\n      \"Id\": \"e94662ce-160c-4825-955f-ed1331211e8c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77976989746094,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00881474930793047,\n          \"Height\": 0.006710478570312262,\n          \"Left\": 0.6443606615066528,\n          \"Top\": 0.15727941691875458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6443631649017334,\n            \"Y\": 0.15727941691875458\n          },\n          {\n            \"X\": 0.653175413608551,\n            \"Y\": 0.1572907567024231\n          },\n          {\n            \"X\": 0.6531729102134705,\n            \"Y\": 0.16398990154266357\n          },\n          {\n            \"X\": 0.6443606615066528,\n            \"Y\": 0.16397853195667267\n          }\n        ]\n      },\n      \"Id\": \"d5e4c858-885b-4140-9167-a20e42b32a81\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.75298309326172,\n      \"Text\": \"item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021629275754094124,\n          \"Height\": 0.006815456785261631,\n          \"Left\": 0.6561822295188904,\n          \"Top\": 0.15729178488254547\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.656184732913971,\n            \"Y\": 0.15729178488254547\n          },\n          {\n            \"X\": 0.6778115034103394,\n            \"Y\": 0.15731962025165558\n          },\n          {\n            \"X\": 0.6778090596199036,\n            \"Y\": 0.16410723328590393\n          },\n          {\n            \"X\": 0.6561822295188904,\n            \"Y\": 0.16407933831214905\n          }\n        ]\n      },\n      \"Id\": \"9eb3f1dd-128a-44de-93b0-e149fb670919\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.31326293945312,\n      \"Text\": \"1.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00814281776547432,\n          \"Height\": 0.006724006496369839,\n          \"Left\": 0.6803357601165771,\n          \"Top\": 0.1571773886680603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6803382039070129,\n            \"Y\": 0.1571773886680603\n          },\n          {\n            \"X\": 0.6884785890579224,\n            \"Y\": 0.15718786418437958\n          },\n          {\n            \"X\": 0.6884761452674866,\n            \"Y\": 0.1639014035463333\n          },\n          {\n            \"X\": 0.6803357601165771,\n            \"Y\": 0.16389089822769165\n          }\n        ]\n      },\n      \"Id\": \"b0d2de31-a4b7-41e3-a4d7-c1ec12db1a30\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78523254394531,\n      \"Text\": \"Employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04816112294793129,\n          \"Height\": 0.008541573770344257,\n          \"Left\": 0.12305746972560883,\n          \"Top\": 0.16760551929473877\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1230626031756401,\n            \"Y\": 0.16760551929473877\n          },\n          {\n            \"X\": 0.17121858894824982,\n            \"Y\": 0.16766773164272308\n          },\n          {\n            \"X\": 0.17121364176273346,\n            \"Y\": 0.17614708840847015\n          },\n          {\n            \"X\": 0.12305746972560883,\n            \"Y\": 0.1760846972465515\n          }\n        ]\n      },\n      \"Id\": \"2e5a60fd-a9c3-48d6-b1ee-35fc8bcd4b46\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.3578109741211,\n      \"Text\": \"Please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03024510107934475,\n          \"Height\": 0.0067974901758134365,\n          \"Left\": 0.18847210705280304,\n          \"Top\": 0.1676969826221466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18847601115703583,\n            \"Y\": 0.1676969826221466\n          },\n          {\n            \"X\": 0.21871721744537354,\n            \"Y\": 0.16773605346679688\n          },\n          {\n            \"X\": 0.2187134027481079,\n            \"Y\": 0.17449447512626648\n          },\n          {\n            \"X\": 0.18847210705280304,\n            \"Y\": 0.17445531487464905\n          }\n        ]\n      },\n      \"Id\": \"60690b4f-31ea-4d71-9318-00b10b37bf63\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79039764404297,\n      \"Text\": \"complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04325889050960541,\n          \"Height\": 0.008168907836079597,\n          \"Left\": 0.22164197266101837,\n          \"Top\": 0.16761410236358643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2216465324163437,\n            \"Y\": 0.16761410236358643\n          },\n          {\n            \"X\": 0.2649008631706238,\n            \"Y\": 0.16766998171806335\n          },\n          {\n            \"X\": 0.2648964524269104,\n            \"Y\": 0.17578300833702087\n          },\n          {\n            \"X\": 0.22164197266101837,\n            \"Y\": 0.175726979970932\n          }\n        ]\n      },\n      \"Id\": \"9bc9bde9-43a7-4d98-98f1-7e7bfc339755\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89591979980469,\n      \"Text\": \"either\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02683553844690323,\n          \"Height\": 0.0068321190774440765,\n          \"Left\": 0.2677704989910126,\n          \"Top\": 0.1676080971956253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26777419447898865,\n            \"Y\": 0.1676080971956253\n          },\n          {\n            \"X\": 0.2946060299873352,\n            \"Y\": 0.1676427572965622\n          },\n          {\n            \"X\": 0.2946024239063263,\n            \"Y\": 0.1744402050971985\n          },\n          {\n            \"X\": 0.2677704989910126,\n            \"Y\": 0.17440547049045563\n          }\n        ]\n      },\n      \"Id\": \"413cf14c-4339-4f67-8a40-e7dfa556d578\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86583709716797,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01948314905166626,\n          \"Height\": 0.007140182889997959,\n          \"Left\": 0.29797881841659546,\n          \"Top\": 0.16734789311885834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2979825735092163,\n            \"Y\": 0.16734789311885834\n          },\n          {\n            \"X\": 0.3174619674682617,\n            \"Y\": 0.16737306118011475\n          },\n          {\n            \"X\": 0.31745827198028564,\n            \"Y\": 0.17448808252811432\n          },\n          {\n            \"X\": 0.29797881841659546,\n            \"Y\": 0.17446285486221313\n          }\n        ]\n      },\n      \"Id\": \"f5cdb876-f220-430c-a3b6-65533c211b2e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.61759948730469,\n      \"Text\": \"II\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006601831875741482,\n          \"Height\": 0.007177287712693214,\n          \"Left\": 0.3206045627593994,\n          \"Top\": 0.16715753078460693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3206082880496979,\n            \"Y\": 0.16715753078460693\n          },\n          {\n            \"X\": 0.32720640301704407,\n            \"Y\": 0.16716605424880981\n          },\n          {\n            \"X\": 0.327202707529068,\n            \"Y\": 0.1743348091840744\n          },\n          {\n            \"X\": 0.3206045627593994,\n            \"Y\": 0.17432627081871033\n          }\n        ]\n      },\n      \"Id\": \"d000e02c-0d62-46d2-9960-c4ec340f9c82\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.8611831665039,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00974060408771038,\n          \"Height\": 0.005809555761516094,\n          \"Left\": 0.33081457018852234,\n          \"Top\": 0.16868193447589874\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3308175504207611,\n            \"Y\": 0.16868193447589874\n          },\n          {\n            \"X\": 0.3405551612377167,\n            \"Y\": 0.16869451105594635\n          },\n          {\n            \"X\": 0.3405522108078003,\n            \"Y\": 0.17449147999286652\n          },\n          {\n            \"X\": 0.33081457018852234,\n            \"Y\": 0.17447887361049652\n          }\n        ]\n      },\n      \"Id\": \"ba0c0db2-dede-4b11-ad06-f3887dc04fa6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.17847442626953,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019343020394444466,\n          \"Height\": 0.007090610917657614,\n          \"Left\": 0.3438718616962433,\n          \"Top\": 0.16735638678073883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3438754677772522,\n            \"Y\": 0.16735638678073883\n          },\n          {\n            \"X\": 0.3632148802280426,\n            \"Y\": 0.16738136112689972\n          },\n          {\n            \"X\": 0.36321136355400085,\n            \"Y\": 0.17444700002670288\n          },\n          {\n            \"X\": 0.3438718616962433,\n            \"Y\": 0.17442195117473602\n          }\n        ]\n      },\n      \"Id\": \"9d17f309-c5a4-4719-baba-d0c42a024fe0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.05984497070312,\n      \"Text\": \"III\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008664265275001526,\n          \"Height\": 0.006887976545840502,\n          \"Left\": 0.36687326431274414,\n          \"Top\": 0.16734574735164642\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3668766915798187,\n            \"Y\": 0.16734574735164642\n          },\n          {\n            \"X\": 0.37553754448890686,\n            \"Y\": 0.167356938123703\n          },\n          {\n            \"X\": 0.37553414702415466,\n            \"Y\": 0.17423371970653534\n          },\n          {\n            \"X\": 0.36687326431274414,\n            \"Y\": 0.17422251403331757\n          }\n        ]\n      },\n      \"Id\": \"1cc04328-7f2f-4555-86ba-ec2d35d888aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83085632324219,\n      \"Text\": \"as\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011041064746677876,\n          \"Height\": 0.005571402609348297,\n          \"Left\": 0.3791767358779907,\n          \"Top\": 0.16856765747070312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3791794776916504,\n            \"Y\": 0.16856765747070312\n          },\n          {\n            \"X\": 0.3902178108692169,\n            \"Y\": 0.16858191788196564\n          },\n          {\n            \"X\": 0.39021509885787964,\n            \"Y\": 0.17413905262947083\n          },\n          {\n            \"X\": 0.3791767358779907,\n            \"Y\": 0.17412476241588593\n          }\n        ]\n      },\n      \"Id\": \"5438ccf6-acad-4f2d-8f1c-6f0973839b16\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 60.77000045776367,\n      \"Text\": \"applicable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04936666041612625,\n          \"Height\": 0.007936004549264908,\n          \"Left\": 0.3934278190135956,\n          \"Top\": 0.16716372966766357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3934316635131836,\n            \"Y\": 0.16716372966766357\n          },\n          {\n            \"X\": 0.4427945017814636,\n            \"Y\": 0.16722747683525085\n          },\n          {\n            \"X\": 0.44279083609580994,\n            \"Y\": 0.17509973049163818\n          },\n          {\n            \"X\": 0.3934278190135956,\n            \"Y\": 0.17503580451011658\n          }\n        ]\n      },\n      \"Id\": \"4e08d73f-876c-4d58-a558-2c42cb8bae18\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.50038146972656,\n      \"Text\": \"Complete\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04515431448817253,\n          \"Height\": 0.007812142837792635,\n          \"Left\": 0.446078360080719,\n          \"Top\": 0.1671392321586609\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4460819661617279,\n            \"Y\": 0.1671392321586609\n          },\n          {\n            \"X\": 0.49123266339302063,\n            \"Y\": 0.1671975553035736\n          },\n          {\n            \"X\": 0.49122923612594604,\n            \"Y\": 0.17495137453079224\n          },\n          {\n            \"X\": 0.446078360080719,\n            \"Y\": 0.17489290237426758\n          }\n        ]\n      },\n      \"Id\": \"54122326-df22-40c1-928b-5e5d00939dad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54322814941406,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019383007660508156,\n          \"Height\": 0.007107885554432869,\n          \"Left\": 0.49477797746658325,\n          \"Top\": 0.1667991280555725\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49478113651275635,\n            \"Y\": 0.1667991280555725\n          },\n          {\n            \"X\": 0.5141609907150269,\n            \"Y\": 0.16682414710521698\n          },\n          {\n            \"X\": 0.5141579508781433,\n            \"Y\": 0.17390701174736023\n          },\n          {\n            \"X\": 0.49477797746658325,\n            \"Y\": 0.1738819181919098\n          }\n        ]\n      },\n      \"Id\": \"45299a70-da20-4246-ab67-ea83203efbcb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.31982421875,\n      \"Text\": \"IV\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010026726871728897,\n          \"Height\": 0.006736569106578827,\n          \"Left\": 0.5177647471427917,\n          \"Top\": 0.16705560684204102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5177676677703857,\n            \"Y\": 0.16705560684204102\n          },\n          {\n            \"X\": 0.5277915000915527,\n            \"Y\": 0.16706855595111847\n          },\n          {\n            \"X\": 0.5277886390686035,\n            \"Y\": 0.17379218339920044\n          },\n          {\n            \"X\": 0.5177647471427917,\n            \"Y\": 0.1737792044878006\n          }\n        ]\n      },\n      \"Id\": \"7a33499b-7d19-4cd7-a5c7-2130f4fb0be7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94168853759766,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0179524514824152,\n          \"Height\": 0.006990890949964523,\n          \"Left\": 0.5314438939094543,\n          \"Top\": 0.1667753905057907\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5314468741416931,\n            \"Y\": 0.1667753905057907\n          },\n          {\n            \"X\": 0.5493963956832886,\n            \"Y\": 0.16679856181144714\n          },\n          {\n            \"X\": 0.5493934750556946,\n            \"Y\": 0.17376627027988434\n          },\n          {\n            \"X\": 0.5314438939094543,\n            \"Y\": 0.17374303936958313\n          }\n        ]\n      },\n      \"Id\": \"9d00c25d-c57c-4713-9219-af343c8b2022\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78916931152344,\n      \"Text\": \"return\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028548475354909897,\n          \"Height\": 0.006082768086344004,\n          \"Left\": 0.5523878335952759,\n          \"Top\": 0.16767770051956177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5523903369903564,\n            \"Y\": 0.16767770051956177\n          },\n          {\n            \"X\": 0.5809363126754761,\n            \"Y\": 0.16771458089351654\n          },\n          {\n            \"X\": 0.5809338688850403,\n            \"Y\": 0.17376047372817993\n          },\n          {\n            \"X\": 0.5523878335952759,\n            \"Y\": 0.1737235188484192\n          }\n        ]\n      },\n      \"Id\": \"5a079e20-05ea-49ae-a42b-d1c29ec3c1e9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81828308105469,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03474312648177147,\n          \"Height\": 0.008338451385498047,\n          \"Left\": 0.5840298533439636,\n          \"Top\": 0.16670231521129608\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.584033191204071,\n            \"Y\": 0.16670231521129608\n          },\n          {\n            \"X\": 0.6187729835510254,\n            \"Y\": 0.16674716770648956\n          },\n          {\n            \"X\": 0.6187697649002075,\n            \"Y\": 0.17504076659679413\n          },\n          {\n            \"X\": 0.5840298533439636,\n            \"Y\": 0.1749957799911499\n          }\n        ]\n      },\n      \"Id\": \"c2abcf62-d632-4843-8ab9-583fe887bd6f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.41976928710938,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009701292030513287,\n          \"Height\": 0.006349161267280579,\n          \"Left\": 0.6218117475509644,\n          \"Top\": 0.1670045554637909\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6218142509460449,\n            \"Y\": 0.1670045554637909\n          },\n          {\n            \"X\": 0.6315130591392517,\n            \"Y\": 0.16701708734035492\n          },\n          {\n            \"X\": 0.6315106153488159,\n            \"Y\": 0.17335371673107147\n          },\n          {\n            \"X\": 0.6218117475509644,\n            \"Y\": 0.17334116995334625\n          }\n        ]\n      },\n      \"Id\": \"d8ec3cd3-e367-4aa2-9377-f23a8d4ea9f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.7513198852539,\n      \"Text\": \"lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02950242906808853,\n          \"Height\": 0.006991825066506863,\n          \"Left\": 0.634367048740387,\n          \"Top\": 0.16633272171020508\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6343696713447571,\n            \"Y\": 0.16633272171020508\n          },\n          {\n            \"X\": 0.6638694405555725,\n            \"Y\": 0.16637080907821655\n          },\n          {\n            \"X\": 0.6638668775558472,\n            \"Y\": 0.1733245551586151\n          },\n          {\n            \"X\": 0.634367048740387,\n            \"Y\": 0.17328637838363647\n          }\n        ]\n      },\n      \"Id\": \"0f8c3f21-2547-4fa9-9dc8-ae8924289e49\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93180084228516,\n      \"Text\": \"named\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031681306660175323,\n          \"Height\": 0.006656187120825052,\n          \"Left\": 0.6672679781913757,\n          \"Top\": 0.16658198833465576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6672704219818115,\n            \"Y\": 0.16658198833465576\n          },\n          {\n            \"X\": 0.6989492774009705,\n            \"Y\": 0.16662289202213287\n          },\n          {\n            \"X\": 0.6989469528198242,\n            \"Y\": 0.17323817312717438\n          },\n          {\n            \"X\": 0.6672679781913757,\n            \"Y\": 0.1731971800327301\n          }\n        ]\n      },\n      \"Id\": \"147c9073-0f5b-4728-b0cf-244393e25629\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88140106201172,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008927939459681511,\n          \"Height\": 0.006735385395586491,\n          \"Left\": 0.7023412585258484,\n          \"Top\": 0.16645710170269012\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7023436427116394,\n            \"Y\": 0.16645710170269012\n          },\n          {\n            \"X\": 0.711269199848175,\n            \"Y\": 0.16646862030029297\n          },\n          {\n            \"X\": 0.7112668752670288,\n            \"Y\": 0.17319248616695404\n          },\n          {\n            \"X\": 0.7023412585258484,\n            \"Y\": 0.1731809377670288\n          }\n        ]\n      },\n      \"Id\": \"1aef89b4-ee34-4728-8901-d9a9bb9b52a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75770568847656,\n      \"Text\": \"item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020534873008728027,\n          \"Height\": 0.006538043729960918,\n          \"Left\": 0.7142024636268616,\n          \"Top\": 0.16652464866638184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7142046689987183,\n            \"Y\": 0.16652464866638184\n          },\n          {\n            \"X\": 0.7347373366355896,\n            \"Y\": 0.16655117273330688\n          },\n          {\n            \"X\": 0.7347351312637329,\n            \"Y\": 0.17306269705295563\n          },\n          {\n            \"X\": 0.7142024636268616,\n            \"Y\": 0.173036128282547\n          }\n        ]\n      },\n      \"Id\": \"633e6110-128b-41f8-b654-197d4a073dda\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.06917572021484,\n      \"Text\": \"2.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008746393956243992,\n          \"Height\": 0.007035878486931324,\n          \"Left\": 0.7379870414733887,\n          \"Top\": 0.16622388362884521\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7379893660545349,\n            \"Y\": 0.16622388362884521\n          },\n          {\n            \"X\": 0.7467334270477295,\n            \"Y\": 0.16623516380786896\n          },\n          {\n            \"X\": 0.7467310428619385,\n            \"Y\": 0.17325976490974426\n          },\n          {\n            \"X\": 0.7379870414733887,\n            \"Y\": 0.17324844002723694\n          }\n        ]\n      },\n      \"Id\": \"5a3f2584-e1ef-44e5-8b75-5fb20581cd17\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8702621459961,\n      \"Text\": \"The\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019208094105124474,\n          \"Height\": 0.007172695826739073,\n          \"Left\": 0.12264510989189148,\n          \"Top\": 0.17709220945835114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12264943867921829,\n            \"Y\": 0.17709220945835114\n          },\n          {\n            \"X\": 0.1418531984090805,\n            \"Y\": 0.17711709439754486\n          },\n          {\n            \"X\": 0.14184893667697906,\n            \"Y\": 0.1842648983001709\n          },\n          {\n            \"X\": 0.12264510989189148,\n            \"Y\": 0.1842399537563324\n          }\n        ]\n      },\n      \"Id\": \"89c9f5aa-6503-4b89-9805-4cd7c1557989\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80103302001953,\n      \"Text\": \"form\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02419419027864933,\n          \"Height\": 0.006999367382377386,\n          \"Left\": 0.14550083875656128,\n          \"Top\": 0.1772330403327942\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14550499618053436,\n            \"Y\": 0.1772330403327942\n          },\n          {\n            \"X\": 0.16969503462314606,\n            \"Y\": 0.17726439237594604\n          },\n          {\n            \"X\": 0.16969095170497894,\n            \"Y\": 0.1842324137687683\n          },\n          {\n            \"X\": 0.14550083875656128,\n            \"Y\": 0.18420098721981049\n          }\n        ]\n      },\n      \"Id\": \"452bf079-31f2-430e-95a8-c7e667c198dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.55480194091797,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008500779047608376,\n          \"Height\": 0.0069769867695868015,\n          \"Left\": 0.17417456209659576,\n          \"Top\": 0.17724904417991638\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1741786152124405,\n            \"Y\": 0.17724904417991638\n          },\n          {\n            \"X\": 0.1826753318309784,\n            \"Y\": 0.17726005613803864\n          },\n          {\n            \"X\": 0.18267130851745605,\n            \"Y\": 0.18422602117061615\n          },\n          {\n            \"X\": 0.17417456209659576,\n            \"Y\": 0.1842149943113327\n          }\n        ]\n      },\n      \"Id\": \"d4e132b0-eb75-40e7-9bcb-531ab525eda2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.25801086425781,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010678709484636784,\n          \"Height\": 0.006573817227035761,\n          \"Left\": 0.1860881745815277,\n          \"Top\": 0.17769522964954376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18609195947647095,\n            \"Y\": 0.17769522964954376\n          },\n          {\n            \"X\": 0.19676688313484192,\n            \"Y\": 0.17770905792713165\n          },\n          {\n            \"X\": 0.19676312804222107,\n            \"Y\": 0.1842690408229828\n          },\n          {\n            \"X\": 0.1860881745815277,\n            \"Y\": 0.1842551827430725\n          }\n        ]\n      },\n      \"Id\": \"72c7efe7-71ed-4b4d-bc11-ee32510c5b73\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89595031738281,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012655925005674362,\n          \"Height\": 0.0069016399793326855,\n          \"Left\": 0.20078153908252716,\n          \"Top\": 0.1771927922964096\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20078547298908234,\n            \"Y\": 0.1771927922964096\n          },\n          {\n            \"X\": 0.21343746781349182,\n            \"Y\": 0.17720918357372284\n          },\n          {\n            \"X\": 0.21343356370925903,\n            \"Y\": 0.18409442901611328\n          },\n          {\n            \"X\": 0.20078153908252716,\n            \"Y\": 0.18407799303531647\n          }\n        ]\n      },\n      \"Id\": \"a85725df-3797-47cb-8ead-c0215197bfe3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75727081298828,\n      \"Text\": \"transmitted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.059922955930233,\n          \"Height\": 0.007140970788896084,\n          \"Left\": 0.2171138972043991,\n          \"Top\": 0.17690670490264893\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21711789071559906,\n            \"Y\": 0.17690670490264893\n          },\n          {\n            \"X\": 0.2770368456840515,\n            \"Y\": 0.17698435485363007\n          },\n          {\n            \"X\": 0.2770330607891083,\n            \"Y\": 0.184047669172287\n          },\n          {\n            \"X\": 0.2171138972043991,\n            \"Y\": 0.18396984040737152\n          }\n        ]\n      },\n      \"Id\": \"4150589f-3c55-4850-9dd4-d3c4a838d8ec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85491943359375,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039014775305986404,\n          \"Height\": 0.00872872769832611,\n          \"Left\": 0.2805306613445282,\n          \"Top\": 0.1767573058605194\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2805353105068207,\n            \"Y\": 0.1767573058605194\n          },\n          {\n            \"X\": 0.3195454478263855,\n            \"Y\": 0.17680785059928894\n          },\n          {\n            \"X\": 0.31954091787338257,\n            \"Y\": 0.18548603355884552\n          },\n          {\n            \"X\": 0.2805306613445282,\n            \"Y\": 0.18543532490730286\n          }\n        ]\n      },\n      \"Id\": \"bd001ea6-cf4c-464e-a043-4f21ddffd507\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71121215820312,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010903601534664631,\n          \"Height\": 0.0061834692023694515,\n          \"Left\": 0.3225555121898651,\n          \"Top\": 0.1776800900697708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3225587010383606,\n            \"Y\": 0.1776800900697708\n          },\n          {\n            \"X\": 0.33345910906791687,\n            \"Y\": 0.17769421637058258\n          },\n          {\n            \"X\": 0.3334559500217438,\n            \"Y\": 0.1838635504245758\n          },\n          {\n            \"X\": 0.3225555121898651,\n            \"Y\": 0.18384939432144165\n          }\n        ]\n      },\n      \"Id\": \"fa2bf902-922d-4c41-8753-d745e7142a51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82085418701172,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016797397285699844,\n          \"Height\": 0.006694127339869738,\n          \"Left\": 0.3371358811855316,\n          \"Top\": 0.17705965042114258\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3371392786502838,\n            \"Y\": 0.17705965042114258\n          },\n          {\n            \"X\": 0.35393327474594116,\n            \"Y\": 0.1770814061164856\n          },\n          {\n            \"X\": 0.35392990708351135,\n            \"Y\": 0.18375377357006073\n          },\n          {\n            \"X\": 0.3371358811855316,\n            \"Y\": 0.18373195827007294\n          }\n        ]\n      },\n      \"Id\": \"8e02255c-c791-4668-8ec9-f1f973ffb64a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.97371673583984,\n      \"Text\": \"lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033118151128292084,\n          \"Height\": 0.00688322726637125,\n          \"Left\": 0.35726022720336914,\n          \"Top\": 0.17691342532634735\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3572636544704437,\n            \"Y\": 0.17691342532634735\n          },\n          {\n            \"X\": 0.3903783857822418,\n            \"Y\": 0.17695634067058563\n          },\n          {\n            \"X\": 0.3903750479221344,\n            \"Y\": 0.18379665911197662\n          },\n          {\n            \"X\": 0.35726022720336914,\n            \"Y\": 0.18375365436077118\n          }\n        ]\n      },\n      \"Id\": \"4a7b8de7-b449-41e0-93a7-9b806e06eeab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87266540527344,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01926947571337223,\n          \"Height\": 0.0069588650949299335,\n          \"Left\": 0.393421471118927,\n          \"Top\": 0.17669135332107544\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3934248387813568,\n            \"Y\": 0.17669135332107544\n          },\n          {\n            \"X\": 0.4126909375190735,\n            \"Y\": 0.17671631276607513\n          },\n          {\n            \"X\": 0.41268762946128845,\n            \"Y\": 0.18365022540092468\n          },\n          {\n            \"X\": 0.393421471118927,\n            \"Y\": 0.18362519145011902\n          }\n        ]\n      },\n      \"Id\": \"d7be728a-54cf-4c44-9c67-37ada0d4f8b2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20166778564453,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008426317945122719,\n          \"Height\": 0.006855193991214037,\n          \"Left\": 0.41609010100364685,\n          \"Top\": 0.1766899824142456\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4160933792591095,\n            \"Y\": 0.1766899824142456\n          },\n          {\n            \"X\": 0.4245164096355438,\n            \"Y\": 0.1767009049654007\n          },\n          {\n            \"X\": 0.42451319098472595,\n            \"Y\": 0.18354518711566925\n          },\n          {\n            \"X\": 0.41609010100364685,\n            \"Y\": 0.18353424966335297\n          }\n        ]\n      },\n      \"Id\": \"266a6136-a24c-4820-bcaa-41362b012a1b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90998840332031,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01763107068836689,\n          \"Height\": 0.0064029386267066,\n          \"Left\": 0.4283686578273773,\n          \"Top\": 0.1773248016834259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4283716678619385,\n            \"Y\": 0.1773248016834259\n          },\n          {\n            \"X\": 0.44599974155426025,\n            \"Y\": 0.17734764516353607\n          },\n          {\n            \"X\": 0.4459967613220215,\n            \"Y\": 0.18372774124145508\n          },\n          {\n            \"X\": 0.4283686578273773,\n            \"Y\": 0.18370483815670013\n          }\n        ]\n      },\n      \"Id\": \"e98f6985-cf7c-4760-8549-d5081dd1e895\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.04442596435547,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010968383401632309,\n          \"Height\": 0.006123905070126057,\n          \"Left\": 0.44940850138664246,\n          \"Top\": 0.17742158472537994\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4494113028049469,\n            \"Y\": 0.17742158472537994\n          },\n          {\n            \"X\": 0.46037688851356506,\n            \"Y\": 0.17743580043315887\n          },\n          {\n            \"X\": 0.4603740870952606,\n            \"Y\": 0.18354548513889313\n          },\n          {\n            \"X\": 0.44940850138664246,\n            \"Y\": 0.183531254529953\n          }\n        ]\n      },\n      \"Id\": \"e58f5602-e4a0-4dc4-8b4f-55097d01b7fd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.733642578125,\n      \"Text\": \"be\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01251770555973053,\n          \"Height\": 0.0068722995929419994,\n          \"Left\": 0.4641088843345642,\n          \"Top\": 0.17658859491348267\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46411198377609253,\n            \"Y\": 0.17658859491348267\n          },\n          {\n            \"X\": 0.47662657499313354,\n            \"Y\": 0.17660480737686157\n          },\n          {\n            \"X\": 0.4766234755516052,\n            \"Y\": 0.18346089124679565\n          },\n          {\n            \"X\": 0.4641088843345642,\n            \"Y\": 0.18344464898109436\n          }\n        ]\n      },\n      \"Id\": \"9100b3a9-ddb2-4f87-8da7-175663f82dec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.1987533569336,\n      \"Text\": \"transmitted\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06066276878118515,\n          \"Height\": 0.0077868057414889336,\n          \"Left\": 0.47981399297714233,\n          \"Top\": 0.17613057792186737\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4798174500465393,\n            \"Y\": 0.17613057792186737\n          },\n          {\n            \"X\": 0.5404767394065857,\n            \"Y\": 0.17620915174484253\n          },\n          {\n            \"X\": 0.5404735207557678,\n            \"Y\": 0.18391737341880798\n          },\n          {\n            \"X\": 0.47981399297714233,\n            \"Y\": 0.1838385909795761\n          }\n        ]\n      },\n      \"Id\": \"6936adcd-953e-415f-a473-58c8e4a80669\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83940887451172,\n      \"Text\": \"through\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04040687531232834,\n          \"Height\": 0.008261500857770443,\n          \"Left\": 0.544330894947052,\n          \"Top\": 0.1764218956232071\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.544334352016449,\n            \"Y\": 0.1764218956232071\n          },\n          {\n            \"X\": 0.5847377777099609,\n            \"Y\": 0.17647424340248108\n          },\n          {\n            \"X\": 0.5847344398498535,\n            \"Y\": 0.1846833974123001\n          },\n          {\n            \"X\": 0.544330894947052,\n            \"Y\": 0.18463090062141418\n          }\n        ]\n      },\n      \"Id\": \"de286cec-fc3d-4889-b074-1a0baa440374\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47509765625,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016287967562675476,\n          \"Height\": 0.006548318080604076,\n          \"Left\": 0.588692843914032,\n          \"Top\": 0.17642170190811157\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5886954665184021,\n            \"Y\": 0.17642170190811157\n          },\n          {\n            \"X\": 0.6049808263778687,\n            \"Y\": 0.17644278705120087\n          },\n          {\n            \"X\": 0.6049782633781433,\n            \"Y\": 0.18297001719474792\n          },\n          {\n            \"X\": 0.588692843914032,\n            \"Y\": 0.18294887244701385\n          }\n        ]\n      },\n      \"Id\": \"8db3ac7d-3a86-4c62-abaf-0c835f2281c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77394104003906,\n      \"Text\": \"applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04872998222708702,\n          \"Height\": 0.007938703522086143,\n          \"Left\": 0.6087023615837097,\n          \"Top\": 0.17643997073173523\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.608705461025238,\n            \"Y\": 0.17643997073173523\n          },\n          {\n            \"X\": 0.6574323177337646,\n            \"Y\": 0.17650309205055237\n          },\n          {\n            \"X\": 0.6574293971061707,\n            \"Y\": 0.18437866866588593\n          },\n          {\n            \"X\": 0.6087023615837097,\n            \"Y\": 0.18431538343429565\n          }\n        ]\n      },\n      \"Id\": \"a485a114-42b3-4c5d-be25-c4d8da4fef1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46549987792969,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01102957408875227,\n          \"Height\": 0.005554899573326111,\n          \"Left\": 0.6603330969810486,\n          \"Top\": 0.17745724320411682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6603351831436157,\n            \"Y\": 0.17745724320411682\n          },\n          {\n            \"X\": 0.6713626980781555,\n            \"Y\": 0.17747153341770172\n          },\n          {\n            \"X\": 0.6713606715202332,\n            \"Y\": 0.18301214277744293\n          },\n          {\n            \"X\": 0.6603330969810486,\n            \"Y\": 0.18299782276153564\n          }\n        ]\n      },\n      \"Id\": \"02992bcd-d056-4ffa-84e3-d8e3012a1223\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96662139892578,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01922948658466339,\n          \"Height\": 0.006811396684497595,\n          \"Left\": 0.6747648119926453,\n          \"Top\": 0.17744135856628418\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6747673153877258,\n            \"Y\": 0.17744135856628418\n          },\n          {\n            \"X\": 0.6939942836761475,\n            \"Y\": 0.1774662882089615\n          },\n          {\n            \"X\": 0.6939918994903564,\n            \"Y\": 0.1842527687549591\n          },\n          {\n            \"X\": 0.6747648119926453,\n            \"Y\": 0.18422779440879822\n          }\n        ]\n      },\n      \"Id\": \"71e0dbb9-7866-4789-a84a-515a1c4eddf8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84380340576172,\n      \"Text\": \"other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02766670472919941,\n          \"Height\": 0.006811121944338083,\n          \"Left\": 0.6973227262496948,\n          \"Top\": 0.1762518733739853\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6973251104354858,\n            \"Y\": 0.1762518733739853\n          },\n          {\n            \"X\": 0.7249894142150879,\n            \"Y\": 0.1762877106666565\n          },\n          {\n            \"X\": 0.7249871492385864,\n            \"Y\": 0.18306300044059753\n          },\n          {\n            \"X\": 0.6973227262496948,\n            \"Y\": 0.18302707374095917\n          }\n        ]\n      },\n      \"Id\": \"96478485-2e60-46ff-b9f0-f757caeca2ef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.1593246459961,\n      \"Text\": \"party.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029845034703612328,\n          \"Height\": 0.007601982913911343,\n          \"Left\": 0.7279817461967468,\n          \"Top\": 0.1768098622560501\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7279843091964722,\n            \"Y\": 0.1768098622560501\n          },\n          {\n            \"X\": 0.7578267455101013,\n            \"Y\": 0.17684853076934814\n          },\n          {\n            \"X\": 0.7578243017196655,\n            \"Y\": 0.18441185355186462\n          },\n          {\n            \"X\": 0.7279817461967468,\n            \"Y\": 0.18437308073043823\n          }\n        ]\n      },\n      \"Id\": \"b44164b8-a6b1-4878-9d98-2da13824e8df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72848510742188,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02934795804321766,\n          \"Height\": 0.009084222838282585,\n          \"Left\": 0.043372731655836105,\n          \"Top\": 0.1990937441587448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.043378520756959915,\n            \"Y\": 0.1990937441587448\n          },\n          {\n            \"X\": 0.07272069156169891,\n            \"Y\": 0.1991320550441742\n          },\n          {\n            \"X\": 0.07271501421928406,\n            \"Y\": 0.20817796885967255\n          },\n          {\n            \"X\": 0.043372731655836105,\n            \"Y\": 0.2081395387649536\n          }\n        ]\n      },\n      \"Id\": \"ca88b970-87b4-4c99-b09b-5d6bcde6eb6e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.3347396850586,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0037043076008558273,\n          \"Height\": 0.00936867669224739,\n          \"Left\": 0.07836988568305969,\n          \"Top\": 0.1988256424665451\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07837573438882828,\n            \"Y\": 0.1988256424665451\n          },\n          {\n            \"X\": 0.08207419514656067,\n            \"Y\": 0.1988304853439331\n          },\n          {\n            \"X\": 0.08206836134195328,\n            \"Y\": 0.2081943303346634\n          },\n          {\n            \"X\": 0.07836988568305969,\n            \"Y\": 0.2081894874572754\n          }\n        ]\n      },\n      \"Id\": \"7137fc09-e208-4354-9de2-94ae24c1ea80\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8958969116211,\n      \"Text\": \"Request\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056769344955682755,\n          \"Height\": 0.011101624928414822,\n          \"Left\": 0.10735084116458893,\n          \"Top\": 0.1990334540605545\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10735758394002914,\n            \"Y\": 0.1990334540605545\n          },\n          {\n            \"X\": 0.16412018239498138,\n            \"Y\": 0.1991075575351715\n          },\n          {\n            \"X\": 0.16411371529102325,\n            \"Y\": 0.2101350724697113\n          },\n          {\n            \"X\": 0.10735084116458893,\n            \"Y\": 0.21006068587303162\n          }\n        ]\n      },\n      \"Id\": \"f5133965-4653-4f0d-a646-9ccad3351f57\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.09095001220703,\n      \"Text\": \"1.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009198899380862713,\n          \"Height\": 0.007867932319641113,\n          \"Left\": 0.04344245791435242,\n          \"Top\": 0.21273678541183472\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04344748333096504,\n            \"Y\": 0.21273678541183472\n          },\n          {\n            \"X\": 0.052641358226537704,\n            \"Y\": 0.21274884045124054\n          },\n          {\n            \"X\": 0.05263636261224747,\n            \"Y\": 0.22060471773147583\n          },\n          {\n            \"X\": 0.04344245791435242,\n            \"Y\": 0.22059261798858643\n          }\n        ]\n      },\n      \"Id\": \"401879e0-cd0a-48c8-804d-ad9a6f2366de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.51542663574219,\n      \"Text\": \"To\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01440793089568615,\n          \"Height\": 0.008176309987902641,\n          \"Left\": 0.05756375566124916,\n          \"Top\": 0.21239595115184784\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05756892263889313,\n            \"Y\": 0.21239595115184784\n          },\n          {\n            \"X\": 0.07197168469429016,\n            \"Y\": 0.21241484582424164\n          },\n          {\n            \"X\": 0.07196656614542007,\n            \"Y\": 0.22057226300239563\n          },\n          {\n            \"X\": 0.05756375566124916,\n            \"Y\": 0.22055332362651825\n          }\n        ]\n      },\n      \"Id\": \"54418385-32da-49a9-9ad5-512298555916\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.45134735107422,\n      \"Text\": \"(Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034546270966529846,\n          \"Height\": 0.008888506330549717,\n          \"Left\": 0.07704611867666245,\n          \"Top\": 0.21260912716388702\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07705164700746536,\n            \"Y\": 0.21260912716388702\n          },\n          {\n            \"X\": 0.11159238964319229,\n            \"Y\": 0.21265442669391632\n          },\n          {\n            \"X\": 0.11158699542284012,\n            \"Y\": 0.22149762511253357\n          },\n          {\n            \"X\": 0.07704611867666245,\n            \"Y\": 0.22145219147205353\n          }\n        ]\n      },\n      \"Id\": \"8381112f-2ca4-4fac-bb8e-92375a11a80b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9609375,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019913913682103157,\n          \"Height\": 0.007966558448970318,\n          \"Left\": 0.11592242121696472,\n          \"Top\": 0.2126493602991104\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11592724919319153,\n            \"Y\": 0.2126493602991104\n          },\n          {\n            \"X\": 0.13583633303642273,\n            \"Y\": 0.21267548203468323\n          },\n          {\n            \"X\": 0.1358315795660019,\n            \"Y\": 0.2206159234046936\n          },\n          {\n            \"X\": 0.11592242121696472,\n            \"Y\": 0.220589742064476\n          }\n        ]\n      },\n      \"Id\": \"e743f0b9-64fd-4aca-a8ed-ce08a33a824e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97550201416016,\n      \"Text\": \"address\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04102407768368721,\n          \"Height\": 0.007793833967298269,\n          \"Left\": 0.13996541500091553,\n          \"Top\": 0.21289847791194916\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13997004926204681,\n            \"Y\": 0.21289847791194916\n          },\n          {\n            \"X\": 0.18098950386047363,\n            \"Y\": 0.21295227110385895\n          },\n          {\n            \"X\": 0.18098501861095428,\n            \"Y\": 0.22069230675697327\n          },\n          {\n            \"X\": 0.13996541500091553,\n            \"Y\": 0.22063836455345154\n          }\n        ]\n      },\n      \"Id\": \"f83bb4be-acae-442a-83a5-d74ac33c1dd8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81971740722656,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011238282546401024,\n          \"Height\": 0.007753667887300253,\n          \"Left\": 0.1851935088634491,\n          \"Top\": 0.21261070668697357\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18519797921180725,\n            \"Y\": 0.21261070668697357\n          },\n          {\n            \"X\": 0.19643178582191467,\n            \"Y\": 0.2126254290342331\n          },\n          {\n            \"X\": 0.1964273452758789,\n            \"Y\": 0.22036437690258026\n          },\n          {\n            \"X\": 0.1851935088634491,\n            \"Y\": 0.22034959495067596\n          }\n        ]\n      },\n      \"Id\": \"827b6e20-786f-4df0-bd77-77a4e378f532\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.92932891845703,\n      \"Text\": \"employer)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05319850146770477,\n          \"Height\": 0.009442388080060482,\n          \"Left\": 0.20025849342346191,\n          \"Top\": 0.21256788074970245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2002638429403305,\n            \"Y\": 0.21256788074970245\n          },\n          {\n            \"X\": 0.2534569799900055,\n            \"Y\": 0.21263764798641205\n          },\n          {\n            \"X\": 0.2534518539905548,\n            \"Y\": 0.2220102697610855\n          },\n          {\n            \"X\": 0.20025849342346191,\n            \"Y\": 0.2219402939081192\n          }\n        ]\n      },\n      \"Id\": \"5c8e9154-2418-4915-ac03-2b8b3ab0e468\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80394744873047,\n      \"Text\": \"2.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010832932777702808,\n          \"Height\": 0.00788269005715847,\n          \"Left\": 0.49070051312446594,\n          \"Top\": 0.21223047375679016\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4907039999961853,\n            \"Y\": 0.21223047375679016\n          },\n          {\n            \"X\": 0.5015334486961365,\n            \"Y\": 0.2122446745634079\n          },\n          {\n            \"X\": 0.5015299916267395,\n            \"Y\": 0.22011317312717438\n          },\n          {\n            \"X\": 0.49070051312446594,\n            \"Y\": 0.22009892761707306\n          }\n        ]\n      },\n      \"Id\": \"88f6b8f1-0d4b-4abe-a5b9-de12b3f86bb7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85955047607422,\n      \"Text\": \"From\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027923721820116043,\n          \"Height\": 0.00793373491615057,\n          \"Left\": 0.5064795017242432,\n          \"Top\": 0.2120562195777893\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5064829587936401,\n            \"Y\": 0.2120562195777893\n          },\n          {\n            \"X\": 0.5344032645225525,\n            \"Y\": 0.2120928168296814\n          },\n          {\n            \"X\": 0.5343998670578003,\n            \"Y\": 0.21998995542526245\n          },\n          {\n            \"X\": 0.5064795017242432,\n            \"Y\": 0.219953253865242\n          }\n        ]\n      },\n      \"Id\": \"acce9083-ea25-4989-996a-64edd8f5582d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.20378112792969,\n      \"Text\": \"(Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03574535250663757,\n          \"Height\": 0.008450999855995178,\n          \"Left\": 0.5386558771133423,\n          \"Top\": 0.21200373768806458\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5386594533920288,\n            \"Y\": 0.21200373768806458\n          },\n          {\n            \"X\": 0.5744012594223022,\n            \"Y\": 0.21205060184001923\n          },\n          {\n            \"X\": 0.5743978023529053,\n            \"Y\": 0.22045473754405975\n          },\n          {\n            \"X\": 0.5386558771133423,\n            \"Y\": 0.22040775418281555\n          }\n        ]\n      },\n      \"Id\": \"11c548c9-d59b-4050-b0b0-e43e862eccfe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97148895263672,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020113809034228325,\n          \"Height\": 0.007553538773208857,\n          \"Left\": 0.5782961845397949,\n          \"Top\": 0.21243631839752197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5782992243766785,\n            \"Y\": 0.21243631839752197\n          },\n          {\n            \"X\": 0.5984099507331848,\n            \"Y\": 0.2124626785516739\n          },\n          {\n            \"X\": 0.598406970500946,\n            \"Y\": 0.2199898511171341\n          },\n          {\n            \"X\": 0.5782961845397949,\n            \"Y\": 0.2199634164571762\n          }\n        ]\n      },\n      \"Id\": \"7f38921c-b0ea-4cde-99dd-23be54006aa3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88529205322266,\n      \"Text\": \"address\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04204956069588661,\n          \"Height\": 0.007878909818828106,\n          \"Left\": 0.6022796034812927,\n          \"Top\": 0.21220439672470093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.602282702922821,\n            \"Y\": 0.21220439672470093\n          },\n          {\n            \"X\": 0.6443291902542114,\n            \"Y\": 0.21225953102111816\n          },\n          {\n            \"X\": 0.6443262696266174,\n            \"Y\": 0.2200833112001419\n          },\n          {\n            \"X\": 0.6022796034812927,\n            \"Y\": 0.22002804279327393\n          }\n        ]\n      },\n      \"Id\": \"e33211c8-36ed-4331-a80a-a4ca40bdee58\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.765625,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011665836907923222,\n          \"Height\": 0.00776185467839241,\n          \"Left\": 0.6479828357696533,\n          \"Top\": 0.21200500428676605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6479857563972473,\n            \"Y\": 0.21200500428676605\n          },\n          {\n            \"X\": 0.6596487164497375,\n            \"Y\": 0.21202029287815094\n          },\n          {\n            \"X\": 0.6596457958221436,\n            \"Y\": 0.21976687014102936\n          },\n          {\n            \"X\": 0.6479828357696533,\n            \"Y\": 0.2197515368461609\n          }\n        ]\n      },\n      \"Id\": \"cf5a6720-4592-4c59-8ed0-21bacb1fcc06\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 85.62523651123047,\n      \"Text\": \"lender)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.037356194108724594,\n          \"Height\": 0.008646453730762005,\n          \"Left\": 0.6629122495651245,\n          \"Top\": 0.21200132369995117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6629154086112976,\n            \"Y\": 0.21200132369995117\n          },\n          {\n            \"X\": 0.7002684473991394,\n            \"Y\": 0.21205028891563416\n          },\n          {\n            \"X\": 0.7002654075622559,\n            \"Y\": 0.22064776718616486\n          },\n          {\n            \"X\": 0.6629122495651245,\n            \"Y\": 0.22059866786003113\n          }\n        ]\n      },\n      \"Id\": \"ef53829a-5014-45d4-8bbb-d2232756a66a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16006469726562,\n      \"Text\": \"Alejandro\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0830988958477974,\n          \"Height\": 0.01418954599648714,\n          \"Left\": 0.07605338096618652,\n          \"Top\": 0.23065650463104248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07606218755245209,\n            \"Y\": 0.23065650463104248\n          },\n          {\n            \"X\": 0.15915226936340332,\n            \"Y\": 0.23076613247394562\n          },\n          {\n            \"X\": 0.15914398431777954,\n            \"Y\": 0.24484606087207794\n          },\n          {\n            \"X\": 0.07605338096618652,\n            \"Y\": 0.2447359263896942\n          }\n        ]\n      },\n      \"Id\": \"51666927-acdf-46e8-bd15-5c5e687de29d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.62716674804688,\n      \"Text\": \"Rosalez\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07090617716312408,\n          \"Height\": 0.01188702043145895,\n          \"Left\": 0.16489070653915405,\n          \"Top\": 0.2305944710969925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1648976355791092,\n            \"Y\": 0.2305944710969925\n          },\n          {\n            \"X\": 0.23579688370227814,\n            \"Y\": 0.23068800568580627\n          },\n          {\n            \"X\": 0.23579034209251404,\n            \"Y\": 0.24248148500919342\n          },\n          {\n            \"X\": 0.16489070653915405,\n            \"Y\": 0.242387592792511\n          }\n        ]\n      },\n      \"Id\": \"d26730e9-bc64-41f3-b1a0-6cf86904cbfd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79652404785156,\n      \"Text\": \"Carlos\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05578821152448654,\n          \"Height\": 0.012046195566654205,\n          \"Left\": 0.5079284906387329,\n          \"Top\": 0.23173066973686218\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5079336762428284,\n            \"Y\": 0.23173066973686218\n          },\n          {\n            \"X\": 0.5637166500091553,\n            \"Y\": 0.2318042814731598\n          },\n          {\n            \"X\": 0.5637117624282837,\n            \"Y\": 0.24377687275409698\n          },\n          {\n            \"X\": 0.5079284906387329,\n            \"Y\": 0.2437029629945755\n          }\n        ]\n      },\n      \"Id\": \"70ce6cbd-d9de-4b57-b766-004426f1f739\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71342468261719,\n      \"Text\": \"Salazar\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06635385751724243,\n          \"Height\": 0.012178521603345871,\n          \"Left\": 0.5698251724243164,\n          \"Top\": 0.23164954781532288\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698301196098328,\n            \"Y\": 0.23164954781532288\n          },\n          {\n            \"X\": 0.6361790299415588,\n            \"Y\": 0.23173709213733673\n          },\n          {\n            \"X\": 0.6361743807792664,\n            \"Y\": 0.24382807314395905\n          },\n          {\n            \"X\": 0.5698251724243164,\n            \"Y\": 0.24374017119407654\n          }\n        ]\n      },\n      \"Id\": \"6e994e36-fe0d-4f55-9641-41042d758673\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78157806396484,\n      \"Text\": \"123\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030797434970736504,\n          \"Height\": 0.011810940690338612,\n          \"Left\": 0.0781203880906105,\n          \"Top\": 0.24567782878875732\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07812774181365967,\n            \"Y\": 0.24567782878875732\n          },\n          {\n            \"X\": 0.10891782492399216,\n            \"Y\": 0.24571864306926727\n          },\n          {\n            \"X\": 0.10891062766313553,\n            \"Y\": 0.25748875737190247\n          },\n          {\n            \"X\": 0.0781203880906105,\n            \"Y\": 0.2574477791786194\n          }\n        ]\n      },\n      \"Id\": \"5852d2b3-1bd7-4d7f-90f9-682273b3b5d1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95478057861328,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03445814549922943,\n          \"Height\": 0.015026436187326908,\n          \"Left\": 0.11391252279281616,\n          \"Top\": 0.2455320656299591\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1139216497540474,\n            \"Y\": 0.2455320656299591\n          },\n          {\n            \"X\": 0.1483706682920456,\n            \"Y\": 0.24557773768901825\n          },\n          {\n            \"X\": 0.14836177229881287,\n            \"Y\": 0.26055851578712463\n          },\n          {\n            \"X\": 0.11391252279281616,\n            \"Y\": 0.2605126202106476\n          }\n        ]\n      },\n      \"Id\": \"b5f92fb5-da67-4e58-a37e-ed5f4d25cb14\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84628295898438,\n      \"Text\": \"Street,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05614084377884865,\n          \"Height\": 0.013968171551823616,\n          \"Left\": 0.15462785959243774,\n          \"Top\": 0.24554689228534698\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15463607013225555,\n            \"Y\": 0.24554689228534698\n          },\n          {\n            \"X\": 0.2107686996459961,\n            \"Y\": 0.24562130868434906\n          },\n          {\n            \"X\": 0.21076083183288574,\n            \"Y\": 0.25951504707336426\n          },\n          {\n            \"X\": 0.15462785959243774,\n            \"Y\": 0.2594403028488159\n          }\n        ]\n      },\n      \"Id\": \"89fd11ca-f496-46c2-8d98-268e1d0bcd7a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96832275390625,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03486465662717819,\n          \"Height\": 0.01493242010474205,\n          \"Left\": 0.21623726189136505,\n          \"Top\": 0.24576325714588165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2162456512451172,\n            \"Y\": 0.24576325714588165\n          },\n          {\n            \"X\": 0.25110191106796265,\n            \"Y\": 0.24580946564674377\n          },\n          {\n            \"X\": 0.2510937452316284,\n            \"Y\": 0.2606956660747528\n          },\n          {\n            \"X\": 0.21623726189136505,\n            \"Y\": 0.2606492340564728\n          }\n        ]\n      },\n      \"Id\": \"aca92416-5289-4293-996e-21647aee9afa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85843658447266,\n      \"Text\": \"Town,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05209353566169739,\n          \"Height\": 0.013947824947535992,\n          \"Left\": 0.2565515637397766,\n          \"Top\": 0.2456025779247284\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2565591335296631,\n            \"Y\": 0.2456025779247284\n          },\n          {\n            \"X\": 0.308645099401474,\n            \"Y\": 0.24567162990570068\n          },\n          {\n            \"X\": 0.3086378276348114,\n            \"Y\": 0.25955039262771606\n          },\n          {\n            \"X\": 0.2565515637397766,\n            \"Y\": 0.2594810426235199\n          }\n        ]\n      },\n      \"Id\": \"22f98f57-12c8-4eac-b5f5-963452beb986\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92366027832031,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04030878469347954,\n          \"Height\": 0.01212228462100029,\n          \"Left\": 0.315871000289917,\n          \"Top\": 0.2455131560564041\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3158772885799408,\n            \"Y\": 0.2455131560564041\n          },\n          {\n            \"X\": 0.35617977380752563,\n            \"Y\": 0.24556657671928406\n          },\n          {\n            \"X\": 0.35617369413375854,\n            \"Y\": 0.2576354444026947\n          },\n          {\n            \"X\": 0.315871000289917,\n            \"Y\": 0.25758180022239685\n          }\n        ]\n      },\n      \"Id\": \"b37d5d67-185c-494c-b2bb-fa0654bb1ffb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98290252685547,\n      \"Text\": \"100\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03095005266368389,\n          \"Height\": 0.012366030365228653,\n          \"Left\": 0.5089458227157593,\n          \"Top\": 0.24683308601379395\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5089511871337891,\n            \"Y\": 0.24683308601379395\n          },\n          {\n            \"X\": 0.5398958921432495,\n            \"Y\": 0.2468741238117218\n          },\n          {\n            \"X\": 0.5398906469345093,\n            \"Y\": 0.2591991126537323\n          },\n          {\n            \"X\": 0.5089458227157593,\n            \"Y\": 0.2591579258441925\n          }\n        ]\n      },\n      \"Id\": \"d9719752-e1fa-4185-aa6f-a636c9b53530\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98485565185547,\n      \"Text\": \"Main\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04136884957551956,\n          \"Height\": 0.012069000862538815,\n          \"Left\": 0.5462533235549927,\n          \"Top\": 0.247022807598114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5462583899497986,\n            \"Y\": 0.247022807598114\n          },\n          {\n            \"X\": 0.5876222252845764,\n            \"Y\": 0.24707765877246857\n          },\n          {\n            \"X\": 0.5876173973083496,\n            \"Y\": 0.2590917944908142\n          },\n          {\n            \"X\": 0.5462533235549927,\n            \"Y\": 0.25903674960136414\n          }\n        ]\n      },\n      \"Id\": \"23f75aee-2239-4343-91fc-59e3f66b1c59\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81706237792969,\n      \"Text\": \"Street,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05675293132662773,\n          \"Height\": 0.01411869004368782,\n          \"Left\": 0.5939502716064453,\n          \"Top\": 0.2466704398393631\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5939558744430542,\n            \"Y\": 0.2466704398393631\n          },\n          {\n            \"X\": 0.6507031917572021,\n            \"Y\": 0.24674569070339203\n          },\n          {\n            \"X\": 0.6506979465484619,\n            \"Y\": 0.2607891261577606\n          },\n          {\n            \"X\": 0.5939502716064453,\n            \"Y\": 0.2607135474681854\n          }\n        ]\n      },\n      \"Id\": \"d2f0e599-e441-4023-baa0-e494302aa844\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73575592041016,\n      \"Text\": \"Anytown,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08047302812337875,\n          \"Height\": 0.014919586479663849,\n          \"Left\": 0.6561542749404907,\n          \"Top\": 0.24685749411582947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6561597585678101,\n            \"Y\": 0.24685749411582947\n          },\n          {\n            \"X\": 0.7366272807121277,\n            \"Y\": 0.2469642013311386\n          },\n          {\n            \"X\": 0.7366223335266113,\n            \"Y\": 0.2617770731449127\n          },\n          {\n            \"X\": 0.6561542749404907,\n            \"Y\": 0.2616698741912842\n          }\n        ]\n      },\n      \"Id\": \"a6d0fc9c-4df2-4100-a349-37986281f008\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90457916259766,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03988119959831238,\n          \"Height\": 0.01200905442237854,\n          \"Left\": 0.7434045672416687,\n          \"Top\": 0.24681246280670166\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7434085607528687,\n            \"Y\": 0.24681246280670166\n          },\n          {\n            \"X\": 0.7832857966423035,\n            \"Y\": 0.24686534702777863\n          },\n          {\n            \"X\": 0.7832820415496826,\n            \"Y\": 0.2588215172290802\n          },\n          {\n            \"X\": 0.7434045672416687,\n            \"Y\": 0.2587684392929077\n          }\n        ]\n      },\n      \"Id\": \"4ddddb93-d798-445e-aabf-8823e063e9fd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.91813659667969,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0036345324479043484,\n          \"Height\": 0.007593588903546333,\n          \"Left\": 0.04263576492667198,\n          \"Top\": 0.2732371985912323\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042640626430511475,\n            \"Y\": 0.2732371985912323\n          },\n          {\n            \"X\": 0.04627029970288277,\n            \"Y\": 0.2732420563697815\n          },\n          {\n            \"X\": 0.04626545310020447,\n            \"Y\": 0.2808307707309723\n          },\n          {\n            \"X\": 0.04263576492667198,\n            \"Y\": 0.2808259129524231\n          }\n        ]\n      },\n      \"Id\": \"4a3a1e5c-5fc3-4fa2-b979-9879338a0154\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94444274902344,\n      \"Text\": \"certify\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034109365195035934,\n          \"Height\": 0.009112835861742496,\n          \"Left\": 0.05040578544139862,\n          \"Top\": 0.27346423268318176\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05041155964136124,\n            \"Y\": 0.27346423268318176\n          },\n          {\n            \"X\": 0.08451514691114426,\n            \"Y\": 0.2735098600387573\n          },\n          {\n            \"X\": 0.08450951427221298,\n            \"Y\": 0.2825770676136017\n          },\n          {\n            \"X\": 0.05040578544139862,\n            \"Y\": 0.2825313210487366\n          }\n        ]\n      },\n      \"Id\": \"4f3157cf-f918-4046-b2d7-af2a9fe0bc07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98226928710938,\n      \"Text\": \"that\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021118072792887688,\n          \"Height\": 0.007593145594000816,\n          \"Left\": 0.08870923519134521,\n          \"Top\": 0.27340227365493774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08871392905712128,\n            \"Y\": 0.27340227365493774\n          },\n          {\n            \"X\": 0.10982730984687805,\n            \"Y\": 0.2734305262565613\n          },\n          {\n            \"X\": 0.10982268303632736,\n            \"Y\": 0.2809954285621643\n          },\n          {\n            \"X\": 0.08870923519134521,\n            \"Y\": 0.2809670865535736\n          }\n        ]\n      },\n      \"Id\": \"64fa9a48-c0e5-4437-bcf0-258f71260d87\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95470428466797,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019581099972128868,\n          \"Height\": 0.0077270143665373325,\n          \"Left\": 0.11362726986408234,\n          \"Top\": 0.2731742858886719\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1136319562792778,\n            \"Y\": 0.2731742858886719\n          },\n          {\n            \"X\": 0.13320836424827576,\n            \"Y\": 0.27320048213005066\n          },\n          {\n            \"X\": 0.13320374488830566,\n            \"Y\": 0.2809012830257416\n          },\n          {\n            \"X\": 0.11362726986408234,\n            \"Y\": 0.280875027179718\n          }\n        ]\n      },\n      \"Id\": \"86b3c501-01a1-473a-ba61-5be2ecddca06\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77491760253906,\n      \"Text\": \"verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0584016889333725,\n          \"Height\": 0.008076505735516548,\n          \"Left\": 0.13709676265716553,\n          \"Top\": 0.2729133367538452\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13710154592990875,\n            \"Y\": 0.2729133367538452\n          },\n          {\n            \"X\": 0.19549845159053802,\n            \"Y\": 0.27299144864082336\n          },\n          {\n            \"X\": 0.19549386203289032,\n            \"Y\": 0.2809898555278778\n          },\n          {\n            \"X\": 0.13709676265716553,\n            \"Y\": 0.28091153502464294\n          }\n        ]\n      },\n      \"Id\": \"a33cc125-7594-4ca2-a440-0a644a4ea9aa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9127426147461,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019203899428248405,\n          \"Height\": 0.007738578598946333,\n          \"Left\": 0.19972427189350128,\n          \"Top\": 0.27317073941230774\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19972868263721466,\n            \"Y\": 0.27317073941230774\n          },\n          {\n            \"X\": 0.21892817318439484,\n            \"Y\": 0.27319642901420593\n          },\n          {\n            \"X\": 0.21892382204532623,\n            \"Y\": 0.28090932965278625\n          },\n          {\n            \"X\": 0.19972427189350128,\n            \"Y\": 0.2808835804462433\n          }\n        ]\n      },\n      \"Id\": \"40ef8b68-a34f-4faf-9c1a-5b9347457b28\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90129089355469,\n      \"Text\": \"been\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02573883906006813,\n          \"Height\": 0.007526252418756485,\n          \"Left\": 0.22308622300624847,\n          \"Top\": 0.2732565999031067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22309042513370514,\n            \"Y\": 0.2732565999031067\n          },\n          {\n            \"X\": 0.2488250732421875,\n            \"Y\": 0.2732910215854645\n          },\n          {\n            \"X\": 0.2488209456205368,\n            \"Y\": 0.2807828485965729\n          },\n          {\n            \"X\": 0.22308622300624847,\n            \"Y\": 0.2807483375072479\n          }\n        ]\n      },\n      \"Id\": \"7fe9d969-e0a6-4ee4-9c45-252bcf32de21\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84232330322266,\n      \"Text\": \"sent\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022602850571274757,\n          \"Height\": 0.00719103217124939,\n          \"Left\": 0.2531411349773407,\n          \"Top\": 0.273693323135376\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2531450688838959,\n            \"Y\": 0.273693323135376\n          },\n          {\n            \"X\": 0.2757439911365509,\n            \"Y\": 0.2737235426902771\n          },\n          {\n            \"X\": 0.2757401168346405,\n            \"Y\": 0.28088435530662537\n          },\n          {\n            \"X\": 0.2531411349773407,\n            \"Y\": 0.2808540463447571\n          }\n        ]\n      },\n      \"Id\": \"e0a5469f-9ea0-4ef9-a06e-2949cc560c5b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94268798828125,\n      \"Text\": \"directly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039418742060661316,\n          \"Height\": 0.009530831128358841,\n          \"Left\": 0.280099093914032,\n          \"Top\": 0.2727962136268616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2801041901111603,\n            \"Y\": 0.2727962136268616\n          },\n          {\n            \"X\": 0.3195178508758545,\n            \"Y\": 0.2728489339351654\n          },\n          {\n            \"X\": 0.3195129334926605,\n            \"Y\": 0.2823270261287689\n          },\n          {\n            \"X\": 0.280099093914032,\n            \"Y\": 0.28227415680885315\n          }\n        ]\n      },\n      \"Id\": \"fd95f8f7-8b03-43f8-a4fb-71e15dc2f48f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77111053466797,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011266854591667652,\n          \"Height\": 0.007172101177275181,\n          \"Left\": 0.3235930800437927,\n          \"Top\": 0.27358654141426086\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3235967755317688,\n            \"Y\": 0.27358654141426086\n          },\n          {\n            \"X\": 0.3348599076271057,\n            \"Y\": 0.27360159158706665\n          },\n          {\n            \"X\": 0.334856241941452,\n            \"Y\": 0.2807586193084717\n          },\n          {\n            \"X\": 0.3235930800437927,\n            \"Y\": 0.2807435393333435\n          }\n        ]\n      },\n      \"Id\": \"40cd9611-53d4-4c1f-b596-15da3994d4fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94764709472656,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.017490863800048828,\n          \"Height\": 0.007799716200679541,\n          \"Left\": 0.3387080729007721,\n          \"Top\": 0.27299249172210693\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33871203660964966,\n            \"Y\": 0.27299249172210693\n          },\n          {\n            \"X\": 0.3561989367008209,\n            \"Y\": 0.2730158865451813\n          },\n          {\n            \"X\": 0.35619503259658813,\n            \"Y\": 0.2807922065258026\n          },\n          {\n            \"X\": 0.3387080729007721,\n            \"Y\": 0.2807687520980835\n          }\n        ]\n      },\n      \"Id\": \"9895eac2-4736-49f0-a2e4-db4b5840de77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73912811279297,\n      \"Text\": \"employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049515388906002045,\n          \"Height\": 0.009102869778871536,\n          \"Left\": 0.36024120450019836,\n          \"Top\": 0.27289554476737976\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3602457344532013,\n            \"Y\": 0.27289554476737976\n          },\n          {\n            \"X\": 0.409756600856781,\n            \"Y\": 0.2729617655277252\n          },\n          {\n            \"X\": 0.4097522795200348,\n            \"Y\": 0.2819983959197998\n          },\n          {\n            \"X\": 0.36024120450019836,\n            \"Y\": 0.28193199634552\n          }\n        ]\n      },\n      \"Id\": \"945c20c4-e1f3-4a04-a1ef-1e029c65dd59\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96919250488281,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020556103438138962,\n          \"Height\": 0.007807382382452488,\n          \"Left\": 0.413510799407959,\n          \"Top\": 0.27284830808639526\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41351452469825745,\n            \"Y\": 0.27284830808639526\n          },\n          {\n            \"X\": 0.43406692147254944,\n            \"Y\": 0.2728757858276367\n          },\n          {\n            \"X\": 0.43406325578689575,\n            \"Y\": 0.2806556820869446\n          },\n          {\n            \"X\": 0.413510799407959,\n            \"Y\": 0.28062811493873596\n          }\n        ]\n      },\n      \"Id\": \"ba37bf13-bc30-423f-9198-44f18f7f95d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86944580078125,\n      \"Text\": \"has\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019480140879750252,\n          \"Height\": 0.00780079560354352,\n          \"Left\": 0.43796539306640625,\n          \"Top\": 0.27279412746429443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43796902894973755,\n            \"Y\": 0.27279412746429443\n          },\n          {\n            \"X\": 0.45744553208351135,\n            \"Y\": 0.2728201746940613\n          },\n          {\n            \"X\": 0.45744195580482483,\n            \"Y\": 0.28059491515159607\n          },\n          {\n            \"X\": 0.43796539306640625,\n            \"Y\": 0.28056880831718445\n          }\n        ]\n      },\n      \"Id\": \"b2f5c81c-2722-4d03-8f94-cb17157846b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96501922607422,\n      \"Text\": \"not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01821494661271572,\n          \"Height\": 0.007176884915679693,\n          \"Left\": 0.46131449937820435,\n          \"Top\": 0.2735208570957184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.461317777633667,\n            \"Y\": 0.2735208570957184\n          },\n          {\n            \"X\": 0.479529470205307,\n            \"Y\": 0.27354520559310913\n          },\n          {\n            \"X\": 0.47952625155448914,\n            \"Y\": 0.2806977331638336\n          },\n          {\n            \"X\": 0.46131449937820435,\n            \"Y\": 0.2806733250617981\n          }\n        ]\n      },\n      \"Id\": \"f9b9fce3-bb47-487d-bee8-6099f3458299\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88750457763672,\n      \"Text\": \"passed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03703347221016884,\n          \"Height\": 0.009220026433467865,\n          \"Left\": 0.4831888973712921,\n          \"Top\": 0.2728513181209564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4831930100917816,\n            \"Y\": 0.2728513181209564\n          },\n          {\n            \"X\": 0.5202223658561707,\n            \"Y\": 0.27290084958076477\n          },\n          {\n            \"X\": 0.5202184319496155,\n            \"Y\": 0.2820713520050049\n          },\n          {\n            \"X\": 0.4831888973712921,\n            \"Y\": 0.2820216715335846\n          }\n        ]\n      },\n      \"Id\": \"f4f0937e-258e-4e9f-aa88-a59f97378678\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97130584716797,\n      \"Text\": \"through\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04270132631063461,\n          \"Height\": 0.009199423715472221,\n          \"Left\": 0.5243555307388306,\n          \"Top\": 0.2728985846042633\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.524359405040741,\n            \"Y\": 0.2728985846042633\n          },\n          {\n            \"X\": 0.5670568346977234,\n            \"Y\": 0.2729557156562805\n          },\n          {\n            \"X\": 0.5670530796051025,\n            \"Y\": 0.28209802508354187\n          },\n          {\n            \"X\": 0.5243555307388306,\n            \"Y\": 0.2820407450199127\n          }\n        ]\n      },\n      \"Id\": \"e5347505-f713-4f74-9795-864107e70b50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92027282714844,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01769288070499897,\n          \"Height\": 0.007640625350177288,\n          \"Left\": 0.5710312128067017,\n          \"Top\": 0.27289488911628723\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.57103431224823,\n            \"Y\": 0.27289488911628723\n          },\n          {\n            \"X\": 0.5887240767478943,\n            \"Y\": 0.27291855216026306\n          },\n          {\n            \"X\": 0.5887210369110107,\n            \"Y\": 0.2805355191230774\n          },\n          {\n            \"X\": 0.5710312128067017,\n            \"Y\": 0.2805117964744568\n          }\n        ]\n      },\n      \"Id\": \"746acce8-6e7b-4aa7-aa9f-b4a6be61d9ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77843475341797,\n      \"Text\": \"hands\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033026400953531265,\n          \"Height\": 0.007733992300927639,\n          \"Left\": 0.5925402045249939,\n          \"Top\": 0.2727994918823242\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5925432443618774,\n            \"Y\": 0.2727994918823242\n          },\n          {\n            \"X\": 0.6255666017532349,\n            \"Y\": 0.2728436589241028\n          },\n          {\n            \"X\": 0.6255636215209961,\n            \"Y\": 0.28053349256515503\n          },\n          {\n            \"X\": 0.5925402045249939,\n            \"Y\": 0.2804892063140869\n          }\n        ]\n      },\n      \"Id\": \"3853797e-1000-475f-9893-e29cd9f7fa0b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77293395996094,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011865111999213696,\n          \"Height\": 0.007802797947078943,\n          \"Left\": 0.6290960907936096,\n          \"Top\": 0.2725416123867035\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6290990710258484,\n            \"Y\": 0.2725416123867035\n          },\n          {\n            \"X\": 0.640961229801178,\n            \"Y\": 0.27255746722221375\n          },\n          {\n            \"X\": 0.6409582495689392,\n            \"Y\": 0.2803443968296051\n          },\n          {\n            \"X\": 0.6290960907936096,\n            \"Y\": 0.28032851219177246\n          }\n        ]\n      },\n      \"Id\": \"02b72b5b-2163-45ab-b1d4-a68ce5c14974\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95132446289062,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01754179783165455,\n          \"Height\": 0.007655702531337738,\n          \"Left\": 0.6444808840751648,\n          \"Top\": 0.2728044092655182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.644483745098114,\n            \"Y\": 0.2728044092655182\n          },\n          {\n            \"X\": 0.6620226502418518,\n            \"Y\": 0.2728278636932373\n          },\n          {\n            \"X\": 0.6620198488235474,\n            \"Y\": 0.28046008944511414\n          },\n          {\n            \"X\": 0.6444808840751648,\n            \"Y\": 0.28043657541275024\n          }\n        ]\n      },\n      \"Id\": \"1f2850ba-49be-43b4-82de-e7f30695c979\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91068267822266,\n      \"Text\": \"applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04925355315208435,\n          \"Height\": 0.00931281317025423,\n          \"Left\": 0.6657730937004089,\n          \"Top\": 0.27273693680763245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6657764911651611,\n            \"Y\": 0.27273693680763245\n          },\n          {\n            \"X\": 0.7150266766548157,\n            \"Y\": 0.27280279994010925\n          },\n          {\n            \"X\": 0.7150234580039978,\n            \"Y\": 0.2820497453212738\n          },\n          {\n            \"X\": 0.6657730937004089,\n            \"Y\": 0.28198370337486267\n          }\n        ]\n      },\n      \"Id\": \"c16806d8-cf3a-48d1-890c-6f1a1a9c0629\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6965560913086,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011759075336158276,\n          \"Height\": 0.006192865781486034,\n          \"Left\": 0.7190409302711487,\n          \"Top\": 0.2740952968597412\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7190430760383606,\n            \"Y\": 0.2740952968597412\n          },\n          {\n            \"X\": 0.7308000326156616,\n            \"Y\": 0.2741110324859619\n          },\n          {\n            \"X\": 0.7307978868484497,\n            \"Y\": 0.2802881598472595\n          },\n          {\n            \"X\": 0.7190409302711487,\n            \"Y\": 0.28027239441871643\n          }\n        ]\n      },\n      \"Id\": \"9c781f3a-f103-4d3f-a559-0b8198e08ee9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96078491210938,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01954737864434719,\n          \"Height\": 0.0076259104534983635,\n          \"Left\": 0.7344003319740295,\n          \"Top\": 0.2741962969303131\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7344028949737549,\n            \"Y\": 0.2741962969303131\n          },\n          {\n            \"X\": 0.7539476752281189,\n            \"Y\": 0.2742224335670471\n          },\n          {\n            \"X\": 0.7539451718330383,\n            \"Y\": 0.28182220458984375\n          },\n          {\n            \"X\": 0.7344003319740295,\n            \"Y\": 0.28179600834846497\n          }\n        ]\n      },\n      \"Id\": \"a9044e1d-b51c-4fe0-94a7-8586f01e3cb7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88433074951172,\n      \"Text\": \"other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028695788234472275,\n          \"Height\": 0.0077790766954422,\n          \"Left\": 0.7580339312553406,\n          \"Top\": 0.2725295126438141\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7580364346504211,\n            \"Y\": 0.2725295126438141\n          },\n          {\n            \"X\": 0.7867296934127808,\n            \"Y\": 0.27256786823272705\n          },\n          {\n            \"X\": 0.786727249622345,\n            \"Y\": 0.2803085744380951\n          },\n          {\n            \"X\": 0.7580339312553406,\n            \"Y\": 0.28027012944221497\n          }\n        ]\n      },\n      \"Id\": \"6f2132d0-2368-433c-a067-08348d16b0e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91883850097656,\n      \"Text\": \"interested\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053113892674446106,\n          \"Height\": 0.007978899404406548,\n          \"Left\": 0.7902034521102905,\n          \"Top\": 0.272368848323822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7902058959007263,\n            \"Y\": 0.272368848323822\n          },\n          {\n            \"X\": 0.8433173298835754,\n            \"Y\": 0.2724398672580719\n          },\n          {\n            \"X\": 0.843315064907074,\n            \"Y\": 0.2803477346897125\n          },\n          {\n            \"X\": 0.7902034521102905,\n            \"Y\": 0.2802765369415283\n          }\n        ]\n      },\n      \"Id\": \"054df87d-7c49-4976-9be8-0ad5ac314528\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.48956298828125,\n      \"Text\": \"party.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03132932633161545,\n          \"Height\": 0.009086454287171364,\n          \"Left\": 0.8471592664718628,\n          \"Top\": 0.27282851934432983\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8471618294715881,\n            \"Y\": 0.27282851934432983\n          },\n          {\n            \"X\": 0.8784885406494141,\n            \"Y\": 0.27287042140960693\n          },\n          {\n            \"X\": 0.8784860968589783,\n            \"Y\": 0.28191497921943665\n          },\n          {\n            \"X\": 0.8471592664718628,\n            \"Y\": 0.28187295794487\n          }\n        ]\n      },\n      \"Id\": \"c8a945a2-ba08-401b-bb6a-f31f2cf4b1a4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.28520965576172,\n      \"Text\": \"3.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009811324998736382,\n          \"Height\": 0.007714585866779089,\n          \"Left\": 0.042511165142059326,\n          \"Top\": 0.28826242685317993\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04251609742641449,\n            \"Y\": 0.28826242685317993\n          },\n          {\n            \"X\": 0.05232249200344086,\n            \"Y\": 0.2882755994796753\n          },\n          {\n            \"X\": 0.05231759324669838,\n            \"Y\": 0.29597702622413635\n          },\n          {\n            \"X\": 0.042511165142059326,\n            \"Y\": 0.2959637939929962\n          }\n        ]\n      },\n      \"Id\": \"0c48f286-51a3-47be-b436-19631be4177c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93949127197266,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05063328146934509,\n          \"Height\": 0.00902058556675911,\n          \"Left\": 0.05813203379511833,\n          \"Top\": 0.28830474615097046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05813770368695259,\n            \"Y\": 0.28830474615097046\n          },\n          {\n            \"X\": 0.10876531153917313,\n            \"Y\": 0.28837281465530396\n          },\n          {\n            \"X\": 0.10875984281301498,\n            \"Y\": 0.29732534289360046\n          },\n          {\n            \"X\": 0.05813203379511833,\n            \"Y\": 0.29725706577301025\n          }\n        ]\n      },\n      \"Id\": \"3820107a-2e8c-4be4-b6b5-c4b62139e125\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91997528076172,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01171719841659069,\n          \"Height\": 0.00792404543608427,\n          \"Left\": 0.11319297552108765,\n          \"Top\": 0.287963330745697\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11319779604673386,\n            \"Y\": 0.287963330745697\n          },\n          {\n            \"X\": 0.12491017580032349,\n            \"Y\": 0.2879790663719177\n          },\n          {\n            \"X\": 0.12490539997816086,\n            \"Y\": 0.29588738083839417\n          },\n          {\n            \"X\": 0.11319297552108765,\n            \"Y\": 0.2958715856075287\n          }\n        ]\n      },\n      \"Id\": \"6b80a76e-7db5-4a71-91a6-cb60714a9d09\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8581771850586,\n      \"Text\": \"Lender\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036522991955280304,\n          \"Height\": 0.007576841861009598,\n          \"Left\": 0.12882527709007263,\n          \"Top\": 0.28822943568229675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12882980704307556,\n            \"Y\": 0.28822943568229675\n          },\n          {\n            \"X\": 0.16534826159477234,\n            \"Y\": 0.2882785499095917\n          },\n          {\n            \"X\": 0.16534385085105896,\n            \"Y\": 0.29580628871917725\n          },\n          {\n            \"X\": 0.12882527709007263,\n            \"Y\": 0.29575708508491516\n          }\n        ]\n      },\n      \"Id\": \"65237d8c-49e0-4e94-b71a-4fab201905dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6105728149414,\n      \"Text\": \"4.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010402891784906387,\n          \"Height\": 0.007880720309913158,\n          \"Left\": 0.3735886216163635,\n          \"Top\": 0.28782251477241516\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3735925257205963,\n            \"Y\": 0.28782251477241516\n          },\n          {\n            \"X\": 0.3839915096759796,\n            \"Y\": 0.287836492061615\n          },\n          {\n            \"X\": 0.3839876651763916,\n            \"Y\": 0.295703262090683\n          },\n          {\n            \"X\": 0.3735886216163635,\n            \"Y\": 0.2956892251968384\n          }\n        ]\n      },\n      \"Id\": \"94857599-41ef-4312-9551-bcf3ddc454e3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81208801269531,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024015117436647415,\n          \"Height\": 0.008000852540135384,\n          \"Left\": 0.3882840573787689,\n          \"Top\": 0.28770309686660767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3882879614830017,\n            \"Y\": 0.28770309686660767\n          },\n          {\n            \"X\": 0.41229918599128723,\n            \"Y\": 0.28773537278175354\n          },\n          {\n            \"X\": 0.4122953712940216,\n            \"Y\": 0.2957039475440979\n          },\n          {\n            \"X\": 0.3882840573787689,\n            \"Y\": 0.29567161202430725\n          }\n        ]\n      },\n      \"Id\": \"4a431f09-7906-43dc-b2a9-27f956514294\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7610092163086,\n      \"Text\": \"5.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010386208072304726,\n          \"Height\": 0.008049813099205494,\n          \"Left\": 0.6277146935462952,\n          \"Top\": 0.28735560178756714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6277177333831787,\n            \"Y\": 0.28735560178756714\n          },\n          {\n            \"X\": 0.6381008625030518,\n            \"Y\": 0.2873695492744446\n          },\n          {\n            \"X\": 0.6380978226661682,\n            \"Y\": 0.29540538787841797\n          },\n          {\n            \"X\": 0.6277146935462952,\n            \"Y\": 0.29539141058921814\n          }\n        ]\n      },\n      \"Id\": \"228aa116-1323-4596-9c14-fd22c80a74ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90388488769531,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025643587112426758,\n          \"Height\": 0.007862171158194542,\n          \"Left\": 0.6431487798690796,\n          \"Top\": 0.2875966727733612\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6431517601013184,\n            \"Y\": 0.2875966727733612\n          },\n          {\n            \"X\": 0.6687923669815063,\n            \"Y\": 0.2876311242580414\n          },\n          {\n            \"X\": 0.6687895059585571,\n            \"Y\": 0.2954588532447815\n          },\n          {\n            \"X\": 0.6431487798690796,\n            \"Y\": 0.29542431235313416\n          }\n        ]\n      },\n      \"Id\": \"e4fe2148-19e0-40f8-b4ec-1ccf54b8f4d6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7845687866211,\n      \"Text\": \"6.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010255728848278522,\n          \"Height\": 0.007618646137416363,\n          \"Left\": 0.7451708316802979,\n          \"Top\": 0.28762608766555786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7451733350753784,\n            \"Y\": 0.28762608766555786\n          },\n          {\n            \"X\": 0.7554265856742859,\n            \"Y\": 0.287639856338501\n          },\n          {\n            \"X\": 0.7554240822792053,\n            \"Y\": 0.2952447235584259\n          },\n          {\n            \"X\": 0.7451708316802979,\n            \"Y\": 0.295230895280838\n          }\n        ]\n      },\n      \"Id\": \"72613989-b9e2-4290-b548-5aaeb65d84d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83684539794922,\n      \"Text\": \"Lender's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04644474387168884,\n          \"Height\": 0.008067172951996326,\n          \"Left\": 0.7603694200515747,\n          \"Top\": 0.28746306896209717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7603720426559448,\n            \"Y\": 0.28746306896209717\n          },\n          {\n            \"X\": 0.8068141937255859,\n            \"Y\": 0.287525475025177\n          },\n          {\n            \"X\": 0.8068117499351501,\n            \"Y\": 0.2955302298069\n          },\n          {\n            \"X\": 0.7603694200515747,\n            \"Y\": 0.29546767473220825\n          }\n        ]\n      },\n      \"Id\": \"f04a570f-9dae-4cd0-a23c-32a3766830b9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97702026367188,\n      \"Text\": \"Number\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04314453527331352,\n          \"Height\": 0.007624496705830097,\n          \"Left\": 0.8105552792549133,\n          \"Top\": 0.28767064213752747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8105576038360596,\n            \"Y\": 0.28767064213752747\n          },\n          {\n            \"X\": 0.853699803352356,\n            \"Y\": 0.28772860765457153\n          },\n          {\n            \"X\": 0.853697657585144,\n            \"Y\": 0.2952951192855835\n          },\n          {\n            \"X\": 0.8105552792549133,\n            \"Y\": 0.2952370047569275\n          }\n        ]\n      },\n      \"Id\": \"384370f6-5582-40e9-8a90-f5b9f501822d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.5025405883789,\n      \"Text\": \"(Optional)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051935892552137375,\n          \"Height\": 0.009004163555800915,\n          \"Left\": 0.7606687545776367,\n          \"Top\": 0.2976815700531006\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7606716156005859,\n            \"Y\": 0.2976815700531006\n          },\n          {\n            \"X\": 0.8126046061515808,\n            \"Y\": 0.2977515757083893\n          },\n          {\n            \"X\": 0.8126019239425659,\n            \"Y\": 0.3066857159137726\n          },\n          {\n            \"X\": 0.7606687545776367,\n            \"Y\": 0.3066155016422272\n          }\n        ]\n      },\n      \"Id\": \"90461fa2-3ff7-44c8-ace5-b405213753c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.27974700927734,\n      \"Text\": \"Carlos\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06755624711513519,\n          \"Height\": 0.01579713635146618,\n          \"Left\": 0.12739358842372894,\n          \"Top\": 0.3002519905567169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12740306556224823,\n            \"Y\": 0.3002519905567169\n          },\n          {\n            \"X\": 0.19494983553886414,\n            \"Y\": 0.3003431260585785\n          },\n          {\n            \"X\": 0.19494082033634186,\n            \"Y\": 0.31604912877082825\n          },\n          {\n            \"X\": 0.12739358842372894,\n            \"Y\": 0.3159574866294861\n          }\n        ]\n      },\n      \"Id\": \"7ad2c8d8-d598-48e7-b987-0426eeea9d1a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.06465148925781,\n      \"Text\": \"Salazar\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0767909437417984,\n          \"Height\": 0.025797929614782333,\n          \"Left\": 0.20015689730644226,\n          \"Top\": 0.3019595444202423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2001715898513794,\n            \"Y\": 0.3019595444202423\n          },\n          {\n            \"X\": 0.27694785594940186,\n            \"Y\": 0.3020632266998291\n          },\n          {\n            \"X\": 0.27693402767181396,\n            \"Y\": 0.32775747776031494\n          },\n          {\n            \"X\": 0.20015689730644226,\n            \"Y\": 0.3276529610157013\n          }\n        ]\n      },\n      \"Id\": \"230a526f-7746-4757-b95e-0731be4d1901\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9723892211914,\n      \"Text\": \"Project\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05089963227510452,\n          \"Height\": 0.012831573374569416,\n          \"Left\": 0.40833601355552673,\n          \"Top\": 0.30521929264068604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4083421528339386,\n            \"Y\": 0.30521929264068604\n          },\n          {\n            \"X\": 0.45923563838005066,\n            \"Y\": 0.30528807640075684\n          },\n          {\n            \"X\": 0.45922979712486267,\n            \"Y\": 0.3180508613586426\n          },\n          {\n            \"X\": 0.40833601355552673,\n            \"Y\": 0.3179818093776703\n          }\n        ]\n      },\n      \"Id\": \"75b13c19-3026-481e-a40b-d91b36c63ca1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95911407470703,\n      \"Text\": \"Manager\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06453146785497665,\n          \"Height\": 0.012805263511836529,\n          \"Left\": 0.4635145366191864,\n          \"Top\": 0.30525192618370056\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.463520348072052,\n            \"Y\": 0.30525192618370056\n          },\n          {\n            \"X\": 0.5280460119247437,\n            \"Y\": 0.30533915758132935\n          },\n          {\n            \"X\": 0.5280405879020691,\n            \"Y\": 0.31805720925331116\n          },\n          {\n            \"X\": 0.4635145366191864,\n            \"Y\": 0.3179696202278137\n          }\n        ]\n      },\n      \"Id\": \"9e9f0271-b083-4911-bd88-806f0aef7107\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8945541381836,\n      \"Text\": \"12/12/2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08076254278421402,\n          \"Height\": 0.010538050904870033,\n          \"Left\": 0.6365628242492676,\n          \"Top\": 0.30779242515563965\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6365668177604675,\n            \"Y\": 0.30779242515563965\n          },\n          {\n            \"X\": 0.7173253893852234,\n            \"Y\": 0.30790165066719055\n          },\n          {\n            \"X\": 0.7173217535018921,\n            \"Y\": 0.31833046674728394\n          },\n          {\n            \"X\": 0.6365628242492676,\n            \"Y\": 0.3182208836078644\n          }\n        ]\n      },\n      \"Id\": \"a7ed2fee-ba02-4969-a7d9-949a2e6834eb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78538513183594,\n      \"Text\": \"5555-5555-5555\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11950211971998215,\n          \"Height\": 0.0104298684746027,\n          \"Left\": 0.761132538318634,\n          \"Top\": 0.3135582208633423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7611358761787415,\n            \"Y\": 0.3135582208633423\n          },\n          {\n            \"X\": 0.8806346654891968,\n            \"Y\": 0.31372013688087463\n          },\n          {\n            \"X\": 0.8806318640708923,\n            \"Y\": 0.32398808002471924\n          },\n          {\n            \"X\": 0.761132538318634,\n            \"Y\": 0.3238256573677063\n          }\n        ]\n      },\n      \"Id\": \"61704f3e-ecaa-4d6d-8f12-a21746e38429\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.3544692993164,\n      \"Text\": \"I\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.003286994993686676,\n          \"Height\": 0.00715352687984705,\n          \"Left\": 0.042567044496536255,\n          \"Top\": 0.3339756429195404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042571622878313065,\n            \"Y\": 0.3339756429195404\n          },\n          {\n            \"X\": 0.04585403949022293,\n            \"Y\": 0.33398011326789856\n          },\n          {\n            \"X\": 0.04584947228431702,\n            \"Y\": 0.3411291539669037\n          },\n          {\n            \"X\": 0.042567044496536255,\n            \"Y\": 0.34112465381622314\n          }\n        ]\n      },\n      \"Id\": \"1f92320e-8ab5-41a7-bca6-db7f68aef79c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96820068359375,\n      \"Text\": \"have\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02566155046224594,\n          \"Height\": 0.007580621168017387,\n          \"Left\": 0.05041402578353882,\n          \"Top\": 0.33392134308815\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.050418827682733536,\n            \"Y\": 0.33392134308815\n          },\n          {\n            \"X\": 0.07607557624578476,\n            \"Y\": 0.3339563310146332\n          },\n          {\n            \"X\": 0.07607085257768631,\n            \"Y\": 0.34150195121765137\n          },\n          {\n            \"X\": 0.05041402578353882,\n            \"Y\": 0.34146687388420105\n          }\n        ]\n      },\n      \"Id\": \"5bda93c0-9c8b-4ad5-8ab0-1bd47c174eff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91361236572266,\n      \"Text\": \"applied\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03806542232632637,\n          \"Height\": 0.009206273593008518,\n          \"Left\": 0.08011570572853088,\n          \"Top\": 0.33375847339630127\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08012141287326813,\n            \"Y\": 0.33375847339630127\n          },\n          {\n            \"X\": 0.11818112432956696,\n            \"Y\": 0.33381038904190063\n          },\n          {\n            \"X\": 0.11817556619644165,\n            \"Y\": 0.3429647386074066\n          },\n          {\n            \"X\": 0.08011570572853088,\n            \"Y\": 0.3429126739501953\n          }\n        ]\n      },\n      \"Id\": \"aa04333b-92e2-4e9d-929a-409f734e6217\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83377075195312,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015186124481260777,\n          \"Height\": 0.007552717346698046,\n          \"Left\": 0.1224670261144638,\n          \"Top\": 0.33361977338790894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12247158586978912,\n            \"Y\": 0.33361977338790894\n          },\n          {\n            \"X\": 0.1376531571149826,\n            \"Y\": 0.3336404860019684\n          },\n          {\n            \"X\": 0.13764864206314087,\n            \"Y\": 0.3411724865436554\n          },\n          {\n            \"X\": 0.1224670261144638,\n            \"Y\": 0.34115171432495117\n          }\n        ]\n      },\n      \"Id\": \"6f672d22-c4d3-4a95-9280-d9c6f3e5a40a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.94364166259766,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006722664926201105,\n          \"Height\": 0.006041751708835363,\n          \"Left\": 0.14154623448848724,\n          \"Top\": 0.3352567255496979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14154982566833496,\n            \"Y\": 0.3352567255496979\n          },\n          {\n            \"X\": 0.1482688933610916,\n            \"Y\": 0.3352658748626709\n          },\n          {\n            \"X\": 0.1482653170824051,\n            \"Y\": 0.3412984609603882\n          },\n          {\n            \"X\": 0.14154623448848724,\n            \"Y\": 0.3412892818450928\n          }\n        ]\n      },\n      \"Id\": \"3e25727e-18d1-46c8-b55d-6f0bb31a8d44\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90838623046875,\n      \"Text\": \"mortgage\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051134638488292694,\n          \"Height\": 0.009041138924658298,\n          \"Left\": 0.15239016711711884,\n          \"Top\": 0.3344026505947113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15239548683166504,\n            \"Y\": 0.3344026505947113\n          },\n          {\n            \"X\": 0.20352481305599213,\n            \"Y\": 0.3344724178314209\n          },\n          {\n            \"X\": 0.20351970195770264,\n            \"Y\": 0.34344378113746643\n          },\n          {\n            \"X\": 0.15239016711711884,\n            \"Y\": 0.3433738350868225\n          }\n        ]\n      },\n      \"Id\": \"5b445502-206e-4a08-b3fb-05a2feebb12d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94940948486328,\n      \"Text\": \"loan\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022666797041893005,\n          \"Height\": 0.007774165365844965,\n          \"Left\": 0.20787127315998077,\n          \"Top\": 0.33356744050979614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20787566900253296,\n            \"Y\": 0.33356744050979614\n          },\n          {\n            \"X\": 0.23053807020187378,\n            \"Y\": 0.33359837532043457\n          },\n          {\n            \"X\": 0.23053374886512756,\n            \"Y\": 0.34134161472320557\n          },\n          {\n            \"X\": 0.20787127315998077,\n            \"Y\": 0.34131062030792236\n          }\n        ]\n      },\n      \"Id\": \"ced26207-36b4-44ca-83fe-cf5ba4968e71\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97827911376953,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0201511699706316,\n          \"Height\": 0.007565309759229422,\n          \"Left\": 0.23468047380447388,\n          \"Top\": 0.3335559368133545\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23468466103076935,\n            \"Y\": 0.3335559368133545\n          },\n          {\n            \"X\": 0.2548316419124603,\n            \"Y\": 0.33358341455459595\n          },\n          {\n            \"X\": 0.2548275291919708,\n            \"Y\": 0.34112125635147095\n          },\n          {\n            \"X\": 0.23468047380447388,\n            \"Y\": 0.3410937190055847\n          }\n        ]\n      },\n      \"Id\": \"d7ad10d7-15ae-4dab-9fdf-4200315eefb8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90816497802734,\n      \"Text\": \"stated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03415828198194504,\n          \"Height\": 0.007725256960839033,\n          \"Left\": 0.25851964950561523,\n          \"Top\": 0.3334387242794037\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2585238218307495,\n            \"Y\": 0.3334387242794037\n          },\n          {\n            \"X\": 0.29267793893814087,\n            \"Y\": 0.33348530530929565\n          },\n          {\n            \"X\": 0.29267385601997375,\n            \"Y\": 0.3411639928817749\n          },\n          {\n            \"X\": 0.25851964950561523,\n            \"Y\": 0.3411172926425934\n          }\n        ]\n      },\n      \"Id\": \"3150286d-3a52-4bcb-bbda-03c00288370b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9412612915039,\n      \"Text\": \"that\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02165353111922741,\n          \"Height\": 0.00753796799108386,\n          \"Left\": 0.2959855794906616,\n          \"Top\": 0.3334742784500122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2959895431995392,\n            \"Y\": 0.3334742784500122\n          },\n          {\n            \"X\": 0.3176391124725342,\n            \"Y\": 0.3335038125514984\n          },\n          {\n            \"X\": 0.3176352083683014,\n            \"Y\": 0.34101226925849915\n          },\n          {\n            \"X\": 0.2959855794906616,\n            \"Y\": 0.34098267555236816\n          }\n        ]\n      },\n      \"Id\": \"991fb5e9-0cca-4185-b2b6-5cec5159ade4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87731170654297,\n      \"Text\": \"am\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016739362850785255,\n          \"Height\": 0.0060411132872104645,\n          \"Left\": 0.32957953214645386,\n          \"Top\": 0.33513379096984863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3295826315879822,\n            \"Y\": 0.33513379096984863\n          },\n          {\n            \"X\": 0.3463188707828522,\n            \"Y\": 0.3351566195487976\n          },\n          {\n            \"X\": 0.34631583094596863,\n            \"Y\": 0.3411749005317688\n          },\n          {\n            \"X\": 0.32957953214645386,\n            \"Y\": 0.34115201234817505\n          }\n        ]\n      },\n      \"Id\": \"6c17f767-5e7c-4f42-87ab-d064483c0904\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83496856689453,\n      \"Text\": \"now\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02413112111389637,\n          \"Height\": 0.006227139849215746,\n          \"Left\": 0.3504733741283417,\n          \"Top\": 0.3350602388381958\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35047653317451477,\n            \"Y\": 0.3350602388381958\n          },\n          {\n            \"X\": 0.3746045231819153,\n            \"Y\": 0.3350931406021118\n          },\n          {\n            \"X\": 0.37460145354270935,\n            \"Y\": 0.34128737449645996\n          },\n          {\n            \"X\": 0.3504733741283417,\n            \"Y\": 0.3412543833255768\n          }\n        ]\n      },\n      \"Id\": \"93038e96-fd30-4a08-bd6c-237ef2c45b90\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.32936096191406,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0115500558167696,\n          \"Height\": 0.006050728727132082,\n          \"Left\": 0.3781837821006775,\n          \"Top\": 0.33507484197616577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37818673253059387,\n            \"Y\": 0.33507484197616577\n          },\n          {\n            \"X\": 0.38973382115364075,\n            \"Y\": 0.33509060740470886\n          },\n          {\n            \"X\": 0.38973087072372437,\n            \"Y\": 0.34112557768821716\n          },\n          {\n            \"X\": 0.3781837821006775,\n            \"Y\": 0.3411097824573517\n          }\n        ]\n      },\n      \"Id\": \"62cf6907-4a80-468b-baad-0e290595dfb2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92082214355469,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022113118320703506,\n          \"Height\": 0.006176127586513758,\n          \"Left\": 0.39320284128189087,\n          \"Top\": 0.3350396454334259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39320582151412964,\n            \"Y\": 0.3350396454334259\n          },\n          {\n            \"X\": 0.4153159558773041,\n            \"Y\": 0.33506980538368225\n          },\n          {\n            \"X\": 0.4153130352497101,\n            \"Y\": 0.34121575951576233\n          },\n          {\n            \"X\": 0.39320284128189087,\n            \"Y\": 0.3411855399608612\n          }\n        ]\n      },\n      \"Id\": \"c4824603-941f-431b-a82d-8be21774e5f9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63047790527344,\n      \"Text\": \"formerly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04573370888829231,\n          \"Height\": 0.009337382391095161,\n          \"Left\": 0.4188213646411896,\n          \"Top\": 0.3332863748073578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41882577538490295,\n            \"Y\": 0.3332863748073578\n          },\n          {\n            \"X\": 0.4645550847053528,\n            \"Y\": 0.33334875106811523\n          },\n          {\n            \"X\": 0.46455085277557373,\n            \"Y\": 0.342623770236969\n          },\n          {\n            \"X\": 0.4188213646411896,\n            \"Y\": 0.3425612151622772\n          }\n        ]\n      },\n      \"Id\": \"dc6436d5-36ee-467b-a453-21b33ded150e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9218978881836,\n      \"Text\": \"employed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05198773369193077,\n          \"Height\": 0.00919270608574152,\n          \"Left\": 0.46796920895576477,\n          \"Top\": 0.3332763612270355\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46797335147857666,\n            \"Y\": 0.3332763612270355\n          },\n          {\n            \"X\": 0.5199569463729858,\n            \"Y\": 0.33334723114967346\n          },\n          {\n            \"X\": 0.5199530124664307,\n            \"Y\": 0.34246906638145447\n          },\n          {\n            \"X\": 0.46796920895576477,\n            \"Y\": 0.3423979580402374\n          }\n        ]\n      },\n      \"Id\": \"bc88928b-d89e-49d3-8f8c-b42d1cb453c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93909454345703,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014114180579781532,\n          \"Height\": 0.009133338928222656,\n          \"Left\": 0.5239569544792175,\n          \"Top\": 0.3330688774585724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5239608883857727,\n            \"Y\": 0.3330688774585724\n          },\n          {\n            \"X\": 0.5380711555480957,\n            \"Y\": 0.33308812975883484\n          },\n          {\n            \"X\": 0.5380672812461853,\n            \"Y\": 0.34220221638679504\n          },\n          {\n            \"X\": 0.5239569544792175,\n            \"Y\": 0.3421829342842102\n          }\n        ]\n      },\n      \"Id\": \"09646fff-713f-4c51-9e23-6b0775642ac1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.99502563476562,\n      \"Text\": \"you.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02383614331483841,\n          \"Height\": 0.007377041969448328,\n          \"Left\": 0.5415646433830261,\n          \"Top\": 0.3351931869983673\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5415677428245544,\n            \"Y\": 0.3351931869983673\n          },\n          {\n            \"X\": 0.5654007792472839,\n            \"Y\": 0.3352257013320923\n          },\n          {\n            \"X\": 0.5653977394104004,\n            \"Y\": 0.3425702154636383\n          },\n          {\n            \"X\": 0.5415646433830261,\n            \"Y\": 0.34253761172294617\n          }\n        ]\n      },\n      \"Id\": \"45e1b9a2-d489-4b13-b384-f934d9da0d0f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6141586303711,\n      \"Text\": \"My\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01738937944173813,\n          \"Height\": 0.009008251130580902,\n          \"Left\": 0.5700721144676208,\n          \"Top\": 0.3332850933074951\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5700757503509521,\n            \"Y\": 0.3332850933074951\n          },\n          {\n            \"X\": 0.5874614715576172,\n            \"Y\": 0.33330878615379333\n          },\n          {\n            \"X\": 0.5874578356742859,\n            \"Y\": 0.3422933518886566\n          },\n          {\n            \"X\": 0.5700721144676208,\n            \"Y\": 0.34226956963539124\n          }\n        ]\n      },\n      \"Id\": \"e280db9a-3496-4299-a505-33aa2a5e30b5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92738342285156,\n      \"Text\": \"signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049665261059999466,\n          \"Height\": 0.008796962909400463,\n          \"Left\": 0.5910395383834839,\n          \"Top\": 0.333403080701828\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5910430550575256,\n            \"Y\": 0.333403080701828\n          },\n          {\n            \"X\": 0.6407048106193542,\n            \"Y\": 0.33347082138061523\n          },\n          {\n            \"X\": 0.6407014727592468,\n            \"Y\": 0.34220004081726074\n          },\n          {\n            \"X\": 0.5910395383834839,\n            \"Y\": 0.3421321511268616\n          }\n        ]\n      },\n      \"Id\": \"efaecf39-0488-4d1a-8568-db9a6eaee6f0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88463592529297,\n      \"Text\": \"below\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03289559483528137,\n          \"Height\": 0.007483693305402994,\n          \"Left\": 0.6448685526847839,\n          \"Top\": 0.33332589268684387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6448713541030884,\n            \"Y\": 0.33332589268684387\n          },\n          {\n            \"X\": 0.6777641773223877,\n            \"Y\": 0.33337074518203735\n          },\n          {\n            \"X\": 0.6777614951133728,\n            \"Y\": 0.34080958366394043\n          },\n          {\n            \"X\": 0.6448685526847839,\n            \"Y\": 0.3407646119594574\n          }\n        ]\n      },\n      \"Id\": \"4627b08a-7f35-44c9-95cd-ece7ec750d50\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88784790039062,\n      \"Text\": \"authorizes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05546844005584717,\n          \"Height\": 0.007830077782273293,\n          \"Left\": 0.6813763976097107,\n          \"Top\": 0.33323875069618225\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6813791990280151,\n            \"Y\": 0.33323875069618225\n          },\n          {\n            \"X\": 0.7368448376655579,\n            \"Y\": 0.33331435918807983\n          },\n          {\n            \"X\": 0.7368422150611877,\n            \"Y\": 0.341068834066391\n          },\n          {\n            \"X\": 0.6813763976097107,\n            \"Y\": 0.3409929871559143\n          }\n        ]\n      },\n      \"Id\": \"e1b1e127-feff-4fac-9075-83da919e6dd4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75147247314453,\n      \"Text\": \"verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05926571786403656,\n          \"Height\": 0.008088527247309685,\n          \"Left\": 0.7404537796974182,\n          \"Top\": 0.3328304588794708\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7404564619064331,\n            \"Y\": 0.3328304588794708\n          },\n          {\n            \"X\": 0.7997194528579712,\n            \"Y\": 0.33291125297546387\n          },\n          {\n            \"X\": 0.7997170090675354,\n            \"Y\": 0.34091898798942566\n          },\n          {\n            \"X\": 0.7404537796974182,\n            \"Y\": 0.3408379852771759\n          }\n        ]\n      },\n      \"Id\": \"ecafdbf8-3c68-4baa-a891-04e0e5ffc3ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89915466308594,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011770387180149555,\n          \"Height\": 0.008022014982998371,\n          \"Left\": 0.8038691878318787,\n          \"Top\": 0.33281025290489197\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8038716912269592,\n            \"Y\": 0.33281025290489197\n          },\n          {\n            \"X\": 0.8156396150588989,\n            \"Y\": 0.33282628655433655\n          },\n          {\n            \"X\": 0.8156371712684631,\n            \"Y\": 0.34083226323127747\n          },\n          {\n            \"X\": 0.8038691878318787,\n            \"Y\": 0.3408161997795105\n          }\n        ]\n      },\n      \"Id\": \"fb5d0927-132e-47fe-b64e-f3a4bbe1abd9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91532897949219,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01967678591609001,\n          \"Height\": 0.007871853187680244,\n          \"Left\": 0.8190602660179138,\n          \"Top\": 0.3328738212585449\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8190626502037048,\n            \"Y\": 0.3328738212585449\n          },\n          {\n            \"X\": 0.8387370705604553,\n            \"Y\": 0.33290064334869385\n          },\n          {\n            \"X\": 0.8387348055839539,\n            \"Y\": 0.3407456874847412\n          },\n          {\n            \"X\": 0.8190602660179138,\n            \"Y\": 0.3407187759876251\n          }\n        ]\n      },\n      \"Id\": \"a137f8d6-b489-4581-ba7e-6a6c08b90a1e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 64.26202392578125,\n      \"Text\": \"information\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0651538148522377,\n          \"Height\": 0.008649966679513454,\n          \"Left\": 0.8423905968666077,\n          \"Top\": 0.33232319355010986\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8423931002616882,\n            \"Y\": 0.33232319355010986\n          },\n          {\n            \"X\": 0.9075443744659424,\n            \"Y\": 0.3324120044708252\n          },\n          {\n            \"X\": 0.9075421690940857,\n            \"Y\": 0.3409731686115265\n          },\n          {\n            \"X\": 0.8423905968666077,\n            \"Y\": 0.34088411927223206\n          }\n        ]\n      },\n      \"Id\": \"5cff9bfc-c19c-45c7-9303-91b309b55aab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.67758178710938,\n      \"Text\": \"7.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0095162158831954,\n          \"Height\": 0.00788983516395092,\n          \"Left\": 0.042363401502370834,\n          \"Top\": 0.3485995829105377\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04236844554543495,\n            \"Y\": 0.3485995829105377\n          },\n          {\n            \"X\": 0.05187961831688881,\n            \"Y\": 0.34861260652542114\n          },\n          {\n            \"X\": 0.05187460407614708,\n            \"Y\": 0.3564894199371338\n          },\n          {\n            \"X\": 0.042363401502370834,\n            \"Y\": 0.3564763367176056\n          }\n        ]\n      },\n      \"Id\": \"dcf74957-62e4-49e2-816b-a712c05b6b7c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95248413085938,\n      \"Text\": \"Name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031289804726839066,\n          \"Height\": 0.007425699848681688,\n          \"Left\": 0.0571916289627552,\n          \"Top\": 0.34899845719337463\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05719630792737007,\n            \"Y\": 0.34899845719337463\n          },\n          {\n            \"X\": 0.08848143368959427,\n            \"Y\": 0.3490413427352905\n          },\n          {\n            \"X\": 0.08847685158252716,\n            \"Y\": 0.35642415285110474\n          },\n          {\n            \"X\": 0.0571916289627552,\n            \"Y\": 0.3563811779022217\n          }\n        ]\n      },\n      \"Id\": \"a263c642-45c8-4929-96c2-be70006aa14c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9569320678711,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019714893773198128,\n          \"Height\": 0.007298792712390423,\n          \"Left\": 0.09281884133815765,\n          \"Top\": 0.34914082288742065\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0928233414888382,\n            \"Y\": 0.34914082288742065\n          },\n          {\n            \"X\": 0.11253373324871063,\n            \"Y\": 0.3491678535938263\n          },\n          {\n            \"X\": 0.11252930015325546,\n            \"Y\": 0.35643962025642395\n          },\n          {\n            \"X\": 0.09281884133815765,\n            \"Y\": 0.35641252994537354\n          }\n        ]\n      },\n      \"Id\": \"c13d83db-1a9b-4c56-a7b4-ccc918f9e6ea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85393524169922,\n      \"Text\": \"Address\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04412547126412392,\n          \"Height\": 0.008108590729534626,\n          \"Left\": 0.11675069481134415,\n          \"Top\": 0.3486021161079407\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11675558239221573,\n            \"Y\": 0.3486021161079407\n          },\n          {\n            \"X\": 0.16087615489959717,\n            \"Y\": 0.3486625850200653\n          },\n          {\n            \"X\": 0.16087143123149872,\n            \"Y\": 0.3567107021808624\n          },\n          {\n            \"X\": 0.11675069481134415,\n            \"Y\": 0.35665008425712585\n          }\n        ]\n      },\n      \"Id\": \"911e30b6-3840-469c-8413-a8a37c253b1f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.58793640136719,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011396627873182297,\n          \"Height\": 0.007679552771151066,\n          \"Left\": 0.16497713327407837,\n          \"Top\": 0.348701536655426\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16498161852359772,\n            \"Y\": 0.348701536655426\n          },\n          {\n            \"X\": 0.17637374997138977,\n            \"Y\": 0.3487171530723572\n          },\n          {\n            \"X\": 0.1763692945241928,\n            \"Y\": 0.3563810884952545\n          },\n          {\n            \"X\": 0.16497713327407837,\n            \"Y\": 0.356365442276001\n          }\n        ]\n      },\n      \"Id\": \"8e5a1fd0-037c-4832-8740-fcea20cfb066\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94140625,\n      \"Text\": \"Applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05152880772948265,\n          \"Height\": 0.009300194680690765,\n          \"Left\": 0.18024517595767975,\n          \"Top\": 0.34871774911880493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18025052547454834,\n            \"Y\": 0.34871774911880493\n          },\n          {\n            \"X\": 0.2317739874124527,\n            \"Y\": 0.34878838062286377\n          },\n          {\n            \"X\": 0.23176883161067963,\n            \"Y\": 0.3580179512500763\n          },\n          {\n            \"X\": 0.18024517595767975,\n            \"Y\": 0.35794711112976074\n          }\n        ]\n      },\n      \"Id\": \"79e45cb8-dab0-47ec-b42a-d008f2cfcd6a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.36766052246094,\n      \"Text\": \"(include\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04233291745185852,\n          \"Height\": 0.008679982274770737,\n          \"Left\": 0.23589742183685303,\n          \"Top\": 0.34844425320625305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23590222001075745,\n            \"Y\": 0.34844425320625305\n          },\n          {\n            \"X\": 0.27823033928871155,\n            \"Y\": 0.3485022783279419\n          },\n          {\n            \"X\": 0.27822571992874146,\n            \"Y\": 0.3571242392063141\n          },\n          {\n            \"X\": 0.23589742183685303,\n            \"Y\": 0.3570660650730133\n          }\n        ]\n      },\n      \"Id\": \"ebf8dfef-d807-470d-9936-39224e48135e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95569610595703,\n      \"Text\": \"employee\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051390357315540314,\n          \"Height\": 0.009146405383944511,\n          \"Left\": 0.2823612093925476,\n          \"Top\": 0.3486519753932953\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2823660969734192,\n            \"Y\": 0.3486519753932953\n          },\n          {\n            \"X\": 0.3337515890598297,\n            \"Y\": 0.3487223982810974\n          },\n          {\n            \"X\": 0.33374693989753723,\n            \"Y\": 0.35779836773872375\n          },\n          {\n            \"X\": 0.2823612093925476,\n            \"Y\": 0.3577277362346649\n          }\n        ]\n      },\n      \"Id\": \"a8d85dd3-48f4-4b28-b749-70947bbeb83c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57682800292969,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011928540654480457,\n          \"Height\": 0.0062746768817305565,\n          \"Left\": 0.3378901183605194,\n          \"Top\": 0.34991031885147095\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3378933072090149,\n            \"Y\": 0.34991031885147095\n          },\n          {\n            \"X\": 0.3498186469078064,\n            \"Y\": 0.3499266505241394\n          },\n          {\n            \"X\": 0.3498154878616333,\n            \"Y\": 0.3561849892139435\n          },\n          {\n            \"X\": 0.3378901183605194,\n            \"Y\": 0.35616859793663025\n          }\n        ]\n      },\n      \"Id\": \"6113a3f0-335e-462d-a437-466f8ebd32ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89723205566406,\n      \"Text\": \"badge\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.033081214874982834,\n          \"Height\": 0.009578680619597435,\n          \"Left\": 0.35327601432800293,\n          \"Top\": 0.3484154939651489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35328084230422974,\n            \"Y\": 0.3484154939651489\n          },\n          {\n            \"X\": 0.38635724782943726,\n            \"Y\": 0.3484608232975006\n          },\n          {\n            \"X\": 0.3863525688648224,\n            \"Y\": 0.3579941689968109\n          },\n          {\n            \"X\": 0.35327601432800293,\n            \"Y\": 0.3579487204551697\n          }\n        ]\n      },\n      \"Id\": \"8d60018d-9c03-44d9-ac3b-8351bfd5d759\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 84.43376159667969,\n      \"Text\": \"number)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044778838753700256,\n          \"Height\": 0.008608024567365646,\n          \"Left\": 0.3905443549156189,\n          \"Top\": 0.3481375575065613\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3905485272407532,\n            \"Y\": 0.3481375575065613\n          },\n          {\n            \"X\": 0.43532317876815796,\n            \"Y\": 0.34819892048835754\n          },\n          {\n            \"X\": 0.435319185256958,\n            \"Y\": 0.3567456007003784\n          },\n          {\n            \"X\": 0.3905443549156189,\n            \"Y\": 0.3566840887069702\n          }\n        ]\n      },\n      \"Id\": \"629aebb3-37d9-4f7c-8426-fcb194c58e05\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.55155944824219,\n      \"Text\": \"8.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010472375899553299,\n          \"Height\": 0.007803092245012522,\n          \"Left\": 0.5886384844779968,\n          \"Top\": 0.3480954170227051\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5886416435241699,\n            \"Y\": 0.3480954170227051\n          },\n          {\n            \"X\": 0.5991108417510986,\n            \"Y\": 0.34810975193977356\n          },\n          {\n            \"X\": 0.5991078019142151,\n            \"Y\": 0.35589849948883057\n          },\n          {\n            \"X\": 0.5886384844779968,\n            \"Y\": 0.3558841347694397\n          }\n        ]\n      },\n      \"Id\": \"bc5fc0f4-9451-4ead-b496-92e31695155f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9592514038086,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05277565121650696,\n          \"Height\": 0.009976409375667572,\n          \"Left\": 0.60360187292099,\n          \"Top\": 0.3477919399738312\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6036058068275452,\n            \"Y\": 0.3477919399738312\n          },\n          {\n            \"X\": 0.6563774943351746,\n            \"Y\": 0.34786421060562134\n          },\n          {\n            \"X\": 0.6563738584518433,\n            \"Y\": 0.35776832699775696\n          },\n          {\n            \"X\": 0.60360187292099,\n            \"Y\": 0.3576958179473877\n          }\n        ]\n      },\n      \"Id\": \"73781e78-90ce-4a67-acdb-51a0222dced2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85852813720703,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011895989999175072,\n          \"Height\": 0.007849127985537052,\n          \"Left\": 0.6598936915397644,\n          \"Top\": 0.34814026951789856\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6598966121673584,\n            \"Y\": 0.34814026951789856\n          },\n          {\n            \"X\": 0.6717897057533264,\n            \"Y\": 0.34815657138824463\n          },\n          {\n            \"X\": 0.6717868447303772,\n            \"Y\": 0.35598939657211304\n          },\n          {\n            \"X\": 0.6598936915397644,\n            \"Y\": 0.3559730648994446\n          }\n        ]\n      },\n      \"Id\": \"9d8db403-831b-4507-b2b0-0ec2166b2e3f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9484634399414,\n      \"Text\": \"Applicant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05229862034320831,\n          \"Height\": 0.009589181281626225,\n          \"Left\": 0.6748319864273071,\n          \"Top\": 0.3481447398662567\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6748354434967041,\n            \"Y\": 0.3481447398662567\n          },\n          {\n            \"X\": 0.7271305918693542,\n            \"Y\": 0.34821638464927673\n          },\n          {\n            \"X\": 0.7271273732185364,\n            \"Y\": 0.35773390531539917\n          },\n          {\n            \"X\": 0.6748319864273071,\n            \"Y\": 0.35766205191612244\n          }\n        ]\n      },\n      \"Id\": \"30cd6cfc-abd2-43ce-b1d2-5233c8fbe48b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.23216247558594,\n      \"Text\": \"Paulo\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048870496451854706,\n          \"Height\": 0.01172281987965107,\n          \"Left\": 0.07124193012714386,\n          \"Top\": 0.3587797284126282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07124924659729004,\n            \"Y\": 0.3587797284126282\n          },\n          {\n            \"X\": 0.12011242657899857,\n            \"Y\": 0.3588469326496124\n          },\n          {\n            \"X\": 0.12010536342859268,\n            \"Y\": 0.3705025613307953\n          },\n          {\n            \"X\": 0.07124193012714386,\n            \"Y\": 0.37043511867523193\n          }\n        ]\n      },\n      \"Id\": \"af049ec2-d8c0-4ce0-92ba-da7d7be64373\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76530456542969,\n      \"Text\": \"Santos\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06018891930580139,\n          \"Height\": 0.011807717382907867,\n          \"Left\": 0.12608978152275085,\n          \"Top\": 0.3588355481624603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12609685957431793,\n            \"Y\": 0.3588355481624603\n          },\n          {\n            \"X\": 0.18627870082855225,\n            \"Y\": 0.35891830921173096\n          },\n          {\n            \"X\": 0.18627193570137024,\n            \"Y\": 0.3706432580947876\n          },\n          {\n            \"X\": 0.12608978152275085,\n            \"Y\": 0.3705601990222931\n          }\n        ]\n      },\n      \"Id\": \"46281634-2c03-4f29-92c6-abbc7d4e42a0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96244812011719,\n      \"Text\": \"123\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030677691102027893,\n          \"Height\": 0.011843048967421055,\n          \"Left\": 0.07162072509527206,\n          \"Top\": 0.3738822937011719\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0716281309723854,\n            \"Y\": 0.3738822937011719\n          },\n          {\n            \"X\": 0.10229841619729996,\n            \"Y\": 0.3739246726036072\n          },\n          {\n            \"X\": 0.10229117423295975,\n            \"Y\": 0.38572534918785095\n          },\n          {\n            \"X\": 0.07162072509527206,\n            \"Y\": 0.3856828212738037\n          }\n        ]\n      },\n      \"Id\": \"27541814-65f6-4fda-a53b-57e2c648d3cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97655487060547,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0339587964117527,\n          \"Height\": 0.014615422114729881,\n          \"Left\": 0.1079903170466423,\n          \"Top\": 0.3739885091781616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10799922794103622,\n            \"Y\": 0.3739885091781616\n          },\n          {\n            \"X\": 0.1419491171836853,\n            \"Y\": 0.37403541803359985\n          },\n          {\n            \"X\": 0.1419404298067093,\n            \"Y\": 0.38860392570495605\n          },\n          {\n            \"X\": 0.1079903170466423,\n            \"Y\": 0.3885568082332611\n          }\n        ]\n      },\n      \"Id\": \"56fea8ae-780f-4389-97d7-d4cfe0e9786f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9486083984375,\n      \"Text\": \"Street,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05641118437051773,\n          \"Height\": 0.014002352021634579,\n          \"Left\": 0.14766670763492584,\n          \"Top\": 0.373639315366745\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14767499268054962,\n            \"Y\": 0.373639315366745\n          },\n          {\n            \"X\": 0.20407789945602417,\n            \"Y\": 0.37371721863746643\n          },\n          {\n            \"X\": 0.20406997203826904,\n            \"Y\": 0.38764166831970215\n          },\n          {\n            \"X\": 0.14766670763492584,\n            \"Y\": 0.38756340742111206\n          }\n        ]\n      },\n      \"Id\": \"63b9b180-6159-41ae-baf4-ec0db9dc201a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97301483154297,\n      \"Text\": \"Any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03447921946644783,\n          \"Height\": 0.014921369962394238,\n          \"Left\": 0.20987962186336517,\n          \"Top\": 0.37372446060180664\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2098880559206009,\n            \"Y\": 0.37372446060180664\n          },\n          {\n            \"X\": 0.2443588525056839,\n            \"Y\": 0.3737720847129822\n          },\n          {\n            \"X\": 0.2443506419658661,\n            \"Y\": 0.38864582777023315\n          },\n          {\n            \"X\": 0.20987962186336517,\n            \"Y\": 0.3885979950428009\n          }\n        ]\n      },\n      \"Id\": \"1dca9e80-c1ec-4f06-82bd-b2068c5a416c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87882232666016,\n      \"Text\": \"Town,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05219951272010803,\n          \"Height\": 0.013628865592181683,\n          \"Left\": 0.25011304020881653,\n          \"Top\": 0.373923122882843\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25012049078941345,\n            \"Y\": 0.373923122882843\n          },\n          {\n            \"X\": 0.30231255292892456,\n            \"Y\": 0.37399524450302124\n          },\n          {\n            \"X\": 0.3023054301738739,\n            \"Y\": 0.3875519931316376\n          },\n          {\n            \"X\": 0.25011304020881653,\n            \"Y\": 0.3874795734882355\n          }\n        ]\n      },\n      \"Id\": \"b1021a7d-fc95-415b-b192-a9fc1b988587\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94401550292969,\n      \"Text\": \"USA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04008593410253525,\n          \"Height\": 0.012433013878762722,\n          \"Left\": 0.30920377373695374,\n          \"Top\": 0.37347695231437683\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30921027064323425,\n            \"Y\": 0.37347695231437683\n          },\n          {\n            \"X\": 0.3492897152900696,\n            \"Y\": 0.3735322952270508\n          },\n          {\n            \"X\": 0.34928345680236816,\n            \"Y\": 0.38590994477272034\n          },\n          {\n            \"X\": 0.30920377373695374,\n            \"Y\": 0.3858543932437897\n          }\n        ]\n      },\n      \"Id\": \"e92bea10-a7e3-4746-9971-2c129946be06\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.638671875,\n      \"Text\": \"Paulo\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06813186407089233,\n          \"Height\": 0.017764993011951447,\n          \"Left\": 0.6291235089302063,\n          \"Top\": 0.3641825318336487\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6291303038597107,\n            \"Y\": 0.3641825318336487\n          },\n          {\n            \"X\": 0.6972553730010986,\n            \"Y\": 0.36427634954452515\n          },\n          {\n            \"X\": 0.6972491145133972,\n            \"Y\": 0.38194751739501953\n          },\n          {\n            \"X\": 0.6291235089302063,\n            \"Y\": 0.3818531930446625\n          }\n        ]\n      },\n      \"Id\": \"9f5f8093-83e8-457f-bb45-92902fbedc7b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.13654327392578,\n      \"Text\": \"Santos\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08517573028802872,\n          \"Height\": 0.016573039814829826,\n          \"Left\": 0.7083820700645447,\n          \"Top\": 0.36477044224739075\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7083878517150879,\n            \"Y\": 0.36477044224739075\n          },\n          {\n            \"X\": 0.7935578227043152,\n            \"Y\": 0.3648877441883087\n          },\n          {\n            \"X\": 0.7935526967048645,\n            \"Y\": 0.3813434839248657\n          },\n          {\n            \"X\": 0.7083820700645447,\n            \"Y\": 0.3812255859375\n          }\n        ]\n      },\n      \"Id\": \"30f859f6-438c-4d96-93ac-927e95c15e3a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83370208740234,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02904866635799408,\n          \"Height\": 0.00928950123488903,\n          \"Left\": 0.04277333244681358,\n          \"Top\": 0.3958130478858948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04277925193309784,\n            \"Y\": 0.3958130478858948\n          },\n          {\n            \"X\": 0.07182199507951736,\n            \"Y\": 0.3958534598350525\n          },\n          {\n            \"X\": 0.07181619107723236,\n            \"Y\": 0.40510255098342896\n          },\n          {\n            \"X\": 0.04277333244681358,\n            \"Y\": 0.4050620496273041\n          }\n        ]\n      },\n      \"Id\": \"091f50c0-8e02-4756-a717-73a56b1c871a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.78433227539062,\n      \"Text\": \"II\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009042740799486637,\n          \"Height\": 0.00885723065584898,\n          \"Left\": 0.07774507999420166,\n          \"Top\": 0.39572203159332275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07775060087442398,\n            \"Y\": 0.39572203159332275\n          },\n          {\n            \"X\": 0.08678781986236572,\n            \"Y\": 0.39573460817337036\n          },\n          {\n            \"X\": 0.08678232878446579,\n            \"Y\": 0.4045792520046234\n          },\n          {\n            \"X\": 0.07774507999420166,\n            \"Y\": 0.4045666456222534\n          }\n        ]\n      },\n      \"Id\": \"0938b049-99b9-4a2e-8d24-36f9610cfa02\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.79241943359375,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011624602600932121,\n          \"Height\": 0.00292015727609396,\n          \"Left\": 0.09254588186740875,\n          \"Top\": 0.3996447026729584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09254767745733261,\n            \"Y\": 0.3996447026729584\n          },\n          {\n            \"X\": 0.10417048633098602,\n            \"Y\": 0.3996609151363373\n          },\n          {\n            \"X\": 0.10416870564222336,\n            \"Y\": 0.4025648832321167\n          },\n          {\n            \"X\": 0.09254588186740875,\n            \"Y\": 0.4025486707687378\n          }\n        ]\n      },\n      \"Id\": \"cc0f9344-da8c-4696-b532-32b9d820fae2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85517120361328,\n      \"Text\": \"Verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0824645385146141,\n          \"Height\": 0.009612265042960644,\n          \"Left\": 0.11052189022302628,\n          \"Top\": 0.39493757486343384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11052768677473068,\n            \"Y\": 0.39493757486343384\n          },\n          {\n            \"X\": 0.19298642873764038,\n            \"Y\": 0.3950522541999817\n          },\n          {\n            \"X\": 0.19298097491264343,\n            \"Y\": 0.40454983711242676\n          },\n          {\n            \"X\": 0.11052189022302628,\n            \"Y\": 0.40443480014801025\n          }\n        ]\n      },\n      \"Id\": \"ca9c1c8e-cea6-408d-b1be-423c74688f34\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89785766601562,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015222995541989803,\n          \"Height\": 0.009561123326420784,\n          \"Left\": 0.19880694150924683,\n          \"Top\": 0.3948679268360138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19881239533424377,\n            \"Y\": 0.3948679268360138\n          },\n          {\n            \"X\": 0.2140299379825592,\n            \"Y\": 0.39488908648490906\n          },\n          {\n            \"X\": 0.21402454376220703,\n            \"Y\": 0.40442904829978943\n          },\n          {\n            \"X\": 0.19880694150924683,\n            \"Y\": 0.4044078290462494\n          }\n        ]\n      },\n      \"Id\": \"72bd0c70-58f1-414e-83b1-5817b6c42d5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91385650634766,\n      \"Text\": \"Present\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05367797613143921,\n          \"Height\": 0.009941562078893185,\n          \"Left\": 0.2186451256275177,\n          \"Top\": 0.3946607708930969\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.218650683760643,\n            \"Y\": 0.3946607708930969\n          },\n          {\n            \"X\": 0.2723231017589569,\n            \"Y\": 0.3947353959083557\n          },\n          {\n            \"X\": 0.2723177671432495,\n            \"Y\": 0.4046023488044739\n          },\n          {\n            \"X\": 0.2186451256275177,\n            \"Y\": 0.404527485370636\n          }\n        ]\n      },\n      \"Id\": \"a139ea18-01b7-431f-9ad9-b512b0b78510\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.942626953125,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08976781368255615,\n          \"Height\": 0.01153308805078268,\n          \"Left\": 0.2775656580924988,\n          \"Top\": 0.3950287997722626\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27757179737091064,\n            \"Y\": 0.3950287997722626\n          },\n          {\n            \"X\": 0.36733347177505493,\n            \"Y\": 0.39515364170074463\n          },\n          {\n            \"X\": 0.3673277795314789,\n            \"Y\": 0.40656188130378723\n          },\n          {\n            \"X\": 0.2775656580924988,\n            \"Y\": 0.40643662214279175\n          }\n        ]\n      },\n      \"Id\": \"47aedf59-b8f7-40b0-9a2d-dd66fdd2b59f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 76.22002410888672,\n      \"Text\": \"9.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010057883337140083,\n          \"Height\": 0.00795903243124485,\n          \"Left\": 0.041890278458595276,\n          \"Top\": 0.4092772603034973\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041895367205142975,\n            \"Y\": 0.4092772603034973\n          },\n          {\n            \"X\": 0.05194816365838051,\n            \"Y\": 0.4092913269996643\n          },\n          {\n            \"X\": 0.051943108439445496,\n            \"Y\": 0.4172362983226776\n          },\n          {\n            \"X\": 0.041890278458595276,\n            \"Y\": 0.4172222316265106\n          }\n        ]\n      },\n      \"Id\": \"b18cd12c-7b39-4784-a4f2-44299237c2f3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86870574951172,\n      \"Text\": \"Applicant's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06016445532441139,\n          \"Height\": 0.00949755311012268,\n          \"Left\": 0.05661844462156296,\n          \"Top\": 0.4091765582561493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.056624412536621094,\n            \"Y\": 0.4091765582561493\n          },\n          {\n            \"X\": 0.11678289622068405,\n            \"Y\": 0.4092606008052826\n          },\n          {\n            \"X\": 0.11677717417478561,\n            \"Y\": 0.418674111366272\n          },\n          {\n            \"X\": 0.05661844462156296,\n            \"Y\": 0.41858983039855957\n          }\n        ]\n      },\n      \"Id\": \"8550dd8d-9c80-4905-8b17-0d9c3e438aa0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84646606445312,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024926604703068733,\n          \"Height\": 0.008183235302567482,\n          \"Left\": 0.12165959179401398,\n          \"Top\": 0.4090461730957031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12166452407836914,\n            \"Y\": 0.4090461730957031\n          },\n          {\n            \"X\": 0.14658619463443756,\n            \"Y\": 0.40908098220825195\n          },\n          {\n            \"X\": 0.14658135175704956,\n            \"Y\": 0.41722938418388367\n          },\n          {\n            \"X\": 0.12165959179401398,\n            \"Y\": 0.4171944856643677\n          }\n        ]\n      },\n      \"Id\": \"625a9cdc-7ecf-437f-bb37-943942fb28fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90518951416016,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01137275155633688,\n          \"Height\": 0.008054402656853199,\n          \"Left\": 0.15079084038734436,\n          \"Top\": 0.4089937210083008\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1507956087589264,\n            \"Y\": 0.4089937210083008\n          },\n          {\n            \"X\": 0.16216358542442322,\n            \"Y\": 0.4090096056461334\n          },\n          {\n            \"X\": 0.16215886175632477,\n            \"Y\": 0.4170481264591217\n          },\n          {\n            \"X\": 0.15079084038734436,\n            \"Y\": 0.4170322120189667\n          }\n        ]\n      },\n      \"Id\": \"00064e17-1759-42a0-a9ab-ccc4c444882b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87892150878906,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0666920393705368,\n          \"Height\": 0.00972577091306448,\n          \"Left\": 0.16653810441493988,\n          \"Top\": 0.40896478295326233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16654375195503235,\n            \"Y\": 0.40896478295326233\n          },\n          {\n            \"X\": 0.23323014378547668,\n            \"Y\": 0.40905794501304626\n          },\n          {\n            \"X\": 0.2332247793674469,\n            \"Y\": 0.41869056224823\n          },\n          {\n            \"X\": 0.16653810441493988,\n            \"Y\": 0.41859713196754456\n          }\n        ]\n      },\n      \"Id\": \"a57a2c5b-bfca-4e56-aa0f-429ae948c2d4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.2818374633789,\n      \"Text\": \"10.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016122102737426758,\n          \"Height\": 0.007867911830544472,\n          \"Left\": 0.2765420377254486,\n          \"Top\": 0.40884655714035034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27654626965522766,\n            \"Y\": 0.40884655714035034\n          },\n          {\n            \"X\": 0.29266414046287537,\n            \"Y\": 0.40886905789375305\n          },\n          {\n            \"X\": 0.2926599979400635,\n            \"Y\": 0.41671445965766907\n          },\n          {\n            \"X\": 0.2765420377254486,\n            \"Y\": 0.4166918992996216\n          }\n        ]\n      },\n      \"Id\": \"e7deff2f-38b2-4050-a422-ab02f31c86c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67737579345703,\n      \"Text\": \"Present\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04000436142086983,\n          \"Height\": 0.007835399359464645,\n          \"Left\": 0.2977186441421509,\n          \"Top\": 0.4088495373725891\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2977227568626404,\n            \"Y\": 0.4088495373725891\n          },\n          {\n            \"X\": 0.3377229869365692,\n            \"Y\": 0.40890541672706604\n          },\n          {\n            \"X\": 0.33771902322769165,\n            \"Y\": 0.41668495535850525\n          },\n          {\n            \"X\": 0.2977186441421509,\n            \"Y\": 0.41662895679473877\n          }\n        ]\n      },\n      \"Id\": \"a23f6228-bbc9-4122-b690-f2c6e8928933\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.67821502685547,\n      \"Text\": \"Position\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043126046657562256,\n          \"Height\": 0.00815530400723219,\n          \"Left\": 0.34175658226013184,\n          \"Top\": 0.4087398052215576\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34176069498062134,\n            \"Y\": 0.4087398052215576\n          },\n          {\n            \"X\": 0.3848826289176941,\n            \"Y\": 0.40880003571510315\n          },\n          {\n            \"X\": 0.38487866520881653,\n            \"Y\": 0.4168951213359833\n          },\n          {\n            \"X\": 0.34175658226013184,\n            \"Y\": 0.4168347418308258\n          }\n        ]\n      },\n      \"Id\": \"c56388e4-d0d2-4cf1-9337-72e97e802773\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.43875885009766,\n      \"Text\": \"11.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01609007641673088,\n          \"Height\": 0.007614662405103445,\n          \"Left\": 0.6480624079704285,\n          \"Top\": 0.4086839556694031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6480652689933777,\n            \"Y\": 0.4086839556694031\n          },\n          {\n            \"X\": 0.6641524434089661,\n            \"Y\": 0.4087064266204834\n          },\n          {\n            \"X\": 0.6641497015953064,\n            \"Y\": 0.41629859805107117\n          },\n          {\n            \"X\": 0.6480624079704285,\n            \"Y\": 0.41627609729766846\n          }\n        ]\n      },\n      \"Id\": \"0bd44b83-f206-423c-b2ff-9eab68bf6a9b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86595153808594,\n      \"Text\": \"Probability\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05705082416534424,\n          \"Height\": 0.009434741921722889,\n          \"Left\": 0.6687864065170288,\n          \"Top\": 0.4085954427719116\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6687898635864258,\n            \"Y\": 0.4085954427719116\n          },\n          {\n            \"X\": 0.725837230682373,\n            \"Y\": 0.40867510437965393\n          },\n          {\n            \"X\": 0.7258340716362,\n            \"Y\": 0.41803017258644104\n          },\n          {\n            \"X\": 0.6687864065170288,\n            \"Y\": 0.417950302362442\n          }\n        ]\n      },\n      \"Id\": \"32fc7bb5-baf6-4be8-ac6e-6bbaa6f6dfaf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80046081542969,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011817814782261848,\n          \"Height\": 0.008039060980081558,\n          \"Left\": 0.7296646237373352,\n          \"Top\": 0.4084164798259735\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7296673655509949,\n            \"Y\": 0.4084164798259735\n          },\n          {\n            \"X\": 0.7414824366569519,\n            \"Y\": 0.4084329903125763\n          },\n          {\n            \"X\": 0.741479754447937,\n            \"Y\": 0.41645553708076477\n          },\n          {\n            \"X\": 0.7296646237373352,\n            \"Y\": 0.4164389967918396\n          }\n        ]\n      },\n      \"Id\": \"d9ff5522-689f-43b0-9c94-cfe6771a8f0c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79692840576172,\n      \"Text\": \"Continued\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.055247869342565536,\n          \"Height\": 0.008176284842193127,\n          \"Left\": 0.7453144788742065,\n          \"Top\": 0.4084571897983551\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7453171610832214,\n            \"Y\": 0.4084571897983551\n          },\n          {\n            \"X\": 0.80056232213974,\n            \"Y\": 0.40853431820869446\n          },\n          {\n            \"X\": 0.8005598187446594,\n            \"Y\": 0.4166334867477417\n          },\n          {\n            \"X\": 0.7453144788742065,\n            \"Y\": 0.41655614972114563\n          }\n        ]\n      },\n      \"Id\": \"bd9f2670-949b-4f77-911c-1fbc07ad5cb0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94603729248047,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06712138652801514,\n          \"Height\": 0.00952987838536501,\n          \"Left\": 0.8049408793449402,\n          \"Top\": 0.40846216678619385\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8049437403678894,\n            \"Y\": 0.40846216678619385\n          },\n          {\n            \"X\": 0.8720622658729553,\n            \"Y\": 0.40855586528778076\n          },\n          {\n            \"X\": 0.8720596432685852,\n            \"Y\": 0.4179920554161072\n          },\n          {\n            \"X\": 0.8049408793449402,\n            \"Y\": 0.4178980588912964\n          }\n        ]\n      },\n      \"Id\": \"94a51342-5707-4136-a60d-09cec0d68e9d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89732360839844,\n      \"Text\": \"06/06/2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08189316838979721,\n          \"Height\": 0.010266105644404888,\n          \"Left\": 0.1051507443189621,\n          \"Top\": 0.42972052097320557\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10515696555376053,\n            \"Y\": 0.42972052097320557\n          },\n          {\n            \"X\": 0.1870439201593399,\n            \"Y\": 0.42983564734458923\n          },\n          {\n            \"X\": 0.18703804910182953,\n            \"Y\": 0.43998661637306213\n          },\n          {\n            \"X\": 0.1051507443189621,\n            \"Y\": 0.4398711621761322\n          }\n        ]\n      },\n      \"Id\": \"bc0ef9ee-be22-446e-a3d1-ac137ca1c256\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86065673828125,\n      \"Text\": \"General\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0576956607401371,\n          \"Height\": 0.010478458367288113,\n          \"Left\": 0.33619245886802673,\n          \"Top\": 0.42933011054992676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33619776368141174,\n            \"Y\": 0.42933011054992676\n          },\n          {\n            \"X\": 0.39388811588287354,\n            \"Y\": 0.4294112026691437\n          },\n          {\n            \"X\": 0.3938830494880676,\n            \"Y\": 0.43980857729911804\n          },\n          {\n            \"X\": 0.33619245886802673,\n            \"Y\": 0.43972721695899963\n          }\n        ]\n      },\n      \"Id\": \"34ee933d-204c-4a0d-b262-40d92090088a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91930389404297,\n      \"Text\": \"Manager\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06460537016391754,\n          \"Height\": 0.012721559964120388,\n          \"Left\": 0.39887768030166626,\n          \"Top\": 0.42954352498054504\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.39888378977775574,\n            \"Y\": 0.42954352498054504\n          },\n          {\n            \"X\": 0.4634830355644226,\n            \"Y\": 0.42963430285453796\n          },\n          {\n            \"X\": 0.4634772837162018,\n            \"Y\": 0.4422650635242462\n          },\n          {\n            \"X\": 0.39887768030166626,\n            \"Y\": 0.44217392802238464\n          }\n        ]\n      },\n      \"Id\": \"bb4161f9-0001-407f-880a-05999b5490a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86646270751953,\n      \"Text\": \"3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008782940916717052,\n          \"Height\": 0.009708136320114136,\n          \"Left\": 0.7278087735176086,\n          \"Top\": 0.42827391624450684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7278120517730713,\n            \"Y\": 0.42827391624450684\n          },\n          {\n            \"X\": 0.7365916967391968,\n            \"Y\": 0.42828625440597534\n          },\n          {\n            \"X\": 0.7365884184837341,\n            \"Y\": 0.43798205256462097\n          },\n          {\n            \"X\": 0.7278087735176086,\n            \"Y\": 0.4379696846008301\n          }\n        ]\n      },\n      \"Id\": \"41bd3cb9-e961-4da7-bc44-84eee2e58f9e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97760772705078,\n      \"Text\": \"years\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039750028401613235,\n          \"Height\": 0.010391308926045895,\n          \"Left\": 0.740969181060791,\n          \"Top\": 0.4302188456058502\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.740972638130188,\n            \"Y\": 0.4302188456058502\n          },\n          {\n            \"X\": 0.7807191610336304,\n            \"Y\": 0.43027469515800476\n          },\n          {\n            \"X\": 0.7807158827781677,\n            \"Y\": 0.4406101405620575\n          },\n          {\n            \"X\": 0.740969181060791,\n            \"Y\": 0.44055411219596863\n          }\n        ]\n      },\n      \"Id\": \"903e2055-9fb3-49c5-81de-12086409f2ab\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.1378173828125,\n      \"Text\": \"12A\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02380276285111904,\n          \"Height\": 0.008201462216675282,\n          \"Left\": 0.05214665085077286,\n          \"Top\": 0.45464178919792175\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.052151843905448914,\n            \"Y\": 0.45464178919792175\n          },\n          {\n            \"X\": 0.07594941556453705,\n            \"Y\": 0.4546755254268646\n          },\n          {\n            \"X\": 0.07594430446624756,\n            \"Y\": 0.46284326910972595\n          },\n          {\n            \"X\": 0.05214665085077286,\n            \"Y\": 0.4628094732761383\n          }\n        ]\n      },\n      \"Id\": \"c8c5befb-fb00-4c6f-80ff-e5c97f33bdde\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94989776611328,\n      \"Text\": \"Current\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04003838077187538,\n          \"Height\": 0.0080008739605546,\n          \"Left\": 0.08178646862506866,\n          \"Top\": 0.45470646023750305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08179141581058502,\n            \"Y\": 0.45470646023750305\n          },\n          {\n            \"X\": 0.12182484567165375,\n            \"Y\": 0.45476317405700684\n          },\n          {\n            \"X\": 0.12182004004716873,\n            \"Y\": 0.4627073109149933\n          },\n          {\n            \"X\": 0.08178646862506866,\n            \"Y\": 0.46265047788619995\n          }\n        ]\n      },\n      \"Id\": \"056f9eb6-1fd1-402a-8dd6-ba989189b130\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87763977050781,\n      \"Text\": \"Gross\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034437596797943115,\n          \"Height\": 0.008168193511664867,\n          \"Left\": 0.12610255181789398,\n          \"Top\": 0.4546622037887573\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12610745429992676,\n            \"Y\": 0.4546622037887573\n          },\n          {\n            \"X\": 0.1605401486158371,\n            \"Y\": 0.454710990190506\n          },\n          {\n            \"X\": 0.16053536534309387,\n            \"Y\": 0.46283039450645447\n          },\n          {\n            \"X\": 0.12610255181789398,\n            \"Y\": 0.46278148889541626\n          }\n        ]\n      },\n      \"Id\": \"9e24505d-d70b-4433-8530-333d4413263e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88028717041016,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025998299941420555,\n          \"Height\": 0.007866887375712395,\n          \"Left\": 0.16468676924705505,\n          \"Top\": 0.4547167122364044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16469135880470276,\n            \"Y\": 0.4547167122364044\n          },\n          {\n            \"X\": 0.19068506360054016,\n            \"Y\": 0.4547535181045532\n          },\n          {\n            \"X\": 0.19068056344985962,\n            \"Y\": 0.46258360147476196\n          },\n          {\n            \"X\": 0.16468676924705505,\n            \"Y\": 0.4625466763973236\n          }\n        ]\n      },\n      \"Id\": \"d0befd0c-538a-4e5f-95d7-911b37d43fc4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88341522216797,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019777286797761917,\n          \"Height\": 0.009189100004732609,\n          \"Left\": 0.19529522955417633,\n          \"Top\": 0.4545899033546448\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19530047476291656,\n            \"Y\": 0.4545899033546448\n          },\n          {\n            \"X\": 0.21507251262664795,\n            \"Y\": 0.4546179175376892\n          },\n          {\n            \"X\": 0.21506734192371368,\n            \"Y\": 0.4637790024280548\n          },\n          {\n            \"X\": 0.19529522955417633,\n            \"Y\": 0.4637509286403656\n          }\n        ]\n      },\n      \"Id\": \"ba1c18a2-3ca4-4c28-92c1-14d9a5e86cac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.93180084228516,\n      \"Text\": \"(Enter\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03197355940937996,\n          \"Height\": 0.008896145969629288,\n          \"Left\": 0.21968723833560944,\n          \"Top\": 0.45434027910232544\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21969221532344818,\n            \"Y\": 0.45434027910232544\n          },\n          {\n            \"X\": 0.2516607940196991,\n            \"Y\": 0.45438554883003235\n          },\n          {\n            \"X\": 0.2516559362411499,\n            \"Y\": 0.46323642134666443\n          },\n          {\n            \"X\": 0.21968723833560944,\n            \"Y\": 0.46319103240966797\n          }\n        ]\n      },\n      \"Id\": \"a45b550e-438e-454d-b2b7-db29add58fd0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97676849365234,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044452134519815445,\n          \"Height\": 0.008308714255690575,\n          \"Left\": 0.25525686144828796,\n          \"Top\": 0.4542222023010254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2552613615989685,\n            \"Y\": 0.4542222023010254\n          },\n          {\n            \"X\": 0.2997089922428131,\n            \"Y\": 0.4542851448059082\n          },\n          {\n            \"X\": 0.2997046411037445,\n            \"Y\": 0.4625309109687805\n          },\n          {\n            \"X\": 0.25525686144828796,\n            \"Y\": 0.4624677896499634\n          }\n        ]\n      },\n      \"Id\": \"f0330f86-96ae-4da5-a28b-968df2c7d836\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94488525390625,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02040531113743782,\n          \"Height\": 0.007670518010854721,\n          \"Left\": 0.3034760355949402,\n          \"Top\": 0.454555481672287\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3034800589084625,\n            \"Y\": 0.454555481672287\n          },\n          {\n            \"X\": 0.3238813579082489,\n            \"Y\": 0.45458438992500305\n          },\n          {\n            \"X\": 0.32387739419937134,\n            \"Y\": 0.462226003408432\n          },\n          {\n            \"X\": 0.3034760355949402,\n            \"Y\": 0.46219703555107117\n          }\n        ]\n      },\n      \"Id\": \"e580e912-3464-49ec-8e1f-2472e17adfc2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69252014160156,\n      \"Text\": \"Check\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03352202847599983,\n          \"Height\": 0.008016670122742653,\n          \"Left\": 0.32814618945121765,\n          \"Top\": 0.45440176129341125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.32815030217170715,\n            \"Y\": 0.45440176129341125\n          },\n          {\n            \"X\": 0.361668199300766,\n            \"Y\": 0.45444923639297485\n          },\n          {\n            \"X\": 0.36166420578956604,\n            \"Y\": 0.46241840720176697\n          },\n          {\n            \"X\": 0.32814618945121765,\n            \"Y\": 0.4623708128929138\n          }\n        ]\n      },\n      \"Id\": \"06c217b5-be52-4a7c-9169-45d31b91cdd3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 84.44733428955078,\n      \"Text\": \"Period)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03803108632564545,\n          \"Height\": 0.008572089485824108,\n          \"Left\": 0.3659130334854126,\n          \"Top\": 0.45424342155456543\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36591726541519165,\n            \"Y\": 0.45424342155456543\n          },\n          {\n            \"X\": 0.40394410490989685,\n            \"Y\": 0.45429727435112\n          },\n          {\n            \"X\": 0.40393999218940735,\n            \"Y\": 0.4628154933452606\n          },\n          {\n            \"X\": 0.3659130334854126,\n            \"Y\": 0.4627614915370941\n          }\n        ]\n      },\n      \"Id\": \"8f4116f1-d5eb-4892-80c7-40e5d157cd20\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.86190795898438,\n      \"Text\": \"13.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015353524126112461,\n          \"Height\": 0.007823122665286064,\n          \"Left\": 0.4624548554420471,\n          \"Top\": 0.45438018441200256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46245840191841125,\n            \"Y\": 0.45438018441200256\n          },\n          {\n            \"X\": 0.4778083860874176,\n            \"Y\": 0.4544019401073456\n          },\n          {\n            \"X\": 0.47780486941337585,\n            \"Y\": 0.46220332384109497\n          },\n          {\n            \"X\": 0.4624548554420471,\n            \"Y\": 0.46218153834342957\n          }\n        ]\n      },\n      \"Id\": \"a12ea4c2-de3a-4ad5-be74-1e916ae81b16\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88201141357422,\n      \"Text\": \"For\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018055910244584084,\n          \"Height\": 0.007906175218522549,\n          \"Left\": 0.4831734299659729,\n          \"Top\": 0.4542264938354492\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48317694664001465,\n            \"Y\": 0.4542264938354492\n          },\n          {\n            \"X\": 0.5012293457984924,\n            \"Y\": 0.45425206422805786\n          },\n          {\n            \"X\": 0.5012258887290955,\n            \"Y\": 0.46213266253471375\n          },\n          {\n            \"X\": 0.4831734299659729,\n            \"Y\": 0.4621070623397827\n          }\n        ]\n      },\n      \"Id\": \"8fba26ea-b3c5-43ab-b48b-ea638c7a5f08\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70917510986328,\n      \"Text\": \"Military\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04003678634762764,\n          \"Height\": 0.009223257191479206,\n          \"Left\": 0.5051912665367126,\n          \"Top\": 0.4542510211467743\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5051952600479126,\n            \"Y\": 0.4542510211467743\n          },\n          {\n            \"X\": 0.5452280044555664,\n            \"Y\": 0.4543077051639557\n          },\n          {\n            \"X\": 0.5452241897583008,\n            \"Y\": 0.4634742736816406\n          },\n          {\n            \"X\": 0.5051912665367126,\n            \"Y\": 0.4634174108505249\n          }\n        ]\n      },\n      \"Id\": \"f0188855-bca6-4ec0-a9ca-6af9f4c55c33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72015380859375,\n      \"Text\": \"Personnel\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05349096655845642,\n          \"Height\": 0.008044175803661346,\n          \"Left\": 0.5487962961196899,\n          \"Top\": 0.45428088307380676\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5487996339797974,\n            \"Y\": 0.45428088307380676\n          },\n          {\n            \"X\": 0.602287232875824,\n            \"Y\": 0.4543566405773163\n          },\n          {\n            \"X\": 0.6022840738296509,\n            \"Y\": 0.4623250663280487\n          },\n          {\n            \"X\": 0.5487962961196899,\n            \"Y\": 0.46224913001060486\n          }\n        ]\n      },\n      \"Id\": \"5c49555e-7db1-4008-bb3b-114844e8ab62\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85066986083984,\n      \"Text\": \"Only\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024591313675045967,\n          \"Height\": 0.0093759186565876,\n          \"Left\": 0.6061007380485535,\n          \"Top\": 0.4541756808757782\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6061044335365295,\n            \"Y\": 0.4541756808757782\n          },\n          {\n            \"X\": 0.6306920647621155,\n            \"Y\": 0.454210489988327\n          },\n          {\n            \"X\": 0.630688488483429,\n            \"Y\": 0.4635515809059143\n          },\n          {\n            \"X\": 0.6061007380485535,\n            \"Y\": 0.4635166823863983\n          }\n        ]\n      },\n      \"Id\": \"7dd4948f-82e7-42eb-9d14-7195b91bb0c1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 78.68769836425781,\n      \"Text\": \"14.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015412514097988605,\n          \"Height\": 0.007628319319337606,\n          \"Left\": 0.6942456364631653,\n          \"Top\": 0.46060192584991455\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6942483186721802,\n            \"Y\": 0.46060192584991455\n          },\n          {\n            \"X\": 0.709658145904541,\n            \"Y\": 0.4606238007545471\n          },\n          {\n            \"X\": 0.7096555233001709,\n            \"Y\": 0.4682302474975586\n          },\n          {\n            \"X\": 0.6942456364631653,\n            \"Y\": 0.46820834279060364\n          }\n        ]\n      },\n      \"Id\": \"d85bb783-03b0-4574-ab39-7f08d1f3927e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.77003479003906,\n      \"Text\": \"If\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007660567294806242,\n          \"Height\": 0.007516121957451105,\n          \"Left\": 0.7145234942436218,\n          \"Top\": 0.4604461193084717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7145261168479919,\n            \"Y\": 0.4604461193084717\n          },\n          {\n            \"X\": 0.7221840620040894,\n            \"Y\": 0.4604569673538208\n          },\n          {\n            \"X\": 0.722181499004364,\n            \"Y\": 0.46796223521232605\n          },\n          {\n            \"X\": 0.7145234942436218,\n            \"Y\": 0.46795132756233215\n          }\n        ]\n      },\n      \"Id\": \"592bb21a-edd6-4f90-9070-071f4f1bfb05\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70537567138672,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04829655587673187,\n          \"Height\": 0.007671993225812912,\n          \"Left\": 0.7266362905502319,\n          \"Top\": 0.4606548845767975\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7266388535499573,\n            \"Y\": 0.4606548845767975\n          },\n          {\n            \"X\": 0.7749328017234802,\n            \"Y\": 0.4607234001159668\n          },\n          {\n            \"X\": 0.7749304175376892,\n            \"Y\": 0.4683268666267395\n          },\n          {\n            \"X\": 0.7266362905502319,\n            \"Y\": 0.46825820207595825\n          }\n        ]\n      },\n      \"Id\": \"3956f2ec-c90f-428c-b2ea-afdb610e3e8e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.982421875,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01133225578814745,\n          \"Height\": 0.006153269670903683,\n          \"Left\": 0.7792767286300659,\n          \"Top\": 0.4621620178222656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7792786955833435,\n            \"Y\": 0.4621620178222656\n          },\n          {\n            \"X\": 0.7906090021133423,\n            \"Y\": 0.462178111076355\n          },\n          {\n            \"X\": 0.7906070947647095,\n            \"Y\": 0.4683153033256531\n          },\n          {\n            \"X\": 0.7792767286300659,\n            \"Y\": 0.46829918026924133\n          }\n        ]\n      },\n      \"Id\": \"4af55cf2-8550-4ea9-bf40-a73c8ddf5bf8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72178649902344,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03378533944487572,\n          \"Height\": 0.007926820777356625,\n          \"Left\": 0.7951696515083313,\n          \"Top\": 0.4604986906051636\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7951720952987671,\n            \"Y\": 0.4604986906051636\n          },\n          {\n            \"X\": 0.8289549946784973,\n            \"Y\": 0.4605466425418854\n          },\n          {\n            \"X\": 0.8289526104927063,\n            \"Y\": 0.4684255123138428\n          },\n          {\n            \"X\": 0.7951696515083313,\n            \"Y\": 0.4683774709701538\n          }\n        ]\n      },\n      \"Id\": \"f09d251e-7b31-47f2-b1d7-783c13c26849\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89105987548828,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.008935716934502125,\n          \"Height\": 0.007880192250013351,\n          \"Left\": 0.8329455256462097,\n          \"Top\": 0.4603559970855713\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.832947850227356,\n            \"Y\": 0.4603559970855713\n          },\n          {\n            \"X\": 0.841881275177002,\n            \"Y\": 0.46036866307258606\n          },\n          {\n            \"X\": 0.8418789505958557,\n            \"Y\": 0.46823617815971375\n          },\n          {\n            \"X\": 0.8329455256462097,\n            \"Y\": 0.4682234823703766\n          }\n        ]\n      },\n      \"Id\": \"50469c2f-23d3-4df0-ba6e-bb68ffb2c088\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 73.00471496582031,\n      \"Text\": \"Applicable,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05960962921380997,\n          \"Height\": 0.009659510105848312,\n          \"Left\": 0.8453854322433472,\n          \"Top\": 0.46039333939552307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8453881740570068,\n            \"Y\": 0.46039333939552307\n          },\n          {\n            \"X\": 0.9049950242042542,\n            \"Y\": 0.46047788858413696\n          },\n          {\n            \"X\": 0.9049925208091736,\n            \"Y\": 0.4700528383255005\n          },\n          {\n            \"X\": 0.8453854322433472,\n            \"Y\": 0.4699680209159851\n          }\n        ]\n      },\n      \"Id\": \"ec659076-4b65-4044-9808-a7c8d2867f52\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93900299072266,\n      \"Text\": \"Annual\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03838041424751282,\n          \"Height\": 0.007692558690905571,\n          \"Left\": 0.17551203072071075,\n          \"Top\": 0.4697299599647522\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17551647126674652,\n            \"Y\": 0.4697299599647522\n          },\n          {\n            \"X\": 0.21389244496822357,\n            \"Y\": 0.46978458762168884\n          },\n          {\n            \"X\": 0.21388812363147736,\n            \"Y\": 0.4774225354194641\n          },\n          {\n            \"X\": 0.17551203072071075,\n            \"Y\": 0.4773677885532379\n          }\n        ]\n      },\n      \"Id\": \"98935b3c-7a9d-467e-affd-3f58b4ff477f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.44683074951172,\n      \"Text\": \"Hourly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03584225848317146,\n          \"Height\": 0.009362763725221157,\n          \"Left\": 0.2729756832122803,\n          \"Top\": 0.4697292149066925\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2729807198047638,\n            \"Y\": 0.4697292149066925\n          },\n          {\n            \"X\": 0.30881795287132263,\n            \"Y\": 0.46978023648262024\n          },\n          {\n            \"X\": 0.30881306529045105,\n            \"Y\": 0.479092001914978\n          },\n          {\n            \"X\": 0.2729756832122803,\n            \"Y\": 0.47904083132743835\n          }\n        ]\n      },\n      \"Id\": \"856f44ec-e066-4dcf-8578-ecb744de5269\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8668441772461,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019248416647315025,\n          \"Height\": 0.009328749030828476,\n          \"Left\": 0.46290504932403564,\n          \"Top\": 0.46943262219429016\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4629093110561371,\n            \"Y\": 0.46943262219429016\n          },\n          {\n            \"X\": 0.4821534752845764,\n            \"Y\": 0.46946001052856445\n          },\n          {\n            \"X\": 0.48214930295944214,\n            \"Y\": 0.47876137495040894\n          },\n          {\n            \"X\": 0.46290504932403564,\n            \"Y\": 0.47873392701148987\n          }\n        ]\n      },\n      \"Id\": \"45fd537d-5784-4069-b11f-6bd5ff7cfdb9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92349243164062,\n      \"Text\": \"Grade\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03208867833018303,\n          \"Height\": 0.007932824082672596,\n          \"Left\": 0.486500084400177,\n          \"Top\": 0.46941888332366943\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.48650360107421875,\n            \"Y\": 0.46941888332366943\n          },\n          {\n            \"X\": 0.5185887813568115,\n            \"Y\": 0.4694645404815674\n          },\n          {\n            \"X\": 0.5185853242874146,\n            \"Y\": 0.47735172510147095\n          },\n          {\n            \"X\": 0.486500084400177,\n            \"Y\": 0.47730594873428345\n          }\n        ]\n      },\n      \"Id\": \"e8c7fbee-826b-4e48-9006-48c439166752\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94813537597656,\n      \"Text\": \"10\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014048181474208832,\n          \"Height\": 0.008025703951716423,\n          \"Left\": 0.6050521731376648,\n          \"Top\": 0.4701174795627594\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6050553321838379,\n            \"Y\": 0.4701174795627594\n          },\n          {\n            \"X\": 0.6191003322601318,\n            \"Y\": 0.47013744711875916\n          },\n          {\n            \"X\": 0.6190972328186035,\n            \"Y\": 0.47814318537712097\n          },\n          {\n            \"X\": 0.6050521731376648,\n            \"Y\": 0.47812312841415405\n          }\n        ]\n      },\n      \"Id\": \"8ae41e56-9472-44d5-a6e2-c683cffc5d6b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 84.615478515625,\n      \"Text\": \"Is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00912505853921175,\n          \"Height\": 0.007770716678351164,\n          \"Left\": 0.7140702605247498,\n          \"Top\": 0.47082728147506714\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7140729427337646,\n            \"Y\": 0.47082728147506714\n          },\n          {\n            \"X\": 0.7231953144073486,\n            \"Y\": 0.4708402752876282\n          },\n          {\n            \"X\": 0.7231926918029785,\n            \"Y\": 0.4785979986190796\n          },\n          {\n            \"X\": 0.7140702605247498,\n            \"Y\": 0.47858497500419617\n          }\n        ]\n      },\n      \"Id\": \"5a5d71c5-aca9-49f4-9e03-56cd49c72a51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 61.170166015625,\n      \"Text\": \"Its\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.013346903957426548,\n          \"Height\": 0.007636285852640867,\n          \"Left\": 0.7273045778274536,\n          \"Top\": 0.47081220149993896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7273072004318237,\n            \"Y\": 0.47081220149993896\n          },\n          {\n            \"X\": 0.7406514883041382,\n            \"Y\": 0.4708311855792999\n          },\n          {\n            \"X\": 0.7406489849090576,\n            \"Y\": 0.4784484803676605\n          },\n          {\n            \"X\": 0.7273045778274536,\n            \"Y\": 0.4784294366836548\n          }\n        ]\n      },\n      \"Id\": \"619adf1b-d067-49e0-ac78-55b1c54baf11\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63833618164062,\n      \"Text\": \"Continuance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0672907680273056,\n          \"Height\": 0.007923347875475883,\n          \"Left\": 0.7449061870574951,\n          \"Top\": 0.47049379348754883\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7449087500572205,\n            \"Y\": 0.47049379348754883\n          },\n          {\n            \"X\": 0.8121969103813171,\n            \"Y\": 0.4705895483493805\n          },\n          {\n            \"X\": 0.8121945858001709,\n            \"Y\": 0.47841712832450867\n          },\n          {\n            \"X\": 0.7449061870574951,\n            \"Y\": 0.4783211648464203\n          }\n        ]\n      },\n      \"Id\": \"136b8861-c903-4188-9928-d5bcbec828ff\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.91554260253906,\n      \"Text\": \"Likely?\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.035374533385038376,\n          \"Height\": 0.00927393976598978,\n          \"Left\": 0.8168908357620239,\n          \"Top\": 0.47052502632141113\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8168935775756836,\n            \"Y\": 0.47052502632141113\n          },\n          {\n            \"X\": 0.8522653579711914,\n            \"Y\": 0.47057536244392395\n          },\n          {\n            \"X\": 0.8522627353668213,\n            \"Y\": 0.47979897260665894\n          },\n          {\n            \"X\": 0.8168908357620239,\n            \"Y\": 0.4797484874725342\n          }\n        ]\n      },\n      \"Id\": \"45b3ef61-049e-4e87-ac0d-794011094417\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86404418945312,\n      \"Text\": \"Monthly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04427186772227287,\n          \"Height\": 0.00941950548440218,\n          \"Left\": 0.1755121350288391,\n          \"Top\": 0.484845370054245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17551757395267487,\n            \"Y\": 0.484845370054245\n          },\n          {\n            \"X\": 0.21978400647640228,\n            \"Y\": 0.48490867018699646\n          },\n          {\n            \"X\": 0.21977873146533966,\n            \"Y\": 0.4942648708820343\n          },\n          {\n            \"X\": 0.1755121350288391,\n            \"Y\": 0.4942013919353485\n          }\n        ]\n      },\n      \"Id\": \"e574810a-52f4-4133-ae47-330884ae2734\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85707092285156,\n      \"Text\": \"Other\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03062416985630989,\n          \"Height\": 0.007899281568825245,\n          \"Left\": 0.27288442850112915,\n          \"Top\": 0.48484817147254944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2728886902332306,\n            \"Y\": 0.48484817147254944\n          },\n          {\n            \"X\": 0.30350860953330994,\n            \"Y\": 0.48489195108413696\n          },\n          {\n            \"X\": 0.30350446701049805,\n            \"Y\": 0.4927474558353424\n          },\n          {\n            \"X\": 0.27288442850112915,\n            \"Y\": 0.49270355701446533\n          }\n        ]\n      },\n      \"Id\": \"96d13d5c-3804-4c35-9041-fb66abcb1718\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.13024139404297,\n      \"Text\": \"(Specify)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04766806587576866,\n          \"Height\": 0.009885686449706554,\n          \"Left\": 0.3077928423881531,\n          \"Top\": 0.4844399094581604\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30779796838760376,\n            \"Y\": 0.4844399094581604\n          },\n          {\n            \"X\": 0.35546088218688965,\n            \"Y\": 0.48450803756713867\n          },\n          {\n            \"X\": 0.3554559648036957,\n            \"Y\": 0.4943256080150604\n          },\n          {\n            \"X\": 0.3077928423881531,\n            \"Y\": 0.49425727128982544\n          }\n        ]\n      },\n      \"Id\": \"ca16f948-a2a0-49d0-8605-17044ff06ab8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92318725585938,\n      \"Text\": \"Type\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026384277269244194,\n          \"Height\": 0.009137836284935474,\n          \"Left\": 0.462668240070343,\n          \"Top\": 0.4847314953804016\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4626723825931549,\n            \"Y\": 0.4847314953804016\n          },\n          {\n            \"X\": 0.48905250430107117,\n            \"Y\": 0.48476919531822205\n          },\n          {\n            \"X\": 0.48904845118522644,\n            \"Y\": 0.4938693344593048\n          },\n          {\n            \"X\": 0.462668240070343,\n            \"Y\": 0.4938315153121948\n          }\n        ]\n      },\n      \"Id\": \"b9a9d7af-a0fa-4f67-b4ac-b54fbcc028db\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75810241699219,\n      \"Text\": \"Monthly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04466388374567032,\n          \"Height\": 0.009153361432254314,\n          \"Left\": 0.5695671439170837,\n          \"Top\": 0.48461660742759705\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5695708990097046,\n            \"Y\": 0.48461660742759705\n          },\n          {\n            \"X\": 0.6142310500144958,\n            \"Y\": 0.4846804440021515\n          },\n          {\n            \"X\": 0.6142274737358093,\n            \"Y\": 0.49376994371414185\n          },\n          {\n            \"X\": 0.5695671439170837,\n            \"Y\": 0.49370595812797546\n          }\n        ]\n      },\n      \"Id\": \"7593261b-e271-4b0b-be79-5c21bae93bed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93241882324219,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044039636850357056,\n          \"Height\": 0.007995197549462318,\n          \"Left\": 0.6181430816650391,\n          \"Top\": 0.4846266508102417\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6181461811065674,\n            \"Y\": 0.4846266508102417\n          },\n          {\n            \"X\": 0.6621827483177185,\n            \"Y\": 0.4846895933151245\n          },\n          {\n            \"X\": 0.6621798276901245,\n            \"Y\": 0.49262186884880066\n          },\n          {\n            \"X\": 0.6181430816650391,\n            \"Y\": 0.4925587773323059\n          }\n        ]\n      },\n      \"Id\": \"11831c96-76a4-433c-b848-2df0c875fe71\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74715423583984,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04845358803868294,\n          \"Height\": 0.007899788208305836,\n          \"Left\": 0.7160584330558777,\n          \"Top\": 0.4856394827365875\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7160611152648926,\n            \"Y\": 0.4856394827365875\n          },\n          {\n            \"X\": 0.7645120024681091,\n            \"Y\": 0.48570874333381653\n          },\n          {\n            \"X\": 0.7645094394683838,\n            \"Y\": 0.4935392737388611\n          },\n          {\n            \"X\": 0.7160584330558777,\n            \"Y\": 0.49346983432769775\n          }\n        ]\n      },\n      \"Id\": \"2a1573e2-cc2f-45bb-9138-4eadd193dd14\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9555435180664,\n      \"Text\": \"Yes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019709477201104164,\n          \"Height\": 0.007816274650394917,\n          \"Left\": 0.8208832144737244,\n          \"Top\": 0.48560675978660583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8208855390548706,\n            \"Y\": 0.48560675978660583\n          },\n          {\n            \"X\": 0.8405926823616028,\n            \"Y\": 0.4856349229812622\n          },\n          {\n            \"X\": 0.8405904173851013,\n            \"Y\": 0.4934230148792267\n          },\n          {\n            \"X\": 0.8208832144737244,\n            \"Y\": 0.49339479207992554\n          }\n        ]\n      },\n      \"Id\": \"6432a709-ea33-4d8e-9a3e-f22398e00027\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7380599975586,\n      \"Text\": \"No\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01565852016210556,\n          \"Height\": 0.007779306266456842,\n          \"Left\": 0.8813149929046631,\n          \"Top\": 0.48560619354248047\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.881317138671875,\n            \"Y\": 0.48560619354248047\n          },\n          {\n            \"X\": 0.8969734907150269,\n            \"Y\": 0.48562857508659363\n          },\n          {\n            \"X\": 0.8969714641571045,\n            \"Y\": 0.4933854937553406\n          },\n          {\n            \"X\": 0.8813149929046631,\n            \"Y\": 0.49336308240890503\n          }\n        ]\n      },\n      \"Id\": \"09cb51d3-cb7c-4642-aec8-e9ecd0b57f74\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64405059814453,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006077850703150034,\n          \"Height\": 0.007316698785871267,\n          \"Left\": 0.05217764154076576,\n          \"Top\": 0.5006146430969238\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05218229070305824,\n            \"Y\": 0.5006146430969238\n          },\n          {\n            \"X\": 0.05825549364089966,\n            \"Y\": 0.500623345375061\n          },\n          {\n            \"X\": 0.05825086310505867,\n            \"Y\": 0.5079313516616821\n          },\n          {\n            \"X\": 0.05217764154076576,\n            \"Y\": 0.5079225897789001\n          }\n        ]\n      },\n      \"Id\": \"08fc984f-dd16-46c8-ab0d-c2bd7869c17a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83375549316406,\n      \"Text\": \"5600\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02895953506231308,\n          \"Height\": 0.008673461154103279,\n          \"Left\": 0.07245775312185287,\n          \"Top\": 0.4989091753959656\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07246316224336624,\n            \"Y\": 0.4989091753959656\n          },\n          {\n            \"X\": 0.10141728818416595,\n            \"Y\": 0.4989507496356964\n          },\n          {\n            \"X\": 0.10141198337078094,\n            \"Y\": 0.5075826644897461\n          },\n          {\n            \"X\": 0.07245775312185287,\n            \"Y\": 0.5075409412384033\n          }\n        ]\n      },\n      \"Id\": \"944bfdf1-daac-4712-8de4-61324c542448\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74958038330078,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03436942771077156,\n          \"Height\": 0.007922503165900707,\n          \"Left\": 0.7163385152816772,\n          \"Top\": 0.49594831466674805\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7163412570953369,\n            \"Y\": 0.49594831466674805\n          },\n          {\n            \"X\": 0.7507079243659973,\n            \"Y\": 0.4959976077079773\n          },\n          {\n            \"X\": 0.7507053017616272,\n            \"Y\": 0.5038708448410034\n          },\n          {\n            \"X\": 0.7163385152816772,\n            \"Y\": 0.5038214325904846\n          }\n        ]\n      },\n      \"Id\": \"ce9ea12a-45f9-4b2c-a666-b9e008329abf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96216583251953,\n      \"Text\": \"Yes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019678566604852676,\n          \"Height\": 0.007666279096156359,\n          \"Left\": 0.8209297060966492,\n          \"Top\": 0.4959058165550232\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8209319710731506,\n            \"Y\": 0.4959058165550232\n          },\n          {\n            \"X\": 0.8406082987785339,\n            \"Y\": 0.49593403935432434\n          },\n          {\n            \"X\": 0.8406060338020325,\n            \"Y\": 0.5035721063613892\n          },\n          {\n            \"X\": 0.8209297060966492,\n            \"Y\": 0.5035437941551208\n          }\n        ]\n      },\n      \"Id\": \"b47c12ea-a04a-4db0-8cf4-066d445d7157\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.36814880371094,\n      \"Text\": \"No\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015940174460411072,\n          \"Height\": 0.007573725655674934,\n          \"Left\": 0.8807739019393921,\n          \"Top\": 0.49604514241218567\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8807759881019592,\n            \"Y\": 0.49604514241218567\n          },\n          {\n            \"X\": 0.8967140913009644,\n            \"Y\": 0.49606800079345703\n          },\n          {\n            \"X\": 0.896712064743042,\n            \"Y\": 0.5036188960075378\n          },\n          {\n            \"X\": 0.8807739019393921,\n            \"Y\": 0.5035959482192993\n          }\n        ]\n      },\n      \"Id\": \"94344424-d063-42fc-b499-7ba40eed8b35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7439956665039,\n      \"Text\": \"Weekly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03984353318810463,\n          \"Height\": 0.009626110084354877,\n          \"Left\": 0.17517277598381042,\n          \"Top\": 0.4998665750026703\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17517833411693573,\n            \"Y\": 0.4998665750026703\n          },\n          {\n            \"X\": 0.21501630544662476,\n            \"Y\": 0.49992379546165466\n          },\n          {\n            \"X\": 0.2150108963251114,\n            \"Y\": 0.5094926953315735\n          },\n          {\n            \"X\": 0.17517277598381042,\n            \"Y\": 0.5094352960586548\n          }\n        ]\n      },\n      \"Id\": \"a1d7b7db-204a-4c19-8c0b-bb78e1a05201\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.877197265625,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025503534823656082,\n          \"Height\": 0.007681269198656082,\n          \"Left\": 0.4625262916088104,\n          \"Top\": 0.5086637139320374\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4625297784805298,\n            \"Y\": 0.5086637139320374\n          },\n          {\n            \"X\": 0.488029807806015,\n            \"Y\": 0.508700430393219\n          },\n          {\n            \"X\": 0.4880264103412628,\n            \"Y\": 0.5163449645042419\n          },\n          {\n            \"X\": 0.4625262916088104,\n            \"Y\": 0.5163081884384155\n          }\n        ]\n      },\n      \"Id\": \"61d009c3-913a-47df-8f64-92fb4a27b1cd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86556243896484,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019930610433220863,\n          \"Height\": 0.009296577423810959,\n          \"Left\": 0.4929004907608032,\n          \"Top\": 0.5084900259971619\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4929046034812927,\n            \"Y\": 0.5084900259971619\n          },\n          {\n            \"X\": 0.5128310918807983,\n            \"Y\": 0.5085186958312988\n          },\n          {\n            \"X\": 0.5128270387649536,\n            \"Y\": 0.5177865624427795\n          },\n          {\n            \"X\": 0.4929004907608032,\n            \"Y\": 0.5177578330039978\n          }\n        ]\n      },\n      \"Id\": \"640fa90c-ec11-4c3f-b627-adf87dc7295d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78705596923828,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006718913558870554,\n          \"Height\": 0.007566181942820549,\n          \"Left\": 0.5692899227142334,\n          \"Top\": 0.508323609828949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692930221557617,\n            \"Y\": 0.508323609828949\n          },\n          {\n            \"X\": 0.5760087966918945,\n            \"Y\": 0.5083332657814026\n          },\n          {\n            \"X\": 0.576005756855011,\n            \"Y\": 0.5158897638320923\n          },\n          {\n            \"X\": 0.5692899227142334,\n            \"Y\": 0.5158800482749939\n          }\n        ]\n      },\n      \"Id\": \"7d5de3a7-08d9-4413-bebf-85a38d9e1f86\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95744323730469,\n      \"Text\": \"520\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021973054856061935,\n          \"Height\": 0.008403418585658073,\n          \"Left\": 0.6006745100021362,\n          \"Top\": 0.5078282952308655\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6006778478622437,\n            \"Y\": 0.5078282952308655\n          },\n          {\n            \"X\": 0.6226475834846497,\n            \"Y\": 0.5078598856925964\n          },\n          {\n            \"X\": 0.6226443648338318,\n            \"Y\": 0.5162317156791687\n          },\n          {\n            \"X\": 0.6006745100021362,\n            \"Y\": 0.5162000060081482\n          }\n        ]\n      },\n      \"Id\": \"48a2f899-a3d6-43ee-b615-5dbec74c8d12\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 71.86326599121094,\n      \"Text\": \"12B.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02244516834616661,\n          \"Height\": 0.008140034973621368,\n          \"Left\": 0.19143055379390717,\n          \"Top\": 0.514966607093811\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19143521785736084,\n            \"Y\": 0.514966607093811\n          },\n          {\n            \"X\": 0.21387571096420288,\n            \"Y\": 0.5149989724159241\n          },\n          {\n            \"X\": 0.21387113630771637,\n            \"Y\": 0.5231066346168518\n          },\n          {\n            \"X\": 0.19143055379390717,\n            \"Y\": 0.523074209690094\n          }\n        ]\n      },\n      \"Id\": \"78efdf5e-9150-4b19-83b2-f1fdf99d59ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7860336303711,\n      \"Text\": \"Gross\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03399265184998512,\n          \"Height\": 0.008093050681054592,\n          \"Left\": 0.21963368356227875,\n          \"Top\": 0.5149363875389099\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21963821351528168,\n            \"Y\": 0.5149363875389099\n          },\n          {\n            \"X\": 0.25362634658813477,\n            \"Y\": 0.5149853825569153\n          },\n          {\n            \"X\": 0.2536219358444214,\n            \"Y\": 0.5230294466018677\n          },\n          {\n            \"X\": 0.21963368356227875,\n            \"Y\": 0.522980272769928\n          }\n        ]\n      },\n      \"Id\": \"6ca2d74f-fa6a-41ee-9d00-5789a880651b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95655822753906,\n      \"Text\": \"Earnings\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04572916030883789,\n          \"Height\": 0.00971130095422268,\n          \"Left\": 0.2581847608089447,\n          \"Top\": 0.5149481296539307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25819000601768494,\n            \"Y\": 0.5149481296539307\n          },\n          {\n            \"X\": 0.3039139211177826,\n            \"Y\": 0.5150140523910522\n          },\n          {\n            \"X\": 0.3039088249206543,\n            \"Y\": 0.5246593952178955\n          },\n          {\n            \"X\": 0.2581847608089447,\n            \"Y\": 0.5245932340621948\n          }\n        ]\n      },\n      \"Id\": \"d8b7acf6-c42c-433c-b5f0-d74f26ad8834\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.70902252197266,\n      \"Text\": \"15.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015458479523658752,\n          \"Height\": 0.008024366572499275,\n          \"Left\": 0.6944710612297058,\n          \"Top\": 0.5144649147987366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.694473922252655,\n            \"Y\": 0.5144649147987366\n          },\n          {\n            \"X\": 0.7099295258522034,\n            \"Y\": 0.5144872069358826\n          },\n          {\n            \"X\": 0.7099267840385437,\n            \"Y\": 0.5224892497062683\n          },\n          {\n            \"X\": 0.6944710612297058,\n            \"Y\": 0.5224669575691223\n          }\n        ]\n      },\n      \"Id\": \"c281b1c8-cf3c-4287-a295-f1593a57795d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.16092681884766,\n      \"Text\": \"If\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007680792827159166,\n          \"Height\": 0.007940540090203285,\n          \"Left\": 0.714699387550354,\n          \"Top\": 0.5144435167312622\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7147021293640137,\n            \"Y\": 0.5144435167312622\n          },\n          {\n            \"X\": 0.7223802208900452,\n            \"Y\": 0.5144546031951904\n          },\n          {\n            \"X\": 0.7223774790763855,\n            \"Y\": 0.5223840475082397\n          },\n          {\n            \"X\": 0.714699387550354,\n            \"Y\": 0.5223729610443115\n          }\n        ]\n      },\n      \"Id\": \"c88d7963-12d1-4b5b-8b42-b85a4847df6a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84969329833984,\n      \"Text\": \"paid\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022667234763503075,\n          \"Height\": 0.009728099219501019,\n          \"Left\": 0.7263181805610657,\n          \"Top\": 0.5144937038421631\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7263214588165283,\n            \"Y\": 0.5144937038421631\n          },\n          {\n            \"X\": 0.7489854097366333,\n            \"Y\": 0.5145264267921448\n          },\n          {\n            \"X\": 0.7489821910858154,\n            \"Y\": 0.5242218375205994\n          },\n          {\n            \"X\": 0.7263181805610657,\n            \"Y\": 0.5241890549659729\n          }\n        ]\n      },\n      \"Id\": \"dda04e2a-4696-4f08-a6d2-16b348fcaad4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7646484375,\n      \"Text\": \"hourly\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034028925001621246,\n          \"Height\": 0.009541835635900497,\n          \"Left\": 0.7530115842819214,\n          \"Top\": 0.5145824551582336\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7530147433280945,\n            \"Y\": 0.5145824551582336\n          },\n          {\n            \"X\": 0.7870405316352844,\n            \"Y\": 0.5146315693855286\n          },\n          {\n            \"X\": 0.7870375514030457,\n            \"Y\": 0.5241243243217468\n          },\n          {\n            \"X\": 0.7530115842819214,\n            \"Y\": 0.5240750908851624\n          }\n        ]\n      },\n      \"Id\": \"55a587c6-f259-482e-ad8d-f46e7fb0e27b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.24694061279297,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01034174207597971,\n          \"Height\": 0.002781868679448962,\n          \"Left\": 0.7921831011772156,\n          \"Top\": 0.5184705853462219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7921839356422424,\n            \"Y\": 0.5184705853462219\n          },\n          {\n            \"X\": 0.8025248050689697,\n            \"Y\": 0.5184855461120605\n          },\n          {\n            \"X\": 0.8025239706039429,\n            \"Y\": 0.521252453327179\n          },\n          {\n            \"X\": 0.7921831011772156,\n            \"Y\": 0.5212375521659851\n          }\n        ]\n      },\n      \"Id\": \"42bc55de-ea8d-4c38-bf50-ab5cd9719884\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82196807861328,\n      \"Text\": \"average\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041616041213274,\n          \"Height\": 0.008546126075088978,\n          \"Left\": 0.8072434067726135,\n          \"Top\": 0.5158587098121643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8072460293769836,\n            \"Y\": 0.5158587098121643\n          },\n          {\n            \"X\": 0.8488594889640808,\n            \"Y\": 0.5159187912940979\n          },\n          {\n            \"X\": 0.848857045173645,\n            \"Y\": 0.5244048237800598\n          },\n          {\n            \"X\": 0.8072434067726135,\n            \"Y\": 0.5243446826934814\n          }\n        ]\n      },\n      \"Id\": \"0f4fb00a-dd76-4b80-be95-5e776b0a59da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93977355957031,\n      \"Text\": \"hours\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030211379751563072,\n          \"Height\": 0.00787543598562479,\n          \"Left\": 0.8529779314994812,\n          \"Top\": 0.5147644877433777\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8529801368713379,\n            \"Y\": 0.5147644877433777\n          },\n          {\n            \"X\": 0.8831892609596252,\n            \"Y\": 0.5148080587387085\n          },\n          {\n            \"X\": 0.8831871747970581,\n            \"Y\": 0.5226398706436157\n          },\n          {\n            \"X\": 0.8529779314994812,\n            \"Y\": 0.5225962400436401\n          }\n        ]\n      },\n      \"Id\": \"93a22742-901d-4b58-b778-a2bdea4cf71d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57245635986328,\n      \"Text\": \"per\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01682526431977749,\n          \"Height\": 0.007541161961853504,\n          \"Left\": 0.8874998092651367,\n          \"Top\": 0.5164216160774231\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8875018358230591,\n            \"Y\": 0.5164216160774231\n          },\n          {\n            \"X\": 0.9043250679969788,\n            \"Y\": 0.5164458751678467\n          },\n          {\n            \"X\": 0.9043230414390564,\n            \"Y\": 0.5239627957344055\n          },\n          {\n            \"X\": 0.8874998092651367,\n            \"Y\": 0.5239384174346924\n          }\n        ]\n      },\n      \"Id\": \"522ab9da-c766-4720-90c2-81444dc58ee3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74410247802734,\n      \"Text\": \"week\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028857946395874023,\n          \"Height\": 0.00718946848064661,\n          \"Left\": 0.7133444547653198,\n          \"Top\": 0.5256057381629944\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7133468985557556,\n            \"Y\": 0.5256057381629944\n          },\n          {\n            \"X\": 0.7422024011611938,\n            \"Y\": 0.5256475210189819\n          },\n          {\n            \"X\": 0.7422000169754028,\n            \"Y\": 0.532795250415802\n          },\n          {\n            \"X\": 0.7133444547653198,\n            \"Y\": 0.5327534079551697\n          }\n        ]\n      },\n      \"Id\": \"a375d7ac-c6d6-483a-9feb-db4ed16505ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86339569091797,\n      \"Text\": \"Type\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.026461929082870483,\n          \"Height\": 0.009184257127344608,\n          \"Left\": 0.05229908600449562,\n          \"Top\": 0.5304486155509949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05230490118265152,\n            \"Y\": 0.5304486155509949\n          },\n          {\n            \"X\": 0.0787610113620758,\n            \"Y\": 0.5304869413375854\n          },\n          {\n            \"X\": 0.07875530421733856,\n            \"Y\": 0.5396328568458557\n          },\n          {\n            \"X\": 0.05229908600449562,\n            \"Y\": 0.5395944118499756\n          }\n        ]\n      },\n      \"Id\": \"b310bff4-b28d-4dbb-b111-17217ce87496\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84214782714844,\n      \"Text\": \"Year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025168102234601974,\n          \"Height\": 0.007973304018378258,\n          \"Left\": 0.13932524621486664,\n          \"Top\": 0.5302186012268066\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13932999968528748,\n            \"Y\": 0.5302186012268066\n          },\n          {\n            \"X\": 0.1644933521747589,\n            \"Y\": 0.5302550792694092\n          },\n          {\n            \"X\": 0.16448868811130524,\n            \"Y\": 0.5381919145584106\n          },\n          {\n            \"X\": 0.13932524621486664,\n            \"Y\": 0.5381553173065186\n          }\n        ]\n      },\n      \"Id\": \"b61d6d9b-4734-4916-b44d-fa3199a41dbd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.17203521728516,\n      \"Text\": \"To\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0149305434897542,\n          \"Height\": 0.007964610122144222,\n          \"Left\": 0.16845771670341492,\n          \"Top\": 0.5302294492721558\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1684623509645462,\n            \"Y\": 0.5302294492721558\n          },\n          {\n            \"X\": 0.18338824808597565,\n            \"Y\": 0.5302510857582092\n          },\n          {\n            \"X\": 0.18338365852832794,\n            \"Y\": 0.5381940603256226\n          },\n          {\n            \"X\": 0.16845771670341492,\n            \"Y\": 0.5381723642349243\n          }\n        ]\n      },\n      \"Id\": \"48faeb8a-21c8-4b68-a9a2-01014bc255e0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80867004394531,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024734381586313248,\n          \"Height\": 0.007803997024893761,\n          \"Left\": 0.18772633373737335,\n          \"Top\": 0.5303736925125122\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1877308189868927,\n            \"Y\": 0.5303736925125122\n          },\n          {\n            \"X\": 0.2124607115983963,\n            \"Y\": 0.5304095149040222\n          },\n          {\n            \"X\": 0.21245631575584412,\n            \"Y\": 0.5381776690483093\n          },\n          {\n            \"X\": 0.18772633373737335,\n            \"Y\": 0.5381417870521545\n          }\n        ]\n      },\n      \"Id\": \"e03e47c3-e088-467a-ae77-4d0136dbbb3d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82398223876953,\n      \"Text\": \"Past\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022803667932748795,\n          \"Height\": 0.007616118993610144,\n          \"Left\": 0.24767500162124634,\n          \"Top\": 0.5304698944091797\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24767917394638062,\n            \"Y\": 0.5304698944091797\n          },\n          {\n            \"X\": 0.27047866582870483,\n            \"Y\": 0.53050297498703\n          },\n          {\n            \"X\": 0.27047455310821533,\n            \"Y\": 0.5380860567092896\n          },\n          {\n            \"X\": 0.24767500162124634,\n            \"Y\": 0.5380529165267944\n          }\n        ]\n      },\n      \"Id\": \"7e91653c-2957-41ce-9372-f7f75d6f5917\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92674255371094,\n      \"Text\": \"Year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02481946349143982,\n          \"Height\": 0.007904780097305775,\n          \"Left\": 0.27445125579833984,\n          \"Top\": 0.5301375985145569\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2744554877281189,\n            \"Y\": 0.5301375985145569\n          },\n          {\n            \"X\": 0.29927071928977966,\n            \"Y\": 0.5301735401153564\n          },\n          {\n            \"X\": 0.2992665767669678,\n            \"Y\": 0.5380423665046692\n          },\n          {\n            \"X\": 0.27445125579833984,\n            \"Y\": 0.5380063056945801\n          }\n        ]\n      },\n      \"Id\": \"8ccf9718-a268-4927-89aa-f583745b98bd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83909606933594,\n      \"Text\": \"Past\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023184306919574738,\n          \"Height\": 0.007686463184654713,\n          \"Left\": 0.35484448075294495,\n          \"Top\": 0.5303409695625305\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35484832525253296,\n            \"Y\": 0.5303409695625305\n          },\n          {\n            \"X\": 0.3780287802219391,\n            \"Y\": 0.5303745865821838\n          },\n          {\n            \"X\": 0.37802502512931824,\n            \"Y\": 0.5380274653434753\n          },\n          {\n            \"X\": 0.35484448075294495,\n            \"Y\": 0.5379937887191772\n          }\n        ]\n      },\n      \"Id\": \"08613794-08c1-4aea-b5d8-659c705be39f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91377258300781,\n      \"Text\": \"Year\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025191407650709152,\n          \"Height\": 0.007891498506069183,\n          \"Left\": 0.38177111744880676,\n          \"Top\": 0.5301344990730286\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3817749619483948,\n            \"Y\": 0.5301344990730286\n          },\n          {\n            \"X\": 0.406962513923645,\n            \"Y\": 0.5301710367202759\n          },\n          {\n            \"X\": 0.4069587290287018,\n            \"Y\": 0.5380260348320007\n          },\n          {\n            \"X\": 0.38177111744880676,\n            \"Y\": 0.5379894375801086\n          }\n        ]\n      },\n      \"Id\": \"9af5aed1-09e7-4f6e-b942-304657a88cec\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57719421386719,\n      \"Text\": \"Rations\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039598189294338226,\n          \"Height\": 0.007904591970145702,\n          \"Left\": 0.46253660321235657,\n          \"Top\": 0.5300867557525635\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4625401794910431,\n            \"Y\": 0.5300867557525635\n          },\n          {\n            \"X\": 0.5021347999572754,\n            \"Y\": 0.5301441550254822\n          },\n          {\n            \"X\": 0.5021313428878784,\n            \"Y\": 0.5379913449287415\n          },\n          {\n            \"X\": 0.46253660321235657,\n            \"Y\": 0.5379338264465332\n          }\n        ]\n      },\n      \"Id\": \"669598fb-8bb0-4f33-a7a5-050c210e04a3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7801742553711,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0066278656013309956,\n          \"Height\": 0.007577778771519661,\n          \"Left\": 0.5692310929298401,\n          \"Top\": 0.5301686525344849\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692341923713684,\n            \"Y\": 0.5301686525344849\n          },\n          {\n            \"X\": 0.5758589506149292,\n            \"Y\": 0.5301783084869385\n          },\n          {\n            \"X\": 0.5758559107780457,\n            \"Y\": 0.5377464294433594\n          },\n          {\n            \"X\": 0.5692310929298401,\n            \"Y\": 0.5377368330955505\n          }\n        ]\n      },\n      \"Id\": \"c5074532-74be-4c99-adc5-f695df23b2ae\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8836669921875,\n      \"Text\": \"162\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021551037207245827,\n          \"Height\": 0.008229863829910755,\n          \"Left\": 0.6044975519180298,\n          \"Top\": 0.5316083431243896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6045008301734924,\n            \"Y\": 0.5316083431243896\n          },\n          {\n            \"X\": 0.6260486245155334,\n            \"Y\": 0.531639575958252\n          },\n          {\n            \"X\": 0.6260454654693604,\n            \"Y\": 0.5398381948471069\n          },\n          {\n            \"X\": 0.6044975519180298,\n            \"Y\": 0.5398068428039551\n          }\n        ]\n      },\n      \"Id\": \"f249583d-7ac9-462f-b0cd-0b4ef6f9baa3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.96524047851562,\n      \"Text\": \"40\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015345430001616478,\n          \"Height\": 0.008325845003128052,\n          \"Left\": 0.7710415124893188,\n          \"Top\": 0.5288265943527222\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.771044135093689,\n            \"Y\": 0.5288265943527222\n          },\n          {\n            \"X\": 0.7863869071006775,\n            \"Y\": 0.5288488268852234\n          },\n          {\n            \"X\": 0.7863842844963074,\n            \"Y\": 0.5371524095535278\n          },\n          {\n            \"X\": 0.7710415124893188,\n            \"Y\": 0.5371301770210266\n          }\n        ]\n      },\n      \"Id\": \"802826f9-a879-4573-84b8-8fba2ddcb2c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96672058105469,\n      \"Text\": \"hours\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03281310200691223,\n          \"Height\": 0.008471407927572727,\n          \"Left\": 0.7895166873931885,\n          \"Top\": 0.5287885069847107\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7895193099975586,\n            \"Y\": 0.5287885069847107\n          },\n          {\n            \"X\": 0.8223297595977783,\n            \"Y\": 0.5288360118865967\n          },\n          {\n            \"X\": 0.8223272562026978,\n            \"Y\": 0.5372598767280579\n          },\n          {\n            \"X\": 0.7895166873931885,\n            \"Y\": 0.5372122526168823\n          }\n        ]\n      },\n      \"Id\": \"225d707d-9804-462c-8c2d-01602224e9b4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93830108642578,\n      \"Text\": \"Thru\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02494003064930439,\n          \"Height\": 0.008058038540184498,\n          \"Left\": 0.1398094892501831,\n          \"Top\": 0.5453571677207947\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13981428742408752,\n            \"Y\": 0.5453571677207947\n          },\n          {\n            \"X\": 0.16474951803684235,\n            \"Y\": 0.5453934669494629\n          },\n          {\n            \"X\": 0.1647448092699051,\n            \"Y\": 0.5534151792526245\n          },\n          {\n            \"X\": 0.1398094892501831,\n            \"Y\": 0.5533788204193115\n          }\n        ]\n      },\n      \"Id\": \"55b35b39-58f1-4095-a648-69266cca6892\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96832275390625,\n      \"Text\": \"2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029543107375502586,\n          \"Height\": 0.008374187164008617,\n          \"Left\": 0.17802682518959045,\n          \"Top\": 0.5441463589668274\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17803166806697845,\n            \"Y\": 0.5441463589668274\n          },\n          {\n            \"X\": 0.2075699418783188,\n            \"Y\": 0.5441893935203552\n          },\n          {\n            \"X\": 0.20756520330905914,\n            \"Y\": 0.5525205731391907\n          },\n          {\n            \"X\": 0.17802682518959045,\n            \"Y\": 0.5524774789810181\n          }\n        ]\n      },\n      \"Id\": \"18884121-0066-44c5-9419-57e6e97d54ee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 86.11819458007812,\n      \"Text\": \"16.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015255768783390522,\n          \"Height\": 0.007831919938325882,\n          \"Left\": 0.6939645409584045,\n          \"Top\": 0.5450345277786255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.693967342376709,\n            \"Y\": 0.5450345277786255\n          },\n          {\n            \"X\": 0.7092203497886658,\n            \"Y\": 0.5450567603111267\n          },\n          {\n            \"X\": 0.7092176079750061,\n            \"Y\": 0.5528664588928223\n          },\n          {\n            \"X\": 0.6939645409584045,\n            \"Y\": 0.552844226360321\n          }\n        ]\n      },\n      \"Id\": \"fa85ad29-f58e-453a-a4f9-618f27bf4872\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87440490722656,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0253517534583807,\n          \"Height\": 0.008033421821892262,\n          \"Left\": 0.7144777774810791,\n          \"Top\": 0.5450592041015625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7144805192947388,\n            \"Y\": 0.5450592041015625\n          },\n          {\n            \"X\": 0.7398295402526855,\n            \"Y\": 0.5450960993766785\n          },\n          {\n            \"X\": 0.7398268580436707,\n            \"Y\": 0.5530925989151001\n          },\n          {\n            \"X\": 0.7144777774810791,\n            \"Y\": 0.5530556440353394\n          }\n        ]\n      },\n      \"Id\": \"e2fdd0e9-4600-4dd2-8de2-e3fccac19b75\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90606689453125,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011398958042263985,\n          \"Height\": 0.008053597994148731,\n          \"Left\": 0.7437514662742615,\n          \"Top\": 0.5448195338249207\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7437541484832764,\n            \"Y\": 0.5448195338249207\n          },\n          {\n            \"X\": 0.7551504373550415,\n            \"Y\": 0.544836163520813\n          },\n          {\n            \"X\": 0.7551478147506714,\n            \"Y\": 0.5528731346130371\n          },\n          {\n            \"X\": 0.7437514662742615,\n            \"Y\": 0.5528565049171448\n          }\n        ]\n      },\n      \"Id\": \"44051e98-3dc1-447d-8d7a-7220f8370495\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91132354736328,\n      \"Text\": \"applicant's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05842403694987297,\n          \"Height\": 0.00984776858240366,\n          \"Left\": 0.7588314414024353,\n          \"Top\": 0.5447520017623901\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7588346600532532,\n            \"Y\": 0.5447520017623901\n          },\n          {\n            \"X\": 0.8172554969787598,\n            \"Y\": 0.5448369979858398\n          },\n          {\n            \"X\": 0.817252516746521,\n            \"Y\": 0.5545997619628906\n          },\n          {\n            \"X\": 0.7588314414024353,\n            \"Y\": 0.554514467716217\n          }\n        ]\n      },\n      \"Id\": \"e35d82fd-d0da-4b44-8258-403e61d42565\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9578628540039,\n      \"Text\": \"next\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023476405069231987,\n          \"Height\": 0.007207829039543867,\n          \"Left\": 0.821023166179657,\n          \"Top\": 0.5458431243896484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8210253119468689,\n            \"Y\": 0.5458431243896484\n          },\n          {\n            \"X\": 0.8444995284080505,\n            \"Y\": 0.5458772778511047\n          },\n          {\n            \"X\": 0.8444974422454834,\n            \"Y\": 0.5530509352684021\n          },\n          {\n            \"X\": 0.821023166179657,\n            \"Y\": 0.5530166625976562\n          }\n        ]\n      },\n      \"Id\": \"ceb9a29d-5b68-42b4-a23f-0dedc1b9892d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.54415130615234,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019769584760069847,\n          \"Height\": 0.0075246309861540794,\n          \"Left\": 0.8484291434288025,\n          \"Top\": 0.5469882488250732\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8484312891960144,\n            \"Y\": 0.5469882488250732\n          },\n          {\n            \"X\": 0.8681987524032593,\n            \"Y\": 0.5470170378684998\n          },\n          {\n            \"X\": 0.8681966662406921,\n            \"Y\": 0.5545129179954529\n          },\n          {\n            \"X\": 0.8484291434288025,\n            \"Y\": 0.5544840693473816\n          }\n        ]\n      },\n      \"Id\": \"533bad34-9272-4eee-af7e-cfa880c10455\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90518951416016,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043744076043367386,\n          \"Height\": 0.007978970184922218,\n          \"Left\": 0.8724899888038635,\n          \"Top\": 0.5452619194984436\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8724921941757202,\n            \"Y\": 0.5452619194984436\n          },\n          {\n            \"X\": 0.9162340760231018,\n            \"Y\": 0.5453255772590637\n          },\n          {\n            \"X\": 0.9162319898605347,\n            \"Y\": 0.5532408952713013\n          },\n          {\n            \"X\": 0.8724899888038635,\n            \"Y\": 0.5531770586967468\n          }\n        ]\n      },\n      \"Id\": \"3e4b83d8-420a-46d5-a8da-a8db09fc35d9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95062255859375,\n      \"Text\": \"30.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03305026888847351,\n          \"Height\": 0.008661860600113869,\n          \"Left\": 0.37401077151298523,\n          \"Top\": 0.5549578070640564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37401503324508667,\n            \"Y\": 0.5549578070640564\n          },\n          {\n            \"X\": 0.40706104040145874,\n            \"Y\": 0.5550060272216797\n          },\n          {\n            \"X\": 0.40705689787864685,\n            \"Y\": 0.5636196732521057\n          },\n          {\n            \"X\": 0.37401077151298523,\n            \"Y\": 0.5635712742805481\n          }\n        ]\n      },\n      \"Id\": \"0747851f-235e-49ef-b5c2-3c639dac6cba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83053588867188,\n      \"Text\": \"Flight\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029718566685914993,\n          \"Height\": 0.009627864696085453,\n          \"Left\": 0.4627981185913086,\n          \"Top\": 0.5500805974006653\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4628024995326996,\n            \"Y\": 0.5500805974006653\n          },\n          {\n            \"X\": 0.4925166964530945,\n            \"Y\": 0.550123929977417\n          },\n          {\n            \"X\": 0.49251243472099304,\n            \"Y\": 0.5597084760665894\n          },\n          {\n            \"X\": 0.4627981185913086,\n            \"Y\": 0.5596650242805481\n          }\n        ]\n      },\n      \"Id\": \"56670517-cd59-48b0-9240-9aded194c6ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68477630615234,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011813239194452763,\n          \"Height\": 0.006303702015429735,\n          \"Left\": 0.49582943320274353,\n          \"Top\": 0.5517622232437134\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.495832234621048,\n            \"Y\": 0.5517622232437134\n          },\n          {\n            \"X\": 0.5076426863670349,\n            \"Y\": 0.5517794489860535\n          },\n          {\n            \"X\": 0.5076399445533752,\n            \"Y\": 0.5580659508705139\n          },\n          {\n            \"X\": 0.49582943320274353,\n            \"Y\": 0.558048665523529\n          }\n        ]\n      },\n      \"Id\": \"3e77dbfc-32f6-4711-8310-edea980620e9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90091705322266,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02563386596739292,\n          \"Height\": 0.007987246848642826,\n          \"Left\": 0.05253257974982262,\n          \"Top\": 0.5607330799102783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05253763124346733,\n            \"Y\": 0.5607330799102783\n          },\n          {\n            \"X\": 0.07816644757986069,\n            \"Y\": 0.560770571231842\n          },\n          {\n            \"X\": 0.07816147804260254,\n            \"Y\": 0.5687203407287598\n          },\n          {\n            \"X\": 0.05253257974982262,\n            \"Y\": 0.5686827898025513\n          }\n        ]\n      },\n      \"Id\": \"4efe221d-c1bd-4b0c-8a17-bc316fea6cd4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86228942871094,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019246811047196388,\n          \"Height\": 0.009182063862681389,\n          \"Left\": 0.08292233943939209,\n          \"Top\": 0.5606585144996643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08292803913354874,\n            \"Y\": 0.5606585144996643\n          },\n          {\n            \"X\": 0.10216915607452393,\n            \"Y\": 0.5606866478919983\n          },\n          {\n            \"X\": 0.10216353088617325,\n            \"Y\": 0.5698406100273132\n          },\n          {\n            \"X\": 0.08292233943939209,\n            \"Y\": 0.5698123574256897\n          }\n        ]\n      },\n      \"Id\": \"7cfd9e29-8fbe-4bf3-9bea-2d35e5f648dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8270263671875,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005909447558224201,\n          \"Height\": 0.007693252991884947,\n          \"Left\": 0.1395750343799591,\n          \"Top\": 0.5607089400291443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1395796239376068,\n            \"Y\": 0.5607089400291443\n          },\n          {\n            \"X\": 0.14548447728157043,\n            \"Y\": 0.5607175827026367\n          },\n          {\n            \"X\": 0.14547990262508392,\n            \"Y\": 0.5684021711349487\n          },\n          {\n            \"X\": 0.1395750343799591,\n            \"Y\": 0.5683935284614563\n          }\n        ]\n      },\n      \"Id\": \"5982c4d2-0792-4a9f-8707-75241ded624e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88854217529297,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03189331665635109,\n          \"Height\": 0.00840272568166256,\n          \"Left\": 0.16981592774391174,\n          \"Top\": 0.5627397894859314\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16982081532478333,\n            \"Y\": 0.5627397894859314\n          },\n          {\n            \"X\": 0.20170924067497253,\n            \"Y\": 0.5627864599227905\n          },\n          {\n            \"X\": 0.2017044723033905,\n            \"Y\": 0.5711424946784973\n          },\n          {\n            \"X\": 0.16981592774391174,\n            \"Y\": 0.5710957050323486\n          }\n        ]\n      },\n      \"Id\": \"8929679c-3c0a-4b45-aff1-6a3ee891ca93\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.70401763916016,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00603170832619071,\n          \"Height\": 0.0077505335211753845,\n          \"Left\": 0.24683712422847748,\n          \"Top\": 0.5604528784751892\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24684138596057892,\n            \"Y\": 0.5604528784751892\n          },\n          {\n            \"X\": 0.2528688311576843,\n            \"Y\": 0.560461699962616\n          },\n          {\n            \"X\": 0.2528645992279053,\n            \"Y\": 0.5682034492492676\n          },\n          {\n            \"X\": 0.24683712422847748,\n            \"Y\": 0.5681946277618408\n          }\n        ]\n      },\n      \"Id\": \"cb31f9d1-040c-43f3-9e82-a9caa012fcfe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84125518798828,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03289758414030075,\n          \"Height\": 0.008276350796222687,\n          \"Left\": 0.2641485631465912,\n          \"Top\": 0.5590183734893799\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26415303349494934,\n            \"Y\": 0.5590183734893799\n          },\n          {\n            \"X\": 0.29704612493515015,\n            \"Y\": 0.5590664744377136\n          },\n          {\n            \"X\": 0.29704177379608154,\n            \"Y\": 0.567294716835022\n          },\n          {\n            \"X\": 0.2641485631465912,\n            \"Y\": 0.5672465562820435\n          }\n        ]\n      },\n      \"Id\": \"bb4feb9e-502e-4579-a5de-b99e778c2e2f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83856964111328,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006859424524009228,\n          \"Height\": 0.007708266377449036,\n          \"Left\": 0.3539978265762329,\n          \"Top\": 0.5605785250663757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3540017008781433,\n            \"Y\": 0.5605785250663757\n          },\n          {\n            \"X\": 0.3608572483062744,\n            \"Y\": 0.560588538646698\n          },\n          {\n            \"X\": 0.3608534038066864,\n            \"Y\": 0.5682867765426636\n          },\n          {\n            \"X\": 0.3539978265762329,\n            \"Y\": 0.5682767629623413\n          }\n        ]\n      },\n      \"Id\": \"f8461892-8d78-4439-9f7e-59bc097b7a03\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83779907226562,\n      \"Text\": \"Hazard\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03740635886788368,\n          \"Height\": 0.00775926886126399,\n          \"Left\": 0.4621685743331909,\n          \"Top\": 0.5605485439300537\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46217212080955505,\n            \"Y\": 0.5605485439300537\n          },\n          {\n            \"X\": 0.4995749592781067,\n            \"Y\": 0.5606032609939575\n          },\n          {\n            \"X\": 0.4995715618133545,\n            \"Y\": 0.5683078169822693\n          },\n          {\n            \"X\": 0.4621685743331909,\n            \"Y\": 0.5682529807090759\n          }\n        ]\n      },\n      \"Id\": \"35e1dd25-f1aa-4558-811e-f76f799da294\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64952087402344,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0064594941213727,\n          \"Height\": 0.0076482295989990234,\n          \"Left\": 0.569337785243988,\n          \"Top\": 0.5604580044746399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693408846855164,\n            \"Y\": 0.5604580044746399\n          },\n          {\n            \"X\": 0.5757972598075867,\n            \"Y\": 0.5604674220085144\n          },\n          {\n            \"X\": 0.5757941603660583,\n            \"Y\": 0.5681062340736389\n          },\n          {\n            \"X\": 0.569337785243988,\n            \"Y\": 0.5680967569351196\n          }\n        ]\n      },\n      \"Id\": \"020cbd22-63e3-4b05-a993-f89a07093946\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92417907714844,\n      \"Text\": \"756\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022130480036139488,\n          \"Height\": 0.00852182973176241,\n          \"Left\": 0.6071352362632751,\n          \"Top\": 0.5555989146232605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6071385741233826,\n            \"Y\": 0.5555989146232605\n          },\n          {\n            \"X\": 0.6292657256126404,\n            \"Y\": 0.5556312203407288\n          },\n          {\n            \"X\": 0.6292624473571777,\n            \"Y\": 0.5641207695007324\n          },\n          {\n            \"X\": 0.6071352362632751,\n            \"Y\": 0.5640883445739746\n          }\n        ]\n      },\n      \"Id\": \"571ee72e-449d-46d6-ad5b-6512cca1798d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90284729003906,\n      \"Text\": \"08/08/2007\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06619724631309509,\n          \"Height\": 0.008677440695464611,\n          \"Left\": 0.7729403376579285,\n          \"Top\": 0.5650748014450073\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7729431390762329,\n            \"Y\": 0.5650748014450073\n          },\n          {\n            \"X\": 0.839137613773346,\n            \"Y\": 0.5651717185974121\n          },\n          {\n            \"X\": 0.8391351103782654,\n            \"Y\": 0.573752224445343\n          },\n          {\n            \"X\": 0.7729403376579285,\n            \"Y\": 0.5736550688743591\n          }\n        ]\n      },\n      \"Id\": \"0689d1e7-96bb-4360-a2b8-e51a9358039a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84420776367188,\n      \"Text\": \"Clothing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04470117762684822,\n          \"Height\": 0.00981816928833723,\n          \"Left\": 0.4620550572872162,\n          \"Top\": 0.5753482580184937\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46205952763557434,\n            \"Y\": 0.5753482580184937\n          },\n          {\n            \"X\": 0.5067562460899353,\n            \"Y\": 0.5754139423370361\n          },\n          {\n            \"X\": 0.5067519545555115,\n            \"Y\": 0.5851664543151855\n          },\n          {\n            \"X\": 0.4620550572872162,\n            \"Y\": 0.5851005911827087\n          }\n        ]\n      },\n      \"Id\": \"12baef2f-fe16-48ed-bb16-019d5a6e9598\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.37628173828125,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006539630703628063,\n          \"Height\": 0.0075494893826544285,\n          \"Left\": 0.569307804107666,\n          \"Top\": 0.5756174921989441\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693109035491943,\n            \"Y\": 0.5756174921989441\n          },\n          {\n            \"X\": 0.5758474469184875,\n            \"Y\": 0.5756270885467529\n          },\n          {\n            \"X\": 0.575844407081604,\n            \"Y\": 0.5831670165061951\n          },\n          {\n            \"X\": 0.569307804107666,\n            \"Y\": 0.5831573605537415\n          }\n        ]\n      },\n      \"Id\": \"f6bd0308-a369-45df-a138-47c7436ba56a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9748764038086,\n      \"Text\": \"452\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02244962938129902,\n          \"Height\": 0.008498603478074074,\n          \"Left\": 0.6035396456718445,\n          \"Top\": 0.574485182762146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6035429835319519,\n            \"Y\": 0.574485182762146\n          },\n          {\n            \"X\": 0.6259892582893372,\n            \"Y\": 0.5745181441307068\n          },\n          {\n            \"X\": 0.6259859800338745,\n            \"Y\": 0.5829837918281555\n          },\n          {\n            \"X\": 0.6035396456718445,\n            \"Y\": 0.58295077085495\n          }\n        ]\n      },\n      \"Id\": \"1a6ead24-be6d-4d9e-978c-f9671b650f4d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80686950683594,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04869156330823898,\n          \"Height\": 0.008171332068741322,\n          \"Left\": 0.051883045583963394,\n          \"Top\": 0.5908547043800354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05188819766044617,\n            \"Y\": 0.5908547043800354\n          },\n          {\n            \"X\": 0.10057460516691208,\n            \"Y\": 0.5909265875816345\n          },\n          {\n            \"X\": 0.10056962817907333,\n            \"Y\": 0.5990260243415833\n          },\n          {\n            \"X\": 0.051883045583963394,\n            \"Y\": 0.5989540219306946\n          }\n        ]\n      },\n      \"Id\": \"6c3bfe04-7aaf-4be0-96b0-bc3c2bf9b974\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8759536743164,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006240266840904951,\n          \"Height\": 0.00792025588452816,\n          \"Left\": 0.13938474655151367,\n          \"Top\": 0.5908544063568115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13938948512077332,\n            \"Y\": 0.5908544063568115\n          },\n          {\n            \"X\": 0.1456250250339508,\n            \"Y\": 0.5908636450767517\n          },\n          {\n            \"X\": 0.14562031626701355,\n            \"Y\": 0.5987746715545654\n          },\n          {\n            \"X\": 0.13938474655151367,\n            \"Y\": 0.5987654328346252\n          }\n        ]\n      },\n      \"Id\": \"fc81f53e-ef9f-4058-8658-87b0c216b23d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84979248046875,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03168423846364021,\n          \"Height\": 0.00841780100017786,\n          \"Left\": 0.17005884647369385,\n          \"Top\": 0.589033842086792\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17006373405456543,\n            \"Y\": 0.589033842086792\n          },\n          {\n            \"X\": 0.20174308121204376,\n            \"Y\": 0.5890805721282959\n          },\n          {\n            \"X\": 0.20173829793930054,\n            \"Y\": 0.5974516272544861\n          },\n          {\n            \"X\": 0.17005884647369385,\n            \"Y\": 0.5974048376083374\n          }\n        ]\n      },\n      \"Id\": \"42d292e4-43b7-425a-bddd-4e417643984a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72821807861328,\n      \"Text\": \"30.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032911673188209534,\n          \"Height\": 0.008564823307096958,\n          \"Left\": 0.3762516975402832,\n          \"Top\": 0.5851816534996033\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.37625589966773987,\n            \"Y\": 0.5851816534996033\n          },\n          {\n            \"X\": 0.40916335582733154,\n            \"Y\": 0.5852301120758057\n          },\n          {\n            \"X\": 0.40915927290916443,\n            \"Y\": 0.5937464833259583\n          },\n          {\n            \"X\": 0.3762516975402832,\n            \"Y\": 0.5936978459358215\n          }\n        ]\n      },\n      \"Id\": \"06698294-3059-458c-81e2-98d4a943e875\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7515869140625,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006283822935074568,\n          \"Height\": 0.007733484264463186,\n          \"Left\": 0.24689766764640808,\n          \"Top\": 0.5907854437828064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24690192937850952,\n            \"Y\": 0.5907854437828064\n          },\n          {\n            \"X\": 0.25318148732185364,\n            \"Y\": 0.5907947421073914\n          },\n          {\n            \"X\": 0.2531772553920746,\n            \"Y\": 0.5985189080238342\n          },\n          {\n            \"X\": 0.24689766764640808,\n            \"Y\": 0.598509669303894\n          }\n        ]\n      },\n      \"Id\": \"f54805d5-903a-406d-bdca-70f0c49ab8e5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8775405883789,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032559968531131744,\n          \"Height\": 0.008420450612902641,\n          \"Left\": 0.27198946475982666,\n          \"Top\": 0.5902833342552185\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2719939947128296,\n            \"Y\": 0.5902833342552185\n          },\n          {\n            \"X\": 0.3045494556427002,\n            \"Y\": 0.5903313755989075\n          },\n          {\n            \"X\": 0.3045450448989868,\n            \"Y\": 0.5987037420272827\n          },\n          {\n            \"X\": 0.27198946475982666,\n            \"Y\": 0.598655641078949\n          }\n        ]\n      },\n      \"Id\": \"74057eca-80de-4f75-8b7c-744a756be8a5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72956848144531,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006789215374737978,\n          \"Height\": 0.007596552837640047,\n          \"Left\": 0.3541618883609772,\n          \"Top\": 0.5905881524085999\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3541657030582428,\n            \"Y\": 0.5905881524085999\n          },\n          {\n            \"X\": 0.36095109581947327,\n            \"Y\": 0.5905981659889221\n          },\n          {\n            \"X\": 0.36094731092453003,\n            \"Y\": 0.5981847047805786\n          },\n          {\n            \"X\": 0.3541618883609772,\n            \"Y\": 0.5981746315956116\n          }\n        ]\n      },\n      \"Id\": \"9b2ecf16-261e-4137-880e-1f14f478b6e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.89791107177734,\n      \"Text\": \"17.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015645695850253105,\n          \"Height\": 0.007732284255325794,\n          \"Left\": 0.6932933926582336,\n          \"Top\": 0.5905819535255432\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6932961344718933,\n            \"Y\": 0.5905819535255432\n          },\n          {\n            \"X\": 0.7089390754699707,\n            \"Y\": 0.5906050205230713\n          },\n          {\n            \"X\": 0.7089363932609558,\n            \"Y\": 0.5983142256736755\n          },\n          {\n            \"X\": 0.6932933926582336,\n            \"Y\": 0.5982910990715027\n          }\n        ]\n      },\n      \"Id\": \"b4c8c1ae-9a3f-4541-bb34-f96763ea0a1d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94210815429688,\n      \"Text\": \"Projected\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0504564568400383,\n          \"Height\": 0.009660657495260239,\n          \"Left\": 0.714314341545105,\n          \"Top\": 0.5903936624526978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7143176794052124,\n            \"Y\": 0.5903936624526978\n          },\n          {\n            \"X\": 0.7647708058357239,\n            \"Y\": 0.5904681086540222\n          },\n          {\n            \"X\": 0.7647677063941956,\n            \"Y\": 0.6000543236732483\n          },\n          {\n            \"X\": 0.714314341545105,\n            \"Y\": 0.5999796986579895\n          }\n        ]\n      },\n      \"Id\": \"ff81b78b-56df-4a97-bbfd-f182afd817fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9692611694336,\n      \"Text\": \"amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04138736054301262,\n          \"Height\": 0.007357596419751644,\n          \"Left\": 0.7691395878791809,\n          \"Top\": 0.5911368727684021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7691419124603271,\n            \"Y\": 0.5911368727684021\n          },\n          {\n            \"X\": 0.8105269074440002,\n            \"Y\": 0.5911979079246521\n          },\n          {\n            \"X\": 0.8105247020721436,\n            \"Y\": 0.5984944701194763\n          },\n          {\n            \"X\": 0.7691395878791809,\n            \"Y\": 0.598433256149292\n          }\n        ]\n      },\n      \"Id\": \"407d7612-670d-4e4c-ba53-d66b2dc6e585\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61357116699219,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011680670082569122,\n          \"Height\": 0.00788078736513853,\n          \"Left\": 0.8143529295921326,\n          \"Top\": 0.5905459523200989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8143553137779236,\n            \"Y\": 0.5905459523200989\n          },\n          {\n            \"X\": 0.8260336518287659,\n            \"Y\": 0.590563178062439\n          },\n          {\n            \"X\": 0.8260312676429749,\n            \"Y\": 0.5984267592430115\n          },\n          {\n            \"X\": 0.8143529295921326,\n            \"Y\": 0.5984094738960266\n          }\n        ]\n      },\n      \"Id\": \"a2ec3405-8fca-4c9c-a005-41b07c14f36c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97137451171875,\n      \"Text\": \"next\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02387571707367897,\n          \"Height\": 0.007190629839897156,\n          \"Left\": 0.8297895789146423,\n          \"Top\": 0.5913266539573669\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8297917246818542,\n            \"Y\": 0.5913266539573669\n          },\n          {\n            \"X\": 0.8536653518676758,\n            \"Y\": 0.5913618803024292\n          },\n          {\n            \"X\": 0.8536632657051086,\n            \"Y\": 0.5985172986984253\n          },\n          {\n            \"X\": 0.8297895789146423,\n            \"Y\": 0.5984819531440735\n          }\n        ]\n      },\n      \"Id\": \"59d486ed-35c1-4398-bb15-fdbbba94da63\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70036315917969,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0198451466858387,\n          \"Height\": 0.0075403982773423195,\n          \"Left\": 0.8572417497634888,\n          \"Top\": 0.5925227999687195\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8572438955307007,\n            \"Y\": 0.5925227999687195\n          },\n          {\n            \"X\": 0.8770869374275208,\n            \"Y\": 0.5925520658493042\n          },\n          {\n            \"X\": 0.8770848512649536,\n            \"Y\": 0.6000632047653198\n          },\n          {\n            \"X\": 0.8572417497634888,\n            \"Y\": 0.6000338196754456\n          }\n        ]\n      },\n      \"Id\": \"85626070-b9ff-4883-aef3-19d2db26ee86\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96148681640625,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043934307992458344,\n          \"Height\": 0.00803838949650526,\n          \"Left\": 0.8808434009552002,\n          \"Top\": 0.5904561281204224\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8808455467224121,\n            \"Y\": 0.5904561281204224\n          },\n          {\n            \"X\": 0.9247776865959167,\n            \"Y\": 0.590520977973938\n          },\n          {\n            \"X\": 0.9247756600379944,\n            \"Y\": 0.5984945297241211\n          },\n          {\n            \"X\": 0.8808434009552002,\n            \"Y\": 0.5984295606613159\n          }\n        ]\n      },\n      \"Id\": \"4059362e-62d2-4554-94ec-ac697e62b9b0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70548248291016,\n      \"Text\": \"Quarters\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0460071861743927,\n          \"Height\": 0.00761609710752964,\n          \"Left\": 0.461988240480423,\n          \"Top\": 0.5996404886245728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46199166774749756,\n            \"Y\": 0.5996404886245728\n          },\n          {\n            \"X\": 0.5079954266548157,\n            \"Y\": 0.5997084975242615\n          },\n          {\n            \"X\": 0.507992148399353,\n            \"Y\": 0.6072565317153931\n          },\n          {\n            \"X\": 0.461988240480423,\n            \"Y\": 0.60718834400177\n          }\n        ]\n      },\n      \"Id\": \"3aa172d9-e0e5-4f0f-93d9-7e403bc4fbce\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.52610778808594,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006405787542462349,\n          \"Height\": 0.007476863916963339,\n          \"Left\": 0.5692138075828552,\n          \"Top\": 0.599517285823822\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5692168474197388,\n            \"Y\": 0.599517285823822\n          },\n          {\n            \"X\": 0.5756195783615112,\n            \"Y\": 0.5995267629623413\n          },\n          {\n            \"X\": 0.5756165385246277,\n            \"Y\": 0.6069941520690918\n          },\n          {\n            \"X\": 0.5692138075828552,\n            \"Y\": 0.6069846749305725\n          }\n        ]\n      },\n      \"Id\": \"5b90db72-686a-4513-b932-c7bf6c67b37d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89862060546875,\n      \"Text\": \"986\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02230067551136017,\n          \"Height\": 0.008418107405304909,\n          \"Left\": 0.6052896976470947,\n          \"Top\": 0.6025235652923584\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6052929759025574,\n            \"Y\": 0.6025235652923584\n          },\n          {\n            \"X\": 0.6275903582572937,\n            \"Y\": 0.602556586265564\n          },\n          {\n            \"X\": 0.6275871396064758,\n            \"Y\": 0.6109416484832764\n          },\n          {\n            \"X\": 0.6052896976470947,\n            \"Y\": 0.610908567905426\n          }\n        ]\n      },\n      \"Id\": \"8d93735f-17bb-4331-9b88-57ce879641ac\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.11856842041016,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007642690092325211,\n          \"Height\": 0.009530201554298401,\n          \"Left\": 0.7755263447761536,\n          \"Top\": 0.6045122742652893\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7755293846130371,\n            \"Y\": 0.6045122742652893\n          },\n          {\n            \"X\": 0.7831690311431885,\n            \"Y\": 0.6045235991477966\n          },\n          {\n            \"X\": 0.7831659913063049,\n            \"Y\": 0.6140424609184265\n          },\n          {\n            \"X\": 0.7755263447761536,\n            \"Y\": 0.6140311360359192\n          }\n        ]\n      },\n      \"Id\": \"10586b08-ccef-4d55-9ac1-fa7cfc9350c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91162109375,\n      \"Text\": \"5600\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028897715732455254,\n          \"Height\": 0.008447703905403614,\n          \"Left\": 0.7868959903717041,\n          \"Top\": 0.6049597263336182\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7868986129760742,\n            \"Y\": 0.6049597263336182\n          },\n          {\n            \"X\": 0.8157936930656433,\n            \"Y\": 0.6050025224685669\n          },\n          {\n            \"X\": 0.815791130065918,\n            \"Y\": 0.6134074330329895\n          },\n          {\n            \"X\": 0.7868959903717041,\n            \"Y\": 0.6133645176887512\n          }\n        ]\n      },\n      \"Id\": \"d5f409ca-8e55-4f44-8fc2-c7713974401e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.2958755493164,\n      \"Text\": \"Commissions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07096902281045914,\n          \"Height\": 0.008197550661861897,\n          \"Left\": 0.05184777081012726,\n          \"Top\": 0.6213597059249878\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.051852915436029434,\n            \"Y\": 0.6213597059249878\n          },\n          {\n            \"X\": 0.1228167936205864,\n            \"Y\": 0.6214653849601746\n          },\n          {\n            \"X\": 0.12281189113855362,\n            \"Y\": 0.6295572519302368\n          },\n          {\n            \"X\": 0.05184777081012726,\n            \"Y\": 0.629451334476471\n          }\n        ]\n      },\n      \"Id\": \"48e62465-2fea-49f7-a54c-e32ac5820ef2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81147766113281,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006534801330417395,\n          \"Height\": 0.0077490415424108505,\n          \"Left\": 0.13934658467769623,\n          \"Top\": 0.6213086247444153\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13935120403766632,\n            \"Y\": 0.6213086247444153\n          },\n          {\n            \"X\": 0.14588138461112976,\n            \"Y\": 0.6213183403015137\n          },\n          {\n            \"X\": 0.14587678015232086,\n            \"Y\": 0.6290576457977295\n          },\n          {\n            \"X\": 0.13934658467769623,\n            \"Y\": 0.6290479302406311\n          }\n        ]\n      },\n      \"Id\": \"962a6689-11c3-48f2-84a3-ea3dad26a157\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83078002929688,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032977648079395294,\n          \"Height\": 0.008424871601164341,\n          \"Left\": 0.17258866131305695,\n          \"Top\": 0.6199641823768616\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17259353399276733,\n            \"Y\": 0.6199641823768616\n          },\n          {\n            \"X\": 0.20556630194187164,\n            \"Y\": 0.6200132369995117\n          },\n          {\n            \"X\": 0.2055615335702896,\n            \"Y\": 0.6283890604972839\n          },\n          {\n            \"X\": 0.17258866131305695,\n            \"Y\": 0.6283398270606995\n          }\n        ]\n      },\n      \"Id\": \"8c7a80bf-b31b-4ed2-a1f5-511e587dbd16\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77113342285156,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006371797528117895,\n          \"Height\": 0.007811880204826593,\n          \"Left\": 0.24674516916275024,\n          \"Top\": 0.6211268305778503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24674946069717407,\n            \"Y\": 0.6211268305778503\n          },\n          {\n            \"X\": 0.2531169652938843,\n            \"Y\": 0.6211363077163696\n          },\n          {\n            \"X\": 0.25311270356178284,\n            \"Y\": 0.6289386749267578\n          },\n          {\n            \"X\": 0.24674516916275024,\n            \"Y\": 0.6289291977882385\n          }\n        ]\n      },\n      \"Id\": \"7769e1e2-55ea-44b8-8541-c8815654ca3c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87334442138672,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03291812911629677,\n          \"Height\": 0.008307991549372673,\n          \"Left\": 0.2696099877357483,\n          \"Top\": 0.6192965507507324\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.26961445808410645,\n            \"Y\": 0.6192965507507324\n          },\n          {\n            \"X\": 0.30252811312675476,\n            \"Y\": 0.619345486164093\n          },\n          {\n            \"X\": 0.30252379179000854,\n            \"Y\": 0.6276045441627502\n          },\n          {\n            \"X\": 0.2696099877357483,\n            \"Y\": 0.6275554299354553\n          }\n        ]\n      },\n      \"Id\": \"bcf4fc46-0eef-48f2-a531-79c75f6700e1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84425354003906,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00657517509534955,\n          \"Height\": 0.007567297667264938,\n          \"Left\": 0.35425692796707153,\n          \"Top\": 0.6212207078933716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35426074266433716,\n            \"Y\": 0.6212207078933716\n          },\n          {\n            \"X\": 0.3608321249485016,\n            \"Y\": 0.6212304830551147\n          },\n          {\n            \"X\": 0.36082834005355835,\n            \"Y\": 0.6287879943847656\n          },\n          {\n            \"X\": 0.35425692796707153,\n            \"Y\": 0.6287781596183777\n          }\n        ]\n      },\n      \"Id\": \"d029dc0d-03bc-405c-9312-fb4f3093ed38\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73922729492188,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03178597241640091,\n          \"Height\": 0.008465203456580639,\n          \"Left\": 0.38051217794418335,\n          \"Top\": 0.6183637976646423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3805163502693176,\n            \"Y\": 0.6183637976646423\n          },\n          {\n            \"X\": 0.41229817271232605,\n            \"Y\": 0.6184110641479492\n          },\n          {\n            \"X\": 0.4122941493988037,\n            \"Y\": 0.6268290281295776\n          },\n          {\n            \"X\": 0.38051217794418335,\n            \"Y\": 0.6267816424369812\n          }\n        ]\n      },\n      \"Id\": \"dfdf65b9-3377-4b00-8091-a11db21c388a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.15426635742188,\n      \"Text\": \"Pro\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018273787572979927,\n          \"Height\": 0.007866639643907547,\n          \"Left\": 0.46249160170555115,\n          \"Top\": 0.6209745407104492\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46249517798423767,\n            \"Y\": 0.6209745407104492\n          },\n          {\n            \"X\": 0.48076537251472473,\n            \"Y\": 0.6210017800331116\n          },\n          {\n            \"X\": 0.480761855840683,\n            \"Y\": 0.62884122133255\n          },\n          {\n            \"X\": 0.46249160170555115,\n            \"Y\": 0.6288139224052429\n          }\n        ]\n      },\n      \"Id\": \"3577110f-4604-4429-aef1-99f40a7926ba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75467681884766,\n      \"Text\": \"Pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019510909914970398,\n          \"Height\": 0.00922590121626854,\n          \"Left\": 0.4855366349220276,\n          \"Top\": 0.6210052371025085\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4855407178401947,\n            \"Y\": 0.6210052371025085\n          },\n          {\n            \"X\": 0.5050475597381592,\n            \"Y\": 0.6210342645645142\n          },\n          {\n            \"X\": 0.5050435066223145,\n            \"Y\": 0.6302311420440674\n          },\n          {\n            \"X\": 0.4855366349220276,\n            \"Y\": 0.630202054977417\n          }\n        ]\n      },\n      \"Id\": \"3330b7e3-c7f3-462f-a20a-d3fb29c3d349\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63226318359375,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006569019053131342,\n          \"Height\": 0.0076403249986469746,\n          \"Left\": 0.5691277980804443,\n          \"Top\": 0.6210506558418274\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5691309571266174,\n            \"Y\": 0.6210506558418274\n          },\n          {\n            \"X\": 0.5756968259811401,\n            \"Y\": 0.6210604310035706\n          },\n          {\n            \"X\": 0.5756937265396118,\n            \"Y\": 0.6286910176277161\n          },\n          {\n            \"X\": 0.5691277980804443,\n            \"Y\": 0.6286812424659729\n          }\n        ]\n      },\n      \"Id\": \"43cb091e-e13b-4e8e-9000-df0f8702f439\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97032165527344,\n      \"Text\": \"123\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0213675145059824,\n          \"Height\": 0.008473580703139305,\n          \"Left\": 0.6040246486663818,\n          \"Top\": 0.6216451525688171\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6040279865264893,\n            \"Y\": 0.6216451525688171\n          },\n          {\n            \"X\": 0.6253921389579773,\n            \"Y\": 0.6216769218444824\n          },\n          {\n            \"X\": 0.6253889203071594,\n            \"Y\": 0.630118727684021\n          },\n          {\n            \"X\": 0.6040246486663818,\n            \"Y\": 0.6300868391990662\n          }\n        ]\n      },\n      \"Id\": \"d81f9eb9-2de5-4770-a0e8-6cc22bd399b1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 79.20813751220703,\n      \"Text\": \"18.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015210804529488087,\n          \"Height\": 0.007811426650732756,\n          \"Left\": 0.6939765810966492,\n          \"Top\": 0.620820939540863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6939793825149536,\n            \"Y\": 0.620820939540863\n          },\n          {\n            \"X\": 0.709187388420105,\n            \"Y\": 0.6208435297012329\n          },\n          {\n            \"X\": 0.7091847062110901,\n            \"Y\": 0.6286323666572571\n          },\n          {\n            \"X\": 0.6939765810966492,\n            \"Y\": 0.6286096572875977\n          }\n        ]\n      },\n      \"Id\": \"4ca10ad8-36b6-4a9d-91c1-3b2dc21371f0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87937927246094,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025322481989860535,\n          \"Height\": 0.008068348281085491,\n          \"Left\": 0.7145982384681702,\n          \"Top\": 0.6206972002983093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7146010398864746,\n            \"Y\": 0.6206972002983093\n          },\n          {\n            \"X\": 0.7399207353591919,\n            \"Y\": 0.6207349300384521\n          },\n          {\n            \"X\": 0.739918053150177,\n            \"Y\": 0.6287655830383301\n          },\n          {\n            \"X\": 0.7145982384681702,\n            \"Y\": 0.6287277936935425\n          }\n        ]\n      },\n      \"Id\": \"5522b1d5-ceee-4c68-baf1-e4724dacc43c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88418579101562,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011597439646720886,\n          \"Height\": 0.007881210185587406,\n          \"Left\": 0.7437633872032166,\n          \"Top\": 0.6207635402679443\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7437660098075867,\n            \"Y\": 0.6207635402679443\n          },\n          {\n            \"X\": 0.7553608417510986,\n            \"Y\": 0.6207807660102844\n          },\n          {\n            \"X\": 0.7553582191467285,\n            \"Y\": 0.6286447048187256\n          },\n          {\n            \"X\": 0.7437633872032166,\n            \"Y\": 0.6286274194717407\n          }\n        ]\n      },\n      \"Id\": \"e6c04eb7-3ead-4436-b741-396fb80c12d0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90775299072266,\n      \"Text\": \"applicant's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0576271191239357,\n          \"Height\": 0.009058428928256035,\n          \"Left\": 0.7591442465782166,\n          \"Top\": 0.6211463809013367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7591471672058105,\n            \"Y\": 0.6211463809013367\n          },\n          {\n            \"X\": 0.8167713284492493,\n            \"Y\": 0.6212321519851685\n          },\n          {\n            \"X\": 0.8167686462402344,\n            \"Y\": 0.6302048563957214\n          },\n          {\n            \"X\": 0.7591442465782166,\n            \"Y\": 0.6301188468933105\n          }\n        ]\n      },\n      \"Id\": \"8a163271-b014-48a2-8ecb-576f4b5cdcb8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86940002441406,\n      \"Text\": \"last\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01904481090605259,\n          \"Height\": 0.007835286669433117,\n          \"Left\": 0.8207929134368896,\n          \"Top\": 0.6208965182304382\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8207952976226807,\n            \"Y\": 0.6208965182304382\n          },\n          {\n            \"X\": 0.8398377299308777,\n            \"Y\": 0.6209248900413513\n          },\n          {\n            \"X\": 0.8398354649543762,\n            \"Y\": 0.6287317872047424\n          },\n          {\n            \"X\": 0.8207929134368896,\n            \"Y\": 0.6287034153938293\n          }\n        ]\n      },\n      \"Id\": \"bfe6b426-e390-430a-9743-2c5961cb850c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80485534667969,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020059805363416672,\n          \"Height\": 0.007885773666203022,\n          \"Left\": 0.8436501026153564,\n          \"Top\": 0.6226322650909424\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8436524271965027,\n            \"Y\": 0.6226322650909424\n          },\n          {\n            \"X\": 0.8637099266052246,\n            \"Y\": 0.6226621270179749\n          },\n          {\n            \"X\": 0.8637077212333679,\n            \"Y\": 0.6305180788040161\n          },\n          {\n            \"X\": 0.8436501026153564,\n            \"Y\": 0.6304880976676941\n          }\n        ]\n      },\n      \"Id\": \"53f34c3c-a8f5-4d82-a214-85288e20c309\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94055938720703,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043913282454013824,\n          \"Height\": 0.008015844970941544,\n          \"Left\": 0.8675379157066345,\n          \"Top\": 0.6209509968757629\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.867540180683136,\n            \"Y\": 0.6209509968757629\n          },\n          {\n            \"X\": 0.9114512205123901,\n            \"Y\": 0.6210163831710815\n          },\n          {\n            \"X\": 0.911449134349823,\n            \"Y\": 0.6289668679237366\n          },\n          {\n            \"X\": 0.8675379157066345,\n            \"Y\": 0.6289013624191284\n          }\n        ]\n      },\n      \"Id\": \"4a4a3464-3305-4b05-93c1-710f13977d1f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86107635498047,\n      \"Text\": \"09/08/2006\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06581968814134598,\n          \"Height\": 0.008549900725483894,\n          \"Left\": 0.7770389318466187,\n          \"Top\": 0.6353018879890442\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7770416140556335,\n            \"Y\": 0.6353018879890442\n          },\n          {\n            \"X\": 0.842858612537384,\n            \"Y\": 0.6354002356529236\n          },\n          {\n            \"X\": 0.8428561687469482,\n            \"Y\": 0.6438517570495605\n          },\n          {\n            \"X\": 0.7770389318466187,\n            \"Y\": 0.643753170967102\n          }\n        ]\n      },\n      \"Id\": \"45979ce2-5910-4bc9-8dd8-f16321c2d4be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.892333984375,\n      \"Text\": \"Overseas\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048663146793842316,\n          \"Height\": 0.0077612618915736675,\n          \"Left\": 0.46182507276535034,\n          \"Top\": 0.6410828232765198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4618285894393921,\n            \"Y\": 0.6410828232765198\n          },\n          {\n            \"X\": 0.5104882121086121,\n            \"Y\": 0.6411556601524353\n          },\n          {\n            \"X\": 0.5104848742485046,\n            \"Y\": 0.6488440632820129\n          },\n          {\n            \"X\": 0.46182507276535034,\n            \"Y\": 0.6487710475921631\n          }\n        ]\n      },\n      \"Id\": \"01f555f2-648c-4149-a6e4-79f8610da5e0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.1811294555664,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011564705520868301,\n          \"Height\": 0.006215048488229513,\n          \"Left\": 0.514443039894104,\n          \"Top\": 0.6426045894622803\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5144457817077637,\n            \"Y\": 0.6426045894622803\n          },\n          {\n            \"X\": 0.5260077714920044,\n            \"Y\": 0.6426219344139099\n          },\n          {\n            \"X\": 0.5260050892829895,\n            \"Y\": 0.648819625377655\n          },\n          {\n            \"X\": 0.514443039894104,\n            \"Y\": 0.6488022804260254\n          }\n        ]\n      },\n      \"Id\": \"c8a9300f-f182-4f8d-8dec-5a1047aaf9c4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75513458251953,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034214410930871964,\n          \"Height\": 0.008098340593278408,\n          \"Left\": 0.05209069699048996,\n          \"Top\": 0.6515802145004272\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05209581181406975,\n            \"Y\": 0.6515802145004272\n          },\n          {\n            \"X\": 0.08630510419607162,\n            \"Y\": 0.6516315937042236\n          },\n          {\n            \"X\": 0.08630010485649109,\n            \"Y\": 0.65967857837677\n          },\n          {\n            \"X\": 0.05209069699048996,\n            \"Y\": 0.6596270799636841\n          }\n        ]\n      },\n      \"Id\": \"fe9e0552-6d79-4ad3-a855-b1dc3ed84b7d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79175567626953,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006170398555696011,\n          \"Height\": 0.007676032371819019,\n          \"Left\": 0.13926801085472107,\n          \"Top\": 0.6513897776603699\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13927260041236877,\n            \"Y\": 0.6513897776603699\n          },\n          {\n            \"X\": 0.14543841779232025,\n            \"Y\": 0.6513990163803101\n          },\n          {\n            \"X\": 0.14543385803699493,\n            \"Y\": 0.659065842628479\n          },\n          {\n            \"X\": 0.13926801085472107,\n            \"Y\": 0.659056544303894\n          }\n        ]\n      },\n      \"Id\": \"253a5c0c-0874-4b60-a47a-e32322ad1cd2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90885925292969,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03337864205241203,\n          \"Height\": 0.008377701044082642,\n          \"Left\": 0.17235583066940308,\n          \"Top\": 0.6502684950828552\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17236068844795227,\n            \"Y\": 0.6502684950828552\n          },\n          {\n            \"X\": 0.2057344764471054,\n            \"Y\": 0.6503186225891113\n          },\n          {\n            \"X\": 0.20572973787784576,\n            \"Y\": 0.6586462259292603\n          },\n          {\n            \"X\": 0.17235583066940308,\n            \"Y\": 0.6585959792137146\n          }\n        ]\n      },\n      \"Id\": \"1c7ed4d6-24db-4a73-b198-4d324fedc40b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7799072265625,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00634154723957181,\n          \"Height\": 0.0076589398086071014,\n          \"Left\": 0.24662142992019653,\n          \"Top\": 0.651431143283844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2466256320476532,\n            \"Y\": 0.651431143283844\n          },\n          {\n            \"X\": 0.25296297669410706,\n            \"Y\": 0.6514406800270081\n          },\n          {\n            \"X\": 0.2529587745666504,\n            \"Y\": 0.6590901017189026\n          },\n          {\n            \"X\": 0.24662142992019653,\n            \"Y\": 0.6590805053710938\n          }\n        ]\n      },\n      \"Id\": \"68d1a720-a9d5-4750-9698-069f885275c8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81355285644531,\n      \"Text\": \"20.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03271743655204773,\n          \"Height\": 0.008432149887084961,\n          \"Left\": 0.2737768590450287,\n          \"Top\": 0.6469133496284485\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27378135919570923,\n            \"Y\": 0.6469133496284485\n          },\n          {\n            \"X\": 0.3064942955970764,\n            \"Y\": 0.6469624042510986\n          },\n          {\n            \"X\": 0.30648988485336304,\n            \"Y\": 0.6553454995155334\n          },\n          {\n            \"X\": 0.2737768590450287,\n            \"Y\": 0.655296266078949\n          }\n        ]\n      },\n      \"Id\": \"3c4d50d0-69b7-45af-a91b-659740439c2d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.78624725341797,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00661100260913372,\n          \"Height\": 0.007493280805647373,\n          \"Left\": 0.35418665409088135,\n          \"Top\": 0.6513409614562988\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3541904091835022,\n            \"Y\": 0.6513409614562988\n          },\n          {\n            \"X\": 0.360797643661499,\n            \"Y\": 0.6513508558273315\n          },\n          {\n            \"X\": 0.3607938885688782,\n            \"Y\": 0.6588342189788818\n          },\n          {\n            \"X\": 0.35418665409088135,\n            \"Y\": 0.6588242650032043\n          }\n        ]\n      },\n      \"Id\": \"536c83a8-4ff2-4b8b-9631-fd5ce9491046\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74756622314453,\n      \"Text\": \"15.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032267943024635315,\n          \"Height\": 0.00856053177267313,\n          \"Left\": 0.3838583827018738,\n          \"Top\": 0.6469407081604004\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38386255502700806,\n            \"Y\": 0.6469407081604004\n          },\n          {\n            \"X\": 0.4161263108253479,\n            \"Y\": 0.646989107131958\n          },\n          {\n            \"X\": 0.4161222577095032,\n            \"Y\": 0.6555012464523315\n          },\n          {\n            \"X\": 0.3838583827018738,\n            \"Y\": 0.6554527282714844\n          }\n        ]\n      },\n      \"Id\": \"9a10055a-4b5e-4d6b-b65a-0248ccc295be\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65752410888672,\n      \"Text\": \"Combat\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04192671552300453,\n          \"Height\": 0.008013003505766392,\n          \"Left\": 0.4623778760433197,\n          \"Top\": 0.6512777209281921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.462381511926651,\n            \"Y\": 0.6512777209281921\n          },\n          {\n            \"X\": 0.5043045878410339,\n            \"Y\": 0.6513407230377197\n          },\n          {\n            \"X\": 0.504301130771637,\n            \"Y\": 0.6592907309532166\n          },\n          {\n            \"X\": 0.4623778760433197,\n            \"Y\": 0.6592276096343994\n          }\n        ]\n      },\n      \"Id\": \"784df844-97c6-4351-a48b-de2cb65c28dd\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83407592773438,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006347160320729017,\n          \"Height\": 0.007688824087381363,\n          \"Left\": 0.5693024396896362,\n          \"Top\": 0.6513631343841553\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5693055987358093,\n            \"Y\": 0.6513631343841553\n          },\n          {\n            \"X\": 0.575649619102478,\n            \"Y\": 0.6513726711273193\n          },\n          {\n            \"X\": 0.5756464600563049,\n            \"Y\": 0.6590519547462463\n          },\n          {\n            \"X\": 0.5693024396896362,\n            \"Y\": 0.6590424180030823\n          }\n        ]\n      },\n      \"Id\": \"f174c198-7b59-4e7e-bbc2-adbf31336351\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96173858642578,\n      \"Text\": \"645\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022296780720353127,\n          \"Height\": 0.008555342443287373,\n          \"Left\": 0.6070799231529236,\n          \"Top\": 0.6481133103370667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.607083261013031,\n            \"Y\": 0.6481133103370667\n          },\n          {\n            \"X\": 0.6293767094612122,\n            \"Y\": 0.6481468081474304\n          },\n          {\n            \"X\": 0.6293734312057495,\n            \"Y\": 0.6566686630249023\n          },\n          {\n            \"X\": 0.6070799231529236,\n            \"Y\": 0.6566351652145386\n          }\n        ]\n      },\n      \"Id\": \"6505d8c8-2153-4c0b-ab8b-48db6d292e14\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.94320678710938,\n      \"Text\": \"19.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015332910232245922,\n          \"Height\": 0.007874970324337482,\n          \"Left\": 0.6942378282546997,\n          \"Top\": 0.651260495185852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6942406296730042,\n            \"Y\": 0.651260495185852\n          },\n          {\n            \"X\": 0.7095707654953003,\n            \"Y\": 0.6512835621833801\n          },\n          {\n            \"X\": 0.7095680236816406,\n            \"Y\": 0.6591354608535767\n          },\n          {\n            \"X\": 0.6942378282546997,\n            \"Y\": 0.6591123938560486\n          }\n        ]\n      },\n      \"Id\": \"b4fbe435-c7eb-4742-a4ed-6ab39a2cda51\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95674133300781,\n      \"Text\": \"Amount\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04453517124056816,\n          \"Height\": 0.007827123627066612,\n          \"Left\": 0.7140309810638428,\n          \"Top\": 0.6513564586639404\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7140336632728577,\n            \"Y\": 0.6513564586639404\n          },\n          {\n            \"X\": 0.75856614112854,\n            \"Y\": 0.6514233350753784\n          },\n          {\n            \"X\": 0.7585635781288147,\n            \"Y\": 0.6591835618019104\n          },\n          {\n            \"X\": 0.7140309810638428,\n            \"Y\": 0.6591165661811829\n          }\n        ]\n      },\n      \"Id\": \"7f650c99-9e20-4d96-8460-6c1c22a9aaf2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88819885253906,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01172190997749567,\n          \"Height\": 0.007759012747555971,\n          \"Left\": 0.7621303200721741,\n          \"Top\": 0.6512423157691956\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7621328830718994,\n            \"Y\": 0.6512423157691956\n          },\n          {\n            \"X\": 0.7738522887229919,\n            \"Y\": 0.6512598991394043\n          },\n          {\n            \"X\": 0.7738497853279114,\n            \"Y\": 0.659001350402832\n          },\n          {\n            \"X\": 0.7621303200721741,\n            \"Y\": 0.6589837074279785\n          }\n        ]\n      },\n      \"Id\": \"f13fa00a-9b6a-4cf0-80d6-58c8d5eee457\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89412689208984,\n      \"Text\": \"last\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01954588107764721,\n          \"Height\": 0.007893439382314682,\n          \"Left\": 0.7773228883743286,\n          \"Top\": 0.6514222621917725\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7773253917694092,\n            \"Y\": 0.6514222621917725\n          },\n          {\n            \"X\": 0.7968687415122986,\n            \"Y\": 0.651451587677002\n          },\n          {\n            \"X\": 0.7968662977218628,\n            \"Y\": 0.6593157052993774\n          },\n          {\n            \"X\": 0.7773228883743286,\n            \"Y\": 0.6592862606048584\n          }\n        ]\n      },\n      \"Id\": \"dabede3e-111d-47ff-a540-1132c94f6848\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76565551757812,\n      \"Text\": \"pay\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.019501017406582832,\n          \"Height\": 0.007884511724114418,\n          \"Left\": 0.8006539940834045,\n          \"Top\": 0.652930736541748\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8006563782691956,\n            \"Y\": 0.652930736541748\n          },\n          {\n            \"X\": 0.8201550245285034,\n            \"Y\": 0.6529600620269775\n          },\n          {\n            \"X\": 0.8201526403427124,\n            \"Y\": 0.6608152985572815\n          },\n          {\n            \"X\": 0.8006539940834045,\n            \"Y\": 0.6607859134674072\n          }\n        ]\n      },\n      \"Id\": \"3e077c65-172d-457a-8f63-67b822243891\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92256164550781,\n      \"Text\": \"increase\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04367132857441902,\n          \"Height\": 0.00801355391740799,\n          \"Left\": 0.8241379261016846,\n          \"Top\": 0.6510301828384399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8241403102874756,\n            \"Y\": 0.6510301828384399\n          },\n          {\n            \"X\": 0.8678092360496521,\n            \"Y\": 0.6510957479476929\n          },\n          {\n            \"X\": 0.8678070306777954,\n            \"Y\": 0.6590437293052673\n          },\n          {\n            \"X\": 0.8241379261016846,\n            \"Y\": 0.6589779853820801\n          }\n        ]\n      },\n      \"Id\": \"15dd6843-1487-4033-95d6-767c0dd43b64\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.64490509033203,\n      \"Text\": \"Variable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.043668877333402634,\n          \"Height\": 0.008145417086780071,\n          \"Left\": 0.4615289866924286,\n          \"Top\": 0.6700921654701233\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46153268218040466,\n            \"Y\": 0.6700921654701233\n          },\n          {\n            \"X\": 0.5051978230476379,\n            \"Y\": 0.6701580882072449\n          },\n          {\n            \"X\": 0.5051943063735962,\n            \"Y\": 0.6782375574111938\n          },\n          {\n            \"X\": 0.4615289866924286,\n            \"Y\": 0.6781714558601379\n          }\n        ]\n      },\n      \"Id\": \"0fcd7c1f-fe75-4c8f-8c3e-93990dcfeb24\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90717315673828,\n      \"Text\": \"Housing\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04436475783586502,\n          \"Height\": 0.009782099165022373,\n          \"Left\": 0.5093076825141907,\n          \"Top\": 0.67017662525177\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5093119144439697,\n            \"Y\": 0.67017662525177\n          },\n          {\n            \"X\": 0.5536724328994751,\n            \"Y\": 0.6702436208724976\n          },\n          {\n            \"X\": 0.5536683797836304,\n            \"Y\": 0.679958701133728\n          },\n          {\n            \"X\": 0.5093076825141907,\n            \"Y\": 0.6798915266990662\n          }\n        ]\n      },\n      \"Id\": \"d1c8c860-eb8a-49a6-8556-339f47df8afa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.5767593383789,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.007895514369010925,\n          \"Height\": 0.009464148432016373,\n          \"Left\": 0.7765133380889893,\n          \"Top\": 0.6717118620872498\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.776516318321228,\n            \"Y\": 0.6717118620872498\n          },\n          {\n            \"X\": 0.7844088673591614,\n            \"Y\": 0.6717237830162048\n          },\n          {\n            \"X\": 0.7844058275222778,\n            \"Y\": 0.6811760067939758\n          },\n          {\n            \"X\": 0.7765133380889893,\n            \"Y\": 0.681164026260376\n          }\n        ]\n      },\n      \"Id\": \"e629cb75-4909-4ecc-a4ac-8ec23321ffe3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93360900878906,\n      \"Text\": \"4800\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03001144900918007,\n          \"Height\": 0.008368675597012043,\n          \"Left\": 0.7870869636535645,\n          \"Top\": 0.6722638607025146\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7870895862579346,\n            \"Y\": 0.6722638607025146\n          },\n          {\n            \"X\": 0.8170983791351318,\n            \"Y\": 0.672309160232544\n          },\n          {\n            \"X\": 0.8170958757400513,\n            \"Y\": 0.6806325316429138\n          },\n          {\n            \"X\": 0.7870869636535645,\n            \"Y\": 0.6805870532989502\n          }\n        ]\n      },\n      \"Id\": \"3f5f1d2e-7bb0-4a95-a1cb-a921842348d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85657501220703,\n      \"Text\": \"Total\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027747726067900658,\n          \"Height\": 0.00800800509750843,\n          \"Left\": 0.05158679187297821,\n          \"Top\": 0.6818933486938477\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05159185826778412,\n            \"Y\": 0.6818933486938477\n          },\n          {\n            \"X\": 0.07933451980352402,\n            \"Y\": 0.6819354295730591\n          },\n          {\n            \"X\": 0.07932955026626587,\n            \"Y\": 0.6899013519287109\n          },\n          {\n            \"X\": 0.05158679187297821,\n            \"Y\": 0.6898592114448547\n          }\n        ]\n      },\n      \"Id\": \"2d1bea94-5ec2-4c65-afbd-64ac907b00df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.49530029296875,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005985861644148827,\n          \"Height\": 0.007561259437352419,\n          \"Left\": 0.13933520019054413,\n          \"Top\": 0.6819791197776794\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13933971524238586,\n            \"Y\": 0.6819791197776794\n          },\n          {\n            \"X\": 0.1453210562467575,\n            \"Y\": 0.6819881796836853\n          },\n          {\n            \"X\": 0.14531655609607697,\n            \"Y\": 0.6895403861999512\n          },\n          {\n            \"X\": 0.13933520019054413,\n            \"Y\": 0.6895313262939453\n          }\n        ]\n      },\n      \"Id\": \"6f28f120-dbe6-416e-bb81-0bf5b611b957\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.06056213378906,\n      \"Text\": \"70.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03697541728615761,\n          \"Height\": 0.009350457228720188,\n          \"Left\": 0.14641253650188446,\n          \"Top\": 0.6780096292495728\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14641806483268738,\n            \"Y\": 0.6780096292495728\n          },\n          {\n            \"X\": 0.18338795006275177,\n            \"Y\": 0.6780655980110168\n          },\n          {\n            \"X\": 0.1833825707435608,\n            \"Y\": 0.6873600482940674\n          },\n          {\n            \"X\": 0.14641253650188446,\n            \"Y\": 0.6873039603233337\n          }\n        ]\n      },\n      \"Id\": \"67480bb1-cd1d-4b57-82d4-82c3bf6288e7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.72470092773438,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.006174716632813215,\n          \"Height\": 0.008066372014582157,\n          \"Left\": 0.24669919908046722,\n          \"Top\": 0.6814360618591309\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.246703639626503,\n            \"Y\": 0.6814360618591309\n          },\n          {\n            \"X\": 0.2528739273548126,\n            \"Y\": 0.6814454197883606\n          },\n          {\n            \"X\": 0.25286948680877686,\n            \"Y\": 0.6895024180412292\n          },\n          {\n            \"X\": 0.24669919908046722,\n            \"Y\": 0.6894930601119995\n          }\n        ]\n      },\n      \"Id\": \"81f1d3b4-7b4f-4e64-866a-3870cf338d9e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.63943481445312,\n      \"Text\": \"80.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036956217139959335,\n          \"Height\": 0.009082351811230183,\n          \"Left\": 0.25446516275405884,\n          \"Top\": 0.6780814528465271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2544701099395752,\n            \"Y\": 0.6780814528465271\n          },\n          {\n            \"X\": 0.29142138361930847,\n            \"Y\": 0.6781374216079712\n          },\n          {\n            \"X\": 0.29141658544540405,\n            \"Y\": 0.6871638298034668\n          },\n          {\n            \"X\": 0.25446516275405884,\n            \"Y\": 0.6871077418327332\n          }\n        ]\n      },\n      \"Id\": \"052c71e4-9338-43bc-b2b3-194f9aeee8a7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.26893615722656,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00596277741715312,\n          \"Height\": 0.007344082463532686,\n          \"Left\": 0.3541472852230072,\n          \"Top\": 0.6819697022438049\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3541509807109833,\n            \"Y\": 0.6819697022438049\n          },\n          {\n            \"X\": 0.3601100742816925,\n            \"Y\": 0.681978702545166\n          },\n          {\n            \"X\": 0.36010637879371643,\n            \"Y\": 0.6893137693405151\n          },\n          {\n            \"X\": 0.3541472852230072,\n            \"Y\": 0.6893047094345093\n          }\n        ]\n      },\n      \"Id\": \"7f04bde2-64e7-4133-b166-d3509e1546c2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.41719818115234,\n      \"Text\": \"90.00\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036797571927309036,\n          \"Height\": 0.009333739057183266,\n          \"Left\": 0.3613256812095642,\n          \"Top\": 0.6768495440483093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3613303303718567,\n            \"Y\": 0.6768495440483093\n          },\n          {\n            \"X\": 0.39812326431274414,\n            \"Y\": 0.6769052147865295\n          },\n          {\n            \"X\": 0.3981187641620636,\n            \"Y\": 0.6861832737922668\n          },\n          {\n            \"X\": 0.3613256812095642,\n            \"Y\": 0.6861274242401123\n          }\n        ]\n      },\n      \"Id\": \"ead99bcb-a1b5-4e8d-bdef-f98729c630e9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85662078857422,\n      \"Text\": \"Allowance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05638602375984192,\n          \"Height\": 0.00800548866391182,\n          \"Left\": 0.4617246091365814,\n          \"Top\": 0.680382490158081\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46172821521759033,\n            \"Y\": 0.680382490158081\n          },\n          {\n            \"X\": 0.5181106328964233,\n            \"Y\": 0.6804678440093994\n          },\n          {\n            \"X\": 0.5181071758270264,\n            \"Y\": 0.6883879899978638\n          },\n          {\n            \"X\": 0.4617246091365814,\n            \"Y\": 0.6883023977279663\n          }\n        ]\n      },\n      \"Id\": \"535b6615-5769-47a4-893e-d868224a7dea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.15426635742188,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.005884947255253792,\n          \"Height\": 0.0073980907909572124,\n          \"Left\": 0.5698274374008179,\n          \"Top\": 0.6805639863014221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698304772377014,\n            \"Y\": 0.6805639863014221\n          },\n          {\n            \"X\": 0.5757123827934265,\n            \"Y\": 0.6805729269981384\n          },\n          {\n            \"X\": 0.5757094025611877,\n            \"Y\": 0.6879621148109436\n          },\n          {\n            \"X\": 0.5698274374008179,\n            \"Y\": 0.6879531741142273\n          }\n        ]\n      },\n      \"Id\": \"724f616c-9ba0-4689-bc68-7a9814412cb4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92557525634766,\n      \"Text\": \"587\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02145482785999775,\n          \"Height\": 0.008350266143679619,\n          \"Left\": 0.6079360246658325,\n          \"Top\": 0.6783530712127686\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6079393029212952,\n            \"Y\": 0.6783530712127686\n          },\n          {\n            \"X\": 0.6293908357620239,\n            \"Y\": 0.6783854961395264\n          },\n          {\n            \"X\": 0.6293876767158508,\n            \"Y\": 0.6867033243179321\n          },\n          {\n            \"X\": 0.6079360246658325,\n            \"Y\": 0.6866707801818848\n          }\n        ]\n      },\n      \"Id\": \"b246bcf0-e5c6-45bc-815b-7527c8cd8e8d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 69.05120086669922,\n      \"Text\": \"20.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015469664707779884,\n          \"Height\": 0.00778973801061511,\n          \"Left\": 0.041765931993722916,\n          \"Top\": 0.6971191763877869\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04177090525627136,\n            \"Y\": 0.6971191763877869\n          },\n          {\n            \"X\": 0.05723559856414795,\n            \"Y\": 0.6971427202224731\n          },\n          {\n            \"X\": 0.05723067745566368,\n            \"Y\": 0.7049089074134827\n          },\n          {\n            \"X\": 0.041765931993722916,\n            \"Y\": 0.7048853039741516\n          }\n        ]\n      },\n      \"Id\": \"972627f1-01af-4a2b-9cc6-03aec66fd75e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68186950683594,\n      \"Text\": \"Remarks\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.048209767788648605,\n          \"Height\": 0.007816054858267307,\n          \"Left\": 0.057445552200078964,\n          \"Top\": 0.6972859501838684\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05745045840740204,\n            \"Y\": 0.6972859501838684\n          },\n          {\n            \"X\": 0.10565531998872757,\n            \"Y\": 0.6973593235015869\n          },\n          {\n            \"X\": 0.10565058141946793,\n            \"Y\": 0.7051020264625549\n          },\n          {\n            \"X\": 0.057445552200078964,\n            \"Y\": 0.7050284743309021\n          }\n        ]\n      },\n      \"Id\": \"c4d2f65c-bf2d-4db2-a039-4d01500f14c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.16559600830078,\n      \"Text\": \"(If\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011681928299367428,\n          \"Height\": 0.008049478754401207,\n          \"Left\": 0.10921628028154373,\n          \"Top\": 0.6967445015907288\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10922118276357651,\n            \"Y\": 0.6967445015907288\n          },\n          {\n            \"X\": 0.12089820951223373,\n            \"Y\": 0.6967623233795166\n          },\n          {\n            \"X\": 0.12089334428310394,\n            \"Y\": 0.7047939896583557\n          },\n          {\n            \"X\": 0.10921628028154373,\n            \"Y\": 0.7047761678695679\n          }\n        ]\n      },\n      \"Id\": \"1c7d0c0b-27cc-4e5d-99c7-d0cb7d98f91d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96006774902344,\n      \"Text\": \"employee\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0512644462287426,\n          \"Height\": 0.008827745914459229,\n          \"Left\": 0.12491191923618317,\n          \"Top\": 0.6973740458488464\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12491720914840698,\n            \"Y\": 0.6973740458488464\n          },\n          {\n            \"X\": 0.17617636919021606,\n            \"Y\": 0.6974520683288574\n          },\n          {\n            \"X\": 0.17617127299308777,\n            \"Y\": 0.7062017917633057\n          },\n          {\n            \"X\": 0.12491191923618317,\n            \"Y\": 0.7061235904693604\n          }\n        ]\n      },\n      \"Id\": \"bdc93f55-df69-40df-99f9-c55294d7ea2a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92903137207031,\n      \"Text\": \"was\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022034913301467896,\n          \"Height\": 0.006083278451114893,\n          \"Left\": 0.18004707992076874,\n          \"Top\": 0.6986228823661804\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1800505816936493,\n            \"Y\": 0.6986228823661804\n          },\n          {\n            \"X\": 0.20208199322223663,\n            \"Y\": 0.6986563801765442\n          },\n          {\n            \"X\": 0.20207853615283966,\n            \"Y\": 0.7047061324119568\n          },\n          {\n            \"X\": 0.18004707992076874,\n            \"Y\": 0.7046725153923035\n          }\n        ]\n      },\n      \"Id\": \"1e4f4f5a-acb2-47ce-bc85-0a05e92c0abe\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.68282318115234,\n      \"Text\": \"off\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01508287899196148,\n          \"Height\": 0.007946936413645744,\n          \"Left\": 0.20602504909038544,\n          \"Top\": 0.6966104507446289\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20602954924106598,\n            \"Y\": 0.6966104507446289\n          },\n          {\n            \"X\": 0.22110791504383087,\n            \"Y\": 0.6966333985328674\n          },\n          {\n            \"X\": 0.2211034744977951,\n            \"Y\": 0.7045573592185974\n          },\n          {\n            \"X\": 0.20602504909038544,\n            \"Y\": 0.7045343518257141\n          }\n        ]\n      },\n      \"Id\": \"8c3dd02a-27e1-4f7f-bc50-84f6fb16f4c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71654510498047,\n      \"Text\": \"work\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0269760824739933,\n          \"Height\": 0.007821877487003803,\n          \"Left\": 0.22539998590946198,\n          \"Top\": 0.696942925453186\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22540433704853058,\n            \"Y\": 0.696942925453186\n          },\n          {\n            \"X\": 0.25237607955932617,\n            \"Y\": 0.6969839930534363\n          },\n          {\n            \"X\": 0.25237178802490234,\n            \"Y\": 0.7047648429870605\n          },\n          {\n            \"X\": 0.22539998590946198,\n            \"Y\": 0.7047236561775208\n          }\n        ]\n      },\n      \"Id\": \"b440b0be-8157-4957-83b4-5fd982ce3953\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.874267578125,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015161621384322643,\n          \"Height\": 0.007824551314115524,\n          \"Left\": 0.2564588785171509,\n          \"Top\": 0.6968517899513245\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2564631402492523,\n            \"Y\": 0.6968517899513245\n          },\n          {\n            \"X\": 0.2716204822063446,\n            \"Y\": 0.6968748569488525\n          },\n          {\n            \"X\": 0.27161628007888794,\n            \"Y\": 0.7046763300895691\n          },\n          {\n            \"X\": 0.2564588785171509,\n            \"Y\": 0.7046532034873962\n          }\n        ]\n      },\n      \"Id\": \"c241a502-c9ac-4c33-9f13-844e85e92533\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95392608642578,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02003846876323223,\n          \"Height\": 0.007606236729770899,\n          \"Left\": 0.2756226062774658,\n          \"Top\": 0.6986042261123657\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27562668919563293,\n            \"Y\": 0.6986042261123657\n          },\n          {\n            \"X\": 0.2956610918045044,\n            \"Y\": 0.698634684085846\n          },\n          {\n            \"X\": 0.29565706849098206,\n            \"Y\": 0.7062104344367981\n          },\n          {\n            \"X\": 0.2756226062774658,\n            \"Y\": 0.7061798572540283\n          }\n        ]\n      },\n      \"Id\": \"75b97d09-1e99-48e0-90e8-9a6cce152918\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86243438720703,\n      \"Text\": \"length\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0339367650449276,\n          \"Height\": 0.009564097039401531,\n          \"Left\": 0.2993880808353424,\n          \"Top\": 0.6968596577644348\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2993931174278259,\n            \"Y\": 0.6968596577644348\n          },\n          {\n            \"X\": 0.3333248496055603,\n            \"Y\": 0.6969112753868103\n          },\n          {\n            \"X\": 0.3333199620246887,\n            \"Y\": 0.7064237594604492\n          },\n          {\n            \"X\": 0.2993880808353424,\n            \"Y\": 0.7063719630241394\n          }\n        ]\n      },\n      \"Id\": \"2914be51-d6e2-472d-804a-de86a02d1a7a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79642486572266,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011453352868556976,\n          \"Height\": 0.007926492020487785,\n          \"Left\": 0.33760738372802734,\n          \"Top\": 0.6967171430587769\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3376114070415497,\n            \"Y\": 0.6967171430587769\n          },\n          {\n            \"X\": 0.34906071424484253,\n            \"Y\": 0.6967345476150513\n          },\n          {\n            \"X\": 0.3490567207336426,\n            \"Y\": 0.7046436667442322\n          },\n          {\n            \"X\": 0.33760738372802734,\n            \"Y\": 0.704626202583313\n          }\n        ]\n      },\n      \"Id\": \"7459b021-a105-45b6-bdc7-c10deb34506e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.60169219970703,\n      \"Text\": \"time,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02687223069369793,\n          \"Height\": 0.009005281142890453,\n          \"Left\": 0.3526904284954071,\n          \"Top\": 0.6968075633049011\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35269495844841003,\n            \"Y\": 0.6968075633049011\n          },\n          {\n            \"X\": 0.3795626759529114,\n            \"Y\": 0.696848452091217\n          },\n          {\n            \"X\": 0.379558265209198,\n            \"Y\": 0.7058128714561462\n          },\n          {\n            \"X\": 0.3526904284954071,\n            \"Y\": 0.7057718634605408\n          }\n        ]\n      },\n      \"Id\": \"c07031ed-3776-4668-bd1a-141d64513e2c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.74710845947266,\n      \"Text\": \"please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03346828371286392,\n          \"Height\": 0.00935132335871458,\n          \"Left\": 0.38486915826797485,\n          \"Top\": 0.6970170140266418\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38487371802330017,\n            \"Y\": 0.6970170140266418\n          },\n          {\n            \"X\": 0.4183374345302582,\n            \"Y\": 0.69706791639328\n          },\n          {\n            \"X\": 0.4183330237865448,\n            \"Y\": 0.7063683271408081\n          },\n          {\n            \"X\": 0.38486915826797485,\n            \"Y\": 0.7063172459602356\n          }\n        ]\n      },\n      \"Id\": \"829a45c7-9833-47a6-8543-6606e83c3622\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8542709350586,\n      \"Text\": \"indicate\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04208698868751526,\n          \"Height\": 0.008034201338887215,\n          \"Left\": 0.4224434792995453,\n          \"Top\": 0.6965771317481995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42244723439216614,\n            \"Y\": 0.6965771317481995\n          },\n          {\n            \"X\": 0.46453046798706055,\n            \"Y\": 0.6966411471366882\n          },\n          {\n            \"X\": 0.46452683210372925,\n            \"Y\": 0.7046113014221191\n          },\n          {\n            \"X\": 0.4224434792995453,\n            \"Y\": 0.7045471668243408\n          }\n        ]\n      },\n      \"Id\": \"fe0b209c-c9f4-46ca-b6ac-8f5424361bbf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9581069946289,\n      \"Text\": \"time\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023490499705076218,\n          \"Height\": 0.007893873378634453,\n          \"Left\": 0.46875280141830444,\n          \"Top\": 0.6967430114746094\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4687563478946686,\n            \"Y\": 0.6967430114746094\n          },\n          {\n            \"X\": 0.49224328994750977,\n            \"Y\": 0.6967787742614746\n          },\n          {\n            \"X\": 0.4922398030757904,\n            \"Y\": 0.7046368718147278\n          },\n          {\n            \"X\": 0.46875280141830444,\n            \"Y\": 0.7046010494232178\n          }\n        ]\n      },\n      \"Id\": \"168973fd-8198-434d-bbf1-c1a2ed31dfbf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.46334075927734,\n      \"Text\": \"period\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0335991308093071,\n          \"Height\": 0.009638856165111065,\n          \"Left\": 0.4964258670806885,\n          \"Top\": 0.6965818405151367\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49643009901046753,\n            \"Y\": 0.6965818405151367\n          },\n          {\n            \"X\": 0.5300250053405762,\n            \"Y\": 0.6966329216957092\n          },\n          {\n            \"X\": 0.5300208926200867,\n            \"Y\": 0.7062206864356995\n          },\n          {\n            \"X\": 0.4964258670806885,\n            \"Y\": 0.7061694264411926\n          }\n        ]\n      },\n      \"Id\": \"b3741fbe-a4af-426d-872d-5e689272d085\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94026184082031,\n      \"Text\": \"and\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020310159772634506,\n          \"Height\": 0.00791175663471222,\n          \"Left\": 0.5339581966400146,\n          \"Top\": 0.6966778039932251\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5339615941047668,\n            \"Y\": 0.6966778039932251\n          },\n          {\n            \"X\": 0.5542683601379395,\n            \"Y\": 0.6967087388038635\n          },\n          {\n            \"X\": 0.5542650818824768,\n            \"Y\": 0.7045896053314209\n          },\n          {\n            \"X\": 0.5339581966400146,\n            \"Y\": 0.7045586109161377\n          }\n        ]\n      },\n      \"Id\": \"2b2b8064-5d2d-4179-90a2-f011d66bd6eb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.38787078857422,\n      \"Text\": \"reason)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03944365680217743,\n          \"Height\": 0.008586733601987362,\n          \"Left\": 0.5583657622337341,\n          \"Top\": 0.696632981300354\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5583693385124207,\n            \"Y\": 0.696632981300354\n          },\n          {\n            \"X\": 0.5978094339370728,\n            \"Y\": 0.696692943572998\n          },\n          {\n            \"X\": 0.5978060364723206,\n            \"Y\": 0.7052196860313416\n          },\n          {\n            \"X\": 0.5583657622337341,\n            \"Y\": 0.7051595449447632\n          }\n        ]\n      },\n      \"Id\": \"5d973866-f6cd-41d0-986d-1ae0ccb6024e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89479064941406,\n      \"Text\": \"Not\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025438105687499046,\n          \"Height\": 0.010305207222700119,\n          \"Left\": 0.057943765074014664,\n          \"Top\": 0.7153868675231934\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05795026570558548,\n            \"Y\": 0.7153868675231934\n          },\n          {\n            \"X\": 0.08338186889886856,\n            \"Y\": 0.7154257297515869\n          },\n          {\n            \"X\": 0.083375483751297,\n            \"Y\": 0.7256920337677002\n          },\n          {\n            \"X\": 0.057943765074014664,\n            \"Y\": 0.7256530523300171\n          }\n        ]\n      },\n      \"Id\": \"e1f66751-bbca-4078-a7be-ef22aa884205\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92974853515625,\n      \"Text\": \"Applicable\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07543250173330307,\n          \"Height\": 0.012460541911423206,\n          \"Left\": 0.08742974698543549,\n          \"Top\": 0.7153786420822144\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08743740618228912,\n            \"Y\": 0.7153786420822144\n          },\n          {\n            \"X\": 0.16286224126815796,\n            \"Y\": 0.7154940366744995\n          },\n          {\n            \"X\": 0.16285499930381775,\n            \"Y\": 0.7278392314910889\n          },\n          {\n            \"X\": 0.08742974698543549,\n            \"Y\": 0.7277234196662903\n          }\n        ]\n      },\n      \"Id\": \"bb083684-3afb-4c9b-9b23-26a5ecebde77\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9375228881836,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02919003553688526,\n          \"Height\": 0.009307158179581165,\n          \"Left\": 0.04236330837011337,\n          \"Top\": 0.75895094871521\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042369239032268524,\n            \"Y\": 0.75895094871521\n          },\n          {\n            \"X\": 0.07155334204435349,\n            \"Y\": 0.7589961886405945\n          },\n          {\n            \"X\": 0.07154753059148788,\n            \"Y\": 0.7682580947875977\n          },\n          {\n            \"X\": 0.04236330837011337,\n            \"Y\": 0.7682127952575684\n          }\n        ]\n      },\n      \"Id\": \"5e5ee25b-8fd2-4aa2-9d40-ec263224606b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.68013763427734,\n      \"Text\": \"III\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014412241987884045,\n          \"Height\": 0.008509444072842598,\n          \"Left\": 0.07654615491628647,\n          \"Top\": 0.759156346321106\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07655146718025208,\n            \"Y\": 0.759156346321106\n          },\n          {\n            \"X\": 0.09095840156078339,\n            \"Y\": 0.759178638458252\n          },\n          {\n            \"X\": 0.09095314890146255,\n            \"Y\": 0.7676658034324646\n          },\n          {\n            \"X\": 0.07654615491628647,\n            \"Y\": 0.7676434516906738\n          }\n        ]\n      },\n      \"Id\": \"699c0f70-2292-47d6-a779-b9f0da529073\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.49002838134766,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011054462753236294,\n          \"Height\": 0.0027373232878744602,\n          \"Left\": 0.09697888046503067,\n          \"Top\": 0.7631971836090088\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09698055684566498,\n            \"Y\": 0.7631971836090088\n          },\n          {\n            \"X\": 0.10803334414958954,\n            \"Y\": 0.7632143497467041\n          },\n          {\n            \"X\": 0.10803168267011642,\n            \"Y\": 0.7659345269203186\n          },\n          {\n            \"X\": 0.09697888046503067,\n            \"Y\": 0.7659173607826233\n          }\n        ]\n      },\n      \"Id\": \"af170e28-da9b-4e50-97c4-2a69323be273\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81829833984375,\n      \"Text\": \"Verification\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08208417892456055,\n          \"Height\": 0.00967568438500166,\n          \"Left\": 0.11502788960933685,\n          \"Top\": 0.7584437727928162\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11503370106220245,\n            \"Y\": 0.7584437727928162\n          },\n          {\n            \"X\": 0.1971120685338974,\n            \"Y\": 0.7585708498954773\n          },\n          {\n            \"X\": 0.19710659980773926,\n            \"Y\": 0.7681194543838501\n          },\n          {\n            \"X\": 0.11502788960933685,\n            \"Y\": 0.7679920196533203\n          }\n        ]\n      },\n      \"Id\": \"d744b0be-4271-4d8f-ad5e-9ba9870ff6af\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.87857055664062,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015046262182295322,\n          \"Height\": 0.009437751024961472,\n          \"Left\": 0.20319989323616028,\n          \"Top\": 0.7585580348968506\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20320525765419006,\n            \"Y\": 0.7585580348968506\n          },\n          {\n            \"X\": 0.21824616193771362,\n            \"Y\": 0.758581280708313\n          },\n          {\n            \"X\": 0.2182408571243286,\n            \"Y\": 0.7679957747459412\n          },\n          {\n            \"X\": 0.20319989323616028,\n            \"Y\": 0.7679724097251892\n          }\n        ]\n      },\n      \"Id\": \"faa1a822-8fef-434b-9420-95596c4642f9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85848999023438,\n      \"Text\": \"Previous\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06091131642460823,\n          \"Height\": 0.009744823910295963,\n          \"Left\": 0.22344328463077545,\n          \"Top\": 0.7585790157318115\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22344869375228882,\n            \"Y\": 0.7585790157318115\n          },\n          {\n            \"X\": 0.2843545973300934,\n            \"Y\": 0.7586733102798462\n          },\n          {\n            \"X\": 0.2843494415283203,\n            \"Y\": 0.7683238387107849\n          },\n          {\n            \"X\": 0.22344328463077545,\n            \"Y\": 0.7682292461395264\n          }\n        ]\n      },\n      \"Id\": \"d50b87b2-3f63-4984-be62-066310c1034d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93489074707031,\n      \"Text\": \"Employment\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09006904810667038,\n          \"Height\": 0.01156239677220583,\n          \"Left\": 0.28928089141845703,\n          \"Top\": 0.7584788203239441\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2892869710922241,\n            \"Y\": 0.7584788203239441\n          },\n          {\n            \"X\": 0.379349946975708,\n            \"Y\": 0.7586182355880737\n          },\n          {\n            \"X\": 0.37934431433677673,\n            \"Y\": 0.7700411677360535\n          },\n          {\n            \"X\": 0.28928089141845703,\n            \"Y\": 0.7699012756347656\n          }\n        ]\n      },\n      \"Id\": \"15b75da4-c408-4e06-a442-4445b10d0fca\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.52532958984375,\n      \"Text\": \"21.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015384290367364883,\n          \"Height\": 0.007760863751173019,\n          \"Left\": 0.04131390154361725,\n          \"Top\": 0.7728627920150757\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0413188599050045,\n            \"Y\": 0.7728627920150757\n          },\n          {\n            \"X\": 0.05669819191098213,\n            \"Y\": 0.7728866934776306\n          },\n          {\n            \"X\": 0.056693289428949356,\n            \"Y\": 0.7806236147880554\n          },\n          {\n            \"X\": 0.04131390154361725,\n            \"Y\": 0.7805996537208557\n          }\n        ]\n      },\n      \"Id\": \"4224337b-61e9-4cf8-af83-91025810c7e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70793914794922,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023755280300974846,\n          \"Height\": 0.007768855430185795,\n          \"Left\": 0.061263442039489746,\n          \"Top\": 0.7729281187057495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06126832589507103,\n            \"Y\": 0.7729281187057495\n          },\n          {\n            \"X\": 0.08501872420310974,\n            \"Y\": 0.7729650735855103\n          },\n          {\n            \"X\": 0.08501391857862473,\n            \"Y\": 0.7806969881057739\n          },\n          {\n            \"X\": 0.061263442039489746,\n            \"Y\": 0.7806599736213684\n          }\n        ]\n      },\n      \"Id\": \"ff994120-c949-4f13-820d-e41864d14c7d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90852355957031,\n      \"Text\": \"Hired\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027191733941435814,\n          \"Height\": 0.00769343925639987,\n          \"Left\": 0.088518887758255,\n          \"Top\": 0.77298903465271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08852363377809525,\n            \"Y\": 0.77298903465271\n          },\n          {\n            \"X\": 0.11571062356233597,\n            \"Y\": 0.7730312943458557\n          },\n          {\n            \"X\": 0.11570597440004349,\n            \"Y\": 0.7806824445724487\n          },\n          {\n            \"X\": 0.088518887758255,\n            \"Y\": 0.7806401252746582\n          }\n        ]\n      },\n      \"Id\": \"a5203476-2b23-4be4-bedc-529142f37f76\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95388793945312,\n      \"Text\": \"04/04/2004\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06526118516921997,\n          \"Height\": 0.00870621856302023,\n          \"Left\": 0.14098210632801056,\n          \"Top\": 0.7747585773468018\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14098724722862244,\n            \"Y\": 0.7747585773468018\n          },\n          {\n            \"X\": 0.20624329149723053,\n            \"Y\": 0.7748600840568542\n          },\n          {\n            \"X\": 0.20623838901519775,\n            \"Y\": 0.783464789390564\n          },\n          {\n            \"X\": 0.14098210632801056,\n            \"Y\": 0.7833630442619324\n          }\n        ]\n      },\n      \"Id\": \"4a9e3142-2e71-4760-b6bb-449cea3052c9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.54108428955078,\n      \"Text\": \"23.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015380462631583214,\n          \"Height\": 0.00749645009636879,\n          \"Left\": 0.2854498624801636,\n          \"Top\": 0.7729980945587158\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2854538559913635,\n            \"Y\": 0.7729980945587158\n          },\n          {\n            \"X\": 0.30083033442497253,\n            \"Y\": 0.7730219960212708\n          },\n          {\n            \"X\": 0.30082640051841736,\n            \"Y\": 0.7804945707321167\n          },\n          {\n            \"X\": 0.2854498624801636,\n            \"Y\": 0.780470609664917\n          }\n        ]\n      },\n      \"Id\": \"149ba2d6-ab26-47e5-8a0c-64d06baea8de\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.54402160644531,\n      \"Text\": \"Salary/Wage\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06647572666406631,\n          \"Height\": 0.009373119100928307,\n          \"Left\": 0.3051048517227173,\n          \"Top\": 0.7726811170578003\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3051097095012665,\n            \"Y\": 0.7726811170578003\n          },\n          {\n            \"X\": 0.371580570936203,\n            \"Y\": 0.772784411907196\n          },\n          {\n            \"X\": 0.3715759813785553,\n            \"Y\": 0.7820541858673096\n          },\n          {\n            \"X\": 0.3051048517227173,\n            \"Y\": 0.7819505929946899\n          }\n        ]\n      },\n      \"Id\": \"2616b7e8-7a75-4f8a-820c-ba9c39fd6060\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7861557006836,\n      \"Text\": \"at\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010064966045320034,\n          \"Height\": 0.006594921927899122,\n          \"Left\": 0.37521621584892273,\n          \"Top\": 0.7740217447280884\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.375219464302063,\n            \"Y\": 0.7740217447280884\n          },\n          {\n            \"X\": 0.38528117537498474,\n            \"Y\": 0.7740373611450195\n          },\n          {\n            \"X\": 0.38527795672416687,\n            \"Y\": 0.7806166410446167\n          },\n          {\n            \"X\": 0.37521621584892273,\n            \"Y\": 0.7806009650230408\n          }\n        ]\n      },\n      \"Id\": \"22e0cda1-32be-4372-9312-e903d27e76b2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.73091888427734,\n      \"Text\": \"Termination\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05994218587875366,\n          \"Height\": 0.007738517597317696,\n          \"Left\": 0.38895753026008606,\n          \"Top\": 0.7728080153465271\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3889612555503845,\n            \"Y\": 0.7728080153465271\n          },\n          {\n            \"X\": 0.4488997161388397,\n            \"Y\": 0.7729012370109558\n          },\n          {\n            \"X\": 0.4488961696624756,\n            \"Y\": 0.7805465459823608\n          },\n          {\n            \"X\": 0.38895753026008606,\n            \"Y\": 0.7804531455039978\n          }\n        ]\n      },\n      \"Id\": \"bf0b990a-5190-4de3-87fe-bb0764375491\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.53642272949219,\n      \"Text\": \"Per\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01696907915174961,\n          \"Height\": 0.007790745235979557,\n          \"Left\": 0.4533194899559021,\n          \"Top\": 0.7727253437042236\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4533230662345886,\n            \"Y\": 0.7727253437042236\n          },\n          {\n            \"X\": 0.47028854489326477,\n            \"Y\": 0.7727516889572144\n          },\n          {\n            \"X\": 0.470285028219223,\n            \"Y\": 0.7805160880088806\n          },\n          {\n            \"X\": 0.4533194899559021,\n            \"Y\": 0.7804896235466003\n          }\n        ]\n      },\n      \"Id\": \"35524e99-0677-4bf0-8428-7d73d762eed1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.72444915771484,\n      \"Text\": \"(Year)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030580617487430573,\n          \"Height\": 0.0082713533192873,\n          \"Left\": 0.4739528000354767,\n          \"Top\": 0.7726948857307434\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47395652532577515,\n            \"Y\": 0.7726948857307434\n          },\n          {\n            \"X\": 0.5045334100723267,\n            \"Y\": 0.7727423906326294\n          },\n          {\n            \"X\": 0.5045298337936401,\n            \"Y\": 0.7809662222862244\n          },\n          {\n            \"X\": 0.4739528000354767,\n            \"Y\": 0.7809185981750488\n          }\n        ]\n      },\n      \"Id\": \"ae675d1b-0d5f-47e8-8d61-a9430cb4d76f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.47157287597656,\n      \"Text\": \"(Month)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.040562473237514496,\n          \"Height\": 0.00828329287469387,\n          \"Left\": 0.5086638331413269,\n          \"Top\": 0.7726281881332397\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5086674094200134,\n            \"Y\": 0.7726281881332397\n          },\n          {\n            \"X\": 0.5492262840270996,\n            \"Y\": 0.7726911902427673\n          },\n          {\n            \"X\": 0.5492228865623474,\n            \"Y\": 0.7809114456176758\n          },\n          {\n            \"X\": 0.5086638331413269,\n            \"Y\": 0.7808482646942139\n          }\n        ]\n      },\n      \"Id\": \"4ac766fa-04dd-4856-89f0-f24a3777bb7f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 87.9310302734375,\n      \"Text\": \"(Week)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03615771234035492,\n          \"Height\": 0.00803534034639597,\n          \"Left\": 0.5533491969108582,\n          \"Top\": 0.7728244066238403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5533525347709656,\n            \"Y\": 0.7728244066238403\n          },\n          {\n            \"X\": 0.5895069241523743,\n            \"Y\": 0.7728806138038635\n          },\n          {\n            \"X\": 0.5895037055015564,\n            \"Y\": 0.7808597087860107\n          },\n          {\n            \"X\": 0.5533491969108582,\n            \"Y\": 0.780803382396698\n          }\n        ]\n      },\n      \"Id\": \"49f40934-993d-4302-a3da-aebb618cbcf0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.75592041015625,\n      \"Text\": \"22.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015295812860131264,\n          \"Height\": 0.007656097877770662,\n          \"Left\": 0.04153933748602867,\n          \"Top\": 0.790481686592102\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04154422506690025,\n            \"Y\": 0.790481686592102\n          },\n          {\n            \"X\": 0.056835152208805084,\n            \"Y\": 0.790505588054657\n          },\n          {\n            \"X\": 0.05683031305670738,\n            \"Y\": 0.7981377840042114\n          },\n          {\n            \"X\": 0.04153933748602867,\n            \"Y\": 0.7981138229370117\n          }\n        ]\n      },\n      \"Id\": \"a0000fcf-d91d-437e-a148-ff7c699c602e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.66851806640625,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023485207930207253,\n          \"Height\": 0.007440588902682066,\n          \"Left\": 0.06150738522410393,\n          \"Top\": 0.7907163500785828\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.061512064188718796,\n            \"Y\": 0.7907163500785828\n          },\n          {\n            \"X\": 0.08499259501695633,\n            \"Y\": 0.7907530069351196\n          },\n          {\n            \"X\": 0.08498799055814743,\n            \"Y\": 0.7981569170951843\n          },\n          {\n            \"X\": 0.06150738522410393,\n            \"Y\": 0.7981201410293579\n          }\n        ]\n      },\n      \"Id\": \"9dfafeb5-ccf6-4cbe-9759-8e0b0ede4ee8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88651275634766,\n      \"Text\": \"Terminated\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05678374692797661,\n          \"Height\": 0.008346783928573132,\n          \"Left\": 0.0883488580584526,\n          \"Top\": 0.7898668646812439\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08835397660732269,\n            \"Y\": 0.7898668646812439\n          },\n          {\n            \"X\": 0.14513260126113892,\n            \"Y\": 0.7899555563926697\n          },\n          {\n            \"X\": 0.14512768387794495,\n            \"Y\": 0.7982136607170105\n          },\n          {\n            \"X\": 0.0883488580584526,\n            \"Y\": 0.7981247305870056\n          }\n        ]\n      },\n      \"Id\": \"b6ad479d-3439-4cfd-a0a6-8adfb90af0d7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90304565429688,\n      \"Text\": \"01/03/2005\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06550457328557968,\n          \"Height\": 0.008753936737775803,\n          \"Left\": 0.169297993183136,\n          \"Top\": 0.7888053059577942\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1693030595779419,\n            \"Y\": 0.7888053059577942\n          },\n          {\n            \"X\": 0.23480257391929626,\n            \"Y\": 0.7889075875282288\n          },\n          {\n            \"X\": 0.23479776084423065,\n            \"Y\": 0.7975592017173767\n          },\n          {\n            \"X\": 0.169297993183136,\n            \"Y\": 0.797456681728363\n          }\n        ]\n      },\n      \"Id\": \"6b65af51-452a-41f1-9e99-a16d69139344\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93396759033203,\n      \"Text\": \"Base\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024102872237563133,\n          \"Height\": 0.007524016313254833,\n          \"Left\": 0.3050488531589508,\n          \"Top\": 0.788079559803009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.305052787065506,\n            \"Y\": 0.788079559803009\n          },\n          {\n            \"X\": 0.3291517198085785,\n            \"Y\": 0.7881171703338623\n          },\n          {\n            \"X\": 0.3291478753089905,\n            \"Y\": 0.7956035733222961\n          },\n          {\n            \"X\": 0.3050488531589508,\n            \"Y\": 0.7955658435821533\n          }\n        ]\n      },\n      \"Id\": \"ba3f95e2-08fb-43d0-bcfd-21ae8029d495\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.14707946777344,\n      \"Text\": \"$\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00699196383357048,\n          \"Height\": 0.009368641301989555,\n          \"Left\": 0.35201236605644226,\n          \"Top\": 0.7847816348075867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3520171046257019,\n            \"Y\": 0.7847816348075867\n          },\n          {\n            \"X\": 0.35900431871414185,\n            \"Y\": 0.7847925424575806\n          },\n          {\n            \"X\": 0.358999639749527,\n            \"Y\": 0.7941502928733826\n          },\n          {\n            \"X\": 0.35201236605644226,\n            \"Y\": 0.7941393256187439\n          }\n        ]\n      },\n      \"Id\": \"40fa7465-6ea6-462b-86df-6e5beb489a33\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61848449707031,\n      \"Text\": \"9500\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028452912345528603,\n          \"Height\": 0.007928603328764439,\n          \"Left\": 0.36253538727760315,\n          \"Top\": 0.7853056788444519\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3625393211841583,\n            \"Y\": 0.7853056788444519\n          },\n          {\n            \"X\": 0.390988290309906,\n            \"Y\": 0.7853500843048096\n          },\n          {\n            \"X\": 0.390984445810318,\n            \"Y\": 0.7932342886924744\n          },\n          {\n            \"X\": 0.36253538727760315,\n            \"Y\": 0.7931898236274719\n          }\n        ]\n      },\n      \"Id\": \"c397edf9-6423-4369-b532-65fcb104536f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.79443359375,\n      \"Text\": \"Overtime\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04562950134277344,\n          \"Height\": 0.007468591444194317,\n          \"Left\": 0.43564698100090027,\n          \"Top\": 0.7878733277320862\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43565043807029724,\n            \"Y\": 0.7878733277320862\n          },\n          {\n            \"X\": 0.4812764823436737,\n            \"Y\": 0.7879445552825928\n          },\n          {\n            \"X\": 0.48127317428588867,\n            \"Y\": 0.7953419089317322\n          },\n          {\n            \"X\": 0.43564698100090027,\n            \"Y\": 0.7952705025672913\n          }\n        ]\n      },\n      \"Id\": \"caff6f2b-a24c-47e7-b974-5576f85b58d5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96920776367188,\n      \"Text\": \"1250\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02790924720466137,\n          \"Height\": 0.008410838432610035,\n          \"Left\": 0.5000621676445007,\n          \"Top\": 0.7859663367271423\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5000658631324768,\n            \"Y\": 0.7859663367271423\n          },\n          {\n            \"X\": 0.5279714465141296,\n            \"Y\": 0.7860099077224731\n          },\n          {\n            \"X\": 0.5279678702354431,\n            \"Y\": 0.7943772077560425\n          },\n          {\n            \"X\": 0.5000621676445007,\n            \"Y\": 0.7943335175514221\n          }\n        ]\n      },\n      \"Id\": \"7d2a97d9-a503-4c78-9cb5-49f44a1dfbd7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4081039428711,\n      \"Text\": \"Commissions\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06599078327417374,\n          \"Height\": 0.007702809292823076,\n          \"Left\": 0.5878944396972656,\n          \"Top\": 0.7877348065376282\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5878974795341492,\n            \"Y\": 0.7877348065376282\n          },\n          {\n            \"X\": 0.6538851857185364,\n            \"Y\": 0.7878378033638\n          },\n          {\n            \"X\": 0.6538823843002319,\n            \"Y\": 0.7954376339912415\n          },\n          {\n            \"X\": 0.5878944396972656,\n            \"Y\": 0.7953343987464905\n          }\n        ]\n      },\n      \"Id\": \"dad0fb1c-b84f-4b8c-a1ac-0cf157c1c6f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98257446289062,\n      \"Text\": \"4500\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029703041538596153,\n          \"Height\": 0.008346308954060078,\n          \"Left\": 0.6795932054519653,\n          \"Top\": 0.785436749458313\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6795961856842041,\n            \"Y\": 0.785436749458313\n          },\n          {\n            \"X\": 0.7092962265014648,\n            \"Y\": 0.7854830622673035\n          },\n          {\n            \"X\": 0.7092933058738708,\n            \"Y\": 0.7937830090522766\n          },\n          {\n            \"X\": 0.6795932054519653,\n            \"Y\": 0.7937365770339966\n          }\n        ]\n      },\n      \"Id\": \"dd83486f-0a96-4e99-9d09-ee79c30a3bba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85948181152344,\n      \"Text\": \"Bonus\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.031636375933885574,\n          \"Height\": 0.007475486025214195,\n          \"Left\": 0.7611423134803772,\n          \"Top\": 0.7879124879837036\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.761144757270813,\n            \"Y\": 0.7879124879837036\n          },\n          {\n            \"X\": 0.792778730392456,\n            \"Y\": 0.7879618406295776\n          },\n          {\n            \"X\": 0.7927764058113098,\n            \"Y\": 0.7953879237174988\n          },\n          {\n            \"X\": 0.7611423134803772,\n            \"Y\": 0.7953384518623352\n          }\n        ]\n      },\n      \"Id\": \"487d64f4-0195-4c41-9a1e-53009f109a86\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96612548828125,\n      \"Text\": \"4000\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029527196660637856,\n          \"Height\": 0.008420160040259361,\n          \"Left\": 0.8135125041007996,\n          \"Top\": 0.7861029505729675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8135150671005249,\n            \"Y\": 0.7861029505729675\n          },\n          {\n            \"X\": 0.8430396914482117,\n            \"Y\": 0.7861490249633789\n          },\n          {\n            \"X\": 0.8430373072624207,\n            \"Y\": 0.7945231199264526\n          },\n          {\n            \"X\": 0.8135125041007996,\n            \"Y\": 0.7944769263267517\n          }\n        ]\n      },\n      \"Id\": \"42bd0911-a688-4183-a9f1-708b2a96dfe9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.78195190429688,\n      \"Text\": \"24.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015275899320840836,\n          \"Height\": 0.007623179350048304,\n          \"Left\": 0.04137522354722023,\n          \"Top\": 0.8043426871299744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04138009250164032,\n            \"Y\": 0.8043426871299744\n          },\n          {\n            \"X\": 0.056651122868061066,\n            \"Y\": 0.8043666481971741\n          },\n          {\n            \"X\": 0.056646306067705154,\n            \"Y\": 0.8119658827781677\n          },\n          {\n            \"X\": 0.04137522354722023,\n            \"Y\": 0.8119418621063232\n          }\n        ]\n      },\n      \"Id\": \"8184dfaf-0b56-41e0-ae32-c1c71c0501a4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.84569549560547,\n      \"Text\": \"Reason\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03657521307468414,\n          \"Height\": 0.007539164274930954,\n          \"Left\": 0.06128964573144913,\n          \"Top\": 0.804480791091919\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.061294373124837875,\n            \"Y\": 0.804480791091919\n          },\n          {\n            \"X\": 0.09786485880613327,\n            \"Y\": 0.8045381307601929\n          },\n          {\n            \"X\": 0.09786024689674377,\n            \"Y\": 0.812019944190979\n          },\n          {\n            \"X\": 0.06128964573144913,\n            \"Y\": 0.8119624853134155\n          }\n        ]\n      },\n      \"Id\": \"4bc28e3b-dfc7-4bdc-94fb-14b304cc9a8e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80345153808594,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014717835932970047,\n          \"Height\": 0.007434632629156113,\n          \"Left\": 0.10160891711711884,\n          \"Top\": 0.8043575286865234\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10161346942186356,\n            \"Y\": 0.8043575286865234\n          },\n          {\n            \"X\": 0.11632675677537918,\n            \"Y\": 0.8043805956840515\n          },\n          {\n            \"X\": 0.11632224917411804,\n            \"Y\": 0.8117921352386475\n          },\n          {\n            \"X\": 0.10160891711711884,\n            \"Y\": 0.8117690086364746\n          }\n        ]\n      },\n      \"Id\": \"0c97838c-d9bf-41f2-89eb-dd2172ccf822\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69872283935547,\n      \"Text\": \"Leaving\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039084143936634064,\n          \"Height\": 0.009141969494521618,\n          \"Left\": 0.11992562562227249,\n          \"Top\": 0.8044895529747009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11993113160133362,\n            \"Y\": 0.8044895529747009\n          },\n          {\n            \"X\": 0.15900976955890656,\n            \"Y\": 0.80455082654953\n          },\n          {\n            \"X\": 0.15900442004203796,\n            \"Y\": 0.813631534576416\n          },\n          {\n            \"X\": 0.11992562562227249,\n            \"Y\": 0.8135700821876526\n          }\n        ]\n      },\n      \"Id\": \"78034b72-c6ce-4a31-adbf-e7a00977e7ad\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 93.94739532470703,\n      \"Text\": \"25.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015037087723612785,\n          \"Height\": 0.007587257772684097,\n          \"Left\": 0.49100127816200256,\n          \"Top\": 0.8043045401573181\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4910046458244324,\n            \"Y\": 0.8043045401573181\n          },\n          {\n            \"X\": 0.5060383677482605,\n            \"Y\": 0.8043281435966492\n          },\n          {\n            \"X\": 0.5060350298881531,\n            \"Y\": 0.8118917942047119\n          },\n          {\n            \"X\": 0.49100127816200256,\n            \"Y\": 0.8118681907653809\n          }\n        ]\n      },\n      \"Id\": \"3dfd8334-23ce-4675-a423-4aa3048e6578\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65396118164062,\n      \"Text\": \"Position\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04002551734447479,\n          \"Height\": 0.007769997231662273,\n          \"Left\": 0.5107563734054565,\n          \"Top\": 0.8041496276855469\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.510759711265564,\n            \"Y\": 0.8041496276855469\n          },\n          {\n            \"X\": 0.5507819056510925,\n            \"Y\": 0.8042123913764954\n          },\n          {\n            \"X\": 0.5507786870002747,\n            \"Y\": 0.811919629573822\n          },\n          {\n            \"X\": 0.5107563734054565,\n            \"Y\": 0.8118566870689392\n          }\n        ]\n      },\n      \"Id\": \"ee04c3fa-f44f-4e6e-a539-a642c1529d0d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.06063842773438,\n      \"Text\": \"Held\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023312611505389214,\n          \"Height\": 0.007590120658278465,\n          \"Left\": 0.554594874382019,\n          \"Top\": 0.8043086528778076\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5545980334281921,\n            \"Y\": 0.8043086528778076\n          },\n          {\n            \"X\": 0.5779075026512146,\n            \"Y\": 0.8043452501296997\n          },\n          {\n            \"X\": 0.5779044032096863,\n            \"Y\": 0.8118987679481506\n          },\n          {\n            \"X\": 0.554594874382019,\n            \"Y\": 0.8118621706962585\n          }\n        ]\n      },\n      \"Id\": \"6d4a7277-e0d6-4560-ab2c-61c56227eadf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71595764160156,\n      \"Text\": \"Medical\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04555048421025276,\n          \"Height\": 0.008049443364143372,\n          \"Left\": 0.16343258321285248,\n          \"Top\": 0.8149917721748352\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16343726217746735,\n            \"Y\": 0.8149917721748352\n          },\n          {\n            \"X\": 0.20898306369781494,\n            \"Y\": 0.8150634169578552\n          },\n          {\n            \"X\": 0.208978533744812,\n            \"Y\": 0.8230412602424622\n          },\n          {\n            \"X\": 0.16343258321285248,\n            \"Y\": 0.8229694366455078\n          }\n        ]\n      },\n      \"Id\": \"9da06c04-141a-4a42-8a41-3ad7082f8053\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.5657958984375,\n      \"Text\": \"Issue\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.030732663348317146,\n          \"Height\": 0.008450023829936981,\n          \"Left\": 0.21273046731948853,\n          \"Top\": 0.8149851560592651\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21273522078990936,\n            \"Y\": 0.8149851560592651\n          },\n          {\n            \"X\": 0.24346312880516052,\n            \"Y\": 0.815033495426178\n          },\n          {\n            \"X\": 0.24345849454402924,\n            \"Y\": 0.8234351873397827\n          },\n          {\n            \"X\": 0.21273046731948853,\n            \"Y\": 0.8233867287635803\n          }\n        ]\n      },\n      \"Id\": \"8abb1dee-4e89-499c-aebd-1654c8321aba\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95453643798828,\n      \"Text\": \"Device\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03947095945477486,\n          \"Height\": 0.008547627367079258,\n          \"Left\": 0.557174563407898,\n          \"Top\": 0.8144792914390564\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5571781396865845,\n            \"Y\": 0.8144792914390564\n          },\n          {\n            \"X\": 0.5966455340385437,\n            \"Y\": 0.8145413398742676\n          },\n          {\n            \"X\": 0.5966421961784363,\n            \"Y\": 0.8230268955230713\n          },\n          {\n            \"X\": 0.557174563407898,\n            \"Y\": 0.8229646682739258\n          }\n        ]\n      },\n      \"Id\": \"60f2d252-7994-4402-b041-094f671c3c92\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91886901855469,\n      \"Text\": \"Operator\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05228235572576523,\n          \"Height\": 0.01044967956840992,\n          \"Left\": 0.6000930070877075,\n          \"Top\": 0.8144620656967163\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.600097119808197,\n            \"Y\": 0.8144620656967163\n          },\n          {\n            \"X\": 0.652375340461731,\n            \"Y\": 0.8145442605018616\n          },\n          {\n            \"X\": 0.6523714661598206,\n            \"Y\": 0.8249117136001587\n          },\n          {\n            \"X\": 0.6000930070877075,\n            \"Y\": 0.8248292803764343\n          }\n        ]\n      },\n      \"Id\": \"99f0888a-3c8d-44a1-9137-33247f346863\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92350006103516,\n      \"Text\": \"Part\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029087701812386513,\n          \"Height\": 0.008976247161626816,\n          \"Left\": 0.042423177510499954,\n          \"Top\": 0.8345641493797302\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04242889583110809,\n            \"Y\": 0.8345641493797302\n          },\n          {\n            \"X\": 0.07151088118553162,\n            \"Y\": 0.8346101641654968\n          },\n          {\n            \"X\": 0.07150527834892273,\n            \"Y\": 0.8435404300689697\n          },\n          {\n            \"X\": 0.042423177510499954,\n            \"Y\": 0.8434942960739136\n          }\n        ]\n      },\n      \"Id\": \"9a71d8c5-dac5-4a26-a287-eff9991fede0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.57633972167969,\n      \"Text\": \"IV\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015086105093359947,\n          \"Height\": 0.008976261131465435,\n          \"Left\": 0.07683925330638885,\n          \"Top\": 0.8344308733940125\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07684484869241714,\n            \"Y\": 0.8344308733940125\n          },\n          {\n            \"X\": 0.09192535281181335,\n            \"Y\": 0.8344547152519226\n          },\n          {\n            \"X\": 0.09191981703042984,\n            \"Y\": 0.843407154083252\n          },\n          {\n            \"X\": 0.07683925330638885,\n            \"Y\": 0.843383252620697\n          }\n        ]\n      },\n      \"Id\": \"fa86190a-51cf-4509-bce5-52ff9e055a00\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 84.35411834716797,\n      \"Text\": \"-\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01150775607675314,\n          \"Height\": 0.0025575398467481136,\n          \"Left\": 0.09866313636302948,\n          \"Top\": 0.8385928273200989\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09866470098495483,\n            \"Y\": 0.8385928273200989\n          },\n          {\n            \"X\": 0.1101708933711052,\n            \"Y\": 0.8386110067367554\n          },\n          {\n            \"X\": 0.11016934365034103,\n            \"Y\": 0.8411503434181213\n          },\n          {\n            \"X\": 0.09866313636302948,\n            \"Y\": 0.8411321043968201\n          }\n        ]\n      },\n      \"Id\": \"cc0a8dfd-3fac-4684-b414-150929fac3fc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94490814208984,\n      \"Text\": \"Authorized\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07809717208147049,\n          \"Height\": 0.0091206980869174,\n          \"Left\": 0.11698121577501297,\n          \"Top\": 0.8343297839164734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11698667705059052,\n            \"Y\": 0.8343297839164734\n          },\n          {\n            \"X\": 0.19507838785648346,\n            \"Y\": 0.834453284740448\n          },\n          {\n            \"X\": 0.1950732171535492,\n            \"Y\": 0.8434504866600037\n          },\n          {\n            \"X\": 0.11698121577501297,\n            \"Y\": 0.8433266878128052\n          }\n        ]\n      },\n      \"Id\": \"b5e5bd0e-9d4d-4f5f-b08e-02c81f4e6a5e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93492126464844,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06871897727251053,\n          \"Height\": 0.011059589684009552,\n          \"Left\": 0.20032383501529694,\n          \"Top\": 0.8343003988265991\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20033009350299835,\n            \"Y\": 0.8343003988265991\n          },\n          {\n            \"X\": 0.26904281973838806,\n            \"Y\": 0.8344090580940247\n          },\n          {\n            \"X\": 0.2690368890762329,\n            \"Y\": 0.8453599810600281\n          },\n          {\n            \"X\": 0.20032383501529694,\n            \"Y\": 0.8452510237693787\n          }\n        ]\n      },\n      \"Id\": \"2d88f1cb-b6a8-4230-a0aa-9d2726bbccfc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93303680419922,\n      \"Text\": \"Federal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041885193437337875,\n          \"Height\": 0.008435415104031563,\n          \"Left\": 0.2852703928947449,\n          \"Top\": 0.8350951075553894\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.285274863243103,\n            \"Y\": 0.8350951075553894\n          },\n          {\n            \"X\": 0.32715559005737305,\n            \"Y\": 0.8351613879203796\n          },\n          {\n            \"X\": 0.3271512985229492,\n            \"Y\": 0.843530535697937\n          },\n          {\n            \"X\": 0.2852703928947449,\n            \"Y\": 0.8434641361236572\n          }\n        ]\n      },\n      \"Id\": \"ebbc2a39-4c58-4d01-bf1f-d7efe7d71a04\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6240234375,\n      \"Text\": \"statutes\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04540606960654259,\n          \"Height\": 0.007447401061654091,\n          \"Left\": 0.33075156807899475,\n          \"Top\": 0.8359654545783997\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.330755352973938,\n            \"Y\": 0.8359654545783997\n          },\n          {\n            \"X\": 0.37615764141082764,\n            \"Y\": 0.836037278175354\n          },\n          {\n            \"X\": 0.37615397572517395,\n            \"Y\": 0.8434128761291504\n          },\n          {\n            \"X\": 0.33075156807899475,\n            \"Y\": 0.8433408737182617\n          }\n        ]\n      },\n      \"Id\": \"a2d0b07b-9a15-4f09-b785-f8e9954e76a1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93656158447266,\n      \"Text\": \"provide\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04246717318892479,\n          \"Height\": 0.009670031256973743,\n          \"Left\": 0.3805432617664337,\n          \"Top\": 0.8352692127227783\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.38054800033569336,\n            \"Y\": 0.8352692127227783\n          },\n          {\n            \"X\": 0.4230104386806488,\n            \"Y\": 0.8353363275527954\n          },\n          {\n            \"X\": 0.4230058789253235,\n            \"Y\": 0.8449392318725586\n          },\n          {\n            \"X\": 0.3805432617664337,\n            \"Y\": 0.8448718786239624\n          }\n        ]\n      },\n      \"Id\": \"7a20a4df-3c89-44f8-9333-d174c2b5c437\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93022918701172,\n      \"Text\": \"severe\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03655204176902771,\n          \"Height\": 0.006831777282059193,\n          \"Left\": 0.42762571573257446,\n          \"Top\": 0.8363839387893677\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.42762890458106995,\n            \"Y\": 0.8363839387893677\n          },\n          {\n            \"X\": 0.4641777276992798,\n            \"Y\": 0.8364417552947998\n          },\n          {\n            \"X\": 0.46417465806007385,\n            \"Y\": 0.8432157039642334\n          },\n          {\n            \"X\": 0.42762571573257446,\n            \"Y\": 0.8431577682495117\n          }\n        ]\n      },\n      \"Id\": \"4e037618-c7a2-40e7-9d11-c284d3ade5f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81852722167969,\n      \"Text\": \"penalties\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05013059452176094,\n          \"Height\": 0.009638374671339989,\n          \"Left\": 0.4685908854007721,\n          \"Top\": 0.8353176116943359\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4685952365398407,\n            \"Y\": 0.8353176116943359\n          },\n          {\n            \"X\": 0.5187214612960815,\n            \"Y\": 0.8353968858718872\n          },\n          {\n            \"X\": 0.518717348575592,\n            \"Y\": 0.8449559807777405\n          },\n          {\n            \"X\": 0.4685908854007721,\n            \"Y\": 0.8448764681816101\n          }\n        ]\n      },\n      \"Id\": \"13adb975-28b6-4b0b-9f8f-77c6c351d3c5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.83163452148438,\n      \"Text\": \"for\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01620662584900856,\n          \"Height\": 0.008218330331146717,\n          \"Left\": 0.5237419009208679,\n          \"Top\": 0.8350566625595093\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5237454175949097,\n            \"Y\": 0.8350566625595093\n          },\n          {\n            \"X\": 0.5399485230445862,\n            \"Y\": 0.8350822925567627\n          },\n          {\n            \"X\": 0.5399450659751892,\n            \"Y\": 0.8432750105857849\n          },\n          {\n            \"X\": 0.5237419009208679,\n            \"Y\": 0.8432493209838867\n          }\n        ]\n      },\n      \"Id\": \"3d4c022a-302d-4aeb-bad0-a7e542265a79\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.94376373291016,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02109462209045887,\n          \"Height\": 0.007815679535269737,\n          \"Left\": 0.5437551140785217,\n          \"Top\": 0.8368986248970032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5437583923339844,\n            \"Y\": 0.8368986248970032\n          },\n          {\n            \"X\": 0.5648497343063354,\n            \"Y\": 0.8369320034980774\n          },\n          {\n            \"X\": 0.5648465156555176,\n            \"Y\": 0.8447142839431763\n          },\n          {\n            \"X\": 0.5437551140785217,\n            \"Y\": 0.8446808457374573\n          }\n        ]\n      },\n      \"Id\": \"40341810-7a64-4871-b454-c1a7193d9ea4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.45487213134766,\n      \"Text\": \"fraud,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03358960524201393,\n          \"Height\": 0.009152209386229515,\n          \"Left\": 0.5687194466590881,\n          \"Top\": 0.8350046873092651\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5687231421470642,\n            \"Y\": 0.8350046873092651\n          },\n          {\n            \"X\": 0.6023090481758118,\n            \"Y\": 0.83505779504776\n          },\n          {\n            \"X\": 0.6023054718971252,\n            \"Y\": 0.8441568613052368\n          },\n          {\n            \"X\": 0.5687194466590881,\n            \"Y\": 0.8441036343574524\n          }\n        ]\n      },\n      \"Id\": \"173590d9-28d0-4d45-833f-28b84f95a56d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.65558624267578,\n      \"Text\": \"intentional\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06067858636379242,\n          \"Height\": 0.008453130722045898,\n          \"Left\": 0.6078438758850098,\n          \"Top\": 0.8349078297615051\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6078471541404724,\n            \"Y\": 0.8349078297615051\n          },\n          {\n            \"X\": 0.6685224771499634,\n            \"Y\": 0.8350037336349487\n          },\n          {\n            \"X\": 0.6685194373130798,\n            \"Y\": 0.843360960483551\n          },\n          {\n            \"X\": 0.6078438758850098,\n            \"Y\": 0.8432647585868835\n          }\n        ]\n      },\n      \"Id\": \"1faa4d28-e22c-45d6-914a-747db4ca7631\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 71.64825439453125,\n      \"Text\": \"misrepresentation\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10490444302558899,\n          \"Height\": 0.009552649222314358,\n          \"Left\": 0.6714342832565308,\n          \"Top\": 0.8352541923522949\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.671437680721283,\n            \"Y\": 0.8352541923522949\n          },\n          {\n            \"X\": 0.7763386964797974,\n            \"Y\": 0.8354200720787048\n          },\n          {\n            \"X\": 0.7763357162475586,\n            \"Y\": 0.8448068499565125\n          },\n          {\n            \"X\": 0.6714342832565308,\n            \"Y\": 0.8446404933929443\n          }\n        ]\n      },\n      \"Id\": \"1571a0e9-8867-45e2-ae9f-321c188f480a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8154525756836,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01234719343483448,\n          \"Height\": 0.006218393798917532,\n          \"Left\": 0.7821596264839172,\n          \"Top\": 0.8367704749107361\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7821615934371948,\n            \"Y\": 0.8367704749107361\n          },\n          {\n            \"X\": 0.794506847858429,\n            \"Y\": 0.8367900252342224\n          },\n          {\n            \"X\": 0.7945049405097961,\n            \"Y\": 0.842988908290863\n          },\n          {\n            \"X\": 0.7821596264839172,\n            \"Y\": 0.8429693579673767\n          }\n        ]\n      },\n      \"Id\": \"f75c85d1-050c-45e7-a480-27ee3fedd6da\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9564437866211,\n      \"Text\": \"criminal\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.044486887753009796,\n          \"Height\": 0.008392076008021832,\n          \"Left\": 0.798480212688446,\n          \"Top\": 0.8347421288490295\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7984828352928162,\n            \"Y\": 0.8347421288490295\n          },\n          {\n            \"X\": 0.8429670929908752,\n            \"Y\": 0.8348124623298645\n          },\n          {\n            \"X\": 0.8429647088050842,\n            \"Y\": 0.8431342244148254\n          },\n          {\n            \"X\": 0.798480212688446,\n            \"Y\": 0.8430637121200562\n          }\n        ]\n      },\n      \"Id\": \"ab43f4fb-56ea-45e2-adbf-493a2a3c67e6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.11817169189453,\n      \"Text\": \"connivance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06458239257335663,\n          \"Height\": 0.008433601818978786,\n          \"Left\": 0.8468388319015503,\n          \"Top\": 0.834926426410675\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8468412160873413,\n            \"Y\": 0.834926426410675\n          },\n          {\n            \"X\": 0.9114211797714233,\n            \"Y\": 0.8350285887718201\n          },\n          {\n            \"X\": 0.9114190340042114,\n            \"Y\": 0.8433600664138794\n          },\n          {\n            \"X\": 0.8468388319015503,\n            \"Y\": 0.8432576656341553\n          }\n        ]\n      },\n      \"Id\": \"ce295d77-27f3-4448-be7b-3b9759859e5b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71211242675781,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012278340756893158,\n          \"Height\": 0.0064416201785206795,\n          \"Left\": 0.041852712631225586,\n          \"Top\": 0.8472325801849365\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04185682535171509,\n            \"Y\": 0.8472325801849365\n          },\n          {\n            \"X\": 0.054131053388118744,\n            \"Y\": 0.8472520709037781\n          },\n          {\n            \"X\": 0.05412697792053223,\n            \"Y\": 0.8536741733551025\n          },\n          {\n            \"X\": 0.041852712631225586,\n            \"Y\": 0.853654682636261\n          }\n        ]\n      },\n      \"Id\": \"1548078d-729a-4bae-a0d9-779531d6278b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.70767211914062,\n      \"Text\": \"conspiracy\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06119990348815918,\n          \"Height\": 0.009810679592192173,\n          \"Left\": 0.058066003024578094,\n          \"Top\": 0.8454524278640747\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.058072153478860855,\n            \"Y\": 0.8454524278640747\n          },\n          {\n            \"X\": 0.11926590651273727,\n            \"Y\": 0.8455495238304138\n          },\n          {\n            \"X\": 0.1192600205540657,\n            \"Y\": 0.8552631139755249\n          },\n          {\n            \"X\": 0.058066003024578094,\n            \"Y\": 0.8551657795906067\n          }\n        ]\n      },\n      \"Id\": \"e44773cd-6ad3-4ccd-ad71-465b3b6a26cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92710876464844,\n      \"Text\": \"purposed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.053038254380226135,\n          \"Height\": 0.009763302281498909,\n          \"Left\": 0.12376473844051361,\n          \"Top\": 0.8455880880355835\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1237705871462822,\n            \"Y\": 0.8455880880355835\n          },\n          {\n            \"X\": 0.17680299282073975,\n            \"Y\": 0.8456721901893616\n          },\n          {\n            \"X\": 0.17679736018180847,\n            \"Y\": 0.8553513884544373\n          },\n          {\n            \"X\": 0.12376473844051361,\n            \"Y\": 0.8552669882774353\n          }\n        ]\n      },\n      \"Id\": \"0dc57de5-6004-4f09-9711-0786c5f130fb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88178253173828,\n      \"Text\": \"to\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0121913505718112,\n          \"Height\": 0.007592083886265755,\n          \"Left\": 0.18070854246616364,\n          \"Top\": 0.8462465405464172\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.18071292340755463,\n            \"Y\": 0.8462465405464172\n          },\n          {\n            \"X\": 0.1928998827934265,\n            \"Y\": 0.8462659120559692\n          },\n          {\n            \"X\": 0.1928955465555191,\n            \"Y\": 0.8538386225700378\n          },\n          {\n            \"X\": 0.18070854246616364,\n            \"Y\": 0.8538192510604858\n          }\n        ]\n      },\n      \"Id\": \"23d99bf2-40eb-4d03-ac58-d027f677380f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93157196044922,\n      \"Text\": \"influence\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.051558468490839005,\n          \"Height\": 0.008555515669286251,\n          \"Left\": 0.19748060405254364,\n          \"Top\": 0.8454824686050415\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.19748544692993164,\n            \"Y\": 0.8454824686050415\n          },\n          {\n            \"X\": 0.24903906881809235,\n            \"Y\": 0.8455642461776733\n          },\n          {\n            \"X\": 0.24903440475463867,\n            \"Y\": 0.8540379405021667\n          },\n          {\n            \"X\": 0.19748060405254364,\n            \"Y\": 0.8539559841156006\n          }\n        ]\n      },\n      \"Id\": \"876e9f65-db68-4d5b-887c-ece42243c167\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96420288085938,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01858859322965145,\n          \"Height\": 0.008350089192390442,\n          \"Left\": 0.25344884395599365,\n          \"Top\": 0.8456857204437256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25345340371131897,\n            \"Y\": 0.8456857204437256\n          },\n          {\n            \"X\": 0.27203744649887085,\n            \"Y\": 0.8457151651382446\n          },\n          {\n            \"X\": 0.2720329463481903,\n            \"Y\": 0.8540357947349548\n          },\n          {\n            \"X\": 0.25344884395599365,\n            \"Y\": 0.8540062308311462\n          }\n        ]\n      },\n      \"Id\": \"f1f3502e-e561-4f89-af5a-a474913f4a93\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86918640136719,\n      \"Text\": \"issuance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04904410243034363,\n          \"Height\": 0.008432948030531406,\n          \"Left\": 0.27649644017219543,\n          \"Top\": 0.8455315828323364\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2765009105205536,\n            \"Y\": 0.8455315828323364\n          },\n          {\n            \"X\": 0.32554054260253906,\n            \"Y\": 0.8456093668937683\n          },\n          {\n            \"X\": 0.32553622126579285,\n            \"Y\": 0.8539645075798035\n          },\n          {\n            \"X\": 0.27649644017219543,\n            \"Y\": 0.8538865447044373\n          }\n        ]\n      },\n      \"Id\": \"8785c9c3-797f-44e1-9e29-204d161581d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92494201660156,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.012043614871799946,\n          \"Height\": 0.008211491629481316,\n          \"Left\": 0.32991278171539307,\n          \"Top\": 0.8454001545906067\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3299170136451721,\n            \"Y\": 0.8454001545906067\n          },\n          {\n            \"X\": 0.34195640683174133,\n            \"Y\": 0.8454192280769348\n          },\n          {\n            \"X\": 0.34195223450660706,\n            \"Y\": 0.8536116480827332\n          },\n          {\n            \"X\": 0.32991278171539307,\n            \"Y\": 0.8535924553871155\n          }\n        ]\n      },\n      \"Id\": \"ce082b73-fee2-4a47-9721-4bd710e6722a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9778060913086,\n      \"Text\": \"any\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021266771480441093,\n          \"Height\": 0.008008042350411415,\n          \"Left\": 0.34591197967529297,\n          \"Top\": 0.8472185134887695\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3459160327911377,\n            \"Y\": 0.8472185134887695\n          },\n          {\n            \"X\": 0.367178738117218,\n            \"Y\": 0.8472522497177124\n          },\n          {\n            \"X\": 0.36717477440834045,\n            \"Y\": 0.8552265167236328\n          },\n          {\n            \"X\": 0.34591197967529297,\n            \"Y\": 0.8551927208900452\n          }\n        ]\n      },\n      \"Id\": \"84e098ba-2a9c-4429-a6f1-bc33d1690840\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.93783569335938,\n      \"Text\": \"guaranty\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.050202008336782455,\n          \"Height\": 0.009037371724843979,\n          \"Left\": 0.3713204264640808,\n          \"Top\": 0.846299409866333\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3713248670101166,\n            \"Y\": 0.846299409866333\n          },\n          {\n            \"X\": 0.42152243852615356,\n            \"Y\": 0.8463790416717529\n          },\n          {\n            \"X\": 0.4215181767940521,\n            \"Y\": 0.8553367853164673\n          },\n          {\n            \"X\": 0.3713204264640808,\n            \"Y\": 0.8552569150924683\n          }\n        ]\n      },\n      \"Id\": \"46ca911e-0a0d-4905-b857-6e8674ed81bb\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.49405670166016,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01211734302341938,\n          \"Height\": 0.006541769485920668,\n          \"Left\": 0.42604392766952515,\n          \"Top\": 0.8470091223716736\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4260469973087311,\n            \"Y\": 0.8470091223716736\n          },\n          {\n            \"X\": 0.43816128373146057,\n            \"Y\": 0.847028374671936\n          },\n          {\n            \"X\": 0.43815821409225464,\n            \"Y\": 0.853550910949707\n          },\n          {\n            \"X\": 0.42604392766952515,\n            \"Y\": 0.8535316586494446\n          }\n        ]\n      },\n      \"Id\": \"d9efd543-62d5-46b0-9a9a-13e6de187731\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.86962890625,\n      \"Text\": \"insurance\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05440984666347504,\n          \"Height\": 0.008406645618379116,\n          \"Left\": 0.44264066219329834,\n          \"Top\": 0.8453825116157532\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.44264453649520874,\n            \"Y\": 0.8453825116157532\n          },\n          {\n            \"X\": 0.49705052375793457,\n            \"Y\": 0.8454688191413879\n          },\n          {\n            \"X\": 0.4970468282699585,\n            \"Y\": 0.8537891507148743\n          },\n          {\n            \"X\": 0.44264066219329834,\n            \"Y\": 0.8537026643753052\n          }\n        ]\n      },\n      \"Id\": \"b74bd220-b406-45ed-92d6-562cc6175a11\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.95314025878906,\n      \"Text\": \"by\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.014249389059841633,\n          \"Height\": 0.009774141944944859,\n          \"Left\": 0.5013957023620605,\n          \"Top\": 0.845327615737915\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5013999938964844,\n            \"Y\": 0.845327615737915\n          },\n          {\n            \"X\": 0.5156450867652893,\n            \"Y\": 0.8453502058982849\n          },\n          {\n            \"X\": 0.5156408548355103,\n            \"Y\": 0.8551017045974731\n          },\n          {\n            \"X\": 0.5013957023620605,\n            \"Y\": 0.8550790548324585\n          }\n        ]\n      },\n      \"Id\": \"5de71baa-1140-494f-83a3-fe50995edaee\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96685028076172,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018756425008177757,\n          \"Height\": 0.007963436655700207,\n          \"Left\": 0.520088791847229,\n          \"Top\": 0.8455421924591064\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.520092248916626,\n            \"Y\": 0.8455421924591064\n          },\n          {\n            \"X\": 0.5388452410697937,\n            \"Y\": 0.8455719351768494\n          },\n          {\n            \"X\": 0.5388419032096863,\n            \"Y\": 0.8535056710243225\n          },\n          {\n            \"X\": 0.520088791847229,\n            \"Y\": 0.85347580909729\n          }\n        ]\n      },\n      \"Id\": \"a4aab8a3-afe0-4de3-8cd3-e25e35464a38\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.7632827758789,\n      \"Text\": \"VA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018537534400820732,\n          \"Height\": 0.008370147086679935,\n          \"Left\": 0.5431782007217407,\n          \"Top\": 0.8453381061553955\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5431817173957825,\n            \"Y\": 0.8453381061553955\n          },\n          {\n            \"X\": 0.5617157220840454,\n            \"Y\": 0.8453674912452698\n          },\n          {\n            \"X\": 0.5617123246192932,\n            \"Y\": 0.8537082672119141\n          },\n          {\n            \"X\": 0.5431782007217407,\n            \"Y\": 0.8536787629127502\n          }\n        ]\n      },\n      \"Id\": \"440581f5-6d86-4637-bbea-96d98f17a4f7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 92.92882537841797,\n      \"Text\": \"Secretary,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.057846684008836746,\n          \"Height\": 0.00954474788159132,\n          \"Left\": 0.5660192370414734,\n          \"Top\": 0.8454465866088867\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5660231113433838,\n            \"Y\": 0.8454465866088867\n          },\n          {\n            \"X\": 0.6238659024238586,\n            \"Y\": 0.845538318157196\n          },\n          {\n            \"X\": 0.6238622665405273,\n            \"Y\": 0.8549913167953491\n          },\n          {\n            \"X\": 0.5660192370414734,\n            \"Y\": 0.8548993468284607\n          }\n        ]\n      },\n      \"Id\": \"d54c3561-2932-4036-9a0f-28cb36cf4a07\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98011779785156,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01881951279938221,\n          \"Height\": 0.0079349922016263,\n          \"Left\": 0.6291989684104919,\n          \"Top\": 0.8454809784889221\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6292019486427307,\n            \"Y\": 0.8454809784889221\n          },\n          {\n            \"X\": 0.648018479347229,\n            \"Y\": 0.8455108404159546\n          },\n          {\n            \"X\": 0.6480154991149902,\n            \"Y\": 0.8534159660339355\n          },\n          {\n            \"X\": 0.6291989684104919,\n            \"Y\": 0.8533860445022583\n          }\n        ]\n      },\n      \"Id\": \"846afbb7-5b64-4094-988b-bb2037928381\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 90.70294189453125,\n      \"Text\": \"U.S.D.A.,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0592133030295372,\n          \"Height\": 0.00934812892228365,\n          \"Left\": 0.6519624590873718,\n          \"Top\": 0.8450913429260254\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6519659161567688,\n            \"Y\": 0.8450913429260254\n          },\n          {\n            \"X\": 0.7111757397651672,\n            \"Y\": 0.8451852202415466\n          },\n          {\n            \"X\": 0.7111725211143494,\n            \"Y\": 0.8544394373893738\n          },\n          {\n            \"X\": 0.6519624590873718,\n            \"Y\": 0.8543453216552734\n          }\n        ]\n      },\n      \"Id\": \"4c3f0240-b8bb-4c12-ad0e-f87d8265a695\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.26384735107422,\n      \"Text\": \"FmHA/FHA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07057420164346695,\n          \"Height\": 0.009098672308027744,\n          \"Left\": 0.7153812050819397,\n          \"Top\": 0.844684362411499\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.715384304523468,\n            \"Y\": 0.844684362411499\n          },\n          {\n            \"X\": 0.7859554290771484,\n            \"Y\": 0.8447962403297424\n          },\n          {\n            \"X\": 0.7859525680541992,\n            \"Y\": 0.8537830114364624\n          },\n          {\n            \"X\": 0.7153812050819397,\n            \"Y\": 0.8536708354949951\n          }\n        ]\n      },\n      \"Id\": \"fe7ea31b-6634-46b0-a97f-5c81a2786f20\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.56124877929688,\n      \"Text\": \"Commissioner,\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0832727923989296,\n          \"Height\": 0.009381930343806744,\n          \"Left\": 0.7910750508308411,\n          \"Top\": 0.8454275727272034\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7910779714584351,\n            \"Y\": 0.8454275727272034\n          },\n          {\n            \"X\": 0.8743478655815125,\n            \"Y\": 0.8455595970153809\n          },\n          {\n            \"X\": 0.8743453025817871,\n            \"Y\": 0.8548094630241394\n          },\n          {\n            \"X\": 0.7910750508308411,\n            \"Y\": 0.8546770811080933\n          }\n        ]\n      },\n      \"Id\": \"e6ccde76-391c-4172-82cb-3bc53ee37530\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.59326934814453,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01185622625052929,\n          \"Height\": 0.006640817038714886,\n          \"Left\": 0.8792710304260254,\n          \"Top\": 0.8468224406242371\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8792728185653687,\n            \"Y\": 0.8468224406242371\n          },\n          {\n            \"X\": 0.8911272287368774,\n            \"Y\": 0.8468412756919861\n          },\n          {\n            \"X\": 0.8911254405975342,\n            \"Y\": 0.8534632921218872\n          },\n          {\n            \"X\": 0.8792710304260254,\n            \"Y\": 0.8534444570541382\n          }\n        ]\n      },\n      \"Id\": \"8ac5bbed-e6a6-4476-ac54-b4ddb6fa50a9\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97728729248047,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018665069714188576,\n          \"Height\": 0.007688588462769985,\n          \"Left\": 0.04174518212676048,\n          \"Top\": 0.8560996651649475\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04175008460879326,\n            \"Y\": 0.8560996651649475\n          },\n          {\n            \"X\": 0.06041024997830391,\n            \"Y\": 0.8561294078826904\n          },\n          {\n            \"X\": 0.06040540710091591,\n            \"Y\": 0.8637883067131042\n          },\n          {\n            \"X\": 0.04174518212676048,\n            \"Y\": 0.8637585043907166\n          }\n        ]\n      },\n      \"Id\": \"4263e6c0-da1a-44cb-a8df-699ef280df65\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.66361236572266,\n      \"Text\": \"HUD/CPD\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.060748033225536346,\n          \"Height\": 0.008840749971568584,\n          \"Left\": 0.06470279395580292,\n          \"Top\": 0.8552740216255188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06470830738544464,\n            \"Y\": 0.8552740216255188\n          },\n          {\n            \"X\": 0.12545083463191986,\n            \"Y\": 0.8553706407546997\n          },\n          {\n            \"X\": 0.12544554471969604,\n            \"Y\": 0.8641147613525391\n          },\n          {\n            \"X\": 0.06470279395580292,\n            \"Y\": 0.864017903804779\n          }\n        ]\n      },\n      \"Id\": \"585c1dbe-4391-44b6-8810-15e16dfd4d4e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88256072998047,\n      \"Text\": \"Assistant\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.052792489528656006,\n          \"Height\": 0.00839846208691597,\n          \"Left\": 0.12978830933570862,\n          \"Top\": 0.8555890917778015\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12979331612586975,\n            \"Y\": 0.8555890917778015\n          },\n          {\n            \"X\": 0.18258079886436462,\n            \"Y\": 0.85567307472229\n          },\n          {\n            \"X\": 0.182575985789299,\n            \"Y\": 0.8639875650405884\n          },\n          {\n            \"X\": 0.12978830933570862,\n            \"Y\": 0.8639034032821655\n          }\n        ]\n      },\n      \"Id\": \"47703988-53d3-4bcf-85bc-67595f0b60ef\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.31501007080078,\n      \"Text\": \"Secretary.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05783337727189064,\n          \"Height\": 0.010026630014181137,\n          \"Left\": 0.18685971200466156,\n          \"Top\": 0.8554984331130981\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1868654489517212,\n            \"Y\": 0.8554984331130981\n          },\n          {\n            \"X\": 0.2446930855512619,\n            \"Y\": 0.8555904030799866\n          },\n          {\n            \"X\": 0.24468761682510376,\n            \"Y\": 0.8655250668525696\n          },\n          {\n            \"X\": 0.18685971200466156,\n            \"Y\": 0.865432858467102\n          }\n        ]\n      },\n      \"Id\": \"4af3532a-abfa-44d6-b8f9-3003b258dab3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.79663848876953,\n      \"Text\": \"26.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015469023026525974,\n          \"Height\": 0.007595287635922432,\n          \"Left\": 0.041620463132858276,\n          \"Top\": 0.8738805651664734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041625313460826874,\n            \"Y\": 0.8738805651664734\n          },\n          {\n            \"X\": 0.057089488953351974,\n            \"Y\": 0.8739053010940552\n          },\n          {\n            \"X\": 0.057084690779447556,\n            \"Y\": 0.8814758658409119\n          },\n          {\n            \"X\": 0.041620463132858276,\n            \"Y\": 0.8814511299133301\n          }\n        ]\n      },\n      \"Id\": \"aa9c1375-1256-4148-aeeb-e429fae14c4a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92945861816406,\n      \"Text\": \"Signature\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04803625866770744,\n          \"Height\": 0.008718257769942284,\n          \"Left\": 0.06149893254041672,\n          \"Top\": 0.8738793730735779\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06150439381599426,\n            \"Y\": 0.8738793730735779\n          },\n          {\n            \"X\": 0.10953519493341446,\n            \"Y\": 0.8739561438560486\n          },\n          {\n            \"X\": 0.10952991247177124,\n            \"Y\": 0.8825976252555847\n          },\n          {\n            \"X\": 0.06149893254041672,\n            \"Y\": 0.8825206160545349\n          }\n        ]\n      },\n      \"Id\": \"a5d3a997-4de9-4f15-970e-3e7ded1e4f4c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.69453430175781,\n      \"Text\": \"of\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011160757392644882,\n          \"Height\": 0.007343128323554993,\n          \"Left\": 0.1130417212843895,\n          \"Top\": 0.874015212059021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11304618418216705,\n            \"Y\": 0.874015212059021\n          },\n          {\n            \"X\": 0.12420247495174408,\n            \"Y\": 0.8740330338478088\n          },\n          {\n            \"X\": 0.1241980493068695,\n            \"Y\": 0.8813583254814148\n          },\n          {\n            \"X\": 0.1130417212843895,\n            \"Y\": 0.8813404440879822\n          }\n        ]\n      },\n      \"Id\": \"e7a67881-f334-40be-8383-554c5ed4f22a\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76145935058594,\n      \"Text\": \"Employer\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046887774020433426,\n          \"Height\": 0.00851768534630537,\n          \"Left\": 0.1276172250509262,\n          \"Top\": 0.8739931583404541\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1276223212480545,\n            \"Y\": 0.8739931583404541\n          },\n          {\n            \"X\": 0.17450501024723053,\n            \"Y\": 0.8740681409835815\n          },\n          {\n            \"X\": 0.17450009286403656,\n            \"Y\": 0.8825108408927917\n          },\n          {\n            \"X\": 0.1276172250509262,\n            \"Y\": 0.8824357390403748\n          }\n        ]\n      },\n      \"Id\": \"94033ba8-a96e-4391-ab9b-c478f8671360\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 89.8034439086914,\n      \"Text\": \"27.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015406204387545586,\n          \"Height\": 0.007398146204650402,\n          \"Left\": 0.4122706353664398,\n          \"Top\": 0.8738588094711304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41227415204048157,\n            \"Y\": 0.8738588094711304\n          },\n          {\n            \"X\": 0.42767682671546936,\n            \"Y\": 0.8738834261894226\n          },\n          {\n            \"X\": 0.42767333984375,\n            \"Y\": 0.8812569379806519\n          },\n          {\n            \"X\": 0.4122706353664398,\n            \"Y\": 0.8812322616577148\n          }\n        ]\n      },\n      \"Id\": \"c5f687a5-7358-4121-8a88-125417b12449\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85868835449219,\n      \"Text\": \"Title\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022803107276558876,\n          \"Height\": 0.007688338402658701,\n          \"Left\": 0.4316647946834564,\n          \"Top\": 0.8736591339111328\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43166837096214294,\n            \"Y\": 0.8736591339111328\n          },\n          {\n            \"X\": 0.45446789264678955,\n            \"Y\": 0.8736956119537354\n          },\n          {\n            \"X\": 0.4544643759727478,\n            \"Y\": 0.8813474774360657\n          },\n          {\n            \"X\": 0.4316647946834564,\n            \"Y\": 0.8813109397888184\n          }\n        ]\n      },\n      \"Id\": \"d8eb410e-c021-4980-9157-426aa18dc986\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.61251068115234,\n      \"Text\": \"(Please\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03619955852627754,\n          \"Height\": 0.008432823233306408,\n          \"Left\": 0.45802462100982666,\n          \"Top\": 0.8737311959266663\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4580284655094147,\n            \"Y\": 0.8737311959266663\n          },\n          {\n            \"X\": 0.4942241907119751,\n            \"Y\": 0.8737890720367432\n          },\n          {\n            \"X\": 0.49422046542167664,\n            \"Y\": 0.8821640610694885\n          },\n          {\n            \"X\": 0.45802462100982666,\n            \"Y\": 0.8821060657501221\n          }\n        ]\n      },\n      \"Id\": \"ccf82ba2-f6f7-4d5b-9662-e09ef2d946a2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77928161621094,\n      \"Text\": \"print\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023355158045887947,\n          \"Height\": 0.008763357065618038,\n          \"Left\": 0.49771398305892944,\n          \"Top\": 0.8740018010139465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49771782755851746,\n            \"Y\": 0.8740018010139465\n          },\n          {\n            \"X\": 0.5210691094398499,\n            \"Y\": 0.8740391731262207\n          },\n          {\n            \"X\": 0.521065354347229,\n            \"Y\": 0.8827651739120483\n          },\n          {\n            \"X\": 0.49771398305892944,\n            \"Y\": 0.8827277421951294\n          }\n        ]\n      },\n      \"Id\": \"53e71626-9008-4fa6-ae0c-51e09ba2a505\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.29745483398438,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011380857788026333,\n          \"Height\": 0.006032497622072697,\n          \"Left\": 0.5244594812393188,\n          \"Top\": 0.8753209710121155\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5244620442390442,\n            \"Y\": 0.8753209710121155\n          },\n          {\n            \"X\": 0.5358403325080872,\n            \"Y\": 0.875339150428772\n          },\n          {\n            \"X\": 0.5358377695083618,\n            \"Y\": 0.8813534379005432\n          },\n          {\n            \"X\": 0.5244594812393188,\n            \"Y\": 0.8813352584838867\n          }\n        ]\n      },\n      \"Id\": \"6ef01329-c506-4ec1-97c5-ba1f8bf2891d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 91.73021697998047,\n      \"Text\": \"type)\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.025156380608677864,\n          \"Height\": 0.008574537001550198,\n          \"Left\": 0.5394709706306458,\n          \"Top\": 0.8740840554237366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.539474606513977,\n            \"Y\": 0.8740840554237366\n          },\n          {\n            \"X\": 0.5646273493766785,\n            \"Y\": 0.8741242289543152\n          },\n          {\n            \"X\": 0.5646238327026367,\n            \"Y\": 0.8826586008071899\n          },\n          {\n            \"X\": 0.5394709706306458,\n            \"Y\": 0.8826183080673218\n          }\n        ]\n      },\n      \"Id\": \"3b83f1f2-1678-4576-9947-c604cedaa840\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 82.90569305419922,\n      \"Text\": \"28.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015413868241012096,\n          \"Height\": 0.007689622230827808,\n          \"Left\": 0.7841504216194153,\n          \"Top\": 0.873586118221283\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7841528058052063,\n            \"Y\": 0.873586118221283\n          },\n          {\n            \"X\": 0.7995643019676208,\n            \"Y\": 0.87361079454422\n          },\n          {\n            \"X\": 0.7995619177818298,\n            \"Y\": 0.8812757730484009\n          },\n          {\n            \"X\": 0.7841504216194153,\n            \"Y\": 0.8812510967254639\n          }\n        ]\n      },\n      \"Id\": \"7181bcac-bf59-4627-ba53-0284a38cc600\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75901794433594,\n      \"Text\": \"Date\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023690130561590195,\n          \"Height\": 0.0072770188562572,\n          \"Left\": 0.8039408326148987,\n          \"Top\": 0.8738868832588196\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8039430379867554,\n            \"Y\": 0.8738868832588196\n          },\n          {\n            \"X\": 0.8276309370994568,\n            \"Y\": 0.873924732208252\n          },\n          {\n            \"X\": 0.8276287913322449,\n            \"Y\": 0.8811638951301575\n          },\n          {\n            \"X\": 0.8039408326148987,\n            \"Y\": 0.8811259269714355\n          }\n        ]\n      },\n      \"Id\": \"c0d3cb87-ad7c-4f0a-8f74-d5de17c78a46\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.790771484375,\n      \"Text\": \"Richard\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10231700539588928,\n          \"Height\": 0.018156904727220535,\n          \"Left\": 0.11439472436904907,\n          \"Top\": 0.8892667889595032\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11440567672252655,\n            \"Y\": 0.8892667889595032\n          },\n          {\n            \"X\": 0.21671172976493835,\n            \"Y\": 0.8894310593605042\n          },\n          {\n            \"X\": 0.21670158207416534,\n            \"Y\": 0.907423734664917\n          },\n          {\n            \"X\": 0.11439472436904907,\n            \"Y\": 0.9072586894035339\n          }\n        ]\n      },\n      \"Id\": \"d144fdda-4a21-425f-b8f3-9a4ddb851b5d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 95.9208984375,\n      \"Text\": \"Roe\",\n      \"TextType\": \"HANDWRITING\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04209454357624054,\n          \"Height\": 0.016491763293743134,\n          \"Left\": 0.21950413286685944,\n          \"Top\": 0.8902181386947632\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.21951337158679962,\n            \"Y\": 0.8902181386947632\n          },\n          {\n            \"X\": 0.2615986764431,\n            \"Y\": 0.8902856707572937\n          },\n          {\n            \"X\": 0.26158973574638367,\n            \"Y\": 0.9067098498344421\n          },\n          {\n            \"X\": 0.21950413286685944,\n            \"Y\": 0.9066420197486877\n          }\n        ]\n      },\n      \"Id\": \"528d9939-2638-4476-bc31-50c293f418cc\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.75035858154297,\n      \"Text\": \"VA\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022705379873514175,\n          \"Height\": 0.010215056128799915,\n          \"Left\": 0.49221789836883545,\n          \"Top\": 0.8931904435157776\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4922224283218384,\n            \"Y\": 0.8931904435157776\n          },\n          {\n            \"X\": 0.5149232745170593,\n            \"Y\": 0.8932269215583801\n          },\n          {\n            \"X\": 0.514918863773346,\n            \"Y\": 0.903405487537384\n          },\n          {\n            \"X\": 0.49221789836883545,\n            \"Y\": 0.9033688902854919\n          }\n        ]\n      },\n      \"Id\": \"3e2a2753-ec6d-4ea3-ba36-27a63d1b0b55\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.89824676513672,\n      \"Text\": \"Secretary\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0700361430644989,\n          \"Height\": 0.012258154340088367,\n          \"Left\": 0.5190161466598511,\n          \"Top\": 0.8929892182350159\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5190213918685913,\n            \"Y\": 0.8929892182350159\n          },\n          {\n            \"X\": 0.5890522599220276,\n            \"Y\": 0.8931017518043518\n          },\n          {\n            \"X\": 0.5890474319458008,\n            \"Y\": 0.9052473902702332\n          },\n          {\n            \"X\": 0.5190161466598511,\n            \"Y\": 0.9051344990730286\n          }\n        ]\n      },\n      \"Id\": \"12be31e1-fa6f-4f37-b1be-d774ccccd7df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92327117919922,\n      \"Text\": \"01/05/2007\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08114872872829437,\n          \"Height\": 0.010597536340355873,\n          \"Left\": 0.8064961433410645,\n          \"Top\": 0.9041160941123962\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8064993619918823,\n            \"Y\": 0.9041160941123962\n          },\n          {\n            \"X\": 0.88764488697052,\n            \"Y\": 0.9042468070983887\n          },\n          {\n            \"X\": 0.8876420259475708,\n            \"Y\": 0.9147136211395264\n          },\n          {\n            \"X\": 0.8064961433410645,\n            \"Y\": 0.9145824909210205\n          }\n        ]\n      },\n      \"Id\": \"84f5f7c5-1be8-45a9-a3b6-87134db33523\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 94.03479766845703,\n      \"Text\": \"29.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015469284728169441,\n          \"Height\": 0.007808100897818804,\n          \"Left\": 0.041557952761650085,\n          \"Top\": 0.9192807674407959\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04156293720006943,\n            \"Y\": 0.9192807674407959\n          },\n          {\n            \"X\": 0.05702723562717438,\n            \"Y\": 0.9193058013916016\n          },\n          {\n            \"X\": 0.057022303342819214,\n            \"Y\": 0.9270889163017273\n          },\n          {\n            \"X\": 0.041557952761650085,\n            \"Y\": 0.9270638227462769\n          }\n        ]\n      },\n      \"Id\": \"e0438392-3b1a-4272-b036-f12043ecbce3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.6878433227539,\n      \"Text\": \"Print\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024107523262500763,\n          \"Height\": 0.00761818140745163,\n          \"Left\": 0.06131851300597191,\n          \"Top\": 0.9192103743553162\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.06132330372929573,\n            \"Y\": 0.9192103743553162\n          },\n          {\n            \"X\": 0.08542603999376297,\n            \"Y\": 0.9192493557929993\n          },\n          {\n            \"X\": 0.08542133122682571,\n            \"Y\": 0.9268285036087036\n          },\n          {\n            \"X\": 0.06131851300597191,\n            \"Y\": 0.9267894625663757\n          }\n        ]\n      },\n      \"Id\": \"6cda84ae-835a-4760-a22f-4718b961d1e2\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.48641967773438,\n      \"Text\": \"or\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011118663474917412,\n          \"Height\": 0.005891849286854267,\n          \"Left\": 0.08869269490242004,\n          \"Top\": 0.9209713339805603\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.08869633823633194,\n            \"Y\": 0.9209713339805603\n          },\n          {\n            \"X\": 0.0998113602399826,\n            \"Y\": 0.9209893345832825\n          },\n          {\n            \"X\": 0.0998077467083931,\n            \"Y\": 0.9268631935119629\n          },\n          {\n            \"X\": 0.08869269490242004,\n            \"Y\": 0.926845133304596\n          }\n        ]\n      },\n      \"Id\": \"9ab61a04-124c-4395-96a7-89a8c49b265f\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.84601593017578,\n      \"Text\": \"type\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.021941615268588066,\n          \"Height\": 0.006715180817991495,\n          \"Left\": 0.10292373597621918,\n          \"Top\": 0.9204069972038269\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10292783379554749,\n            \"Y\": 0.9204069972038269\n          },\n          {\n            \"X\": 0.12486535310745239,\n            \"Y\": 0.920442521572113\n          },\n          {\n            \"X\": 0.12486132234334946,\n            \"Y\": 0.9271222352981567\n          },\n          {\n            \"X\": 0.10292373597621918,\n            \"Y\": 0.9270866513252258\n          }\n        ]\n      },\n      \"Id\": \"b3b6fafa-9f54-417e-8965-1f8df2d4cf8b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92626953125,\n      \"Text\": \"name\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02756710909307003,\n          \"Height\": 0.005829214584082365,\n          \"Left\": 0.12872561812400818,\n          \"Top\": 0.9209456443786621\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12872910499572754,\n            \"Y\": 0.9209456443786621\n          },\n          {\n            \"X\": 0.15629272162914276,\n            \"Y\": 0.9209902882575989\n          },\n          {\n            \"X\": 0.15628930926322937,\n            \"Y\": 0.9267748594284058\n          },\n          {\n            \"X\": 0.12872561812400818,\n            \"Y\": 0.9267301559448242\n          }\n        ]\n      },\n      \"Id\": \"89848641-9986-4c41-a6ba-1bc7b80f83c7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98239135742188,\n      \"Text\": \"signed\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032838594168424606,\n          \"Height\": 0.007285482715815306,\n          \"Left\": 0.1598936915397644,\n          \"Top\": 0.9197788238525391\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15989795327186584,\n            \"Y\": 0.9197788238525391\n          },\n          {\n            \"X\": 0.1927322894334793,\n            \"Y\": 0.9198319911956787\n          },\n          {\n            \"X\": 0.19272813200950623,\n            \"Y\": 0.9270643591880798\n          },\n          {\n            \"X\": 0.1598936915397644,\n            \"Y\": 0.9270110726356506\n          }\n        ]\n      },\n      \"Id\": \"e074a644-8fe6-4ec8-b0fb-5a4cb9596115\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80211639404297,\n      \"Text\": \"in\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00910923071205616,\n          \"Height\": 0.0074564493261277676,\n          \"Left\": 0.19642481207847595,\n          \"Top\": 0.9193009734153748\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1964290738105774,\n            \"Y\": 0.9193009734153748\n          },\n          {\n            \"X\": 0.20553404092788696,\n            \"Y\": 0.9193156957626343\n          },\n          {\n            \"X\": 0.2055298089981079,\n            \"Y\": 0.9267574548721313\n          },\n          {\n            \"X\": 0.19642481207847595,\n            \"Y\": 0.926742672920227\n          }\n        ]\n      },\n      \"Id\": \"3c8587dd-dba5-4ef3-b43a-84eb25a430d8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 83.99394989013672,\n      \"Text\": \"Item\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.022337505593895912,\n          \"Height\": 0.007546872366219759,\n          \"Left\": 0.20970915257930756,\n          \"Top\": 0.9193754196166992\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2097133994102478,\n            \"Y\": 0.9193754196166992\n          },\n          {\n            \"X\": 0.23204664885997772,\n            \"Y\": 0.9194115400314331\n          },\n          {\n            \"X\": 0.23204246163368225,\n            \"Y\": 0.9269222617149353\n          },\n          {\n            \"X\": 0.20970915257930756,\n            \"Y\": 0.9268860220909119\n          }\n        ]\n      },\n      \"Id\": \"0a88821a-56a1-4a8f-92da-287ac8d5379b\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.81656646728516,\n      \"Text\": \"26\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01245806086808443,\n          \"Height\": 0.0077048540115356445,\n          \"Left\": 0.2357420176267624,\n          \"Top\": 0.919238269329071\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23574627935886383,\n            \"Y\": 0.919238269329071\n          },\n          {\n            \"X\": 0.24820007383823395,\n            \"Y\": 0.9192584156990051\n          },\n          {\n            \"X\": 0.2481958419084549,\n            \"Y\": 0.9269431233406067\n          },\n          {\n            \"X\": 0.2357420176267624,\n            \"Y\": 0.9269229173660278\n          }\n        ]\n      },\n      \"Id\": \"157dfdf2-199f-48dc-924c-641d4955188c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.66471099853516,\n      \"Text\": \"30.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015284568071365356,\n          \"Height\": 0.007808408699929714,\n          \"Left\": 0.4124184846878052,\n          \"Top\": 0.9191189408302307\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.41242220997810364,\n            \"Y\": 0.9191189408302307\n          },\n          {\n            \"X\": 0.42770305275917053,\n            \"Y\": 0.9191436767578125\n          },\n          {\n            \"X\": 0.42769938707351685,\n            \"Y\": 0.9269273281097412\n          },\n          {\n            \"X\": 0.4124184846878052,\n            \"Y\": 0.9269025325775146\n          }\n        ]\n      },\n      \"Id\": \"94651d6d-2505-44a8-9ee4-a3044323e386\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9395523071289,\n      \"Text\": \"Phone\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.032026953995227814,\n          \"Height\": 0.007984377443790436,\n          \"Left\": 0.432475745677948,\n          \"Top\": 0.9190959930419922\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43247947096824646,\n            \"Y\": 0.9190959930419922\n          },\n          {\n            \"X\": 0.4645026922225952,\n            \"Y\": 0.919147789478302\n          },\n          {\n            \"X\": 0.4644990861415863,\n            \"Y\": 0.9270803928375244\n          },\n          {\n            \"X\": 0.432475745677948,\n            \"Y\": 0.9270284175872803\n          }\n        ]\n      },\n      \"Id\": \"08411395-6455-42a8-904e-11b63608dd5c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.93892669677734,\n      \"Text\": \"No.\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.018089743331074715,\n          \"Height\": 0.0076402765698730946,\n          \"Left\": 0.46839064359664917,\n          \"Top\": 0.919251024723053\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46839410066604614,\n            \"Y\": 0.919251024723053\n          },\n          {\n            \"X\": 0.48648038506507874,\n            \"Y\": 0.9192802906036377\n          },\n          {\n            \"X\": 0.48647698760032654,\n            \"Y\": 0.9268912672996521\n          },\n          {\n            \"X\": 0.46839064359664917,\n            \"Y\": 0.9268619418144226\n          }\n        ]\n      },\n      \"Id\": \"a6e2dad0-3940-4e43-8437-8d36d3dfed26\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82147979736328,\n      \"Text\": \"Richard\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06632506847381592,\n          \"Height\": 0.012408553622663021,\n          \"Left\": 0.0926700159907341,\n          \"Top\": 0.9323803186416626\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09267762303352356,\n            \"Y\": 0.9323803186416626\n          },\n          {\n            \"X\": 0.15899507701396942,\n            \"Y\": 0.9324880242347717\n          },\n          {\n            \"X\": 0.1589878350496292,\n            \"Y\": 0.9447888731956482\n          },\n          {\n            \"X\": 0.0926700159907341,\n            \"Y\": 0.9446808099746704\n          }\n        ]\n      },\n      \"Id\": \"2f552c7e-b5ad-46c4-95e8-60f09b4b59ed\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77120208740234,\n      \"Text\": \"Roe\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.034787800163030624,\n          \"Height\": 0.012352220714092255,\n          \"Left\": 0.16601626574993134,\n          \"Top\": 0.9324567914009094\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16602346301078796,\n            \"Y\": 0.9324567914009094\n          },\n          {\n            \"X\": 0.20080405473709106,\n            \"Y\": 0.9325132369995117\n          },\n          {\n            \"X\": 0.20079703629016876,\n            \"Y\": 0.9448090195655823\n          },\n          {\n            \"X\": 0.16601626574993134,\n            \"Y\": 0.9447523355484009\n          }\n        ]\n      },\n      \"Id\": \"0d0c58c4-df78-4575-a418-c396d01e98ea\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.91144561767578,\n      \"Text\": \"555-0100\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08273287117481232,\n          \"Height\": 0.01224044244736433,\n          \"Left\": 0.49861449003219604,\n          \"Top\": 0.9279195070266724\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.49861982464790344,\n            \"Y\": 0.9279195070266724\n          },\n          {\n            \"X\": 0.5813473463058472,\n            \"Y\": 0.9280536770820618\n          },\n          {\n            \"X\": 0.5813424587249756,\n            \"Y\": 0.9401599168777466\n          },\n          {\n            \"X\": 0.49861449003219604,\n            \"Y\": 0.9400253295898438\n          }\n        ]\n      },\n      \"Id\": \"13362472-9734-4538-a450-3246bf4c4660\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.90381622314453,\n      \"Text\": \"Form\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029800014570355415,\n          \"Height\": 0.00845653098076582,\n          \"Left\": 0.783087968826294,\n          \"Top\": 0.9641938805580139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7830906510353088,\n            \"Y\": 0.9641938805580139\n          },\n          {\n            \"X\": 0.8128880262374878,\n            \"Y\": 0.9642426371574402\n          },\n          {\n            \"X\": 0.8128854632377625,\n            \"Y\": 0.972650408744812\n          },\n          {\n            \"X\": 0.783087968826294,\n            \"Y\": 0.9726014733314514\n          }\n        ]\n      },\n      \"Id\": \"660dbf49-99c9-4e8f-9f92-e7b929fa06df\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.85798645019531,\n      \"Text\": \"1005\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029672324657440186,\n          \"Height\": 0.008579621091485023,\n          \"Left\": 0.8199133276939392,\n          \"Top\": 0.9641006588935852\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8199158906936646,\n            \"Y\": 0.9641006588935852\n          },\n          {\n            \"X\": 0.8495856523513794,\n            \"Y\": 0.9641492366790771\n          },\n          {\n            \"X\": 0.8495832085609436,\n            \"Y\": 0.9726803302764893\n          },\n          {\n            \"X\": 0.8199133276939392,\n            \"Y\": 0.9726316332817078\n          }\n        ]\n      },\n      \"Id\": \"4b430fc8-c8a8-445f-b311-7973933e5be1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.77371978759766,\n      \"Text\": \"July\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024857837706804276,\n          \"Height\": 0.009863623417913914,\n          \"Left\": 0.8748310804367065,\n          \"Top\": 0.9643508195877075\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8748337626457214,\n            \"Y\": 0.9643508195877075\n          },\n          {\n            \"X\": 0.8996888995170593,\n            \"Y\": 0.9643915295600891\n          },\n          {\n            \"X\": 0.8996862769126892,\n            \"Y\": 0.9742144346237183\n          },\n          {\n            \"X\": 0.8748310804367065,\n            \"Y\": 0.9741736054420471\n          }\n        ]\n      },\n      \"Id\": \"888d7cca-57e8-461b-ba8a-e578594af1b6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.80146789550781,\n      \"Text\": \"96\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.016298944130539894,\n          \"Height\": 0.008710614405572414,\n          \"Left\": 0.9036979079246521,\n          \"Top\": 0.9641125798225403\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.9037001729011536,\n            \"Y\": 0.9641125798225403\n          },\n          {\n            \"X\": 0.9199968576431274,\n            \"Y\": 0.9641392230987549\n          },\n          {\n            \"X\": 0.9199946522712708,\n            \"Y\": 0.9728232026100159\n          },\n          {\n            \"X\": 0.9036979079246521,\n            \"Y\": 0.9727964401245117\n          }\n        ]\n      },\n      \"Id\": \"cba7d020-04a1-40ad-847b-272843bab710\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.8935775756836,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009984134696424007,\n          \"Height\": 0.008506632409989834,\n          \"Left\": 0.2581717371940613,\n          \"Top\": 0.4853515625\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25817635655403137,\n            \"Y\": 0.4853515625\n          },\n          {\n            \"X\": 0.26815587282180786,\n            \"Y\": 0.4853658378124237\n          },\n          {\n            \"X\": 0.26815128326416016,\n            \"Y\": 0.4938582181930542\n          },\n          {\n            \"X\": 0.2581717371940613,\n            \"Y\": 0.4938439130783081\n          }\n        ]\n      },\n      \"Id\": \"217b5ea1-35a1-4527-bdfd-840b8505058f\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.84355926513672,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010301095433533192,\n          \"Height\": 0.008074143901467323,\n          \"Left\": 0.1601756364107132,\n          \"Top\": 0.5003594160079956\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16018038988113403,\n            \"Y\": 0.5003594160079956\n          },\n          {\n            \"X\": 0.1704767346382141,\n            \"Y\": 0.5003741979598999\n          },\n          {\n            \"X\": 0.17047202587127686,\n            \"Y\": 0.5084335803985596\n          },\n          {\n            \"X\": 0.1601756364107132,\n            \"Y\": 0.5084187388420105\n          }\n        ]\n      },\n      \"Id\": \"78ccca35-5a8c-4d10-982b-34c55dded60b\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.81494903564453,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010064028203487396,\n          \"Height\": 0.008119124919176102,\n          \"Left\": 0.1603735238313675,\n          \"Top\": 0.48578912019729614\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16037829220294952,\n            \"Y\": 0.48578912019729614\n          },\n          {\n            \"X\": 0.1704375445842743,\n            \"Y\": 0.485803484916687\n          },\n          {\n            \"X\": 0.17043282091617584,\n            \"Y\": 0.49390822649002075\n          },\n          {\n            \"X\": 0.1603735238313675,\n            \"Y\": 0.4938938021659851\n          }\n        ]\n      },\n      \"Id\": \"fce37327-854d-4b38-8802-a632aa420bd2\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.73528289794922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010896911844611168,\n          \"Height\": 0.007898288778960705,\n          \"Left\": 0.866409182548523,\n          \"Top\": 0.4962630867958069\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8664113879203796,\n            \"Y\": 0.4962630867958069\n          },\n          {\n            \"X\": 0.8773060441017151,\n            \"Y\": 0.4962787330150604\n          },\n          {\n            \"X\": 0.8773038983345032,\n            \"Y\": 0.5041614174842834\n          },\n          {\n            \"X\": 0.866409182548523,\n            \"Y\": 0.5041457414627075\n          }\n        ]\n      },\n      \"Id\": \"d9a7329b-63e4-4250-a8aa-f02cb551d1ad\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 99.69168090820312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01019037701189518,\n          \"Height\": 0.0083965715020895,\n          \"Left\": 0.2580726146697998,\n          \"Top\": 0.47035062313079834\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2580772042274475,\n            \"Y\": 0.47035062313079834\n          },\n          {\n            \"X\": 0.26826298236846924,\n            \"Y\": 0.47036513686180115\n          },\n          {\n            \"X\": 0.2682584524154663,\n            \"Y\": 0.4787471890449524\n          },\n          {\n            \"X\": 0.2580726146697998,\n            \"Y\": 0.4787326753139496\n          }\n        ]\n      },\n      \"Id\": \"c0565c41-53af-4136-947c-fc0de5a391b6\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 98.56742858886719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010601362213492393,\n          \"Height\": 0.00804766546934843,\n          \"Left\": 0.8063706755638123,\n          \"Top\": 0.49668562412261963\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8063731789588928,\n            \"Y\": 0.49668562412261963\n          },\n          {\n            \"X\": 0.8169720768928528,\n            \"Y\": 0.49670082330703735\n          },\n          {\n            \"X\": 0.816969633102417,\n            \"Y\": 0.5047332644462585\n          },\n          {\n            \"X\": 0.8063706755638123,\n            \"Y\": 0.5047180652618408\n          }\n        ]\n      },\n      \"Id\": \"a440fa0d-845b-45ee-bf0b-6e70e1dcbc10\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 97.57192993164062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.00961732305586338,\n          \"Height\": 0.008064025081694126,\n          \"Left\": 0.16051465272903442,\n          \"Top\": 0.4703965485095978\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16051939129829407,\n            \"Y\": 0.4703965485095978\n          },\n          {\n            \"X\": 0.17013196647167206,\n            \"Y\": 0.47041022777557373\n          },\n          {\n            \"X\": 0.1701272577047348,\n            \"Y\": 0.4784605801105499\n          },\n          {\n            \"X\": 0.16051465272903442,\n            \"Y\": 0.4784468412399292\n          }\n        ]\n      },\n      \"Id\": \"23776da8-8bdf-4d19-9988-512930898704\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 96.95289611816406,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010218231938779354,\n          \"Height\": 0.008043565787374973,\n          \"Left\": 0.8663615584373474,\n          \"Top\": 0.48538103699684143\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8663638234138489,\n            \"Y\": 0.48538103699684143\n          },\n          {\n            \"X\": 0.8765798211097717,\n            \"Y\": 0.4853956401348114\n          },\n          {\n            \"X\": 0.876577615737915,\n            \"Y\": 0.4934246242046356\n          },\n          {\n            \"X\": 0.8663615584373474,\n            \"Y\": 0.49340999126434326\n          }\n        ]\n      },\n      \"Id\": \"e7ef11a2-66ad-4f00-a98a-410bec6852ab\",\n      \"SelectionStatus\": \"NOT_SELECTED\"\n    },\n    {\n      \"BlockType\": \"SELECTION_ELEMENT\",\n      \"Confidence\": 96.69908905029297,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01024368591606617,\n          \"Height\": 0.007595373783260584,\n          \"Left\": 0.806494414806366,\n          \"Top\": 0.4858246147632599\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8064967393875122,\n            \"Y\": 0.4858246147632599\n          },\n          {\n            \"X\": 0.8167380690574646,\n            \"Y\": 0.48583927750587463\n          },\n          {\n            \"X\": 0.8167358040809631,\n            \"Y\": 0.4934200048446655\n          },\n          {\n            \"X\": 0.806494414806366,\n            \"Y\": 0.4934053122997284\n          }\n        ]\n      },\n      \"Id\": \"0fb91c33-7c23-45f2-a697-57d69c36c873\",\n      \"SelectionStatus\": \"SELECTED\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 98.48668670654297,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.4103732705116272,\n          \"Height\": 0.17246153950691223,\n          \"Left\": 0.041500333696603775,\n          \"Top\": 0.5229541063308716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04161040484905243,\n            \"Y\": 0.5229541063308716\n          },\n          {\n            \"X\": 0.4518736004829407,\n            \"Y\": 0.5235475301742554\n          },\n          {\n            \"X\": 0.4517943263053894,\n            \"Y\": 0.6954156756401062\n          },\n          {\n            \"X\": 0.041500333696603775,\n            \"Y\": 0.6947916150093079\n          }\n        ]\n      },\n      \"Id\": \"6d21a131-73e8-4ebf-b3e8-e91cef67a903\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ca6c0b58-0818-4f97-985f-0dc372576268\",\n            \"21c92772-77c6-4ae7-9381-57f26d230ab5\",\n            \"45ebd58a-34e8-4a8e-9bbc-c8e83b3c4d46\",\n            \"b62aa6db-ef69-4f42-a848-9d51793f95fe\",\n            \"7d08d93f-5f04-458f-a8d2-f9919bec324c\",\n            \"db299a28-a4c9-4b8c-9626-79b04e1ddee1\",\n            \"e63d86dc-0aaf-4591-ae1c-9db7b9db9e59\",\n            \"454bdf86-bb4e-4c61-9ab4-56478781c451\",\n            \"e7822c78-33a2-4397-8439-60d2971322ee\",\n            \"b3cc2182-3ad9-4df3-ad15-3be90b244431\",\n            \"03f4227f-b68a-456c-9bb2-2170a4d9c03f\",\n            \"8f517d87-c303-414d-8714-7f4d19908468\",\n            \"915d7541-542d-49bb-a05a-f0c4d798b5aa\",\n            \"49283c66-abbe-4c29-8b63-9395fa87cb83\",\n            \"794b8a8a-cc8d-473d-85aa-e0c3387c1cf1\",\n            \"6ef75fda-bb7f-492a-a8fc-40006d4d8528\",\n            \"f20a6408-d6f7-44dc-9cfb-d578b6781f72\",\n            \"f83ff0b9-b7a8-485b-aa71-a5f7f0bf1938\",\n            \"e29b65f5-6498-4107-96c5-2a6606c1b1d8\",\n            \"205c6077-0dcd-4ba4-a80d-e9853ed84d3b\",\n            \"5fa45ff5-b476-4983-879e-8f8268af527e\",\n            \"d190b3a4-9126-4b01-b0f6-1ed727883b4e\",\n            \"b2d043e2-51ea-4bed-b072-a49da20331fd\",\n            \"0ed336c9-83fd-420e-b1fb-3482badc519c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.21065521240234,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08815722912549973,\n          \"Height\": 0.019326096400618553,\n          \"Left\": 0.041598107665777206,\n          \"Top\": 0.5229541063308716\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04161040484905243,\n            \"Y\": 0.5229541063308716\n          },\n          {\n            \"X\": 0.12975533306598663,\n            \"Y\": 0.5230816006660461\n          },\n          {\n            \"X\": 0.1297437697649002,\n            \"Y\": 0.5422802567481995\n          },\n          {\n            \"X\": 0.041598107665777206,\n            \"Y\": 0.5421519875526428\n          }\n        ]\n      },\n      \"Id\": \"ca6c0b58-0818-4f97-985f-0dc372576268\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b310bff4-b28d-4dbb-b111-17217ce87496\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.67561340332031,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10749641805887222,\n          \"Height\": 0.019354965537786484,\n          \"Left\": 0.1297437697649002,\n          \"Top\": 0.5230816006660461\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12975533306598663,\n            \"Y\": 0.5230816006660461\n          },\n          {\n            \"X\": 0.23724019527435303,\n            \"Y\": 0.5232371091842651\n          },\n          {\n            \"X\": 0.23722954094409943,\n            \"Y\": 0.5424365997314453\n          },\n          {\n            \"X\": 0.1297437697649002,\n            \"Y\": 0.5422802567481995\n          }\n        ]\n      },\n      \"Id\": \"21c92772-77c6-4ae7-9381-57f26d230ab5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b61d6d9b-4734-4916-b44d-fa3199a41dbd\",\n            \"48faeb8a-21c8-4b68-a9a2-01014bc255e0\",\n            \"e03e47c3-e088-467a-ae77-4d0136dbbb3d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.4512939453125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10750555247068405,\n          \"Height\": 0.019355878233909607,\n          \"Left\": 0.23722954094409943,\n          \"Top\": 0.5232371091842651\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23724019527435303,\n            \"Y\": 0.5232371091842651\n          },\n          {\n            \"X\": 0.3447350859642029,\n            \"Y\": 0.5233925580978394\n          },\n          {\n            \"X\": 0.3447253406047821,\n            \"Y\": 0.5425929427146912\n          },\n          {\n            \"X\": 0.23722954094409943,\n            \"Y\": 0.5424365997314453\n          }\n        ]\n      },\n      \"Id\": \"45ebd58a-34e8-4a8e-9bbc-c8e83b3c4d46\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7e91653c-2957-41ce-9372-f7f75d6f5917\",\n            \"8ccf9718-a268-4927-89aa-f583745b98bd\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.39292907714844,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10714825987815857,\n          \"Height\": 0.0193562563508749,\n          \"Left\": 0.3447253406047821,\n          \"Top\": 0.5233925580978394\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3447350859642029,\n            \"Y\": 0.5233925580978394\n          },\n          {\n            \"X\": 0.4518736004829407,\n            \"Y\": 0.5235475301742554\n          },\n          {\n            \"X\": 0.45186474919319153,\n            \"Y\": 0.5427488088607788\n          },\n          {\n            \"X\": 0.3447253406047821,\n            \"Y\": 0.5425929427146912\n          }\n        ]\n      },\n      \"Id\": \"b62aa6db-ef69-4f42-a848-9d51793f95fe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08613794-08c1-4aea-b5d8-659c705be39f\",\n            \"9af5aed1-09e7-4f6e-b942-304657a88cec\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.78910827636719,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08816526085138321,\n          \"Height\": 0.03070971369743347,\n          \"Left\": 0.041578516364097595,\n          \"Top\": 0.5421519875526428\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041598107665777206,\n            \"Y\": 0.5421519875526428\n          },\n          {\n            \"X\": 0.1297437697649002,\n            \"Y\": 0.5422802567481995\n          },\n          {\n            \"X\": 0.1297253668308258,\n            \"Y\": 0.5728617310523987\n          },\n          {\n            \"X\": 0.041578516364097595,\n            \"Y\": 0.5727323293685913\n          }\n        ]\n      },\n      \"Id\": \"7d08d93f-5f04-458f-a8d2-f9919bec324c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4efe221d-c1bd-4b0c-8a17-bc316fea6cd4\",\n            \"7cfd9e29-8fbe-4bf3-9bea-2d35e5f648dd\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.267822265625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10750417411327362,\n          \"Height\": 0.030739277601242065,\n          \"Left\": 0.1297253668308258,\n          \"Top\": 0.5422802567481995\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1297437697649002,\n            \"Y\": 0.5422802567481995\n          },\n          {\n            \"X\": 0.23722954094409943,\n            \"Y\": 0.5424365997314453\n          },\n          {\n            \"X\": 0.23721256852149963,\n            \"Y\": 0.5730195045471191\n          },\n          {\n            \"X\": 0.1297253668308258,\n            \"Y\": 0.5728617310523987\n          }\n        ]\n      },\n      \"Id\": \"db299a28-a4c9-4b8c-9626-79b04e1ddee1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55b35b39-58f1-4095-a648-69266cca6892\",\n            \"18884121-0066-44c5-9419-57e6e97d54ee\",\n            \"5982c4d2-0792-4a9f-8707-75241ded624e\",\n            \"8929679c-3c0a-4b45-aff1-6a3ee891ca93\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.036865234375,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10751277208328247,\n          \"Height\": 0.03074072115123272,\n          \"Left\": 0.23721256852149963,\n          \"Top\": 0.5424365997314453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23722954094409943,\n            \"Y\": 0.5424365997314453\n          },\n          {\n            \"X\": 0.3447253406047821,\n            \"Y\": 0.5425929427146912\n          },\n          {\n            \"X\": 0.3447098135948181,\n            \"Y\": 0.5731773376464844\n          },\n          {\n            \"X\": 0.23721256852149963,\n            \"Y\": 0.5730195045471191\n          }\n        ]\n      },\n      \"Id\": \"e63d86dc-0aaf-4591-ae1c-9db7b9db9e59\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"cb31f9d1-040c-43f3-9e82-a9caa012fcfe\",\n            \"bb4feb9e-502e-4579-a5de-b99e778c2e2f\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.9767837524414,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10715494304895401,\n          \"Height\": 0.030741628259420395,\n          \"Left\": 0.3447098135948181,\n          \"Top\": 0.5425929427146912\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3447253406047821,\n            \"Y\": 0.5425929427146912\n          },\n          {\n            \"X\": 0.45186474919319153,\n            \"Y\": 0.5427488088607788\n          },\n          {\n            \"X\": 0.45185062289237976,\n            \"Y\": 0.5733345746994019\n          },\n          {\n            \"X\": 0.3447098135948181,\n            \"Y\": 0.5731773376464844\n          }\n        ]\n      },\n      \"Id\": \"454bdf86-bb4e-4c61-9ab4-56478781c451\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0747851f-235e-49ef-b5c2-3c639dac6cba\",\n            \"f8461892-8d78-4439-9f7e-59bc097b7a03\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.17491912841797,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08816643804311752,\n          \"Height\": 0.03071170300245285,\n          \"Left\": 0.04155892878770828,\n          \"Top\": 0.5727323293685913\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041578516364097595,\n            \"Y\": 0.5727323293685913\n          },\n          {\n            \"X\": 0.1297253668308258,\n            \"Y\": 0.5728617310523987\n          },\n          {\n            \"X\": 0.1297069489955902,\n            \"Y\": 0.6034440398216248\n          },\n          {\n            \"X\": 0.04155892878770828,\n            \"Y\": 0.6033134460449219\n          }\n        ]\n      },\n      \"Id\": \"e7822c78-33a2-4397-8439-60d2971322ee\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6c3bfe04-7aaf-4be0-96b0-bc3c2bf9b974\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.64501953125,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10750561207532883,\n          \"Height\": 0.030741523951292038,\n          \"Left\": 0.1297069489955902,\n          \"Top\": 0.5728617310523987\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1297253668308258,\n            \"Y\": 0.5728617310523987\n          },\n          {\n            \"X\": 0.23721256852149963,\n            \"Y\": 0.5730195045471191\n          },\n          {\n            \"X\": 0.23719558119773865,\n            \"Y\": 0.6036032438278198\n          },\n          {\n            \"X\": 0.1297069489955902,\n            \"Y\": 0.6034440398216248\n          }\n        ]\n      },\n      \"Id\": \"b3cc2182-3ad9-4df3-ad15-3be90b244431\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fc81f53e-ef9f-4058-8658-87b0c216b23d\",\n            \"42d292e4-43b7-425a-bddd-4e417643984a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.41822052001953,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10751421004533768,\n          \"Height\": 0.03074296936392784,\n          \"Left\": 0.23719558119773865,\n          \"Top\": 0.5730195045471191\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23721256852149963,\n            \"Y\": 0.5730195045471191\n          },\n          {\n            \"X\": 0.3447098135948181,\n            \"Y\": 0.5731773376464844\n          },\n          {\n            \"X\": 0.34469425678253174,\n            \"Y\": 0.6037624478340149\n          },\n          {\n            \"X\": 0.23719558119773865,\n            \"Y\": 0.6036032438278198\n          }\n        ]\n      },\n      \"Id\": \"03f4227f-b68a-456c-9bb2-2170a4d9c03f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f54805d5-903a-406d-bdca-70f0c49ab8e5\",\n            \"74057eca-80de-4f75-8b7c-744a756be8a5\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.35921478271484,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10715637356042862,\n          \"Height\": 0.03074387088418007,\n          \"Left\": 0.34469425678253174,\n          \"Top\": 0.5731773376464844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3447098135948181,\n            \"Y\": 0.5731773376464844\n          },\n          {\n            \"X\": 0.45185062289237976,\n            \"Y\": 0.5733345746994019\n          },\n          {\n            \"X\": 0.4518365263938904,\n            \"Y\": 0.6039211750030518\n          },\n          {\n            \"X\": 0.34469425678253174,\n            \"Y\": 0.6037624478340149\n          }\n        ]\n      },\n      \"Id\": \"8f517d87-c303-414d-8714-7f4d19908468\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"06698294-3059-458c-81e2-98d4a943e875\",\n            \"9b2ecf16-261e-4137-880e-1f14f478b6e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.61769104003906,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08816705644130707,\n          \"Height\": 0.029839878901839256,\n          \"Left\": 0.04153990000486374,\n          \"Top\": 0.6033134460449219\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04155892878770828,\n            \"Y\": 0.6033134460449219\n          },\n          {\n            \"X\": 0.1297069489955902,\n            \"Y\": 0.6034440398216248\n          },\n          {\n            \"X\": 0.1296890676021576,\n            \"Y\": 0.6331533193588257\n          },\n          {\n            \"X\": 0.04153990000486374,\n            \"Y\": 0.6330216526985168\n          }\n        ]\n      },\n      \"Id\": \"915d7541-542d-49bb-a05a-f0c4d798b5aa\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"48e62465-2fea-49f7-a54c-e32ac5820ef2\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.09015655517578,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10750652104616165,\n          \"Height\": 0.029869915917515755,\n          \"Left\": 0.1296890676021576,\n          \"Top\": 0.6034440398216248\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1297069489955902,\n            \"Y\": 0.6034440398216248\n          },\n          {\n            \"X\": 0.23719558119773865,\n            \"Y\": 0.6036032438278198\n          },\n          {\n            \"X\": 0.23717910051345825,\n            \"Y\": 0.6333139538764954\n          },\n          {\n            \"X\": 0.1296890676021576,\n            \"Y\": 0.6331533193588257\n          }\n        ]\n      },\n      \"Id\": \"49283c66-abbe-4c29-8b63-9395fa87cb83\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"962a6689-11c3-48f2-84a3-ea3dad26a157\",\n            \"8c7a80bf-b31b-4ed2-a1f5-511e587dbd16\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.86222076416016,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10751516371965408,\n          \"Height\": 0.029871320351958275,\n          \"Left\": 0.23717910051345825,\n          \"Top\": 0.6036032438278198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23719558119773865,\n            \"Y\": 0.6036032438278198\n          },\n          {\n            \"X\": 0.34469425678253174,\n            \"Y\": 0.6037624478340149\n          },\n          {\n            \"X\": 0.34467917680740356,\n            \"Y\": 0.633474588394165\n          },\n          {\n            \"X\": 0.23717910051345825,\n            \"Y\": 0.6333139538764954\n          }\n        ]\n      },\n      \"Id\": \"794b8a8a-cc8d-473d-85aa-e0c3387c1cf1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7769e1e2-55ea-44b8-8541-c8815654ca3c\",\n            \"bcf4fc46-0eef-48f2-a531-79c75f6700e1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.80291748046875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10715736448764801,\n          \"Height\": 0.02987217716872692,\n          \"Left\": 0.34467917680740356,\n          \"Top\": 0.6037624478340149\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34469425678253174,\n            \"Y\": 0.6037624478340149\n          },\n          {\n            \"X\": 0.4518365263938904,\n            \"Y\": 0.6039211750030518\n          },\n          {\n            \"X\": 0.45182281732559204,\n            \"Y\": 0.633634626865387\n          },\n          {\n            \"X\": 0.34467917680740356,\n            \"Y\": 0.633474588394165\n          }\n        ]\n      },\n      \"Id\": \"6ef75fda-bb7f-492a-a8fc-40006d4d8528\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d029dc0d-03bc-405c-9312-fb4f3093ed38\",\n            \"dfdf65b9-3377-4b00-8091-a11db21c388a\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.05612182617188,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08816875517368317,\n          \"Height\": 0.03071562759578228,\n          \"Left\": 0.04152030870318413,\n          \"Top\": 0.6330216526985168\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04153990000486374,\n            \"Y\": 0.6330216526985168\n          },\n          {\n            \"X\": 0.1296890676021576,\n            \"Y\": 0.6331533193588257\n          },\n          {\n            \"X\": 0.129670649766922,\n            \"Y\": 0.6637372374534607\n          },\n          {\n            \"X\": 0.04152030870318413,\n            \"Y\": 0.6636043787002563\n          }\n        ]\n      },\n      \"Id\": \"f20a6408-d6f7-44dc-9cfb-d578b6781f72\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fe9e0552-6d79-4ad3-a855-b1dc3ed84b7d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.5362548828125,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10750844329595566,\n          \"Height\": 0.03074595518410206,\n          \"Left\": 0.129670649766922,\n          \"Top\": 0.6331533193588257\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1296890676021576,\n            \"Y\": 0.6331533193588257\n          },\n          {\n            \"X\": 0.23717910051345825,\n            \"Y\": 0.6333139538764954\n          },\n          {\n            \"X\": 0.23716211318969727,\n            \"Y\": 0.663899302482605\n          },\n          {\n            \"X\": 0.129670649766922,\n            \"Y\": 0.6637372374534607\n          }\n        ]\n      },\n      \"Id\": \"f83ff0b9-b7a8-485b-aa71-a5f7f0bf1938\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"253a5c0c-0874-4b60-a47a-e32322ad1cd2\",\n            \"1c7ed4d6-24db-4a73-b198-4d324fedc40b\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.30461120605469,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10751704126596451,\n          \"Height\": 0.03074740059673786,\n          \"Left\": 0.23716211318969727,\n          \"Top\": 0.6333139538764954\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23717910051345825,\n            \"Y\": 0.6333139538764954\n          },\n          {\n            \"X\": 0.34467917680740356,\n            \"Y\": 0.633474588394165\n          },\n          {\n            \"X\": 0.3446636199951172,\n            \"Y\": 0.6640613675117493\n          },\n          {\n            \"X\": 0.23716211318969727,\n            \"Y\": 0.663899302482605\n          }\n        ]\n      },\n      \"Id\": \"e29b65f5-6498-4107-96c5-2a6606c1b1d8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68d1a720-a9d5-4750-9698-069f885275c8\",\n            \"3c4d50d0-69b7-45af-a91b-659740439c2d\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.24434661865234,\n      \"RowIndex\": 5,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10715919733047485,\n          \"Height\": 0.030748292803764343,\n          \"Left\": 0.3446636199951172,\n          \"Top\": 0.633474588394165\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.34467917680740356,\n            \"Y\": 0.633474588394165\n          },\n          {\n            \"X\": 0.45182281732559204,\n            \"Y\": 0.633634626865387\n          },\n          {\n            \"X\": 0.45180872082710266,\n            \"Y\": 0.6642228364944458\n          },\n          {\n            \"X\": 0.3446636199951172,\n            \"Y\": 0.6640613675117493\n          }\n        ]\n      },\n      \"Id\": \"205c6077-0dcd-4ba4-a80d-e9853ed84d3b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"536c83a8-4ff2-4b8b-9631-fd5ce9491046\",\n            \"9a10055a-4b5e-4d6b-b65a-0248ccc295be\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.73271179199219,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08817031979560852,\n          \"Height\": 0.03132133185863495,\n          \"Left\": 0.041500333696603775,\n          \"Top\": 0.6636043787002563\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04152030870318413,\n            \"Y\": 0.6636043787002563\n          },\n          {\n            \"X\": 0.129670649766922,\n            \"Y\": 0.6637372374534607\n          },\n          {\n            \"X\": 0.12965187430381775,\n            \"Y\": 0.6949257254600525\n          },\n          {\n            \"X\": 0.041500333696603775,\n            \"Y\": 0.6947916150093079\n          }\n        ]\n      },\n      \"Id\": \"5fa45ff5-b476-4983-879e-8f8268af527e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2d1bea94-5ec2-4c65-afbd-64ac907b00df\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.2164535522461,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10751024633646011,\n          \"Height\": 0.03135194256901741,\n          \"Left\": 0.12965187430381775,\n          \"Top\": 0.6637372374534607\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.129670649766922,\n            \"Y\": 0.6637372374534607\n          },\n          {\n            \"X\": 0.23716211318969727,\n            \"Y\": 0.663899302482605\n          },\n          {\n            \"X\": 0.2371448129415512,\n            \"Y\": 0.6950892210006714\n          },\n          {\n            \"X\": 0.12965187430381775,\n            \"Y\": 0.6949257254600525\n          }\n        ]\n      },\n      \"Id\": \"d190b3a4-9126-4b01-b0f6-1ed727883b4e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6f28f120-dbe6-416e-bb81-0bf5b611b957\",\n            \"67480bb1-cd1d-4b57-82d4-82c3bf6288e7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.98307037353516,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10751881450414658,\n          \"Height\": 0.0313534177839756,\n          \"Left\": 0.2371448129415512,\n          \"Top\": 0.663899302482605\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23716211318969727,\n            \"Y\": 0.663899302482605\n          },\n          {\n            \"X\": 0.3446636199951172,\n            \"Y\": 0.6640613675117493\n          },\n          {\n            \"X\": 0.34464776515960693,\n            \"Y\": 0.6952527165412903\n          },\n          {\n            \"X\": 0.2371448129415512,\n            \"Y\": 0.6950892210006714\n          }\n        ]\n      },\n      \"Id\": \"b2d043e2-51ea-4bed-b072-a49da20331fd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"81f1d3b4-7b4f-4e64-866a-3870cf338d9e\",\n            \"052c71e4-9338-43bc-b2b3-194f9aeee8a7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.92234802246094,\n      \"RowIndex\": 6,\n      \"ColumnIndex\": 4,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10716094076633453,\n          \"Height\": 0.03135433420538902,\n          \"Left\": 0.34464776515960693,\n          \"Top\": 0.6640613675117493\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3446636199951172,\n            \"Y\": 0.6640613675117493\n          },\n          {\n            \"X\": 0.45180872082710266,\n            \"Y\": 0.6642228364944458\n          },\n          {\n            \"X\": 0.4517943263053894,\n            \"Y\": 0.6954156756401062\n          },\n          {\n            \"X\": 0.34464776515960693,\n            \"Y\": 0.6952527165412903\n          }\n        ]\n      },\n      \"Id\": \"0ed336c9-83fd-420e-b1fb-3482badc519c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7f04bde2-64e7-4133-b166-d3509e1546c2\",\n            \"ead99bcb-a1b5-4e8d-bdef-f98729c630e9\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98592376708984,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03847234323620796,\n          \"Height\": 0.007918272167444229,\n          \"Left\": 0.176168754696846,\n          \"Top\": 0.46982771158218384\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17617332935333252,\n            \"Y\": 0.46982771158218384\n          },\n          {\n            \"X\": 0.21464109420776367,\n            \"Y\": 0.46988245844841003\n          },\n          {\n            \"X\": 0.2146366536617279,\n            \"Y\": 0.47774598002433777\n          },\n          {\n            \"X\": 0.176168754696846,\n            \"Y\": 0.47769108414649963\n          }\n        ]\n      },\n      \"Id\": \"4d431171-d8b0-4a0c-87a1-d793315ec1fc\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"ba826ef9-b332-412c-b693-17e3ce516479\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"98935b3c-7a9d-467e-affd-3f58b4ff477f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 97.57192993164062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009055636823177338,\n          \"Height\": 0.007876264862716198,\n          \"Left\": 0.1614602655172348,\n          \"Top\": 0.47068047523498535\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1614648848772049,\n            \"Y\": 0.47068047523498535\n          },\n          {\n            \"X\": 0.17051589488983154,\n            \"Y\": 0.47069334983825684\n          },\n          {\n            \"X\": 0.17051130533218384,\n            \"Y\": 0.47855672240257263\n          },\n          {\n            \"X\": 0.1614602655172348,\n            \"Y\": 0.47854381799697876\n          }\n        ]\n      },\n      \"Id\": \"ba826ef9-b332-412c-b693-17e3ce516479\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"23776da8-8bdf-4d19-9988-512930898704\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98690795898438,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04413028806447983,\n          \"Height\": 0.00880049541592598,\n          \"Left\": 0.1761590987443924,\n          \"Top\": 0.4855545461177826\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1761641800403595,\n            \"Y\": 0.4855545461177826\n          },\n          {\n            \"X\": 0.22028937935829163,\n            \"Y\": 0.48561763763427734\n          },\n          {\n            \"X\": 0.22028446197509766,\n            \"Y\": 0.4943550229072571\n          },\n          {\n            \"X\": 0.1761590987443924,\n            \"Y\": 0.494291752576828\n          }\n        ]\n      },\n      \"Id\": \"4151f038-0a47-4dbc-bc25-4566e06cc7d9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"4d3911a2-c555-4bd5-9e8a-5d42ae41ef0b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e574810a-52f4-4133-ae47-330884ae2734\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.81494903564453,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.009055699221789837,\n          \"Height\": 0.007876435294747353,\n          \"Left\": 0.16145101189613342,\n          \"Top\": 0.48640722036361694\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16145563125610352,\n            \"Y\": 0.48640722036361694\n          },\n          {\n            \"X\": 0.17050671577453613,\n            \"Y\": 0.4864201545715332\n          },\n          {\n            \"X\": 0.17050211131572723,\n            \"Y\": 0.49428364634513855\n          },\n          {\n            \"X\": 0.16145101189613342,\n            \"Y\": 0.4942706823348999\n          }\n        ]\n      },\n      \"Id\": \"4d3911a2-c555-4bd5-9e8a-5d42ae41ef0b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fce37327-854d-4b38-8802-a632aa420bd2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93527221679688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.020378777757287025,\n          \"Height\": 0.00702093867585063,\n          \"Left\": 0.8212372064590454,\n          \"Top\": 0.4864770174026489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8212392926216125,\n            \"Y\": 0.4864770174026489\n          },\n          {\n            \"X\": 0.8416159749031067,\n            \"Y\": 0.4865061640739441\n          },\n          {\n            \"X\": 0.8416139483451843,\n            \"Y\": 0.49349793791770935\n          },\n          {\n            \"X\": 0.8212372064590454,\n            \"Y\": 0.4934687614440918\n          }\n        ]\n      },\n      \"Id\": \"dc956db9-4965-4c1f-bbae-f2d937afe5ae\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"c8d697af-67d8-44bf-a92d-4e7467aee666\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6432a709-ea33-4d8e-9a3e-f22398e00027\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96.69908905029297,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011322330683469772,\n          \"Height\": 0.007007915526628494,\n          \"Left\": 0.806520938873291,\n          \"Top\": 0.4864559769630432\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8065230250358582,\n            \"Y\": 0.4864559769630432\n          },\n          {\n            \"X\": 0.8178432583808899,\n            \"Y\": 0.48647215962409973\n          },\n          {\n            \"X\": 0.817841112613678,\n            \"Y\": 0.4934638738632202\n          },\n          {\n            \"X\": 0.806520938873291,\n            \"Y\": 0.4934476613998413\n          }\n        ]\n      },\n      \"Id\": \"c8d697af-67d8-44bf-a92d-4e7467aee666\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0fb91c33-7c23-45f2-a697-57d69c36c873\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92666625976562,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.01471938006579876,\n          \"Height\": 0.00788700208067894,\n          \"Left\": 0.8823685050010681,\n          \"Top\": 0.4856904447078705\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8823707103729248,\n            \"Y\": 0.4856904447078705\n          },\n          {\n            \"X\": 0.8970879316329956,\n            \"Y\": 0.4857114851474762\n          },\n          {\n            \"X\": 0.8970858454704285,\n            \"Y\": 0.4935774505138397\n          },\n          {\n            \"X\": 0.8823685050010681,\n            \"Y\": 0.49355635046958923\n          }\n        ]\n      },\n      \"Id\": \"d89b13fe-91de-43ad-832f-a999de64832a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"c2bcd5fb-1ab5-44bf-a4cb-e5796375b059\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"09cb51d3-cb7c-4642-aec8-e9ecd0b57f74\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96.95289611816406,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010190894827246666,\n          \"Height\": 0.007880457676947117,\n          \"Left\": 0.8665193915367126,\n          \"Top\": 0.48566779494285583\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8665215969085693,\n            \"Y\": 0.48566779494285583\n          },\n          {\n            \"X\": 0.8767102360725403,\n            \"Y\": 0.48568233847618103\n          },\n          {\n            \"X\": 0.8767080903053284,\n            \"Y\": 0.4935482442378998\n          },\n          {\n            \"X\": 0.8665193915367126,\n            \"Y\": 0.4935336410999298\n          }\n        ]\n      },\n      \"Id\": \"c2bcd5fb-1ab5-44bf-a4cb-e5796375b059\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7ef11a2-66ad-4f00-a98a-410bec6852ab\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98567962646484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.036213163286447525,\n          \"Height\": 0.009662910364568233,\n          \"Left\": 0.2734714448451996,\n          \"Top\": 0.46996617317199707\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27347663044929504,\n            \"Y\": 0.46996617317199707\n          },\n          {\n            \"X\": 0.3096846342086792,\n            \"Y\": 0.4700177013874054\n          },\n          {\n            \"X\": 0.3096795976161957,\n            \"Y\": 0.4796290993690491\n          },\n          {\n            \"X\": 0.2734714448451996,\n            \"Y\": 0.4795773923397064\n          }\n        ]\n      },\n      \"Id\": \"603f0d46-7a48-420c-8791-d9a625574852\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e76ae668-6abb-4491-b9a2-3ae724d21f3e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"856f44ec-e066-4dcf-8578-ecb744de5269\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.69168090820312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010188021697103977,\n          \"Height\": 0.008751963265240192,\n          \"Left\": 0.2587622106075287,\n          \"Top\": 0.47081899642944336\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2587669789791107,\n            \"Y\": 0.47081899642944336\n          },\n          {\n            \"X\": 0.2689502537250519,\n            \"Y\": 0.4708334803581238\n          },\n          {\n            \"X\": 0.26894551515579224,\n            \"Y\": 0.4795709550380707\n          },\n          {\n            \"X\": 0.2587622106075287,\n            \"Y\": 0.4795564115047455\n          }\n        ]\n      },\n      \"Id\": \"e76ae668-6abb-4491-b9a2-3ae724d21f3e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c0565c41-53af-4136-947c-fc0de5a391b6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98863983154297,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.039605312049388885,\n          \"Height\": 0.009668128564953804,\n          \"Left\": 0.17614994943141937,\n          \"Top\": 0.500407874584198\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17615553736686707,\n            \"Y\": 0.500407874584198\n          },\n          {\n            \"X\": 0.21575525403022766,\n            \"Y\": 0.5004647374153137\n          },\n          {\n            \"X\": 0.2157498300075531,\n            \"Y\": 0.5100759863853455\n          },\n          {\n            \"X\": 0.17614994943141937,\n            \"Y\": 0.5100189447402954\n          }\n        ]\n      },\n      \"Id\": \"59ca1a28-46af-431c-9576-4e42300be00a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2d364ff0-8829-493f-bcea-b6be003e1659\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1d7b7db-204a-4c19-8c0b-bb78e1a05201\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.84355926513672,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010187658481299877,\n          \"Height\": 0.00875194650143385,\n          \"Left\": 0.16031087934970856,\n          \"Top\": 0.5003851056098938\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16031603515148163,\n            \"Y\": 0.5003851056098938\n          },\n          {\n            \"X\": 0.1704985499382019,\n            \"Y\": 0.5003997087478638\n          },\n          {\n            \"X\": 0.17049343883991241,\n            \"Y\": 0.5091370344161987\n          },\n          {\n            \"X\": 0.16031087934970856,\n            \"Y\": 0.509122371673584\n          }\n        ]\n      },\n      \"Id\": \"2d364ff0-8829-493f-bcea-b6be003e1659\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"78ccca35-5a8c-4d10-982b-34c55dded60b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9441909790039,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02037912607192993,\n          \"Height\": 0.007895068265497684,\n          \"Left\": 0.8212341070175171,\n          \"Top\": 0.4960906505584717\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8212364315986633,\n            \"Y\": 0.4960906505584717\n          },\n          {\n            \"X\": 0.8416131734848022,\n            \"Y\": 0.496119886636734\n          },\n          {\n            \"X\": 0.8416109085083008,\n            \"Y\": 0.5039857029914856\n          },\n          {\n            \"X\": 0.8212341070175171,\n            \"Y\": 0.5039564371109009\n          }\n        ]\n      },\n      \"Id\": \"6f6eae6f-811d-46fe-a96f-3676231e034e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0f30c49b-fb30-45f3-b70d-349af41ddfba\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b47c12ea-a04a-4db0-8cf4-066d445d7157\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.56742858886719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011322650127112865,\n          \"Height\": 0.007882008329033852,\n          \"Left\": 0.8065174221992493,\n          \"Top\": 0.49694353342056274\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8065198659896851,\n            \"Y\": 0.49694353342056274\n          },\n          {\n            \"X\": 0.8178400993347168,\n            \"Y\": 0.49695977568626404\n          },\n          {\n            \"X\": 0.8178377151489258,\n            \"Y\": 0.5048255324363708\n          },\n          {\n            \"X\": 0.8065174221992493,\n            \"Y\": 0.5048092603683472\n          }\n        ]\n      },\n      \"Id\": \"0f30c49b-fb30-45f3-b70d-349af41ddfba\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a440fa0d-845b-45ee-bf0b-6e70e1dcbc10\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95185089111328,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.015851542353630066,\n          \"Height\": 0.007888764142990112,\n          \"Left\": 0.8812335729598999,\n          \"Top\": 0.49617671966552734\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8812357187271118,\n            \"Y\": 0.49617671966552734\n          },\n          {\n            \"X\": 0.8970851302146912,\n            \"Y\": 0.49619942903518677\n          },\n          {\n            \"X\": 0.897083044052124,\n            \"Y\": 0.5040654540061951\n          },\n          {\n            \"X\": 0.8812335729598999,\n            \"Y\": 0.5040426850318909\n          }\n        ]\n      },\n      \"Id\": \"6c78c70b-d1e7-4808-a566-f03f26faec81\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6987b8b7-6daa-4c68-8c27-565db007f94e\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94344424-d063-42fc-b499-7ba40eed8b35\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.73528289794922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.011323033832013607,\n          \"Height\": 0.007882214151322842,\n          \"Left\": 0.8665161728858948,\n          \"Top\": 0.4970296025276184\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8665183782577515,\n            \"Y\": 0.4970296025276184\n          },\n          {\n            \"X\": 0.877839207649231,\n            \"Y\": 0.4970458447933197\n          },\n          {\n            \"X\": 0.877837061882019,\n            \"Y\": 0.5049117803573608\n          },\n          {\n            \"X\": 0.8665161728858948,\n            \"Y\": 0.5048955082893372\n          }\n        ]\n      },\n      \"Id\": \"6987b8b7-6daa-4c68-8c27-565db007f94e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"d9a7329b-63e4-4250-a8aa-f02cb551d1ad\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93799591064453,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08260684460401535,\n          \"Height\": 0.009729789569973946,\n          \"Left\": 0.2734634578227997,\n          \"Top\": 0.4848199188709259\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27346861362457275,\n            \"Y\": 0.4848199188709259\n          },\n          {\n            \"X\": 0.35607028007507324,\n            \"Y\": 0.48493802547454834\n          },\n          {\n            \"X\": 0.35606545209884644,\n            \"Y\": 0.4945497214794159\n          },\n          {\n            \"X\": 0.2734634578227997,\n            \"Y\": 0.4944312870502472\n          }\n        ]\n      },\n      \"Id\": \"9c333978-884b-493e-a627-9185a5a431d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"52572b2a-9c03-4528-a60f-4288952e2970\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"96d13d5c-3804-4c35-9041-fb66abcb1718\",\n            \"ca16f948-a2a0-49d0-8605-17044ff06ab8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8935775756836,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.010188087821006775,\n          \"Height\": 0.008752142079174519,\n          \"Left\": 0.2587541341781616,\n          \"Top\": 0.48567265272140503\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25875890254974365,\n            \"Y\": 0.48567265272140503\n          },\n          {\n            \"X\": 0.2689422070980072,\n            \"Y\": 0.4856872260570526\n          },\n          {\n            \"X\": 0.26893746852874756,\n            \"Y\": 0.4944247901439667\n          },\n          {\n            \"X\": 0.2587541341781616,\n            \"Y\": 0.4944101870059967\n          }\n        ]\n      },\n      \"Id\": \"52572b2a-9c03-4528-a60f-4288952e2970\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"217b5ea1-35a1-4527-bdfd-840b8505058f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95399475097656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04527612403035164,\n          \"Height\": 0.007063239347189665,\n          \"Left\": 0.4362693727016449,\n          \"Top\": 0.788307785987854\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.43627265095710754,\n            \"Y\": 0.788307785987854\n          },\n          {\n            \"X\": 0.48154550790786743,\n            \"Y\": 0.7883784770965576\n          },\n          {\n            \"X\": 0.48154234886169434,\n            \"Y\": 0.7953710556030273\n          },\n          {\n            \"X\": 0.4362693727016449,\n            \"Y\": 0.7953001856803894\n          }\n        ]\n      },\n      \"Id\": \"2618e747-2504-41fc-aebc-87215bfc4ca4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6f66ab80-8a6d-4677-96c7-90e3553e9873\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"caff6f2b-a24c-47e7-b974-5576f85b58d5\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97938537597656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.028300348669290543,\n          \"Height\": 0.007910935208201408,\n          \"Left\": 0.5007842779159546,\n          \"Top\": 0.786660373210907\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5007877945899963,\n            \"Y\": 0.786660373210907\n          },\n          {\n            \"X\": 0.5290846824645996,\n            \"Y\": 0.7867045402526855\n          },\n          {\n            \"X\": 0.5290812849998474,\n            \"Y\": 0.7945712804794312\n          },\n          {\n            \"X\": 0.5007842779159546,\n            \"Y\": 0.7945270538330078\n          }\n        ]\n      },\n      \"Id\": \"6f66ab80-8a6d-4677-96c7-90e3553e9873\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d2a97d9-a503-4c78-9cb5-49f44a1dfbd7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98241424560547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.024895504117012024,\n          \"Height\": 0.007900123484432697,\n          \"Left\": 0.13991941511631012,\n          \"Top\": 0.5457900166511536\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13992412388324738,\n            \"Y\": 0.5457900166511536\n          },\n          {\n            \"X\": 0.16481491923332214,\n            \"Y\": 0.5458263158798218\n          },\n          {\n            \"X\": 0.16481031477451324,\n            \"Y\": 0.5536901950836182\n          },\n          {\n            \"X\": 0.13991941511631012,\n            \"Y\": 0.5536538362503052\n          }\n        ]\n      },\n      \"Id\": \"dda6d89f-afed-4963-b6a8-4658f3e5a553\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6df0f71b-9f16-4368-a324-e98475b0e65b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"55b35b39-58f1-4095-a648-69266cca6892\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95878601074219,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029422003775835037,\n          \"Height\": 0.007906844839453697,\n          \"Left\": 0.17838789522647858,\n          \"Top\": 0.54497230052948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1783924549818039,\n            \"Y\": 0.54497230052948\n          },\n          {\n            \"X\": 0.20780989527702332,\n            \"Y\": 0.5450150966644287\n          },\n          {\n            \"X\": 0.20780542492866516,\n            \"Y\": 0.5528791546821594\n          },\n          {\n            \"X\": 0.17838789522647858,\n            \"Y\": 0.5528362393379211\n          }\n        ]\n      },\n      \"Id\": \"6df0f71b-9f16-4368-a324-e98475b0e65b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"18884121-0066-44c5-9419-57e6e97d54ee\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.88898468017578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06678968667984009,\n          \"Height\": 0.007097356487065554,\n          \"Left\": 0.5879408717155457,\n          \"Top\": 0.7885445952415466\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5879437327384949,\n            \"Y\": 0.7885445952415466\n          },\n          {\n            \"X\": 0.6547305583953857,\n            \"Y\": 0.7886489033699036\n          },\n          {\n            \"X\": 0.6547279953956604,\n            \"Y\": 0.7956419587135315\n          },\n          {\n            \"X\": 0.5879408717155457,\n            \"Y\": 0.7955374717712402\n          }\n        ]\n      },\n      \"Id\": \"fd9588bd-0fac-4f9a-beb3-29c333157ee9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"8f9dd3cc-761b-4f50-92e7-d3f4456ba978\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dad0fb1c-b84f-4b8c-a1ac-0cf157c1c6f7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.99366760253906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03056824952363968,\n          \"Height\": 0.007915077731013298,\n          \"Left\": 0.6796332597732544,\n          \"Top\": 0.7860653400421143\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6796361207962036,\n            \"Y\": 0.7860653400421143\n          },\n          {\n            \"X\": 0.7102015018463135,\n            \"Y\": 0.7861130237579346\n          },\n          {\n            \"X\": 0.7101987600326538,\n            \"Y\": 0.7939804196357727\n          },\n          {\n            \"X\": 0.6796332597732544,\n            \"Y\": 0.7939326167106628\n          }\n        ]\n      },\n      \"Id\": \"8f9dd3cc-761b-4f50-92e7-d3f4456ba978\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dd83486f-0a96-4e99-9d09-ee79c30a3bba\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9842758178711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03170230612158775,\n          \"Height\": 0.00791716668754816,\n          \"Left\": 0.7611424922943115,\n          \"Top\": 0.7879408597946167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7611450552940369,\n            \"Y\": 0.7879408597946167\n          },\n          {\n            \"X\": 0.792844831943512,\n            \"Y\": 0.7879903316497803\n          },\n          {\n            \"X\": 0.7928423881530762,\n            \"Y\": 0.7958580255508423\n          },\n          {\n            \"X\": 0.7611424922943115,\n            \"Y\": 0.7958084344863892\n          }\n        ]\n      },\n      \"Id\": \"fb930d79-212a-4d58-8315-ab2f18128035\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"2c7bd57d-b978-4e46-a522-05d46463d1b9\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"487d64f4-0195-4c41-9a1e-53009f109a86\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98819732666016,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029439428821206093,\n          \"Height\": 0.008787982165813446,\n          \"Left\": 0.8143537640571594,\n          \"Top\": 0.7862755060195923\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8143563866615295,\n            \"Y\": 0.7862755060195923\n          },\n          {\n            \"X\": 0.8437931537628174,\n            \"Y\": 0.7863214612007141\n          },\n          {\n            \"X\": 0.8437906503677368,\n            \"Y\": 0.7950634956359863\n          },\n          {\n            \"X\": 0.8143537640571594,\n            \"Y\": 0.7950174808502197\n          }\n        ]\n      },\n      \"Id\": \"2c7bd57d-b978-4e46-a522-05d46463d1b9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"42bd0911-a688-4183-a9f1-708b2a96dfe9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94859313964844,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.023769468069076538,\n          \"Height\": 0.007903211750090122,\n          \"Left\": 0.3061189651489258,\n          \"Top\": 0.7881045937538147\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.30612310767173767,\n            \"Y\": 0.7881045937538147\n          },\n          {\n            \"X\": 0.3298884332180023,\n            \"Y\": 0.788141667842865\n          },\n          {\n            \"X\": 0.32988440990448,\n            \"Y\": 0.7960078120231628\n          },\n          {\n            \"X\": 0.3061189651489258,\n            \"Y\": 0.795970618724823\n          }\n        ]\n      },\n      \"Id\": \"79748507-464d-446a-8bce-6bdd335b622c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"521ef67d-0a24-48b3-ae81-d8f2e30dce97\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"ba3f95e2-08fb-43d0-bcfd-21ae8029d495\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 92.0512924194336,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.038483377546072006,\n          \"Height\": 0.008800368756055832,\n          \"Left\": 0.3525194823741913,\n          \"Top\": 0.7855550050735474\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35252389311790466,\n            \"Y\": 0.7855550050735474\n          },\n          {\n            \"X\": 0.3910028636455536,\n            \"Y\": 0.7856150269508362\n          },\n          {\n            \"X\": 0.39099860191345215,\n            \"Y\": 0.7943553328514099\n          },\n          {\n            \"X\": 0.3525194823741913,\n            \"Y\": 0.7942951917648315\n          }\n        ]\n      },\n      \"Id\": \"521ef67d-0a24-48b3-ae81-d8f2e30dce97\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"40fa7465-6ea6-462b-86df-6e5beb489a33\",\n            \"c397edf9-6423-4369-b532-65fcb104536f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.66158294677734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.35188138484954834,\n          \"Height\": 0.010983817279338837,\n          \"Left\": 0.05286218598484993,\n          \"Top\": 0.4539264142513275\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05286885052919388,\n            \"Y\": 0.4539264142513275\n          },\n          {\n            \"X\": 0.40474358201026917,\n            \"Y\": 0.45442479848861694\n          },\n          {\n            \"X\": 0.40473851561546326,\n            \"Y\": 0.46491023898124695\n          },\n          {\n            \"X\": 0.05286218598484993,\n            \"Y\": 0.4644102454185486\n          }\n        ]\n      },\n      \"Id\": \"2bd0563d-8f9c-4e83-9819-1df7db271fb7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"83e1b5a3-368a-46f6-b5a2-ca1a3d27fae5\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c8c5befb-fb00-4c6f-80ff-e5c97f33bdde\",\n            \"056f9eb6-1fd1-402a-8dd6-ba989189b130\",\n            \"9e24505d-d70b-4433-8530-333d4413263e\",\n            \"d0befd0c-538a-4e5f-95d7-911b37d43fc4\",\n            \"ba1c18a2-3ca4-4c28-92c1-14d9a5e86cac\",\n            \"a45b550e-438e-454d-b2b7-db29add58fd0\",\n            \"f0330f86-96ae-4da5-a28b-968df2c7d836\",\n            \"e580e912-3464-49ec-8e1f-2472e17adfc2\",\n            \"06c217b5-be52-4a7c-9169-45d31b91cdd3\",\n            \"8f4116f1-d5eb-4892-80c7-40e5d157cd20\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.32279968261719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04865160211920738,\n          \"Height\": 0.008806910365819931,\n          \"Left\": 0.052834417670965195,\n          \"Top\": 0.49935704469680786\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0528399720788002,\n            \"Y\": 0.49935704469680786\n          },\n          {\n            \"X\": 0.10148601979017258,\n            \"Y\": 0.4994269013404846\n          },\n          {\n            \"X\": 0.1014806479215622,\n            \"Y\": 0.5081639289855957\n          },\n          {\n            \"X\": 0.052834417670965195,\n            \"Y\": 0.5080938935279846\n          }\n        ]\n      },\n      \"Id\": \"83e1b5a3-368a-46f6-b5a2-ca1a3d27fae5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"08fc984f-dd16-46c8-ab0d-c2bd7869c17a\",\n            \"944bfdf1-daac-4712-8de4-61324c542448\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.86396026611328,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.049799710512161255,\n          \"Height\": 0.009684254415333271,\n          \"Left\": 0.4635593295097351,\n          \"Top\": 0.508685290813446\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4635637104511261,\n            \"Y\": 0.508685290813446\n          },\n          {\n            \"X\": 0.513359010219574,\n            \"Y\": 0.5087569952011108\n          },\n          {\n            \"X\": 0.5133548378944397,\n            \"Y\": 0.5183695554733276\n          },\n          {\n            \"X\": 0.4635593295097351,\n            \"Y\": 0.5182976722717285\n          }\n        ]\n      },\n      \"Id\": \"3f510e82-34a5-41c4-a754-8c13f0749dcb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"9a9cb586-3a96-4fd8-a35d-cf811e65a5bd\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61d009c3-913a-47df-8f64-92fb4a27b1cd\",\n            \"640fa90c-ec11-4c3f-b627-adf87dc7295d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.72286224365234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05319901555776596,\n          \"Height\": 0.008815668523311615,\n          \"Left\": 0.5699440240859985,\n          \"Top\": 0.5079646110534668\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5699476003646851,\n            \"Y\": 0.5079646110534668\n          },\n          {\n            \"X\": 0.6231430172920227,\n            \"Y\": 0.5080412030220032\n          },\n          {\n            \"X\": 0.6231396794319153,\n            \"Y\": 0.5167802572250366\n          },\n          {\n            \"X\": 0.5699440240859985,\n            \"Y\": 0.5167034864425659\n          }\n        ]\n      },\n      \"Id\": \"9a9cb586-3a96-4fd8-a35d-cf811e65a5bd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7d5de3a7-08d9-4413-bebf-85a38d9e1f86\",\n            \"48a2f899-a3d6-43ee-b615-5dbec74c8d12\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.64810943603516,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041879646480083466,\n          \"Height\": 0.009675813838839531,\n          \"Left\": 0.46350789070129395,\n          \"Top\": 0.6214169859886169\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4635123014450073,\n            \"Y\": 0.6214169859886169\n          },\n          {\n            \"X\": 0.505387544631958,\n            \"Y\": 0.621479332447052\n          },\n          {\n            \"X\": 0.505383312702179,\n            \"Y\": 0.6310927867889404\n          },\n          {\n            \"X\": 0.46350789070129395,\n            \"Y\": 0.631030261516571\n          }\n        ]\n      },\n      \"Id\": \"0498b889-f2e8-4465-97ee-d4ecce3b8ad5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0417a05e-d75b-4d92-a3a0-2e88e483def6\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3577110f-4604-4429-aef1-99f40a7926ba\",\n            \"3330b7e3-c7f3-462f-a20a-d3fb29c3d349\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.61253356933594,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05659736320376396,\n          \"Height\": 0.008824232965707779,\n          \"Left\": 0.569897472858429,\n          \"Top\": 0.6215754151344299\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5699010491371155,\n            \"Y\": 0.6215754151344299\n          },\n          {\n            \"X\": 0.626494824886322,\n            \"Y\": 0.6216596364974976\n          },\n          {\n            \"X\": 0.6264914870262146,\n            \"Y\": 0.6303996443748474\n          },\n          {\n            \"X\": 0.569897472858429,\n            \"Y\": 0.6303151249885559\n          }\n        ]\n      },\n      \"Id\": \"0417a05e-d75b-4d92-a3a0-2e88e483def6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"43cb091e-e13b-4e8e-9000-df0f8702f439\",\n            \"d81f9eb9-2de5-4770-a0e8-6cc22bd399b1\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96041870117188,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04527406394481659,\n          \"Height\": 0.009679602459073067,\n          \"Left\": 0.46239691972732544,\n          \"Top\": 0.575971782207489\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46240130066871643,\n            \"Y\": 0.575971782207489\n          },\n          {\n            \"X\": 0.5076709985733032,\n            \"Y\": 0.5760383009910583\n          },\n          {\n            \"X\": 0.5076667666435242,\n            \"Y\": 0.5856513977050781\n          },\n          {\n            \"X\": 0.46239691972732544,\n            \"Y\": 0.5855847001075745\n          }\n        ]\n      },\n      \"Id\": \"88d5b2bb-7c9b-4793-8ff5-c98031821529\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"3474938d-b10d-42af-87e2-3bf7a2cee5e7\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"12baef2f-fe16-48ed-bb16-019d5a6e9598\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.75971984863281,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.056596215814352036,\n          \"Height\": 0.008822739124298096,\n          \"Left\": 0.5699164867401123,\n          \"Top\": 0.575255811214447\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5699200630187988,\n            \"Y\": 0.575255811214447\n          },\n          {\n            \"X\": 0.6265127062797546,\n            \"Y\": 0.5753389000892639\n          },\n          {\n            \"X\": 0.6265093088150024,\n            \"Y\": 0.5840785503387451\n          },\n          {\n            \"X\": 0.5699164867401123,\n            \"Y\": 0.5839951634407043\n          }\n        ]\n      },\n      \"Id\": \"3474938d-b10d-42af-87e2-3bf7a2cee5e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f6bd0308-a369-45df-a138-47c7436ba56a\",\n            \"1a6ead24-be6d-4d9e-978c-f9671b650f4d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.72588348388672,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07467956095933914,\n          \"Height\": 0.007107495330274105,\n          \"Left\": 0.041346993297338486,\n          \"Top\": 0.7737088799476624\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04135147109627724,\n            \"Y\": 0.7737088799476624\n          },\n          {\n            \"X\": 0.11602655798196793,\n            \"Y\": 0.7738249897956848\n          },\n          {\n            \"X\": 0.11602230370044708,\n            \"Y\": 0.780816376209259\n          },\n          {\n            \"X\": 0.041346993297338486,\n            \"Y\": 0.7807000279426575\n          }\n        ]\n      },\n      \"Id\": \"47330cc5-25fe-422d-b3ff-17d0fc07c17c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f85e2662-56c7-4a05-ac92-56ce9b137bfd\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4224337b-61e9-4cf8-af83-91025810c7e2\",\n            \"ff994120-c949-4f13-820d-e41864d14c7d\",\n            \"a5203476-2b23-4be4-bedc-529142f37f76\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98358154296875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06450221687555313,\n          \"Height\": 0.00796595960855484,\n          \"Left\": 0.14204509556293488,\n          \"Top\": 0.7756133675575256\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.14204978942871094,\n            \"Y\": 0.7756133675575256\n          },\n          {\n            \"X\": 0.2065473049879074,\n            \"Y\": 0.7757136821746826\n          },\n          {\n            \"X\": 0.20654283463954926,\n            \"Y\": 0.7835792899131775\n          },\n          {\n            \"X\": 0.14204509556293488,\n            \"Y\": 0.7834787368774414\n          }\n        ]\n      },\n      \"Id\": \"f85e2662-56c7-4a05-ac92-56ce9b137bfd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4a9e3142-2e71-4760-b6bb-449cea3052c9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92500305175781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1029682457447052,\n          \"Height\": 0.008026370778679848,\n          \"Left\": 0.04246721416711807,\n          \"Top\": 0.7903146147727966\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.042472247034311295,\n            \"Y\": 0.7903146147727966\n          },\n          {\n            \"X\": 0.14543546736240387,\n            \"Y\": 0.7904755473136902\n          },\n          {\n            \"X\": 0.145430788397789,\n            \"Y\": 0.7983410358428955\n          },\n          {\n            \"X\": 0.04246721416711807,\n            \"Y\": 0.7981798052787781\n          }\n        ]\n      },\n      \"Id\": \"2bf91ce3-9b91-4ebd-815c-eb9a919733ff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"10d3ae72-7aff-455b-b38f-ca7b0032b3f4\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a0000fcf-d91d-437e-a148-ff7c699c602e\",\n            \"9dfafeb5-ccf6-4cbe-9759-8e0b0ede4ee8\",\n            \"b6ad479d-3439-4cfd-a0a6-8adfb90af0d7\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96776580810547,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06450409442186356,\n          \"Height\": 0.007966547273099422,\n          \"Left\": 0.17032496631145477,\n          \"Top\": 0.789640486240387\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17032955586910248,\n            \"Y\": 0.789640486240387\n          },\n          {\n            \"X\": 0.23482906818389893,\n            \"Y\": 0.7897412180900574\n          },\n          {\n            \"X\": 0.23482468724250793,\n            \"Y\": 0.7976070046424866\n          },\n          {\n            \"X\": 0.17032496631145477,\n            \"Y\": 0.7975060343742371\n          }\n        ]\n      },\n      \"Id\": \"10d3ae72-7aff-455b-b38f-ca7b0032b3f4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"6b65af51-452a-41f1-9e99-a16d69139344\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98699188232422,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03961370885372162,\n          \"Height\": 0.007922336459159851,\n          \"Left\": 0.4635501503944397,\n          \"Top\": 0.530531644821167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4635537564754486,\n            \"Y\": 0.530531644821167\n          },\n          {\n            \"X\": 0.5031638741493225,\n            \"Y\": 0.5305891036987305\n          },\n          {\n            \"X\": 0.5031604170799255,\n            \"Y\": 0.538453996181488\n          },\n          {\n            \"X\": 0.4635501503944397,\n            \"Y\": 0.5383964776992798\n          }\n        ]\n      },\n      \"Id\": \"fe756230-5991-4c26-bf97-8cabbf132851\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e1004e6f-ded9-405b-bf99-25718e88a9ec\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"669598fb-8bb0-4f33-a7a5-050c210e04a3\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.70706939697266,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05659547075629234,\n          \"Height\": 0.009695233777165413,\n          \"Left\": 0.5699343681335449,\n          \"Top\": 0.5306858420372009\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5699383020401001,\n            \"Y\": 0.5306858420372009\n          },\n          {\n            \"X\": 0.6265298128128052,\n            \"Y\": 0.5307678580284119\n          },\n          {\n            \"X\": 0.6265261173248291,\n            \"Y\": 0.5403810739517212\n          },\n          {\n            \"X\": 0.5699343681335449,\n            \"Y\": 0.5402988195419312\n          }\n        ]\n      },\n      \"Id\": \"e1004e6f-ded9-405b-bf99-25718e88a9ec\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5074532-74be-4c99-adc5-f695df23b2ae\",\n            \"f249583d-7ac9-462f-b0cd-0b4ef6f9baa3\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95591735839844,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09168510138988495,\n          \"Height\": 0.018492668867111206,\n          \"Left\": 0.4623498022556305,\n          \"Top\": 0.6703565120697021\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4623582065105438,\n            \"Y\": 0.6703565120697021\n          },\n          {\n            \"X\": 0.5540348887443542,\n            \"Y\": 0.6704949736595154\n          },\n          {\n            \"X\": 0.554027259349823,\n            \"Y\": 0.6888492107391357\n          },\n          {\n            \"X\": 0.4623498022556305,\n            \"Y\": 0.6887100338935852\n          }\n        ]\n      },\n      \"Id\": \"3690a53d-4028-407f-a434-13296fa5224d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"85f56444-ca51-4686-a91b-09b42d2b2230\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0fcd7c1f-fe75-4c8f-8c3e-93990dcfeb24\",\n            \"d1c8c860-eb8a-49a6-8556-339f47df8afa\",\n            \"535b6615-5769-47a4-893e-d868224a7dea\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.04505920410156,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05999492481350899,\n          \"Height\": 0.009705263189971447,\n          \"Left\": 0.5698738694190979,\n          \"Top\": 0.6783850193023682\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698778033256531,\n            \"Y\": 0.6783850193023682\n          },\n          {\n            \"X\": 0.6298688054084778,\n            \"Y\": 0.6784757971763611\n          },\n          {\n            \"X\": 0.6298651099205017,\n            \"Y\": 0.6880902647972107\n          },\n          {\n            \"X\": 0.5698738694190979,\n            \"Y\": 0.6879992485046387\n          }\n        ]\n      },\n      \"Id\": \"85f56444-ca51-4686-a91b-09b42d2b2230\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"724f616c-9ba0-4689-bc68-7a9814412cb4\",\n            \"b246bcf0-e5c6-45bc-815b-7527c8cd8e8d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96173858642578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06452005356550217,\n          \"Height\": 0.018450159579515457,\n          \"Left\": 0.46236297488212585,\n          \"Top\": 0.6415159106254578\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4623713791370392,\n            \"Y\": 0.6415159106254578\n          },\n          {\n            \"X\": 0.526883065700531,\n            \"Y\": 0.6416125297546387\n          },\n          {\n            \"X\": 0.5268751978874207,\n            \"Y\": 0.6599660515785217\n          },\n          {\n            \"X\": 0.46236297488212585,\n            \"Y\": 0.6598689556121826\n          }\n        ]\n      },\n      \"Id\": \"763582f8-4518-4467-ad69-b8bf612b2fff\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6528cbcc-594d-4ac3-9561-0c3a58bd4e92\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"01f555f2-648c-4149-a6e4-79f8610da5e0\",\n            \"c8a9300f-f182-4f8d-8dec-5a1047aaf9c4\",\n            \"784df844-97c6-4351-a48b-de2cb65c28dd\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.66934204101562,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05999450385570526,\n          \"Height\": 0.010578261688351631,\n          \"Left\": 0.5698856711387634,\n          \"Top\": 0.6486688852310181\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5698899626731873,\n            \"Y\": 0.6486688852310181\n          },\n          {\n            \"X\": 0.6298801898956299,\n            \"Y\": 0.6487588882446289\n          },\n          {\n            \"X\": 0.6298761367797852,\n            \"Y\": 0.659247100353241\n          },\n          {\n            \"X\": 0.5698856711387634,\n            \"Y\": 0.6591567993164062\n          }\n        ]\n      },\n      \"Id\": \"6528cbcc-594d-4ac3-9561-0c3a58bd4e92\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"f174c198-7b59-4e7e-bbc2-adbf31336351\",\n            \"6505d8c8-2153-4c0b-ab8b-48db6d292e14\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9698257446289,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.046405129134655,\n          \"Height\": 0.007060150150209665,\n          \"Left\": 0.46238693594932556,\n          \"Top\": 0.6004411578178406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46239012479782104,\n            \"Y\": 0.6004411578178406\n          },\n          {\n            \"X\": 0.5087920427322388,\n            \"Y\": 0.6005098223686218\n          },\n          {\n            \"X\": 0.5087890028953552,\n            \"Y\": 0.6075012683868408\n          },\n          {\n            \"X\": 0.46238693594932556,\n            \"Y\": 0.60743248462677\n          }\n        ]\n      },\n      \"Id\": \"ab844c11-fbbb-4a29-aed6-e2a020b0eb1d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"0d823653-846a-40b8-963c-dfdcb46c144b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3aa172d9-e0e5-4f0f-93d9-7e403bc4fbce\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.25271606445312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05772978812456131,\n          \"Height\": 0.011447163298726082,\n          \"Left\": 0.5699053406715393,\n          \"Top\": 0.5997262597084045\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5699099898338318,\n            \"Y\": 0.5997262597084045\n          },\n          {\n            \"X\": 0.6276351809501648,\n            \"Y\": 0.5998116731643677\n          },\n          {\n            \"X\": 0.6276307702064514,\n            \"Y\": 0.6111734509468079\n          },\n          {\n            \"X\": 0.5699053406715393,\n            \"Y\": 0.6110877990722656\n          }\n        ]\n      },\n      \"Id\": \"0d823653-846a-40b8-963c-dfdcb46c144b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"5b90db72-686a-4513-b932-c7bf6c67b37d\",\n            \"8d93735f-17bb-4331-9b88-57ce879641ac\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.92790222167969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04527755454182625,\n          \"Height\": 0.018417945131659508,\n          \"Left\": 0.4624044895172119,\n          \"Top\": 0.5506290197372437\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.46241286396980286,\n            \"Y\": 0.5506290197372437\n          },\n          {\n            \"X\": 0.5076820254325867,\n            \"Y\": 0.5506950616836548\n          },\n          {\n            \"X\": 0.5076740384101868,\n            \"Y\": 0.5690469741821289\n          },\n          {\n            \"X\": 0.4624044895172119,\n            \"Y\": 0.5689806342124939\n          }\n        ]\n      },\n      \"Id\": \"5da88401-0442-4c05-8233-122d84c84e8d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"00fa14c2-d8d5-4575-9632-87b608d507da\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"56670517-cd59-48b0-9240-9aded194c6ed\",\n            \"3e77dbfc-32f6-4711-8310-edea980620e9\",\n            \"35e1dd25-f1aa-4558-811e-f76f799da294\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.82717895507812,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05999279022216797,\n          \"Height\": 0.012322903610765934,\n          \"Left\": 0.569922924041748,\n          \"Top\": 0.5560293197631836\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5699279308319092,\n            \"Y\": 0.5560293197631836\n          },\n          {\n            \"X\": 0.629915714263916,\n            \"Y\": 0.5561169385910034\n          },\n          {\n            \"X\": 0.6299110054969788,\n            \"Y\": 0.568352222442627\n          },\n          {\n            \"X\": 0.569922924041748,\n            \"Y\": 0.5682643055915833\n          }\n        ]\n      },\n      \"Id\": \"00fa14c2-d8d5-4575-9632-87b608d507da\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"020cbd22-63e3-4b05-a993-f89a07093946\",\n            \"571ee72e-449d-46d6-ad5b-6512cca1798d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93928527832031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02944105863571167,\n          \"Height\": 0.008791510947048664,\n          \"Left\": 0.783729076385498,\n          \"Top\": 0.9645743370056152\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7837318181991577,\n            \"Y\": 0.9645743370056152\n          },\n          {\n            \"X\": 0.8131701350212097,\n            \"Y\": 0.9646225571632385\n          },\n          {\n            \"X\": 0.8131674528121948,\n            \"Y\": 0.973365843296051\n          },\n          {\n            \"X\": 0.783729076385498,\n            \"Y\": 0.9733175039291382\n          }\n        ]\n      },\n      \"Id\": \"72c5933a-781e-41a8-99c7-f9023d16fde7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"dd5500d9-63d7-4fc7-bde8-a7e0b5dc1028\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"660dbf49-99c9-4e8f-9f92-e7b929fa06df\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.72331237792969,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1007787212729454,\n          \"Height\": 0.009783118963241577,\n          \"Left\": 0.8199607729911804,\n          \"Top\": 0.9646336436271667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8199636936187744,\n            \"Y\": 0.9646336436271667\n          },\n          {\n            \"X\": 0.9207395315170288,\n            \"Y\": 0.9647986888885498\n          },\n          {\n            \"X\": 0.9207370281219482,\n            \"Y\": 0.9744167923927307\n          },\n          {\n            \"X\": 0.8199607729911804,\n            \"Y\": 0.9742513298988342\n          }\n        ]\n      },\n      \"Id\": \"dd5500d9-63d7-4fc7-bde8-a7e0b5dc1028\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4b430fc8-c8a8-445f-b311-7973933e5be1\",\n            \"888d7cca-57e8-461b-ba8a-e578594af1b6\",\n            \"cba7d020-04a1-40ad-847b-272843bab710\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.90164947509766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.041878145188093185,\n          \"Height\": 0.007920101284980774,\n          \"Left\": 0.6277520656585693,\n          \"Top\": 0.28784415125846863\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6277551054954529,\n            \"Y\": 0.28784415125846863\n          },\n          {\n            \"X\": 0.669630229473114,\n            \"Y\": 0.287900447845459\n          },\n          {\n            \"X\": 0.66962730884552,\n            \"Y\": 0.2957642674446106\n          },\n          {\n            \"X\": 0.6277520656585693,\n            \"Y\": 0.2957078516483307\n          }\n        ]\n      },\n      \"Id\": \"1a135655-92b8-48c0-8dc2-96d14d681607\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"5fe9c18d-8813-46de-a68d-7c8a4b9c3f74\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"228aa116-1323-4596-9c14-fd22c80a74ab\",\n            \"e4fe2148-19e0-40f8-b4ec-1ccf54b8f4d6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98588562011719,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08149347454309464,\n          \"Height\": 0.010595742613077164,\n          \"Left\": 0.6367973685264587,\n          \"Top\": 0.3079525828361511\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6368013620376587,\n            \"Y\": 0.3079525828361511\n          },\n          {\n            \"X\": 0.7182908654212952,\n            \"Y\": 0.3080628216266632\n          },\n          {\n            \"X\": 0.7182872295379639,\n            \"Y\": 0.318548321723938\n          },\n          {\n            \"X\": 0.6367973685264587,\n            \"Y\": 0.31843772530555725\n          }\n        ]\n      },\n      \"Id\": \"5fe9c18d-8813-46de-a68d-7c8a4b9c3f74\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a7ed2fee-ba02-4969-a7d9-949a2e6834eb\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95046997070312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08716011047363281,\n          \"Height\": 0.008003742434084415,\n          \"Left\": 0.49172165989875793,\n          \"Top\": 0.8041277527809143\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4917251467704773,\n            \"Y\": 0.8041277527809143\n          },\n          {\n            \"X\": 0.5788818001747131,\n            \"Y\": 0.8042644262313843\n          },\n          {\n            \"X\": 0.5788785815238953,\n            \"Y\": 0.8121315240859985\n          },\n          {\n            \"X\": 0.49172165989875793,\n            \"Y\": 0.8119945526123047\n          }\n        ]\n      },\n      \"Id\": \"b7131762-6b65-4818-8501-2589843a724b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b92cd7db-49ac-4d33-8351-c2827d16b31c\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3dfd8334-23ce-4675-a423-4aa3048e6578\",\n            \"ee04c3fa-f44f-4e6e-a539-a642c1529d0d\",\n            \"6d4a7277-e0d6-4560-ab2c-61c56227eadf\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97645568847656,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.09509049355983734,\n          \"Height\": 0.010639410465955734,\n          \"Left\": 0.5573662519454956,\n          \"Top\": 0.8147200345993042\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5573706030845642,\n            \"Y\": 0.8147200345993042\n          },\n          {\n            \"X\": 0.6524567604064941,\n            \"Y\": 0.8148695826530457\n          },\n          {\n            \"X\": 0.652452826499939,\n            \"Y\": 0.8253594636917114\n          },\n          {\n            \"X\": 0.5573662519454956,\n            \"Y\": 0.8252094984054565\n          }\n        ]\n      },\n      \"Id\": \"b92cd7db-49ac-4d33-8351-c2827d16b31c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"60f2d252-7994-4402-b041-094f671c3c92\",\n            \"99f0888a-3c8d-44a1-9137-33247f346863\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93898010253906,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07470765709877014,\n          \"Height\": 0.007988437078893185,\n          \"Left\": 0.41243863105773926,\n          \"Top\": 0.919384241104126\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4124423861503601,\n            \"Y\": 0.919384241104126\n          },\n          {\n            \"X\": 0.4871462881565094,\n            \"Y\": 0.9195051193237305\n          },\n          {\n            \"X\": 0.48714277148246765,\n            \"Y\": 0.9273726940155029\n          },\n          {\n            \"X\": 0.41243863105773926,\n            \"Y\": 0.9272515177726746\n          }\n        ]\n      },\n      \"Id\": \"789565b9-1efb-4d39-b014-ee931eb6836d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1c7ef72f-6476-4b02-9269-4acf4d610bf0\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94651d6d-2505-44a8-9ee4-a3044323e386\",\n            \"08411395-6455-42a8-904e-11b63608dd5c\",\n            \"a6e2dad0-3940-4e43-8437-8d36d3dfed26\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.88450622558594,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08263928443193436,\n          \"Height\": 0.012373066507279873,\n          \"Left\": 0.49958816170692444,\n          \"Top\": 0.9282670617103577\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4995935559272766,\n            \"Y\": 0.9282670617103577\n          },\n          {\n            \"X\": 0.5822274684906006,\n            \"Y\": 0.9284010529518127\n          },\n          {\n            \"X\": 0.5822225213050842,\n            \"Y\": 0.9406400918960571\n          },\n          {\n            \"X\": 0.49958816170692444,\n            \"Y\": 0.9405056238174438\n          }\n        ]\n      },\n      \"Id\": \"1c7ef72f-6476-4b02-9269-4acf4d610bf0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"13362472-9734-4538-a450-3246bf4c4660\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94055938720703,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11767987161874771,\n          \"Height\": 0.009798143990337849,\n          \"Left\": 0.04245714470744133,\n          \"Top\": 0.804297149181366\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04246329888701439,\n            \"Y\": 0.804297149181366\n          },\n          {\n            \"X\": 0.16013701260089874,\n            \"Y\": 0.8044817447662354\n          },\n          {\n            \"X\": 0.16013135015964508,\n            \"Y\": 0.8140953183174133\n          },\n          {\n            \"X\": 0.04245714470744133,\n            \"Y\": 0.8139102458953857\n          }\n        ]\n      },\n      \"Id\": \"873efaa1-e0b3-4acd-9cfb-be07e1c41736\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1a27748f-8ca0-4801-90a6-2f3907d5e241\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8184dfaf-0b56-41e0-ae32-c1c71c0501a4\",\n            \"4bc28e3b-dfc7-4bdc-94fb-14b304cc9a8e\",\n            \"0c97838c-d9bf-41f2-89eb-dd2172ccf822\",\n            \"78034b72-c6ce-4a31-adbf-e7a00977e7ad\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 97.82964324951172,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08034758269786835,\n          \"Height\": 0.008866388350725174,\n          \"Left\": 0.16352033615112305,\n          \"Top\": 0.8149746060371399\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.16352546215057373,\n            \"Y\": 0.8149746060371399\n          },\n          {\n            \"X\": 0.2438679188489914,\n            \"Y\": 0.8151009678840637\n          },\n          {\n            \"X\": 0.2438630908727646,\n            \"Y\": 0.8238409757614136\n          },\n          {\n            \"X\": 0.16352033615112305,\n            \"Y\": 0.8237143158912659\n          }\n        ]\n      },\n      \"Id\": \"1a27748f-8ca0-4801-90a6-2f3907d5e241\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9da06c04-141a-4a42-8a41-3ad7082f8053\",\n            \"8abb1dee-4e89-499c-aebd-1654c8321aba\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.91429901123047,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04302626848220825,\n          \"Height\": 0.007937151938676834,\n          \"Left\": 0.7848902940750122,\n          \"Top\": 0.8736509084701538\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.784892737865448,\n            \"Y\": 0.8736509084701538\n          },\n          {\n            \"X\": 0.8279165625572205,\n            \"Y\": 0.8737196922302246\n          },\n          {\n            \"X\": 0.8279142379760742,\n            \"Y\": 0.8815881013870239\n          },\n          {\n            \"X\": 0.7848902940750122,\n            \"Y\": 0.8815191984176636\n          }\n        ]\n      },\n      \"Id\": \"670296fd-d99e-42ac-b7f2-2a00c09ee1f2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1a925fc2-fa0c-4a80-a1f8-a4b30dc742a3\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7181bcac-bf59-4627-ba53-0284a38cc600\",\n            \"c0d3cb87-ad7c-4f0a-8f74-d5de17c78a46\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97593688964844,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0803937166929245,\n          \"Height\": 0.010621302761137486,\n          \"Left\": 0.8075240850448608,\n          \"Top\": 0.9042864441871643\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.8075273036956787,\n            \"Y\": 0.9042864441871643\n          },\n          {\n            \"X\": 0.8879178166389465,\n            \"Y\": 0.904416024684906\n          },\n          {\n            \"X\": 0.8879149556159973,\n            \"Y\": 0.9149077534675598\n          },\n          {\n            \"X\": 0.8075240850448608,\n            \"Y\": 0.9147778153419495\n          }\n        ]\n      },\n      \"Id\": \"1a925fc2-fa0c-4a80-a1f8-a4b30dc742a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"84f5f7c5-1be8-45a9-a3b6-87134db33523\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.843505859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03847522288560867,\n          \"Height\": 0.007914668880403042,\n          \"Left\": 0.3742690086364746,\n          \"Top\": 0.28837713599205017\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.3742729127407074,\n            \"Y\": 0.28837713599205017\n          },\n          {\n            \"X\": 0.4127442240715027,\n            \"Y\": 0.2884288728237152\n          },\n          {\n            \"X\": 0.41274046897888184,\n            \"Y\": 0.2962918281555176\n          },\n          {\n            \"X\": 0.3742690086364746,\n            \"Y\": 0.296239972114563\n          }\n        ]\n      },\n      \"Id\": \"147921d1-9dac-4f5f-9851-36c0f000f95d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"589a7ae9-9baf-456e-a419-897623132350\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"94857599-41ef-4312-9551-bcf3ddc454e3\",\n            \"4a431f09-7906-43dc-b2a9-27f956514294\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98432159423828,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11882305890321732,\n          \"Height\": 0.012392709031701088,\n          \"Left\": 0.4093354046344757,\n          \"Top\": 0.3058975636959076\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4093412756919861,\n            \"Y\": 0.3058975636959076\n          },\n          {\n            \"X\": 0.5281584858894348,\n            \"Y\": 0.30605819821357727\n          },\n          {\n            \"X\": 0.5281532406806946,\n            \"Y\": 0.3182902932167053\n          },\n          {\n            \"X\": 0.4093354046344757,\n            \"Y\": 0.3181290328502655\n          }\n        ]\n      },\n      \"Id\": \"589a7ae9-9baf-456e-a419-897623132350\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"75b13c19-3026-481e-a40b-d91b36c63ca1\",\n            \"9e9f0271-b083-4911-bd88-806f0aef7107\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 93.94181823730469,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20943203568458557,\n          \"Height\": 0.023026807233691216,\n          \"Left\": 0.6955727934837341,\n          \"Top\": 0.5151369571685791\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6955808401107788,\n            \"Y\": 0.5151369571685791\n          },\n          {\n            \"X\": 0.9050048589706421,\n            \"Y\": 0.5154390335083008\n          },\n          {\n            \"X\": 0.9049988389015198,\n            \"Y\": 0.5381637811660767\n          },\n          {\n            \"X\": 0.6955727934837341,\n            \"Y\": 0.5378595590591431\n          }\n        ]\n      },\n      \"Id\": \"4c0a7ede-8f20-4c1b-859c-8d4bfe31be21\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"60f39f68-7355-4d69-873b-a0fef6566583\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c281b1c8-cf3c-4287-a295-f1593a57795d\",\n            \"c88d7963-12d1-4b5b-8b42-b85a4847df6a\",\n            \"dda04e2a-4696-4f08-a6d2-16b348fcaad4\",\n            \"55a587c6-f259-482e-ad8d-f46e7fb0e27b\",\n            \"42bc55de-ea8d-4c38-bf50-ab5cd9719884\",\n            \"0f4fb00a-dd76-4b80-be95-5e776b0a59da\",\n            \"93a22742-901d-4b58-b778-a2bdea4cf71d\",\n            \"522ab9da-c766-4720-90c2-81444dc58ee3\",\n            \"a375d7ac-c6d6-483a-9feb-db4ed16505ac\",\n            \"802826f9-a879-4573-84b8-8fba2ddcb2c6\",\n            \"225d707d-9804-462c-8c2d-01602224e9b4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 100,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22908158600330353,\n          \"Height\": 0.0032847062684595585,\n          \"Left\": 0.6924247145652771,\n          \"Top\": 0.5378550291061401\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6924257874488831,\n            \"Y\": 0.5378550291061401\n          },\n          {\n            \"X\": 0.9215062856674194,\n            \"Y\": 0.5381877422332764\n          },\n          {\n            \"X\": 0.9215055704116821,\n            \"Y\": 0.5411397218704224\n          },\n          {\n            \"X\": 0.6924247145652771,\n            \"Y\": 0.5408067107200623\n          }\n        ]\n      },\n      \"Id\": \"60f39f68-7355-4d69-873b-a0fef6566583\",\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94844818115234,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10866962373256683,\n          \"Height\": 0.01937035471200943,\n          \"Left\": 0.7454556226730347,\n          \"Top\": 0.2880023419857025\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7454620003700256,\n            \"Y\": 0.2880023419857025\n          },\n          {\n            \"X\": 0.8541252017021179,\n            \"Y\": 0.2881483733654022\n          },\n          {\n            \"X\": 0.8541197180747986,\n            \"Y\": 0.30737268924713135\n          },\n          {\n            \"X\": 0.7454556226730347,\n            \"Y\": 0.30722576379776\n          }\n        ]\n      },\n      \"Id\": \"a621de7b-ad59-48dc-80e5-7deaa77da3cd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"b1d71139-15a9-4295-b9c2-8190db5638a1\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"72613989-b9e2-4290-b548-5aaeb65d84d0\",\n            \"f04a570f-9dae-4cd0-a23c-32a3766830b9\",\n            \"384370f6-5582-40e9-8a90-f5b9f501822d\",\n            \"90461fa2-3ff7-44c8-ace5-b405213753c9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8844985961914,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1199890598654747,\n          \"Height\": 0.009775068610906601,\n          \"Left\": 0.7612963914871216,\n          \"Top\": 0.31423765420913696\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7612995505332947,\n            \"Y\": 0.31423765420913696\n          },\n          {\n            \"X\": 0.8812854886054993,\n            \"Y\": 0.31440025568008423\n          },\n          {\n            \"X\": 0.8812828063964844,\n            \"Y\": 0.32401272654533386\n          },\n          {\n            \"X\": 0.7612963914871216,\n            \"Y\": 0.3238495886325836\n          }\n        ]\n      },\n      \"Id\": \"b1d71139-15a9-4295-b9c2-8190db5638a1\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"61704f3e-ecaa-4d6d-8f12-a21746e38429\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95015716552734,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21736212074756622,\n          \"Height\": 0.009938690811395645,\n          \"Left\": 0.6944079399108887,\n          \"Top\": 0.6208867430686951\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6944113969802856,\n            \"Y\": 0.6208867430686951\n          },\n          {\n            \"X\": 0.9117700457572937,\n            \"Y\": 0.6212102770805359\n          },\n          {\n            \"X\": 0.9117676019668579,\n            \"Y\": 0.6308254599571228\n          },\n          {\n            \"X\": 0.6944079399108887,\n            \"Y\": 0.6305009722709656\n          }\n        ]\n      },\n      \"Id\": \"80576267-570c-4059-a0e0-6e3d4b20b9c5\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e1481cbe-8767-44cc-b215-533cae1f0dfe\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"4ca10ad8-36b6-4a9d-91c1-3b2dc21371f0\",\n            \"5522b1d5-ceee-4c68-baf1-e4724dacc43c\",\n            \"e6c04eb7-3ead-4436-b741-396fb80c12d0\",\n            \"8a163271-b014-48a2-8ecb-576f4b5cdcb8\",\n            \"bfe6b426-e390-430a-9743-2c5961cb850c\",\n            \"53f34c3c-a8f5-4d82-a214-85288e20c309\",\n            \"4a4a3464-3305-4b05-93c1-710f13977d1f\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.8508529663086,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06679616868495941,\n          \"Height\": 0.008840757422149181,\n          \"Left\": 0.7770406007766724,\n          \"Top\": 0.6358687281608582\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7770434021949768,\n            \"Y\": 0.6358687281608582\n          },\n          {\n            \"X\": 0.843836784362793,\n            \"Y\": 0.6359685659408569\n          },\n          {\n            \"X\": 0.8438342213630676,\n            \"Y\": 0.6447094678878784\n          },\n          {\n            \"X\": 0.7770406007766724,\n            \"Y\": 0.6446093320846558\n          }\n        ]\n      },\n      \"Id\": \"e1481cbe-8767-44cc-b215-533cae1f0dfe\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"45979ce2-5910-4bc9-8dd8-f16321c2d4be\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94509887695312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1743422895669937,\n          \"Height\": 0.009877050295472145,\n          \"Left\": 0.6943970918655396,\n          \"Top\": 0.6514778137207031\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6944004893302917,\n            \"Y\": 0.6514778137207031\n          },\n          {\n            \"X\": 0.8687393665313721,\n            \"Y\": 0.6517396569252014\n          },\n          {\n            \"X\": 0.8687366843223572,\n            \"Y\": 0.6613548994064331\n          },\n          {\n            \"X\": 0.6943970918655396,\n            \"Y\": 0.6610923409461975\n          }\n        ]\n      },\n      \"Id\": \"8388d41d-ee13-47a4-ad0a-ed9aa2bc58e7\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"7d045fef-080a-4ff1-b5a4-ea89266a4500\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4fbe435-c7eb-4742-a4ed-6ab39a2cda51\",\n            \"7f650c99-9e20-4d96-8460-6c1c22a9aaf2\",\n            \"f13fa00a-9b6a-4cf0-80d6-58c8d5eee457\",\n            \"dabede3e-111d-47ff-a540-1132c94f6848\",\n            \"3e077c65-172d-457a-8f63-67b822243891\",\n            \"15dd6843-1487-4033-95d6-767c0dd43b64\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.02238464355469,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04075826331973076,\n          \"Height\": 0.008802663534879684,\n          \"Left\": 0.7770288586616516,\n          \"Top\": 0.6725798845291138\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.777031660079956,\n            \"Y\": 0.6725798845291138\n          },\n          {\n            \"X\": 0.8177871704101562,\n            \"Y\": 0.6726414561271667\n          },\n          {\n            \"X\": 0.8177844882011414,\n            \"Y\": 0.6813825368881226\n          },\n          {\n            \"X\": 0.7770288586616516,\n            \"Y\": 0.68132084608078\n          }\n        ]\n      },\n      \"Id\": \"7d045fef-080a-4ff1-b5a4-ea89266a4500\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e629cb75-4909-4ecc-a4ac-8ec23321ffe3\",\n            \"3f5f1d2e-7bb0-4a95-a1cb-a921842348d8\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.83468627929688,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.20595230162143707,\n          \"Height\": 0.008200092241168022,\n          \"Left\": 0.042384419590234756,\n          \"Top\": 0.9196593761444092\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04238945245742798,\n            \"Y\": 0.9196593761444092\n          },\n          {\n            \"X\": 0.24833671748638153,\n            \"Y\": 0.9199927449226379\n          },\n          {\n            \"X\": 0.24833239614963531,\n            \"Y\": 0.9278594851493835\n          },\n          {\n            \"X\": 0.042384419590234756,\n            \"Y\": 0.9275254011154175\n          }\n        ]\n      },\n      \"Id\": \"c3e28339-3e92-4d84-8206-38da6cd89c95\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"768b9800-e3c9-415d-8e0e-69c935cd4062\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e0438392-3b1a-4272-b036-f12043ecbce3\",\n            \"6cda84ae-835a-4760-a22f-4718b961d1e2\",\n            \"9ab61a04-124c-4395-96a7-89a8c49b265f\",\n            \"b3b6fafa-9f54-417e-8965-1f8df2d4cf8b\",\n            \"89848641-9986-4c41-a6ba-1bc7b80f83c7\",\n            \"e074a644-8fe6-4ec8-b0fb-5a4cb9596115\",\n            \"3c8587dd-dba5-4ef3-b43a-84eb25a430d8\",\n            \"0a88821a-56a1-4a8f-92da-287ac8d5379b\",\n            \"157dfdf2-199f-48dc-924c-641d4955188c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98372650146484,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1086399257183075,\n          \"Height\": 0.012413516640663147,\n          \"Left\": 0.09329139441251755,\n          \"Top\": 0.9328521490097046\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.09329895675182343,\n            \"Y\": 0.9328521490097046\n          },\n          {\n            \"X\": 0.20193131268024445,\n            \"Y\": 0.9330286383628845\n          },\n          {\n            \"X\": 0.20192433893680573,\n            \"Y\": 0.9452657103538513\n          },\n          {\n            \"X\": 0.09329139441251755,\n            \"Y\": 0.9450886249542236\n          }\n        ]\n      },\n      \"Id\": \"768b9800-e3c9-415d-8e0e-69c935cd4062\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"2f552c7e-b5ad-46c4-95e8-60f09b4b59ed\",\n            \"0d0c58c4-df78-4575-a418-c396d01e98ea\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.78449249267578,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1528097540140152,\n          \"Height\": 0.00898593571037054,\n          \"Left\": 0.41245993971824646,\n          \"Top\": 0.8739298582077026\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4124641418457031,\n            \"Y\": 0.8739298582077026\n          },\n          {\n            \"X\": 0.5652697086334229,\n            \"Y\": 0.8741741180419922\n          },\n          {\n            \"X\": 0.5652661323547363,\n            \"Y\": 0.8829157948493958\n          },\n          {\n            \"X\": 0.41245993971824646,\n            \"Y\": 0.8826709389686584\n          }\n        ]\n      },\n      \"Id\": \"4127aec0-4ef0-4649-852a-08d6de2f268e\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"11fbc810-36e4-416f-8678-2b6ec446ca55\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c5f687a5-7358-4121-8a88-125417b12449\",\n            \"d8eb410e-c021-4980-9157-426aa18dc986\",\n            \"ccf82ba2-f6f7-4d5b-9662-e09ef2d946a2\",\n            \"53e71626-9008-4fa6-ae0c-51e09ba2a505\",\n            \"6ef01329-c506-4ec1-97c5-ba1f8bf2891d\",\n            \"3b83f1f2-1678-4576-9947-c604cedaa840\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94373321533203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.0973535031080246,\n          \"Height\": 0.012395123951137066,\n          \"Left\": 0.49281206727027893,\n          \"Top\": 0.8932894468307495\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4928174912929535,\n            \"Y\": 0.8932894468307495\n          },\n          {\n            \"X\": 0.5901655554771423,\n            \"Y\": 0.8934458494186401\n          },\n          {\n            \"X\": 0.5901606678962708,\n            \"Y\": 0.9056845903396606\n          },\n          {\n            \"X\": 0.49281206727027893,\n            \"Y\": 0.905527651309967\n          }\n        ]\n      },\n      \"Id\": \"11fbc810-36e4-416f-8678-2b6ec446ca55\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"3e2a2753-ec6d-4ea3-ba36-27a63d1b0b55\",\n            \"12be31e1-fa6f-4f37-b1be-d774ccccd7df\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95635986328125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2309456318616867,\n          \"Height\": 0.01082973275333643,\n          \"Left\": 0.6944184899330139,\n          \"Top\": 0.5902965068817139\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6944222450256348,\n            \"Y\": 0.5902965068817139\n          },\n          {\n            \"X\": 0.9253641366958618,\n            \"Y\": 0.5906371474266052\n          },\n          {\n            \"X\": 0.9253614544868469,\n            \"Y\": 0.6011261940002441\n          },\n          {\n            \"X\": 0.6944184899330139,\n            \"Y\": 0.6007844805717468\n          }\n        ]\n      },\n      \"Id\": \"76def37a-f142-40d2-bf1c-03e95eb505a6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"08582a2a-cd95-4bbf-9244-10f3a53aa1c8\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b4c8c1ae-9a3f-4541-bb34-f96763ea0a1d\",\n            \"ff81b78b-56df-4a97-bbfd-f182afd817fc\",\n            \"407d7612-670d-4e4c-ba53-d66b2dc6e585\",\n            \"a2ec3405-8fca-4c9c-a005-41b07c14f36c\",\n            \"59d486ed-35c1-4398-bb15-fdbbba94da63\",\n            \"85626070-b9ff-4883-aef3-19d2db26ee86\",\n            \"4059362e-62d2-4554-94ec-ac697e62b9b0\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.21588134765625,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.04075730964541435,\n          \"Height\": 0.009675012901425362,\n          \"Left\": 0.7759180068969727,\n          \"Top\": 0.6052752733230591\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.775921106338501,\n            \"Y\": 0.6052752733230591\n          },\n          {\n            \"X\": 0.8166753649711609,\n            \"Y\": 0.6053356528282166\n          },\n          {\n            \"X\": 0.8166724443435669,\n            \"Y\": 0.6149502992630005\n          },\n          {\n            \"X\": 0.7759180068969727,\n            \"Y\": 0.6148897409439087\n          }\n        ]\n      },\n      \"Id\": \"08582a2a-cd95-4bbf-9244-10f3a53aa1c8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"10586b08-ccef-4d55-9ac1-fa7cfc9350c6\",\n            \"d5f409ca-8e55-4f44-8fc2-c7713974401e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.89141845703125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19119906425476074,\n          \"Height\": 0.009877655655145645,\n          \"Left\": 0.04270995035767555,\n          \"Top\": 0.4093569815158844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04271610081195831,\n            \"Y\": 0.4093569815158844\n          },\n          {\n            \"X\": 0.233909010887146,\n            \"Y\": 0.4096240699291229\n          },\n          {\n            \"X\": 0.2339036613702774,\n            \"Y\": 0.41923463344573975\n          },\n          {\n            \"X\": 0.04270995035767555,\n            \"Y\": 0.41896674036979675\n          }\n        ]\n      },\n      \"Id\": \"98f580cf-1b00-401a-aa31-c7df62150773\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e4802834-7f98-494f-96b9-20d5c2d227d3\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"b18cd12c-7b39-4784-a4f2-44299237c2f3\",\n            \"8550dd8d-9c80-4905-8b17-0d9c3e438aa0\",\n            \"625a9cdc-7ecf-437f-bb37-943942fb28fc\",\n            \"00064e17-1759-42a0-a9ab-ccc4c444882b\",\n            \"a57a2c5b-bfca-4e56-aa0f-429ae948c2d4\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.98762512207031,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08146219700574875,\n          \"Height\": 0.009725076146423817,\n          \"Left\": 0.10604771971702576,\n          \"Top\": 0.4304129183292389\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.10605360567569733,\n            \"Y\": 0.4304129183292389\n          },\n          {\n            \"X\": 0.1875099241733551,\n            \"Y\": 0.4305274486541748\n          },\n          {\n            \"X\": 0.187504380941391,\n            \"Y\": 0.44013798236846924\n          },\n          {\n            \"X\": 0.10604771971702576,\n            \"Y\": 0.4400230944156647\n          }\n        ]\n      },\n      \"Id\": \"e4802834-7f98-494f-96b9-20d5c2d227d3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bc0ef9ee-be22-446e-a3d1-ac137ca1c256\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9189453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10862948000431061,\n          \"Height\": 0.008889144286513329,\n          \"Left\": 0.2768992781639099,\n          \"Top\": 0.40881043672561646\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.27690398693084717,\n            \"Y\": 0.40881043672561646\n          },\n          {\n            \"X\": 0.3855287432670593,\n            \"Y\": 0.4089621603488922\n          },\n          {\n            \"X\": 0.3855244815349579,\n            \"Y\": 0.4176996052265167\n          },\n          {\n            \"X\": 0.2768992781639099,\n            \"Y\": 0.41754746437072754\n          }\n        ]\n      },\n      \"Id\": \"1ece2be6-f51e-4aba-b4e8-fd149d622fb0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f737bc26-a128-49b8-8b54-bceaa175b08f\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e7deff2f-38b2-4050-a422-ab02f31c86c6\",\n            \"a23f6228-bbc9-4122-b690-f2c6e8928933\",\n            \"c56388e4-d0d2-4cf1-9337-72e97e802773\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.99334716796875,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12674392759799957,\n          \"Height\": 0.012411228381097317,\n          \"Left\": 0.3368556499481201,\n          \"Top\": 0.42986372113227844\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.33686190843582153,\n            \"Y\": 0.42986372113227844\n          },\n          {\n            \"X\": 0.4635995924472809,\n            \"Y\": 0.4300418794155121\n          },\n          {\n            \"X\": 0.463593989610672,\n            \"Y\": 0.44227495789527893\n          },\n          {\n            \"X\": 0.3368556499481201,\n            \"Y\": 0.44209611415863037\n          }\n        ]\n      },\n      \"Id\": \"f737bc26-a128-49b8-8b54-bceaa175b08f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"34ee933d-204c-4a0d-b262-40d92090088a\",\n            \"bb4161f9-0001-407f-880a-05999b5490a2\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.94589233398438,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22188349068164825,\n          \"Height\": 0.009937475435435772,\n          \"Left\": 0.6944349408149719,\n          \"Top\": 0.5448496341705322\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6944383978843689,\n            \"Y\": 0.5448496341705322\n          },\n          {\n            \"X\": 0.9163184762001038,\n            \"Y\": 0.5451725125312805\n          },\n          {\n            \"X\": 0.9163159728050232,\n            \"Y\": 0.5547870993614197\n          },\n          {\n            \"X\": 0.6944349408149719,\n            \"Y\": 0.5544632077217102\n          }\n        ]\n      },\n      \"Id\": \"072d5297-33f4-482d-8a31-c2ee1a8a860b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"94c90b3a-4865-4286-b6fc-5d527739e082\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"fa85ad29-f58e-453a-a4f9-618f27bf4872\",\n            \"e2fdd0e9-4600-4dd2-8de2-e3fccac19b75\",\n            \"44051e98-3dc1-447d-8d7a-7220f8370495\",\n            \"e35d82fd-d0da-4b44-8258-403e61d42565\",\n            \"ceb9a29d-5b68-42b4-a23f-0dedc1b9892d\",\n            \"533bad34-9272-4eee-af7e-cfa880c10455\",\n            \"3e4b83d8-420a-46d5-a8da-a8db09fc35d9\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93445587158203,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06566157937049866,\n          \"Height\": 0.007962478324770927,\n          \"Left\": 0.7736670970916748,\n          \"Top\": 0.5659409165382385\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7736696600914001,\n            \"Y\": 0.5659409165382385\n          },\n          {\n            \"X\": 0.8393287062644958,\n            \"Y\": 0.5660370588302612\n          },\n          {\n            \"X\": 0.8393263816833496,\n            \"Y\": 0.5739033818244934\n          },\n          {\n            \"X\": 0.7736670970916748,\n            \"Y\": 0.5738070011138916\n          }\n        ]\n      },\n      \"Id\": \"94c90b3a-4865-4286-b6fc-5d527739e082\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0689d1e7-96bb-4360-a2b8-e51a9358039a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.95634460449219,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13808336853981018,\n          \"Height\": 0.00980127602815628,\n          \"Left\": 0.589248538017273,\n          \"Top\": 0.3480810523033142\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5892524123191833,\n            \"Y\": 0.3480810523033142\n          },\n          {\n            \"X\": 0.7273319363594055,\n            \"Y\": 0.3482702374458313\n          },\n          {\n            \"X\": 0.7273286581039429,\n            \"Y\": 0.3578823208808899\n          },\n          {\n            \"X\": 0.589248538017273,\n            \"Y\": 0.35769256949424744\n          }\n        ]\n      },\n      \"Id\": \"973bbec5-9154-4167-acc5-16160b823bc4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"6c37430f-7f52-486f-ac06-6548619d5027\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"bc5fc0f4-9451-4ead-b496-92e31695155f\",\n            \"73781e78-90ce-4a67-acdb-51a0222dced2\",\n            \"9d8db403-831b-4507-b2b0-0ec2166b2e3f\",\n            \"30cd6cfc-abd2-43ce-b1d2-5233c8fbe48b\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.65318298339844,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.164126455783844,\n          \"Height\": 0.017703400924801826,\n          \"Left\": 0.6299823522567749,\n          \"Top\": 0.36473894119262695\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6299890875816345,\n            \"Y\": 0.36473894119262695\n          },\n          {\n            \"X\": 0.7941088080406189,\n            \"Y\": 0.36496496200561523\n          },\n          {\n            \"X\": 0.7941033840179443,\n            \"Y\": 0.38244232535362244\n          },\n          {\n            \"X\": 0.6299823522567749,\n            \"Y\": 0.38221505284309387\n          }\n        ]\n      },\n      \"Id\": \"6c37430f-7f52-486f-ac06-6548619d5027\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9548a80b-a54c-4ece-bf7c-1a6af98f61a4\",\n            \"9f5f8093-83e8-457f-bb45-92902fbedc7b\",\n            \"30f859f6-438c-4d96-93ac-927e95c15e3a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.86550903320312,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.22412560880184174,\n          \"Height\": 0.009926140308380127,\n          \"Left\": 0.648077666759491,\n          \"Top\": 0.4084550142288208\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6480813026428223,\n            \"Y\": 0.4084550142288208\n          },\n          {\n            \"X\": 0.8722032904624939,\n            \"Y\": 0.4087679386138916\n          },\n          {\n            \"X\": 0.872200608253479,\n            \"Y\": 0.4183811545372009\n          },\n          {\n            \"X\": 0.648077666759491,\n            \"Y\": 0.4180672764778137\n          }\n        ]\n      },\n      \"Id\": \"28a57ea6-2ae4-42aa-9785-ecfe82b947dd\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"ed42f3e7-b328-441a-a46d-25581d86be3d\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0bd44b83-f206-423c-b2ff-9eab68bf6a9b\",\n            \"32fc7bb5-baf6-4be8-ac6e-6bbaa6f6dfaf\",\n            \"d9ff5522-689f-43b0-9c94-cfe6771a8f0c\",\n            \"bd9f2670-949b-4f77-911c-1fbc07ad5cb0\",\n            \"94a51342-5707-4136-a60d-09cec0d68e9d\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.90107727050781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.05320507287979126,\n          \"Height\": 0.012309487909078598,\n          \"Left\": 0.7284322381019592,\n          \"Top\": 0.4286663830280304\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7284364104270935,\n            \"Y\": 0.4286663830280304\n          },\n          {\n            \"X\": 0.7816373109817505,\n            \"Y\": 0.42874112725257874\n          },\n          {\n            \"X\": 0.7816334366798401,\n            \"Y\": 0.4409758746623993\n          },\n          {\n            \"X\": 0.7284322381019592,\n            \"Y\": 0.44090086221694946\n          }\n        ]\n      },\n      \"Id\": \"ed42f3e7-b328-441a-a46d-25581d86be3d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"41bd3cb9-e961-4da7-bc44-84eee2e58f9e\",\n            \"903e2055-9fb3-49c5-81de-12086409f2ab\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.87205505371094,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.13239340484142303,\n          \"Height\": 0.008951869793236256,\n          \"Left\": 0.042412951588630676,\n          \"Top\": 0.8742122650146484\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04241854324936867,\n            \"Y\": 0.8742122650146484\n          },\n          {\n            \"X\": 0.1748063564300537,\n            \"Y\": 0.8744239211082458\n          },\n          {\n            \"X\": 0.1748012751340866,\n            \"Y\": 0.88316410779953\n          },\n          {\n            \"X\": 0.042412951588630676,\n            \"Y\": 0.8829519748687744\n          }\n        ]\n      },\n      \"Id\": \"ae23d1b4-edcd-479d-9aad-2a9e84e72c06\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"19408332-29cd-4d93-936c-04b752cb3b9b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"aa9c1375-1256-4148-aeeb-e429fae14c4a\",\n            \"a5d3a997-4de9-4f15-970e-3e7ded1e4f4c\",\n            \"e7a67881-f334-40be-8383-554c5ed4f22a\",\n            \"94033ba8-a96e-4391-ab9b-c478f8671360\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 91.60037994384766,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1471194177865982,\n          \"Height\": 0.017717575654387474,\n          \"Left\": 0.11481371521949768,\n          \"Top\": 0.8900600671768188\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11482435464859009,\n            \"Y\": 0.8900600671768188\n          },\n          {\n            \"X\": 0.2619331181049347,\n            \"Y\": 0.8902962803840637\n          },\n          {\n            \"X\": 0.261923611164093,\n            \"Y\": 0.9077776074409485\n          },\n          {\n            \"X\": 0.11481371521949768,\n            \"Y\": 0.9075402617454529\n          }\n        ]\n      },\n      \"Id\": \"19408332-29cd-4d93-936c-04b752cb3b9b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"071f4dec-5022-4e7b-bad5-a5fb130452db\",\n            \"d144fdda-4a21-425f-b8f3-9a4ddb851b5d\",\n            \"528d9939-2638-4476-bc31-50c293f418cc\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.93032836914062,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.12330974638462067,\n          \"Height\": 0.009775006212294102,\n          \"Left\": 0.04278767481446266,\n          \"Top\": 0.28793156147003174\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04279382526874542,\n            \"Y\": 0.28793156147003174\n          },\n          {\n            \"X\": 0.16609741747379303,\n            \"Y\": 0.2880972921848297\n          },\n          {\n            \"X\": 0.16609178483486176,\n            \"Y\": 0.2977065443992615\n          },\n          {\n            \"X\": 0.04278767481446266,\n            \"Y\": 0.2975402772426605\n          }\n        ]\n      },\n      \"Id\": \"bf705edb-f771-4654-8787-d2af7e163666\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"cb19e44f-82d4-42e0-9f0c-e18114000ea9\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"0c48f286-51a3-47be-b436-19631be4177c\",\n            \"3820107a-2e8c-4be4-b6b5-c4b62139e125\",\n            \"6b80a76e-7db5-4a71-91a6-cb60714a9d09\",\n            \"65237d8c-49e0-4e94-b71a-4fab201905dd\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 98.6650619506836,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14935213327407837,\n          \"Height\": 0.02815760113298893,\n          \"Left\": 0.12761010229587555,\n          \"Top\": 0.30027535557746887\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1276269555091858,\n            \"Y\": 0.30027535557746887\n          },\n          {\n            \"X\": 0.2769622206687927,\n            \"Y\": 0.30047690868377686\n          },\n          {\n            \"X\": 0.2769472002983093,\n            \"Y\": 0.32843297719955444\n          },\n          {\n            \"X\": 0.12761010229587555,\n            \"Y\": 0.3282296061515808\n          }\n        ]\n      },\n      \"Id\": \"cb19e44f-82d4-42e0-9f0c-e18114000ea9\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8eaf2559-547d-4fb6-90d5-c49f7665503a\",\n            \"7ad2c8d8-d598-48e7-b987-0426eeea9d1a\",\n            \"230a526f-7746-4757-b95e-0731be4d1901\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9476089477539,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21049433946609497,\n          \"Height\": 0.008139426819980145,\n          \"Left\": 0.49085262417793274,\n          \"Top\": 0.21252548694610596\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.4908561408519745,\n            \"Y\": 0.21252548694610596\n          },\n          {\n            \"X\": 0.7013469934463501,\n            \"Y\": 0.2128014862537384\n          },\n          {\n            \"X\": 0.7013441920280457,\n            \"Y\": 0.22066490352153778\n          },\n          {\n            \"X\": 0.49085262417793274,\n            \"Y\": 0.22038817405700684\n          }\n        ]\n      },\n      \"Id\": \"181e80f5-7069-4334-a010-3f28cfd2ca88\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"e3e061ab-a489-4c64-b5df-8b70402759ec\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"88f6b8f1-0d4b-4abe-a5b9-de12b3f86bb7\",\n            \"acce9083-ea25-4989-996a-64edd8f5582d\",\n            \"11c548c9-d59b-4050-b0b0-e43e862eccfe\",\n            \"7f38921c-b0ea-4cde-99dd-23be54006aa3\",\n            \"e33211c8-36ed-4331-a80a-a4ca40bdee58\",\n            \"cf5a6720-4592-4c59-8ed0-21bacb1fcc06\",\n            \"ef53829a-5014-45d4-8bbb-d2232756a66a\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.97529602050781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.2750234007835388,\n          \"Height\": 0.03007100149989128,\n          \"Left\": 0.5089399814605713,\n          \"Top\": 0.231769397854805\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5089529752731323,\n            \"Y\": 0.231769397854805\n          },\n          {\n            \"X\": 0.7839633822441101,\n            \"Y\": 0.23213230073451996\n          },\n          {\n            \"X\": 0.7839540243148804,\n            \"Y\": 0.2618404030799866\n          },\n          {\n            \"X\": 0.5089399814605713,\n            \"Y\": 0.2614739239215851\n          }\n        ]\n      },\n      \"Id\": \"e3e061ab-a489-4c64-b5df-8b70402759ec\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"70ce6cbd-d9de-4b57-b766-004426f1f739\",\n            \"6e994e36-fe0d-4f55-9641-41042d758673\",\n            \"d9719752-e1fa-4185-aa6f-a636c9b53530\",\n            \"23f75aee-2239-4343-91fc-59e3f66b1c59\",\n            \"d2f0e599-e441-4023-baa0-e494302aa844\",\n            \"a6d0fc9c-4df2-4100-a349-37986281f008\",\n            \"4ddddb93-d798-445e-aabf-8823e063e9fd\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.89825439453125,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.21041537821292877,\n          \"Height\": 0.009884973056614399,\n          \"Left\": 0.04396689310669899,\n          \"Top\": 0.21281296014785767\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04397303983569145,\n            \"Y\": 0.21281296014785767\n          },\n          {\n            \"X\": 0.25438228249549866,\n            \"Y\": 0.21308894455432892\n          },\n          {\n            \"X\": 0.25437700748443604,\n            \"Y\": 0.2226979285478592\n          },\n          {\n            \"X\": 0.04396689310669899,\n            \"Y\": 0.2224210649728775\n          }\n        ]\n      },\n      \"Id\": \"2998bd01-7a39-4cfa-b827-a34cbcaac8b4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"f5064323-6b95-4fb9-b83a-2b6e491611ea\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"401879e0-cd0a-48c8-804d-ad9a6f2366de\",\n            \"54418385-32da-49a9-9ad5-512298555916\",\n            \"8381112f-2ca4-4fac-bb8e-92375a11a80b\",\n            \"e743f0b9-64fd-4aca-a8ed-ce08a33a824e\",\n            \"f83bb4be-acae-442a-83a5-d74ac33c1dd8\",\n            \"827b6e20-786f-4df0-bd77-77a4e378f532\",\n            \"5c8e9154-2418-4915-ac03-2b8b3ab0e468\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.85750579833984,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27945154905319214,\n          \"Height\": 0.030071310698986053,\n          \"Left\": 0.07674621045589447,\n          \"Top\": 0.23119907081127167\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.076764777302742,\n            \"Y\": 0.23119907081127167\n          },\n          {\n            \"X\": 0.3561977744102478,\n            \"Y\": 0.23156781494617462\n          },\n          {\n            \"X\": 0.3561828136444092,\n            \"Y\": 0.2612703740596771\n          },\n          {\n            \"X\": 0.07674621045589447,\n            \"Y\": 0.26089802384376526\n          }\n        ]\n      },\n      \"Id\": \"f5064323-6b95-4fb9-b83a-2b6e491611ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"51666927-acdf-46e8-bd15-5c5e687de29d\",\n            \"d26730e9-bc64-41f3-b1a0-6cf86904cbfd\",\n            \"5852d2b3-1bd7-4d7f-90f9-682273b3b5d1\",\n            \"b5f92fb5-da67-4e58-a37e-ed5f4d25cb14\",\n            \"89fd11ca-f496-46c2-8d98-268e1d0bcd7a\",\n            \"aca92416-5289-4293-996e-21647aee9afa\",\n            \"22f98f57-12c8-4eac-b5f5-963452beb986\",\n            \"b37d5d67-185c-494c-b2bb-fa0654bb1ffb\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.96797180175781,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3925977051258087,\n          \"Height\": 0.01014891266822815,\n          \"Left\": 0.04274909198284149,\n          \"Top\": 0.3482058644294739\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04275524616241455,\n            \"Y\": 0.3482058644294739\n          },\n          {\n            \"X\": 0.435346782207489,\n            \"Y\": 0.34874391555786133\n          },\n          {\n            \"X\": 0.43534228205680847,\n            \"Y\": 0.358354777097702\n          },\n          {\n            \"X\": 0.04274909198284149,\n            \"Y\": 0.35781511664390564\n          }\n        ]\n      },\n      \"Id\": \"5775e64f-d2de-486f-bc3a-8e96447c8e8f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"1998a77c-f707-44c9-b5e6-f680714575d2\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"dcf74957-62e4-49e2-816b-a712c05b6b7c\",\n            \"a263c642-45c8-4929-96c2-be70006aa14c\",\n            \"c13d83db-1a9b-4c56-a7b4-ccc918f9e6ea\",\n            \"911e30b6-3840-469c-8413-a8a37c253b1f\",\n            \"8e5a1fd0-037c-4832-8740-fcea20cfb066\",\n            \"79e45cb8-dab0-47ec-b42a-d008f2cfcd6a\",\n            \"ebf8dfef-d807-470d-9936-39224e48135e\",\n            \"a8d85dd3-48f4-4b28-b749-70947bbeb83c\",\n            \"6113a3f0-335e-462d-a437-466f8ebd32ee\",\n            \"8d60018d-9c03-44d9-ac3b-8351bfd5d759\",\n            \"629aebb3-37d9-4f7c-8426-fcb194c58e05\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.9725570678711,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.27720320224761963,\n          \"Height\": 0.030087050050497055,\n          \"Left\": 0.07214093208312988,\n          \"Top\": 0.3596027195453644\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.07215956598520279,\n            \"Y\": 0.3596027195453644\n          },\n          {\n            \"X\": 0.3493441343307495,\n            \"Y\": 0.3599839508533478\n          },\n          {\n            \"X\": 0.3493290841579437,\n            \"Y\": 0.38968977332115173\n          },\n          {\n            \"X\": 0.07214093208312988,\n            \"Y\": 0.3893049359321594\n          }\n        ]\n      },\n      \"Id\": \"1998a77c-f707-44c9-b5e6-f680714575d2\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"af049ec2-d8c0-4ce0-92ba-da7d7be64373\",\n            \"46281634-2c03-4f29-92c6-abbc7d4e42a0\",\n            \"27541814-65f6-4fda-a53b-57e2c648d3cc\",\n            \"56fea8ae-780f-4389-97d7-d4cfe0e9786f\",\n            \"63b9b180-6159-41ae-baf4-ec0db9dc201a\",\n            \"1dca9e80-c1ec-4f06-82bd-b2068c5a416c\",\n            \"b1021a7d-fc95-415b-b192-a9fc1b988587\",\n            \"e92bea10-a7e3-4746-9971-2c129946be06\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 96.73674774169922,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.555641770362854,\n          \"Height\": 0.011333925649523735,\n          \"Left\": 0.04252594709396362,\n          \"Top\": 0.6959371566772461\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04253266006708145,\n            \"Y\": 0.6959371566772461\n          },\n          {\n            \"X\": 0.5981677770614624,\n            \"Y\": 0.6967825293540955\n          },\n          {\n            \"X\": 0.5981636047363281,\n            \"Y\": 0.7072710990905762\n          },\n          {\n            \"X\": 0.04252594709396362,\n            \"Y\": 0.7064231634140015\n          }\n        ]\n      },\n      \"Id\": \"f3cc403a-0b7f-4180-b507-131c516ff555\",\n      \"Relationships\": [\n        {\n          \"Type\": \"VALUE\",\n          \"Ids\": [\n            \"27b59426-904b-4695-a807-d9ff5ababe6b\"\n          ]\n        },\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"972627f1-01af-4a2b-9cc6-03aec66fd75e\",\n            \"c4d2f65c-bf2d-4db2-a039-4d01500f14c9\",\n            \"1c7d0c0b-27cc-4e5d-99c7-d0cb7d98f91d\",\n            \"bdc93f55-df69-40df-99f9-c55294d7ea2a\",\n            \"1e4f4f5a-acb2-47ce-bc85-0a05e92c0abe\",\n            \"8c3dd02a-27e1-4f7f-bc50-84f6fb16f4c9\",\n            \"b440b0be-8157-4957-83b4-5fd982ce3953\",\n            \"c241a502-c9ac-4c33-9f13-844e85e92533\",\n            \"75b97d09-1e99-48e0-90e8-9a6cce152918\",\n            \"2914be51-d6e2-472d-804a-de86a02d1a7a\",\n            \"7459b021-a105-45b6-bdc7-c10deb34506e\",\n            \"c07031ed-3776-4668-bd1a-141d64513e2c\",\n            \"829a45c7-9833-47a6-8543-6606e83c3622\",\n            \"fe0b209c-c9f4-46ca-b6ac-8f5424361bbf\",\n            \"168973fd-8198-434d-bbf1-c1a2ed31dfbf\",\n            \"b3741fbe-a4af-426d-872d-5e689272d085\",\n            \"2b2b8064-5d2d-4179-90a2-f011d66bd6eb\",\n            \"5d973866-f6cd-41d0-986d-1ae0ccb6024e\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"KEY\"\n      ]\n    },\n    {\n      \"BlockType\": \"KEY_VALUE_SET\",\n      \"Confidence\": 99.82398986816406,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10523202270269394,\n          \"Height\": 0.012395553290843964,\n          \"Left\": 0.05835143104195595,\n          \"Top\": 0.716059684753418\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05835917592048645,\n            \"Y\": 0.716059684753418\n          },\n          {\n            \"X\": 0.16358345746994019,\n            \"Y\": 0.7162206768989563\n          },\n          {\n            \"X\": 0.16357627511024475,\n            \"Y\": 0.7284551858901978\n          },\n          {\n            \"X\": 0.05835143104195595,\n            \"Y\": 0.7282936573028564\n          }\n        ]\n      },\n      \"Id\": \"27b59426-904b-4695-a807-d9ff5ababe6b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e1f66751-bbca-4078-a7be-ef22aa884205\",\n            \"bb083684-3afb-4c9b-9b23-26a5ecebde77\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"VALUE\"\n      ]\n    },\n    {\n      \"BlockType\": \"QUERY\",\n      \"Id\": \"e58852f2-f948-48b7-82cb-35927a056d76\",\n      \"Relationships\": [\n        {\n          \"Type\": \"ANSWER\",\n          \"Ids\": [\n            \"fc253814-f84a-42b6-b71d-98458d436eb0\"\n          ]\n        }\n      ],\n      \"Query\": {\n        \"Text\": \"What is the Base pay Year to Date\"\n      }\n    },\n    {\n      \"BlockType\": \"QUERY_RESULT\",\n      \"Confidence\": 98,\n      \"Text\": \"$ 15.00\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06223411485552788,\n          \"Height\": 0.009702707640826702,\n          \"Left\": 0.13877810537815094,\n          \"Top\": 0.5606422424316406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13878384232521057,\n            \"Y\": 0.5606422424316406\n          },\n          {\n            \"X\": 0.20101220905780792,\n            \"Y\": 0.5607332587242126\n          },\n          {\n            \"X\": 0.2010067254304886,\n            \"Y\": 0.5703449845314026\n          },\n          {\n            \"X\": 0.13877810537815094,\n            \"Y\": 0.5702536702156067\n          }\n        ]\n      },\n      \"Id\": \"fc253814-f84a-42b6-b71d-98458d436eb0\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 38.593528747558594,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1546531766653061,\n          \"Height\": 0.02986513450741768,\n          \"Left\": 0.12574085593223572,\n          \"Top\": 0.29981157183647156\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.12575875222682953,\n            \"Y\": 0.29981157183647156\n          },\n          {\n            \"X\": 0.2803940176963806,\n            \"Y\": 0.3000202178955078\n          },\n          {\n            \"X\": 0.280378133058548,\n            \"Y\": 0.32967668771743774\n          },\n          {\n            \"X\": 0.12574085593223572,\n            \"Y\": 0.3294660449028015\n          }\n        ]\n      },\n      \"Id\": \"8eaf2559-547d-4fb6-90d5-c49f7665503a\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 32.119041442871094,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16747666895389557,\n          \"Height\": 0.021438248455524445,\n          \"Left\": 0.6279577016830444,\n          \"Top\": 0.3627719283103943\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6279658675193787,\n            \"Y\": 0.3627719283103943\n          },\n          {\n            \"X\": 0.7954343557357788,\n            \"Y\": 0.3630024492740631\n          },\n          {\n            \"X\": 0.7954277396202087,\n            \"Y\": 0.3842101991176605\n          },\n          {\n            \"X\": 0.6279577016830444,\n            \"Y\": 0.38397812843322754\n          }\n        ]\n      },\n      \"Id\": \"9548a80b-a54c-4ece-bf7c-1a6af98f61a4\"\n    },\n    {\n      \"BlockType\": \"SIGNATURE\",\n      \"Confidence\": 38.468597412109375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15083004534244537,\n          \"Height\": 0.019236255437135696,\n          \"Left\": 0.11393339931964874,\n          \"Top\": 0.8885205388069153\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.11394496262073517,\n            \"Y\": 0.8885205388069153\n          },\n          {\n            \"X\": 0.2647634446620941,\n            \"Y\": 0.8887625932693481\n          },\n          {\n            \"X\": 0.264753133058548,\n            \"Y\": 0.9077568054199219\n          },\n          {\n            \"X\": 0.11393339931964874,\n            \"Y\": 0.907513439655304\n          }\n        ]\n      },\n      \"Id\": \"071f4dec-5022-4e7b-bad5-a5fb130452db\"\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-python/tests/data/tables_with_headers_and_merged_cells.json",
    "content": "    {\n        \"DocumentMetadata\": {\n            \"Pages\": 1\n        },\n        \"Blocks\": [\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 1.0,\n                        \"Height\": 1.0,\n                        \"Left\": 0.0,\n                        \"Top\": 0.0\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 9.33321120033382e-17,\n                            \"Y\": 0.0\n                        },\n                        {\n                            \"X\": 1.0,\n                            \"Y\": 1.6069064689339292e-16\n                        },\n                        {\n                            \"X\": 1.0,\n                            \"Y\": 1.0\n                        },\n                        {\n                            \"X\": 0.0,\n                            \"Y\": 1.0\n                        }\n                    ]\n                },\n                \"Id\": \"decbeef3-6e54-4e4f-a70d-d4a9b0c94125\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"fac8bd81-dcc9-4408-8303-14985a807415\",\n                            \"bc629495-4512-4458-8481-74b033769c33\",\n                            \"03d0c76f-47cc-416b-9be0-437c89b01a2d\",\n                            \"c7d76b04-19ad-41ed-9853-4fce4e9906a4\",\n                            \"14b5e3b3-e9b8-44e2-8ca6-ce4fac96c251\",\n                            \"fa3ba870-ae66-4c5a-9825-caac09c33fc1\",\n                            \"823c1178-f817-44a2-a28a-e491c5e901bd\",\n                            \"60df715c-2310-45ba-9914-3b678210c710\",\n                            \"7c68cacb-8e4f-4ae2-a9c0-55f7b8c80cf8\",\n                            \"16c76afc-02f2-4962-9a7c-c3d4bfa1d377\",\n                            \"93c07cc0-c466-4d98-8135-e181b5d0ac13\",\n                            \"ae2c75c6-80b4-4456-91bf-5b5b68d1142e\",\n                            \"649271e3-29f4-4870-b462-aebd7a468ada\",\n                            \"0fad5c2c-2ac9-49d2-9913-8c88af2c6179\",\n                            \"219ed779-9ab3-499b-a051-2522e1ade928\",\n                            \"76803a53-972b-4fe4-9ba5-fbfb31c4a11b\",\n                            \"df6cfa29-c23b-42a3-b30b-9f35d22be177\",\n                            \"a42c1a73-34f5-4f9f-81d0-e567a20baafb\",\n                            \"24cd3899-aa5f-4723-93c6-337e8118e35a\",\n                            \"f079ee84-82dd-4e70-aab1-2d5befcfa9ed\",\n                            \"75c229bb-5fab-4fd7-b7cf-dd79105b8601\",\n                            \"7c508b7f-b1ea-4c9c-803d-f148dca4a529\",\n                            \"d91ef444-e951-4559-a6cd-5b8742c960e5\",\n                            \"5c52974d-069d-4cfd-bc7c-ebd95d2ffc53\",\n                            \"ebdcddfa-f444-43dd-823b-fa138728697e\",\n                            \"7c3a84c1-26ba-41a7-be3e-3dbca4bba72b\",\n                            \"c2b35256-de98-4da3-98ee-a39d0e843fdf\",\n                            \"94a5cc13-5ae8-4ffc-a420-f12004741159\",\n                            \"fe3ce93d-c763-4328-b05a-922dada43f1e\",\n                            \"70d1ab51-416d-4484-83b1-93d0d19de4cc\",\n                            \"c09bf363-041c-4877-adc1-d438c4f8015c\",\n                            \"99caa716-d347-4556-b1b6-151970ed8021\",\n                            \"ea38b883-b8fe-4d42-90d6-1c3631e82ac0\",\n                            \"4d19225b-4a11-4e1e-bcb6-fd94d2eecac1\",\n                            \"34a0dfcd-c12a-4b5b-ae3e-a17218fa60ad\",\n                            \"7c7c1718-b8d3-4a19-b585-06ef9bf98383\",\n                            \"b36c44f8-8b97-4131-8932-e37c01c860eb\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.90126037597656,\n                \"Text\": \"Employment Application\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.3255040645599365,\n                        \"Height\": 0.03890947252511978,\n                        \"Left\": 0.28054946660995483,\n                        \"Top\": 0.16848231852054596\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.20739178359508514\n                        },\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.20739178359508514\n                        }\n                    ]\n                },\n                \"Id\": \"fac8bd81-dcc9-4408-8303-14985a807415\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"733ec5a5-f7ef-40f7-96e6-6f1daa6bc46f\",\n                            \"d83f20f9-7f4a-4b49-bb2d-c56812aa2838\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.57406616210938,\n                \"Text\": \"Applicant Information\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.22908996045589447,\n                        \"Height\": 0.031159373000264168,\n                        \"Left\": 0.07345423102378845,\n                        \"Top\": 0.24377863109111786\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.27493801712989807\n                        },\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.27493801712989807\n                        }\n                    ]\n                },\n                \"Id\": \"bc629495-4512-4458-8481-74b033769c33\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"e1c83283-4634-40eb-b13e-1b776a2643ab\",\n                            \"d5bb5df2-68b4-41fa-ae56-bd8f076e7dff\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.69449615478516,\n                \"Text\": \"Full Name: Jane Doe\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.18137097358703613,\n                        \"Height\": 0.022487515583634377,\n                        \"Left\": 0.07476355135440826,\n                        \"Top\": 0.3128688931465149\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.3353564143180847\n                        },\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.3353564143180847\n                        }\n                    ]\n                },\n                \"Id\": \"03d0c76f-47cc-416b-9be0-437c89b01a2d\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f31fb6b4-e0a9-4b1c-a71a-f67b0cb1dcd7\",\n                            \"0d964903-bb86-4d45-9550-a5342c1855db\",\n                            \"affaa5dd-2405-4be9-8bbd-44d57f22f344\",\n                            \"8eda6e64-18d4-4c78-9104-72f1add33829\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.44634246826172,\n                \"Text\": \"Phone Number: 555-0100\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.22759996354579926,\n                        \"Height\": 0.025317534804344177,\n                        \"Left\": 0.07484839111566544,\n                        \"Top\": 0.37515419721603394\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.4004717469215393\n                        },\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.4004717469215393\n                        }\n                    ]\n                },\n                \"Id\": \"c7d76b04-19ad-41ed-9853-4fce4e9906a4\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"82b76aa3-478b-42b0-925f-930ac3711849\",\n                            \"2cb828d3-ed24-47f5-a694-60e1d7f40871\",\n                            \"2cf83f47-0a22-4dac-8164-0ea5b5ccdc31\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.79651641845703,\n                \"Text\": \"Home Address: 123 Any Street, Any Town, USA\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.42288628220558167,\n                        \"Height\": 0.026836976408958435,\n                        \"Left\": 0.07488469034433365,\n                        \"Top\": 0.43991395831108093\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.4667509198188782\n                        },\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.4667509198188782\n                        }\n                    ]\n                },\n                \"Id\": \"14b5e3b3-e9b8-44e2-8ca6-ce4fac96c251\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"442bf95b-2ece-4f00-b9e3-bab4ac6f170f\",\n                            \"ad71e50f-065f-4043-b445-43a4ed6c82b6\",\n                            \"4cca9a72-2a52-43f2-bd64-fc403500675e\",\n                            \"81d3a376-99ed-4158-a2e6-c6819567e982\",\n                            \"702852b6-7de8-41bf-affd-2bd596b66fbd\",\n                            \"95f45a89-ce87-422c-82a0-656142087d5b\",\n                            \"a76984bd-e31d-4460-9480-33ba602c7364\",\n                            \"088d8b49-9886-404c-82f3-4eb69442c0ac\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.8390884399414,\n                \"Text\": \"Mailing Address: same as home address\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.3576335608959198,\n                        \"Height\": 0.027664214372634888,\n                        \"Left\": 0.07483324408531189,\n                        \"Top\": 0.5025233626365662\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5301876068115234\n                        },\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5301876068115234\n                        }\n                    ]\n                },\n                \"Id\": \"fa3ba870-ae66-4c5a-9825-caac09c33fc1\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"881aad89-0434-4f84-b2a6-81d2ad73f5cb\",\n                            \"c9903389-654c-469e-afff-70a4c0b2bced\",\n                            \"77b2f1ba-fa80-4b6e-aa29-9400c92f7f90\",\n                            \"9136b648-3bee-453c-8528-e6405ed33ff1\",\n                            \"b4ec78a5-ccbc-4689-827e-5192820dbf88\",\n                            \"198c3015-08ab-4e49-a41c-a609ff931667\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.78767395019531,\n                \"Text\": \"Previous Employment History\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.3052908480167389,\n                        \"Height\": 0.031595394015312195,\n                        \"Left\": 0.3072309195995331,\n                        \"Top\": 0.598618745803833\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.6302141547203064\n                        },\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.6302141547203064\n                        }\n                    ]\n                },\n                \"Id\": \"823c1178-f817-44a2-a28a-e491c5e901bd\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"ff736d16-6e5f-4ac9-bfa8-0d56afaffe7c\",\n                            \"09b0ffa1-f29d-4bd3-a942-1f4207b27acc\",\n                            \"6bcf3756-8443-437e-8bbb-f5f158d309f5\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.58184814453125,\n                \"Text\": \"Start Date\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09591718018054962,\n                        \"Height\": 0.022017227485775948,\n                        \"Left\": 0.07416463643312454,\n                        \"Top\": 0.6557980179786682\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6778151988983154\n                        },\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6778151988983154\n                        }\n                    ]\n                },\n                \"Id\": \"60df715c-2310-45ba-9914-3b678210c710\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"4a296b82-8c27-4d47-8b4f-4e62657a2a40\",\n                            \"f6383c7f-8b84-497e-86e6-70f7c0b2e620\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.62313079833984,\n                \"Text\": \"End Date\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08422452956438065,\n                        \"Height\": 0.022735772654414177,\n                        \"Left\": 0.19170773029327393,\n                        \"Top\": 0.6550583243370056\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6777940988540649\n                        },\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6777940988540649\n                        }\n                    ]\n                },\n                \"Id\": \"7c68cacb-8e4f-4ae2-a9c0-55f7b8c80cf8\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"04ccd86a-53eb-46a1-9191-978c1b653770\",\n                            \"123d7924-3a9d-4670-9b1d-f55c00ed4d21\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.89241027832031,\n                \"Text\": \"Employer Name\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.15050503611564636,\n                        \"Height\": 0.027742065489292145,\n                        \"Left\": 0.3053176999092102,\n                        \"Top\": 0.6550468802452087\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6827889680862427\n                        },\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6827889680862427\n                        }\n                    ]\n                },\n                \"Id\": \"16c76afc-02f2-4962-9a7c-c3d4bfa1d377\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1dc12797-d7f8-4e32-b2c7-bab7f4bd000d\",\n                            \"cd4c3bb6-cbfb-4afc-90ba-51e91d6a3c9f\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.49966430664062,\n                \"Text\": \"Position Held\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12431544065475464,\n                        \"Height\": 0.02317001484334469,\n                        \"Left\": 0.49208903312683105,\n                        \"Top\": 0.6549334526062012\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6781034469604492\n                        },\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6781034469604492\n                        }\n                    ]\n                },\n                \"Id\": \"93c07cc0-c466-4d98-8135-e181b5d0ac13\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"6762e2f4-6609-482b-9335-16168ad0855c\",\n                            \"dffe0575-1ec1-4ca8-b6fd-9e292fd600e9\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.94905090332031,\n                \"Text\": \"Reason for leaving\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1734311282634735,\n                        \"Height\": 0.027783755213022232,\n                        \"Left\": 0.6555624604225159,\n                        \"Top\": 0.6545379757881165\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6823217272758484\n                        },\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6823217272758484\n                        }\n                    ]\n                },\n                \"Id\": \"ae2c75c6-80b4-4456-91bf-5b5b68d1142e\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"e0f942a9-f30a-4d02-b459-3f8fed14a15e\",\n                            \"28f7e081-9e60-41ad-b69b-f40339251e50\",\n                            \"dd9d9aa8-471d-4bf6-9481-3b518aec0b9a\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.60453796386719,\n                \"Text\": \"1/15/2009\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09682866185903549,\n                        \"Height\": 0.026843825355172157,\n                        \"Left\": 0.07532798498868942,\n                        \"Top\": 0.7083258628845215\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7351697087287903\n                        },\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7351697087287903\n                        }\n                    ]\n                },\n                \"Id\": \"649271e3-29f4-4870-b462-aebd7a468ada\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5ee275c3-65d3-415f-bf44-0796deab2305\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.56900024414062,\n                \"Text\": \"6/30/2011\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09772055596113205,\n                        \"Height\": 0.026978127658367157,\n                        \"Left\": 0.19010485708713531,\n                        \"Top\": 0.7083016633987427\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7352797389030457\n                        },\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7352797389030457\n                        }\n                    ]\n                },\n                \"Id\": \"0fad5c2c-2ac9-49d2-9913-8c88af2c6179\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"a55c5011-820f-4354-b86f-32f75e9352c8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.71903228759766,\n                \"Text\": \"Any Company\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12857750058174133,\n                        \"Height\": 0.026797549799084663,\n                        \"Left\": 0.30455324053764343,\n                        \"Top\": 0.7101057171821594\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7369032502174377\n                        },\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7369032502174377\n                        }\n                    ]\n                },\n                \"Id\": \"219ed779-9ab3-499b-a051-2522e1ade928\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"7936e6f3-787b-4656-a0cd-e7a2384732cb\",\n                            \"d397d4bb-98f2-4bfd-8ffc-ee8cb0a204b5\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.40178680419922,\n                \"Text\": \"Assistant Baker\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.14129234850406647,\n                        \"Height\": 0.02259770780801773,\n                        \"Left\": 0.491060733795166,\n                        \"Top\": 0.709382951259613\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.7319806218147278\n                        },\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.7319806218147278\n                        }\n                    ]\n                },\n                \"Id\": \"76803a53-972b-4fe4-9ba5-fbfb31c4a11b\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"b46f4e40-74a2-4214-88fe-ca83c340d648\",\n                            \"abe4c7c7-a770-4d88-95ef-533682a846e8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.95004272460938,\n                \"Text\": \"Family relocated\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.15156562626361847,\n                        \"Height\": 0.027614763006567955,\n                        \"Left\": 0.6555473208427429,\n                        \"Top\": 0.7087563872337341\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7363711595535278\n                        },\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7363711595535278\n                        }\n                    ]\n                },\n                \"Id\": \"df6cfa29-c23b-42a3-b30b-9f35d22be177\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"b9bd58a6-9527-4ab0-ad20-49a7e879a6cd\",\n                            \"a1b5a265-1af2-497b-bd9a-880c5bfd7970\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.79296875,\n                \"Text\": \"7/1/2011\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08606299757957458,\n                        \"Height\": 0.026600508019328117,\n                        \"Left\": 0.07446355372667313,\n                        \"Top\": 0.7624131441116333\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7890136241912842\n                        },\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7890136241912842\n                        }\n                    ]\n                },\n                \"Id\": \"a42c1a73-34f5-4f9f-81d0-e567a20baafb\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5e193cc8-e6ec-4b55-8fc4-4e538b30ffb9\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.67514038085938,\n                \"Text\": \"8/10/2013\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09801376610994339,\n                        \"Height\": 0.02662261761724949,\n                        \"Left\": 0.1903243064880371,\n                        \"Top\": 0.7625806331634521\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7892032861709595\n                        },\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7892032861709595\n                        }\n                    ]\n                },\n                \"Id\": \"24cd3899-aa5f-4723-93c6-337e8118e35a\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"19492565-9434-47c4-9886-10e7a4fee482\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.54069519042969,\n                \"Text\": \"Best Corp.\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09383980184793472,\n                        \"Height\": 0.026751743629574776,\n                        \"Left\": 0.3057495653629303,\n                        \"Top\": 0.7636430859565735\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7903947830200195\n                        },\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7903947830200195\n                        }\n                    ]\n                },\n                \"Id\": \"f079ee84-82dd-4e70-aab1-2d5befcfa9ed\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5d211e1b-2722-4587-8537-e26b72c5b273\",\n                            \"05a0e9b0-8e6e-4820-a068-ed05b3f5fd94\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.607177734375,\n                \"Text\": \"Baker\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.052544187754392624,\n                        \"Height\": 0.02315184660255909,\n                        \"Left\": 0.4920831322669983,\n                        \"Top\": 0.7629870772361755\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7861389517784119\n                        },\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7861389517784119\n                        }\n                    ]\n                },\n                \"Id\": \"75c229bb-5fab-4fd7-b7cf-dd79105b8601\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"28f05103-0b94-46cb-a134-cd00ed8b9419\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.95084381103516,\n                \"Text\": \"Better opportunity\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.17288310825824738,\n                        \"Height\": 0.026211483404040337,\n                        \"Left\": 0.6555969715118408,\n                        \"Top\": 0.7639016509056091\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7901131510734558\n                        },\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7901131510734558\n                        }\n                    ]\n                },\n                \"Id\": \"7c508b7f-b1ea-4c9c-803d-f148dca4a529\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"13a132c6-b6cf-43eb-88bf-9ed9d6d93b7d\",\n                            \"1da7381e-822d-4382-8b19-58fb7f0f7d5e\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.74268341064453,\n                \"Text\": \"8/15/2013\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09693203121423721,\n                        \"Height\": 0.02708902582526207,\n                        \"Left\": 0.07475598156452179,\n                        \"Top\": 0.8139497637748718\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8410388231277466\n                        },\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8410388231277466\n                        }\n                    ]\n                },\n                \"Id\": \"d91ef444-e951-4559-a6cd-5b8742c960e5\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"3904f0be-5bf2-4cb0-b0e2-0edf0e9af3a7\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.9533462524414,\n                \"Text\": \"present\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07096851617097855,\n                        \"Height\": 0.024416884407401085,\n                        \"Left\": 0.19085319340229034,\n                        \"Top\": 0.8176923394203186\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.842109203338623\n                        },\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.842109203338623\n                        }\n                    ]\n                },\n                \"Id\": \"5c52974d-069d-4cfd-bc7c-ebd95d2ffc53\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"2c6f4435-82be-491a-a1db-0c5450975a18\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.48316192626953,\n                \"Text\": \"Example Corp.\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1315254122018814,\n                        \"Height\": 0.027120307087898254,\n                        \"Left\": 0.3059176802635193,\n                        \"Top\": 0.8153413534164429\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8424617052078247\n                        },\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8424617052078247\n                        }\n                    ]\n                },\n                \"Id\": \"ebdcddfa-f444-43dd-823b-fa138728697e\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"ce92f537-1526-4d8d-a799-1a0464504cab\",\n                            \"2815837d-6f26-4d0c-9f1d-820226d86aa8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.70124816894531,\n                \"Text\": \"Head Baker\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1057649627327919,\n                        \"Height\": 0.022487984970211983,\n                        \"Left\": 0.4926374554634094,\n                        \"Top\": 0.8152825832366943\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8377705812454224\n                        },\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.8377705812454224\n                        }\n                    ]\n                },\n                \"Id\": \"7c3a84c1-26ba-41a7-be3e-3dbca4bba72b\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"7c7f63cc-d350-4057-85cf-0604682166c1\",\n                            \"a2d7f699-7160-4ad2-9c12-0fdc18e18ed8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.43244171142578,\n                \"Text\": \"N/A, current\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1153697520494461,\n                        \"Height\": 0.026958370581269264,\n                        \"Left\": 0.6552858352661133,\n                        \"Top\": 0.8146923184394836\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8416507244110107\n                        },\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8416507244110107\n                        }\n                    ]\n                },\n                \"Id\": \"c2b35256-de98-4da3-98ee-a39d0e843fdf\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f8b11632-686a-4b5f-9517-f0613690965e\",\n                            \"6eedc52f-c50e-444f-99aa-0457cdc92132\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.95295715332031,\n                \"Text\": \"employer\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0887165293097496,\n                        \"Height\": 0.027792751789093018,\n                        \"Left\": 0.6545867919921875,\n                        \"Top\": 0.8517507314682007\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8795434832572937\n                        },\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8795434832572937\n                        }\n                    ]\n                },\n                \"Id\": \"94a5cc13-5ae8-4ffc-a420-f12004741159\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"0d25c2a7-601b-48b4-81e9-e3fcba3ec805\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.89954376220703,\n                \"Text\": \"Employment\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16838328540325165,\n                        \"Height\": 0.03837485611438751,\n                        \"Left\": 0.28054946660995483,\n                        \"Top\": 0.1688857227563858\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.1688857227563858\n                        },\n                        {\n                            \"X\": 0.4489327669143677,\n                            \"Y\": 0.1688857227563858\n                        },\n                        {\n                            \"X\": 0.4489327669143677,\n                            \"Y\": 0.20726057887077332\n                        },\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.20726057887077332\n                        }\n                    ]\n                },\n                \"Id\": \"733ec5a5-f7ef-40f7-96e6-6f1daa6bc46f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.9029769897461,\n                \"Text\": \"Application\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1501336693763733,\n                        \"Height\": 0.03890947252511978,\n                        \"Left\": 0.4559198319911957,\n                        \"Top\": 0.16848231852054596\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4559198319911957,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.20739178359508514\n                        },\n                        {\n                            \"X\": 0.4559198319911957,\n                            \"Y\": 0.20739178359508514\n                        }\n                    ]\n                },\n                \"Id\": \"d83f20f9-7f4a-4b49-bb2d-c56812aa2838\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.81241607666016,\n                \"Text\": \"Applicant\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.10103903710842133,\n                        \"Height\": 0.031159373000264168,\n                        \"Left\": 0.07345423102378845,\n                        \"Top\": 0.24377863109111786\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.17449326813220978,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.17449326813220978,\n                            \"Y\": 0.27493801712989807\n                        },\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.27493801712989807\n                        }\n                    ]\n                },\n                \"Id\": \"e1c83283-4634-40eb-b13e-1b776a2643ab\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.33570861816406,\n                \"Text\": \"Information\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12425553798675537,\n                        \"Height\": 0.025857385247945786,\n                        \"Left\": 0.17828865349292755,\n                        \"Top\": 0.24393458664417267\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.17828865349292755,\n                            \"Y\": 0.24393458664417267\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.24393458664417267\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.26979196071624756\n                        },\n                        {\n                            \"X\": 0.17828865349292755,\n                            \"Y\": 0.26979196071624756\n                        }\n                    ]\n                },\n                \"Id\": \"d5bb5df2-68b4-41fa-ae56-bd8f076e7dff\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.83560180664062,\n                \"Text\": \"Full\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03129151836037636,\n                        \"Height\": 0.02196977473795414,\n                        \"Left\": 0.07476355135440826,\n                        \"Top\": 0.31310969591140747\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.31310969591140747\n                        },\n                        {\n                            \"X\": 0.10605507344007492,\n                            \"Y\": 0.31310969591140747\n                        },\n                        {\n                            \"X\": 0.10605507344007492,\n                            \"Y\": 0.33507949113845825\n                        },\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.33507949113845825\n                        }\n                    ]\n                },\n                \"Id\": \"f31fb6b4-e0a9-4b1c-a71a-f67b0cb1dcd7\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.53668212890625,\n                \"Text\": \"Name:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.057341206818819046,\n                        \"Height\": 0.02142651565372944,\n                        \"Left\": 0.10984015464782715,\n                        \"Top\": 0.31392988562583923\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.10984015464782715,\n                            \"Y\": 0.31392988562583923\n                        },\n                        {\n                            \"X\": 0.1671813577413559,\n                            \"Y\": 0.31392988562583923\n                        },\n                        {\n                            \"X\": 0.1671813577413559,\n                            \"Y\": 0.3353564143180847\n                        },\n                        {\n                            \"X\": 0.10984015464782715,\n                            \"Y\": 0.3353564143180847\n                        }\n                    ]\n                },\n                \"Id\": \"0d964903-bb86-4d45-9550-a5342c1855db\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.52113342285156,\n                \"Text\": \"Jane\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04195956513285637,\n                        \"Height\": 0.02230699732899666,\n                        \"Left\": 0.17184381186962128,\n                        \"Top\": 0.3128688931465149\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.17184381186962128,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.21380338072776794,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.21380338072776794,\n                            \"Y\": 0.33517587184906006\n                        },\n                        {\n                            \"X\": 0.17184381186962128,\n                            \"Y\": 0.33517587184906006\n                        }\n                    ]\n                },\n                \"Id\": \"affaa5dd-2405-4be9-8bbd-44d57f22f344\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.88456726074219,\n                \"Text\": \"Doe\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.037064023315906525,\n                        \"Height\": 0.021904800087213516,\n                        \"Left\": 0.21907050907611847,\n                        \"Top\": 0.31317970156669617\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21907050907611847,\n                            \"Y\": 0.31317970156669617\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.31317970156669617\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.3350844979286194\n                        },\n                        {\n                            \"X\": 0.21907050907611847,\n                            \"Y\": 0.3350844979286194\n                        }\n                    ]\n                },\n                \"Id\": \"8eda6e64-18d4-4c78-9104-72f1add33829\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.3232650756836,\n                \"Text\": \"Phone\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05477150157094002,\n                        \"Height\": 0.021995294839143753,\n                        \"Left\": 0.07484839111566544,\n                        \"Top\": 0.3768545985221863\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.3768545985221863\n                        },\n                        {\n                            \"X\": 0.12961989641189575,\n                            \"Y\": 0.3768545985221863\n                        },\n                        {\n                            \"X\": 0.12961989641189575,\n                            \"Y\": 0.3988499045372009\n                        },\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.3988499045372009\n                        }\n                    ]\n                },\n                \"Id\": \"82b76aa3-478b-42b0-925f-930ac3711849\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.78343200683594,\n                \"Text\": \"Number:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07595471292734146,\n                        \"Height\": 0.021886629983782768,\n                        \"Left\": 0.13361184298992157,\n                        \"Top\": 0.3769722878932953\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.13361184298992157,\n                            \"Y\": 0.3769722878932953\n                        },\n                        {\n                            \"X\": 0.20956656336784363,\n                            \"Y\": 0.3769722878932953\n                        },\n                        {\n                            \"X\": 0.20956656336784363,\n                            \"Y\": 0.3988589346408844\n                        },\n                        {\n                            \"X\": 0.13361184298992157,\n                            \"Y\": 0.3988589346408844\n                        }\n                    ]\n                },\n                \"Id\": \"2cb828d3-ed24-47f5-a694-60e1d7f40871\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.23233032226562,\n                \"Text\": \"555-0100\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0870467945933342,\n                        \"Height\": 0.025317534804344177,\n                        \"Left\": 0.2154015600681305,\n                        \"Top\": 0.37515419721603394\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2154015600681305,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.4004717469215393\n                        },\n                        {\n                            \"X\": 0.2154015600681305,\n                            \"Y\": 0.4004717469215393\n                        }\n                    ]\n                },\n                \"Id\": \"2cf83f47-0a22-4dac-8164-0ea5b5ccdc31\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.57723999023438,\n                \"Text\": \"Home\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05140352249145508,\n                        \"Height\": 0.020814811810851097,\n                        \"Left\": 0.07488469034433365,\n                        \"Top\": 0.4414433538913727\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.4414433538913727\n                        },\n                        {\n                            \"X\": 0.12628822028636932,\n                            \"Y\": 0.4414433538913727\n                        },\n                        {\n                            \"X\": 0.12628822028636932,\n                            \"Y\": 0.46225816011428833\n                        },\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.46225816011428833\n                        }\n                    ]\n                },\n                \"Id\": \"442bf95b-2ece-4f00-b9e3-bab4ac6f170f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.63672637939453,\n                \"Text\": \"Address:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07557927072048187,\n                        \"Height\": 0.021476319059729576,\n                        \"Left\": 0.12994901835918427,\n                        \"Top\": 0.44067901372909546\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.12994901835918427,\n                            \"Y\": 0.44067901372909546\n                        },\n                        {\n                            \"X\": 0.20552828907966614,\n                            \"Y\": 0.44067901372909546\n                        },\n                        {\n                            \"X\": 0.20552828907966614,\n                            \"Y\": 0.4621553122997284\n                        },\n                        {\n                            \"X\": 0.12994901835918427,\n                            \"Y\": 0.4621553122997284\n                        }\n                    ]\n                },\n                \"Id\": \"ad71e50f-065f-4043-b445-43a4ed6c82b6\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.86543273925781,\n                \"Text\": \"123\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03301164135336876,\n                        \"Height\": 0.021568577736616135,\n                        \"Left\": 0.21101944148540497,\n                        \"Top\": 0.43997859954833984\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21101944148540497,\n                            \"Y\": 0.43997859954833984\n                        },\n                        {\n                            \"X\": 0.24403108656406403,\n                            \"Y\": 0.43997859954833984\n                        },\n                        {\n                            \"X\": 0.24403108656406403,\n                            \"Y\": 0.4615471661090851\n                        },\n                        {\n                            \"X\": 0.21101944148540497,\n                            \"Y\": 0.4615471661090851\n                        }\n                    ]\n                },\n                \"Id\": \"4cca9a72-2a52-43f2-bd64-fc403500675e\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.89830780029297,\n                \"Text\": \"Any\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03665609285235405,\n                        \"Height\": 0.026099350303411484,\n                        \"Left\": 0.24908901751041412,\n                        \"Top\": 0.44051048159599304\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.24908901751041412,\n                            \"Y\": 0.44051048159599304\n                        },\n                        {\n                            \"X\": 0.28574511408805847,\n                            \"Y\": 0.44051048159599304\n                        },\n                        {\n                            \"X\": 0.28574511408805847,\n                            \"Y\": 0.4666098356246948\n                        },\n                        {\n                            \"X\": 0.24908901751041412,\n                            \"Y\": 0.4666098356246948\n                        }\n                    ]\n                },\n                \"Id\": \"81d3a376-99ed-4158-a2e6-c6819567e982\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.74813079833984,\n                \"Text\": \"Street,\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06156117096543312,\n                        \"Height\": 0.025534451007843018,\n                        \"Left\": 0.28976327180862427,\n                        \"Top\": 0.4407695531845093\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.28976327180862427,\n                            \"Y\": 0.4407695531845093\n                        },\n                        {\n                            \"X\": 0.3513244390487671,\n                            \"Y\": 0.4407695531845093\n                        },\n                        {\n                            \"X\": 0.3513244390487671,\n                            \"Y\": 0.4663040041923523\n                        },\n                        {\n                            \"X\": 0.28976327180862427,\n                            \"Y\": 0.4663040041923523\n                        }\n                    ]\n                },\n                \"Id\": \"702852b6-7de8-41bf-affd-2bd596b66fbd\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.88127136230469,\n                \"Text\": \"Any\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03632398322224617,\n                        \"Height\": 0.026266932487487793,\n                        \"Left\": 0.35636916756629944,\n                        \"Top\": 0.4404839873313904\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.35636916756629944,\n                            \"Y\": 0.4404839873313904\n                        },\n                        {\n                            \"X\": 0.3926931619644165,\n                            \"Y\": 0.4404839873313904\n                        },\n                        {\n                            \"X\": 0.3926931619644165,\n                            \"Y\": 0.4667509198188782\n                        },\n                        {\n                            \"X\": 0.35636916756629944,\n                            \"Y\": 0.4667509198188782\n                        }\n                    ]\n                },\n                \"Id\": \"95f45a89-ce87-422c-82a0-656142087d5b\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.94439697265625,\n                \"Text\": \"Town,\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05762650817632675,\n                        \"Height\": 0.02581622451543808,\n                        \"Left\": 0.3966578543186188,\n                        \"Top\": 0.4405229389667511\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3966578543186188,\n                            \"Y\": 0.4405229389667511\n                        },\n                        {\n                            \"X\": 0.45428434014320374,\n                            \"Y\": 0.4405229389667511\n                        },\n                        {\n                            \"X\": 0.45428434014320374,\n                            \"Y\": 0.4663391709327698\n                        },\n                        {\n                            \"X\": 0.3966578543186188,\n                            \"Y\": 0.4663391709327698\n                        }\n                    ]\n                },\n                \"Id\": \"a76984bd-e31d-4460-9480-33ba602c7364\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.82061767578125,\n                \"Text\": \"USA\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03830086067318916,\n                        \"Height\": 0.0220662672072649,\n                        \"Left\": 0.45947009325027466,\n                        \"Top\": 0.43991395831108093\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.45947009325027466,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.4619802236557007\n                        },\n                        {\n                            \"X\": 0.45947009325027466,\n                            \"Y\": 0.4619802236557007\n                        }\n                    ]\n                },\n                \"Id\": \"088d8b49-9886-404c-82f3-4eb69442c0ac\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.86315155029297,\n                \"Text\": \"Mailing\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06527712196111679,\n                        \"Height\": 0.02558031678199768,\n                        \"Left\": 0.07483324408531189,\n                        \"Top\": 0.5046072602272034\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5046072602272034\n                        },\n                        {\n                            \"X\": 0.14011037349700928,\n                            \"Y\": 0.5046072602272034\n                        },\n                        {\n                            \"X\": 0.14011037349700928,\n                            \"Y\": 0.5301876068115234\n                        },\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5301876068115234\n                        }\n                    ]\n                },\n                \"Id\": \"881aad89-0434-4f84-b2a6-81d2ad73f5cb\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.5790023803711,\n                \"Text\": \"Address:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0757967010140419,\n                        \"Height\": 0.022036630660295486,\n                        \"Left\": 0.1424836367368698,\n                        \"Top\": 0.5040034651756287\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1424836367368698,\n                            \"Y\": 0.5040034651756287\n                        },\n                        {\n                            \"X\": 0.2182803452014923,\n                            \"Y\": 0.5040034651756287\n                        },\n                        {\n                            \"X\": 0.2182803452014923,\n                            \"Y\": 0.5260400772094727\n                        },\n                        {\n                            \"X\": 0.1424836367368698,\n                            \"Y\": 0.5260400772094727\n                        }\n                    ]\n                },\n                \"Id\": \"c9903389-654c-469e-afff-70a4c0b2bced\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95246887207031,\n                \"Text\": \"same\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04880683869123459,\n                        \"Height\": 0.017622461542487144,\n                        \"Left\": 0.22315485775470734,\n                        \"Top\": 0.5080132484436035\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.22315485775470734,\n                            \"Y\": 0.5080132484436035\n                        },\n                        {\n                            \"X\": 0.27196168899536133,\n                            \"Y\": 0.5080132484436035\n                        },\n                        {\n                            \"X\": 0.27196168899536133,\n                            \"Y\": 0.5256357192993164\n                        },\n                        {\n                            \"X\": 0.22315485775470734,\n                            \"Y\": 0.5256357192993164\n                        }\n                    ]\n                },\n                \"Id\": \"77b2f1ba-fa80-4b6e-aa29-9400c92f7f90\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.71688079833984,\n                \"Text\": \"as\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.019262373447418213,\n                        \"Height\": 0.01676173508167267,\n                        \"Left\": 0.27775469422340393,\n                        \"Top\": 0.5088306069374084\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.27775469422340393,\n                            \"Y\": 0.5088306069374084\n                        },\n                        {\n                            \"X\": 0.29701706767082214,\n                            \"Y\": 0.5088306069374084\n                        },\n                        {\n                            \"X\": 0.29701706767082214,\n                            \"Y\": 0.5255923867225647\n                        },\n                        {\n                            \"X\": 0.27775469422340393,\n                            \"Y\": 0.5255923867225647\n                        }\n                    ]\n                },\n                \"Id\": \"9136b648-3bee-453c-8528-e6405ed33ff1\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96449279785156,\n                \"Text\": \"home\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05231631547212601,\n                        \"Height\": 0.022475402802228928,\n                        \"Left\": 0.30285748839378357,\n                        \"Top\": 0.5028979778289795\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.30285748839378357,\n                            \"Y\": 0.5028979778289795\n                        },\n                        {\n                            \"X\": 0.35517382621765137,\n                            \"Y\": 0.5028979778289795\n                        },\n                        {\n                            \"X\": 0.35517382621765137,\n                            \"Y\": 0.5253733992576599\n                        },\n                        {\n                            \"X\": 0.30285748839378357,\n                            \"Y\": 0.5253733992576599\n                        }\n                    ]\n                },\n                \"Id\": \"b4ec78a5-ccbc-4689-827e-5192820dbf88\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95855712890625,\n                \"Text\": \"address\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07197657972574234,\n                        \"Height\": 0.023286499083042145,\n                        \"Left\": 0.36049020290374756,\n                        \"Top\": 0.5025233626365662\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.36049020290374756,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5258098840713501\n                        },\n                        {\n                            \"X\": 0.36049020290374756,\n                            \"Y\": 0.5258098840713501\n                        }\n                    ]\n                },\n                \"Id\": \"198c3015-08ab-4e49-a41c-a609ff931667\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.57333374023438,\n                \"Text\": \"Previous\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08931856602430344,\n                        \"Height\": 0.024376077577471733,\n                        \"Left\": 0.3072309195995331,\n                        \"Top\": 0.5995923280715942\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.5995923280715942\n                        },\n                        {\n                            \"X\": 0.3965494930744171,\n                            \"Y\": 0.5995923280715942\n                        },\n                        {\n                            \"X\": 0.3965494930744171,\n                            \"Y\": 0.6239684224128723\n                        },\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.6239684224128723\n                        }\n                    ]\n                },\n                \"Id\": \"ff736d16-6e5f-4ac9-bfa8-0d56afaffe7c\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.87650299072266,\n                \"Text\": \"Employment\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.13128876686096191,\n                        \"Height\": 0.031595394015312195,\n                        \"Left\": 0.4023631513118744,\n                        \"Top\": 0.598618745803833\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4023631513118744,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.5336519479751587,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.5336519479751587,\n                            \"Y\": 0.6302141547203064\n                        },\n                        {\n                            \"X\": 0.4023631513118744,\n                            \"Y\": 0.6302141547203064\n                        }\n                    ]\n                },\n                \"Id\": \"09b0ffa1-f29d-4bd3-a942-1f4207b27acc\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.91316986083984,\n                \"Text\": \"History\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07424931228160858,\n                        \"Height\": 0.03070068359375,\n                        \"Left\": 0.5382724404335022,\n                        \"Top\": 0.5992337465286255\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5382724404335022,\n                            \"Y\": 0.5992337465286255\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.5992337465286255\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.6299344301223755\n                        },\n                        {\n                            \"X\": 0.5382724404335022,\n                            \"Y\": 0.6299344301223755\n                        }\n                    ]\n                },\n                \"Id\": \"6bcf3756-8443-437e-8bbb-f5f158d309f5\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.68086242675781,\n                \"Text\": \"Start\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.046461764723062515,\n                        \"Height\": 0.022017227485775948,\n                        \"Left\": 0.07416463643312454,\n                        \"Top\": 0.6557980179786682\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.12062639743089676,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.12062639743089676,\n                            \"Y\": 0.6778151988983154\n                        },\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6778151988983154\n                        }\n                    ]\n                },\n                \"Id\": \"4a296b82-8c27-4d47-8b4f-4e62657a2a40\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.48283386230469,\n                \"Text\": \"Date\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.044250085949897766,\n                        \"Height\": 0.021391822025179863,\n                        \"Left\": 0.1258317232131958,\n                        \"Top\": 0.6560804843902588\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1258317232131958,\n                            \"Y\": 0.6560804843902588\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6560804843902588\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6774722933769226\n                        },\n                        {\n                            \"X\": 0.1258317232131958,\n                            \"Y\": 0.6774722933769226\n                        }\n                    ]\n                },\n                \"Id\": \"f6383c7f-8b84-497e-86e6-70f7c0b2e620\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.68376922607422,\n                \"Text\": \"End\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0342257097363472,\n                        \"Height\": 0.022735772654414177,\n                        \"Left\": 0.19170773029327393,\n                        \"Top\": 0.6550583243370056\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.22593343257904053,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.22593343257904053,\n                            \"Y\": 0.6777940988540649\n                        },\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6777940988540649\n                        }\n                    ]\n                },\n                \"Id\": \"04ccd86a-53eb-46a1-9191-978c1b653770\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.5625,\n                \"Text\": \"Date\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04447553679347038,\n                        \"Height\": 0.02141851745545864,\n                        \"Left\": 0.2314567118883133,\n                        \"Top\": 0.6560686230659485\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2314567118883133,\n                            \"Y\": 0.6560686230659485\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6560686230659485\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6774871349334717\n                        },\n                        {\n                            \"X\": 0.2314567118883133,\n                            \"Y\": 0.6774871349334717\n                        }\n                    ]\n                },\n                \"Id\": \"123d7924-3a9d-4670-9b1d-f55c00ed4d21\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96017456054688,\n                \"Text\": \"Employer\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09051616489887238,\n                        \"Height\": 0.027742065489292145,\n                        \"Left\": 0.3053176999092102,\n                        \"Top\": 0.6550468802452087\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.3958338797092438,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.3958338797092438,\n                            \"Y\": 0.6827889680862427\n                        },\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6827889680862427\n                        }\n                    ]\n                },\n                \"Id\": \"1dc12797-d7f8-4e32-b2c7-bab7f4bd000d\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.82466125488281,\n                \"Text\": \"Name\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05623318627476692,\n                        \"Height\": 0.022057799622416496,\n                        \"Left\": 0.39958953857421875,\n                        \"Top\": 0.6561035513877869\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.39958953857421875,\n                            \"Y\": 0.6561035513877869\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6561035513877869\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6781613230705261\n                        },\n                        {\n                            \"X\": 0.39958953857421875,\n                            \"Y\": 0.6781613230705261\n                        }\n                    ]\n                },\n                \"Id\": \"cd4c3bb6-cbfb-4afc-90ba-51e91d6a3c9f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.27780151367188,\n                \"Text\": \"Position\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07563994824886322,\n                        \"Height\": 0.022476695477962494,\n                        \"Left\": 0.49208903312683105,\n                        \"Top\": 0.6556267738342285\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6556267738342285\n                        },\n                        {\n                            \"X\": 0.5677289962768555,\n                            \"Y\": 0.6556267738342285\n                        },\n                        {\n                            \"X\": 0.5677289962768555,\n                            \"Y\": 0.6781034469604492\n                        },\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6781034469604492\n                        }\n                    ]\n                },\n                \"Id\": \"6762e2f4-6609-482b-9335-16168ad0855c\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.72151184082031,\n                \"Text\": \"Held\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.042397476732730865,\n                        \"Height\": 0.022483987733721733,\n                        \"Left\": 0.5740070343017578,\n                        \"Top\": 0.6549334526062012\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5740070343017578,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6774174571037292\n                        },\n                        {\n                            \"X\": 0.5740070343017578,\n                            \"Y\": 0.6774174571037292\n                        }\n                    ]\n                },\n                \"Id\": \"dffe0575-1ec1-4ca8-b6fd-9e292fd600e9\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95236206054688,\n                \"Text\": \"Reason\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06763161718845367,\n                        \"Height\": 0.022222677245736122,\n                        \"Left\": 0.6555624604225159,\n                        \"Top\": 0.6559627056121826\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6559627056121826\n                        },\n                        {\n                            \"X\": 0.7231940627098083,\n                            \"Y\": 0.6559627056121826\n                        },\n                        {\n                            \"X\": 0.7231940627098083,\n                            \"Y\": 0.6781854033470154\n                        },\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6781854033470154\n                        }\n                    ]\n                },\n                \"Id\": \"e0f942a9-f30a-4d02-b459-3f8fed14a15e\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.93626403808594,\n                \"Text\": \"for\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.028742719441652298,\n                        \"Height\": 0.023298142477869987,\n                        \"Left\": 0.7279129028320312,\n                        \"Top\": 0.6545379757881165\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7279129028320312,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.7566556334495544,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.7566556334495544,\n                            \"Y\": 0.6778361201286316\n                        },\n                        {\n                            \"X\": 0.7279129028320312,\n                            \"Y\": 0.6778361201286316\n                        }\n                    ]\n                },\n                \"Id\": \"28f7e081-9e60-41ad-b69b-f40339251e50\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.9585189819336,\n                \"Text\": \"leaving\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0679607167840004,\n                        \"Height\": 0.02744124084711075,\n                        \"Left\": 0.7610328197479248,\n                        \"Top\": 0.6548804640769958\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7610328197479248,\n                            \"Y\": 0.6548804640769958\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6548804640769958\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6823217272758484\n                        },\n                        {\n                            \"X\": 0.7610328197479248,\n                            \"Y\": 0.6823217272758484\n                        }\n                    ]\n                },\n                \"Id\": \"dd9d9aa8-471d-4bf6-9481-3b518aec0b9a\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.60453796386719,\n                \"Text\": \"1/15/2009\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09682866185903549,\n                        \"Height\": 0.026843825355172157,\n                        \"Left\": 0.07532798498868942,\n                        \"Top\": 0.7083258628845215\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7351697087287903\n                        },\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7351697087287903\n                        }\n                    ]\n                },\n                \"Id\": \"5ee275c3-65d3-415f-bf44-0796deab2305\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.56900024414062,\n                \"Text\": \"6/30/2011\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09772055596113205,\n                        \"Height\": 0.026978127658367157,\n                        \"Left\": 0.19010485708713531,\n                        \"Top\": 0.7083016633987427\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7352797389030457\n                        },\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7352797389030457\n                        }\n                    ]\n                },\n                \"Id\": \"a55c5011-820f-4354-b86f-32f75e9352c8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.8681411743164,\n                \"Text\": \"Any\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03632913902401924,\n                        \"Height\": 0.02643704228103161,\n                        \"Left\": 0.30455324053764343,\n                        \"Top\": 0.7101057171821594\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.34088239073753357,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.34088239073753357,\n                            \"Y\": 0.7365427613258362\n                        },\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7365427613258362\n                        }\n                    ]\n                },\n                \"Id\": \"7936e6f3-787b-4656-a0cd-e7a2384732cb\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.5699234008789,\n                \"Text\": \"Company\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08713550865650177,\n                        \"Height\": 0.02666436694562435,\n                        \"Left\": 0.3459952473640442,\n                        \"Top\": 0.7102388739585876\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3459952473640442,\n                            \"Y\": 0.7102388739585876\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7102388739585876\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7369032502174377\n                        },\n                        {\n                            \"X\": 0.3459952473640442,\n                            \"Y\": 0.7369032502174377\n                        }\n                    ]\n                },\n                \"Id\": \"d397d4bb-98f2-4bfd-8ffc-ee8cb0a204b5\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.25328826904297,\n                \"Text\": \"Assistant\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08357953280210495,\n                        \"Height\": 0.02259770780801773,\n                        \"Left\": 0.491060733795166,\n                        \"Top\": 0.709382951259613\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.5746402740478516,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.5746402740478516,\n                            \"Y\": 0.7319806218147278\n                        },\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.7319806218147278\n                        }\n                    ]\n                },\n                \"Id\": \"b46f4e40-74a2-4214-88fe-ca83c340d648\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.55028533935547,\n                \"Text\": \"Baker\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.051925502717494965,\n                        \"Height\": 0.02216622792184353,\n                        \"Left\": 0.5804275870323181,\n                        \"Top\": 0.709467887878418\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5804275870323181,\n                            \"Y\": 0.709467887878418\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.709467887878418\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.7316341400146484\n                        },\n                        {\n                            \"X\": 0.5804275870323181,\n                            \"Y\": 0.7316341400146484\n                        }\n                    ]\n                },\n                \"Id\": \"abe4c7c7-a770-4d88-95ef-533682a846e8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.93041229248047,\n                \"Text\": \"Family\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05969471484422684,\n                        \"Height\": 0.026808075606822968,\n                        \"Left\": 0.6555473208427429,\n                        \"Top\": 0.7095630764961243\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7095630764961243\n                        },\n                        {\n                            \"X\": 0.7152420282363892,\n                            \"Y\": 0.7095630764961243\n                        },\n                        {\n                            \"X\": 0.7152420282363892,\n                            \"Y\": 0.7363711595535278\n                        },\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7363711595535278\n                        }\n                    ]\n                },\n                \"Id\": \"b9bd58a6-9527-4ab0-ad20-49a7e879a6cd\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96968078613281,\n                \"Text\": \"relocated\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0869346335530281,\n                        \"Height\": 0.023413274437189102,\n                        \"Left\": 0.7201783061027527,\n                        \"Top\": 0.7087563872337341\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7201783061027527,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7321696877479553\n                        },\n                        {\n                            \"X\": 0.7201783061027527,\n                            \"Y\": 0.7321696877479553\n                        }\n                    ]\n                },\n                \"Id\": \"a1b5a265-1af2-497b-bd9a-880c5bfd7970\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.79296875,\n                \"Text\": \"7/1/2011\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08606299757957458,\n                        \"Height\": 0.026600508019328117,\n                        \"Left\": 0.07446355372667313,\n                        \"Top\": 0.7624131441116333\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7890136241912842\n                        },\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7890136241912842\n                        }\n                    ]\n                },\n                \"Id\": \"5e193cc8-e6ec-4b55-8fc4-4e538b30ffb9\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.67514038085938,\n                \"Text\": \"8/10/2013\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09801376610994339,\n                        \"Height\": 0.02662261761724949,\n                        \"Left\": 0.1903243064880371,\n                        \"Top\": 0.7625806331634521\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7892032861709595\n                        },\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7892032861709595\n                        }\n                    ]\n                },\n                \"Id\": \"19492565-9434-47c4-9886-10e7a4fee482\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.87751770019531,\n                \"Text\": \"Best\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.040325284004211426,\n                        \"Height\": 0.022052036598324776,\n                        \"Left\": 0.3057495653629303,\n                        \"Top\": 0.7641252875328064\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7641252875328064\n                        },\n                        {\n                            \"X\": 0.3460748493671417,\n                            \"Y\": 0.7641252875328064\n                        },\n                        {\n                            \"X\": 0.3460748493671417,\n                            \"Y\": 0.7861773371696472\n                        },\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7861773371696472\n                        }\n                    ]\n                },\n                \"Id\": \"5d211e1b-2722-4587-8537-e26b72c5b273\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.20387268066406,\n                \"Text\": \"Corp.\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.049073588103055954,\n                        \"Height\": 0.026751743629574776,\n                        \"Left\": 0.35051578283309937,\n                        \"Top\": 0.7636430859565735\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.35051578283309937,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7903947830200195\n                        },\n                        {\n                            \"X\": 0.35051578283309937,\n                            \"Y\": 0.7903947830200195\n                        }\n                    ]\n                },\n                \"Id\": \"05a0e9b0-8e6e-4820-a068-ed05b3f5fd94\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.607177734375,\n                \"Text\": \"Baker\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.052544187754392624,\n                        \"Height\": 0.02315184660255909,\n                        \"Left\": 0.4920831322669983,\n                        \"Top\": 0.7629870772361755\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7861389517784119\n                        },\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7861389517784119\n                        }\n                    ]\n                },\n                \"Id\": \"28f05103-0b94-46cb-a134-cd00ed8b9419\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.92717742919922,\n                \"Text\": \"Better\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.057003699243068695,\n                        \"Height\": 0.02131832204759121,\n                        \"Left\": 0.6555969715118408,\n                        \"Top\": 0.7641827464103699\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7641827464103699\n                        },\n                        {\n                            \"X\": 0.7126007080078125,\n                            \"Y\": 0.7641827464103699\n                        },\n                        {\n                            \"X\": 0.7126007080078125,\n                            \"Y\": 0.7855010628700256\n                        },\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7855010628700256\n                        }\n                    ]\n                },\n                \"Id\": \"13a132c6-b6cf-43eb-88bf-9ed9d6d93b7d\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.97451782226562,\n                \"Text\": \"opportunity\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11142957955598831,\n                        \"Height\": 0.026211483404040337,\n                        \"Left\": 0.7170504927635193,\n                        \"Top\": 0.7639016509056091\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7170504927635193,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7901131510734558\n                        },\n                        {\n                            \"X\": 0.7170504927635193,\n                            \"Y\": 0.7901131510734558\n                        }\n                    ]\n                },\n                \"Id\": \"1da7381e-822d-4382-8b19-58fb7f0f7d5e\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.74268341064453,\n                \"Text\": \"8/15/2013\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09693203121423721,\n                        \"Height\": 0.02708902582526207,\n                        \"Left\": 0.07475598156452179,\n                        \"Top\": 0.8139497637748718\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8410388231277466\n                        },\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8410388231277466\n                        }\n                    ]\n                },\n                \"Id\": \"3904f0be-5bf2-4cb0-b0e2-0edf0e9af3a7\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.9533462524414,\n                \"Text\": \"present\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07096851617097855,\n                        \"Height\": 0.024416884407401085,\n                        \"Left\": 0.19085319340229034,\n                        \"Top\": 0.8176923394203186\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.842109203338623\n                        },\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.842109203338623\n                        }\n                    ]\n                },\n                \"Id\": \"2c6f4435-82be-491a-a1db-0c5450975a18\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.64788818359375,\n                \"Text\": \"Example\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0779692530632019,\n                        \"Height\": 0.027120307087898254,\n                        \"Left\": 0.3059176802635193,\n                        \"Top\": 0.8153413534164429\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.3838869333267212,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.3838869333267212,\n                            \"Y\": 0.8424617052078247\n                        },\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8424617052078247\n                        }\n                    ]\n                },\n                \"Id\": \"ce92f537-1526-4d8d-a799-1a0464504cab\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.31843566894531,\n                \"Text\": \"Corp.\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04892214387655258,\n                        \"Height\": 0.02579682134091854,\n                        \"Left\": 0.3885209560394287,\n                        \"Top\": 0.8160580396652222\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3885209560394287,\n                            \"Y\": 0.8160580396652222\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8160580396652222\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8418548703193665\n                        },\n                        {\n                            \"X\": 0.3885209560394287,\n                            \"Y\": 0.8418548703193665\n                        }\n                    ]\n                },\n                \"Id\": \"2815837d-6f26-4d0c-9f1d-820226d86aa8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.90103912353516,\n                \"Text\": \"Head\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04649946838617325,\n                        \"Height\": 0.022304410114884377,\n                        \"Left\": 0.4926374554634094,\n                        \"Top\": 0.8153996467590332\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.8153996467590332\n                        },\n                        {\n                            \"X\": 0.5391369462013245,\n                            \"Y\": 0.8153996467590332\n                        },\n                        {\n                            \"X\": 0.5391369462013245,\n                            \"Y\": 0.837704062461853\n                        },\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.837704062461853\n                        }\n                    ]\n                },\n                \"Id\": \"7c7f63cc-d350-4057-85cf-0604682166c1\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.50145721435547,\n                \"Text\": \"Baker\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05258156359195709,\n                        \"Height\": 0.022487984970211983,\n                        \"Left\": 0.5458208918571472,\n                        \"Top\": 0.8152825832366943\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5458208918571472,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8377705812454224\n                        },\n                        {\n                            \"X\": 0.5458208918571472,\n                            \"Y\": 0.8377705812454224\n                        }\n                    ]\n                },\n                \"Id\": \"a2d7f699-7160-4ad2-9c12-0fdc18e18ed8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 98.900634765625,\n                \"Text\": \"N/A,\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.040678899735212326,\n                        \"Height\": 0.026958370581269264,\n                        \"Left\": 0.6552858352661133,\n                        \"Top\": 0.8146923184394836\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.6959647536277771,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.6959647536277771,\n                            \"Y\": 0.8416507244110107\n                        },\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8416507244110107\n                        }\n                    ]\n                },\n                \"Id\": \"f8b11632-686a-4b5f-9517-f0613690965e\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96424865722656,\n                \"Text\": \"current\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06921391189098358,\n                        \"Height\": 0.02073560655117035,\n                        \"Left\": 0.7014417052268982,\n                        \"Top\": 0.8175691366195679\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7014417052268982,\n                            \"Y\": 0.8175691366195679\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8175691366195679\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8383047580718994\n                        },\n                        {\n                            \"X\": 0.7014417052268982,\n                            \"Y\": 0.8383047580718994\n                        }\n                    ]\n                },\n                \"Id\": \"6eedc52f-c50e-444f-99aa-0457cdc92132\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95295715332031,\n                \"Text\": \"employer\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0887165293097496,\n                        \"Height\": 0.027792751789093018,\n                        \"Left\": 0.6545867919921875,\n                        \"Top\": 0.8517507314682007\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8795434832572937\n                        },\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8795434832572937\n                        }\n                    ]\n                },\n                \"Id\": \"0d25c2a7-601b-48b4-81e9-e3fcba3ec805\"\n            },\n            {\n                \"BlockType\": \"TABLE\",\n                \"Confidence\": 99.94215393066406,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.7870725989341736,\n                        \"Height\": 0.30381208658218384,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.5752350091934204\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"fe3ce93d-c763-4328-b05a-922dada43f1e\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"b896fcfc-04bc-47db-8680-e63997d56e76\",\n                            \"4c6e3f6a-ef23-4a35-b22a-3cc4b41e49a6\",\n                            \"d76ef0dc-54b3-4f01-9277-516aed0d622b\",\n                            \"193644b2-d1ae-4202-8134-6652479fa2fa\",\n                            \"330244c0-cb68-4479-a3cf-0e9d82437596\",\n                            \"ed9169a0-2763-48dd-bf1d-174b3eb689f6\",\n                            \"2fba8ca8-047a-4885-92f9-66be5f5a68d9\",\n                            \"0ec60d80-c3d4-4ba6-8267-f61afcca0b4c\",\n                            \"8a7f46b0-a31d-49a3-b701-bd0d158da5a9\",\n                            \"c305068d-07ee-4113-9ae3-c2d7be8a8a0b\",\n                            \"f4b05be8-59f0-4fd6-81fc-bfb40996d7f6\",\n                            \"20757e9a-2ef7-445d-8444-2562f7c66aab\",\n                            \"7a24f4ae-5185-4f00-b2a7-16c77c2a3f25\",\n                            \"4d271287-fadf-4f72-8e3e-4f584e2dded7\",\n                            \"cd8fd0e6-63f5-4262-ad98-a891858b9a92\",\n                            \"adbdae34-a974-463a-ac4f-0856d5f57238\",\n                            \"e0b14681-fa96-4059-bb97-ea6b06c20503\",\n                            \"bdbc125a-0492-437a-b48a-074dc78b121f\",\n                            \"c808ac37-3583-4ff1-a438-cc7621c8daa4\",\n                            \"19713fca-1144-416b-b959-fafda89ea9e2\",\n                            \"6d87620f-3894-4a80-85a6-ab3abbc14d82\",\n                            \"74abaf85-968a-46d3-b845-438ebd519980\",\n                            \"ed1ed8b9-d56f-437e-bd0c-b7095e2cc6ff\",\n                            \"86fc2bf1-6dac-4484-a71d-32c3e6b92a38\",\n                            \"3430cdd8-8ad5-4980-8be2-a1f252930dcc\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"MERGED_CELL\",\n                        \"Ids\": [\n                            \"3b52cae0-6636-4eda-a3c4-6f5318130ca7\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.8504409790039,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"b896fcfc-04bc-47db-8680-e63997d56e76\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"3904f0be-5bf2-4cb0-b0e2-0edf0e9af3a7\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.94387817382812,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"4c6e3f6a-ef23-4a35-b22a-3cc4b41e49a6\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"13a132c6-b6cf-43eb-88bf-9ed9d6d93b7d\",\n                            \"1da7381e-822d-4382-8b19-58fb7f0f7d5e\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.03689575195312,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"d76ef0dc-54b3-4f01-9277-516aed0d622b\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5d211e1b-2722-4587-8537-e26b72c5b273\",\n                            \"05a0e9b0-8e6e-4820-a068-ed05b3f5fd94\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.1599349975586,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"193644b2-d1ae-4202-8134-6652479fa2fa\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"7936e6f3-787b-4656-a0cd-e7a2384732cb\",\n                            \"d397d4bb-98f2-4bfd-8ffc-ee8cb0a204b5\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.13471984863281,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"330244c0-cb68-4479-a3cf-0e9d82437596\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5e193cc8-e6ec-4b55-8fc4-4e538b30ffb9\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.63613891601562,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"ed9169a0-2763-48dd-bf1d-174b3eb689f6\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"04ccd86a-53eb-46a1-9191-978c1b653770\",\n                            \"123d7924-3a9d-4670-9b1d-f55c00ed4d21\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.1373062133789,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"2fba8ca8-047a-4885-92f9-66be5f5a68d9\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"6762e2f4-6609-482b-9335-16168ad0855c\",\n                            \"dffe0575-1ec1-4ca8-b6fd-9e292fd600e9\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.42315673828125,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"0ec60d80-c3d4-4ba6-8267-f61afcca0b4c\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1dc12797-d7f8-4e32-b2c7-bab7f4bd000d\",\n                            \"cd4c3bb6-cbfb-4afc-90ba-51e91d6a3c9f\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.37806701660156,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"8a7f46b0-a31d-49a3-b701-bd0d158da5a9\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"a55c5011-820f-4354-b86f-32f75e9352c8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.2574234008789,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"c305068d-07ee-4113-9ae3-c2d7be8a8a0b\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"19492565-9434-47c4-9886-10e7a4fee482\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.88066864013672,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"f4b05be8-59f0-4fd6-81fc-bfb40996d7f6\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"b46f4e40-74a2-4214-88fe-ca83c340d648\",\n                            \"abe4c7c7-a770-4d88-95ef-533682a846e8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.76070404052734,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"20757e9a-2ef7-445d-8444-2562f7c66aab\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"28f05103-0b94-46cb-a134-cd00ed8b9419\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.99501037597656,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"7a24f4ae-5185-4f00-b2a7-16c77c2a3f25\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"2c6f4435-82be-491a-a1db-0c5450975a18\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.32550811767578,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"4d271287-fadf-4f72-8e3e-4f584e2dded7\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"e0f942a9-f30a-4d02-b459-3f8fed14a15e\",\n                            \"28f7e081-9e60-41ad-b69b-f40339251e50\",\n                            \"dd9d9aa8-471d-4bf6-9481-3b518aec0b9a\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.69482421875,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"cd8fd0e6-63f5-4262-ad98-a891858b9a92\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f8b11632-686a-4b5f-9517-f0613690965e\",\n                            \"6eedc52f-c50e-444f-99aa-0457cdc92132\",\n                            \"0d25c2a7-601b-48b4-81e9-e3fcba3ec805\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.50865936279297,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"adbdae34-a974-463a-ac4f-0856d5f57238\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"4a296b82-8c27-4d47-8b4f-4e62657a2a40\",\n                            \"f6383c7f-8b84-497e-86e6-70f7c0b2e620\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.25383758544922,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"e0b14681-fa96-4059-bb97-ea6b06c20503\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5ee275c3-65d3-415f-bf44-0796deab2305\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.48860931396484,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"bdbc125a-0492-437a-b48a-074dc78b121f\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"7c7f63cc-d350-4057-85cf-0604682166c1\",\n                            \"a2d7f699-7160-4ad2-9c12-0fdc18e18ed8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 92.80912017822266,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"c808ac37-3583-4ff1-a438-cc7621c8daa4\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"ce92f537-1526-4d8d-a799-1a0464504cab\",\n                            \"2815837d-6f26-4d0c-9f1d-820226d86aa8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11747430264949799,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.06534507870674133,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06534507870674133,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.06534507870674133,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"19713fca-1144-416b-b959-fafda89ea9e2\"\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"6d87620f-3894-4a80-85a6-ab3abbc14d82\"\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"74abaf85-968a-46d3-b845-438ebd519980\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"ff736d16-6e5f-4ac9-bfa8-0d56afaffe7c\",\n                            \"09b0ffa1-f29d-4bd3-a942-1f4207b27acc\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"ed1ed8b9-d56f-437e-bd0c-b7095e2cc6ff\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"6bcf3756-8443-437e-8bbb-f5f158d309f5\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20411160588264465,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.8524228930473328,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.8524228930473328,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"86fc2bf1-6dac-4484-a71d-32c3e6b92a38\"\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.06544494628906,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"3430cdd8-8ad5-4980-8be2-a1f252930dcc\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"b9bd58a6-9527-4ab0-ad20-49a7e879a6cd\",\n                            \"a1b5a265-1af2-497b-bd9a-880c5bfd7970\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"MERGED_CELL\",\n                \"Confidence\": 91.56806182861328,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 2,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.7870725989341736,\n                        \"Height\": 0.05482279881834984,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.5752350091934204\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"3b52cae0-6636-4eda-a3c4-6f5318130ca7\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"19713fca-1144-416b-b959-fafda89ea9e2\",\n                            \"6d87620f-3894-4a80-85a6-ab3abbc14d82\",\n                            \"74abaf85-968a-46d3-b845-438ebd519980\",\n                            \"ed1ed8b9-d56f-437e-bd0c-b7095e2cc6ff\",\n                            \"86fc2bf1-6dac-4484-a71d-32c3e6b92a38\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 95.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12922188639640808,\n                        \"Height\": 0.020582959055900574,\n                        \"Left\": 0.07581180334091187,\n                        \"Top\": 0.4411558210849762\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07581180334091187,\n                            \"Y\": 0.4411558210849762\n                        },\n                        {\n                            \"X\": 0.20503368973731995,\n                            \"Y\": 0.4411558210849762\n                        },\n                        {\n                            \"X\": 0.20503368973731995,\n                            \"Y\": 0.4617387652397156\n                        },\n                        {\n                            \"X\": 0.07581180334091187,\n                            \"Y\": 0.4617387652397156\n                        }\n                    ]\n                },\n                \"Id\": \"70d1ab51-416d-4484-83b1-93d0d19de4cc\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"c09bf363-041c-4877-adc1-d438c4f8015c\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"442bf95b-2ece-4f00-b9e3-bab4ac6f170f\",\n                            \"ad71e50f-065f-4043-b445-43a4ed6c82b6\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 95.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.284419447183609,\n                        \"Height\": 0.02717478573322296,\n                        \"Left\": 0.2119755893945694,\n                        \"Top\": 0.4401225745677948\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2119755893945694,\n                            \"Y\": 0.4401225745677948\n                        },\n                        {\n                            \"X\": 0.4963950216770172,\n                            \"Y\": 0.4401225745677948\n                        },\n                        {\n                            \"X\": 0.4963950216770172,\n                            \"Y\": 0.46729734539985657\n                        },\n                        {\n                            \"X\": 0.2119755893945694,\n                            \"Y\": 0.46729734539985657\n                        }\n                    ]\n                },\n                \"Id\": \"c09bf363-041c-4877-adc1-d438c4f8015c\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"4cca9a72-2a52-43f2-bd64-fc403500675e\",\n                            \"81d3a376-99ed-4158-a2e6-c6819567e982\",\n                            \"702852b6-7de8-41bf-affd-2bd596b66fbd\",\n                            \"95f45a89-ce87-422c-82a0-656142087d5b\",\n                            \"a76984bd-e31d-4460-9480-33ba602c7364\",\n                            \"088d8b49-9886-404c-82f3-4eb69442c0ac\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 92.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.14188462495803833,\n                        \"Height\": 0.025821516290307045,\n                        \"Left\": 0.07508095353841782,\n                        \"Top\": 0.5045744776725769\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07508095353841782,\n                            \"Y\": 0.5045744776725769\n                        },\n                        {\n                            \"X\": 0.21696557104587555,\n                            \"Y\": 0.5045744776725769\n                        },\n                        {\n                            \"X\": 0.21696557104587555,\n                            \"Y\": 0.5303959846496582\n                        },\n                        {\n                            \"X\": 0.07508095353841782,\n                            \"Y\": 0.5303959846496582\n                        }\n                    ]\n                },\n                \"Id\": \"99caa716-d347-4556-b1b6-151970ed8021\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"ea38b883-b8fe-4d42-90d6-1c3631e82ac0\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"881aad89-0434-4f84-b2a6-81d2ad73f5cb\",\n                            \"c9903389-654c-469e-afff-70a4c0b2bced\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 92.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.21606111526489258,\n                        \"Height\": 0.022998904809355736,\n                        \"Left\": 0.21648043394088745,\n                        \"Top\": 0.5032126903533936\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21648043394088745,\n                            \"Y\": 0.5032126903533936\n                        },\n                        {\n                            \"X\": 0.43254154920578003,\n                            \"Y\": 0.5032126903533936\n                        },\n                        {\n                            \"X\": 0.43254154920578003,\n                            \"Y\": 0.5262116193771362\n                        },\n                        {\n                            \"X\": 0.21648043394088745,\n                            \"Y\": 0.5262116193771362\n                        }\n                    ]\n                },\n                \"Id\": \"ea38b883-b8fe-4d42-90d6-1c3631e82ac0\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"77b2f1ba-fa80-4b6e-aa29-9400c92f7f90\",\n                            \"9136b648-3bee-453c-8528-e6405ed33ff1\",\n                            \"b4ec78a5-ccbc-4689-827e-5192820dbf88\",\n                            \"198c3015-08ab-4e49-a41c-a609ff931667\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 91.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.13339018821716309,\n                        \"Height\": 0.02033335156738758,\n                        \"Left\": 0.07588017731904984,\n                        \"Top\": 0.3779498338699341\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07588017731904984,\n                            \"Y\": 0.3779498338699341\n                        },\n                        {\n                            \"X\": 0.20927037298679352,\n                            \"Y\": 0.3779498338699341\n                        },\n                        {\n                            \"X\": 0.20927037298679352,\n                            \"Y\": 0.3982831835746765\n                        },\n                        {\n                            \"X\": 0.07588017731904984,\n                            \"Y\": 0.3982831835746765\n                        }\n                    ]\n                },\n                \"Id\": \"4d19225b-4a11-4e1e-bcb6-fd94d2eecac1\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"34a0dfcd-c12a-4b5b-ae3e-a17218fa60ad\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"82b76aa3-478b-42b0-925f-930ac3711849\",\n                            \"2cb828d3-ed24-47f5-a694-60e1d7f40871\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 91.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08866763859987259,\n                        \"Height\": 0.0283527709543705,\n                        \"Left\": 0.21544329822063446,\n                        \"Top\": 0.3748914897441864\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21544329822063446,\n                            \"Y\": 0.3748914897441864\n                        },\n                        {\n                            \"X\": 0.30411094427108765,\n                            \"Y\": 0.3748914897441864\n                        },\n                        {\n                            \"X\": 0.30411094427108765,\n                            \"Y\": 0.4032442569732666\n                        },\n                        {\n                            \"X\": 0.21544329822063446,\n                            \"Y\": 0.4032442569732666\n                        }\n                    ]\n                },\n                \"Id\": \"34a0dfcd-c12a-4b5b-ae3e-a17218fa60ad\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"2cf83f47-0a22-4dac-8164-0ea5b5ccdc31\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 87.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09123743325471878,\n                        \"Height\": 0.020755216479301453,\n                        \"Left\": 0.075957290828228,\n                        \"Top\": 0.31413623690605164\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.075957290828228,\n                            \"Y\": 0.31413623690605164\n                        },\n                        {\n                            \"X\": 0.16719472408294678,\n                            \"Y\": 0.31413623690605164\n                        },\n                        {\n                            \"X\": 0.16719472408294678,\n                            \"Y\": 0.3348914682865143\n                        },\n                        {\n                            \"X\": 0.075957290828228,\n                            \"Y\": 0.3348914682865143\n                        }\n                    ]\n                },\n                \"Id\": \"7c7c1718-b8d3-4a19-b585-06ef9bf98383\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"b36c44f8-8b97-4131-8932-e37c01c860eb\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f31fb6b4-e0a9-4b1c-a71a-f67b0cb1dcd7\",\n                            \"0d964903-bb86-4d45-9550-a5342c1855db\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 87.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08178497850894928,\n                        \"Height\": 0.02141937054693699,\n                        \"Left\": 0.17387504875659943,\n                        \"Top\": 0.3134089708328247\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.17387504875659943,\n                            \"Y\": 0.3134089708328247\n                        },\n                        {\n                            \"X\": 0.2556600272655487,\n                            \"Y\": 0.3134089708328247\n                        },\n                        {\n                            \"X\": 0.2556600272655487,\n                            \"Y\": 0.33482834696769714\n                        },\n                        {\n                            \"X\": 0.17387504875659943,\n                            \"Y\": 0.33482834696769714\n                        }\n                    ]\n                },\n                \"Id\": \"b36c44f8-8b97-4131-8932-e37c01c860eb\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"affaa5dd-2405-4be9-8bbd-44d57f22f344\",\n                            \"8eda6e64-18d4-4c78-9104-72f1add33829\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            }\n        ],\n        \"AnalyzeDocumentModelVersion\": \"1.0\"\n    }\n"
  },
  {
    "path": "src-python/tests/data/tables_with_headers_out_of_order_cells.json",
    "content": "{\"DocumentMetadata\": {\"Pages\": 1}, \"Blocks\": [{\"BlockType\": \"PAGE\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.9997642636299133, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0}, \"Polygon\": [{\"X\": 0.0, \"Y\": 0.0}, {\"X\": 0.9997642636299133, \"Y\": 8.65825299631423e-17}, {\"X\": 0.9997642636299133, \"Y\": 1.0}, {\"X\": 0.0, \"Y\": 1.0}]}, \"Id\": \"1cefa49c-047c-40e7-95d7-f0a99da242ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7170c7d7-e6b6-4903-bb62-b28fcaa160c0\", \"77a8fc65-c38f-46a0-b704-6a60d8f0fa03\", \"026ab339-718f-4eca-b575-2c1b59c2b6ca\", \"eb8f4969-4b6a-47cc-8b72-6c271c3bf4af\", \"52809632-19b0-4a40-be68-5745a2b87abf\", \"080ebffa-8c1b-4f49-855e-175cc6867fa0\", \"2aab9b9b-c0f3-42df-bba4-2e62ec236700\", \"69d16e13-30e0-4ba4-9d78-7c5a7eaa9d12\", \"4fe25866-cc67-4fa5-ae50-b4e1e431bd90\", \"5fa670fc-9d29-4b6a-a3f5-410c1ac3c446\", \"b982b0fa-c944-4aca-91be-fa955823e752\", \"111c0e13-7870-476c-840d-b5c6a99dfd2b\", \"96ff3e6d-2289-429d-a499-05bd0f91015b\", \"b70c3445-43e4-4eff-ab09-700f57c8bd09\", \"524e828c-46dd-4832-bfd6-a0997eb3d310\", \"a7c2f3e7-4064-4cd8-b2d8-a9b385c134c9\", \"232156df-8db1-4051-819d-6c543fc4209f\", \"18f566a5-6ff4-4bfc-ab06-d4a5e15d4138\", \"7f10d0c4-6488-4034-8731-2e99921d4db3\", \"f1978ce7-2424-4ee5-bd0a-6a867c17e32f\", \"b43239f7-6417-482b-b946-83fad3ae93f8\", \"8c2d63fe-5b38-4fc4-aa5e-673519b79357\", \"a6abb202-b5ff-48c6-b562-c0da86d74494\", \"af2f387b-a4d8-4d72-a6b8-938d9fd88185\", \"165f4acd-6671-428a-9e0a-fbe24c9051e1\", \"9d955714-82c6-4e08-855a-8f85619fa3c6\", \"51e7ba99-006e-4c3e-bb1d-947994546953\", \"65095a1e-fdca-4f3c-8cea-ef4a8ca92b7e\", \"2c53fba8-78ec-42b9-ae52-e62d9f55eb73\", \"b855524b-9e95-4151-b29d-7b867eb92b14\", \"69de2354-7367-4ee6-8109-2ed2ee1ce3fd\", \"fe7e1411-8804-4823-a8fe-df8c1748b71e\", \"329765be-d0a7-43a5-a0de-468b3198ef36\", \"ff338169-3546-4afa-8257-140271bcad45\", \"cfe34b5c-381e-4794-8ad4-0d74a1f0c120\", \"b27340cf-ea4b-4988-9731-65fd7b459a2c\", \"a09c918f-2bfb-4684-b48a-f58297f2972c\", \"4208ea04-c82e-4051-85b5-da9be2bca74d\", \"73e9fd59-eb5d-4568-b5aa-5cefbf0b8783\", \"1c80a7b3-a85d-4d82-a4f9-266e0f49ba30\", \"f407b649-7fb0-4b34-bc76-e37f8730b59f\", \"bf588d95-83e8-4e8b-865f-098672e2fe7d\", \"455055f1-09bd-4c55-b2c7-33a72fc48456\", \"b4cefad0-360d-41b1-945a-1a4b8e2ea593\", \"23de2353-9e51-4ce0-b92c-b21ff771bd65\", \"d47675d8-0d56-44b5-bf0f-c8e4c7f7e8da\", \"886fe62a-5c61-4c04-9a8b-2edd0dc29e09\", \"48ba4b3d-5e74-4b5d-bd03-f4a8e95ce367\", \"052ca92d-31d7-4d93-a32b-2200f9754af2\", \"55a7ae0d-82bb-4655-8c7e-3ca5ffc02710\", \"1b1ea606-a287-4312-9617-18327d4432ec\", \"2fc8f829-0115-4f90-848e-395ed8f448da\", \"525a335f-0bf7-4442-9bb0-7556193ab904\", \"94b9718f-496e-4260-a3be-714e06bd98e1\", \"ae419d97-370f-4e1a-b062-cd6b7ed90f88\", \"2514bd5e-415c-4f19-8ce1-be90225fbe47\", \"99874604-52ef-42fa-b69d-89d9ce2683ca\", \"27f19417-3a90-4e2d-9939-e32315de34fb\", \"74061d71-2414-4ad4-a712-73a75f6e5a2a\", \"18e593ba-56a3-4d0f-acff-1f02fa9f7f2b\", \"fb253476-3d1c-45d7-a6f1-a92f37368961\", \"eefbcd85-4b3d-4748-b33c-3bac64dbe78e\", \"d2e3176d-aba3-47db-994e-c20ce861e29e\", \"869b55ea-27a9-4662-bc98-5df7df9bb692\", \"b0ad5876-ee9e-4509-9ee8-a71190b93868\", \"43a96612-d043-47c4-8d34-5d3ee343472b\", \"e605008b-5ed0-4e4f-9fe1-2c5b8eedc914\", \"48212e8e-f54f-4f33-8ffd-c448fe8e8d16\", \"889551dc-f928-4594-86e2-ca78ccf05ed9\", \"75c04195-c24e-46ff-a695-cdae3c06e1a7\", \"cbd1d277-1dc5-402d-abaa-5e65d5c561b9\", \"4483cab7-9f99-43a6-98bd-137aaad5db87\", \"d4bf6503-2c39-4707-94e1-8fcee7b874ba\", \"d4ad73a5-e8a1-4932-aa98-badc69b96d93\", \"b0d0b584-4e2a-47e6-b517-0184c5cad597\", \"61da6f5a-dc3a-4c9a-bdd6-da92f5ddd3a4\", \"b8fdc3b0-7043-4bf3-8e08-4040eb25ffca\", \"f889dc6f-71a9-4484-9b9f-070f9f5e6bcf\", \"ea8e2d97-2376-4a22-8e80-3373bc3d4176\", \"a19b5518-8bc9-4679-9a81-a9fdf003f7d2\", \"04d2b5e4-8ae3-498f-a2d8-d095b7be59db\", \"d175a9e3-4bfc-433d-9c30-8d398c01cfed\", \"95fda170-d54e-4616-982c-3296ecf7843c\", \"7750ebbb-a06d-42cf-bf43-d69db4bca89b\", \"f1e27629-1ffe-41c6-8574-000e8b9c0c53\", \"86b739d2-6ebc-458b-bd5c-1d780de0f7d6\", \"9a76254d-4574-46d2-b3e2-9e48d75d0017\", \"6fe63ebf-32b7-464d-8afa-226a7414769a\", \"054caf64-d05e-403b-97fe-69c297bef147\", \"af262539-ca28-455c-8f8e-7628af4e5e70\", \"491c573d-4bfd-4aa5-958c-2281171d744f\", \"abc87e29-ee9e-4f02-ae3e-71ef1a22ce7e\", \"403fc748-1857-407f-ad9d-d7b786513f51\", \"30793003-6f9d-4a90-9fc2-fb99cedbf523\", \"7f454dc1-8e69-401e-b106-161d8e023faf\", \"6248c903-c9e8-4bcd-b936-2af6dd74b2a8\", \"7a652e3b-a66f-4734-8c60-8afd6a16f137\", \"1fe3fa6d-2d60-4c14-ab75-530c37bec74f\", \"4bb34473-7ea5-47fd-9c2b-afadc42e807a\", \"f710bcdd-a306-41e1-8814-d5d34b0d5a10\", \"91c5186d-8e3b-4a64-85f1-c3de0def79b7\", \"6ba493c9-b950-4b6d-bdc4-c7f52dd335e8\", \"d37ec4aa-0635-4538-a631-76cb9863eba7\", \"39348812-6b19-41a6-a27f-f25645eeffc0\", \"a6f14c1c-33f7-4c5d-9fc5-2b59dedf4bfd\", \"ea62497c-e8b6-4c72-bccd-e2a4b1974e68\", \"5ea41644-b56d-47a9-b7df-747487ed8032\", \"b2ff7d6f-e345-4d86-ba40-1f6c3db7ce11\", \"19f8d670-ab4d-4deb-9e25-e7f8e731225c\", \"686ec1d0-ed1f-47f3-8796-00178ee03a59\", \"0fb83f5e-209b-4013-b45d-7f947855826c\", \"91a9c615-fa0c-435c-a32c-e63a7fd73729\", \"260921ce-e861-4413-bba8-d64e78b63a01\", \"2e87f1ff-df91-4107-a13c-28c814ddadf6\", \"5e76ce91-3841-47a5-a385-f9f6f60fdefb\", \"df5246a8-761b-44ff-9dc3-81782a05bdfa\", \"3b0339e6-35f5-4cff-8937-1e024f5371e8\", \"10ff6900-e931-48ba-ab12-b3c28cc7dc51\", \"fa19cb04-888f-4afb-835e-c3f7d5156885\", \"3fb08546-bedd-4975-93f4-2257e9de962f\", \"f68692d3-45d6-487f-95c4-7dd9f5f3bff7\", \"c24c1bb0-2a8f-4457-b7fb-afc9482bab1c\", \"357e2046-f89f-4a0f-809c-3073c98e6757\", \"e0efb8c6-372b-42e2-9c3d-a2321a1a40c8\", \"21ae4d29-b89c-48f9-ae03-59e4e5270cde\", \"6ef4fa39-cf85-4c02-9f10-5a5904a71781\", \"6218571f-afc3-43ad-9eb4-a9af2c802f74\", \"518c1507-f9ea-4ce7-b173-d3b948a991e6\", \"aabb9dd7-df05-4d82-b813-2c934576a594\", \"d8e5f59e-e152-4112-8e75-c7548acdc527\", \"c7513bf1-3b89-48ed-95e1-029c27f98547\", \"4a26b1bd-580a-48b1-ab20-a9ee38847025\", \"b6299e73-496b-46ce-82c2-553a408a78ff\", \"1ee37e2c-fcfe-43d7-b179-d62af9eb54af\", \"7a965ab7-aef0-464b-90e1-314f3b8972f7\", \"bff86b4f-b468-4c24-ba6e-b253a3b1bdb9\", \"279d0543-445f-4ca6-a4c5-3bd740a2ad89\", \"49cec2a8-cdbb-4bfc-bb2e-1bec49a0c435\", \"0870fea0-1e0a-43a7-a90e-61bee1c3abb4\", \"6afa4d1c-1213-4da2-b425-2e16385f5315\", \"20fb1a1a-29fd-46be-aca9-1ed3db4130b3\", \"18d8cb79-ec54-489b-8c80-a283962fe3a2\", \"c4e3d083-37bf-4edd-ba6a-38a57d12a85b\", \"c464b93d-6b16-4cdb-83ad-60b220c843c0\", \"92fd68f9-9c55-4a7b-bf1a-729155fb8535\", \"8c057b5f-e324-453e-b879-e918b80b4c02\", \"dc46ba5c-5dc5-4103-948b-608c5d3f8752\", \"bf99f88b-4adb-4225-a8ef-c991dd727578\", \"63468ef8-b84c-4afe-bc68-74d598373b77\", \"e815d00e-168c-4ec6-9de0-308dd6143a57\", \"58aa5014-cf33-43fb-9857-00ce01801587\", \"1da74413-d55c-45b0-9366-6af3b321f6c3\", \"2e47463b-18a8-42a6-8fd9-ad7215a2cc45\", \"1b2ad8ad-0ca5-408c-8bd1-610ae9cda898\", \"18cf29e0-7630-451e-ae92-68e6b0cc1bf9\", \"6fb11955-987f-4396-af2b-d57f69b8cfca\", \"bcbffbef-5e9c-4e4f-8234-6e7a5a08f18d\", \"8cc87b7e-44b0-46e5-a8c8-3f62a2d3d8d8\", \"a947a5bd-eda8-47f5-99a6-60999772bdfb\", \"20b461bf-2ab1-4bb5-a7f1-91aae9fef7e4\", \"cf8f9fd7-de57-4bff-b0c5-ca217b0ce116\", \"dcca59f6-ce5c-43eb-a8c5-58d5a59ddf9f\", \"e70178a6-0a7a-4a65-abcc-d6ff9c520de4\", \"6fcceb7d-30eb-4de1-b070-cc9375b028f3\", \"d9b2144a-5726-47c2-a354-99296e60596c\", \"be726d28-3f92-4328-9f6f-7e08b01b8adb\", \"9bb5f403-2c6e-484d-8c1d-b53ec7a02f11\", \"da319dd9-d21c-4386-84dc-830c2e9ad338\", \"3b105f39-eb36-4790-b8b3-1e4e6cbb973e\", \"68e69a35-1915-4698-a189-84a7dd4a657c\", \"c6b95070-4e4d-42dc-ac6a-321312c09ed1\", \"e7fc3adc-01b4-468b-8a24-d50981bb46f6\", \"fa5437c0-6152-4a7e-a3ea-5bca4fa0d528\", \"a5d314c8-43cf-4ec8-b47f-b4a5bb1ac0b3\", \"733b79e4-db70-48d2-85a8-2c767520ba2e\", \"d07177c1-55d2-4992-92da-86f7d275e1cb\", \"a5e7f3ba-ba66-475c-81ba-f9015af565d7\", \"a55c7c4d-25f4-4daa-ae72-d2f0157c6b02\", \"da863033-24dc-4d48-9268-7bc4c348ac80\", \"4e5a5706-5d80-4b65-8de7-9db7a8cf29f6\", \"23f2bf18-80bd-49c2-9e30-54ea84ae4f6f\", \"e729eece-df91-45ad-94b8-5ddcd7847c5a\", \"0e05f9fe-046e-4452-9483-1f7a235dd905\", \"34db4a84-59bf-4e01-8288-152cb7941c5a\", \"10c29bea-6ba9-4dc2-a8fe-99e243d6c435\", \"ef24959e-4330-4cb6-8a49-9b6ccae1420e\", \"b550d343-ce73-4dd8-ab2d-62acf421f0ec\", \"c971f616-de6b-4890-bb53-593cf214d903\", \"6b0c5baf-878f-418b-9c8d-337c7687c6b3\", \"b24e2ca7-689b-45e9-90cb-2a5f118041e1\", \"92d9fb13-2ecc-4b07-b3f8-3af0d5af8c66\", \"6647552d-4f5f-49d9-8002-7ac921b8a235\", \"f185df8d-d87e-4b04-ab83-089267a0f694\", \"20b05597-bfed-4f3b-b28e-73692c90e4ea\", \"629a5baa-b1e0-447e-b4a8-db4b69fc7b91\", \"c632a4f5-df41-4534-9d0d-13fddb7227ba\", \"934cbae5-0e3d-4272-86f6-19a585e1471c\", \"2f954df2-3f2f-4c54-8e84-31041e587c01\", \"7bd45a92-91ca-4fbe-addc-d72925010d02\", \"676bf7d6-6509-4433-8d82-f7b49145eca6\", \"60be6c1a-a03f-4d26-a06d-d3916d8216f5\", \"6c1a6acc-37db-4cc6-b1c8-c563a1cb5078\", \"a4cb5bf7-b921-47cb-930f-6347fefcec1a\", \"4a7b9a3d-b70c-4d9c-a11b-8efbca8f1190\", \"da2c3869-766b-4ea2-a8ff-984929d9d9de\", \"3662e741-fa6a-4243-a405-ed93763c94a1\", \"a1d3d952-992c-4213-b019-0df91c1500d6\", \"9296ef90-3d55-4412-a40e-17781ad1ca87\", \"4beed445-e54d-4ba4-8729-626a4f11a443\", \"9551986b-58c7-46e1-9a3a-1fe42ca47780\", \"95b8b5ed-5c00-4a16-814e-fec21e349e93\", \"46861e7d-b773-4589-892e-b487e71b475e\", \"2aa3bb29-0dfa-4390-90e7-0440620be109\", \"fa693316-d8f0-4e4c-ba56-b89ee2072840\", \"96d492fd-5d1f-41d9-9abc-f6e1f781f60f\", \"9ef8118c-6e96-4a51-8246-f864fd4a8fe7\", \"8e7fdcf2-574a-45f1-a45b-c2edc70c2b60\", \"d9069901-2b7b-40de-bb69-889192aad3d6\", \"c78d4c8e-7759-403f-bc0b-a7499a19098f\", \"b6d84a49-4a36-4397-9955-39cdd9d45275\", \"2dd93d4d-94de-4f08-8fcb-e72a92c38797\", \"9e4c2c15-b2af-47af-b49e-c366818cad53\", \"eb78ed72-c9d7-4758-a923-b93f8b5ea946\", \"0ddd9204-94aa-4691-9582-3ae068dcc6fc\", \"a9db90fa-a807-4fc8-8304-f7b0952b2156\", \"54af7c00-e447-44e8-9463-a6c8454a9e3c\", \"10252191-fa40-46a1-8cbe-56f779783e55\", \"c27d8e3e-820b-45cd-9a14-df06ea6eefff\", \"6109dac8-45f9-458b-b538-4ce2394e96b4\", \"2e1ac349-d60a-4e00-87fb-830a66fcd0fb\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.9283218383789, \"Text\": \"Consolidated income statement\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.34530124068260193, \"Height\": 0.013285761699080467, \"Left\": 0.09457933157682419, \"Top\": 0.05635805428028107}, \"Polygon\": [{\"X\": 0.09457933157682419, \"Y\": 0.05635805428028107}, {\"X\": 0.4398805797100067, \"Y\": 0.05635805428028107}, {\"X\": 0.4398805797100067, \"Y\": 0.06964381039142609}, {\"X\": 0.09457933157682419, \"Y\": 0.06964381039142609}]}, \"Id\": \"7170c7d7-e6b6-4903-bb62-b28fcaa160c0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7021d6d2-e077-4209-ab01-f06cebb8904a\", \"ddba7057-2e07-4b76-b0ca-b0ae1821b1c3\", \"3081a89e-4993-4d00-b5cd-7c3245f88b83\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.9152603149414, \"Text\": \"for the year ended 31 December 2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22578397393226624, \"Height\": 0.009666946716606617, \"Left\": 0.09442709386348724, \"Top\": 0.07671985030174255}, \"Polygon\": [{\"X\": 0.09442709386348724, \"Y\": 0.07671985030174255}, {\"X\": 0.3202110528945923, \"Y\": 0.07671985030174255}, {\"X\": 0.3202110528945923, \"Y\": 0.0863867998123169}, {\"X\": 0.09442709386348724, \"Y\": 0.0863867998123169}]}, \"Id\": \"77a8fc65-c38f-46a0-b704-6a60d8f0fa03\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"89915d97-713a-4b5b-9bcb-70b66ac3af4a\", \"a450134e-80ec-463e-ad4e-d222a3e2f351\", \"c1447d2c-dc92-4cc1-9beb-51ab23916c12\", \"b48a12ac-5afd-489b-9160-10033886adf0\", \"dfefea71-46df-45a6-ab58-730d11cf0057\", \"8ccdac2f-78a5-429d-9946-58606589026e\", \"14ec330e-551c-48ec-abec-4637a7b5aefc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91912841796875, \"Text\": \"2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023377126082777977, \"Height\": 0.006023040972650051, \"Left\": 0.5975328683853149, \"Top\": 0.161042720079422}, \"Polygon\": [{\"X\": 0.5975328683853149, \"Y\": 0.161042720079422}, {\"X\": 0.6209099888801575, \"Y\": 0.161042720079422}, {\"X\": 0.6209099888801575, \"Y\": 0.16706576943397522}, {\"X\": 0.5975328683853149, \"Y\": 0.16706576943397522}]}, \"Id\": \"026ab339-718f-4eca-b575-2c1b59c2b6ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f911ea69-1ad6-4bb2-8a5d-571184c1e817\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91558837890625, \"Text\": \"2019\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022246839478611946, \"Height\": 0.006051533855497837, \"Left\": 0.8217923641204834, \"Top\": 0.161011204123497}, \"Polygon\": [{\"X\": 0.8217923641204834, \"Y\": 0.161011204123497}, {\"X\": 0.8440392017364502, \"Y\": 0.161011204123497}, {\"X\": 0.8440392017364502, \"Y\": 0.16706272959709167}, {\"X\": 0.8217923641204834, \"Y\": 0.16706272959709167}]}, \"Id\": \"eb8f4969-4b6a-47cc-8b72-6c271c3bf4af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b02b69a7-fb7b-42a4-ac6e-6b6d84609d2a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.73590087890625, \"Text\": \"Underlying\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05287722125649452, \"Height\": 0.007532551884651184, \"Left\": 0.5182235240936279, \"Top\": 0.1728323996067047}, \"Polygon\": [{\"X\": 0.5182235240936279, \"Y\": 0.1728323996067047}, {\"X\": 0.5711007714271545, \"Y\": 0.1728323996067047}, {\"X\": 0.5711007714271545, \"Y\": 0.1803649514913559}, {\"X\": 0.5182235240936279, \"Y\": 0.1803649514913559}]}, \"Id\": \"52809632-19b0-4a40-be68-5745a2b87abf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"727e50af-d82e-476d-a692-1c6b98b5d5f0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88680267333984, \"Text\": \"Special\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036123547703027725, \"Height\": 0.007194254547357559, \"Left\": 0.606115996837616, \"Top\": 0.17264831066131592}, \"Polygon\": [{\"X\": 0.606115996837616, \"Y\": 0.17264831066131592}, {\"X\": 0.642239511013031, \"Y\": 0.17264831066131592}, {\"X\": 0.642239511013031, \"Y\": 0.17984257638454437}, {\"X\": 0.606115996837616, \"Y\": 0.17984257638454437}]}, \"Id\": \"080ebffa-8c1b-4f49-855e-175cc6867fa0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fd5cb3c2-f106-487c-b80f-23477ec8cec6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54922485351562, \"Text\": \"Underlying\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04887998104095459, \"Height\": 0.007447021547704935, \"Left\": 0.7458717226982117, \"Top\": 0.17285870015621185}, \"Polygon\": [{\"X\": 0.7458717226982117, \"Y\": 0.17285870015621185}, {\"X\": 0.7947517037391663, \"Y\": 0.17285870015621185}, {\"X\": 0.7947517037391663, \"Y\": 0.18030571937561035}, {\"X\": 0.7458717226982117, \"Y\": 0.18030571937561035}]}, \"Id\": \"2aab9b9b-c0f3-42df-bba4-2e62ec236700\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b6679137-3e20-45f1-bd47-392fdb9b2a33\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84963989257812, \"Text\": \"Special\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03344007208943367, \"Height\": 0.007193420547991991, \"Left\": 0.8326470851898193, \"Top\": 0.17263783514499664}, \"Polygon\": [{\"X\": 0.8326470851898193, \"Y\": 0.17263783514499664}, {\"X\": 0.8660871386528015, \"Y\": 0.17263783514499664}, {\"X\": 0.8660871386528015, \"Y\": 0.17983125150203705}, {\"X\": 0.8326470851898193, \"Y\": 0.17983125150203705}]}, \"Id\": \"69d16e13-30e0-4ba4-9d78-7c5a7eaa9d12\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"459f2e14-acda-419f-99b7-83f992c38eb3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76192474365234, \"Text\": \"performance\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06305642426013947, \"Height\": 0.006991393864154816, \"Left\": 0.5083041191101074, \"Top\": 0.18117260932922363}, \"Polygon\": [{\"X\": 0.5083041191101074, \"Y\": 0.18117260932922363}, {\"X\": 0.5713605284690857, \"Y\": 0.18117260932922363}, {\"X\": 0.5713605284690857, \"Y\": 0.18816399574279785}, {\"X\": 0.5083041191101074, \"Y\": 0.18816399574279785}]}, \"Id\": \"4fe25866-cc67-4fa5-ae50-b4e1e431bd90\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5522b09c-afdf-40ce-9ce2-3648d71fe248\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.32672119140625, \"Text\": \"Items\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025969667360186577, \"Height\": 0.005741211120039225, \"Left\": 0.616241455078125, \"Top\": 0.18129277229309082}, \"Polygon\": [{\"X\": 0.616241455078125, \"Y\": 0.18129277229309082}, {\"X\": 0.6422110795974731, \"Y\": 0.18129277229309082}, {\"X\": 0.6422110795974731, \"Y\": 0.1870339810848236}, {\"X\": 0.616241455078125, \"Y\": 0.1870339810848236}]}, \"Id\": \"5fa670fc-9d29-4b6a-a3f5-410c1ac3c446\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"84cdd3e2-31f1-4e8b-8ada-84c00192d34a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6470718383789, \"Text\": \"IFRS\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022577712312340736, \"Height\": 0.005966837517917156, \"Left\": 0.6912369132041931, \"Top\": 0.1810838282108307}, \"Polygon\": [{\"X\": 0.6912369132041931, \"Y\": 0.1810838282108307}, {\"X\": 0.7138146162033081, \"Y\": 0.1810838282108307}, {\"X\": 0.7138146162033081, \"Y\": 0.18705065548419952}, {\"X\": 0.6912369132041931, \"Y\": 0.18705065548419952}]}, \"Id\": \"b982b0fa-c944-4aca-91be-fa955823e752\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5776fa1e-df13-46c9-927d-0163fbdf4e68\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65364074707031, \"Text\": \"performance\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.058852337300777435, \"Height\": 0.00724363187327981, \"Left\": 0.7362900972366333, \"Top\": 0.18105259537696838}, \"Polygon\": [{\"X\": 0.7362900972366333, \"Y\": 0.18105259537696838}, {\"X\": 0.795142412185669, \"Y\": 0.18105259537696838}, {\"X\": 0.795142412185669, \"Y\": 0.18829622864723206}, {\"X\": 0.7362900972366333, \"Y\": 0.18829622864723206}]}, \"Id\": \"111c0e13-7870-476c-840d-b5c6a99dfd2b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fb32fb74-374a-4826-baf3-8d3cd5a9bee3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.18732452392578, \"Text\": \"Items\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024624764919281006, \"Height\": 0.005852986592799425, \"Left\": 0.8416397571563721, \"Top\": 0.18121977150440216}, \"Polygon\": [{\"X\": 0.8416397571563721, \"Y\": 0.18121977150440216}, {\"X\": 0.8662645220756531, \"Y\": 0.18121977150440216}, {\"X\": 0.8662645220756531, \"Y\": 0.18707275390625}, {\"X\": 0.8416397571563721, \"Y\": 0.18707275390625}]}, \"Id\": \"96ff3e6d-2289-429d-a499-05bd0f91015b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f9d9754-69b4-4101-94a7-d0a3e389df75\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4548110961914, \"Text\": \"IFRS\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021029071882367134, \"Height\": 0.006026224698871374, \"Left\": 0.9165687561035156, \"Top\": 0.181009903550148}, \"Polygon\": [{\"X\": 0.9165687561035156, \"Y\": 0.181009903550148}, {\"X\": 0.9375978112220764, \"Y\": 0.181009903550148}, {\"X\": 0.9375978112220764, \"Y\": 0.18703612685203552}, {\"X\": 0.9165687561035156, \"Y\": 0.18703612685203552}]}, \"Id\": \"b70c3445-43e4-4eff-ab09-700f57c8bd09\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fdaea4ba-6cfd-4fff-92c0-103adbf4b821\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76178741455078, \"Text\": \"Note\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02150745317339897, \"Height\": 0.006135131698101759, \"Left\": 0.4687524139881134, \"Top\": 0.18949902057647705}, \"Polygon\": [{\"X\": 0.4687524139881134, \"Y\": 0.18949902057647705}, {\"X\": 0.49025988578796387, \"Y\": 0.18949902057647705}, {\"X\": 0.49025988578796387, \"Y\": 0.1956341564655304}, {\"X\": 0.4687524139881134, \"Y\": 0.1956341564655304}]}, \"Id\": \"524e828c-46dd-4832-bfd6-a0997eb3d310\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ecd08b22-a2c1-4915-908a-8fd9ca7855c5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.1806411743164, \"Text\": \"\\u00a3m\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014320844784379005, \"Height\": 0.005840860772877932, \"Left\": 0.5567774176597595, \"Top\": 0.18953055143356323}, \"Polygon\": [{\"X\": 0.5567774176597595, \"Y\": 0.18953055143356323}, {\"X\": 0.571098268032074, \"Y\": 0.18953055143356323}, {\"X\": 0.571098268032074, \"Y\": 0.19537141919136047}, {\"X\": 0.5567774176597595, \"Y\": 0.19537141919136047}]}, \"Id\": \"a7c2f3e7-4064-4cd8-b2d8-a9b385c134c9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"918730c3-9d65-4325-8d48-8f6c8ea691ff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 92.29580688476562, \"Text\": \"\\u00a3m\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014731314033269882, \"Height\": 0.005787780974060297, \"Left\": 0.6273971796035767, \"Top\": 0.18957725167274475}, \"Polygon\": [{\"X\": 0.6273971796035767, \"Y\": 0.18957725167274475}, {\"X\": 0.6421285271644592, \"Y\": 0.18957725167274475}, {\"X\": 0.6421285271644592, \"Y\": 0.1953650265932083}, {\"X\": 0.6273971796035767, \"Y\": 0.1953650265932083}]}, \"Id\": \"232156df-8db1-4051-819d-6c543fc4209f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4075f9a2-8beb-4e93-9731-833e71f9e04c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 92.15472412109375, \"Text\": \"\\u00a3m\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014752666465938091, \"Height\": 0.005919006187468767, \"Left\": 0.6988475322723389, \"Top\": 0.18963539600372314}, \"Polygon\": [{\"X\": 0.6988475322723389, \"Y\": 0.18963539600372314}, {\"X\": 0.713600218296051, \"Y\": 0.18963539600372314}, {\"X\": 0.713600218296051, \"Y\": 0.19555440545082092}, {\"X\": 0.6988475322723389, \"Y\": 0.19555440545082092}]}, \"Id\": \"18f566a5-6ff4-4bfc-ab06-d4a5e15d4138\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"97c7cbc7-8e40-4fe0-aac8-74ac6e722298\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 71.20902252197266, \"Text\": \"\\u00a3m\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014506741426885128, \"Height\": 0.006054687313735485, \"Left\": 0.7802777290344238, \"Top\": 0.18955062329769135}, \"Polygon\": [{\"X\": 0.7802777290344238, \"Y\": 0.18955062329769135}, {\"X\": 0.7947844862937927, \"Y\": 0.18955062329769135}, {\"X\": 0.7947844862937927, \"Y\": 0.1956053078174591}, {\"X\": 0.7802777290344238, \"Y\": 0.1956053078174591}]}, \"Id\": \"7f10d0c4-6488-4034-8731-2e99921d4db3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"083baa96-32af-4d79-b61f-a0c073c71558\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 66.76356506347656, \"Text\": \"\\u00a3m\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014623977243900299, \"Height\": 0.005925761070102453, \"Left\": 0.8516663312911987, \"Top\": 0.18954405188560486}, \"Polygon\": [{\"X\": 0.8516663312911987, \"Y\": 0.18954405188560486}, {\"X\": 0.8662903308868408, \"Y\": 0.18954405188560486}, {\"X\": 0.8662903308868408, \"Y\": 0.19546981155872345}, {\"X\": 0.8516663312911987, \"Y\": 0.19546981155872345}]}, \"Id\": \"f1978ce7-2424-4ee5-bd0a-6a867c17e32f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28414b41-95a7-4b02-a53b-4511309434ed\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 57.13501739501953, \"Text\": \"\\u00a3m\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014513993635773659, \"Height\": 0.006300211418420076, \"Left\": 0.9228707551956177, \"Top\": 0.1893814355134964}, \"Polygon\": [{\"X\": 0.9228707551956177, \"Y\": 0.1893814355134964}, {\"X\": 0.9373847246170044, \"Y\": 0.1893814355134964}, {\"X\": 0.9373847246170044, \"Y\": 0.1956816464662552}, {\"X\": 0.9228707551956177, \"Y\": 0.1956816464662552}]}, \"Id\": \"b43239f7-6417-482b-b946-83fad3ae93f8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"009fe4ea-477d-4c67-a29f-5bf961d6c846\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.9385986328125, \"Text\": \"Revenue\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05498666688799858, \"Height\": 0.00777779147028923, \"Left\": 0.09533783048391342, \"Top\": 0.21656560897827148}, \"Polygon\": [{\"X\": 0.09533783048391342, \"Y\": 0.21656560897827148}, {\"X\": 0.1503244936466217, \"Y\": 0.21656560897827148}, {\"X\": 0.1503244936466217, \"Y\": 0.224343404173851}, {\"X\": 0.09533783048391342, \"Y\": 0.224343404173851}]}, \"Id\": \"8c2d63fe-5b38-4fc4-aa5e-673519b79357\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3a454ca6-9173-47e7-9267-eece0a045140\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90493774414062, \"Text\": \"5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007433426100760698, \"Height\": 0.00767148844897747, \"Left\": 0.4825260639190674, \"Top\": 0.21668961644172668}, \"Polygon\": [{\"X\": 0.4825260639190674, \"Y\": 0.21668961644172668}, {\"X\": 0.4899595081806183, \"Y\": 0.21668961644172668}, {\"X\": 0.4899595081806183, \"Y\": 0.2243611067533493}, {\"X\": 0.4825260639190674, \"Y\": 0.2243611067533493}]}, \"Id\": \"a6abb202-b5ff-48c6-b562-c0da86d74494\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc4297e0-e8a5-47f9-9092-bb7eb21c2110\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.60794067382812, \"Text\": \"1,644.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04510172829031944, \"Height\": 0.008565551601350307, \"Left\": 0.526071310043335, \"Top\": 0.21670576930046082}, \"Polygon\": [{\"X\": 0.526071310043335, \"Y\": 0.21670576930046082}, {\"X\": 0.5711730122566223, \"Y\": 0.21670576930046082}, {\"X\": 0.5711730122566223, \"Y\": 0.2252713143825531}, {\"X\": 0.526071310043335, \"Y\": 0.2252713143825531}]}, \"Id\": \"af2f387b-a4d8-4d72-a6b8-938d9fd88185\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da2379eb-f38a-48ac-8d7c-6a0fb7f4d1e8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.44605255126953, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007548906374722719, \"Height\": 0.0017630411311984062, \"Left\": 0.6352583765983582, \"Top\": 0.22033455967903137}, \"Polygon\": [{\"X\": 0.6352583765983582, \"Y\": 0.22033455967903137}, {\"X\": 0.6428073048591614, \"Y\": 0.22033455967903137}, {\"X\": 0.6428073048591614, \"Y\": 0.22209759056568146}, {\"X\": 0.6352583765983582, \"Y\": 0.22209759056568146}]}, \"Id\": \"165f4acd-6671-428a-9e0a-fbe24c9051e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"475a8da0-ba70-4051-85fb-9656aadda510\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74470520019531, \"Text\": \"1,644.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044821616262197495, \"Height\": 0.008636902086436749, \"Left\": 0.6693531274795532, \"Top\": 0.21666420996189117}, \"Polygon\": [{\"X\": 0.6693531274795532, \"Y\": 0.21666420996189117}, {\"X\": 0.714174747467041, \"Y\": 0.21666420996189117}, {\"X\": 0.714174747467041, \"Y\": 0.2253011018037796}, {\"X\": 0.6693531274795532, \"Y\": 0.2253011018037796}]}, \"Id\": \"9d955714-82c6-4e08-855a-8f85619fa3c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"545f79b0-9c76-43db-9a72-071b524bf9bd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50669860839844, \"Text\": \"1,459.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041089754551649094, \"Height\": 0.008284952491521835, \"Left\": 0.7514199614524841, \"Top\": 0.216851606965065}, \"Polygon\": [{\"X\": 0.7514199614524841, \"Y\": 0.216851606965065}, {\"X\": 0.7925097346305847, \"Y\": 0.216851606965065}, {\"X\": 0.7925097346305847, \"Y\": 0.22513656318187714}, {\"X\": 0.7514199614524841, \"Y\": 0.22513656318187714}]}, \"Id\": \"51e7ba99-006e-4c3e-bb1d-947994546953\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c0bd8249-79c2-4f9b-909c-74e8831ab216\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.2572250366211, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00807131640613079, \"Height\": 0.0016690266784280539, \"Left\": 0.8586904406547546, \"Top\": 0.22042779624462128}, \"Polygon\": [{\"X\": 0.8586904406547546, \"Y\": 0.22042779624462128}, {\"X\": 0.8667618036270142, \"Y\": 0.22042779624462128}, {\"X\": 0.8667618036270142, \"Y\": 0.22209681570529938}, {\"X\": 0.8586904406547546, \"Y\": 0.22209681570529938}]}, \"Id\": \"65095a1e-fdca-4f3c-8cea-ef4a8ca92b7e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a41a0381-c9d5-473d-94de-e1cf7b693332\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.48738098144531, \"Text\": \"1,459.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041703615337610245, \"Height\": 0.008497314527630806, \"Left\": 0.893993616104126, \"Top\": 0.216643825173378}, \"Polygon\": [{\"X\": 0.893993616104126, \"Y\": 0.216643825173378}, {\"X\": 0.9356972575187683, \"Y\": 0.216643825173378}, {\"X\": 0.9356972575187683, \"Y\": 0.22514113783836365}, {\"X\": 0.893993616104126, \"Y\": 0.22514113783836365}]}, \"Id\": \"2c53fba8-78ec-42b9-ae52-e62d9f55eb73\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f80baa7e-d766-41f0-b04a-f5523c0be827\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.44569396972656, \"Text\": \"Company and subsidiaries before Special Items\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.28092992305755615, \"Height\": 0.009697794914245605, \"Left\": 0.09503413736820221, \"Top\": 0.2299422174692154}, \"Polygon\": [{\"X\": 0.09503413736820221, \"Y\": 0.2299422174692154}, {\"X\": 0.37596404552459717, \"Y\": 0.2299422174692154}, {\"X\": 0.37596404552459717, \"Y\": 0.239640012383461}, {\"X\": 0.09503413736820221, \"Y\": 0.239640012383461}]}, \"Id\": \"b855524b-9e95-4151-b29d-7b867eb92b14\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5bc034ce-787a-4970-a0ac-421e025286f3\", \"272e2e9a-1570-441d-9c57-95e09865743b\", \"11834215-9b9d-4efa-ad8a-9f5cc1e49f3b\", \"d3f4b10b-2011-44e3-8abd-427ee6895d0c\", \"d725a1f9-487f-47da-8c32-0d478e0da64d\", \"1803a5b8-a519-4a72-a80a-a3a6504b3042\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71720123291016, \"Text\": \"188.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033256880939006805, \"Height\": 0.00790450070053339, \"Left\": 0.537685751914978, \"Top\": 0.23009233176708221}, \"Polygon\": [{\"X\": 0.537685751914978, \"Y\": 0.23009233176708221}, {\"X\": 0.5709426403045654, \"Y\": 0.23009233176708221}, {\"X\": 0.5709426403045654, \"Y\": 0.23799683153629303}, {\"X\": 0.537685751914978, \"Y\": 0.23799683153629303}]}, \"Id\": \"69de2354-7367-4ee6-8109-2ed2ee1ce3fd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8df277dc-9d40-4dd1-b72b-38c68c27bac3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.85443878173828, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007458144798874855, \"Height\": 0.001875671441666782, \"Left\": 0.6352676153182983, \"Top\": 0.23371604084968567}, \"Polygon\": [{\"X\": 0.6352676153182983, \"Y\": 0.23371604084968567}, {\"X\": 0.6427257657051086, \"Y\": 0.23371604084968567}, {\"X\": 0.6427257657051086, \"Y\": 0.23559170961380005}, {\"X\": 0.6352676153182983, \"Y\": 0.23559170961380005}]}, \"Id\": \"fe7e1411-8804-4823-a8fe-df8c1748b71e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3fbba435-bdc8-464a-8a76-13d9e4f0a3c3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75364685058594, \"Text\": \"188.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0330660343170166, \"Height\": 0.00785896833986044, \"Left\": 0.6805466413497925, \"Top\": 0.2301023155450821}, \"Polygon\": [{\"X\": 0.6805466413497925, \"Y\": 0.2301023155450821}, {\"X\": 0.7136126756668091, \"Y\": 0.2301023155450821}, {\"X\": 0.7136126756668091, \"Y\": 0.2379612773656845}, {\"X\": 0.6805466413497925, \"Y\": 0.2379612773656845}]}, \"Id\": \"329765be-d0a7-43a5-a0de-468b3198ef36\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad44faed-4420-4c49-8cb3-e1b6771e2990\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.86521911621094, \"Text\": \"124.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03254707530140877, \"Height\": 0.007953837513923645, \"Left\": 0.7619578838348389, \"Top\": 0.2300836145877838}, \"Polygon\": [{\"X\": 0.7619578838348389, \"Y\": 0.2300836145877838}, {\"X\": 0.7945049405097961, \"Y\": 0.2300836145877838}, {\"X\": 0.7945049405097961, \"Y\": 0.23803745210170746}, {\"X\": 0.7619578838348389, \"Y\": 0.23803745210170746}]}, \"Id\": \"ff338169-3546-4afa-8257-140271bcad45\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9ccf4a7-5ece-4874-8b35-39b2a7d8bc8f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.66747283935547, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007786313071846962, \"Height\": 0.0016911011189222336, \"Left\": 0.8588007688522339, \"Top\": 0.23364025354385376}, \"Polygon\": [{\"X\": 0.8588007688522339, \"Y\": 0.23364025354385376}, {\"X\": 0.8665871024131775, \"Y\": 0.23364025354385376}, {\"X\": 0.8665871024131775, \"Y\": 0.23533135652542114}, {\"X\": 0.8588007688522339, \"Y\": 0.23533135652542114}]}, \"Id\": \"cfe34b5c-381e-4794-8ad4-0d74a1f0c120\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"085ebe4a-dae6-415e-b6c6-166799f7cf78\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76884460449219, \"Text\": \"124.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03289319947361946, \"Height\": 0.007803446613252163, \"Left\": 0.9047502875328064, \"Top\": 0.2300032079219818}, \"Polygon\": [{\"X\": 0.9047502875328064, \"Y\": 0.2300032079219818}, {\"X\": 0.9376434683799744, \"Y\": 0.2300032079219818}, {\"X\": 0.9376434683799744, \"Y\": 0.23780666291713715}, {\"X\": 0.9047502875328064, \"Y\": 0.23780666291713715}]}, \"Id\": \"b27340cf-ea4b-4988-9731-65fd7b459a2c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bee6c9ed-f083-466d-8637-41fae3308963\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83326721191406, \"Text\": \"Amortisation of acquired intangibles\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.21247801184654236, \"Height\": 0.009684489108622074, \"Left\": 0.09414710104465485, \"Top\": 0.24324509501457214}, \"Polygon\": [{\"X\": 0.09414710104465485, \"Y\": 0.24324509501457214}, {\"X\": 0.3066251277923584, \"Y\": 0.24324509501457214}, {\"X\": 0.3066251277923584, \"Y\": 0.25292959809303284}, {\"X\": 0.09414710104465485, \"Y\": 0.25292959809303284}]}, \"Id\": \"a09c918f-2bfb-4684-b48a-f58297f2972c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d5b5968e-715c-4dc8-8afe-4f34ee88697e\", \"18729445-728c-4f4e-bb59-dc0b6fc2da9f\", \"ad607925-815a-431b-8d3e-dea452d54659\", \"7d6e8ed9-3b9c-4c1c-9020-63c5e81dee8a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5886001586914, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007402779068797827, \"Height\": 0.0071335043758153915, \"Left\": 0.48257312178611755, \"Top\": 0.24361014366149902}, \"Polygon\": [{\"X\": 0.48257312178611755, \"Y\": 0.24361014366149902}, {\"X\": 0.4899758994579315, \"Y\": 0.24361014366149902}, {\"X\": 0.4899758994579315, \"Y\": 0.25074365735054016}, {\"X\": 0.48257312178611755, \"Y\": 0.25074365735054016}]}, \"Id\": \"4208ea04-c82e-4051-85b5-da9be2bca74d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f0f03854-7ff8-4894-9560-fa6bcab71030\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.91830444335938, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007687034085392952, \"Height\": 0.001995483413338661, \"Left\": 0.5636991262435913, \"Top\": 0.24702522158622742}, \"Polygon\": [{\"X\": 0.5636991262435913, \"Y\": 0.24702522158622742}, {\"X\": 0.5713861584663391, \"Y\": 0.24702522158622742}, {\"X\": 0.5713861584663391, \"Y\": 0.24902071058750153}, {\"X\": 0.5636991262435913, \"Y\": 0.24902071058750153}]}, \"Id\": \"73e9fd59-eb5d-4568-b5aa-5cefbf0b8783\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63f909ed-6ed9-4e20-906d-56d2cd86b067\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.92462158203125, \"Text\": \"(30.9)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03341975435614586, \"Height\": 0.009453104808926582, \"Left\": 0.6130833029747009, \"Top\": 0.24325038492679596}, \"Polygon\": [{\"X\": 0.6130833029747009, \"Y\": 0.24325038492679596}, {\"X\": 0.6465030908584595, \"Y\": 0.24325038492679596}, {\"X\": 0.6465030908584595, \"Y\": 0.2527034878730774}, {\"X\": 0.6130833029747009, \"Y\": 0.2527034878730774}]}, \"Id\": \"1c80a7b3-a85d-4d82-a4f9-266e0f49ba30\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db3695ce-8ee2-45c2-9f80-e6eed6f2871e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2197265625, \"Text\": \"(30.9)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03305245190858841, \"Height\": 0.009494181722402573, \"Left\": 0.684897243976593, \"Top\": 0.24312296509742737}, \"Polygon\": [{\"X\": 0.684897243976593, \"Y\": 0.24312296509742737}, {\"X\": 0.7179497480392456, \"Y\": 0.24312296509742737}, {\"X\": 0.7179497480392456, \"Y\": 0.25261715054512024}, {\"X\": 0.684897243976593, \"Y\": 0.25261715054512024}]}, \"Id\": \"f407b649-7fb0-4b34-bc76-e37f8730b59f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"517744cd-e0aa-4885-912d-7258baf9bba0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.0161361694336, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007829132489860058, \"Height\": 0.0019029948161914945, \"Left\": 0.7873821258544922, \"Top\": 0.2472248673439026}, \"Polygon\": [{\"X\": 0.7873821258544922, \"Y\": 0.2472248673439026}, {\"X\": 0.7952112555503845, \"Y\": 0.2472248673439026}, {\"X\": 0.7952112555503845, \"Y\": 0.24912786483764648}, {\"X\": 0.7873821258544922, \"Y\": 0.24912786483764648}]}, \"Id\": \"bf588d95-83e8-4e8b-865f-098672e2fe7d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1ff678de-14cf-4178-b141-e93d4881b68f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76789093017578, \"Text\": \"(8.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025222627446055412, \"Height\": 0.00945084635168314, \"Left\": 0.845165491104126, \"Top\": 0.24336794018745422}, \"Polygon\": [{\"X\": 0.845165491104126, \"Y\": 0.24336794018745422}, {\"X\": 0.8703880906105042, \"Y\": 0.24336794018745422}, {\"X\": 0.8703880906105042, \"Y\": 0.2528187930583954}, {\"X\": 0.845165491104126, \"Y\": 0.2528187930583954}]}, \"Id\": \"455055f1-09bd-4c55-b2c7-33a72fc48456\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8a960ab6-efc7-44e0-8475-4bd228370137\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7116928100586, \"Text\": \"(8.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024872301146388054, \"Height\": 0.009413676336407661, \"Left\": 0.9165467023849487, \"Top\": 0.24337171018123627}, \"Polygon\": [{\"X\": 0.9165467023849487, \"Y\": 0.24337171018123627}, {\"X\": 0.9414190053939819, \"Y\": 0.24337171018123627}, {\"X\": 0.9414190053939819, \"Y\": 0.2527853846549988}, {\"X\": 0.9165467023849487, \"Y\": 0.2527853846549988}]}, \"Id\": \"b4cefad0-360d-41b1-945a-1a4b8e2ea593\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cab01b40-7795-41bc-a592-c6d1afe172fd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87175750732422, \"Text\": \"Restructuring and site closure costs\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2122640460729599, \"Height\": 0.009754232130944729, \"Left\": 0.09484859555959702, \"Top\": 0.2569366991519928}, \"Polygon\": [{\"X\": 0.09484859555959702, \"Y\": 0.2569366991519928}, {\"X\": 0.3071126341819763, \"Y\": 0.2569366991519928}, {\"X\": 0.3071126341819763, \"Y\": 0.2666909396648407}, {\"X\": 0.09484859555959702, \"Y\": 0.2666909396648407}]}, \"Id\": \"23de2353-9e51-4ce0-b92c-b21ff771bd65\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b1577f84-ae3f-4e50-81b2-4e74eb450567\", \"d3751b2b-2e5c-43a0-9212-77a75fe0ac31\", \"48afb7f4-3271-4d7e-aff2-82374aa03a2d\", \"8f83b451-e95e-4bdb-a468-a6516e06c807\", \"fc81e0fd-f8a4-4e5c-8090-3e56109714b8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.73719787597656, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00731397420167923, \"Height\": 0.007284851279109716, \"Left\": 0.48251768946647644, \"Top\": 0.2572292983531952}, \"Polygon\": [{\"X\": 0.48251768946647644, \"Y\": 0.2572292983531952}, {\"X\": 0.48983168601989746, \"Y\": 0.2572292983531952}, {\"X\": 0.48983168601989746, \"Y\": 0.26451414823532104}, {\"X\": 0.48251768946647644, \"Y\": 0.26451414823532104}]}, \"Id\": \"d47675d8-0d56-44b5-bf0f-c8e4c7f7e8da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3e058008-ef55-4742-9c51-2e6089205410\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.80846405029297, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007396620698273182, \"Height\": 0.0019087321124970913, \"Left\": 0.5641559958457947, \"Top\": 0.2607528567314148}, \"Polygon\": [{\"X\": 0.5641559958457947, \"Y\": 0.2607528567314148}, {\"X\": 0.571552574634552, \"Y\": 0.2607528567314148}, {\"X\": 0.571552574634552, \"Y\": 0.26266157627105713}, {\"X\": 0.5641559958457947, \"Y\": 0.26266157627105713}]}, \"Id\": \"886fe62a-5c61-4c04-9a8b-2edd0dc29e09\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"09408f99-8cf8-4310-aec7-ac22ce9ab6f0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59080505371094, \"Text\": \"(42.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033047329634428024, \"Height\": 0.009399088099598885, \"Left\": 0.6132153868675232, \"Top\": 0.2569512724876404}, \"Polygon\": [{\"X\": 0.6132153868675232, \"Y\": 0.2569512724876404}, {\"X\": 0.6462627649307251, \"Y\": 0.2569512724876404}, {\"X\": 0.6462627649307251, \"Y\": 0.2663503587245941}, {\"X\": 0.6132153868675232, \"Y\": 0.2663503587245941}]}, \"Id\": \"48ba4b3d-5e74-4b5d-bd03-f4a8e95ce367\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"76df24b8-9265-4486-a6a2-ba5534ece329\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.29153442382812, \"Text\": \"(42.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03338741138577461, \"Height\": 0.00924586970359087, \"Left\": 0.6844267845153809, \"Top\": 0.2570682168006897}, \"Polygon\": [{\"X\": 0.6844267845153809, \"Y\": 0.2570682168006897}, {\"X\": 0.7178142070770264, \"Y\": 0.2570682168006897}, {\"X\": 0.7178142070770264, \"Y\": 0.2663140892982483}, {\"X\": 0.6844267845153809, \"Y\": 0.2663140892982483}]}, \"Id\": \"052ca92d-31d7-4d93-a32b-2200f9754af2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28738a9f-61f7-4ae1-b831-fdb9bb3a9ee8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 94.48845672607422, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007548791356384754, \"Height\": 0.0018485310720279813, \"Left\": 0.7875575423240662, \"Top\": 0.26080581545829773}, \"Polygon\": [{\"X\": 0.7875575423240662, \"Y\": 0.26080581545829773}, {\"X\": 0.7951063513755798, \"Y\": 0.26080581545829773}, {\"X\": 0.7951063513755798, \"Y\": 0.2626543641090393}, {\"X\": 0.7875575423240662, \"Y\": 0.2626543641090393}]}, \"Id\": \"55a7ae0d-82bb-4655-8c7e-3ca5ffc02710\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5b5f882-0821-47a6-9517-fee5934ea478\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88323974609375, \"Text\": \"(0.8)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02529733069241047, \"Height\": 0.009336872957646847, \"Left\": 0.8450397849082947, \"Top\": 0.25724172592163086}, \"Polygon\": [{\"X\": 0.8450397849082947, \"Y\": 0.25724172592163086}, {\"X\": 0.8703370690345764, \"Y\": 0.25724172592163086}, {\"X\": 0.8703370690345764, \"Y\": 0.2665786147117615}, {\"X\": 0.8450397849082947, \"Y\": 0.2665786147117615}]}, \"Id\": \"1b1ea606-a287-4312-9617-18327d4432ec\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9fb9ac56-8207-411c-8c8b-7b98be6585a6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81497192382812, \"Text\": \"(0.8)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024819640442728996, \"Height\": 0.009158304892480373, \"Left\": 0.9166504144668579, \"Top\": 0.2571624219417572}, \"Polygon\": [{\"X\": 0.9166504144668579, \"Y\": 0.2571624219417572}, {\"X\": 0.9414700865745544, \"Y\": 0.2571624219417572}, {\"X\": 0.9414700865745544, \"Y\": 0.26632073521614075}, {\"X\": 0.9166504144668579, \"Y\": 0.26632073521614075}]}, \"Id\": \"2fc8f829-0115-4f90-848e-395ed8f448da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e6db0e3f-ba37-4ea7-89dd-6c0c033acd3c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67682647705078, \"Text\": \"Acquisition costs and related gains\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20645782351493835, \"Height\": 0.009510050527751446, \"Left\": 0.09395059943199158, \"Top\": 0.2705487608909607}, \"Polygon\": [{\"X\": 0.09395059943199158, \"Y\": 0.2705487608909607}, {\"X\": 0.30040842294692993, \"Y\": 0.2705487608909607}, {\"X\": 0.30040842294692993, \"Y\": 0.2800588011741638}, {\"X\": 0.09395059943199158, \"Y\": 0.2800588011741638}]}, \"Id\": \"525a335f-0bf7-4442-9bb0-7556193ab904\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a07fae30-b918-4276-8330-917ae5ed0536\", \"f094f49f-8afe-4f08-892e-b9c183020ab0\", \"20c4d8f6-f023-404c-84d3-c32d8059a19a\", \"a722a673-9c90-4f47-958d-d4a4bb808f83\", \"f9e3ae2c-e171-4ccd-b228-558dc7d0a1a4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69139862060547, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007647955324500799, \"Height\": 0.007390462327748537, \"Left\": 0.48249351978302, \"Top\": 0.2706010937690735}, \"Polygon\": [{\"X\": 0.48249351978302, \"Y\": 0.2706010937690735}, {\"X\": 0.49014148116111755, \"Y\": 0.2706010937690735}, {\"X\": 0.49014148116111755, \"Y\": 0.27799156308174133}, {\"X\": 0.48249351978302, \"Y\": 0.27799156308174133}]}, \"Id\": \"94b9718f-496e-4260-a3be-714e06bd98e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61b6772a-5fca-48a9-9ee6-c98512a11f83\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.99635314941406, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007751666475087404, \"Height\": 0.002126098610460758, \"Left\": 0.5638501048088074, \"Top\": 0.2740932106971741}, \"Polygon\": [{\"X\": 0.5638501048088074, \"Y\": 0.2740932106971741}, {\"X\": 0.5716017484664917, \"Y\": 0.2740932106971741}, {\"X\": 0.5716017484664917, \"Y\": 0.27621930837631226}, {\"X\": 0.5638501048088074, \"Y\": 0.27621930837631226}]}, \"Id\": \"ae419d97-370f-4e1a-b062-cd6b7ed90f88\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c2c87fdf-eaf8-4afb-afcf-6ca8e2cd47c3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.30530548095703, \"Text\": \"(14.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033755406737327576, \"Height\": 0.009522969834506512, \"Left\": 0.6129997968673706, \"Top\": 0.270414799451828}, \"Polygon\": [{\"X\": 0.6129997968673706, \"Y\": 0.270414799451828}, {\"X\": 0.6467552185058594, \"Y\": 0.270414799451828}, {\"X\": 0.6467552185058594, \"Y\": 0.2799377739429474}, {\"X\": 0.6129997968673706, \"Y\": 0.2799377739429474}]}, \"Id\": \"2514bd5e-415c-4f19-8ce1-be90225fbe47\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc5e5dea-0960-4e27-9b3e-767cf451d618\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.37598419189453, \"Text\": \"(14.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03320145606994629, \"Height\": 0.009405639953911304, \"Left\": 0.6844539642333984, \"Top\": 0.2705071270465851}, \"Polygon\": [{\"X\": 0.6844539642333984, \"Y\": 0.2705071270465851}, {\"X\": 0.7176554203033447, \"Y\": 0.2705071270465851}, {\"X\": 0.7176554203033447, \"Y\": 0.2799127697944641}, {\"X\": 0.6844539642333984, \"Y\": 0.2799127697944641}]}, \"Id\": \"99874604-52ef-42fa-b69d-89d9ce2683ca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b78dda30-3df9-44a7-9448-fae2f3dfe9a6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.8856201171875, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007989590987563133, \"Height\": 0.0020948282908648252, \"Left\": 0.787377119064331, \"Top\": 0.2740941345691681}, \"Polygon\": [{\"X\": 0.787377119064331, \"Y\": 0.2740941345691681}, {\"X\": 0.7953667044639587, \"Y\": 0.2740941345691681}, {\"X\": 0.7953667044639587, \"Y\": 0.2761889696121216}, {\"X\": 0.787377119064331, \"Y\": 0.2761889696121216}]}, \"Id\": \"27f19417-3a90-4e2d-9939-e32315de34fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0a6a012c-d484-4919-85d6-0ba8bec27ce3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67472076416016, \"Text\": \"(9.2)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024975378066301346, \"Height\": 0.009541361592710018, \"Left\": 0.8451637625694275, \"Top\": 0.27047333121299744}, \"Polygon\": [{\"X\": 0.8451637625694275, \"Y\": 0.27047333121299744}, {\"X\": 0.8701391220092773, \"Y\": 0.27047333121299744}, {\"X\": 0.8701391220092773, \"Y\": 0.28001469373703003}, {\"X\": 0.8451637625694275, \"Y\": 0.28001469373703003}]}, \"Id\": \"74061d71-2414-4ad4-a712-73a75f6e5a2a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0a94c51f-9375-4f7d-8fd0-673ab693285c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65066528320312, \"Text\": \"(9.2)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024817856028676033, \"Height\": 0.009458556771278381, \"Left\": 0.9165538549423218, \"Top\": 0.2704661786556244}, \"Polygon\": [{\"X\": 0.9165538549423218, \"Y\": 0.2704661786556244}, {\"X\": 0.941371738910675, \"Y\": 0.2704661786556244}, {\"X\": 0.941371738910675, \"Y\": 0.2799247205257416}, {\"X\": 0.9165538549423218, \"Y\": 0.2799247205257416}]}, \"Id\": \"18e593ba-56a3-4d0f-acff-1f02fa9f7f2b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0571803c-d6f8-4b37-94cb-e63e3a6aec37\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.2262954711914, \"Text\": \"Impairment charge\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1117008849978447, \"Height\": 0.009754414670169353, \"Left\": 0.09471820294857025, \"Top\": 0.2837700843811035}, \"Polygon\": [{\"X\": 0.09471820294857025, \"Y\": 0.2837700843811035}, {\"X\": 0.20641908049583435, \"Y\": 0.2837700843811035}, {\"X\": 0.20641908049583435, \"Y\": 0.29352450370788574}, {\"X\": 0.09471820294857025, \"Y\": 0.29352450370788574}]}, \"Id\": \"fb253476-3d1c-45d7-a6f1-a92f37368961\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04e2ab8f-6cbe-46b1-8f0a-1410b0403626\", \"d9eb00e5-8535-4db6-9cc5-450e3ed109f2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7059097290039, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00768217071890831, \"Height\": 0.007155782077461481, \"Left\": 0.48251065611839294, \"Top\": 0.2840423285961151}, \"Polygon\": [{\"X\": 0.48251065611839294, \"Y\": 0.2840423285961151}, {\"X\": 0.49019283056259155, \"Y\": 0.2840423285961151}, {\"X\": 0.49019283056259155, \"Y\": 0.29119813442230225}, {\"X\": 0.48251065611839294, \"Y\": 0.29119813442230225}]}, \"Id\": \"eefbcd85-4b3d-4748-b33c-3bac64dbe78e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb9a3eba-8b88-4653-ab5d-d4882ecb59a2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.02806091308594, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007389829494059086, \"Height\": 0.0019894205033779144, \"Left\": 0.5640910863876343, \"Top\": 0.28755608201026917}, \"Polygon\": [{\"X\": 0.5640910863876343, \"Y\": 0.28755608201026917}, {\"X\": 0.5714808702468872, \"Y\": 0.28755608201026917}, {\"X\": 0.5714808702468872, \"Y\": 0.2895455062389374}, {\"X\": 0.5640910863876343, \"Y\": 0.2895455062389374}]}, \"Id\": \"d2e3176d-aba3-47db-994e-c20ce861e29e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ccd3a01-d531-4b41-83f3-2e81d01ff91c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.99510955810547, \"Text\": \"(36.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03359949216246605, \"Height\": 0.009487711824476719, \"Left\": 0.6130747199058533, \"Top\": 0.28375691175460815}, \"Polygon\": [{\"X\": 0.6130747199058533, \"Y\": 0.28375691175460815}, {\"X\": 0.6466742157936096, \"Y\": 0.28375691175460815}, {\"X\": 0.6466742157936096, \"Y\": 0.2932446002960205}, {\"X\": 0.6130747199058533, \"Y\": 0.2932446002960205}]}, \"Id\": \"869b55ea-27a9-4662-bc98-5df7df9bb692\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55030adc-eecd-40a5-8727-1265b4026198\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.1044692993164, \"Text\": \"(36.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033161282539367676, \"Height\": 0.009450439363718033, \"Left\": 0.6846016049385071, \"Top\": 0.28379473090171814}, \"Polygon\": [{\"X\": 0.6846016049385071, \"Y\": 0.28379473090171814}, {\"X\": 0.7177628874778748, \"Y\": 0.28379473090171814}, {\"X\": 0.7177628874778748, \"Y\": 0.2932451665401459}, {\"X\": 0.6846016049385071, \"Y\": 0.2932451665401459}]}, \"Id\": \"b0ad5876-ee9e-4509-9ee8-a71190b93868\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a52cc6e5-1cb7-48af-a84d-44d3f1ba47fa\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.830078125, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007955634966492653, \"Height\": 0.001939941430464387, \"Left\": 0.7873685956001282, \"Top\": 0.2876223623752594}, \"Polygon\": [{\"X\": 0.7873685956001282, \"Y\": 0.2876223623752594}, {\"X\": 0.7953242063522339, \"Y\": 0.2876223623752594}, {\"X\": 0.7953242063522339, \"Y\": 0.28956231474876404}, {\"X\": 0.7873685956001282, \"Y\": 0.28956231474876404}]}, \"Id\": \"43a96612-d043-47c4-8d34-5d3ee343472b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9764aa6d-dc7c-4e89-8b53-8e19bc1c13e5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.5692138671875, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007947404868900776, \"Height\": 0.0017697144066914916, \"Left\": 0.8587058782577515, \"Top\": 0.2876841127872467}, \"Polygon\": [{\"X\": 0.8587058782577515, \"Y\": 0.2876841127872467}, {\"X\": 0.8666532635688782, \"Y\": 0.2876841127872467}, {\"X\": 0.8666532635688782, \"Y\": 0.28945380449295044}, {\"X\": 0.8587058782577515, \"Y\": 0.28945380449295044}]}, \"Id\": \"e605008b-5ed0-4e4f-9fe1-2c5b8eedc914\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ad3cc96-0ec4-4d97-aa80-36d51b31affe\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.28961181640625, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007761104963719845, \"Height\": 0.0017622883897274733, \"Left\": 0.9301581382751465, \"Top\": 0.2877163887023926}, \"Polygon\": [{\"X\": 0.9301581382751465, \"Y\": 0.2877163887023926}, {\"X\": 0.9379191994667053, \"Y\": 0.2877163887023926}, {\"X\": 0.9379191994667053, \"Y\": 0.28947868943214417}, {\"X\": 0.9301581382751465, \"Y\": 0.28947868943214417}]}, \"Id\": \"48212e8e-f54f-4f33-8ffd-c448fe8e8d16\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"421eefca-a19d-452d-b1e6-edac06a8a87f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.9463882446289, \"Text\": \"Sale of business\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09658348560333252, \"Height\": 0.008010742254555225, \"Left\": 0.0949285626411438, \"Top\": 0.2975012958049774}, \"Polygon\": [{\"X\": 0.0949285626411438, \"Y\": 0.2975012958049774}, {\"X\": 0.19151204824447632, \"Y\": 0.2975012958049774}, {\"X\": 0.19151204824447632, \"Y\": 0.305512011051178}, {\"X\": 0.0949285626411438, \"Y\": 0.305512011051178}]}, \"Id\": \"889551dc-f928-4594-86e2-ca78ccf05ed9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"520a0d0a-5853-4937-ba9e-0e3e5ff9d750\", \"492c0d18-d8ea-47da-b934-47d890ba20ad\", \"a7b69224-cff1-4f94-bb21-e2f0345fe98a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68107604980469, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007479209452867508, \"Height\": 0.0073692831210792065, \"Left\": 0.48244598507881165, \"Top\": 0.29773369431495667}, \"Polygon\": [{\"X\": 0.48244598507881165, \"Y\": 0.29773369431495667}, {\"X\": 0.48992520570755005, \"Y\": 0.29773369431495667}, {\"X\": 0.48992520570755005, \"Y\": 0.30510297417640686}, {\"X\": 0.48244598507881165, \"Y\": 0.30510297417640686}]}, \"Id\": \"75c04195-c24e-46ff-a695-cdae3c06e1a7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"71fee0d9-18b6-49ad-80f9-172b04fe2a6b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.00199890136719, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007645308040082455, \"Height\": 0.002077006036415696, \"Left\": 0.5640230774879456, \"Top\": 0.3011508584022522}, \"Polygon\": [{\"X\": 0.5640230774879456, \"Y\": 0.3011508584022522}, {\"X\": 0.5716683864593506, \"Y\": 0.3011508584022522}, {\"X\": 0.5716683864593506, \"Y\": 0.30322787165641785}, {\"X\": 0.5640230774879456, \"Y\": 0.30322787165641785}]}, \"Id\": \"cbd1d277-1dc5-402d-abaa-5e65d5c561b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c17adfba-d0de-496a-b1c4-ec08089b60ac\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.80293273925781, \"Text\": \"(6.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025900430977344513, \"Height\": 0.00946738664060831, \"Left\": 0.6203874945640564, \"Top\": 0.29753029346466064}, \"Polygon\": [{\"X\": 0.6203874945640564, \"Y\": 0.29753029346466064}, {\"X\": 0.6462879180908203, \"Y\": 0.29753029346466064}, {\"X\": 0.6462879180908203, \"Y\": 0.306997686624527}, {\"X\": 0.6203874945640564, \"Y\": 0.306997686624527}]}, \"Id\": \"4483cab7-9f99-43a6-98bd-137aaad5db87\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"211ffa99-e9c5-4dc5-8391-811ecce3a1cf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82062530517578, \"Text\": \"(6.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025747224688529968, \"Height\": 0.009792501106858253, \"Left\": 0.6921467185020447, \"Top\": 0.29736870527267456}, \"Polygon\": [{\"X\": 0.6921467185020447, \"Y\": 0.29736870527267456}, {\"X\": 0.7178939580917358, \"Y\": 0.29736870527267456}, {\"X\": 0.7178939580917358, \"Y\": 0.30716121196746826}, {\"X\": 0.6921467185020447, \"Y\": 0.30716121196746826}]}, \"Id\": \"d4bf6503-2c39-4707-94e1-8fcee7b874ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e237a2af-b642-49d0-9ca3-7547b11756bd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.00187683105469, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007587294559925795, \"Height\": 0.001977091422304511, \"Left\": 0.7874998450279236, \"Top\": 0.30115416646003723}, \"Polygon\": [{\"X\": 0.7874998450279236, \"Y\": 0.30115416646003723}, {\"X\": 0.7950870990753174, \"Y\": 0.30115416646003723}, {\"X\": 0.7950870990753174, \"Y\": 0.30313125252723694}, {\"X\": 0.7874998450279236, \"Y\": 0.30313125252723694}]}, \"Id\": \"d4ad73a5-e8a1-4932-aa98-badc69b96d93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0e4625be-1ada-4b4e-9d23-195c954c387a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.50569915771484, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007934915833175182, \"Height\": 0.0018766479333862662, \"Left\": 0.8586669564247131, \"Top\": 0.30118584632873535}, \"Polygon\": [{\"X\": 0.8586669564247131, \"Y\": 0.30118584632873535}, {\"X\": 0.8666018843650818, \"Y\": 0.30118584632873535}, {\"X\": 0.8666018843650818, \"Y\": 0.3030624985694885}, {\"X\": 0.8586669564247131, \"Y\": 0.3030624985694885}]}, \"Id\": \"b0d0b584-4e2a-47e6-b517-0184c5cad597\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7c62017-f90c-405e-a10d-f80748205e4b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.50592803955078, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007870052941143513, \"Height\": 0.0017868855502456427, \"Left\": 0.9301025867462158, \"Top\": 0.3012324273586273}, \"Polygon\": [{\"X\": 0.9301025867462158, \"Y\": 0.3012324273586273}, {\"X\": 0.9379726052284241, \"Y\": 0.3012324273586273}, {\"X\": 0.9379726052284241, \"Y\": 0.30301931500434875}, {\"X\": 0.9301025867462158, \"Y\": 0.30301931500434875}]}, \"Id\": \"61da6f5a-dc3a-4c9a-bdd6-da92f5ddd3a4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"953d7d15-a676-4877-aef1-70b5e2bcb170\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91734313964844, \"Text\": \"Foreign exchange gain on rights issue\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.222703754901886, \"Height\": 0.009864319115877151, \"Left\": 0.09525512903928757, \"Top\": 0.3109422028064728}, \"Polygon\": [{\"X\": 0.09525512903928757, \"Y\": 0.3109422028064728}, {\"X\": 0.31795889139175415, \"Y\": 0.3109422028064728}, {\"X\": 0.31795889139175415, \"Y\": 0.3208065330982208}, {\"X\": 0.09525512903928757, \"Y\": 0.3208065330982208}]}, \"Id\": \"b8fdc3b0-7043-4bf3-8e08-4040eb25ffca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61b5b5f6-46d7-44fe-a1e6-d0189969a008\", \"7767c764-d064-4bf4-aeef-240476d92c80\", \"8d3b32d4-9652-4562-abf0-c9d5807ffbc4\", \"5514f06a-31a5-4c80-9f7b-de2768a4ae3e\", \"44e86f4c-7e62-425e-b1cf-239b82f766ee\", \"ebae7e93-1e67-4705-a9bc-3f14246a319d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57355499267578, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0078066010028123856, \"Height\": 0.007120381575077772, \"Left\": 0.4824593663215637, \"Top\": 0.31126120686531067}, \"Polygon\": [{\"X\": 0.4824593663215637, \"Y\": 0.31126120686531067}, {\"X\": 0.49026596546173096, \"Y\": 0.31126120686531067}, {\"X\": 0.49026596546173096, \"Y\": 0.31838157773017883}, {\"X\": 0.4824593663215637, \"Y\": 0.31838157773017883}]}, \"Id\": \"f889dc6f-71a9-4484-9b9f-070f9f5e6bcf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b55464ce-47ca-4dac-baee-38300501bc0a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.63349151611328, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0075791217386722565, \"Height\": 0.0019546712283045053, \"Left\": 0.5640000700950623, \"Top\": 0.31475120782852173}, \"Polygon\": [{\"X\": 0.5640000700950623, \"Y\": 0.31475120782852173}, {\"X\": 0.5715792179107666, \"Y\": 0.31475120782852173}, {\"X\": 0.5715792179107666, \"Y\": 0.3167058825492859}, {\"X\": 0.5640000700950623, \"Y\": 0.3167058825492859}]}, \"Id\": \"ea8e2d97-2376-4a22-8e80-3373bc3d4176\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40498b33-e51d-4d5c-889a-020d784e7464\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.74375915527344, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007873276248574257, \"Height\": 0.0018431192729622126, \"Left\": 0.6351345181465149, \"Top\": 0.31481948494911194}, \"Polygon\": [{\"X\": 0.6351345181465149, \"Y\": 0.31481948494911194}, {\"X\": 0.6430078148841858, \"Y\": 0.31481948494911194}, {\"X\": 0.6430078148841858, \"Y\": 0.31666260957717896}, {\"X\": 0.6351345181465149, \"Y\": 0.31666260957717896}]}, \"Id\": \"a19b5518-8bc9-4679-9a81-a9fdf003f7d2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"df146383-d372-46a4-aa85-f26199eb2c62\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.25279235839844, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008081446401774883, \"Height\": 0.0019014892168343067, \"Left\": 0.7063969373703003, \"Top\": 0.3147740066051483}, \"Polygon\": [{\"X\": 0.7063969373703003, \"Y\": 0.3147740066051483}, {\"X\": 0.7144783735275269, \"Y\": 0.3147740066051483}, {\"X\": 0.7144783735275269, \"Y\": 0.31667548418045044}, {\"X\": 0.7063969373703003, \"Y\": 0.31667548418045044}]}, \"Id\": \"04d2b5e4-8ae3-498f-a2d8-d095b7be59db\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6495d038-e647-4411-a86a-547bc21019c6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.17179870605469, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00791880115866661, \"Height\": 0.0017930298345163465, \"Left\": 0.7874245047569275, \"Top\": 0.3148689866065979}, \"Polygon\": [{\"X\": 0.7874245047569275, \"Y\": 0.3148689866065979}, {\"X\": 0.795343279838562, \"Y\": 0.3148689866065979}, {\"X\": 0.795343279838562, \"Y\": 0.3166620135307312}, {\"X\": 0.7874245047569275, \"Y\": 0.3166620135307312}]}, \"Id\": \"d175a9e3-4bfc-433d-9c30-8d398c01cfed\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9925767-1eb9-47af-ad91-997c2bea152a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.72509765625, \"Text\": \"3.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018540414050221443, \"Height\": 0.007778889965265989, \"Left\": 0.8474037051200867, \"Top\": 0.3110816478729248}, \"Polygon\": [{\"X\": 0.8474037051200867, \"Y\": 0.3110816478729248}, {\"X\": 0.8659441471099854, \"Y\": 0.3110816478729248}, {\"X\": 0.8659441471099854, \"Y\": 0.3188605308532715}, {\"X\": 0.8474037051200867, \"Y\": 0.3188605308532715}]}, \"Id\": \"95fda170-d54e-4616-982c-3296ecf7843c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dd016530-e6c3-44b3-86f2-865f9825851a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.61853790283203, \"Text\": \"3.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018389567732810974, \"Height\": 0.007727071177214384, \"Left\": 0.9188397526741028, \"Top\": 0.3111094534397125}, \"Polygon\": [{\"X\": 0.9188397526741028, \"Y\": 0.3111094534397125}, {\"X\": 0.937229335308075, \"Y\": 0.3111094534397125}, {\"X\": 0.937229335308075, \"Y\": 0.3188365399837494}, {\"X\": 0.9188397526741028, \"Y\": 0.3188365399837494}]}, \"Id\": \"7750ebbb-a06d-42cf-bf43-d69db4bca89b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"441d0877-681d-41f3-8cff-9c533360d8f2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6407470703125, \"Text\": \"Company and subsidiaries\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15773451328277588, \"Height\": 0.009688273072242737, \"Left\": 0.09492237120866776, \"Top\": 0.32455894351005554}, \"Polygon\": [{\"X\": 0.09492237120866776, \"Y\": 0.32455894351005554}, {\"X\": 0.25265687704086304, \"Y\": 0.32455894351005554}, {\"X\": 0.25265687704086304, \"Y\": 0.3342472016811371}, {\"X\": 0.09492237120866776, \"Y\": 0.3342472016811371}]}, \"Id\": \"f1e27629-1ffe-41c6-8574-000e8b9c0c53\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c315e3db-1899-41d3-b421-d3e43f01d4f6\", \"17d96162-f9a3-4b05-9c41-d0fba5b552fc\", \"3eba4335-7935-4531-a63c-3613d25c3616\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74483489990234, \"Text\": \"188.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03361589461565018, \"Height\": 0.007887959480285645, \"Left\": 0.5375874638557434, \"Top\": 0.3247760832309723}, \"Polygon\": [{\"X\": 0.5375874638557434, \"Y\": 0.3247760832309723}, {\"X\": 0.571203351020813, \"Y\": 0.3247760832309723}, {\"X\": 0.571203351020813, \"Y\": 0.33266404271125793}, {\"X\": 0.5375874638557434, \"Y\": 0.33266404271125793}]}, \"Id\": \"86b739d2-6ebc-458b-bd5c-1d780de0f7d6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79fbb681-e214-4604-89f8-57b550dfd4a9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4009017944336, \"Text\": \"(131.2)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04129631072282791, \"Height\": 0.009623962454497814, \"Left\": 0.6056102514266968, \"Top\": 0.3246347904205322}, \"Polygon\": [{\"X\": 0.6056102514266968, \"Y\": 0.3246347904205322}, {\"X\": 0.6469066143035889, \"Y\": 0.3246347904205322}, {\"X\": 0.6469066143035889, \"Y\": 0.3342587351799011}, {\"X\": 0.6056102514266968, \"Y\": 0.3342587351799011}]}, \"Id\": \"9a76254d-4574-46d2-b3e2-9e48d75d0017\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"874f5901-68cd-4920-839e-f8e830adf162\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69491577148438, \"Text\": \"57.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02701713517308235, \"Height\": 0.007826924324035645, \"Left\": 0.6871832013130188, \"Top\": 0.3246620297431946}, \"Polygon\": [{\"X\": 0.6871832013130188, \"Y\": 0.3246620297431946}, {\"X\": 0.7142003774642944, \"Y\": 0.3246620297431946}, {\"X\": 0.7142003774642944, \"Y\": 0.3324889540672302}, {\"X\": 0.6871832013130188, \"Y\": 0.3324889540672302}]}, \"Id\": \"6fe63ebf-32b7-464d-8afa-226a7414769a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8dbeff82-50c8-4957-a270-180674ea6ef6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83267974853516, \"Text\": \"124.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03263536095619202, \"Height\": 0.007789082825183868, \"Left\": 0.762202799320221, \"Top\": 0.3247644901275635}, \"Polygon\": [{\"X\": 0.762202799320221, \"Y\": 0.3247644901275635}, {\"X\": 0.7948381304740906, \"Y\": 0.3247644901275635}, {\"X\": 0.7948381304740906, \"Y\": 0.33255356550216675}, {\"X\": 0.762202799320221, \"Y\": 0.33255356550216675}]}, \"Id\": \"054caf64-d05e-403b-97fe-69c297bef147\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"68389c04-4278-48e4-b9e4-8e58fbfb47f6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.54593658447266, \"Text\": \"(15.2)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032606009393930435, \"Height\": 0.009602966718375683, \"Left\": 0.8375903964042664, \"Top\": 0.32470619678497314}, \"Polygon\": [{\"X\": 0.8375903964042664, \"Y\": 0.32470619678497314}, {\"X\": 0.8701964020729065, \"Y\": 0.32470619678497314}, {\"X\": 0.8701964020729065, \"Y\": 0.3343091607093811}, {\"X\": 0.8375903964042664, \"Y\": 0.3343091607093811}]}, \"Id\": \"af262539-ca28-455c-8f8e-7628af4e5e70\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f03080e-925e-43f1-be58-9e86b3d6d2c2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68413543701172, \"Text\": \"109.7\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03231329470872879, \"Height\": 0.0077249957248568535, \"Left\": 0.9050179123878479, \"Top\": 0.3247796893119812}, \"Polygon\": [{\"X\": 0.9050179123878479, \"Y\": 0.3247796893119812}, {\"X\": 0.9373311996459961, \"Y\": 0.3247796893119812}, {\"X\": 0.9373311996459961, \"Y\": 0.3325046896934509}, {\"X\": 0.9050179123878479, \"Y\": 0.3325046896934509}]}, \"Id\": \"491c573d-4bfd-4aa5-958c-2281171d744f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f1e857ee-f2dc-4d85-a161-d847f40689dd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.85275268554688, \"Text\": \"Share of joint ventures\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1312398612499237, \"Height\": 0.009576233103871346, \"Left\": 0.09497041255235672, \"Top\": 0.3380216658115387}, \"Polygon\": [{\"X\": 0.09497041255235672, \"Y\": 0.3380216658115387}, {\"X\": 0.22621028125286102, \"Y\": 0.3380216658115387}, {\"X\": 0.22621028125286102, \"Y\": 0.3475978970527649}, {\"X\": 0.09497041255235672, \"Y\": 0.3475978970527649}]}, \"Id\": \"abc87e29-ee9e-4f02-ae3e-71ef1a22ce7e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8fe9bc75-bc6f-41fe-9a1f-4f2779310c42\", \"5788d9fa-a3c3-4bd2-a049-ecfbbf4c9595\", \"ee822cf6-9682-4e5a-9e49-b6f900011f3f\", \"ac99063d-0a10-4023-9f69-93fc35872966\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.93588256835938, \"Text\": \"18\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014530741609632969, \"Height\": 0.007891153916716576, \"Left\": 0.4758918285369873, \"Top\": 0.3380419611930847}, \"Polygon\": [{\"X\": 0.4758918285369873, \"Y\": 0.3380419611930847}, {\"X\": 0.4904225766658783, \"Y\": 0.3380419611930847}, {\"X\": 0.4904225766658783, \"Y\": 0.34593310952186584}, {\"X\": 0.4758918285369873, \"Y\": 0.34593310952186584}]}, \"Id\": \"403fc748-1857-407f-ad9d-d7b786513f51\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2bebc836-9702-4ac7-ace8-9d5fe73db508\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.85167694091797, \"Text\": \"1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018368329852819443, \"Height\": 0.00756638590246439, \"Left\": 0.552592396736145, \"Top\": 0.33823761343955994}, \"Polygon\": [{\"X\": 0.552592396736145, \"Y\": 0.33823761343955994}, {\"X\": 0.5709607005119324, \"Y\": 0.33823761343955994}, {\"X\": 0.5709607005119324, \"Y\": 0.34580400586128235}, {\"X\": 0.552592396736145, \"Y\": 0.34580400586128235}]}, \"Id\": \"30793003-6f9d-4a90-9fc2-fb99cedbf523\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c711c366-b7a1-4557-a8bb-0f21fe860bc9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.19773864746094, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008113963529467583, \"Height\": 0.0020488689187914133, \"Left\": 0.6349955797195435, \"Top\": 0.34178248047828674}, \"Polygon\": [{\"X\": 0.6349955797195435, \"Y\": 0.34178248047828674}, {\"X\": 0.6431095600128174, \"Y\": 0.34178248047828674}, {\"X\": 0.6431095600128174, \"Y\": 0.343831330537796}, {\"X\": 0.6349955797195435, \"Y\": 0.343831330537796}]}, \"Id\": \"7f454dc1-8e69-401e-b106-161d8e023faf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c54948e-67db-41c0-bda5-4f2fd99097d6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81724548339844, \"Text\": \"1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018650397658348083, \"Height\": 0.007723307237029076, \"Left\": 0.6952481269836426, \"Top\": 0.33820077776908875}, \"Polygon\": [{\"X\": 0.6952481269836426, \"Y\": 0.33820077776908875}, {\"X\": 0.7138985395431519, \"Y\": 0.33820077776908875}, {\"X\": 0.7138985395431519, \"Y\": 0.3459240794181824}, {\"X\": 0.6952481269836426, \"Y\": 0.3459240794181824}]}, \"Id\": \"6248c903-c9e8-4bcd-b936-2af6dd74b2a8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"33f7657d-e88d-42f7-a794-80e665326183\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.45983123779297, \"Text\": \"0.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01901465281844139, \"Height\": 0.007829426787793636, \"Left\": 0.7758227586746216, \"Top\": 0.33804821968078613}, \"Polygon\": [{\"X\": 0.7758227586746216, \"Y\": 0.33804821968078613}, {\"X\": 0.7948374152183533, \"Y\": 0.33804821968078613}, {\"X\": 0.7948374152183533, \"Y\": 0.34587764739990234}, {\"X\": 0.7758227586746216, \"Y\": 0.34587764739990234}]}, \"Id\": \"7a652e3b-a66f-4734-8c60-8afd6a16f137\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a18e880c-f3b0-4e7b-934a-bebb53206f79\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.73809814453125, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008228839375078678, \"Height\": 0.0018519693985581398, \"Left\": 0.8585007786750793, \"Top\": 0.34182605147361755}, \"Polygon\": [{\"X\": 0.8585007786750793, \"Y\": 0.34182605147361755}, {\"X\": 0.8667296171188354, \"Y\": 0.34182605147361755}, {\"X\": 0.8667296171188354, \"Y\": 0.3436780273914337}, {\"X\": 0.8585007786750793, \"Y\": 0.3436780273914337}]}, \"Id\": \"1fe3fa6d-2d60-4c14-ab75-530c37bec74f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"359fe1b1-b986-4e4d-a99e-f01a27c55459\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.13957977294922, \"Text\": \"0.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019334418699145317, \"Height\": 0.0077997841872274876, \"Left\": 0.9186416864395142, \"Top\": 0.3381575345993042}, \"Polygon\": [{\"X\": 0.9186416864395142, \"Y\": 0.3381575345993042}, {\"X\": 0.937976062297821, \"Y\": 0.3381575345993042}, {\"X\": 0.937976062297821, \"Y\": 0.34595730900764465}, {\"X\": 0.9186416864395142, \"Y\": 0.34595730900764465}]}, \"Id\": \"4bb34473-7ea5-47fd-9c2b-afadc42e807a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c5882a2-d7a3-488f-b9aa-93b308593f3e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.94933319091797, \"Text\": \"Operating profit/(loss)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.13930246233940125, \"Height\": 0.010054565034806728, \"Left\": 0.09497936815023422, \"Top\": 0.3511260449886322}, \"Polygon\": [{\"X\": 0.09497936815023422, \"Y\": 0.3511260449886322}, {\"X\": 0.23428182303905487, \"Y\": 0.3511260449886322}, {\"X\": 0.23428182303905487, \"Y\": 0.3611806333065033}, {\"X\": 0.09497936815023422, \"Y\": 0.3611806333065033}]}, \"Id\": \"f710bcdd-a306-41e1-8814-d5d34b0d5a10\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"674227e7-c261-42e2-a61c-9b8328272d16\", \"4733588f-64b9-4e2e-b53b-daa5ec4a0168\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90520477294922, \"Text\": \"6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007927922531962395, \"Height\": 0.007875285111367702, \"Left\": 0.4824853837490082, \"Top\": 0.3515893518924713}, \"Polygon\": [{\"X\": 0.4824853837490082, \"Y\": 0.3515893518924713}, {\"X\": 0.4904133081436157, \"Y\": 0.3515893518924713}, {\"X\": 0.4904133081436157, \"Y\": 0.3594646453857422}, {\"X\": 0.4824853837490082, \"Y\": 0.3594646453857422}]}, \"Id\": \"91c5186d-8e3b-4a64-85f1-c3de0def79b7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"336dfc3d-8eef-4173-8525-5f233ce5c2d2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83224487304688, \"Text\": \"189.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03319978713989258, \"Height\": 0.00800349935889244, \"Left\": 0.5379903316497803, \"Top\": 0.3515641391277313}, \"Polygon\": [{\"X\": 0.5379903316497803, \"Y\": 0.3515641391277313}, {\"X\": 0.5711901187896729, \"Y\": 0.3515641391277313}, {\"X\": 0.5711901187896729, \"Y\": 0.3595676124095917}, {\"X\": 0.5379903316497803, \"Y\": 0.3595676124095917}]}, \"Id\": \"6ba493c9-b950-4b6d-bdc4-c7f52dd335e8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"52082ce1-b2cd-429d-8f3d-52f20fdc1137\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34666442871094, \"Text\": \"(131.2)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040984489023685455, \"Height\": 0.009853962808847427, \"Left\": 0.6054872274398804, \"Top\": 0.35134774446487427}, \"Polygon\": [{\"X\": 0.6054872274398804, \"Y\": 0.35134774446487427}, {\"X\": 0.6464717388153076, \"Y\": 0.35134774446487427}, {\"X\": 0.6464717388153076, \"Y\": 0.3612017035484314}, {\"X\": 0.6054872274398804, \"Y\": 0.3612017035484314}]}, \"Id\": \"d37ec4aa-0635-4538-a631-76cb9863eba7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"348190b6-7107-4036-b71b-666ba1d2100b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78372955322266, \"Text\": \"58.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026339273899793625, \"Height\": 0.007808105554431677, \"Left\": 0.6875393390655518, \"Top\": 0.35155078768730164}, \"Polygon\": [{\"X\": 0.6875393390655518, \"Y\": 0.35155078768730164}, {\"X\": 0.7138786315917969, \"Y\": 0.35155078768730164}, {\"X\": 0.7138786315917969, \"Y\": 0.35935887694358826}, {\"X\": 0.6875393390655518, \"Y\": 0.35935887694358826}]}, \"Id\": \"39348812-6b19-41a6-a27f-f25645eeffc0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9deebda3-90de-4c5f-bd67-798db6f060f6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.84358215332031, \"Text\": \"125.8\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03272911533713341, \"Height\": 0.007964721880853176, \"Left\": 0.7619244456291199, \"Top\": 0.3514917492866516}, \"Polygon\": [{\"X\": 0.7619244456291199, \"Y\": 0.3514917492866516}, {\"X\": 0.7946535348892212, \"Y\": 0.3514917492866516}, {\"X\": 0.7946535348892212, \"Y\": 0.35945644974708557}, {\"X\": 0.7619244456291199, \"Y\": 0.35945644974708557}]}, \"Id\": \"a6f14c1c-33f7-4c5d-9fc5-2b59dedf4bfd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f66d1ad-3758-407f-9901-0748f4dfe123\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.4753646850586, \"Text\": \"(15.2)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03225130960345268, \"Height\": 0.009640177711844444, \"Left\": 0.8376351594924927, \"Top\": 0.3513911962509155}, \"Polygon\": [{\"X\": 0.8376351594924927, \"Y\": 0.3513911962509155}, {\"X\": 0.8698864579200745, \"Y\": 0.3513911962509155}, {\"X\": 0.8698864579200745, \"Y\": 0.3610313832759857}, {\"X\": 0.8376351594924927, \"Y\": 0.3610313832759857}]}, \"Id\": \"ea62497c-e8b6-4c72-bccd-e2a4b1974e68\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6938bd92-a48d-42c0-91aa-e3abd9f205a2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78689575195312, \"Text\": \"110.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03330303728580475, \"Height\": 0.007867838256061077, \"Left\": 0.9047603607177734, \"Top\": 0.35160940885543823}, \"Polygon\": [{\"X\": 0.9047603607177734, \"Y\": 0.35160940885543823}, {\"X\": 0.938063383102417, \"Y\": 0.35160940885543823}, {\"X\": 0.938063383102417, \"Y\": 0.3594772517681122}, {\"X\": 0.9047603607177734, \"Y\": 0.3594772517681122}]}, \"Id\": \"5ea41644-b56d-47a9-b7df-747487ed8032\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d19e5f66-2044-4d83-8d86-0451dcc1fbef\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67840576171875, \"Text\": \"Interest payable\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0932496190071106, \"Height\": 0.009315267205238342, \"Left\": 0.09535123407840729, \"Top\": 0.36543217301368713}, \"Polygon\": [{\"X\": 0.09535123407840729, \"Y\": 0.36543217301368713}, {\"X\": 0.18860085308551788, \"Y\": 0.36543217301368713}, {\"X\": 0.18860085308551788, \"Y\": 0.3747474253177643}, {\"X\": 0.09535123407840729, \"Y\": 0.3747474253177643}]}, \"Id\": \"b2ff7d6f-e345-4d86-ba40-1f6c3db7ce11\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d6f33ae8-5fce-4cfb-929f-6effc7cfdc47\", \"b4aee812-4db0-41df-aa14-f61624a160b9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91455078125, \"Text\": \"9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007535726763308048, \"Height\": 0.007834228686988354, \"Left\": 0.4823383688926697, \"Top\": 0.36529138684272766}, \"Polygon\": [{\"X\": 0.4823383688926697, \"Y\": 0.36529138684272766}, {\"X\": 0.48987409472465515, \"Y\": 0.36529138684272766}, {\"X\": 0.48987409472465515, \"Y\": 0.3731256127357483}, {\"X\": 0.4823383688926697, \"Y\": 0.3731256127357483}]}, \"Id\": \"19f8d670-ab4d-4deb-9e25-e7f8e731225c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e28b9e2-b6e2-4dc5-830e-bdab2125e749\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87995147705078, \"Text\": \"(25.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0339425690472126, \"Height\": 0.009546956047415733, \"Left\": 0.541476309299469, \"Top\": 0.36517056822776794}, \"Polygon\": [{\"X\": 0.541476309299469, \"Y\": 0.36517056822776794}, {\"X\": 0.5754188299179077, \"Y\": 0.36517056822776794}, {\"X\": 0.5754188299179077, \"Y\": 0.3747175335884094}, {\"X\": 0.541476309299469, \"Y\": 0.3747175335884094}]}, \"Id\": \"686ec1d0-ed1f-47f3-8796-00178ee03a59\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a0913a1-540d-4365-af53-db84c4e0c44e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.16584014892578, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007846859283745289, \"Height\": 0.002066324930638075, \"Left\": 0.6351912617683411, \"Top\": 0.36872708797454834}, \"Polygon\": [{\"X\": 0.6351912617683411, \"Y\": 0.36872708797454834}, {\"X\": 0.6430381536483765, \"Y\": 0.36872708797454834}, {\"X\": 0.6430381536483765, \"Y\": 0.3707934021949768}, {\"X\": 0.6351912617683411, \"Y\": 0.3707934021949768}]}, \"Id\": \"0fb83f5e-209b-4013-b45d-7f947855826c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ee934547-7dc3-4a36-86ff-8e9d5c45979f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83663177490234, \"Text\": \"(25.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03329463303089142, \"Height\": 0.009210611693561077, \"Left\": 0.6843904256820679, \"Top\": 0.3652222156524658}, \"Polygon\": [{\"X\": 0.6843904256820679, \"Y\": 0.3652222156524658}, {\"X\": 0.7176850438117981, \"Y\": 0.3652222156524658}, {\"X\": 0.7176850438117981, \"Y\": 0.37443283200263977}, {\"X\": 0.6843904256820679, \"Y\": 0.37443283200263977}]}, \"Id\": \"91a9c615-fa0c-435c-a32c-e63a7fd73729\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e324c427-d6df-4345-935c-41c74e125224\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.79903411865234, \"Text\": \"(6.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025278454646468163, \"Height\": 0.009208292700350285, \"Left\": 0.7737440466880798, \"Top\": 0.3652810752391815}, \"Polygon\": [{\"X\": 0.7737440466880798, \"Y\": 0.3652810752391815}, {\"X\": 0.7990224957466125, \"Y\": 0.3652810752391815}, {\"X\": 0.7990224957466125, \"Y\": 0.37448936700820923}, {\"X\": 0.7737440466880798, \"Y\": 0.37448936700820923}]}, \"Id\": \"260921ce-e861-4413-bba8-d64e78b63a01\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f6b5661-5292-4dce-b283-d2fd8cfdf8f9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.66824340820312, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007740155793726444, \"Height\": 0.0018586019286885858, \"Left\": 0.8588240742683411, \"Top\": 0.368976354598999}, \"Polygon\": [{\"X\": 0.8588240742683411, \"Y\": 0.368976354598999}, {\"X\": 0.8665642738342285, \"Y\": 0.368976354598999}, {\"X\": 0.8665642738342285, \"Y\": 0.37083494663238525}, {\"X\": 0.8588240742683411, \"Y\": 0.37083494663238525}]}, \"Id\": \"2e87f1ff-df91-4107-a13c-28c814ddadf6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e79752f4-ffd7-45bb-a556-411f809004ba\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82418060302734, \"Text\": \"(6.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0249534510076046, \"Height\": 0.009342691861093044, \"Left\": 0.916602611541748, \"Top\": 0.36523351073265076}, \"Polygon\": [{\"X\": 0.916602611541748, \"Y\": 0.36523351073265076}, {\"X\": 0.9415560364723206, \"Y\": 0.36523351073265076}, {\"X\": 0.9415560364723206, \"Y\": 0.374576210975647}, {\"X\": 0.916602611541748, \"Y\": 0.374576210975647}]}, \"Id\": \"5e76ce91-3841-47a5-a385-f9f6f60fdefb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ecf9ff9f-c6ce-4015-a3f2-4209abd97b82\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7028579711914, \"Text\": \"Interest receivable\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.1070532575249672, \"Height\": 0.00783215370029211, \"Left\": 0.09551107883453369, \"Top\": 0.3786364197731018}, \"Polygon\": [{\"X\": 0.09551107883453369, \"Y\": 0.3786364197731018}, {\"X\": 0.2025643289089203, \"Y\": 0.3786364197731018}, {\"X\": 0.2025643289089203, \"Y\": 0.3864685893058777}, {\"X\": 0.09551107883453369, \"Y\": 0.3864685893058777}]}, \"Id\": \"df5246a8-761b-44ff-9dc3-81782a05bdfa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"836a714a-9c5c-41f6-8a8f-83a2fe2e2af9\", \"7452345b-e638-4c5c-8096-90b2eca8f562\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91573333740234, \"Text\": \"9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007473454345017672, \"Height\": 0.007656697649508715, \"Left\": 0.4824961721897125, \"Top\": 0.37877753376960754}, \"Polygon\": [{\"X\": 0.4824961721897125, \"Y\": 0.37877753376960754}, {\"X\": 0.4899696409702301, \"Y\": 0.37877753376960754}, {\"X\": 0.4899696409702301, \"Y\": 0.38643425703048706}, {\"X\": 0.4824961721897125, \"Y\": 0.38643425703048706}]}, \"Id\": \"3b0339e6-35f5-4cff-8937-1e024f5371e8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"947a550b-f9d3-4656-987c-0af508398a42\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78924560546875, \"Text\": \"1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017802927643060684, \"Height\": 0.00734094250947237, \"Left\": 0.5529153347015381, \"Top\": 0.3789064884185791}, \"Polygon\": [{\"X\": 0.5529153347015381, \"Y\": 0.3789064884185791}, {\"X\": 0.5707182288169861, \"Y\": 0.3789064884185791}, {\"X\": 0.5707182288169861, \"Y\": 0.3862474262714386}, {\"X\": 0.5529153347015381, \"Y\": 0.3862474262714386}]}, \"Id\": \"10ff6900-e931-48ba-ab12-b3c28cc7dc51\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23501c1c-547a-4045-a2c2-635c565dff23\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.66324615478516, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007712990511208773, \"Height\": 0.0018598225433379412, \"Left\": 0.6353184580802917, \"Top\": 0.38243916630744934}, \"Polygon\": [{\"X\": 0.6353184580802917, \"Y\": 0.38243916630744934}, {\"X\": 0.6430314779281616, \"Y\": 0.38243916630744934}, {\"X\": 0.6430314779281616, \"Y\": 0.38429898023605347}, {\"X\": 0.6353184580802917, \"Y\": 0.38429898023605347}]}, \"Id\": \"fa19cb04-888f-4afb-835e-c3f7d5156885\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a675146d-0091-4341-bf7a-f665406f35c1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82146453857422, \"Text\": \"1.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01847267337143421, \"Height\": 0.007711018901318312, \"Left\": 0.695378303527832, \"Top\": 0.3786568343639374}, \"Polygon\": [{\"X\": 0.695378303527832, \"Y\": 0.3786568343639374}, {\"X\": 0.7138509750366211, \"Y\": 0.3786568343639374}, {\"X\": 0.7138509750366211, \"Y\": 0.3863678276538849}, {\"X\": 0.695378303527832, \"Y\": 0.3863678276538849}]}, \"Id\": \"3fb08546-bedd-4975-93f4-2257e9de962f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"526cb58e-f6ab-409e-a555-6fd66300b828\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78868103027344, \"Text\": \"0.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018837101757526398, \"Height\": 0.00769755057990551, \"Left\": 0.7758309245109558, \"Top\": 0.378774493932724}, \"Polygon\": [{\"X\": 0.7758309245109558, \"Y\": 0.378774493932724}, {\"X\": 0.7946680188179016, \"Y\": 0.378774493932724}, {\"X\": 0.7946680188179016, \"Y\": 0.38647204637527466}, {\"X\": 0.7758309245109558, \"Y\": 0.38647204637527466}]}, \"Id\": \"f68692d3-45d6-487f-95c4-7dd9f5f3bff7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d38cd24-145c-43be-b114-587167cb1332\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 94.90506744384766, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008004266768693924, \"Height\": 0.0016709391493350267, \"Left\": 0.8586991429328918, \"Top\": 0.38246333599090576}, \"Polygon\": [{\"X\": 0.8586991429328918, \"Y\": 0.38246333599090576}, {\"X\": 0.8667033910751343, \"Y\": 0.38246333599090576}, {\"X\": 0.8667033910751343, \"Y\": 0.3841342628002167}, {\"X\": 0.8586991429328918, \"Y\": 0.3841342628002167}]}, \"Id\": \"c24c1bb0-2a8f-4457-b7fb-afc9482bab1c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e3900d3-25ef-48ec-a491-199ab0a6ac32\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76028442382812, \"Text\": \"0.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01895284093916416, \"Height\": 0.007596516981720924, \"Left\": 0.918755292892456, \"Top\": 0.3788030743598938}, \"Polygon\": [{\"X\": 0.918755292892456, \"Y\": 0.3788030743598938}, {\"X\": 0.9377081394195557, \"Y\": 0.3788030743598938}, {\"X\": 0.9377081394195557, \"Y\": 0.3863995671272278}, {\"X\": 0.918755292892456, \"Y\": 0.3863995671272278}]}, \"Id\": \"357e2046-f89f-4a0f-809c-3073c98e6757\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d58cef6-a73b-4c42-b946-4ff4eb515d18\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8718032836914, \"Text\": \"Fair value loss on unhedged interest derivatives\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.278319388628006, \"Height\": 0.00953458622097969, \"Left\": 0.09497206658124924, \"Top\": 0.3919545114040375}, \"Polygon\": [{\"X\": 0.09497206658124924, \"Y\": 0.3919545114040375}, {\"X\": 0.3732914328575134, \"Y\": 0.3919545114040375}, {\"X\": 0.3732914328575134, \"Y\": 0.40148910880088806}, {\"X\": 0.09497206658124924, \"Y\": 0.40148910880088806}]}, \"Id\": \"e0efb8c6-372b-42e2-9c3d-a2321a1a40c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c7c673dd-1e22-437a-8a41-028497a0b22a\", \"5b9cd601-dcb3-4208-8f59-55119c9d7392\", \"8167c823-4bf8-425b-a99b-f41257cce8fe\", \"d8d58732-5408-4829-83bb-8fa46e84d143\", \"4a014a74-1333-468c-864d-01935c19ee93\", \"8b02ac70-31bc-4c3e-808b-11b66a884a86\", \"d90ba1d1-8ffe-4605-a93d-23d162477da5\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71642303466797, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007158292923122644, \"Height\": 0.007317138835787773, \"Left\": 0.4826982319355011, \"Top\": 0.3922484219074249}, \"Polygon\": [{\"X\": 0.4826982319355011, \"Y\": 0.3922484219074249}, {\"X\": 0.4898565411567688, \"Y\": 0.3922484219074249}, {\"X\": 0.4898565411567688, \"Y\": 0.39956554770469666}, {\"X\": 0.4826982319355011, \"Y\": 0.39956554770469666}]}, \"Id\": \"21ae4d29-b89c-48f9-ae03-59e4e5270cde\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f6a5572e-f316-41e8-9126-bbb209697c7c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.21141052246094, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007592071313410997, \"Height\": 0.001916381879709661, \"Left\": 0.5639190077781677, \"Top\": 0.3957870304584503}, \"Polygon\": [{\"X\": 0.5639190077781677, \"Y\": 0.3957870304584503}, {\"X\": 0.5715110898017883, \"Y\": 0.3957870304584503}, {\"X\": 0.5715110898017883, \"Y\": 0.3977034091949463}, {\"X\": 0.5639190077781677, \"Y\": 0.3977034091949463}]}, \"Id\": \"6ef4fa39-cf85-4c02-9f10-5a5904a71781\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"871d3bab-c4da-4731-9c89-4743a14fee79\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.3302001953125, \"Text\": \"(3.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02540501393377781, \"Height\": 0.009405191987752914, \"Left\": 0.6208227872848511, \"Top\": 0.3919905722141266}, \"Polygon\": [{\"X\": 0.6208227872848511, \"Y\": 0.3919905722141266}, {\"X\": 0.6462277770042419, \"Y\": 0.3919905722141266}, {\"X\": 0.6462277770042419, \"Y\": 0.4013957381248474}, {\"X\": 0.6208227872848511, \"Y\": 0.4013957381248474}]}, \"Id\": \"6218571f-afc3-43ad-9eb4-a9af2c802f74\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c45e4ecf-57a5-426d-a59d-0ffaea5c26db\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5672836303711, \"Text\": \"(3.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025483401492238045, \"Height\": 0.009583414532244205, \"Left\": 0.6922163963317871, \"Top\": 0.392076700925827}, \"Polygon\": [{\"X\": 0.6922163963317871, \"Y\": 0.392076700925827}, {\"X\": 0.7176997661590576, \"Y\": 0.392076700925827}, {\"X\": 0.7176997661590576, \"Y\": 0.40166011452674866}, {\"X\": 0.6922163963317871, \"Y\": 0.40166011452674866}]}, \"Id\": \"518c1507-f9ea-4ce7-b173-d3b948a991e6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e0f46e1-8135-4a86-af9f-e67dd3f898d4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 94.37847137451172, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0075395251624286175, \"Height\": 0.0018017170950770378, \"Left\": 0.7875285744667053, \"Top\": 0.3957846164703369}, \"Polygon\": [{\"X\": 0.7875285744667053, \"Y\": 0.3957846164703369}, {\"X\": 0.7950681447982788, \"Y\": 0.3957846164703369}, {\"X\": 0.7950681447982788, \"Y\": 0.3975863456726074}, {\"X\": 0.7875285744667053, \"Y\": 0.3975863456726074}]}, \"Id\": \"aabb9dd7-df05-4d82-b813-2c934576a594\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"377dcee0-873c-4f98-927a-daffc4bb888e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90859985351562, \"Text\": \"(0.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02497727796435356, \"Height\": 0.009098144248127937, \"Left\": 0.8451891541481018, \"Top\": 0.39216750860214233}, \"Polygon\": [{\"X\": 0.8451891541481018, \"Y\": 0.39216750860214233}, {\"X\": 0.8701664805412292, \"Y\": 0.39216750860214233}, {\"X\": 0.8701664805412292, \"Y\": 0.4012656509876251}, {\"X\": 0.8451891541481018, \"Y\": 0.4012656509876251}]}, \"Id\": \"d8e5f59e-e152-4112-8e75-c7548acdc527\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4f8030e-31a4-4395-9fab-92efcfb46018\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8900375366211, \"Text\": \"(0.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024426782503724098, \"Height\": 0.008982828818261623, \"Left\": 0.9168094992637634, \"Top\": 0.3922017812728882}, \"Polygon\": [{\"X\": 0.9168094992637634, \"Y\": 0.3922017812728882}, {\"X\": 0.9412363171577454, \"Y\": 0.3922017812728882}, {\"X\": 0.9412363171577454, \"Y\": 0.401184618473053}, {\"X\": 0.9168094992637634, \"Y\": 0.401184618473053}]}, \"Id\": \"c7513bf1-3b89-48ed-95e1-029c27f98547\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"abddef44-437e-4009-bab7-7dd1930f30d4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90557861328125, \"Text\": \"Loss on extinguishment of financing facilities\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2617703974246979, \"Height\": 0.009598429314792156, \"Left\": 0.09529523551464081, \"Top\": 0.40562325716018677}, \"Polygon\": [{\"X\": 0.09529523551464081, \"Y\": 0.40562325716018677}, {\"X\": 0.3570656478404999, \"Y\": 0.40562325716018677}, {\"X\": 0.3570656478404999, \"Y\": 0.4152216911315918}, {\"X\": 0.09529523551464081, \"Y\": 0.4152216911315918}]}, \"Id\": \"4a26b1bd-580a-48b1-ab20-a9ee38847025\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4aa381c-a618-4e89-a74a-7466b9952e03\", \"072dae4c-cfb6-4c61-87d8-cacf78363170\", \"ff119535-1bfe-4a9f-a80f-a38bdaca63fb\", \"42a6ce3b-d3e5-430a-8021-c938d98b1bed\", \"5ed745fb-c4fe-4d96-b870-eaae9492d2b4\", \"26f3a9bb-2a9d-4da5-ad3c-94befb09b638\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76979064941406, \"Text\": \"4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007311269175261259, \"Height\": 0.0074011231772601604, \"Left\": 0.482480525970459, \"Top\": 0.40582120418548584}, \"Polygon\": [{\"X\": 0.482480525970459, \"Y\": 0.40582120418548584}, {\"X\": 0.48979178071022034, \"Y\": 0.40582120418548584}, {\"X\": 0.48979178071022034, \"Y\": 0.4132223427295685}, {\"X\": 0.482480525970459, \"Y\": 0.4132223427295685}]}, \"Id\": \"b6299e73-496b-46ce-82c2-553a408a78ff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8c48e83d-ab7d-4010-9108-e35df0f4d400\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 94.531494140625, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007636099588125944, \"Height\": 0.001978678395971656, \"Left\": 0.5640626549720764, \"Top\": 0.40943682193756104}, \"Polygon\": [{\"X\": 0.5640626549720764, \"Y\": 0.40943682193756104}, {\"X\": 0.5716987252235413, \"Y\": 0.40943682193756104}, {\"X\": 0.5716987252235413, \"Y\": 0.4114154875278473}, {\"X\": 0.5640626549720764, \"Y\": 0.4114154875278473}]}, \"Id\": \"1ee37e2c-fcfe-43d7-b179-d62af9eb54af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a44411af-d990-4c46-a93f-ee4b971e73a7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.69995880126953, \"Text\": \"(4.9)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02593519352376461, \"Height\": 0.009436523541808128, \"Left\": 0.6205706596374512, \"Top\": 0.405607134103775}, \"Polygon\": [{\"X\": 0.6205706596374512, \"Y\": 0.405607134103775}, {\"X\": 0.6465058326721191, \"Y\": 0.405607134103775}, {\"X\": 0.6465058326721191, \"Y\": 0.4150436520576477}, {\"X\": 0.6205706596374512, \"Y\": 0.4150436520576477}]}, \"Id\": \"7a965ab7-aef0-464b-90e1-314f3b8972f7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92aff047-6f5b-440b-981e-0ab6adb0a10c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71830749511719, \"Text\": \"(4.9)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02574751153588295, \"Height\": 0.009479695931077003, \"Left\": 0.6920820474624634, \"Top\": 0.40553316473960876}, \"Polygon\": [{\"X\": 0.6920820474624634, \"Y\": 0.40553316473960876}, {\"X\": 0.7178295254707336, \"Y\": 0.40553316473960876}, {\"X\": 0.7178295254707336, \"Y\": 0.4150128662586212}, {\"X\": 0.6920820474624634, \"Y\": 0.4150128662586212}]}, \"Id\": \"bff86b4f-b468-4c24-ba6e-b253a3b1bdb9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e4dfe757-c451-4486-ab7f-2fcf67904e64\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 94.39665985107422, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00788202416151762, \"Height\": 0.001883463584817946, \"Left\": 0.7875592708587646, \"Top\": 0.40944334864616394}, \"Polygon\": [{\"X\": 0.7875592708587646, \"Y\": 0.40944334864616394}, {\"X\": 0.7954412698745728, \"Y\": 0.40944334864616394}, {\"X\": 0.7954412698745728, \"Y\": 0.4113268256187439}, {\"X\": 0.7875592708587646, \"Y\": 0.4113268256187439}]}, \"Id\": \"279d0543-445f-4ca6-a4c5-3bd740a2ad89\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9cf5ae0-5dac-4216-ac52-6bd549382247\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.82286071777344, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00804219488054514, \"Height\": 0.0018103027250617743, \"Left\": 0.8587616682052612, \"Top\": 0.40943053364753723}, \"Polygon\": [{\"X\": 0.8587616682052612, \"Y\": 0.40943053364753723}, {\"X\": 0.8668038249015808, \"Y\": 0.40943053364753723}, {\"X\": 0.8668038249015808, \"Y\": 0.4112408459186554}, {\"X\": 0.8587616682052612, \"Y\": 0.4112408459186554}]}, \"Id\": \"49cec2a8-cdbb-4bfc-bb2e-1bec49a0c435\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28f0b3d2-52ca-42c0-a6f7-797b0150499c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.03498077392578, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007856873795390129, \"Height\": 0.0018858235562220216, \"Left\": 0.9301654696464539, \"Top\": 0.4094167947769165}, \"Polygon\": [{\"X\": 0.9301654696464539, \"Y\": 0.4094167947769165}, {\"X\": 0.9380223751068115, \"Y\": 0.4094167947769165}, {\"X\": 0.9380223751068115, \"Y\": 0.4113026261329651}, {\"X\": 0.9301654696464539, \"Y\": 0.4113026261329651}]}, \"Id\": \"0870fea0-1e0a-43a7-a90e-61bee1c3abb4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7745ddd4-101b-490d-9ecb-596b2c9582ae\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.68512725830078, \"Text\": \"(24.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03331207484006882, \"Height\": 0.009552164934575558, \"Left\": 0.54190993309021, \"Top\": 0.42073875665664673}, \"Polygon\": [{\"X\": 0.54190993309021, \"Y\": 0.42073875665664673}, {\"X\": 0.5752220153808594, \"Y\": 0.42073875665664673}, {\"X\": 0.5752220153808594, \"Y\": 0.43029093742370605}, {\"X\": 0.54190993309021, \"Y\": 0.43029093742370605}]}, \"Id\": \"6afa4d1c-1213-4da2-b425-2e16385f5315\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db762c11-bb67-49ac-a098-361463b30f14\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.85955810546875, \"Text\": \"(8.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025726160034537315, \"Height\": 0.009579060599207878, \"Left\": 0.620670735836029, \"Top\": 0.4206588566303253}, \"Polygon\": [{\"X\": 0.620670735836029, \"Y\": 0.4206588566303253}, {\"X\": 0.6463968753814697, \"Y\": 0.4206588566303253}, {\"X\": 0.6463968753814697, \"Y\": 0.43023791909217834}, {\"X\": 0.620670735836029, \"Y\": 0.43023791909217834}]}, \"Id\": \"20fb1a1a-29fd-46be-aca9-1ed3db4130b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e03a9c4-3aa7-499f-8997-1f0bf702965e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.65492248535156, \"Text\": \"(32.8)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0330403633415699, \"Height\": 0.009613200090825558, \"Left\": 0.6846081614494324, \"Top\": 0.4207087457180023}, \"Polygon\": [{\"X\": 0.6846081614494324, \"Y\": 0.4207087457180023}, {\"X\": 0.7176485657691956, \"Y\": 0.4207087457180023}, {\"X\": 0.7176485657691956, \"Y\": 0.43032193183898926}, {\"X\": 0.6846081614494324, \"Y\": 0.43032193183898926}]}, \"Id\": \"18d8cb79-ec54-489b-8c80-a283962fe3a2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"86480ba5-015f-4301-8e89-3713c4ee7fe8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90704345703125, \"Text\": \"(5.8)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02520841173827648, \"Height\": 0.0093356529250741, \"Left\": 0.773819088935852, \"Top\": 0.4207591116428375}, \"Polygon\": [{\"X\": 0.773819088935852, \"Y\": 0.4207591116428375}, {\"X\": 0.7990275025367737, \"Y\": 0.4207591116428375}, {\"X\": 0.7990275025367737, \"Y\": 0.43009477853775024}, {\"X\": 0.773819088935852, \"Y\": 0.43009477853775024}]}, \"Id\": \"c4e3d083-37bf-4edd-ba6a-38a57d12a85b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c83aa287-1d33-4c80-ab8f-b3b8c37c9240\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8897933959961, \"Text\": \"(0.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02477814443409443, \"Height\": 0.009310669265687466, \"Left\": 0.845470130443573, \"Top\": 0.4208272397518158}, \"Polygon\": [{\"X\": 0.845470130443573, \"Y\": 0.4208272397518158}, {\"X\": 0.8702483177185059, \"Y\": 0.4208272397518158}, {\"X\": 0.8702483177185059, \"Y\": 0.43013790249824524}, {\"X\": 0.845470130443573, \"Y\": 0.43013790249824524}]}, \"Id\": \"c464b93d-6b16-4cdb-83ad-60b220c843c0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c002164e-62b1-421e-8c12-a20562578361\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57196044921875, \"Text\": \"(6.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024477314203977585, \"Height\": 0.009408813901245594, \"Left\": 0.9167794585227966, \"Top\": 0.42075175046920776}, \"Polygon\": [{\"X\": 0.9167794585227966, \"Y\": 0.42075175046920776}, {\"X\": 0.9412567615509033, \"Y\": 0.42075175046920776}, {\"X\": 0.9412567615509033, \"Y\": 0.4301605522632599}, {\"X\": 0.9167794585227966, \"Y\": 0.4301605522632599}]}, \"Id\": \"92fd68f9-9c55-4a7b-bf1a-729155fb8535\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a0acf034-b7b6-4434-bbf6-a880b2193c53\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90225219726562, \"Text\": \"Net interest expense on defined benefit obligations\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.2991043031215668, \"Height\": 0.009600219316780567, \"Left\": 0.09522856026887894, \"Top\": 0.4343869090080261}, \"Polygon\": [{\"X\": 0.09522856026887894, \"Y\": 0.4343869090080261}, {\"X\": 0.3943328559398651, \"Y\": 0.4343869090080261}, {\"X\": 0.3943328559398651, \"Y\": 0.4439871311187744}, {\"X\": 0.09522856026887894, \"Y\": 0.4439871311187744}]}, \"Id\": \"8c057b5f-e324-453e-b879-e918b80b4c02\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b525a4d7-4486-4130-8512-f2f0a5820067\", \"58432b18-9925-43f9-b260-86b42855de9e\", \"226f4c99-ff19-4bbe-8ea6-b5f4a2bc4ff6\", \"f682f480-e381-4c13-8a99-8a7347bf554e\", \"4df4184d-5e90-4485-9555-80d291091f47\", \"5a547ea1-d33b-45b1-9853-f0bc594871b5\", \"1abfc87b-dbd5-45d3-b641-96861d0dcce8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88200378417969, \"Text\": \"9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0077141993679106236, \"Height\": 0.007761474698781967, \"Left\": 0.4824124872684479, \"Top\": 0.43449923396110535}, \"Polygon\": [{\"X\": 0.4824124872684479, \"Y\": 0.43449923396110535}, {\"X\": 0.49012669920921326, \"Y\": 0.43449923396110535}, {\"X\": 0.49012669920921326, \"Y\": 0.4422607123851776}, {\"X\": 0.4824124872684479, \"Y\": 0.4422607123851776}]}, \"Id\": \"dc46ba5c-5dc5-4103-948b-608c5d3f8752\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40c4c99e-2307-4be2-972a-c17ed5fbeb6f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.87702178955078, \"Text\": \"(3.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025674592703580856, \"Height\": 0.009676880203187466, \"Left\": 0.5494852662086487, \"Top\": 0.4345289170742035}, \"Polygon\": [{\"X\": 0.5494852662086487, \"Y\": 0.4345289170742035}, {\"X\": 0.5751598477363586, \"Y\": 0.4345289170742035}, {\"X\": 0.5751598477363586, \"Y\": 0.4442058205604553}, {\"X\": 0.5494852662086487, \"Y\": 0.4442058205604553}]}, \"Id\": \"bf99f88b-4adb-4225-a8ef-c991dd727578\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cc464db5-5a15-4de3-b5f2-e539ef302333\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.13676452636719, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007723407819867134, \"Height\": 0.0018688557902351022, \"Left\": 0.6352351307868958, \"Top\": 0.4381979703903198}, \"Polygon\": [{\"X\": 0.6352351307868958, \"Y\": 0.4381979703903198}, {\"X\": 0.6429585218429565, \"Y\": 0.4381979703903198}, {\"X\": 0.6429585218429565, \"Y\": 0.4400668144226074}, {\"X\": 0.6352351307868958, \"Y\": 0.4400668144226074}]}, \"Id\": \"63468ef8-b84c-4afe-bc68-74d598373b77\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"88da7e80-4343-40c4-8d48-fba860fa741c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82459259033203, \"Text\": \"(3.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025791769847273827, \"Height\": 0.00940189603716135, \"Left\": 0.6923180818557739, \"Top\": 0.4344998300075531}, \"Polygon\": [{\"X\": 0.6923180818557739, \"Y\": 0.4344998300075531}, {\"X\": 0.7181098461151123, \"Y\": 0.4344998300075531}, {\"X\": 0.7181098461151123, \"Y\": 0.44390174746513367}, {\"X\": 0.6923180818557739, \"Y\": 0.44390174746513367}]}, \"Id\": \"e815d00e-168c-4ec6-9de0-308dd6143a57\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a952ffcd-8826-497f-8571-2576044abf4a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.886474609375, \"Text\": \"(2.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025186944752931595, \"Height\": 0.009623494930565357, \"Left\": 0.7739142775535583, \"Top\": 0.43446049094200134}, \"Polygon\": [{\"X\": 0.7739142775535583, \"Y\": 0.43446049094200134}, {\"X\": 0.7991012334823608, \"Y\": 0.43446049094200134}, {\"X\": 0.7991012334823608, \"Y\": 0.4440839886665344}, {\"X\": 0.7739142775535583, \"Y\": 0.4440839886665344}]}, \"Id\": \"58aa5014-cf33-43fb-9857-00ce01801587\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"afd3c118-170d-4bc8-a833-39599abcb7cc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 96.82352447509766, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008019921369850636, \"Height\": 0.0017706705257296562, \"Left\": 0.8587360978126526, \"Top\": 0.4381748139858246}, \"Polygon\": [{\"X\": 0.8587360978126526, \"Y\": 0.4381748139858246}, {\"X\": 0.866756021976471, \"Y\": 0.4381748139858246}, {\"X\": 0.866756021976471, \"Y\": 0.4399454891681671}, {\"X\": 0.8587360978126526, \"Y\": 0.4399454891681671}]}, \"Id\": \"1da74413-d55c-45b0-9366-6af3b321f6c3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ba0d6a33-88b0-4e1d-9b03-f55afd4bd056\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.86470031738281, \"Text\": \"(2.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025221649557352066, \"Height\": 0.009402303025126457, \"Left\": 0.9165661931037903, \"Top\": 0.4345313012599945}, \"Polygon\": [{\"X\": 0.9165661931037903, \"Y\": 0.4345313012599945}, {\"X\": 0.941787838935852, \"Y\": 0.4345313012599945}, {\"X\": 0.941787838935852, \"Y\": 0.4439336061477661}, {\"X\": 0.9165661931037903, \"Y\": 0.4439336061477661}]}, \"Id\": \"2e47463b-18a8-42a6-8fd9-ad7215a2cc45\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e703792-439d-4144-a977-f55abf863977\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.82295989990234, \"Text\": \"Interest element of lease payments\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.20493954420089722, \"Height\": 0.0095928143709898, \"Left\": 0.09549106657505035, \"Top\": 0.4479019343852997}, \"Polygon\": [{\"X\": 0.09549106657505035, \"Y\": 0.4479019343852997}, {\"X\": 0.3004305958747864, \"Y\": 0.4479019343852997}, {\"X\": 0.3004305958747864, \"Y\": 0.4574947655200958}, {\"X\": 0.09549106657505035, \"Y\": 0.4574947655200958}]}, \"Id\": \"1b2ad8ad-0ca5-408c-8bd1-610ae9cda898\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc02ed77-b629-4760-9fe6-0e2094b020d6\", \"9aaaf360-63f0-4594-afab-5b251e14b841\", \"c319dff5-8f4e-4dd3-92ba-570062c9bee1\", \"bf02f506-c6c2-4db3-98e2-6b02d9093ce7\", \"d9d00927-1f0f-44b2-b040-a2f64d6a627a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90745544433594, \"Text\": \"9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007449713535606861, \"Height\": 0.007824950851500034, \"Left\": 0.48244330286979675, \"Top\": 0.4478728473186493}, \"Polygon\": [{\"X\": 0.48244330286979675, \"Y\": 0.4478728473186493}, {\"X\": 0.48989301919937134, \"Y\": 0.4478728473186493}, {\"X\": 0.48989301919937134, \"Y\": 0.45569780468940735}, {\"X\": 0.48244330286979675, \"Y\": 0.45569780468940735}]}, \"Id\": \"18cf29e0-7630-451e-ae92-68e6b0cc1bf9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"115d276d-afaa-4b3a-9fbc-cbba7d6b49e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36436462402344, \"Text\": \"(1.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02663532830774784, \"Height\": 0.009945068508386612, \"Left\": 0.549113929271698, \"Top\": 0.44804757833480835}, \"Polygon\": [{\"X\": 0.549113929271698, \"Y\": 0.44804757833480835}, {\"X\": 0.5757492780685425, \"Y\": 0.44804757833480835}, {\"X\": 0.5757492780685425, \"Y\": 0.45799264311790466}, {\"X\": 0.549113929271698, \"Y\": 0.45799264311790466}]}, \"Id\": \"6fb11955-987f-4396-af2b-d57f69b8cfca\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3086672-4b07-49f5-993b-028d95b882dd\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.2807388305664, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007889794185757637, \"Height\": 0.0020024413242936134, \"Left\": 0.6350985765457153, \"Top\": 0.45163509249687195}, \"Polygon\": [{\"X\": 0.6350985765457153, \"Y\": 0.45163509249687195}, {\"X\": 0.642988383769989, \"Y\": 0.45163509249687195}, {\"X\": 0.642988383769989, \"Y\": 0.4536375403404236}, {\"X\": 0.6350985765457153, \"Y\": 0.4536375403404236}]}, \"Id\": \"bcbffbef-5e9c-4e4f-8234-6e7a5a08f18d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9c637872-7983-428f-a82d-61fdd632146a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.26640319824219, \"Text\": \"(1.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0259846318513155, \"Height\": 0.009686808101832867, \"Left\": 0.6920921802520752, \"Top\": 0.4478064477443695}, \"Polygon\": [{\"X\": 0.6920921802520752, \"Y\": 0.4478064477443695}, {\"X\": 0.7180768251419067, \"Y\": 0.4478064477443695}, {\"X\": 0.7180768251419067, \"Y\": 0.45749324560165405}, {\"X\": 0.6920921802520752, \"Y\": 0.45749324560165405}]}, \"Id\": \"8cc87b7e-44b0-46e5-a8c8-3f62a2d3d8d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"286db7d2-654c-4b09-b13c-49ccd4ef7877\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.30734252929688, \"Text\": \"(1.1)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025609327480196953, \"Height\": 0.009698730893433094, \"Left\": 0.7737112641334534, \"Top\": 0.4477885365486145}, \"Polygon\": [{\"X\": 0.7737112641334534, \"Y\": 0.4477885365486145}, {\"X\": 0.7993205785751343, \"Y\": 0.4477885365486145}, {\"X\": 0.7993205785751343, \"Y\": 0.4574872553348541}, {\"X\": 0.7737112641334534, \"Y\": 0.4574872553348541}]}, \"Id\": \"a947a5bd-eda8-47f5-99a6-60999772bdfb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0bea15b8-a841-4727-81a6-8cda01468cbe\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 95.71327209472656, \"Text\": \"-\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007562488783150911, \"Height\": 0.001678548171184957, \"Left\": 0.859062671661377, \"Top\": 0.45177578926086426}, \"Polygon\": [{\"X\": 0.859062671661377, \"Y\": 0.45177578926086426}, {\"X\": 0.8666251301765442, \"Y\": 0.45177578926086426}, {\"X\": 0.8666251301765442, \"Y\": 0.4534543454647064}, {\"X\": 0.859062671661377, \"Y\": 0.4534543454647064}]}, \"Id\": \"20b461bf-2ab1-4bb5-a7f1-91aae9fef7e4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c6d83a7-c5cd-4701-8b2d-d6d96e0f48d8\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.19737243652344, \"Text\": \"(1.1)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025594420731067657, \"Height\": 0.009641194716095924, \"Left\": 0.916255533695221, \"Top\": 0.447898268699646}, \"Polygon\": [{\"X\": 0.916255533695221, \"Y\": 0.447898268699646}, {\"X\": 0.941849946975708, \"Y\": 0.447898268699646}, {\"X\": 0.941849946975708, \"Y\": 0.45753946900367737}, {\"X\": 0.916255533695221, \"Y\": 0.45753946900367737}]}, \"Id\": \"cf8f9fd7-de57-4bff-b0c5-ca217b0ce116\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1497f3f-e068-43a9-9da0-1e9bee310db6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77255249023438, \"Text\": \"Finance costs\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08835981041193008, \"Height\": 0.007892130874097347, \"Left\": 0.09590115398168564, \"Top\": 0.46131399273872375}, \"Polygon\": [{\"X\": 0.09590115398168564, \"Y\": 0.46131399273872375}, {\"X\": 0.18426096439361572, \"Y\": 0.46131399273872375}, {\"X\": 0.18426096439361572, \"Y\": 0.4692061245441437}, {\"X\": 0.09590115398168564, \"Y\": 0.4692061245441437}]}, \"Id\": \"dcca59f6-ce5c-43eb-a8c5-58d5a59ddf9f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3280816b-475b-4b16-b96c-5e5ffdc9ad10\", \"a764d356-7790-4b27-bc1c-049cdc2a622e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.25650787353516, \"Text\": \"(29.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033636558800935745, \"Height\": 0.00974991824477911, \"Left\": 0.54166179895401, \"Top\": 0.4610733091831207}, \"Polygon\": [{\"X\": 0.54166179895401, \"Y\": 0.4610733091831207}, {\"X\": 0.5752983093261719, \"Y\": 0.4610733091831207}, {\"X\": 0.5752983093261719, \"Y\": 0.4708232283592224}, {\"X\": 0.54166179895401, \"Y\": 0.4708232283592224}]}, \"Id\": \"e70178a6-0a7a-4a65-abcc-d6ff9c520de4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e12f3ef-f20b-4b42-9001-bd715cbaa158\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.850830078125, \"Text\": \"(8.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025802647694945335, \"Height\": 0.00940799992531538, \"Left\": 0.6207166910171509, \"Top\": 0.46114468574523926}, \"Polygon\": [{\"X\": 0.6207166910171509, \"Y\": 0.46114468574523926}, {\"X\": 0.6465193033218384, \"Y\": 0.46114468574523926}, {\"X\": 0.6465193033218384, \"Y\": 0.4705526828765869}, {\"X\": 0.6207166910171509, \"Y\": 0.4705526828765869}]}, \"Id\": \"6fcceb7d-30eb-4de1-b070-cc9375b028f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a144290d-4184-41f6-a366-1b5503993e16\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07396697998047, \"Text\": \"(38.1)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033016882836818695, \"Height\": 0.009562662802636623, \"Left\": 0.684571385383606, \"Top\": 0.46100544929504395}, \"Polygon\": [{\"X\": 0.684571385383606, \"Y\": 0.46100544929504395}, {\"X\": 0.7175883054733276, \"Y\": 0.46100544929504395}, {\"X\": 0.7175883054733276, \"Y\": 0.47056812047958374}, {\"X\": 0.684571385383606, \"Y\": 0.47056812047958374}]}, \"Id\": \"d9b2144a-5726-47c2-a354-99296e60596c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e40ea02-0ebc-4aa9-a955-b03f31548151\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.6684799194336, \"Text\": \"(9.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02532593533396721, \"Height\": 0.009443603456020355, \"Left\": 0.7736228108406067, \"Top\": 0.4611593782901764}, \"Polygon\": [{\"X\": 0.7736228108406067, \"Y\": 0.4611593782901764}, {\"X\": 0.7989487648010254, \"Y\": 0.4611593782901764}, {\"X\": 0.7989487648010254, \"Y\": 0.47060298919677734}, {\"X\": 0.7736228108406067, \"Y\": 0.47060298919677734}]}, \"Id\": \"be726d28-3f92-4328-9f6f-7e08b01b8adb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b668eae3-f7d0-402c-b6c9-47e0549b319f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.90599822998047, \"Text\": \"(0.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025034889578819275, \"Height\": 0.009232137352228165, \"Left\": 0.8452435731887817, \"Top\": 0.46126866340637207}, \"Polygon\": [{\"X\": 0.8452435731887817, \"Y\": 0.46126866340637207}, {\"X\": 0.8702784776687622, \"Y\": 0.46126866340637207}, {\"X\": 0.8702784776687622, \"Y\": 0.4705008268356323}, {\"X\": 0.8452435731887817, \"Y\": 0.4705008268356323}]}, \"Id\": \"9bb5f403-2c6e-484d-8c1d-b53ec7a02f11\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ae0f2a82-cbc9-4f43-82d5-44ae08633d6e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.34565734863281, \"Text\": \"(10.1)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03252566605806351, \"Height\": 0.009522583335638046, \"Left\": 0.9090339541435242, \"Top\": 0.46108633279800415}, \"Polygon\": [{\"X\": 0.9090339541435242, \"Y\": 0.46108633279800415}, {\"X\": 0.9415596127510071, \"Y\": 0.46108633279800415}, {\"X\": 0.9415596127510071, \"Y\": 0.4706089198589325}, {\"X\": 0.9090339541435242, \"Y\": 0.4706089198589325}]}, \"Id\": \"da319dd9-d21c-4386-84dc-830c2e9ad338\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35678556-f170-4279-897b-1a3f6b26139a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.41944122314453, \"Text\": \"Profit/(loss) before taxation\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.17399699985980988, \"Height\": 0.009587361477315426, \"Left\": 0.09486545622348785, \"Top\": 0.4748344421386719}, \"Polygon\": [{\"X\": 0.09486545622348785, \"Y\": 0.4748344421386719}, {\"X\": 0.26886245608329773, \"Y\": 0.4748344421386719}, {\"X\": 0.26886245608329773, \"Y\": 0.4844217896461487}, {\"X\": 0.09486545622348785, \"Y\": 0.4844217896461487}]}, \"Id\": \"3b105f39-eb36-4790-b8b3-1e4e6cbb973e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da6d2e6b-caf9-4f1e-9a14-53dfe0067f99\", \"e01bdd24-bd75-43f2-922e-a8102d7d972a\", \"76947805-1ba6-46bc-b51a-2bb685cc1f6b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.73147583007812, \"Text\": \"160.0\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033142637461423874, \"Height\": 0.007838460616767406, \"Left\": 0.5380409955978394, \"Top\": 0.4751836657524109}, \"Polygon\": [{\"X\": 0.5380409955978394, \"Y\": 0.4751836657524109}, {\"X\": 0.5711836218833923, \"Y\": 0.4751836657524109}, {\"X\": 0.5711836218833923, \"Y\": 0.48302212357521057}, {\"X\": 0.5380409955978394, \"Y\": 0.48302212357521057}]}, \"Id\": \"68e69a35-1915-4698-a189-84a7dd4a657c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"75eb35b4-63f1-4605-b629-b0a6fc2f4cae\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.4908447265625, \"Text\": \"(139.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040363892912864685, \"Height\": 0.009516764432191849, \"Left\": 0.6062451004981995, \"Top\": 0.474976509809494}, \"Polygon\": [{\"X\": 0.6062451004981995, \"Y\": 0.474976509809494}, {\"X\": 0.6466089487075806, \"Y\": 0.474976509809494}, {\"X\": 0.6466089487075806, \"Y\": 0.48449328541755676}, {\"X\": 0.6062451004981995, \"Y\": 0.48449328541755676}]}, \"Id\": \"c6b95070-4e4d-42dc-ac6a-321312c09ed1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b89f39a1-e995-4887-93cd-598edc7c023f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.83433532714844, \"Text\": \"20.3\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02664557285606861, \"Height\": 0.007751546334475279, \"Left\": 0.6873753666877747, \"Top\": 0.475137859582901}, \"Polygon\": [{\"X\": 0.6873753666877747, \"Y\": 0.475137859582901}, {\"X\": 0.7140209078788757, \"Y\": 0.475137859582901}, {\"X\": 0.7140209078788757, \"Y\": 0.48288941383361816}, {\"X\": 0.6873753666877747, \"Y\": 0.48288941383361816}]}, \"Id\": \"e7fc3adc-01b4-468b-8a24-d50981bb46f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"355ac8de-ae70-44f3-ac52-4c5ae1fc8c9a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7100830078125, \"Text\": \"116.2\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03241712227463722, \"Height\": 0.00785477738827467, \"Left\": 0.7624762654304504, \"Top\": 0.4750935137271881}, \"Polygon\": [{\"X\": 0.7624762654304504, \"Y\": 0.4750935137271881}, {\"X\": 0.7948933839797974, \"Y\": 0.4750935137271881}, {\"X\": 0.7948933839797974, \"Y\": 0.48294827342033386}, {\"X\": 0.7624762654304504, \"Y\": 0.48294827342033386}]}, \"Id\": \"fa5437c0-6152-4a7e-a3ea-5bca4fa0d528\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"67838322-1bcc-4ef1-9861-a728534cef9e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.75312042236328, \"Text\": \"(15.7)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03227243199944496, \"Height\": 0.009388672187924385, \"Left\": 0.837807297706604, \"Top\": 0.4749104380607605}, \"Polygon\": [{\"X\": 0.837807297706604, \"Y\": 0.4749104380607605}, {\"X\": 0.8700796961784363, \"Y\": 0.4749104380607605}, {\"X\": 0.8700796961784363, \"Y\": 0.4842991232872009}, {\"X\": 0.837807297706604, \"Y\": 0.4842991232872009}]}, \"Id\": \"a5d314c8-43cf-4ec8-b47f-b4a5bb1ac0b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0bdb0970-93cd-42a3-935f-4e0f9aa37962\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.62364959716797, \"Text\": \"100.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03289274126291275, \"Height\": 0.008199340663850307, \"Left\": 0.9049378633499146, \"Top\": 0.4749137759208679}, \"Polygon\": [{\"X\": 0.9049378633499146, \"Y\": 0.4749137759208679}, {\"X\": 0.9378305673599243, \"Y\": 0.4749137759208679}, {\"X\": 0.9378305673599243, \"Y\": 0.4831131100654602}, {\"X\": 0.9049378633499146, \"Y\": 0.4831131100654602}]}, \"Id\": \"733b79e4-db70-48d2-85a8-2c767520ba2e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"656c7b7d-bd87-4080-b747-bd8e62f13513\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7252197265625, \"Text\": \"Taxation\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04952417314052582, \"Height\": 0.007908813655376434, \"Left\": 0.09488273411989212, \"Top\": 0.4884416162967682}, \"Polygon\": [{\"X\": 0.09488273411989212, \"Y\": 0.4884416162967682}, {\"X\": 0.14440689980983734, \"Y\": 0.4884416162967682}, {\"X\": 0.14440689980983734, \"Y\": 0.4963504374027252}, {\"X\": 0.09488273411989212, \"Y\": 0.4963504374027252}]}, \"Id\": \"d07177c1-55d2-4992-92da-86f7d275e1cb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cd172da8-cf81-4640-979c-c1c5e9ce4da0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.95510864257812, \"Text\": \"10\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014383981004357338, \"Height\": 0.00800394732505083, \"Left\": 0.47620612382888794, \"Top\": 0.48839452862739563}, \"Polygon\": [{\"X\": 0.47620612382888794, \"Y\": 0.48839452862739563}, {\"X\": 0.4905901253223419, \"Y\": 0.48839452862739563}, {\"X\": 0.4905901253223419, \"Y\": 0.4963984787464142}, {\"X\": 0.47620612382888794, \"Y\": 0.4963984787464142}]}, \"Id\": \"a5e7f3ba-ba66-475c-81ba-f9015af565d7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e5cc27a2-f1ef-426a-bb62-b4ebc492e404\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.39146423339844, \"Text\": \"(37.4)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03332294896245003, \"Height\": 0.009406208992004395, \"Left\": 0.5417194366455078, \"Top\": 0.4882006347179413}, \"Polygon\": [{\"X\": 0.5417194366455078, \"Y\": 0.4882006347179413}, {\"X\": 0.5750423669815063, \"Y\": 0.4882006347179413}, {\"X\": 0.5750423669815063, \"Y\": 0.4976068437099457}, {\"X\": 0.5417194366455078, \"Y\": 0.4976068437099457}]}, \"Id\": \"a55c7c4d-25f4-4daa-ae72-d2f0157c6b02\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e8f5b0-6ab7-4be4-8f9a-18be7a5f5aa0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88151550292969, \"Text\": \"15.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026076659560203552, \"Height\": 0.007983642630279064, \"Left\": 0.6162358522415161, \"Top\": 0.4883677065372467}, \"Polygon\": [{\"X\": 0.6162358522415161, \"Y\": 0.4883677065372467}, {\"X\": 0.6423125267028809, \"Y\": 0.4883677065372467}, {\"X\": 0.6423125267028809, \"Y\": 0.49635136127471924}, {\"X\": 0.6162358522415161, \"Y\": 0.49635136127471924}]}, \"Id\": \"da863033-24dc-4d48-9268-7bc4c348ac80\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4120e2d7-8bed-4cea-9de2-9fbdcfdb371e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57106018066406, \"Text\": \"(21.8)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03360605612397194, \"Height\": 0.009660888463258743, \"Left\": 0.6844925284385681, \"Top\": 0.4881793260574341}, \"Polygon\": [{\"X\": 0.6844925284385681, \"Y\": 0.4881793260574341}, {\"X\": 0.7180986404418945, \"Y\": 0.4881793260574341}, {\"X\": 0.7180986404418945, \"Y\": 0.49784019589424133}, {\"X\": 0.6844925284385681, \"Y\": 0.49784019589424133}]}, \"Id\": \"4e5a5706-5d80-4b65-8de7-9db7a8cf29f6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d3eda4e-e32e-4141-a42d-dc2a34ea742b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.27481079101562, \"Text\": \"(16.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032585062086582184, \"Height\": 0.009480753913521767, \"Left\": 0.7663373947143555, \"Top\": 0.488361656665802}, \"Polygon\": [{\"X\": 0.7663373947143555, \"Y\": 0.488361656665802}, {\"X\": 0.7989224791526794, \"Y\": 0.488361656665802}, {\"X\": 0.7989224791526794, \"Y\": 0.497842401266098}, {\"X\": 0.7663373947143555, \"Y\": 0.497842401266098}]}, \"Id\": \"23f2bf18-80bd-49c2-9e30-54ea84ae4f6f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5cc8890-ac50-4133-81f4-b537262d7ce1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.36772918701172, \"Text\": \"1.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018073830753564835, \"Height\": 0.007410888560116291, \"Left\": 0.8481148481369019, \"Top\": 0.48869287967681885}, \"Polygon\": [{\"X\": 0.8481148481369019, \"Y\": 0.48869287967681885}, {\"X\": 0.866188645362854, \"Y\": 0.48869287967681885}, {\"X\": 0.866188645362854, \"Y\": 0.49610376358032227}, {\"X\": 0.8481148481369019, \"Y\": 0.49610376358032227}]}, \"Id\": \"e729eece-df91-45ad-94b8-5ddcd7847c5a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e3def16-1eea-403d-9b07-72045ba5c1cf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49958038330078, \"Text\": \"(14.9)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03249545022845268, \"Height\": 0.009380737319588661, \"Left\": 0.9091721177101135, \"Top\": 0.4883723855018616}, \"Polygon\": [{\"X\": 0.9091721177101135, \"Y\": 0.4883723855018616}, {\"X\": 0.9416675567626953, \"Y\": 0.4883723855018616}, {\"X\": 0.9416675567626953, \"Y\": 0.4977531433105469}, {\"X\": 0.9091721177101135, \"Y\": 0.4977531433105469}]}, \"Id\": \"0e05f9fe-046e-4452-9483-1f7a235dd905\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a53e0576-8956-432c-a308-1b717d833355\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43447875976562, \"Text\": \"Profit/(loss) for the year\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14963862299919128, \"Height\": 0.009772379882633686, \"Left\": 0.09538351744413376, \"Top\": 0.5018073916435242}, \"Polygon\": [{\"X\": 0.09538351744413376, \"Y\": 0.5018073916435242}, {\"X\": 0.24502213299274445, \"Y\": 0.5018073916435242}, {\"X\": 0.24502213299274445, \"Y\": 0.5115798115730286}, {\"X\": 0.09538351744413376, \"Y\": 0.5115798115730286}]}, \"Id\": \"34db4a84-59bf-4e01-8288-152cb7941c5a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa1154b5-46b8-4581-8b13-6ad33c24a552\", \"565782d4-bb8a-4fac-add2-89b6bd6bad89\", \"bd52522c-82e1-4133-a29e-964f3e11857f\", \"476d208f-aee5-4b84-8165-79cbc0b03ee7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81855010986328, \"Text\": \"122.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03302966058254242, \"Height\": 0.008131835609674454, \"Left\": 0.5380248427391052, \"Top\": 0.502142071723938}, \"Polygon\": [{\"X\": 0.5380248427391052, \"Y\": 0.502142071723938}, {\"X\": 0.5710544586181641, \"Y\": 0.502142071723938}, {\"X\": 0.5710544586181641, \"Y\": 0.5102738738059998}, {\"X\": 0.5380248427391052, \"Y\": 0.5102738738059998}]}, \"Id\": \"10c29bea-6ba9-4dc2-a8fe-99e243d6c435\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cbb6649-0439-452a-994a-deb86f72ce6e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.435791015625, \"Text\": \"(124.1)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04027934744954109, \"Height\": 0.009616007097065449, \"Left\": 0.6057104468345642, \"Top\": 0.5018776059150696}, \"Polygon\": [{\"X\": 0.6057104468345642, \"Y\": 0.5018776059150696}, {\"X\": 0.6459898352622986, \"Y\": 0.5018776059150696}, {\"X\": 0.6459898352622986, \"Y\": 0.5114936232566833}, {\"X\": 0.6057104468345642, \"Y\": 0.5114936232566833}]}, \"Id\": \"ef24959e-4330-4cb6-8a49-9b6ccae1420e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d45d8a46-e50b-4e4b-9b4c-857882ea5197\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.71244812011719, \"Text\": \"(1.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025826072320342064, \"Height\": 0.009403157979249954, \"Left\": 0.692099928855896, \"Top\": 0.5019692182540894}, \"Polygon\": [{\"X\": 0.692099928855896, \"Y\": 0.5019692182540894}, {\"X\": 0.717926025390625, \"Y\": 0.5019692182540894}, {\"X\": 0.717926025390625, \"Y\": 0.5113723278045654}, {\"X\": 0.692099928855896, \"Y\": 0.5113723278045654}]}, \"Id\": \"b550d343-ce73-4dd8-ab2d-62acf421f0ec\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7bfe4601-7791-433a-8b82-8312cf11ed60\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.78805541992188, \"Text\": \"99.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02661915495991707, \"Height\": 0.007964802905917168, \"Left\": 0.7679100036621094, \"Top\": 0.502066433429718}, \"Polygon\": [{\"X\": 0.7679100036621094, \"Y\": 0.502066433429718}, {\"X\": 0.794529139995575, \"Y\": 0.502066433429718}, {\"X\": 0.794529139995575, \"Y\": 0.5100312232971191}, {\"X\": 0.7679100036621094, \"Y\": 0.5100312232971191}]}, \"Id\": \"c971f616-de6b-4890-bb53-593cf214d903\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d2771e7-5fb4-463f-a1c6-4e485d94d424\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.14857482910156, \"Text\": \"(14.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03257061541080475, \"Height\": 0.009337849915027618, \"Left\": 0.8376958966255188, \"Top\": 0.5019909739494324}, \"Polygon\": [{\"X\": 0.8376958966255188, \"Y\": 0.5019909739494324}, {\"X\": 0.8702665567398071, \"Y\": 0.5019909739494324}, {\"X\": 0.8702665567398071, \"Y\": 0.5113288164138794}, {\"X\": 0.8376958966255188, \"Y\": 0.5113288164138794}]}, \"Id\": \"6b0c5baf-878f-418b-9c8d-337c7687c6b3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b00b69f7-23d9-4477-a08b-bc56f6b8f6f2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91703796386719, \"Text\": \"85.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02688528038561344, \"Height\": 0.00782336387783289, \"Left\": 0.9113799929618835, \"Top\": 0.5021812319755554}, \"Polygon\": [{\"X\": 0.9113799929618835, \"Y\": 0.5021812319755554}, {\"X\": 0.9382652640342712, \"Y\": 0.5021812319755554}, {\"X\": 0.9382652640342712, \"Y\": 0.5100045800209045}, {\"X\": 0.9113799929618835, \"Y\": 0.5100045800209045}]}, \"Id\": \"b24e2ca7-689b-45e9-90cb-2a5f118041e1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fe0222d-6d7d-4c55-8259-45ab0c21a1a9\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.74312591552734, \"Text\": \"(Loss)/profit attributable to non-controlling interests\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3006479740142822, \"Height\": 0.009800903499126434, \"Left\": 0.09521978348493576, \"Top\": 0.5154621601104736}, \"Polygon\": [{\"X\": 0.09521978348493576, \"Y\": 0.5154621601104736}, {\"X\": 0.3958677649497986, \"Y\": 0.5154621601104736}, {\"X\": 0.3958677649497986, \"Y\": 0.5252630710601807}, {\"X\": 0.09521978348493576, \"Y\": 0.5252630710601807}]}, \"Id\": \"92d9fb13-2ecc-4b07-b3f8-3af0d5af8c66\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bcadc480-7051-46ce-be59-f0be2f759c9c\", \"3021723d-9ae7-446a-a71d-866cce07d29d\", \"dde84627-f6e1-4293-8cb4-5d0aab101317\", \"69d4d4dc-0f81-43d1-9070-6aced22c78cb\", \"f4396761-0fcb-46a3-806e-416df4abbff7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.88014221191406, \"Text\": \"(0.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02568690851330757, \"Height\": 0.009708333760499954, \"Left\": 0.5494760870933533, \"Top\": 0.5153746604919434}, \"Polygon\": [{\"X\": 0.5494760870933533, \"Y\": 0.5153746604919434}, {\"X\": 0.5751630067825317, \"Y\": 0.5153746604919434}, {\"X\": 0.5751630067825317, \"Y\": 0.5250830054283142}, {\"X\": 0.5494760870933533, \"Y\": 0.5250830054283142}]}, \"Id\": \"6647552d-4f5f-49d9-8002-7ac921b8a235\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"27e15b06-d53e-4f11-b952-a9b376dc81e3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.67120361328125, \"Text\": \"(4.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02592218667268753, \"Height\": 0.009512817487120628, \"Left\": 0.6205606460571289, \"Top\": 0.5153661370277405}, \"Polygon\": [{\"X\": 0.6205606460571289, \"Y\": 0.5153661370277405}, {\"X\": 0.6464828252792358, \"Y\": 0.5153661370277405}, {\"X\": 0.6464828252792358, \"Y\": 0.5248789191246033}, {\"X\": 0.6205606460571289, \"Y\": 0.5248789191246033}]}, \"Id\": \"f185df8d-d87e-4b04-ab83-089267a0f694\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61ca845b-002f-4c06-9c42-57201086beff\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7377700805664, \"Text\": \"(4.6)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025972142815589905, \"Height\": 0.009560180827975273, \"Left\": 0.6921427249908447, \"Top\": 0.5152736902236938}, \"Polygon\": [{\"X\": 0.6921427249908447, \"Y\": 0.5152736902236938}, {\"X\": 0.7181148529052734, \"Y\": 0.5152736902236938}, {\"X\": 0.7181148529052734, \"Y\": 0.5248338580131531}, {\"X\": 0.6921427249908447, \"Y\": 0.5248338580131531}]}, \"Id\": \"20b05597-bfed-4f3b-b28e-73692c90e4ea\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f5ca407-22a8-4f59-b553-4586970e426a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.5735855102539, \"Text\": \"0.4\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018631059676408768, \"Height\": 0.007909789681434631, \"Left\": 0.7759475111961365, \"Top\": 0.5154781341552734}, \"Polygon\": [{\"X\": 0.7759475111961365, \"Y\": 0.5154781341552734}, {\"X\": 0.7945785522460938, \"Y\": 0.5154781341552734}, {\"X\": 0.7945785522460938, \"Y\": 0.5233879089355469}, {\"X\": 0.7759475111961365, \"Y\": 0.5233879089355469}]}, \"Id\": \"629a5baa-b1e0-447e-b4a8-db4b69fc7b91\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3418ef57-76b1-4bac-8014-bc009bcb784a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7753677368164, \"Text\": \"0.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01956198364496231, \"Height\": 0.00794836413115263, \"Left\": 0.8472216129302979, \"Top\": 0.51545250415802}, \"Polygon\": [{\"X\": 0.8472216129302979, \"Y\": 0.51545250415802}, {\"X\": 0.866783618927002, \"Y\": 0.51545250415802}, {\"X\": 0.866783618927002, \"Y\": 0.5234009027481079}, {\"X\": 0.8472216129302979, \"Y\": 0.5234009027481079}]}, \"Id\": \"c632a4f5-df41-4534-9d0d-13fddb7227ba\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"76a15faa-2d45-4324-b530-be5a5513a1c0\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.8270263671875, \"Text\": \"1.0\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01804960146546364, \"Height\": 0.007617431692779064, \"Left\": 0.9197282195091248, \"Top\": 0.515597403049469}, \"Polygon\": [{\"X\": 0.9197282195091248, \"Y\": 0.515597403049469}, {\"X\": 0.9377778172492981, \"Y\": 0.515597403049469}, {\"X\": 0.9377778172492981, \"Y\": 0.5232148170471191}, {\"X\": 0.9197282195091248, \"Y\": 0.5232148170471191}]}, \"Id\": \"934cbae5-0e3d-4272-86f6-19a585e1471c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eef7330a-8aa7-4d36-bbc1-c64c55ff6ebc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.77410125732422, \"Text\": \"Profit/(loss) attributable to equity holders of the parent\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.3170138895511627, \"Height\": 0.009657755494117737, \"Left\": 0.09494281560182571, \"Top\": 0.5287739634513855}, \"Polygon\": [{\"X\": 0.09494281560182571, \"Y\": 0.5287739634513855}, {\"X\": 0.4119567275047302, \"Y\": 0.5287739634513855}, {\"X\": 0.4119567275047302, \"Y\": 0.538431704044342}, {\"X\": 0.09494281560182571, \"Y\": 0.538431704044342}]}, \"Id\": \"2f954df2-3f2f-4c54-8e84-31041e587c01\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"66593077-cd50-4e9d-8fd7-ebb58a7cd140\", \"ba6ac21a-5d62-47e4-a4f4-12ec63182f49\", \"740fd7b2-3c08-4d37-9de4-41ec68d54b69\", \"ed0e8fa2-aa42-4d0e-85da-48e299cde724\", \"94c2bf49-9490-4703-87b8-8824ff4c1fb1\", \"276cc2b7-6131-4558-9592-53013a41724c\", \"8feeac89-8630-475e-b8a4-5af0c96c36d5\", \"b56f1c69-7522-464a-93c3-cd696f260d7b\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.85376739501953, \"Text\": \"122.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03318505361676216, \"Height\": 0.007938395254313946, \"Left\": 0.537935733795166, \"Top\": 0.528946578502655}, \"Polygon\": [{\"X\": 0.537935733795166, \"Y\": 0.528946578502655}, {\"X\": 0.5711207985877991, \"Y\": 0.528946578502655}, {\"X\": 0.5711207985877991, \"Y\": 0.5368849635124207}, {\"X\": 0.537935733795166, \"Y\": 0.5368849635124207}]}, \"Id\": \"7bd45a92-91ca-4fbe-addc-d72925010d02\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"677587c8-227d-4746-8d9f-1fef0f374a00\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.08905792236328, \"Text\": \"(119.8)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041211824864149094, \"Height\": 0.009829712100327015, \"Left\": 0.6054908633232117, \"Top\": 0.5286660194396973}, \"Polygon\": [{\"X\": 0.6054908633232117, \"Y\": 0.5286660194396973}, {\"X\": 0.6467026472091675, \"Y\": 0.5286660194396973}, {\"X\": 0.6467026472091675, \"Y\": 0.5384957194328308}, {\"X\": 0.6054908633232117, \"Y\": 0.5384957194328308}]}, \"Id\": \"676bf7d6-6509-4433-8d82-f7b49145eca6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b85bc17-d888-4118-9fdd-c72fa98caee2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.80854797363281, \"Text\": \"3.1\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01707758568227291, \"Height\": 0.007857218384742737, \"Left\": 0.6951209306716919, \"Top\": 0.5289443731307983}, \"Polygon\": [{\"X\": 0.6951209306716919, \"Y\": 0.5289443731307983}, {\"X\": 0.7121984958648682, \"Y\": 0.5289443731307983}, {\"X\": 0.7121984958648682, \"Y\": 0.5368015766143799}, {\"X\": 0.6951209306716919, \"Y\": 0.5368015766143799}]}, \"Id\": \"60be6c1a-a03f-4d26-a06d-d3916d8216f5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ce8cc65-a8ce-491b-82e1-4dca2e898ba7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.81011199951172, \"Text\": \"99.5\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026530811563134193, \"Height\": 0.008020630106329918, \"Left\": 0.7680816650390625, \"Top\": 0.5288960337638855}, \"Polygon\": [{\"X\": 0.7680816650390625, \"Y\": 0.5288960337638855}, {\"X\": 0.794612467288971, \"Y\": 0.5288960337638855}, {\"X\": 0.794612467288971, \"Y\": 0.5369166731834412}, {\"X\": 0.7680816650390625, \"Y\": 0.5369166731834412}]}, \"Id\": \"6c1a6acc-37db-4cc6-b1c8-c563a1cb5078\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d771061-9de4-4cb1-95e0-aa0d16c28583\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.57840728759766, \"Text\": \"(14.9)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0329798199236393, \"Height\": 0.009510701522231102, \"Left\": 0.8376403450965881, \"Top\": 0.528847336769104}, \"Polygon\": [{\"X\": 0.8376403450965881, \"Y\": 0.528847336769104}, {\"X\": 0.8706201314926147, \"Y\": 0.528847336769104}, {\"X\": 0.8706201314926147, \"Y\": 0.5383580327033997}, {\"X\": 0.8376403450965881, \"Y\": 0.5383580327033997}]}, \"Id\": \"a4cb5bf7-b921-47cb-930f-6347fefcec1a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b34d39ad-6914-46e6-8bd4-c9332e5e2898\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76625061035156, \"Text\": \"84.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02646738849580288, \"Height\": 0.008014567196369171, \"Left\": 0.9114028215408325, \"Top\": 0.5289866328239441}, \"Polygon\": [{\"X\": 0.9114028215408325, \"Y\": 0.5289866328239441}, {\"X\": 0.9378702044487, \"Y\": 0.5289866328239441}, {\"X\": 0.9378702044487, \"Y\": 0.5370011925697327}, {\"X\": 0.9114028215408325, \"Y\": 0.5370011925697327}]}, \"Id\": \"4a7b9a3d-b70c-4d9c-a11b-8efbca8f1190\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c59d25a5-dabc-45b2-950f-d199f017b75c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.73682403564453, \"Text\": \"122.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033007558435201645, \"Height\": 0.007837931625545025, \"Left\": 0.5378807187080383, \"Top\": 0.5443063378334045}, \"Polygon\": [{\"X\": 0.5378807187080383, \"Y\": 0.5443063378334045}, {\"X\": 0.5708882808685303, \"Y\": 0.5443063378334045}, {\"X\": 0.5708882808685303, \"Y\": 0.5521442294120789}, {\"X\": 0.5378807187080383, \"Y\": 0.5521442294120789}]}, \"Id\": \"da2c3869-766b-4ea2-a8ff-984929d9d9de\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19b531a9-575a-46c4-98a4-7855fe73d749\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50944519042969, \"Text\": \"(124.1)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04093102365732193, \"Height\": 0.009811604395508766, \"Left\": 0.6055675745010376, \"Top\": 0.54401695728302}, \"Polygon\": [{\"X\": 0.6055675745010376, \"Y\": 0.54401695728302}, {\"X\": 0.6464985609054565, \"Y\": 0.54401695728302}, {\"X\": 0.6464985609054565, \"Y\": 0.5538285970687866}, {\"X\": 0.6055675745010376, \"Y\": 0.5538285970687866}]}, \"Id\": \"3662e741-fa6a-4243-a405-ed93763c94a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"65a37094-7f42-49e2-acb8-f2ec4c6a3abc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59326171875, \"Text\": \"(1.5)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025923222303390503, \"Height\": 0.009527384303510189, \"Left\": 0.6920806169509888, \"Top\": 0.544099748134613}, \"Polygon\": [{\"X\": 0.6920806169509888, \"Y\": 0.544099748134613}, {\"X\": 0.7180038094520569, \"Y\": 0.544099748134613}, {\"X\": 0.7180038094520569, \"Y\": 0.5536271333694458}, {\"X\": 0.6920806169509888, \"Y\": 0.5536271333694458}]}, \"Id\": \"a1d3d952-992c-4213-b019-0df91c1500d6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e576b85e-2a7e-4153-98ab-a5232c26744f\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.76990509033203, \"Text\": \"99.9\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026666637510061264, \"Height\": 0.008151489309966564, \"Left\": 0.768043041229248, \"Top\": 0.5441588759422302}, \"Polygon\": [{\"X\": 0.768043041229248, \"Y\": 0.5441588759422302}, {\"X\": 0.7947096824645996, \"Y\": 0.5441588759422302}, {\"X\": 0.7947096824645996, \"Y\": 0.5523104071617126}, {\"X\": 0.768043041229248, \"Y\": 0.5523104071617126}]}, \"Id\": \"9296ef90-3d55-4412-a40e-17781ad1ca87\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"be5e31ab-03bc-498d-b9ed-f88d05706d1c\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.50981140136719, \"Text\": \"(14.3)\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03302741423249245, \"Height\": 0.009407429955899715, \"Left\": 0.8376144170761108, \"Top\": 0.5442577600479126}, \"Polygon\": [{\"X\": 0.8376144170761108, \"Y\": 0.5442577600479126}, {\"X\": 0.870641827583313, \"Y\": 0.5442577600479126}, {\"X\": 0.870641827583313, \"Y\": 0.5536652207374573}, {\"X\": 0.8376144170761108, \"Y\": 0.5536652207374573}]}, \"Id\": \"4beed445-e54d-4ba4-8729-626a4f11a443\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d592d43c-e732-4e96-968e-18ab0912d130\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.89212799072266, \"Text\": \"85.6\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026600392535328865, \"Height\": 0.00803698692470789, \"Left\": 0.9113827347755432, \"Top\": 0.5441812872886658}, \"Polygon\": [{\"X\": 0.9113827347755432, \"Y\": 0.5441812872886658}, {\"X\": 0.9379830956459045, \"Y\": 0.5441812872886658}, {\"X\": 0.9379830956459045, \"Y\": 0.5522183179855347}, {\"X\": 0.9113827347755432, \"Y\": 0.5522183179855347}]}, \"Id\": \"9551986b-58c7-46e1-9a3a-1fe42ca47780\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"088a7156-308d-4f94-aa6e-ec4b385e0890\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.2455062866211, \"Text\": \"Earnings/(loss) per share\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.15823835134506226, \"Height\": 0.0097095537930727, \"Left\": 0.09531788527965546, \"Top\": 0.5574250221252441}, \"Polygon\": [{\"X\": 0.09531788527965546, \"Y\": 0.5574250221252441}, {\"X\": 0.2535562515258789, \"Y\": 0.5574250221252441}, {\"X\": 0.2535562515258789, \"Y\": 0.5671346187591553}, {\"X\": 0.09531788527965546, \"Y\": 0.5671346187591553}]}, \"Id\": \"95b8b5ed-5c00-4a16-814e-fec21e349e93\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8dd692a-fd8e-4d77-a304-2bdb11a320c8\", \"faf9c450-6041-427f-af0c-94f779e0cff1\", \"7d82bf84-938f-4884-8d91-258d1d8815c7\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.7477798461914, \"Text\": \"Basic\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03314083814620972, \"Height\": 0.007792195770889521, \"Left\": 0.10904848575592041, \"Top\": 0.5713289380073547}, \"Polygon\": [{\"X\": 0.10904848575592041, \"Y\": 0.5713289380073547}, {\"X\": 0.14218932390213013, \"Y\": 0.5713289380073547}, {\"X\": 0.14218932390213013, \"Y\": 0.5791211128234863}, {\"X\": 0.10904848575592041, \"Y\": 0.5791211128234863}]}, \"Id\": \"46861e7d-b773-4589-892e-b487e71b475e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"96221497-daae-45c5-a261-d67450d89549\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.92768859863281, \"Text\": \"13\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014233392663300037, \"Height\": 0.008010742254555225, \"Left\": 0.4760349988937378, \"Top\": 0.5712425708770752}, \"Polygon\": [{\"X\": 0.4760349988937378, \"Y\": 0.5712425708770752}, {\"X\": 0.49026837944984436, \"Y\": 0.5712425708770752}, {\"X\": 0.49026837944984436, \"Y\": 0.5792533159255981}, {\"X\": 0.4760349988937378, \"Y\": 0.5792533159255981}]}, \"Id\": \"2aa3bb29-0dfa-4390-90e7-0440620be109\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b03fc589-fccd-42ba-8825-95ea251d8a0a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 97.53480529785156, \"Text\": \"28.9p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03401146084070206, \"Height\": 0.00938269030302763, \"Left\": 0.5366703271865845, \"Top\": 0.5713484883308411}, \"Polygon\": [{\"X\": 0.5366703271865845, \"Y\": 0.5713484883308411}, {\"X\": 0.5706817507743835, \"Y\": 0.5713484883308411}, {\"X\": 0.5706817507743835, \"Y\": 0.580731213092804}, {\"X\": 0.5366703271865845, \"Y\": 0.580731213092804}]}, \"Id\": \"fa693316-d8f0-4e4c-ba56-b89ee2072840\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2974c031-cd9e-4578-8f71-d1c8ebbd15ed\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.43241119384766, \"Text\": \"(28.2)p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041729915887117386, \"Height\": 0.009824300184845924, \"Left\": 0.6049597263336182, \"Top\": 0.57114177942276}, \"Polygon\": [{\"X\": 0.6049597263336182, \"Y\": 0.57114177942276}, {\"X\": 0.6466896533966064, \"Y\": 0.57114177942276}, {\"X\": 0.6466896533966064, \"Y\": 0.5809661149978638}, {\"X\": 0.6049597263336182, \"Y\": 0.5809661149978638}]}, \"Id\": \"96d492fd-5d1f-41d9-9abc-f6e1f781f60f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d364dd29-167b-4ac5-9e7e-d40ff87a5a1e\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.24919128417969, \"Text\": \"0.7p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027149681001901627, \"Height\": 0.009232055395841599, \"Left\": 0.6868410110473633, \"Top\": 0.5713659524917603}, \"Polygon\": [{\"X\": 0.6868410110473633, \"Y\": 0.5713659524917603}, {\"X\": 0.7139906883239746, \"Y\": 0.5713659524917603}, {\"X\": 0.7139906883239746, \"Y\": 0.580597996711731}, {\"X\": 0.6868410110473633, \"Y\": 0.580597996711731}]}, \"Id\": \"9ef8118c-6e96-4a51-8246-f864fd4a8fe7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9e123457-c877-4da5-be47-dd65a8b713e1\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.49618530273438, \"Text\": \"25.3p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03395194932818413, \"Height\": 0.009428100660443306, \"Left\": 0.760968029499054, \"Top\": 0.5712425112724304}, \"Polygon\": [{\"X\": 0.760968029499054, \"Y\": 0.5712425112724304}, {\"X\": 0.7949199676513672, \"Y\": 0.5712425112724304}, {\"X\": 0.7949199676513672, \"Y\": 0.5806705951690674}, {\"X\": 0.760968029499054, \"Y\": 0.5806705951690674}]}, \"Id\": \"8e7fdcf2-574a-45f1-a45b-c2edc70c2b60\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ccabdabd-b4a4-4e20-b08d-e984611d038a\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.28546905517578, \"Text\": \"(3.8)p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0330997034907341, \"Height\": 0.009599365293979645, \"Left\": 0.837519645690918, \"Top\": 0.5712838768959045}, \"Polygon\": [{\"X\": 0.837519645690918, \"Y\": 0.5712838768959045}, {\"X\": 0.8706193566322327, \"Y\": 0.5712838768959045}, {\"X\": 0.8706193566322327, \"Y\": 0.5808832049369812}, {\"X\": 0.837519645690918, \"Y\": 0.5808832049369812}]}, \"Id\": \"d9069901-2b7b-40de-bb69-889192aad3d6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb9f94b1-f080-4972-93f0-5972ee076a0d\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.26473999023438, \"Text\": \"21.5p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03420886769890785, \"Height\": 0.00916239432990551, \"Left\": 0.9034744501113892, \"Top\": 0.5714505910873413}, \"Polygon\": [{\"X\": 0.9034744501113892, \"Y\": 0.5714505910873413}, {\"X\": 0.9376832842826843, \"Y\": 0.5714505910873413}, {\"X\": 0.9376832842826843, \"Y\": 0.5806129574775696}, {\"X\": 0.9034744501113892, \"Y\": 0.5806129574775696}]}, \"Id\": \"c78d4c8e-7759-403f-bc0b-a7499a19098f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e95d0e8-2edd-428e-9949-e1834db4d6ec\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.79524230957031, \"Text\": \"Diluted\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0434708371758461, \"Height\": 0.008183145895600319, \"Left\": 0.10706905275583267, \"Top\": 0.5845813751220703}, \"Polygon\": [{\"X\": 0.10706905275583267, \"Y\": 0.5845813751220703}, {\"X\": 0.15053988993167877, \"Y\": 0.5845813751220703}, {\"X\": 0.15053988993167877, \"Y\": 0.5927644968032837}, {\"X\": 0.10706905275583267, \"Y\": 0.5927644968032837}]}, \"Id\": \"b6d84a49-4a36-4397-9955-39cdd9d45275\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a663d34d-1767-4f9a-bfcb-ec82e5268adf\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.93809509277344, \"Text\": \"13\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014120904728770256, \"Height\": 0.0075064292177557945, \"Left\": 0.4761621057987213, \"Top\": 0.5851474404335022}, \"Polygon\": [{\"X\": 0.4761621057987213, \"Y\": 0.5851474404335022}, {\"X\": 0.4902830123901367, \"Y\": 0.5851474404335022}, {\"X\": 0.4902830123901367, \"Y\": 0.5926538705825806}, {\"X\": 0.4761621057987213, \"Y\": 0.5926538705825806}]}, \"Id\": \"2dd93d4d-94de-4f08-8fcb-e72a92c38797\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"856bddec-5667-434d-8e4c-1d96cc1250e6\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.6882095336914, \"Text\": \"28.8p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03440167009830475, \"Height\": 0.009173218160867691, \"Left\": 0.5368825793266296, \"Top\": 0.5849146246910095}, \"Polygon\": [{\"X\": 0.5368825793266296, \"Y\": 0.5849146246910095}, {\"X\": 0.5712842345237732, \"Y\": 0.5849146246910095}, {\"X\": 0.5712842345237732, \"Y\": 0.5940878391265869}, {\"X\": 0.5368825793266296, \"Y\": 0.5940878391265869}]}, \"Id\": \"9e4c2c15-b2af-47af-b49e-c366818cad53\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"85f5d8b3-d976-4370-9786-299381963450\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 98.92610931396484, \"Text\": \"(28.1)p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04180571436882019, \"Height\": 0.009642903693020344, \"Left\": 0.6048889756202698, \"Top\": 0.5847190618515015}, \"Polygon\": [{\"X\": 0.6048889756202698, \"Y\": 0.5847190618515015}, {\"X\": 0.6466946601867676, \"Y\": 0.5847190618515015}, {\"X\": 0.6466946601867676, \"Y\": 0.5943619608879089}, {\"X\": 0.6048889756202698, \"Y\": 0.5943619608879089}]}, \"Id\": \"eb78ed72-c9d7-4758-a923-b93f8b5ea946\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"95e7482c-48d0-4b35-985b-1ee0082341c3\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.30398559570312, \"Text\": \"0.7p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027339376509189606, \"Height\": 0.009113606996834278, \"Left\": 0.6864520907402039, \"Top\": 0.5849599838256836}, \"Polygon\": [{\"X\": 0.6864520907402039, \"Y\": 0.5849599838256836}, {\"X\": 0.7137914299964905, \"Y\": 0.5849599838256836}, {\"X\": 0.7137914299964905, \"Y\": 0.5940735936164856}, {\"X\": 0.6864520907402039, \"Y\": 0.5940735936164856}]}, \"Id\": \"0ddd9204-94aa-4691-9582-3ae068dcc6fc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fd5d308-12ba-4ca8-81d0-027ccbd71576\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.52396392822266, \"Text\": \"25.2p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.034118104726076126, \"Height\": 0.00918998196721077, \"Left\": 0.7608135938644409, \"Top\": 0.5849291682243347}, \"Polygon\": [{\"X\": 0.7608135938644409, \"Y\": 0.5849291682243347}, {\"X\": 0.7949317097663879, \"Y\": 0.5849291682243347}, {\"X\": 0.7949317097663879, \"Y\": 0.594119131565094}, {\"X\": 0.7608135938644409, \"Y\": 0.594119131565094}]}, \"Id\": \"a9db90fa-a807-4fc8-8304-f7b0952b2156\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa0f13ab-0472-48fd-9167-f69a88cce6a4\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.07182312011719, \"Text\": \"(3.8)p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03278442472219467, \"Height\": 0.009519531391561031, \"Left\": 0.8373742699623108, \"Top\": 0.5847625136375427}, \"Polygon\": [{\"X\": 0.8373742699623108, \"Y\": 0.5847625136375427}, {\"X\": 0.8701586723327637, \"Y\": 0.5847625136375427}, {\"X\": 0.8701586723327637, \"Y\": 0.5942820906639099}, {\"X\": 0.8373742699623108, \"Y\": 0.5942820906639099}]}, \"Id\": \"54af7c00-e447-44e8-9463-a6c8454a9e3c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af8e27d1-22dc-4a6b-9a30-2b1e6989cee2\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.56404876708984, \"Text\": \"21.4p\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.034812081605196, \"Height\": 0.009216634556651115, \"Left\": 0.9032271504402161, \"Top\": 0.5849716663360596}, \"Polygon\": [{\"X\": 0.9032271504402161, \"Y\": 0.5849716663360596}, {\"X\": 0.938039243221283, \"Y\": 0.5849716663360596}, {\"X\": 0.938039243221283, \"Y\": 0.5941883325576782}, {\"X\": 0.9032271504402161, \"Y\": 0.5941883325576782}]}, \"Id\": \"10252191-fa40-46a1-8cbe-56f779783e55\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec6e4acb-3149-4913-992a-4736a6a82262\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.59745788574219, \"Text\": \"Synthomer plc Annual Report 2020\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.18484081327915192, \"Height\": 0.008785481564700603, \"Left\": 0.7222809791564941, \"Top\": 0.9550743699073792}, \"Polygon\": [{\"X\": 0.7222809791564941, \"Y\": 0.9550743699073792}, {\"X\": 0.9071218371391296, \"Y\": 0.9550743699073792}, {\"X\": 0.9071218371391296, \"Y\": 0.9638598561286926}, {\"X\": 0.7222809791564941, \"Y\": 0.9638598561286926}]}, \"Id\": \"c27d8e3e-820b-45cd-9a14-df06ea6eefff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04eb73d7-888b-406e-90c7-24600e5b2cf5\", \"4c07e0c3-00e9-4b48-8eaf-3af41755b3e9\", \"14f20379-f37b-4065-8a71-5f5d1a937a83\", \"cf01fcd3-ee5b-42bc-874e-736bac126195\", \"ccb16ff1-c4a5-436c-9c47-257cc7ff69cc\"]}]}, {\"BlockType\": \"LINE\", \"Confidence\": 99.91604614257812, \"Text\": \"129\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019493265077471733, \"Height\": 0.0069633787497878075, \"Left\": 0.9229442477226257, \"Top\": 0.955232560634613}, \"Polygon\": [{\"X\": 0.9229442477226257, \"Y\": 0.955232560634613}, {\"X\": 0.942437469959259, \"Y\": 0.955232560634613}, {\"X\": 0.942437469959259, \"Y\": 0.9621959924697876}, {\"X\": 0.9229442477226257, \"Y\": 0.9621959924697876}]}, \"Id\": \"6109dac8-45f9-458b-b538-4ce2394e96b4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5f8a19c1-175a-4d04-8108-1748918bb1c1\"]}]}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92097473144531, \"Text\": \"Consolidated\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.14329521358013153, \"Height\": 0.013082463294267654, \"Left\": 0.09457933157682419, \"Top\": 0.05635805428028107}, \"Polygon\": [{\"X\": 0.09457933157682419, \"Y\": 0.05635805428028107}, {\"X\": 0.23787455260753632, \"Y\": 0.05635805428028107}, {\"X\": 0.23787455260753632, \"Y\": 0.06944051384925842}, {\"X\": 0.09457933157682419, \"Y\": 0.06944051384925842}]}, \"Id\": \"7021d6d2-e077-4209-ab01-f06cebb8904a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96931457519531, \"Text\": \"income\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07930628210306168, \"Height\": 0.01291585247963667, \"Left\": 0.24543850123882294, \"Top\": 0.056703902781009674}, \"Polygon\": [{\"X\": 0.24543850123882294, \"Y\": 0.056703902781009674}, {\"X\": 0.3247447907924652, \"Y\": 0.056703902781009674}, {\"X\": 0.3247447907924652, \"Y\": 0.06961975246667862}, {\"X\": 0.24543850123882294, \"Y\": 0.06961975246667862}]}, \"Id\": \"ddba7057-2e07-4b76-b0ca-b0ae1821b1c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89468383789062, \"Text\": \"statement\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.10809386521577835, \"Height\": 0.01248006708920002, \"Left\": 0.3317866921424866, \"Top\": 0.057163748890161514}, \"Polygon\": [{\"X\": 0.3317866921424866, \"Y\": 0.057163748890161514}, {\"X\": 0.4398805797100067, \"Y\": 0.057163748890161514}, {\"X\": 0.4398805797100067, \"Y\": 0.06964381039142609}, {\"X\": 0.3317866921424866, \"Y\": 0.06964381039142609}]}, \"Id\": \"3081a89e-4993-4d00-b5cd-7c3245f88b83\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.969970703125, \"Text\": \"for\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.016727043315768242, \"Height\": 0.007584360893815756, \"Left\": 0.09442709386348724, \"Top\": 0.07692357152700424}, \"Polygon\": [{\"X\": 0.09442709386348724, \"Y\": 0.07692357152700424}, {\"X\": 0.11115413159132004, \"Y\": 0.07692357152700424}, {\"X\": 0.11115413159132004, \"Y\": 0.08450792729854584}, {\"X\": 0.09442709386348724, \"Y\": 0.08450792729854584}]}, \"Id\": \"89915d97-713a-4b5b-9bcb-70b66ac3af4a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98234558105469, \"Text\": \"the\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019296692684292793, \"Height\": 0.007764297537505627, \"Left\": 0.11370685696601868, \"Top\": 0.07690954208374023}, \"Polygon\": [{\"X\": 0.11370685696601868, \"Y\": 0.07690954208374023}, {\"X\": 0.13300354778766632, \"Y\": 0.07690954208374023}, {\"X\": 0.13300354778766632, \"Y\": 0.08467383682727814}, {\"X\": 0.11370685696601868, \"Y\": 0.08467383682727814}]}, \"Id\": \"a450134e-80ec-463e-ad4e-d222a3e2f351\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97715759277344, \"Text\": \"year\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026197118684649467, \"Height\": 0.007856801152229309, \"Left\": 0.13566994667053223, \"Top\": 0.07852999866008759}, \"Polygon\": [{\"X\": 0.13566994667053223, \"Y\": 0.07852999866008759}, {\"X\": 0.16186706721782684, \"Y\": 0.07852999866008759}, {\"X\": 0.16186706721782684, \"Y\": 0.0863867998123169}, {\"X\": 0.13566994667053223, \"Y\": 0.0863867998123169}]}, \"Id\": \"c1447d2c-dc92-4cc1-9beb-51ab23916c12\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95780944824219, \"Text\": \"ended\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0380568727850914, \"Height\": 0.007820048369467258, \"Left\": 0.16453567147254944, \"Top\": 0.07684006541967392}, \"Polygon\": [{\"X\": 0.16453567147254944, \"Y\": 0.07684006541967392}, {\"X\": 0.20259255170822144, \"Y\": 0.07684006541967392}, {\"X\": 0.20259255170822144, \"Y\": 0.0846601128578186}, {\"X\": 0.16453567147254944, \"Y\": 0.0846601128578186}]}, \"Id\": \"b48a12ac-5afd-489b-9160-10033886adf0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84439849853516, \"Text\": \"31\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.013828635215759277, \"Height\": 0.0077817076817154884, \"Left\": 0.2059280276298523, \"Top\": 0.07686352729797363}, \"Polygon\": [{\"X\": 0.2059280276298523, \"Y\": 0.07686352729797363}, {\"X\": 0.21975666284561157, \"Y\": 0.07686352729797363}, {\"X\": 0.21975666284561157, \"Y\": 0.08464524149894714}, {\"X\": 0.2059280276298523, \"Y\": 0.08464524149894714}]}, \"Id\": \"dfefea71-46df-45a6-ab58-730d11cf0057\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94974517822266, \"Text\": \"December\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06314805150032043, \"Height\": 0.007946258410811424, \"Left\": 0.22419755160808563, \"Top\": 0.07671985030174255}, \"Polygon\": [{\"X\": 0.22419755160808563, \"Y\": 0.07671985030174255}, {\"X\": 0.2873455882072449, \"Y\": 0.07671985030174255}, {\"X\": 0.2873455882072449, \"Y\": 0.08466611057519913}, {\"X\": 0.22419755160808563, \"Y\": 0.08466611057519913}]}, \"Id\": \"8ccdac2f-78a5-429d-9946-58606589026e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72537994384766, \"Text\": \"2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0303245447576046, \"Height\": 0.00789136253297329, \"Left\": 0.2898865044116974, \"Top\": 0.07683085650205612}, \"Polygon\": [{\"X\": 0.2898865044116974, \"Y\": 0.07683085650205612}, {\"X\": 0.3202110528945923, \"Y\": 0.07683085650205612}, {\"X\": 0.3202110528945923, \"Y\": 0.08472222089767456}, {\"X\": 0.2898865044116974, \"Y\": 0.08472222089767456}]}, \"Id\": \"14ec330e-551c-48ec-abec-4637a7b5aefc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91912841796875, \"Text\": \"2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.023377126082777977, \"Height\": 0.006023040972650051, \"Left\": 0.5975328683853149, \"Top\": 0.161042720079422}, \"Polygon\": [{\"X\": 0.5975328683853149, \"Y\": 0.161042720079422}, {\"X\": 0.6209099888801575, \"Y\": 0.161042720079422}, {\"X\": 0.6209099888801575, \"Y\": 0.16706576943397522}, {\"X\": 0.5975328683853149, \"Y\": 0.16706576943397522}]}, \"Id\": \"f911ea69-1ad6-4bb2-8a5d-571184c1e817\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91558837890625, \"Text\": \"2019\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022246839478611946, \"Height\": 0.006051533855497837, \"Left\": 0.8217923641204834, \"Top\": 0.161011204123497}, \"Polygon\": [{\"X\": 0.8217923641204834, \"Y\": 0.161011204123497}, {\"X\": 0.8440392017364502, \"Y\": 0.161011204123497}, {\"X\": 0.8440392017364502, \"Y\": 0.16706272959709167}, {\"X\": 0.8217923641204834, \"Y\": 0.16706272959709167}]}, \"Id\": \"b02b69a7-fb7b-42a4-ac6e-6b6d84609d2a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73590087890625, \"Text\": \"Underlying\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05287722125649452, \"Height\": 0.007532551884651184, \"Left\": 0.5182235240936279, \"Top\": 0.1728323996067047}, \"Polygon\": [{\"X\": 0.5182235240936279, \"Y\": 0.1728323996067047}, {\"X\": 0.5711007714271545, \"Y\": 0.1728323996067047}, {\"X\": 0.5711007714271545, \"Y\": 0.1803649514913559}, {\"X\": 0.5182235240936279, \"Y\": 0.1803649514913559}]}, \"Id\": \"727e50af-d82e-476d-a692-1c6b98b5d5f0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88680267333984, \"Text\": \"Special\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.036123547703027725, \"Height\": 0.007194254547357559, \"Left\": 0.606115996837616, \"Top\": 0.17264831066131592}, \"Polygon\": [{\"X\": 0.606115996837616, \"Y\": 0.17264831066131592}, {\"X\": 0.642239511013031, \"Y\": 0.17264831066131592}, {\"X\": 0.642239511013031, \"Y\": 0.17984257638454437}, {\"X\": 0.606115996837616, \"Y\": 0.17984257638454437}]}, \"Id\": \"fd5cb3c2-f106-487c-b80f-23477ec8cec6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54922485351562, \"Text\": \"Underlying\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04887998104095459, \"Height\": 0.007447021547704935, \"Left\": 0.7458717226982117, \"Top\": 0.17285870015621185}, \"Polygon\": [{\"X\": 0.7458717226982117, \"Y\": 0.17285870015621185}, {\"X\": 0.7947517037391663, \"Y\": 0.17285870015621185}, {\"X\": 0.7947517037391663, \"Y\": 0.18030571937561035}, {\"X\": 0.7458717226982117, \"Y\": 0.18030571937561035}]}, \"Id\": \"b6679137-3e20-45f1-bd47-392fdb9b2a33\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84963989257812, \"Text\": \"Special\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03344007208943367, \"Height\": 0.007193420547991991, \"Left\": 0.8326470851898193, \"Top\": 0.17263783514499664}, \"Polygon\": [{\"X\": 0.8326470851898193, \"Y\": 0.17263783514499664}, {\"X\": 0.8660871386528015, \"Y\": 0.17263783514499664}, {\"X\": 0.8660871386528015, \"Y\": 0.17983125150203705}, {\"X\": 0.8326470851898193, \"Y\": 0.17983125150203705}]}, \"Id\": \"459f2e14-acda-419f-99b7-83f992c38eb3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76192474365234, \"Text\": \"performance\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06305642426013947, \"Height\": 0.006991393864154816, \"Left\": 0.5083041191101074, \"Top\": 0.18117260932922363}, \"Polygon\": [{\"X\": 0.5083041191101074, \"Y\": 0.18117260932922363}, {\"X\": 0.5713605284690857, \"Y\": 0.18117260932922363}, {\"X\": 0.5713605284690857, \"Y\": 0.18816399574279785}, {\"X\": 0.5083041191101074, \"Y\": 0.18816399574279785}]}, \"Id\": \"5522b09c-afdf-40ce-9ce2-3648d71fe248\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.32672119140625, \"Text\": \"Items\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025969667360186577, \"Height\": 0.005741211120039225, \"Left\": 0.616241455078125, \"Top\": 0.18129277229309082}, \"Polygon\": [{\"X\": 0.616241455078125, \"Y\": 0.18129277229309082}, {\"X\": 0.6422110795974731, \"Y\": 0.18129277229309082}, {\"X\": 0.6422110795974731, \"Y\": 0.1870339810848236}, {\"X\": 0.616241455078125, \"Y\": 0.1870339810848236}]}, \"Id\": \"84cdd3e2-31f1-4e8b-8ada-84c00192d34a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6470718383789, \"Text\": \"IFRS\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022577712312340736, \"Height\": 0.005966837517917156, \"Left\": 0.6912369132041931, \"Top\": 0.1810838282108307}, \"Polygon\": [{\"X\": 0.6912369132041931, \"Y\": 0.1810838282108307}, {\"X\": 0.7138146162033081, \"Y\": 0.1810838282108307}, {\"X\": 0.7138146162033081, \"Y\": 0.18705065548419952}, {\"X\": 0.6912369132041931, \"Y\": 0.18705065548419952}]}, \"Id\": \"5776fa1e-df13-46c9-927d-0163fbdf4e68\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65364074707031, \"Text\": \"performance\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.058852337300777435, \"Height\": 0.00724363187327981, \"Left\": 0.7362900972366333, \"Top\": 0.18105259537696838}, \"Polygon\": [{\"X\": 0.7362900972366333, \"Y\": 0.18105259537696838}, {\"X\": 0.795142412185669, \"Y\": 0.18105259537696838}, {\"X\": 0.795142412185669, \"Y\": 0.18829622864723206}, {\"X\": 0.7362900972366333, \"Y\": 0.18829622864723206}]}, \"Id\": \"fb32fb74-374a-4826-baf3-8d3cd5a9bee3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.18732452392578, \"Text\": \"Items\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024624764919281006, \"Height\": 0.005852986592799425, \"Left\": 0.8416397571563721, \"Top\": 0.18121977150440216}, \"Polygon\": [{\"X\": 0.8416397571563721, \"Y\": 0.18121977150440216}, {\"X\": 0.8662645220756531, \"Y\": 0.18121977150440216}, {\"X\": 0.8662645220756531, \"Y\": 0.18707275390625}, {\"X\": 0.8416397571563721, \"Y\": 0.18707275390625}]}, \"Id\": \"4f9d9754-69b4-4101-94a7-d0a3e389df75\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4548110961914, \"Text\": \"IFRS\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021029071882367134, \"Height\": 0.006026224698871374, \"Left\": 0.9165687561035156, \"Top\": 0.181009903550148}, \"Polygon\": [{\"X\": 0.9165687561035156, \"Y\": 0.181009903550148}, {\"X\": 0.9375978112220764, \"Y\": 0.181009903550148}, {\"X\": 0.9375978112220764, \"Y\": 0.18703612685203552}, {\"X\": 0.9165687561035156, \"Y\": 0.18703612685203552}]}, \"Id\": \"fdaea4ba-6cfd-4fff-92c0-103adbf4b821\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76178741455078, \"Text\": \"Note\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02150745317339897, \"Height\": 0.006135131698101759, \"Left\": 0.4687524139881134, \"Top\": 0.18949902057647705}, \"Polygon\": [{\"X\": 0.4687524139881134, \"Y\": 0.18949902057647705}, {\"X\": 0.49025988578796387, \"Y\": 0.18949902057647705}, {\"X\": 0.49025988578796387, \"Y\": 0.1956341564655304}, {\"X\": 0.4687524139881134, \"Y\": 0.1956341564655304}]}, \"Id\": \"ecd08b22-a2c1-4915-908a-8fd9ca7855c5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.1806411743164, \"Text\": \"\\u00a3m\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014320844784379005, \"Height\": 0.005840860772877932, \"Left\": 0.5567774176597595, \"Top\": 0.18953055143356323}, \"Polygon\": [{\"X\": 0.5567774176597595, \"Y\": 0.18953055143356323}, {\"X\": 0.571098268032074, \"Y\": 0.18953055143356323}, {\"X\": 0.571098268032074, \"Y\": 0.19537141919136047}, {\"X\": 0.5567774176597595, \"Y\": 0.19537141919136047}]}, \"Id\": \"918730c3-9d65-4325-8d48-8f6c8ea691ff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 92.29580688476562, \"Text\": \"\\u00a3m\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014731314033269882, \"Height\": 0.005787780974060297, \"Left\": 0.6273971796035767, \"Top\": 0.18957725167274475}, \"Polygon\": [{\"X\": 0.6273971796035767, \"Y\": 0.18957725167274475}, {\"X\": 0.6421285271644592, \"Y\": 0.18957725167274475}, {\"X\": 0.6421285271644592, \"Y\": 0.1953650265932083}, {\"X\": 0.6273971796035767, \"Y\": 0.1953650265932083}]}, \"Id\": \"4075f9a2-8beb-4e93-9731-833e71f9e04c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 92.15472412109375, \"Text\": \"\\u00a3m\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014752666465938091, \"Height\": 0.005919006187468767, \"Left\": 0.6988475322723389, \"Top\": 0.18963539600372314}, \"Polygon\": [{\"X\": 0.6988475322723389, \"Y\": 0.18963539600372314}, {\"X\": 0.713600218296051, \"Y\": 0.18963539600372314}, {\"X\": 0.713600218296051, \"Y\": 0.19555440545082092}, {\"X\": 0.6988475322723389, \"Y\": 0.19555440545082092}]}, \"Id\": \"97c7cbc7-8e40-4fe0-aac8-74ac6e722298\"}, {\"BlockType\": \"WORD\", \"Confidence\": 71.20902252197266, \"Text\": \"\\u00a3m\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014506741426885128, \"Height\": 0.006054687313735485, \"Left\": 0.7802777290344238, \"Top\": 0.18955062329769135}, \"Polygon\": [{\"X\": 0.7802777290344238, \"Y\": 0.18955062329769135}, {\"X\": 0.7947844862937927, \"Y\": 0.18955062329769135}, {\"X\": 0.7947844862937927, \"Y\": 0.1956053078174591}, {\"X\": 0.7802777290344238, \"Y\": 0.1956053078174591}]}, \"Id\": \"083baa96-32af-4d79-b61f-a0c073c71558\"}, {\"BlockType\": \"WORD\", \"Confidence\": 66.76356506347656, \"Text\": \"\\u00a3m\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014623977243900299, \"Height\": 0.005925761070102453, \"Left\": 0.8516663312911987, \"Top\": 0.18954405188560486}, \"Polygon\": [{\"X\": 0.8516663312911987, \"Y\": 0.18954405188560486}, {\"X\": 0.8662903308868408, \"Y\": 0.18954405188560486}, {\"X\": 0.8662903308868408, \"Y\": 0.19546981155872345}, {\"X\": 0.8516663312911987, \"Y\": 0.19546981155872345}]}, \"Id\": \"28414b41-95a7-4b02-a53b-4511309434ed\"}, {\"BlockType\": \"WORD\", \"Confidence\": 57.13501739501953, \"Text\": \"\\u00a3m\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014513993635773659, \"Height\": 0.006300211418420076, \"Left\": 0.9228707551956177, \"Top\": 0.1893814355134964}, \"Polygon\": [{\"X\": 0.9228707551956177, \"Y\": 0.1893814355134964}, {\"X\": 0.9373847246170044, \"Y\": 0.1893814355134964}, {\"X\": 0.9373847246170044, \"Y\": 0.1956816464662552}, {\"X\": 0.9228707551956177, \"Y\": 0.1956816464662552}]}, \"Id\": \"009fe4ea-477d-4c67-a29f-5bf961d6c846\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9385986328125, \"Text\": \"Revenue\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05498666688799858, \"Height\": 0.00777779147028923, \"Left\": 0.09533783048391342, \"Top\": 0.21656560897827148}, \"Polygon\": [{\"X\": 0.09533783048391342, \"Y\": 0.21656560897827148}, {\"X\": 0.1503244936466217, \"Y\": 0.21656560897827148}, {\"X\": 0.1503244936466217, \"Y\": 0.224343404173851}, {\"X\": 0.09533783048391342, \"Y\": 0.224343404173851}]}, \"Id\": \"3a454ca6-9173-47e7-9267-eece0a045140\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90493774414062, \"Text\": \"5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007433426100760698, \"Height\": 0.00767148844897747, \"Left\": 0.4825260639190674, \"Top\": 0.21668961644172668}, \"Polygon\": [{\"X\": 0.4825260639190674, \"Y\": 0.21668961644172668}, {\"X\": 0.4899595081806183, \"Y\": 0.21668961644172668}, {\"X\": 0.4899595081806183, \"Y\": 0.2243611067533493}, {\"X\": 0.4825260639190674, \"Y\": 0.2243611067533493}]}, \"Id\": \"bc4297e0-e8a5-47f9-9092-bb7eb21c2110\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.60794067382812, \"Text\": \"1,644.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04510172829031944, \"Height\": 0.008565551601350307, \"Left\": 0.526071310043335, \"Top\": 0.21670576930046082}, \"Polygon\": [{\"X\": 0.526071310043335, \"Y\": 0.21670576930046082}, {\"X\": 0.5711730122566223, \"Y\": 0.21670576930046082}, {\"X\": 0.5711730122566223, \"Y\": 0.2252713143825531}, {\"X\": 0.526071310043335, \"Y\": 0.2252713143825531}]}, \"Id\": \"da2379eb-f38a-48ac-8d7c-6a0fb7f4d1e8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.44605255126953, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007548906374722719, \"Height\": 0.0017630411311984062, \"Left\": 0.6352583765983582, \"Top\": 0.22033455967903137}, \"Polygon\": [{\"X\": 0.6352583765983582, \"Y\": 0.22033455967903137}, {\"X\": 0.6428073048591614, \"Y\": 0.22033455967903137}, {\"X\": 0.6428073048591614, \"Y\": 0.22209759056568146}, {\"X\": 0.6352583765983582, \"Y\": 0.22209759056568146}]}, \"Id\": \"475a8da0-ba70-4051-85fb-9656aadda510\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74470520019531, \"Text\": \"1,644.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044821616262197495, \"Height\": 0.008636902086436749, \"Left\": 0.6693531274795532, \"Top\": 0.21666420996189117}, \"Polygon\": [{\"X\": 0.6693531274795532, \"Y\": 0.21666420996189117}, {\"X\": 0.714174747467041, \"Y\": 0.21666420996189117}, {\"X\": 0.714174747467041, \"Y\": 0.2253011018037796}, {\"X\": 0.6693531274795532, \"Y\": 0.2253011018037796}]}, \"Id\": \"545f79b0-9c76-43db-9a72-071b524bf9bd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50669860839844, \"Text\": \"1,459.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041089754551649094, \"Height\": 0.008284952491521835, \"Left\": 0.7514199614524841, \"Top\": 0.216851606965065}, \"Polygon\": [{\"X\": 0.7514199614524841, \"Y\": 0.216851606965065}, {\"X\": 0.7925097346305847, \"Y\": 0.216851606965065}, {\"X\": 0.7925097346305847, \"Y\": 0.22513656318187714}, {\"X\": 0.7514199614524841, \"Y\": 0.22513656318187714}]}, \"Id\": \"c0bd8249-79c2-4f9b-909c-74e8831ab216\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.2572250366211, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00807131640613079, \"Height\": 0.0016690266784280539, \"Left\": 0.8586904406547546, \"Top\": 0.22042779624462128}, \"Polygon\": [{\"X\": 0.8586904406547546, \"Y\": 0.22042779624462128}, {\"X\": 0.8667618036270142, \"Y\": 0.22042779624462128}, {\"X\": 0.8667618036270142, \"Y\": 0.22209681570529938}, {\"X\": 0.8586904406547546, \"Y\": 0.22209681570529938}]}, \"Id\": \"a41a0381-c9d5-473d-94de-e1cf7b693332\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.48738098144531, \"Text\": \"1,459.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041703615337610245, \"Height\": 0.008497314527630806, \"Left\": 0.893993616104126, \"Top\": 0.216643825173378}, \"Polygon\": [{\"X\": 0.893993616104126, \"Y\": 0.216643825173378}, {\"X\": 0.9356972575187683, \"Y\": 0.216643825173378}, {\"X\": 0.9356972575187683, \"Y\": 0.22514113783836365}, {\"X\": 0.893993616104126, \"Y\": 0.22514113783836365}]}, \"Id\": \"f80baa7e-d766-41f0-b04a-f5523c0be827\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89525604248047, \"Text\": \"Company\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0581296905875206, \"Height\": 0.00966644287109375, \"Left\": 0.09503413736820221, \"Top\": 0.22997356951236725}, \"Polygon\": [{\"X\": 0.09503413736820221, \"Y\": 0.22997356951236725}, {\"X\": 0.1531638205051422, \"Y\": 0.22997356951236725}, {\"X\": 0.1531638205051422, \"Y\": 0.239640012383461}, {\"X\": 0.09503413736820221, \"Y\": 0.239640012383461}]}, \"Id\": \"5bc034ce-787a-4970-a0ac-421e025286f3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98739624023438, \"Text\": \"and\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.022410016506910324, \"Height\": 0.00763283297419548, \"Left\": 0.15603727102279663, \"Top\": 0.2302200049161911}, \"Polygon\": [{\"X\": 0.15603727102279663, \"Y\": 0.2302200049161911}, {\"X\": 0.17844729125499725, \"Y\": 0.2302200049161911}, {\"X\": 0.17844729125499725, \"Y\": 0.23785284161567688}, {\"X\": 0.15603727102279663, \"Y\": 0.23785284161567688}]}, \"Id\": \"272e2e9a-1570-441d-9c57-95e09865743b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.5143814086914, \"Text\": \"subsidiaries\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07011355459690094, \"Height\": 0.007897318340837955, \"Left\": 0.18157954514026642, \"Top\": 0.23004870116710663}, \"Polygon\": [{\"X\": 0.18157954514026642, \"Y\": 0.23004870116710663}, {\"X\": 0.25169309973716736, \"Y\": 0.23004870116710663}, {\"X\": 0.25169309973716736, \"Y\": 0.237946018576622}, {\"X\": 0.18157954514026642, \"Y\": 0.237946018576622}]}, \"Id\": \"11834215-9b9d-4efa-ad8a-9f5cc1e49f3b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93633270263672, \"Text\": \"before\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0378929041326046, \"Height\": 0.007899841293692589, \"Left\": 0.255475789308548, \"Top\": 0.22998030483722687}, \"Polygon\": [{\"X\": 0.255475789308548, \"Y\": 0.22998030483722687}, {\"X\": 0.29336869716644287, \"Y\": 0.22998030483722687}, {\"X\": 0.29336869716644287, \"Y\": 0.237880140542984}, {\"X\": 0.255475789308548, \"Y\": 0.237880140542984}]}, \"Id\": \"d3f4b10b-2011-44e3-8abd-427ee6895d0c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92913055419922, \"Text\": \"Special\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043893370777368546, \"Height\": 0.009379679337143898, \"Left\": 0.29675084352493286, \"Top\": 0.2299422174692154}, \"Polygon\": [{\"X\": 0.29675084352493286, \"Y\": 0.2299422174692154}, {\"X\": 0.3406442403793335, \"Y\": 0.2299422174692154}, {\"X\": 0.3406442403793335, \"Y\": 0.23932190239429474}, {\"X\": 0.29675084352493286, \"Y\": 0.23932190239429474}]}, \"Id\": \"d725a1f9-487f-47da-8c32-0d478e0da64d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.41166687011719, \"Text\": \"Items\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03191623464226723, \"Height\": 0.00790500920265913, \"Left\": 0.34404781460762024, \"Top\": 0.2300514280796051}, \"Polygon\": [{\"X\": 0.34404781460762024, \"Y\": 0.2300514280796051}, {\"X\": 0.37596404552459717, \"Y\": 0.2300514280796051}, {\"X\": 0.37596404552459717, \"Y\": 0.2379564344882965}, {\"X\": 0.34404781460762024, \"Y\": 0.2379564344882965}]}, \"Id\": \"1803a5b8-a519-4a72-a80a-a3a6504b3042\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71720123291016, \"Text\": \"188.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033256880939006805, \"Height\": 0.00790450070053339, \"Left\": 0.537685751914978, \"Top\": 0.23009233176708221}, \"Polygon\": [{\"X\": 0.537685751914978, \"Y\": 0.23009233176708221}, {\"X\": 0.5709426403045654, \"Y\": 0.23009233176708221}, {\"X\": 0.5709426403045654, \"Y\": 0.23799683153629303}, {\"X\": 0.537685751914978, \"Y\": 0.23799683153629303}]}, \"Id\": \"8df277dc-9d40-4dd1-b72b-38c68c27bac3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.85443878173828, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007458144798874855, \"Height\": 0.001875671441666782, \"Left\": 0.6352676153182983, \"Top\": 0.23371604084968567}, \"Polygon\": [{\"X\": 0.6352676153182983, \"Y\": 0.23371604084968567}, {\"X\": 0.6427257657051086, \"Y\": 0.23371604084968567}, {\"X\": 0.6427257657051086, \"Y\": 0.23559170961380005}, {\"X\": 0.6352676153182983, \"Y\": 0.23559170961380005}]}, \"Id\": \"3fbba435-bdc8-464a-8a76-13d9e4f0a3c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75364685058594, \"Text\": \"188.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0330660343170166, \"Height\": 0.00785896833986044, \"Left\": 0.6805466413497925, \"Top\": 0.2301023155450821}, \"Polygon\": [{\"X\": 0.6805466413497925, \"Y\": 0.2301023155450821}, {\"X\": 0.7136126756668091, \"Y\": 0.2301023155450821}, {\"X\": 0.7136126756668091, \"Y\": 0.2379612773656845}, {\"X\": 0.6805466413497925, \"Y\": 0.2379612773656845}]}, \"Id\": \"ad44faed-4420-4c49-8cb3-e1b6771e2990\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86521911621094, \"Text\": \"124.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03254707530140877, \"Height\": 0.007953837513923645, \"Left\": 0.7619578838348389, \"Top\": 0.2300836145877838}, \"Polygon\": [{\"X\": 0.7619578838348389, \"Y\": 0.2300836145877838}, {\"X\": 0.7945049405097961, \"Y\": 0.2300836145877838}, {\"X\": 0.7945049405097961, \"Y\": 0.23803745210170746}, {\"X\": 0.7619578838348389, \"Y\": 0.23803745210170746}]}, \"Id\": \"c9ccf4a7-5ece-4874-8b35-39b2a7d8bc8f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.66747283935547, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007786313071846962, \"Height\": 0.0016911011189222336, \"Left\": 0.8588007688522339, \"Top\": 0.23364025354385376}, \"Polygon\": [{\"X\": 0.8588007688522339, \"Y\": 0.23364025354385376}, {\"X\": 0.8665871024131775, \"Y\": 0.23364025354385376}, {\"X\": 0.8665871024131775, \"Y\": 0.23533135652542114}, {\"X\": 0.8588007688522339, \"Y\": 0.23533135652542114}]}, \"Id\": \"085ebe4a-dae6-415e-b6c6-166799f7cf78\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76884460449219, \"Text\": \"124.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03289319947361946, \"Height\": 0.007803446613252163, \"Left\": 0.9047502875328064, \"Top\": 0.2300032079219818}, \"Polygon\": [{\"X\": 0.9047502875328064, \"Y\": 0.2300032079219818}, {\"X\": 0.9376434683799744, \"Y\": 0.2300032079219818}, {\"X\": 0.9376434683799744, \"Y\": 0.23780666291713715}, {\"X\": 0.9047502875328064, \"Y\": 0.23780666291713715}]}, \"Id\": \"bee6c9ed-f083-466d-8637-41fae3308963\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85047912597656, \"Text\": \"Amortisation\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07560421526432037, \"Height\": 0.008040486834943295, \"Left\": 0.09414710104465485, \"Top\": 0.24324509501457214}, \"Polygon\": [{\"X\": 0.09414710104465485, \"Y\": 0.24324509501457214}, {\"X\": 0.16975131630897522, \"Y\": 0.24324509501457214}, {\"X\": 0.16975131630897522, \"Y\": 0.251285582780838}, {\"X\": 0.09414710104465485, \"Y\": 0.251285582780838}]}, \"Id\": \"d5b5968e-715c-4dc8-8afe-4f34ee88697e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98603057861328, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011614823713898659, \"Height\": 0.007822570390999317, \"Left\": 0.1735619604587555, \"Top\": 0.24327149987220764}, \"Polygon\": [{\"X\": 0.1735619604587555, \"Y\": 0.24327149987220764}, {\"X\": 0.1851767748594284, \"Y\": 0.24327149987220764}, {\"X\": 0.1851767748594284, \"Y\": 0.2510940730571747}, {\"X\": 0.1735619604587555, \"Y\": 0.2510940730571747}]}, \"Id\": \"18729445-728c-4f4e-bb59-dc0b6fc2da9f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96810150146484, \"Text\": \"acquired\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.051317546516656876, \"Height\": 0.009633910842239857, \"Left\": 0.18822675943374634, \"Top\": 0.24328117072582245}, \"Polygon\": [{\"X\": 0.18822675943374634, \"Y\": 0.24328117072582245}, {\"X\": 0.23954430222511292, \"Y\": 0.24328117072582245}, {\"X\": 0.23954430222511292, \"Y\": 0.25291508436203003}, {\"X\": 0.18822675943374634, \"Y\": 0.25291508436203003}]}, \"Id\": \"ad607925-815a-431b-8d3e-dea452d54659\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5284652709961, \"Text\": \"intangibles\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0631973147392273, \"Height\": 0.009654887020587921, \"Left\": 0.2434277981519699, \"Top\": 0.24327470362186432}, \"Polygon\": [{\"X\": 0.2434277981519699, \"Y\": 0.24327470362186432}, {\"X\": 0.3066251277923584, \"Y\": 0.24327470362186432}, {\"X\": 0.3066251277923584, \"Y\": 0.25292959809303284}, {\"X\": 0.2434277981519699, \"Y\": 0.25292959809303284}]}, \"Id\": \"7d6e8ed9-3b9c-4c1c-9020-63c5e81dee8a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5886001586914, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007402779068797827, \"Height\": 0.0071335043758153915, \"Left\": 0.48257312178611755, \"Top\": 0.24361014366149902}, \"Polygon\": [{\"X\": 0.48257312178611755, \"Y\": 0.24361014366149902}, {\"X\": 0.4899758994579315, \"Y\": 0.24361014366149902}, {\"X\": 0.4899758994579315, \"Y\": 0.25074365735054016}, {\"X\": 0.48257312178611755, \"Y\": 0.25074365735054016}]}, \"Id\": \"f0f03854-7ff8-4894-9560-fa6bcab71030\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.91830444335938, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007687034085392952, \"Height\": 0.001995483413338661, \"Left\": 0.5636991262435913, \"Top\": 0.24702522158622742}, \"Polygon\": [{\"X\": 0.5636991262435913, \"Y\": 0.24702522158622742}, {\"X\": 0.5713861584663391, \"Y\": 0.24702522158622742}, {\"X\": 0.5713861584663391, \"Y\": 0.24902071058750153}, {\"X\": 0.5636991262435913, \"Y\": 0.24902071058750153}]}, \"Id\": \"63f909ed-6ed9-4e20-906d-56d2cd86b067\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.92462158203125, \"Text\": \"(30.9)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03341975435614586, \"Height\": 0.009453104808926582, \"Left\": 0.6130833029747009, \"Top\": 0.24325038492679596}, \"Polygon\": [{\"X\": 0.6130833029747009, \"Y\": 0.24325038492679596}, {\"X\": 0.6465030908584595, \"Y\": 0.24325038492679596}, {\"X\": 0.6465030908584595, \"Y\": 0.2527034878730774}, {\"X\": 0.6130833029747009, \"Y\": 0.2527034878730774}]}, \"Id\": \"db3695ce-8ee2-45c2-9f80-e6eed6f2871e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.2197265625, \"Text\": \"(30.9)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03305245190858841, \"Height\": 0.009494181722402573, \"Left\": 0.684897243976593, \"Top\": 0.24312296509742737}, \"Polygon\": [{\"X\": 0.684897243976593, \"Y\": 0.24312296509742737}, {\"X\": 0.7179497480392456, \"Y\": 0.24312296509742737}, {\"X\": 0.7179497480392456, \"Y\": 0.25261715054512024}, {\"X\": 0.684897243976593, \"Y\": 0.25261715054512024}]}, \"Id\": \"517744cd-e0aa-4885-912d-7258baf9bba0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.0161361694336, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007829132489860058, \"Height\": 0.0019029948161914945, \"Left\": 0.7873821258544922, \"Top\": 0.2472248673439026}, \"Polygon\": [{\"X\": 0.7873821258544922, \"Y\": 0.2472248673439026}, {\"X\": 0.7952112555503845, \"Y\": 0.2472248673439026}, {\"X\": 0.7952112555503845, \"Y\": 0.24912786483764648}, {\"X\": 0.7873821258544922, \"Y\": 0.24912786483764648}]}, \"Id\": \"1ff678de-14cf-4178-b141-e93d4881b68f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76789093017578, \"Text\": \"(8.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025222627446055412, \"Height\": 0.00945084635168314, \"Left\": 0.845165491104126, \"Top\": 0.24336794018745422}, \"Polygon\": [{\"X\": 0.845165491104126, \"Y\": 0.24336794018745422}, {\"X\": 0.8703880906105042, \"Y\": 0.24336794018745422}, {\"X\": 0.8703880906105042, \"Y\": 0.2528187930583954}, {\"X\": 0.845165491104126, \"Y\": 0.2528187930583954}]}, \"Id\": \"8a960ab6-efc7-44e0-8475-4bd228370137\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7116928100586, \"Text\": \"(8.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024872301146388054, \"Height\": 0.009413676336407661, \"Left\": 0.9165467023849487, \"Top\": 0.24337171018123627}, \"Polygon\": [{\"X\": 0.9165467023849487, \"Y\": 0.24337171018123627}, {\"X\": 0.9414190053939819, \"Y\": 0.24337171018123627}, {\"X\": 0.9414190053939819, \"Y\": 0.2527853846549988}, {\"X\": 0.9165467023849487, \"Y\": 0.2527853846549988}]}, \"Id\": \"cab01b40-7795-41bc-a592-c6d1afe172fd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8949203491211, \"Text\": \"Restructuring\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07945007085800171, \"Height\": 0.009754232130944729, \"Left\": 0.09484859555959702, \"Top\": 0.2569366991519928}, \"Polygon\": [{\"X\": 0.09484859555959702, \"Y\": 0.2569366991519928}, {\"X\": 0.17429865896701813, \"Y\": 0.2569366991519928}, {\"X\": 0.17429865896701813, \"Y\": 0.2666909396648407}, {\"X\": 0.09484859555959702, \"Y\": 0.2666909396648407}]}, \"Id\": \"b1577f84-ae3f-4e50-81b2-4e74eb450567\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98477935791016, \"Text\": \"and\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02266031689941883, \"Height\": 0.00792523194104433, \"Left\": 0.17827074229717255, \"Top\": 0.25699344277381897}, \"Polygon\": [{\"X\": 0.17827074229717255, \"Y\": 0.25699344277381897}, {\"X\": 0.20093105733394623, \"Y\": 0.25699344277381897}, {\"X\": 0.20093105733394623, \"Y\": 0.26491865515708923}, {\"X\": 0.17827074229717255, \"Y\": 0.26491865515708923}]}, \"Id\": \"d3751b2b-2e5c-43a0-9212-77a75fe0ac31\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76421356201172, \"Text\": \"site\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02017981745302677, \"Height\": 0.007837423123419285, \"Left\": 0.2044098973274231, \"Top\": 0.2571200728416443}, \"Polygon\": [{\"X\": 0.2044098973274231, \"Y\": 0.2571200728416443}, {\"X\": 0.22458972036838531, \"Y\": 0.2571200728416443}, {\"X\": 0.22458972036838531, \"Y\": 0.2649574875831604}, {\"X\": 0.2044098973274231, \"Y\": 0.2649574875831604}]}, \"Id\": \"48afb7f4-3271-4d7e-aff2-82374aa03a2d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85192108154297, \"Text\": \"closure\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043416112661361694, \"Height\": 0.007967956364154816, \"Left\": 0.22798751294612885, \"Top\": 0.2570093870162964}, \"Polygon\": [{\"X\": 0.22798751294612885, \"Y\": 0.2570093870162964}, {\"X\": 0.27140364050865173, \"Y\": 0.2570093870162964}, {\"X\": 0.27140364050865173, \"Y\": 0.264977365732193}, {\"X\": 0.22798751294612885, \"Y\": 0.264977365732193}]}, \"Id\": \"8f83b451-e95e-4bdb-a468-a6516e06c807\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86298370361328, \"Text\": \"costs\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032422732561826706, \"Height\": 0.007382486946880817, \"Left\": 0.2746899127960205, \"Top\": 0.2575303614139557}, \"Polygon\": [{\"X\": 0.2746899127960205, \"Y\": 0.2575303614139557}, {\"X\": 0.3071126341819763, \"Y\": 0.2575303614139557}, {\"X\": 0.3071126341819763, \"Y\": 0.26491284370422363}, {\"X\": 0.2746899127960205, \"Y\": 0.26491284370422363}]}, \"Id\": \"fc81e0fd-f8a4-4e5c-8090-3e56109714b8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73719787597656, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00731397420167923, \"Height\": 0.007284851279109716, \"Left\": 0.48251768946647644, \"Top\": 0.2572292983531952}, \"Polygon\": [{\"X\": 0.48251768946647644, \"Y\": 0.2572292983531952}, {\"X\": 0.48983168601989746, \"Y\": 0.2572292983531952}, {\"X\": 0.48983168601989746, \"Y\": 0.26451414823532104}, {\"X\": 0.48251768946647644, \"Y\": 0.26451414823532104}]}, \"Id\": \"3e058008-ef55-4742-9c51-2e6089205410\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.80846405029297, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007396620698273182, \"Height\": 0.0019087321124970913, \"Left\": 0.5641559958457947, \"Top\": 0.2607528567314148}, \"Polygon\": [{\"X\": 0.5641559958457947, \"Y\": 0.2607528567314148}, {\"X\": 0.571552574634552, \"Y\": 0.2607528567314148}, {\"X\": 0.571552574634552, \"Y\": 0.26266157627105713}, {\"X\": 0.5641559958457947, \"Y\": 0.26266157627105713}]}, \"Id\": \"09408f99-8cf8-4310-aec7-ac22ce9ab6f0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59080505371094, \"Text\": \"(42.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033047329634428024, \"Height\": 0.009399088099598885, \"Left\": 0.6132153868675232, \"Top\": 0.2569512724876404}, \"Polygon\": [{\"X\": 0.6132153868675232, \"Y\": 0.2569512724876404}, {\"X\": 0.6462627649307251, \"Y\": 0.2569512724876404}, {\"X\": 0.6462627649307251, \"Y\": 0.2663503587245941}, {\"X\": 0.6132153868675232, \"Y\": 0.2663503587245941}]}, \"Id\": \"76df24b8-9265-4486-a6a2-ba5534ece329\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.29153442382812, \"Text\": \"(42.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03338741138577461, \"Height\": 0.00924586970359087, \"Left\": 0.6844267845153809, \"Top\": 0.2570682168006897}, \"Polygon\": [{\"X\": 0.6844267845153809, \"Y\": 0.2570682168006897}, {\"X\": 0.7178142070770264, \"Y\": 0.2570682168006897}, {\"X\": 0.7178142070770264, \"Y\": 0.2663140892982483}, {\"X\": 0.6844267845153809, \"Y\": 0.2663140892982483}]}, \"Id\": \"28738a9f-61f7-4ae1-b831-fdb9bb3a9ee8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.48845672607422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007548791356384754, \"Height\": 0.0018485310720279813, \"Left\": 0.7875575423240662, \"Top\": 0.26080581545829773}, \"Polygon\": [{\"X\": 0.7875575423240662, \"Y\": 0.26080581545829773}, {\"X\": 0.7951063513755798, \"Y\": 0.26080581545829773}, {\"X\": 0.7951063513755798, \"Y\": 0.2626543641090393}, {\"X\": 0.7875575423240662, \"Y\": 0.2626543641090393}]}, \"Id\": \"f5b5f882-0821-47a6-9517-fee5934ea478\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88323974609375, \"Text\": \"(0.8)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02529733069241047, \"Height\": 0.009336872957646847, \"Left\": 0.8450397849082947, \"Top\": 0.25724172592163086}, \"Polygon\": [{\"X\": 0.8450397849082947, \"Y\": 0.25724172592163086}, {\"X\": 0.8703370690345764, \"Y\": 0.25724172592163086}, {\"X\": 0.8703370690345764, \"Y\": 0.2665786147117615}, {\"X\": 0.8450397849082947, \"Y\": 0.2665786147117615}]}, \"Id\": \"9fb9ac56-8207-411c-8c8b-7b98be6585a6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81497192382812, \"Text\": \"(0.8)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024819640442728996, \"Height\": 0.009158304892480373, \"Left\": 0.9166504144668579, \"Top\": 0.2571624219417572}, \"Polygon\": [{\"X\": 0.9166504144668579, \"Y\": 0.2571624219417572}, {\"X\": 0.9414700865745544, \"Y\": 0.2571624219417572}, {\"X\": 0.9414700865745544, \"Y\": 0.26632073521614075}, {\"X\": 0.9166504144668579, \"Y\": 0.26632073521614075}]}, \"Id\": \"e6db0e3f-ba37-4ea7-89dd-6c0c033acd3c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45919036865234, \"Text\": \"Acquisition\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06533351540565491, \"Height\": 0.009372111409902573, \"Left\": 0.09395059943199158, \"Top\": 0.2705609202384949}, \"Polygon\": [{\"X\": 0.09395059943199158, \"Y\": 0.2705609202384949}, {\"X\": 0.15928411483764648, \"Y\": 0.2705609202384949}, {\"X\": 0.15928411483764648, \"Y\": 0.27993303537368774}, {\"X\": 0.09395059943199158, \"Y\": 0.27993303537368774}]}, \"Id\": \"a07fae30-b918-4276-8330-917ae5ed0536\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90584564208984, \"Text\": \"costs\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031946681439876556, \"Height\": 0.007321492303162813, \"Left\": 0.16326503455638885, \"Top\": 0.2710256278514862}, \"Polygon\": [{\"X\": 0.16326503455638885, \"Y\": 0.2710256278514862}, {\"X\": 0.19521170854568481, \"Y\": 0.2710256278514862}, {\"X\": 0.19521170854568481, \"Y\": 0.27834710478782654}, {\"X\": 0.16326503455638885, \"Y\": 0.27834710478782654}]}, \"Id\": \"f094f49f-8afe-4f08-892e-b9c183020ab0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.99339294433594, \"Text\": \"and\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02223367430269718, \"Height\": 0.007687052246183157, \"Left\": 0.19901883602142334, \"Top\": 0.2706146240234375}, \"Polygon\": [{\"X\": 0.19901883602142334, \"Y\": 0.2706146240234375}, {\"X\": 0.22125251591205597, \"Y\": 0.2706146240234375}, {\"X\": 0.22125251591205597, \"Y\": 0.2783016860485077}, {\"X\": 0.19901883602142334, \"Y\": 0.2783016860485077}]}, \"Id\": \"20c4d8f6-f023-404c-84d3-c32d8059a19a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97431945800781, \"Text\": \"related\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040380869060754776, \"Height\": 0.00796826183795929, \"Left\": 0.2247646301984787, \"Top\": 0.2705487608909607}, \"Polygon\": [{\"X\": 0.2247646301984787, \"Y\": 0.2705487608909607}, {\"X\": 0.26514551043510437, \"Y\": 0.2705487608909607}, {\"X\": 0.26514551043510437, \"Y\": 0.2785170078277588}, {\"X\": 0.2247646301984787, \"Y\": 0.2785170078277588}]}, \"Id\": \"a722a673-9c90-4f47-958d-d4a4bb808f83\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.05137634277344, \"Text\": \"gains\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031515952199697495, \"Height\": 0.009325806051492691, \"Left\": 0.26889246702194214, \"Top\": 0.2707329988479614}, \"Polygon\": [{\"X\": 0.26889246702194214, \"Y\": 0.2707329988479614}, {\"X\": 0.30040842294692993, \"Y\": 0.2707329988479614}, {\"X\": 0.30040842294692993, \"Y\": 0.2800588011741638}, {\"X\": 0.26889246702194214, \"Y\": 0.2800588011741638}]}, \"Id\": \"f9e3ae2c-e171-4ccd-b228-558dc7d0a1a4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69139862060547, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007647955324500799, \"Height\": 0.007390462327748537, \"Left\": 0.48249351978302, \"Top\": 0.2706010937690735}, \"Polygon\": [{\"X\": 0.48249351978302, \"Y\": 0.2706010937690735}, {\"X\": 0.49014148116111755, \"Y\": 0.2706010937690735}, {\"X\": 0.49014148116111755, \"Y\": 0.27799156308174133}, {\"X\": 0.48249351978302, \"Y\": 0.27799156308174133}]}, \"Id\": \"61b6772a-5fca-48a9-9ee6-c98512a11f83\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.99635314941406, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007751666475087404, \"Height\": 0.002126098610460758, \"Left\": 0.5638501048088074, \"Top\": 0.2740932106971741}, \"Polygon\": [{\"X\": 0.5638501048088074, \"Y\": 0.2740932106971741}, {\"X\": 0.5716017484664917, \"Y\": 0.2740932106971741}, {\"X\": 0.5716017484664917, \"Y\": 0.27621930837631226}, {\"X\": 0.5638501048088074, \"Y\": 0.27621930837631226}]}, \"Id\": \"c2c87fdf-eaf8-4afb-afcf-6ca8e2cd47c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30530548095703, \"Text\": \"(14.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033755406737327576, \"Height\": 0.009522969834506512, \"Left\": 0.6129997968673706, \"Top\": 0.270414799451828}, \"Polygon\": [{\"X\": 0.6129997968673706, \"Y\": 0.270414799451828}, {\"X\": 0.6467552185058594, \"Y\": 0.270414799451828}, {\"X\": 0.6467552185058594, \"Y\": 0.2799377739429474}, {\"X\": 0.6129997968673706, \"Y\": 0.2799377739429474}]}, \"Id\": \"fc5e5dea-0960-4e27-9b3e-767cf451d618\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.37598419189453, \"Text\": \"(14.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03320145606994629, \"Height\": 0.009405639953911304, \"Left\": 0.6844539642333984, \"Top\": 0.2705071270465851}, \"Polygon\": [{\"X\": 0.6844539642333984, \"Y\": 0.2705071270465851}, {\"X\": 0.7176554203033447, \"Y\": 0.2705071270465851}, {\"X\": 0.7176554203033447, \"Y\": 0.2799127697944641}, {\"X\": 0.6844539642333984, \"Y\": 0.2799127697944641}]}, \"Id\": \"b78dda30-3df9-44a7-9448-fae2f3dfe9a6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.8856201171875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007989590987563133, \"Height\": 0.0020948282908648252, \"Left\": 0.787377119064331, \"Top\": 0.2740941345691681}, \"Polygon\": [{\"X\": 0.787377119064331, \"Y\": 0.2740941345691681}, {\"X\": 0.7953667044639587, \"Y\": 0.2740941345691681}, {\"X\": 0.7953667044639587, \"Y\": 0.2761889696121216}, {\"X\": 0.787377119064331, \"Y\": 0.2761889696121216}]}, \"Id\": \"0a6a012c-d484-4919-85d6-0ba8bec27ce3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67472076416016, \"Text\": \"(9.2)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024975378066301346, \"Height\": 0.009541361592710018, \"Left\": 0.8451637625694275, \"Top\": 0.27047333121299744}, \"Polygon\": [{\"X\": 0.8451637625694275, \"Y\": 0.27047333121299744}, {\"X\": 0.8701391220092773, \"Y\": 0.27047333121299744}, {\"X\": 0.8701391220092773, \"Y\": 0.28001469373703003}, {\"X\": 0.8451637625694275, \"Y\": 0.28001469373703003}]}, \"Id\": \"0a94c51f-9375-4f7d-8fd0-673ab693285c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65066528320312, \"Text\": \"(9.2)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024817856028676033, \"Height\": 0.009458556771278381, \"Left\": 0.9165538549423218, \"Top\": 0.2704661786556244}, \"Polygon\": [{\"X\": 0.9165538549423218, \"Y\": 0.2704661786556244}, {\"X\": 0.941371738910675, \"Y\": 0.2704661786556244}, {\"X\": 0.941371738910675, \"Y\": 0.2799247205257416}, {\"X\": 0.9165538549423218, \"Y\": 0.2799247205257416}]}, \"Id\": \"0571803c-d6f8-4b37-94cb-e63e3a6aec37\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.10674285888672, \"Text\": \"Impairment\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06692228466272354, \"Height\": 0.00935516320168972, \"Left\": 0.09471820294857025, \"Top\": 0.2837701737880707}, \"Polygon\": [{\"X\": 0.09471820294857025, \"Y\": 0.2837701737880707}, {\"X\": 0.1616404950618744, \"Y\": 0.2837701737880707}, {\"X\": 0.1616404950618744, \"Y\": 0.29312533140182495}, {\"X\": 0.09471820294857025, \"Y\": 0.29312533140182495}]}, \"Id\": \"04e2ab8f-6cbe-46b1-8f0a-1410b0403626\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3458480834961, \"Text\": \"charge\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04099166765809059, \"Height\": 0.009754414670169353, \"Left\": 0.16542741656303406, \"Top\": 0.2837700843811035}, \"Polygon\": [{\"X\": 0.16542741656303406, \"Y\": 0.2837700843811035}, {\"X\": 0.20641908049583435, \"Y\": 0.2837700843811035}, {\"X\": 0.20641908049583435, \"Y\": 0.29352450370788574}, {\"X\": 0.16542741656303406, \"Y\": 0.29352450370788574}]}, \"Id\": \"d9eb00e5-8535-4db6-9cc5-450e3ed109f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7059097290039, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00768217071890831, \"Height\": 0.007155782077461481, \"Left\": 0.48251065611839294, \"Top\": 0.2840423285961151}, \"Polygon\": [{\"X\": 0.48251065611839294, \"Y\": 0.2840423285961151}, {\"X\": 0.49019283056259155, \"Y\": 0.2840423285961151}, {\"X\": 0.49019283056259155, \"Y\": 0.29119813442230225}, {\"X\": 0.48251065611839294, \"Y\": 0.29119813442230225}]}, \"Id\": \"eb9a3eba-8b88-4653-ab5d-d4882ecb59a2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.02806091308594, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007389829494059086, \"Height\": 0.0019894205033779144, \"Left\": 0.5640910863876343, \"Top\": 0.28755608201026917}, \"Polygon\": [{\"X\": 0.5640910863876343, \"Y\": 0.28755608201026917}, {\"X\": 0.5714808702468872, \"Y\": 0.28755608201026917}, {\"X\": 0.5714808702468872, \"Y\": 0.2895455062389374}, {\"X\": 0.5640910863876343, \"Y\": 0.2895455062389374}]}, \"Id\": \"0ccd3a01-d531-4b41-83f3-2e81d01ff91c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.99510955810547, \"Text\": \"(36.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03359949216246605, \"Height\": 0.009487711824476719, \"Left\": 0.6130747199058533, \"Top\": 0.28375691175460815}, \"Polygon\": [{\"X\": 0.6130747199058533, \"Y\": 0.28375691175460815}, {\"X\": 0.6466742157936096, \"Y\": 0.28375691175460815}, {\"X\": 0.6466742157936096, \"Y\": 0.2932446002960205}, {\"X\": 0.6130747199058533, \"Y\": 0.2932446002960205}]}, \"Id\": \"55030adc-eecd-40a5-8727-1265b4026198\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.1044692993164, \"Text\": \"(36.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033161282539367676, \"Height\": 0.009450439363718033, \"Left\": 0.6846016049385071, \"Top\": 0.28379473090171814}, \"Polygon\": [{\"X\": 0.6846016049385071, \"Y\": 0.28379473090171814}, {\"X\": 0.7177628874778748, \"Y\": 0.28379473090171814}, {\"X\": 0.7177628874778748, \"Y\": 0.2932451665401459}, {\"X\": 0.6846016049385071, \"Y\": 0.2932451665401459}]}, \"Id\": \"a52cc6e5-1cb7-48af-a84d-44d3f1ba47fa\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.830078125, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007955634966492653, \"Height\": 0.001939941430464387, \"Left\": 0.7873685956001282, \"Top\": 0.2876223623752594}, \"Polygon\": [{\"X\": 0.7873685956001282, \"Y\": 0.2876223623752594}, {\"X\": 0.7953242063522339, \"Y\": 0.2876223623752594}, {\"X\": 0.7953242063522339, \"Y\": 0.28956231474876404}, {\"X\": 0.7873685956001282, \"Y\": 0.28956231474876404}]}, \"Id\": \"9764aa6d-dc7c-4e89-8b53-8e19bc1c13e5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.5692138671875, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007947404868900776, \"Height\": 0.0017697144066914916, \"Left\": 0.8587058782577515, \"Top\": 0.2876841127872467}, \"Polygon\": [{\"X\": 0.8587058782577515, \"Y\": 0.2876841127872467}, {\"X\": 0.8666532635688782, \"Y\": 0.2876841127872467}, {\"X\": 0.8666532635688782, \"Y\": 0.28945380449295044}, {\"X\": 0.8587058782577515, \"Y\": 0.28945380449295044}]}, \"Id\": \"0ad3cc96-0ec4-4d97-aa80-36d51b31affe\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.28961181640625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007761104963719845, \"Height\": 0.0017622883897274733, \"Left\": 0.9301581382751465, \"Top\": 0.2877163887023926}, \"Polygon\": [{\"X\": 0.9301581382751465, \"Y\": 0.2877163887023926}, {\"X\": 0.9379191994667053, \"Y\": 0.2877163887023926}, {\"X\": 0.9379191994667053, \"Y\": 0.28947868943214417}, {\"X\": 0.9301581382751465, \"Y\": 0.28947868943214417}]}, \"Id\": \"421eefca-a19d-452d-b1e6-edac06a8a87f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91810607910156, \"Text\": \"Sale\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02592558227479458, \"Height\": 0.007919739000499249, \"Left\": 0.0949285626411438, \"Top\": 0.2975012958049774}, \"Polygon\": [{\"X\": 0.0949285626411438, \"Y\": 0.2975012958049774}, {\"X\": 0.12085413932800293, \"Y\": 0.2975012958049774}, {\"X\": 0.12085413932800293, \"Y\": 0.30542102456092834}, {\"X\": 0.0949285626411438, \"Y\": 0.30542102456092834}]}, \"Id\": \"520a0d0a-5853-4937-ba9e-0e3e5ff9d750\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97816467285156, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011918402276933193, \"Height\": 0.007701050024479628, \"Left\": 0.1241825744509697, \"Top\": 0.2976938486099243}, \"Polygon\": [{\"X\": 0.1241825744509697, \"Y\": 0.2976938486099243}, {\"X\": 0.13610097765922546, \"Y\": 0.2976938486099243}, {\"X\": 0.13610097765922546, \"Y\": 0.30539488792419434}, {\"X\": 0.1241825744509697, \"Y\": 0.30539488792419434}]}, \"Id\": \"492c0d18-d8ea-47da-b934-47d890ba20ad\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94290161132812, \"Text\": \"business\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05245833471417427, \"Height\": 0.007867635227739811, \"Left\": 0.13905371725559235, \"Top\": 0.29764437675476074}, \"Polygon\": [{\"X\": 0.13905371725559235, \"Y\": 0.29764437675476074}, {\"X\": 0.19151204824447632, \"Y\": 0.29764437675476074}, {\"X\": 0.19151204824447632, \"Y\": 0.305512011051178}, {\"X\": 0.13905371725559235, \"Y\": 0.305512011051178}]}, \"Id\": \"a7b69224-cff1-4f94-bb21-e2f0345fe98a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68107604980469, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007479209452867508, \"Height\": 0.0073692831210792065, \"Left\": 0.48244598507881165, \"Top\": 0.29773369431495667}, \"Polygon\": [{\"X\": 0.48244598507881165, \"Y\": 0.29773369431495667}, {\"X\": 0.48992520570755005, \"Y\": 0.29773369431495667}, {\"X\": 0.48992520570755005, \"Y\": 0.30510297417640686}, {\"X\": 0.48244598507881165, \"Y\": 0.30510297417640686}]}, \"Id\": \"71fee0d9-18b6-49ad-80f9-172b04fe2a6b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.00199890136719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007645308040082455, \"Height\": 0.002077006036415696, \"Left\": 0.5640230774879456, \"Top\": 0.3011508584022522}, \"Polygon\": [{\"X\": 0.5640230774879456, \"Y\": 0.3011508584022522}, {\"X\": 0.5716683864593506, \"Y\": 0.3011508584022522}, {\"X\": 0.5716683864593506, \"Y\": 0.30322787165641785}, {\"X\": 0.5640230774879456, \"Y\": 0.30322787165641785}]}, \"Id\": \"c17adfba-d0de-496a-b1c4-ec08089b60ac\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80293273925781, \"Text\": \"(6.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025900430977344513, \"Height\": 0.00946738664060831, \"Left\": 0.6203874945640564, \"Top\": 0.29753029346466064}, \"Polygon\": [{\"X\": 0.6203874945640564, \"Y\": 0.29753029346466064}, {\"X\": 0.6462879180908203, \"Y\": 0.29753029346466064}, {\"X\": 0.6462879180908203, \"Y\": 0.306997686624527}, {\"X\": 0.6203874945640564, \"Y\": 0.306997686624527}]}, \"Id\": \"211ffa99-e9c5-4dc5-8391-811ecce3a1cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82062530517578, \"Text\": \"(6.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025747224688529968, \"Height\": 0.009792501106858253, \"Left\": 0.6921467185020447, \"Top\": 0.29736870527267456}, \"Polygon\": [{\"X\": 0.6921467185020447, \"Y\": 0.29736870527267456}, {\"X\": 0.7178939580917358, \"Y\": 0.29736870527267456}, {\"X\": 0.7178939580917358, \"Y\": 0.30716121196746826}, {\"X\": 0.6921467185020447, \"Y\": 0.30716121196746826}]}, \"Id\": \"e237a2af-b642-49d0-9ca3-7547b11756bd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.00187683105469, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007587294559925795, \"Height\": 0.001977091422304511, \"Left\": 0.7874998450279236, \"Top\": 0.30115416646003723}, \"Polygon\": [{\"X\": 0.7874998450279236, \"Y\": 0.30115416646003723}, {\"X\": 0.7950870990753174, \"Y\": 0.30115416646003723}, {\"X\": 0.7950870990753174, \"Y\": 0.30313125252723694}, {\"X\": 0.7874998450279236, \"Y\": 0.30313125252723694}]}, \"Id\": \"0e4625be-1ada-4b4e-9d23-195c954c387a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.50569915771484, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007934915833175182, \"Height\": 0.0018766479333862662, \"Left\": 0.8586669564247131, \"Top\": 0.30118584632873535}, \"Polygon\": [{\"X\": 0.8586669564247131, \"Y\": 0.30118584632873535}, {\"X\": 0.8666018843650818, \"Y\": 0.30118584632873535}, {\"X\": 0.8666018843650818, \"Y\": 0.3030624985694885}, {\"X\": 0.8586669564247131, \"Y\": 0.3030624985694885}]}, \"Id\": \"d7c62017-f90c-405e-a10d-f80748205e4b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.50592803955078, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007870052941143513, \"Height\": 0.0017868855502456427, \"Left\": 0.9301025867462158, \"Top\": 0.3012324273586273}, \"Polygon\": [{\"X\": 0.9301025867462158, \"Y\": 0.3012324273586273}, {\"X\": 0.9379726052284241, \"Y\": 0.3012324273586273}, {\"X\": 0.9379726052284241, \"Y\": 0.30301931500434875}, {\"X\": 0.9301025867462158, \"Y\": 0.30301931500434875}]}, \"Id\": \"953d7d15-a676-4877-aef1-70b5e2bcb170\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8957748413086, \"Text\": \"Foreign\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043673790991306305, \"Height\": 0.009776387363672256, \"Left\": 0.09525512903928757, \"Top\": 0.3109422028064728}, \"Polygon\": [{\"X\": 0.09525512903928757, \"Y\": 0.3109422028064728}, {\"X\": 0.13892892003059387, \"Y\": 0.3109422028064728}, {\"X\": 0.13892892003059387, \"Y\": 0.32071858644485474}, {\"X\": 0.09525512903928757, \"Y\": 0.32071858644485474}]}, \"Id\": \"61b5b5f6-46d7-44fe-a1e6-d0189969a008\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8693618774414, \"Text\": \"exchange\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.057215090841054916, \"Height\": 0.00963496882468462, \"Left\": 0.1426897794008255, \"Top\": 0.3111715614795685}, \"Polygon\": [{\"X\": 0.1426897794008255, \"Y\": 0.3111715614795685}, {\"X\": 0.19990487396717072, \"Y\": 0.3111715614795685}, {\"X\": 0.19990487396717072, \"Y\": 0.3208065330982208}, {\"X\": 0.1426897794008255, \"Y\": 0.3208065330982208}]}, \"Id\": \"7767c764-d064-4bf4-aeef-240476d92c80\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90389251708984, \"Text\": \"gain\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024955997243523598, \"Height\": 0.009561889804899693, \"Left\": 0.2035731077194214, \"Top\": 0.311214417219162}, \"Polygon\": [{\"X\": 0.2035731077194214, \"Y\": 0.311214417219162}, {\"X\": 0.22852911055088043, \"Y\": 0.311214417219162}, {\"X\": 0.22852911055088043, \"Y\": 0.3207763135433197}, {\"X\": 0.2035731077194214, \"Y\": 0.3207763135433197}]}, \"Id\": \"8d3b32d4-9652-4562-abf0-c9d5807ffbc4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95421600341797, \"Text\": \"on\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01499965600669384, \"Height\": 0.0060875448398292065, \"Left\": 0.23218996822834015, \"Top\": 0.3127763867378235}, \"Polygon\": [{\"X\": 0.23218996822834015, \"Y\": 0.3127763867378235}, {\"X\": 0.24718962609767914, \"Y\": 0.3127763867378235}, {\"X\": 0.24718962609767914, \"Y\": 0.3188639283180237}, {\"X\": 0.23218996822834015, \"Y\": 0.3188639283180237}]}, \"Id\": \"5514f06a-31a5-4c80-9f7b-de2768a4ae3e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96949768066406, \"Text\": \"rights\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0325840525329113, \"Height\": 0.00935854110866785, \"Left\": 0.25071412324905396, \"Top\": 0.3112408518791199}, \"Polygon\": [{\"X\": 0.25071412324905396, \"Y\": 0.3112408518791199}, {\"X\": 0.28329816460609436, \"Y\": 0.3112408518791199}, {\"X\": 0.28329816460609436, \"Y\": 0.32059940695762634}, {\"X\": 0.25071412324905396, \"Y\": 0.32059940695762634}]}, \"Id\": \"44e86f4c-7e62-425e-b1cf-239b82f766ee\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91132354736328, \"Text\": \"issue\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03072684071958065, \"Height\": 0.00785046350210905, \"Left\": 0.28723204135894775, \"Top\": 0.3110251724720001}, \"Polygon\": [{\"X\": 0.28723204135894775, \"Y\": 0.3110251724720001}, {\"X\": 0.31795889139175415, \"Y\": 0.3110251724720001}, {\"X\": 0.31795889139175415, \"Y\": 0.31887564063072205}, {\"X\": 0.28723204135894775, \"Y\": 0.31887564063072205}]}, \"Id\": \"ebae7e93-1e67-4705-a9bc-3f14246a319d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57355499267578, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0078066010028123856, \"Height\": 0.007120381575077772, \"Left\": 0.4824593663215637, \"Top\": 0.31126120686531067}, \"Polygon\": [{\"X\": 0.4824593663215637, \"Y\": 0.31126120686531067}, {\"X\": 0.49026596546173096, \"Y\": 0.31126120686531067}, {\"X\": 0.49026596546173096, \"Y\": 0.31838157773017883}, {\"X\": 0.4824593663215637, \"Y\": 0.31838157773017883}]}, \"Id\": \"b55464ce-47ca-4dac-baee-38300501bc0a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.63349151611328, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0075791217386722565, \"Height\": 0.0019546712283045053, \"Left\": 0.5640000700950623, \"Top\": 0.31475120782852173}, \"Polygon\": [{\"X\": 0.5640000700950623, \"Y\": 0.31475120782852173}, {\"X\": 0.5715792179107666, \"Y\": 0.31475120782852173}, {\"X\": 0.5715792179107666, \"Y\": 0.3167058825492859}, {\"X\": 0.5640000700950623, \"Y\": 0.3167058825492859}]}, \"Id\": \"40498b33-e51d-4d5c-889a-020d784e7464\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.74375915527344, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007873276248574257, \"Height\": 0.0018431192729622126, \"Left\": 0.6351345181465149, \"Top\": 0.31481948494911194}, \"Polygon\": [{\"X\": 0.6351345181465149, \"Y\": 0.31481948494911194}, {\"X\": 0.6430078148841858, \"Y\": 0.31481948494911194}, {\"X\": 0.6430078148841858, \"Y\": 0.31666260957717896}, {\"X\": 0.6351345181465149, \"Y\": 0.31666260957717896}]}, \"Id\": \"df146383-d372-46a4-aa85-f26199eb2c62\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.25279235839844, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008081446401774883, \"Height\": 0.0019014892168343067, \"Left\": 0.7063969373703003, \"Top\": 0.3147740066051483}, \"Polygon\": [{\"X\": 0.7063969373703003, \"Y\": 0.3147740066051483}, {\"X\": 0.7144783735275269, \"Y\": 0.3147740066051483}, {\"X\": 0.7144783735275269, \"Y\": 0.31667548418045044}, {\"X\": 0.7063969373703003, \"Y\": 0.31667548418045044}]}, \"Id\": \"6495d038-e647-4411-a86a-547bc21019c6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.17179870605469, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00791880115866661, \"Height\": 0.0017930298345163465, \"Left\": 0.7874245047569275, \"Top\": 0.3148689866065979}, \"Polygon\": [{\"X\": 0.7874245047569275, \"Y\": 0.3148689866065979}, {\"X\": 0.795343279838562, \"Y\": 0.3148689866065979}, {\"X\": 0.795343279838562, \"Y\": 0.3166620135307312}, {\"X\": 0.7874245047569275, \"Y\": 0.3166620135307312}]}, \"Id\": \"c9925767-1eb9-47af-ad91-997c2bea152a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72509765625, \"Text\": \"3.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018540414050221443, \"Height\": 0.007778889965265989, \"Left\": 0.8474037051200867, \"Top\": 0.3110816478729248}, \"Polygon\": [{\"X\": 0.8474037051200867, \"Y\": 0.3110816478729248}, {\"X\": 0.8659441471099854, \"Y\": 0.3110816478729248}, {\"X\": 0.8659441471099854, \"Y\": 0.3188605308532715}, {\"X\": 0.8474037051200867, \"Y\": 0.3188605308532715}]}, \"Id\": \"dd016530-e6c3-44b3-86f2-865f9825851a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.61853790283203, \"Text\": \"3.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018389567732810974, \"Height\": 0.007727071177214384, \"Left\": 0.9188397526741028, \"Top\": 0.3111094534397125}, \"Polygon\": [{\"X\": 0.9188397526741028, \"Y\": 0.3111094534397125}, {\"X\": 0.937229335308075, \"Y\": 0.3111094534397125}, {\"X\": 0.937229335308075, \"Y\": 0.3188365399837494}, {\"X\": 0.9188397526741028, \"Y\": 0.3188365399837494}]}, \"Id\": \"441d0877-681d-41f3-8cff-9c533360d8f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8896713256836, \"Text\": \"Company\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05816243216395378, \"Height\": 0.009688273072242737, \"Left\": 0.09492237120866776, \"Top\": 0.32455894351005554}, \"Polygon\": [{\"X\": 0.09492237120866776, \"Y\": 0.32455894351005554}, {\"X\": 0.15308479964733124, \"Y\": 0.32455894351005554}, {\"X\": 0.15308479964733124, \"Y\": 0.3342472016811371}, {\"X\": 0.09492237120866776, \"Y\": 0.3342472016811371}]}, \"Id\": \"c315e3db-1899-41d3-b421-d3e43f01d4f6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98430633544922, \"Text\": \"and\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02236867882311344, \"Height\": 0.007736836560070515, \"Left\": 0.1560489982366562, \"Top\": 0.3247652053833008}, \"Polygon\": [{\"X\": 0.1560489982366562, \"Y\": 0.3247652053833008}, {\"X\": 0.17841768264770508, \"Y\": 0.3247652053833008}, {\"X\": 0.17841768264770508, \"Y\": 0.3325020372867584}, {\"X\": 0.1560489982366562, \"Y\": 0.3325020372867584}]}, \"Id\": \"17d96162-f9a3-4b05-9c41-d0fba5b552fc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.04825592041016, \"Text\": \"subsidiaries\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07113148272037506, \"Height\": 0.007897338829934597, \"Left\": 0.18152540922164917, \"Top\": 0.3246771991252899}, \"Polygon\": [{\"X\": 0.18152540922164917, \"Y\": 0.3246771991252899}, {\"X\": 0.25265687704086304, \"Y\": 0.3246771991252899}, {\"X\": 0.25265687704086304, \"Y\": 0.3325745463371277}, {\"X\": 0.18152540922164917, \"Y\": 0.3325745463371277}]}, \"Id\": \"3eba4335-7935-4531-a63c-3613d25c3616\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74483489990234, \"Text\": \"188.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03361589461565018, \"Height\": 0.007887959480285645, \"Left\": 0.5375874638557434, \"Top\": 0.3247760832309723}, \"Polygon\": [{\"X\": 0.5375874638557434, \"Y\": 0.3247760832309723}, {\"X\": 0.571203351020813, \"Y\": 0.3247760832309723}, {\"X\": 0.571203351020813, \"Y\": 0.33266404271125793}, {\"X\": 0.5375874638557434, \"Y\": 0.33266404271125793}]}, \"Id\": \"79fbb681-e214-4604-89f8-57b550dfd4a9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4009017944336, \"Text\": \"(131.2)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04129631072282791, \"Height\": 0.009623962454497814, \"Left\": 0.6056102514266968, \"Top\": 0.3246347904205322}, \"Polygon\": [{\"X\": 0.6056102514266968, \"Y\": 0.3246347904205322}, {\"X\": 0.6469066143035889, \"Y\": 0.3246347904205322}, {\"X\": 0.6469066143035889, \"Y\": 0.3342587351799011}, {\"X\": 0.6056102514266968, \"Y\": 0.3342587351799011}]}, \"Id\": \"874f5901-68cd-4920-839e-f8e830adf162\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69491577148438, \"Text\": \"57.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02701713517308235, \"Height\": 0.007826924324035645, \"Left\": 0.6871832013130188, \"Top\": 0.3246620297431946}, \"Polygon\": [{\"X\": 0.6871832013130188, \"Y\": 0.3246620297431946}, {\"X\": 0.7142003774642944, \"Y\": 0.3246620297431946}, {\"X\": 0.7142003774642944, \"Y\": 0.3324889540672302}, {\"X\": 0.6871832013130188, \"Y\": 0.3324889540672302}]}, \"Id\": \"8dbeff82-50c8-4957-a270-180674ea6ef6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83267974853516, \"Text\": \"124.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03263536095619202, \"Height\": 0.007789082825183868, \"Left\": 0.762202799320221, \"Top\": 0.3247644901275635}, \"Polygon\": [{\"X\": 0.762202799320221, \"Y\": 0.3247644901275635}, {\"X\": 0.7948381304740906, \"Y\": 0.3247644901275635}, {\"X\": 0.7948381304740906, \"Y\": 0.33255356550216675}, {\"X\": 0.762202799320221, \"Y\": 0.33255356550216675}]}, \"Id\": \"68389c04-4278-48e4-b9e4-8e58fbfb47f6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.54593658447266, \"Text\": \"(15.2)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032606009393930435, \"Height\": 0.009602966718375683, \"Left\": 0.8375903964042664, \"Top\": 0.32470619678497314}, \"Polygon\": [{\"X\": 0.8375903964042664, \"Y\": 0.32470619678497314}, {\"X\": 0.8701964020729065, \"Y\": 0.32470619678497314}, {\"X\": 0.8701964020729065, \"Y\": 0.3343091607093811}, {\"X\": 0.8375903964042664, \"Y\": 0.3343091607093811}]}, \"Id\": \"2f03080e-925e-43f1-be58-9e86b3d6d2c2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68413543701172, \"Text\": \"109.7\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03231329470872879, \"Height\": 0.0077249957248568535, \"Left\": 0.9050179123878479, \"Top\": 0.3247796893119812}, \"Polygon\": [{\"X\": 0.9050179123878479, \"Y\": 0.3247796893119812}, {\"X\": 0.9373311996459961, \"Y\": 0.3247796893119812}, {\"X\": 0.9373311996459961, \"Y\": 0.3325046896934509}, {\"X\": 0.9050179123878479, \"Y\": 0.3325046896934509}]}, \"Id\": \"f1e857ee-f2dc-4d85-a161-d847f40689dd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8081283569336, \"Text\": \"Share\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03485681489109993, \"Height\": 0.007975769229233265, \"Left\": 0.09497041255235672, \"Top\": 0.3380216658115387}, \"Polygon\": [{\"X\": 0.09497041255235672, \"Y\": 0.3380216658115387}, {\"X\": 0.12982723116874695, \"Y\": 0.3380216658115387}, {\"X\": 0.12982723116874695, \"Y\": 0.3459974229335785}, {\"X\": 0.09497041255235672, \"Y\": 0.3459974229335785}]}, \"Id\": \"8fe9bc75-bc6f-41fe-9a1f-4f2779310c42\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95785522460938, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011734016239643097, \"Height\": 0.007697387598454952, \"Left\": 0.1334066092967987, \"Top\": 0.338250070810318}, \"Polygon\": [{\"X\": 0.1334066092967987, \"Y\": 0.338250070810318}, {\"X\": 0.1451406180858612, \"Y\": 0.338250070810318}, {\"X\": 0.1451406180858612, \"Y\": 0.3459474742412567}, {\"X\": 0.1334066092967987, \"Y\": 0.3459474742412567}]}, \"Id\": \"5788d9fa-a3c3-4bd2-a049-ecfbbf4c9595\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89627075195312, \"Text\": \"joint\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024963321164250374, \"Height\": 0.009430257603526115, \"Left\": 0.1475096493959427, \"Top\": 0.33816763758659363}, \"Polygon\": [{\"X\": 0.1475096493959427, \"Y\": 0.33816763758659363}, {\"X\": 0.1724729835987091, \"Y\": 0.33816763758659363}, {\"X\": 0.1724729835987091, \"Y\": 0.3475978970527649}, {\"X\": 0.1475096493959427, \"Y\": 0.3475978970527649}]}, \"Id\": \"ee822cf6-9682-4e5a-9e49-b6f900011f3f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74876403808594, \"Text\": \"ventures\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050637900829315186, \"Height\": 0.007448649033904076, \"Left\": 0.17557238042354584, \"Top\": 0.33870169520378113}, \"Polygon\": [{\"X\": 0.17557238042354584, \"Y\": 0.33870169520378113}, {\"X\": 0.22621028125286102, \"Y\": 0.33870169520378113}, {\"X\": 0.22621028125286102, \"Y\": 0.34615033864974976}, {\"X\": 0.17557238042354584, \"Y\": 0.34615033864974976}]}, \"Id\": \"ac99063d-0a10-4023-9f69-93fc35872966\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93588256835938, \"Text\": \"18\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014530741609632969, \"Height\": 0.007891153916716576, \"Left\": 0.4758918285369873, \"Top\": 0.3380419611930847}, \"Polygon\": [{\"X\": 0.4758918285369873, \"Y\": 0.3380419611930847}, {\"X\": 0.4904225766658783, \"Y\": 0.3380419611930847}, {\"X\": 0.4904225766658783, \"Y\": 0.34593310952186584}, {\"X\": 0.4758918285369873, \"Y\": 0.34593310952186584}]}, \"Id\": \"2bebc836-9702-4ac7-ace8-9d5fe73db508\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85167694091797, \"Text\": \"1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018368329852819443, \"Height\": 0.00756638590246439, \"Left\": 0.552592396736145, \"Top\": 0.33823761343955994}, \"Polygon\": [{\"X\": 0.552592396736145, \"Y\": 0.33823761343955994}, {\"X\": 0.5709607005119324, \"Y\": 0.33823761343955994}, {\"X\": 0.5709607005119324, \"Y\": 0.34580400586128235}, {\"X\": 0.552592396736145, \"Y\": 0.34580400586128235}]}, \"Id\": \"c711c366-b7a1-4557-a8bb-0f21fe860bc9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.19773864746094, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008113963529467583, \"Height\": 0.0020488689187914133, \"Left\": 0.6349955797195435, \"Top\": 0.34178248047828674}, \"Polygon\": [{\"X\": 0.6349955797195435, \"Y\": 0.34178248047828674}, {\"X\": 0.6431095600128174, \"Y\": 0.34178248047828674}, {\"X\": 0.6431095600128174, \"Y\": 0.343831330537796}, {\"X\": 0.6349955797195435, \"Y\": 0.343831330537796}]}, \"Id\": \"0c54948e-67db-41c0-bda5-4f2fd99097d6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81724548339844, \"Text\": \"1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018650397658348083, \"Height\": 0.007723307237029076, \"Left\": 0.6952481269836426, \"Top\": 0.33820077776908875}, \"Polygon\": [{\"X\": 0.6952481269836426, \"Y\": 0.33820077776908875}, {\"X\": 0.7138985395431519, \"Y\": 0.33820077776908875}, {\"X\": 0.7138985395431519, \"Y\": 0.3459240794181824}, {\"X\": 0.6952481269836426, \"Y\": 0.3459240794181824}]}, \"Id\": \"33f7657d-e88d-42f7-a794-80e665326183\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.45983123779297, \"Text\": \"0.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01901465281844139, \"Height\": 0.007829426787793636, \"Left\": 0.7758227586746216, \"Top\": 0.33804821968078613}, \"Polygon\": [{\"X\": 0.7758227586746216, \"Y\": 0.33804821968078613}, {\"X\": 0.7948374152183533, \"Y\": 0.33804821968078613}, {\"X\": 0.7948374152183533, \"Y\": 0.34587764739990234}, {\"X\": 0.7758227586746216, \"Y\": 0.34587764739990234}]}, \"Id\": \"a18e880c-f3b0-4e7b-934a-bebb53206f79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.73809814453125, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008228839375078678, \"Height\": 0.0018519693985581398, \"Left\": 0.8585007786750793, \"Top\": 0.34182605147361755}, \"Polygon\": [{\"X\": 0.8585007786750793, \"Y\": 0.34182605147361755}, {\"X\": 0.8667296171188354, \"Y\": 0.34182605147361755}, {\"X\": 0.8667296171188354, \"Y\": 0.3436780273914337}, {\"X\": 0.8585007786750793, \"Y\": 0.3436780273914337}]}, \"Id\": \"359fe1b1-b986-4e4d-a99e-f01a27c55459\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.13957977294922, \"Text\": \"0.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019334418699145317, \"Height\": 0.0077997841872274876, \"Left\": 0.9186416864395142, \"Top\": 0.3381575345993042}, \"Polygon\": [{\"X\": 0.9186416864395142, \"Y\": 0.3381575345993042}, {\"X\": 0.937976062297821, \"Y\": 0.3381575345993042}, {\"X\": 0.937976062297821, \"Y\": 0.34595730900764465}, {\"X\": 0.9186416864395142, \"Y\": 0.34595730900764465}]}, \"Id\": \"6c5882a2-d7a3-488f-b9aa-93b308593f3e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97215270996094, \"Text\": \"Operating\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06307878345251083, \"Height\": 0.00974344927817583, \"Left\": 0.09497936815023422, \"Top\": 0.35143718123435974}, \"Polygon\": [{\"X\": 0.09497936815023422, \"Y\": 0.35143718123435974}, {\"X\": 0.15805815160274506, \"Y\": 0.35143718123435974}, {\"X\": 0.15805815160274506, \"Y\": 0.3611806333065033}, {\"X\": 0.09497936815023422, \"Y\": 0.3611806333065033}]}, \"Id\": \"674227e7-c261-42e2-a61c-9b8328272d16\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.92650604248047, \"Text\": \"profit/(loss)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07189134508371353, \"Height\": 0.010004150681197643, \"Left\": 0.16239048540592194, \"Top\": 0.3511260449886322}, \"Polygon\": [{\"X\": 0.16239048540592194, \"Y\": 0.3511260449886322}, {\"X\": 0.23428182303905487, \"Y\": 0.3511260449886322}, {\"X\": 0.23428182303905487, \"Y\": 0.3611302077770233}, {\"X\": 0.16239048540592194, \"Y\": 0.3611302077770233}]}, \"Id\": \"4733588f-64b9-4e2e-b53b-daa5ec4a0168\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90520477294922, \"Text\": \"6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007927922531962395, \"Height\": 0.007875285111367702, \"Left\": 0.4824853837490082, \"Top\": 0.3515893518924713}, \"Polygon\": [{\"X\": 0.4824853837490082, \"Y\": 0.3515893518924713}, {\"X\": 0.4904133081436157, \"Y\": 0.3515893518924713}, {\"X\": 0.4904133081436157, \"Y\": 0.3594646453857422}, {\"X\": 0.4824853837490082, \"Y\": 0.3594646453857422}]}, \"Id\": \"336dfc3d-8eef-4173-8525-5f233ce5c2d2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83224487304688, \"Text\": \"189.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03319978713989258, \"Height\": 0.00800349935889244, \"Left\": 0.5379903316497803, \"Top\": 0.3515641391277313}, \"Polygon\": [{\"X\": 0.5379903316497803, \"Y\": 0.3515641391277313}, {\"X\": 0.5711901187896729, \"Y\": 0.3515641391277313}, {\"X\": 0.5711901187896729, \"Y\": 0.3595676124095917}, {\"X\": 0.5379903316497803, \"Y\": 0.3595676124095917}]}, \"Id\": \"52082ce1-b2cd-429d-8f3d-52f20fdc1137\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34666442871094, \"Text\": \"(131.2)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040984489023685455, \"Height\": 0.009853962808847427, \"Left\": 0.6054872274398804, \"Top\": 0.35134774446487427}, \"Polygon\": [{\"X\": 0.6054872274398804, \"Y\": 0.35134774446487427}, {\"X\": 0.6464717388153076, \"Y\": 0.35134774446487427}, {\"X\": 0.6464717388153076, \"Y\": 0.3612017035484314}, {\"X\": 0.6054872274398804, \"Y\": 0.3612017035484314}]}, \"Id\": \"348190b6-7107-4036-b71b-666ba1d2100b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78372955322266, \"Text\": \"58.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026339273899793625, \"Height\": 0.007808105554431677, \"Left\": 0.6875393390655518, \"Top\": 0.35155078768730164}, \"Polygon\": [{\"X\": 0.6875393390655518, \"Y\": 0.35155078768730164}, {\"X\": 0.7138786315917969, \"Y\": 0.35155078768730164}, {\"X\": 0.7138786315917969, \"Y\": 0.35935887694358826}, {\"X\": 0.6875393390655518, \"Y\": 0.35935887694358826}]}, \"Id\": \"9deebda3-90de-4c5f-bd67-798db6f060f6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84358215332031, \"Text\": \"125.8\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03272911533713341, \"Height\": 0.007964721880853176, \"Left\": 0.7619244456291199, \"Top\": 0.3514917492866516}, \"Polygon\": [{\"X\": 0.7619244456291199, \"Y\": 0.3514917492866516}, {\"X\": 0.7946535348892212, \"Y\": 0.3514917492866516}, {\"X\": 0.7946535348892212, \"Y\": 0.35945644974708557}, {\"X\": 0.7619244456291199, \"Y\": 0.35945644974708557}]}, \"Id\": \"4f66d1ad-3758-407f-9901-0748f4dfe123\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4753646850586, \"Text\": \"(15.2)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03225130960345268, \"Height\": 0.009640177711844444, \"Left\": 0.8376351594924927, \"Top\": 0.3513911962509155}, \"Polygon\": [{\"X\": 0.8376351594924927, \"Y\": 0.3513911962509155}, {\"X\": 0.8698864579200745, \"Y\": 0.3513911962509155}, {\"X\": 0.8698864579200745, \"Y\": 0.3610313832759857}, {\"X\": 0.8376351594924927, \"Y\": 0.3610313832759857}]}, \"Id\": \"6938bd92-a48d-42c0-91aa-e3abd9f205a2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78689575195312, \"Text\": \"110.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03330303728580475, \"Height\": 0.007867838256061077, \"Left\": 0.9047603607177734, \"Top\": 0.35160940885543823}, \"Polygon\": [{\"X\": 0.9047603607177734, \"Y\": 0.35160940885543823}, {\"X\": 0.938063383102417, \"Y\": 0.35160940885543823}, {\"X\": 0.938063383102417, \"Y\": 0.3594772517681122}, {\"X\": 0.9047603607177734, \"Y\": 0.3594772517681122}]}, \"Id\": \"d19e5f66-2044-4d83-8d86-0451dcc1fbef\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.38519287109375, \"Text\": \"Interest\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04350900277495384, \"Height\": 0.007730143144726753, \"Left\": 0.09535123407840729, \"Top\": 0.3654544949531555}, \"Polygon\": [{\"X\": 0.09535123407840729, \"Y\": 0.3654544949531555}, {\"X\": 0.13886022567749023, \"Y\": 0.3654544949531555}, {\"X\": 0.13886022567749023, \"Y\": 0.3731846511363983}, {\"X\": 0.09535123407840729, \"Y\": 0.3731846511363983}]}, \"Id\": \"d6f33ae8-5fce-4cfb-929f-6effc7cfdc47\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97161865234375, \"Text\": \"payable\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04594707116484642, \"Height\": 0.009315267205238342, \"Left\": 0.14265377819538116, \"Top\": 0.36543217301368713}, \"Polygon\": [{\"X\": 0.14265377819538116, \"Y\": 0.36543217301368713}, {\"X\": 0.18860085308551788, \"Y\": 0.36543217301368713}, {\"X\": 0.18860085308551788, \"Y\": 0.3747474253177643}, {\"X\": 0.14265377819538116, \"Y\": 0.3747474253177643}]}, \"Id\": \"b4aee812-4db0-41df-aa14-f61624a160b9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91455078125, \"Text\": \"9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007535726763308048, \"Height\": 0.007834228686988354, \"Left\": 0.4823383688926697, \"Top\": 0.36529138684272766}, \"Polygon\": [{\"X\": 0.4823383688926697, \"Y\": 0.36529138684272766}, {\"X\": 0.48987409472465515, \"Y\": 0.36529138684272766}, {\"X\": 0.48987409472465515, \"Y\": 0.3731256127357483}, {\"X\": 0.4823383688926697, \"Y\": 0.3731256127357483}]}, \"Id\": \"5e28b9e2-b6e2-4dc5-830e-bdab2125e749\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87995147705078, \"Text\": \"(25.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0339425690472126, \"Height\": 0.009546956047415733, \"Left\": 0.541476309299469, \"Top\": 0.36517056822776794}, \"Polygon\": [{\"X\": 0.541476309299469, \"Y\": 0.36517056822776794}, {\"X\": 0.5754188299179077, \"Y\": 0.36517056822776794}, {\"X\": 0.5754188299179077, \"Y\": 0.3747175335884094}, {\"X\": 0.541476309299469, \"Y\": 0.3747175335884094}]}, \"Id\": \"6a0913a1-540d-4365-af53-db84c4e0c44e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.16584014892578, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007846859283745289, \"Height\": 0.002066324930638075, \"Left\": 0.6351912617683411, \"Top\": 0.36872708797454834}, \"Polygon\": [{\"X\": 0.6351912617683411, \"Y\": 0.36872708797454834}, {\"X\": 0.6430381536483765, \"Y\": 0.36872708797454834}, {\"X\": 0.6430381536483765, \"Y\": 0.3707934021949768}, {\"X\": 0.6351912617683411, \"Y\": 0.3707934021949768}]}, \"Id\": \"ee934547-7dc3-4a36-86ff-8e9d5c45979f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83663177490234, \"Text\": \"(25.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03329463303089142, \"Height\": 0.009210611693561077, \"Left\": 0.6843904256820679, \"Top\": 0.3652222156524658}, \"Polygon\": [{\"X\": 0.6843904256820679, \"Y\": 0.3652222156524658}, {\"X\": 0.7176850438117981, \"Y\": 0.3652222156524658}, {\"X\": 0.7176850438117981, \"Y\": 0.37443283200263977}, {\"X\": 0.6843904256820679, \"Y\": 0.37443283200263977}]}, \"Id\": \"e324c427-d6df-4345-935c-41c74e125224\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79903411865234, \"Text\": \"(6.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025278454646468163, \"Height\": 0.009208292700350285, \"Left\": 0.7737440466880798, \"Top\": 0.3652810752391815}, \"Polygon\": [{\"X\": 0.7737440466880798, \"Y\": 0.3652810752391815}, {\"X\": 0.7990224957466125, \"Y\": 0.3652810752391815}, {\"X\": 0.7990224957466125, \"Y\": 0.37448936700820923}, {\"X\": 0.7737440466880798, \"Y\": 0.37448936700820923}]}, \"Id\": \"4f6b5661-5292-4dce-b283-d2fd8cfdf8f9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.66824340820312, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007740155793726444, \"Height\": 0.0018586019286885858, \"Left\": 0.8588240742683411, \"Top\": 0.368976354598999}, \"Polygon\": [{\"X\": 0.8588240742683411, \"Y\": 0.368976354598999}, {\"X\": 0.8665642738342285, \"Y\": 0.368976354598999}, {\"X\": 0.8665642738342285, \"Y\": 0.37083494663238525}, {\"X\": 0.8588240742683411, \"Y\": 0.37083494663238525}]}, \"Id\": \"e79752f4-ffd7-45bb-a556-411f809004ba\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82418060302734, \"Text\": \"(6.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0249534510076046, \"Height\": 0.009342691861093044, \"Left\": 0.916602611541748, \"Top\": 0.36523351073265076}, \"Polygon\": [{\"X\": 0.916602611541748, \"Y\": 0.36523351073265076}, {\"X\": 0.9415560364723206, \"Y\": 0.36523351073265076}, {\"X\": 0.9415560364723206, \"Y\": 0.374576210975647}, {\"X\": 0.916602611541748, \"Y\": 0.374576210975647}]}, \"Id\": \"ecf9ff9f-c6ce-4015-a3f2-4209abd97b82\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.4542236328125, \"Text\": \"Interest\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04324214905500412, \"Height\": 0.0077527668327093124, \"Left\": 0.09551107883453369, \"Top\": 0.3786364197731018}, \"Polygon\": [{\"X\": 0.09551107883453369, \"Y\": 0.3786364197731018}, {\"X\": 0.13875322043895721, \"Y\": 0.3786364197731018}, {\"X\": 0.13875322043895721, \"Y\": 0.38638919591903687}, {\"X\": 0.09551107883453369, \"Y\": 0.38638919591903687}]}, \"Id\": \"836a714a-9c5c-41f6-8a8f-83a2fe2e2af9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95149230957031, \"Text\": \"receivable\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06026235967874527, \"Height\": 0.007712564896792173, \"Left\": 0.14230197668075562, \"Top\": 0.37875601649284363}, \"Polygon\": [{\"X\": 0.14230197668075562, \"Y\": 0.37875601649284363}, {\"X\": 0.2025643289089203, \"Y\": 0.37875601649284363}, {\"X\": 0.2025643289089203, \"Y\": 0.3864685893058777}, {\"X\": 0.14230197668075562, \"Y\": 0.3864685893058777}]}, \"Id\": \"7452345b-e638-4c5c-8096-90b2eca8f562\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91573333740234, \"Text\": \"9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007473454345017672, \"Height\": 0.007656697649508715, \"Left\": 0.4824961721897125, \"Top\": 0.37877753376960754}, \"Polygon\": [{\"X\": 0.4824961721897125, \"Y\": 0.37877753376960754}, {\"X\": 0.4899696409702301, \"Y\": 0.37877753376960754}, {\"X\": 0.4899696409702301, \"Y\": 0.38643425703048706}, {\"X\": 0.4824961721897125, \"Y\": 0.38643425703048706}]}, \"Id\": \"947a550b-f9d3-4656-987c-0af508398a42\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78924560546875, \"Text\": \"1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.017802927643060684, \"Height\": 0.00734094250947237, \"Left\": 0.5529153347015381, \"Top\": 0.3789064884185791}, \"Polygon\": [{\"X\": 0.5529153347015381, \"Y\": 0.3789064884185791}, {\"X\": 0.5707182288169861, \"Y\": 0.3789064884185791}, {\"X\": 0.5707182288169861, \"Y\": 0.3862474262714386}, {\"X\": 0.5529153347015381, \"Y\": 0.3862474262714386}]}, \"Id\": \"23501c1c-547a-4045-a2c2-635c565dff23\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.66324615478516, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007712990511208773, \"Height\": 0.0018598225433379412, \"Left\": 0.6353184580802917, \"Top\": 0.38243916630744934}, \"Polygon\": [{\"X\": 0.6353184580802917, \"Y\": 0.38243916630744934}, {\"X\": 0.6430314779281616, \"Y\": 0.38243916630744934}, {\"X\": 0.6430314779281616, \"Y\": 0.38429898023605347}, {\"X\": 0.6353184580802917, \"Y\": 0.38429898023605347}]}, \"Id\": \"a675146d-0091-4341-bf7a-f665406f35c1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82146453857422, \"Text\": \"1.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01847267337143421, \"Height\": 0.007711018901318312, \"Left\": 0.695378303527832, \"Top\": 0.3786568343639374}, \"Polygon\": [{\"X\": 0.695378303527832, \"Y\": 0.3786568343639374}, {\"X\": 0.7138509750366211, \"Y\": 0.3786568343639374}, {\"X\": 0.7138509750366211, \"Y\": 0.3863678276538849}, {\"X\": 0.695378303527832, \"Y\": 0.3863678276538849}]}, \"Id\": \"526cb58e-f6ab-409e-a555-6fd66300b828\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78868103027344, \"Text\": \"0.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018837101757526398, \"Height\": 0.00769755057990551, \"Left\": 0.7758309245109558, \"Top\": 0.378774493932724}, \"Polygon\": [{\"X\": 0.7758309245109558, \"Y\": 0.378774493932724}, {\"X\": 0.7946680188179016, \"Y\": 0.378774493932724}, {\"X\": 0.7946680188179016, \"Y\": 0.38647204637527466}, {\"X\": 0.7758309245109558, \"Y\": 0.38647204637527466}]}, \"Id\": \"3d38cd24-145c-43be-b114-587167cb1332\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.90506744384766, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008004266768693924, \"Height\": 0.0016709391493350267, \"Left\": 0.8586991429328918, \"Top\": 0.38246333599090576}, \"Polygon\": [{\"X\": 0.8586991429328918, \"Y\": 0.38246333599090576}, {\"X\": 0.8667033910751343, \"Y\": 0.38246333599090576}, {\"X\": 0.8667033910751343, \"Y\": 0.3841342628002167}, {\"X\": 0.8586991429328918, \"Y\": 0.3841342628002167}]}, \"Id\": \"8e3900d3-25ef-48ec-a491-199ab0a6ac32\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76028442382812, \"Text\": \"0.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01895284093916416, \"Height\": 0.007596516981720924, \"Left\": 0.918755292892456, \"Top\": 0.3788030743598938}, \"Polygon\": [{\"X\": 0.918755292892456, \"Y\": 0.3788030743598938}, {\"X\": 0.9377081394195557, \"Y\": 0.3788030743598938}, {\"X\": 0.9377081394195557, \"Y\": 0.3863995671272278}, {\"X\": 0.918755292892456, \"Y\": 0.3863995671272278}]}, \"Id\": \"0d58cef6-a73b-4c42-b946-4ff4eb515d18\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57745361328125, \"Text\": \"Fair\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021852916106581688, \"Height\": 0.0077307941392064095, \"Left\": 0.09497206658124924, \"Top\": 0.3919898569583893}, \"Polygon\": [{\"X\": 0.09497206658124924, \"Y\": 0.3919898569583893}, {\"X\": 0.11682498455047607, \"Y\": 0.3919898569583893}, {\"X\": 0.11682498455047607, \"Y\": 0.3997206687927246}, {\"X\": 0.09497206658124924, \"Y\": 0.3997206687927246}]}, \"Id\": \"c7c673dd-1e22-437a-8a41-028497a0b22a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85201263427734, \"Text\": \"value\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.031043095514178276, \"Height\": 0.007817016914486885, \"Left\": 0.11957573890686035, \"Top\": 0.3920845687389374}, \"Polygon\": [{\"X\": 0.11957573890686035, \"Y\": 0.3920845687389374}, {\"X\": 0.15061883628368378, \"Y\": 0.3920845687389374}, {\"X\": 0.15061883628368378, \"Y\": 0.3999015688896179}, {\"X\": 0.11957573890686035, \"Y\": 0.3999015688896179}]}, \"Id\": \"5b9cd601-dcb3-4208-8f59-55119c9d7392\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9409408569336, \"Text\": \"loss\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024045174941420555, \"Height\": 0.007920247502624989, \"Left\": 0.1539251059293747, \"Top\": 0.3919861614704132}, \"Polygon\": [{\"X\": 0.1539251059293747, \"Y\": 0.3919861614704132}, {\"X\": 0.177970290184021, \"Y\": 0.3919861614704132}, {\"X\": 0.177970290184021, \"Y\": 0.3999064266681671}, {\"X\": 0.1539251059293747, \"Y\": 0.3999064266681671}]}, \"Id\": \"8167c823-4bf8-425b-a99b-f41257cce8fe\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9752197265625, \"Text\": \"on\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014646077528595924, \"Height\": 0.006023437716066837, \"Left\": 0.18167783319950104, \"Top\": 0.39378592371940613}, \"Polygon\": [{\"X\": 0.18167783319950104, \"Y\": 0.39378592371940613}, {\"X\": 0.1963239163160324, \"Y\": 0.39378592371940613}, {\"X\": 0.1963239163160324, \"Y\": 0.3998093605041504}, {\"X\": 0.18167783319950104, \"Y\": 0.3998093605041504}]}, \"Id\": \"d8d58732-5408-4829-83bb-8fa46e84d143\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96372985839844, \"Text\": \"unhedged\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06022132560610771, \"Height\": 0.009416747838258743, \"Left\": 0.20006512105464935, \"Top\": 0.3920723497867584}, \"Polygon\": [{\"X\": 0.20006512105464935, \"Y\": 0.3920723497867584}, {\"X\": 0.26028645038604736, \"Y\": 0.3920723497867584}, {\"X\": 0.26028645038604736, \"Y\": 0.40148910880088806}, {\"X\": 0.20006512105464935, \"Y\": 0.40148910880088806}]}, \"Id\": \"4a014a74-1333-468c-864d-01935c19ee93\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94747924804688, \"Text\": \"interest\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.043057844042778015, \"Height\": 0.007781534921377897, \"Left\": 0.26400598883628845, \"Top\": 0.39205801486968994}, \"Polygon\": [{\"X\": 0.26400598883628845, \"Y\": 0.39205801486968994}, {\"X\": 0.30706384778022766, \"Y\": 0.39205801486968994}, {\"X\": 0.30706384778022766, \"Y\": 0.3998395502567291}, {\"X\": 0.26400598883628845, \"Y\": 0.3998395502567291}]}, \"Id\": \"8b02ac70-31bc-4c3e-808b-11b66a884a86\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.84579467773438, \"Text\": \"derivatives\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06218636408448219, \"Height\": 0.007860962301492691, \"Left\": 0.31110507249832153, \"Top\": 0.3919545114040375}, \"Polygon\": [{\"X\": 0.31110507249832153, \"Y\": 0.3919545114040375}, {\"X\": 0.3732914328575134, \"Y\": 0.3919545114040375}, {\"X\": 0.3732914328575134, \"Y\": 0.39981546998023987}, {\"X\": 0.31110507249832153, \"Y\": 0.39981546998023987}]}, \"Id\": \"d90ba1d1-8ffe-4605-a93d-23d162477da5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71642303466797, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007158292923122644, \"Height\": 0.007317138835787773, \"Left\": 0.4826982319355011, \"Top\": 0.3922484219074249}, \"Polygon\": [{\"X\": 0.4826982319355011, \"Y\": 0.3922484219074249}, {\"X\": 0.4898565411567688, \"Y\": 0.3922484219074249}, {\"X\": 0.4898565411567688, \"Y\": 0.39956554770469666}, {\"X\": 0.4826982319355011, \"Y\": 0.39956554770469666}]}, \"Id\": \"f6a5572e-f316-41e8-9126-bbb209697c7c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.21141052246094, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007592071313410997, \"Height\": 0.001916381879709661, \"Left\": 0.5639190077781677, \"Top\": 0.3957870304584503}, \"Polygon\": [{\"X\": 0.5639190077781677, \"Y\": 0.3957870304584503}, {\"X\": 0.5715110898017883, \"Y\": 0.3957870304584503}, {\"X\": 0.5715110898017883, \"Y\": 0.3977034091949463}, {\"X\": 0.5639190077781677, \"Y\": 0.3977034091949463}]}, \"Id\": \"871d3bab-c4da-4731-9c89-4743a14fee79\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.3302001953125, \"Text\": \"(3.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02540501393377781, \"Height\": 0.009405191987752914, \"Left\": 0.6208227872848511, \"Top\": 0.3919905722141266}, \"Polygon\": [{\"X\": 0.6208227872848511, \"Y\": 0.3919905722141266}, {\"X\": 0.6462277770042419, \"Y\": 0.3919905722141266}, {\"X\": 0.6462277770042419, \"Y\": 0.4013957381248474}, {\"X\": 0.6208227872848511, \"Y\": 0.4013957381248474}]}, \"Id\": \"c45e4ecf-57a5-426d-a59d-0ffaea5c26db\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5672836303711, \"Text\": \"(3.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025483401492238045, \"Height\": 0.009583414532244205, \"Left\": 0.6922163963317871, \"Top\": 0.392076700925827}, \"Polygon\": [{\"X\": 0.6922163963317871, \"Y\": 0.392076700925827}, {\"X\": 0.7176997661590576, \"Y\": 0.392076700925827}, {\"X\": 0.7176997661590576, \"Y\": 0.40166011452674866}, {\"X\": 0.6922163963317871, \"Y\": 0.40166011452674866}]}, \"Id\": \"5e0f46e1-8135-4a86-af9f-e67dd3f898d4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.37847137451172, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0075395251624286175, \"Height\": 0.0018017170950770378, \"Left\": 0.7875285744667053, \"Top\": 0.3957846164703369}, \"Polygon\": [{\"X\": 0.7875285744667053, \"Y\": 0.3957846164703369}, {\"X\": 0.7950681447982788, \"Y\": 0.3957846164703369}, {\"X\": 0.7950681447982788, \"Y\": 0.3975863456726074}, {\"X\": 0.7875285744667053, \"Y\": 0.3975863456726074}]}, \"Id\": \"377dcee0-873c-4f98-927a-daffc4bb888e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90859985351562, \"Text\": \"(0.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02497727796435356, \"Height\": 0.009098144248127937, \"Left\": 0.8451891541481018, \"Top\": 0.39216750860214233}, \"Polygon\": [{\"X\": 0.8451891541481018, \"Y\": 0.39216750860214233}, {\"X\": 0.8701664805412292, \"Y\": 0.39216750860214233}, {\"X\": 0.8701664805412292, \"Y\": 0.4012656509876251}, {\"X\": 0.8451891541481018, \"Y\": 0.4012656509876251}]}, \"Id\": \"c4f8030e-31a4-4395-9fab-92efcfb46018\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8900375366211, \"Text\": \"(0.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024426782503724098, \"Height\": 0.008982828818261623, \"Left\": 0.9168094992637634, \"Top\": 0.3922017812728882}, \"Polygon\": [{\"X\": 0.9168094992637634, \"Y\": 0.3922017812728882}, {\"X\": 0.9412363171577454, \"Y\": 0.3922017812728882}, {\"X\": 0.9412363171577454, \"Y\": 0.401184618473053}, {\"X\": 0.9168094992637634, \"Y\": 0.401184618473053}]}, \"Id\": \"abddef44-437e-4009-bab7-7dd1930f30d4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.72859954833984, \"Text\": \"Loss\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02776413969695568, \"Height\": 0.0076482342556118965, \"Left\": 0.09529523551464081, \"Top\": 0.4058759808540344}, \"Polygon\": [{\"X\": 0.09529523551464081, \"Y\": 0.4058759808540344}, {\"X\": 0.12305937707424164, \"Y\": 0.4058759808540344}, {\"X\": 0.12305937707424164, \"Y\": 0.41352421045303345}, {\"X\": 0.09529523551464081, \"Y\": 0.41352421045303345}]}, \"Id\": \"c4aa381c-a618-4e89-a74a-7466b9952e03\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96859741210938, \"Text\": \"on\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.015065914019942284, \"Height\": 0.006026001181453466, \"Left\": 0.12678460776805878, \"Top\": 0.4074663519859314}, \"Polygon\": [{\"X\": 0.12678460776805878, \"Y\": 0.4074663519859314}, {\"X\": 0.1418505162000656, \"Y\": 0.4074663519859314}, {\"X\": 0.1418505162000656, \"Y\": 0.413492351770401}, {\"X\": 0.12678460776805878, \"Y\": 0.413492351770401}]}, \"Id\": \"072dae4c-cfb6-4c61-87d8-cacf78363170\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87146759033203, \"Text\": \"extinguishment\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09029437601566315, \"Height\": 0.009489298798143864, \"Left\": 0.14514632523059845, \"Top\": 0.4057210385799408}, \"Polygon\": [{\"X\": 0.14514632523059845, \"Y\": 0.4057210385799408}, {\"X\": 0.2354407012462616, \"Y\": 0.4057210385799408}, {\"X\": 0.2354407012462616, \"Y\": 0.4152103364467621}, {\"X\": 0.14514632523059845, \"Y\": 0.4152103364467621}]}, \"Id\": \"ff119535-1bfe-4a9f-a80f-a38bdaca63fb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98560333251953, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.012102327309548855, \"Height\": 0.007739583496004343, \"Left\": 0.23880209028720856, \"Top\": 0.4057483375072479}, \"Polygon\": [{\"X\": 0.23880209028720856, \"Y\": 0.4057483375072479}, {\"X\": 0.2509044110774994, \"Y\": 0.4057483375072479}, {\"X\": 0.2509044110774994, \"Y\": 0.41348791122436523}, {\"X\": 0.23880209028720856, \"Y\": 0.41348791122436523}]}, \"Id\": \"42a6ce3b-d3e5-430a-8021-c938d98b1bed\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95587921142578, \"Text\": \"financing\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05354322865605354, \"Height\": 0.009553995914757252, \"Left\": 0.25343894958496094, \"Top\": 0.4056676924228668}, \"Polygon\": [{\"X\": 0.25343894958496094, \"Y\": 0.4056676924228668}, {\"X\": 0.306982159614563, \"Y\": 0.4056676924228668}, {\"X\": 0.306982159614563, \"Y\": 0.4152216911315918}, {\"X\": 0.25343894958496094, \"Y\": 0.4152216911315918}]}, \"Id\": \"5ed745fb-c4fe-4d96-b870-eaae9492d2b4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92333221435547, \"Text\": \"facilities\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04676397889852524, \"Height\": 0.007864013314247131, \"Left\": 0.31030166149139404, \"Top\": 0.40562325716018677}, \"Polygon\": [{\"X\": 0.31030166149139404, \"Y\": 0.40562325716018677}, {\"X\": 0.3570656478404999, \"Y\": 0.40562325716018677}, {\"X\": 0.3570656478404999, \"Y\": 0.4134872555732727}, {\"X\": 0.31030166149139404, \"Y\": 0.4134872555732727}]}, \"Id\": \"26f3a9bb-2a9d-4da5-ad3c-94befb09b638\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76979064941406, \"Text\": \"4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007311269175261259, \"Height\": 0.0074011231772601604, \"Left\": 0.482480525970459, \"Top\": 0.40582120418548584}, \"Polygon\": [{\"X\": 0.482480525970459, \"Y\": 0.40582120418548584}, {\"X\": 0.48979178071022034, \"Y\": 0.40582120418548584}, {\"X\": 0.48979178071022034, \"Y\": 0.4132223427295685}, {\"X\": 0.482480525970459, \"Y\": 0.4132223427295685}]}, \"Id\": \"8c48e83d-ab7d-4010-9108-e35df0f4d400\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.531494140625, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007636099588125944, \"Height\": 0.001978678395971656, \"Left\": 0.5640626549720764, \"Top\": 0.40943682193756104}, \"Polygon\": [{\"X\": 0.5640626549720764, \"Y\": 0.40943682193756104}, {\"X\": 0.5716987252235413, \"Y\": 0.40943682193756104}, {\"X\": 0.5716987252235413, \"Y\": 0.4114154875278473}, {\"X\": 0.5640626549720764, \"Y\": 0.4114154875278473}]}, \"Id\": \"a44411af-d990-4c46-a93f-ee4b971e73a7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.69995880126953, \"Text\": \"(4.9)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02593519352376461, \"Height\": 0.009436523541808128, \"Left\": 0.6205706596374512, \"Top\": 0.405607134103775}, \"Polygon\": [{\"X\": 0.6205706596374512, \"Y\": 0.405607134103775}, {\"X\": 0.6465058326721191, \"Y\": 0.405607134103775}, {\"X\": 0.6465058326721191, \"Y\": 0.4150436520576477}, {\"X\": 0.6205706596374512, \"Y\": 0.4150436520576477}]}, \"Id\": \"92aff047-6f5b-440b-981e-0ab6adb0a10c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71830749511719, \"Text\": \"(4.9)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02574751153588295, \"Height\": 0.009479695931077003, \"Left\": 0.6920820474624634, \"Top\": 0.40553316473960876}, \"Polygon\": [{\"X\": 0.6920820474624634, \"Y\": 0.40553316473960876}, {\"X\": 0.7178295254707336, \"Y\": 0.40553316473960876}, {\"X\": 0.7178295254707336, \"Y\": 0.4150128662586212}, {\"X\": 0.6920820474624634, \"Y\": 0.4150128662586212}]}, \"Id\": \"e4dfe757-c451-4486-ab7f-2fcf67904e64\"}, {\"BlockType\": \"WORD\", \"Confidence\": 94.39665985107422, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00788202416151762, \"Height\": 0.001883463584817946, \"Left\": 0.7875592708587646, \"Top\": 0.40944334864616394}, \"Polygon\": [{\"X\": 0.7875592708587646, \"Y\": 0.40944334864616394}, {\"X\": 0.7954412698745728, \"Y\": 0.40944334864616394}, {\"X\": 0.7954412698745728, \"Y\": 0.4113268256187439}, {\"X\": 0.7875592708587646, \"Y\": 0.4113268256187439}]}, \"Id\": \"d9cf5ae0-5dac-4216-ac52-6bd549382247\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.82286071777344, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.00804219488054514, \"Height\": 0.0018103027250617743, \"Left\": 0.8587616682052612, \"Top\": 0.40943053364753723}, \"Polygon\": [{\"X\": 0.8587616682052612, \"Y\": 0.40943053364753723}, {\"X\": 0.8668038249015808, \"Y\": 0.40943053364753723}, {\"X\": 0.8668038249015808, \"Y\": 0.4112408459186554}, {\"X\": 0.8587616682052612, \"Y\": 0.4112408459186554}]}, \"Id\": \"28f0b3d2-52ca-42c0-a6f7-797b0150499c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.03498077392578, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007856873795390129, \"Height\": 0.0018858235562220216, \"Left\": 0.9301654696464539, \"Top\": 0.4094167947769165}, \"Polygon\": [{\"X\": 0.9301654696464539, \"Y\": 0.4094167947769165}, {\"X\": 0.9380223751068115, \"Y\": 0.4094167947769165}, {\"X\": 0.9380223751068115, \"Y\": 0.4113026261329651}, {\"X\": 0.9301654696464539, \"Y\": 0.4113026261329651}]}, \"Id\": \"7745ddd4-101b-490d-9ecb-596b2c9582ae\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68512725830078, \"Text\": \"(24.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03331207484006882, \"Height\": 0.009552164934575558, \"Left\": 0.54190993309021, \"Top\": 0.42073875665664673}, \"Polygon\": [{\"X\": 0.54190993309021, \"Y\": 0.42073875665664673}, {\"X\": 0.5752220153808594, \"Y\": 0.42073875665664673}, {\"X\": 0.5752220153808594, \"Y\": 0.43029093742370605}, {\"X\": 0.54190993309021, \"Y\": 0.43029093742370605}]}, \"Id\": \"db762c11-bb67-49ac-a098-361463b30f14\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85955810546875, \"Text\": \"(8.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025726160034537315, \"Height\": 0.009579060599207878, \"Left\": 0.620670735836029, \"Top\": 0.4206588566303253}, \"Polygon\": [{\"X\": 0.620670735836029, \"Y\": 0.4206588566303253}, {\"X\": 0.6463968753814697, \"Y\": 0.4206588566303253}, {\"X\": 0.6463968753814697, \"Y\": 0.43023791909217834}, {\"X\": 0.620670735836029, \"Y\": 0.43023791909217834}]}, \"Id\": \"4e03a9c4-3aa7-499f-8997-1f0bf702965e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.65492248535156, \"Text\": \"(32.8)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0330403633415699, \"Height\": 0.009613200090825558, \"Left\": 0.6846081614494324, \"Top\": 0.4207087457180023}, \"Polygon\": [{\"X\": 0.6846081614494324, \"Y\": 0.4207087457180023}, {\"X\": 0.7176485657691956, \"Y\": 0.4207087457180023}, {\"X\": 0.7176485657691956, \"Y\": 0.43032193183898926}, {\"X\": 0.6846081614494324, \"Y\": 0.43032193183898926}]}, \"Id\": \"86480ba5-015f-4301-8e89-3713c4ee7fe8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90704345703125, \"Text\": \"(5.8)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02520841173827648, \"Height\": 0.0093356529250741, \"Left\": 0.773819088935852, \"Top\": 0.4207591116428375}, \"Polygon\": [{\"X\": 0.773819088935852, \"Y\": 0.4207591116428375}, {\"X\": 0.7990275025367737, \"Y\": 0.4207591116428375}, {\"X\": 0.7990275025367737, \"Y\": 0.43009477853775024}, {\"X\": 0.773819088935852, \"Y\": 0.43009477853775024}]}, \"Id\": \"c83aa287-1d33-4c80-ab8f-b3b8c37c9240\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8897933959961, \"Text\": \"(0.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02477814443409443, \"Height\": 0.009310669265687466, \"Left\": 0.845470130443573, \"Top\": 0.4208272397518158}, \"Polygon\": [{\"X\": 0.845470130443573, \"Y\": 0.4208272397518158}, {\"X\": 0.8702483177185059, \"Y\": 0.4208272397518158}, {\"X\": 0.8702483177185059, \"Y\": 0.43013790249824524}, {\"X\": 0.845470130443573, \"Y\": 0.43013790249824524}]}, \"Id\": \"c002164e-62b1-421e-8c12-a20562578361\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57196044921875, \"Text\": \"(6.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.024477314203977585, \"Height\": 0.009408813901245594, \"Left\": 0.9167794585227966, \"Top\": 0.42075175046920776}, \"Polygon\": [{\"X\": 0.9167794585227966, \"Y\": 0.42075175046920776}, {\"X\": 0.9412567615509033, \"Y\": 0.42075175046920776}, {\"X\": 0.9412567615509033, \"Y\": 0.4301605522632599}, {\"X\": 0.9167794585227966, \"Y\": 0.4301605522632599}]}, \"Id\": \"a0acf034-b7b6-4434-bbf6-a880b2193c53\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81082153320312, \"Text\": \"Net\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.020949533209204674, \"Height\": 0.0076269530691206455, \"Left\": 0.09522856026887894, \"Top\": 0.43454065918922424}, \"Polygon\": [{\"X\": 0.09522856026887894, \"Y\": 0.43454065918922424}, {\"X\": 0.11617809534072876, \"Y\": 0.43454065918922424}, {\"X\": 0.11617809534072876, \"Y\": 0.44216760993003845}, {\"X\": 0.09522856026887894, \"Y\": 0.44216760993003845}]}, \"Id\": \"b525a4d7-4486-4130-8512-f2f0a5820067\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96219635009766, \"Text\": \"interest\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04344409704208374, \"Height\": 0.007582031190395355, \"Left\": 0.11954598873853683, \"Top\": 0.43459901213645935}, \"Polygon\": [{\"X\": 0.11954598873853683, \"Y\": 0.43459901213645935}, {\"X\": 0.16299007833003998, \"Y\": 0.43459901213645935}, {\"X\": 0.16299007833003998, \"Y\": 0.4421810209751129}, {\"X\": 0.11954598873853683, \"Y\": 0.4421810209751129}]}, \"Id\": \"58432b18-9925-43f9-b260-86b42855de9e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9432144165039, \"Text\": \"expense\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.049649033695459366, \"Height\": 0.007944499142467976, \"Left\": 0.16671369969844818, \"Top\": 0.43594011664390564}, \"Polygon\": [{\"X\": 0.16671369969844818, \"Y\": 0.43594011664390564}, {\"X\": 0.21636272966861725, \"Y\": 0.43594011664390564}, {\"X\": 0.21636272966861725, \"Y\": 0.44388461112976074}, {\"X\": 0.16671369969844818, \"Y\": 0.44388461112976074}]}, \"Id\": \"226f4c99-ff19-4bbe-8ea6-b5f4a2bc4ff6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97118377685547, \"Text\": \"on\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01506597176194191, \"Height\": 0.006005126982927322, \"Left\": 0.21996337175369263, \"Top\": 0.43620845675468445}, \"Polygon\": [{\"X\": 0.21996337175369263, \"Y\": 0.43620845675468445}, {\"X\": 0.23502933979034424, \"Y\": 0.43620845675468445}, {\"X\": 0.23502933979034424, \"Y\": 0.44221359491348267}, {\"X\": 0.21996337175369263, \"Y\": 0.44221359491348267}]}, \"Id\": \"f682f480-e381-4c13-8a99-8a7347bf554e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9858627319336, \"Text\": \"defined\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044083237648010254, \"Height\": 0.007831542752683163, \"Left\": 0.23848259449005127, \"Top\": 0.4343869090080261}, \"Polygon\": [{\"X\": 0.23848259449005127, \"Y\": 0.4343869090080261}, {\"X\": 0.2825658321380615, \"Y\": 0.4343869090080261}, {\"X\": 0.2825658321380615, \"Y\": 0.44221845269203186}, {\"X\": 0.23848259449005127, \"Y\": 0.44221845269203186}]}, \"Id\": \"4df4184d-5e90-4485-9555-80d291091f47\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86163330078125, \"Text\": \"benefit\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040650248527526855, \"Height\": 0.0076765138655900955, \"Left\": 0.28614503145217896, \"Top\": 0.43444669246673584}, \"Polygon\": [{\"X\": 0.28614503145217896, \"Y\": 0.43444669246673584}, {\"X\": 0.3267952799797058, \"Y\": 0.43444669246673584}, {\"X\": 0.3267952799797058, \"Y\": 0.4421232044696808}, {\"X\": 0.28614503145217896, \"Y\": 0.4421232044696808}]}, \"Id\": \"5a547ea1-d33b-45b1-9853-f0bc594871b5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78087615966797, \"Text\": \"obligations\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06427652388811111, \"Height\": 0.009504801593720913, \"Left\": 0.3300563395023346, \"Top\": 0.4344823360443115}, \"Polygon\": [{\"X\": 0.3300563395023346, \"Y\": 0.4344823360443115}, {\"X\": 0.3943328559398651, \"Y\": 0.4344823360443115}, {\"X\": 0.3943328559398651, \"Y\": 0.4439871311187744}, {\"X\": 0.3300563395023346, \"Y\": 0.4439871311187744}]}, \"Id\": \"1abfc87b-dbd5-45d3-b641-96861d0dcce8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88200378417969, \"Text\": \"9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0077141993679106236, \"Height\": 0.007761474698781967, \"Left\": 0.4824124872684479, \"Top\": 0.43449923396110535}, \"Polygon\": [{\"X\": 0.4824124872684479, \"Y\": 0.43449923396110535}, {\"X\": 0.49012669920921326, \"Y\": 0.43449923396110535}, {\"X\": 0.49012669920921326, \"Y\": 0.4422607123851776}, {\"X\": 0.4824124872684479, \"Y\": 0.4422607123851776}]}, \"Id\": \"40c4c99e-2307-4be2-972a-c17ed5fbeb6f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.87702178955078, \"Text\": \"(3.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025674592703580856, \"Height\": 0.009676880203187466, \"Left\": 0.5494852662086487, \"Top\": 0.4345289170742035}, \"Polygon\": [{\"X\": 0.5494852662086487, \"Y\": 0.4345289170742035}, {\"X\": 0.5751598477363586, \"Y\": 0.4345289170742035}, {\"X\": 0.5751598477363586, \"Y\": 0.4442058205604553}, {\"X\": 0.5494852662086487, \"Y\": 0.4442058205604553}]}, \"Id\": \"cc464db5-5a15-4de3-b5f2-e539ef302333\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.13676452636719, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007723407819867134, \"Height\": 0.0018688557902351022, \"Left\": 0.6352351307868958, \"Top\": 0.4381979703903198}, \"Polygon\": [{\"X\": 0.6352351307868958, \"Y\": 0.4381979703903198}, {\"X\": 0.6429585218429565, \"Y\": 0.4381979703903198}, {\"X\": 0.6429585218429565, \"Y\": 0.4400668144226074}, {\"X\": 0.6352351307868958, \"Y\": 0.4400668144226074}]}, \"Id\": \"88da7e80-4343-40c4-8d48-fba860fa741c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.82459259033203, \"Text\": \"(3.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025791769847273827, \"Height\": 0.00940189603716135, \"Left\": 0.6923180818557739, \"Top\": 0.4344998300075531}, \"Polygon\": [{\"X\": 0.6923180818557739, \"Y\": 0.4344998300075531}, {\"X\": 0.7181098461151123, \"Y\": 0.4344998300075531}, {\"X\": 0.7181098461151123, \"Y\": 0.44390174746513367}, {\"X\": 0.6923180818557739, \"Y\": 0.44390174746513367}]}, \"Id\": \"a952ffcd-8826-497f-8571-2576044abf4a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.886474609375, \"Text\": \"(2.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025186944752931595, \"Height\": 0.009623494930565357, \"Left\": 0.7739142775535583, \"Top\": 0.43446049094200134}, \"Polygon\": [{\"X\": 0.7739142775535583, \"Y\": 0.43446049094200134}, {\"X\": 0.7991012334823608, \"Y\": 0.43446049094200134}, {\"X\": 0.7991012334823608, \"Y\": 0.4440839886665344}, {\"X\": 0.7739142775535583, \"Y\": 0.4440839886665344}]}, \"Id\": \"afd3c118-170d-4bc8-a833-39599abcb7cc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 96.82352447509766, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.008019921369850636, \"Height\": 0.0017706705257296562, \"Left\": 0.8587360978126526, \"Top\": 0.4381748139858246}, \"Polygon\": [{\"X\": 0.8587360978126526, \"Y\": 0.4381748139858246}, {\"X\": 0.866756021976471, \"Y\": 0.4381748139858246}, {\"X\": 0.866756021976471, \"Y\": 0.4399454891681671}, {\"X\": 0.8587360978126526, \"Y\": 0.4399454891681671}]}, \"Id\": \"ba0d6a33-88b0-4e1d-9b03-f55afd4bd056\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86470031738281, \"Text\": \"(2.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025221649557352066, \"Height\": 0.009402303025126457, \"Left\": 0.9165661931037903, \"Top\": 0.4345313012599945}, \"Polygon\": [{\"X\": 0.9165661931037903, \"Y\": 0.4345313012599945}, {\"X\": 0.941787838935852, \"Y\": 0.4345313012599945}, {\"X\": 0.941787838935852, \"Y\": 0.4439336061477661}, {\"X\": 0.9165661931037903, \"Y\": 0.4439336061477661}]}, \"Id\": \"2e703792-439d-4144-a977-f55abf863977\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.35661315917969, \"Text\": \"Interest\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0432983860373497, \"Height\": 0.007833780720829964, \"Left\": 0.09549106657505035, \"Top\": 0.44803065061569214}, \"Polygon\": [{\"X\": 0.09549106657505035, \"Y\": 0.44803065061569214}, {\"X\": 0.13878946006298065, \"Y\": 0.44803065061569214}, {\"X\": 0.13878946006298065, \"Y\": 0.45586442947387695}, {\"X\": 0.09549106657505035, \"Y\": 0.45586442947387695}]}, \"Id\": \"bc02ed77-b629-4760-9fe6-0e2094b020d6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85773468017578, \"Text\": \"element\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04757474735379219, \"Height\": 0.0076645915396511555, \"Left\": 0.1422954946756363, \"Top\": 0.4481707215309143}, \"Polygon\": [{\"X\": 0.1422954946756363, \"Y\": 0.4481707215309143}, {\"X\": 0.18987023830413818, \"Y\": 0.4481707215309143}, {\"X\": 0.18987023830413818, \"Y\": 0.4558353126049042}, {\"X\": 0.1422954946756363, \"Y\": 0.4558353126049042}]}, \"Id\": \"9aaaf360-63f0-4594-afab-5b251e14b841\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98865509033203, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011750706471502781, \"Height\": 0.00786222331225872, \"Left\": 0.1933925747871399, \"Top\": 0.4479019343852997}, \"Polygon\": [{\"X\": 0.1933925747871399, \"Y\": 0.4479019343852997}, {\"X\": 0.2051432728767395, \"Y\": 0.4479019343852997}, {\"X\": 0.2051432728767395, \"Y\": 0.45576417446136475}, {\"X\": 0.1933925747871399, \"Y\": 0.45576417446136475}]}, \"Id\": \"c319dff5-8f4e-4dd3-92ba-570062c9bee1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94237518310547, \"Text\": \"lease\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.030937140807509422, \"Height\": 0.007655599154531956, \"Left\": 0.20790810883045197, \"Top\": 0.4480827748775482}, \"Polygon\": [{\"X\": 0.20790810883045197, \"Y\": 0.4480827748775482}, {\"X\": 0.23884524405002594, \"Y\": 0.4480827748775482}, {\"X\": 0.23884524405002594, \"Y\": 0.455738365650177}, {\"X\": 0.20790810883045197, \"Y\": 0.455738365650177}]}, \"Id\": \"bf02f506-c6c2-4db3-98e2-6b02d9093ce7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96939086914062, \"Text\": \"payments\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.058104172348976135, \"Height\": 0.009090657345950603, \"Left\": 0.24232643842697144, \"Top\": 0.44840410351753235}, \"Polygon\": [{\"X\": 0.24232643842697144, \"Y\": 0.44840410351753235}, {\"X\": 0.3004305958747864, \"Y\": 0.44840410351753235}, {\"X\": 0.3004305958747864, \"Y\": 0.4574947655200958}, {\"X\": 0.24232643842697144, \"Y\": 0.4574947655200958}]}, \"Id\": \"d9d00927-1f0f-44b2-b040-a2f64d6a627a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90745544433594, \"Text\": \"9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007449713535606861, \"Height\": 0.007824950851500034, \"Left\": 0.48244330286979675, \"Top\": 0.4478728473186493}, \"Polygon\": [{\"X\": 0.48244330286979675, \"Y\": 0.4478728473186493}, {\"X\": 0.48989301919937134, \"Y\": 0.4478728473186493}, {\"X\": 0.48989301919937134, \"Y\": 0.45569780468940735}, {\"X\": 0.48244330286979675, \"Y\": 0.45569780468940735}]}, \"Id\": \"115d276d-afaa-4b3a-9fbc-cbba7d6b49e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36436462402344, \"Text\": \"(1.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02663532830774784, \"Height\": 0.009945068508386612, \"Left\": 0.549113929271698, \"Top\": 0.44804757833480835}, \"Polygon\": [{\"X\": 0.549113929271698, \"Y\": 0.44804757833480835}, {\"X\": 0.5757492780685425, \"Y\": 0.44804757833480835}, {\"X\": 0.5757492780685425, \"Y\": 0.45799264311790466}, {\"X\": 0.549113929271698, \"Y\": 0.45799264311790466}]}, \"Id\": \"b3086672-4b07-49f5-993b-028d95b882dd\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.2807388305664, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007889794185757637, \"Height\": 0.0020024413242936134, \"Left\": 0.6350985765457153, \"Top\": 0.45163509249687195}, \"Polygon\": [{\"X\": 0.6350985765457153, \"Y\": 0.45163509249687195}, {\"X\": 0.642988383769989, \"Y\": 0.45163509249687195}, {\"X\": 0.642988383769989, \"Y\": 0.4536375403404236}, {\"X\": 0.6350985765457153, \"Y\": 0.4536375403404236}]}, \"Id\": \"9c637872-7983-428f-a82d-61fdd632146a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26640319824219, \"Text\": \"(1.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0259846318513155, \"Height\": 0.009686808101832867, \"Left\": 0.6920921802520752, \"Top\": 0.4478064477443695}, \"Polygon\": [{\"X\": 0.6920921802520752, \"Y\": 0.4478064477443695}, {\"X\": 0.7180768251419067, \"Y\": 0.4478064477443695}, {\"X\": 0.7180768251419067, \"Y\": 0.45749324560165405}, {\"X\": 0.6920921802520752, \"Y\": 0.45749324560165405}]}, \"Id\": \"286db7d2-654c-4b09-b13c-49ccd4ef7877\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30734252929688, \"Text\": \"(1.1)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025609327480196953, \"Height\": 0.009698730893433094, \"Left\": 0.7737112641334534, \"Top\": 0.4477885365486145}, \"Polygon\": [{\"X\": 0.7737112641334534, \"Y\": 0.4477885365486145}, {\"X\": 0.7993205785751343, \"Y\": 0.4477885365486145}, {\"X\": 0.7993205785751343, \"Y\": 0.4574872553348541}, {\"X\": 0.7737112641334534, \"Y\": 0.4574872553348541}]}, \"Id\": \"0bea15b8-a841-4727-81a6-8cda01468cbe\"}, {\"BlockType\": \"WORD\", \"Confidence\": 95.71327209472656, \"Text\": \"-\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.007562488783150911, \"Height\": 0.001678548171184957, \"Left\": 0.859062671661377, \"Top\": 0.45177578926086426}, \"Polygon\": [{\"X\": 0.859062671661377, \"Y\": 0.45177578926086426}, {\"X\": 0.8666251301765442, \"Y\": 0.45177578926086426}, {\"X\": 0.8666251301765442, \"Y\": 0.4534543454647064}, {\"X\": 0.859062671661377, \"Y\": 0.4534543454647064}]}, \"Id\": \"2c6d83a7-c5cd-4701-8b2d-d6d96e0f48d8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.19737243652344, \"Text\": \"(1.1)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025594420731067657, \"Height\": 0.009641194716095924, \"Left\": 0.916255533695221, \"Top\": 0.447898268699646}, \"Polygon\": [{\"X\": 0.916255533695221, \"Y\": 0.447898268699646}, {\"X\": 0.941849946975708, \"Y\": 0.447898268699646}, {\"X\": 0.941849946975708, \"Y\": 0.45753946900367737}, {\"X\": 0.916255533695221, \"Y\": 0.45753946900367737}]}, \"Id\": \"d1497f3f-e068-43a9-9da0-1e9bee310db6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67760467529297, \"Text\": \"Finance\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.050074007362127304, \"Height\": 0.0077631426975131035, \"Left\": 0.09590115398168564, \"Top\": 0.46131399273872375}, \"Polygon\": [{\"X\": 0.09590115398168564, \"Y\": 0.46131399273872375}, {\"X\": 0.14597515761852264, \"Y\": 0.46131399273872375}, {\"X\": 0.14597515761852264, \"Y\": 0.46907714009284973}, {\"X\": 0.09590115398168564, \"Y\": 0.46907714009284973}]}, \"Id\": \"3280816b-475b-4b16-b96c-5e5ffdc9ad10\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86748504638672, \"Text\": \"costs\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03497704491019249, \"Height\": 0.007493448909372091, \"Left\": 0.14928391575813293, \"Top\": 0.46171268820762634}, \"Polygon\": [{\"X\": 0.14928391575813293, \"Y\": 0.46171268820762634}, {\"X\": 0.18426096439361572, \"Y\": 0.46171268820762634}, {\"X\": 0.18426096439361572, \"Y\": 0.4692061245441437}, {\"X\": 0.14928391575813293, \"Y\": 0.4692061245441437}]}, \"Id\": \"a764d356-7790-4b27-bc1c-049cdc2a622e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.25650787353516, \"Text\": \"(29.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033636558800935745, \"Height\": 0.00974991824477911, \"Left\": 0.54166179895401, \"Top\": 0.4610733091831207}, \"Polygon\": [{\"X\": 0.54166179895401, \"Y\": 0.4610733091831207}, {\"X\": 0.5752983093261719, \"Y\": 0.4610733091831207}, {\"X\": 0.5752983093261719, \"Y\": 0.4708232283592224}, {\"X\": 0.54166179895401, \"Y\": 0.4708232283592224}]}, \"Id\": \"5e12f3ef-f20b-4b42-9001-bd715cbaa158\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.850830078125, \"Text\": \"(8.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025802647694945335, \"Height\": 0.00940799992531538, \"Left\": 0.6207166910171509, \"Top\": 0.46114468574523926}, \"Polygon\": [{\"X\": 0.6207166910171509, \"Y\": 0.46114468574523926}, {\"X\": 0.6465193033218384, \"Y\": 0.46114468574523926}, {\"X\": 0.6465193033218384, \"Y\": 0.4705526828765869}, {\"X\": 0.6207166910171509, \"Y\": 0.4705526828765869}]}, \"Id\": \"a144290d-4184-41f6-a366-1b5503993e16\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07396697998047, \"Text\": \"(38.1)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033016882836818695, \"Height\": 0.009562662802636623, \"Left\": 0.684571385383606, \"Top\": 0.46100544929504395}, \"Polygon\": [{\"X\": 0.684571385383606, \"Y\": 0.46100544929504395}, {\"X\": 0.7175883054733276, \"Y\": 0.46100544929504395}, {\"X\": 0.7175883054733276, \"Y\": 0.47056812047958374}, {\"X\": 0.684571385383606, \"Y\": 0.47056812047958374}]}, \"Id\": \"1e40ea02-0ebc-4aa9-a955-b03f31548151\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.6684799194336, \"Text\": \"(9.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02532593533396721, \"Height\": 0.009443603456020355, \"Left\": 0.7736228108406067, \"Top\": 0.4611593782901764}, \"Polygon\": [{\"X\": 0.7736228108406067, \"Y\": 0.4611593782901764}, {\"X\": 0.7989487648010254, \"Y\": 0.4611593782901764}, {\"X\": 0.7989487648010254, \"Y\": 0.47060298919677734}, {\"X\": 0.7736228108406067, \"Y\": 0.47060298919677734}]}, \"Id\": \"b668eae3-f7d0-402c-b6c9-47e0549b319f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.90599822998047, \"Text\": \"(0.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025034889578819275, \"Height\": 0.009232137352228165, \"Left\": 0.8452435731887817, \"Top\": 0.46126866340637207}, \"Polygon\": [{\"X\": 0.8452435731887817, \"Y\": 0.46126866340637207}, {\"X\": 0.8702784776687622, \"Y\": 0.46126866340637207}, {\"X\": 0.8702784776687622, \"Y\": 0.4705008268356323}, {\"X\": 0.8452435731887817, \"Y\": 0.4705008268356323}]}, \"Id\": \"ae0f2a82-cbc9-4f43-82d5-44ae08633d6e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.34565734863281, \"Text\": \"(10.1)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03252566605806351, \"Height\": 0.009522583335638046, \"Left\": 0.9090339541435242, \"Top\": 0.46108633279800415}, \"Polygon\": [{\"X\": 0.9090339541435242, \"Y\": 0.46108633279800415}, {\"X\": 0.9415596127510071, \"Y\": 0.46108633279800415}, {\"X\": 0.9415596127510071, \"Y\": 0.4706089198589325}, {\"X\": 0.9090339541435242, \"Y\": 0.4706089198589325}]}, \"Id\": \"35678556-f170-4279-897b-1a3f6b26139a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.43751525878906, \"Text\": \"Profit/(loss)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07320743054151535, \"Height\": 0.009587361477315426, \"Left\": 0.09486545622348785, \"Top\": 0.4748344421386719}, \"Polygon\": [{\"X\": 0.09486545622348785, \"Y\": 0.4748344421386719}, {\"X\": 0.1680728942155838, \"Y\": 0.4748344421386719}, {\"X\": 0.1680728942155838, \"Y\": 0.4844217896461487}, {\"X\": 0.09486545622348785, \"Y\": 0.4844217896461487}]}, \"Id\": \"da6d2e6b-caf9-4f1e-9a14-53dfe0067f99\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95316314697266, \"Text\": \"before\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041228801012039185, \"Height\": 0.007689900696277618, \"Left\": 0.17221035063266754, \"Top\": 0.47509145736694336}, \"Polygon\": [{\"X\": 0.17221035063266754, \"Y\": 0.47509145736694336}, {\"X\": 0.21343915164470673, \"Y\": 0.47509145736694336}, {\"X\": 0.21343915164470673, \"Y\": 0.48278138041496277}, {\"X\": 0.17221035063266754, \"Y\": 0.48278138041496277}]}, \"Id\": \"e01bdd24-bd75-43f2-922e-a8102d7d972a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.86763763427734, \"Text\": \"taxation\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05201708897948265, \"Height\": 0.007745890412479639, \"Left\": 0.21684536337852478, \"Top\": 0.4751144349575043}, \"Polygon\": [{\"X\": 0.21684536337852478, \"Y\": 0.4751144349575043}, {\"X\": 0.26886245608329773, \"Y\": 0.4751144349575043}, {\"X\": 0.26886245608329773, \"Y\": 0.4828602969646454}, {\"X\": 0.21684536337852478, \"Y\": 0.4828602969646454}]}, \"Id\": \"76947805-1ba6-46bc-b51a-2bb685cc1f6b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73147583007812, \"Text\": \"160.0\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033142637461423874, \"Height\": 0.007838460616767406, \"Left\": 0.5380409955978394, \"Top\": 0.4751836657524109}, \"Polygon\": [{\"X\": 0.5380409955978394, \"Y\": 0.4751836657524109}, {\"X\": 0.5711836218833923, \"Y\": 0.4751836657524109}, {\"X\": 0.5711836218833923, \"Y\": 0.48302212357521057}, {\"X\": 0.5380409955978394, \"Y\": 0.48302212357521057}]}, \"Id\": \"75eb35b4-63f1-4605-b629-b0a6fc2f4cae\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.4908447265625, \"Text\": \"(139.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.040363892912864685, \"Height\": 0.009516764432191849, \"Left\": 0.6062451004981995, \"Top\": 0.474976509809494}, \"Polygon\": [{\"X\": 0.6062451004981995, \"Y\": 0.474976509809494}, {\"X\": 0.6466089487075806, \"Y\": 0.474976509809494}, {\"X\": 0.6466089487075806, \"Y\": 0.48449328541755676}, {\"X\": 0.6062451004981995, \"Y\": 0.48449328541755676}]}, \"Id\": \"b89f39a1-e995-4887-93cd-598edc7c023f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.83433532714844, \"Text\": \"20.3\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02664557285606861, \"Height\": 0.007751546334475279, \"Left\": 0.6873753666877747, \"Top\": 0.475137859582901}, \"Polygon\": [{\"X\": 0.6873753666877747, \"Y\": 0.475137859582901}, {\"X\": 0.7140209078788757, \"Y\": 0.475137859582901}, {\"X\": 0.7140209078788757, \"Y\": 0.48288941383361816}, {\"X\": 0.6873753666877747, \"Y\": 0.48288941383361816}]}, \"Id\": \"355ac8de-ae70-44f3-ac52-4c5ae1fc8c9a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7100830078125, \"Text\": \"116.2\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03241712227463722, \"Height\": 0.00785477738827467, \"Left\": 0.7624762654304504, \"Top\": 0.4750935137271881}, \"Polygon\": [{\"X\": 0.7624762654304504, \"Y\": 0.4750935137271881}, {\"X\": 0.7948933839797974, \"Y\": 0.4750935137271881}, {\"X\": 0.7948933839797974, \"Y\": 0.48294827342033386}, {\"X\": 0.7624762654304504, \"Y\": 0.48294827342033386}]}, \"Id\": \"67838322-1bcc-4ef1-9861-a728534cef9e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75312042236328, \"Text\": \"(15.7)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03227243199944496, \"Height\": 0.009388672187924385, \"Left\": 0.837807297706604, \"Top\": 0.4749104380607605}, \"Polygon\": [{\"X\": 0.837807297706604, \"Y\": 0.4749104380607605}, {\"X\": 0.8700796961784363, \"Y\": 0.4749104380607605}, {\"X\": 0.8700796961784363, \"Y\": 0.4842991232872009}, {\"X\": 0.837807297706604, \"Y\": 0.4842991232872009}]}, \"Id\": \"0bdb0970-93cd-42a3-935f-4e0f9aa37962\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.62364959716797, \"Text\": \"100.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03289274126291275, \"Height\": 0.008199340663850307, \"Left\": 0.9049378633499146, \"Top\": 0.4749137759208679}, \"Polygon\": [{\"X\": 0.9049378633499146, \"Y\": 0.4749137759208679}, {\"X\": 0.9378305673599243, \"Y\": 0.4749137759208679}, {\"X\": 0.9378305673599243, \"Y\": 0.4831131100654602}, {\"X\": 0.9049378633499146, \"Y\": 0.4831131100654602}]}, \"Id\": \"656c7b7d-bd87-4080-b747-bd8e62f13513\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7252197265625, \"Text\": \"Taxation\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04952417314052582, \"Height\": 0.007908813655376434, \"Left\": 0.09488273411989212, \"Top\": 0.4884416162967682}, \"Polygon\": [{\"X\": 0.09488273411989212, \"Y\": 0.4884416162967682}, {\"X\": 0.14440689980983734, \"Y\": 0.4884416162967682}, {\"X\": 0.14440689980983734, \"Y\": 0.4963504374027252}, {\"X\": 0.09488273411989212, \"Y\": 0.4963504374027252}]}, \"Id\": \"cd172da8-cf81-4640-979c-c1c5e9ce4da0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.95510864257812, \"Text\": \"10\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014383981004357338, \"Height\": 0.00800394732505083, \"Left\": 0.47620612382888794, \"Top\": 0.48839452862739563}, \"Polygon\": [{\"X\": 0.47620612382888794, \"Y\": 0.48839452862739563}, {\"X\": 0.4905901253223419, \"Y\": 0.48839452862739563}, {\"X\": 0.4905901253223419, \"Y\": 0.4963984787464142}, {\"X\": 0.47620612382888794, \"Y\": 0.4963984787464142}]}, \"Id\": \"e5cc27a2-f1ef-426a-bb62-b4ebc492e404\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39146423339844, \"Text\": \"(37.4)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03332294896245003, \"Height\": 0.009406208992004395, \"Left\": 0.5417194366455078, \"Top\": 0.4882006347179413}, \"Polygon\": [{\"X\": 0.5417194366455078, \"Y\": 0.4882006347179413}, {\"X\": 0.5750423669815063, \"Y\": 0.4882006347179413}, {\"X\": 0.5750423669815063, \"Y\": 0.4976068437099457}, {\"X\": 0.5417194366455078, \"Y\": 0.4976068437099457}]}, \"Id\": \"54e8f5b0-6ab7-4be4-8f9a-18be7a5f5aa0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88151550292969, \"Text\": \"15.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026076659560203552, \"Height\": 0.007983642630279064, \"Left\": 0.6162358522415161, \"Top\": 0.4883677065372467}, \"Polygon\": [{\"X\": 0.6162358522415161, \"Y\": 0.4883677065372467}, {\"X\": 0.6423125267028809, \"Y\": 0.4883677065372467}, {\"X\": 0.6423125267028809, \"Y\": 0.49635136127471924}, {\"X\": 0.6162358522415161, \"Y\": 0.49635136127471924}]}, \"Id\": \"4120e2d7-8bed-4cea-9de2-9fbdcfdb371e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57106018066406, \"Text\": \"(21.8)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03360605612397194, \"Height\": 0.009660888463258743, \"Left\": 0.6844925284385681, \"Top\": 0.4881793260574341}, \"Polygon\": [{\"X\": 0.6844925284385681, \"Y\": 0.4881793260574341}, {\"X\": 0.7180986404418945, \"Y\": 0.4881793260574341}, {\"X\": 0.7180986404418945, \"Y\": 0.49784019589424133}, {\"X\": 0.6844925284385681, \"Y\": 0.49784019589424133}]}, \"Id\": \"0d3eda4e-e32e-4141-a42d-dc2a34ea742b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.27481079101562, \"Text\": \"(16.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.032585062086582184, \"Height\": 0.009480753913521767, \"Left\": 0.7663373947143555, \"Top\": 0.488361656665802}, \"Polygon\": [{\"X\": 0.7663373947143555, \"Y\": 0.488361656665802}, {\"X\": 0.7989224791526794, \"Y\": 0.488361656665802}, {\"X\": 0.7989224791526794, \"Y\": 0.497842401266098}, {\"X\": 0.7663373947143555, \"Y\": 0.497842401266098}]}, \"Id\": \"a5cc8890-ac50-4133-81f4-b537262d7ce1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36772918701172, \"Text\": \"1.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018073830753564835, \"Height\": 0.007410888560116291, \"Left\": 0.8481148481369019, \"Top\": 0.48869287967681885}, \"Polygon\": [{\"X\": 0.8481148481369019, \"Y\": 0.48869287967681885}, {\"X\": 0.866188645362854, \"Y\": 0.48869287967681885}, {\"X\": 0.866188645362854, \"Y\": 0.49610376358032227}, {\"X\": 0.8481148481369019, \"Y\": 0.49610376358032227}]}, \"Id\": \"1e3def16-1eea-403d-9b07-72045ba5c1cf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49958038330078, \"Text\": \"(14.9)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03249545022845268, \"Height\": 0.009380737319588661, \"Left\": 0.9091721177101135, \"Top\": 0.4883723855018616}, \"Polygon\": [{\"X\": 0.9091721177101135, \"Y\": 0.4883723855018616}, {\"X\": 0.9416675567626953, \"Y\": 0.4883723855018616}, {\"X\": 0.9416675567626953, \"Y\": 0.4977531433105469}, {\"X\": 0.9091721177101135, \"Y\": 0.4977531433105469}]}, \"Id\": \"a53e0576-8956-432c-a308-1b717d833355\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.77635955810547, \"Text\": \"Profit/(loss)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07237914949655533, \"Height\": 0.009640950709581375, \"Left\": 0.09538351744413376, \"Top\": 0.5018073916435242}, \"Polygon\": [{\"X\": 0.09538351744413376, \"Y\": 0.5018073916435242}, {\"X\": 0.1677626669406891, \"Y\": 0.5018073916435242}, {\"X\": 0.1677626669406891, \"Y\": 0.5114483833312988}, {\"X\": 0.09538351744413376, \"Y\": 0.5114483833312988}]}, \"Id\": \"fa1154b5-46b8-4581-8b13-6ad33c24a552\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98369598388672, \"Text\": \"for\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01840074732899666, \"Height\": 0.008100667037069798, \"Left\": 0.1718079298734665, \"Top\": 0.5018595457077026}, \"Polygon\": [{\"X\": 0.1718079298734665, \"Y\": 0.5018595457077026}, {\"X\": 0.19020868837833405, \"Y\": 0.5018595457077026}, {\"X\": 0.19020868837833405, \"Y\": 0.5099602341651917}, {\"X\": 0.1718079298734665, \"Y\": 0.5099602341651917}]}, \"Id\": \"565782d4-bb8a-4fac-add2-89b6bd6bad89\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98937225341797, \"Text\": \"the\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02038472145795822, \"Height\": 0.007848307490348816, \"Left\": 0.1931522786617279, \"Top\": 0.5020719170570374}, \"Polygon\": [{\"X\": 0.1931522786617279, \"Y\": 0.5020719170570374}, {\"X\": 0.21353700757026672, \"Y\": 0.5020719170570374}, {\"X\": 0.21353700757026672, \"Y\": 0.5099201798439026}, {\"X\": 0.1931522786617279, \"Y\": 0.5099201798439026}]}, \"Id\": \"bd52522c-82e1-4133-a29e-964f3e11857f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98846435546875, \"Text\": \"year\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.028728393837809563, \"Height\": 0.007850423455238342, \"Left\": 0.21629375219345093, \"Top\": 0.5037293434143066}, \"Polygon\": [{\"X\": 0.21629375219345093, \"Y\": 0.5037293434143066}, {\"X\": 0.24502213299274445, \"Y\": 0.5037293434143066}, {\"X\": 0.24502213299274445, \"Y\": 0.5115798115730286}, {\"X\": 0.21629375219345093, \"Y\": 0.5115798115730286}]}, \"Id\": \"476d208f-aee5-4b84-8165-79cbc0b03ee7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81855010986328, \"Text\": \"122.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03302966058254242, \"Height\": 0.008131835609674454, \"Left\": 0.5380248427391052, \"Top\": 0.502142071723938}, \"Polygon\": [{\"X\": 0.5380248427391052, \"Y\": 0.502142071723938}, {\"X\": 0.5710544586181641, \"Y\": 0.502142071723938}, {\"X\": 0.5710544586181641, \"Y\": 0.5102738738059998}, {\"X\": 0.5380248427391052, \"Y\": 0.5102738738059998}]}, \"Id\": \"8cbb6649-0439-452a-994a-deb86f72ce6e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.435791015625, \"Text\": \"(124.1)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04027934744954109, \"Height\": 0.009616007097065449, \"Left\": 0.6057104468345642, \"Top\": 0.5018776059150696}, \"Polygon\": [{\"X\": 0.6057104468345642, \"Y\": 0.5018776059150696}, {\"X\": 0.6459898352622986, \"Y\": 0.5018776059150696}, {\"X\": 0.6459898352622986, \"Y\": 0.5114936232566833}, {\"X\": 0.6057104468345642, \"Y\": 0.5114936232566833}]}, \"Id\": \"d45d8a46-e50b-4e4b-9b4c-857882ea5197\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.71244812011719, \"Text\": \"(1.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025826072320342064, \"Height\": 0.009403157979249954, \"Left\": 0.692099928855896, \"Top\": 0.5019692182540894}, \"Polygon\": [{\"X\": 0.692099928855896, \"Y\": 0.5019692182540894}, {\"X\": 0.717926025390625, \"Y\": 0.5019692182540894}, {\"X\": 0.717926025390625, \"Y\": 0.5113723278045654}, {\"X\": 0.692099928855896, \"Y\": 0.5113723278045654}]}, \"Id\": \"7bfe4601-7791-433a-8b82-8312cf11ed60\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78805541992188, \"Text\": \"99.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02661915495991707, \"Height\": 0.007964802905917168, \"Left\": 0.7679100036621094, \"Top\": 0.502066433429718}, \"Polygon\": [{\"X\": 0.7679100036621094, \"Y\": 0.502066433429718}, {\"X\": 0.794529139995575, \"Y\": 0.502066433429718}, {\"X\": 0.794529139995575, \"Y\": 0.5100312232971191}, {\"X\": 0.7679100036621094, \"Y\": 0.5100312232971191}]}, \"Id\": \"4d2771e7-5fb4-463f-a1c6-4e485d94d424\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.14857482910156, \"Text\": \"(14.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03257061541080475, \"Height\": 0.009337849915027618, \"Left\": 0.8376958966255188, \"Top\": 0.5019909739494324}, \"Polygon\": [{\"X\": 0.8376958966255188, \"Y\": 0.5019909739494324}, {\"X\": 0.8702665567398071, \"Y\": 0.5019909739494324}, {\"X\": 0.8702665567398071, \"Y\": 0.5113288164138794}, {\"X\": 0.8376958966255188, \"Y\": 0.5113288164138794}]}, \"Id\": \"b00b69f7-23d9-4477-a08b-bc56f6b8f6f2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91703796386719, \"Text\": \"85.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02688528038561344, \"Height\": 0.00782336387783289, \"Left\": 0.9113799929618835, \"Top\": 0.5021812319755554}, \"Polygon\": [{\"X\": 0.9113799929618835, \"Y\": 0.5021812319755554}, {\"X\": 0.9382652640342712, \"Y\": 0.5021812319755554}, {\"X\": 0.9382652640342712, \"Y\": 0.5100045800209045}, {\"X\": 0.9113799929618835, \"Y\": 0.5100045800209045}]}, \"Id\": \"1fe0222d-6d7d-4c55-8259-45ab0c21a1a9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.09992980957031, \"Text\": \"(Loss)/profit\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06860922276973724, \"Height\": 0.009580851532518864, \"Left\": 0.09521978348493576, \"Top\": 0.5154621601104736}, \"Polygon\": [{\"X\": 0.09521978348493576, \"Y\": 0.5154621601104736}, {\"X\": 0.1638290137052536, \"Y\": 0.5154621601104736}, {\"X\": 0.1638290137052536, \"Y\": 0.5250430107116699}, {\"X\": 0.09521978348493576, \"Y\": 0.5250430107116699}]}, \"Id\": \"bcadc480-7051-46ce-be59-f0be2f759c9c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.96014404296875, \"Text\": \"attributable\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0675872415304184, \"Height\": 0.007833699695765972, \"Left\": 0.1676982194185257, \"Top\": 0.5156713724136353}, \"Polygon\": [{\"X\": 0.1676982194185257, \"Y\": 0.5156713724136353}, {\"X\": 0.2352854609489441, \"Y\": 0.5156713724136353}, {\"X\": 0.2352854609489441, \"Y\": 0.5235050916671753}, {\"X\": 0.1676982194185257, \"Y\": 0.5235050916671753}]}, \"Id\": \"3021723d-9ae7-446a-a71d-866cce07d29d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98707580566406, \"Text\": \"to\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011937854811549187, \"Height\": 0.007204833906143904, \"Left\": 0.2382335662841797, \"Top\": 0.5161040425300598}, \"Polygon\": [{\"X\": 0.2382335662841797, \"Y\": 0.5161040425300598}, {\"X\": 0.250171422958374, \"Y\": 0.5161040425300598}, {\"X\": 0.250171422958374, \"Y\": 0.5233088731765747}, {\"X\": 0.2382335662841797, \"Y\": 0.5233088731765747}]}, \"Id\": \"dde84627-f6e1-4293-8cb4-5d0aab101317\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.74309539794922, \"Text\": \"non-controlling\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08744386583566666, \"Height\": 0.009550780989229679, \"Left\": 0.25421708822250366, \"Top\": 0.5157122611999512}, \"Polygon\": [{\"X\": 0.25421708822250366, \"Y\": 0.5157122611999512}, {\"X\": 0.3416609764099121, \"Y\": 0.5157122611999512}, {\"X\": 0.3416609764099121, \"Y\": 0.5252630710601807}, {\"X\": 0.25421708822250366, \"Y\": 0.5252630710601807}]}, \"Id\": \"69d4d4dc-0f81-43d1-9070-6aced22c78cb\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92539978027344, \"Text\": \"interests\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.05035216361284256, \"Height\": 0.007872925139963627, \"Left\": 0.34551557898521423, \"Top\": 0.5156835913658142}, \"Polygon\": [{\"X\": 0.34551557898521423, \"Y\": 0.5156835913658142}, {\"X\": 0.3958677649497986, \"Y\": 0.5156835913658142}, {\"X\": 0.3958677649497986, \"Y\": 0.5235565304756165}, {\"X\": 0.34551557898521423, \"Y\": 0.5235565304756165}]}, \"Id\": \"f4396761-0fcb-46a3-806e-416df4abbff7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.88014221191406, \"Text\": \"(0.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02568690851330757, \"Height\": 0.009708333760499954, \"Left\": 0.5494760870933533, \"Top\": 0.5153746604919434}, \"Polygon\": [{\"X\": 0.5494760870933533, \"Y\": 0.5153746604919434}, {\"X\": 0.5751630067825317, \"Y\": 0.5153746604919434}, {\"X\": 0.5751630067825317, \"Y\": 0.5250830054283142}, {\"X\": 0.5494760870933533, \"Y\": 0.5250830054283142}]}, \"Id\": \"27e15b06-d53e-4f11-b952-a9b376dc81e3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.67120361328125, \"Text\": \"(4.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02592218667268753, \"Height\": 0.009512817487120628, \"Left\": 0.6205606460571289, \"Top\": 0.5153661370277405}, \"Polygon\": [{\"X\": 0.6205606460571289, \"Y\": 0.5153661370277405}, {\"X\": 0.6464828252792358, \"Y\": 0.5153661370277405}, {\"X\": 0.6464828252792358, \"Y\": 0.5248789191246033}, {\"X\": 0.6205606460571289, \"Y\": 0.5248789191246033}]}, \"Id\": \"61ca845b-002f-4c06-9c42-57201086beff\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7377700805664, \"Text\": \"(4.6)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025972142815589905, \"Height\": 0.009560180827975273, \"Left\": 0.6921427249908447, \"Top\": 0.5152736902236938}, \"Polygon\": [{\"X\": 0.6921427249908447, \"Y\": 0.5152736902236938}, {\"X\": 0.7181148529052734, \"Y\": 0.5152736902236938}, {\"X\": 0.7181148529052734, \"Y\": 0.5248338580131531}, {\"X\": 0.6921427249908447, \"Y\": 0.5248338580131531}]}, \"Id\": \"0f5ca407-22a8-4f59-b553-4586970e426a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.5735855102539, \"Text\": \"0.4\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018631059676408768, \"Height\": 0.007909789681434631, \"Left\": 0.7759475111961365, \"Top\": 0.5154781341552734}, \"Polygon\": [{\"X\": 0.7759475111961365, \"Y\": 0.5154781341552734}, {\"X\": 0.7945785522460938, \"Y\": 0.5154781341552734}, {\"X\": 0.7945785522460938, \"Y\": 0.5233879089355469}, {\"X\": 0.7759475111961365, \"Y\": 0.5233879089355469}]}, \"Id\": \"3418ef57-76b1-4bac-8014-bc009bcb784a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7753677368164, \"Text\": \"0.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01956198364496231, \"Height\": 0.00794836413115263, \"Left\": 0.8472216129302979, \"Top\": 0.51545250415802}, \"Polygon\": [{\"X\": 0.8472216129302979, \"Y\": 0.51545250415802}, {\"X\": 0.866783618927002, \"Y\": 0.51545250415802}, {\"X\": 0.866783618927002, \"Y\": 0.5234009027481079}, {\"X\": 0.8472216129302979, \"Y\": 0.5234009027481079}]}, \"Id\": \"76a15faa-2d45-4324-b530-be5a5513a1c0\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.8270263671875, \"Text\": \"1.0\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01804960146546364, \"Height\": 0.007617431692779064, \"Left\": 0.9197282195091248, \"Top\": 0.515597403049469}, \"Polygon\": [{\"X\": 0.9197282195091248, \"Y\": 0.515597403049469}, {\"X\": 0.9377778172492981, \"Y\": 0.515597403049469}, {\"X\": 0.9377778172492981, \"Y\": 0.5232148170471191}, {\"X\": 0.9197282195091248, \"Y\": 0.5232148170471191}]}, \"Id\": \"eef7330a-8aa7-4d36-bbc1-c64c55ff6ebc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.45979309082031, \"Text\": \"Profit/(loss)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06545966118574142, \"Height\": 0.009632812812924385, \"Left\": 0.09494281560182571, \"Top\": 0.5287739634513855}, \"Polygon\": [{\"X\": 0.09494281560182571, \"Y\": 0.5287739634513855}, {\"X\": 0.16040247678756714, \"Y\": 0.5287739634513855}, {\"X\": 0.16040247678756714, \"Y\": 0.5384067893028259}, {\"X\": 0.09494281560182571, \"Y\": 0.5384067893028259}]}, \"Id\": \"66593077-cd50-4e9d-8fd7-ebb58a7cd140\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9675064086914, \"Text\": \"attributable\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06756222248077393, \"Height\": 0.007820596918463707, \"Left\": 0.16376227140426636, \"Top\": 0.5289649963378906}, \"Polygon\": [{\"X\": 0.16376227140426636, \"Y\": 0.5289649963378906}, {\"X\": 0.23132449388504028, \"Y\": 0.5289649963378906}, {\"X\": 0.23132449388504028, \"Y\": 0.5367856025695801}, {\"X\": 0.16376227140426636, \"Y\": 0.5367856025695801}]}, \"Id\": \"ba6ac21a-5d62-47e4-a4f4-12ec63182f49\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98944091796875, \"Text\": \"to\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011739511974155903, \"Height\": 0.007393798790872097, \"Left\": 0.234685018658638, \"Top\": 0.5294146537780762}, \"Polygon\": [{\"X\": 0.234685018658638, \"Y\": 0.5294146537780762}, {\"X\": 0.24642454087734222, \"Y\": 0.5294146537780762}, {\"X\": 0.24642454087734222, \"Y\": 0.5368084907531738}, {\"X\": 0.234685018658638, \"Y\": 0.5368084907531738}]}, \"Id\": \"740fd7b2-3c08-4d37-9de4-41ec68d54b69\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.94342803955078, \"Text\": \"equity\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03643551468849182, \"Height\": 0.009458699263632298, \"Left\": 0.24968941509723663, \"Top\": 0.5289730429649353}, \"Polygon\": [{\"X\": 0.24968941509723663, \"Y\": 0.5289730429649353}, {\"X\": 0.28612491488456726, \"Y\": 0.5289730429649353}, {\"X\": 0.28612491488456726, \"Y\": 0.538431704044342}, {\"X\": 0.24968941509723663, \"Y\": 0.538431704044342}]}, \"Id\": \"ed0e8fa2-aa42-4d0e-85da-48e299cde724\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92727661132812, \"Text\": \"holders\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.044798653572797775, \"Height\": 0.007897582836449146, \"Left\": 0.28927937150001526, \"Top\": 0.528851330280304}, \"Polygon\": [{\"X\": 0.28927937150001526, \"Y\": 0.528851330280304}, {\"X\": 0.33407801389694214, \"Y\": 0.528851330280304}, {\"X\": 0.33407801389694214, \"Y\": 0.5367489457130432}, {\"X\": 0.28927937150001526, \"Y\": 0.5367489457130432}]}, \"Id\": \"94c2bf49-9490-4703-87b8-8824ff4c1fb1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.97684478759766, \"Text\": \"of\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.011727756820619106, \"Height\": 0.00771761080250144, \"Left\": 0.33709150552749634, \"Top\": 0.5288580060005188}, \"Polygon\": [{\"X\": 0.33709150552749634, \"Y\": 0.5288580060005188}, {\"X\": 0.3488192558288574, \"Y\": 0.5288580060005188}, {\"X\": 0.3488192558288574, \"Y\": 0.5365756154060364}, {\"X\": 0.33709150552749634, \"Y\": 0.5365756154060364}]}, \"Id\": \"276cc2b7-6131-4558-9592-53013a41724c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.98607635498047, \"Text\": \"the\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.018968841060996056, \"Height\": 0.007694417145103216, \"Left\": 0.3515015244483948, \"Top\": 0.5290290713310242}, \"Polygon\": [{\"X\": 0.3515015244483948, \"Y\": 0.5290290713310242}, {\"X\": 0.3704703748226166, \"Y\": 0.5290290713310242}, {\"X\": 0.3704703748226166, \"Y\": 0.5367234945297241}, {\"X\": 0.3515015244483948, \"Y\": 0.5367234945297241}]}, \"Id\": \"8feeac89-8630-475e-b8a4-5af0c96c36d5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.9424819946289, \"Text\": \"parent\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03795607015490532, \"Height\": 0.008859497494995594, \"Left\": 0.3740006387233734, \"Top\": 0.5294231176376343}, \"Polygon\": [{\"X\": 0.3740006387233734, \"Y\": 0.5294231176376343}, {\"X\": 0.4119567275047302, \"Y\": 0.5294231176376343}, {\"X\": 0.4119567275047302, \"Y\": 0.5382826328277588}, {\"X\": 0.3740006387233734, \"Y\": 0.5382826328277588}]}, \"Id\": \"b56f1c69-7522-464a-93c3-cd696f260d7b\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.85376739501953, \"Text\": \"122.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03318505361676216, \"Height\": 0.007938395254313946, \"Left\": 0.537935733795166, \"Top\": 0.528946578502655}, \"Polygon\": [{\"X\": 0.537935733795166, \"Y\": 0.528946578502655}, {\"X\": 0.5711207985877991, \"Y\": 0.528946578502655}, {\"X\": 0.5711207985877991, \"Y\": 0.5368849635124207}, {\"X\": 0.537935733795166, \"Y\": 0.5368849635124207}]}, \"Id\": \"677587c8-227d-4746-8d9f-1fef0f374a00\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.08905792236328, \"Text\": \"(119.8)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041211824864149094, \"Height\": 0.009829712100327015, \"Left\": 0.6054908633232117, \"Top\": 0.5286660194396973}, \"Polygon\": [{\"X\": 0.6054908633232117, \"Y\": 0.5286660194396973}, {\"X\": 0.6467026472091675, \"Y\": 0.5286660194396973}, {\"X\": 0.6467026472091675, \"Y\": 0.5384957194328308}, {\"X\": 0.6054908633232117, \"Y\": 0.5384957194328308}]}, \"Id\": \"0b85bc17-d888-4118-9fdd-c72fa98caee2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.80854797363281, \"Text\": \"3.1\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.01707758568227291, \"Height\": 0.007857218384742737, \"Left\": 0.6951209306716919, \"Top\": 0.5289443731307983}, \"Polygon\": [{\"X\": 0.6951209306716919, \"Y\": 0.5289443731307983}, {\"X\": 0.7121984958648682, \"Y\": 0.5289443731307983}, {\"X\": 0.7121984958648682, \"Y\": 0.5368015766143799}, {\"X\": 0.6951209306716919, \"Y\": 0.5368015766143799}]}, \"Id\": \"9ce8cc65-a8ce-491b-82e1-4dca2e898ba7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.81011199951172, \"Text\": \"99.5\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026530811563134193, \"Height\": 0.008020630106329918, \"Left\": 0.7680816650390625, \"Top\": 0.5288960337638855}, \"Polygon\": [{\"X\": 0.7680816650390625, \"Y\": 0.5288960337638855}, {\"X\": 0.794612467288971, \"Y\": 0.5288960337638855}, {\"X\": 0.794612467288971, \"Y\": 0.5369166731834412}, {\"X\": 0.7680816650390625, \"Y\": 0.5369166731834412}]}, \"Id\": \"0d771061-9de4-4cb1-95e0-aa0d16c28583\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.57840728759766, \"Text\": \"(14.9)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0329798199236393, \"Height\": 0.009510701522231102, \"Left\": 0.8376403450965881, \"Top\": 0.528847336769104}, \"Polygon\": [{\"X\": 0.8376403450965881, \"Y\": 0.528847336769104}, {\"X\": 0.8706201314926147, \"Y\": 0.528847336769104}, {\"X\": 0.8706201314926147, \"Y\": 0.5383580327033997}, {\"X\": 0.8376403450965881, \"Y\": 0.5383580327033997}]}, \"Id\": \"b34d39ad-6914-46e6-8bd4-c9332e5e2898\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76625061035156, \"Text\": \"84.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.02646738849580288, \"Height\": 0.008014567196369171, \"Left\": 0.9114028215408325, \"Top\": 0.5289866328239441}, \"Polygon\": [{\"X\": 0.9114028215408325, \"Y\": 0.5289866328239441}, {\"X\": 0.9378702044487, \"Y\": 0.5289866328239441}, {\"X\": 0.9378702044487, \"Y\": 0.5370011925697327}, {\"X\": 0.9114028215408325, \"Y\": 0.5370011925697327}]}, \"Id\": \"c59d25a5-dabc-45b2-950f-d199f017b75c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.73682403564453, \"Text\": \"122.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.033007558435201645, \"Height\": 0.007837931625545025, \"Left\": 0.5378807187080383, \"Top\": 0.5443063378334045}, \"Polygon\": [{\"X\": 0.5378807187080383, \"Y\": 0.5443063378334045}, {\"X\": 0.5708882808685303, \"Y\": 0.5443063378334045}, {\"X\": 0.5708882808685303, \"Y\": 0.5521442294120789}, {\"X\": 0.5378807187080383, \"Y\": 0.5521442294120789}]}, \"Id\": \"19b531a9-575a-46c4-98a4-7855fe73d749\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50944519042969, \"Text\": \"(124.1)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04093102365732193, \"Height\": 0.009811604395508766, \"Left\": 0.6055675745010376, \"Top\": 0.54401695728302}, \"Polygon\": [{\"X\": 0.6055675745010376, \"Y\": 0.54401695728302}, {\"X\": 0.6464985609054565, \"Y\": 0.54401695728302}, {\"X\": 0.6464985609054565, \"Y\": 0.5538285970687866}, {\"X\": 0.6055675745010376, \"Y\": 0.5538285970687866}]}, \"Id\": \"65a37094-7f42-49e2-acb8-f2ec4c6a3abc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.59326171875, \"Text\": \"(1.5)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.025923222303390503, \"Height\": 0.009527384303510189, \"Left\": 0.6920806169509888, \"Top\": 0.544099748134613}, \"Polygon\": [{\"X\": 0.6920806169509888, \"Y\": 0.544099748134613}, {\"X\": 0.7180038094520569, \"Y\": 0.544099748134613}, {\"X\": 0.7180038094520569, \"Y\": 0.5536271333694458}, {\"X\": 0.6920806169509888, \"Y\": 0.5536271333694458}]}, \"Id\": \"e576b85e-2a7e-4153-98ab-a5232c26744f\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.76990509033203, \"Text\": \"99.9\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026666637510061264, \"Height\": 0.008151489309966564, \"Left\": 0.768043041229248, \"Top\": 0.5441588759422302}, \"Polygon\": [{\"X\": 0.768043041229248, \"Y\": 0.5441588759422302}, {\"X\": 0.7947096824645996, \"Y\": 0.5441588759422302}, {\"X\": 0.7947096824645996, \"Y\": 0.5523104071617126}, {\"X\": 0.768043041229248, \"Y\": 0.5523104071617126}]}, \"Id\": \"be5e31ab-03bc-498d-b9ed-f88d05706d1c\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.50981140136719, \"Text\": \"(14.3)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03302741423249245, \"Height\": 0.009407429955899715, \"Left\": 0.8376144170761108, \"Top\": 0.5442577600479126}, \"Polygon\": [{\"X\": 0.8376144170761108, \"Y\": 0.5442577600479126}, {\"X\": 0.870641827583313, \"Y\": 0.5442577600479126}, {\"X\": 0.870641827583313, \"Y\": 0.5536652207374573}, {\"X\": 0.8376144170761108, \"Y\": 0.5536652207374573}]}, \"Id\": \"d592d43c-e732-4e96-968e-18ab0912d130\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.89212799072266, \"Text\": \"85.6\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026600392535328865, \"Height\": 0.00803698692470789, \"Left\": 0.9113827347755432, \"Top\": 0.5441812872886658}, \"Polygon\": [{\"X\": 0.9113827347755432, \"Y\": 0.5441812872886658}, {\"X\": 0.9379830956459045, \"Y\": 0.5441812872886658}, {\"X\": 0.9379830956459045, \"Y\": 0.5522183179855347}, {\"X\": 0.9113827347755432, \"Y\": 0.5522183179855347}]}, \"Id\": \"088a7156-308d-4f94-aa6e-ec4b385e0890\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.16119384765625, \"Text\": \"Earnings/(loss)\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09485787898302078, \"Height\": 0.0097095537930727, \"Left\": 0.09531788527965546, \"Top\": 0.5574250221252441}, \"Polygon\": [{\"X\": 0.09531788527965546, \"Y\": 0.5574250221252441}, {\"X\": 0.19017575681209564, \"Y\": 0.5574250221252441}, {\"X\": 0.19017575681209564, \"Y\": 0.5671346187591553}, {\"X\": 0.09531788527965546, \"Y\": 0.5671346187591553}]}, \"Id\": \"f8dd692a-fd8e-4d77-a304-2bdb11a320c8\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.78034210205078, \"Text\": \"per\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.021235443651676178, \"Height\": 0.007506103720515966, \"Left\": 0.19352193176746368, \"Top\": 0.5595129132270813}, \"Polygon\": [{\"X\": 0.19352193176746368, \"Y\": 0.5595129132270813}, {\"X\": 0.21475738286972046, \"Y\": 0.5595129132270813}, {\"X\": 0.21475738286972046, \"Y\": 0.5670190453529358}, {\"X\": 0.19352193176746368, \"Y\": 0.5670190453529358}]}, \"Id\": \"faf9c450-6041-427f-af0c-94f779e0cff1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79499053955078, \"Text\": \"share\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03589566424489021, \"Height\": 0.007860148325562477, \"Left\": 0.2176605761051178, \"Top\": 0.5577506422996521}, \"Polygon\": [{\"X\": 0.2176605761051178, \"Y\": 0.5577506422996521}, {\"X\": 0.2535562515258789, \"Y\": 0.5577506422996521}, {\"X\": 0.2535562515258789, \"Y\": 0.5656108260154724}, {\"X\": 0.2176605761051178, \"Y\": 0.5656108260154724}]}, \"Id\": \"7d82bf84-938f-4884-8d91-258d1d8815c7\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.7477798461914, \"Text\": \"Basic\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03314083814620972, \"Height\": 0.007792195770889521, \"Left\": 0.10904848575592041, \"Top\": 0.5713289380073547}, \"Polygon\": [{\"X\": 0.10904848575592041, \"Y\": 0.5713289380073547}, {\"X\": 0.14218932390213013, \"Y\": 0.5713289380073547}, {\"X\": 0.14218932390213013, \"Y\": 0.5791211128234863}, {\"X\": 0.10904848575592041, \"Y\": 0.5791211128234863}]}, \"Id\": \"96221497-daae-45c5-a261-d67450d89549\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.92768859863281, \"Text\": \"13\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014233392663300037, \"Height\": 0.008010742254555225, \"Left\": 0.4760349988937378, \"Top\": 0.5712425708770752}, \"Polygon\": [{\"X\": 0.4760349988937378, \"Y\": 0.5712425708770752}, {\"X\": 0.49026837944984436, \"Y\": 0.5712425708770752}, {\"X\": 0.49026837944984436, \"Y\": 0.5792533159255981}, {\"X\": 0.4760349988937378, \"Y\": 0.5792533159255981}]}, \"Id\": \"b03fc589-fccd-42ba-8825-95ea251d8a0a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 97.53480529785156, \"Text\": \"28.9p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03401146084070206, \"Height\": 0.00938269030302763, \"Left\": 0.5366703271865845, \"Top\": 0.5713484883308411}, \"Polygon\": [{\"X\": 0.5366703271865845, \"Y\": 0.5713484883308411}, {\"X\": 0.5706817507743835, \"Y\": 0.5713484883308411}, {\"X\": 0.5706817507743835, \"Y\": 0.580731213092804}, {\"X\": 0.5366703271865845, \"Y\": 0.580731213092804}]}, \"Id\": \"2974c031-cd9e-4578-8f71-d1c8ebbd15ed\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.43241119384766, \"Text\": \"(28.2)p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.041729915887117386, \"Height\": 0.009824300184845924, \"Left\": 0.6049597263336182, \"Top\": 0.57114177942276}, \"Polygon\": [{\"X\": 0.6049597263336182, \"Y\": 0.57114177942276}, {\"X\": 0.6466896533966064, \"Y\": 0.57114177942276}, {\"X\": 0.6466896533966064, \"Y\": 0.5809661149978638}, {\"X\": 0.6049597263336182, \"Y\": 0.5809661149978638}]}, \"Id\": \"d364dd29-167b-4ac5-9e7e-d40ff87a5a1e\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.24919128417969, \"Text\": \"0.7p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027149681001901627, \"Height\": 0.009232055395841599, \"Left\": 0.6868410110473633, \"Top\": 0.5713659524917603}, \"Polygon\": [{\"X\": 0.6868410110473633, \"Y\": 0.5713659524917603}, {\"X\": 0.7139906883239746, \"Y\": 0.5713659524917603}, {\"X\": 0.7139906883239746, \"Y\": 0.580597996711731}, {\"X\": 0.6868410110473633, \"Y\": 0.580597996711731}]}, \"Id\": \"9e123457-c877-4da5-be47-dd65a8b713e1\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.49618530273438, \"Text\": \"25.3p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03395194932818413, \"Height\": 0.009428100660443306, \"Left\": 0.760968029499054, \"Top\": 0.5712425112724304}, \"Polygon\": [{\"X\": 0.760968029499054, \"Y\": 0.5712425112724304}, {\"X\": 0.7949199676513672, \"Y\": 0.5712425112724304}, {\"X\": 0.7949199676513672, \"Y\": 0.5806705951690674}, {\"X\": 0.760968029499054, \"Y\": 0.5806705951690674}]}, \"Id\": \"ccabdabd-b4a4-4e20-b08d-e984611d038a\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.28546905517578, \"Text\": \"(3.8)p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0330997034907341, \"Height\": 0.009599365293979645, \"Left\": 0.837519645690918, \"Top\": 0.5712838768959045}, \"Polygon\": [{\"X\": 0.837519645690918, \"Y\": 0.5712838768959045}, {\"X\": 0.8706193566322327, \"Y\": 0.5712838768959045}, {\"X\": 0.8706193566322327, \"Y\": 0.5808832049369812}, {\"X\": 0.837519645690918, \"Y\": 0.5808832049369812}]}, \"Id\": \"bb9f94b1-f080-4972-93f0-5972ee076a0d\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.26473999023438, \"Text\": \"21.5p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03420886769890785, \"Height\": 0.00916239432990551, \"Left\": 0.9034744501113892, \"Top\": 0.5714505910873413}, \"Polygon\": [{\"X\": 0.9034744501113892, \"Y\": 0.5714505910873413}, {\"X\": 0.9376832842826843, \"Y\": 0.5714505910873413}, {\"X\": 0.9376832842826843, \"Y\": 0.5806129574775696}, {\"X\": 0.9034744501113892, \"Y\": 0.5806129574775696}]}, \"Id\": \"1e95d0e8-2edd-428e-9949-e1834db4d6ec\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79524230957031, \"Text\": \"Diluted\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0434708371758461, \"Height\": 0.008183145895600319, \"Left\": 0.10706905275583267, \"Top\": 0.5845813751220703}, \"Polygon\": [{\"X\": 0.10706905275583267, \"Y\": 0.5845813751220703}, {\"X\": 0.15053988993167877, \"Y\": 0.5845813751220703}, {\"X\": 0.15053988993167877, \"Y\": 0.5927644968032837}, {\"X\": 0.10706905275583267, \"Y\": 0.5927644968032837}]}, \"Id\": \"a663d34d-1767-4f9a-bfcb-ec82e5268adf\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.93809509277344, \"Text\": \"13\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.014120904728770256, \"Height\": 0.0075064292177557945, \"Left\": 0.4761621057987213, \"Top\": 0.5851474404335022}, \"Polygon\": [{\"X\": 0.4761621057987213, \"Y\": 0.5851474404335022}, {\"X\": 0.4902830123901367, \"Y\": 0.5851474404335022}, {\"X\": 0.4902830123901367, \"Y\": 0.5926538705825806}, {\"X\": 0.4761621057987213, \"Y\": 0.5926538705825806}]}, \"Id\": \"856bddec-5667-434d-8e4c-1d96cc1250e6\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.6882095336914, \"Text\": \"28.8p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03440167009830475, \"Height\": 0.009173218160867691, \"Left\": 0.5368825793266296, \"Top\": 0.5849146246910095}, \"Polygon\": [{\"X\": 0.5368825793266296, \"Y\": 0.5849146246910095}, {\"X\": 0.5712842345237732, \"Y\": 0.5849146246910095}, {\"X\": 0.5712842345237732, \"Y\": 0.5940878391265869}, {\"X\": 0.5368825793266296, \"Y\": 0.5940878391265869}]}, \"Id\": \"85f5d8b3-d976-4370-9786-299381963450\"}, {\"BlockType\": \"WORD\", \"Confidence\": 98.92610931396484, \"Text\": \"(28.1)p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04180571436882019, \"Height\": 0.009642903693020344, \"Left\": 0.6048889756202698, \"Top\": 0.5847190618515015}, \"Polygon\": [{\"X\": 0.6048889756202698, \"Y\": 0.5847190618515015}, {\"X\": 0.6466946601867676, \"Y\": 0.5847190618515015}, {\"X\": 0.6466946601867676, \"Y\": 0.5943619608879089}, {\"X\": 0.6048889756202698, \"Y\": 0.5943619608879089}]}, \"Id\": \"95e7482c-48d0-4b35-985b-1ee0082341c3\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.30398559570312, \"Text\": \"0.7p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.027339376509189606, \"Height\": 0.009113606996834278, \"Left\": 0.6864520907402039, \"Top\": 0.5849599838256836}, \"Polygon\": [{\"X\": 0.6864520907402039, \"Y\": 0.5849599838256836}, {\"X\": 0.7137914299964905, \"Y\": 0.5849599838256836}, {\"X\": 0.7137914299964905, \"Y\": 0.5940735936164856}, {\"X\": 0.6864520907402039, \"Y\": 0.5940735936164856}]}, \"Id\": \"1fd5d308-12ba-4ca8-81d0-027ccbd71576\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.52396392822266, \"Text\": \"25.2p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.034118104726076126, \"Height\": 0.00918998196721077, \"Left\": 0.7608135938644409, \"Top\": 0.5849291682243347}, \"Polygon\": [{\"X\": 0.7608135938644409, \"Y\": 0.5849291682243347}, {\"X\": 0.7949317097663879, \"Y\": 0.5849291682243347}, {\"X\": 0.7949317097663879, \"Y\": 0.594119131565094}, {\"X\": 0.7608135938644409, \"Y\": 0.594119131565094}]}, \"Id\": \"fa0f13ab-0472-48fd-9167-f69a88cce6a4\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.07182312011719, \"Text\": \"(3.8)p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03278442472219467, \"Height\": 0.009519531391561031, \"Left\": 0.8373742699623108, \"Top\": 0.5847625136375427}, \"Polygon\": [{\"X\": 0.8373742699623108, \"Y\": 0.5847625136375427}, {\"X\": 0.8701586723327637, \"Y\": 0.5847625136375427}, {\"X\": 0.8701586723327637, \"Y\": 0.5942820906639099}, {\"X\": 0.8373742699623108, \"Y\": 0.5942820906639099}]}, \"Id\": \"af8e27d1-22dc-4a6b-9a30-2b1e6989cee2\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.56404876708984, \"Text\": \"21.4p\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.034812081605196, \"Height\": 0.009216634556651115, \"Left\": 0.9032271504402161, \"Top\": 0.5849716663360596}, \"Polygon\": [{\"X\": 0.9032271504402161, \"Y\": 0.5849716663360596}, {\"X\": 0.938039243221283, \"Y\": 0.5849716663360596}, {\"X\": 0.938039243221283, \"Y\": 0.5941883325576782}, {\"X\": 0.9032271504402161, \"Y\": 0.5941883325576782}]}, \"Id\": \"ec6e4acb-3149-4913-992a-4736a6a82262\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.68158721923828, \"Text\": \"Synthomer\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.060585491359233856, \"Height\": 0.008785481564700603, \"Left\": 0.7222809791564941, \"Top\": 0.9550743699073792}, \"Polygon\": [{\"X\": 0.7222809791564941, \"Y\": 0.9550743699073792}, {\"X\": 0.7828664779663086, \"Y\": 0.9550743699073792}, {\"X\": 0.7828664779663086, \"Y\": 0.9638598561286926}, {\"X\": 0.7222809791564941, \"Y\": 0.9638598561286926}]}, \"Id\": \"04eb73d7-888b-406e-90c7-24600e5b2cf5\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.39265441894531, \"Text\": \"plc\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0172433964908123, \"Height\": 0.008303873240947723, \"Left\": 0.7846879959106445, \"Top\": 0.9553759694099426}, \"Polygon\": [{\"X\": 0.7846879959106445, \"Y\": 0.9553759694099426}, {\"X\": 0.8019313812255859, \"Y\": 0.9553759694099426}, {\"X\": 0.8019313812255859, \"Y\": 0.963679850101471}, {\"X\": 0.7846879959106445, \"Y\": 0.963679850101471}]}, \"Id\": \"4c07e0c3-00e9-4b48-8eaf-3af41755b3e9\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.79505920410156, \"Text\": \"Annual\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03540050610899925, \"Height\": 0.006938395090401173, \"Left\": 0.8044113516807556, \"Top\": 0.9552233219146729}, \"Polygon\": [{\"X\": 0.8044113516807556, \"Y\": 0.9552233219146729}, {\"X\": 0.8398118615150452, \"Y\": 0.9552233219146729}, {\"X\": 0.8398118615150452, \"Y\": 0.9621617197990417}, {\"X\": 0.8044113516807556, \"Y\": 0.9621617197990417}]}, \"Id\": \"14f20379-f37b-4065-8a71-5f5d1a937a83\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.75273895263672, \"Text\": \"Report\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.03526565805077553, \"Height\": 0.00854785181581974, \"Left\": 0.8425508141517639, \"Top\": 0.9552173614501953}, \"Polygon\": [{\"X\": 0.8425508141517639, \"Y\": 0.9552173614501953}, {\"X\": 0.8778164982795715, \"Y\": 0.9552173614501953}, {\"X\": 0.8778164982795715, \"Y\": 0.9637652039527893}, {\"X\": 0.8425508141517639, \"Y\": 0.9637652039527893}]}, \"Id\": \"cf01fcd3-ee5b-42bc-874e-736bac126195\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.36527252197266, \"Text\": \"2020\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.026784274727106094, \"Height\": 0.006896647159010172, \"Left\": 0.8803375363349915, \"Top\": 0.9552202820777893}, \"Polygon\": [{\"X\": 0.8803375363349915, \"Y\": 0.9552202820777893}, {\"X\": 0.9071218371391296, \"Y\": 0.9552202820777893}, {\"X\": 0.9071218371391296, \"Y\": 0.9621169567108154}, {\"X\": 0.8803375363349915, \"Y\": 0.9621169567108154}]}, \"Id\": \"ccb16ff1-c4a5-436c-9c47-257cc7ff69cc\"}, {\"BlockType\": \"WORD\", \"Confidence\": 99.91604614257812, \"Text\": \"129\", \"TextType\": \"PRINTED\", \"Geometry\": {\"BoundingBox\": {\"Width\": 0.019493265077471733, \"Height\": 0.0069633787497878075, \"Left\": 0.9229442477226257, \"Top\": 0.955232560634613}, \"Polygon\": [{\"X\": 0.9229442477226257, \"Y\": 0.955232560634613}, {\"X\": 0.942437469959259, \"Y\": 0.955232560634613}, {\"X\": 0.942437469959259, \"Y\": 0.9621959924697876}, {\"X\": 0.9229442477226257, \"Y\": 0.9621959924697876}]}, \"Id\": \"5f8a19c1-175a-4d04-8108-1748918bb1c1\"}, {\"BlockType\": \"TABLE\", \"Confidence\": 99.96276092529297, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.8554834723472595, \"Height\": 0.4472046196460724, \"Left\": 0.09096222370862961, \"Top\": 0.14768922328948975}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.14768922328948975}, {\"X\": 0.9464457035064697, \"Y\": 0.14768922328948975}, {\"X\": 0.9464457035064697, \"Y\": 0.5948938131332397}, {\"X\": 0.09096222370862961, \"Y\": 0.5948938131332397}]}, \"Id\": \"2e1ac349-d60a-4e00-87fb-830a66fcd0fb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58641911-afd5-438d-a48a-ec4809dc52e2\", \"8249fed8-6f72-4f54-b2b9-2f089f352311\", \"2704e75e-5b7d-4b58-8b3e-303ea965d922\", \"fff5342f-e00b-48f2-90b5-aec907e8da07\", \"51ce66dd-649e-4dbd-8319-3f4a75a8fafb\", \"df524b12-f191-4b1e-be16-bd56985b7f0d\", \"2f3260d8-1495-4864-aff3-58fddaf462be\", \"37ea4273-ec4c-42f9-a42f-831328735613\", \"96a041b5-e208-4670-b932-505912cfd605\", \"0050a990-4d03-4dce-ba11-eeee6b145362\", \"fd1f1a01-bddf-4fb9-855c-c083c0279466\", \"5dd50213-fd52-4085-89f4-7a3e4dbf340d\", \"108c705c-0aae-4058-9dbf-7469dc18e673\", \"cd9126b6-6558-40d1-a797-64c91dc33c54\", \"83da018f-de1f-47a9-91bd-4b5197f183e9\", \"0856d293-1107-4078-bdfa-edae6e460611\", \"fe99f75b-6515-4d20-8214-cbf4ca34cb23\", \"c39721ba-e076-4d31-a18f-fa66cdab1f25\", \"bacbeaff-5dd0-43e6-9c58-9e4f555fbfee\", \"5cb85174-6ceb-4786-b370-280ece421338\", \"37e04d7a-6d7c-4ad8-985f-a38b9ec13fe0\", \"44ac2885-4437-404a-b494-4626c8de99a8\", \"496e9f11-1fd8-416e-9957-fc44648bbb58\", \"20fb1d3c-bbd6-4776-9de3-6b58e82840f1\", \"63da20e3-58c7-4e61-a3dd-fa8561aa4be6\", \"2a60a85c-2d81-49ad-a778-13ee1ac6005c\", \"32687a9c-1b1b-4d70-92bc-5e7d34044b2a\", \"37129299-ac76-4023-b1b1-c58e3ea5ca49\", \"dedabeae-fbfa-4314-92ef-8b07125c3d04\", \"f0c346a4-d589-4442-84b6-741c53c03cd0\", \"7b814259-f8f4-4f02-93fd-5a5c390da5a5\", \"56c181d5-fadc-45cb-9d3d-6243ee2c8191\", \"83af2ff5-3bba-48fb-b577-3c2cf2a25a2b\", \"36065615-6cb2-47fb-b842-3f58e0bcba37\", \"ec888afa-930e-499d-8e77-899a43829ddc\", \"35c25938-5611-4a37-b053-81f692805e8f\", \"d242a7ff-d520-4dcb-8ed5-411e43e7fbfb\", \"d0b79653-7e87-4ae7-b2c0-7f63a1beb0c7\", \"3d937c96-7d8a-4fc5-95b0-da5581a20d47\", \"a836a340-7a69-4135-a979-80c5dcdce85b\", \"13aa5a7a-ad2a-4523-8ce2-ead5d8c6e186\", \"9ee1dec4-56e3-4ee8-91c4-281739de1754\", \"33058abd-fe4c-4252-a2af-399d67000a2e\", \"deb899af-1455-46fe-99e9-bf667b196e8d\", \"2c619c72-490e-4ddc-9bcc-53832c1f29a1\", \"8100d0f1-4786-42b9-bec0-6b0f68ecdc8c\", \"2722a33c-1fcb-48a0-b76d-8b8261faf95f\", \"fe050c33-e847-4232-95f7-7b7520727add\", \"ad0b6469-f514-4d12-9968-a6adf6cf1679\", \"2cf0444c-324c-4fa8-9e30-f47d8cf35d77\", \"9db48460-39dc-49b6-bf1b-ddb144372c27\", \"d04a6338-4941-485a-92a7-68ea63f8e5d8\", \"c26436e9-9232-40d6-ae8c-4799bacd8f32\", \"0aa6e4c5-e3ba-4565-807e-a9dca0a27765\", \"62cb0064-7a3e-47b5-b326-77a6b4442d78\", \"3654cca1-3b46-4306-9782-9923f242d1ce\", \"94a4b909-092b-4189-bf93-4f25deb6c81b\", \"810bcad0-c04a-48be-8400-f2a1e70dd53a\", \"d0084df8-2de7-4026-b5e5-98c90d7d3b11\", \"40100a65-2907-41ce-a6e6-419309ba73a6\", \"e932aaab-6371-4cda-aedc-ddeabd15f5c2\", \"77a04e07-0c29-4c7c-ba43-c60783244ba0\", \"93a593aa-096a-49cb-9c6a-bade115e3269\", \"1a844ffc-72db-447a-afc8-f184004a00aa\", \"bc2a3c0d-3d01-4a47-bcf7-e7da3240b58f\", \"67023b40-7293-45a3-b3a1-c69847aeb89e\", \"8dbda920-b736-464b-aa10-2e7b526299b9\", \"f95bcf1c-1032-4dab-b7c4-2d2d8ac72b85\", \"fcf40ba6-ec06-4bae-8b32-c913ba33a54a\", \"be1a827c-3799-4217-b23b-63056ba86b72\", \"c8299eea-0bb1-4793-9b7d-8cd7524cc9d9\", \"24aa7247-a232-4927-bc54-ff3109b44c33\", \"3e0e34f1-9e8a-4f48-9058-2efe79e72dd5\", \"e3f2e0a2-efe1-45f8-9df1-d1d10df52d86\", \"1999298c-a0b3-40f4-8b91-d1e2417b39b0\", \"426d61fd-4805-4939-8924-856609a63ac5\", \"e30f48b8-5c80-4e3a-8bde-7fed6471094f\", \"48baae62-ec7e-4b66-af9e-ce463c293b49\", \"f61131b2-15b4-45f1-8123-9ba596e8de1c\", \"be101bba-ace2-4a9c-98f7-d7a89632c399\", \"37aa5070-6395-4332-9b5a-47278c69ee88\", \"f179f6cc-d89d-437e-a3df-b1518b6b8f41\", \"a7b363de-e36a-4568-b3e3-fa6ec84b2c84\", \"24be2086-f004-43fd-aadd-3e48725f2fd0\", \"226ae2c4-f126-407a-83cf-12d75dc36f43\", \"b1ffc99d-761f-4e7d-bc19-42151a526f7c\", \"cb39ef25-0e86-43f0-9ee7-bb3b5552dd1e\", \"34532977-048c-43d7-af27-e8138d447bad\", \"6771c878-9f26-4fee-8bd7-74d92f43df94\", \"05cf3198-7fc6-4532-858a-21e6b41bfeef\", \"197380ce-ed25-42d2-977b-c6b5ed207758\", \"713d52b1-fe2d-499e-8173-e87f8b7cc42d\", \"490f5664-a35d-4a02-90a6-a443aba983c3\", \"99f31b7f-909c-4a60-a264-4f92331cec4d\", \"36887f2a-9cf9-48f6-ba54-cfe0e64a9094\", \"10d46f0b-f756-4b96-a2fb-fa9ba253fb6c\", \"88e94650-efcc-41d3-8d0d-c87b7fb0135d\", \"50409fb5-c556-40ec-b6e0-bb4628c077c4\", \"a5d96c77-2b75-40e9-b575-c310205d331d\", \"d720fcae-dbab-46aa-9e05-c27cd9fbf4cd\", \"6aaa7489-a407-47fc-8802-c791b48528d2\", \"126b4458-e371-48ec-9a3d-0b52c5374096\", \"ee678eb7-edd2-42ba-a601-7ee58084a51d\", \"d7eb9b22-e826-47a0-bb7a-1e70fe326396\", \"08ca12d4-ed9e-4c75-b705-630c61f7e4f4\", \"40d80145-1233-4dc0-9d0d-15f25987e68d\", \"60d3b7a7-d755-4e3f-b2d6-6f7424ff9ac7\", \"28e514a6-a685-49ff-867f-1c350c6d898a\", \"9cf32657-a9ec-43f6-b1cf-a3de7fb2f047\", \"d06357dd-9971-4fda-b803-a8018bd2d087\", \"87b2051b-a09b-459c-ad07-ca742b3d7f69\", \"ddfc4980-95ca-409c-85ee-2ffd5811a791\", \"344d2bda-6a4f-401a-82b3-6b972f609102\", \"ce4c5969-a525-46ed-a807-298baed0e40c\", \"a095751d-821c-405b-bf20-aaecc15f2442\", \"f7db2868-cdb7-4f9b-8772-6bdd3c5aff42\", \"1732d5c2-cb1a-4162-85ca-7ab598b2ad1f\", \"56d70283-865e-40a1-88b1-a6c3b9df9b65\", \"88b36cf9-638b-42fc-9485-153039ef4da8\", \"43d4b521-2743-41fe-b7ba-674d31e8525e\", \"d3dfe438-a2a9-4511-971b-324f3a69db0d\", \"d1495946-282d-4abe-ba5a-1ae06775b120\", \"82b3873e-0475-49ae-bdd3-fcf194703d89\", \"f015bb8d-4689-456c-9174-a52787b488c8\", \"87501718-ae09-463c-857d-62f4b7a2fd1b\", \"5efc4b54-2537-442b-8301-4fb38853b180\", \"bff24adf-0e1f-4b47-92e2-63aed0d80dff\", \"e44780f3-8f26-4a1c-b8a6-29bd978d93a4\", \"214bcff4-6040-4ae7-b1f1-6e7e546f11b2\", \"71073a40-2177-4a0f-9572-6d52f20ce201\", \"f061a1f4-f893-41cc-8180-6c33b36d2efa\", \"57119025-27d0-4143-984a-07d121976dcd\", \"8b1070bf-fc76-4a0a-a3e1-ffdde0b1eac1\", \"23e4efd6-fc66-4863-b8a5-1798caa19bfa\", \"fb7cd422-b457-4f5a-b6dd-5271a2fe53f4\", \"fa5bb04d-74cc-4516-878a-9143f3922187\", \"c87ced5f-bc28-4698-9932-53f5742446fd\", \"7e237b97-a307-4bc6-8445-b5060812377d\", \"c9728a7a-e5fd-442d-8396-c77cbd68ba67\", \"36d90455-2083-45be-8391-76d5c5e2bbb6\", \"91bc69a7-f1b2-41cd-861b-549912cb29a8\", \"78eca37a-83bb-4527-924d-08bdfffeec46\", \"16a69440-4307-45ca-a156-8a40c41c3248\", \"77423618-dd24-4631-8ce2-fdfd368d1b1d\", \"f5bb2a81-00bc-4223-987c-56e540d329a4\", \"0f979230-5087-4287-a3dc-f8143c7d3ec0\", \"f5c4a257-4d63-41bf-904a-857b4eb2323b\", \"058dd7c5-86e6-4307-b4df-a97037b0979f\", \"ba9b1cc8-799d-4780-9bf4-536773109195\", \"cdca2b3c-a387-4939-ac0c-6cd1c661733e\", \"e551f2b9-0813-4385-9d66-a2f4f6cf1500\", \"7b6f2389-7cdf-4a42-afb5-37917a3b77ec\", \"d8df0d93-5310-4b0d-b2be-f39c07a04325\", \"9a19104e-7d9e-4182-89f0-459741144315\", \"0345477c-3d36-4f8b-92fd-d82b0af2793f\", \"79042ca3-6fc5-4ff0-80bd-700a9ba9205f\", \"572c72ea-8929-4d29-bf0f-411c52c4c792\", \"15628892-a598-401a-8a49-385266278234\", \"e4dd1d6b-c843-4cbb-a591-89f8acd81abe\", \"ca3e255e-772b-478f-a10e-e74be0c91968\", \"f6858717-5452-48d6-897c-6bcc92af7a0c\", \"a1f5f3b6-143a-4d25-9519-ec9cd3ba5b34\", \"a0f6db41-6db8-4bd4-aaa3-8d83ce207a7f\", \"abb42a07-55ab-45d9-b993-f6a030fff9c5\", \"eafbdfc7-cd72-4229-b2be-3e3391066d63\", \"ea52b969-0436-43d4-8931-7eb016faef73\", \"8cf2d5e5-40da-459b-9b7e-90cecca37bfb\", \"9c6a4c24-f18a-4682-b2dd-76b27a6858a3\", \"dc6d99c6-c568-492d-b29d-c5e07d850abf\", \"facf8c3a-0c38-4b18-9bd7-044bec24efd7\", \"5c1d9b88-04d5-4901-bd43-748c927681df\", \"fe5c7214-9b31-46a1-8782-4bfe16c560a4\", \"cd2491b1-8ae5-4390-927e-62d418e34768\", \"77a8862e-5187-40e6-a525-608aacf4bf66\", \"168e96d5-8351-4ca3-8734-3ad2aa478452\", \"e0f9163a-9bc5-4fc5-8cba-a2c69c17e8ac\", \"63517f6f-3818-435d-a128-7fcf273f9e69\", \"aef5f3dd-ab44-4dd4-a7c5-10ebe21d831c\", \"b0a303fc-06d2-4834-b86e-78c7b1884fe1\", \"92c76007-6120-4494-817f-0cba67c35bda\", \"a8184946-3b76-4e6a-8c11-4f2cb2345296\", \"c9bc4d09-fbaa-4cce-9171-be39763b6c0c\", \"ef84ce02-6d1d-4452-945b-56d2a9af35f3\", \"639b800c-6255-4a05-97a3-3451bcbf6c14\", \"d4c33c29-15ca-418b-9c68-0598811b13e5\", \"dd17dc61-bd8b-4282-824f-649aac8611c6\", \"052ba945-553b-49bf-842a-35a9b61232f9\", \"59891bb1-0792-48a0-9edf-0c41c355777b\", \"7aaebfe7-3435-4712-a98c-42efdd36013f\", \"78cf7a5b-64f3-4567-80f1-cddf003fd1d4\", \"4196886d-31b2-4c43-b1ae-955c761a1299\", \"b10ec260-5aef-4f24-a266-4134c56d910f\", \"726c2483-be0b-46f5-bad5-6d32d873cd64\", \"a73e782d-6bf8-40e8-97cd-033b18a148f1\", \"ab233fb2-efb0-4bae-b54e-121a3e73dc79\", \"9fecd2df-8f8d-43ea-bfeb-71df18781638\", \"7882d52f-b14d-4d31-a4be-1072c166ce0f\", \"215649e3-ab55-4f75-8e48-ea2ca74e2171\", \"24b5bc08-83ef-49e8-9d57-1f91d1be3d0f\", \"2a7c16a3-2962-4691-a0e5-8c44bd5066da\", \"4856ce3a-dd7e-4a7e-8b16-9d2bd83394a0\", \"a72ebf39-5982-4649-967b-06fe8a22a748\", \"c8f39815-463f-4d48-94d5-821bbc609236\", \"500e2cda-0821-495f-87c2-78204ae1f657\", \"fd9fd1a2-481e-4fcb-86c7-b2114c18e337\", \"710e2656-f84a-4ea4-b269-3f1074c4eb7f\", \"498d103f-29d9-4669-ba48-3df2301cfb67\", \"88b6dfaf-4c70-449a-a0d7-d6286cd58dfe\", \"28e93932-1df8-4fbe-a4c1-ff8fa953389d\", \"ce7eeef3-336f-48fe-af28-867c20696bc2\", \"2c621751-215d-4c04-9122-42c79799d2b2\", \"53090a2a-3eed-4b7e-8c79-8964ccd28f07\", \"6d5bdf73-72d7-4db0-83c8-d46800ade110\", \"6a469c23-2294-4ada-9e11-765b7c7635be\", \"bde960c6-4ecd-4250-ad02-7453d45e9005\", \"c9894adb-5be1-41ad-8d65-bc7e7b34739c\", \"8ece7183-b392-4c07-ae53-a04481db0d00\", \"bef4103d-0bc5-4eb1-a65a-36b554138f8c\", \"b5df3964-df8e-4e33-b5ee-3f0e915ca508\", \"0b7e2ee7-1257-408e-83dd-3d6e5ccc61d8\", \"942094fa-6634-4fcf-a784-b66a9c94c73a\", \"092c4ea6-3284-4d2d-b090-b8f39b292ce9\", \"9dbba202-1796-430c-9175-8bc387925886\", \"7fe164d1-2b51-4095-af01-d49c641a42c3\", \"9a8b3a6e-9b83-4ecd-ba9b-038f38e98c15\", \"3b3d6b8c-56a8-4dc1-868a-cee2909eee6d\", \"92ca041d-7583-47d8-a44c-187f7d9870e5\", \"3d31841b-e208-4126-a125-d73ccc69d0b2\", \"1a1ae10a-9a5c-4e76-af9e-7e5033da9b30\", \"2aee4218-5278-49ef-a8cf-9b8c5d944601\", \"37ee8fe9-9740-4aa4-b704-eadecd6268af\", \"f8609c56-e7ea-4404-a55a-4c26cc10f911\", \"2c1ab05e-c72d-4525-8d49-feffb1ad6967\", \"096487ac-1345-4548-8a3c-c1a12ad6e72f\", \"1cadb575-610f-4077-9ab2-c86c0fd87402\", \"9ccd951c-a8ae-4620-b9cf-780e9b8a7d6d\", \"9c57bd04-3809-40df-853a-88bab3e1c3c6\", \"64058af4-ca17-438c-94d8-abfa18aa2d3b\", \"ea5ef5ab-1d8c-4e64-b385-b2529f0c332a\", \"109f2dbb-1ba1-4efb-b322-09b18dd0e396\"]}, {\"Type\": \"MERGED_CELL\", \"Ids\": [\"e446dcc9-a06a-46aa-9edd-a6f9ae6477d1\", \"e8d51aab-d410-4051-804b-457d7f007b3f\", \"f17a74a7-fe02-498d-8cc6-1385308e04bb\", \"720f1243-ef6f-4dad-b8d6-9f48def19e67\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.97203826904297, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36586517095565796, \"Height\": 0.02199999988079071, \"Left\": 0.09075907617807388, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.09075907617807388, \"Y\": 0.14766666293144226}, {\"X\": 0.45662423968315125, \"Y\": 0.14766666293144226}, {\"X\": 0.45662423968315125, \"Y\": 0.16966666281223297}, {\"X\": 0.09075907617807388, \"Y\": 0.16966666281223297}]}, \"Id\": \"58641911-afd5-438d-a48a-ec4809dc52e2\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.97203826904297, \"RowIndex\": 1, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.02199999988079071, \"Left\": 0.45662423968315125, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.14766666293144226}, {\"X\": 0.50141441822052, \"Y\": 0.14766666293144226}, {\"X\": 0.50141441822052, \"Y\": 0.16966666281223297}, {\"X\": 0.45662423968315125, \"Y\": 0.16966666281223297}]}, \"Id\": \"8249fed8-6f72-4f54-b2b9-2f089f352311\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.97203826904297, \"RowIndex\": 2, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36586517095565796, \"Height\": 0.02866666577756405, \"Left\": 0.09075907617807388, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.09075907617807388, \"Y\": 0.16966666281223297}, {\"X\": 0.45662423968315125, \"Y\": 0.16966666281223297}, {\"X\": 0.45662423968315125, \"Y\": 0.19833333790302277}, {\"X\": 0.09075907617807388, \"Y\": 0.19833333790302277}]}, \"Id\": \"2704e75e-5b7d-4b58-8b3e-303ea965d922\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.97203826904297, \"RowIndex\": 2, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.02866666577756405, \"Left\": 0.45662423968315125, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.16966666281223297}, {\"X\": 0.50141441822052, \"Y\": 0.16966666281223297}, {\"X\": 0.50141441822052, \"Y\": 0.19833333790302277}, {\"X\": 0.45662423968315125, \"Y\": 0.19833333790302277}]}, \"Id\": \"fff5342f-e00b-48f2-90b5-aec907e8da07\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ecd08b22-a2c1-4915-908a-8fd9ca7855c5\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.37357330322266, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.02199999988079071, \"Left\": 0.50141441822052, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.14766666293144226}, {\"X\": 0.5891088843345642, \"Y\": 0.14766666293144226}, {\"X\": 0.5891088843345642, \"Y\": 0.16966666281223297}, {\"X\": 0.50141441822052, \"Y\": 0.16966666281223297}]}, \"Id\": \"51ce66dd-649e-4dbd-8319-3f4a75a8fafb\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.37357330322266, \"RowIndex\": 1, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.02199999988079071, \"Left\": 0.5891088843345642, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.14766666293144226}, {\"X\": 0.6631305813789368, \"Y\": 0.14766666293144226}, {\"X\": 0.6631305813789368, \"Y\": 0.16966666281223297}, {\"X\": 0.5891088843345642, \"Y\": 0.16966666281223297}]}, \"Id\": \"df524b12-f191-4b1e-be16-bd56985b7f0d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f911ea69-1ad6-4bb2-8a5d-571184c1e817\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.37357330322266, \"RowIndex\": 1, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.02199999988079071, \"Left\": 0.6631305813789368, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.14766666293144226}, {\"X\": 0.7263083457946777, \"Y\": 0.14766666293144226}, {\"X\": 0.7263083457946777, \"Y\": 0.16966666281223297}, {\"X\": 0.6631305813789368, \"Y\": 0.16966666281223297}]}, \"Id\": \"2f3260d8-1495-4864-aff3-58fddaf462be\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.4515380859375, \"RowIndex\": 1, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.02199999988079071, \"Left\": 0.7263083457946777, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.14766666293144226}, {\"X\": 0.8163602352142334, \"Y\": 0.14766666293144226}, {\"X\": 0.8163602352142334, \"Y\": 0.16966666281223297}, {\"X\": 0.7263083457946777, \"Y\": 0.16966666281223297}]}, \"Id\": \"37ea4273-ec4c-42f9-a42f-831328735613\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.4515380859375, \"RowIndex\": 1, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.02199999988079071, \"Left\": 0.8163602352142334, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.14766666293144226}, {\"X\": 0.8866100907325745, \"Y\": 0.14766666293144226}, {\"X\": 0.8866100907325745, \"Y\": 0.16966666281223297}, {\"X\": 0.8163602352142334, \"Y\": 0.16966666281223297}]}, \"Id\": \"96a041b5-e208-4670-b932-505912cfd605\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b02b69a7-fb7b-42a4-ac6e-6b6d84609d2a\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.4515380859375, \"RowIndex\": 1, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0598774179816246, \"Height\": 0.02199999988079071, \"Left\": 0.8866100907325745, \"Top\": 0.14766666293144226}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.14766666293144226}, {\"X\": 0.9464874863624573, \"Y\": 0.14766666293144226}, {\"X\": 0.9464874863624573, \"Y\": 0.16966666281223297}, {\"X\": 0.8866100907325745, \"Y\": 0.16966666281223297}]}, \"Id\": \"0050a990-4d03-4dce-ba11-eeee6b145362\", \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.76859283447266, \"RowIndex\": 2, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.02866666577756405, \"Left\": 0.50141441822052, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.16966666281223297}, {\"X\": 0.5891088843345642, \"Y\": 0.16966666281223297}, {\"X\": 0.5891088843345642, \"Y\": 0.19833333790302277}, {\"X\": 0.50141441822052, \"Y\": 0.19833333790302277}]}, \"Id\": \"fd1f1a01-bddf-4fb9-855c-c083c0279466\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"727e50af-d82e-476d-a692-1c6b98b5d5f0\", \"5522b09c-afdf-40ce-9ce2-3648d71fe248\", \"918730c3-9d65-4325-8d48-8f6c8ea691ff\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.4485855102539, \"RowIndex\": 2, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.02866666577756405, \"Left\": 0.5891088843345642, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.16966666281223297}, {\"X\": 0.6631305813789368, \"Y\": 0.16966666281223297}, {\"X\": 0.6631305813789368, \"Y\": 0.19833333790302277}, {\"X\": 0.5891088843345642, \"Y\": 0.19833333790302277}]}, \"Id\": \"5dd50213-fd52-4085-89f4-7a3e4dbf340d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fd5cb3c2-f106-487c-b80f-23477ec8cec6\", \"84cdd3e2-31f1-4e8b-8ada-84c00192d34a\", \"4075f9a2-8beb-4e93-9731-833e71f9e04c\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.94556427001953, \"RowIndex\": 2, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.02866666577756405, \"Left\": 0.6631305813789368, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.16966666281223297}, {\"X\": 0.7263083457946777, \"Y\": 0.16966666281223297}, {\"X\": 0.7263083457946777, \"Y\": 0.19833333790302277}, {\"X\": 0.6631305813789368, \"Y\": 0.19833333790302277}]}, \"Id\": \"108c705c-0aae-4058-9dbf-7469dc18e673\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5776fa1e-df13-46c9-927d-0163fbdf4e68\", \"97c7cbc7-8e40-4fe0-aac8-74ac6e722298\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.82740783691406, \"RowIndex\": 2, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.02866666577756405, \"Left\": 0.7263083457946777, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.16966666281223297}, {\"X\": 0.8163602352142334, \"Y\": 0.16966666281223297}, {\"X\": 0.8163602352142334, \"Y\": 0.19833333790302277}, {\"X\": 0.7263083457946777, \"Y\": 0.19833333790302277}]}, \"Id\": \"cd9126b6-6558-40d1-a797-64c91dc33c54\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b6679137-3e20-45f1-bd47-392fdb9b2a33\", \"fb32fb74-374a-4826-baf3-8d3cd5a9bee3\", \"083baa96-32af-4d79-b61f-a0c073c71558\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.85611724853516, \"RowIndex\": 2, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.02866666577756405, \"Left\": 0.8163602352142334, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.16966666281223297}, {\"X\": 0.8866100907325745, \"Y\": 0.16966666281223297}, {\"X\": 0.8866100907325745, \"Y\": 0.19833333790302277}, {\"X\": 0.8163602352142334, \"Y\": 0.19833333790302277}]}, \"Id\": \"83da018f-de1f-47a9-91bd-4b5197f183e9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"459f2e14-acda-419f-99b7-83f992c38eb3\", \"4f9d9754-69b4-4101-94a7-d0a3e389df75\", \"28414b41-95a7-4b02-a53b-4511309434ed\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.63258361816406, \"RowIndex\": 2, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.02866666577756405, \"Left\": 0.8866100907325745, \"Top\": 0.16966666281223297}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.16966666281223297}, {\"X\": 0.9464457035064697, \"Y\": 0.16966666281223297}, {\"X\": 0.9464457035064697, \"Y\": 0.19833333790302277}, {\"X\": 0.8866100907325745, \"Y\": 0.19833333790302277}]}, \"Id\": \"0856d293-1107-4078-bdfa-edae6e460611\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fdaea4ba-6cfd-4fff-92c0-103adbf4b821\", \"009fe4ea-477d-4c67-a29f-5bf961d6c846\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.51722717285156, \"RowIndex\": 3, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.02866666577756405, \"Left\": 0.09096222370862961, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.19833333790302277}, {\"X\": 0.45662423968315125, \"Y\": 0.19833333790302277}, {\"X\": 0.45662423968315125, \"Y\": 0.22699999809265137}, {\"X\": 0.09096222370862961, \"Y\": 0.22699999809265137}]}, \"Id\": \"fe99f75b-6515-4d20-8214-cbf4ca34cb23\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3a454ca6-9173-47e7-9267-eece0a045140\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.30038452148438, \"RowIndex\": 3, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.02866666577756405, \"Left\": 0.45662423968315125, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.19833333790302277}, {\"X\": 0.50141441822052, \"Y\": 0.19833333790302277}, {\"X\": 0.50141441822052, \"Y\": 0.22699999809265137}, {\"X\": 0.45662423968315125, \"Y\": 0.22699999809265137}]}, \"Id\": \"c39721ba-e076-4d31-a18f-fa66cdab1f25\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc4297e0-e8a5-47f9-9092-bb7eb21c2110\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.94406127929688, \"RowIndex\": 3, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.02866666577756405, \"Left\": 0.50141441822052, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.19833333790302277}, {\"X\": 0.5891088843345642, \"Y\": 0.19833333790302277}, {\"X\": 0.5891088843345642, \"Y\": 0.22699999809265137}, {\"X\": 0.50141441822052, \"Y\": 0.22699999809265137}]}, \"Id\": \"bacbeaff-5dd0-43e6-9c58-9e4f555fbfee\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da2379eb-f38a-48ac-8d7c-6a0fb7f4d1e8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.61946868896484, \"RowIndex\": 3, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.02866666577756405, \"Left\": 0.5891088843345642, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.19833333790302277}, {\"X\": 0.6631305813789368, \"Y\": 0.19833333790302277}, {\"X\": 0.6631305813789368, \"Y\": 0.22699999809265137}, {\"X\": 0.5891088843345642, \"Y\": 0.22699999809265137}]}, \"Id\": \"5cb85174-6ceb-4786-b370-280ece421338\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"475a8da0-ba70-4051-85fb-9656aadda510\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.11544799804688, \"RowIndex\": 3, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.02866666577756405, \"Left\": 0.6631305813789368, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.19833333790302277}, {\"X\": 0.7263083457946777, \"Y\": 0.19833333790302277}, {\"X\": 0.7263083457946777, \"Y\": 0.22699999809265137}, {\"X\": 0.6631305813789368, \"Y\": 0.22699999809265137}]}, \"Id\": \"37e04d7a-6d7c-4ad8-985f-a38b9ec13fe0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"545f79b0-9c76-43db-9a72-071b524bf9bd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.00496673583984, \"RowIndex\": 3, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.02866666577756405, \"Left\": 0.7263083457946777, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.19833333790302277}, {\"X\": 0.8163602352142334, \"Y\": 0.19833333790302277}, {\"X\": 0.8163602352142334, \"Y\": 0.22699999809265137}, {\"X\": 0.7263083457946777, \"Y\": 0.22699999809265137}]}, \"Id\": \"44ac2885-4437-404a-b494-4626c8de99a8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c0bd8249-79c2-4f9b-909c-74e8831ab216\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.02978515625, \"RowIndex\": 3, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.02866666577756405, \"Left\": 0.8163602352142334, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.19833333790302277}, {\"X\": 0.8866100907325745, \"Y\": 0.19833333790302277}, {\"X\": 0.8866100907325745, \"Y\": 0.22699999809265137}, {\"X\": 0.8163602352142334, \"Y\": 0.22699999809265137}]}, \"Id\": \"496e9f11-1fd8-416e-9957-fc44648bbb58\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a41a0381-c9d5-473d-94de-e1cf7b693332\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.7959213256836, \"RowIndex\": 3, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.02866666577756405, \"Left\": 0.8866100907325745, \"Top\": 0.19833333790302277}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.19833333790302277}, {\"X\": 0.9464457035064697, \"Y\": 0.19833333790302277}, {\"X\": 0.9464457035064697, \"Y\": 0.22699999809265137}, {\"X\": 0.8866100907325745, \"Y\": 0.22699999809265137}]}, \"Id\": \"20fb1d3c-bbd6-4776-9de3-6b58e82840f1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f80baa7e-d766-41f0-b04a-f5523c0be827\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.56584930419922, \"RowIndex\": 4, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.22699999809265137}, {\"X\": 0.45662423968315125, \"Y\": 0.22699999809265137}, {\"X\": 0.45662423968315125, \"Y\": 0.24066667258739471}, {\"X\": 0.09096222370862961, \"Y\": 0.24066667258739471}]}, \"Id\": \"63da20e3-58c7-4e61-a3dd-fa8561aa4be6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5bc034ce-787a-4970-a0ac-421e025286f3\", \"272e2e9a-1570-441d-9c57-95e09865743b\", \"11834215-9b9d-4efa-ad8a-9f5cc1e49f3b\", \"d3f4b10b-2011-44e3-8abd-427ee6895d0c\", \"d725a1f9-487f-47da-8c32-0d478e0da64d\", \"1803a5b8-a519-4a72-a80a-a3a6504b3042\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 74.77995300292969, \"RowIndex\": 4, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.22699999809265137}, {\"X\": 0.50141441822052, \"Y\": 0.22699999809265137}, {\"X\": 0.50141441822052, \"Y\": 0.24066667258739471}, {\"X\": 0.45662423968315125, \"Y\": 0.24066667258739471}]}, \"Id\": \"2a60a85c-2d81-49ad-a778-13ee1ac6005c\"}, {\"BlockType\": \"CELL\", \"Confidence\": 86.04397583007812, \"RowIndex\": 4, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.22699999809265137}, {\"X\": 0.5891088843345642, \"Y\": 0.22699999809265137}, {\"X\": 0.5891088843345642, \"Y\": 0.24066667258739471}, {\"X\": 0.50141441822052, \"Y\": 0.24066667258739471}]}, \"Id\": \"32687a9c-1b1b-4d70-92bc-5e7d34044b2a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8df277dc-9d40-4dd1-b72b-38c68c27bac3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.79518127441406, \"RowIndex\": 4, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.22699999809265137}, {\"X\": 0.6631305813789368, \"Y\": 0.22699999809265137}, {\"X\": 0.6631305813789368, \"Y\": 0.24066667258739471}, {\"X\": 0.5891088843345642, \"Y\": 0.24066667258739471}]}, \"Id\": \"37129299-ac76-4023-b1b1-c58e3ea5ca49\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3fbba435-bdc8-464a-8a76-13d9e4f0a3c3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.3075942993164, \"RowIndex\": 4, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.22699999809265137}, {\"X\": 0.7263083457946777, \"Y\": 0.22699999809265137}, {\"X\": 0.7263083457946777, \"Y\": 0.24066667258739471}, {\"X\": 0.6631305813789368, \"Y\": 0.24066667258739471}]}, \"Id\": \"dedabeae-fbfa-4314-92ef-8b07125c3d04\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ad44faed-4420-4c49-8cb3-e1b6771e2990\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.0702896118164, \"RowIndex\": 4, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.22699999809265137}, {\"X\": 0.8163602352142334, \"Y\": 0.22699999809265137}, {\"X\": 0.8163602352142334, \"Y\": 0.24066667258739471}, {\"X\": 0.7263083457946777, \"Y\": 0.24066667258739471}]}, \"Id\": \"f0c346a4-d589-4442-84b6-741c53c03cd0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9ccf4a7-5ece-4874-8b35-39b2a7d8bc8f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.15950775146484, \"RowIndex\": 4, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.22699999809265137}, {\"X\": 0.8866100907325745, \"Y\": 0.22699999809265137}, {\"X\": 0.8866100907325745, \"Y\": 0.24066667258739471}, {\"X\": 0.8163602352142334, \"Y\": 0.24066667258739471}]}, \"Id\": \"7b814259-f8f4-4f02-93fd-5a5c390da5a5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"085ebe4a-dae6-415e-b6c6-166799f7cf78\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 80.09629821777344, \"RowIndex\": 4, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.22699999809265137}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.22699999809265137}, {\"X\": 0.9464457035064697, \"Y\": 0.22699999809265137}, {\"X\": 0.9464457035064697, \"Y\": 0.24066667258739471}, {\"X\": 0.8866100907325745, \"Y\": 0.24066667258739471}]}, \"Id\": \"56c181d5-fadc-45cb-9d3d-6243ee2c8191\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bee6c9ed-f083-466d-8637-41fae3308963\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.36479949951172, \"RowIndex\": 5, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.24066667258739471}, {\"X\": 0.45662423968315125, \"Y\": 0.24066667258739471}, {\"X\": 0.45662423968315125, \"Y\": 0.25433334708213806}, {\"X\": 0.09096222370862961, \"Y\": 0.25433334708213806}]}, \"Id\": \"83af2ff5-3bba-48fb-b577-3c2cf2a25a2b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d5b5968e-715c-4dc8-8afe-4f34ee88697e\", \"18729445-728c-4f4e-bb59-dc0b6fc2da9f\", \"ad607925-815a-431b-8d3e-dea452d54659\", \"7d6e8ed9-3b9c-4c1c-9020-63c5e81dee8a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.31622314453125, \"RowIndex\": 5, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.24066667258739471}, {\"X\": 0.50141441822052, \"Y\": 0.24066667258739471}, {\"X\": 0.50141441822052, \"Y\": 0.25433334708213806}, {\"X\": 0.45662423968315125, \"Y\": 0.25433334708213806}]}, \"Id\": \"36065615-6cb2-47fb-b842-3f58e0bcba37\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f0f03854-7ff8-4894-9560-fa6bcab71030\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.81165313720703, \"RowIndex\": 5, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.24066667258739471}, {\"X\": 0.5891088843345642, \"Y\": 0.24066667258739471}, {\"X\": 0.5891088843345642, \"Y\": 0.25433334708213806}, {\"X\": 0.50141441822052, \"Y\": 0.25433334708213806}]}, \"Id\": \"ec888afa-930e-499d-8e77-899a43829ddc\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"63f909ed-6ed9-4e20-906d-56d2cd86b067\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.51666259765625, \"RowIndex\": 5, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.24066667258739471}, {\"X\": 0.6631305813789368, \"Y\": 0.24066667258739471}, {\"X\": 0.6631305813789368, \"Y\": 0.25433334708213806}, {\"X\": 0.5891088843345642, \"Y\": 0.25433334708213806}]}, \"Id\": \"35c25938-5611-4a37-b053-81f692805e8f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db3695ce-8ee2-45c2-9f80-e6eed6f2871e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.01905822753906, \"RowIndex\": 5, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.24066667258739471}, {\"X\": 0.7263083457946777, \"Y\": 0.24066667258739471}, {\"X\": 0.7263083457946777, \"Y\": 0.25433334708213806}, {\"X\": 0.6631305813789368, \"Y\": 0.25433334708213806}]}, \"Id\": \"d242a7ff-d520-4dcb-8ed5-411e43e7fbfb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"517744cd-e0aa-4885-912d-7258baf9bba0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.85905456542969, \"RowIndex\": 5, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.24066667258739471}, {\"X\": 0.8163602352142334, \"Y\": 0.24066667258739471}, {\"X\": 0.8163602352142334, \"Y\": 0.25433334708213806}, {\"X\": 0.7263083457946777, \"Y\": 0.25433334708213806}]}, \"Id\": \"d0b79653-7e87-4ae7-b2c0-7f63a1beb0c7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1ff678de-14cf-4178-b141-e93d4881b68f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.90901947021484, \"RowIndex\": 5, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.24066667258739471}, {\"X\": 0.8866100907325745, \"Y\": 0.24066667258739471}, {\"X\": 0.8866100907325745, \"Y\": 0.25433334708213806}, {\"X\": 0.8163602352142334, \"Y\": 0.25433334708213806}]}, \"Id\": \"3d937c96-7d8a-4fc5-95b0-da5581a20d47\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8a960ab6-efc7-44e0-8475-4bd228370137\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 81.74179077148438, \"RowIndex\": 5, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.24066667258739471}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.24066667258739471}, {\"X\": 0.9464457035064697, \"Y\": 0.24066667258739471}, {\"X\": 0.9464457035064697, \"Y\": 0.25433334708213806}, {\"X\": 0.8866100907325745, \"Y\": 0.25433334708213806}]}, \"Id\": \"a836a340-7a69-4135-a979-80c5dcdce85b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cab01b40-7795-41bc-a592-c6d1afe172fd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.97006225585938, \"RowIndex\": 6, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.014000000432133675, \"Left\": 0.09096222370862961, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.25433334708213806}, {\"X\": 0.45662423968315125, \"Y\": 0.25433334708213806}, {\"X\": 0.45662423968315125, \"Y\": 0.2683333456516266}, {\"X\": 0.09096222370862961, \"Y\": 0.2683333456516266}]}, \"Id\": \"13aa5a7a-ad2a-4523-8ce2-ead5d8c6e186\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b1577f84-ae3f-4e50-81b2-4e74eb450567\", \"d3751b2b-2e5c-43a0-9212-77a75fe0ac31\", \"48afb7f4-3271-4d7e-aff2-82374aa03a2d\", \"8f83b451-e95e-4bdb-a468-a6516e06c807\", \"fc81e0fd-f8a4-4e5c-8090-3e56109714b8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 75.97911834716797, \"RowIndex\": 6, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.014000000432133675, \"Left\": 0.45662423968315125, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.25433334708213806}, {\"X\": 0.50141441822052, \"Y\": 0.25433334708213806}, {\"X\": 0.50141441822052, \"Y\": 0.2683333456516266}, {\"X\": 0.45662423968315125, \"Y\": 0.2683333456516266}]}, \"Id\": \"9ee1dec4-56e3-4ee8-91c4-281739de1754\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3e058008-ef55-4742-9c51-2e6089205410\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.42377471923828, \"RowIndex\": 6, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.014000000432133675, \"Left\": 0.50141441822052, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.25433334708213806}, {\"X\": 0.5891088843345642, \"Y\": 0.25433334708213806}, {\"X\": 0.5891088843345642, \"Y\": 0.2683333456516266}, {\"X\": 0.50141441822052, \"Y\": 0.2683333456516266}]}, \"Id\": \"33058abd-fe4c-4252-a2af-399d67000a2e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"09408f99-8cf8-4310-aec7-ac22ce9ab6f0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.138916015625, \"RowIndex\": 6, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.014000000432133675, \"Left\": 0.5891088843345642, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.25433334708213806}, {\"X\": 0.6631305813789368, \"Y\": 0.25433334708213806}, {\"X\": 0.6631305813789368, \"Y\": 0.2683333456516266}, {\"X\": 0.5891088843345642, \"Y\": 0.2683333456516266}]}, \"Id\": \"deb899af-1455-46fe-99e9-bf667b196e8d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"76df24b8-9265-4486-a6a2-ba5534ece329\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.64351654052734, \"RowIndex\": 6, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.014000000432133675, \"Left\": 0.6631305813789368, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.25433334708213806}, {\"X\": 0.7263083457946777, \"Y\": 0.25433334708213806}, {\"X\": 0.7263083457946777, \"Y\": 0.2683333456516266}, {\"X\": 0.6631305813789368, \"Y\": 0.2683333456516266}]}, \"Id\": \"2c619c72-490e-4ddc-9bcc-53832c1f29a1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28738a9f-61f7-4ae1-b831-fdb9bb3a9ee8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.466552734375, \"RowIndex\": 6, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.014000000432133675, \"Left\": 0.7263083457946777, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.25433334708213806}, {\"X\": 0.8163602352142334, \"Y\": 0.25433334708213806}, {\"X\": 0.8163602352142334, \"Y\": 0.2683333456516266}, {\"X\": 0.7263083457946777, \"Y\": 0.2683333456516266}]}, \"Id\": \"8100d0f1-4786-42b9-bec0-6b0f68ecdc8c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f5b5f882-0821-47a6-9517-fee5934ea478\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.5251235961914, \"RowIndex\": 6, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.014000000432133675, \"Left\": 0.8163602352142334, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.25433334708213806}, {\"X\": 0.8866100907325745, \"Y\": 0.25433334708213806}, {\"X\": 0.8866100907325745, \"Y\": 0.2683333456516266}, {\"X\": 0.8163602352142334, \"Y\": 0.2683333456516266}]}, \"Id\": \"2722a33c-1fcb-48a0-b76d-8b8261faf95f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9fb9ac56-8207-411c-8c8b-7b98be6585a6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 81.38072204589844, \"RowIndex\": 6, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.014000000432133675, \"Left\": 0.8866100907325745, \"Top\": 0.25433334708213806}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.25433334708213806}, {\"X\": 0.9464457035064697, \"Y\": 0.25433334708213806}, {\"X\": 0.9464457035064697, \"Y\": 0.2683333456516266}, {\"X\": 0.8866100907325745, \"Y\": 0.2683333456516266}]}, \"Id\": \"fe050c33-e847-4232-95f7-7b7520727add\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e6db0e3f-ba37-4ea7-89dd-6c0c033acd3c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.58605194091797, \"RowIndex\": 7, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.2683333456516266}, {\"X\": 0.45662423968315125, \"Y\": 0.2683333456516266}, {\"X\": 0.45662423968315125, \"Y\": 0.28200000524520874}, {\"X\": 0.09096222370862961, \"Y\": 0.28200000524520874}]}, \"Id\": \"ad0b6469-f514-4d12-9968-a6adf6cf1679\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a07fae30-b918-4276-8330-917ae5ed0536\", \"f094f49f-8afe-4f08-892e-b9c183020ab0\", \"20c4d8f6-f023-404c-84d3-c32d8059a19a\", \"a722a673-9c90-4f47-958d-d4a4bb808f83\", \"f9e3ae2c-e171-4ccd-b228-558dc7d0a1a4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.35916137695312, \"RowIndex\": 7, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.2683333456516266}, {\"X\": 0.50141441822052, \"Y\": 0.2683333456516266}, {\"X\": 0.50141441822052, \"Y\": 0.28200000524520874}, {\"X\": 0.45662423968315125, \"Y\": 0.28200000524520874}]}, \"Id\": \"2cf0444c-324c-4fa8-9e30-f47d8cf35d77\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61b6772a-5fca-48a9-9ee6-c98512a11f83\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.01168823242188, \"RowIndex\": 7, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.2683333456516266}, {\"X\": 0.5891088843345642, \"Y\": 0.2683333456516266}, {\"X\": 0.5891088843345642, \"Y\": 0.28200000524520874}, {\"X\": 0.50141441822052, \"Y\": 0.28200000524520874}]}, \"Id\": \"9db48460-39dc-49b6-bf1b-ddb144372c27\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c2c87fdf-eaf8-4afb-afcf-6ca8e2cd47c3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.6853256225586, \"RowIndex\": 7, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.2683333456516266}, {\"X\": 0.6631305813789368, \"Y\": 0.2683333456516266}, {\"X\": 0.6631305813789368, \"Y\": 0.28200000524520874}, {\"X\": 0.5891088843345642, \"Y\": 0.28200000524520874}]}, \"Id\": \"d04a6338-4941-485a-92a7-68ea63f8e5d8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fc5e5dea-0960-4e27-9b3e-767cf451d618\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.18092346191406, \"RowIndex\": 7, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.2683333456516266}, {\"X\": 0.7263083457946777, \"Y\": 0.2683333456516266}, {\"X\": 0.7263083457946777, \"Y\": 0.28200000524520874}, {\"X\": 0.6631305813789368, \"Y\": 0.28200000524520874}]}, \"Id\": \"c26436e9-9232-40d6-ae8c-4799bacd8f32\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b78dda30-3df9-44a7-9448-fae2f3dfe9a6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.07340240478516, \"RowIndex\": 7, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.2683333456516266}, {\"X\": 0.8163602352142334, \"Y\": 0.2683333456516266}, {\"X\": 0.8163602352142334, \"Y\": 0.28200000524520874}, {\"X\": 0.7263083457946777, \"Y\": 0.28200000524520874}]}, \"Id\": \"0aa6e4c5-e3ba-4565-807e-a9dca0a27765\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0a6a012c-d484-4919-85d6-0ba8bec27ce3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.09671020507812, \"RowIndex\": 7, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.2683333456516266}, {\"X\": 0.8866100907325745, \"Y\": 0.2683333456516266}, {\"X\": 0.8866100907325745, \"Y\": 0.28200000524520874}, {\"X\": 0.8163602352142334, \"Y\": 0.28200000524520874}]}, \"Id\": \"62cb0064-7a3e-47b5-b326-77a6b4442d78\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0a94c51f-9375-4f7d-8fd0-673ab693285c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.85887145996094, \"RowIndex\": 7, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.2683333456516266}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.2683333456516266}, {\"X\": 0.9464457035064697, \"Y\": 0.2683333456516266}, {\"X\": 0.9464457035064697, \"Y\": 0.28200000524520874}, {\"X\": 0.8866100907325745, \"Y\": 0.28200000524520874}]}, \"Id\": \"3654cca1-3b46-4306-9782-9923f242d1ce\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0571803c-d6f8-4b37-94cb-e63e3a6aec37\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 80.4900131225586, \"RowIndex\": 8, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013333333656191826, \"Left\": 0.09096222370862961, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.28200000524520874}, {\"X\": 0.45662423968315125, \"Y\": 0.28200000524520874}, {\"X\": 0.45662423968315125, \"Y\": 0.2953333258628845}, {\"X\": 0.09096222370862961, \"Y\": 0.2953333258628845}]}, \"Id\": \"94a4b909-092b-4189-bf93-4f25deb6c81b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"04e2ab8f-6cbe-46b1-8f0a-1410b0403626\", \"d9eb00e5-8535-4db6-9cc5-450e3ed109f2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 68.73728942871094, \"RowIndex\": 8, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013333333656191826, \"Left\": 0.45662423968315125, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.28200000524520874}, {\"X\": 0.50141441822052, \"Y\": 0.28200000524520874}, {\"X\": 0.50141441822052, \"Y\": 0.2953333258628845}, {\"X\": 0.45662423968315125, \"Y\": 0.2953333258628845}]}, \"Id\": \"810bcad0-c04a-48be-8400-f2a1e70dd53a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eb9a3eba-8b88-4653-ab5d-d4882ecb59a2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 79.09111022949219, \"RowIndex\": 8, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013333333656191826, \"Left\": 0.50141441822052, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.28200000524520874}, {\"X\": 0.5891088843345642, \"Y\": 0.28200000524520874}, {\"X\": 0.5891088843345642, \"Y\": 0.2953333258628845}, {\"X\": 0.50141441822052, \"Y\": 0.2953333258628845}]}, \"Id\": \"d0084df8-2de7-4026-b5e5-98c90d7d3b11\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ccd3a01-d531-4b41-83f3-2e81d01ff91c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.02403259277344, \"RowIndex\": 8, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013333333656191826, \"Left\": 0.5891088843345642, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.28200000524520874}, {\"X\": 0.6631305813789368, \"Y\": 0.28200000524520874}, {\"X\": 0.6631305813789368, \"Y\": 0.2953333258628845}, {\"X\": 0.5891088843345642, \"Y\": 0.2953333258628845}]}, \"Id\": \"40100a65-2907-41ce-a6e6-419309ba73a6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"55030adc-eecd-40a5-8727-1265b4026198\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.57584381103516, \"RowIndex\": 8, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013333333656191826, \"Left\": 0.6631305813789368, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.28200000524520874}, {\"X\": 0.7263083457946777, \"Y\": 0.28200000524520874}, {\"X\": 0.7263083457946777, \"Y\": 0.2953333258628845}, {\"X\": 0.6631305813789368, \"Y\": 0.2953333258628845}]}, \"Id\": \"e932aaab-6371-4cda-aedc-ddeabd15f5c2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a52cc6e5-1cb7-48af-a84d-44d3f1ba47fa\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 80.03449249267578, \"RowIndex\": 8, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013333333656191826, \"Left\": 0.7263083457946777, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.28200000524520874}, {\"X\": 0.8163602352142334, \"Y\": 0.28200000524520874}, {\"X\": 0.8163602352142334, \"Y\": 0.2953333258628845}, {\"X\": 0.7263083457946777, \"Y\": 0.2953333258628845}]}, \"Id\": \"77a04e07-0c29-4c7c-ba43-c60783244ba0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9764aa6d-dc7c-4e89-8b53-8e19bc1c13e5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.27812194824219, \"RowIndex\": 8, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013333333656191826, \"Left\": 0.8163602352142334, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.28200000524520874}, {\"X\": 0.8866100907325745, \"Y\": 0.28200000524520874}, {\"X\": 0.8866100907325745, \"Y\": 0.2953333258628845}, {\"X\": 0.8163602352142334, \"Y\": 0.2953333258628845}]}, \"Id\": \"93a593aa-096a-49cb-9c6a-bade115e3269\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0ad3cc96-0ec4-4d97-aa80-36d51b31affe\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 73.6240463256836, \"RowIndex\": 8, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013333333656191826, \"Left\": 0.8866100907325745, \"Top\": 0.28200000524520874}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.28200000524520874}, {\"X\": 0.9464457035064697, \"Y\": 0.28200000524520874}, {\"X\": 0.9464457035064697, \"Y\": 0.2953333258628845}, {\"X\": 0.8866100907325745, \"Y\": 0.2953333258628845}]}, \"Id\": \"1a844ffc-72db-447a-afc8-f184004a00aa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"421eefca-a19d-452d-b1e6-edac06a8a87f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.57289123535156, \"RowIndex\": 9, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013333333656191826, \"Left\": 0.09096222370862961, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.2953333258628845}, {\"X\": 0.45662423968315125, \"Y\": 0.2953333258628845}, {\"X\": 0.45662423968315125, \"Y\": 0.3086666762828827}, {\"X\": 0.09096222370862961, \"Y\": 0.3086666762828827}]}, \"Id\": \"bc2a3c0d-3d01-4a47-bcf7-e7da3240b58f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"520a0d0a-5853-4937-ba9e-0e3e5ff9d750\", \"492c0d18-d8ea-47da-b934-47d890ba20ad\", \"a7b69224-cff1-4f94-bb21-e2f0345fe98a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.201904296875, \"RowIndex\": 9, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013333333656191826, \"Left\": 0.45662423968315125, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.2953333258628845}, {\"X\": 0.50141441822052, \"Y\": 0.2953333258628845}, {\"X\": 0.50141441822052, \"Y\": 0.3086666762828827}, {\"X\": 0.45662423968315125, \"Y\": 0.3086666762828827}]}, \"Id\": \"67023b40-7293-45a3-b3a1-c69847aeb89e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"71fee0d9-18b6-49ad-80f9-172b04fe2a6b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.98137664794922, \"RowIndex\": 9, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013333333656191826, \"Left\": 0.50141441822052, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.2953333258628845}, {\"X\": 0.5891088843345642, \"Y\": 0.2953333258628845}, {\"X\": 0.5891088843345642, \"Y\": 0.3086666762828827}, {\"X\": 0.50141441822052, \"Y\": 0.3086666762828827}]}, \"Id\": \"8dbda920-b736-464b-aa10-2e7b526299b9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c17adfba-d0de-496a-b1c4-ec08089b60ac\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.62966918945312, \"RowIndex\": 9, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013333333656191826, \"Left\": 0.5891088843345642, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.2953333258628845}, {\"X\": 0.6631305813789368, \"Y\": 0.2953333258628845}, {\"X\": 0.6631305813789368, \"Y\": 0.3086666762828827}, {\"X\": 0.5891088843345642, \"Y\": 0.3086666762828827}]}, \"Id\": \"f95bcf1c-1032-4dab-b7c4-2d2d8ac72b85\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"211ffa99-e9c5-4dc5-8391-811ecce3a1cf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.1197738647461, \"RowIndex\": 9, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013333333656191826, \"Left\": 0.6631305813789368, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.2953333258628845}, {\"X\": 0.7263083457946777, \"Y\": 0.2953333258628845}, {\"X\": 0.7263083457946777, \"Y\": 0.3086666762828827}, {\"X\": 0.6631305813789368, \"Y\": 0.3086666762828827}]}, \"Id\": \"fcf40ba6-ec06-4bae-8b32-c913ba33a54a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e237a2af-b642-49d0-9ca3-7547b11756bd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.05465698242188, \"RowIndex\": 9, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013333333656191826, \"Left\": 0.7263083457946777, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.2953333258628845}, {\"X\": 0.8163602352142334, \"Y\": 0.2953333258628845}, {\"X\": 0.8163602352142334, \"Y\": 0.3086666762828827}, {\"X\": 0.7263083457946777, \"Y\": 0.3086666762828827}]}, \"Id\": \"be1a827c-3799-4217-b23b-63056ba86b72\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0e4625be-1ada-4b4e-9d23-195c954c387a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.05643463134766, \"RowIndex\": 9, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013333333656191826, \"Left\": 0.8163602352142334, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.2953333258628845}, {\"X\": 0.8866100907325745, \"Y\": 0.2953333258628845}, {\"X\": 0.8866100907325745, \"Y\": 0.3086666762828827}, {\"X\": 0.8163602352142334, \"Y\": 0.3086666762828827}]}, \"Id\": \"c8299eea-0bb1-4793-9b7d-8cd7524cc9d9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d7c62017-f90c-405e-a10d-f80748205e4b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.76152801513672, \"RowIndex\": 9, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013333333656191826, \"Left\": 0.8866100907325745, \"Top\": 0.2953333258628845}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.2953333258628845}, {\"X\": 0.9464457035064697, \"Y\": 0.2953333258628845}, {\"X\": 0.9464457035064697, \"Y\": 0.3086666762828827}, {\"X\": 0.8866100907325745, \"Y\": 0.3086666762828827}]}, \"Id\": \"24aa7247-a232-4927-bc54-ff3109b44c33\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"953d7d15-a676-4877-aef1-70b5e2bcb170\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.68431091308594, \"RowIndex\": 10, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013333333656191826, \"Left\": 0.09096222370862961, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.3086666762828827}, {\"X\": 0.45662423968315125, \"Y\": 0.3086666762828827}, {\"X\": 0.45662423968315125, \"Y\": 0.32199999690055847}, {\"X\": 0.09096222370862961, \"Y\": 0.32199999690055847}]}, \"Id\": \"3e0e34f1-9e8a-4f48-9058-2efe79e72dd5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61b5b5f6-46d7-44fe-a1e6-d0189969a008\", \"7767c764-d064-4bf4-aeef-240476d92c80\", \"8d3b32d4-9652-4562-abf0-c9d5807ffbc4\", \"5514f06a-31a5-4c80-9f7b-de2768a4ae3e\", \"44e86f4c-7e62-425e-b1cf-239b82f766ee\", \"ebae7e93-1e67-4705-a9bc-3f14246a319d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.58908081054688, \"RowIndex\": 10, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013333333656191826, \"Left\": 0.45662423968315125, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.3086666762828827}, {\"X\": 0.50141441822052, \"Y\": 0.3086666762828827}, {\"X\": 0.50141441822052, \"Y\": 0.32199999690055847}, {\"X\": 0.45662423968315125, \"Y\": 0.32199999690055847}]}, \"Id\": \"e3f2e0a2-efe1-45f8-9df1-d1d10df52d86\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b55464ce-47ca-4dac-baee-38300501bc0a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.12561798095703, \"RowIndex\": 10, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013333333656191826, \"Left\": 0.50141441822052, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.3086666762828827}, {\"X\": 0.5891088843345642, \"Y\": 0.3086666762828827}, {\"X\": 0.5891088843345642, \"Y\": 0.32199999690055847}, {\"X\": 0.50141441822052, \"Y\": 0.32199999690055847}]}, \"Id\": \"1999298c-a0b3-40f4-8b91-d1e2417b39b0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40498b33-e51d-4d5c-889a-020d784e7464\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.8224105834961, \"RowIndex\": 10, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013333333656191826, \"Left\": 0.5891088843345642, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.3086666762828827}, {\"X\": 0.6631305813789368, \"Y\": 0.3086666762828827}, {\"X\": 0.6631305813789368, \"Y\": 0.32199999690055847}, {\"X\": 0.5891088843345642, \"Y\": 0.32199999690055847}]}, \"Id\": \"426d61fd-4805-4939-8924-856609a63ac5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"df146383-d372-46a4-aa85-f26199eb2c62\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.32303619384766, \"RowIndex\": 10, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013333333656191826, \"Left\": 0.6631305813789368, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.3086666762828827}, {\"X\": 0.7263083457946777, \"Y\": 0.3086666762828827}, {\"X\": 0.7263083457946777, \"Y\": 0.32199999690055847}, {\"X\": 0.6631305813789368, \"Y\": 0.32199999690055847}]}, \"Id\": \"e30f48b8-5c80-4e3a-8bde-7fed6471094f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6495d038-e647-4411-a86a-547bc21019c6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.1767578125, \"RowIndex\": 10, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013333333656191826, \"Left\": 0.7263083457946777, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.3086666762828827}, {\"X\": 0.8163602352142334, \"Y\": 0.3086666762828827}, {\"X\": 0.8163602352142334, \"Y\": 0.32199999690055847}, {\"X\": 0.7263083457946777, \"Y\": 0.32199999690055847}]}, \"Id\": \"48baae62-ec7e-4b66-af9e-ce463c293b49\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c9925767-1eb9-47af-ad91-997c2bea152a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.2197494506836, \"RowIndex\": 10, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013333333656191826, \"Left\": 0.8163602352142334, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.3086666762828827}, {\"X\": 0.8866100907325745, \"Y\": 0.3086666762828827}, {\"X\": 0.8866100907325745, \"Y\": 0.32199999690055847}, {\"X\": 0.8163602352142334, \"Y\": 0.32199999690055847}]}, \"Id\": \"f61131b2-15b4-45f1-8123-9ba596e8de1c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"dd016530-e6c3-44b3-86f2-865f9825851a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.03404235839844, \"RowIndex\": 10, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013333333656191826, \"Left\": 0.8866100907325745, \"Top\": 0.3086666762828827}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.3086666762828827}, {\"X\": 0.9464457035064697, \"Y\": 0.3086666762828827}, {\"X\": 0.9464457035064697, \"Y\": 0.32199999690055847}, {\"X\": 0.8866100907325745, \"Y\": 0.32199999690055847}]}, \"Id\": \"be101bba-ace2-4a9c-98f7-d7a89632c399\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"441d0877-681d-41f3-8cff-9c533360d8f2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.93037414550781, \"RowIndex\": 11, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.014000000432133675, \"Left\": 0.09096222370862961, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.32199999690055847}, {\"X\": 0.45662423968315125, \"Y\": 0.32199999690055847}, {\"X\": 0.45662423968315125, \"Y\": 0.335999995470047}, {\"X\": 0.09096222370862961, \"Y\": 0.335999995470047}]}, \"Id\": \"37aa5070-6395-4332-9b5a-47278c69ee88\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c315e3db-1899-41d3-b421-d3e43f01d4f6\", \"17d96162-f9a3-4b05-9c41-d0fba5b552fc\", \"3eba4335-7935-4531-a63c-3613d25c3616\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.50718688964844, \"RowIndex\": 11, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.014000000432133675, \"Left\": 0.45662423968315125, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.32199999690055847}, {\"X\": 0.50141441822052, \"Y\": 0.32199999690055847}, {\"X\": 0.50141441822052, \"Y\": 0.335999995470047}, {\"X\": 0.45662423968315125, \"Y\": 0.335999995470047}]}, \"Id\": \"f179f6cc-d89d-437e-a3df-b1518b6b8f41\"}, {\"BlockType\": \"CELL\", \"Confidence\": 90.3326416015625, \"RowIndex\": 11, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.014000000432133675, \"Left\": 0.50141441822052, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.32199999690055847}, {\"X\": 0.5891088843345642, \"Y\": 0.32199999690055847}, {\"X\": 0.5891088843345642, \"Y\": 0.335999995470047}, {\"X\": 0.50141441822052, \"Y\": 0.335999995470047}]}, \"Id\": \"a7b363de-e36a-4568-b3e3-fa6ec84b2c84\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"79fbb681-e214-4604-89f8-57b550dfd4a9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.97175598144531, \"RowIndex\": 11, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.014000000432133675, \"Left\": 0.5891088843345642, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.32199999690055847}, {\"X\": 0.6631305813789368, \"Y\": 0.32199999690055847}, {\"X\": 0.6631305813789368, \"Y\": 0.335999995470047}, {\"X\": 0.5891088843345642, \"Y\": 0.335999995470047}]}, \"Id\": \"24be2086-f004-43fd-aadd-3e48725f2fd0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"874f5901-68cd-4920-839e-f8e830adf162\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.45986938476562, \"RowIndex\": 11, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.014000000432133675, \"Left\": 0.6631305813789368, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.32199999690055847}, {\"X\": 0.7263083457946777, \"Y\": 0.32199999690055847}, {\"X\": 0.7263083457946777, \"Y\": 0.335999995470047}, {\"X\": 0.6631305813789368, \"Y\": 0.335999995470047}]}, \"Id\": \"226ae2c4-f126-407a-83cf-12d75dc36f43\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8dbeff82-50c8-4957-a270-180674ea6ef6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.41010284423828, \"RowIndex\": 11, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.014000000432133675, \"Left\": 0.7263083457946777, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.32199999690055847}, {\"X\": 0.8163602352142334, \"Y\": 0.32199999690055847}, {\"X\": 0.8163602352142334, \"Y\": 0.335999995470047}, {\"X\": 0.7263083457946777, \"Y\": 0.335999995470047}]}, \"Id\": \"b1ffc99d-761f-4e7d-bc19-42151a526f7c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"68389c04-4278-48e4-b9e4-8e58fbfb47f6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.40409088134766, \"RowIndex\": 11, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.014000000432133675, \"Left\": 0.8163602352142334, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.32199999690055847}, {\"X\": 0.8866100907325745, \"Y\": 0.32199999690055847}, {\"X\": 0.8866100907325745, \"Y\": 0.335999995470047}, {\"X\": 0.8163602352142334, \"Y\": 0.335999995470047}]}, \"Id\": \"cb39ef25-0e86-43f0-9ee7-bb3b5552dd1e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2f03080e-925e-43f1-be58-9e86b3d6d2c2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.08851623535156, \"RowIndex\": 11, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.014000000432133675, \"Left\": 0.8866100907325745, \"Top\": 0.32199999690055847}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.32199999690055847}, {\"X\": 0.9464457035064697, \"Y\": 0.32199999690055847}, {\"X\": 0.9464457035064697, \"Y\": 0.335999995470047}, {\"X\": 0.8866100907325745, \"Y\": 0.335999995470047}]}, \"Id\": \"34532977-048c-43d7-af27-e8138d447bad\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f1e857ee-f2dc-4d85-a161-d847f40689dd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.12948608398438, \"RowIndex\": 12, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013000000268220901, \"Left\": 0.09096222370862961, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.335999995470047}, {\"X\": 0.45662423968315125, \"Y\": 0.335999995470047}, {\"X\": 0.45662423968315125, \"Y\": 0.3490000069141388}, {\"X\": 0.09096222370862961, \"Y\": 0.3490000069141388}]}, \"Id\": \"6771c878-9f26-4fee-8bd7-74d92f43df94\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8fe9bc75-bc6f-41fe-9a1f-4f2779310c42\", \"5788d9fa-a3c3-4bd2-a049-ecfbbf4c9595\", \"ee822cf6-9682-4e5a-9e49-b6f900011f3f\", \"ac99063d-0a10-4023-9f69-93fc35872966\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.96925354003906, \"RowIndex\": 12, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013000000268220901, \"Left\": 0.45662423968315125, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.335999995470047}, {\"X\": 0.50141441822052, \"Y\": 0.335999995470047}, {\"X\": 0.50141441822052, \"Y\": 0.3490000069141388}, {\"X\": 0.45662423968315125, \"Y\": 0.3490000069141388}]}, \"Id\": \"05cf3198-7fc6-4532-858a-21e6b41bfeef\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2bebc836-9702-4ac7-ace8-9d5fe73db508\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.56304931640625, \"RowIndex\": 12, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013000000268220901, \"Left\": 0.50141441822052, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.335999995470047}, {\"X\": 0.5891088843345642, \"Y\": 0.335999995470047}, {\"X\": 0.5891088843345642, \"Y\": 0.3490000069141388}, {\"X\": 0.50141441822052, \"Y\": 0.3490000069141388}]}, \"Id\": \"197380ce-ed25-42d2-977b-c6b5ed207758\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c711c366-b7a1-4557-a8bb-0f21fe860bc9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.2484130859375, \"RowIndex\": 12, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013000000268220901, \"Left\": 0.5891088843345642, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.335999995470047}, {\"X\": 0.6631305813789368, \"Y\": 0.335999995470047}, {\"X\": 0.6631305813789368, \"Y\": 0.3490000069141388}, {\"X\": 0.5891088843345642, \"Y\": 0.3490000069141388}]}, \"Id\": \"713d52b1-fe2d-499e-8173-e87f8b7cc42d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0c54948e-67db-41c0-bda5-4f2fd99097d6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.7465591430664, \"RowIndex\": 12, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013000000268220901, \"Left\": 0.6631305813789368, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.335999995470047}, {\"X\": 0.7263083457946777, \"Y\": 0.335999995470047}, {\"X\": 0.7263083457946777, \"Y\": 0.3490000069141388}, {\"X\": 0.6631305813789368, \"Y\": 0.3490000069141388}]}, \"Id\": \"490f5664-a35d-4a02-90a6-a443aba983c3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"33f7657d-e88d-42f7-a794-80e665326183\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.6194076538086, \"RowIndex\": 12, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013000000268220901, \"Left\": 0.7263083457946777, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.335999995470047}, {\"X\": 0.8163602352142334, \"Y\": 0.335999995470047}, {\"X\": 0.8163602352142334, \"Y\": 0.3490000069141388}, {\"X\": 0.7263083457946777, \"Y\": 0.3490000069141388}]}, \"Id\": \"99f31b7f-909c-4a60-a264-4f92331cec4d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a18e880c-f3b0-4e7b-934a-bebb53206f79\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.6526870727539, \"RowIndex\": 12, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013000000268220901, \"Left\": 0.8163602352142334, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.335999995470047}, {\"X\": 0.8866100907325745, \"Y\": 0.335999995470047}, {\"X\": 0.8866100907325745, \"Y\": 0.3490000069141388}, {\"X\": 0.8163602352142334, \"Y\": 0.3490000069141388}]}, \"Id\": \"36887f2a-9cf9-48f6-ba54-cfe0e64a9094\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"359fe1b1-b986-4e4d-a99e-f01a27c55459\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.44124603271484, \"RowIndex\": 12, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013000000268220901, \"Left\": 0.8866100907325745, \"Top\": 0.335999995470047}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.335999995470047}, {\"X\": 0.9464457035064697, \"Y\": 0.335999995470047}, {\"X\": 0.9464457035064697, \"Y\": 0.3490000069141388}, {\"X\": 0.8866100907325745, \"Y\": 0.3490000069141388}]}, \"Id\": \"10d46f0b-f756-4b96-a2fb-fa9ba253fb6c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6c5882a2-d7a3-488f-b9aa-93b308593f3e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.9509506225586, \"RowIndex\": 13, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.3490000069141388}, {\"X\": 0.45662423968315125, \"Y\": 0.3490000069141388}, {\"X\": 0.45662423968315125, \"Y\": 0.36266666650772095}, {\"X\": 0.09096222370862961, \"Y\": 0.36266666650772095}]}, \"Id\": \"88e94650-efcc-41d3-8d0d-c87b7fb0135d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"674227e7-c261-42e2-a61c-9b8328272d16\", \"4733588f-64b9-4e2e-b53b-daa5ec4a0168\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.52476501464844, \"RowIndex\": 13, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.3490000069141388}, {\"X\": 0.50141441822052, \"Y\": 0.3490000069141388}, {\"X\": 0.50141441822052, \"Y\": 0.36266666650772095}, {\"X\": 0.45662423968315125, \"Y\": 0.36266666650772095}]}, \"Id\": \"50409fb5-c556-40ec-b6e0-bb4628c077c4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"336dfc3d-8eef-4173-8525-5f233ce5c2d2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.35285949707031, \"RowIndex\": 13, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.3490000069141388}, {\"X\": 0.5891088843345642, \"Y\": 0.3490000069141388}, {\"X\": 0.5891088843345642, \"Y\": 0.36266666650772095}, {\"X\": 0.50141441822052, \"Y\": 0.36266666650772095}]}, \"Id\": \"a5d96c77-2b75-40e9-b575-c310205d331d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"52082ce1-b2cd-429d-8f3d-52f20fdc1137\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.991455078125, \"RowIndex\": 13, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.3490000069141388}, {\"X\": 0.6631305813789368, \"Y\": 0.3490000069141388}, {\"X\": 0.6631305813789368, \"Y\": 0.36266666650772095}, {\"X\": 0.5891088843345642, \"Y\": 0.36266666650772095}]}, \"Id\": \"d720fcae-dbab-46aa-9e05-c27cd9fbf4cd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"348190b6-7107-4036-b71b-666ba1d2100b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.47944641113281, \"RowIndex\": 13, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.3490000069141388}, {\"X\": 0.7263083457946777, \"Y\": 0.3490000069141388}, {\"X\": 0.7263083457946777, \"Y\": 0.36266666650772095}, {\"X\": 0.6631305813789368, \"Y\": 0.36266666650772095}]}, \"Id\": \"6aaa7489-a407-47fc-8802-c791b48528d2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9deebda3-90de-4c5f-bd67-798db6f060f6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.43057250976562, \"RowIndex\": 13, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.3490000069141388}, {\"X\": 0.8163602352142334, \"Y\": 0.3490000069141388}, {\"X\": 0.8163602352142334, \"Y\": 0.36266666650772095}, {\"X\": 0.7263083457946777, \"Y\": 0.36266666650772095}]}, \"Id\": \"126b4458-e371-48ec-9a3d-0b52c5374096\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f66d1ad-3758-407f-9901-0748f4dfe123\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.42410278320312, \"RowIndex\": 13, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.3490000069141388}, {\"X\": 0.8866100907325745, \"Y\": 0.3490000069141388}, {\"X\": 0.8866100907325745, \"Y\": 0.36266666650772095}, {\"X\": 0.8163602352142334, \"Y\": 0.36266666650772095}]}, \"Id\": \"ee678eb7-edd2-42ba-a601-7ee58084a51d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6938bd92-a48d-42c0-91aa-e3abd9f205a2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.10733795166016, \"RowIndex\": 13, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.3490000069141388}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.3490000069141388}, {\"X\": 0.9464457035064697, \"Y\": 0.3490000069141388}, {\"X\": 0.9464457035064697, \"Y\": 0.36266666650772095}, {\"X\": 0.8866100907325745, \"Y\": 0.36266666650772095}]}, \"Id\": \"d7eb9b22-e826-47a0-bb7a-1e70fe326396\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d19e5f66-2044-4d83-8d86-0451dcc1fbef\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.86564636230469, \"RowIndex\": 14, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.014000000432133675, \"Left\": 0.09096222370862961, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.36266666650772095}, {\"X\": 0.45662423968315125, \"Y\": 0.36266666650772095}, {\"X\": 0.45662423968315125, \"Y\": 0.3766666650772095}, {\"X\": 0.09096222370862961, \"Y\": 0.3766666650772095}]}, \"Id\": \"08ca12d4-ed9e-4c75-b705-630c61f7e4f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d6f33ae8-5fce-4cfb-929f-6effc7cfdc47\", \"b4aee812-4db0-41df-aa14-f61624a160b9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.45191192626953, \"RowIndex\": 14, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.014000000432133675, \"Left\": 0.45662423968315125, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.36266666650772095}, {\"X\": 0.50141441822052, \"Y\": 0.36266666650772095}, {\"X\": 0.50141441822052, \"Y\": 0.3766666650772095}, {\"X\": 0.45662423968315125, \"Y\": 0.3766666650772095}]}, \"Id\": \"40d80145-1233-4dc0-9d0d-15f25987e68d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e28b9e2-b6e2-4dc5-830e-bdab2125e749\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.26904296875, \"RowIndex\": 14, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.014000000432133675, \"Left\": 0.50141441822052, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.36266666650772095}, {\"X\": 0.5891088843345642, \"Y\": 0.36266666650772095}, {\"X\": 0.5891088843345642, \"Y\": 0.3766666650772095}, {\"X\": 0.50141441822052, \"Y\": 0.3766666650772095}]}, \"Id\": \"60d3b7a7-d755-4e3f-b2d6-6f7424ff9ac7\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"6a0913a1-540d-4365-af53-db84c4e0c44e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.90982055664062, \"RowIndex\": 14, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.014000000432133675, \"Left\": 0.5891088843345642, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.36266666650772095}, {\"X\": 0.6631305813789368, \"Y\": 0.36266666650772095}, {\"X\": 0.6631305813789368, \"Y\": 0.3766666650772095}, {\"X\": 0.5891088843345642, \"Y\": 0.3766666650772095}]}, \"Id\": \"28e514a6-a685-49ff-867f-1c350c6d898a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ee934547-7dc3-4a36-86ff-8e9d5c45979f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.39830017089844, \"RowIndex\": 14, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.014000000432133675, \"Left\": 0.6631305813789368, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.36266666650772095}, {\"X\": 0.7263083457946777, \"Y\": 0.36266666650772095}, {\"X\": 0.7263083457946777, \"Y\": 0.3766666650772095}, {\"X\": 0.6631305813789368, \"Y\": 0.3766666650772095}]}, \"Id\": \"9cf32657-a9ec-43f6-b1cf-a3de7fb2f047\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e324c427-d6df-4345-935c-41c74e125224\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.34574890136719, \"RowIndex\": 14, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.014000000432133675, \"Left\": 0.7263083457946777, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.36266666650772095}, {\"X\": 0.8163602352142334, \"Y\": 0.36266666650772095}, {\"X\": 0.8163602352142334, \"Y\": 0.3766666650772095}, {\"X\": 0.7263083457946777, \"Y\": 0.3766666650772095}]}, \"Id\": \"d06357dd-9971-4fda-b803-a8018bd2d087\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4f6b5661-5292-4dce-b283-d2fd8cfdf8f9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.34114837646484, \"RowIndex\": 14, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.014000000432133675, \"Left\": 0.8163602352142334, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.36266666650772095}, {\"X\": 0.8866100907325745, \"Y\": 0.36266666650772095}, {\"X\": 0.8866100907325745, \"Y\": 0.3766666650772095}, {\"X\": 0.8163602352142334, \"Y\": 0.3766666650772095}]}, \"Id\": \"87b2051b-a09b-459c-ad07-ca742b3d7f69\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e79752f4-ffd7-45bb-a556-411f809004ba\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.02931213378906, \"RowIndex\": 14, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.014000000432133675, \"Left\": 0.8866100907325745, \"Top\": 0.36266666650772095}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.36266666650772095}, {\"X\": 0.9464457035064697, \"Y\": 0.36266666650772095}, {\"X\": 0.9464457035064697, \"Y\": 0.3766666650772095}, {\"X\": 0.8866100907325745, \"Y\": 0.3766666650772095}]}, \"Id\": \"ddfc4980-95ca-409c-85ee-2ffd5811a791\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ecf9ff9f-c6ce-4015-a3f2-4209abd97b82\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.19490814208984, \"RowIndex\": 15, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.012666666880249977, \"Left\": 0.09096222370862961, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.3766666650772095}, {\"X\": 0.45662423968315125, \"Y\": 0.3766666650772095}, {\"X\": 0.45662423968315125, \"Y\": 0.3893333375453949}, {\"X\": 0.09096222370862961, \"Y\": 0.3893333375453949}]}, \"Id\": \"344d2bda-6a4f-401a-82b3-6b972f609102\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"836a714a-9c5c-41f6-8a8f-83a2fe2e2af9\", \"7452345b-e638-4c5c-8096-90b2eca8f562\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.02513122558594, \"RowIndex\": 15, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.012666666880249977, \"Left\": 0.45662423968315125, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.3766666650772095}, {\"X\": 0.50141441822052, \"Y\": 0.3766666650772095}, {\"X\": 0.50141441822052, \"Y\": 0.3893333375453949}, {\"X\": 0.45662423968315125, \"Y\": 0.3893333375453949}]}, \"Id\": \"ce4c5969-a525-46ed-a807-298baed0e40c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"947a550b-f9d3-4656-987c-0af508398a42\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.62733459472656, \"RowIndex\": 15, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.012666666880249977, \"Left\": 0.50141441822052, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.3766666650772095}, {\"X\": 0.5891088843345642, \"Y\": 0.3766666650772095}, {\"X\": 0.5891088843345642, \"Y\": 0.3893333375453949}, {\"X\": 0.50141441822052, \"Y\": 0.3893333375453949}]}, \"Id\": \"a095751d-821c-405b-bf20-aaecc15f2442\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"23501c1c-547a-4045-a2c2-635c565dff23\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.31102752685547, \"RowIndex\": 15, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.012666666880249977, \"Left\": 0.5891088843345642, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.3766666650772095}, {\"X\": 0.6631305813789368, \"Y\": 0.3766666650772095}, {\"X\": 0.6631305813789368, \"Y\": 0.3893333375453949}, {\"X\": 0.5891088843345642, \"Y\": 0.3893333375453949}]}, \"Id\": \"f7db2868-cdb7-4f9b-8772-6bdd3c5aff42\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a675146d-0091-4341-bf7a-f665406f35c1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.80879974365234, \"RowIndex\": 15, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.012666666880249977, \"Left\": 0.6631305813789368, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.3766666650772095}, {\"X\": 0.7263083457946777, \"Y\": 0.3766666650772095}, {\"X\": 0.7263083457946777, \"Y\": 0.3893333375453949}, {\"X\": 0.6631305813789368, \"Y\": 0.3893333375453949}]}, \"Id\": \"1732d5c2-cb1a-4162-85ca-7ab598b2ad1f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"526cb58e-f6ab-409e-a555-6fd66300b828\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.6844711303711, \"RowIndex\": 15, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.012666666880249977, \"Left\": 0.7263083457946777, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.3766666650772095}, {\"X\": 0.8163602352142334, \"Y\": 0.3766666650772095}, {\"X\": 0.8163602352142334, \"Y\": 0.3893333375453949}, {\"X\": 0.7263083457946777, \"Y\": 0.3893333375453949}]}, \"Id\": \"56d70283-865e-40a1-88b1-a6c3b9df9b65\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3d38cd24-145c-43be-b114-587167cb1332\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.71631622314453, \"RowIndex\": 15, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.012666666880249977, \"Left\": 0.8163602352142334, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.3766666650772095}, {\"X\": 0.8866100907325745, \"Y\": 0.3766666650772095}, {\"X\": 0.8866100907325745, \"Y\": 0.3893333375453949}, {\"X\": 0.8163602352142334, \"Y\": 0.3893333375453949}]}, \"Id\": \"88b36cf9-638b-42fc-9485-153039ef4da8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8e3900d3-25ef-48ec-a491-199ab0a6ac32\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.50109100341797, \"RowIndex\": 15, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.012666666880249977, \"Left\": 0.8866100907325745, \"Top\": 0.3766666650772095}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.3766666650772095}, {\"X\": 0.9464457035064697, \"Y\": 0.3766666650772095}, {\"X\": 0.9464457035064697, \"Y\": 0.3893333375453949}, {\"X\": 0.8866100907325745, \"Y\": 0.3893333375453949}]}, \"Id\": \"43d4b521-2743-41fe-b7ba-674d31e8525e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d58cef6-a73b-4c42-b946-4ff4eb515d18\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.23594665527344, \"RowIndex\": 16, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.014000000432133675, \"Left\": 0.09096222370862961, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.3893333375453949}, {\"X\": 0.45662423968315125, \"Y\": 0.3893333375453949}, {\"X\": 0.45662423968315125, \"Y\": 0.4033333361148834}, {\"X\": 0.09096222370862961, \"Y\": 0.4033333361148834}]}, \"Id\": \"d3dfe438-a2a9-4511-971b-324f3a69db0d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c7c673dd-1e22-437a-8a41-028497a0b22a\", \"5b9cd601-dcb3-4208-8f59-55119c9d7392\", \"8167c823-4bf8-425b-a99b-f41257cce8fe\", \"d8d58732-5408-4829-83bb-8fa46e84d143\", \"4a014a74-1333-468c-864d-01935c19ee93\", \"8b02ac70-31bc-4c3e-808b-11b66a884a86\", \"d90ba1d1-8ffe-4605-a93d-23d162477da5\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.9141616821289, \"RowIndex\": 16, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.014000000432133675, \"Left\": 0.45662423968315125, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.3893333375453949}, {\"X\": 0.50141441822052, \"Y\": 0.3893333375453949}, {\"X\": 0.50141441822052, \"Y\": 0.4033333361148834}, {\"X\": 0.45662423968315125, \"Y\": 0.4033333361148834}]}, \"Id\": \"d1495946-282d-4abe-ba5a-1ae06775b120\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f6a5572e-f316-41e8-9126-bbb209697c7c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.65028381347656, \"RowIndex\": 16, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.014000000432133675, \"Left\": 0.50141441822052, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.3893333375453949}, {\"X\": 0.5891088843345642, \"Y\": 0.3893333375453949}, {\"X\": 0.5891088843345642, \"Y\": 0.4033333361148834}, {\"X\": 0.50141441822052, \"Y\": 0.4033333361148834}]}, \"Id\": \"82b3873e-0475-49ae-bdd3-fcf194703d89\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"871d3bab-c4da-4731-9c89-4743a14fee79\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.30723571777344, \"RowIndex\": 16, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.014000000432133675, \"Left\": 0.5891088843345642, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.3893333375453949}, {\"X\": 0.6631305813789368, \"Y\": 0.3893333375453949}, {\"X\": 0.6631305813789368, \"Y\": 0.4033333361148834}, {\"X\": 0.5891088843345642, \"Y\": 0.4033333361148834}]}, \"Id\": \"f015bb8d-4689-456c-9174-a52787b488c8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c45e4ecf-57a5-426d-a59d-0ffaea5c26db\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.7992172241211, \"RowIndex\": 16, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.014000000432133675, \"Left\": 0.6631305813789368, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.3893333375453949}, {\"X\": 0.7263083457946777, \"Y\": 0.3893333375453949}, {\"X\": 0.7263083457946777, \"Y\": 0.4033333361148834}, {\"X\": 0.6631305813789368, \"Y\": 0.4033333361148834}]}, \"Id\": \"87501718-ae09-463c-857d-62f4b7a2fd1b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e0f46e1-8135-4a86-af9f-e67dd3f898d4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.71961975097656, \"RowIndex\": 16, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.014000000432133675, \"Left\": 0.7263083457946777, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.3893333375453949}, {\"X\": 0.8163602352142334, \"Y\": 0.3893333375453949}, {\"X\": 0.8163602352142334, \"Y\": 0.4033333361148834}, {\"X\": 0.7263083457946777, \"Y\": 0.4033333361148834}]}, \"Id\": \"5efc4b54-2537-442b-8301-4fb38853b180\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"377dcee0-873c-4f98-927a-daffc4bb888e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.72875213623047, \"RowIndex\": 16, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.014000000432133675, \"Left\": 0.8163602352142334, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.3893333375453949}, {\"X\": 0.8866100907325745, \"Y\": 0.3893333375453949}, {\"X\": 0.8866100907325745, \"Y\": 0.4033333361148834}, {\"X\": 0.8163602352142334, \"Y\": 0.4033333361148834}]}, \"Id\": \"bff24adf-0e1f-4b47-92e2-63aed0d80dff\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4f8030e-31a4-4395-9fab-92efcfb46018\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.45333099365234, \"RowIndex\": 16, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.014000000432133675, \"Left\": 0.8866100907325745, \"Top\": 0.3893333375453949}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.3893333375453949}, {\"X\": 0.9464457035064697, \"Y\": 0.3893333375453949}, {\"X\": 0.9464457035064697, \"Y\": 0.4033333361148834}, {\"X\": 0.8866100907325745, \"Y\": 0.4033333361148834}]}, \"Id\": \"e44780f3-8f26-4a1c-b8a6-29bd978d93a4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"abddef44-437e-4009-bab7-7dd1930f30d4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.91275024414062, \"RowIndex\": 17, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.4033333361148834}, {\"X\": 0.45662423968315125, \"Y\": 0.4033333361148834}, {\"X\": 0.45662423968315125, \"Y\": 0.4169999957084656}, {\"X\": 0.09096222370862961, \"Y\": 0.4169999957084656}]}, \"Id\": \"214bcff4-6040-4ae7-b1f1-6e7e546f11b2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c4aa381c-a618-4e89-a74a-7466b9952e03\", \"072dae4c-cfb6-4c61-87d8-cacf78363170\", \"ff119535-1bfe-4a9f-a80f-a38bdaca63fb\", \"42a6ce3b-d3e5-430a-8021-c938d98b1bed\", \"5ed745fb-c4fe-4d96-b870-eaae9492d2b4\", \"26f3a9bb-2a9d-4da5-ad3c-94befb09b638\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.63815307617188, \"RowIndex\": 17, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.4033333361148834}, {\"X\": 0.50141441822052, \"Y\": 0.4033333361148834}, {\"X\": 0.50141441822052, \"Y\": 0.4169999957084656}, {\"X\": 0.45662423968315125, \"Y\": 0.4169999957084656}]}, \"Id\": \"71073a40-2177-4a0f-9572-6d52f20ce201\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8c48e83d-ab7d-4010-9108-e35df0f4d400\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.33270263671875, \"RowIndex\": 17, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.4033333361148834}, {\"X\": 0.5891088843345642, \"Y\": 0.4033333361148834}, {\"X\": 0.5891088843345642, \"Y\": 0.4169999957084656}, {\"X\": 0.50141441822052, \"Y\": 0.4169999957084656}]}, \"Id\": \"f061a1f4-f893-41cc-8180-6c33b36d2efa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a44411af-d990-4c46-a93f-ee4b971e73a7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.9979476928711, \"RowIndex\": 17, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.4033333361148834}, {\"X\": 0.6631305813789368, \"Y\": 0.4033333361148834}, {\"X\": 0.6631305813789368, \"Y\": 0.4169999957084656}, {\"X\": 0.5891088843345642, \"Y\": 0.4169999957084656}]}, \"Id\": \"57119025-27d0-4143-984a-07d121976dcd\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"92aff047-6f5b-440b-981e-0ab6adb0a10c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.49173736572266, \"RowIndex\": 17, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.4033333361148834}, {\"X\": 0.7263083457946777, \"Y\": 0.4033333361148834}, {\"X\": 0.7263083457946777, \"Y\": 0.4169999957084656}, {\"X\": 0.6631305813789368, \"Y\": 0.4169999957084656}]}, \"Id\": \"8b1070bf-fc76-4a0a-a3e1-ffdde0b1eac1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e4dfe757-c451-4486-ab7f-2fcf67904e64\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.39823913574219, \"RowIndex\": 17, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.4033333361148834}, {\"X\": 0.8163602352142334, \"Y\": 0.4033333361148834}, {\"X\": 0.8163602352142334, \"Y\": 0.4169999957084656}, {\"X\": 0.7263083457946777, \"Y\": 0.4169999957084656}]}, \"Id\": \"23e4efd6-fc66-4863-b8a5-1798caa19bfa\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d9cf5ae0-5dac-4216-ac52-6bd549382247\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.4144287109375, \"RowIndex\": 17, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.4033333361148834}, {\"X\": 0.8866100907325745, \"Y\": 0.4033333361148834}, {\"X\": 0.8866100907325745, \"Y\": 0.4169999957084656}, {\"X\": 0.8163602352142334, \"Y\": 0.4169999957084656}]}, \"Id\": \"fb7cd422-b457-4f5a-b6dd-5271a2fe53f4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"28f0b3d2-52ca-42c0-a6f7-797b0150499c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.1576919555664, \"RowIndex\": 17, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.4033333361148834}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.4033333361148834}, {\"X\": 0.9464457035064697, \"Y\": 0.4033333361148834}, {\"X\": 0.9464457035064697, \"Y\": 0.4169999957084656}, {\"X\": 0.8866100907325745, \"Y\": 0.4169999957084656}]}, \"Id\": \"fa5bb04d-74cc-4516-878a-9143f3922187\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7745ddd4-101b-490d-9ecb-596b2c9582ae\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.36416625976562, \"RowIndex\": 18, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.015333333052694798, \"Left\": 0.09096222370862961, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.4169999957084656}, {\"X\": 0.45662423968315125, \"Y\": 0.4169999957084656}, {\"X\": 0.45662423968315125, \"Y\": 0.4323333203792572}, {\"X\": 0.09096222370862961, \"Y\": 0.4323333203792572}]}, \"Id\": \"c87ced5f-bc28-4698-9932-53f5742446fd\"}, {\"BlockType\": \"CELL\", \"Confidence\": 66.92184448242188, \"RowIndex\": 18, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.015333333052694798, \"Left\": 0.45662423968315125, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.4169999957084656}, {\"X\": 0.50141441822052, \"Y\": 0.4169999957084656}, {\"X\": 0.50141441822052, \"Y\": 0.4323333203792572}, {\"X\": 0.45662423968315125, \"Y\": 0.4323333203792572}]}, \"Id\": \"7e237b97-a307-4bc6-8445-b5060812377d\"}, {\"BlockType\": \"CELL\", \"Confidence\": 77.00221252441406, \"RowIndex\": 18, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.015333333052694798, \"Left\": 0.50141441822052, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.4169999957084656}, {\"X\": 0.5891088843345642, \"Y\": 0.4169999957084656}, {\"X\": 0.5891088843345642, \"Y\": 0.4323333203792572}, {\"X\": 0.50141441822052, \"Y\": 0.4323333203792572}]}, \"Id\": \"c9728a7a-e5fd-442d-8396-c77cbd68ba67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"db762c11-bb67-49ac-a098-361463b30f14\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 74.9897232055664, \"RowIndex\": 18, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.015333333052694798, \"Left\": 0.5891088843345642, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.4169999957084656}, {\"X\": 0.6631305813789368, \"Y\": 0.4169999957084656}, {\"X\": 0.6631305813789368, \"Y\": 0.4323333203792572}, {\"X\": 0.5891088843345642, \"Y\": 0.4323333203792572}]}, \"Id\": \"36d90455-2083-45be-8391-76d5c5e2bbb6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4e03a9c4-3aa7-499f-8997-1f0bf702965e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 74.55337524414062, \"RowIndex\": 18, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.015333333052694798, \"Left\": 0.6631305813789368, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.4169999957084656}, {\"X\": 0.7263083457946777, \"Y\": 0.4169999957084656}, {\"X\": 0.7263083457946777, \"Y\": 0.4323333203792572}, {\"X\": 0.6631305813789368, \"Y\": 0.4323333203792572}]}, \"Id\": \"91bc69a7-f1b2-41cd-861b-549912cb29a8\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"86480ba5-015f-4301-8e89-3713c4ee7fe8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.9206771850586, \"RowIndex\": 18, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.015333333052694798, \"Left\": 0.7263083457946777, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.4169999957084656}, {\"X\": 0.8163602352142334, \"Y\": 0.4169999957084656}, {\"X\": 0.8163602352142334, \"Y\": 0.4323333203792572}, {\"X\": 0.7263083457946777, \"Y\": 0.4323333203792572}]}, \"Id\": \"78eca37a-83bb-4527-924d-08bdfffeec46\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c83aa287-1d33-4c80-ab8f-b3b8c37c9240\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.21068572998047, \"RowIndex\": 18, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.015333333052694798, \"Left\": 0.8163602352142334, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.4169999957084656}, {\"X\": 0.8866100907325745, \"Y\": 0.4169999957084656}, {\"X\": 0.8866100907325745, \"Y\": 0.4323333203792572}, {\"X\": 0.8163602352142334, \"Y\": 0.4323333203792572}]}, \"Id\": \"16a69440-4307-45ca-a156-8a40c41c3248\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c002164e-62b1-421e-8c12-a20562578361\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 71.67953491210938, \"RowIndex\": 18, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.015333333052694798, \"Left\": 0.8866100907325745, \"Top\": 0.4169999957084656}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.4169999957084656}, {\"X\": 0.9464457035064697, \"Y\": 0.4169999957084656}, {\"X\": 0.9464457035064697, \"Y\": 0.4323333203792572}, {\"X\": 0.8866100907325745, \"Y\": 0.4323333203792572}]}, \"Id\": \"77423618-dd24-4631-8ce2-fdfd368d1b1d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a0acf034-b7b6-4434-bbf6-a880b2193c53\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.87554931640625, \"RowIndex\": 19, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.4323333203792572}, {\"X\": 0.45662423968315125, \"Y\": 0.4323333203792572}, {\"X\": 0.45662423968315125, \"Y\": 0.44600000977516174}, {\"X\": 0.09096222370862961, \"Y\": 0.44600000977516174}]}, \"Id\": \"f5bb2a81-00bc-4223-987c-56e540d329a4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b525a4d7-4486-4130-8512-f2f0a5820067\", \"58432b18-9925-43f9-b260-86b42855de9e\", \"226f4c99-ff19-4bbe-8ea6-b5f4a2bc4ff6\", \"f682f480-e381-4c13-8a99-8a7347bf554e\", \"4df4184d-5e90-4485-9555-80d291091f47\", \"5a547ea1-d33b-45b1-9853-f0bc594871b5\", \"1abfc87b-dbd5-45d3-b641-96861d0dcce8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.75239562988281, \"RowIndex\": 19, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.4323333203792572}, {\"X\": 0.50141441822052, \"Y\": 0.4323333203792572}, {\"X\": 0.50141441822052, \"Y\": 0.44600000977516174}, {\"X\": 0.45662423968315125, \"Y\": 0.44600000977516174}]}, \"Id\": \"0f979230-5087-4287-a3dc-f8143c7d3ec0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"40c4c99e-2307-4be2-972a-c17ed5fbeb6f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.31352233886719, \"RowIndex\": 19, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.4323333203792572}, {\"X\": 0.5891088843345642, \"Y\": 0.4323333203792572}, {\"X\": 0.5891088843345642, \"Y\": 0.44600000977516174}, {\"X\": 0.50141441822052, \"Y\": 0.44600000977516174}]}, \"Id\": \"f5c4a257-4d63-41bf-904a-857b4eb2323b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cc464db5-5a15-4de3-b5f2-e539ef302333\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.00541687011719, \"RowIndex\": 19, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.4323333203792572}, {\"X\": 0.6631305813789368, \"Y\": 0.4323333203792572}, {\"X\": 0.6631305813789368, \"Y\": 0.44600000977516174}, {\"X\": 0.5891088843345642, \"Y\": 0.44600000977516174}]}, \"Id\": \"058dd7c5-86e6-4307-b4df-a97037b0979f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"88da7e80-4343-40c4-8d48-fba860fa741c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.50497436523438, \"RowIndex\": 19, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.4323333203792572}, {\"X\": 0.7263083457946777, \"Y\": 0.4323333203792572}, {\"X\": 0.7263083457946777, \"Y\": 0.44600000977516174}, {\"X\": 0.6631305813789368, \"Y\": 0.44600000977516174}]}, \"Id\": \"ba9b1cc8-799d-4780-9bf4-536773109195\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a952ffcd-8826-497f-8571-2576044abf4a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.36691284179688, \"RowIndex\": 19, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.4323333203792572}, {\"X\": 0.8163602352142334, \"Y\": 0.4323333203792572}, {\"X\": 0.8163602352142334, \"Y\": 0.44600000977516174}, {\"X\": 0.7263083457946777, \"Y\": 0.44600000977516174}]}, \"Id\": \"cdca2b3c-a387-4939-ac0c-6cd1c661733e\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"afd3c118-170d-4bc8-a833-39599abcb7cc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.40573120117188, \"RowIndex\": 19, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.4323333203792572}, {\"X\": 0.8866100907325745, \"Y\": 0.4323333203792572}, {\"X\": 0.8866100907325745, \"Y\": 0.44600000977516174}, {\"X\": 0.8163602352142334, \"Y\": 0.44600000977516174}]}, \"Id\": \"e551f2b9-0813-4385-9d66-a2f4f6cf1500\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ba0d6a33-88b0-4e1d-9b03-f55afd4bd056\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.20897674560547, \"RowIndex\": 19, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.4323333203792572}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.4323333203792572}, {\"X\": 0.9464457035064697, \"Y\": 0.4323333203792572}, {\"X\": 0.9464457035064697, \"Y\": 0.44600000977516174}, {\"X\": 0.8866100907325745, \"Y\": 0.44600000977516174}]}, \"Id\": \"7b6f2389-7cdf-4a42-afb5-37917a3b77ec\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2e703792-439d-4144-a977-f55abf863977\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.71730041503906, \"RowIndex\": 20, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013000000268220901, \"Left\": 0.09096222370862961, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.44600000977516174}, {\"X\": 0.45662423968315125, \"Y\": 0.44600000977516174}, {\"X\": 0.45662423968315125, \"Y\": 0.45899999141693115}, {\"X\": 0.09096222370862961, \"Y\": 0.45899999141693115}]}, \"Id\": \"d8df0d93-5310-4b0d-b2be-f39c07a04325\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bc02ed77-b629-4760-9fe6-0e2094b020d6\", \"9aaaf360-63f0-4594-afab-5b251e14b841\", \"c319dff5-8f4e-4dd3-92ba-570062c9bee1\", \"bf02f506-c6c2-4db3-98e2-6b02d9093ce7\", \"d9d00927-1f0f-44b2-b040-a2f64d6a627a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.47123718261719, \"RowIndex\": 20, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013000000268220901, \"Left\": 0.45662423968315125, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.44600000977516174}, {\"X\": 0.50141441822052, \"Y\": 0.44600000977516174}, {\"X\": 0.50141441822052, \"Y\": 0.45899999141693115}, {\"X\": 0.45662423968315125, \"Y\": 0.45899999141693115}]}, \"Id\": \"9a19104e-7d9e-4182-89f0-459741144315\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"115d276d-afaa-4b3a-9fbc-cbba7d6b49e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.1406478881836, \"RowIndex\": 20, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013000000268220901, \"Left\": 0.50141441822052, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.44600000977516174}, {\"X\": 0.5891088843345642, \"Y\": 0.44600000977516174}, {\"X\": 0.5891088843345642, \"Y\": 0.45899999141693115}, {\"X\": 0.50141441822052, \"Y\": 0.45899999141693115}]}, \"Id\": \"0345477c-3d36-4f8b-92fd-d82b0af2793f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b3086672-4b07-49f5-993b-028d95b882dd\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.81092071533203, \"RowIndex\": 20, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013000000268220901, \"Left\": 0.5891088843345642, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.44600000977516174}, {\"X\": 0.6631305813789368, \"Y\": 0.44600000977516174}, {\"X\": 0.6631305813789368, \"Y\": 0.45899999141693115}, {\"X\": 0.5891088843345642, \"Y\": 0.45899999141693115}]}, \"Id\": \"79042ca3-6fc5-4ff0-80bd-700a9ba9205f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9c637872-7983-428f-a82d-61fdd632146a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.30579376220703, \"RowIndex\": 20, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013000000268220901, \"Left\": 0.6631305813789368, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.44600000977516174}, {\"X\": 0.7263083457946777, \"Y\": 0.44600000977516174}, {\"X\": 0.7263083457946777, \"Y\": 0.45899999141693115}, {\"X\": 0.6631305813789368, \"Y\": 0.45899999141693115}]}, \"Id\": \"572c72ea-8929-4d29-bf0f-411c52c4c792\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"286db7d2-654c-4b09-b13c-49ccd4ef7877\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.20389556884766, \"RowIndex\": 20, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013000000268220901, \"Left\": 0.7263083457946777, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.44600000977516174}, {\"X\": 0.8163602352142334, \"Y\": 0.44600000977516174}, {\"X\": 0.8163602352142334, \"Y\": 0.45899999141693115}, {\"X\": 0.7263083457946777, \"Y\": 0.45899999141693115}]}, \"Id\": \"15628892-a598-401a-8a49-385266278234\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0bea15b8-a841-4727-81a6-8cda01468cbe\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.22434997558594, \"RowIndex\": 20, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013000000268220901, \"Left\": 0.8163602352142334, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.44600000977516174}, {\"X\": 0.8866100907325745, \"Y\": 0.44600000977516174}, {\"X\": 0.8866100907325745, \"Y\": 0.45899999141693115}, {\"X\": 0.8163602352142334, \"Y\": 0.45899999141693115}]}, \"Id\": \"e4dd1d6b-c843-4cbb-a591-89f8acd81abe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2c6d83a7-c5cd-4701-8b2d-d6d96e0f48d8\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.97891998291016, \"RowIndex\": 20, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013000000268220901, \"Left\": 0.8866100907325745, \"Top\": 0.44600000977516174}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.44600000977516174}, {\"X\": 0.9464457035064697, \"Y\": 0.44600000977516174}, {\"X\": 0.9464457035064697, \"Y\": 0.45899999141693115}, {\"X\": 0.8866100907325745, \"Y\": 0.45899999141693115}]}, \"Id\": \"ca3e255e-772b-478f-a10e-e74be0c91968\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d1497f3f-e068-43a9-9da0-1e9bee310db6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.54179382324219, \"RowIndex\": 21, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.45899999141693115}, {\"X\": 0.45662423968315125, \"Y\": 0.45899999141693115}, {\"X\": 0.45662423968315125, \"Y\": 0.4726666808128357}, {\"X\": 0.09096222370862961, \"Y\": 0.4726666808128357}]}, \"Id\": \"f6858717-5452-48d6-897c-6bcc92af7a0c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3280816b-475b-4b16-b96c-5e5ffdc9ad10\", \"a764d356-7790-4b27-bc1c-049cdc2a622e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 78.17533874511719, \"RowIndex\": 21, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.45899999141693115}, {\"X\": 0.50141441822052, \"Y\": 0.45899999141693115}, {\"X\": 0.50141441822052, \"Y\": 0.4726666808128357}, {\"X\": 0.45662423968315125, \"Y\": 0.4726666808128357}]}, \"Id\": \"a1f5f3b6-143a-4d25-9519-ec9cd3ba5b34\"}, {\"BlockType\": \"CELL\", \"Confidence\": 89.95081329345703, \"RowIndex\": 21, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.45899999141693115}, {\"X\": 0.5891088843345642, \"Y\": 0.45899999141693115}, {\"X\": 0.5891088843345642, \"Y\": 0.4726666808128357}, {\"X\": 0.50141441822052, \"Y\": 0.4726666808128357}]}, \"Id\": \"a0f6db41-6db8-4bd4-aaa3-8d83ce207a7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"5e12f3ef-f20b-4b42-9001-bd715cbaa158\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.59990692138672, \"RowIndex\": 21, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.45899999141693115}, {\"X\": 0.6631305813789368, \"Y\": 0.45899999141693115}, {\"X\": 0.6631305813789368, \"Y\": 0.4726666808128357}, {\"X\": 0.5891088843345642, \"Y\": 0.4726666808128357}]}, \"Id\": \"abb42a07-55ab-45d9-b993-f6a030fff9c5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a144290d-4184-41f6-a366-1b5503993e16\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.0901870727539, \"RowIndex\": 21, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.45899999141693115}, {\"X\": 0.7263083457946777, \"Y\": 0.45899999141693115}, {\"X\": 0.7263083457946777, \"Y\": 0.4726666808128357}, {\"X\": 0.6631305813789368, \"Y\": 0.4726666808128357}]}, \"Id\": \"eafbdfc7-cd72-4229-b2be-3e3391066d63\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e40ea02-0ebc-4aa9-a955-b03f31548151\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.02372741699219, \"RowIndex\": 21, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.45899999141693115}, {\"X\": 0.8163602352142334, \"Y\": 0.45899999141693115}, {\"X\": 0.8163602352142334, \"Y\": 0.4726666808128357}, {\"X\": 0.7263083457946777, \"Y\": 0.4726666808128357}]}, \"Id\": \"ea52b969-0436-43d4-8931-7eb016faef73\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b668eae3-f7d0-402c-b6c9-47e0549b319f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.02619171142578, \"RowIndex\": 21, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.45899999141693115}, {\"X\": 0.8866100907325745, \"Y\": 0.45899999141693115}, {\"X\": 0.8866100907325745, \"Y\": 0.4726666808128357}, {\"X\": 0.8163602352142334, \"Y\": 0.4726666808128357}]}, \"Id\": \"8cf2d5e5-40da-459b-9b7e-90cecca37bfb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ae0f2a82-cbc9-4f43-82d5-44ae08633d6e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.73307800292969, \"RowIndex\": 21, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.45899999141693115}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.45899999141693115}, {\"X\": 0.9464457035064697, \"Y\": 0.45899999141693115}, {\"X\": 0.9464457035064697, \"Y\": 0.4726666808128357}, {\"X\": 0.8866100907325745, \"Y\": 0.4726666808128357}]}, \"Id\": \"9c6a4c24-f18a-4682-b2dd-76b27a6858a3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"35678556-f170-4279-897b-1a3f6b26139a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.94242858886719, \"RowIndex\": 22, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013333333656191826, \"Left\": 0.09096222370862961, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.4726666808128357}, {\"X\": 0.45662423968315125, \"Y\": 0.4726666808128357}, {\"X\": 0.45662423968315125, \"Y\": 0.4860000014305115}, {\"X\": 0.09096222370862961, \"Y\": 0.4860000014305115}]}, \"Id\": \"dc6d99c6-c568-492d-b29d-c5e07d850abf\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"da6d2e6b-caf9-4f1e-9a14-53dfe0067f99\", \"e01bdd24-bd75-43f2-922e-a8102d7d972a\", \"76947805-1ba6-46bc-b51a-2bb685cc1f6b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 72.53958892822266, \"RowIndex\": 22, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013333333656191826, \"Left\": 0.45662423968315125, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.4726666808128357}, {\"X\": 0.50141441822052, \"Y\": 0.4726666808128357}, {\"X\": 0.50141441822052, \"Y\": 0.4860000014305115}, {\"X\": 0.45662423968315125, \"Y\": 0.4860000014305115}]}, \"Id\": \"facf8c3a-0c38-4b18-9bd7-044bec24efd7\"}, {\"BlockType\": \"CELL\", \"Confidence\": 83.46614074707031, \"RowIndex\": 22, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013333333656191826, \"Left\": 0.50141441822052, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.4726666808128357}, {\"X\": 0.5891088843345642, \"Y\": 0.4726666808128357}, {\"X\": 0.5891088843345642, \"Y\": 0.4860000014305115}, {\"X\": 0.50141441822052, \"Y\": 0.4860000014305115}]}, \"Id\": \"5c1d9b88-04d5-4901-bd43-748c927681df\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"75eb35b4-63f1-4605-b629-b0a6fc2f4cae\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 81.28472137451172, \"RowIndex\": 22, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013333333656191826, \"Left\": 0.5891088843345642, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.4726666808128357}, {\"X\": 0.6631305813789368, \"Y\": 0.4726666808128357}, {\"X\": 0.6631305813789368, \"Y\": 0.4860000014305115}, {\"X\": 0.5891088843345642, \"Y\": 0.4860000014305115}]}, \"Id\": \"fe5c7214-9b31-46a1-8782-4bfe16c560a4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b89f39a1-e995-4887-93cd-598edc7c023f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 80.8117446899414, \"RowIndex\": 22, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013333333656191826, \"Left\": 0.6631305813789368, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.4726666808128357}, {\"X\": 0.7263083457946777, \"Y\": 0.4726666808128357}, {\"X\": 0.7263083457946777, \"Y\": 0.4860000014305115}, {\"X\": 0.6631305813789368, \"Y\": 0.4860000014305115}]}, \"Id\": \"cd2491b1-8ae5-4390-927e-62d418e34768\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"355ac8de-ae70-44f3-ac52-4c5ae1fc8c9a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.46171569824219, \"RowIndex\": 22, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013333333656191826, \"Left\": 0.7263083457946777, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.4726666808128357}, {\"X\": 0.8163602352142334, \"Y\": 0.4726666808128357}, {\"X\": 0.8163602352142334, \"Y\": 0.4860000014305115}, {\"X\": 0.7263083457946777, \"Y\": 0.4860000014305115}]}, \"Id\": \"77a8862e-5187-40e6-a525-608aacf4bf66\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"67838322-1bcc-4ef1-9861-a728534cef9e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.6081771850586, \"RowIndex\": 22, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013333333656191826, \"Left\": 0.8163602352142334, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.4726666808128357}, {\"X\": 0.8866100907325745, \"Y\": 0.4726666808128357}, {\"X\": 0.8866100907325745, \"Y\": 0.4860000014305115}, {\"X\": 0.8163602352142334, \"Y\": 0.4860000014305115}]}, \"Id\": \"168e96d5-8351-4ca3-8734-3ad2aa478452\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0bdb0970-93cd-42a3-935f-4e0f9aa37962\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.6966552734375, \"RowIndex\": 22, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013333333656191826, \"Left\": 0.8866100907325745, \"Top\": 0.4726666808128357}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.4726666808128357}, {\"X\": 0.9464457035064697, \"Y\": 0.4726666808128357}, {\"X\": 0.9464457035064697, \"Y\": 0.4860000014305115}, {\"X\": 0.8866100907325745, \"Y\": 0.4860000014305115}]}, \"Id\": \"e0f9163a-9bc5-4fc5-8cba-a2c69c17e8ac\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"656c7b7d-bd87-4080-b747-bd8e62f13513\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.55421447753906, \"RowIndex\": 23, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.01366666704416275, \"Left\": 0.09096222370862961, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.4860000014305115}, {\"X\": 0.45662423968315125, \"Y\": 0.4860000014305115}, {\"X\": 0.45662423968315125, \"Y\": 0.49966666102409363}, {\"X\": 0.09096222370862961, \"Y\": 0.49966666102409363}]}, \"Id\": \"63517f6f-3818-435d-a128-7fcf273f9e69\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"cd172da8-cf81-4640-979c-c1c5e9ce4da0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.33196258544922, \"RowIndex\": 23, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.01366666704416275, \"Left\": 0.45662423968315125, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.4860000014305115}, {\"X\": 0.50141441822052, \"Y\": 0.4860000014305115}, {\"X\": 0.50141441822052, \"Y\": 0.49966666102409363}, {\"X\": 0.45662423968315125, \"Y\": 0.49966666102409363}]}, \"Id\": \"aef5f3dd-ab44-4dd4-a7c5-10ebe21d831c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e5cc27a2-f1ef-426a-bb62-b4ebc492e404\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.98040008544922, \"RowIndex\": 23, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.01366666704416275, \"Left\": 0.50141441822052, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.4860000014305115}, {\"X\": 0.5891088843345642, \"Y\": 0.4860000014305115}, {\"X\": 0.5891088843345642, \"Y\": 0.49966666102409363}, {\"X\": 0.50141441822052, \"Y\": 0.49966666102409363}]}, \"Id\": \"b0a303fc-06d2-4834-b86e-78c7b1884fe1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"54e8f5b0-6ab7-4be4-8f9a-18be7a5f5aa0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.65486145019531, \"RowIndex\": 23, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.01366666704416275, \"Left\": 0.5891088843345642, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.4860000014305115}, {\"X\": 0.6631305813789368, \"Y\": 0.4860000014305115}, {\"X\": 0.6631305813789368, \"Y\": 0.49966666102409363}, {\"X\": 0.5891088843345642, \"Y\": 0.49966666102409363}]}, \"Id\": \"92c76007-6120-4494-817f-0cba67c35bda\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4120e2d7-8bed-4cea-9de2-9fbdcfdb371e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.150634765625, \"RowIndex\": 23, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.01366666704416275, \"Left\": 0.6631305813789368, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.4860000014305115}, {\"X\": 0.7263083457946777, \"Y\": 0.4860000014305115}, {\"X\": 0.7263083457946777, \"Y\": 0.49966666102409363}, {\"X\": 0.6631305813789368, \"Y\": 0.49966666102409363}]}, \"Id\": \"a8184946-3b76-4e6a-8c11-4f2cb2345296\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d3eda4e-e32e-4141-a42d-dc2a34ea742b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.04174041748047, \"RowIndex\": 23, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.01366666704416275, \"Left\": 0.7263083457946777, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.4860000014305115}, {\"X\": 0.8163602352142334, \"Y\": 0.4860000014305115}, {\"X\": 0.8163602352142334, \"Y\": 0.49966666102409363}, {\"X\": 0.7263083457946777, \"Y\": 0.49966666102409363}]}, \"Id\": \"c9bc4d09-fbaa-4cce-9171-be39763b6c0c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a5cc8890-ac50-4133-81f4-b537262d7ce1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.06575012207031, \"RowIndex\": 23, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.01366666704416275, \"Left\": 0.8163602352142334, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.4860000014305115}, {\"X\": 0.8866100907325745, \"Y\": 0.4860000014305115}, {\"X\": 0.8866100907325745, \"Y\": 0.49966666102409363}, {\"X\": 0.8163602352142334, \"Y\": 0.49966666102409363}]}, \"Id\": \"ef84ce02-6d1d-4452-945b-56d2a9af35f3\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e3def16-1eea-403d-9b07-72045ba5c1cf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.82975006103516, \"RowIndex\": 23, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.01366666704416275, \"Left\": 0.8866100907325745, \"Top\": 0.4860000014305115}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.4860000014305115}, {\"X\": 0.9464457035064697, \"Y\": 0.4860000014305115}, {\"X\": 0.9464457035064697, \"Y\": 0.49966666102409363}, {\"X\": 0.8866100907325745, \"Y\": 0.49966666102409363}]}, \"Id\": \"639b800c-6255-4a05-97a3-3451bcbf6c14\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a53e0576-8956-432c-a308-1b717d833355\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.30299377441406, \"RowIndex\": 24, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013333333656191826, \"Left\": 0.09096222370862961, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.49966666102409363}, {\"X\": 0.45662423968315125, \"Y\": 0.49966666102409363}, {\"X\": 0.45662423968315125, \"Y\": 0.5130000114440918}, {\"X\": 0.09096222370862961, \"Y\": 0.5130000114440918}]}, \"Id\": \"d4c33c29-15ca-418b-9c68-0598811b13e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa1154b5-46b8-4581-8b13-6ad33c24a552\", \"565782d4-bb8a-4fac-add2-89b6bd6bad89\", \"bd52522c-82e1-4133-a29e-964f3e11857f\", \"476d208f-aee5-4b84-8165-79cbc0b03ee7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 75.40946197509766, \"RowIndex\": 24, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013333333656191826, \"Left\": 0.45662423968315125, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.49966666102409363}, {\"X\": 0.50141441822052, \"Y\": 0.49966666102409363}, {\"X\": 0.50141441822052, \"Y\": 0.5130000114440918}, {\"X\": 0.45662423968315125, \"Y\": 0.5130000114440918}]}, \"Id\": \"dd17dc61-bd8b-4282-824f-649aac8611c6\"}, {\"BlockType\": \"CELL\", \"Confidence\": 86.76830291748047, \"RowIndex\": 24, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013333333656191826, \"Left\": 0.50141441822052, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.49966666102409363}, {\"X\": 0.5891088843345642, \"Y\": 0.49966666102409363}, {\"X\": 0.5891088843345642, \"Y\": 0.5130000114440918}, {\"X\": 0.50141441822052, \"Y\": 0.5130000114440918}]}, \"Id\": \"052ba945-553b-49bf-842a-35a9b61232f9\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8cbb6649-0439-452a-994a-deb86f72ce6e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.50057983398438, \"RowIndex\": 24, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013333333656191826, \"Left\": 0.5891088843345642, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.49966666102409363}, {\"X\": 0.6631305813789368, \"Y\": 0.49966666102409363}, {\"X\": 0.6631305813789368, \"Y\": 0.5130000114440918}, {\"X\": 0.5891088843345642, \"Y\": 0.5130000114440918}]}, \"Id\": \"59891bb1-0792-48a0-9edf-0c41c355777b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d45d8a46-e50b-4e4b-9b4c-857882ea5197\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.0088882446289, \"RowIndex\": 24, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013333333656191826, \"Left\": 0.6631305813789368, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.49966666102409363}, {\"X\": 0.7263083457946777, \"Y\": 0.49966666102409363}, {\"X\": 0.7263083457946777, \"Y\": 0.5130000114440918}, {\"X\": 0.6631305813789368, \"Y\": 0.5130000114440918}]}, \"Id\": \"7aaebfe7-3435-4712-a98c-42efdd36013f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"7bfe4601-7791-433a-8b82-8312cf11ed60\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.80326080322266, \"RowIndex\": 24, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013333333656191826, \"Left\": 0.7263083457946777, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.49966666102409363}, {\"X\": 0.8163602352142334, \"Y\": 0.49966666102409363}, {\"X\": 0.8163602352142334, \"Y\": 0.5130000114440918}, {\"X\": 0.7263083457946777, \"Y\": 0.5130000114440918}]}, \"Id\": \"78cf7a5b-64f3-4567-80f1-cddf003fd1d4\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"4d2771e7-5fb4-463f-a1c6-4e485d94d424\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.87639617919922, \"RowIndex\": 24, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013333333656191826, \"Left\": 0.8163602352142334, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.49966666102409363}, {\"X\": 0.8866100907325745, \"Y\": 0.49966666102409363}, {\"X\": 0.8866100907325745, \"Y\": 0.5130000114440918}, {\"X\": 0.8163602352142334, \"Y\": 0.5130000114440918}]}, \"Id\": \"4196886d-31b2-4c43-b1ae-955c761a1299\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b00b69f7-23d9-4477-a08b-bc56f6b8f6f2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 80.77056121826172, \"RowIndex\": 24, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013333333656191826, \"Left\": 0.8866100907325745, \"Top\": 0.49966666102409363}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.49966666102409363}, {\"X\": 0.9464457035064697, \"Y\": 0.49966666102409363}, {\"X\": 0.9464457035064697, \"Y\": 0.5130000114440918}, {\"X\": 0.8866100907325745, \"Y\": 0.5130000114440918}]}, \"Id\": \"b10ec260-5aef-4f24-a266-4134c56d910f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fe0222d-6d7d-4c55-8259-45ab0c21a1a9\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.35555267333984, \"RowIndex\": 25, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.014000000432133675, \"Left\": 0.09096222370862961, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.5130000114440918}, {\"X\": 0.45662423968315125, \"Y\": 0.5130000114440918}, {\"X\": 0.45662423968315125, \"Y\": 0.5270000100135803}, {\"X\": 0.09096222370862961, \"Y\": 0.5270000100135803}]}, \"Id\": \"726c2483-be0b-46f5-bad5-6d32d873cd64\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bcadc480-7051-46ce-be59-f0be2f759c9c\", \"3021723d-9ae7-446a-a71d-866cce07d29d\", \"dde84627-f6e1-4293-8cb4-5d0aab101317\", \"69d4d4dc-0f81-43d1-9070-6aced22c78cb\", \"f4396761-0fcb-46a3-806e-416df4abbff7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 76.3083267211914, \"RowIndex\": 25, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.014000000432133675, \"Left\": 0.45662423968315125, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.5130000114440918}, {\"X\": 0.50141441822052, \"Y\": 0.5130000114440918}, {\"X\": 0.50141441822052, \"Y\": 0.5270000100135803}, {\"X\": 0.45662423968315125, \"Y\": 0.5270000100135803}]}, \"Id\": \"a73e782d-6bf8-40e8-97cd-033b18a148f1\"}, {\"BlockType\": \"CELL\", \"Confidence\": 87.80257415771484, \"RowIndex\": 25, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.014000000432133675, \"Left\": 0.50141441822052, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.5130000114440918}, {\"X\": 0.5891088843345642, \"Y\": 0.5130000114440918}, {\"X\": 0.5891088843345642, \"Y\": 0.5270000100135803}, {\"X\": 0.50141441822052, \"Y\": 0.5270000100135803}]}, \"Id\": \"ab233fb2-efb0-4bae-b54e-121a3e73dc79\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"27e15b06-d53e-4f11-b952-a9b376dc81e3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.5078125, \"RowIndex\": 25, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.014000000432133675, \"Left\": 0.5891088843345642, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.5130000114440918}, {\"X\": 0.6631305813789368, \"Y\": 0.5130000114440918}, {\"X\": 0.6631305813789368, \"Y\": 0.5270000100135803}, {\"X\": 0.5891088843345642, \"Y\": 0.5270000100135803}]}, \"Id\": \"9fecd2df-8f8d-43ea-bfeb-71df18781638\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"61ca845b-002f-4c06-9c42-57201086beff\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 85.01026916503906, \"RowIndex\": 25, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.014000000432133675, \"Left\": 0.6631305813789368, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.5130000114440918}, {\"X\": 0.7263083457946777, \"Y\": 0.5130000114440918}, {\"X\": 0.7263083457946777, \"Y\": 0.5270000100135803}, {\"X\": 0.6631305813789368, \"Y\": 0.5270000100135803}]}, \"Id\": \"7882d52f-b14d-4d31-a4be-1072c166ce0f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0f5ca407-22a8-4f59-b553-4586970e426a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.84986877441406, \"RowIndex\": 25, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.014000000432133675, \"Left\": 0.7263083457946777, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.5130000114440918}, {\"X\": 0.8163602352142334, \"Y\": 0.5130000114440918}, {\"X\": 0.8163602352142334, \"Y\": 0.5270000100135803}, {\"X\": 0.7263083457946777, \"Y\": 0.5270000100135803}]}, \"Id\": \"215649e3-ab55-4f75-8e48-ea2ca74e2171\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"3418ef57-76b1-4bac-8014-bc009bcb784a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.90003204345703, \"RowIndex\": 25, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.014000000432133675, \"Left\": 0.8163602352142334, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.5130000114440918}, {\"X\": 0.8866100907325745, \"Y\": 0.5130000114440918}, {\"X\": 0.8866100907325745, \"Y\": 0.5270000100135803}, {\"X\": 0.8163602352142334, \"Y\": 0.5270000100135803}]}, \"Id\": \"24b5bc08-83ef-49e8-9d57-1f91d1be3d0f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"76a15faa-2d45-4324-b530-be5a5513a1c0\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 81.73333740234375, \"RowIndex\": 25, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.014000000432133675, \"Left\": 0.8866100907325745, \"Top\": 0.5130000114440918}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.5130000114440918}, {\"X\": 0.9464457035064697, \"Y\": 0.5130000114440918}, {\"X\": 0.9464457035064697, \"Y\": 0.5270000100135803}, {\"X\": 0.8866100907325745, \"Y\": 0.5270000100135803}]}, \"Id\": \"2a7c16a3-2962-4691-a0e5-8c44bd5066da\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"eef7330a-8aa7-4d36-bbc1-c64c55ff6ebc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.7940673828125, \"RowIndex\": 26, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013000000268220901, \"Left\": 0.09096222370862961, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.5270000100135803}, {\"X\": 0.45662423968315125, \"Y\": 0.5270000100135803}, {\"X\": 0.45662423968315125, \"Y\": 0.5400000214576721}, {\"X\": 0.09096222370862961, \"Y\": 0.5400000214576721}]}, \"Id\": \"4856ce3a-dd7e-4a7e-8b16-9d2bd83394a0\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"66593077-cd50-4e9d-8fd7-ebb58a7cd140\", \"ba6ac21a-5d62-47e4-a4f4-12ec63182f49\", \"740fd7b2-3c08-4d37-9de4-41ec68d54b69\", \"ed0e8fa2-aa42-4d0e-85da-48e299cde724\", \"94c2bf49-9490-4703-87b8-8824ff4c1fb1\", \"276cc2b7-6131-4558-9592-53013a41724c\", \"8feeac89-8630-475e-b8a4-5af0c96c36d5\", \"b56f1c69-7522-464a-93c3-cd696f260d7b\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 75.8288345336914, \"RowIndex\": 26, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013000000268220901, \"Left\": 0.45662423968315125, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.5270000100135803}, {\"X\": 0.50141441822052, \"Y\": 0.5270000100135803}, {\"X\": 0.50141441822052, \"Y\": 0.5400000214576721}, {\"X\": 0.45662423968315125, \"Y\": 0.5400000214576721}]}, \"Id\": \"a72ebf39-5982-4649-967b-06fe8a22a748\"}, {\"BlockType\": \"CELL\", \"Confidence\": 87.25084686279297, \"RowIndex\": 26, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013000000268220901, \"Left\": 0.50141441822052, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.5270000100135803}, {\"X\": 0.5891088843345642, \"Y\": 0.5270000100135803}, {\"X\": 0.5891088843345642, \"Y\": 0.5400000214576721}, {\"X\": 0.50141441822052, \"Y\": 0.5400000214576721}]}, \"Id\": \"c8f39815-463f-4d48-94d5-821bbc609236\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"677587c8-227d-4746-8d9f-1fef0f374a00\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.97051239013672, \"RowIndex\": 26, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013000000268220901, \"Left\": 0.5891088843345642, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.5270000100135803}, {\"X\": 0.6631305813789368, \"Y\": 0.5270000100135803}, {\"X\": 0.6631305813789368, \"Y\": 0.5400000214576721}, {\"X\": 0.5891088843345642, \"Y\": 0.5400000214576721}]}, \"Id\": \"500e2cda-0821-495f-87c2-78204ae1f657\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0b85bc17-d888-4118-9fdd-c72fa98caee2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.47608947753906, \"RowIndex\": 26, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013000000268220901, \"Left\": 0.6631305813789368, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.5270000100135803}, {\"X\": 0.7263083457946777, \"Y\": 0.5270000100135803}, {\"X\": 0.7263083457946777, \"Y\": 0.5400000214576721}, {\"X\": 0.6631305813789368, \"Y\": 0.5400000214576721}]}, \"Id\": \"fd9fd1a2-481e-4fcb-86c7-b2114c18e337\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9ce8cc65-a8ce-491b-82e1-4dca2e898ba7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.29155731201172, \"RowIndex\": 26, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013000000268220901, \"Left\": 0.7263083457946777, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.5270000100135803}, {\"X\": 0.8163602352142334, \"Y\": 0.5270000100135803}, {\"X\": 0.8163602352142334, \"Y\": 0.5400000214576721}, {\"X\": 0.7263083457946777, \"Y\": 0.5400000214576721}]}, \"Id\": \"710e2656-f84a-4ea4-b269-3f1074c4eb7f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"0d771061-9de4-4cb1-95e0-aa0d16c28583\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.35397338867188, \"RowIndex\": 26, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013000000268220901, \"Left\": 0.8163602352142334, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.5270000100135803}, {\"X\": 0.8866100907325745, \"Y\": 0.5270000100135803}, {\"X\": 0.8866100907325745, \"Y\": 0.5400000214576721}, {\"X\": 0.8163602352142334, \"Y\": 0.5400000214576721}]}, \"Id\": \"498d103f-29d9-4669-ba48-3df2301cfb67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b34d39ad-6914-46e6-8bd4-c9332e5e2898\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 81.2197494506836, \"RowIndex\": 26, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013000000268220901, \"Left\": 0.8866100907325745, \"Top\": 0.5270000100135803}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.5270000100135803}, {\"X\": 0.9464457035064697, \"Y\": 0.5270000100135803}, {\"X\": 0.9464457035064697, \"Y\": 0.5400000214576721}, {\"X\": 0.8866100907325745, \"Y\": 0.5400000214576721}]}, \"Id\": \"88b6dfaf-4c70-449a-a0d7-d6286cd58dfe\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"c59d25a5-dabc-45b2-950f-d199f017b75c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.5899658203125, \"RowIndex\": 27, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.015333333052694798, \"Left\": 0.09096222370862961, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.5400000214576721}, {\"X\": 0.45662423968315125, \"Y\": 0.5400000214576721}, {\"X\": 0.45662423968315125, \"Y\": 0.5553333163261414}, {\"X\": 0.09096222370862961, \"Y\": 0.5553333163261414}]}, \"Id\": \"28e93932-1df8-4fbe-a4c1-ff8fa953389d\"}, {\"BlockType\": \"CELL\", \"Confidence\": 78.21648406982422, \"RowIndex\": 27, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.015333333052694798, \"Left\": 0.45662423968315125, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.5400000214576721}, {\"X\": 0.50141441822052, \"Y\": 0.5400000214576721}, {\"X\": 0.50141441822052, \"Y\": 0.5553333163261414}, {\"X\": 0.45662423968315125, \"Y\": 0.5553333163261414}]}, \"Id\": \"ce7eeef3-336f-48fe-af28-867c20696bc2\"}, {\"BlockType\": \"CELL\", \"Confidence\": 89.99815368652344, \"RowIndex\": 27, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.015333333052694798, \"Left\": 0.50141441822052, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.5400000214576721}, {\"X\": 0.5891088843345642, \"Y\": 0.5400000214576721}, {\"X\": 0.5891088843345642, \"Y\": 0.5553333163261414}, {\"X\": 0.50141441822052, \"Y\": 0.5553333163261414}]}, \"Id\": \"2c621751-215d-4c04-9122-42c79799d2b2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"19b531a9-575a-46c4-98a4-7855fe73d749\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.64601135253906, \"RowIndex\": 27, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.015333333052694798, \"Left\": 0.5891088843345642, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.5400000214576721}, {\"X\": 0.6631305813789368, \"Y\": 0.5400000214576721}, {\"X\": 0.6631305813789368, \"Y\": 0.5553333163261414}, {\"X\": 0.5891088843345642, \"Y\": 0.5553333163261414}]}, \"Id\": \"53090a2a-3eed-4b7e-8c79-8964ccd28f07\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"65a37094-7f42-49e2-acb8-f2ec4c6a3abc\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.13602447509766, \"RowIndex\": 27, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.015333333052694798, \"Left\": 0.6631305813789368, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.5400000214576721}, {\"X\": 0.7263083457946777, \"Y\": 0.5400000214576721}, {\"X\": 0.7263083457946777, \"Y\": 0.5553333163261414}, {\"X\": 0.6631305813789368, \"Y\": 0.5553333163261414}]}, \"Id\": \"6d5bdf73-72d7-4db0-83c8-d46800ade110\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"e576b85e-2a7e-4153-98ab-a5232c26744f\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 91.0716323852539, \"RowIndex\": 27, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.015333333052694798, \"Left\": 0.7263083457946777, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.5400000214576721}, {\"X\": 0.8163602352142334, \"Y\": 0.5400000214576721}, {\"X\": 0.8163602352142334, \"Y\": 0.5553333163261414}, {\"X\": 0.7263083457946777, \"Y\": 0.5553333163261414}]}, \"Id\": \"6a469c23-2294-4ada-9e11-765b7c7635be\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"be5e31ab-03bc-498d-b9ed-f88d05706d1c\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.07304382324219, \"RowIndex\": 27, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.015333333052694798, \"Left\": 0.8163602352142334, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.5400000214576721}, {\"X\": 0.8866100907325745, \"Y\": 0.5400000214576721}, {\"X\": 0.8866100907325745, \"Y\": 0.5553333163261414}, {\"X\": 0.8163602352142334, \"Y\": 0.5553333163261414}]}, \"Id\": \"bde960c6-4ecd-4250-ad02-7453d45e9005\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d592d43c-e732-4e96-968e-18ab0912d130\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 83.77715301513672, \"RowIndex\": 27, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.015333333052694798, \"Left\": 0.8866100907325745, \"Top\": 0.5400000214576721}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.5400000214576721}, {\"X\": 0.9464457035064697, \"Y\": 0.5400000214576721}, {\"X\": 0.9464457035064697, \"Y\": 0.5553333163261414}, {\"X\": 0.8866100907325745, \"Y\": 0.5553333163261414}]}, \"Id\": \"c9894adb-5be1-41ad-8d65-bc7e7b34739c\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"088a7156-308d-4f94-aa6e-ec4b385e0890\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36586517095565796, \"Height\": 0.014000000432133675, \"Left\": 0.09075907617807388, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.09075907617807388, \"Y\": 0.5553333163261414}, {\"X\": 0.45662423968315125, \"Y\": 0.5553333163261414}, {\"X\": 0.45662423968315125, \"Y\": 0.5693333148956299}, {\"X\": 0.09075907617807388, \"Y\": 0.5693333148956299}]}, \"Id\": \"8ece7183-b392-4c07-ae53-a04481db0d00\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"f8dd692a-fd8e-4d77-a304-2bdb11a320c8\", \"faf9c450-6041-427f-af0c-94f779e0cff1\", \"7d82bf84-938f-4884-8d91-258d1d8815c7\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.014000000432133675, \"Left\": 0.45662423968315125, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.5553333163261414}, {\"X\": 0.50141441822052, \"Y\": 0.5553333163261414}, {\"X\": 0.50141441822052, \"Y\": 0.5693333148956299}, {\"X\": 0.45662423968315125, \"Y\": 0.5693333148956299}]}, \"Id\": \"bef4103d-0bc5-4eb1-a65a-36b554138f8c\"}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.014000000432133675, \"Left\": 0.50141441822052, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.5553333163261414}, {\"X\": 0.5891088843345642, \"Y\": 0.5553333163261414}, {\"X\": 0.5891088843345642, \"Y\": 0.5693333148956299}, {\"X\": 0.50141441822052, \"Y\": 0.5693333148956299}]}, \"Id\": \"b5df3964-df8e-4e33-b5ee-3f0e915ca508\"}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.014000000432133675, \"Left\": 0.5891088843345642, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.5553333163261414}, {\"X\": 0.6631305813789368, \"Y\": 0.5553333163261414}, {\"X\": 0.6631305813789368, \"Y\": 0.5693333148956299}, {\"X\": 0.5891088843345642, \"Y\": 0.5693333148956299}]}, \"Id\": \"0b7e2ee7-1257-408e-83dd-3d6e5ccc61d8\"}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.014000000432133675, \"Left\": 0.6631305813789368, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.5553333163261414}, {\"X\": 0.7263083457946777, \"Y\": 0.5553333163261414}, {\"X\": 0.7263083457946777, \"Y\": 0.5693333148956299}, {\"X\": 0.6631305813789368, \"Y\": 0.5693333148956299}]}, \"Id\": \"942094fa-6634-4fcf-a784-b66a9c94c73a\"}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.014000000432133675, \"Left\": 0.7263083457946777, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.5553333163261414}, {\"X\": 0.8163602352142334, \"Y\": 0.5553333163261414}, {\"X\": 0.8163602352142334, \"Y\": 0.5693333148956299}, {\"X\": 0.7263083457946777, \"Y\": 0.5693333148956299}]}, \"Id\": \"092c4ea6-3284-4d2d-b090-b8f39b292ce9\"}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.014000000432133675, \"Left\": 0.8163602352142334, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.5553333163261414}, {\"X\": 0.8866100907325745, \"Y\": 0.5553333163261414}, {\"X\": 0.8866100907325745, \"Y\": 0.5693333148956299}, {\"X\": 0.8163602352142334, \"Y\": 0.5693333148956299}]}, \"Id\": \"9dbba202-1796-430c-9175-8bc387925886\"}, {\"BlockType\": \"CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.0598774179816246, \"Height\": 0.014000000432133675, \"Left\": 0.8866100907325745, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.5553333163261414}, {\"X\": 0.9464874863624573, \"Y\": 0.5553333163261414}, {\"X\": 0.9464874863624573, \"Y\": 0.5693333148956299}, {\"X\": 0.8866100907325745, \"Y\": 0.5693333148956299}]}, \"Id\": \"7fe164d1-2b51-4095-af01-d49c641a42c3\"}, {\"BlockType\": \"CELL\", \"Confidence\": 88.82044982910156, \"RowIndex\": 29, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.013333333656191826, \"Left\": 0.09096222370862961, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.5693333148956299}, {\"X\": 0.45662423968315125, \"Y\": 0.5693333148956299}, {\"X\": 0.45662423968315125, \"Y\": 0.5826666951179504}, {\"X\": 0.09096222370862961, \"Y\": 0.5826666951179504}]}, \"Id\": \"9a8b3a6e-9b83-4ecd-ba9b-038f38e98c15\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"96221497-daae-45c5-a261-d67450d89549\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 75.85135650634766, \"RowIndex\": 29, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.013333333656191826, \"Left\": 0.45662423968315125, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.5693333148956299}, {\"X\": 0.50141441822052, \"Y\": 0.5693333148956299}, {\"X\": 0.50141441822052, \"Y\": 0.5826666951179504}, {\"X\": 0.45662423968315125, \"Y\": 0.5826666951179504}]}, \"Id\": \"3b3d6b8c-56a8-4dc1-868a-cee2909eee6d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"b03fc589-fccd-42ba-8825-95ea251d8a0a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.27677154541016, \"RowIndex\": 29, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.013333333656191826, \"Left\": 0.50141441822052, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.5693333148956299}, {\"X\": 0.5891088843345642, \"Y\": 0.5693333148956299}, {\"X\": 0.5891088843345642, \"Y\": 0.5826666951179504}, {\"X\": 0.50141441822052, \"Y\": 0.5826666951179504}]}, \"Id\": \"92ca041d-7583-47d8-a44c-187f7d9870e5\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"2974c031-cd9e-4578-8f71-d1c8ebbd15ed\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.9957504272461, \"RowIndex\": 29, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.013333333656191826, \"Left\": 0.5891088843345642, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.5693333148956299}, {\"X\": 0.6631305813789368, \"Y\": 0.5693333148956299}, {\"X\": 0.6631305813789368, \"Y\": 0.5826666951179504}, {\"X\": 0.5891088843345642, \"Y\": 0.5826666951179504}]}, \"Id\": \"3d31841b-e208-4126-a125-d73ccc69d0b2\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"d364dd29-167b-4ac5-9e7e-d40ff87a5a1e\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 84.50118255615234, \"RowIndex\": 29, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.013333333656191826, \"Left\": 0.6631305813789368, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.5693333148956299}, {\"X\": 0.7263083457946777, \"Y\": 0.5693333148956299}, {\"X\": 0.7263083457946777, \"Y\": 0.5826666951179504}, {\"X\": 0.6631305813789368, \"Y\": 0.5826666951179504}]}, \"Id\": \"1a1ae10a-9a5c-4e76-af9e-7e5033da9b30\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"9e123457-c877-4da5-be47-dd65a8b713e1\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.31778717041016, \"RowIndex\": 29, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.013333333656191826, \"Left\": 0.7263083457946777, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.5693333148956299}, {\"X\": 0.8163602352142334, \"Y\": 0.5693333148956299}, {\"X\": 0.8163602352142334, \"Y\": 0.5826666951179504}, {\"X\": 0.7263083457946777, \"Y\": 0.5826666951179504}]}, \"Id\": \"2aee4218-5278-49ef-a8cf-9b8c5d944601\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ccabdabd-b4a4-4e20-b08d-e984611d038a\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.37963104248047, \"RowIndex\": 29, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.013333333656191826, \"Left\": 0.8163602352142334, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.5693333148956299}, {\"X\": 0.8866100907325745, \"Y\": 0.5693333148956299}, {\"X\": 0.8866100907325745, \"Y\": 0.5826666951179504}, {\"X\": 0.8163602352142334, \"Y\": 0.5826666951179504}]}, \"Id\": \"37ee8fe9-9740-4aa4-b704-eadecd6268af\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"bb9f94b1-f080-4972-93f0-5972ee076a0d\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 81.24388122558594, \"RowIndex\": 29, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.013333333656191826, \"Left\": 0.8866100907325745, \"Top\": 0.5693333148956299}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.5693333148956299}, {\"X\": 0.9464457035064697, \"Y\": 0.5693333148956299}, {\"X\": 0.9464457035064697, \"Y\": 0.5826666951179504}, {\"X\": 0.8866100907325745, \"Y\": 0.5826666951179504}]}, \"Id\": \"f8609c56-e7ea-4404-a55a-4c26cc10f911\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1e95d0e8-2edd-428e-9949-e1834db4d6ec\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 90.42314910888672, \"RowIndex\": 30, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.36566200852394104, \"Height\": 0.012227172963321209, \"Left\": 0.09096222370862961, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.5826666951179504}, {\"X\": 0.45662423968315125, \"Y\": 0.5826666951179504}, {\"X\": 0.45662423968315125, \"Y\": 0.5948938131332397}, {\"X\": 0.09096222370862961, \"Y\": 0.5948938131332397}]}, \"Id\": \"2c1ab05e-c72d-4525-8d49-feffb1ad6967\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"a663d34d-1767-4f9a-bfcb-ec82e5268adf\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 77.22003936767578, \"RowIndex\": 30, \"ColumnIndex\": 2, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.04479019343852997, \"Height\": 0.012227172963321209, \"Left\": 0.45662423968315125, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.45662423968315125, \"Y\": 0.5826666951179504}, {\"X\": 0.50141441822052, \"Y\": 0.5826666951179504}, {\"X\": 0.50141441822052, \"Y\": 0.5948938131332397}, {\"X\": 0.45662423968315125, \"Y\": 0.5948938131332397}]}, \"Id\": \"096487ac-1345-4548-8a3c-c1a12ad6e72f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"856bddec-5667-434d-8e4c-1d96cc1250e6\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 88.85161590576172, \"RowIndex\": 30, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.08769448101520538, \"Height\": 0.012227172963321209, \"Left\": 0.50141441822052, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.5826666951179504}, {\"X\": 0.5891088843345642, \"Y\": 0.5826666951179504}, {\"X\": 0.5891088843345642, \"Y\": 0.5948938131332397}, {\"X\": 0.50141441822052, \"Y\": 0.5948938131332397}]}, \"Id\": \"1cadb575-610f-4077-9ab2-c86c0fd87402\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"85f5d8b3-d976-4370-9786-299381963450\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.52943420410156, \"RowIndex\": 30, \"ColumnIndex\": 4, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07402168959379196, \"Height\": 0.012227172963321209, \"Left\": 0.5891088843345642, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.5891088843345642, \"Y\": 0.5826666951179504}, {\"X\": 0.6631305813789368, \"Y\": 0.5826666951179504}, {\"X\": 0.6631305813789368, \"Y\": 0.5948938131332397}, {\"X\": 0.5891088843345642, \"Y\": 0.5948938131332397}]}, \"Id\": \"9ccd951c-a8ae-4620-b9cf-780e9b8a7d6d\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"95e7482c-48d0-4b35-985b-1ee0082341c3\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 86.02593994140625, \"RowIndex\": 30, \"ColumnIndex\": 5, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.06317774951457977, \"Height\": 0.012227172963321209, \"Left\": 0.6631305813789368, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.6631305813789368, \"Y\": 0.5826666951179504}, {\"X\": 0.7263083457946777, \"Y\": 0.5826666951179504}, {\"X\": 0.7263083457946777, \"Y\": 0.5948938131332397}, {\"X\": 0.6631305813789368, \"Y\": 0.5948938131332397}]}, \"Id\": \"9c57bd04-3809-40df-853a-88bab3e1c3c6\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"1fd5d308-12ba-4ca8-81d0-027ccbd71576\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 89.91141510009766, \"RowIndex\": 30, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.09005185961723328, \"Height\": 0.012227172963321209, \"Left\": 0.7263083457946777, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.5826666951179504}, {\"X\": 0.8163602352142334, \"Y\": 0.5826666951179504}, {\"X\": 0.8163602352142334, \"Y\": 0.5948938131332397}, {\"X\": 0.7263083457946777, \"Y\": 0.5948938131332397}]}, \"Id\": \"64058af4-ca17-438c-94d8-abfa18aa2d3b\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"fa0f13ab-0472-48fd-9167-f69a88cce6a4\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 87.93828582763672, \"RowIndex\": 30, \"ColumnIndex\": 7, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.07024988532066345, \"Height\": 0.012227172963321209, \"Left\": 0.8163602352142334, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.8163602352142334, \"Y\": 0.5826666951179504}, {\"X\": 0.8866100907325745, \"Y\": 0.5826666951179504}, {\"X\": 0.8866100907325745, \"Y\": 0.5948938131332397}, {\"X\": 0.8163602352142334, \"Y\": 0.5948938131332397}]}, \"Id\": \"ea5ef5ab-1d8c-4e64-b385-b2529f0c332a\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"af8e27d1-22dc-4a6b-9a30-2b1e6989cee2\"]}]}, {\"BlockType\": \"CELL\", \"Confidence\": 82.7098617553711, \"RowIndex\": 30, \"ColumnIndex\": 8, \"RowSpan\": 1, \"ColumnSpan\": 1, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.059835631400346756, \"Height\": 0.012227172963321209, \"Left\": 0.8866100907325745, \"Top\": 0.5826666951179504}, \"Polygon\": [{\"X\": 0.8866100907325745, \"Y\": 0.5826666951179504}, {\"X\": 0.9464457035064697, \"Y\": 0.5826666951179504}, {\"X\": 0.9464457035064697, \"Y\": 0.5948938131332397}, {\"X\": 0.8866100907325745, \"Y\": 0.5948938131332397}]}, \"Id\": \"109f2dbb-1ba1-4efb-b322-09b18dd0e396\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"ec6e4acb-3149-4913-992a-4736a6a82262\"]}]}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 91.97203826904297, \"RowIndex\": 1, \"ColumnIndex\": 1, \"RowSpan\": 2, \"ColumnSpan\": 2, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.4104522168636322, \"Height\": 0.05064411461353302, \"Left\": 0.09096222370862961, \"Top\": 0.14768922328948975}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.14768922328948975}, {\"X\": 0.50141441822052, \"Y\": 0.14768922328948975}, {\"X\": 0.50141441822052, \"Y\": 0.19833333790302277}, {\"X\": 0.09096222370862961, \"Y\": 0.19833333790302277}]}, \"Id\": \"e446dcc9-a06a-46aa-9edd-a6f9ae6477d1\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"58641911-afd5-438d-a48a-ec4809dc52e2\", \"8249fed8-6f72-4f54-b2b9-2f089f352311\", \"2704e75e-5b7d-4b58-8b3e-303ea965d922\", \"fff5342f-e00b-48f2-90b5-aec907e8da07\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 90.37357330322266, \"RowIndex\": 1, \"ColumnIndex\": 3, \"RowSpan\": 1, \"ColumnSpan\": 3, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22489391267299652, \"Height\": 0.021977446973323822, \"Left\": 0.50141441822052, \"Top\": 0.14768922328948975}, \"Polygon\": [{\"X\": 0.50141441822052, \"Y\": 0.14768922328948975}, {\"X\": 0.7263083457946777, \"Y\": 0.14768922328948975}, {\"X\": 0.7263083457946777, \"Y\": 0.16966666281223297}, {\"X\": 0.50141441822052, \"Y\": 0.16966666281223297}]}, \"Id\": \"e8d51aab-d410-4051-804b-457d7f007b3f\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"51ce66dd-649e-4dbd-8319-3f4a75a8fafb\", \"df524b12-f191-4b1e-be16-bd56985b7f0d\", \"2f3260d8-1495-4864-aff3-58fddaf462be\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 91.4515380859375, \"RowIndex\": 1, \"ColumnIndex\": 6, \"RowSpan\": 1, \"ColumnSpan\": 3, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.22013737261295319, \"Height\": 0.021977446973323822, \"Left\": 0.7263083457946777, \"Top\": 0.14768922328948975}, \"Polygon\": [{\"X\": 0.7263083457946777, \"Y\": 0.14768922328948975}, {\"X\": 0.9464457035064697, \"Y\": 0.14768922328948975}, {\"X\": 0.9464457035064697, \"Y\": 0.16966666281223297}, {\"X\": 0.7263083457946777, \"Y\": 0.16966666281223297}]}, \"Id\": \"f17a74a7-fe02-498d-8cc6-1385308e04bb\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"37ea4273-ec4c-42f9-a42f-831328735613\", \"96a041b5-e208-4670-b932-505912cfd605\", \"0050a990-4d03-4dce-ba11-eeee6b145362\"]}], \"EntityTypes\": [\"COLUMN_HEADER\"]}, {\"BlockType\": \"MERGED_CELL\", \"Confidence\": 82.06396484375, \"RowIndex\": 28, \"ColumnIndex\": 1, \"RowSpan\": 1, \"ColumnSpan\": 8, \"Geometry\": {\"BoundingBox\": {\"Width\": 0.8554834723472595, \"Height\": 0.014000000432133675, \"Left\": 0.09096222370862961, \"Top\": 0.5553333163261414}, \"Polygon\": [{\"X\": 0.09096222370862961, \"Y\": 0.5553333163261414}, {\"X\": 0.9464457035064697, \"Y\": 0.5553333163261414}, {\"X\": 0.9464457035064697, \"Y\": 0.5693333148956299}, {\"X\": 0.09096222370862961, \"Y\": 0.5693333148956299}]}, \"Id\": \"720f1243-ef6f-4dad-b8d6-9f48def19e67\", \"Relationships\": [{\"Type\": \"CHILD\", \"Ids\": [\"8ece7183-b392-4c07-ae53-a04481db0d00\", \"bef4103d-0bc5-4eb1-a65a-36b554138f8c\", \"b5df3964-df8e-4e33-b5ee-3f0e915ca508\", \"0b7e2ee7-1257-408e-83dd-3d6e5ccc61d8\", \"942094fa-6634-4fcf-a784-b66a9c94c73a\", \"092c4ea6-3284-4d2d-b090-b8f39b292ce9\", \"9dbba202-1796-430c-9175-8bc387925886\", \"7fe164d1-2b51-4095-af01-d49c641a42c3\"]}]}], \"AnalyzeDocumentModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"1933f053-7576-4e48-bfd9-990e1ce5f65d\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"1933f053-7576-4e48-bfd9-990e1ce5f65d\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"438413\", \"date\": \"Tue, 25 Jan 2022 19:35:47 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/tables_with_merged_cells_sample1.json",
    "content": "{\r\n    \"DocumentMetadata\": {\r\n        \"Pages\": 1\r\n    },\r\n    \"Blocks\": [\r\n        {\r\n            \"BlockType\": \"PAGE\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 1.0,\r\n                    \"Height\": 1.0,\r\n                    \"Left\": 0.0,\r\n                    \"Top\": 0.0\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 1.5849614334573464e-16,\r\n                        \"Y\": 0.0\r\n                    },\r\n                    {\r\n                        \"X\": 1.0,\r\n                        \"Y\": 9.462437987838284e-17\r\n                    },\r\n                    {\r\n                        \"X\": 1.0,\r\n                        \"Y\": 1.0\r\n                    },\r\n                    {\r\n                        \"X\": 0.0,\r\n                        \"Y\": 1.0\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7cf1b8d0-fb6e-420b-a4c4-c2129e446192\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"31dd87c7-10b7-4f17-aecd-a8487823e000\",\r\n                        \"6647c645-24e0-439a-9e86-4117c3c2934b\",\r\n                        \"309ca23f-7b26-4ec3-bc42-710ab512a1d6\",\r\n                        \"d47af8c0-099e-4350-9999-0e1ec6fa7fbb\",\r\n                        \"da647661-cf02-4cb8-b752-cc60b926c3f1\",\r\n                        \"9ab29daa-9ec4-43b9-9d16-e2e5c340a545\",\r\n                        \"58f21db4-354d-49f9-a127-1d99a9b43bed\",\r\n                        \"0b7d7451-06ca-4847-b712-44b60334660f\",\r\n                        \"5fe5669d-44b4-49b4-87ef-3cae79e2e9c1\",\r\n                        \"518708aa-eee4-4d4e-a134-819df43ffb02\",\r\n                        \"af836ce8-2a99-4ff2-9e0b-0b4933661cab\",\r\n                        \"eb91ae92-d791-4e82-9dd9-a1a25d010e9c\",\r\n                        \"6948b7fd-ebf9-40ed-b62b-42f45bfb1109\",\r\n                        \"94251a72-4420-498e-b501-4a4c984bacd0\",\r\n                        \"3b36d999-0017-4fe7-b75f-815899b02890\",\r\n                        \"db2f31cb-a12d-4ec7-94e1-6b49c72d66fc\",\r\n                        \"9ed410e2-487c-47c2-a962-eb5d6abad5d1\",\r\n                        \"fb8db54b-b636-4cad-9472-49b3b2585cb5\",\r\n                        \"1652ba8a-ee1a-44c4-8a78-c47765b7630f\",\r\n                        \"f192893f-c1ee-4b5d-b195-db17bd46bd90\",\r\n                        \"f7f780ac-df63-40b4-a04b-fa072129f774\",\r\n                        \"42232723-75bc-4f8a-b992-c191212d1ba1\",\r\n                        \"a506089c-a2e0-4427-b272-b126bc07de86\",\r\n                        \"3e6a8573-8328-4331-ab04-d9bccaec5de7\",\r\n                        \"d0487c27-43e6-4abc-9dae-287d406e1f45\",\r\n                        \"e8a8ee89-696b-4913-a65b-ec315c0fa895\",\r\n                        \"4f9fd9f3-7864-47a3-acb0-77031b972ddf\",\r\n                        \"617594a0-b067-41f0-b039-262afba77c6e\",\r\n                        \"1266c101-67ea-48c2-9615-0ee6622a0fc2\",\r\n                        \"107fc8a0-969b-4c48-908b-6ba21ae56fb4\",\r\n                        \"42163dfa-703c-4be5-bfd7-32c3321b6a26\",\r\n                        \"be04f42e-d264-48f6-9c95-c2c069de6e9e\",\r\n                        \"efedacfe-dd88-4f9c-a63c-849ca977e915\",\r\n                        \"ed87e485-052f-4f7f-bb0a-b80ec06c3fbd\",\r\n                        \"52a80749-29c9-4f9c-8d05-dda00ccf4a48\",\r\n                        \"9f6bcbf5-d319-4c8f-b0c6-b17067962808\",\r\n                        \"207285ee-da06-46a3-9356-5895ba4be3ba\",\r\n                        \"092bccee-48dc-4419-8e22-415b846e314b\",\r\n                        \"521b1ed8-b2db-4b28-b7fa-da014b9d72f0\",\r\n                        \"446ca544-b460-4f69-9a6e-f3d942cdd920\",\r\n                        \"f029b309-df85-46d1-8e24-0b840a20f657\",\r\n                        \"49c56ade-5824-4b21-8437-70cb7b880328\",\r\n                        \"5f283481-8137-43ec-b600-98977bb5b4cc\",\r\n                        \"a3e192ed-5ab7-4b3b-897e-c86f2d92e386\",\r\n                        \"dc429733-e5ae-4ce4-9474-0fda7a022ca6\",\r\n                        \"bdb96ffa-dcf0-41a6-880c-5e3e90429b08\",\r\n                        \"25f70790-1517-463d-a292-e06fab38a5d1\",\r\n                        \"99179598-77d0-426a-bff3-a510c7130c65\",\r\n                        \"cc2da7d9-af1c-451d-9a40-e96d15bdba87\",\r\n                        \"5f6fb0d1-4d6a-4390-90ab-f8da1af88710\",\r\n                        \"09920942-13ab-413f-817b-2d5e049da232\",\r\n                        \"23a61660-603f-40b5-95d2-2542ac210b0b\",\r\n                        \"7e5ef053-208b-458b-9331-df52c7a7c165\",\r\n                        \"58699d86-46e9-421c-acd9-3f5378f9bde5\",\r\n                        \"e65b2f4c-8114-4143-84b8-c152b1cb989d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.82563018798828,\r\n            \"Text\": \"INVOICE\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.26049885153770447,\r\n                    \"Height\": 0.03977091610431671,\r\n                    \"Left\": 0.32055777311325073,\r\n                    \"Top\": 0.10118167847394943\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.32055777311325073,\r\n                        \"Y\": 0.10118167847394943\r\n                    },\r\n                    {\r\n                        \"X\": 0.5810566544532776,\r\n                        \"Y\": 0.10118167847394943\r\n                    },\r\n                    {\r\n                        \"X\": 0.5810566544532776,\r\n                        \"Y\": 0.14095260202884674\r\n                    },\r\n                    {\r\n                        \"X\": 0.32055777311325073,\r\n                        \"Y\": 0.14095260202884674\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"31dd87c7-10b7-4f17-aecd-a8487823e000\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"0d88ed26-31a1-4f5d-a14d-1029364582b8\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.75920867919922,\r\n            \"Text\": \"Bill To\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04621436819434166,\r\n                    \"Height\": 0.010836263187229633,\r\n                    \"Left\": 0.17217542231082916,\r\n                    \"Top\": 0.19985733926296234\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.17217542231082916,\r\n                        \"Y\": 0.19985733926296234\r\n                    },\r\n                    {\r\n                        \"X\": 0.21838979423046112,\r\n                        \"Y\": 0.19985733926296234\r\n                    },\r\n                    {\r\n                        \"X\": 0.21838979423046112,\r\n                        \"Y\": 0.2106935977935791\r\n                    },\r\n                    {\r\n                        \"X\": 0.17217542231082916,\r\n                        \"Y\": 0.2106935977935791\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6647c645-24e0-439a-9e86-4117c3c2934b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c78fc78e-05af-40a7-a33a-78bea855878d\",\r\n                        \"27b54de6-2954-4a48-87f0-ddce1efd255d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.64566802978516,\r\n            \"Text\": \"Company\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07150613516569138,\r\n                    \"Height\": 0.012625854462385178,\r\n                    \"Left\": 0.08584091812372208,\r\n                    \"Top\": 0.21860341727733612\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08584091812372208,\r\n                        \"Y\": 0.21860341727733612\r\n                    },\r\n                    {\r\n                        \"X\": 0.15734705328941345,\r\n                        \"Y\": 0.21860341727733612\r\n                    },\r\n                    {\r\n                        \"X\": 0.15734705328941345,\r\n                        \"Y\": 0.2312292754650116\r\n                    },\r\n                    {\r\n                        \"X\": 0.08584091812372208,\r\n                        \"Y\": 0.2312292754650116\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"309ca23f-7b26-4ec3-bc42-710ab512a1d6\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"0ec7d841-e1a7-429a-9a3b-ee6162580f3e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.50707244873047,\r\n            \"Text\": \"ACME Corp\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08333215862512589,\r\n                    \"Height\": 0.012502217665314674,\r\n                    \"Left\": 0.30891111493110657,\r\n                    \"Top\": 0.21858109533786774\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30891111493110657,\r\n                        \"Y\": 0.21858109533786774\r\n                    },\r\n                    {\r\n                        \"X\": 0.39224326610565186,\r\n                        \"Y\": 0.21858109533786774\r\n                    },\r\n                    {\r\n                        \"X\": 0.39224326610565186,\r\n                        \"Y\": 0.23108331859111786\r\n                    },\r\n                    {\r\n                        \"X\": 0.30891111493110657,\r\n                        \"Y\": 0.23108331859111786\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d47af8c0-099e-4350-9999-0e1ec6fa7fbb\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"89fe7305-7e2d-47c3-8277-5fe9bec54a72\",\r\n                        \"e8f93732-786b-4a40-afab-4c9c495a029a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.77835083007812,\r\n            \"Text\": \"Address\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.060402870178222656,\r\n                    \"Height\": 0.010800028219819069,\r\n                    \"Left\": 0.0857190191745758,\r\n                    \"Top\": 0.23657137155532837\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.0857190191745758,\r\n                        \"Y\": 0.23657137155532837\r\n                    },\r\n                    {\r\n                        \"X\": 0.14612188935279846,\r\n                        \"Y\": 0.23657137155532837\r\n                    },\r\n                    {\r\n                        \"X\": 0.14612188935279846,\r\n                        \"Y\": 0.24737140536308289\r\n                    },\r\n                    {\r\n                        \"X\": 0.0857190191745758,\r\n                        \"Y\": 0.24737140536308289\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"da647661-cf02-4cb8-b752-cc60b926c3f1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b98db8bb-dc56-48bf-a592-0d653eddd087\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.19317626953125,\r\n            \"Text\": \"240 Cool Street, SpringField, IL\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.22422637045383453,\r\n                    \"Height\": 0.012878702953457832,\r\n                    \"Left\": 0.30934566259384155,\r\n                    \"Top\": 0.23666313290596008\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30934566259384155,\r\n                        \"Y\": 0.23666313290596008\r\n                    },\r\n                    {\r\n                        \"X\": 0.5335720181465149,\r\n                        \"Y\": 0.23666313290596008\r\n                    },\r\n                    {\r\n                        \"X\": 0.5335720181465149,\r\n                        \"Y\": 0.24954183399677277\r\n                    },\r\n                    {\r\n                        \"X\": 0.30934566259384155,\r\n                        \"Y\": 0.24954183399677277\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9ab29daa-9ec4-43b9-9d16-e2e5c340a545\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"ab7e972b-7430-413a-b434-6a3132cf4c86\",\r\n                        \"03d5eaf1-ff7d-4270-bc77-a7299db3b508\",\r\n                        \"cde41f66-c8b7-46c1-8762-09afd9bab1bb\",\r\n                        \"31ff7af2-612a-4c87-8afd-31841b7ac2c2\",\r\n                        \"52cd56c2-9645-4806-bdc9-ac15d5e253e2\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.83867645263672,\r\n            \"Text\": \"Time Period\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09091246873140335,\r\n                    \"Height\": 0.010503499768674374,\r\n                    \"Left\": 0.14925265312194824,\r\n                    \"Top\": 0.291593998670578\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.14925265312194824,\r\n                        \"Y\": 0.291593998670578\r\n                    },\r\n                    {\r\n                        \"X\": 0.2401651293039322,\r\n                        \"Y\": 0.291593998670578\r\n                    },\r\n                    {\r\n                        \"X\": 0.2401651293039322,\r\n                        \"Y\": 0.30209749937057495\r\n                    },\r\n                    {\r\n                        \"X\": 0.14925265312194824,\r\n                        \"Y\": 0.30209749937057495\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"58f21db4-354d-49f9-a127-1d99a9b43bed\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"49e208d7-a704-4198-bd58-358928ee983e\",\r\n                        \"94b5e3b5-9de7-4afc-9d8c-6f46d2b304ac\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.65093994140625,\r\n            \"Text\": \"Start Date\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07624123245477676,\r\n                    \"Height\": 0.010245890356600285,\r\n                    \"Left\": 0.08577243238687515,\r\n                    \"Top\": 0.31036823987960815\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08577243238687515,\r\n                        \"Y\": 0.31036823987960815\r\n                    },\r\n                    {\r\n                        \"X\": 0.16201366484165192,\r\n                        \"Y\": 0.31036823987960815\r\n                    },\r\n                    {\r\n                        \"X\": 0.16201366484165192,\r\n                        \"Y\": 0.32061412930488586\r\n                    },\r\n                    {\r\n                        \"X\": 0.08577243238687515,\r\n                        \"Y\": 0.32061412930488586\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0b7d7451-06ca-4847-b712-44b60334660f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5446f760-49a3-43ca-a355-e42e86f06fbb\",\r\n                        \"7817404e-090c-4bb4-970b-f7e842215e63\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.19534301757812,\r\n            \"Text\": \"Monday, February 28, 2022\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.20186862349510193,\r\n                    \"Height\": 0.012741231359541416,\r\n                    \"Left\": 0.3095684349536896,\r\n                    \"Top\": 0.3101070821285248\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3095684349536896,\r\n                        \"Y\": 0.3101070821285248\r\n                    },\r\n                    {\r\n                        \"X\": 0.5114370584487915,\r\n                        \"Y\": 0.3101070821285248\r\n                    },\r\n                    {\r\n                        \"X\": 0.5114370584487915,\r\n                        \"Y\": 0.3228483200073242\r\n                    },\r\n                    {\r\n                        \"X\": 0.3095684349536896,\r\n                        \"Y\": 0.3228483200073242\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5fe5669d-44b4-49b4-87ef-3cae79e2e9c1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"50732070-543f-43fd-8e1e-8e274bc3e10b\",\r\n                        \"cda9a244-feba-490b-9ca8-421639b372cc\",\r\n                        \"9ec3f55c-ac6d-42ef-8164-f7aa56e2dad5\",\r\n                        \"be215911-f7ba-4dc2-b29b-690e9fe5face\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.65377807617188,\r\n            \"Text\": \"End Date\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0676255151629448,\r\n                    \"Height\": 0.010382751002907753,\r\n                    \"Left\": 0.08630545437335968,\r\n                    \"Top\": 0.32825061678886414\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08630545437335968,\r\n                        \"Y\": 0.32825061678886414\r\n                    },\r\n                    {\r\n                        \"X\": 0.15393096208572388,\r\n                        \"Y\": 0.32825061678886414\r\n                    },\r\n                    {\r\n                        \"X\": 0.15393096208572388,\r\n                        \"Y\": 0.33863335847854614\r\n                    },\r\n                    {\r\n                        \"X\": 0.08630545437335968,\r\n                        \"Y\": 0.33863335847854614\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"518708aa-eee4-4d4e-a134-819df43ffb02\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"98bd7d9e-9f8e-47d6-9c58-c943a5ba960a\",\r\n                        \"04cd21b2-cb12-4177-837e-509f4c07ebcb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.71251678466797,\r\n            \"Text\": \"Friday, March 04, 2022\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1682456135749817,\r\n                    \"Height\": 0.012595906853675842,\r\n                    \"Left\": 0.3091888427734375,\r\n                    \"Top\": 0.3284091055393219\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3091888427734375,\r\n                        \"Y\": 0.3284091055393219\r\n                    },\r\n                    {\r\n                        \"X\": 0.4774344861507416,\r\n                        \"Y\": 0.3284091055393219\r\n                    },\r\n                    {\r\n                        \"X\": 0.4774344861507416,\r\n                        \"Y\": 0.34100502729415894\r\n                    },\r\n                    {\r\n                        \"X\": 0.3091888427734375,\r\n                        \"Y\": 0.34100502729415894\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"af836ce8-2a99-4ff2-9e0b-0b4933661cab\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b4d0fa73-c7f1-4e45-b71a-9b1086a174d5\",\r\n                        \"2bbcee1e-f4c0-40e5-baa0-54c434145afd\",\r\n                        \"9de38f23-b912-4645-823a-087503fe2d76\",\r\n                        \"55a158fd-f61d-41b9-bbd1-c12b710192a5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.28592681884766,\r\n            \"Text\": \"Details\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05145998299121857,\r\n                    \"Height\": 0.010447184555232525,\r\n                    \"Left\": 0.16969650983810425,\r\n                    \"Top\": 0.3834686279296875\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.16969650983810425,\r\n                        \"Y\": 0.3834686279296875\r\n                    },\r\n                    {\r\n                        \"X\": 0.22115649282932281,\r\n                        \"Y\": 0.3834686279296875\r\n                    },\r\n                    {\r\n                        \"X\": 0.22115649282932281,\r\n                        \"Y\": 0.3939158022403717\r\n                    },\r\n                    {\r\n                        \"X\": 0.16969650983810425,\r\n                        \"Y\": 0.3939158022403717\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"eb91ae92-d791-4e82-9dd9-a1a25d010e9c\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"10278125-8920-447c-a9fb-68cc53155e8d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.78530883789062,\r\n            \"Text\": \"Date\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03483673185110092,\r\n                    \"Height\": 0.009999348782002926,\r\n                    \"Left\": 0.08656188100576401,\r\n                    \"Top\": 0.4016673266887665\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08656188100576401,\r\n                        \"Y\": 0.4016673266887665\r\n                    },\r\n                    {\r\n                        \"X\": 0.12139861285686493,\r\n                        \"Y\": 0.4016673266887665\r\n                    },\r\n                    {\r\n                        \"X\": 0.12139861285686493,\r\n                        \"Y\": 0.4116666615009308\r\n                    },\r\n                    {\r\n                        \"X\": 0.08656188100576401,\r\n                        \"Y\": 0.4116666615009308\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6948b7fd-ebf9-40ed-b62b-42f45bfb1109\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"976f321a-0079-4ac5-8cfa-3931f6d25721\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.75142669677734,\r\n            \"Text\": \"Work Type\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08176688849925995,\r\n                    \"Height\": 0.012750528752803802,\r\n                    \"Left\": 0.30898991227149963,\r\n                    \"Top\": 0.40142157673835754\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30898991227149963,\r\n                        \"Y\": 0.40142157673835754\r\n                    },\r\n                    {\r\n                        \"X\": 0.3907568156719208,\r\n                        \"Y\": 0.40142157673835754\r\n                    },\r\n                    {\r\n                        \"X\": 0.3907568156719208,\r\n                        \"Y\": 0.41417211294174194\r\n                    },\r\n                    {\r\n                        \"X\": 0.30898991227149963,\r\n                        \"Y\": 0.41417211294174194\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"94251a72-4420-498e-b501-4a4c984bacd0\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"58627ea4-5571-4714-b335-62bf559330b9\",\r\n                        \"1afd8415-1391-47a2-99d6-7dcba575ed12\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.49153900146484,\r\n            \"Text\": \"Work Hours\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08968792110681534,\r\n                    \"Height\": 0.010394572280347347,\r\n                    \"Left\": 0.45950645208358765,\r\n                    \"Top\": 0.4013863205909729\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45950645208358765,\r\n                        \"Y\": 0.4013863205909729\r\n                    },\r\n                    {\r\n                        \"X\": 0.5491943955421448,\r\n                        \"Y\": 0.4013863205909729\r\n                    },\r\n                    {\r\n                        \"X\": 0.5491943955421448,\r\n                        \"Y\": 0.4117808938026428\r\n                    },\r\n                    {\r\n                        \"X\": 0.45950645208358765,\r\n                        \"Y\": 0.4117808938026428\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3b36d999-0017-4fe7-b75f-815899b02890\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"57ddc909-afee-4588-b51e-087c92397690\",\r\n                        \"40651346-7711-4c98-a6d8-50e859aa6255\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.8449478149414,\r\n            \"Text\": \"Hourly Rate\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08856774866580963,\r\n                    \"Height\": 0.01283219363540411,\r\n                    \"Left\": 0.6141788363456726,\r\n                    \"Top\": 0.4011778235435486\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6141788363456726,\r\n                        \"Y\": 0.4011778235435486\r\n                    },\r\n                    {\r\n                        \"X\": 0.702746570110321,\r\n                        \"Y\": 0.4011778235435486\r\n                    },\r\n                    {\r\n                        \"X\": 0.702746570110321,\r\n                        \"Y\": 0.41401001811027527\r\n                    },\r\n                    {\r\n                        \"X\": 0.6141788363456726,\r\n                        \"Y\": 0.41401001811027527\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"db2f31cb-a12d-4ec7-94e1-6b49c72d66fc\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"601d91eb-888a-491b-98ff-3497a8866fd4\",\r\n                        \"a63a8c42-205c-44e9-80f8-190e5eae682d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.84886932373047,\r\n            \"Text\": \"Total\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.037921737879514694,\r\n                    \"Height\": 0.010062540881335735,\r\n                    \"Left\": 0.74726402759552,\r\n                    \"Top\": 0.4014986455440521\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.74726402759552,\r\n                        \"Y\": 0.4014986455440521\r\n                    },\r\n                    {\r\n                        \"X\": 0.7851858139038086,\r\n                        \"Y\": 0.4014986455440521\r\n                    },\r\n                    {\r\n                        \"X\": 0.7851858139038086,\r\n                        \"Y\": 0.41156119108200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.74726402759552,\r\n                        \"Y\": 0.41156119108200073\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9ed410e2-487c-47c2-a962-eb5d6abad5d1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"6929d51a-8d1d-4cf7-a826-164a09f8e132\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.34265899658203,\r\n            \"Text\": \"Monday, February 28, 2022\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.20195065438747406,\r\n                    \"Height\": 0.012897826731204987,\r\n                    \"Left\": 0.08643510937690735,\r\n                    \"Top\": 0.42110100388526917\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08643510937690735,\r\n                        \"Y\": 0.42110100388526917\r\n                    },\r\n                    {\r\n                        \"X\": 0.2883857786655426,\r\n                        \"Y\": 0.42110100388526917\r\n                    },\r\n                    {\r\n                        \"X\": 0.2883857786655426,\r\n                        \"Y\": 0.43399882316589355\r\n                    },\r\n                    {\r\n                        \"X\": 0.08643510937690735,\r\n                        \"Y\": 0.43399882316589355\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"fb8db54b-b636-4cad-9472-49b3b2585cb5\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"afd7e61b-807e-49ff-ac2e-1906e6651db0\",\r\n                        \"626d0aa1-8b4c-4a76-88bb-30cd76f9a2fc\",\r\n                        \"f2f06ff8-bb05-434a-9328-91dcb572c758\",\r\n                        \"3b4d8be7-a8c8-4953-9f38-007824cb566d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.32134246826172,\r\n            \"Text\": \"1\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008404156193137169,\r\n                    \"Height\": 0.009805013425648212,\r\n                    \"Left\": 0.444796085357666,\r\n                    \"Top\": 0.4220995306968689\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.444796085357666,\r\n                        \"Y\": 0.4220995306968689\r\n                    },\r\n                    {\r\n                        \"X\": 0.45320025086402893,\r\n                        \"Y\": 0.4220995306968689\r\n                    },\r\n                    {\r\n                        \"X\": 0.45320025086402893,\r\n                        \"Y\": 0.43190455436706543\r\n                    },\r\n                    {\r\n                        \"X\": 0.444796085357666,\r\n                        \"Y\": 0.43190455436706543\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1652ba8a-ee1a-44c4-8a78-c47765b7630f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e765ce17-0305-44d5-9205-bd9d55783575\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.79103088378906,\r\n            \"Text\": \"3\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008123047649860382,\r\n                    \"Height\": 0.009862752631306648,\r\n                    \"Left\": 0.5952696800231934,\r\n                    \"Top\": 0.4220588505268097\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5952696800231934,\r\n                        \"Y\": 0.4220588505268097\r\n                    },\r\n                    {\r\n                        \"X\": 0.6033927202224731,\r\n                        \"Y\": 0.4220588505268097\r\n                    },\r\n                    {\r\n                        \"X\": 0.6033927202224731,\r\n                        \"Y\": 0.4319216012954712\r\n                    },\r\n                    {\r\n                        \"X\": 0.5952696800231934,\r\n                        \"Y\": 0.4319216012954712\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f192893f-c1ee-4b5d-b195-db17bd46bd90\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"fafb0e5a-98a0-4700-8215-89b265962817\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.90142822265625,\r\n            \"Text\": \"$\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008588683791458607,\r\n                    \"Height\": 0.012303873896598816,\r\n                    \"Left\": 0.6159929037094116,\r\n                    \"Top\": 0.4209756553173065\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6159929037094116,\r\n                        \"Y\": 0.4209756553173065\r\n                    },\r\n                    {\r\n                        \"X\": 0.6245815753936768,\r\n                        \"Y\": 0.4209756553173065\r\n                    },\r\n                    {\r\n                        \"X\": 0.6245815753936768,\r\n                        \"Y\": 0.43327954411506653\r\n                    },\r\n                    {\r\n                        \"X\": 0.6159929037094116,\r\n                        \"Y\": 0.43327954411506653\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f7f780ac-df63-40b4-a04b-fa072129f774\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"32ffbac0-75f9-437a-9d7c-de6fc0d9cf8e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.89640808105469,\r\n            \"Text\": \"40.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041423700749874115,\r\n                    \"Height\": 0.010154500603675842,\r\n                    \"Left\": 0.6940341591835022,\r\n                    \"Top\": 0.4218980371952057\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6940341591835022,\r\n                        \"Y\": 0.4218980371952057\r\n                    },\r\n                    {\r\n                        \"X\": 0.7354578971862793,\r\n                        \"Y\": 0.4218980371952057\r\n                    },\r\n                    {\r\n                        \"X\": 0.7354578971862793,\r\n                        \"Y\": 0.43205252289772034\r\n                    },\r\n                    {\r\n                        \"X\": 0.6940341591835022,\r\n                        \"Y\": 0.43205252289772034\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"42232723-75bc-4f8a-b992-c191212d1ba1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"51b249f5-51d4-409e-9e0c-64c29eb0c3c2\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.85464477539062,\r\n            \"Text\": \"$ 120.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07025783509016037,\r\n                    \"Height\": 0.012341837398707867,\r\n                    \"Left\": 0.7532420754432678,\r\n                    \"Top\": 0.4211164116859436\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7532420754432678,\r\n                        \"Y\": 0.4211164116859436\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234999179840088,\r\n                        \"Y\": 0.4211164116859436\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234999179840088,\r\n                        \"Y\": 0.43345823884010315\r\n                    },\r\n                    {\r\n                        \"X\": 0.7532420754432678,\r\n                        \"Y\": 0.43345823884010315\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a506089c-a2e0-4427-b272-b126bc07de86\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e5c7519d-6d5e-43e8-8142-4b64a852a40d\",\r\n                        \"ca482aed-48ee-4eeb-9a36-51c866d4d7a4\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.795166015625,\r\n            \"Text\": \"2\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00908518023788929,\r\n                    \"Height\": 0.009943277575075626,\r\n                    \"Left\": 0.4445412755012512,\r\n                    \"Top\": 0.44017550349235535\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4445412755012512,\r\n                        \"Y\": 0.44017550349235535\r\n                    },\r\n                    {\r\n                        \"X\": 0.45362645387649536,\r\n                        \"Y\": 0.44017550349235535\r\n                    },\r\n                    {\r\n                        \"X\": 0.45362645387649536,\r\n                        \"Y\": 0.4501187801361084\r\n                    },\r\n                    {\r\n                        \"X\": 0.4445412755012512,\r\n                        \"Y\": 0.4501187801361084\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3e6a8573-8328-4331-ab04-d9bccaec5de7\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"510be532-246a-4fb9-9ff3-3f0294f32cbb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.8956527709961,\r\n            \"Text\": \"5\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008046792820096016,\r\n                    \"Height\": 0.010074462741613388,\r\n                    \"Left\": 0.5952693223953247,\r\n                    \"Top\": 0.4401765465736389\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5952693223953247,\r\n                        \"Y\": 0.4401765465736389\r\n                    },\r\n                    {\r\n                        \"X\": 0.603316068649292,\r\n                        \"Y\": 0.4401765465736389\r\n                    },\r\n                    {\r\n                        \"X\": 0.603316068649292,\r\n                        \"Y\": 0.4502510130405426\r\n                    },\r\n                    {\r\n                        \"X\": 0.5952693223953247,\r\n                        \"Y\": 0.4502510130405426\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d0487c27-43e6-4abc-9dae-287d406e1f45\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"f5cdf05c-a198-4e9a-8ff1-d48dd7b7e46a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.92182922363281,\r\n            \"Text\": \"$\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008436121977865696,\r\n                    \"Height\": 0.012302042916417122,\r\n                    \"Left\": 0.6160159707069397,\r\n                    \"Top\": 0.43907442688941956\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6160159707069397,\r\n                        \"Y\": 0.43907442688941956\r\n                    },\r\n                    {\r\n                        \"X\": 0.6244521141052246,\r\n                        \"Y\": 0.43907442688941956\r\n                    },\r\n                    {\r\n                        \"X\": 0.6244521141052246,\r\n                        \"Y\": 0.45137646794319153\r\n                    },\r\n                    {\r\n                        \"X\": 0.6160159707069397,\r\n                        \"Y\": 0.45137646794319153\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e8a8ee89-696b-4913-a65b-ec315c0fa895\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"53bfa876-64ff-4359-b6ec-2977176fe80a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.82459259033203,\r\n            \"Text\": \"10.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.040638670325279236,\r\n                    \"Height\": 0.010007853619754314,\r\n                    \"Left\": 0.6950135827064514,\r\n                    \"Top\": 0.4401998221874237\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6950135827064514,\r\n                        \"Y\": 0.4401998221874237\r\n                    },\r\n                    {\r\n                        \"X\": 0.7356522679328918,\r\n                        \"Y\": 0.4401998221874237\r\n                    },\r\n                    {\r\n                        \"X\": 0.7356522679328918,\r\n                        \"Y\": 0.4502076804637909\r\n                    },\r\n                    {\r\n                        \"X\": 0.6950135827064514,\r\n                        \"Y\": 0.4502076804637909\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4f9fd9f3-7864-47a3-acb0-77031b972ddf\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d37ad0a1-b2b2-406f-8147-7aaa9bf084fc\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.67478942871094,\r\n            \"Text\": \"$ 50.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0692695826292038,\r\n                    \"Height\": 0.012345743365585804,\r\n                    \"Left\": 0.7534511089324951,\r\n                    \"Top\": 0.4391815662384033\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7534511089324951,\r\n                        \"Y\": 0.4391815662384033\r\n                    },\r\n                    {\r\n                        \"X\": 0.8227206468582153,\r\n                        \"Y\": 0.4391815662384033\r\n                    },\r\n                    {\r\n                        \"X\": 0.8227206468582153,\r\n                        \"Y\": 0.45152729749679565\r\n                    },\r\n                    {\r\n                        \"X\": 0.7534511089324951,\r\n                        \"Y\": 0.45152729749679565\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"617594a0-b067-41f0-b039-262afba77c6e\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"3daf02f4-8117-4834-81ec-9bba316aa683\",\r\n                        \"c0e6161c-2800-40da-8a67-bda82bc2930f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.72418975830078,\r\n            \"Text\": \"Tuesday, March 01, 2022\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.18464337289333344,\r\n                    \"Height\": 0.013004557229578495,\r\n                    \"Left\": 0.08547364175319672,\r\n                    \"Top\": 0.458418607711792\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08547364175319672,\r\n                        \"Y\": 0.458418607711792\r\n                    },\r\n                    {\r\n                        \"X\": 0.27011701464653015,\r\n                        \"Y\": 0.458418607711792\r\n                    },\r\n                    {\r\n                        \"X\": 0.27011701464653015,\r\n                        \"Y\": 0.4714231789112091\r\n                    },\r\n                    {\r\n                        \"X\": 0.08547364175319672,\r\n                        \"Y\": 0.4714231789112091\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1266c101-67ea-48c2-9615-0ee6622a0fc2\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"33ae1ef2-474b-464e-9321-4ffa343b253b\",\r\n                        \"14d3acbc-5b52-42ab-ba8d-d4033d209cb8\",\r\n                        \"28ce313d-73ca-4d7e-af22-ee0e4c275a16\",\r\n                        \"e023bcd3-2bf4-43fc-9b75-7a341e19311f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.8305435180664,\r\n            \"Text\": \"1\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.007995447143912315,\r\n                    \"Height\": 0.009816202335059643,\r\n                    \"Left\": 0.4447425305843353,\r\n                    \"Top\": 0.4586544334888458\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4447425305843353,\r\n                        \"Y\": 0.4586544334888458\r\n                    },\r\n                    {\r\n                        \"X\": 0.4527379870414734,\r\n                        \"Y\": 0.4586544334888458\r\n                    },\r\n                    {\r\n                        \"X\": 0.4527379870414734,\r\n                        \"Y\": 0.46847063302993774\r\n                    },\r\n                    {\r\n                        \"X\": 0.4447425305843353,\r\n                        \"Y\": 0.46847063302993774\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"107fc8a0-969b-4c48-908b-6ba21ae56fb4\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5a804662-e654-4dd3-996e-4fed73f1be55\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.7388687133789,\r\n            \"Text\": \"4\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.009168543852865696,\r\n                    \"Height\": 0.009498941712081432,\r\n                    \"Left\": 0.5947994589805603,\r\n                    \"Top\": 0.45889249444007874\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5947994589805603,\r\n                        \"Y\": 0.45889249444007874\r\n                    },\r\n                    {\r\n                        \"X\": 0.6039679646492004,\r\n                        \"Y\": 0.45889249444007874\r\n                    },\r\n                    {\r\n                        \"X\": 0.6039679646492004,\r\n                        \"Y\": 0.46839144825935364\r\n                    },\r\n                    {\r\n                        \"X\": 0.5947994589805603,\r\n                        \"Y\": 0.46839144825935364\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"42163dfa-703c-4be5-bfd7-32c3321b6a26\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4f3abace-b5e7-411a-8cd3-cbe9fdcff20d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.906982421875,\r\n            \"Text\": \"$\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008323583751916885,\r\n                    \"Height\": 0.011894327588379383,\r\n                    \"Left\": 0.6159878373146057,\r\n                    \"Top\": 0.4576685428619385\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6159878373146057,\r\n                        \"Y\": 0.4576685428619385\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243113875389099,\r\n                        \"Y\": 0.4576685428619385\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243113875389099,\r\n                        \"Y\": 0.4695628583431244\r\n                    },\r\n                    {\r\n                        \"X\": 0.6159878373146057,\r\n                        \"Y\": 0.4695628583431244\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"be04f42e-d264-48f6-9c95-c2c069de6e9e\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"76a4a8aa-9e61-4709-9426-c1142076e82e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.87181091308594,\r\n            \"Text\": \"40.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041494954377412796,\r\n                    \"Height\": 0.010230916552245617,\r\n                    \"Left\": 0.6940645575523376,\r\n                    \"Top\": 0.4586245119571686\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6940645575523376,\r\n                        \"Y\": 0.4586245119571686\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355595231056213,\r\n                        \"Y\": 0.4586245119571686\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355595231056213,\r\n                        \"Y\": 0.46885544061660767\r\n                    },\r\n                    {\r\n                        \"X\": 0.6940645575523376,\r\n                        \"Y\": 0.46885544061660767\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"efedacfe-dd88-4f9c-a63c-849ca977e915\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"6fb70315-37b2-4de9-b0d5-89b0de8f7006\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.58524322509766,\r\n            \"Text\": \"$ 160.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07009158283472061,\r\n                    \"Height\": 0.011429402977228165,\r\n                    \"Left\": 0.7533506155014038,\r\n                    \"Top\": 0.45799657702445984\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7533506155014038,\r\n                        \"Y\": 0.45799657702445984\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234422206878662,\r\n                        \"Y\": 0.45799657702445984\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234422206878662,\r\n                        \"Y\": 0.4694259762763977\r\n                    },\r\n                    {\r\n                        \"X\": 0.7533506155014038,\r\n                        \"Y\": 0.4694259762763977\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ed87e485-052f-4f7f-bb0a-b80ec06c3fbd\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"98ac9164-de48-48eb-893e-0c4621913518\",\r\n                        \"a03889a6-3396-4994-b362-fb4f846fb9ee\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.79132080078125,\r\n            \"Text\": \"3\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00849083811044693,\r\n                    \"Height\": 0.00982202123850584,\r\n                    \"Left\": 0.4445054531097412,\r\n                    \"Top\": 0.47684985399246216\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4445054531097412,\r\n                        \"Y\": 0.47684985399246216\r\n                    },\r\n                    {\r\n                        \"X\": 0.45299628376960754,\r\n                        \"Y\": 0.47684985399246216\r\n                    },\r\n                    {\r\n                        \"X\": 0.45299628376960754,\r\n                        \"Y\": 0.4866718649864197\r\n                    },\r\n                    {\r\n                        \"X\": 0.4445054531097412,\r\n                        \"Y\": 0.4866718649864197\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"52a80749-29c9-4f9c-8d05-dda00ccf4a48\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"ac0e6b8a-1227-4ff8-b74a-742a41f8f185\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.87987518310547,\r\n            \"Text\": \"10\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.017758861184120178,\r\n                    \"Height\": 0.009806600399315357,\r\n                    \"Left\": 0.5860334634780884,\r\n                    \"Top\": 0.47694331407546997\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5860334634780884,\r\n                        \"Y\": 0.47694331407546997\r\n                    },\r\n                    {\r\n                        \"X\": 0.6037923097610474,\r\n                        \"Y\": 0.47694331407546997\r\n                    },\r\n                    {\r\n                        \"X\": 0.6037923097610474,\r\n                        \"Y\": 0.48674991726875305\r\n                    },\r\n                    {\r\n                        \"X\": 0.5860334634780884,\r\n                        \"Y\": 0.48674991726875305\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9f6bcbf5-d319-4c8f-b0c6-b17067962808\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4e23f074-c3c1-4b52-9520-14823ad561f4\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.92591094970703,\r\n            \"Text\": \"$\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008223947137594223,\r\n                    \"Height\": 0.012696451507508755,\r\n                    \"Left\": 0.6161134839057922,\r\n                    \"Top\": 0.4756743609905243\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6161134839057922,\r\n                        \"Y\": 0.4756743609905243\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243374347686768,\r\n                        \"Y\": 0.4756743609905243\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243374347686768,\r\n                        \"Y\": 0.488370805978775\r\n                    },\r\n                    {\r\n                        \"X\": 0.6161134839057922,\r\n                        \"Y\": 0.488370805978775\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"207285ee-da06-46a3-9356-5895ba4be3ba\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"7948502b-886b-4f85-94a5-d3143aac886c\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.80671691894531,\r\n            \"Text\": \"25.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.040999773889780045,\r\n                    \"Height\": 0.010116984136402607,\r\n                    \"Left\": 0.6948167681694031,\r\n                    \"Top\": 0.47678232192993164\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6948167681694031,\r\n                        \"Y\": 0.47678232192993164\r\n                    },\r\n                    {\r\n                        \"X\": 0.7358165383338928,\r\n                        \"Y\": 0.47678232192993164\r\n                    },\r\n                    {\r\n                        \"X\": 0.7358165383338928,\r\n                        \"Y\": 0.4868992865085602\r\n                    },\r\n                    {\r\n                        \"X\": 0.6948167681694031,\r\n                        \"Y\": 0.4868992865085602\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"092bccee-48dc-4419-8e22-415b846e314b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b89e49fd-c1c3-4de7-9e9a-7c4a470e9267\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.78988647460938,\r\n            \"Text\": \"$ 250.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07001911848783493,\r\n                    \"Height\": 0.01238618977367878,\r\n                    \"Left\": 0.753358006477356,\r\n                    \"Top\": 0.4760339856147766\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.753358006477356,\r\n                        \"Y\": 0.4760339856147766\r\n                    },\r\n                    {\r\n                        \"X\": 0.8233771324157715,\r\n                        \"Y\": 0.4760339856147766\r\n                    },\r\n                    {\r\n                        \"X\": 0.8233771324157715,\r\n                        \"Y\": 0.48842015862464905\r\n                    },\r\n                    {\r\n                        \"X\": 0.753358006477356,\r\n                        \"Y\": 0.48842015862464905\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"521b1ed8-b2db-4b28-b7fa-da014b9d72f0\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"8129338c-787d-4422-8018-435a32805203\",\r\n                        \"07a22183-7881-40f1-a701-85db4b5ad752\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.48035430908203,\r\n            \"Text\": \"Wednesday, March 02, 2022\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.20997169613838196,\r\n                    \"Height\": 0.013057739473879337,\r\n                    \"Left\": 0.08609078824520111,\r\n                    \"Top\": 0.4951189458370209\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08609078824520111,\r\n                        \"Y\": 0.4951189458370209\r\n                    },\r\n                    {\r\n                        \"X\": 0.2960624694824219,\r\n                        \"Y\": 0.4951189458370209\r\n                    },\r\n                    {\r\n                        \"X\": 0.2960624694824219,\r\n                        \"Y\": 0.5081766843795776\r\n                    },\r\n                    {\r\n                        \"X\": 0.08609078824520111,\r\n                        \"Y\": 0.5081766843795776\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"446ca544-b460-4f69-9a6e-f3d942cdd920\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4883c498-209b-4cc8-9b53-e5d2de186d81\",\r\n                        \"d4da57e3-2794-49dc-a1d5-341c41f2c52a\",\r\n                        \"470f6900-e4d1-42b8-ac06-8c8accf49f69\",\r\n                        \"df46989f-a2cb-4abd-8cb3-f4d17085eefb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.83357238769531,\r\n            \"Text\": \"2\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00885115098208189,\r\n                    \"Height\": 0.009955037385225296,\r\n                    \"Left\": 0.4445914626121521,\r\n                    \"Top\": 0.4952865540981293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4445914626121521,\r\n                        \"Y\": 0.4952865540981293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45344260334968567,\r\n                        \"Y\": 0.4952865540981293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45344260334968567,\r\n                        \"Y\": 0.5052415728569031\r\n                    },\r\n                    {\r\n                        \"X\": 0.4445914626121521,\r\n                        \"Y\": 0.5052415728569031\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f029b309-df85-46d1-8e24-0b840a20f657\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"7d456497-1456-4489-a878-ddefcb3a88ba\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.91597747802734,\r\n            \"Text\": \"9\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008401786908507347,\r\n                    \"Height\": 0.00999597180634737,\r\n                    \"Left\": 0.595097541809082,\r\n                    \"Top\": 0.49523070454597473\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.595097541809082,\r\n                        \"Y\": 0.49523070454597473\r\n                    },\r\n                    {\r\n                        \"X\": 0.6034992933273315,\r\n                        \"Y\": 0.49523070454597473\r\n                    },\r\n                    {\r\n                        \"X\": 0.6034992933273315,\r\n                        \"Y\": 0.5052266716957092\r\n                    },\r\n                    {\r\n                        \"X\": 0.595097541809082,\r\n                        \"Y\": 0.5052266716957092\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"49c56ade-5824-4b21-8437-70cb7b880328\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"002b21dc-41d8-4e8d-a001-bd69975c86bd\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.94126892089844,\r\n            \"Text\": \"$\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008190981112420559,\r\n                    \"Height\": 0.012402831576764584,\r\n                    \"Left\": 0.6160756349563599,\r\n                    \"Top\": 0.49410951137542725\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6160756349563599,\r\n                        \"Y\": 0.49410951137542725\r\n                    },\r\n                    {\r\n                        \"X\": 0.6242666244506836,\r\n                        \"Y\": 0.49410951137542725\r\n                    },\r\n                    {\r\n                        \"X\": 0.6242666244506836,\r\n                        \"Y\": 0.5065123438835144\r\n                    },\r\n                    {\r\n                        \"X\": 0.6160756349563599,\r\n                        \"Y\": 0.5065123438835144\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5f283481-8137-43ec-b600-98977bb5b4cc\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"42ad0ed7-69db-476f-aa95-366d9e6ec501\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.85225677490234,\r\n            \"Text\": \"10.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04045182839035988,\r\n                    \"Height\": 0.009999552741646767,\r\n                    \"Left\": 0.6950586438179016,\r\n                    \"Top\": 0.4952804446220398\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6950586438179016,\r\n                        \"Y\": 0.4952804446220398\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355104684829712,\r\n                        \"Y\": 0.4952804446220398\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355104684829712,\r\n                        \"Y\": 0.5052800178527832\r\n                    },\r\n                    {\r\n                        \"X\": 0.6950586438179016,\r\n                        \"Y\": 0.5052800178527832\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a3e192ed-5ab7-4b3b-897e-c86f2d92e386\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"2742d5cd-3227-49a5-968b-15e378959805\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.81448364257812,\r\n            \"Text\": \"$ 90.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07034377753734589,\r\n                    \"Height\": 0.012281046248972416,\r\n                    \"Left\": 0.7534123659133911,\r\n                    \"Top\": 0.49423232674598694\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7534123659133911,\r\n                        \"Y\": 0.49423232674598694\r\n                    },\r\n                    {\r\n                        \"X\": 0.8237561583518982,\r\n                        \"Y\": 0.49423232674598694\r\n                    },\r\n                    {\r\n                        \"X\": 0.8237561583518982,\r\n                        \"Y\": 0.5065134167671204\r\n                    },\r\n                    {\r\n                        \"X\": 0.7534123659133911,\r\n                        \"Y\": 0.5065134167671204\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"dc429733-e5ae-4ce4-9474-0fda7a022ca6\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c18740e2-5f58-4f55-8f2a-f0c5e200d785\",\r\n                        \"a2aa231e-606e-4dd4-88e2-f3636e8ca107\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.90742492675781,\r\n            \"Text\": \"5\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008720338344573975,\r\n                    \"Height\": 0.009943684563040733,\r\n                    \"Left\": 0.4442935585975647,\r\n                    \"Top\": 0.5131525993347168\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4442935585975647,\r\n                        \"Y\": 0.5131525993347168\r\n                    },\r\n                    {\r\n                        \"X\": 0.45301389694213867,\r\n                        \"Y\": 0.5131525993347168\r\n                    },\r\n                    {\r\n                        \"X\": 0.45301389694213867,\r\n                        \"Y\": 0.5230962634086609\r\n                    },\r\n                    {\r\n                        \"X\": 0.4442935585975647,\r\n                        \"Y\": 0.5230962634086609\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"bdb96ffa-dcf0-41a6-880c-5e3e90429b08\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"219ea354-f27c-4f02-83fb-5fa46a609ff1\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.90293884277344,\r\n            \"Text\": \"6\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008159858174622059,\r\n                    \"Height\": 0.009985432960093021,\r\n                    \"Left\": 0.5954707860946655,\r\n                    \"Top\": 0.513150155544281\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5954707860946655,\r\n                        \"Y\": 0.513150155544281\r\n                    },\r\n                    {\r\n                        \"X\": 0.6036306619644165,\r\n                        \"Y\": 0.513150155544281\r\n                    },\r\n                    {\r\n                        \"X\": 0.6036306619644165,\r\n                        \"Y\": 0.5231356024742126\r\n                    },\r\n                    {\r\n                        \"X\": 0.5954707860946655,\r\n                        \"Y\": 0.5231356024742126\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"25f70790-1517-463d-a292-e06fab38a5d1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d50363bb-9dfe-48e8-a263-b1643312c630\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.8488998413086,\r\n            \"Text\": \"$\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00813974067568779,\r\n                    \"Height\": 0.01179630495607853,\r\n                    \"Left\": 0.6160118579864502,\r\n                    \"Top\": 0.5123087167739868\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6160118579864502,\r\n                        \"Y\": 0.5123087167739868\r\n                    },\r\n                    {\r\n                        \"X\": 0.6241515874862671,\r\n                        \"Y\": 0.5123087167739868\r\n                    },\r\n                    {\r\n                        \"X\": 0.6241515874862671,\r\n                        \"Y\": 0.5241050124168396\r\n                    },\r\n                    {\r\n                        \"X\": 0.6160118579864502,\r\n                        \"Y\": 0.5241050124168396\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"99179598-77d0-426a-bff3-a510c7130c65\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5628b76f-1478-4519-b295-b8e36f210296\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.75177001953125,\r\n            \"Text\": \"33.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.040887974202632904,\r\n                    \"Height\": 0.01015319861471653,\r\n                    \"Left\": 0.6946278810501099,\r\n                    \"Top\": 0.5132156610488892\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6946278810501099,\r\n                        \"Y\": 0.5132156610488892\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355158925056458,\r\n                        \"Y\": 0.5132156610488892\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355158925056458,\r\n                        \"Y\": 0.5233688354492188\r\n                    },\r\n                    {\r\n                        \"X\": 0.6946278810501099,\r\n                        \"Y\": 0.5233688354492188\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cc2da7d9-af1c-451d-9a40-e96d15bdba87\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"1825e9f2-13fd-4f3c-9e34-23d6976551a1\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.79153442382812,\r\n            \"Text\": \"$ 198.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07033920288085938,\r\n                    \"Height\": 0.011986775323748589,\r\n                    \"Left\": 0.7532258033752441,\r\n                    \"Top\": 0.5123814344406128\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7532258033752441,\r\n                        \"Y\": 0.5123814344406128\r\n                    },\r\n                    {\r\n                        \"X\": 0.8235650062561035,\r\n                        \"Y\": 0.5123814344406128\r\n                    },\r\n                    {\r\n                        \"X\": 0.8235650062561035,\r\n                        \"Y\": 0.5243682265281677\r\n                    },\r\n                    {\r\n                        \"X\": 0.7532258033752441,\r\n                        \"Y\": 0.5243682265281677\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5f6fb0d1-4d6a-4390-90ab-f8da1af88710\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"23a7d95b-3633-4682-bc1f-c4594e149ed4\",\r\n                        \"e7e18d5a-7b18-40ee-a744-1de389290ae3\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.70977020263672,\r\n            \"Text\": \"TOTAL\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04988104850053787,\r\n                    \"Height\": 0.009788980707526207,\r\n                    \"Left\": 0.6097403764724731,\r\n                    \"Top\": 0.5350326895713806\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6097403764724731,\r\n                        \"Y\": 0.5350326895713806\r\n                    },\r\n                    {\r\n                        \"X\": 0.6596214175224304,\r\n                        \"Y\": 0.5350326895713806\r\n                    },\r\n                    {\r\n                        \"X\": 0.6596214175224304,\r\n                        \"Y\": 0.5448216795921326\r\n                    },\r\n                    {\r\n                        \"X\": 0.6097403764724731,\r\n                        \"Y\": 0.5448216795921326\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"09920942-13ab-413f-817b-2d5e049da232\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e508dd22-1630-4b01-b867-4add445a09e5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.58323669433594,\r\n            \"Text\": \"$ 868.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06885797530412674,\r\n                    \"Height\": 0.012629842385649681,\r\n                    \"Left\": 0.7538336515426636,\r\n                    \"Top\": 0.5335983037948608\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7538336515426636,\r\n                        \"Y\": 0.5335983037948608\r\n                    },\r\n                    {\r\n                        \"X\": 0.8226916193962097,\r\n                        \"Y\": 0.5335983037948608\r\n                    },\r\n                    {\r\n                        \"X\": 0.8226916193962097,\r\n                        \"Y\": 0.5462281703948975\r\n                    },\r\n                    {\r\n                        \"X\": 0.7538336515426636,\r\n                        \"Y\": 0.5462281703948975\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"23a61660-603f-40b5-95d2-2542ac210b0b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"672b9fdc-a775-4347-b97c-3b200905e93b\",\r\n                        \"c98bdc58-6ffa-4f8b-913d-1e8582de0483\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.82563018798828,\r\n            \"Text\": \"INVOICE\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.26049885153770447,\r\n                    \"Height\": 0.03977091610431671,\r\n                    \"Left\": 0.32055777311325073,\r\n                    \"Top\": 0.10118167847394943\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.32055777311325073,\r\n                        \"Y\": 0.10118167847394943\r\n                    },\r\n                    {\r\n                        \"X\": 0.5810566544532776,\r\n                        \"Y\": 0.10118167847394943\r\n                    },\r\n                    {\r\n                        \"X\": 0.5810566544532776,\r\n                        \"Y\": 0.14095260202884674\r\n                    },\r\n                    {\r\n                        \"X\": 0.32055777311325073,\r\n                        \"Y\": 0.14095260202884674\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0d88ed26-31a1-4f5d-a14d-1029364582b8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.69889831542969,\r\n            \"Text\": \"Bill\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.023371975868940353,\r\n                    \"Height\": 0.010715759359300137,\r\n                    \"Left\": 0.17217542231082916,\r\n                    \"Top\": 0.19985733926296234\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.17217542231082916,\r\n                        \"Y\": 0.19985733926296234\r\n                    },\r\n                    {\r\n                        \"X\": 0.19554740190505981,\r\n                        \"Y\": 0.19985733926296234\r\n                    },\r\n                    {\r\n                        \"X\": 0.19554740190505981,\r\n                        \"Y\": 0.21057310700416565\r\n                    },\r\n                    {\r\n                        \"X\": 0.17217542231082916,\r\n                        \"Y\": 0.21057310700416565\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c78fc78e-05af-40a7-a33a-78bea855878d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.81951904296875,\r\n            \"Text\": \"To\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.01950947381556034,\r\n                    \"Height\": 0.01039784774184227,\r\n                    \"Left\": 0.19888031482696533,\r\n                    \"Top\": 0.20029576122760773\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.19888031482696533,\r\n                        \"Y\": 0.20029576122760773\r\n                    },\r\n                    {\r\n                        \"X\": 0.21838979423046112,\r\n                        \"Y\": 0.20029576122760773\r\n                    },\r\n                    {\r\n                        \"X\": 0.21838979423046112,\r\n                        \"Y\": 0.2106935977935791\r\n                    },\r\n                    {\r\n                        \"X\": 0.19888031482696533,\r\n                        \"Y\": 0.2106935977935791\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"27b54de6-2954-4a48-87f0-ddce1efd255d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.64566802978516,\r\n            \"Text\": \"Company\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07150613516569138,\r\n                    \"Height\": 0.012625854462385178,\r\n                    \"Left\": 0.08584091812372208,\r\n                    \"Top\": 0.21860341727733612\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08584091812372208,\r\n                        \"Y\": 0.21860341727733612\r\n                    },\r\n                    {\r\n                        \"X\": 0.15734705328941345,\r\n                        \"Y\": 0.21860341727733612\r\n                    },\r\n                    {\r\n                        \"X\": 0.15734705328941345,\r\n                        \"Y\": 0.2312292754650116\r\n                    },\r\n                    {\r\n                        \"X\": 0.08584091812372208,\r\n                        \"Y\": 0.2312292754650116\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0ec7d841-e1a7-429a-9a3b-ee6162580f3e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.45584869384766,\r\n            \"Text\": \"ACME\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04462581127882004,\r\n                    \"Height\": 0.010224934667348862,\r\n                    \"Left\": 0.30891111493110657,\r\n                    \"Top\": 0.21865294873714447\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30891111493110657,\r\n                        \"Y\": 0.21865294873714447\r\n                    },\r\n                    {\r\n                        \"X\": 0.3535369336605072,\r\n                        \"Y\": 0.21865294873714447\r\n                    },\r\n                    {\r\n                        \"X\": 0.3535369336605072,\r\n                        \"Y\": 0.22887788712978363\r\n                    },\r\n                    {\r\n                        \"X\": 0.30891111493110657,\r\n                        \"Y\": 0.22887788712978363\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"89fe7305-7e2d-47c3-8277-5fe9bec54a72\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.55831146240234,\r\n            \"Text\": \"Corp\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03479696437716484,\r\n                    \"Height\": 0.012502217665314674,\r\n                    \"Left\": 0.3574463129043579,\r\n                    \"Top\": 0.21858109533786774\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3574463129043579,\r\n                        \"Y\": 0.21858109533786774\r\n                    },\r\n                    {\r\n                        \"X\": 0.39224326610565186,\r\n                        \"Y\": 0.21858109533786774\r\n                    },\r\n                    {\r\n                        \"X\": 0.39224326610565186,\r\n                        \"Y\": 0.23108331859111786\r\n                    },\r\n                    {\r\n                        \"X\": 0.3574463129043579,\r\n                        \"Y\": 0.23108331859111786\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e8f93732-786b-4a40-afab-4c9c495a029a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.77835083007812,\r\n            \"Text\": \"Address\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.060402870178222656,\r\n                    \"Height\": 0.010800028219819069,\r\n                    \"Left\": 0.0857190191745758,\r\n                    \"Top\": 0.23657137155532837\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.0857190191745758,\r\n                        \"Y\": 0.23657137155532837\r\n                    },\r\n                    {\r\n                        \"X\": 0.14612188935279846,\r\n                        \"Y\": 0.23657137155532837\r\n                    },\r\n                    {\r\n                        \"X\": 0.14612188935279846,\r\n                        \"Y\": 0.24737140536308289\r\n                    },\r\n                    {\r\n                        \"X\": 0.0857190191745758,\r\n                        \"Y\": 0.24737140536308289\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b98db8bb-dc56-48bf-a592-0d653eddd087\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.72640228271484,\r\n            \"Text\": \"240\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.027352966368198395,\r\n                    \"Height\": 0.009947591461241245,\r\n                    \"Left\": 0.30934566259384155,\r\n                    \"Top\": 0.2371668517589569\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30934566259384155,\r\n                        \"Y\": 0.2371668517589569\r\n                    },\r\n                    {\r\n                        \"X\": 0.33669862151145935,\r\n                        \"Y\": 0.2371668517589569\r\n                    },\r\n                    {\r\n                        \"X\": 0.33669862151145935,\r\n                        \"Y\": 0.24711443483829498\r\n                    },\r\n                    {\r\n                        \"X\": 0.30934566259384155,\r\n                        \"Y\": 0.24711443483829498\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ab7e972b-7430-413a-b434-6a3132cf4c86\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.53106689453125,\r\n            \"Text\": \"Cool\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.032689277082681656,\r\n                    \"Height\": 0.010450826026499271,\r\n                    \"Left\": 0.34095820784568787,\r\n                    \"Top\": 0.23689058423042297\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.34095820784568787,\r\n                        \"Y\": 0.23689058423042297\r\n                    },\r\n                    {\r\n                        \"X\": 0.3736474812030792,\r\n                        \"Y\": 0.23689058423042297\r\n                    },\r\n                    {\r\n                        \"X\": 0.3736474812030792,\r\n                        \"Y\": 0.24734140932559967\r\n                    },\r\n                    {\r\n                        \"X\": 0.34095820784568787,\r\n                        \"Y\": 0.24734140932559967\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"03d5eaf1-ff7d-4270-bc77-a7299db3b508\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.06262969970703,\r\n            \"Text\": \"Street,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.048769380897283554,\r\n                    \"Height\": 0.012125407345592976,\r\n                    \"Left\": 0.37766367197036743,\r\n                    \"Top\": 0.2369677573442459\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.37766367197036743,\r\n                        \"Y\": 0.2369677573442459\r\n                    },\r\n                    {\r\n                        \"X\": 0.4264330565929413,\r\n                        \"Y\": 0.2369677573442459\r\n                    },\r\n                    {\r\n                        \"X\": 0.4264330565929413,\r\n                        \"Y\": 0.249093160033226\r\n                    },\r\n                    {\r\n                        \"X\": 0.37766367197036743,\r\n                        \"Y\": 0.249093160033226\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cde41f66-c8b7-46c1-8762-09afd9bab1bb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.1972427368164,\r\n            \"Text\": \"SpringField,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08353495597839355,\r\n                    \"Height\": 0.012878702953457832,\r\n                    \"Left\": 0.4312807321548462,\r\n                    \"Top\": 0.23666313290596008\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4312807321548462,\r\n                        \"Y\": 0.23666313290596008\r\n                    },\r\n                    {\r\n                        \"X\": 0.5148156881332397,\r\n                        \"Y\": 0.23666313290596008\r\n                    },\r\n                    {\r\n                        \"X\": 0.5148156881332397,\r\n                        \"Y\": 0.24954183399677277\r\n                    },\r\n                    {\r\n                        \"X\": 0.4312807321548462,\r\n                        \"Y\": 0.24954183399677277\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"31ff7af2-612a-4c87-8afd-31841b7ac2c2\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.44852447509766,\r\n            \"Text\": \"IL\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.012973630800843239,\r\n                    \"Height\": 0.010336934588849545,\r\n                    \"Left\": 0.5205984115600586,\r\n                    \"Top\": 0.23705407977104187\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5205984115600586,\r\n                        \"Y\": 0.23705407977104187\r\n                    },\r\n                    {\r\n                        \"X\": 0.5335720181465149,\r\n                        \"Y\": 0.23705407977104187\r\n                    },\r\n                    {\r\n                        \"X\": 0.5335720181465149,\r\n                        \"Y\": 0.247391015291214\r\n                    },\r\n                    {\r\n                        \"X\": 0.5205984115600586,\r\n                        \"Y\": 0.247391015291214\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"52cd56c2-9645-4806-bdc9-ac15d5e253e2\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.89361572265625,\r\n            \"Text\": \"Time\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03829609975218773,\r\n                    \"Height\": 0.010327697731554508,\r\n                    \"Left\": 0.14925265312194824,\r\n                    \"Top\": 0.2917441427707672\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.14925265312194824,\r\n                        \"Y\": 0.2917441427707672\r\n                    },\r\n                    {\r\n                        \"X\": 0.18754875659942627,\r\n                        \"Y\": 0.2917441427707672\r\n                    },\r\n                    {\r\n                        \"X\": 0.18754875659942627,\r\n                        \"Y\": 0.30207183957099915\r\n                    },\r\n                    {\r\n                        \"X\": 0.14925265312194824,\r\n                        \"Y\": 0.30207183957099915\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"49e208d7-a704-4198-bd58-358928ee983e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.78374481201172,\r\n            \"Text\": \"Period\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04854918643832207,\r\n                    \"Height\": 0.010503499768674374,\r\n                    \"Left\": 0.19161593914031982,\r\n                    \"Top\": 0.291593998670578\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.19161593914031982,\r\n                        \"Y\": 0.291593998670578\r\n                    },\r\n                    {\r\n                        \"X\": 0.2401651293039322,\r\n                        \"Y\": 0.291593998670578\r\n                    },\r\n                    {\r\n                        \"X\": 0.2401651293039322,\r\n                        \"Y\": 0.30209749937057495\r\n                    },\r\n                    {\r\n                        \"X\": 0.19161593914031982,\r\n                        \"Y\": 0.30209749937057495\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"94b5e3b5-9de7-4afc-9d8c-6f46d2b304ac\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.66508483886719,\r\n            \"Text\": \"Start\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03715598210692406,\r\n                    \"Height\": 0.010245890356600285,\r\n                    \"Left\": 0.08577243238687515,\r\n                    \"Top\": 0.31036823987960815\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08577243238687515,\r\n                        \"Y\": 0.31036823987960815\r\n                    },\r\n                    {\r\n                        \"X\": 0.12292841076850891,\r\n                        \"Y\": 0.31036823987960815\r\n                    },\r\n                    {\r\n                        \"X\": 0.12292841076850891,\r\n                        \"Y\": 0.32061412930488586\r\n                    },\r\n                    {\r\n                        \"X\": 0.08577243238687515,\r\n                        \"Y\": 0.32061412930488586\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5446f760-49a3-43ca-a355-e42e86f06fbb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.63681030273438,\r\n            \"Text\": \"Date\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03518260642886162,\r\n                    \"Height\": 0.010043498128652573,\r\n                    \"Left\": 0.1268310546875,\r\n                    \"Top\": 0.31044137477874756\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1268310546875,\r\n                        \"Y\": 0.31044137477874756\r\n                    },\r\n                    {\r\n                        \"X\": 0.16201366484165192,\r\n                        \"Y\": 0.31044137477874756\r\n                    },\r\n                    {\r\n                        \"X\": 0.16201366484165192,\r\n                        \"Y\": 0.32048487663269043\r\n                    },\r\n                    {\r\n                        \"X\": 0.1268310546875,\r\n                        \"Y\": 0.32048487663269043\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7817404e-090c-4bb4-970b-f7e842215e63\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.58244323730469,\r\n            \"Text\": \"Monday,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06368750333786011,\r\n                    \"Height\": 0.012475870549678802,\r\n                    \"Left\": 0.3095684349536896,\r\n                    \"Top\": 0.31025195121765137\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3095684349536896,\r\n                        \"Y\": 0.31025195121765137\r\n                    },\r\n                    {\r\n                        \"X\": 0.3732559382915497,\r\n                        \"Y\": 0.31025195121765137\r\n                    },\r\n                    {\r\n                        \"X\": 0.3732559382915497,\r\n                        \"Y\": 0.32272782921791077\r\n                    },\r\n                    {\r\n                        \"X\": 0.3095684349536896,\r\n                        \"Y\": 0.32272782921791077\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"50732070-543f-43fd-8e1e-8e274bc3e10b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.89558410644531,\r\n            \"Text\": \"February\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06546681374311447,\r\n                    \"Height\": 0.012741231359541416,\r\n                    \"Left\": 0.3790154755115509,\r\n                    \"Top\": 0.3101070821285248\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3790154755115509,\r\n                        \"Y\": 0.3101070821285248\r\n                    },\r\n                    {\r\n                        \"X\": 0.44448229670524597,\r\n                        \"Y\": 0.3101070821285248\r\n                    },\r\n                    {\r\n                        \"X\": 0.44448229670524597,\r\n                        \"Y\": 0.3228483200073242\r\n                    },\r\n                    {\r\n                        \"X\": 0.3790154755115509,\r\n                        \"Y\": 0.3228483200073242\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cda9a244-feba-490b-9ca8-421639b372cc\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 97.50941467285156,\r\n            \"Text\": \"28,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.022376203909516335,\r\n                    \"Height\": 0.011870951391756535,\r\n                    \"Left\": 0.44799262285232544,\r\n                    \"Top\": 0.3102833330631256\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.44799262285232544,\r\n                        \"Y\": 0.3102833330631256\r\n                    },\r\n                    {\r\n                        \"X\": 0.4703688323497772,\r\n                        \"Y\": 0.3102833330631256\r\n                    },\r\n                    {\r\n                        \"X\": 0.4703688323497772,\r\n                        \"Y\": 0.32215428352355957\r\n                    },\r\n                    {\r\n                        \"X\": 0.44799262285232544,\r\n                        \"Y\": 0.32215428352355957\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9ec3f55c-ac6d-42ef-8164-f7aa56e2dad5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.7939453125,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03630870208144188,\r\n                    \"Height\": 0.01031347643584013,\r\n                    \"Left\": 0.4751283526420593,\r\n                    \"Top\": 0.3102569282054901\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4751283526420593,\r\n                        \"Y\": 0.3102569282054901\r\n                    },\r\n                    {\r\n                        \"X\": 0.5114370584487915,\r\n                        \"Y\": 0.3102569282054901\r\n                    },\r\n                    {\r\n                        \"X\": 0.5114370584487915,\r\n                        \"Y\": 0.3205703794956207\r\n                    },\r\n                    {\r\n                        \"X\": 0.4751283526420593,\r\n                        \"Y\": 0.3205703794956207\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"be215911-f7ba-4dc2-b29b-690e9fe5face\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.6611328125,\r\n            \"Text\": \"End\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.027517540380358696,\r\n                    \"Height\": 0.010346841998398304,\r\n                    \"Left\": 0.08630545437335968,\r\n                    \"Top\": 0.32825061678886414\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08630545437335968,\r\n                        \"Y\": 0.32825061678886414\r\n                    },\r\n                    {\r\n                        \"X\": 0.11382299661636353,\r\n                        \"Y\": 0.32825061678886414\r\n                    },\r\n                    {\r\n                        \"X\": 0.11382299661636353,\r\n                        \"Y\": 0.33859744668006897\r\n                    },\r\n                    {\r\n                        \"X\": 0.08630545437335968,\r\n                        \"Y\": 0.33859744668006897\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"98bd7d9e-9f8e-47d6-9c58-c943a5ba960a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.64643859863281,\r\n            \"Text\": \"Date\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0355507917702198,\r\n                    \"Height\": 0.01011537667363882,\r\n                    \"Left\": 0.11838017404079437,\r\n                    \"Top\": 0.32851797342300415\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11838017404079437,\r\n                        \"Y\": 0.32851797342300415\r\n                    },\r\n                    {\r\n                        \"X\": 0.15393096208572388,\r\n                        \"Y\": 0.32851797342300415\r\n                    },\r\n                    {\r\n                        \"X\": 0.15393096208572388,\r\n                        \"Y\": 0.33863335847854614\r\n                    },\r\n                    {\r\n                        \"X\": 0.11838017404079437,\r\n                        \"Y\": 0.33863335847854614\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"04cd21b2-cb12-4177-837e-509f4c07ebcb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.68737030029297,\r\n            \"Text\": \"Friday,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.048333972692489624,\r\n                    \"Height\": 0.012301798909902573,\r\n                    \"Left\": 0.3091888427734375,\r\n                    \"Top\": 0.32870322465896606\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3091888427734375,\r\n                        \"Y\": 0.32870322465896606\r\n                    },\r\n                    {\r\n                        \"X\": 0.3575228154659271,\r\n                        \"Y\": 0.32870322465896606\r\n                    },\r\n                    {\r\n                        \"X\": 0.3575228154659271,\r\n                        \"Y\": 0.34100502729415894\r\n                    },\r\n                    {\r\n                        \"X\": 0.3091888427734375,\r\n                        \"Y\": 0.34100502729415894\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b4d0fa73-c7f1-4e45-b71a-9b1086a174d5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85607147216797,\r\n            \"Text\": \"March\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04638313874602318,\r\n                    \"Height\": 0.010469604283571243,\r\n                    \"Left\": 0.3630521297454834,\r\n                    \"Top\": 0.3284091055393219\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3630521297454834,\r\n                        \"Y\": 0.3284091055393219\r\n                    },\r\n                    {\r\n                        \"X\": 0.4094352424144745,\r\n                        \"Y\": 0.3284091055393219\r\n                    },\r\n                    {\r\n                        \"X\": 0.4094352424144745,\r\n                        \"Y\": 0.33887872099876404\r\n                    },\r\n                    {\r\n                        \"X\": 0.3630521297454834,\r\n                        \"Y\": 0.33887872099876404\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2bbcee1e-f4c0-40e5-baa0-54c434145afd\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.55196380615234,\r\n            \"Text\": \"04,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.022374439984560013,\r\n                    \"Height\": 0.011890421621501446,\r\n                    \"Left\": 0.4140767753124237,\r\n                    \"Top\": 0.3285822868347168\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4140767753124237,\r\n                        \"Y\": 0.3285822868347168\r\n                    },\r\n                    {\r\n                        \"X\": 0.4364512264728546,\r\n                        \"Y\": 0.3285822868347168\r\n                    },\r\n                    {\r\n                        \"X\": 0.4364512264728546,\r\n                        \"Y\": 0.3404726982116699\r\n                    },\r\n                    {\r\n                        \"X\": 0.4140767753124237,\r\n                        \"Y\": 0.3404726982116699\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9de38f23-b912-4645-823a-087503fe2d76\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.75464630126953,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.036526408046483994,\r\n                    \"Height\": 0.010376912541687489,\r\n                    \"Left\": 0.4409080743789673,\r\n                    \"Top\": 0.3285600244998932\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4409080743789673,\r\n                        \"Y\": 0.3285600244998932\r\n                    },\r\n                    {\r\n                        \"X\": 0.4774344861507416,\r\n                        \"Y\": 0.3285600244998932\r\n                    },\r\n                    {\r\n                        \"X\": 0.4774344861507416,\r\n                        \"Y\": 0.3389369249343872\r\n                    },\r\n                    {\r\n                        \"X\": 0.4409080743789673,\r\n                        \"Y\": 0.3389369249343872\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"55a158fd-f61d-41b9-bbd1-c12b710192a5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.28592681884766,\r\n            \"Text\": \"Details\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05145998299121857,\r\n                    \"Height\": 0.010447184555232525,\r\n                    \"Left\": 0.16969650983810425,\r\n                    \"Top\": 0.3834686279296875\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.16969650983810425,\r\n                        \"Y\": 0.3834686279296875\r\n                    },\r\n                    {\r\n                        \"X\": 0.22115649282932281,\r\n                        \"Y\": 0.3834686279296875\r\n                    },\r\n                    {\r\n                        \"X\": 0.22115649282932281,\r\n                        \"Y\": 0.3939158022403717\r\n                    },\r\n                    {\r\n                        \"X\": 0.16969650983810425,\r\n                        \"Y\": 0.3939158022403717\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"10278125-8920-447c-a9fb-68cc53155e8d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.78530883789062,\r\n            \"Text\": \"Date\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03483673185110092,\r\n                    \"Height\": 0.009999348782002926,\r\n                    \"Left\": 0.08656188100576401,\r\n                    \"Top\": 0.4016673266887665\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08656188100576401,\r\n                        \"Y\": 0.4016673266887665\r\n                    },\r\n                    {\r\n                        \"X\": 0.12139861285686493,\r\n                        \"Y\": 0.4016673266887665\r\n                    },\r\n                    {\r\n                        \"X\": 0.12139861285686493,\r\n                        \"Y\": 0.4116666615009308\r\n                    },\r\n                    {\r\n                        \"X\": 0.08656188100576401,\r\n                        \"Y\": 0.4116666615009308\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"976f321a-0079-4ac5-8cfa-3931f6d25721\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.63971710205078,\r\n            \"Text\": \"Work\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04165499284863472,\r\n                    \"Height\": 0.010279540903866291,\r\n                    \"Left\": 0.30898991227149963,\r\n                    \"Top\": 0.40142157673835754\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30898991227149963,\r\n                        \"Y\": 0.40142157673835754\r\n                    },\r\n                    {\r\n                        \"X\": 0.35064491629600525,\r\n                        \"Y\": 0.40142157673835754\r\n                    },\r\n                    {\r\n                        \"X\": 0.35064491629600525,\r\n                        \"Y\": 0.41170114278793335\r\n                    },\r\n                    {\r\n                        \"X\": 0.30898991227149963,\r\n                        \"Y\": 0.41170114278793335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"58627ea4-5571-4714-b335-62bf559330b9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8631362915039,\r\n            \"Text\": \"Type\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03729953616857529,\r\n                    \"Height\": 0.012466145679354668,\r\n                    \"Left\": 0.3534572720527649,\r\n                    \"Top\": 0.4017059803009033\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3534572720527649,\r\n                        \"Y\": 0.4017059803009033\r\n                    },\r\n                    {\r\n                        \"X\": 0.3907568156719208,\r\n                        \"Y\": 0.4017059803009033\r\n                    },\r\n                    {\r\n                        \"X\": 0.3907568156719208,\r\n                        \"Y\": 0.41417211294174194\r\n                    },\r\n                    {\r\n                        \"X\": 0.3534572720527649,\r\n                        \"Y\": 0.41417211294174194\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1afd8415-1391-47a2-99d6-7dcba575ed12\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.81716918945312,\r\n            \"Text\": \"Work\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041917670518159866,\r\n                    \"Height\": 0.010224975645542145,\r\n                    \"Left\": 0.45950645208358765,\r\n                    \"Top\": 0.4013863205909729\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45950645208358765,\r\n                        \"Y\": 0.4013863205909729\r\n                    },\r\n                    {\r\n                        \"X\": 0.5014241337776184,\r\n                        \"Y\": 0.4013863205909729\r\n                    },\r\n                    {\r\n                        \"X\": 0.5014241337776184,\r\n                        \"Y\": 0.41161128878593445\r\n                    },\r\n                    {\r\n                        \"X\": 0.45950645208358765,\r\n                        \"Y\": 0.41161128878593445\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"57ddc909-afee-4588-b51e-087c92397690\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.16592407226562,\r\n            \"Text\": \"Hours\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04411320015788078,\r\n                    \"Height\": 0.010131347924470901,\r\n                    \"Left\": 0.5050811767578125,\r\n                    \"Top\": 0.401649534702301\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5050811767578125,\r\n                        \"Y\": 0.401649534702301\r\n                    },\r\n                    {\r\n                        \"X\": 0.5491943955421448,\r\n                        \"Y\": 0.401649534702301\r\n                    },\r\n                    {\r\n                        \"X\": 0.5491943955421448,\r\n                        \"Y\": 0.4117808938026428\r\n                    },\r\n                    {\r\n                        \"X\": 0.5050811767578125,\r\n                        \"Y\": 0.4117808938026428\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"40651346-7711-4c98-a6d8-50e859aa6255\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.94409942626953,\r\n            \"Text\": \"Hourly\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.050672661513090134,\r\n                    \"Height\": 0.01283219363540411,\r\n                    \"Left\": 0.6141788363456726,\r\n                    \"Top\": 0.4011778235435486\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6141788363456726,\r\n                        \"Y\": 0.4011778235435486\r\n                    },\r\n                    {\r\n                        \"X\": 0.6648514866828918,\r\n                        \"Y\": 0.4011778235435486\r\n                    },\r\n                    {\r\n                        \"X\": 0.6648514866828918,\r\n                        \"Y\": 0.41401001811027527\r\n                    },\r\n                    {\r\n                        \"X\": 0.6141788363456726,\r\n                        \"Y\": 0.41401001811027527\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"601d91eb-888a-491b-98ff-3497a8866fd4\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.74578094482422,\r\n            \"Text\": \"Rate\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03385249897837639,\r\n                    \"Height\": 0.009898397140204906,\r\n                    \"Left\": 0.6688940525054932,\r\n                    \"Top\": 0.4017431139945984\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6688940525054932,\r\n                        \"Y\": 0.4017431139945984\r\n                    },\r\n                    {\r\n                        \"X\": 0.702746570110321,\r\n                        \"Y\": 0.4017431139945984\r\n                    },\r\n                    {\r\n                        \"X\": 0.702746570110321,\r\n                        \"Y\": 0.41164150834083557\r\n                    },\r\n                    {\r\n                        \"X\": 0.6688940525054932,\r\n                        \"Y\": 0.41164150834083557\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a63a8c42-205c-44e9-80f8-190e5eae682d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.84886932373047,\r\n            \"Text\": \"Total\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.037921737879514694,\r\n                    \"Height\": 0.010062540881335735,\r\n                    \"Left\": 0.74726402759552,\r\n                    \"Top\": 0.4014986455440521\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.74726402759552,\r\n                        \"Y\": 0.4014986455440521\r\n                    },\r\n                    {\r\n                        \"X\": 0.7851858139038086,\r\n                        \"Y\": 0.4014986455440521\r\n                    },\r\n                    {\r\n                        \"X\": 0.7851858139038086,\r\n                        \"Y\": 0.41156119108200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.74726402759552,\r\n                        \"Y\": 0.41156119108200073\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6929d51a-8d1d-4cf7-a826-164a09f8e132\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.53197479248047,\r\n            \"Text\": \"Monday,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06406579166650772,\r\n                    \"Height\": 0.012897826731204987,\r\n                    \"Left\": 0.08643510937690735,\r\n                    \"Top\": 0.42110100388526917\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08643510937690735,\r\n                        \"Y\": 0.42110100388526917\r\n                    },\r\n                    {\r\n                        \"X\": 0.15050089359283447,\r\n                        \"Y\": 0.42110100388526917\r\n                    },\r\n                    {\r\n                        \"X\": 0.15050089359283447,\r\n                        \"Y\": 0.43399882316589355\r\n                    },\r\n                    {\r\n                        \"X\": 0.08643510937690735,\r\n                        \"Y\": 0.43399882316589355\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"afd7e61b-807e-49ff-ac2e-1906e6651db0\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.83560943603516,\r\n            \"Text\": \"February\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0654163658618927,\r\n                    \"Height\": 0.012642049230635166,\r\n                    \"Left\": 0.1558157503604889,\r\n                    \"Top\": 0.42131367325782776\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1558157503604889,\r\n                        \"Y\": 0.42131367325782776\r\n                    },\r\n                    {\r\n                        \"X\": 0.2212321162223816,\r\n                        \"Y\": 0.42131367325782776\r\n                    },\r\n                    {\r\n                        \"X\": 0.2212321162223816,\r\n                        \"Y\": 0.43395572900772095\r\n                    },\r\n                    {\r\n                        \"X\": 0.1558157503604889,\r\n                        \"Y\": 0.43395572900772095\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"626d0aa1-8b4c-4a76-88bb-30cd76f9a2fc\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.27032470703125,\r\n            \"Text\": \"28,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.022222615778446198,\r\n                    \"Height\": 0.01229610200971365,\r\n                    \"Left\": 0.22510015964508057,\r\n                    \"Top\": 0.4212883412837982\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.22510015964508057,\r\n                        \"Y\": 0.4212883412837982\r\n                    },\r\n                    {\r\n                        \"X\": 0.24732276797294617,\r\n                        \"Y\": 0.4212883412837982\r\n                    },\r\n                    {\r\n                        \"X\": 0.24732276797294617,\r\n                        \"Y\": 0.43358442187309265\r\n                    },\r\n                    {\r\n                        \"X\": 0.22510015964508057,\r\n                        \"Y\": 0.43358442187309265\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f2f06ff8-bb05-434a-9328-91dcb572c758\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.73273468017578,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.036857254803180695,\r\n                    \"Height\": 0.010343790985643864,\r\n                    \"Left\": 0.2515285015106201,\r\n                    \"Top\": 0.42150387167930603\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2515285015106201,\r\n                        \"Y\": 0.42150387167930603\r\n                    },\r\n                    {\r\n                        \"X\": 0.2883857786655426,\r\n                        \"Y\": 0.42150387167930603\r\n                    },\r\n                    {\r\n                        \"X\": 0.2883857786655426,\r\n                        \"Y\": 0.4318476617336273\r\n                    },\r\n                    {\r\n                        \"X\": 0.2515285015106201,\r\n                        \"Y\": 0.4318476617336273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3b4d8be7-a8c8-4953-9f38-007824cb566d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.32134246826172,\r\n            \"Text\": \"1\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008404156193137169,\r\n                    \"Height\": 0.009805013425648212,\r\n                    \"Left\": 0.444796085357666,\r\n                    \"Top\": 0.4220995306968689\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.444796085357666,\r\n                        \"Y\": 0.4220995306968689\r\n                    },\r\n                    {\r\n                        \"X\": 0.45320025086402893,\r\n                        \"Y\": 0.4220995306968689\r\n                    },\r\n                    {\r\n                        \"X\": 0.45320025086402893,\r\n                        \"Y\": 0.43190455436706543\r\n                    },\r\n                    {\r\n                        \"X\": 0.444796085357666,\r\n                        \"Y\": 0.43190455436706543\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e765ce17-0305-44d5-9205-bd9d55783575\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.79103088378906,\r\n            \"Text\": \"3\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008123047649860382,\r\n                    \"Height\": 0.009862752631306648,\r\n                    \"Left\": 0.5952696800231934,\r\n                    \"Top\": 0.4220588505268097\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5952696800231934,\r\n                        \"Y\": 0.4220588505268097\r\n                    },\r\n                    {\r\n                        \"X\": 0.6033927202224731,\r\n                        \"Y\": 0.4220588505268097\r\n                    },\r\n                    {\r\n                        \"X\": 0.6033927202224731,\r\n                        \"Y\": 0.4319216012954712\r\n                    },\r\n                    {\r\n                        \"X\": 0.5952696800231934,\r\n                        \"Y\": 0.4319216012954712\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"fafb0e5a-98a0-4700-8215-89b265962817\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.90142822265625,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008588683791458607,\r\n                    \"Height\": 0.012303873896598816,\r\n                    \"Left\": 0.6159929037094116,\r\n                    \"Top\": 0.4209756553173065\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6159929037094116,\r\n                        \"Y\": 0.4209756553173065\r\n                    },\r\n                    {\r\n                        \"X\": 0.6245815753936768,\r\n                        \"Y\": 0.4209756553173065\r\n                    },\r\n                    {\r\n                        \"X\": 0.6245815753936768,\r\n                        \"Y\": 0.43327954411506653\r\n                    },\r\n                    {\r\n                        \"X\": 0.6159929037094116,\r\n                        \"Y\": 0.43327954411506653\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"32ffbac0-75f9-437a-9d7c-de6fc0d9cf8e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.89640808105469,\r\n            \"Text\": \"40.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041423700749874115,\r\n                    \"Height\": 0.010154500603675842,\r\n                    \"Left\": 0.6940341591835022,\r\n                    \"Top\": 0.4218980371952057\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6940341591835022,\r\n                        \"Y\": 0.4218980371952057\r\n                    },\r\n                    {\r\n                        \"X\": 0.7354578971862793,\r\n                        \"Y\": 0.4218980371952057\r\n                    },\r\n                    {\r\n                        \"X\": 0.7354578971862793,\r\n                        \"Y\": 0.43205252289772034\r\n                    },\r\n                    {\r\n                        \"X\": 0.6940341591835022,\r\n                        \"Y\": 0.43205252289772034\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"51b249f5-51d4-409e-9e0c-64c29eb0c3c2\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.91411590576172,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008446917869150639,\r\n                    \"Height\": 0.012341837398707867,\r\n                    \"Left\": 0.7532420754432678,\r\n                    \"Top\": 0.4211164116859436\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7532420754432678,\r\n                        \"Y\": 0.4211164116859436\r\n                    },\r\n                    {\r\n                        \"X\": 0.7616890072822571,\r\n                        \"Y\": 0.4211164116859436\r\n                    },\r\n                    {\r\n                        \"X\": 0.7616890072822571,\r\n                        \"Y\": 0.43345823884010315\r\n                    },\r\n                    {\r\n                        \"X\": 0.7532420754432678,\r\n                        \"Y\": 0.43345823884010315\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e5c7519d-6d5e-43e8-8142-4b64a852a40d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.7951889038086,\r\n            \"Text\": \"120.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04976440221071243,\r\n                    \"Height\": 0.010298543609678745,\r\n                    \"Left\": 0.773735523223877,\r\n                    \"Top\": 0.4218359887599945\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.773735523223877,\r\n                        \"Y\": 0.4218359887599945\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234999179840088,\r\n                        \"Y\": 0.4218359887599945\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234999179840088,\r\n                        \"Y\": 0.4321345090866089\r\n                    },\r\n                    {\r\n                        \"X\": 0.773735523223877,\r\n                        \"Y\": 0.4321345090866089\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ca482aed-48ee-4eeb-9a36-51c866d4d7a4\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.795166015625,\r\n            \"Text\": \"2\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00908518023788929,\r\n                    \"Height\": 0.009943277575075626,\r\n                    \"Left\": 0.4445412755012512,\r\n                    \"Top\": 0.44017550349235535\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4445412755012512,\r\n                        \"Y\": 0.44017550349235535\r\n                    },\r\n                    {\r\n                        \"X\": 0.45362645387649536,\r\n                        \"Y\": 0.44017550349235535\r\n                    },\r\n                    {\r\n                        \"X\": 0.45362645387649536,\r\n                        \"Y\": 0.4501187801361084\r\n                    },\r\n                    {\r\n                        \"X\": 0.4445412755012512,\r\n                        \"Y\": 0.4501187801361084\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"510be532-246a-4fb9-9ff3-3f0294f32cbb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8956527709961,\r\n            \"Text\": \"5\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008046792820096016,\r\n                    \"Height\": 0.010074462741613388,\r\n                    \"Left\": 0.5952693223953247,\r\n                    \"Top\": 0.4401765465736389\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5952693223953247,\r\n                        \"Y\": 0.4401765465736389\r\n                    },\r\n                    {\r\n                        \"X\": 0.603316068649292,\r\n                        \"Y\": 0.4401765465736389\r\n                    },\r\n                    {\r\n                        \"X\": 0.603316068649292,\r\n                        \"Y\": 0.4502510130405426\r\n                    },\r\n                    {\r\n                        \"X\": 0.5952693223953247,\r\n                        \"Y\": 0.4502510130405426\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f5cdf05c-a198-4e9a-8ff1-d48dd7b7e46a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92182922363281,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008436121977865696,\r\n                    \"Height\": 0.012302042916417122,\r\n                    \"Left\": 0.6160159707069397,\r\n                    \"Top\": 0.43907442688941956\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6160159707069397,\r\n                        \"Y\": 0.43907442688941956\r\n                    },\r\n                    {\r\n                        \"X\": 0.6244521141052246,\r\n                        \"Y\": 0.43907442688941956\r\n                    },\r\n                    {\r\n                        \"X\": 0.6244521141052246,\r\n                        \"Y\": 0.45137646794319153\r\n                    },\r\n                    {\r\n                        \"X\": 0.6160159707069397,\r\n                        \"Y\": 0.45137646794319153\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"53bfa876-64ff-4359-b6ec-2977176fe80a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.82459259033203,\r\n            \"Text\": \"10.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.040638670325279236,\r\n                    \"Height\": 0.010007853619754314,\r\n                    \"Left\": 0.6950135827064514,\r\n                    \"Top\": 0.4401998221874237\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6950135827064514,\r\n                        \"Y\": 0.4401998221874237\r\n                    },\r\n                    {\r\n                        \"X\": 0.7356522679328918,\r\n                        \"Y\": 0.4401998221874237\r\n                    },\r\n                    {\r\n                        \"X\": 0.7356522679328918,\r\n                        \"Y\": 0.4502076804637909\r\n                    },\r\n                    {\r\n                        \"X\": 0.6950135827064514,\r\n                        \"Y\": 0.4502076804637909\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d37ad0a1-b2b2-406f-8147-7aaa9bf084fc\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8946533203125,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00801977701485157,\r\n                    \"Height\": 0.012345743365585804,\r\n                    \"Left\": 0.7534511089324951,\r\n                    \"Top\": 0.4391815662384033\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7534511089324951,\r\n                        \"Y\": 0.4391815662384033\r\n                    },\r\n                    {\r\n                        \"X\": 0.7614708542823792,\r\n                        \"Y\": 0.4391815662384033\r\n                    },\r\n                    {\r\n                        \"X\": 0.7614708542823792,\r\n                        \"Y\": 0.45152729749679565\r\n                    },\r\n                    {\r\n                        \"X\": 0.7534511089324951,\r\n                        \"Y\": 0.45152729749679565\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3daf02f4-8117-4834-81ec-9bba316aa683\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.45492553710938,\r\n            \"Text\": \"50.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04017835482954979,\r\n                    \"Height\": 0.010489135980606079,\r\n                    \"Left\": 0.78254234790802,\r\n                    \"Top\": 0.43975841999053955\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.78254234790802,\r\n                        \"Y\": 0.43975841999053955\r\n                    },\r\n                    {\r\n                        \"X\": 0.8227206468582153,\r\n                        \"Y\": 0.43975841999053955\r\n                    },\r\n                    {\r\n                        \"X\": 0.8227206468582153,\r\n                        \"Y\": 0.45024755597114563\r\n                    },\r\n                    {\r\n                        \"X\": 0.78254234790802,\r\n                        \"Y\": 0.45024755597114563\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c0e6161c-2800-40da-8a67-bda82bc2930f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.68020629882812,\r\n            \"Text\": \"Tuesday,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0652032420039177,\r\n                    \"Height\": 0.013004557229578495,\r\n                    \"Left\": 0.08547364175319672,\r\n                    \"Top\": 0.458418607711792\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08547364175319672,\r\n                        \"Y\": 0.458418607711792\r\n                    },\r\n                    {\r\n                        \"X\": 0.1506768763065338,\r\n                        \"Y\": 0.458418607711792\r\n                    },\r\n                    {\r\n                        \"X\": 0.1506768763065338,\r\n                        \"Y\": 0.4714231789112091\r\n                    },\r\n                    {\r\n                        \"X\": 0.08547364175319672,\r\n                        \"Y\": 0.4714231789112091\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"33ae1ef2-474b-464e-9321-4ffa343b253b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.9347152709961,\r\n            \"Text\": \"March\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04668669402599335,\r\n                    \"Height\": 0.010439981706440449,\r\n                    \"Left\": 0.1555737853050232,\r\n                    \"Top\": 0.4585946500301361\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1555737853050232,\r\n                        \"Y\": 0.4585946500301361\r\n                    },\r\n                    {\r\n                        \"X\": 0.20226047933101654,\r\n                        \"Y\": 0.4585946500301361\r\n                    },\r\n                    {\r\n                        \"X\": 0.20226047933101654,\r\n                        \"Y\": 0.4690346419811249\r\n                    },\r\n                    {\r\n                        \"X\": 0.1555737853050232,\r\n                        \"Y\": 0.4690346419811249\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"14d3acbc-5b52-42ab-ba8d-d4033d209cb8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.53736114501953,\r\n            \"Text\": \"01,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.02224368043243885,\r\n                    \"Height\": 0.012001343071460724,\r\n                    \"Left\": 0.20665550231933594,\r\n                    \"Top\": 0.45886296033859253\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.20665550231933594,\r\n                        \"Y\": 0.45886296033859253\r\n                    },\r\n                    {\r\n                        \"X\": 0.22889918088912964,\r\n                        \"Y\": 0.45886296033859253\r\n                    },\r\n                    {\r\n                        \"X\": 0.22889918088912964,\r\n                        \"Y\": 0.47086429595947266\r\n                    },\r\n                    {\r\n                        \"X\": 0.20665550231933594,\r\n                        \"Y\": 0.47086429595947266\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"28ce313d-73ca-4d7e-af22-ee0e4c275a16\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.74449157714844,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03700995072722435,\r\n                    \"Height\": 0.010412069037556648,\r\n                    \"Left\": 0.2331070601940155,\r\n                    \"Top\": 0.4586941599845886\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2331070601940155,\r\n                        \"Y\": 0.4586941599845886\r\n                    },\r\n                    {\r\n                        \"X\": 0.27011701464653015,\r\n                        \"Y\": 0.4586941599845886\r\n                    },\r\n                    {\r\n                        \"X\": 0.27011701464653015,\r\n                        \"Y\": 0.4691062271595001\r\n                    },\r\n                    {\r\n                        \"X\": 0.2331070601940155,\r\n                        \"Y\": 0.4691062271595001\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e023bcd3-2bf4-43fc-9b75-7a341e19311f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8305435180664,\r\n            \"Text\": \"1\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.007995447143912315,\r\n                    \"Height\": 0.009816202335059643,\r\n                    \"Left\": 0.4447425305843353,\r\n                    \"Top\": 0.4586544334888458\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4447425305843353,\r\n                        \"Y\": 0.4586544334888458\r\n                    },\r\n                    {\r\n                        \"X\": 0.4527379870414734,\r\n                        \"Y\": 0.4586544334888458\r\n                    },\r\n                    {\r\n                        \"X\": 0.4527379870414734,\r\n                        \"Y\": 0.46847063302993774\r\n                    },\r\n                    {\r\n                        \"X\": 0.4447425305843353,\r\n                        \"Y\": 0.46847063302993774\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5a804662-e654-4dd3-996e-4fed73f1be55\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.7388687133789,\r\n            \"Text\": \"4\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.009168543852865696,\r\n                    \"Height\": 0.009498941712081432,\r\n                    \"Left\": 0.5947994589805603,\r\n                    \"Top\": 0.45889249444007874\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5947994589805603,\r\n                        \"Y\": 0.45889249444007874\r\n                    },\r\n                    {\r\n                        \"X\": 0.6039679646492004,\r\n                        \"Y\": 0.45889249444007874\r\n                    },\r\n                    {\r\n                        \"X\": 0.6039679646492004,\r\n                        \"Y\": 0.46839144825935364\r\n                    },\r\n                    {\r\n                        \"X\": 0.5947994589805603,\r\n                        \"Y\": 0.46839144825935364\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4f3abace-b5e7-411a-8cd3-cbe9fdcff20d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.906982421875,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008323583751916885,\r\n                    \"Height\": 0.011894327588379383,\r\n                    \"Left\": 0.6159878373146057,\r\n                    \"Top\": 0.4576685428619385\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6159878373146057,\r\n                        \"Y\": 0.4576685428619385\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243113875389099,\r\n                        \"Y\": 0.4576685428619385\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243113875389099,\r\n                        \"Y\": 0.4695628583431244\r\n                    },\r\n                    {\r\n                        \"X\": 0.6159878373146057,\r\n                        \"Y\": 0.4695628583431244\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"76a4a8aa-9e61-4709-9426-c1142076e82e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.87181091308594,\r\n            \"Text\": \"40.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041494954377412796,\r\n                    \"Height\": 0.010230916552245617,\r\n                    \"Left\": 0.6940645575523376,\r\n                    \"Top\": 0.4586245119571686\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6940645575523376,\r\n                        \"Y\": 0.4586245119571686\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355595231056213,\r\n                        \"Y\": 0.4586245119571686\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355595231056213,\r\n                        \"Y\": 0.46885544061660767\r\n                    },\r\n                    {\r\n                        \"X\": 0.6940645575523376,\r\n                        \"Y\": 0.46885544061660767\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6fb70315-37b2-4de9-b0d5-89b0de8f7006\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.4647216796875,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008050426840782166,\r\n                    \"Height\": 0.011429402977228165,\r\n                    \"Left\": 0.7533506155014038,\r\n                    \"Top\": 0.45799657702445984\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7533506155014038,\r\n                        \"Y\": 0.45799657702445984\r\n                    },\r\n                    {\r\n                        \"X\": 0.7614010572433472,\r\n                        \"Y\": 0.45799657702445984\r\n                    },\r\n                    {\r\n                        \"X\": 0.7614010572433472,\r\n                        \"Y\": 0.4694259762763977\r\n                    },\r\n                    {\r\n                        \"X\": 0.7533506155014038,\r\n                        \"Y\": 0.4694259762763977\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"98ac9164-de48-48eb-893e-0c4621913518\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.70576477050781,\r\n            \"Text\": \"160.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05009143054485321,\r\n                    \"Height\": 0.01027705892920494,\r\n                    \"Left\": 0.7733507752418518,\r\n                    \"Top\": 0.45859473943710327\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7733507752418518,\r\n                        \"Y\": 0.45859473943710327\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234422206878662,\r\n                        \"Y\": 0.45859473943710327\r\n                    },\r\n                    {\r\n                        \"X\": 0.8234422206878662,\r\n                        \"Y\": 0.4688717722892761\r\n                    },\r\n                    {\r\n                        \"X\": 0.7733507752418518,\r\n                        \"Y\": 0.4688717722892761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a03889a6-3396-4994-b362-fb4f846fb9ee\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.79132080078125,\r\n            \"Text\": \"3\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00849083811044693,\r\n                    \"Height\": 0.00982202123850584,\r\n                    \"Left\": 0.4445054531097412,\r\n                    \"Top\": 0.47684985399246216\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4445054531097412,\r\n                        \"Y\": 0.47684985399246216\r\n                    },\r\n                    {\r\n                        \"X\": 0.45299628376960754,\r\n                        \"Y\": 0.47684985399246216\r\n                    },\r\n                    {\r\n                        \"X\": 0.45299628376960754,\r\n                        \"Y\": 0.4866718649864197\r\n                    },\r\n                    {\r\n                        \"X\": 0.4445054531097412,\r\n                        \"Y\": 0.4866718649864197\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ac0e6b8a-1227-4ff8-b74a-742a41f8f185\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.87987518310547,\r\n            \"Text\": \"10\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.017758861184120178,\r\n                    \"Height\": 0.009806600399315357,\r\n                    \"Left\": 0.5860334634780884,\r\n                    \"Top\": 0.47694331407546997\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5860334634780884,\r\n                        \"Y\": 0.47694331407546997\r\n                    },\r\n                    {\r\n                        \"X\": 0.6037923097610474,\r\n                        \"Y\": 0.47694331407546997\r\n                    },\r\n                    {\r\n                        \"X\": 0.6037923097610474,\r\n                        \"Y\": 0.48674991726875305\r\n                    },\r\n                    {\r\n                        \"X\": 0.5860334634780884,\r\n                        \"Y\": 0.48674991726875305\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4e23f074-c3c1-4b52-9520-14823ad561f4\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92591094970703,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008223947137594223,\r\n                    \"Height\": 0.012696451507508755,\r\n                    \"Left\": 0.6161134839057922,\r\n                    \"Top\": 0.4756743609905243\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6161134839057922,\r\n                        \"Y\": 0.4756743609905243\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243374347686768,\r\n                        \"Y\": 0.4756743609905243\r\n                    },\r\n                    {\r\n                        \"X\": 0.6243374347686768,\r\n                        \"Y\": 0.488370805978775\r\n                    },\r\n                    {\r\n                        \"X\": 0.6161134839057922,\r\n                        \"Y\": 0.488370805978775\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7948502b-886b-4f85-94a5-d3143aac886c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.80671691894531,\r\n            \"Text\": \"25.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.040999773889780045,\r\n                    \"Height\": 0.010116984136402607,\r\n                    \"Left\": 0.6948167681694031,\r\n                    \"Top\": 0.47678232192993164\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6948167681694031,\r\n                        \"Y\": 0.47678232192993164\r\n                    },\r\n                    {\r\n                        \"X\": 0.7358165383338928,\r\n                        \"Y\": 0.47678232192993164\r\n                    },\r\n                    {\r\n                        \"X\": 0.7358165383338928,\r\n                        \"Y\": 0.4868992865085602\r\n                    },\r\n                    {\r\n                        \"X\": 0.6948167681694031,\r\n                        \"Y\": 0.4868992865085602\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b89e49fd-c1c3-4de7-9e9a-7c4a470e9267\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8884048461914,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008224369026720524,\r\n                    \"Height\": 0.01238618977367878,\r\n                    \"Left\": 0.753358006477356,\r\n                    \"Top\": 0.4760339856147766\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.753358006477356,\r\n                        \"Y\": 0.4760339856147766\r\n                    },\r\n                    {\r\n                        \"X\": 0.7615823745727539,\r\n                        \"Y\": 0.4760339856147766\r\n                    },\r\n                    {\r\n                        \"X\": 0.7615823745727539,\r\n                        \"Y\": 0.48842015862464905\r\n                    },\r\n                    {\r\n                        \"X\": 0.753358006477356,\r\n                        \"Y\": 0.48842015862464905\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8129338c-787d-4422-8018-435a32805203\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.69136810302734,\r\n            \"Text\": \"250.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05045664310455322,\r\n                    \"Height\": 0.010311360470950603,\r\n                    \"Left\": 0.7729204893112183,\r\n                    \"Top\": 0.4767078161239624\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7729204893112183,\r\n                        \"Y\": 0.4767078161239624\r\n                    },\r\n                    {\r\n                        \"X\": 0.8233771324157715,\r\n                        \"Y\": 0.4767078161239624\r\n                    },\r\n                    {\r\n                        \"X\": 0.8233771324157715,\r\n                        \"Y\": 0.4870191514492035\r\n                    },\r\n                    {\r\n                        \"X\": 0.7729204893112183,\r\n                        \"Y\": 0.4870191514492035\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"07a22183-7881-40f1-a701-85db4b5ad752\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.54468536376953,\r\n            \"Text\": \"Wednesday,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.090581975877285,\r\n                    \"Height\": 0.013057739473879337,\r\n                    \"Left\": 0.08609078824520111,\r\n                    \"Top\": 0.4951189458370209\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08609078824520111,\r\n                        \"Y\": 0.4951189458370209\r\n                    },\r\n                    {\r\n                        \"X\": 0.17667275667190552,\r\n                        \"Y\": 0.4951189458370209\r\n                    },\r\n                    {\r\n                        \"X\": 0.17667275667190552,\r\n                        \"Y\": 0.5081766843795776\r\n                    },\r\n                    {\r\n                        \"X\": 0.08609078824520111,\r\n                        \"Y\": 0.5081766843795776\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4883c498-209b-4cc8-9b53-e5d2de186d81\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.81092834472656,\r\n            \"Text\": \"March\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04671231284737587,\r\n                    \"Height\": 0.010700846090912819,\r\n                    \"Left\": 0.18137606978416443,\r\n                    \"Top\": 0.4952239692211151\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.18137606978416443,\r\n                        \"Y\": 0.4952239692211151\r\n                    },\r\n                    {\r\n                        \"X\": 0.22808837890625,\r\n                        \"Y\": 0.4952239692211151\r\n                    },\r\n                    {\r\n                        \"X\": 0.22808837890625,\r\n                        \"Y\": 0.5059248208999634\r\n                    },\r\n                    {\r\n                        \"X\": 0.18137606978416443,\r\n                        \"Y\": 0.5059248208999634\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d4da57e3-2794-49dc-a1d5-341c41f2c52a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.78276824951172,\r\n            \"Text\": \"02,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.022421494126319885,\r\n                    \"Height\": 0.012145711109042168,\r\n                    \"Left\": 0.2321288138628006,\r\n                    \"Top\": 0.4952778220176697\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2321288138628006,\r\n                        \"Y\": 0.4952778220176697\r\n                    },\r\n                    {\r\n                        \"X\": 0.2545503079891205,\r\n                        \"Y\": 0.4952778220176697\r\n                    },\r\n                    {\r\n                        \"X\": 0.2545503079891205,\r\n                        \"Y\": 0.5074235200881958\r\n                    },\r\n                    {\r\n                        \"X\": 0.2321288138628006,\r\n                        \"Y\": 0.5074235200881958\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"470f6900-e4d1-42b8-ac06-8c8accf49f69\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.78304290771484,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03702448308467865,\r\n                    \"Height\": 0.010474324226379395,\r\n                    \"Left\": 0.2590380012989044,\r\n                    \"Top\": 0.49532845616340637\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2590380012989044,\r\n                        \"Y\": 0.49532845616340637\r\n                    },\r\n                    {\r\n                        \"X\": 0.2960624694824219,\r\n                        \"Y\": 0.49532845616340637\r\n                    },\r\n                    {\r\n                        \"X\": 0.2960624694824219,\r\n                        \"Y\": 0.5058027505874634\r\n                    },\r\n                    {\r\n                        \"X\": 0.2590380012989044,\r\n                        \"Y\": 0.5058027505874634\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"df46989f-a2cb-4abd-8cb3-f4d17085eefb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.83357238769531,\r\n            \"Text\": \"2\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00885115098208189,\r\n                    \"Height\": 0.009955037385225296,\r\n                    \"Left\": 0.4445914626121521,\r\n                    \"Top\": 0.4952865540981293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4445914626121521,\r\n                        \"Y\": 0.4952865540981293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45344260334968567,\r\n                        \"Y\": 0.4952865540981293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45344260334968567,\r\n                        \"Y\": 0.5052415728569031\r\n                    },\r\n                    {\r\n                        \"X\": 0.4445914626121521,\r\n                        \"Y\": 0.5052415728569031\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7d456497-1456-4489-a878-ddefcb3a88ba\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.91597747802734,\r\n            \"Text\": \"9\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008401786908507347,\r\n                    \"Height\": 0.00999597180634737,\r\n                    \"Left\": 0.595097541809082,\r\n                    \"Top\": 0.49523070454597473\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.595097541809082,\r\n                        \"Y\": 0.49523070454597473\r\n                    },\r\n                    {\r\n                        \"X\": 0.6034992933273315,\r\n                        \"Y\": 0.49523070454597473\r\n                    },\r\n                    {\r\n                        \"X\": 0.6034992933273315,\r\n                        \"Y\": 0.5052266716957092\r\n                    },\r\n                    {\r\n                        \"X\": 0.595097541809082,\r\n                        \"Y\": 0.5052266716957092\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"002b21dc-41d8-4e8d-a001-bd69975c86bd\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.94126892089844,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008190981112420559,\r\n                    \"Height\": 0.012402831576764584,\r\n                    \"Left\": 0.6160756349563599,\r\n                    \"Top\": 0.49410951137542725\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6160756349563599,\r\n                        \"Y\": 0.49410951137542725\r\n                    },\r\n                    {\r\n                        \"X\": 0.6242666244506836,\r\n                        \"Y\": 0.49410951137542725\r\n                    },\r\n                    {\r\n                        \"X\": 0.6242666244506836,\r\n                        \"Y\": 0.5065123438835144\r\n                    },\r\n                    {\r\n                        \"X\": 0.6160756349563599,\r\n                        \"Y\": 0.5065123438835144\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"42ad0ed7-69db-476f-aa95-366d9e6ec501\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85225677490234,\r\n            \"Text\": \"10.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04045182839035988,\r\n                    \"Height\": 0.009999552741646767,\r\n                    \"Left\": 0.6950586438179016,\r\n                    \"Top\": 0.4952804446220398\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6950586438179016,\r\n                        \"Y\": 0.4952804446220398\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355104684829712,\r\n                        \"Y\": 0.4952804446220398\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355104684829712,\r\n                        \"Y\": 0.5052800178527832\r\n                    },\r\n                    {\r\n                        \"X\": 0.6950586438179016,\r\n                        \"Y\": 0.5052800178527832\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2742d5cd-3227-49a5-968b-15e378959805\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92041778564453,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008092766627669334,\r\n                    \"Height\": 0.012281046248972416,\r\n                    \"Left\": 0.7534123659133911,\r\n                    \"Top\": 0.49423232674598694\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7534123659133911,\r\n                        \"Y\": 0.49423232674598694\r\n                    },\r\n                    {\r\n                        \"X\": 0.761505126953125,\r\n                        \"Y\": 0.49423232674598694\r\n                    },\r\n                    {\r\n                        \"X\": 0.761505126953125,\r\n                        \"Y\": 0.5065134167671204\r\n                    },\r\n                    {\r\n                        \"X\": 0.7534123659133911,\r\n                        \"Y\": 0.5065134167671204\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c18740e2-5f58-4f55-8f2a-f0c5e200d785\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.70855712890625,\r\n            \"Text\": \"90.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041634298861026764,\r\n                    \"Height\": 0.01043827272951603,\r\n                    \"Left\": 0.7821218967437744,\r\n                    \"Top\": 0.49510952830314636\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7821218967437744,\r\n                        \"Y\": 0.49510952830314636\r\n                    },\r\n                    {\r\n                        \"X\": 0.8237561583518982,\r\n                        \"Y\": 0.49510952830314636\r\n                    },\r\n                    {\r\n                        \"X\": 0.8237561583518982,\r\n                        \"Y\": 0.505547821521759\r\n                    },\r\n                    {\r\n                        \"X\": 0.7821218967437744,\r\n                        \"Y\": 0.505547821521759\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a2aa231e-606e-4dd4-88e2-f3636e8ca107\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.90742492675781,\r\n            \"Text\": \"5\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008720338344573975,\r\n                    \"Height\": 0.009943684563040733,\r\n                    \"Left\": 0.4442935585975647,\r\n                    \"Top\": 0.5131525993347168\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4442935585975647,\r\n                        \"Y\": 0.5131525993347168\r\n                    },\r\n                    {\r\n                        \"X\": 0.45301389694213867,\r\n                        \"Y\": 0.5131525993347168\r\n                    },\r\n                    {\r\n                        \"X\": 0.45301389694213867,\r\n                        \"Y\": 0.5230962634086609\r\n                    },\r\n                    {\r\n                        \"X\": 0.4442935585975647,\r\n                        \"Y\": 0.5230962634086609\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"219ea354-f27c-4f02-83fb-5fa46a609ff1\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.90293884277344,\r\n            \"Text\": \"6\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008159858174622059,\r\n                    \"Height\": 0.009985432960093021,\r\n                    \"Left\": 0.5954707860946655,\r\n                    \"Top\": 0.513150155544281\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5954707860946655,\r\n                        \"Y\": 0.513150155544281\r\n                    },\r\n                    {\r\n                        \"X\": 0.6036306619644165,\r\n                        \"Y\": 0.513150155544281\r\n                    },\r\n                    {\r\n                        \"X\": 0.6036306619644165,\r\n                        \"Y\": 0.5231356024742126\r\n                    },\r\n                    {\r\n                        \"X\": 0.5954707860946655,\r\n                        \"Y\": 0.5231356024742126\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d50363bb-9dfe-48e8-a263-b1643312c630\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8488998413086,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.00813974067568779,\r\n                    \"Height\": 0.01179630495607853,\r\n                    \"Left\": 0.6160118579864502,\r\n                    \"Top\": 0.5123087167739868\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6160118579864502,\r\n                        \"Y\": 0.5123087167739868\r\n                    },\r\n                    {\r\n                        \"X\": 0.6241515874862671,\r\n                        \"Y\": 0.5123087167739868\r\n                    },\r\n                    {\r\n                        \"X\": 0.6241515874862671,\r\n                        \"Y\": 0.5241050124168396\r\n                    },\r\n                    {\r\n                        \"X\": 0.6160118579864502,\r\n                        \"Y\": 0.5241050124168396\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5628b76f-1478-4519-b295-b8e36f210296\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.75177001953125,\r\n            \"Text\": \"33.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.040887974202632904,\r\n                    \"Height\": 0.01015319861471653,\r\n                    \"Left\": 0.6946278810501099,\r\n                    \"Top\": 0.5132156610488892\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6946278810501099,\r\n                        \"Y\": 0.5132156610488892\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355158925056458,\r\n                        \"Y\": 0.5132156610488892\r\n                    },\r\n                    {\r\n                        \"X\": 0.7355158925056458,\r\n                        \"Y\": 0.5233688354492188\r\n                    },\r\n                    {\r\n                        \"X\": 0.6946278810501099,\r\n                        \"Y\": 0.5233688354492188\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1825e9f2-13fd-4f3c-9e34-23d6976551a1\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.87297058105469,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.008328797295689583,\r\n                    \"Height\": 0.011986775323748589,\r\n                    \"Left\": 0.7532258033752441,\r\n                    \"Top\": 0.5123814344406128\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7532258033752441,\r\n                        \"Y\": 0.5123814344406128\r\n                    },\r\n                    {\r\n                        \"X\": 0.7615545988082886,\r\n                        \"Y\": 0.5123814344406128\r\n                    },\r\n                    {\r\n                        \"X\": 0.7615545988082886,\r\n                        \"Y\": 0.5243682265281677\r\n                    },\r\n                    {\r\n                        \"X\": 0.7532258033752441,\r\n                        \"Y\": 0.5243682265281677\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"23a7d95b-3633-4682-bc1f-c4594e149ed4\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.71009826660156,\r\n            \"Text\": \"198.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05010470375418663,\r\n                    \"Height\": 0.010396769270300865,\r\n                    \"Left\": 0.773460328578949,\r\n                    \"Top\": 0.5130289196968079\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.773460328578949,\r\n                        \"Y\": 0.5130289196968079\r\n                    },\r\n                    {\r\n                        \"X\": 0.8235650062561035,\r\n                        \"Y\": 0.5130289196968079\r\n                    },\r\n                    {\r\n                        \"X\": 0.8235650062561035,\r\n                        \"Y\": 0.5234256982803345\r\n                    },\r\n                    {\r\n                        \"X\": 0.773460328578949,\r\n                        \"Y\": 0.5234256982803345\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e7e18d5a-7b18-40ee-a744-1de389290ae3\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.70977020263672,\r\n            \"Text\": \"TOTAL\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04988104850053787,\r\n                    \"Height\": 0.009788980707526207,\r\n                    \"Left\": 0.6097403764724731,\r\n                    \"Top\": 0.5350326895713806\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6097403764724731,\r\n                        \"Y\": 0.5350326895713806\r\n                    },\r\n                    {\r\n                        \"X\": 0.6596214175224304,\r\n                        \"Y\": 0.5350326895713806\r\n                    },\r\n                    {\r\n                        \"X\": 0.6596214175224304,\r\n                        \"Y\": 0.5448216795921326\r\n                    },\r\n                    {\r\n                        \"X\": 0.6097403764724731,\r\n                        \"Y\": 0.5448216795921326\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e508dd22-1630-4b01-b867-4add445a09e5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.42579650878906,\r\n            \"Text\": \"$\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.009480565786361694,\r\n                    \"Height\": 0.012629842385649681,\r\n                    \"Left\": 0.7538336515426636,\r\n                    \"Top\": 0.5335983037948608\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7538336515426636,\r\n                        \"Y\": 0.5335983037948608\r\n                    },\r\n                    {\r\n                        \"X\": 0.7633141875267029,\r\n                        \"Y\": 0.5335983037948608\r\n                    },\r\n                    {\r\n                        \"X\": 0.7633141875267029,\r\n                        \"Y\": 0.5462281703948975\r\n                    },\r\n                    {\r\n                        \"X\": 0.7538336515426636,\r\n                        \"Y\": 0.5462281703948975\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"672b9fdc-a775-4347-b97c-3b200905e93b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.74068450927734,\r\n            \"Text\": \"868.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.055724676698446274,\r\n                    \"Height\": 0.011547648347914219,\r\n                    \"Left\": 0.7669669389724731,\r\n                    \"Top\": 0.5338566303253174\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7669669389724731,\r\n                        \"Y\": 0.5338566303253174\r\n                    },\r\n                    {\r\n                        \"X\": 0.8226916193962097,\r\n                        \"Y\": 0.5338566303253174\r\n                    },\r\n                    {\r\n                        \"X\": 0.8226916193962097,\r\n                        \"Y\": 0.5454042553901672\r\n                    },\r\n                    {\r\n                        \"X\": 0.7669669389724731,\r\n                        \"Y\": 0.5454042553901672\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c98bdc58-6ffa-4f8b-913d-1e8582de0483\"\r\n        },\r\n        {\r\n            \"BlockType\": \"TABLE\",\r\n            \"Confidence\": 94.83769226074219,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.6633150577545166,\r\n                    \"Height\": 0.05414577201008797,\r\n                    \"Left\": 0.08133015036582947,\r\n                    \"Top\": 0.1967758983373642\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.1967758983373642\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.1967758983373642\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.25092166662216187\r\n                    },\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.25092166662216187\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7e5ef053-208b-458b-9331-df52c7a7c165\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"52151131-11e8-4cc5-9d06-c806fdafaa97\",\r\n                        \"15e5333a-ea7f-48a4-8aaf-cadb97315646\",\r\n                        \"e67314f5-d4ef-41e6-9375-9e5b466dacce\",\r\n                        \"f5ccef50-3c52-4331-b36b-05805faa1e09\",\r\n                        \"886075f1-bdad-47f7-b68e-419a4e83ef08\",\r\n                        \"0c33452b-4aa2-4f7b-9e2f-e95260327f0b\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.9603500366211,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.22496838867664337,\r\n                    \"Height\": 0.017890768125653267,\r\n                    \"Left\": 0.08133015036582947,\r\n                    \"Top\": 0.1967758983373642\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.1967758983373642\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.1967758983373642\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.21466666460037231\r\n                    },\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.21466666460037231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"52151131-11e8-4cc5-9d06-c806fdafaa97\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c78fc78e-05af-40a7-a33a-78bea855878d\",\r\n                        \"27b54de6-2954-4a48-87f0-ddce1efd255d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 94.03619384765625,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.4383466839790344,\r\n                    \"Height\": 0.017890768125653267,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.1967758983373642\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.1967758983373642\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.1967758983373642\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.21466666460037231\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.21466666460037231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"15e5333a-ea7f-48a4-8aaf-cadb97315646\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.42321014404297,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.22496838867664337,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.08133015036582947,\r\n                    \"Top\": 0.21466666460037231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.21466666460037231\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.21466666460037231\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.2329999953508377\r\n                    },\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.2329999953508377\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e67314f5-d4ef-41e6-9375-9e5b466dacce\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"0ec7d841-e1a7-429a-9a3b-ee6162580f3e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.49284362792969,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.4383466839790344,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.21466666460037231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.21466666460037231\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.21466666460037231\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.2329999953508377\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.2329999953508377\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f5ccef50-3c52-4331-b36b-05805faa1e09\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"89fe7305-7e2d-47c3-8277-5fe9bec54a72\",\r\n                        \"e8f93732-786b-4a40-afab-4c9c495a029a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.6349868774414,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.22496838867664337,\r\n                    \"Height\": 0.017921671271324158,\r\n                    \"Left\": 0.08133015036582947,\r\n                    \"Top\": 0.2329999953508377\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.2329999953508377\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.2329999953508377\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.25092166662216187\r\n                    },\r\n                    {\r\n                        \"X\": 0.08133015036582947,\r\n                        \"Y\": 0.25092166662216187\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"886075f1-bdad-47f7-b68e-419a4e83ef08\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b98db8bb-dc56-48bf-a592-0d653eddd087\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.70706939697266,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.4383466839790344,\r\n                    \"Height\": 0.017921671271324158,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.2329999953508377\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.2329999953508377\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.2329999953508377\r\n                    },\r\n                    {\r\n                        \"X\": 0.7446452379226685,\r\n                        \"Y\": 0.25092166662216187\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.25092166662216187\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0c33452b-4aa2-4f7b-9e2f-e95260327f0b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"ab7e972b-7430-413a-b434-6a3132cf4c86\",\r\n                        \"03d5eaf1-ff7d-4270-bc77-a7299db3b508\",\r\n                        \"cde41f66-c8b7-46c1-8762-09afd9bab1bb\",\r\n                        \"31ff7af2-612a-4c87-8afd-31841b7ac2c2\",\r\n                        \"52cd56c2-9645-4806-bdc9-ac15d5e253e2\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"TABLE\",\r\n            \"Confidence\": 95.26972198486328,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.6637622117996216,\r\n                    \"Height\": 0.04479650780558586,\r\n                    \"Left\": 0.08105895668268204,\r\n                    \"Top\": 0.2974567413330078\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.2974567413330078\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.2974567413330078\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.34225326776504517\r\n                    },\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.34225326776504517\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"58699d86-46e9-421c-acd9-3f5378f9bde5\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"fa97f3b8-00c1-4dcc-82b7-f979f9771bde\",\r\n                        \"7218e556-98f5-4d40-9b3c-4594fefaabba\",\r\n                        \"a4dd98bb-97ce-4e2c-afbc-e9c857bbc064\",\r\n                        \"c59a9fa6-e86a-480f-bea7-def52c1585c7\",\r\n                        \"97ed5461-948d-4206-9487-0148816c97a3\",\r\n                        \"82e24c09-606e-418f-b62d-8cb997af75ef\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.08624267578125,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2252395749092102,\r\n                    \"Height\": 0.009209920652210712,\r\n                    \"Left\": 0.08105895668268204,\r\n                    \"Top\": 0.2974567413330078\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.2974567413330078\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.2974567413330078\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.30666667222976685\r\n                    },\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.30666667222976685\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"fa97f3b8-00c1-4dcc-82b7-f979f9771bde\",\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.87511444091797,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.4385226368904114,\r\n                    \"Height\": 0.009209920652210712,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.2974567413330078\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.2974567413330078\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.2974567413330078\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.30666667222976685\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.30666667222976685\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7218e556-98f5-4d40-9b3c-4594fefaabba\",\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.80592346191406,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2252395749092102,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.08105895668268204,\r\n                    \"Top\": 0.30666667222976685\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.30666667222976685\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.30666667222976685\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.32499998807907104\r\n                    },\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.32499998807907104\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a4dd98bb-97ce-4e2c-afbc-e9c857bbc064\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5446f760-49a3-43ca-a355-e42e86f06fbb\",\r\n                        \"7817404e-090c-4bb4-970b-f7e842215e63\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 94.60952758789062,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.4385226368904114,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.30666667222976685\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.30666667222976685\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.30666667222976685\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.32499998807907104\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.32499998807907104\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c59a9fa6-e86a-480f-bea7-def52c1585c7\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"50732070-543f-43fd-8e1e-8e274bc3e10b\",\r\n                        \"cda9a244-feba-490b-9ca8-421639b372cc\",\r\n                        \"9ec3f55c-ac6d-42ef-8164-f7aa56e2dad5\",\r\n                        \"be215911-f7ba-4dc2-b29b-690e9fe5face\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.79458618164062,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2252395749092102,\r\n                    \"Height\": 0.01725325547158718,\r\n                    \"Left\": 0.08105895668268204,\r\n                    \"Top\": 0.32499998807907104\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.32499998807907104\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.32499998807907104\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.34225326776504517\r\n                    },\r\n                    {\r\n                        \"X\": 0.08105895668268204,\r\n                        \"Y\": 0.34225326776504517\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"97ed5461-948d-4206-9487-0148816c97a3\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"98bd7d9e-9f8e-47d6-9c58-c943a5ba960a\",\r\n                        \"04cd21b2-cb12-4177-837e-509f4c07ebcb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 94.59809875488281,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.4385226368904114,\r\n                    \"Height\": 0.01725325547158718,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.32499998807907104\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.32499998807907104\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.32499998807907104\r\n                    },\r\n                    {\r\n                        \"X\": 0.7448211908340454,\r\n                        \"Y\": 0.34225326776504517\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.34225326776504517\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"82e24c09-606e-418f-b62d-8cb997af75ef\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b4d0fa73-c7f1-4e45-b71a-9b1086a174d5\",\r\n                        \"2bbcee1e-f4c0-40e5-baa0-54c434145afd\",\r\n                        \"9de38f23-b912-4645-823a-087503fe2d76\",\r\n                        \"55a158fd-f61d-41b9-bbd1-c12b710192a5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"TABLE\",\r\n            \"Confidence\": 99.6632308959961,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.7512964010238647,\r\n                    \"Height\": 0.1546870470046997,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.3913973867893219\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.3913973867893219\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.3913973867893219\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.5460844039916992\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.5460844039916992\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e65b2f4c-8114-4143-84b8-c152b1cb989d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"a201593d-0c3a-4417-a4c9-1f702588c1e7\",\r\n                        \"3c751152-b09f-46a2-9ee6-c91aa350b362\",\r\n                        \"6fe89c08-a86f-46b5-9ae5-7f42d1898cfc\",\r\n                        \"4e737813-8242-4780-b80b-ad1c38fbf509\",\r\n                        \"6edddd20-4017-4191-b73b-5489cdc16039\",\r\n                        \"6b342c80-0ce1-4c83-81ef-2cc20c755538\",\r\n                        \"0f85989a-74db-4a6e-9610-2c00513a3075\",\r\n                        \"dcea37c8-5a2b-4895-a592-3efb0594ff0d\",\r\n                        \"2ed77006-d4d1-41a6-9227-a8dde7a3f627\",\r\n                        \"5b7413e3-2e37-4a72-80e4-555deb7782dc\",\r\n                        \"fe949e5c-a605-4039-aaf9-3fd2faad10ee\",\r\n                        \"d16d4245-ad22-4fe3-846a-a32108efbda9\",\r\n                        \"d2909f45-a0ef-4709-b9c5-998e7a4ad666\",\r\n                        \"6bc6362f-ae05-4d6f-8783-d14cc24d0647\",\r\n                        \"90365387-1705-4279-84e3-8c0a5ae0c00b\",\r\n                        \"ec3aec1f-f058-48f0-bbb2-1cc2d4431435\",\r\n                        \"2ac23b00-1b4e-4411-82f5-feb0691c38c6\",\r\n                        \"ff0b3f25-57fe-4c17-9992-fbb80be97003\",\r\n                        \"4264dff0-7d0a-4875-a36f-b6f0f5b91054\",\r\n                        \"cc24a2f4-7bc6-45a4-b5d0-69a5e9b1521b\",\r\n                        \"5f5b594d-2807-47c1-a191-7a1b6c14064d\",\r\n                        \"72239420-fa6e-43d5-a7e9-1469b02cb4c5\",\r\n                        \"5a6329da-8911-4b57-b017-a617fcc841f2\",\r\n                        \"3c46b24e-f89c-4dcb-b253-64a1f099bf11\",\r\n                        \"a92719ac-f6ac-408e-8b0c-02d40915d4d1\",\r\n                        \"9e099397-be82-418e-af15-da644c7b1bc6\",\r\n                        \"99dd8e9b-a329-4488-b8ae-853bdb7b4cea\",\r\n                        \"ecfc8ece-c1d2-4739-8e3e-3fec2c9f01d1\",\r\n                        \"0b90adce-46c2-4c91-a6d4-c4155384a3d6\",\r\n                        \"c7084652-eb29-414e-872b-e21b030548e0\",\r\n                        \"bc9e4186-2e96-45b7-aabc-20d464d260a6\",\r\n                        \"b2dd9e46-28bf-469e-8885-30161900596d\",\r\n                        \"63ce4b24-bf99-4595-8e2c-3d69a913d5df\",\r\n                        \"e65e4ca0-6daf-4374-840b-a5563b1d1d5d\",\r\n                        \"6ef6dd6d-8af3-43b3-978d-a8357f19c0d2\",\r\n                        \"6990ddf8-83ff-4748-a3f0-9673e64fae5c\",\r\n                        \"98640a2d-e0f7-49e9-8152-b6ac5fbb701c\",\r\n                        \"83ae1268-09ec-4623-9fbb-f66fa329f3f5\",\r\n                        \"59845e5a-cc9a-4aa3-8c3a-592a64e1b7c5\",\r\n                        \"9c4fd8b8-fde0-4c79-ad98-147df37b7c7e\",\r\n                        \"5dc9ce5b-88da-427e-9662-4e6c0aaf2af3\",\r\n                        \"05e81486-1d0d-466c-a99c-11eb0067e5e8\",\r\n                        \"1585b926-b599-4f89-8127-c7a2bd42f9e9\",\r\n                        \"8484b713-db37-4308-b709-d7ecc8957c85\",\r\n                        \"ebad9f12-1a2a-4549-aad4-adb7b12fab17\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"Type\": \"MERGED_CELL\",\r\n                    \"Ids\": [\r\n                        \"ea180944-1676-4275-a75c-3616105b0593\",\r\n                        \"00cea109-511d-4110-8402-58fb43f4ebe9\",\r\n                        \"f50d32fc-2e9b-446d-946c-851dfb7946cc\",\r\n                        \"65e820fe-95de-42d2-bca2-540caac54c15\",\r\n                        \"c697322f-3d53-4a55-a992-b36182527dbb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 79.101806640625,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2246197611093521,\r\n                    \"Height\": 0.006602620240300894,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.3913973867893219\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.3913973867893219\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.3913973867893219\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.39800000190734863\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a201593d-0c3a-4417-a4c9-1f702588c1e7\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 79.39408111572266,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.006666666828095913,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.39133334159851074\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.39800000190734863\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3c751152-b09f-46a2-9ee6-c91aa350b362\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 79.39408111572266,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.006666666828095913,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.39133334159851074\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.39800000190734863\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6fe89c08-a86f-46b5-9ae5-7f42d1898cfc\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 79.39408111572266,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.006666666828095913,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.39133334159851074\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.39800000190734863\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4e737813-8242-4780-b80b-ad1c38fbf509\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 79.39408111572266,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08800690621137619,\r\n                    \"Height\": 0.006666666828095913,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.39133334159851074\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.8330457210540771,\r\n                        \"Y\": 0.39133334159851074\r\n                    },\r\n                    {\r\n                        \"X\": 0.8330457210540771,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.39800000190734863\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6edddd20-4017-4191-b73b-5489cdc16039\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.36685943603516,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2246197611093521,\r\n                    \"Height\": 0.01899999938905239,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.39800000190734863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.4169999957084656\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6b342c80-0ce1-4c83-81ef-2cc20c755538\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"976f321a-0079-4ac5-8cfa-3931f6d25721\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 92.70814514160156,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.01899999938905239,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.39800000190734863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4169999957084656\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0f85989a-74db-4a6e-9610-2c00513a3075\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"58627ea4-5571-4714-b335-62bf559330b9\",\r\n                        \"1afd8415-1391-47a2-99d6-7dcba575ed12\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.69529724121094,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.01899999938905239,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.39800000190734863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4169999957084656\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"dcea37c8-5a2b-4895-a592-3efb0594ff0d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"57ddc909-afee-4588-b51e-087c92397690\",\r\n                        \"40651346-7711-4c98-a6d8-50e859aa6255\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.41168212890625,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.01899999938905239,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.39800000190734863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4169999957084656\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2ed77006-d4d1-41a6-9227-a8dde7a3f627\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"601d91eb-888a-491b-98ff-3497a8866fd4\",\r\n                        \"a63a8c42-205c-44e9-80f8-190e5eae682d\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 88.70348358154297,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.01899999938905239,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.39800000190734863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4169999957084656\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5b7413e3-2e37-4a72-80e4-555deb7782dc\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"6929d51a-8d1d-4cf7-a826-164a09f8e132\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.56806182861328,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.4169999957084656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.43566668033599854\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"fe949e5c-a605-4039-aaf9-3fd2faad10ee\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"afd7e61b-807e-49ff-ac2e-1906e6651db0\",\r\n                        \"626d0aa1-8b4c-4a76-88bb-30cd76f9a2fc\",\r\n                        \"f2f06ff8-bb05-434a-9328-91dcb572c758\",\r\n                        \"3b4d8be7-a8c8-4953-9f38-007824cb566d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.9063949584961,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.4169999957084656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.43566668033599854\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d16d4245-ad22-4fe3-846a-a32108efbda9\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e765ce17-0305-44d5-9205-bd9d55783575\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.90229797363281,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.4169999957084656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.43566668033599854\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d2909f45-a0ef-4709-b9c5-998e7a4ad666\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"fafb0e5a-98a0-4700-8215-89b265962817\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.62113952636719,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.4169999957084656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.43566668033599854\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6bc6362f-ae05-4d6f-8783-d14cc24d0647\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"32ffbac0-75f9-437a-9d7c-de6fc0d9cf8e\",\r\n                        \"51b249f5-51d4-409e-9e0c-64c29eb0c3c2\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 87.93636322021484,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.4169999957084656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.43566668033599854\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"90365387-1705-4279-84e3-8c0a5ae0c00b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e5c7519d-6d5e-43e8-8142-4b64a852a40d\",\r\n                        \"ca482aed-48ee-4eeb-9a36-51c866d4d7a4\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.56806182861328,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.43566668033599854\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.45399999618530273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ec3aec1f-f058-48f0-bbb2-1cc2d4431435\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.93106842041016,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.43566668033599854\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.45399999618530273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2ac23b00-1b4e-4411-82f5-feb0691c38c6\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"510be532-246a-4fb9-9ff3-3f0294f32cbb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.93762969970703,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.43566668033599854\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.45399999618530273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ff0b3f25-57fe-4c17-9992-fbb80be97003\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"f5cdf05c-a198-4e9a-8ff1-d48dd7b7e46a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.65946197509766,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.43566668033599854\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.45399999618530273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4264dff0-7d0a-4875-a36f-b6f0f5b91054\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"53bfa876-64ff-4359-b6ec-2977176fe80a\",\r\n                        \"d37ad0a1-b2b2-406f-8147-7aaa9bf084fc\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 87.003173828125,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.43566668033599854\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.43566668033599854\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.45399999618530273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cc24a2f4-7bc6-45a4-b5d0-69a5e9b1521b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"3daf02f4-8117-4834-81ec-9bba316aa683\",\r\n                        \"c0e6161c-2800-40da-8a67-bda82bc2930f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.56990051269531,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.45399999618530273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.4723333418369293\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5f5b594d-2807-47c1-a191-7a1b6c14064d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"33ae1ef2-474b-464e-9321-4ffa343b253b\",\r\n                        \"14d3acbc-5b52-42ab-ba8d-d4033d209cb8\",\r\n                        \"28ce313d-73ca-4d7e-af22-ee0e4c275a16\",\r\n                        \"e023bcd3-2bf4-43fc-9b75-7a341e19311f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.90454864501953,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.45399999618530273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4723333418369293\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"72239420-fa6e-43d5-a7e9-1469b02cb4c5\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5a804662-e654-4dd3-996e-4fed73f1be55\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.91139221191406,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.45399999618530273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4723333418369293\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5a6329da-8911-4b57-b017-a617fcc841f2\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4f3abace-b5e7-411a-8cd3-cbe9fdcff20d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.63330078125,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.45399999618530273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4723333418369293\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3c46b24e-f89c-4dcb-b253-64a1f099bf11\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"76a4a8aa-9e61-4709-9426-c1142076e82e\",\r\n                        \"6fb70315-37b2-4de9-b0d5-89b0de8f7006\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 86.97779083251953,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.45399999618530273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4723333418369293\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a92719ac-f6ac-408e-8b0c-02d40915d4d1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"98ac9164-de48-48eb-893e-0c4621913518\",\r\n                        \"a03889a6-3396-4994-b362-fb4f846fb9ee\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.56990051269531,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.4723333418369293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.4906666576862335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9e099397-be82-418e-af15-da644c7b1bc6\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.8587417602539,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.4723333418369293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4906666576862335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"99dd8e9b-a329-4488-b8ae-853bdb7b4cea\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"ac0e6b8a-1227-4ff8-b74a-742a41f8f185\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.8660888671875,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.4723333418369293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4906666576862335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ecfc8ece-c1d2-4739-8e3e-3fec2c9f01d1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4e23f074-c3c1-4b52-9520-14823ad561f4\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.588134765625,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.4723333418369293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4906666576862335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0b90adce-46c2-4c91-a6d4-c4155384a3d6\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"7948502b-886b-4f85-94a5-d3143aac886c\",\r\n                        \"b89e49fd-c1c3-4de7-9e9a-7c4a470e9267\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 86.93396759033203,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.4723333418369293\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.4723333418369293\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4906666576862335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c7084652-eb29-414e-872b-e21b030548e0\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"8129338c-787d-4422-8018-435a32805203\",\r\n                        \"07a22183-7881-40f1-a701-85db4b5ad752\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.11054992675781,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.4906666576862335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.5090000033378601\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"bc9e4186-2e96-45b7-aabc-20d464d260a6\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4883c498-209b-4cc8-9b53-e5d2de186d81\",\r\n                        \"d4da57e3-2794-49dc-a1d5-341c41f2c52a\",\r\n                        \"470f6900-e4d1-42b8-ac06-8c8accf49f69\",\r\n                        \"df46989f-a2cb-4abd-8cb3-f4d17085eefb\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.44349670410156,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.4906666576862335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.5090000033378601\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b2dd9e46-28bf-469e-8885-30161900596d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"7d456497-1456-4489-a878-ddefcb3a88ba\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.45539093017578,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.4906666576862335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.5090000033378601\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"63ce4b24-bf99-4595-8e2c-3d69a913d5df\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"002b21dc-41d8-4e8d-a001-bd69975c86bd\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.17870330810547,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.4906666576862335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5090000033378601\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e65e4ca0-6daf-4374-840b-a5563b1d1d5d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"42ad0ed7-69db-476f-aa95-366d9e6ec501\",\r\n                        \"2742d5cd-3227-49a5-968b-15e378959805\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 86.53666687011719,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.018333332613110542,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.4906666576862335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.5090000033378601\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6ef6dd6d-8af3-43b3-978d-a8357f19c0d2\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c18740e2-5f58-4f55-8f2a-f0c5e200d785\",\r\n                        \"a2aa231e-606e-4dd4-88e2-f3636e8ca107\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.11054992675781,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.5090000033378601\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.528333306312561\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6990ddf8-83ff-4748-a3f0-9673e64fae5c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.14976501464844,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.5090000033378601\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.528333306312561\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"98640a2d-e0f7-49e9-8152-b6ac5fbb701c\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"219ea354-f27c-4f02-83fb-5fa46a609ff1\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.16486358642578,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.5090000033378601\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.528333306312561\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"83ae1268-09ec-4623-9fbb-f66fa329f3f5\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d50363bb-9dfe-48e8-a263-b1643312c630\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 88.88908386230469,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.5090000033378601\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.528333306312561\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"59845e5a-cc9a-4aa3-8c3a-592a64e1b7c5\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5628b76f-1478-4519-b295-b8e36f210296\",\r\n                        \"1825e9f2-13fd-4f3c-9e34-23d6976551a1\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 86.255615234375,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.5090000033378601\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.5090000033378601\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.528333306312561\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9c4fd8b8-fde0-4c79-ad98-147df37b7c7e\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"23a7d95b-3633-4682-bc1f-c4594e149ed4\",\r\n                        \"e7e18d5a-7b18-40ee-a744-1de389290ae3\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.08364868164062,\r\n            \"RowIndex\": 9,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2247627228498459,\r\n                    \"Height\": 0.017666665837168694,\r\n                    \"Left\": 0.08153580874204636,\r\n                    \"Top\": 0.528333306312561\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.5460000038146973\r\n                    },\r\n                    {\r\n                        \"X\": 0.08153580874204636,\r\n                        \"Y\": 0.5460000038146973\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5dc9ce5b-88da-427e-9662-4e6c0aaf2af3\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.08364868164062,\r\n            \"RowIndex\": 9,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1509922295808792,\r\n                    \"Height\": 0.017666665837168694,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.528333306312561\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.5460000038146973\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.5460000038146973\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"05e81486-1d0d-466c-a99c-11eb0067e5e8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 93.08364868164062,\r\n            \"RowIndex\": 9,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14969801902770996,\r\n                    \"Height\": 0.017666665837168694,\r\n                    \"Left\": 0.45729076862335205,\r\n                    \"Top\": 0.528333306312561\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5460000038146973\r\n                    },\r\n                    {\r\n                        \"X\": 0.45729076862335205,\r\n                        \"Y\": 0.5460000038146973\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1585b926-b599-4f89-8127-c7a2bd42f9e9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.78193664550781,\r\n            \"RowIndex\": 9,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13805004954338074,\r\n                    \"Height\": 0.017751099541783333,\r\n                    \"Left\": 0.606988787651062,\r\n                    \"Top\": 0.528333306312561\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.5460844039916992\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5460844039916992\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8484b713-db37-4308-b709-d7ecc8957c85\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e508dd22-1630-4b01-b867-4add445a09e5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.0627670288086,\r\n            \"RowIndex\": 9,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08793633431196213,\r\n                    \"Height\": 0.017751099541783333,\r\n                    \"Left\": 0.7450388073921204,\r\n                    \"Top\": 0.528333306312561\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.5460844039916992\r\n                    },\r\n                    {\r\n                        \"X\": 0.7450388073921204,\r\n                        \"Y\": 0.5460844039916992\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ebad9f12-1a2a-4549-aad4-adb7b12fab17\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"672b9fdc-a775-4347-b97c-3b200905e93b\",\r\n                        \"c98bdc58-6ffa-4f8b-913d-1e8582de0483\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 79.39408111572266,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 4,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.5266766548156738,\r\n                    \"Height\": 0.006602620240300894,\r\n                    \"Left\": 0.30629852414131165,\r\n                    \"Top\": 0.3913973867893219\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.3913973867893219\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.3913973867893219\r\n                    },\r\n                    {\r\n                        \"X\": 0.8329751491546631,\r\n                        \"Y\": 0.39800000190734863\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.39800000190734863\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ea180944-1676-4275-a75c-3616105b0593\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"3c751152-b09f-46a2-9ee6-c91aa350b362\",\r\n                        \"6fe89c08-a86f-46b5-9ae5-7f42d1898cfc\",\r\n                        \"4e737813-8242-4780-b80b-ad1c38fbf509\",\r\n                        \"6edddd20-4017-4191-b73b-5489cdc16039\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 91.56806182861328,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 2,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2246197611093521,\r\n                    \"Height\": 0.03700000047683716,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.4169999957084656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4169999957084656\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.45399999618530273\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"00cea109-511d-4110-8402-58fb43f4ebe9\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"fe949e5c-a605-4039-aaf9-3fd2faad10ee\",\r\n                        \"ec3aec1f-f058-48f0-bbb2-1cc2d4431435\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 90.56990051269531,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 2,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2246197611093521,\r\n                    \"Height\": 0.036666665226221085,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.45399999618530273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.45399999618530273\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.4906666576862335\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f50d32fc-2e9b-446d-946c-851dfb7946cc\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5f5b594d-2807-47c1-a191-7a1b6c14064d\",\r\n                        \"9e099397-be82-418e-af15-da644c7b1bc6\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 90.11054992675781,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 2,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2246197611093521,\r\n                    \"Height\": 0.03766666725277901,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.4906666576862335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.4906666576862335\r\n                    },\r\n                    {\r\n                        \"X\": 0.30629852414131165,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.528333306312561\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"65e820fe-95de-42d2-bca2-540caac54c15\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"bc9e4186-2e96-45b7-aabc-20d464d260a6\",\r\n                        \"6990ddf8-83ff-4748-a3f0-9673e64fae5c\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 93.08364868164062,\r\n            \"RowIndex\": 9,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 3,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.5253100395202637,\r\n                    \"Height\": 0.017751099541783333,\r\n                    \"Left\": 0.08167877048254013,\r\n                    \"Top\": 0.528333306312561\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.528333306312561\r\n                    },\r\n                    {\r\n                        \"X\": 0.606988787651062,\r\n                        \"Y\": 0.5460844039916992\r\n                    },\r\n                    {\r\n                        \"X\": 0.08167877048254013,\r\n                        \"Y\": 0.5460844039916992\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c697322f-3d53-4a55-a992-b36182527dbb\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5dc9ce5b-88da-427e-9662-4e6c0aaf2af3\",\r\n                        \"05e81486-1d0d-466c-a99c-11eb0067e5e8\",\r\n                        \"1585b926-b599-4f89-8127-c7a2bd42f9e9\"\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\r\n    \"ResponseMetadata\": {\r\n        \"RequestId\": \"0640e98e-2649-48b5-958d-33ef0196836f\",\r\n        \"HTTPStatusCode\": 200,\r\n        \"HTTPHeaders\": {\r\n            \"x-amzn-requestid\": \"0640e98e-2649-48b5-958d-33ef0196836f\",\r\n            \"content-type\": \"application/x-amz-json-1.1\",\r\n            \"content-length\": \"113594\",\r\n            \"date\": \"Mon, 14 Mar 2022 17:13:52 GMT\"\r\n        },\r\n        \"RetryAttempts\": 0\r\n    }\r\n}"
  },
  {
    "path": "src-python/tests/data/tables_with_merged_cells_sample2.json",
    "content": "{\r\n    \"DocumentMetadata\": {\r\n        \"Pages\": 1\r\n    },\r\n    \"Blocks\": [\r\n        {\r\n            \"BlockType\": \"PAGE\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 1.0,\r\n                    \"Height\": 1.0,\r\n                    \"Left\": 0.0,\r\n                    \"Top\": 0.0\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 1.5849614334573464e-16,\r\n                        \"Y\": 0.0\r\n                    },\r\n                    {\r\n                        \"X\": 1.0,\r\n                        \"Y\": 9.462437987838284e-17\r\n                    },\r\n                    {\r\n                        \"X\": 1.0,\r\n                        \"Y\": 1.0\r\n                    },\r\n                    {\r\n                        \"X\": 0.0,\r\n                        \"Y\": 1.0\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"bba698bb-acca-454d-9fff-f04300083e96\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"1fde44c5-99b1-43ee-a804-4ffa5dfa6994\",\r\n                        \"254f0735-e224-401a-86db-1632ce3abdcc\",\r\n                        \"4adea4e6-2506-4bd3-b2ce-2922237d67e7\",\r\n                        \"3657be64-0272-4d9a-bdff-4c94b64393d3\",\r\n                        \"aa7d1b85-c1b5-4764-824b-cdd1768721b9\",\r\n                        \"539ed245-3f78-4dbd-b1e8-e1b3bf79cf66\",\r\n                        \"2f480379-3e39-4df2-8539-b6163aced25f\",\r\n                        \"6264e099-f5a3-4b3c-b22f-05f4cd2b0d49\",\r\n                        \"0e0add63-2a61-47ea-98a2-6ab525f58729\",\r\n                        \"c5e5471f-379b-4c37-99ec-3956d7e66523\",\r\n                        \"275e1180-f4a2-4b17-bca4-7d2eeb633097\",\r\n                        \"b0ba2e5f-1b5d-4fca-863a-14ea3ecfe5cd\",\r\n                        \"138396d6-0a95-4ccb-984f-6a4b79a1c5f7\",\r\n                        \"862936cc-aad3-4ca1-8535-40b4f8214a67\",\r\n                        \"b860b85f-0e3e-4b7f-95a5-8846f6daf544\",\r\n                        \"aad8e472-055f-4686-9167-313affba80ff\",\r\n                        \"66d9c484-c41c-4f08-a4b2-30ad9b81dd44\",\r\n                        \"84b2b4d2-a314-4985-aa1c-0cdefc53f621\",\r\n                        \"f5930883-6d00-4910-8c1f-0d2f0a521976\",\r\n                        \"ab396c79-974d-491f-a06e-cf05f30d4731\",\r\n                        \"fea237d5-c9a0-4076-8020-3abc93acc372\",\r\n                        \"b94c7cfe-f3bd-4461-8753-eb1ee5eda423\",\r\n                        \"08741515-7254-4724-9ced-33285e154ee2\",\r\n                        \"6f3f9fa4-c490-481a-aabc-96dcccfe7a7b\",\r\n                        \"f8090d64-84e5-47c1-9838-0774aafa27ad\",\r\n                        \"0adbdaf0-a7d5-4239-a071-03ecc710e882\",\r\n                        \"3fe35955-3a61-47fe-9594-c894df8e5d62\",\r\n                        \"b1b2a2f0-b70b-40fe-8e03-b5ca275b673a\",\r\n                        \"da867035-d8c0-4c51-8796-2e87461fd99b\",\r\n                        \"c4bfbb17-a2e2-4cbc-ad27-f02e1cfef7a2\",\r\n                        \"485fd1a5-2a0b-4ae6-bd20-f022e2838d7b\",\r\n                        \"6bfb55ea-a1be-4d65-9071-75db92bc8623\",\r\n                        \"ac3862d3-31bb-437b-a3b9-ddf60af50cc6\",\r\n                        \"8b4bf07a-ccc1-4002-b6f3-d516c31878d0\",\r\n                        \"c699ee2c-9260-4e26-8128-2e181a73c55d\",\r\n                        \"4d6f216f-2032-4a70-bb3b-15492c2eaa72\",\r\n                        \"eac7ea82-542c-4bb6-bc4c-c1e6fd4e8daf\",\r\n                        \"a2ac2182-003b-4bdb-9228-335074aa94be\",\r\n                        \"6337a270-f0a2-4226-bc7c-c06063516670\",\r\n                        \"827c1390-b674-4e9e-8516-9bd9bcc4e9b0\",\r\n                        \"85a12e8c-fa69-46c9-929a-d7db84e003b2\",\r\n                        \"ab784296-1763-4532-aa2e-cbf22918623b\",\r\n                        \"24b26225-8e3b-48d6-9ac8-46894294464f\",\r\n                        \"b2730a2c-cbdf-4210-9f2e-c0f7b5464ef9\",\r\n                        \"e6884ceb-266e-4bc5-9ce9-f4395449c8ad\",\r\n                        \"b1a917ee-c839-4df7-bbe5-820632f94933\",\r\n                        \"5866c180-48a3-4f47-8b7e-5dca0acaae2d\",\r\n                        \"4fee9f8f-db98-42dd-9869-64eae32805d1\",\r\n                        \"cf04c398-7d85-4365-b781-79e08d907b96\",\r\n                        \"9395e6b5-15b6-484e-b767-f39182e3c17a\",\r\n                        \"06afed70-72f1-400a-a562-9f3c7dc8af6b\",\r\n                        \"37aee42d-bd2e-464a-92f1-f4f590283357\",\r\n                        \"e657a869-ff71-4215-a516-dc08d5ca3421\",\r\n                        \"99cdd787-4912-49fe-90e4-e694810e50da\",\r\n                        \"84447582-0039-4cf6-885d-5355873186a7\",\r\n                        \"6b90904d-f111-4d89-993d-ab45fdc6b0fb\",\r\n                        \"9ea44e79-fd9a-496e-b775-af36f3aee77e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.76669311523438,\r\n            \"Text\": \"Your Statement\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15033206343650818,\r\n                    \"Height\": 0.012749933637678623,\r\n                    \"Left\": 0.7607807517051697,\r\n                    \"Top\": 0.03376985713839531\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7607807517051697,\r\n                        \"Y\": 0.03376985713839531\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111127853393555,\r\n                        \"Y\": 0.03376985713839531\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111127853393555,\r\n                        \"Y\": 0.04651978984475136\r\n                    },\r\n                    {\r\n                        \"X\": 0.7607807517051697,\r\n                        \"Y\": 0.04651978984475136\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1fde44c5-99b1-43ee-a804-4ffa5dfa6994\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4e4c7c23-ab31-4c8b-90f0-a98d126d479b\",\r\n                        \"8e50bb90-0f7c-4400-882b-49b02400f559\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.80059051513672,\r\n            \"Text\": \"Bank of Something\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.17888177931308746,\r\n                    \"Height\": 0.01654028333723545,\r\n                    \"Left\": 0.12185885012149811,\r\n                    \"Top\": 0.04262441396713257\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.12185885012149811,\r\n                        \"Y\": 0.04262441396713257\r\n                    },\r\n                    {\r\n                        \"X\": 0.30074062943458557,\r\n                        \"Y\": 0.04262441396713257\r\n                    },\r\n                    {\r\n                        \"X\": 0.30074062943458557,\r\n                        \"Y\": 0.05916469916701317\r\n                    },\r\n                    {\r\n                        \"X\": 0.12185885012149811,\r\n                        \"Y\": 0.05916469916701317\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"254f0735-e224-401a-86db-1632ce3abdcc\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"04c0f2ab-3917-4ddd-9e6d-91fe8e8a74a3\",\r\n                        \"758964c6-ad6a-4b58-bea0-52a41e744e86\",\r\n                        \"8c891b8e-a5b3-43ac-b5e8-6643302a2cce\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.17183685302734,\r\n            \"Text\": \"Contact Tel 1-800-000-000\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.21204093098640442,\r\n                    \"Height\": 0.011748982593417168,\r\n                    \"Left\": 0.6990795731544495,\r\n                    \"Top\": 0.07273811101913452\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6990795731544495,\r\n                        \"Y\": 0.07273811101913452\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111204743385315,\r\n                        \"Y\": 0.07273811101913452\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111204743385315,\r\n                        \"Y\": 0.08448708802461624\r\n                    },\r\n                    {\r\n                        \"X\": 0.6990795731544495,\r\n                        \"Y\": 0.08448708802461624\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4adea4e6-2506-4bd3-b2ce-2922237d67e7\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"577832c6-0a6b-4f8f-aa77-5fff9d40865b\",\r\n                        \"2010c767-edf2-4ac2-9f80-63314f47c282\",\r\n                        \"6a7421da-4d33-4ef1-aab3-c0dfaf6927a0\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.65745544433594,\r\n            \"Text\": \"P.O. Box 12321\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.11995558440685272,\r\n                    \"Height\": 0.011437200009822845,\r\n                    \"Left\": 0.1213848814368248,\r\n                    \"Top\": 0.08278797566890717\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1213848814368248,\r\n                        \"Y\": 0.08278797566890717\r\n                    },\r\n                    {\r\n                        \"X\": 0.24134045839309692,\r\n                        \"Y\": 0.08278797566890717\r\n                    },\r\n                    {\r\n                        \"X\": 0.24134045839309692,\r\n                        \"Y\": 0.09422517567873001\r\n                    },\r\n                    {\r\n                        \"X\": 0.1213848814368248,\r\n                        \"Y\": 0.09422517567873001\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3657be64-0272-4d9a-bdff-4c94b64393d3\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4e94091a-6aa7-403a-b7d6-04505b27f96d\",\r\n                        \"90a22f13-9f4d-4a4a-b808-716af3acd582\",\r\n                        \"78216481-196f-4da3-8834-023f3961eaea\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.56536102294922,\r\n            \"Text\": \"Text Phone 123-456-7890\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2180045247077942,\r\n                    \"Height\": 0.011479349806904793,\r\n                    \"Left\": 0.6916064620018005,\r\n                    \"Top\": 0.09110803157091141\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6916064620018005,\r\n                        \"Y\": 0.09110803157091141\r\n                    },\r\n                    {\r\n                        \"X\": 0.9096109867095947,\r\n                        \"Y\": 0.09110803157091141\r\n                    },\r\n                    {\r\n                        \"X\": 0.9096109867095947,\r\n                        \"Y\": 0.10258737951517105\r\n                    },\r\n                    {\r\n                        \"X\": 0.6916064620018005,\r\n                        \"Y\": 0.10258737951517105\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"aa7d1b85-c1b5-4764-824b-cdd1768721b9\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"9554cfb5-1113-40e0-bd22-39ad63956142\",\r\n                        \"666bbc07-2920-41e3-8eed-aed694373128\",\r\n                        \"da591199-48d0-449a-8c96-d9c48c782b3f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.70499420166016,\r\n            \"Text\": \"AnyCity, DA 12765\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14736086130142212,\r\n                    \"Height\": 0.014036356471478939,\r\n                    \"Left\": 0.12068507820367813,\r\n                    \"Top\": 0.10161841660737991\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.12068507820367813,\r\n                        \"Y\": 0.10161841660737991\r\n                    },\r\n                    {\r\n                        \"X\": 0.26804596185684204,\r\n                        \"Y\": 0.10161841660737991\r\n                    },\r\n                    {\r\n                        \"X\": 0.26804596185684204,\r\n                        \"Y\": 0.11565477401018143\r\n                    },\r\n                    {\r\n                        \"X\": 0.12068507820367813,\r\n                        \"Y\": 0.11565477401018143\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"539ed245-3f78-4dbd-b1e8-e1b3bf79cf66\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"61be3bec-078e-40c8-b4f4-93c77b95c66a\",\r\n                        \"d9374911-6c28-41d3-a2cb-2f5dbc809188\",\r\n                        \"b7f32cc3-6f0e-460c-b02c-73037d94e2b9\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 98.92413330078125,\r\n            \"Text\": \"www.bankofsomething.com\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.21558380126953125,\r\n                    \"Height\": 0.013215342536568642,\r\n                    \"Left\": 0.6968010663986206,\r\n                    \"Top\": 0.10933388024568558\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6968010663986206,\r\n                        \"Y\": 0.10933388024568558\r\n                    },\r\n                    {\r\n                        \"X\": 0.9123849272727966,\r\n                        \"Y\": 0.10933388024568558\r\n                    },\r\n                    {\r\n                        \"X\": 0.9123849272727966,\r\n                        \"Y\": 0.12254922837018967\r\n                    },\r\n                    {\r\n                        \"X\": 0.6968010663986206,\r\n                        \"Y\": 0.12254922837018967\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2f480379-3e39-4df2-8539-b6163aced25f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"8dccbd01-809f-4459-bfff-15fef5ad7001\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.88333892822266,\r\n            \"Text\": \"Savings Account Statement\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.22242139279842377,\r\n                    \"Height\": 0.013790181837975979,\r\n                    \"Left\": 0.11724167317152023,\r\n                    \"Top\": 0.16871370375156403\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11724167317152023,\r\n                        \"Y\": 0.16871370375156403\r\n                    },\r\n                    {\r\n                        \"X\": 0.3396630585193634,\r\n                        \"Y\": 0.16871370375156403\r\n                    },\r\n                    {\r\n                        \"X\": 0.3396630585193634,\r\n                        \"Y\": 0.18250387907028198\r\n                    },\r\n                    {\r\n                        \"X\": 0.11724167317152023,\r\n                        \"Y\": 0.18250387907028198\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6264e099-f5a3-4b3c-b22f-05f4cd2b0d49\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"9f3881a2-fa5f-46fb-aa3d-e3952e56b571\",\r\n                        \"4fe9d69d-0246-4b66-9b27-c5caeffd0482\",\r\n                        \"04c46051-df76-405e-ab00-741c8b7725ab\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.92440032958984,\r\n            \"Text\": \"Account Summary\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.17514845728874207,\r\n                    \"Height\": 0.01587912067770958,\r\n                    \"Left\": 0.6268610954284668,\r\n                    \"Top\": 0.16049449145793915\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6268610954284668,\r\n                        \"Y\": 0.16049449145793915\r\n                    },\r\n                    {\r\n                        \"X\": 0.8020095825195312,\r\n                        \"Y\": 0.16049449145793915\r\n                    },\r\n                    {\r\n                        \"X\": 0.8020095825195312,\r\n                        \"Y\": 0.17637361586093903\r\n                    },\r\n                    {\r\n                        \"X\": 0.6268610954284668,\r\n                        \"Y\": 0.17637361586093903\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0e0add63-2a61-47ea-98a2-6ab525f58729\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4c0e5a03-e6cc-4558-8b9c-a709693bbdbb\",\r\n                        \"715a62c6-3b96-479c-8f41-93594e1f3ddd\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.92599487304688,\r\n            \"Text\": \"Account name\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.11523371934890747,\r\n                    \"Height\": 0.010773234069347382,\r\n                    \"Left\": 0.11672475934028625,\r\n                    \"Top\": 0.2059226930141449\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11672475934028625,\r\n                        \"Y\": 0.2059226930141449\r\n                    },\r\n                    {\r\n                        \"X\": 0.23195847868919373,\r\n                        \"Y\": 0.2059226930141449\r\n                    },\r\n                    {\r\n                        \"X\": 0.23195847868919373,\r\n                        \"Y\": 0.21669591963291168\r\n                    },\r\n                    {\r\n                        \"X\": 0.11672475934028625,\r\n                        \"Y\": 0.21669591963291168\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c5e5471f-379b-4c37-99ec-3956d7e66523\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c81e200a-1bbc-4233-a1ca-b2211e59c79e\",\r\n                        \"6d937e61-5b43-41d6-aaf1-6dfde763760d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.7999038696289,\r\n            \"Text\": \"John Doe\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07383149862289429,\r\n                    \"Height\": 0.01120115164667368,\r\n                    \"Left\": 0.2716118395328522,\r\n                    \"Top\": 0.20559971034526825\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2716118395328522,\r\n                        \"Y\": 0.20559971034526825\r\n                    },\r\n                    {\r\n                        \"X\": 0.34544333815574646,\r\n                        \"Y\": 0.20559971034526825\r\n                    },\r\n                    {\r\n                        \"X\": 0.34544333815574646,\r\n                        \"Y\": 0.21680086851119995\r\n                    },\r\n                    {\r\n                        \"X\": 0.2716118395328522,\r\n                        \"Y\": 0.21680086851119995\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"275e1180-f4a2-4b17-bca4-7d2eeb633097\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"4dbc4c6c-dd5f-49d6-b6cf-5a0c96490795\",\r\n                        \"4874600a-3d4b-4715-a499-332e6427260f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.36290740966797,\r\n            \"Text\": \"Beginning Balance:\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14944276213645935,\r\n                    \"Height\": 0.014039937406778336,\r\n                    \"Left\": 0.6281481981277466,\r\n                    \"Top\": 0.19994889199733734\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6281481981277466,\r\n                        \"Y\": 0.19994889199733734\r\n                    },\r\n                    {\r\n                        \"X\": 0.7775909304618835,\r\n                        \"Y\": 0.19994889199733734\r\n                    },\r\n                    {\r\n                        \"X\": 0.7775909304618835,\r\n                        \"Y\": 0.21398882567882538\r\n                    },\r\n                    {\r\n                        \"X\": 0.6281481981277466,\r\n                        \"Y\": 0.21398882567882538\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b0ba2e5f-1b5d-4fca-863a-14ea3ecfe5cd\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"abdd0570-ccf6-49b0-9788-89708dfc7e5c\",\r\n                        \"57aab1ba-c38d-4146-906e-2023b5b22587\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.86664581298828,\r\n            \"Text\": \"$1458.09\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07357190549373627,\r\n                    \"Height\": 0.01351706963032484,\r\n                    \"Left\": 0.8630719184875488,\r\n                    \"Top\": 0.19909195601940155\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8630719184875488,\r\n                        \"Y\": 0.19909195601940155\r\n                    },\r\n                    {\r\n                        \"X\": 0.9366438388824463,\r\n                        \"Y\": 0.19909195601940155\r\n                    },\r\n                    {\r\n                        \"X\": 0.9366438388824463,\r\n                        \"Y\": 0.21260902285575867\r\n                    },\r\n                    {\r\n                        \"X\": 0.8630719184875488,\r\n                        \"Y\": 0.21260902285575867\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"138396d6-0a95-4ccb-984f-6a4b79a1c5f7\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c29d1b55-f696-45e2-a38c-25c5b0e3cc35\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.97276306152344,\r\n            \"Text\": \"Account number\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.13309596478939056,\r\n                    \"Height\": 0.011547139845788479,\r\n                    \"Left\": 0.1168891042470932,\r\n                    \"Top\": 0.22412386536598206\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1168891042470932,\r\n                        \"Y\": 0.22412386536598206\r\n                    },\r\n                    {\r\n                        \"X\": 0.24998506903648376,\r\n                        \"Y\": 0.22412386536598206\r\n                    },\r\n                    {\r\n                        \"X\": 0.24998506903648376,\r\n                        \"Y\": 0.2356709986925125\r\n                    },\r\n                    {\r\n                        \"X\": 0.1168891042470932,\r\n                        \"Y\": 0.2356709986925125\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"862936cc-aad3-4ca1-8535-40b4f8214a67\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c7bf3457-ff94-43e6-b2cd-9ae623ecc3a9\",\r\n                        \"9608bebd-b3e0-4a6e-b2f5-cf1f94ed1251\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 97.18062591552734,\r\n            \"Text\": \"00002134001\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.11007608473300934,\r\n                    \"Height\": 0.011229634284973145,\r\n                    \"Left\": 0.26647061109542847,\r\n                    \"Top\": 0.22437746822834015\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.26647061109542847,\r\n                        \"Y\": 0.22437746822834015\r\n                    },\r\n                    {\r\n                        \"X\": 0.376546710729599,\r\n                        \"Y\": 0.22437746822834015\r\n                    },\r\n                    {\r\n                        \"X\": 0.376546710729599,\r\n                        \"Y\": 0.2356071025133133\r\n                    },\r\n                    {\r\n                        \"X\": 0.26647061109542847,\r\n                        \"Y\": 0.2356071025133133\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b860b85f-0e3e-4b7f-95a5-8846f6daf544\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"ece23705-daaf-45bc-a68e-f1c3551ae818\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.86558532714844,\r\n            \"Text\": \"Deposits\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06875639408826828,\r\n                    \"Height\": 0.013877827674150467,\r\n                    \"Left\": 0.6278203129768372,\r\n                    \"Top\": 0.22764593362808228\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6278203129768372,\r\n                        \"Y\": 0.22764593362808228\r\n                    },\r\n                    {\r\n                        \"X\": 0.696576714515686,\r\n                        \"Y\": 0.22764593362808228\r\n                    },\r\n                    {\r\n                        \"X\": 0.696576714515686,\r\n                        \"Y\": 0.24152375757694244\r\n                    },\r\n                    {\r\n                        \"X\": 0.6278203129768372,\r\n                        \"Y\": 0.24152375757694244\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"aad8e472-055f-4686-9167-313affba80ff\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e64178af-08d3-40de-b76a-71b06c4d9f6f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.61690521240234,\r\n            \"Text\": \"$3000.02\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07370360940694809,\r\n                    \"Height\": 0.013619506731629372,\r\n                    \"Left\": 0.8628418445587158,\r\n                    \"Top\": 0.22686760127544403\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8628418445587158,\r\n                        \"Y\": 0.22686760127544403\r\n                    },\r\n                    {\r\n                        \"X\": 0.9365454316139221,\r\n                        \"Y\": 0.22686760127544403\r\n                    },\r\n                    {\r\n                        \"X\": 0.9365454316139221,\r\n                        \"Y\": 0.24048709869384766\r\n                    },\r\n                    {\r\n                        \"X\": 0.8628418445587158,\r\n                        \"Y\": 0.24048709869384766\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"66d9c484-c41c-4f08-a4b2-30ad9b81dd44\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"40d710ef-1c4e-49ce-a3ec-6922f5eee101\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.79232788085938,\r\n            \"Text\": \"Statement Date:\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1297745257616043,\r\n                    \"Height\": 0.010991577059030533,\r\n                    \"Left\": 0.1179182231426239,\r\n                    \"Top\": 0.24304832518100739\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1179182231426239,\r\n                        \"Y\": 0.24304832518100739\r\n                    },\r\n                    {\r\n                        \"X\": 0.2476927489042282,\r\n                        \"Y\": 0.24304832518100739\r\n                    },\r\n                    {\r\n                        \"X\": 0.2476927489042282,\r\n                        \"Y\": 0.2540398836135864\r\n                    },\r\n                    {\r\n                        \"X\": 0.1179182231426239,\r\n                        \"Y\": 0.2540398836135864\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"84b2b4d2-a314-4985-aa1c-0cdefc53f621\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"cbde1032-f55a-47c5-9981-bee2de793b64\",\r\n                        \"8b3b1a68-7aa8-44ba-b01d-129dab407d37\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.70968627929688,\r\n            \"Text\": \"Date\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03818196803331375,\r\n                    \"Height\": 0.01087906863540411,\r\n                    \"Left\": 0.11778225004673004,\r\n                    \"Top\": 0.2615514099597931\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11778225004673004,\r\n                        \"Y\": 0.2615514099597931\r\n                    },\r\n                    {\r\n                        \"X\": 0.1559642106294632,\r\n                        \"Y\": 0.2615514099597931\r\n                    },\r\n                    {\r\n                        \"X\": 0.1559642106294632,\r\n                        \"Y\": 0.2724304795265198\r\n                    },\r\n                    {\r\n                        \"X\": 0.11778225004673004,\r\n                        \"Y\": 0.2724304795265198\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f5930883-6d00-4910-8c1f-0d2f0a521976\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"fcb0c416-41ff-4002-8dc9-42cc23c20487\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.77806091308594,\r\n            \"Text\": \"February 1, 2022 to February 28, 2022\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.30727529525756836,\r\n                    \"Height\": 0.01407299842685461,\r\n                    \"Left\": 0.18352681398391724,\r\n                    \"Top\": 0.26124143600463867\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.18352681398391724,\r\n                        \"Y\": 0.26124143600463867\r\n                    },\r\n                    {\r\n                        \"X\": 0.4908021092414856,\r\n                        \"Y\": 0.26124143600463867\r\n                    },\r\n                    {\r\n                        \"X\": 0.4908021092414856,\r\n                        \"Y\": 0.27531442046165466\r\n                    },\r\n                    {\r\n                        \"X\": 0.18352681398391724,\r\n                        \"Y\": 0.27531442046165466\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ab396c79-974d-491f-a06e-cf05f30d4731\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"cd7b4fd8-9b58-4849-8378-44090fb99dab\",\r\n                        \"8e8a6313-f1fb-426b-abbd-b271836f32d8\",\r\n                        \"a4c1059e-c3a5-4520-ab88-706c914a04c5\",\r\n                        \"c9a2f9c0-f9d0-4599-822b-047369ee663e\",\r\n                        \"b143c7fa-0fc6-48cf-be69-962822108807\",\r\n                        \"3fcacd55-d367-41c8-b3b3-50da985ca66a\",\r\n                        \"34b5f551-bb0c-475e-9de0-76a48f9a9a41\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.67134857177734,\r\n            \"Text\": \"Other Subtractions\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14970996975898743,\r\n                    \"Height\": 0.011510294862091541,\r\n                    \"Left\": 0.6275659203529358,\r\n                    \"Top\": 0.2552162706851959\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6275659203529358,\r\n                        \"Y\": 0.2552162706851959\r\n                    },\r\n                    {\r\n                        \"X\": 0.7772758603096008,\r\n                        \"Y\": 0.2552162706851959\r\n                    },\r\n                    {\r\n                        \"X\": 0.7772758603096008,\r\n                        \"Y\": 0.266726553440094\r\n                    },\r\n                    {\r\n                        \"X\": 0.6275659203529358,\r\n                        \"Y\": 0.266726553440094\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"fea237d5-c9a0-4076-8020-3abc93acc372\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"925b1955-0f0e-456f-bc3f-4c267331dde8\",\r\n                        \"d178d726-b902-4b9c-84f7-54532eb566a5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.17314910888672,\r\n            \"Text\": \"-1120.74\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07064084708690643,\r\n                    \"Height\": 0.011070414446294308,\r\n                    \"Left\": 0.8675276637077332,\r\n                    \"Top\": 0.2557693421840668\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8675276637077332,\r\n                        \"Y\": 0.2557693421840668\r\n                    },\r\n                    {\r\n                        \"X\": 0.938168466091156,\r\n                        \"Y\": 0.2557693421840668\r\n                    },\r\n                    {\r\n                        \"X\": 0.938168466091156,\r\n                        \"Y\": 0.26683977246284485\r\n                    },\r\n                    {\r\n                        \"X\": 0.8675276637077332,\r\n                        \"Y\": 0.26683977246284485\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b94c7cfe-f3bd-4461-8753-eb1ee5eda423\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"91b957a1-85b1-4a86-a9b2-367c7d234432\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.08001708984375,\r\n            \"Text\": \"Checks\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05537194758653641,\r\n                    \"Height\": 0.011456848122179508,\r\n                    \"Left\": 0.6276648044586182,\r\n                    \"Top\": 0.283197820186615\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6276648044586182,\r\n                        \"Y\": 0.283197820186615\r\n                    },\r\n                    {\r\n                        \"X\": 0.683036744594574,\r\n                        \"Y\": 0.283197820186615\r\n                    },\r\n                    {\r\n                        \"X\": 0.683036744594574,\r\n                        \"Y\": 0.2946546673774719\r\n                    },\r\n                    {\r\n                        \"X\": 0.6276648044586182,\r\n                        \"Y\": 0.2946546673774719\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"08741515-7254-4724-9ced-33285e154ee2\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"03b27191-ed78-49ed-bf1b-b5a403d663bc\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.6310806274414,\r\n            \"Text\": \"-0.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041095566004514694,\r\n                    \"Height\": 0.011114277876913548,\r\n                    \"Left\": 0.8999921679496765,\r\n                    \"Top\": 0.283657968044281\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8999921679496765,\r\n                        \"Y\": 0.283657968044281\r\n                    },\r\n                    {\r\n                        \"X\": 0.9410877227783203,\r\n                        \"Y\": 0.283657968044281\r\n                    },\r\n                    {\r\n                        \"X\": 0.9410877227783203,\r\n                        \"Y\": 0.2947722375392914\r\n                    },\r\n                    {\r\n                        \"X\": 0.8999921679496765,\r\n                        \"Y\": 0.2947722375392914\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6f3f9fa4-c490-481a-aabc-96dcccfe7a7b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"25d8e54b-b692-4953-b6f1-cb7f63a303fd\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.80563354492188,\r\n            \"Text\": \"Service Fees\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.097804494202137,\r\n                    \"Height\": 0.01136653684079647,\r\n                    \"Left\": 0.6272029280662537,\r\n                    \"Top\": 0.31111353635787964\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6272029280662537,\r\n                        \"Y\": 0.31111353635787964\r\n                    },\r\n                    {\r\n                        \"X\": 0.7250074744224548,\r\n                        \"Y\": 0.31111353635787964\r\n                    },\r\n                    {\r\n                        \"X\": 0.7250074744224548,\r\n                        \"Y\": 0.32248005270957947\r\n                    },\r\n                    {\r\n                        \"X\": 0.6272029280662537,\r\n                        \"Y\": 0.32248005270957947\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f8090d64-84e5-47c1-9838-0774aafa27ad\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"55b888aa-06bb-4541-9109-5abbd046f0cf\",\r\n                        \"2ecff8d3-70f1-40d5-8335-00ac494d5c8d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.44202423095703,\r\n            \"Text\": \"-0.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04167221486568451,\r\n                    \"Height\": 0.011306905187666416,\r\n                    \"Left\": 0.8975939750671387,\r\n                    \"Top\": 0.31130072474479675\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8975939750671387,\r\n                        \"Y\": 0.31130072474479675\r\n                    },\r\n                    {\r\n                        \"X\": 0.9392662048339844,\r\n                        \"Y\": 0.31130072474479675\r\n                    },\r\n                    {\r\n                        \"X\": 0.9392662048339844,\r\n                        \"Y\": 0.3226076364517212\r\n                    },\r\n                    {\r\n                        \"X\": 0.8975939750671387,\r\n                        \"Y\": 0.3226076364517212\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0adbdaf0-a7d5-4239-a071-03ecc710e882\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b83a8b13-aecd-4639-b062-e380e61463d6\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.90991973876953,\r\n            \"Text\": \"Account Type\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.11152218282222748,\r\n                    \"Height\": 0.013555663637816906,\r\n                    \"Left\": 0.626143753528595,\r\n                    \"Top\": 0.3390418589115143\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.626143753528595,\r\n                        \"Y\": 0.3390418589115143\r\n                    },\r\n                    {\r\n                        \"X\": 0.7376659512519836,\r\n                        \"Y\": 0.3390418589115143\r\n                    },\r\n                    {\r\n                        \"X\": 0.7376659512519836,\r\n                        \"Y\": 0.35259753465652466\r\n                    },\r\n                    {\r\n                        \"X\": 0.626143753528595,\r\n                        \"Y\": 0.35259753465652466\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3fe35955-3a61-47fe-9594-c894df8e5d62\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"a2bb500d-1acc-436d-90cc-615b12d1e1e9\",\r\n                        \"085a75cc-c74d-427b-ab0d-ee456afd22b9\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.86711883544922,\r\n            \"Text\": \"Current Account\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1312568187713623,\r\n                    \"Height\": 0.011288817971944809,\r\n                    \"Left\": 0.8086336255073547,\r\n                    \"Top\": 0.33879220485687256\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8086336255073547,\r\n                        \"Y\": 0.33879220485687256\r\n                    },\r\n                    {\r\n                        \"X\": 0.939890444278717,\r\n                        \"Y\": 0.33879220485687256\r\n                    },\r\n                    {\r\n                        \"X\": 0.939890444278717,\r\n                        \"Y\": 0.35008102655410767\r\n                    },\r\n                    {\r\n                        \"X\": 0.8086336255073547,\r\n                        \"Y\": 0.35008102655410767\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b1b2a2f0-b70b-40fe-8e03-b5ca275b673a\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"69dd21ad-383e-44e1-b924-d92c76ffd4ee\",\r\n                        \"f4a9d778-4524-4b99-8a33-8ab7f42a5db0\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.91693115234375,\r\n            \"Text\": \"Deposits and others Debits\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.2910243272781372,\r\n                    \"Height\": 0.0182288009673357,\r\n                    \"Left\": 0.1183893233537674,\r\n                    \"Top\": 0.4134646952152252\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1183893233537674,\r\n                        \"Y\": 0.4134646952152252\r\n                    },\r\n                    {\r\n                        \"X\": 0.4094136357307434,\r\n                        \"Y\": 0.4134646952152252\r\n                    },\r\n                    {\r\n                        \"X\": 0.4094136357307434,\r\n                        \"Y\": 0.43169349431991577\r\n                    },\r\n                    {\r\n                        \"X\": 0.1183893233537674,\r\n                        \"Y\": 0.43169349431991577\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"da867035-d8c0-4c51-8796-2e87461fd99b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5a296021-4287-4f78-a78c-536c8e1eaab6\",\r\n                        \"e27738f0-2b1f-48a5-9839-a1eb69bf9135\",\r\n                        \"f1fcc458-8f7b-492a-8aaa-69d551ef6918\",\r\n                        \"aeec7aec-5c7a-4aec-83fe-f0ea7cb6b20c\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 98.06315612792969,\r\n            \"Text\": \"Charges\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06470179557800293,\r\n                    \"Height\": 0.01416434720158577,\r\n                    \"Left\": 0.6700726747512817,\r\n                    \"Top\": 0.43666934967041016\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6700726747512817,\r\n                        \"Y\": 0.43666934967041016\r\n                    },\r\n                    {\r\n                        \"X\": 0.7347744703292847,\r\n                        \"Y\": 0.43666934967041016\r\n                    },\r\n                    {\r\n                        \"X\": 0.7347744703292847,\r\n                        \"Y\": 0.4508337080478668\r\n                    },\r\n                    {\r\n                        \"X\": 0.6700726747512817,\r\n                        \"Y\": 0.4508337080478668\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c4bfbb17-a2e2-4cbc-ad27-f02e1cfef7a2\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"cbf6bd1d-b2e6-4a2a-97a3-4278e3a3235d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.66719055175781,\r\n            \"Text\": \"Date\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.038528259843587875,\r\n                    \"Height\": 0.010995320975780487,\r\n                    \"Left\": 0.15134486556053162,\r\n                    \"Top\": 0.44661325216293335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.15134486556053162,\r\n                        \"Y\": 0.44661325216293335\r\n                    },\r\n                    {\r\n                        \"X\": 0.1898731291294098,\r\n                        \"Y\": 0.44661325216293335\r\n                    },\r\n                    {\r\n                        \"X\": 0.1898731291294098,\r\n                        \"Y\": 0.45760855078697205\r\n                    },\r\n                    {\r\n                        \"X\": 0.15134486556053162,\r\n                        \"Y\": 0.45760855078697205\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"485fd1a5-2a0b-4ae6-bd20-f022e2838d7b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"6e2cab21-0bbb-4613-9eb4-71e77105492a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.43017578125,\r\n            \"Text\": \"Description\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09293977171182632,\r\n                    \"Height\": 0.01357218436896801,\r\n                    \"Left\": 0.30430078506469727,\r\n                    \"Top\": 0.4463074207305908\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30430078506469727,\r\n                        \"Y\": 0.4463074207305908\r\n                    },\r\n                    {\r\n                        \"X\": 0.397240549325943,\r\n                        \"Y\": 0.4463074207305908\r\n                    },\r\n                    {\r\n                        \"X\": 0.397240549325943,\r\n                        \"Y\": 0.459879606962204\r\n                    },\r\n                    {\r\n                        \"X\": 0.30430078506469727,\r\n                        \"Y\": 0.459879606962204\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6bfb55ea-a1be-4d65-9071-75db92bc8623\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"dc5f2b70-f9c1-4d22-8e1c-bd35b8de66a7\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.40406036376953,\r\n            \"Text\": \"Details\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05603274703025818,\r\n                    \"Height\": 0.011390462517738342,\r\n                    \"Left\": 0.4990047812461853,\r\n                    \"Top\": 0.44609570503234863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4990047812461853,\r\n                        \"Y\": 0.44609570503234863\r\n                    },\r\n                    {\r\n                        \"X\": 0.5550375580787659,\r\n                        \"Y\": 0.44609570503234863\r\n                    },\r\n                    {\r\n                        \"X\": 0.5550375580787659,\r\n                        \"Y\": 0.4574861526489258\r\n                    },\r\n                    {\r\n                        \"X\": 0.4990047812461853,\r\n                        \"Y\": 0.4574861526489258\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ac3862d3-31bb-437b-a3b9-ddf60af50cc6\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5ab9ed9f-7619-4ea5-83f9-ddd46c468517\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.50791931152344,\r\n            \"Text\": \"Balance\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06332247704267502,\r\n                    \"Height\": 0.01124650053679943,\r\n                    \"Left\": 0.8387684226036072,\r\n                    \"Top\": 0.4463071823120117\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8387684226036072,\r\n                        \"Y\": 0.4463071823120117\r\n                    },\r\n                    {\r\n                        \"X\": 0.902090847492218,\r\n                        \"Y\": 0.4463071823120117\r\n                    },\r\n                    {\r\n                        \"X\": 0.902090847492218,\r\n                        \"Y\": 0.4575536847114563\r\n                    },\r\n                    {\r\n                        \"X\": 0.8387684226036072,\r\n                        \"Y\": 0.4575536847114563\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8b4bf07a-ccc1-4002-b6f3-d516c31878d0\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"7c0bce41-1d2b-4291-9e12-d44d0b5dbf77\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.82049560546875,\r\n            \"Text\": \"Debit\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0444016270339489,\r\n                    \"Height\": 0.011467976495623589,\r\n                    \"Left\": 0.6073095798492432,\r\n                    \"Top\": 0.4551813006401062\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6073095798492432,\r\n                        \"Y\": 0.4551813006401062\r\n                    },\r\n                    {\r\n                        \"X\": 0.6517112255096436,\r\n                        \"Y\": 0.4551813006401062\r\n                    },\r\n                    {\r\n                        \"X\": 0.6517112255096436,\r\n                        \"Y\": 0.46664929389953613\r\n                    },\r\n                    {\r\n                        \"X\": 0.6073095798492432,\r\n                        \"Y\": 0.46664929389953613\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c699ee2c-9260-4e26-8128-2e181a73c55d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"2124d11d-a3a6-47d2-ad58-c414ac48d319\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.68818664550781,\r\n            \"Text\": \"Credit\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05032461881637573,\r\n                    \"Height\": 0.011512288823723793,\r\n                    \"Left\": 0.7307619452476501,\r\n                    \"Top\": 0.45519840717315674\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7307619452476501,\r\n                        \"Y\": 0.45519840717315674\r\n                    },\r\n                    {\r\n                        \"X\": 0.7810865640640259,\r\n                        \"Y\": 0.45519840717315674\r\n                    },\r\n                    {\r\n                        \"X\": 0.7810865640640259,\r\n                        \"Y\": 0.4667106866836548\r\n                    },\r\n                    {\r\n                        \"X\": 0.7307619452476501,\r\n                        \"Y\": 0.4667106866836548\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4d6f216f-2032-4a70-bb3b-15492c2eaa72\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"dfe4fd1a-1d3e-4342-9a9b-52245f99e08f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.61288452148438,\r\n            \"Text\": \"02/02/22\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07453889399766922,\r\n                    \"Height\": 0.014112304896116257,\r\n                    \"Left\": 0.1262395679950714,\r\n                    \"Top\": 0.4736880660057068\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1262395679950714,\r\n                        \"Y\": 0.4736880660057068\r\n                    },\r\n                    {\r\n                        \"X\": 0.20077846944332123,\r\n                        \"Y\": 0.4736880660057068\r\n                    },\r\n                    {\r\n                        \"X\": 0.20077846944332123,\r\n                        \"Y\": 0.48780035972595215\r\n                    },\r\n                    {\r\n                        \"X\": 0.1262395679950714,\r\n                        \"Y\": 0.48780035972595215\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"eac7ea82-542c-4bb6-bc4c-c1e6fd4e8daf\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"94450172-40cf-4e5f-af77-7c9241b25349\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.52684783935547,\r\n            \"Text\": \"Life Insurance Payments\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.19310733675956726,\r\n                    \"Height\": 0.014157918281853199,\r\n                    \"Left\": 0.23269502818584442,\r\n                    \"Top\": 0.4742327034473419\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23269502818584442,\r\n                        \"Y\": 0.4742327034473419\r\n                    },\r\n                    {\r\n                        \"X\": 0.4258023798465729,\r\n                        \"Y\": 0.4742327034473419\r\n                    },\r\n                    {\r\n                        \"X\": 0.4258023798465729,\r\n                        \"Y\": 0.48839062452316284\r\n                    },\r\n                    {\r\n                        \"X\": 0.23269502818584442,\r\n                        \"Y\": 0.48839062452316284\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a2ac2182-003b-4bdb-9228-335074aa94be\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"87f50c34-9734-4ca5-969b-f6e46b4d74aa\",\r\n                        \"04e63b36-18c8-43fe-b88c-d7d72075bc4d\",\r\n                        \"f2cad687-a2bf-44ff-99bb-156422ea97f5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.79484558105469,\r\n            \"Text\": \"Credit\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04878015071153641,\r\n                    \"Height\": 0.011600545607507229,\r\n                    \"Left\": 0.48647943139076233,\r\n                    \"Top\": 0.4743020832538605\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.48647943139076233,\r\n                        \"Y\": 0.4743020832538605\r\n                    },\r\n                    {\r\n                        \"X\": 0.5352595448493958,\r\n                        \"Y\": 0.4743020832538605\r\n                    },\r\n                    {\r\n                        \"X\": 0.5352595448493958,\r\n                        \"Y\": 0.4859026372432709\r\n                    },\r\n                    {\r\n                        \"X\": 0.48647943139076233,\r\n                        \"Y\": 0.4859026372432709\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6337a270-f0a2-4226-bc7c-c06063516670\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"1cda1ad8-d9df-4c41-a6a3-27eebd8eacf0\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.61213684082031,\r\n            \"Text\": \"3000.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06385298818349838,\r\n                    \"Height\": 0.011404826305806637,\r\n                    \"Left\": 0.6920186877250671,\r\n                    \"Top\": 0.47461843490600586\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6920186877250671,\r\n                        \"Y\": 0.47461843490600586\r\n                    },\r\n                    {\r\n                        \"X\": 0.7558717131614685,\r\n                        \"Y\": 0.47461843490600586\r\n                    },\r\n                    {\r\n                        \"X\": 0.7558717131614685,\r\n                        \"Y\": 0.48602327704429626\r\n                    },\r\n                    {\r\n                        \"X\": 0.6920186877250671,\r\n                        \"Y\": 0.48602327704429626\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"827c1390-b674-4e9e-8516-9bd9bcc4e9b0\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"337f42d1-1cd5-474c-be19-a4f1cf76990c\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.79391479492188,\r\n            \"Text\": \"8000.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06523589044809341,\r\n                    \"Height\": 0.011170654557645321,\r\n                    \"Left\": 0.8378223776817322,\r\n                    \"Top\": 0.4750787317752838\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8378223776817322,\r\n                        \"Y\": 0.4750787317752838\r\n                    },\r\n                    {\r\n                        \"X\": 0.9030582904815674,\r\n                        \"Y\": 0.4750787317752838\r\n                    },\r\n                    {\r\n                        \"X\": 0.9030582904815674,\r\n                        \"Y\": 0.4862493872642517\r\n                    },\r\n                    {\r\n                        \"X\": 0.8378223776817322,\r\n                        \"Y\": 0.4862493872642517\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"85a12e8c-fa69-46c9-929a-d7db84e003b2\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"04e75936-d53b-468a-b70b-f235b9d53de3\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 97.96092224121094,\r\n            \"Text\": \"ID: 12345 8975656\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14832590520381927,\r\n                    \"Height\": 0.011287393979728222,\r\n                    \"Left\": 0.23238496482372284,\r\n                    \"Top\": 0.4933168590068817\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23238496482372284,\r\n                        \"Y\": 0.4933168590068817\r\n                    },\r\n                    {\r\n                        \"X\": 0.3807108700275421,\r\n                        \"Y\": 0.4933168590068817\r\n                    },\r\n                    {\r\n                        \"X\": 0.3807108700275421,\r\n                        \"Y\": 0.5046042203903198\r\n                    },\r\n                    {\r\n                        \"X\": 0.23238496482372284,\r\n                        \"Y\": 0.5046042203903198\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ab784296-1763-4532-aa2e-cbf22918623b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5f5b09e7-ba2b-4f3f-9aa0-5489bb8fce92\",\r\n                        \"24b1d5d8-cfb5-42c1-ba21-c3cb5ae65ec5\",\r\n                        \"ee1c6586-4582-44e3-9a95-b4083e2ea47f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 91.91582489013672,\r\n            \"Text\": \"XXX Property Management\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.21106746792793274,\r\n                    \"Height\": 0.014255248941481113,\r\n                    \"Left\": 0.23150292038917542,\r\n                    \"Top\": 0.512031614780426\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23150292038917542,\r\n                        \"Y\": 0.512031614780426\r\n                    },\r\n                    {\r\n                        \"X\": 0.44257038831710815,\r\n                        \"Y\": 0.512031614780426\r\n                    },\r\n                    {\r\n                        \"X\": 0.44257038831710815,\r\n                        \"Y\": 0.5262868404388428\r\n                    },\r\n                    {\r\n                        \"X\": 0.23150292038917542,\r\n                        \"Y\": 0.5262868404388428\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"24b26225-8e3b-48d6-9ac8-46894294464f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d9c043b6-d870-4fcd-ab94-833d216f09fc\",\r\n                        \"338f7672-4484-4619-86a7-f9efb0762e0e\",\r\n                        \"65bba2cf-b95b-4ff3-b5ba-496c30a9864e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.86304473876953,\r\n            \"Text\": \"Debit\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.043442707508802414,\r\n                    \"Height\": 0.01152954064309597,\r\n                    \"Left\": 0.48698240518569946,\r\n                    \"Top\": 0.5119780898094177\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.48698240518569946,\r\n                        \"Y\": 0.5119780898094177\r\n                    },\r\n                    {\r\n                        \"X\": 0.5304251313209534,\r\n                        \"Y\": 0.5119780898094177\r\n                    },\r\n                    {\r\n                        \"X\": 0.5304251313209534,\r\n                        \"Y\": 0.5235076546669006\r\n                    },\r\n                    {\r\n                        \"X\": 0.48698240518569946,\r\n                        \"Y\": 0.5235076546669006\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b2730a2c-cbdf-4210-9f2e-c0f7b5464ef9\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d7e96b53-3fb5-4aa4-ac03-3a876495f9ae\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.85838317871094,\r\n            \"Text\": \"2495.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06413152068853378,\r\n                    \"Height\": 0.011447631753981113,\r\n                    \"Left\": 0.584312915802002,\r\n                    \"Top\": 0.51209956407547\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.584312915802002,\r\n                        \"Y\": 0.51209956407547\r\n                    },\r\n                    {\r\n                        \"X\": 0.6484444737434387,\r\n                        \"Y\": 0.51209956407547\r\n                    },\r\n                    {\r\n                        \"X\": 0.6484444737434387,\r\n                        \"Y\": 0.5235471725463867\r\n                    },\r\n                    {\r\n                        \"X\": 0.584312915802002,\r\n                        \"Y\": 0.5235471725463867\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e6884ceb-266e-4bc5-9ce9-f4395449c8ad\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"a521d515-e011-48eb-a12e-827fde28c939\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.83836364746094,\r\n            \"Text\": \"5000.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06477051973342896,\r\n                    \"Height\": 0.011343017220497131,\r\n                    \"Left\": 0.8379458785057068,\r\n                    \"Top\": 0.5121712684631348\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8379458785057068,\r\n                        \"Y\": 0.5121712684631348\r\n                    },\r\n                    {\r\n                        \"X\": 0.9027163982391357,\r\n                        \"Y\": 0.5121712684631348\r\n                    },\r\n                    {\r\n                        \"X\": 0.9027163982391357,\r\n                        \"Y\": 0.5235142707824707\r\n                    },\r\n                    {\r\n                        \"X\": 0.8379458785057068,\r\n                        \"Y\": 0.5235142707824707\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b1a917ee-c839-4df7-bbe5-820632f94933\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"1f281028-2354-4e06-a8c8-e56879208a0a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.64169311523438,\r\n            \"Text\": \"Company\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0752483457326889,\r\n                    \"Height\": 0.014122395776212215,\r\n                    \"Left\": 0.23225504159927368,\r\n                    \"Top\": 0.5307729244232178\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23225504159927368,\r\n                        \"Y\": 0.5307729244232178\r\n                    },\r\n                    {\r\n                        \"X\": 0.3075033724308014,\r\n                        \"Y\": 0.5307729244232178\r\n                    },\r\n                    {\r\n                        \"X\": 0.3075033724308014,\r\n                        \"Y\": 0.544895350933075\r\n                    },\r\n                    {\r\n                        \"X\": 0.23225504159927368,\r\n                        \"Y\": 0.544895350933075\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5866c180-48a3-4f47-8b7e-5dca0acaae2d\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"0e6193c3-aa40-4391-92c9-5617a4496c0e\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.74503326416016,\r\n            \"Text\": \"ID: 678987\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09015282243490219,\r\n                    \"Height\": 0.011244995519518852,\r\n                    \"Left\": 0.23243096470832825,\r\n                    \"Top\": 0.5491563677787781\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23243096470832825,\r\n                        \"Y\": 0.5491563677787781\r\n                    },\r\n                    {\r\n                        \"X\": 0.32258379459381104,\r\n                        \"Y\": 0.5491563677787781\r\n                    },\r\n                    {\r\n                        \"X\": 0.32258379459381104,\r\n                        \"Y\": 0.5604013800621033\r\n                    },\r\n                    {\r\n                        \"X\": 0.23243096470832825,\r\n                        \"Y\": 0.5604013800621033\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4fee9f8f-db98-42dd-9869-64eae32805d1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"eeadfd10-ed71-4f47-a25f-439be31b2181\",\r\n                        \"2b739b0a-4b25-429a-8c9e-8342f73cc378\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.6568603515625,\r\n            \"Text\": \"02/04/22\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07563740760087967,\r\n                    \"Height\": 0.013574137352406979,\r\n                    \"Left\": 0.1256006807088852,\r\n                    \"Top\": 0.5677229762077332\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1256006807088852,\r\n                        \"Y\": 0.5677229762077332\r\n                    },\r\n                    {\r\n                        \"X\": 0.20123808085918427,\r\n                        \"Y\": 0.5677229762077332\r\n                    },\r\n                    {\r\n                        \"X\": 0.20123808085918427,\r\n                        \"Y\": 0.5812970995903015\r\n                    },\r\n                    {\r\n                        \"X\": 0.1256006807088852,\r\n                        \"Y\": 0.5812970995903015\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cf04c398-7d85-4365-b781-79e08d907b96\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"168f39a1-55da-4e43-808a-a44e14b02206\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.76447296142578,\r\n            \"Text\": \"Retail Purchase Walmart\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.196920245885849,\r\n                    \"Height\": 0.011518473736941814,\r\n                    \"Left\": 0.23244896531105042,\r\n                    \"Top\": 0.5682626366615295\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23244896531105042,\r\n                        \"Y\": 0.5682626366615295\r\n                    },\r\n                    {\r\n                        \"X\": 0.4293692111968994,\r\n                        \"Y\": 0.5682626366615295\r\n                    },\r\n                    {\r\n                        \"X\": 0.4293692111968994,\r\n                        \"Y\": 0.5797811150550842\r\n                    },\r\n                    {\r\n                        \"X\": 0.23244896531105042,\r\n                        \"Y\": 0.5797811150550842\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9395e6b5-15b6-484e-b767-f39182e3c17a\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"244d4455-6292-466d-bfdb-f5bd187604a2\",\r\n                        \"b733f208-f0c3-4eec-b150-a95837418e83\",\r\n                        \"b5f67574-8520-4c8d-bd37-2ea663fc8927\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.88423156738281,\r\n            \"Text\": \"Debit\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04335771128535271,\r\n                    \"Height\": 0.011678792536258698,\r\n                    \"Left\": 0.4868956208229065,\r\n                    \"Top\": 0.5681083798408508\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4868956208229065,\r\n                        \"Y\": 0.5681083798408508\r\n                    },\r\n                    {\r\n                        \"X\": 0.5302532911300659,\r\n                        \"Y\": 0.5681083798408508\r\n                    },\r\n                    {\r\n                        \"X\": 0.5302532911300659,\r\n                        \"Y\": 0.5797871947288513\r\n                    },\r\n                    {\r\n                        \"X\": 0.4868956208229065,\r\n                        \"Y\": 0.5797871947288513\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"06afed70-72f1-400a-a562-9f3c7dc8af6b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c2b6564b-4886-4314-9b41-86e327c72c6d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.85108947753906,\r\n            \"Text\": \"550.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05437958613038063,\r\n                    \"Height\": 0.0112735191360116,\r\n                    \"Left\": 0.5843030214309692,\r\n                    \"Top\": 0.568503201007843\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5843030214309692,\r\n                        \"Y\": 0.568503201007843\r\n                    },\r\n                    {\r\n                        \"X\": 0.6386826038360596,\r\n                        \"Y\": 0.568503201007843\r\n                    },\r\n                    {\r\n                        \"X\": 0.6386826038360596,\r\n                        \"Y\": 0.5797767043113708\r\n                    },\r\n                    {\r\n                        \"X\": 0.5843030214309692,\r\n                        \"Y\": 0.5797767043113708\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"37aee42d-bd2e-464a-92f1-f4f590283357\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c166c533-70f6-4b0f-94b1-cce0050e3f76\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.90502166748047,\r\n            \"Text\": \"5550.00\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06431030482053757,\r\n                    \"Height\": 0.011335612274706364,\r\n                    \"Left\": 0.8380604982376099,\r\n                    \"Top\": 0.5684362649917603\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8380604982376099,\r\n                        \"Y\": 0.5684362649917603\r\n                    },\r\n                    {\r\n                        \"X\": 0.902370810508728,\r\n                        \"Y\": 0.5684362649917603\r\n                    },\r\n                    {\r\n                        \"X\": 0.902370810508728,\r\n                        \"Y\": 0.579771876335144\r\n                    },\r\n                    {\r\n                        \"X\": 0.8380604982376099,\r\n                        \"Y\": 0.579771876335144\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e657a869-ff71-4215-a516-dc08d5ca3421\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"9deec288-859c-432b-8def-e009586b23ae\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.72163391113281,\r\n            \"Text\": \"Store\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04210757091641426,\r\n                    \"Height\": 0.011189819313585758,\r\n                    \"Left\": 0.2321551889181137,\r\n                    \"Top\": 0.5871542096138\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2321551889181137,\r\n                        \"Y\": 0.5871542096138\r\n                    },\r\n                    {\r\n                        \"X\": 0.27426275610923767,\r\n                        \"Y\": 0.5871542096138\r\n                    },\r\n                    {\r\n                        \"X\": 0.27426275610923767,\r\n                        \"Y\": 0.5983440279960632\r\n                    },\r\n                    {\r\n                        \"X\": 0.2321551889181137,\r\n                        \"Y\": 0.5983440279960632\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"99cdd787-4912-49fe-90e4-e694810e50da\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b23886b3-35fd-4523-9f26-3bb0ddcc7b61\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"LINE\",\r\n            \"Confidence\": 99.25502014160156,\r\n            \"Text\": \"ID 0012345\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08944631367921829,\r\n                    \"Height\": 0.011167683638632298,\r\n                    \"Left\": 0.23262546956539154,\r\n                    \"Top\": 0.6054624319076538\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23262546956539154,\r\n                        \"Y\": 0.6054624319076538\r\n                    },\r\n                    {\r\n                        \"X\": 0.32207179069519043,\r\n                        \"Y\": 0.6054624319076538\r\n                    },\r\n                    {\r\n                        \"X\": 0.32207179069519043,\r\n                        \"Y\": 0.6166300773620605\r\n                    },\r\n                    {\r\n                        \"X\": 0.23262546956539154,\r\n                        \"Y\": 0.6166300773620605\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"84447582-0039-4cf6-885d-5355873186a7\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c31ca497-8221-4b35-8d6d-669105237436\",\r\n                        \"c78c590a-8595-4eca-85e1-f68ae9a8576f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.7598876953125,\r\n            \"Text\": \"Your\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.045595474541187286,\r\n                    \"Height\": 0.012749933637678623,\r\n                    \"Left\": 0.7607807517051697,\r\n                    \"Top\": 0.03376985713839531\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7607807517051697,\r\n                        \"Y\": 0.03376985713839531\r\n                    },\r\n                    {\r\n                        \"X\": 0.8063762187957764,\r\n                        \"Y\": 0.03376985713839531\r\n                    },\r\n                    {\r\n                        \"X\": 0.8063762187957764,\r\n                        \"Y\": 0.04651978984475136\r\n                    },\r\n                    {\r\n                        \"X\": 0.7607807517051697,\r\n                        \"Y\": 0.04651978984475136\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4e4c7c23-ab31-4c8b-90f0-a98d126d479b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.77349853515625,\r\n            \"Text\": \"Statement\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10010339319705963,\r\n                    \"Height\": 0.012420542538166046,\r\n                    \"Left\": 0.811009407043457,\r\n                    \"Top\": 0.03386193513870239\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.811009407043457,\r\n                        \"Y\": 0.03386193513870239\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111127853393555,\r\n                        \"Y\": 0.03386193513870239\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111127853393555,\r\n                        \"Y\": 0.04628247395157814\r\n                    },\r\n                    {\r\n                        \"X\": 0.811009407043457,\r\n                        \"Y\": 0.04628247395157814\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8e50bb90-0f7c-4400-882b-49b02400f559\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.53251647949219,\r\n            \"Text\": \"Bank\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04752350598573685,\r\n                    \"Height\": 0.01342242956161499,\r\n                    \"Left\": 0.12185885012149811,\r\n                    \"Top\": 0.0430610366165638\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.12185885012149811,\r\n                        \"Y\": 0.0430610366165638\r\n                    },\r\n                    {\r\n                        \"X\": 0.16938234865665436,\r\n                        \"Y\": 0.0430610366165638\r\n                    },\r\n                    {\r\n                        \"X\": 0.16938234865665436,\r\n                        \"Y\": 0.05648346617817879\r\n                    },\r\n                    {\r\n                        \"X\": 0.12185885012149811,\r\n                        \"Y\": 0.05648346617817879\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"04c0f2ab-3917-4ddd-9e6d-91fe8e8a74a3\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.99578857421875,\r\n            \"Text\": \"of\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.020305749028921127,\r\n                    \"Height\": 0.013823323883116245,\r\n                    \"Left\": 0.17395198345184326,\r\n                    \"Top\": 0.04262441396713257\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.17395198345184326,\r\n                        \"Y\": 0.04262441396713257\r\n                    },\r\n                    {\r\n                        \"X\": 0.1942577362060547,\r\n                        \"Y\": 0.04262441396713257\r\n                    },\r\n                    {\r\n                        \"X\": 0.1942577362060547,\r\n                        \"Y\": 0.05644773691892624\r\n                    },\r\n                    {\r\n                        \"X\": 0.17395198345184326,\r\n                        \"Y\": 0.05644773691892624\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"758964c6-ad6a-4b58-bea0-52a41e744e86\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.87347412109375,\r\n            \"Text\": \"Something\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10263006389141083,\r\n                    \"Height\": 0.016068704426288605,\r\n                    \"Left\": 0.19811056554317474,\r\n                    \"Top\": 0.043095994740724564\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.19811056554317474,\r\n                        \"Y\": 0.043095994740724564\r\n                    },\r\n                    {\r\n                        \"X\": 0.30074062943458557,\r\n                        \"Y\": 0.043095994740724564\r\n                    },\r\n                    {\r\n                        \"X\": 0.30074062943458557,\r\n                        \"Y\": 0.05916469916701317\r\n                    },\r\n                    {\r\n                        \"X\": 0.19811056554317474,\r\n                        \"Y\": 0.05916469916701317\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8c891b8e-a5b3-43ac-b5e8-6643302a2cce\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.02225494384766,\r\n            \"Text\": \"Contact\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06191229447722435,\r\n                    \"Height\": 0.01134662888944149,\r\n                    \"Left\": 0.6990795731544495,\r\n                    \"Top\": 0.07311070710420609\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6990795731544495,\r\n                        \"Y\": 0.07311070710420609\r\n                    },\r\n                    {\r\n                        \"X\": 0.7609918713569641,\r\n                        \"Y\": 0.07311070710420609\r\n                    },\r\n                    {\r\n                        \"X\": 0.7609918713569641,\r\n                        \"Y\": 0.08445733785629272\r\n                    },\r\n                    {\r\n                        \"X\": 0.6990795731544495,\r\n                        \"Y\": 0.08445733785629272\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"577832c6-0a6b-4f8f-aa77-5fff9d40865b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.15535736083984,\r\n            \"Text\": \"Tel\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.024284198880195618,\r\n                    \"Height\": 0.011308145709335804,\r\n                    \"Left\": 0.7645372152328491,\r\n                    \"Top\": 0.07273811101913452\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7645372152328491,\r\n                        \"Y\": 0.07273811101913452\r\n                    },\r\n                    {\r\n                        \"X\": 0.7888213992118835,\r\n                        \"Y\": 0.07273811101913452\r\n                    },\r\n                    {\r\n                        \"X\": 0.7888213992118835,\r\n                        \"Y\": 0.08404625207185745\r\n                    },\r\n                    {\r\n                        \"X\": 0.7645372152328491,\r\n                        \"Y\": 0.08404625207185745\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2010c767-edf2-4ac2-9f80-63314f47c282\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.33790588378906,\r\n            \"Text\": \"1-800-000-000\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.11686684191226959,\r\n                    \"Height\": 0.01127588376402855,\r\n                    \"Left\": 0.7942536473274231,\r\n                    \"Top\": 0.07321120798587799\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7942536473274231,\r\n                        \"Y\": 0.07321120798587799\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111204743385315,\r\n                        \"Y\": 0.07321120798587799\r\n                    },\r\n                    {\r\n                        \"X\": 0.9111204743385315,\r\n                        \"Y\": 0.08448708802461624\r\n                    },\r\n                    {\r\n                        \"X\": 0.7942536473274231,\r\n                        \"Y\": 0.08448708802461624\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6a7421da-4d33-4ef1-aab3-c0dfaf6927a0\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.43161010742188,\r\n            \"Text\": \"P.O.\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.032702282071113586,\r\n                    \"Height\": 0.011418314650654793,\r\n                    \"Left\": 0.1213848814368248,\r\n                    \"Top\": 0.08280686289072037\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1213848814368248,\r\n                        \"Y\": 0.08280686289072037\r\n                    },\r\n                    {\r\n                        \"X\": 0.1540871560573578,\r\n                        \"Y\": 0.08280686289072037\r\n                    },\r\n                    {\r\n                        \"X\": 0.1540871560573578,\r\n                        \"Y\": 0.09422517567873001\r\n                    },\r\n                    {\r\n                        \"X\": 0.1213848814368248,\r\n                        \"Y\": 0.09422517567873001\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4e94091a-6aa7-403a-b7d6-04505b27f96d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.71704864501953,\r\n            \"Text\": \"Box\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.030116096138954163,\r\n                    \"Height\": 0.011134973727166653,\r\n                    \"Left\": 0.15862444043159485,\r\n                    \"Top\": 0.08293983340263367\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.15862444043159485,\r\n                        \"Y\": 0.08293983340263367\r\n                    },\r\n                    {\r\n                        \"X\": 0.188740536570549,\r\n                        \"Y\": 0.08293983340263367\r\n                    },\r\n                    {\r\n                        \"X\": 0.188740536570549,\r\n                        \"Y\": 0.0940748080611229\r\n                    },\r\n                    {\r\n                        \"X\": 0.15862444043159485,\r\n                        \"Y\": 0.0940748080611229\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"90a22f13-9f4d-4a4a-b808-716af3acd582\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.82369995117188,\r\n            \"Text\": \"12321\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04848233237862587,\r\n                    \"Height\": 0.011355636641383171,\r\n                    \"Left\": 0.19285812973976135,\r\n                    \"Top\": 0.08278797566890717\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.19285812973976135,\r\n                        \"Y\": 0.08278797566890717\r\n                    },\r\n                    {\r\n                        \"X\": 0.24134045839309692,\r\n                        \"Y\": 0.08278797566890717\r\n                    },\r\n                    {\r\n                        \"X\": 0.24134045839309692,\r\n                        \"Y\": 0.09414361417293549\r\n                    },\r\n                    {\r\n                        \"X\": 0.19285812973976135,\r\n                        \"Y\": 0.09414361417293549\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"78216481-196f-4da3-8834-023f3961eaea\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85591888427734,\r\n            \"Text\": \"Text\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.035437412559986115,\r\n                    \"Height\": 0.01103312149643898,\r\n                    \"Left\": 0.6916064620018005,\r\n                    \"Top\": 0.09141837805509567\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6916064620018005,\r\n                        \"Y\": 0.09141837805509567\r\n                    },\r\n                    {\r\n                        \"X\": 0.727043867111206,\r\n                        \"Y\": 0.09141837805509567\r\n                    },\r\n                    {\r\n                        \"X\": 0.727043867111206,\r\n                        \"Y\": 0.10245149582624435\r\n                    },\r\n                    {\r\n                        \"X\": 0.6916064620018005,\r\n                        \"Y\": 0.10245149582624435\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9554cfb5-1113-40e0-bd22-39ad63956142\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.4893569946289,\r\n            \"Text\": \"Phone\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04983117803931236,\r\n                    \"Height\": 0.011479349806904793,\r\n                    \"Left\": 0.7315138578414917,\r\n                    \"Top\": 0.09110803157091141\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7315138578414917,\r\n                        \"Y\": 0.09110803157091141\r\n                    },\r\n                    {\r\n                        \"X\": 0.7813450694084167,\r\n                        \"Y\": 0.09110803157091141\r\n                    },\r\n                    {\r\n                        \"X\": 0.7813450694084167,\r\n                        \"Y\": 0.10258737951517105\r\n                    },\r\n                    {\r\n                        \"X\": 0.7315138578414917,\r\n                        \"Y\": 0.10258737951517105\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"666bbc07-2920-41e3-8eed-aed694373128\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.35081481933594,\r\n            \"Text\": \"123-456-7890\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10899931192398071,\r\n                    \"Height\": 0.011157806031405926,\r\n                    \"Left\": 0.800611674785614,\r\n                    \"Top\": 0.0913442075252533\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.800611674785614,\r\n                        \"Y\": 0.0913442075252533\r\n                    },\r\n                    {\r\n                        \"X\": 0.9096109867095947,\r\n                        \"Y\": 0.0913442075252533\r\n                    },\r\n                    {\r\n                        \"X\": 0.9096109867095947,\r\n                        \"Y\": 0.1025020107626915\r\n                    },\r\n                    {\r\n                        \"X\": 0.800611674785614,\r\n                        \"Y\": 0.1025020107626915\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"da591199-48d0-449a-8c96-d9c48c782b3f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.84114074707031,\r\n            \"Text\": \"AnyCity,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0655965581536293,\r\n                    \"Height\": 0.013928730972111225,\r\n                    \"Left\": 0.12068507820367813,\r\n                    \"Top\": 0.10172604024410248\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.12068507820367813,\r\n                        \"Y\": 0.10172604024410248\r\n                    },\r\n                    {\r\n                        \"X\": 0.18628163635730743,\r\n                        \"Y\": 0.10172604024410248\r\n                    },\r\n                    {\r\n                        \"X\": 0.18628163635730743,\r\n                        \"Y\": 0.11565477401018143\r\n                    },\r\n                    {\r\n                        \"X\": 0.12068507820367813,\r\n                        \"Y\": 0.11565477401018143\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"61be3bec-078e-40c8-b4f4-93c77b95c66a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.63162994384766,\r\n            \"Text\": \"DA\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.02448389306664467,\r\n                    \"Height\": 0.011503214947879314,\r\n                    \"Left\": 0.1911591738462448,\r\n                    \"Top\": 0.10197503864765167\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1911591738462448,\r\n                        \"Y\": 0.10197503864765167\r\n                    },\r\n                    {\r\n                        \"X\": 0.21564306318759918,\r\n                        \"Y\": 0.10197503864765167\r\n                    },\r\n                    {\r\n                        \"X\": 0.21564306318759918,\r\n                        \"Y\": 0.11347825080156326\r\n                    },\r\n                    {\r\n                        \"X\": 0.1911591738462448,\r\n                        \"Y\": 0.11347825080156326\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d9374911-6c28-41d3-a2cb-2f5dbc809188\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.64220428466797,\r\n            \"Text\": \"12765\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04799065738916397,\r\n                    \"Height\": 0.011317851021885872,\r\n                    \"Left\": 0.22005529701709747,\r\n                    \"Top\": 0.10161841660737991\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.22005529701709747,\r\n                        \"Y\": 0.10161841660737991\r\n                    },\r\n                    {\r\n                        \"X\": 0.26804596185684204,\r\n                        \"Y\": 0.10161841660737991\r\n                    },\r\n                    {\r\n                        \"X\": 0.26804596185684204,\r\n                        \"Y\": 0.11293626576662064\r\n                    },\r\n                    {\r\n                        \"X\": 0.22005529701709747,\r\n                        \"Y\": 0.11293626576662064\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b7f32cc3-6f0e-460c-b02c-73037d94e2b9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.92413330078125,\r\n            \"Text\": \"www.bankofsomething.com\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.21558380126953125,\r\n                    \"Height\": 0.013215342536568642,\r\n                    \"Left\": 0.6968010663986206,\r\n                    \"Top\": 0.10933388024568558\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6968010663986206,\r\n                        \"Y\": 0.10933388024568558\r\n                    },\r\n                    {\r\n                        \"X\": 0.9123849272727966,\r\n                        \"Y\": 0.10933388024568558\r\n                    },\r\n                    {\r\n                        \"X\": 0.9123849272727966,\r\n                        \"Y\": 0.12254922837018967\r\n                    },\r\n                    {\r\n                        \"X\": 0.6968010663986206,\r\n                        \"Y\": 0.12254922837018967\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8dccbd01-809f-4459-bfff-15fef5ad7001\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.98286437988281,\r\n            \"Text\": \"Savings\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06076369807124138,\r\n                    \"Height\": 0.013790181837975979,\r\n                    \"Left\": 0.11724167317152023,\r\n                    \"Top\": 0.16871370375156403\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11724167317152023,\r\n                        \"Y\": 0.16871370375156403\r\n                    },\r\n                    {\r\n                        \"X\": 0.1780053675174713,\r\n                        \"Y\": 0.16871370375156403\r\n                    },\r\n                    {\r\n                        \"X\": 0.1780053675174713,\r\n                        \"Y\": 0.18250387907028198\r\n                    },\r\n                    {\r\n                        \"X\": 0.11724167317152023,\r\n                        \"Y\": 0.18250387907028198\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9f3881a2-fa5f-46fb-aa3d-e3952e56b571\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92282104492188,\r\n            \"Text\": \"Account\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06722423434257507,\r\n                    \"Height\": 0.010983550921082497,\r\n                    \"Left\": 0.18225611746311188,\r\n                    \"Top\": 0.16910049319267273\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.18225611746311188,\r\n                        \"Y\": 0.16910049319267273\r\n                    },\r\n                    {\r\n                        \"X\": 0.24948035180568695,\r\n                        \"Y\": 0.16910049319267273\r\n                    },\r\n                    {\r\n                        \"X\": 0.24948035180568695,\r\n                        \"Y\": 0.18008404970169067\r\n                    },\r\n                    {\r\n                        \"X\": 0.18225611746311188,\r\n                        \"Y\": 0.18008404970169067\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4fe9d69d-0246-4b66-9b27-c5caeffd0482\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.74434661865234,\r\n            \"Text\": \"Statement\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08650538325309753,\r\n                    \"Height\": 0.01123390719294548,\r\n                    \"Left\": 0.25315767526626587,\r\n                    \"Top\": 0.16890962421894073\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.25315767526626587,\r\n                        \"Y\": 0.16890962421894073\r\n                    },\r\n                    {\r\n                        \"X\": 0.3396630585193634,\r\n                        \"Y\": 0.16890962421894073\r\n                    },\r\n                    {\r\n                        \"X\": 0.3396630585193634,\r\n                        \"Y\": 0.1801435351371765\r\n                    },\r\n                    {\r\n                        \"X\": 0.25315767526626587,\r\n                        \"Y\": 0.1801435351371765\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"04c46051-df76-405e-ab00-741c8b7725ab\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92003631591797,\r\n            \"Text\": \"Account\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07835176587104797,\r\n                    \"Height\": 0.01305738277733326,\r\n                    \"Left\": 0.6268610954284668,\r\n                    \"Top\": 0.16049449145793915\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6268610954284668,\r\n                        \"Y\": 0.16049449145793915\r\n                    },\r\n                    {\r\n                        \"X\": 0.7052128911018372,\r\n                        \"Y\": 0.16049449145793915\r\n                    },\r\n                    {\r\n                        \"X\": 0.7052128911018372,\r\n                        \"Y\": 0.17355188727378845\r\n                    },\r\n                    {\r\n                        \"X\": 0.6268610954284668,\r\n                        \"Y\": 0.17355188727378845\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4c0e5a03-e6cc-4558-8b9c-a709693bbdbb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92875671386719,\r\n            \"Text\": \"Summary\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09235077351331711,\r\n                    \"Height\": 0.015770284458994865,\r\n                    \"Left\": 0.7096588015556335,\r\n                    \"Top\": 0.160603329539299\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7096588015556335,\r\n                        \"Y\": 0.160603329539299\r\n                    },\r\n                    {\r\n                        \"X\": 0.8020095825195312,\r\n                        \"Y\": 0.160603329539299\r\n                    },\r\n                    {\r\n                        \"X\": 0.8020095825195312,\r\n                        \"Y\": 0.17637361586093903\r\n                    },\r\n                    {\r\n                        \"X\": 0.7096588015556335,\r\n                        \"Y\": 0.17637361586093903\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"715a62c6-3b96-479c-8f41-93594e1f3ddd\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.95209503173828,\r\n            \"Text\": \"Account\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06566063314676285,\r\n                    \"Height\": 0.010753804817795753,\r\n                    \"Left\": 0.11672475934028625,\r\n                    \"Top\": 0.2059226930141449\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11672475934028625,\r\n                        \"Y\": 0.2059226930141449\r\n                    },\r\n                    {\r\n                        \"X\": 0.1823853999376297,\r\n                        \"Y\": 0.2059226930141449\r\n                    },\r\n                    {\r\n                        \"X\": 0.1823853999376297,\r\n                        \"Y\": 0.2166764885187149\r\n                    },\r\n                    {\r\n                        \"X\": 0.11672475934028625,\r\n                        \"Y\": 0.2166764885187149\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c81e200a-1bbc-4233-a1ca-b2211e59c79e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.89989471435547,\r\n            \"Text\": \"name\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04469896852970123,\r\n                    \"Height\": 0.008877461776137352,\r\n                    \"Left\": 0.1872595101594925,\r\n                    \"Top\": 0.20781846344470978\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1872595101594925,\r\n                        \"Y\": 0.20781846344470978\r\n                    },\r\n                    {\r\n                        \"X\": 0.23195847868919373,\r\n                        \"Y\": 0.20781846344470978\r\n                    },\r\n                    {\r\n                        \"X\": 0.23195847868919373,\r\n                        \"Y\": 0.21669591963291168\r\n                    },\r\n                    {\r\n                        \"X\": 0.1872595101594925,\r\n                        \"Y\": 0.21669591963291168\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6d937e61-5b43-41d6-aaf1-6dfde763760d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.74929809570312,\r\n            \"Text\": \"John\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03710642457008362,\r\n                    \"Height\": 0.01106357853859663,\r\n                    \"Left\": 0.2716118395328522,\r\n                    \"Top\": 0.20559971034526825\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2716118395328522,\r\n                        \"Y\": 0.20559971034526825\r\n                    },\r\n                    {\r\n                        \"X\": 0.3087182641029358,\r\n                        \"Y\": 0.20559971034526825\r\n                    },\r\n                    {\r\n                        \"X\": 0.3087182641029358,\r\n                        \"Y\": 0.21666328608989716\r\n                    },\r\n                    {\r\n                        \"X\": 0.2716118395328522,\r\n                        \"Y\": 0.21666328608989716\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4dbc4c6c-dd5f-49d6-b6cf-5a0c96490795\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85050201416016,\r\n            \"Text\": \"Doe\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03139029070734978,\r\n                    \"Height\": 0.011008137837052345,\r\n                    \"Left\": 0.3140530586242676,\r\n                    \"Top\": 0.20579272508621216\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3140530586242676,\r\n                        \"Y\": 0.20579272508621216\r\n                    },\r\n                    {\r\n                        \"X\": 0.34544333815574646,\r\n                        \"Y\": 0.20579272508621216\r\n                    },\r\n                    {\r\n                        \"X\": 0.34544333815574646,\r\n                        \"Y\": 0.21680086851119995\r\n                    },\r\n                    {\r\n                        \"X\": 0.3140530586242676,\r\n                        \"Y\": 0.21680086851119995\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"4874600a-3d4b-4715-a499-332e6427260f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.88843536376953,\r\n            \"Text\": \"Beginning\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07829083502292633,\r\n                    \"Height\": 0.014039937406778336,\r\n                    \"Left\": 0.6281481981277466,\r\n                    \"Top\": 0.19994889199733734\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6281481981277466,\r\n                        \"Y\": 0.19994889199733734\r\n                    },\r\n                    {\r\n                        \"X\": 0.7064390182495117,\r\n                        \"Y\": 0.19994889199733734\r\n                    },\r\n                    {\r\n                        \"X\": 0.7064390182495117,\r\n                        \"Y\": 0.21398882567882538\r\n                    },\r\n                    {\r\n                        \"X\": 0.6281481981277466,\r\n                        \"Y\": 0.21398882567882538\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"abdd0570-ccf6-49b0-9788-89708dfc7e5c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.83737182617188,\r\n            \"Text\": \"Balance:\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06588321179151535,\r\n                    \"Height\": 0.011229288764297962,\r\n                    \"Left\": 0.7117077112197876,\r\n                    \"Top\": 0.2000458836555481\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7117077112197876,\r\n                        \"Y\": 0.2000458836555481\r\n                    },\r\n                    {\r\n                        \"X\": 0.7775909304618835,\r\n                        \"Y\": 0.2000458836555481\r\n                    },\r\n                    {\r\n                        \"X\": 0.7775909304618835,\r\n                        \"Y\": 0.2112751603126526\r\n                    },\r\n                    {\r\n                        \"X\": 0.7117077112197876,\r\n                        \"Y\": 0.2112751603126526\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"57aab1ba-c38d-4146-906e-2023b5b22587\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.86664581298828,\r\n            \"Text\": \"$1458.09\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07357190549373627,\r\n                    \"Height\": 0.01351706963032484,\r\n                    \"Left\": 0.8630719184875488,\r\n                    \"Top\": 0.19909195601940155\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8630719184875488,\r\n                        \"Y\": 0.19909195601940155\r\n                    },\r\n                    {\r\n                        \"X\": 0.9366438388824463,\r\n                        \"Y\": 0.19909195601940155\r\n                    },\r\n                    {\r\n                        \"X\": 0.9366438388824463,\r\n                        \"Y\": 0.21260902285575867\r\n                    },\r\n                    {\r\n                        \"X\": 0.8630719184875488,\r\n                        \"Y\": 0.21260902285575867\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c29d1b55-f696-45e2-a38c-25c5b0e3cc35\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.95514678955078,\r\n            \"Text\": \"Account\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06551793217658997,\r\n                    \"Height\": 0.010823242366313934,\r\n                    \"Left\": 0.1168891042470932,\r\n                    \"Top\": 0.22469832003116608\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1168891042470932,\r\n                        \"Y\": 0.22469832003116608\r\n                    },\r\n                    {\r\n                        \"X\": 0.18240703642368317,\r\n                        \"Y\": 0.22469832003116608\r\n                    },\r\n                    {\r\n                        \"X\": 0.18240703642368317,\r\n                        \"Y\": 0.2355215698480606\r\n                    },\r\n                    {\r\n                        \"X\": 0.1168891042470932,\r\n                        \"Y\": 0.2355215698480606\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c7bf3457-ff94-43e6-b2cd-9ae623ecc3a9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.99037170410156,\r\n            \"Text\": \"number\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06291300058364868,\r\n                    \"Height\": 0.011547139845788479,\r\n                    \"Left\": 0.18707206845283508,\r\n                    \"Top\": 0.22412386536598206\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.18707206845283508,\r\n                        \"Y\": 0.22412386536598206\r\n                    },\r\n                    {\r\n                        \"X\": 0.24998506903648376,\r\n                        \"Y\": 0.22412386536598206\r\n                    },\r\n                    {\r\n                        \"X\": 0.24998506903648376,\r\n                        \"Y\": 0.2356709986925125\r\n                    },\r\n                    {\r\n                        \"X\": 0.18707206845283508,\r\n                        \"Y\": 0.2356709986925125\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9608bebd-b3e0-4a6e-b2f5-cf1f94ed1251\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 97.18062591552734,\r\n            \"Text\": \"00002134001\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.11007608473300934,\r\n                    \"Height\": 0.011229634284973145,\r\n                    \"Left\": 0.26647061109542847,\r\n                    \"Top\": 0.22437746822834015\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.26647061109542847,\r\n                        \"Y\": 0.22437746822834015\r\n                    },\r\n                    {\r\n                        \"X\": 0.376546710729599,\r\n                        \"Y\": 0.22437746822834015\r\n                    },\r\n                    {\r\n                        \"X\": 0.376546710729599,\r\n                        \"Y\": 0.2356071025133133\r\n                    },\r\n                    {\r\n                        \"X\": 0.26647061109542847,\r\n                        \"Y\": 0.2356071025133133\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ece23705-daaf-45bc-a68e-f1c3551ae818\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.86558532714844,\r\n            \"Text\": \"Deposits\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06875639408826828,\r\n                    \"Height\": 0.013877827674150467,\r\n                    \"Left\": 0.6278203129768372,\r\n                    \"Top\": 0.22764593362808228\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6278203129768372,\r\n                        \"Y\": 0.22764593362808228\r\n                    },\r\n                    {\r\n                        \"X\": 0.696576714515686,\r\n                        \"Y\": 0.22764593362808228\r\n                    },\r\n                    {\r\n                        \"X\": 0.696576714515686,\r\n                        \"Y\": 0.24152375757694244\r\n                    },\r\n                    {\r\n                        \"X\": 0.6278203129768372,\r\n                        \"Y\": 0.24152375757694244\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e64178af-08d3-40de-b76a-71b06c4d9f6f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.61690521240234,\r\n            \"Text\": \"$3000.02\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07370360940694809,\r\n                    \"Height\": 0.013619506731629372,\r\n                    \"Left\": 0.8628418445587158,\r\n                    \"Top\": 0.22686760127544403\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8628418445587158,\r\n                        \"Y\": 0.22686760127544403\r\n                    },\r\n                    {\r\n                        \"X\": 0.9365454316139221,\r\n                        \"Y\": 0.22686760127544403\r\n                    },\r\n                    {\r\n                        \"X\": 0.9365454316139221,\r\n                        \"Y\": 0.24048709869384766\r\n                    },\r\n                    {\r\n                        \"X\": 0.8628418445587158,\r\n                        \"Y\": 0.24048709869384766\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"40d710ef-1c4e-49ce-a3ec-6922f5eee101\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.75467681884766,\r\n            \"Text\": \"Statement\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.08281085640192032,\r\n                    \"Height\": 0.010936299338936806,\r\n                    \"Left\": 0.1179182231426239,\r\n                    \"Top\": 0.24304832518100739\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1179182231426239,\r\n                        \"Y\": 0.24304832518100739\r\n                    },\r\n                    {\r\n                        \"X\": 0.20072908699512482,\r\n                        \"Y\": 0.24304832518100739\r\n                    },\r\n                    {\r\n                        \"X\": 0.20072908699512482,\r\n                        \"Y\": 0.25398463010787964\r\n                    },\r\n                    {\r\n                        \"X\": 0.1179182231426239,\r\n                        \"Y\": 0.25398463010787964\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cbde1032-f55a-47c5-9981-bee2de793b64\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8299789428711,\r\n            \"Text\": \"Date:\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04165444150567055,\r\n                    \"Height\": 0.01096738688647747,\r\n                    \"Left\": 0.20603831112384796,\r\n                    \"Top\": 0.243072509765625\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.20603831112384796,\r\n                        \"Y\": 0.243072509765625\r\n                    },\r\n                    {\r\n                        \"X\": 0.2476927489042282,\r\n                        \"Y\": 0.243072509765625\r\n                    },\r\n                    {\r\n                        \"X\": 0.2476927489042282,\r\n                        \"Y\": 0.2540398836135864\r\n                    },\r\n                    {\r\n                        \"X\": 0.20603831112384796,\r\n                        \"Y\": 0.2540398836135864\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8b3b1a68-7aa8-44ba-b01d-129dab407d37\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.70968627929688,\r\n            \"Text\": \"Date\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03818196803331375,\r\n                    \"Height\": 0.01087906863540411,\r\n                    \"Left\": 0.11778225004673004,\r\n                    \"Top\": 0.2615514099597931\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11778225004673004,\r\n                        \"Y\": 0.2615514099597931\r\n                    },\r\n                    {\r\n                        \"X\": 0.1559642106294632,\r\n                        \"Y\": 0.2615514099597931\r\n                    },\r\n                    {\r\n                        \"X\": 0.1559642106294632,\r\n                        \"Y\": 0.2724304795265198\r\n                    },\r\n                    {\r\n                        \"X\": 0.11778225004673004,\r\n                        \"Y\": 0.2724304795265198\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"fcb0c416-41ff-4002-8dc9-42cc23c20487\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.9017562866211,\r\n            \"Text\": \"February\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07255076617002487,\r\n                    \"Height\": 0.01400655135512352,\r\n                    \"Left\": 0.18352681398391724,\r\n                    \"Top\": 0.26126107573509216\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.18352681398391724,\r\n                        \"Y\": 0.26126107573509216\r\n                    },\r\n                    {\r\n                        \"X\": 0.2560775876045227,\r\n                        \"Y\": 0.26126107573509216\r\n                    },\r\n                    {\r\n                        \"X\": 0.2560775876045227,\r\n                        \"Y\": 0.275267630815506\r\n                    },\r\n                    {\r\n                        \"X\": 0.18352681398391724,\r\n                        \"Y\": 0.275267630815506\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cd7b4fd8-9b58-4849-8378-44090fb99dab\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.78700256347656,\r\n            \"Text\": \"1,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.013752657920122147,\r\n                    \"Height\": 0.012759033590555191,\r\n                    \"Left\": 0.26071247458457947,\r\n                    \"Top\": 0.2616083025932312\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.26071247458457947,\r\n                        \"Y\": 0.2616083025932312\r\n                    },\r\n                    {\r\n                        \"X\": 0.2744651436805725,\r\n                        \"Y\": 0.2616083025932312\r\n                    },\r\n                    {\r\n                        \"X\": 0.2744651436805725,\r\n                        \"Y\": 0.2743673622608185\r\n                    },\r\n                    {\r\n                        \"X\": 0.26071247458457947,\r\n                        \"Y\": 0.2743673622608185\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8e8a6313-f1fb-426b-abbd-b271836f32d8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92141723632812,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03938976675271988,\r\n                    \"Height\": 0.011044962331652641,\r\n                    \"Left\": 0.27956897020339966,\r\n                    \"Top\": 0.26137489080429077\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.27956897020339966,\r\n                        \"Y\": 0.26137489080429077\r\n                    },\r\n                    {\r\n                        \"X\": 0.31895875930786133,\r\n                        \"Y\": 0.26137489080429077\r\n                    },\r\n                    {\r\n                        \"X\": 0.31895875930786133,\r\n                        \"Y\": 0.27241986989974976\r\n                    },\r\n                    {\r\n                        \"X\": 0.27956897020339966,\r\n                        \"Y\": 0.27241986989974976\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a4c1059e-c3a5-4520-ab88-706c914a04c5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.99317169189453,\r\n            \"Text\": \"to\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.018073435872793198,\r\n                    \"Height\": 0.010415039025247097,\r\n                    \"Left\": 0.3227112293243408,\r\n                    \"Top\": 0.2620319128036499\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3227112293243408,\r\n                        \"Y\": 0.2620319128036499\r\n                    },\r\n                    {\r\n                        \"X\": 0.3407846689224243,\r\n                        \"Y\": 0.2620319128036499\r\n                    },\r\n                    {\r\n                        \"X\": 0.3407846689224243,\r\n                        \"Y\": 0.2724469304084778\r\n                    },\r\n                    {\r\n                        \"X\": 0.3227112293243408,\r\n                        \"Y\": 0.2724469304084778\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c9a2f9c0-f9d0-4599-822b-047369ee663e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.91336059570312,\r\n            \"Text\": \"February\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07284650951623917,\r\n                    \"Height\": 0.01407299842685461,\r\n                    \"Left\": 0.34569910168647766,\r\n                    \"Top\": 0.26124143600463867\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.34569910168647766,\r\n                        \"Y\": 0.26124143600463867\r\n                    },\r\n                    {\r\n                        \"X\": 0.41854560375213623,\r\n                        \"Y\": 0.26124143600463867\r\n                    },\r\n                    {\r\n                        \"X\": 0.41854560375213623,\r\n                        \"Y\": 0.27531442046165466\r\n                    },\r\n                    {\r\n                        \"X\": 0.34569910168647766,\r\n                        \"Y\": 0.27531442046165466\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b143c7fa-0fc6-48cf-be69-962822108807\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.07462310791016,\r\n            \"Text\": \"28,\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.024383412674069405,\r\n                    \"Height\": 0.012883036397397518,\r\n                    \"Left\": 0.42246249318122864,\r\n                    \"Top\": 0.2614230215549469\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.42246249318122864,\r\n                        \"Y\": 0.2614230215549469\r\n                    },\r\n                    {\r\n                        \"X\": 0.4468459188938141,\r\n                        \"Y\": 0.2614230215549469\r\n                    },\r\n                    {\r\n                        \"X\": 0.4468459188938141,\r\n                        \"Y\": 0.274306058883667\r\n                    },\r\n                    {\r\n                        \"X\": 0.42246249318122864,\r\n                        \"Y\": 0.274306058883667\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3fcacd55-d367-41c8-b3b3-50da985ca66a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85509490966797,\r\n            \"Text\": \"2022\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03979349881410599,\r\n                    \"Height\": 0.010867777280509472,\r\n                    \"Left\": 0.4510086178779602,\r\n                    \"Top\": 0.26143205165863037\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4510086178779602,\r\n                        \"Y\": 0.26143205165863037\r\n                    },\r\n                    {\r\n                        \"X\": 0.4908021092414856,\r\n                        \"Y\": 0.26143205165863037\r\n                    },\r\n                    {\r\n                        \"X\": 0.4908021092414856,\r\n                        \"Y\": 0.2722998261451721\r\n                    },\r\n                    {\r\n                        \"X\": 0.4510086178779602,\r\n                        \"Y\": 0.2722998261451721\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"34b5f551-bb0c-475e-9de0-76a48f9a9a41\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.97370147705078,\r\n            \"Text\": \"Other\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04650126025080681,\r\n                    \"Height\": 0.011510294862091541,\r\n                    \"Left\": 0.6275659203529358,\r\n                    \"Top\": 0.2552162706851959\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6275659203529358,\r\n                        \"Y\": 0.2552162706851959\r\n                    },\r\n                    {\r\n                        \"X\": 0.6740671396255493,\r\n                        \"Y\": 0.2552162706851959\r\n                    },\r\n                    {\r\n                        \"X\": 0.6740671396255493,\r\n                        \"Y\": 0.266726553440094\r\n                    },\r\n                    {\r\n                        \"X\": 0.6275659203529358,\r\n                        \"Y\": 0.266726553440094\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"925b1955-0f0e-456f-bc3f-4c267331dde8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.3689956665039,\r\n            \"Text\": \"Subtractions\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09845523536205292,\r\n                    \"Height\": 0.011285034008324146,\r\n                    \"Left\": 0.6788206100463867,\r\n                    \"Top\": 0.25538474321365356\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6788206100463867,\r\n                        \"Y\": 0.25538474321365356\r\n                    },\r\n                    {\r\n                        \"X\": 0.7772758603096008,\r\n                        \"Y\": 0.25538474321365356\r\n                    },\r\n                    {\r\n                        \"X\": 0.7772758603096008,\r\n                        \"Y\": 0.26666978001594543\r\n                    },\r\n                    {\r\n                        \"X\": 0.6788206100463867,\r\n                        \"Y\": 0.26666978001594543\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d178d726-b902-4b9c-84f7-54532eb566a5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.17314910888672,\r\n            \"Text\": \"-1120.74\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07064084708690643,\r\n                    \"Height\": 0.011070414446294308,\r\n                    \"Left\": 0.8675276637077332,\r\n                    \"Top\": 0.2557693421840668\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8675276637077332,\r\n                        \"Y\": 0.2557693421840668\r\n                    },\r\n                    {\r\n                        \"X\": 0.938168466091156,\r\n                        \"Y\": 0.2557693421840668\r\n                    },\r\n                    {\r\n                        \"X\": 0.938168466091156,\r\n                        \"Y\": 0.26683977246284485\r\n                    },\r\n                    {\r\n                        \"X\": 0.8675276637077332,\r\n                        \"Y\": 0.26683977246284485\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"91b957a1-85b1-4a86-a9b2-367c7d234432\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.08001708984375,\r\n            \"Text\": \"Checks\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05537194758653641,\r\n                    \"Height\": 0.011456848122179508,\r\n                    \"Left\": 0.6276648044586182,\r\n                    \"Top\": 0.283197820186615\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6276648044586182,\r\n                        \"Y\": 0.283197820186615\r\n                    },\r\n                    {\r\n                        \"X\": 0.683036744594574,\r\n                        \"Y\": 0.283197820186615\r\n                    },\r\n                    {\r\n                        \"X\": 0.683036744594574,\r\n                        \"Y\": 0.2946546673774719\r\n                    },\r\n                    {\r\n                        \"X\": 0.6276648044586182,\r\n                        \"Y\": 0.2946546673774719\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"03b27191-ed78-49ed-bf1b-b5a403d663bc\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.6310806274414,\r\n            \"Text\": \"-0.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.041095566004514694,\r\n                    \"Height\": 0.011114277876913548,\r\n                    \"Left\": 0.8999921679496765,\r\n                    \"Top\": 0.283657968044281\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8999921679496765,\r\n                        \"Y\": 0.283657968044281\r\n                    },\r\n                    {\r\n                        \"X\": 0.9410877227783203,\r\n                        \"Y\": 0.283657968044281\r\n                    },\r\n                    {\r\n                        \"X\": 0.9410877227783203,\r\n                        \"Y\": 0.2947722375392914\r\n                    },\r\n                    {\r\n                        \"X\": 0.8999921679496765,\r\n                        \"Y\": 0.2947722375392914\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"25d8e54b-b692-4953-b6f1-cb7f63a303fd\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.74547576904297,\r\n            \"Text\": \"Service\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05709198862314224,\r\n                    \"Height\": 0.01136653684079647,\r\n                    \"Left\": 0.6272029280662537,\r\n                    \"Top\": 0.31111353635787964\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6272029280662537,\r\n                        \"Y\": 0.31111353635787964\r\n                    },\r\n                    {\r\n                        \"X\": 0.6842949390411377,\r\n                        \"Y\": 0.31111353635787964\r\n                    },\r\n                    {\r\n                        \"X\": 0.6842949390411377,\r\n                        \"Y\": 0.32248005270957947\r\n                    },\r\n                    {\r\n                        \"X\": 0.6272029280662537,\r\n                        \"Y\": 0.32248005270957947\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"55b888aa-06bb-4541-9109-5abbd046f0cf\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.86579132080078,\r\n            \"Text\": \"Fees\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03514808788895607,\r\n                    \"Height\": 0.010824625380337238,\r\n                    \"Left\": 0.6898593306541443,\r\n                    \"Top\": 0.3114832639694214\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6898593306541443,\r\n                        \"Y\": 0.3114832639694214\r\n                    },\r\n                    {\r\n                        \"X\": 0.7250074744224548,\r\n                        \"Y\": 0.3114832639694214\r\n                    },\r\n                    {\r\n                        \"X\": 0.7250074744224548,\r\n                        \"Y\": 0.32230791449546814\r\n                    },\r\n                    {\r\n                        \"X\": 0.6898593306541443,\r\n                        \"Y\": 0.32230791449546814\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2ecff8d3-70f1-40d5-8335-00ac494d5c8d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.44202423095703,\r\n            \"Text\": \"-0.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04167221486568451,\r\n                    \"Height\": 0.011306905187666416,\r\n                    \"Left\": 0.8975939750671387,\r\n                    \"Top\": 0.31130072474479675\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8975939750671387,\r\n                        \"Y\": 0.31130072474479675\r\n                    },\r\n                    {\r\n                        \"X\": 0.9392662048339844,\r\n                        \"Y\": 0.31130072474479675\r\n                    },\r\n                    {\r\n                        \"X\": 0.9392662048339844,\r\n                        \"Y\": 0.3226076364517212\r\n                    },\r\n                    {\r\n                        \"X\": 0.8975939750671387,\r\n                        \"Y\": 0.3226076364517212\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b83a8b13-aecd-4639-b062-e380e61463d6\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.92556762695312,\r\n            \"Text\": \"Account\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06854569166898727,\r\n                    \"Height\": 0.010980387218296528,\r\n                    \"Left\": 0.626143753528595,\r\n                    \"Top\": 0.3390418589115143\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.626143753528595,\r\n                        \"Y\": 0.3390418589115143\r\n                    },\r\n                    {\r\n                        \"X\": 0.6946894526481628,\r\n                        \"Y\": 0.3390418589115143\r\n                    },\r\n                    {\r\n                        \"X\": 0.6946894526481628,\r\n                        \"Y\": 0.35002225637435913\r\n                    },\r\n                    {\r\n                        \"X\": 0.626143753528595,\r\n                        \"Y\": 0.35002225637435913\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a2bb500d-1acc-436d-90cc-615b12d1e1e9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8942642211914,\r\n            \"Text\": \"Type\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.03916002810001373,\r\n                    \"Height\": 0.013439473696053028,\r\n                    \"Left\": 0.6985059380531311,\r\n                    \"Top\": 0.3391580581665039\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6985059380531311,\r\n                        \"Y\": 0.3391580581665039\r\n                    },\r\n                    {\r\n                        \"X\": 0.7376659512519836,\r\n                        \"Y\": 0.3391580581665039\r\n                    },\r\n                    {\r\n                        \"X\": 0.7376659512519836,\r\n                        \"Y\": 0.35259753465652466\r\n                    },\r\n                    {\r\n                        \"X\": 0.6985059380531311,\r\n                        \"Y\": 0.35259753465652466\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"085a75cc-c74d-427b-ab0d-ee456afd22b9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.78738403320312,\r\n            \"Text\": \"Current\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06155398115515709,\r\n                    \"Height\": 0.011288817971944809,\r\n                    \"Left\": 0.8086336255073547,\r\n                    \"Top\": 0.33879220485687256\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8086336255073547,\r\n                        \"Y\": 0.33879220485687256\r\n                    },\r\n                    {\r\n                        \"X\": 0.8701875805854797,\r\n                        \"Y\": 0.33879220485687256\r\n                    },\r\n                    {\r\n                        \"X\": 0.8701875805854797,\r\n                        \"Y\": 0.35008102655410767\r\n                    },\r\n                    {\r\n                        \"X\": 0.8086336255073547,\r\n                        \"Y\": 0.35008102655410767\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"69dd21ad-383e-44e1-b924-d92c76ffd4ee\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.94684600830078,\r\n            \"Text\": \"Account\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0662810206413269,\r\n                    \"Height\": 0.010910501703619957,\r\n                    \"Left\": 0.8736094236373901,\r\n                    \"Top\": 0.33915916085243225\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8736094236373901,\r\n                        \"Y\": 0.33915916085243225\r\n                    },\r\n                    {\r\n                        \"X\": 0.939890444278717,\r\n                        \"Y\": 0.33915916085243225\r\n                    },\r\n                    {\r\n                        \"X\": 0.939890444278717,\r\n                        \"Y\": 0.35006967186927795\r\n                    },\r\n                    {\r\n                        \"X\": 0.8736094236373901,\r\n                        \"Y\": 0.35006967186927795\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f4a9d778-4524-4b99-8a33-8ab7f42a5db0\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.880615234375,\r\n            \"Text\": \"Deposits\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09268175065517426,\r\n                    \"Height\": 0.017830850556492805,\r\n                    \"Left\": 0.1183893233537674,\r\n                    \"Top\": 0.4138626158237457\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1183893233537674,\r\n                        \"Y\": 0.4138626158237457\r\n                    },\r\n                    {\r\n                        \"X\": 0.21107107400894165,\r\n                        \"Y\": 0.4138626158237457\r\n                    },\r\n                    {\r\n                        \"X\": 0.21107107400894165,\r\n                        \"Y\": 0.43169349431991577\r\n                    },\r\n                    {\r\n                        \"X\": 0.1183893233537674,\r\n                        \"Y\": 0.43169349431991577\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5a296021-4287-4f78-a78c-536c8e1eaab6\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.99242401123047,\r\n            \"Text\": \"and\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04017898440361023,\r\n                    \"Height\": 0.015024088323116302,\r\n                    \"Left\": 0.21713325381278992,\r\n                    \"Top\": 0.4134646952152252\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.21713325381278992,\r\n                        \"Y\": 0.4134646952152252\r\n                    },\r\n                    {\r\n                        \"X\": 0.25731223821640015,\r\n                        \"Y\": 0.4134646952152252\r\n                    },\r\n                    {\r\n                        \"X\": 0.25731223821640015,\r\n                        \"Y\": 0.42848876118659973\r\n                    },\r\n                    {\r\n                        \"X\": 0.21713325381278992,\r\n                        \"Y\": 0.42848876118659973\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e27738f0-2b1f-48a5-9839-a1eb69bf9135\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.95156860351562,\r\n            \"Text\": \"others\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0697479099035263,\r\n                    \"Height\": 0.014870768412947655,\r\n                    \"Left\": 0.2639378607273102,\r\n                    \"Top\": 0.4138847589492798\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2639378607273102,\r\n                        \"Y\": 0.4138847589492798\r\n                    },\r\n                    {\r\n                        \"X\": 0.3336857855319977,\r\n                        \"Y\": 0.4138847589492798\r\n                    },\r\n                    {\r\n                        \"X\": 0.3336857855319977,\r\n                        \"Y\": 0.428755521774292\r\n                    },\r\n                    {\r\n                        \"X\": 0.2639378607273102,\r\n                        \"Y\": 0.428755521774292\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f1fcc458-8f7b-492a-8aaa-69d551ef6918\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8431396484375,\r\n            \"Text\": \"Debits\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0685541182756424,\r\n                    \"Height\": 0.01474686712026596,\r\n                    \"Left\": 0.3408595323562622,\r\n                    \"Top\": 0.41367316246032715\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.3408595323562622,\r\n                        \"Y\": 0.41367316246032715\r\n                    },\r\n                    {\r\n                        \"X\": 0.4094136357307434,\r\n                        \"Y\": 0.41367316246032715\r\n                    },\r\n                    {\r\n                        \"X\": 0.4094136357307434,\r\n                        \"Y\": 0.4284200370311737\r\n                    },\r\n                    {\r\n                        \"X\": 0.3408595323562622,\r\n                        \"Y\": 0.4284200370311737\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"aeec7aec-5c7a-4aec-83fe-f0ea7cb6b20c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.06315612792969,\r\n            \"Text\": \"Charges\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06470179557800293,\r\n                    \"Height\": 0.01416434720158577,\r\n                    \"Left\": 0.6700726747512817,\r\n                    \"Top\": 0.43666934967041016\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6700726747512817,\r\n                        \"Y\": 0.43666934967041016\r\n                    },\r\n                    {\r\n                        \"X\": 0.7347744703292847,\r\n                        \"Y\": 0.43666934967041016\r\n                    },\r\n                    {\r\n                        \"X\": 0.7347744703292847,\r\n                        \"Y\": 0.4508337080478668\r\n                    },\r\n                    {\r\n                        \"X\": 0.6700726747512817,\r\n                        \"Y\": 0.4508337080478668\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cbf6bd1d-b2e6-4a2a-97a3-4278e3a3235d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.66719055175781,\r\n            \"Text\": \"Date\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.038528259843587875,\r\n                    \"Height\": 0.010995320975780487,\r\n                    \"Left\": 0.15134486556053162,\r\n                    \"Top\": 0.44661325216293335\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.15134486556053162,\r\n                        \"Y\": 0.44661325216293335\r\n                    },\r\n                    {\r\n                        \"X\": 0.1898731291294098,\r\n                        \"Y\": 0.44661325216293335\r\n                    },\r\n                    {\r\n                        \"X\": 0.1898731291294098,\r\n                        \"Y\": 0.45760855078697205\r\n                    },\r\n                    {\r\n                        \"X\": 0.15134486556053162,\r\n                        \"Y\": 0.45760855078697205\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6e2cab21-0bbb-4613-9eb4-71e77105492a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.43017578125,\r\n            \"Text\": \"Description\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09293977171182632,\r\n                    \"Height\": 0.01357218436896801,\r\n                    \"Left\": 0.30430078506469727,\r\n                    \"Top\": 0.4463074207305908\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30430078506469727,\r\n                        \"Y\": 0.4463074207305908\r\n                    },\r\n                    {\r\n                        \"X\": 0.397240549325943,\r\n                        \"Y\": 0.4463074207305908\r\n                    },\r\n                    {\r\n                        \"X\": 0.397240549325943,\r\n                        \"Y\": 0.459879606962204\r\n                    },\r\n                    {\r\n                        \"X\": 0.30430078506469727,\r\n                        \"Y\": 0.459879606962204\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"dc5f2b70-f9c1-4d22-8e1c-bd35b8de66a7\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.40406036376953,\r\n            \"Text\": \"Details\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05603274703025818,\r\n                    \"Height\": 0.011390462517738342,\r\n                    \"Left\": 0.4990047812461853,\r\n                    \"Top\": 0.44609570503234863\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4990047812461853,\r\n                        \"Y\": 0.44609570503234863\r\n                    },\r\n                    {\r\n                        \"X\": 0.5550375580787659,\r\n                        \"Y\": 0.44609570503234863\r\n                    },\r\n                    {\r\n                        \"X\": 0.5550375580787659,\r\n                        \"Y\": 0.4574861526489258\r\n                    },\r\n                    {\r\n                        \"X\": 0.4990047812461853,\r\n                        \"Y\": 0.4574861526489258\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5ab9ed9f-7619-4ea5-83f9-ddd46c468517\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.50791931152344,\r\n            \"Text\": \"Balance\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06332247704267502,\r\n                    \"Height\": 0.01124650053679943,\r\n                    \"Left\": 0.8387684226036072,\r\n                    \"Top\": 0.4463071823120117\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8387684226036072,\r\n                        \"Y\": 0.4463071823120117\r\n                    },\r\n                    {\r\n                        \"X\": 0.902090847492218,\r\n                        \"Y\": 0.4463071823120117\r\n                    },\r\n                    {\r\n                        \"X\": 0.902090847492218,\r\n                        \"Y\": 0.4575536847114563\r\n                    },\r\n                    {\r\n                        \"X\": 0.8387684226036072,\r\n                        \"Y\": 0.4575536847114563\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7c0bce41-1d2b-4291-9e12-d44d0b5dbf77\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.82049560546875,\r\n            \"Text\": \"Debit\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0444016270339489,\r\n                    \"Height\": 0.011467976495623589,\r\n                    \"Left\": 0.6073095798492432,\r\n                    \"Top\": 0.4551813006401062\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6073095798492432,\r\n                        \"Y\": 0.4551813006401062\r\n                    },\r\n                    {\r\n                        \"X\": 0.6517112255096436,\r\n                        \"Y\": 0.4551813006401062\r\n                    },\r\n                    {\r\n                        \"X\": 0.6517112255096436,\r\n                        \"Y\": 0.46664929389953613\r\n                    },\r\n                    {\r\n                        \"X\": 0.6073095798492432,\r\n                        \"Y\": 0.46664929389953613\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2124d11d-a3a6-47d2-ad58-c414ac48d319\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.68818664550781,\r\n            \"Text\": \"Credit\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05032461881637573,\r\n                    \"Height\": 0.011512288823723793,\r\n                    \"Left\": 0.7307619452476501,\r\n                    \"Top\": 0.45519840717315674\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.7307619452476501,\r\n                        \"Y\": 0.45519840717315674\r\n                    },\r\n                    {\r\n                        \"X\": 0.7810865640640259,\r\n                        \"Y\": 0.45519840717315674\r\n                    },\r\n                    {\r\n                        \"X\": 0.7810865640640259,\r\n                        \"Y\": 0.4667106866836548\r\n                    },\r\n                    {\r\n                        \"X\": 0.7307619452476501,\r\n                        \"Y\": 0.4667106866836548\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"dfe4fd1a-1d3e-4342-9a9b-52245f99e08f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.61288452148438,\r\n            \"Text\": \"02/02/22\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07453889399766922,\r\n                    \"Height\": 0.014112304896116257,\r\n                    \"Left\": 0.1262395679950714,\r\n                    \"Top\": 0.4736880660057068\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1262395679950714,\r\n                        \"Y\": 0.4736880660057068\r\n                    },\r\n                    {\r\n                        \"X\": 0.20077846944332123,\r\n                        \"Y\": 0.4736880660057068\r\n                    },\r\n                    {\r\n                        \"X\": 0.20077846944332123,\r\n                        \"Y\": 0.48780035972595215\r\n                    },\r\n                    {\r\n                        \"X\": 0.1262395679950714,\r\n                        \"Y\": 0.48780035972595215\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"94450172-40cf-4e5f-af77-7c9241b25349\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85035705566406,\r\n            \"Text\": \"Life\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.027818338945508003,\r\n                    \"Height\": 0.011569010093808174,\r\n                    \"Left\": 0.23269502818584442,\r\n                    \"Top\": 0.4742327034473419\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23269502818584442,\r\n                        \"Y\": 0.4742327034473419\r\n                    },\r\n                    {\r\n                        \"X\": 0.2605133652687073,\r\n                        \"Y\": 0.4742327034473419\r\n                    },\r\n                    {\r\n                        \"X\": 0.2605133652687073,\r\n                        \"Y\": 0.48580172657966614\r\n                    },\r\n                    {\r\n                        \"X\": 0.23269502818584442,\r\n                        \"Y\": 0.48580172657966614\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"87f50c34-9734-4ca5-969b-f6e46b4d74aa\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.34784698486328,\r\n            \"Text\": \"Insurance\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07693836838006973,\r\n                    \"Height\": 0.011188354343175888,\r\n                    \"Left\": 0.26586467027664185,\r\n                    \"Top\": 0.47471484541893005\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.26586467027664185,\r\n                        \"Y\": 0.47471484541893005\r\n                    },\r\n                    {\r\n                        \"X\": 0.342803031206131,\r\n                        \"Y\": 0.47471484541893005\r\n                    },\r\n                    {\r\n                        \"X\": 0.342803031206131,\r\n                        \"Y\": 0.48590320348739624\r\n                    },\r\n                    {\r\n                        \"X\": 0.26586467027664185,\r\n                        \"Y\": 0.48590320348739624\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"04e63b36-18c8-43fe-b88c-d7d72075bc4d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.38233184814453,\r\n            \"Text\": \"Payments\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07770083099603653,\r\n                    \"Height\": 0.013654500246047974,\r\n                    \"Left\": 0.34810152649879456,\r\n                    \"Top\": 0.47473612427711487\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.34810152649879456,\r\n                        \"Y\": 0.47473612427711487\r\n                    },\r\n                    {\r\n                        \"X\": 0.4258023798465729,\r\n                        \"Y\": 0.47473612427711487\r\n                    },\r\n                    {\r\n                        \"X\": 0.4258023798465729,\r\n                        \"Y\": 0.48839062452316284\r\n                    },\r\n                    {\r\n                        \"X\": 0.34810152649879456,\r\n                        \"Y\": 0.48839062452316284\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f2cad687-a2bf-44ff-99bb-156422ea97f5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.79484558105469,\r\n            \"Text\": \"Credit\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04878015071153641,\r\n                    \"Height\": 0.011600545607507229,\r\n                    \"Left\": 0.48647943139076233,\r\n                    \"Top\": 0.4743020832538605\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.48647943139076233,\r\n                        \"Y\": 0.4743020832538605\r\n                    },\r\n                    {\r\n                        \"X\": 0.5352595448493958,\r\n                        \"Y\": 0.4743020832538605\r\n                    },\r\n                    {\r\n                        \"X\": 0.5352595448493958,\r\n                        \"Y\": 0.4859026372432709\r\n                    },\r\n                    {\r\n                        \"X\": 0.48647943139076233,\r\n                        \"Y\": 0.4859026372432709\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1cda1ad8-d9df-4c41-a6a3-27eebd8eacf0\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.61213684082031,\r\n            \"Text\": \"3000.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06385298818349838,\r\n                    \"Height\": 0.011404826305806637,\r\n                    \"Left\": 0.6920186877250671,\r\n                    \"Top\": 0.47461843490600586\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6920186877250671,\r\n                        \"Y\": 0.47461843490600586\r\n                    },\r\n                    {\r\n                        \"X\": 0.7558717131614685,\r\n                        \"Y\": 0.47461843490600586\r\n                    },\r\n                    {\r\n                        \"X\": 0.7558717131614685,\r\n                        \"Y\": 0.48602327704429626\r\n                    },\r\n                    {\r\n                        \"X\": 0.6920186877250671,\r\n                        \"Y\": 0.48602327704429626\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"337f42d1-1cd5-474c-be19-a4f1cf76990c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.79391479492188,\r\n            \"Text\": \"8000.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06523589044809341,\r\n                    \"Height\": 0.011170654557645321,\r\n                    \"Left\": 0.8378223776817322,\r\n                    \"Top\": 0.4750787317752838\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8378223776817322,\r\n                        \"Y\": 0.4750787317752838\r\n                    },\r\n                    {\r\n                        \"X\": 0.9030582904815674,\r\n                        \"Y\": 0.4750787317752838\r\n                    },\r\n                    {\r\n                        \"X\": 0.9030582904815674,\r\n                        \"Y\": 0.4862493872642517\r\n                    },\r\n                    {\r\n                        \"X\": 0.8378223776817322,\r\n                        \"Y\": 0.4862493872642517\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"04e75936-d53b-468a-b70b-f235b9d53de3\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.28968811035156,\r\n            \"Text\": \"ID:\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.021595465019345284,\r\n                    \"Height\": 0.011144408956170082,\r\n                    \"Left\": 0.23238496482372284,\r\n                    \"Top\": 0.4933597147464752\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23238496482372284,\r\n                        \"Y\": 0.4933597147464752\r\n                    },\r\n                    {\r\n                        \"X\": 0.253980427980423,\r\n                        \"Y\": 0.4933597147464752\r\n                    },\r\n                    {\r\n                        \"X\": 0.253980427980423,\r\n                        \"Y\": 0.5045040845870972\r\n                    },\r\n                    {\r\n                        \"X\": 0.23238496482372284,\r\n                        \"Y\": 0.5045040845870972\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5f5b09e7-ba2b-4f3f-9aa0-5489bb8fce92\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 97.22612762451172,\r\n            \"Text\": \"12345\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04859604313969612,\r\n                    \"Height\": 0.011207601055502892,\r\n                    \"Left\": 0.2599378228187561,\r\n                    \"Top\": 0.4933551847934723\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2599378228187561,\r\n                        \"Y\": 0.4933551847934723\r\n                    },\r\n                    {\r\n                        \"X\": 0.3085338771343231,\r\n                        \"Y\": 0.4933551847934723\r\n                    },\r\n                    {\r\n                        \"X\": 0.3085338771343231,\r\n                        \"Y\": 0.5045627951622009\r\n                    },\r\n                    {\r\n                        \"X\": 0.2599378228187561,\r\n                        \"Y\": 0.5045627951622009\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"24b1d5d8-cfb5-42c1-ba21-c3cb5ae65ec5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 97.36697387695312,\r\n            \"Text\": \"8975656\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07482704520225525,\r\n                    \"Height\": 0.011287393979728222,\r\n                    \"Left\": 0.30588382482528687,\r\n                    \"Top\": 0.4933168590068817\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.30588382482528687,\r\n                        \"Y\": 0.4933168590068817\r\n                    },\r\n                    {\r\n                        \"X\": 0.3807108700275421,\r\n                        \"Y\": 0.4933168590068817\r\n                    },\r\n                    {\r\n                        \"X\": 0.3807108700275421,\r\n                        \"Y\": 0.5046042203903198\r\n                    },\r\n                    {\r\n                        \"X\": 0.30588382482528687,\r\n                        \"Y\": 0.5046042203903198\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ee1c6586-4582-44e3-9a95-b4083e2ea47f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 76.09767150878906,\r\n            \"Text\": \"XXX\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.02717725932598114,\r\n                    \"Height\": 0.00886706542223692,\r\n                    \"Left\": 0.23150292038917542,\r\n                    \"Top\": 0.5144726037979126\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23150292038917542,\r\n                        \"Y\": 0.5144726037979126\r\n                    },\r\n                    {\r\n                        \"X\": 0.25868019461631775,\r\n                        \"Y\": 0.5144726037979126\r\n                    },\r\n                    {\r\n                        \"X\": 0.25868019461631775,\r\n                        \"Y\": 0.5233396887779236\r\n                    },\r\n                    {\r\n                        \"X\": 0.23150292038917542,\r\n                        \"Y\": 0.5233396887779236\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d9c043b6-d870-4fcd-ab94-833d216f09fc\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.91363525390625,\r\n            \"Text\": \"Property\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06874741613864899,\r\n                    \"Height\": 0.01405505370348692,\r\n                    \"Left\": 0.26332104206085205,\r\n                    \"Top\": 0.5122318267822266\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.26332104206085205,\r\n                        \"Y\": 0.5122318267822266\r\n                    },\r\n                    {\r\n                        \"X\": 0.33206844329833984,\r\n                        \"Y\": 0.5122318267822266\r\n                    },\r\n                    {\r\n                        \"X\": 0.33206844329833984,\r\n                        \"Y\": 0.5262868404388428\r\n                    },\r\n                    {\r\n                        \"X\": 0.26332104206085205,\r\n                        \"Y\": 0.5262868404388428\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"338f7672-4484-4619-86a7-f9efb0762e0e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.73614501953125,\r\n            \"Text\": \"Management\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10528640449047089,\r\n                    \"Height\": 0.013850952498614788,\r\n                    \"Left\": 0.33728399872779846,\r\n                    \"Top\": 0.512031614780426\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.33728399872779846,\r\n                        \"Y\": 0.512031614780426\r\n                    },\r\n                    {\r\n                        \"X\": 0.44257038831710815,\r\n                        \"Y\": 0.512031614780426\r\n                    },\r\n                    {\r\n                        \"X\": 0.44257038831710815,\r\n                        \"Y\": 0.5258825421333313\r\n                    },\r\n                    {\r\n                        \"X\": 0.33728399872779846,\r\n                        \"Y\": 0.5258825421333313\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"65bba2cf-b95b-4ff3-b5ba-496c30a9864e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.86304473876953,\r\n            \"Text\": \"Debit\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.043442707508802414,\r\n                    \"Height\": 0.01152954064309597,\r\n                    \"Left\": 0.48698240518569946,\r\n                    \"Top\": 0.5119780898094177\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.48698240518569946,\r\n                        \"Y\": 0.5119780898094177\r\n                    },\r\n                    {\r\n                        \"X\": 0.5304251313209534,\r\n                        \"Y\": 0.5119780898094177\r\n                    },\r\n                    {\r\n                        \"X\": 0.5304251313209534,\r\n                        \"Y\": 0.5235076546669006\r\n                    },\r\n                    {\r\n                        \"X\": 0.48698240518569946,\r\n                        \"Y\": 0.5235076546669006\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"d7e96b53-3fb5-4aa4-ac03-3a876495f9ae\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85838317871094,\r\n            \"Text\": \"2495.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06413152068853378,\r\n                    \"Height\": 0.011447631753981113,\r\n                    \"Left\": 0.584312915802002,\r\n                    \"Top\": 0.51209956407547\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.584312915802002,\r\n                        \"Y\": 0.51209956407547\r\n                    },\r\n                    {\r\n                        \"X\": 0.6484444737434387,\r\n                        \"Y\": 0.51209956407547\r\n                    },\r\n                    {\r\n                        \"X\": 0.6484444737434387,\r\n                        \"Y\": 0.5235471725463867\r\n                    },\r\n                    {\r\n                        \"X\": 0.584312915802002,\r\n                        \"Y\": 0.5235471725463867\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a521d515-e011-48eb-a12e-827fde28c939\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.83836364746094,\r\n            \"Text\": \"5000.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06477051973342896,\r\n                    \"Height\": 0.011343017220497131,\r\n                    \"Left\": 0.8379458785057068,\r\n                    \"Top\": 0.5121712684631348\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8379458785057068,\r\n                        \"Y\": 0.5121712684631348\r\n                    },\r\n                    {\r\n                        \"X\": 0.9027163982391357,\r\n                        \"Y\": 0.5121712684631348\r\n                    },\r\n                    {\r\n                        \"X\": 0.9027163982391357,\r\n                        \"Y\": 0.5235142707824707\r\n                    },\r\n                    {\r\n                        \"X\": 0.8379458785057068,\r\n                        \"Y\": 0.5235142707824707\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1f281028-2354-4e06-a8c8-e56879208a0a\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.64169311523438,\r\n            \"Text\": \"Company\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0752483457326889,\r\n                    \"Height\": 0.014122395776212215,\r\n                    \"Left\": 0.23225504159927368,\r\n                    \"Top\": 0.5307729244232178\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23225504159927368,\r\n                        \"Y\": 0.5307729244232178\r\n                    },\r\n                    {\r\n                        \"X\": 0.3075033724308014,\r\n                        \"Y\": 0.5307729244232178\r\n                    },\r\n                    {\r\n                        \"X\": 0.3075033724308014,\r\n                        \"Y\": 0.544895350933075\r\n                    },\r\n                    {\r\n                        \"X\": 0.23225504159927368,\r\n                        \"Y\": 0.544895350933075\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0e6193c3-aa40-4391-92c9-5617a4496c0e\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.8255386352539,\r\n            \"Text\": \"ID:\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.021335631608963013,\r\n                    \"Height\": 0.010902425274252892,\r\n                    \"Left\": 0.23243096470832825,\r\n                    \"Top\": 0.549344539642334\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23243096470832825,\r\n                        \"Y\": 0.549344539642334\r\n                    },\r\n                    {\r\n                        \"X\": 0.25376659631729126,\r\n                        \"Y\": 0.549344539642334\r\n                    },\r\n                    {\r\n                        \"X\": 0.25376659631729126,\r\n                        \"Y\": 0.560247004032135\r\n                    },\r\n                    {\r\n                        \"X\": 0.23243096470832825,\r\n                        \"Y\": 0.560247004032135\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"eeadfd10-ed71-4f47-a25f-439be31b2181\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.66453552246094,\r\n            \"Text\": \"678987\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.059179481118917465,\r\n                    \"Height\": 0.011244995519518852,\r\n                    \"Left\": 0.26340430974960327,\r\n                    \"Top\": 0.5491563677787781\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.26340430974960327,\r\n                        \"Y\": 0.5491563677787781\r\n                    },\r\n                    {\r\n                        \"X\": 0.32258379459381104,\r\n                        \"Y\": 0.5491563677787781\r\n                    },\r\n                    {\r\n                        \"X\": 0.32258379459381104,\r\n                        \"Y\": 0.5604013800621033\r\n                    },\r\n                    {\r\n                        \"X\": 0.26340430974960327,\r\n                        \"Y\": 0.5604013800621033\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2b739b0a-4b25-429a-8c9e-8342f73cc378\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.6568603515625,\r\n            \"Text\": \"02/04/22\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07563740760087967,\r\n                    \"Height\": 0.013574137352406979,\r\n                    \"Left\": 0.1256006807088852,\r\n                    \"Top\": 0.5677229762077332\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.1256006807088852,\r\n                        \"Y\": 0.5677229762077332\r\n                    },\r\n                    {\r\n                        \"X\": 0.20123808085918427,\r\n                        \"Y\": 0.5677229762077332\r\n                    },\r\n                    {\r\n                        \"X\": 0.20123808085918427,\r\n                        \"Y\": 0.5812970995903015\r\n                    },\r\n                    {\r\n                        \"X\": 0.1256006807088852,\r\n                        \"Y\": 0.5812970995903015\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"168f39a1-55da-4e43-808a-a44e14b02206\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.7960433959961,\r\n            \"Text\": \"Retail\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.045329976826906204,\r\n                    \"Height\": 0.011518473736941814,\r\n                    \"Left\": 0.23244896531105042,\r\n                    \"Top\": 0.5682626366615295\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23244896531105042,\r\n                        \"Y\": 0.5682626366615295\r\n                    },\r\n                    {\r\n                        \"X\": 0.2777789533138275,\r\n                        \"Y\": 0.5682626366615295\r\n                    },\r\n                    {\r\n                        \"X\": 0.2777789533138275,\r\n                        \"Y\": 0.5797811150550842\r\n                    },\r\n                    {\r\n                        \"X\": 0.23244896531105042,\r\n                        \"Y\": 0.5797811150550842\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"244d4455-6292-466d-bfdb-f5bd187604a2\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.6935806274414,\r\n            \"Text\": \"Purchase\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.0727473795413971,\r\n                    \"Height\": 0.011247029528021812,\r\n                    \"Left\": 0.28206679224967957,\r\n                    \"Top\": 0.5683542490005493\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.28206679224967957,\r\n                        \"Y\": 0.5683542490005493\r\n                    },\r\n                    {\r\n                        \"X\": 0.35481417179107666,\r\n                        \"Y\": 0.5683542490005493\r\n                    },\r\n                    {\r\n                        \"X\": 0.35481417179107666,\r\n                        \"Y\": 0.5796012878417969\r\n                    },\r\n                    {\r\n                        \"X\": 0.28206679224967957,\r\n                        \"Y\": 0.5796012878417969\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b733f208-f0c3-4eec-b150-a95837418e83\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.80379486083984,\r\n            \"Text\": \"Walmart\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.07047390937805176,\r\n                    \"Height\": 0.011192016303539276,\r\n                    \"Left\": 0.35889530181884766,\r\n                    \"Top\": 0.5683917999267578\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.35889530181884766,\r\n                        \"Y\": 0.5683917999267578\r\n                    },\r\n                    {\r\n                        \"X\": 0.4293692111968994,\r\n                        \"Y\": 0.5683917999267578\r\n                    },\r\n                    {\r\n                        \"X\": 0.4293692111968994,\r\n                        \"Y\": 0.5795838236808777\r\n                    },\r\n                    {\r\n                        \"X\": 0.35889530181884766,\r\n                        \"Y\": 0.5795838236808777\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b5f67574-8520-4c8d-bd37-2ea663fc8927\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.88423156738281,\r\n            \"Text\": \"Debit\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04335771128535271,\r\n                    \"Height\": 0.011678792536258698,\r\n                    \"Left\": 0.4868956208229065,\r\n                    \"Top\": 0.5681083798408508\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4868956208229065,\r\n                        \"Y\": 0.5681083798408508\r\n                    },\r\n                    {\r\n                        \"X\": 0.5302532911300659,\r\n                        \"Y\": 0.5681083798408508\r\n                    },\r\n                    {\r\n                        \"X\": 0.5302532911300659,\r\n                        \"Y\": 0.5797871947288513\r\n                    },\r\n                    {\r\n                        \"X\": 0.4868956208229065,\r\n                        \"Y\": 0.5797871947288513\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c2b6564b-4886-4314-9b41-86e327c72c6d\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.85108947753906,\r\n            \"Text\": \"550.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.05437958613038063,\r\n                    \"Height\": 0.0112735191360116,\r\n                    \"Left\": 0.5843030214309692,\r\n                    \"Top\": 0.568503201007843\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5843030214309692,\r\n                        \"Y\": 0.568503201007843\r\n                    },\r\n                    {\r\n                        \"X\": 0.6386826038360596,\r\n                        \"Y\": 0.568503201007843\r\n                    },\r\n                    {\r\n                        \"X\": 0.6386826038360596,\r\n                        \"Y\": 0.5797767043113708\r\n                    },\r\n                    {\r\n                        \"X\": 0.5843030214309692,\r\n                        \"Y\": 0.5797767043113708\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c166c533-70f6-4b0f-94b1-cce0050e3f76\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.90502166748047,\r\n            \"Text\": \"5550.00\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06431030482053757,\r\n                    \"Height\": 0.011335612274706364,\r\n                    \"Left\": 0.8380604982376099,\r\n                    \"Top\": 0.5684362649917603\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8380604982376099,\r\n                        \"Y\": 0.5684362649917603\r\n                    },\r\n                    {\r\n                        \"X\": 0.902370810508728,\r\n                        \"Y\": 0.5684362649917603\r\n                    },\r\n                    {\r\n                        \"X\": 0.902370810508728,\r\n                        \"Y\": 0.579771876335144\r\n                    },\r\n                    {\r\n                        \"X\": 0.8380604982376099,\r\n                        \"Y\": 0.579771876335144\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9deec288-859c-432b-8def-e009586b23ae\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.72163391113281,\r\n            \"Text\": \"Store\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.04210757091641426,\r\n                    \"Height\": 0.011189819313585758,\r\n                    \"Left\": 0.2321551889181137,\r\n                    \"Top\": 0.5871542096138\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2321551889181137,\r\n                        \"Y\": 0.5871542096138\r\n                    },\r\n                    {\r\n                        \"X\": 0.27426275610923767,\r\n                        \"Y\": 0.5871542096138\r\n                    },\r\n                    {\r\n                        \"X\": 0.27426275610923767,\r\n                        \"Y\": 0.5983440279960632\r\n                    },\r\n                    {\r\n                        \"X\": 0.2321551889181137,\r\n                        \"Y\": 0.5983440279960632\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b23886b3-35fd-4523-9f26-3bb0ddcc7b61\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 99.55045318603516,\r\n            \"Text\": \"ID\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.016379855573177338,\r\n                    \"Height\": 0.010951537638902664,\r\n                    \"Left\": 0.23262546956539154,\r\n                    \"Top\": 0.6055858731269836\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.23262546956539154,\r\n                        \"Y\": 0.6055858731269836\r\n                    },\r\n                    {\r\n                        \"X\": 0.24900531768798828,\r\n                        \"Y\": 0.6055858731269836\r\n                    },\r\n                    {\r\n                        \"X\": 0.24900531768798828,\r\n                        \"Y\": 0.6165374517440796\r\n                    },\r\n                    {\r\n                        \"X\": 0.23262546956539154,\r\n                        \"Y\": 0.6165374517440796\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c31ca497-8221-4b35-8d6d-669105237436\"\r\n        },\r\n        {\r\n            \"BlockType\": \"WORD\",\r\n            \"Confidence\": 98.95957946777344,\r\n            \"Text\": \"0012345\",\r\n            \"TextType\": \"PRINTED\",\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.06946495920419693,\r\n                    \"Height\": 0.011167683638632298,\r\n                    \"Left\": 0.2526068091392517,\r\n                    \"Top\": 0.6054624319076538\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2526068091392517,\r\n                        \"Y\": 0.6054624319076538\r\n                    },\r\n                    {\r\n                        \"X\": 0.32207179069519043,\r\n                        \"Y\": 0.6054624319076538\r\n                    },\r\n                    {\r\n                        \"X\": 0.32207179069519043,\r\n                        \"Y\": 0.6166300773620605\r\n                    },\r\n                    {\r\n                        \"X\": 0.2526068091392517,\r\n                        \"Y\": 0.6166300773620605\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c78c590a-8595-4eca-85e1-f68ae9a8576f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"TABLE\",\r\n            \"Confidence\": 99.51140594482422,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.3189425468444824,\r\n                    \"Height\": 0.17109628021717072,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.18391211330890656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.18391211330890656\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.18391211330890656\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.35500839352607727\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.35500839352607727\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6b90904d-f111-4d89-993d-ab45fdc6b0fb\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"210fdfb6-4f15-4919-87e6-a9f78580643f\",\r\n                        \"49941bfd-e1cb-4be6-8071-d18d83fc00b0\",\r\n                        \"90bdc845-4d7a-422d-84d9-73be10a7ec2c\",\r\n                        \"6f831b14-61b8-453a-80e1-114f9e5fbe54\",\r\n                        \"1b9bcd40-ed6c-485a-82e0-30b9c41e0ecf\",\r\n                        \"3169299d-05b5-488d-8294-3113deeed9db\",\r\n                        \"83d83bc1-7a12-4f14-ba3c-55051b68b90f\",\r\n                        \"ce495205-47b6-48a3-b209-2a78cf33f72b\",\r\n                        \"f0910f57-6368-40e8-910f-53c293b31aa4\",\r\n                        \"db48c5e8-4fee-4507-bff9-68ecd26c6ccd\",\r\n                        \"f3c47aa3-7f39-4adb-98cc-bd9c83b66aa8\",\r\n                        \"7c820e58-817b-44a3-a381-934112f93116\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 74.88398742675781,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1610332876443863,\r\n                    \"Height\": 0.03575455769896507,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.18391211330890656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.18391211330890656\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.18391211330890656\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.21966665983200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.21966665983200073\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"210fdfb6-4f15-4919-87e6-a9f78580643f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"abdd0570-ccf6-49b0-9788-89708dfc7e5c\",\r\n                        \"57aab1ba-c38d-4146-906e-2023b5b22587\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 71.5184555053711,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15790927410125732,\r\n                    \"Height\": 0.03575455769896507,\r\n                    \"Left\": 0.786022424697876,\r\n                    \"Top\": 0.18391211330890656\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.18391211330890656\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.18391211330890656\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.21966665983200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.21966665983200073\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"49941bfd-e1cb-4be6-8071-d18d83fc00b0\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c29d1b55-f696-45e2-a38c-25c5b0e3cc35\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 73.5326919555664,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1610332876443863,\r\n                    \"Height\": 0.026333333924412727,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.21966665983200073\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.21966665983200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.21966665983200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.2460000067949295\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.2460000067949295\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"90bdc845-4d7a-422d-84d9-73be10a7ec2c\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"e64178af-08d3-40de-b76a-71b06c4d9f6f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 70.22789001464844,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15790927410125732,\r\n                    \"Height\": 0.026333333924412727,\r\n                    \"Left\": 0.786022424697876,\r\n                    \"Top\": 0.21966665983200073\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.21966665983200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.21966665983200073\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.2460000067949295\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.2460000067949295\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6f831b14-61b8-453a-80e1-114f9e5fbe54\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"40d710ef-1c4e-49ce-a3ec-6922f5eee101\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 74.54145812988281,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1610332876443863,\r\n                    \"Height\": 0.0273333340883255,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.2460000067949295\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.2460000067949295\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.2460000067949295\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.273333340883255\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.273333340883255\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1b9bcd40-ed6c-485a-82e0-30b9c41e0ecf\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"925b1955-0f0e-456f-bc3f-4c267331dde8\",\r\n                        \"d178d726-b902-4b9c-84f7-54532eb566a5\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 71.19132995605469,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15790927410125732,\r\n                    \"Height\": 0.0273333340883255,\r\n                    \"Left\": 0.786022424697876,\r\n                    \"Top\": 0.2460000067949295\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.2460000067949295\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.2460000067949295\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.273333340883255\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.273333340883255\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"3169299d-05b5-488d-8294-3113deeed9db\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"91b957a1-85b1-4a86-a9b2-367c7d234432\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 74.18563079833984,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1610332876443863,\r\n                    \"Height\": 0.029666665941476822,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.273333340883255\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.273333340883255\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.273333340883255\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.30300000309944153\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.30300000309944153\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"83d83bc1-7a12-4f14-ba3c-55051b68b90f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"03b27191-ed78-49ed-bf1b-b5a403d663bc\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 70.85148620605469,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15790927410125732,\r\n                    \"Height\": 0.029666665941476822,\r\n                    \"Left\": 0.786022424697876,\r\n                    \"Top\": 0.273333340883255\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.273333340883255\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.273333340883255\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.30300000309944153\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.30300000309944153\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ce495205-47b6-48a3-b209-2a78cf33f72b\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"25d8e54b-b692-4953-b6f1-cb7f63a303fd\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 74.43779754638672,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1610332876443863,\r\n                    \"Height\": 0.03233333304524422,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.30300000309944153\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.30300000309944153\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.30300000309944153\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.33533334732055664\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.33533334732055664\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f0910f57-6368-40e8-910f-53c293b31aa4\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"55b888aa-06bb-4541-9109-5abbd046f0cf\",\r\n                        \"2ecff8d3-70f1-40d5-8335-00ac494d5c8d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 71.09232330322266,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15790927410125732,\r\n                    \"Height\": 0.03233333304524422,\r\n                    \"Left\": 0.786022424697876,\r\n                    \"Top\": 0.30300000309944153\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.30300000309944153\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.30300000309944153\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.33533334732055664\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.33533334732055664\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"db48c5e8-4fee-4507-bff9-68ecd26c6ccd\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b83a8b13-aecd-4639-b062-e380e61463d6\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 73.75951385498047,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.1610332876443863,\r\n                    \"Height\": 0.01967504806816578,\r\n                    \"Left\": 0.6249891519546509,\r\n                    \"Top\": 0.33533334732055664\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.33533334732055664\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.33533334732055664\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.35500839352607727\r\n                    },\r\n                    {\r\n                        \"X\": 0.6249891519546509,\r\n                        \"Y\": 0.35500839352607727\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f3c47aa3-7f39-4adb-98cc-bd9c83b66aa8\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"a2bb500d-1acc-436d-90cc-615b12d1e1e9\",\r\n                        \"085a75cc-c74d-427b-ab0d-ee456afd22b9\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 70.44452667236328,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.15790927410125732,\r\n                    \"Height\": 0.01967504806816578,\r\n                    \"Left\": 0.786022424697876,\r\n                    \"Top\": 0.33533334732055664\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.33533334732055664\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.33533334732055664\r\n                    },\r\n                    {\r\n                        \"X\": 0.9439316987991333,\r\n                        \"Y\": 0.35500839352607727\r\n                    },\r\n                    {\r\n                        \"X\": 0.786022424697876,\r\n                        \"Y\": 0.35500839352607727\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7c820e58-817b-44a3-a381-934112f93116\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"69dd21ad-383e-44e1-b924-d92c76ffd4ee\",\r\n                        \"f4a9d778-4524-4b99-8a33-8ab7f42a5db0\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"TABLE\",\r\n            \"Confidence\": 98.64501953125,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.799103319644928,\r\n                    \"Height\": 0.26115283370018005,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.695871889591217\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.695871889591217\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9ea44e79-fd9a-496e-b775-af36f3aee77e\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"b01bdd2d-bddf-4c4e-9a0a-433aa0332a13\",\r\n                        \"42ceb92e-bb6d-4167-a355-7b43fcf44c3a\",\r\n                        \"2884db6e-193f-4928-875b-5bc8875cfd5e\",\r\n                        \"77b7a701-33dc-40d1-a655-8a7ab9e47ffc\",\r\n                        \"cf7dcbef-88fd-45f0-8073-6c80c1e1ef06\",\r\n                        \"1aaa915c-7729-4ef5-be72-54f80d8622ba\",\r\n                        \"dd91f968-dafa-46cb-82fa-f4c05f98306f\",\r\n                        \"dc3cb584-6e8c-4064-9125-9fc2cd75d841\",\r\n                        \"501177b4-82b6-4730-95c1-22345db2c237\",\r\n                        \"20c11748-4648-4a0a-b9f9-bdf46c42bc6b\",\r\n                        \"ae341ba2-d2e0-41cd-8387-655a8541ac7e\",\r\n                        \"8c8cb5da-2b13-4d6d-b1b1-7d0997a2fe0a\",\r\n                        \"e65b40a5-0c3c-4fcc-9bc1-8b23cbd4355c\",\r\n                        \"a0c3d30f-1ed6-4664-b2fc-9ef99c70e5bf\",\r\n                        \"e61bbad0-a05c-4a0e-a90f-276e6aebd649\",\r\n                        \"9370f11d-1a21-4510-be36-9fd06e42a8f1\",\r\n                        \"ff0e4670-4954-433d-be81-567c1ee4f8c1\",\r\n                        \"318051db-0825-448b-a6c5-2afa5a578536\",\r\n                        \"ee0e1017-3174-4ff5-a98f-c4fec6a63b68\",\r\n                        \"f97ee950-1974-4439-b93f-aed3e774f62f\",\r\n                        \"39f5d7df-f9f6-4434-a00f-19a98e7e8fac\",\r\n                        \"239e07a8-815c-4fd5-8a6d-435dd983ca31\",\r\n                        \"19a725ba-ead9-4551-b78a-3acf262757e8\",\r\n                        \"c4616704-0e6e-4278-90ef-856b3378aafe\",\r\n                        \"f39fffe0-1f37-4508-b58b-990fbfa954e2\",\r\n                        \"a16d6e34-70aa-4fb8-8906-22f0f98eee35\",\r\n                        \"0274e9b2-4aae-447b-8ccb-d926b93a8085\",\r\n                        \"b18a5a96-0932-44c6-b173-2e1589465a75\",\r\n                        \"efef89c6-6dee-4c8e-b330-f040103946d4\",\r\n                        \"e68caa0a-ac35-4091-a37f-d78dbdc90f8c\",\r\n                        \"1cda84a8-d0e3-4f0b-a581-045384b3d9d9\",\r\n                        \"6ea4ec6f-c943-468f-a017-627554ed1a78\",\r\n                        \"abb74f52-4d94-4ee8-8d82-f77c4dcd9154\",\r\n                        \"7f34946d-bbef-4df6-8246-325ef9d0f53b\",\r\n                        \"90a0a6ce-3de1-4b63-ba94-dfb8acd6fd24\",\r\n                        \"73ea854b-c7fc-4961-8b64-fd075c7293e6\",\r\n                        \"e960bf21-d051-48b4-8593-e69691d27490\",\r\n                        \"f59583b6-c7c4-437e-837b-6ffc58242562\",\r\n                        \"95062574-a96d-42c9-bf54-cbd4779cb1e4\",\r\n                        \"44b6c280-02ba-449d-b592-c959bfca21fb\",\r\n                        \"ec8ce6a5-df4d-4909-b562-7dd03d748fb7\",\r\n                        \"001e8927-2ec6-4691-b9e9-6353a6a26a2f\",\r\n                        \"438d1515-14a4-41a1-87ee-50e9321566e8\",\r\n                        \"8377161b-53d4-48c8-99aa-47c9f57c2d27\",\r\n                        \"308088ff-bfdb-4232-880a-f1d330573ef5\",\r\n                        \"6b8329e4-2c78-4405-95ca-318f1c739c49\",\r\n                        \"6a272e59-0403-480c-8a15-ad8c5587d23c\",\r\n                        \"5d97d527-8760-4241-875b-1d27c3b47840\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"Type\": \"MERGED_CELL\",\r\n                    \"Ids\": [\r\n                        \"137e83ac-b8e2-4714-bb4a-bab3297f1e10\",\r\n                        \"1b7ceea2-2893-4f5e-8547-5cb4760029de\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 67.0592269897461,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.035947591066360474,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.47066667675971985\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b01bdd2d-bddf-4c4e-9a0a-433aa0332a13\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"6e2cab21-0bbb-4613-9eb4-71e77105492a\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 69.1554946899414,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.035947591066360474,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.47066667675971985\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"42ceb92e-bb6d-4167-a355-7b43fcf44c3a\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"dc5f2b70-f9c1-4d22-8e1c-bd35b8de66a7\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 68.51300811767578,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.035947591066360474,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.47066667675971985\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"2884db6e-193f-4928-875b-5bc8875cfd5e\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"5ab9ed9f-7619-4ea5-83f9-ddd46c468517\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 67.45304870605469,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.035947591066360474,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.47066667675971985\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"77b7a701-33dc-40d1-a655-8a7ab9e47ffc\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"2124d11d-a3a6-47d2-ad58-c414ac48d319\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 68.10009765625,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.035947591066360474,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.47066667675971985\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"cf7dcbef-88fd-45f0-8073-6c80c1e1ef06\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"cbf6bd1d-b2e6-4a2a-97a3-4278e3a3235d\",\r\n                        \"dfe4fd1a-1d3e-4342-9a9b-52245f99e08f\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 65.34925079345703,\r\n            \"RowIndex\": 1,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.035947591066360474,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.4347190856933594\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.4347190856933594\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.47066667675971985\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1aaa915c-7729-4ef5-be72-54f80d8622ba\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"7c0bce41-1d2b-4291-9e12-d44d0b5dbf77\"\r\n                    ]\r\n                }\r\n            ],\r\n            \"EntityTypes\": [\r\n                \"COLUMN_HEADER\"\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 80.8223876953125,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10785159468650818,\r\n                    \"Height\": 0.03799999877810478,\r\n                    \"Left\": 0.11389128863811493,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11389128863811493,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.11389128863811493,\r\n                        \"Y\": 0.5086666941642761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"dd91f968-dafa-46cb-82fa-f4c05f98306f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"94450172-40cf-4e5f-af77-7c9241b25349\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.90836334228516,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.03799999877810478,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5086666941642761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"dc3cb584-6e8c-4064-9125-9fc2cd75d841\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"87f50c34-9734-4ca5-969b-f6e46b4d74aa\",\r\n                        \"04e63b36-18c8-43fe-b88c-d7d72075bc4d\",\r\n                        \"f2cad687-a2bf-44ff-99bb-156422ea97f5\",\r\n                        \"5f5b09e7-ba2b-4f3f-9aa0-5489bb8fce92\",\r\n                        \"24b1d5d8-cfb5-42c1-ba21-c3cb5ae65ec5\",\r\n                        \"ee1c6586-4582-44e3-9a95-b4083e2ea47f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.07306671142578,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.03799999877810478,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5086666941642761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"501177b4-82b6-4730-95c1-22345db2c237\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"1cda1ad8-d9df-4c41-a6a3-27eebd8eacf0\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 87.69503021240234,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.03799999877810478,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5086666941642761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"20c11748-4648-4a0a-b9f9-bdf46c42bc6b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 88.53624725341797,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.03799999877810478,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5086666941642761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ae341ba2-d2e0-41cd-8387-655a8541ac7e\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"337f42d1-1cd5-474c-be19-a4f1cf76990c\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 84.95989227294922,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.03799999877810478,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5086666941642761\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8c8cb5da-2b13-4d6d-b1b1-7d0997a2fe0a\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"04e75936-d53b-468a-b70b-f235b9d53de3\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 80.8223876953125,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10785159468650818,\r\n                    \"Height\": 0.05533333495259285,\r\n                    \"Left\": 0.11389128863811493,\r\n                    \"Top\": 0.5086666941642761\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11389128863811493,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.11389128863811493,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e65b40a5-0c3c-4fcc-9bc1-8b23cbd4355c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 91.62944793701172,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.05533333495259285,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.5086666941642761\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a0c3d30f-1ed6-4664-b2fc-9ef99c70e5bf\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d9c043b6-d870-4fcd-ab94-833d216f09fc\",\r\n                        \"338f7672-4484-4619-86a7-f9efb0762e0e\",\r\n                        \"65bba2cf-b95b-4ff3-b5ba-496c30a9864e\",\r\n                        \"0e6193c3-aa40-4391-92c9-5617a4496c0e\",\r\n                        \"eeadfd10-ed71-4f47-a25f-439be31b2181\",\r\n                        \"2b739b0a-4b25-429a-8c9e-8342f73cc378\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.77816009521484,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.05533333495259285,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.5086666941642761\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e61bbad0-a05c-4a0e-a90f-276e6aebd649\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"d7e96b53-3fb5-4aa4-ac03-3a876495f9ae\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.37374114990234,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.05533333495259285,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.5086666941642761\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"9370f11d-1a21-4510-be36-9fd06e42a8f1\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"a521d515-e011-48eb-a12e-827fde28c939\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 90.23107147216797,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.05533333495259285,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.5086666941642761\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ff0e4670-4954-433d-be81-567c1ee4f8c1\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 86.58625793457031,\r\n            \"RowIndex\": 3,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.05533333495259285,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.5086666941642761\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.5086666941642761\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"318051db-0825-448b-a6c5-2afa5a578536\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"1f281028-2354-4e06-a8c8-e56879208a0a\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 86.70140838623047,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.056333333253860474,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.5640000104904175\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.6203333139419556\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ee0e1017-3174-4ff5-a98f-c4fec6a63b68\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"168f39a1-55da-4e43-808a-a44e14b02206\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 89.41169738769531,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.056333333253860474,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.5640000104904175\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6203333139419556\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f97ee950-1974-4439-b93f-aed3e774f62f\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"244d4455-6292-466d-bfdb-f5bd187604a2\",\r\n                        \"b733f208-f0c3-4eec-b150-a95837418e83\",\r\n                        \"b5f67574-8520-4c8d-bd37-2ea663fc8927\",\r\n                        \"b23886b3-35fd-4523-9f26-3bb0ddcc7b61\",\r\n                        \"c31ca497-8221-4b35-8d6d-669105237436\",\r\n                        \"c78c590a-8595-4eca-85e1-f68ae9a8576f\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 88.58101654052734,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.056333333253860474,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.5640000104904175\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6203333139419556\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"39f5d7df-f9f6-4434-a00f-19a98e7e8fac\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c2b6564b-4886-4314-9b41-86e327c72c6d\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 87.21058654785156,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.056333333253860474,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.5640000104904175\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6203333139419556\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"239e07a8-815c-4fd5-8a6d-435dd983ca31\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"c166c533-70f6-4b0f-94b1-cce0050e3f76\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 88.04716491699219,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.056333333253860474,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.5640000104904175\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6203333139419556\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"19a725ba-ead9-4551-b78a-3acf262757e8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 84.49057006835938,\r\n            \"RowIndex\": 4,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.056333333253860474,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.5640000104904175\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6203333139419556\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"c4616704-0e6e-4278-90ef-856b3378aafe\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"9deec288-859c-432b-8def-e009586b23ae\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 70.20358276367188,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.02033333294093609,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.6203333139419556\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.640666663646698\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f39fffe0-1f37-4508-b58b-990fbfa954e2\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 72.39814758300781,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.02033333294093609,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.6203333139419556\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.640666663646698\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"a16d6e34-70aa-4fb8-8906-22f0f98eee35\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 71.72553253173828,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.02033333294093609,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.6203333139419556\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.640666663646698\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"0274e9b2-4aae-447b-8ccb-d926b93a8085\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 70.61588287353516,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.02033333294093609,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.6203333139419556\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.640666663646698\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"b18a5a96-0932-44c6-b173-2e1589465a75\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 71.29327392578125,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.02033333294093609,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.6203333139419556\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.640666663646698\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"efef89c6-6dee-4c8e-b330-f040103946d4\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 68.4134292602539,\r\n            \"RowIndex\": 5,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.02033333294093609,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.6203333139419556\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.6203333139419556\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.640666663646698\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e68caa0a-ac35-4091-a37f-d78dbdc90f8c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 80.87693786621094,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.640666663646698\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.659333348274231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1cda84a8-d0e3-4f0b-a581-045384b3d9d9\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 83.4051513671875,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.640666663646698\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.659333348274231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6ea4ec6f-c943-468f-a017-627554ed1a78\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 82.6302719116211,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.640666663646698\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.659333348274231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"abb74f52-4d94-4ee8-8d82-f77c4dcd9154\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 81.35191345214844,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.640666663646698\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.659333348274231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"7f34946d-bbef-4df6-8246-325ef9d0f53b\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 82.13228607177734,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.640666663646698\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.659333348274231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"90a0a6ce-3de1-4b63-ba94-dfb8acd6fd24\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 78.81461334228516,\r\n            \"RowIndex\": 6,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.018666666001081467,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.640666663646698\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.640666663646698\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.659333348274231\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"73ea854b-c7fc-4961-8b64-fd075c7293e6\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 75.82417297363281,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.659333348274231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.6786666512489319\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"e960bf21-d051-48b4-8593-e69691d27490\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 78.1944351196289,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.659333348274231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6786666512489319\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"f59583b6-c7c4-437e-837b-6ffc58242562\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 77.46796417236328,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.659333348274231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6786666512489319\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"95062574-a96d-42c9-bf54-cbd4779cb1e4\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 76.26947021484375,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.659333348274231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6786666512489319\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"44b6c280-02ba-449d-b592-c959bfca21fb\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 77.0010986328125,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.659333348274231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6786666512489319\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"ec8ce6a5-df4d-4909-b562-7dd03d748fb7\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 73.89069366455078,\r\n            \"RowIndex\": 7,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.019333332777023315,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.659333348274231\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.659333348274231\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6786666512489319\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"001e8927-2ec6-4691-b9e9-6353a6a26a2f\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 61.62882614135742,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.017205240204930305,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.695871889591217\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.695871889591217\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"438d1515-14a4-41a1-87ee-50e9321566e8\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 40.9112434387207,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.238999143242836,\r\n                    \"Height\": 0.01733333244919777,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6959999799728394\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6959999799728394\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"8377161b-53d4-48c8-99aa-47c9f57c2d27\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 40.9112434387207,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 3,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10914581269025803,\r\n                    \"Height\": 0.01733333244919777,\r\n                    \"Left\": 0.4607420265674591,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6959999799728394\r\n                    },\r\n                    {\r\n                        \"X\": 0.4607420265674591,\r\n                        \"Y\": 0.6959999799728394\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"308088ff-bfdb-4232-880a-f1d330573ef5\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 40.9112434387207,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 4,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.09361518919467926,\r\n                    \"Height\": 0.01733333244919777,\r\n                    \"Left\": 0.5698878169059753,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6959999799728394\r\n                    },\r\n                    {\r\n                        \"X\": 0.5698878169059753,\r\n                        \"Y\": 0.6959999799728394\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6b8329e4-2c78-4405-95ca-318f1c739c49\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 40.9112434387207,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 5,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.14581535756587982,\r\n                    \"Height\": 0.01733333244919777,\r\n                    \"Left\": 0.6635029911994934,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6959999799728394\r\n                    },\r\n                    {\r\n                        \"X\": 0.6635029911994934,\r\n                        \"Y\": 0.6959999799728394\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"6a272e59-0403-480c-8a15-ad8c5587d23c\"\r\n        },\r\n        {\r\n            \"BlockType\": \"CELL\",\r\n            \"Confidence\": 60.05731964111328,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 6,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10377240180969238,\r\n                    \"Height\": 0.017205240204930305,\r\n                    \"Left\": 0.8093183636665344,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.9130907654762268,\r\n                        \"Y\": 0.695871889591217\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.695871889591217\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"5d97d527-8760-4241-875b-1d27c3b47840\"\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 80.8223876953125,\r\n            \"RowIndex\": 2,\r\n            \"ColumnIndex\": 1,\r\n            \"RowSpan\": 2,\r\n            \"ColumnSpan\": 1,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.10775540769100189,\r\n                    \"Height\": 0.09333333373069763,\r\n                    \"Left\": 0.11398747563362122,\r\n                    \"Top\": 0.47066667675971985\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.47066667675971985\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.5640000104904175\r\n                    },\r\n                    {\r\n                        \"X\": 0.11398747563362122,\r\n                        \"Y\": 0.5640000104904175\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"137e83ac-b8e2-4714-bb4a-bab3297f1e10\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"dd91f968-dafa-46cb-82fa-f4c05f98306f\",\r\n                        \"e65b40a5-0c3c-4fcc-9bc1-8b23cbd4355c\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"BlockType\": \"MERGED_CELL\",\r\n            \"Confidence\": 40.9112434387207,\r\n            \"RowIndex\": 8,\r\n            \"ColumnIndex\": 2,\r\n            \"RowSpan\": 1,\r\n            \"ColumnSpan\": 4,\r\n            \"Geometry\": {\r\n                \"BoundingBox\": {\r\n                    \"Width\": 0.5875754952430725,\r\n                    \"Height\": 0.017205240204930305,\r\n                    \"Left\": 0.2217428833246231,\r\n                    \"Top\": 0.6786666512489319\r\n                },\r\n                \"Polygon\": [\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.6786666512489319\r\n                    },\r\n                    {\r\n                        \"X\": 0.8093183636665344,\r\n                        \"Y\": 0.695871889591217\r\n                    },\r\n                    {\r\n                        \"X\": 0.2217428833246231,\r\n                        \"Y\": 0.695871889591217\r\n                    }\r\n                ]\r\n            },\r\n            \"Id\": \"1b7ceea2-2893-4f5e-8547-5cb4760029de\",\r\n            \"Relationships\": [\r\n                {\r\n                    \"Type\": \"CHILD\",\r\n                    \"Ids\": [\r\n                        \"8377161b-53d4-48c8-99aa-47c9f57c2d27\",\r\n                        \"308088ff-bfdb-4232-880a-f1d330573ef5\",\r\n                        \"6b8329e4-2c78-4405-95ca-318f1c739c49\",\r\n                        \"6a272e59-0403-480c-8a15-ad8c5587d23c\"\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\r\n    \"ResponseMetadata\": {\r\n        \"RequestId\": \"70d2f0b0-7c7a-41ee-b821-4b99ff78a646\",\r\n        \"HTTPStatusCode\": 200,\r\n        \"HTTPHeaders\": {\r\n            \"x-amzn-requestid\": \"70d2f0b0-7c7a-41ee-b821-4b99ff78a646\",\r\n            \"content-type\": \"application/x-amz-json-1.1\",\r\n            \"content-length\": \"118515\",\r\n            \"date\": \"Tue, 15 Mar 2022 20:06:56 GMT\"\r\n        },\r\n        \"RetryAttempts\": 0\r\n    }\r\n}"
  },
  {
    "path": "src-python/tests/data/test-trp2-analyzeid_sample_multi_page.json",
    "content": "{\"IdentityDocuments\": [{\"DocumentIndex\": 1, \"IdentityDocumentFields\": [{\"Type\": {\"Text\": \"FIRST_NAME\"}, \"ValueDetection\": {\"Text\": \"JORGE\", \"Confidence\": 98.78211975097656}}, {\"Type\": {\"Text\": \"LAST_NAME\"}, \"ValueDetection\": {\"Text\": \"SOUZA\", \"Confidence\": 98.82009887695312}}, {\"Type\": {\"Text\": \"MIDDLE_NAME\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.39620208740234}}, {\"Type\": {\"Text\": \"SUFFIX\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.65946960449219}}, {\"Type\": {\"Text\": \"CITY_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"ANYTOWN\", \"Confidence\": 98.8210220336914}}, {\"Type\": {\"Text\": \"ZIP_CODE_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"02127\", \"Confidence\": 99.0246353149414}}, {\"Type\": {\"Text\": \"STATE_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"MA\", \"Confidence\": 99.53130340576172}}, {\"Type\": {\"Text\": \"STATE_NAME\"}, \"ValueDetection\": {\"Text\": \"MASSACHUSETTS\", \"Confidence\": 98.22105407714844}}, {\"Type\": {\"Text\": \"DOCUMENT_NUMBER\"}, \"ValueDetection\": {\"Text\": \"820BAC729CBAC\", \"Confidence\": 96.05117797851562}}, {\"Type\": {\"Text\": \"EXPIRATION_DATE\"}, \"ValueDetection\": {\"Text\": \"01/20/2020\", \"NormalizedValue\": {\"Value\": \"2020-01-20T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 98.38336944580078}}, {\"Type\": {\"Text\": \"DATE_OF_BIRTH\"}, \"ValueDetection\": {\"Text\": \"03/18/1978\", \"NormalizedValue\": {\"Value\": \"1978-03-18T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 98.17178344726562}}, {\"Type\": {\"Text\": \"DATE_OF_ISSUE\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 89.29450988769531}}, {\"Type\": {\"Text\": \"ID_TYPE\"}, \"ValueDetection\": {\"Text\": \"DRIVER LICENSE FRONT\", \"Confidence\": 98.81443786621094}}, {\"Type\": {\"Text\": \"ENDORSEMENTS\"}, \"ValueDetection\": {\"Text\": \"NONE\", \"Confidence\": 99.27168273925781}}, {\"Type\": {\"Text\": \"VETERAN\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.62979125976562}}, {\"Type\": {\"Text\": \"RESTRICTIONS\"}, \"ValueDetection\": {\"Text\": \"NONE\", \"Confidence\": 99.41033935546875}}, {\"Type\": {\"Text\": \"CLASS\"}, \"ValueDetection\": {\"Text\": \"D\", \"Confidence\": 99.05763244628906}}, {\"Type\": {\"Text\": \"ADDRESS\"}, \"ValueDetection\": {\"Text\": \"100 MAIN STREET\", \"Confidence\": 99.24053192138672}}, {\"Type\": {\"Text\": \"COUNTY\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.59503173828125}}, {\"Type\": {\"Text\": \"PLACE_OF_BIRTH\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.64707946777344}}]}, {\"DocumentIndex\": 2, \"IdentityDocumentFields\": [{\"Type\": {\"Text\": \"FIRST_NAME\"}, \"ValueDetection\": {\"Text\": \"JORGE\", \"Confidence\": 98.78211975097656}}, {\"Type\": {\"Text\": \"LAST_NAME\"}, \"ValueDetection\": {\"Text\": \"SOUZA\", \"Confidence\": 98.82009887695312}}, {\"Type\": {\"Text\": \"MIDDLE_NAME\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.39620208740234}}, {\"Type\": {\"Text\": \"SUFFIX\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.65946960449219}}, {\"Type\": {\"Text\": \"CITY_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"ANYTOWN\", \"Confidence\": 98.8210220336914}}, {\"Type\": {\"Text\": \"ZIP_CODE_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"02127\", \"Confidence\": 99.0246353149414}}, {\"Type\": {\"Text\": \"STATE_IN_ADDRESS\"}, \"ValueDetection\": {\"Text\": \"MA\", \"Confidence\": 99.53130340576172}}, {\"Type\": {\"Text\": \"STATE_NAME\"}, \"ValueDetection\": {\"Text\": \"MASSACHUSETTS\", \"Confidence\": 98.22105407714844}}, {\"Type\": {\"Text\": \"DOCUMENT_NUMBER\"}, \"ValueDetection\": {\"Text\": \"820BAC729CBAC\", \"Confidence\": 96.05117797851562}}, {\"Type\": {\"Text\": \"EXPIRATION_DATE\"}, \"ValueDetection\": {\"Text\": \"01/20/2020\", \"NormalizedValue\": {\"Value\": \"2020-01-20T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 98.38336944580078}}, {\"Type\": {\"Text\": \"DATE_OF_BIRTH\"}, \"ValueDetection\": {\"Text\": \"03/18/1978\", \"NormalizedValue\": {\"Value\": \"1978-03-18T00:00:00\", \"ValueType\": \"Date\"}, \"Confidence\": 98.17178344726562}}, {\"Type\": {\"Text\": \"DATE_OF_ISSUE\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 89.29450988769531}}, {\"Type\": {\"Text\": \"ID_TYPE\"}, \"ValueDetection\": {\"Text\": \"DRIVER LICENSE FRONT\", \"Confidence\": 98.81443786621094}}, {\"Type\": {\"Text\": \"ENDORSEMENTS\"}, \"ValueDetection\": {\"Text\": \"NONE\", \"Confidence\": 99.27168273925781}}, {\"Type\": {\"Text\": \"VETERAN\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.62979125976562}}, {\"Type\": {\"Text\": \"RESTRICTIONS\"}, \"ValueDetection\": {\"Text\": \"NONE\", \"Confidence\": 99.41033935546875}}, {\"Type\": {\"Text\": \"CLASS\"}, \"ValueDetection\": {\"Text\": \"D\", \"Confidence\": 99.05763244628906}}, {\"Type\": {\"Text\": \"ADDRESS\"}, \"ValueDetection\": {\"Text\": \"100 MAIN STREET\", \"Confidence\": 99.24053192138672}}, {\"Type\": {\"Text\": \"COUNTY\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.59503173828125}}, {\"Type\": {\"Text\": \"PLACE_OF_BIRTH\"}, \"ValueDetection\": {\"Text\": \"\", \"Confidence\": 99.64707946777344}}]}], \"DocumentMetadata\": {\"Pages\": 2}, \"AnalyzeIDModelVersion\": \"1.0\", \"ResponseMetadata\": {\"RequestId\": \"0615711c-b5d4-4248-adc2-92c8a7b33c82\", \"HTTPStatusCode\": 200, \"HTTPHeaders\": {\"x-amzn-requestid\": \"0615711c-b5d4-4248-adc2-92c8a7b33c82\", \"content-type\": \"application/x-amz-json-1.1\", \"content-length\": \"4362\", \"date\": \"Tue, 30 Nov 2021 18:58:53 GMT\"}, \"RetryAttempts\": 0}}\n"
  },
  {
    "path": "src-python/tests/data/test-trp2_analyzeid_sample1.json",
    "content": "{\n    \"IdentityDocuments\": [\n        {\n            \"DocumentIndex\": 1,\n            \"IdentityDocumentFields\": [\n                {\n                    \"Type\": {\n                        \"Text\": \"FIRST_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 71.52985382080078\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"LAST_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"BAKER\",\n                        \"Confidence\": 98.5782241821289\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"MIDDLE_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"DOE\",\n                        \"Confidence\": 75.19215393066406\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"SUFFIX\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.6145248413086\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"CITY_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.6345443725586\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ZIP_CODE_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.70516967773438\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"STATE_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.57034301757812\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"STATE_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 64.784423828125\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DOCUMENT_NUMBER\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"5550100\",\n                        \"Confidence\": 96.9133071899414\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"EXPIRATION_DATE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.6310806274414\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DATE_OF_BIRTH\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 46.86362075805664\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DATE_OF_ISSUE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"8/10/2013\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2013-08-10T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 60.09776306152344\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"COUNTRY\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"USA\",\n                        \"Confidence\": 99.08971405029297\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ID_TYPE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"UNKNOWN\",\n                        \"Confidence\": 95.90719604492188\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ENDORSEMENTS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.68761444091797\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"VETERAN\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.62588500976562\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"RESTRICTIONS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.5017318725586\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"CLASS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.83049774169922\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.5990219116211\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"COUNTY\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.63861846923828\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"PLACE_OF_BIRTH\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.53759002685547\n                    }\n                }\n            ]\n        }\n    ],\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"AnalyzeIDModelVersion\": \"1.0\"\n}\n"
  },
  {
    "path": "src-python/tests/data/test-trp2_analyzeid_sample1_with_OCR.json",
    "content": "{\n    \"IdentityDocuments\": [\n        {\n            \"DocumentIndex\": 1,\n            \"IdentityDocumentFields\": [\n                {\n                    \"Type\": {\n                        \"Text\": \"FIRST_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"GARCIA\",\n                        \"Confidence\": 98.47323608398438\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"LAST_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MARIA\",\n                        \"Confidence\": 98.22654724121094\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"MIDDLE_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.1817626953125\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"SUFFIX\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.16404724121094\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"CITY_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"BIGTOWN\",\n                        \"Confidence\": 97.4006118774414\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ZIP_CODE_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"02801\",\n                        \"Confidence\": 97.71717071533203\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"STATE_IN_ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MA\",\n                        \"Confidence\": 98.80731201171875\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"STATE_NAME\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MASSACHUSETTS\",\n                        \"Confidence\": 97.09032440185547\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DOCUMENT_NUMBER\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"736HDV7874JSB\",\n                        \"Confidence\": 94.41997528076172\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"EXPIRATION_DATE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/20/2028\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2028-01-20T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 97.50721740722656\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DATE_OF_BIRTH\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"03/18/2001\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2001-03-18T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 94.80001831054688\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DATE_OF_ISSUE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"03/18/2018\",\n                        \"NormalizedValue\": {\n                            \"Value\": \"2018-03-18T00:00:00\",\n                            \"ValueType\": \"Date\"\n                        },\n                        \"Confidence\": 97.80789947509766\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ID_TYPE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"DRIVER LICENSE FRONT\",\n                        \"Confidence\": 96.97434997558594\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ENDORSEMENTS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"NONE\",\n                        \"Confidence\": 98.4757080078125\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"VETERAN\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.17682647705078\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"RESTRICTIONS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"NONE\",\n                        \"Confidence\": 98.46845245361328\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"CLASS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"D\",\n                        \"Confidence\": 97.86604309082031\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ADDRESS\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"100 MARKET STREET\",\n                        \"Confidence\": 97.255126953125\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"COUNTY\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.17928314208984\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"PLACE_OF_BIRTH\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 99.17082214355469\n                    }\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"MRZ_CODE\"\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Confidence\": 97.52295684814453\n                    }\n                }\n            ],\n            \"Blocks\": [\n                {\n                    \"BlockType\": \"PAGE\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.9835377335548401,\n                            \"Height\": 0.5406931638717651,\n                            \"Left\": 0.004351515788584948,\n                            \"Top\": 0.20776772499084473\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.004351515788584948,\n                                \"Y\": 0.20793171226978302\n                            },\n                            {\n                                \"X\": 0.9855477809906006,\n                                \"Y\": 0.20776772499084473\n                            },\n                            {\n                                \"X\": 0.9878892302513123,\n                                \"Y\": 0.7484608888626099\n                            },\n                            {\n                                \"X\": 0.004922621417790651,\n                                \"Y\": 0.7470884919166565\n                            }\n                        ]\n                    },\n                    \"Id\": \"ba11b98d-1ed1-4f29-bd73-ca663c21a452\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"0df055e2-ff39-4547-90cd-e74227b7fac1\",\n                                \"88932129-f06e-475e-89e4-85c19b54a506\",\n                                \"bb623af7-d004-4150-a948-5c693b798f4d\",\n                                \"f693434a-89bc-493b-b6e0-3fbcae9a9bb9\",\n                                \"920afdcb-a916-4ccc-a187-ee443dc60a57\",\n                                \"88486a7e-51ac-4ca0-aba6-e417cf0de9fc\",\n                                \"0083a716-9b23-497f-afd9-cfcc7b4ffffd\",\n                                \"30a69de0-dccd-4613-a94f-fec602e0996b\",\n                                \"d81055f1-2486-47cc-ad2c-6e914c6b0652\",\n                                \"e21983be-0569-4f0e-a85f-35c690343486\",\n                                \"3a902a2c-c3a0-479c-bd43-ff2dd5c2b472\",\n                                \"43bbc029-d4a1-420a-801e-6752abc709ca\",\n                                \"2c7ceb20-d72f-4f99-853b-de5e2531e998\",\n                                \"99503d25-451d-4273-ba28-62fe9f3d1aec\",\n                                \"b49d42a5-c0ad-4507-875e-73586f09bd50\",\n                                \"1417e54e-f646-40d8-8283-5f7363c72cd5\",\n                                \"0a6ec8d4-2fef-4907-a80e-51ab1c81e51f\",\n                                \"3883c19a-4d39-4d60-91cc-87260da12812\",\n                                \"bf732d8c-42f7-4f26-b028-64eb099ec539\",\n                                \"3e369a01-3aa3-4fb5-9991-73bf39718901\",\n                                \"f417f140-7bcd-46a9-a09f-61af919bddba\",\n                                \"08be4b6f-a8cb-4f1f-b52b-d6cadd09f6a9\",\n                                \"d0fb66b9-c52c-47bc-bf37-505361dc1769\",\n                                \"664e66a0-e3ce-44a5-b5e7-1d6040a8cb7f\",\n                                \"1ef823d6-e248-424d-b981-a6b636885475\",\n                                \"533b350b-2c12-485d-9d1b-39edb67d5bc4\",\n                                \"cc0abd52-18fa-4a46-82a9-be9f7b7e7a4e\",\n                                \"80bb10f2-ae59-4179-987d-65958c25468c\",\n                                \"5c008b91-6450-4dd7-9134-c8782d300204\",\n                                \"f0a30156-5bdf-479f-a304-5b80988dc8cf\",\n                                \"aff97ce3-1b29-4572-93c6-271d055df3b7\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.02442932128906,\n                    \"Text\": \"MASSACHUSETTS\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.44257503747940063,\n                            \"Height\": 0.03240398317575455,\n                            \"Left\": 0.052577994763851166,\n                            \"Top\": 0.28902143239974976\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.052577994763851166,\n                                \"Y\": 0.28902143239974976\n                            },\n                            {\n                                \"X\": 0.4950658082962036,\n                                \"Y\": 0.28905150294303894\n                            },\n                            {\n                                \"X\": 0.4951530396938324,\n                                \"Y\": 0.3214254081249237\n                            },\n                            {\n                                \"X\": 0.052617430686950684,\n                                \"Y\": 0.32135385274887085\n                            }\n                        ]\n                    },\n                    \"Id\": \"0df055e2-ff39-4547-90cd-e74227b7fac1\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"06e9fd68-50bc-4c05-bb44-289edf6e64f3\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.96223449707031,\n                    \"Text\": \"DRIVER\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.0704336166381836,\n                            \"Height\": 0.013271612115204334,\n                            \"Left\": 0.5155620574951172,\n                            \"Top\": 0.28993961215019226\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5155620574951172,\n                                \"Y\": 0.28993961215019226\n                            },\n                            {\n                                \"X\": 0.5859559178352356,\n                                \"Y\": 0.289944589138031\n                            },\n                            {\n                                \"X\": 0.5859956741333008,\n                                \"Y\": 0.3032112121582031\n                            },\n                            {\n                                \"X\": 0.5155986547470093,\n                                \"Y\": 0.3032035529613495\n                            }\n                        ]\n                    },\n                    \"Id\": \"88932129-f06e-475e-89e4-85c19b54a506\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"986e02c2-7b74-4d01-baa8-97650bb0f00f\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.9375991821289,\n                    \"Text\": \"LICENSE\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.07929489761590958,\n                            \"Height\": 0.013682662509381771,\n                            \"Left\": 0.5151095986366272,\n                            \"Top\": 0.30892062187194824\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5151095986366272,\n                                \"Y\": 0.30892062187194824\n                            },\n                            {\n                                \"X\": 0.5943630933761597,\n                                \"Y\": 0.30893054604530334\n                            },\n                            {\n                                \"X\": 0.5944044589996338,\n                                \"Y\": 0.3226032853126526\n                            },\n                            {\n                                \"X\": 0.51514732837677,\n                                \"Y\": 0.3225902020931244\n                            }\n                        ]\n                    },\n                    \"Id\": \"bb623af7-d004-4150-a948-5c693b798f4d\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"521b96eb-0445-4fe0-8760-06495d139818\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.90054321289062,\n                    \"Text\": \"4a ISS\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.048636309802532196,\n                            \"Height\": 0.01135099958628416,\n                            \"Left\": 0.4902030825614929,\n                            \"Top\": 0.37445539236068726\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4902030825614929,\n                                \"Y\": 0.37445539236068726\n                            },\n                            {\n                                \"X\": 0.538807213306427,\n                                \"Y\": 0.37447071075439453\n                            },\n                            {\n                                \"X\": 0.5388393998146057,\n                                \"Y\": 0.3858063817024231\n                            },\n                            {\n                                \"X\": 0.4902334213256836,\n                                \"Y\": 0.3857894837856293\n                            }\n                        ]\n                    },\n                    \"Id\": \"f693434a-89bc-493b-b6e0-3fbcae9a9bb9\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"e26e1a1b-fc6c-4262-9a30-0d348f6a4d82\",\n                                \"b2efc20c-2221-4ef1-9f0c-9bb1dea22375\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.96125793457031,\n                    \"Text\": \"4d NUMBER\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.09500232338905334,\n                            \"Height\": 0.011414537206292152,\n                            \"Left\": 0.6963563561439514,\n                            \"Top\": 0.3741258978843689\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6963563561439514,\n                                \"Y\": 0.3741258978843689\n                            },\n                            {\n                                \"X\": 0.79131680727005,\n                                \"Y\": 0.374155730009079\n                            },\n                            {\n                                \"X\": 0.7913587093353271,\n                                \"Y\": 0.3855404257774353\n                            },\n                            {\n                                \"X\": 0.696394681930542,\n                                \"Y\": 0.3855074644088745\n                            }\n                        ]\n                    },\n                    \"Id\": \"920afdcb-a916-4ccc-a187-ee443dc60a57\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"889699e8-9119-4db9-aa30-25909fc00fac\",\n                                \"c3863d46-c9cf-49e5-9940-4533fee34ced\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.95533752441406,\n                    \"Text\": \"03/18/2018\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.15271666646003723,\n                            \"Height\": 0.0203073900192976,\n                            \"Left\": 0.5137559175491333,\n                            \"Top\": 0.38729801774024963\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5137559175491333,\n                                \"Y\": 0.38729801774024963\n                            },\n                            {\n                                \"X\": 0.6664064526557922,\n                                \"Y\": 0.3873518109321594\n                            },\n                            {\n                                \"X\": 0.6664725542068481,\n                                \"Y\": 0.4076054096221924\n                            },\n                            {\n                                \"X\": 0.5138117074966431,\n                                \"Y\": 0.4075426459312439\n                            }\n                        ]\n                    },\n                    \"Id\": \"88486a7e-51ac-4ca0-aba6-e417cf0de9fc\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"6aa85c6f-0fb0-4660-b820-1b8496588043\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.51510620117188,\n                    \"Text\": \"736HDV7874JSB\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.2097538411617279,\n                            \"Height\": 0.0169050395488739,\n                            \"Left\": 0.7210226655006409,\n                            \"Top\": 0.3880530595779419\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7210226655006409,\n                                \"Y\": 0.3880530595779419\n                            },\n                            {\n                                \"X\": 0.9307067394256592,\n                                \"Y\": 0.3881273865699768\n                            },\n                            {\n                                \"X\": 0.9307764768600464,\n                                \"Y\": 0.4049580991268158\n                            },\n                            {\n                                \"X\": 0.7210806012153625,\n                                \"Y\": 0.4048735797405243\n                            }\n                        ]\n                    },\n                    \"Id\": \"0083a716-9b23-497f-afd9-cfcc7b4ffffd\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"d11c6f0c-b092-45ec-99d8-4da8ed1692b4\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.93489074707031,\n                    \"Text\": \"4b EXP\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.05519797280430794,\n                            \"Height\": 0.011544371955096722,\n                            \"Left\": 0.48958101868629456,\n                            \"Top\": 0.4180253744125366\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.48958101868629456,\n                                \"Y\": 0.4180253744125366\n                            },\n                            {\n                                \"X\": 0.5447460412979126,\n                                \"Y\": 0.41804972290992737\n                            },\n                            {\n                                \"X\": 0.5447790026664734,\n                                \"Y\": 0.4295697510242462\n                            },\n                            {\n                                \"X\": 0.48961183428764343,\n                                \"Y\": 0.42954355478286743\n                            }\n                        ]\n                    },\n                    \"Id\": \"30a69de0-dccd-4613-a94f-fec602e0996b\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"b4df7fbc-0398-46bf-83b4-8e91760a8e97\",\n                                \"7e28ecf2-1327-4b5f-832e-3fd7266205d9\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.87538146972656,\n                    \"Text\": \"3 DOB\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.05102109536528587,\n                            \"Height\": 0.011135168373584747,\n                            \"Left\": 0.7057409882545471,\n                            \"Top\": 0.41824448108673096\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7057409882545471,\n                                \"Y\": 0.41824448108673096\n                            },\n                            {\n                                \"X\": 0.7567225098609924,\n                                \"Y\": 0.41826701164245605\n                            },\n                            {\n                                \"X\": 0.7567620873451233,\n                                \"Y\": 0.4293796420097351\n                            },\n                            {\n                                \"X\": 0.7057787179946899,\n                                \"Y\": 0.4293554723262787\n                            }\n                        ]\n                    },\n                    \"Id\": \"d81055f1-2486-47cc-ad2c-6e914c6b0652\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"6fa63ba6-87c6-4abc-870c-dd0862f6ddf7\",\n                                \"e2b55940-1d11-4158-9e27-6e284bc3e317\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.8358154296875,\n                    \"Text\": \"01/20/2028\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.15352265536785126,\n                            \"Height\": 0.019553834572434425,\n                            \"Left\": 0.5137149095535278,\n                            \"Top\": 0.4313944876194\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5137149095535278,\n                                \"Y\": 0.4313944876194\n                            },\n                            {\n                                \"X\": 0.6671739220619202,\n                                \"Y\": 0.4314681589603424\n                            },\n                            {\n                                \"X\": 0.6672375798225403,\n                                \"Y\": 0.4509483277797699\n                            },\n                            {\n                                \"X\": 0.5137685537338257,\n                                \"Y\": 0.4508659839630127\n                            }\n                        ]\n                    },\n                    \"Id\": \"e21983be-0569-4f0e-a85f-35c690343486\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"bf00db01-f341-4c10-93bb-31097777053d\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.89881134033203,\n                    \"Text\": \"03/18/2001\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.14991024136543274,\n                            \"Height\": 0.02008797973394394,\n                            \"Left\": 0.7210903763771057,\n                            \"Top\": 0.43127983808517456\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7210903763771057,\n                                \"Y\": 0.43127983808517456\n                            },\n                            {\n                                \"X\": 0.8709216713905334,\n                                \"Y\": 0.4313516914844513\n                            },\n                            {\n                                \"X\": 0.8710006475448608,\n                                \"Y\": 0.4513678252696991\n                            },\n                            {\n                                \"X\": 0.7211593389511108,\n                                \"Y\": 0.45128729939460754\n                            }\n                        ]\n                    },\n                    \"Id\": \"3a902a2c-c3a0-479c-bd43-ff2dd5c2b472\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"b6ba818a-f7b6-48f7-b8e0-3fa66bd87958\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 17.408353805541992,\n                    \"Text\": \"REPRESENTATIVE\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.019683903083205223,\n                            \"Height\": 0.12381605058908463,\n                            \"Left\": 0.04326381906867027,\n                            \"Top\": 0.42778632044792175\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.04326381906867027,\n                                \"Y\": 0.42778632044792175\n                            },\n                            {\n                                \"X\": 0.06279256939888,\n                                \"Y\": 0.42779549956321716\n                            },\n                            {\n                                \"X\": 0.06294772028923035,\n                                \"Y\": 0.5516023635864258\n                            },\n                            {\n                                \"X\": 0.04341090843081474,\n                                \"Y\": 0.5515861511230469\n                            }\n                        ]\n                    },\n                    \"Id\": \"43bbc029-d4a1-420a-801e-6752abc709ca\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"4214cf3f-048d-4474-9891-37a5754ee181\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.96044921875,\n                    \"Text\": \"9 CLASS\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.06534451246261597,\n                            \"Height\": 0.01093261782079935,\n                            \"Left\": 0.4987901449203491,\n                            \"Top\": 0.4615742564201355\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4987901449203491,\n                                \"Y\": 0.4615742564201355\n                            },\n                            {\n                                \"X\": 0.564102828502655,\n                                \"Y\": 0.4616113305091858\n                            },\n                            {\n                                \"X\": 0.5641346573829651,\n                                \"Y\": 0.47250688076019287\n                            },\n                            {\n                                \"X\": 0.49881961941719055,\n                                \"Y\": 0.4724677503108978\n                            }\n                        ]\n                    },\n                    \"Id\": \"2c7ceb20-d72f-4f99-853b-de5e2531e998\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"3f86d101-e695-4e0b-a93c-43aac37ae3ad\",\n                                \"a27829c5-f49d-46ea-8991-8b842cae1601\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.92868041992188,\n                    \"Text\": \"12 REST\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.06345757842063904,\n                            \"Height\": 0.011077345348894596,\n                            \"Left\": 0.5893231630325317,\n                            \"Top\": 0.46148669719696045\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5893231630325317,\n                                \"Y\": 0.46148669719696045\n                            },\n                            {\n                                \"X\": 0.6527451872825623,\n                                \"Y\": 0.4615226686000824\n                            },\n                            {\n                                \"X\": 0.6527807116508484,\n                                \"Y\": 0.47256404161453247\n                            },\n                            {\n                                \"X\": 0.5893563628196716,\n                                \"Y\": 0.47252604365348816\n                            }\n                        ]\n                    },\n                    \"Id\": \"99503d25-451d-4273-ba28-62fe9f3d1aec\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"877bd1c7-35ba-4168-9e1a-9f68b4b83eba\",\n                                \"d981af62-37df-49dd-b3fe-e7c156acc933\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.83816528320312,\n                    \"Text\": \"Oa END\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.05718158558011055,\n                            \"Height\": 0.01090270560234785,\n                            \"Left\": 0.6975632905960083,\n                            \"Top\": 0.4615057408809662\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6975632905960083,\n                                \"Y\": 0.4615057408809662\n                            },\n                            {\n                                \"X\": 0.7547062039375305,\n                                \"Y\": 0.4615381360054016\n                            },\n                            {\n                                \"X\": 0.7547448873519897,\n                                \"Y\": 0.4724084436893463\n                            },\n                            {\n                                \"X\": 0.6975998878479004,\n                                \"Y\": 0.47237423062324524\n                            }\n                        ]\n                    },\n                    \"Id\": \"b49d42a5-c0ad-4507-875e-73586f09bd50\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"49e35372-8938-495e-9d94-d78662fe3f0b\",\n                                \"0d959760-dd79-4337-8730-8963e758dc8e\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.9564208984375,\n                    \"Text\": \"D\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.016584327444434166,\n                            \"Height\": 0.015919789671897888,\n                            \"Left\": 0.5154004096984863,\n                            \"Top\": 0.4762446880340576\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5154004096984863,\n                                \"Y\": 0.4762446880340576\n                            },\n                            {\n                                \"X\": 0.5319399237632751,\n                                \"Y\": 0.47625476121902466\n                            },\n                            {\n                                \"X\": 0.5319847464561462,\n                                \"Y\": 0.4921644628047943\n                            },\n                            {\n                                \"X\": 0.5154443383216858,\n                                \"Y\": 0.4921536147594452\n                            }\n                        ]\n                    },\n                    \"Id\": \"1417e54e-f646-40d8-8283-5f7363c72cd5\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"b8bdee77-bbb5-402a-8d38-95f05a4e29d3\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.98848724365234,\n                    \"Text\": \"NONE\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.07484128326177597,\n                            \"Height\": 0.0165767353028059,\n                            \"Left\": 0.6121616959571838,\n                            \"Top\": 0.47585585713386536\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6121616959571838,\n                                \"Y\": 0.47585585713386536\n                            },\n                            {\n                                \"X\": 0.6869478821754456,\n                                \"Y\": 0.47590136528015137\n                            },\n                            {\n                                \"X\": 0.687002956867218,\n                                \"Y\": 0.4924325942993164\n                            },\n                            {\n                                \"X\": 0.6122126579284668,\n                                \"Y\": 0.4923834800720215\n                            }\n                        ]\n                    },\n                    \"Id\": \"0a6ec8d4-2fef-4907-a80e-51ab1c81e51f\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"e2f262bc-ef23-49a9-9843-4b2db1d9d950\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.98552703857422,\n                    \"Text\": \"NONE\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.07425209134817123,\n                            \"Height\": 0.016384780406951904,\n                            \"Left\": 0.7219895124435425,\n                            \"Top\": 0.4759756922721863\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7219895124435425,\n                                \"Y\": 0.4759756922721863\n                            },\n                            {\n                                \"X\": 0.7961812019348145,\n                                \"Y\": 0.476020872592926\n                            },\n                            {\n                                \"X\": 0.7962415814399719,\n                                \"Y\": 0.4923604726791382\n                            },\n                            {\n                                \"X\": 0.7220458388328552,\n                                \"Y\": 0.4923118054866791\n                            }\n                        ]\n                    },\n                    \"Id\": \"3883c19a-4d39-4d60-91cc-87260da12812\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"7e6c3930-29ea-4237-bc29-fab42b3e01fe\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 94.23170471191406,\n                    \"Text\": \"1 MAR\\u00cdA\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.15249653160572052,\n                            \"Height\": 0.03414738550782204,\n                            \"Left\": 0.38872596621513367,\n                            \"Top\": 0.502013087272644\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.38872596621513367,\n                                \"Y\": 0.502013087272644\n                            },\n                            {\n                                \"X\": 0.5411255955696106,\n                                \"Y\": 0.5021174550056458\n                            },\n                            {\n                                \"X\": 0.5412225127220154,\n                                \"Y\": 0.5361604690551758\n                            },\n                            {\n                                \"X\": 0.3888055384159088,\n                                \"Y\": 0.5360410213470459\n                            }\n                        ]\n                    },\n                    \"Id\": \"bf732d8c-42f7-4f26-b028-64eb099ec539\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"49ee4f2d-2b6d-47b4-9dd4-6b6ca75fc1e2\",\n                                \"3c571171-a445-4902-bd16-c9de257ab663\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 96.99720764160156,\n                    \"Text\": \"2 GARC\\u00cdA\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.11995342373847961,\n                            \"Height\": 0.022710096091032028,\n                            \"Left\": 0.38801881670951843,\n                            \"Top\": 0.5385496020317078\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.38801881670951843,\n                                \"Y\": 0.5385496020317078\n                            },\n                            {\n                                \"X\": 0.5079103708267212,\n                                \"Y\": 0.5386443734169006\n                            },\n                            {\n                                \"X\": 0.507972240447998,\n                                \"Y\": 0.5612596869468689\n                            },\n                            {\n                                \"X\": 0.38807159662246704,\n                                \"Y\": 0.5611570477485657\n                            }\n                        ]\n                    },\n                    \"Id\": \"3e369a01-3aa3-4fb5-9991-73bf39718901\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"b1ab6e01-47da-4b25-bf39-63939e1fd0d3\",\n                                \"ee7507cb-b634-421e-84b9-0f488f123fe8\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.96215057373047,\n                    \"Text\": \"8 100 MARKET STREET\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.3040693998336792,\n                            \"Height\": 0.018919944763183594,\n                            \"Left\": 0.38806357979774475,\n                            \"Top\": 0.5700165033340454\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.38806357979774475,\n                                \"Y\": 0.5700165033340454\n                            },\n                            {\n                                \"X\": 0.692070484161377,\n                                \"Y\": 0.5702845454216003\n                            },\n                            {\n                                \"X\": 0.6921329498291016,\n                                \"Y\": 0.588936448097229\n                            },\n                            {\n                                \"X\": 0.3881070911884308,\n                                \"Y\": 0.5886519551277161\n                            }\n                        ]\n                    },\n                    \"Id\": \"f417f140-7bcd-46a9-a09f-61af919bddba\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"5ae104a5-44e7-48cc-99d2-f9bde410134b\",\n                                \"1a99769d-eeea-44c2-91a0-5ac7594f9c5f\",\n                                \"508ced53-e564-4667-8fc2-bfad288f01d0\",\n                                \"547140eb-019e-417c-a77a-c98ac207b5d9\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.8599624633789,\n                    \"Text\": \"BIGTOWN, MA, 02801\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.2957158088684082,\n                            \"Height\": 0.022492460906505585,\n                            \"Left\": 0.403749018907547,\n                            \"Top\": 0.5976957678794861\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.403749018907547,\n                                \"Y\": 0.5976957678794861\n                            },\n                            {\n                                \"X\": 0.6993899345397949,\n                                \"Y\": 0.5979802012443542\n                            },\n                            {\n                                \"X\": 0.6994647979736328,\n                                \"Y\": 0.6201882362365723\n                            },\n                            {\n                                \"X\": 0.40380197763442993,\n                                \"Y\": 0.6198848485946655\n                            }\n                        ]\n                    },\n                    \"Id\": \"08be4b6f-a8cb-4f1f-b52b-d6cadd09f6a9\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"498864c5-a661-47c6-bc60-d5111da66224\",\n                                \"6ef0959c-77ca-460c-9065-c26d191903a7\",\n                                \"92b17ad9-9554-43e0-b5e0-b48a2b5add54\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.96353149414062,\n                    \"Text\": \"18 EYES\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.062199272215366364,\n                            \"Height\": 0.011510612443089485,\n                            \"Left\": 0.37980103492736816,\n                            \"Top\": 0.6459736824035645\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.37980103492736816,\n                                \"Y\": 0.6459736824035645\n                            },\n                            {\n                                \"X\": 0.4419715404510498,\n                                \"Y\": 0.6460421681404114\n                            },\n                            {\n                                \"X\": 0.44200029969215393,\n                                \"Y\": 0.6574842929840088\n                            },\n                            {\n                                \"X\": 0.37982743978500366,\n                                \"Y\": 0.6574137210845947\n                            }\n                        ]\n                    },\n                    \"Id\": \"d0fb66b9-c52c-47bc-bf37-505361dc1769\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"bfb48f9f-d0da-46fd-a820-22b8ff7d0e15\",\n                                \"9cdc4e2e-694b-4e36-92b7-a6ea7ba79128\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.91162109375,\n                    \"Text\": \"BLK\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.04610960930585861,\n                            \"Height\": 0.01596316508948803,\n                            \"Left\": 0.4481161832809448,\n                            \"Top\": 0.6407609581947327\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4481161832809448,\n                                \"Y\": 0.6407609581947327\n                            },\n                            {\n                                \"X\": 0.4941830337047577,\n                                \"Y\": 0.640811026096344\n                            },\n                            {\n                                \"X\": 0.49422580003738403,\n                                \"Y\": 0.6567241549491882\n                            },\n                            {\n                                \"X\": 0.44815653562545776,\n                                \"Y\": 0.656671941280365\n                            }\n                        ]\n                    },\n                    \"Id\": \"664e66a0-e3ce-44a5-b5e7-1d6040a8cb7f\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"e1dbdcfd-4165-422f-960d-2a757b910f80\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 80.20497131347656,\n                    \"Text\": \"Mar\\u00eda Garc\\u00eda\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.26778244972229004,\n                            \"Height\": 0.03343311697244644,\n                            \"Left\": 0.06983429193496704,\n                            \"Top\": 0.666585385799408\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.06983429193496704,\n                                \"Y\": 0.666585385799408\n                            },\n                            {\n                                \"X\": 0.3375449776649475,\n                                \"Y\": 0.666896641254425\n                            },\n                            {\n                                \"X\": 0.3376167416572571,\n                                \"Y\": 0.7000185251235962\n                            },\n                            {\n                                \"X\": 0.06987651437520981,\n                                \"Y\": 0.6996815800666809\n                            }\n                        ]\n                    },\n                    \"Id\": \"1ef823d6-e248-424d-b981-a6b636885475\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"665ca9d7-ab59-4a3c-adb5-abb4e051ca74\",\n                                \"00eaff1f-79b5-4999-ac25-98970f79b158\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.936767578125,\n                    \"Text\": \"15 SEX\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.052734266966581345,\n                            \"Height\": 0.010878517292439938,\n                            \"Left\": 0.37997666001319885,\n                            \"Top\": 0.6694125533103943\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.37997666001319885,\n                                \"Y\": 0.6694125533103943\n                            },\n                            {\n                                \"X\": 0.432684063911438,\n                                \"Y\": 0.669474184513092\n                            },\n                            {\n                                \"X\": 0.4327109158039093,\n                                \"Y\": 0.6802910566329956\n                            },\n                            {\n                                \"X\": 0.38000160455703735,\n                                \"Y\": 0.6802277565002441\n                            }\n                        ]\n                    },\n                    \"Id\": \"533b350b-2c12-485d-9d1b-39edb67d5bc4\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"4c9cf537-4eb8-4abc-ba88-cab576589fcb\",\n                                \"22f4c19b-2e2f-432d-988d-0a6ef6c2c56b\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.96261596679688,\n                    \"Text\": \"F\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.012743600644171238,\n                            \"Height\": 0.015478641726076603,\n                            \"Left\": 0.4389359951019287,\n                            \"Top\": 0.6640002131462097\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4389359951019287,\n                                \"Y\": 0.6640002131462097\n                            },\n                            {\n                                \"X\": 0.45164021849632263,\n                                \"Y\": 0.6640148758888245\n                            },\n                            {\n                                \"X\": 0.45167961716651917,\n                                \"Y\": 0.6794788837432861\n                            },\n                            {\n                                \"X\": 0.4389747381210327,\n                                \"Y\": 0.6794636249542236\n                            }\n                        ]\n                    },\n                    \"Id\": \"cc0abd52-18fa-4a46-82a9-be9f7b7e7a4e\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"3ca67115-9540-4d48-963c-3b166059881a\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.74382781982422,\n                    \"Text\": \"15 HGT 4-6\\\"\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.11011447757482529,\n                            \"Height\": 0.016828011721372604,\n                            \"Left\": 0.4859124422073364,\n                            \"Top\": 0.6635472178459167\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4859124422073364,\n                                \"Y\": 0.6635472178459167\n                            },\n                            {\n                                \"X\": 0.5959763526916504,\n                                \"Y\": 0.663673996925354\n                            },\n                            {\n                                \"X\": 0.5960268974304199,\n                                \"Y\": 0.6803752183914185\n                            },\n                            {\n                                \"X\": 0.4859568774700165,\n                                \"Y\": 0.6802430152893066\n                            }\n                        ]\n                    },\n                    \"Id\": \"80bb10f2-ae59-4179-987d-65958c25468c\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"0d936a3a-b87d-46bf-b69e-62a5f9f5a27d\",\n                                \"54025897-cd65-4ed5-9ac8-c0c516763458\",\n                                \"44c9ce85-e5c2-4745-aa80-845ce806558c\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.90095520019531,\n                    \"Text\": \"03/18/2001\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.1694040596485138,\n                            \"Height\": 0.022401226684451103,\n                            \"Left\": 0.7477508187294006,\n                            \"Top\": 0.6707302927970886\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7477508187294006,\n                                \"Y\": 0.6707302927970886\n                            },\n                            {\n                                \"X\": 0.9170638918876648,\n                                \"Y\": 0.6709287762641907\n                            },\n                            {\n                                \"X\": 0.917154848575592,\n                                \"Y\": 0.6931315064430237\n                            },\n                            {\n                                \"X\": 0.7478291988372803,\n                                \"Y\": 0.6929221749305725\n                            }\n                        ]\n                    },\n                    \"Id\": \"5c008b91-6450-4dd7-9134-c8782d300204\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"f7ff7ab4-eef1-4e01-90f8-7cebc4116036\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.90634155273438,\n                    \"Text\": \"5 DD 03/12/2019\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.1463664323091507,\n                            \"Height\": 0.013844613917171955,\n                            \"Left\": 0.3879486918449402,\n                            \"Top\": 0.6904826760292053\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.3879486918449402,\n                                \"Y\": 0.6904826760292053\n                            },\n                            {\n                                \"X\": 0.53427654504776,\n                                \"Y\": 0.6906627416610718\n                            },\n                            {\n                                \"X\": 0.5343151092529297,\n                                \"Y\": 0.7043272852897644\n                            },\n                            {\n                                \"X\": 0.387980580329895,\n                                \"Y\": 0.70414137840271\n                            }\n                        ]\n                    },\n                    \"Id\": \"f0a30156-5bdf-479f-a304-5b80988dc8cf\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"6232d132-2782-4e67-b24b-d404f29d2282\",\n                                \"e735ec1b-c07b-4d79-88c9-3f9e7a3c5dd3\",\n                                \"e02e2c2f-2478-48cf-bac8-7939eb513ae3\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"LINE\",\n                    \"Confidence\": 99.880859375,\n                    \"Text\": \"REV 03/12/2017\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.13659068942070007,\n                            \"Height\": 0.01400950737297535,\n                            \"Left\": 0.5630601048469543,\n                            \"Top\": 0.6903425455093384\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5630601048469543,\n                                \"Y\": 0.6903425455093384\n                            },\n                            {\n                                \"X\": 0.6996040940284729,\n                                \"Y\": 0.6905104517936707\n                            },\n                            {\n                                \"X\": 0.699650764465332,\n                                \"Y\": 0.704352080821991\n                            },\n                            {\n                                \"X\": 0.5631004571914673,\n                                \"Y\": 0.7041786909103394\n                            }\n                        ]\n                    },\n                    \"Id\": \"aff97ce3-1b29-4572-93c6-271d055df3b7\",\n                    \"Relationships\": [\n                        {\n                            \"Type\": \"CHILD\",\n                            \"Ids\": [\n                                \"eda2355b-1a77-486a-8600-c25154f3f464\",\n                                \"a8d9edf9-497e-4f52-9e99-1069164333d1\"\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.02442932128906,\n                    \"Text\": \"MASSACHUSETTS\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.44257503747940063,\n                            \"Height\": 0.03240398317575455,\n                            \"Left\": 0.052577994763851166,\n                            \"Top\": 0.28902143239974976\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.052577994763851166,\n                                \"Y\": 0.28902143239974976\n                            },\n                            {\n                                \"X\": 0.4950658082962036,\n                                \"Y\": 0.28905150294303894\n                            },\n                            {\n                                \"X\": 0.4951530396938324,\n                                \"Y\": 0.3214254081249237\n                            },\n                            {\n                                \"X\": 0.052617430686950684,\n                                \"Y\": 0.32135385274887085\n                            }\n                        ]\n                    },\n                    \"Id\": \"06e9fd68-50bc-4c05-bb44-289edf6e64f3\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.96223449707031,\n                    \"Text\": \"DRIVER\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.0704336166381836,\n                            \"Height\": 0.013271612115204334,\n                            \"Left\": 0.5155620574951172,\n                            \"Top\": 0.28993961215019226\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5155620574951172,\n                                \"Y\": 0.28993961215019226\n                            },\n                            {\n                                \"X\": 0.5859559178352356,\n                                \"Y\": 0.289944589138031\n                            },\n                            {\n                                \"X\": 0.5859956741333008,\n                                \"Y\": 0.3032112121582031\n                            },\n                            {\n                                \"X\": 0.5155986547470093,\n                                \"Y\": 0.3032035529613495\n                            }\n                        ]\n                    },\n                    \"Id\": \"986e02c2-7b74-4d01-baa8-97650bb0f00f\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.9375991821289,\n                    \"Text\": \"LICENSE\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.07929489761590958,\n                            \"Height\": 0.013682662509381771,\n                            \"Left\": 0.5151095986366272,\n                            \"Top\": 0.30892062187194824\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5151095986366272,\n                                \"Y\": 0.30892062187194824\n                            },\n                            {\n                                \"X\": 0.5943630933761597,\n                                \"Y\": 0.30893054604530334\n                            },\n                            {\n                                \"X\": 0.5944044589996338,\n                                \"Y\": 0.3226032853126526\n                            },\n                            {\n                                \"X\": 0.51514732837677,\n                                \"Y\": 0.3225902020931244\n                            }\n                        ]\n                    },\n                    \"Id\": \"521b96eb-0445-4fe0-8760-06495d139818\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.95698547363281,\n                    \"Text\": \"4a\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.01932094246149063,\n                            \"Height\": 0.011178404092788696,\n                            \"Left\": 0.49020349979400635,\n                            \"Top\": 0.3746177852153778\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.49020349979400635,\n                                \"Y\": 0.3746177852153778\n                            },\n                            {\n                                \"X\": 0.5094938278198242,\n                                \"Y\": 0.3746238648891449\n                            },\n                            {\n                                \"X\": 0.5095244646072388,\n                                \"Y\": 0.3857961893081665\n                            },\n                            {\n                                \"X\": 0.4902334213256836,\n                                \"Y\": 0.3857894837856293\n                            }\n                        ]\n                    },\n                    \"Id\": \"e26e1a1b-fc6c-4262-9a30-0d348f6a4d82\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.84410858154297,\n                    \"Text\": \"ISS\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.023800311610102654,\n                            \"Height\": 0.01098800078034401,\n                            \"Left\": 0.5150380730628967,\n                            \"Top\": 0.3744632303714752\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5150380730628967,\n                                \"Y\": 0.3744632303714752\n                            },\n                            {\n                                \"X\": 0.538807213306427,\n                                \"Y\": 0.37447071075439453\n                            },\n                            {\n                                \"X\": 0.5388383865356445,\n                                \"Y\": 0.38545122742652893\n                            },\n                            {\n                                \"X\": 0.5150683522224426,\n                                \"Y\": 0.38544297218322754\n                            }\n                        ]\n                    },\n                    \"Id\": \"b2efc20c-2221-4ef1-9f0c-9bb1dea22375\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.98297119140625,\n                    \"Text\": \"4d\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.020102007314562798,\n                            \"Height\": 0.011388542130589485,\n                            \"Left\": 0.6963563561439514,\n                            \"Top\": 0.3741258978843689\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6963563561439514,\n                                \"Y\": 0.3741258978843689\n                            },\n                            {\n                                \"X\": 0.7164193391799927,\n                                \"Y\": 0.3741321861743927\n                            },\n                            {\n                                \"X\": 0.7164583802223206,\n                                \"Y\": 0.38551443815231323\n                            },\n                            {\n                                \"X\": 0.696394681930542,\n                                \"Y\": 0.3855074644088745\n                            }\n                        ]\n                    },\n                    \"Id\": \"889699e8-9119-4db9-aa30-25909fc00fac\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.93954467773438,\n                    \"Text\": \"NUMBER\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.06987849622964859,\n                            \"Height\": 0.01077636145055294,\n                            \"Left\": 0.7214798927307129,\n                            \"Top\": 0.37467455863952637\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7214798927307129,\n                                \"Y\": 0.37467455863952637\n                            },\n                            {\n                                \"X\": 0.7913187742233276,\n                                \"Y\": 0.37469661235809326\n                            },\n                            {\n                                \"X\": 0.7913583517074585,\n                                \"Y\": 0.38545089960098267\n                            },\n                            {\n                                \"X\": 0.7215169668197632,\n                                \"Y\": 0.38542670011520386\n                            }\n                        ]\n                    },\n                    \"Id\": \"c3863d46-c9cf-49e5-9940-4533fee34ced\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.95533752441406,\n                    \"Text\": \"03/18/2018\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.15271666646003723,\n                            \"Height\": 0.0203073900192976,\n                            \"Left\": 0.5137559175491333,\n                            \"Top\": 0.38729801774024963\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5137559175491333,\n                                \"Y\": 0.38729801774024963\n                            },\n                            {\n                                \"X\": 0.6664064526557922,\n                                \"Y\": 0.3873518109321594\n                            },\n                            {\n                                \"X\": 0.6664725542068481,\n                                \"Y\": 0.4076054096221924\n                            },\n                            {\n                                \"X\": 0.5138117074966431,\n                                \"Y\": 0.4075426459312439\n                            }\n                        ]\n                    },\n                    \"Id\": \"6aa85c6f-0fb0-4660-b820-1b8496588043\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.51510620117188,\n                    \"Text\": \"736HDV7874JSB\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.2097538411617279,\n                            \"Height\": 0.0169050395488739,\n                            \"Left\": 0.7210226655006409,\n                            \"Top\": 0.3880530595779419\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7210226655006409,\n                                \"Y\": 0.3880530595779419\n                            },\n                            {\n                                \"X\": 0.9307067394256592,\n                                \"Y\": 0.3881273865699768\n                            },\n                            {\n                                \"X\": 0.9307764768600464,\n                                \"Y\": 0.4049580991268158\n                            },\n                            {\n                                \"X\": 0.7210806012153625,\n                                \"Y\": 0.4048735797405243\n                            }\n                        ]\n                    },\n                    \"Id\": \"d11c6f0c-b092-45ec-99d8-4da8ed1692b4\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.97602844238281,\n                    \"Text\": \"4b\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.01996711455285549,\n                            \"Height\": 0.011527645401656628,\n                            \"Left\": 0.48958101868629456,\n                            \"Top\": 0.4180253744125366\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.48958101868629456,\n                                \"Y\": 0.4180253744125366\n                            },\n                            {\n                                \"X\": 0.5095165371894836,\n                                \"Y\": 0.418034166097641\n                            },\n                            {\n                                \"X\": 0.5095481276512146,\n                                \"Y\": 0.42955300211906433\n                            },\n                            {\n                                \"X\": 0.48961183428764343,\n                                \"Y\": 0.42954355478286743\n                            }\n                        ]\n                    },\n                    \"Id\": \"b4df7fbc-0398-46bf-83b4-8e91760a8e97\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.89376068115234,\n                    \"Text\": \"EXP\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.029983997344970703,\n                            \"Height\": 0.010850497521460056,\n                            \"Left\": 0.5147942304611206,\n                            \"Top\": 0.41845184564590454\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5147942304611206,\n                                \"Y\": 0.41845184564590454\n                            },\n                            {\n                                \"X\": 0.5447472333908081,\n                                \"Y\": 0.41846510767936707\n                            },\n                            {\n                                \"X\": 0.5447782278060913,\n                                \"Y\": 0.4293023645877838\n                            },\n                            {\n                                \"X\": 0.5148241519927979,\n                                \"Y\": 0.4292881488800049\n                            }\n                        ]\n                    },\n                    \"Id\": \"7e28ecf2-1327-4b5f-832e-3fd7266205d9\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.84622955322266,\n                    \"Text\": \"3\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.009651760570704937,\n                            \"Height\": 0.010842978954315186,\n                            \"Left\": 0.7057417035102844,\n                            \"Top\": 0.41845670342445374\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7057417035102844,\n                                \"Y\": 0.41845670342445374\n                            },\n                            {\n                                \"X\": 0.7153563499450684,\n                                \"Y\": 0.4184609651565552\n                            },\n                            {\n                                \"X\": 0.7153934836387634,\n                                \"Y\": 0.4292996823787689\n                            },\n                            {\n                                \"X\": 0.7057785391807556,\n                                \"Y\": 0.4292951226234436\n                            }\n                        ]\n                    },\n                    \"Id\": \"6fa63ba6-87c6-4abc-870c-dd0862f6ddf7\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.904541015625,\n                    \"Text\": \"DOB\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.03555015102028847,\n                            \"Height\": 0.011128333397209644,\n                            \"Left\": 0.7212119698524475,\n                            \"Top\": 0.41825130581855774\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7212119698524475,\n                                \"Y\": 0.41825130581855774\n                            },\n                            {\n                                \"X\": 0.7567225098609924,\n                                \"Y\": 0.41826701164245605\n                            },\n                            {\n                                \"X\": 0.7567620873451233,\n                                \"Y\": 0.4293796420097351\n                            },\n                            {\n                                \"X\": 0.7212502360343933,\n                                \"Y\": 0.42936280369758606\n                            }\n                        ]\n                    },\n                    \"Id\": \"e2b55940-1d11-4158-9e27-6e284bc3e317\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.8358154296875,\n                    \"Text\": \"01/20/2028\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.15352265536785126,\n                            \"Height\": 0.019553834572434425,\n                            \"Left\": 0.5137149095535278,\n                            \"Top\": 0.4313944876194\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5137149095535278,\n                                \"Y\": 0.4313944876194\n                            },\n                            {\n                                \"X\": 0.6671739220619202,\n                                \"Y\": 0.4314681589603424\n                            },\n                            {\n                                \"X\": 0.6672375798225403,\n                                \"Y\": 0.4509483277797699\n                            },\n                            {\n                                \"X\": 0.5137685537338257,\n                                \"Y\": 0.4508659839630127\n                            }\n                        ]\n                    },\n                    \"Id\": \"bf00db01-f341-4c10-93bb-31097777053d\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.89881134033203,\n                    \"Text\": \"03/18/2001\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.14991024136543274,\n                            \"Height\": 0.02008797973394394,\n                            \"Left\": 0.7210903763771057,\n                            \"Top\": 0.43127983808517456\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7210903763771057,\n                                \"Y\": 0.43127983808517456\n                            },\n                            {\n                                \"X\": 0.8709216713905334,\n                                \"Y\": 0.4313516914844513\n                            },\n                            {\n                                \"X\": 0.8710006475448608,\n                                \"Y\": 0.4513678252696991\n                            },\n                            {\n                                \"X\": 0.7211593389511108,\n                                \"Y\": 0.45128729939460754\n                            }\n                        ]\n                    },\n                    \"Id\": \"b6ba818a-f7b6-48f7-b8e0-3fa66bd87958\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 17.408353805541992,\n                    \"Text\": \"REPRESENTATIVE\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.019683903083205223,\n                            \"Height\": 0.12381605058908463,\n                            \"Left\": 0.04326381906867027,\n                            \"Top\": 0.42778632044792175\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.04326381906867027,\n                                \"Y\": 0.42778632044792175\n                            },\n                            {\n                                \"X\": 0.06279256939888,\n                                \"Y\": 0.42779549956321716\n                            },\n                            {\n                                \"X\": 0.06294772028923035,\n                                \"Y\": 0.5516023635864258\n                            },\n                            {\n                                \"X\": 0.04341090843081474,\n                                \"Y\": 0.5515861511230469\n                            }\n                        ]\n                    },\n                    \"Id\": \"4214cf3f-048d-4474-9891-37a5754ee181\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.97186279296875,\n                    \"Text\": \"9\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.009889541193842888,\n                            \"Height\": 0.010619891807436943,\n                            \"Left\": 0.4987909197807312,\n                            \"Top\": 0.4618537724018097\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4987909197807312,\n                                \"Y\": 0.4618537724018097\n                            },\n                            {\n                                \"X\": 0.5086513757705688,\n                                \"Y\": 0.4618593752384186\n                            },\n                            {\n                                \"X\": 0.5086804628372192,\n                                \"Y\": 0.4724736511707306\n                            },\n                            {\n                                \"X\": 0.49881961941719055,\n                                \"Y\": 0.4724677503108978\n                            }\n                        ]\n                    },\n                    \"Id\": \"3f86d101-e695-4e0b-a93c-43aac37ae3ad\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.94903564453125,\n                    \"Text\": \"CLASS\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.049391064792871475,\n                            \"Height\": 0.01078883744776249,\n                            \"Left\": 0.5147432088851929,\n                            \"Top\": 0.46158331632614136\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5147432088851929,\n                                \"Y\": 0.46158331632614136\n                            },\n                            {\n                                \"X\": 0.564102828502655,\n                                \"Y\": 0.4616113305091858\n                            },\n                            {\n                                \"X\": 0.5641342997550964,\n                                \"Y\": 0.4723721444606781\n                            },\n                            {\n                                \"X\": 0.514772891998291,\n                                \"Y\": 0.4723426103591919\n                            }\n                        ]\n                    },\n                    \"Id\": \"a27829c5-f49d-46ea-8991-8b842cae1601\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.96996307373047,\n                    \"Text\": \"12\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.0188555009663105,\n                            \"Height\": 0.010810031555593014,\n                            \"Left\": 0.5893235206604004,\n                            \"Top\": 0.4616120159626007\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5893235206604004,\n                                \"Y\": 0.4616120159626007\n                            },\n                            {\n                                \"X\": 0.6081458926200867,\n                                \"Y\": 0.4616227149963379\n                            },\n                            {\n                                \"X\": 0.6081790328025818,\n                                \"Y\": 0.4724220633506775\n                            },\n                            {\n                                \"X\": 0.589356005191803,\n                                \"Y\": 0.47241079807281494\n                            }\n                        ]\n                    },\n                    \"Id\": \"877bd1c7-35ba-4168-9e1a-9f68b4b83eba\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.88739776611328,\n                    \"Text\": \"REST\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.040806226432323456,\n                            \"Height\": 0.011064499616622925,\n                            \"Left\": 0.6119745373725891,\n                            \"Top\": 0.46149954199790955\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6119745373725891,\n                                \"Y\": 0.46149954199790955\n                            },\n                            {\n                                \"X\": 0.6527451872825623,\n                                \"Y\": 0.4615226686000824\n                            },\n                            {\n                                \"X\": 0.6527807116508484,\n                                \"Y\": 0.47256404161453247\n                            },\n                            {\n                                \"X\": 0.6120085120201111,\n                                \"Y\": 0.47253960371017456\n                            }\n                        ]\n                    },\n                    \"Id\": \"d981af62-37df-49dd-b3fe-e7c156acc933\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.75670623779297,\n                    \"Text\": \"Oa\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.02246849238872528,\n                            \"Height\": 0.01087021455168724,\n                            \"Left\": 0.6975632905960083,\n                            \"Top\": 0.4615057408809662\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6975632905960083,\n                                \"Y\": 0.4615057408809662\n                            },\n                            {\n                                \"X\": 0.7199944257736206,\n                                \"Y\": 0.46151843667030334\n                            },\n                            {\n                                \"X\": 0.7200317978858948,\n                                \"Y\": 0.47237592935562134\n                            },\n                            {\n                                \"X\": 0.6975998878479004,\n                                \"Y\": 0.4723625183105469\n                            }\n                        ]\n                    },\n                    \"Id\": \"49e35372-8938-495e-9d94-d78662fe3f0b\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.91960906982422,\n                    \"Text\": \"END\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.03342317417263985,\n                            \"Height\": 0.010790196247398853,\n                            \"Left\": 0.721321702003479,\n                            \"Top\": 0.46161824464797974\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.721321702003479,\n                                \"Y\": 0.46161824464797974\n                            },\n                            {\n                                \"X\": 0.7547065615653992,\n                                \"Y\": 0.4616371691226959\n                            },\n                            {\n                                \"X\": 0.7547448873519897,\n                                \"Y\": 0.4724084436893463\n                            },\n                            {\n                                \"X\": 0.7213588356971741,\n                                \"Y\": 0.47238844633102417\n                            }\n                        ]\n                    },\n                    \"Id\": \"0d959760-dd79-4337-8730-8963e758dc8e\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.9564208984375,\n                    \"Text\": \"D\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.016584327444434166,\n                            \"Height\": 0.015919789671897888,\n                            \"Left\": 0.5154004096984863,\n                            \"Top\": 0.4762446880340576\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5154004096984863,\n                                \"Y\": 0.4762446880340576\n                            },\n                            {\n                                \"X\": 0.5319399237632751,\n                                \"Y\": 0.47625476121902466\n                            },\n                            {\n                                \"X\": 0.5319847464561462,\n                                \"Y\": 0.4921644628047943\n                            },\n                            {\n                                \"X\": 0.5154443383216858,\n                                \"Y\": 0.4921536147594452\n                            }\n                        ]\n                    },\n                    \"Id\": \"b8bdee77-bbb5-402a-8d38-95f05a4e29d3\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.98848724365234,\n                    \"Text\": \"NONE\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.07484128326177597,\n                            \"Height\": 0.0165767353028059,\n                            \"Left\": 0.6121616959571838,\n                            \"Top\": 0.47585585713386536\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.6121616959571838,\n                                \"Y\": 0.47585585713386536\n                            },\n                            {\n                                \"X\": 0.6869478821754456,\n                                \"Y\": 0.47590136528015137\n                            },\n                            {\n                                \"X\": 0.687002956867218,\n                                \"Y\": 0.4924325942993164\n                            },\n                            {\n                                \"X\": 0.6122126579284668,\n                                \"Y\": 0.4923834800720215\n                            }\n                        ]\n                    },\n                    \"Id\": \"e2f262bc-ef23-49a9-9843-4b2db1d9d950\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.98552703857422,\n                    \"Text\": \"NONE\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.07425209134817123,\n                            \"Height\": 0.016384780406951904,\n                            \"Left\": 0.7219895124435425,\n                            \"Top\": 0.4759756922721863\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7219895124435425,\n                                \"Y\": 0.4759756922721863\n                            },\n                            {\n                                \"X\": 0.7961812019348145,\n                                \"Y\": 0.476020872592926\n                            },\n                            {\n                                \"X\": 0.7962415814399719,\n                                \"Y\": 0.4923604726791382\n                            },\n                            {\n                                \"X\": 0.7220458388328552,\n                                \"Y\": 0.4923118054866791\n                            }\n                        ]\n                    },\n                    \"Id\": \"7e6c3930-29ea-4237-bc29-fab42b3e01fe\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.91810607910156,\n                    \"Text\": \"1\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.006815171334892511,\n                            \"Height\": 0.010105231776833534,\n                            \"Left\": 0.38877958059310913,\n                            \"Top\": 0.5249444246292114\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.38877958059310913,\n                                \"Y\": 0.5249444246292114\n                            },\n                            {\n                                \"X\": 0.39557090401649475,\n                                \"Y\": 0.5249494910240173\n                            },\n                            {\n                                \"X\": 0.3955947458744049,\n                                \"Y\": 0.5350496172904968\n                            },\n                            {\n                                \"X\": 0.3888032138347626,\n                                \"Y\": 0.5350443124771118\n                            }\n                        ]\n                    },\n                    \"Id\": \"49ee4f2d-2b6d-47b4-9dd4-6b6ca75fc1e2\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 88.54529571533203,\n                    \"Text\": \"MAR\\u00cdA\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.1380164623260498,\n                            \"Height\": 0.03413746878504753,\n                            \"Left\": 0.4032060205936432,\n                            \"Top\": 0.5020229816436768\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4032060205936432,\n                                \"Y\": 0.5020229816436768\n                            },\n                            {\n                                \"X\": 0.5411255955696106,\n                                \"Y\": 0.5021174550056458\n                            },\n                            {\n                                \"X\": 0.5412225127220154,\n                                \"Y\": 0.5361604690551758\n                            },\n                            {\n                                \"X\": 0.40328723192214966,\n                                \"Y\": 0.536052405834198\n                            }\n                        ]\n                    },\n                    \"Id\": \"3c571171-a445-4902-bd16-c9de257ab663\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.93167877197266,\n                    \"Text\": \"2\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.00923361536115408,\n                            \"Height\": 0.010448610410094261,\n                            \"Left\": 0.3880458474159241,\n                            \"Top\": 0.5501329302787781\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.3880458474159241,\n                                \"Y\": 0.5501329302787781\n                            },\n                            {\n                                \"X\": 0.3972547650337219,\n                                \"Y\": 0.5501405596733093\n                            },\n                            {\n                                \"X\": 0.3972794711589813,\n                                \"Y\": 0.5605815649032593\n                            },\n                            {\n                                \"X\": 0.3880702555179596,\n                                \"Y\": 0.5605736970901489\n                            }\n                        ]\n                    },\n                    \"Id\": \"b1ab6e01-47da-4b25-bf39-63939e1fd0d3\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 94.062744140625,\n                    \"Text\": \"GARC\\u00cdA\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.10383125394582748,\n                            \"Height\": 0.02269734814763069,\n                            \"Left\": 0.40414097905158997,\n                            \"Top\": 0.5385623574256897\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.40414097905158997,\n                                \"Y\": 0.5385623574256897\n                            },\n                            {\n                                \"X\": 0.5079103708267212,\n                                \"Y\": 0.5386443734169006\n                            },\n                            {\n                                \"X\": 0.507972240447998,\n                                \"Y\": 0.5612596869468689\n                            },\n                            {\n                                \"X\": 0.40419501066207886,\n                                \"Y\": 0.5611708760261536\n                            }\n                        ]\n                    },\n                    \"Id\": \"ee7507cb-b634-421e-84b9-0f488f123fe8\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.91556549072266,\n                    \"Text\": \"8\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.009303287602961063,\n                            \"Height\": 0.010557526722550392,\n                            \"Left\": 0.38808226585388184,\n                            \"Top\": 0.57801753282547\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.38808226585388184,\n                                \"Y\": 0.57801753282547\n                            },\n                            {\n                                \"X\": 0.39736056327819824,\n                                \"Y\": 0.5780259370803833\n                            },\n                            {\n                                \"X\": 0.39738553762435913,\n                                \"Y\": 0.5885750651359558\n                            },\n                            {\n                                \"X\": 0.3881068825721741,\n                                \"Y\": 0.5885663628578186\n                            }\n                        ]\n                    },\n                    \"Id\": \"5ae104a5-44e7-48cc-99d2-f9bde410134b\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.99187469482422,\n                    \"Text\": \"100\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.05096537247300148,\n                            \"Height\": 0.018231745809316635,\n                            \"Left\": 0.4045996367931366,\n                            \"Top\": 0.5704833269119263\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4045996367931366,\n                                \"Y\": 0.5704833269119263\n                            },\n                            {\n                                \"X\": 0.4555184543132782,\n                                \"Y\": 0.5705282688140869\n                            },\n                            {\n                                \"X\": 0.4555650055408478,\n                                \"Y\": 0.5887150764465332\n                            },\n                            {\n                                \"X\": 0.40464311838150024,\n                                \"Y\": 0.5886673927307129\n                            }\n                        ]\n                    },\n                    \"Id\": \"1a99769d-eeea-44c2-91a0-5ac7594f9c5f\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.96106719970703,\n                    \"Text\": \"MARKET\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.11601702123880386,\n                            \"Height\": 0.018542565405368805,\n                            \"Left\": 0.4646190404891968,\n                            \"Top\": 0.5702394843101501\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4646190404891968,\n                                \"Y\": 0.5702394843101501\n                            },\n                            {\n                                \"X\": 0.5805811882019043,\n                                \"Y\": 0.5703417658805847\n                            },\n                            {\n                                \"X\": 0.5806360840797424,\n                                \"Y\": 0.588782012462616\n                            },\n                            {\n                                \"X\": 0.46466681361198425,\n                                \"Y\": 0.5886735320091248\n                            }\n                        ]\n                    },\n                    \"Id\": \"508ced53-e564-4667-8fc2-bfad288f01d0\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.98011016845703,\n                    \"Text\": \"STREET\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.10421404242515564,\n                            \"Height\": 0.01846385933458805,\n                            \"Left\": 0.5879179835319519,\n                            \"Top\": 0.5701926946640015\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5879179835319519,\n                                \"Y\": 0.5701926946640015\n                            },\n                            {\n                                \"X\": 0.692070484161377,\n                                \"Y\": 0.5702845454216003\n                            },\n                            {\n                                \"X\": 0.6921319961547852,\n                                \"Y\": 0.5886565446853638\n                            },\n                            {\n                                \"X\": 0.5879731178283691,\n                                \"Y\": 0.5885592103004456\n                            }\n                        ]\n                    },\n                    \"Id\": \"547140eb-019e-417c-a77a-c98ac207b5d9\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.68479919433594,\n                    \"Text\": \"BIGTOWN,\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.14175057411193848,\n                            \"Height\": 0.022203881293535233,\n                            \"Left\": 0.4037493169307709,\n                            \"Top\": 0.597826361656189\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4037493169307709,\n                                \"Y\": 0.597826361656189\n                            },\n                            {\n                                \"X\": 0.5454367995262146,\n                                \"Y\": 0.5979627370834351\n                            },\n                            {\n                                \"X\": 0.5454999208450317,\n                                \"Y\": 0.6200302839279175\n                            },\n                            {\n                                \"X\": 0.40380197763442993,\n                                \"Y\": 0.6198848485946655\n                            }\n                        ]\n                    },\n                    \"Id\": \"498864c5-a661-47c6-bc60-d5111da66224\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.95916748046875,\n                    \"Text\": \"MA,\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.05113840848207474,\n                            \"Height\": 0.02154412679374218,\n                            \"Left\": 0.5555593967437744,\n                            \"Top\": 0.5980949401855469\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5555593967437744,\n                                \"Y\": 0.5980949401855469\n                            },\n                            {\n                                \"X\": 0.6066319942474365,\n                                \"Y\": 0.5981441140174866\n                            },\n                            {\n                                \"X\": 0.6066977977752686,\n                                \"Y\": 0.6196390986442566\n                            },\n                            {\n                                \"X\": 0.5556215643882751,\n                                \"Y\": 0.6195867657661438\n                            }\n                        ]\n                    },\n                    \"Id\": \"6ef0959c-77ca-460c-9065-c26d191903a7\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.93592834472656,\n                    \"Text\": \"02801\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.08447623997926712,\n                            \"Height\": 0.01877351477742195,\n                            \"Left\": 0.614976704120636,\n                            \"Top\": 0.5978989601135254\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.614976704120636,\n                                \"Y\": 0.5978989601135254\n                            },\n                            {\n                                \"X\": 0.6993899345397949,\n                                \"Y\": 0.5979802012443542\n                            },\n                            {\n                                \"X\": 0.6994529366493225,\n                                \"Y\": 0.6166725158691406\n                            },\n                            {\n                                \"X\": 0.6150344610214233,\n                                \"Y\": 0.6165867447853088\n                            }\n                        ]\n                    },\n                    \"Id\": \"92b17ad9-9554-43e0-b5e0-b48a2b5add54\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.96532440185547,\n                    \"Text\": \"18\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.018641045317053795,\n                            \"Height\": 0.011461175978183746,\n                            \"Left\": 0.37980103492736816,\n                            \"Top\": 0.6459736824035645\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.37980103492736816,\n                                \"Y\": 0.6459736824035645\n                            },\n                            {\n                                \"X\": 0.3984149694442749,\n                                \"Y\": 0.6459941864013672\n                            },\n                            {\n                                \"X\": 0.3984420895576477,\n                                \"Y\": 0.6574348211288452\n                            },\n                            {\n                                \"X\": 0.37982743978500366,\n                                \"Y\": 0.6574137210845947\n                            }\n                        ]\n                    },\n                    \"Id\": \"bfb48f9f-d0da-46fd-a820-22b8ff7d0e15\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.96173095703125,\n                    \"Text\": \"EYES\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.03880816325545311,\n                            \"Height\": 0.010381325148046017,\n                            \"Left\": 0.40319082140922546,\n                            \"Top\": 0.6465763449668884\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.40319082140922546,\n                                \"Y\": 0.6465763449668884\n                            },\n                            {\n                                \"X\": 0.4419729709625244,\n                                \"Y\": 0.6466191411018372\n                            },\n                            {\n                                \"X\": 0.44199898838996887,\n                                \"Y\": 0.6569576859474182\n                            },\n                            {\n                                \"X\": 0.4032154679298401,\n                                \"Y\": 0.656913697719574\n                            }\n                        ]\n                    },\n                    \"Id\": \"9cdc4e2e-694b-4e36-92b7-a6ea7ba79128\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.91162109375,\n                    \"Text\": \"BLK\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.04610960930585861,\n                            \"Height\": 0.01596316508948803,\n                            \"Left\": 0.4481161832809448,\n                            \"Top\": 0.6407609581947327\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4481161832809448,\n                                \"Y\": 0.6407609581947327\n                            },\n                            {\n                                \"X\": 0.4941830337047577,\n                                \"Y\": 0.640811026096344\n                            },\n                            {\n                                \"X\": 0.49422580003738403,\n                                \"Y\": 0.6567241549491882\n                            },\n                            {\n                                \"X\": 0.44815653562545776,\n                                \"Y\": 0.656671941280365\n                            }\n                        ]\n                    },\n                    \"Id\": \"e1dbdcfd-4165-422f-960d-2a757b910f80\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 93.79586791992188,\n                    \"Text\": \"Mar\\u00eda\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.11993154883384705,\n                            \"Height\": 0.02803729847073555,\n                            \"Left\": 0.06983467191457748,\n                            \"Top\": 0.6668810248374939\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.06983467191457748,\n                                \"Y\": 0.6668810248374939\n                            },\n                            {\n                                \"X\": 0.18971949815750122,\n                                \"Y\": 0.6670204997062683\n                            },\n                            {\n                                \"X\": 0.18976621329784393,\n                                \"Y\": 0.6949183344841003\n                            },\n                            {\n                                \"X\": 0.0698702409863472,\n                                \"Y\": 0.6947691440582275\n                            }\n                        ]\n                    },\n                    \"Id\": \"665ca9d7-ab59-4a3c-adb5-abb4e051ca74\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 66.61406707763672,\n                    \"Text\": \"Garc\\u00eda\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.13332095742225647,\n                            \"Height\": 0.03327679634094238,\n                            \"Left\": 0.2042957991361618,\n                            \"Top\": 0.6667417287826538\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.2042957991361618,\n                                \"Y\": 0.6667417287826538\n                            },\n                            {\n                                \"X\": 0.3375449776649475,\n                                \"Y\": 0.666896641254425\n                            },\n                            {\n                                \"X\": 0.3376167416572571,\n                                \"Y\": 0.7000185251235962\n                            },\n                            {\n                                \"X\": 0.20435285568237305,\n                                \"Y\": 0.6998507976531982\n                            }\n                        ]\n                    },\n                    \"Id\": \"00eaff1f-79b5-4999-ac25-98970f79b158\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.94503021240234,\n                    \"Text\": \"15\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.01787392795085907,\n                            \"Height\": 0.010836648754775524,\n                            \"Left\": 0.37997666001319885,\n                            \"Top\": 0.6694125533103943\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.37997666001319885,\n                                \"Y\": 0.6694125533103943\n                            },\n                            {\n                                \"X\": 0.3978249728679657,\n                                \"Y\": 0.6694334149360657\n                            },\n                            {\n                                \"X\": 0.39785057306289673,\n                                \"Y\": 0.6802492141723633\n                            },\n                            {\n                                \"X\": 0.38000160455703735,\n                                \"Y\": 0.6802277565002441\n                            }\n                        ]\n                    },\n                    \"Id\": \"4c9cf537-4eb8-4abc-ba88-cab576589fcb\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.92851257324219,\n                    \"Text\": \"SEX\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.029845576733350754,\n                            \"Height\": 0.01030795555561781,\n                            \"Left\": 0.40286415815353394,\n                            \"Top\": 0.669508159160614\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.40286415815353394,\n                                \"Y\": 0.669508159160614\n                            },\n                            {\n                                \"X\": 0.4326842427253723,\n                                \"Y\": 0.6695430278778076\n                            },\n                            {\n                                \"X\": 0.4327097535133362,\n                                \"Y\": 0.6798160672187805\n                            },\n                            {\n                                \"X\": 0.4028886556625366,\n                                \"Y\": 0.6797803044319153\n                            }\n                        ]\n                    },\n                    \"Id\": \"22f4c19b-2e2f-432d-988d-0a6ef6c2c56b\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.96261596679688,\n                    \"Text\": \"F\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.012743600644171238,\n                            \"Height\": 0.015478641726076603,\n                            \"Left\": 0.4389359951019287,\n                            \"Top\": 0.6640002131462097\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4389359951019287,\n                                \"Y\": 0.6640002131462097\n                            },\n                            {\n                                \"X\": 0.45164021849632263,\n                                \"Y\": 0.6640148758888245\n                            },\n                            {\n                                \"X\": 0.45167961716651917,\n                                \"Y\": 0.6794788837432861\n                            },\n                            {\n                                \"X\": 0.4389747381210327,\n                                \"Y\": 0.6794636249542236\n                            }\n                        ]\n                    },\n                    \"Id\": \"3ca67115-9540-4d48-963c-3b166059881a\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.93629455566406,\n                    \"Text\": \"15\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.01806827448308468,\n                            \"Height\": 0.010953972116112709,\n                            \"Left\": 0.4859277904033661,\n                            \"Top\": 0.6693107485771179\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.4859277904033661,\n                                \"Y\": 0.6693107485771179\n                            },\n                            {\n                                \"X\": 0.5039663314819336,\n                                \"Y\": 0.6693318486213684\n                            },\n                            {\n                                \"X\": 0.5039960741996765,\n                                \"Y\": 0.6802647113800049\n                            },\n                            {\n                                \"X\": 0.4859568774700165,\n                                \"Y\": 0.6802430152893066\n                            }\n                        ]\n                    },\n                    \"Id\": \"0d936a3a-b87d-46bf-b69e-62a5f9f5a27d\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.85002136230469,\n                    \"Text\": \"HGT\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.03411456197500229,\n                            \"Height\": 0.010694894939661026,\n                            \"Left\": 0.5087968707084656,\n                            \"Top\": 0.6692421436309814\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5087968707084656,\n                                \"Y\": 0.6692421436309814\n                            },\n                            {\n                                \"X\": 0.5428810715675354,\n                                \"Y\": 0.6692820191383362\n                            },\n                            {\n                                \"X\": 0.5429114103317261,\n                                \"Y\": 0.6799370646476746\n                            },\n                            {\n                                \"X\": 0.5088260173797607,\n                                \"Y\": 0.6798961758613586\n                            }\n                        ]\n                    },\n                    \"Id\": \"54025897-cd65-4ed5-9ac8-c0c516763458\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.44517517089844,\n                    \"Text\": \"4-6\\\"\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.05279006436467171,\n                            \"Height\": 0.016701271757483482,\n                            \"Left\": 0.5432366728782654,\n                            \"Top\": 0.6636132597923279\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5432366728782654,\n                                \"Y\": 0.6636132597923279\n                            },\n                            {\n                                \"X\": 0.5959763526916504,\n                                \"Y\": 0.663673996925354\n                            },\n                            {\n                                \"X\": 0.5960267186164856,\n                                \"Y\": 0.6803145408630371\n                            },\n                            {\n                                \"X\": 0.5432841181755066,\n                                \"Y\": 0.6802511811256409\n                            }\n                        ]\n                    },\n                    \"Id\": \"44c9ce85-e5c2-4745-aa80-845ce806558c\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.90095520019531,\n                    \"Text\": \"03/18/2001\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.1694040596485138,\n                            \"Height\": 0.022401226684451103,\n                            \"Left\": 0.7477508187294006,\n                            \"Top\": 0.6707302927970886\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.7477508187294006,\n                                \"Y\": 0.6707302927970886\n                            },\n                            {\n                                \"X\": 0.9170638918876648,\n                                \"Y\": 0.6709287762641907\n                            },\n                            {\n                                \"X\": 0.917154848575592,\n                                \"Y\": 0.6931315064430237\n                            },\n                            {\n                                \"X\": 0.7478291988372803,\n                                \"Y\": 0.6929221749305725\n                            }\n                        ]\n                    },\n                    \"Id\": \"f7ff7ab4-eef1-4e01-90f8-7cebc4116036\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.90756225585938,\n                    \"Text\": \"5\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.00946944672614336,\n                            \"Height\": 0.010832883417606354,\n                            \"Left\": 0.38795149326324463,\n                            \"Top\": 0.6916875243186951\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.38795149326324463,\n                                \"Y\": 0.6916875243186951\n                            },\n                            {\n                                \"X\": 0.3973953425884247,\n                                \"Y\": 0.6916991472244263\n                            },\n                            {\n                                \"X\": 0.3974209427833557,\n                                \"Y\": 0.7025204300880432\n                            },\n                            {\n                                \"X\": 0.3879767656326294,\n                                \"Y\": 0.7025084495544434\n                            }\n                        ]\n                    },\n                    \"Id\": \"6232d132-2782-4e67-b24b-d404f29d2282\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.97012329101562,\n                    \"Text\": \"DD\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.022626928985118866,\n                            \"Height\": 0.010267622768878937,\n                            \"Left\": 0.40336504578590393,\n                            \"Top\": 0.6919183135032654\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.40336504578590393,\n                                \"Y\": 0.6919183135032654\n                            },\n                            {\n                                \"X\": 0.4259667694568634,\n                                \"Y\": 0.6919462084770203\n                            },\n                            {\n                                \"X\": 0.4259919822216034,\n                                \"Y\": 0.7021859288215637\n                            },\n                            {\n                                \"X\": 0.40338945388793945,\n                                \"Y\": 0.7021573185920715\n                            }\n                        ]\n                    },\n                    \"Id\": \"e735ec1b-c07b-4d79-88c9-3f9e7a3c5dd3\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.8413314819336,\n                    \"Text\": \"03/12/2019\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.10193005204200745,\n                            \"Height\": 0.013789926655590534,\n                            \"Left\": 0.43238508701324463,\n                            \"Top\": 0.6905373334884644\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.43238508701324463,\n                                \"Y\": 0.6905373334884644\n                            },\n                            {\n                                \"X\": 0.53427654504776,\n                                \"Y\": 0.6906627416610718\n                            },\n                            {\n                                \"X\": 0.5343151092529297,\n                                \"Y\": 0.7043272852897644\n                            },\n                            {\n                                \"X\": 0.43241897225379944,\n                                \"Y\": 0.7041978240013123\n                            }\n                        ]\n                    },\n                    \"Id\": \"e02e2c2f-2478-48cf-bac8-7939eb513ae3\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.86917114257812,\n                    \"Text\": \"REV\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.031240422278642654,\n                            \"Height\": 0.010477022267878056,\n                            \"Left\": 0.5630639791488647,\n                            \"Top\": 0.6916843056678772\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5630639791488647,\n                                \"Y\": 0.6916843056678772\n                            },\n                            {\n                                \"X\": 0.5942729115486145,\n                                \"Y\": 0.6917228102684021\n                            },\n                            {\n                                \"X\": 0.5943044424057007,\n                                \"Y\": 0.7021613121032715\n                            },\n                            {\n                                \"X\": 0.563094437122345,\n                                \"Y\": 0.7021218538284302\n                            }\n                        ]\n                    },\n                    \"Id\": \"eda2355b-1a77-486a-8600-c25154f3f464\",\n                    \"Page\": 0\n                },\n                {\n                    \"BlockType\": \"WORD\",\n                    \"Confidence\": 99.89254760742188,\n                    \"Text\": \"03/12/2017\",\n                    \"TextType\": \"PRINTED\",\n                    \"Geometry\": {\n                        \"BoundingBox\": {\n                            \"Width\": 0.10232585668563843,\n                            \"Height\": 0.01396737340837717,\n                            \"Left\": 0.5973249077796936,\n                            \"Top\": 0.6903846859931946\n                        },\n                        \"Polygon\": [\n                            {\n                                \"X\": 0.5973249077796936,\n                                \"Y\": 0.6903846859931946\n                            },\n                            {\n                                \"X\": 0.6996040940284729,\n                                \"Y\": 0.6905104517936707\n                            },\n                            {\n                                \"X\": 0.699650764465332,\n                                \"Y\": 0.704352080821991\n                            },\n                            {\n                                \"X\": 0.5973668694496155,\n                                \"Y\": 0.7042222023010254\n                            }\n                        ]\n                    },\n                    \"Id\": \"a8d9edf9-497e-4f52-9e99-1069164333d1\",\n                    \"Page\": 0\n                }\n            ]\n        }\n    ],\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"AnalyzeIDModelVersion\": \"1.0\",\n    \"ResponseMetadata\": {\n        \"RequestId\": \"40c63021-04ca-4c3c-906f-fa8094ff70b2\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"x-amzn-requestid\": \"40c63021-04ca-4c3c-906f-fa8094ff70b2\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"47256\",\n            \"date\": \"Tue, 22 Nov 2022 21:09:09 GMT\"\n        },\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/tests/data/test-trp2_analyzeid_sample2.json",
    "content": "{\n    \"DocumentMetadata\": {\n      \"Pages\": 1\n    },\n    \"AnalyzeIDModelVersion\": \"1.0\"\n  }"
  },
  {
    "path": "src-python/tests/data/test_table_merged_text.json",
    "content": "{\n  \"DocumentMetadata\": {\n    \"Pages\": 1\n  },\n  \"Blocks\": [\n    {\n      \"BlockType\": \"PAGE\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 1,\n          \"Height\": 1,\n          \"Left\": 0,\n          \"Top\": 0\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 0\n          },\n          {\n            \"X\": 1,\n            \"Y\": 1\n          },\n          {\n            \"X\": 0.001197676989249885,\n            \"Y\": 1\n          }\n        ]\n      },\n      \"Id\": \"56584882-b405-4899-aa9c-9a3b5879e25d\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7bd40731-d8b4-4a51-a0c1-0a618208c84f\",\n            \"f0a7c6c0-3a40-4499-b692-badfb4537089\",\n            \"2014cb41-2b56-471b-9c9c-ec8a8c754d41\",\n            \"00b4bab9-b798-4e6d-86b3-51c6e173a627\",\n            \"63543177-9364-4108-85b0-4fa67655efe3\",\n            \"e755317d-d43f-414e-afa1-6aed9284906b\",\n            \"adb41674-0e70-40a2-bd87-f9cbecc2b71f\",\n            \"afc52332-dca4-4c79-ae0f-be19388c95a3\",\n            \"1775e76b-2b35-48ea-8af6-7313077e1a79\",\n            \"eba0c33d-2a55-4f29-b2d4-3ba2cef278e0\",\n            \"89c908f0-ebf4-426d-8c34-661285b6a203\",\n            \"2c20e1c7-96a8-488c-8e7e-23a90c688b13\",\n            \"15451067-64ee-41c8-b98c-9abde74200ec\",\n            \"5143dd04-4f9a-4060-acd1-210788ac6a73\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95948028564453,\n      \"Text\": \"This is a sample table with merged cells\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7859023213386536,\n          \"Height\": 0.049826763570308685,\n          \"Left\": 0.03879841789603233,\n          \"Top\": 0.043981947004795074\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03879841789603233,\n            \"Y\": 0.04409027472138405\n          },\n          {\n            \"X\": 0.8246094584465027,\n            \"Y\": 0.043981947004795074\n          },\n          {\n            \"X\": 0.8247007131576538,\n            \"Y\": 0.09359156340360641\n          },\n          {\n            \"X\": 0.03890746086835861,\n            \"Y\": 0.09380871057510376\n          }\n        ]\n      },\n      \"Id\": \"7bd40731-d8b4-4a51-a0c1-0a618208c84f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c733525-c8a2-424a-a1ea-82880b87a801\",\n            \"94a4af54-38ac-4d56-92c4-14c1199309fa\",\n            \"ca167c96-3ad6-488f-bc5b-d943ce51212e\",\n            \"8ebe71d8-2fcd-4b17-9e39-d4ff189a7e6e\",\n            \"3a74257d-acad-432b-a726-19d9232c7825\",\n            \"cc502cf2-cbd3-4d3a-af01-0f2abe5c68d3\",\n            \"bf5b5fe4-9ec9-4d1f-9e95-b13d7ca19407\",\n            \"7f6b2087-2d87-4f09-a5da-7355e0ae8ba7\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.71804809570312,\n      \"Text\": \"header1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16703534126281738,\n          \"Height\": 0.04066329449415207,\n          \"Left\": 0.05388979986310005,\n          \"Top\": 0.18552131950855255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05388979986310005,\n            \"Y\": 0.18561014533042908\n          },\n          {\n            \"X\": 0.2208395153284073,\n            \"Y\": 0.18552131950855255\n          },\n          {\n            \"X\": 0.22092513740062714,\n            \"Y\": 0.22607693076133728\n          },\n          {\n            \"X\": 0.05397851765155792,\n            \"Y\": 0.22618462145328522\n          }\n        ]\n      },\n      \"Id\": \"f0a7c6c0-3a40-4499-b692-badfb4537089\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"acb088cc-ca9e-4f6f-b487-8bb353047122\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.76275634765625,\n      \"Text\": \"header2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16568957269191742,\n          \"Height\": 0.04207678139209747,\n          \"Left\": 0.24898141622543335,\n          \"Top\": 0.18551206588745117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24898141622543335,\n            \"Y\": 0.18560022115707397\n          },\n          {\n            \"X\": 0.41458603739738464,\n            \"Y\": 0.18551206588745117\n          },\n          {\n            \"X\": 0.4146709740161896,\n            \"Y\": 0.22748132050037384\n          },\n          {\n            \"X\": 0.24906954169273376,\n            \"Y\": 0.22758884727954865\n          }\n        ]\n      },\n      \"Id\": \"2014cb41-2b56-471b-9c9c-ec8a8c754d41\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c9b2fc97-7c31-4a0b-8fe7-369478c8180c\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.82616424560547,\n      \"Text\": \"header3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16621273756027222,\n          \"Height\": 0.04095470532774925,\n          \"Left\": 0.6178891658782959,\n          \"Top\": 0.185607448220253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6178891658782959,\n            \"Y\": 0.18569602072238922\n          },\n          {\n            \"X\": 0.784026026725769,\n            \"Y\": 0.185607448220253\n          },\n          {\n            \"X\": 0.7841019034385681,\n            \"Y\": 0.22645464539527893\n          },\n          {\n            \"X\": 0.6179681420326233,\n            \"Y\": 0.22656215727329254\n          }\n        ]\n      },\n      \"Id\": \"00b4bab9-b798-4e6d-86b3-51c6e173a627\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52f07b3f-602a-4f45-b2a1-dabda37df101\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.11540222167969,\n      \"Text\": \"val1.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11642618477344513,\n          \"Height\": 0.03959125652909279,\n          \"Left\": 0.05299392715096474,\n          \"Top\": 0.2569127678871155\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05299392715096474,\n            \"Y\": 0.2569977939128876\n          },\n          {\n            \"X\": 0.16933581233024597,\n            \"Y\": 0.2569127678871155\n          },\n          {\n            \"X\": 0.16942010819911957,\n            \"Y\": 0.29640617966651917\n          },\n          {\n            \"X\": 0.053080327808856964,\n            \"Y\": 0.29650402069091797\n          }\n        ]\n      },\n      \"Id\": \"63543177-9364-4108-85b0-4fa67655efe3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68234111-d3bb-421d-aad9-9e60b7300870\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.05032348632812,\n      \"Text\": \"val1.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11774497479200363,\n          \"Height\": 0.039663009345531464,\n          \"Left\": 0.24721607565879822,\n          \"Top\": 0.2568370997905731\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24721607565879822,\n            \"Y\": 0.256923109292984\n          },\n          {\n            \"X\": 0.3648800551891327,\n            \"Y\": 0.2568370997905731\n          },\n          {\n            \"X\": 0.36496105790138245,\n            \"Y\": 0.29640111327171326\n          },\n          {\n            \"X\": 0.2472991645336151,\n            \"Y\": 0.2965001165866852\n          }\n        ]\n      },\n      \"Id\": \"e755317d-d43f-414e-afa1-6aed9284906b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b87b402-29ec-4845-98f9-f1bba667a2bf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 96.00965118408203,\n      \"Text\": \"val1.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11872030794620514,\n          \"Height\": 0.04007701948285103,\n          \"Left\": 0.6157363653182983,\n          \"Top\": 0.2569427192211151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6157363653182983,\n            \"Y\": 0.25702959299087524\n          },\n          {\n            \"X\": 0.7343814373016357,\n            \"Y\": 0.2569427192211151\n          },\n          {\n            \"X\": 0.7344566583633423,\n            \"Y\": 0.29691964387893677\n          },\n          {\n            \"X\": 0.615813672542572,\n            \"Y\": 0.29701974987983704\n          }\n        ]\n      },\n      \"Id\": \"adb41674-0e70-40a2-bd87-f9cbecc2b71f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eae71fe4-96b6-4d02-8c73-826907d56ed6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.97176361083984,\n      \"Text\": \"now this is the merged cell\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5316206812858582,\n          \"Height\": 0.049959130585193634,\n          \"Left\": 0.056201815605163574,\n          \"Top\": 0.3294890820980072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.056201815605163574,\n            \"Y\": 0.3299856185913086\n          },\n          {\n            \"X\": 0.587726354598999,\n            \"Y\": 0.3294890820980072\n          },\n          {\n            \"X\": 0.5878224968910217,\n            \"Y\": 0.3788784444332123\n          },\n          {\n            \"X\": 0.05630991980433464,\n            \"Y\": 0.37944820523262024\n          }\n        ]\n      },\n      \"Id\": \"afc52332-dca4-4c79-ae0f-be19388c95a3\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e281653d-b403-402a-9b32-82a77e829324\",\n            \"b288d92a-c287-44e0-b7c4-b0960abc33e8\",\n            \"a1bf177c-6dd4-40bd-b580-245620d1ce52\",\n            \"8a27a9cb-ac15-4ec9-a592-2933b20bf1d3\",\n            \"e6451d81-e190-4c9f-a310-af46f26fda4d\",\n            \"83fac2f5-401d-45bf-ad4a-962ea7a5e3e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 97.50381469726562,\n      \"Text\": \"val2.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11911382526159286,\n          \"Height\": 0.03972634673118591,\n          \"Left\": 0.615288257598877,\n          \"Top\": 0.3304843604564667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.615288257598877,\n            \"Y\": 0.3305959403514862\n          },\n          {\n            \"X\": 0.7343275547027588,\n            \"Y\": 0.3304843604564667\n          },\n          {\n            \"X\": 0.734402060508728,\n            \"Y\": 0.3700859546661377\n          },\n          {\n            \"X\": 0.6153648495674133,\n            \"Y\": 0.3702107071876526\n          }\n        ]\n      },\n      \"Id\": \"1775e76b-2b35-48ea-8af6-7313077e1a79\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"764350f8-1103-4ccb-a38b-d9e52d7d6a35\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.33627319335938,\n      \"Text\": \"val3.1\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11806807667016983,\n          \"Height\": 0.04073937609791756,\n          \"Left\": 0.05251072347164154,\n          \"Top\": 0.4006824195384979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05251072347164154,\n            \"Y\": 0.4008159041404724\n          },\n          {\n            \"X\": 0.17049217224121094,\n            \"Y\": 0.4006824195384979\n          },\n          {\n            \"X\": 0.17057880759239197,\n            \"Y\": 0.4412749409675598\n          },\n          {\n            \"X\": 0.05259954184293747,\n            \"Y\": 0.441421777009964\n          }\n        ]\n      },\n      \"Id\": \"eba0c33d-2a55-4f29-b2d4-3ba2cef278e0\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"05f20f52-265d-41ce-afb1-18b5531eb3a1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.4439926147461,\n      \"Text\": \"val3.2\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11682683974504471,\n          \"Height\": 0.03991825506091118,\n          \"Left\": 0.24797354638576508,\n          \"Top\": 0.40184247493743896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24797354638576508,\n            \"Y\": 0.40197503566741943\n          },\n          {\n            \"X\": 0.3647189736366272,\n            \"Y\": 0.40184247493743896\n          },\n          {\n            \"X\": 0.3648003935813904,\n            \"Y\": 0.4416152536869049\n          },\n          {\n            \"X\": 0.2480570673942566,\n            \"Y\": 0.44176074862480164\n          }\n        ]\n      },\n      \"Id\": \"89c908f0-ebf4-426d-8c34-661285b6a203\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e08feb4d-b0c7-46aa-b85f-2f9affa541c0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 98.61087799072266,\n      \"Text\": \"val3.3\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11870817095041275,\n          \"Height\": 0.04016711190342903,\n          \"Left\": 0.6154464483261108,\n          \"Top\": 0.40169045329093933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6154464483261108,\n            \"Y\": 0.4018252193927765\n          },\n          {\n            \"X\": 0.7340793609619141,\n            \"Y\": 0.40169045329093933\n          },\n          {\n            \"X\": 0.7341546416282654,\n            \"Y\": 0.4417095482349396\n          },\n          {\n            \"X\": 0.6155238747596741,\n            \"Y\": 0.44185757637023926\n          }\n        ]\n      },\n      \"Id\": \"2c20e1c7-96a8-488c-8e7e-23a90c688b13\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7c3f7737-4baa-4ee8-b4bf-fefe68ec23f4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"LINE\",\n      \"Confidence\": 99.95592498779297,\n      \"Text\": \"Let's see if it works\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37488532066345215,\n          \"Height\": 0.04288940876722336,\n          \"Left\": 0.0415998138487339,\n          \"Top\": 0.6048625111579895\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0415998138487339,\n            \"Y\": 0.6055002808570862\n          },\n          {\n            \"X\": 0.4163997173309326,\n            \"Y\": 0.6048625111579895\n          },\n          {\n            \"X\": 0.41648513078689575,\n            \"Y\": 0.6470701098442078\n          },\n          {\n            \"X\": 0.041692450642585754,\n            \"Y\": 0.6477519273757935\n          }\n        ]\n      },\n      \"Id\": \"15451067-64ee-41c8-b98c-9abde74200ec\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"9e5063ff-62aa-4242-b4b0-bee2bc5ab84c\",\n            \"eab2bc90-a9fb-4683-b82d-24f17a6de0c6\",\n            \"14ed037f-59ca-4239-932c-6f801a3f97d3\",\n            \"e1983d52-e638-439d-a6b3-87ef3c7c9af5\",\n            \"48f57473-b362-4b88-bd39-9ef9dbd39bac\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98135375976562,\n      \"Text\": \"This\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08041474968194962,\n          \"Height\": 0.039723969995975494,\n          \"Left\": 0.038799040019512177,\n          \"Top\": 0.04436131566762924\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.038799040019512177,\n            \"Y\": 0.04437245428562164\n          },\n          {\n            \"X\": 0.11912814527750015,\n            \"Y\": 0.04436131566762924\n          },\n          {\n            \"X\": 0.1192137822508812,\n            \"Y\": 0.0840652659535408\n          },\n          {\n            \"X\": 0.03888613358139992,\n            \"Y\": 0.08408528566360474\n          }\n        ]\n      },\n      \"Id\": \"1c733525-c8a2-424a-a1ea-82880b87a801\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9885482788086,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.029110189527273178,\n          \"Height\": 0.03861371427774429,\n          \"Left\": 0.13122530281543732,\n          \"Top\": 0.04567457363009453\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.13122530281543732,\n            \"Y\": 0.04567870497703552\n          },\n          {\n            \"X\": 0.16025294363498688,\n            \"Y\": 0.04567457363009453\n          },\n          {\n            \"X\": 0.1603354960680008,\n            \"Y\": 0.08428103476762772\n          },\n          {\n            \"X\": 0.13130837678909302,\n            \"Y\": 0.08428828418254852\n          }\n        ]\n      },\n      \"Id\": \"94a4af54-38ac-4d56-92c4-14c1199309fa\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9610595703125,\n      \"Text\": \"a\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.02212461456656456,\n          \"Height\": 0.029546108096837997,\n          \"Left\": 0.17213401198387146,\n          \"Top\": 0.054625291377305984\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.17213401198387146,\n            \"Y\": 0.05462898313999176\n          },\n          {\n            \"X\": 0.19419589638710022,\n            \"Y\": 0.054625291377305984\n          },\n          {\n            \"X\": 0.19425861537456512,\n            \"Y\": 0.08416589349508286\n          },\n          {\n            \"X\": 0.17219702899456024,\n            \"Y\": 0.08417139947414398\n          }\n        ]\n      },\n      \"Id\": \"ca167c96-3ad6-488f-bc5b-d943ce51212e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.88107299804688,\n      \"Text\": \"sample\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.14315752685070038,\n          \"Height\": 0.049079395830631256,\n          \"Left\": 0.20695537328720093,\n          \"Top\": 0.044218502938747406\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.20695537328720093,\n            \"Y\": 0.044238291680812836\n          },\n          {\n            \"X\": 0.3500122129917145,\n            \"Y\": 0.044218502938747406\n          },\n          {\n            \"X\": 0.3501128852367401,\n            \"Y\": 0.09325855225324631\n          },\n          {\n            \"X\": 0.20705926418304443,\n            \"Y\": 0.09329789876937866\n          }\n        ]\n      },\n      \"Id\": \"8ebe71d8-2fcd-4b17-9e39-d4ff189a7e6e\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96760559082031,\n      \"Text\": \"table\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.10031009465456009,\n          \"Height\": 0.04070553556084633,\n          \"Left\": 0.36134058237075806,\n          \"Top\": 0.044072363525629044\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.36134058237075806,\n            \"Y\": 0.044086191803216934\n          },\n          {\n            \"X\": 0.4615691900253296,\n            \"Y\": 0.044072363525629044\n          },\n          {\n            \"X\": 0.46165066957473755,\n            \"Y\": 0.08475270122289658\n          },\n          {\n            \"X\": 0.36142393946647644,\n            \"Y\": 0.08477789908647537\n          }\n        ]\n      },\n      \"Id\": \"3a74257d-acad-432b-a726-19d9232c7825\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99501037597656,\n      \"Text\": \"with\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08839984983205795,\n          \"Height\": 0.04016248881816864,\n          \"Left\": 0.47247758507728577,\n          \"Top\": 0.04401831328868866\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.47247758507728577,\n            \"Y\": 0.04403049126267433\n          },\n          {\n            \"X\": 0.5607988238334656,\n            \"Y\": 0.04401831328868866\n          },\n          {\n            \"X\": 0.5608774423599243,\n            \"Y\": 0.08415874093770981\n          },\n          {\n            \"X\": 0.47255781292915344,\n            \"Y\": 0.0841808021068573\n          }\n        ]\n      },\n      \"Id\": \"cc502cf2-cbd3-4d3a-af01-0f2abe5c68d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92149353027344,\n      \"Text\": \"merged\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15077006816864014,\n          \"Height\": 0.048982441425323486,\n          \"Left\": 0.5746893882751465,\n          \"Top\": 0.044678185135126114\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5746893882751465,\n            \"Y\": 0.04469924420118332\n          },\n          {\n            \"X\": 0.7253672480583191,\n            \"Y\": 0.044678185135126114\n          },\n          {\n            \"X\": 0.7254594564437866,\n            \"Y\": 0.09361898899078369\n          },\n          {\n            \"X\": 0.5747849941253662,\n            \"Y\": 0.0936606228351593\n          }\n        ]\n      },\n      \"Id\": \"bf5b5fe4-9ec9-4d1f-9e95-b13d7ca19407\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97969818115234,\n      \"Text\": \"cells\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08598757535219193,\n          \"Height\": 0.04031060263514519,\n          \"Left\": 0.7386967539787292,\n          \"Top\": 0.044407621026039124\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.7386967539787292,\n            \"Y\": 0.04441956803202629\n          },\n          {\n            \"X\": 0.8246102333068848,\n            \"Y\": 0.044407621026039124\n          },\n          {\n            \"X\": 0.8246843218803406,\n            \"Y\": 0.08469661325216293\n          },\n          {\n            \"X\": 0.738772451877594,\n            \"Y\": 0.08471821993589401\n          }\n        ]\n      },\n      \"Id\": \"7f6b2087-2d87-4f09-a5da-7355e0ae8ba7\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.71804809570312,\n      \"Text\": \"header1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16703534126281738,\n          \"Height\": 0.04066329449415207,\n          \"Left\": 0.05388979986310005,\n          \"Top\": 0.18552131950855255\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05388979986310005,\n            \"Y\": 0.18561014533042908\n          },\n          {\n            \"X\": 0.2208395153284073,\n            \"Y\": 0.18552131950855255\n          },\n          {\n            \"X\": 0.22092513740062714,\n            \"Y\": 0.22607693076133728\n          },\n          {\n            \"X\": 0.05397851765155792,\n            \"Y\": 0.22618462145328522\n          }\n        ]\n      },\n      \"Id\": \"acb088cc-ca9e-4f6f-b487-8bb353047122\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.76275634765625,\n      \"Text\": \"header2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16568957269191742,\n          \"Height\": 0.04207678139209747,\n          \"Left\": 0.24898141622543335,\n          \"Top\": 0.18551206588745117\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24898141622543335,\n            \"Y\": 0.18560022115707397\n          },\n          {\n            \"X\": 0.41458603739738464,\n            \"Y\": 0.18551206588745117\n          },\n          {\n            \"X\": 0.4146709740161896,\n            \"Y\": 0.22748132050037384\n          },\n          {\n            \"X\": 0.24906954169273376,\n            \"Y\": 0.22758884727954865\n          }\n        ]\n      },\n      \"Id\": \"c9b2fc97-7c31-4a0b-8fe7-369478c8180c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.82616424560547,\n      \"Text\": \"header3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.16621273756027222,\n          \"Height\": 0.04095470532774925,\n          \"Left\": 0.6178891658782959,\n          \"Top\": 0.185607448220253\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6178891658782959,\n            \"Y\": 0.18569602072238922\n          },\n          {\n            \"X\": 0.784026026725769,\n            \"Y\": 0.185607448220253\n          },\n          {\n            \"X\": 0.7841019034385681,\n            \"Y\": 0.22645464539527893\n          },\n          {\n            \"X\": 0.6179681420326233,\n            \"Y\": 0.22656215727329254\n          }\n        ]\n      },\n      \"Id\": \"52f07b3f-602a-4f45-b2a1-dabda37df101\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.11540222167969,\n      \"Text\": \"val1.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11642618477344513,\n          \"Height\": 0.03959125652909279,\n          \"Left\": 0.05299392715096474,\n          \"Top\": 0.2569127678871155\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05299392715096474,\n            \"Y\": 0.2569977939128876\n          },\n          {\n            \"X\": 0.16933581233024597,\n            \"Y\": 0.2569127678871155\n          },\n          {\n            \"X\": 0.16942010819911957,\n            \"Y\": 0.29640617966651917\n          },\n          {\n            \"X\": 0.053080327808856964,\n            \"Y\": 0.29650402069091797\n          }\n        ]\n      },\n      \"Id\": \"68234111-d3bb-421d-aad9-9e60b7300870\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.05032348632812,\n      \"Text\": \"val1.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11774497479200363,\n          \"Height\": 0.039663009345531464,\n          \"Left\": 0.24721607565879822,\n          \"Top\": 0.2568370997905731\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24721607565879822,\n            \"Y\": 0.256923109292984\n          },\n          {\n            \"X\": 0.3648800551891327,\n            \"Y\": 0.2568370997905731\n          },\n          {\n            \"X\": 0.36496105790138245,\n            \"Y\": 0.29640111327171326\n          },\n          {\n            \"X\": 0.2472991645336151,\n            \"Y\": 0.2965001165866852\n          }\n        ]\n      },\n      \"Id\": \"8b87b402-29ec-4845-98f9-f1bba667a2bf\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 96.00965118408203,\n      \"Text\": \"val1.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11872030794620514,\n          \"Height\": 0.04007701948285103,\n          \"Left\": 0.6157363653182983,\n          \"Top\": 0.2569427192211151\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6157363653182983,\n            \"Y\": 0.25702959299087524\n          },\n          {\n            \"X\": 0.7343814373016357,\n            \"Y\": 0.2569427192211151\n          },\n          {\n            \"X\": 0.7344566583633423,\n            \"Y\": 0.29691964387893677\n          },\n          {\n            \"X\": 0.615813672542572,\n            \"Y\": 0.29701974987983704\n          }\n        ]\n      },\n      \"Id\": \"eae71fe4-96b6-4d02-8c73-826907d56ed6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9776382446289,\n      \"Text\": \"now\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08447134494781494,\n          \"Height\": 0.02891256846487522,\n          \"Left\": 0.05622616410255432,\n          \"Top\": 0.3410448133945465\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05622616410255432,\n            \"Y\": 0.34112629294395447\n          },\n          {\n            \"X\": 0.14063560962677002,\n            \"Y\": 0.3410448133945465\n          },\n          {\n            \"X\": 0.14069750905036926,\n            \"Y\": 0.3698691129684448\n          },\n          {\n            \"X\": 0.056289177387952805,\n            \"Y\": 0.3699573874473572\n          }\n        ]\n      },\n      \"Id\": \"e281653d-b403-402a-9b32-82a77e829324\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98445892333984,\n      \"Text\": \"this\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.07232356816530228,\n          \"Height\": 0.039789725095033646,\n          \"Left\": 0.15155184268951416,\n          \"Top\": 0.3303980529308319\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.15155184268951416,\n            \"Y\": 0.3304656744003296\n          },\n          {\n            \"X\": 0.22379159927368164,\n            \"Y\": 0.3303980529308319\n          },\n          {\n            \"X\": 0.22387540340423584,\n            \"Y\": 0.37011218070983887\n          },\n          {\n            \"X\": 0.15163695812225342,\n            \"Y\": 0.37018778920173645\n          }\n        ]\n      },\n      \"Id\": \"b288d92a-c287-44e0-b7c4-b0960abc33e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98780822753906,\n      \"Text\": \"is\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.03026973083615303,\n          \"Height\": 0.0389208123087883,\n          \"Left\": 0.23638330399990082,\n          \"Top\": 0.3314051330089569\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23638330399990082,\n            \"Y\": 0.3314334750175476\n          },\n          {\n            \"X\": 0.2665717303752899,\n            \"Y\": 0.3314051330089569\n          },\n          {\n            \"X\": 0.26665303111076355,\n            \"Y\": 0.37029433250427246\n          },\n          {\n            \"X\": 0.23646517097949982,\n            \"Y\": 0.3703259527683258\n          }\n        ]\n      },\n      \"Id\": \"a1bf177c-6dd4-40bd-b580-245620d1ce52\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.99649810791016,\n      \"Text\": \"the\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06670989096164703,\n          \"Height\": 0.040330920368433,\n          \"Left\": 0.2772209644317627,\n          \"Top\": 0.330180823802948\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2772209644317627,\n            \"Y\": 0.33024314045906067\n          },\n          {\n            \"X\": 0.3438480794429779,\n            \"Y\": 0.330180823802948\n          },\n          {\n            \"X\": 0.34393084049224854,\n            \"Y\": 0.3704419434070587\n          },\n          {\n            \"X\": 0.2773049771785736,\n            \"Y\": 0.3705117404460907\n          }\n        ]\n      },\n      \"Id\": \"8a27a9cb-ac15-4ec9-a592-2933b20bf1d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.92073059082031,\n      \"Text\": \"merged\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.15098132193088531,\n          \"Height\": 0.048663463443517685,\n          \"Left\": 0.35712239146232605,\n          \"Top\": 0.33046218752861023\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.35712239146232605,\n            \"Y\": 0.3306035101413727\n          },\n          {\n            \"X\": 0.5080075860023499,\n            \"Y\": 0.33046218752861023\n          },\n          {\n            \"X\": 0.5081037282943726,\n            \"Y\": 0.3789639174938202\n          },\n          {\n            \"X\": 0.3572218716144562,\n            \"Y\": 0.3791256546974182\n          }\n        ]\n      },\n      \"Id\": \"e6451d81-e190-4c9f-a310-af46f26fda4d\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.96344757080078,\n      \"Text\": \"cell\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06570356339216232,\n          \"Height\": 0.042145729064941406,\n          \"Left\": 0.5221047401428223,\n          \"Top\": 0.3294890820980072\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.5221047401428223,\n            \"Y\": 0.3295503854751587\n          },\n          {\n            \"X\": 0.587726354598999,\n            \"Y\": 0.3294890820980072\n          },\n          {\n            \"X\": 0.5878082513809204,\n            \"Y\": 0.3715658187866211\n          },\n          {\n            \"X\": 0.5221878886222839,\n            \"Y\": 0.3716348111629486\n          }\n        ]\n      },\n      \"Id\": \"83fac2f5-401d-45bf-ad4a-962ea7a5e3e8\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 97.50381469726562,\n      \"Text\": \"val2.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11911382526159286,\n          \"Height\": 0.03972634673118591,\n          \"Left\": 0.615288257598877,\n          \"Top\": 0.3304843604564667\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.615288257598877,\n            \"Y\": 0.3305959403514862\n          },\n          {\n            \"X\": 0.7343275547027588,\n            \"Y\": 0.3304843604564667\n          },\n          {\n            \"X\": 0.734402060508728,\n            \"Y\": 0.3700859546661377\n          },\n          {\n            \"X\": 0.6153648495674133,\n            \"Y\": 0.3702107071876526\n          }\n        ]\n      },\n      \"Id\": \"764350f8-1103-4ccb-a38b-d9e52d7d6a35\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.33627319335938,\n      \"Text\": \"val3.1\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11806807667016983,\n          \"Height\": 0.04073937609791756,\n          \"Left\": 0.05251072347164154,\n          \"Top\": 0.4006824195384979\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.05251072347164154,\n            \"Y\": 0.4008159041404724\n          },\n          {\n            \"X\": 0.17049217224121094,\n            \"Y\": 0.4006824195384979\n          },\n          {\n            \"X\": 0.17057880759239197,\n            \"Y\": 0.4412749409675598\n          },\n          {\n            \"X\": 0.05259954184293747,\n            \"Y\": 0.441421777009964\n          }\n        ]\n      },\n      \"Id\": \"05f20f52-265d-41ce-afb1-18b5531eb3a1\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.4439926147461,\n      \"Text\": \"val3.2\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11682683974504471,\n          \"Height\": 0.03991825506091118,\n          \"Left\": 0.24797354638576508,\n          \"Top\": 0.40184247493743896\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.24797354638576508,\n            \"Y\": 0.40197503566741943\n          },\n          {\n            \"X\": 0.3647189736366272,\n            \"Y\": 0.40184247493743896\n          },\n          {\n            \"X\": 0.3648003935813904,\n            \"Y\": 0.4416152536869049\n          },\n          {\n            \"X\": 0.2480570673942566,\n            \"Y\": 0.44176074862480164\n          }\n        ]\n      },\n      \"Id\": \"e08feb4d-b0c7-46aa-b85f-2f9affa541c0\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 98.61087799072266,\n      \"Text\": \"val3.3\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11870817095041275,\n          \"Height\": 0.04016711190342903,\n          \"Left\": 0.6154464483261108,\n          \"Top\": 0.40169045329093933\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6154464483261108,\n            \"Y\": 0.4018252193927765\n          },\n          {\n            \"X\": 0.7340793609619141,\n            \"Y\": 0.40169045329093933\n          },\n          {\n            \"X\": 0.7341546416282654,\n            \"Y\": 0.4417095482349396\n          },\n          {\n            \"X\": 0.6155238747596741,\n            \"Y\": 0.44185757637023926\n          }\n        ]\n      },\n      \"Id\": \"7c3f7737-4baa-4ee8-b4bf-fefe68ec23f4\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.8670425415039,\n      \"Text\": \"Let's\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.08877454698085785,\n          \"Height\": 0.040485162287950516,\n          \"Left\": 0.041601888835430145,\n          \"Top\": 0.6062942743301392\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.041601888835430145,\n            \"Y\": 0.6064454317092896\n          },\n          {\n            \"X\": 0.13028962910175323,\n            \"Y\": 0.6062942743301392\n          },\n          {\n            \"X\": 0.1303764283657074,\n            \"Y\": 0.6466183662414551\n          },\n          {\n            \"X\": 0.041690316051244736,\n            \"Y\": 0.646779477596283\n          }\n        ]\n      },\n      \"Id\": \"9e5063ff-62aa-4242-b4b0-bee2bc5ab84c\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98735809326172,\n      \"Text\": \"see\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.06778191775083542,\n          \"Height\": 0.030150841921567917,\n          \"Left\": 0.1416921317577362,\n          \"Top\": 0.6165418028831482\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.1416921317577362,\n            \"Y\": 0.6166591644287109\n          },\n          {\n            \"X\": 0.20941048860549927,\n            \"Y\": 0.6165418028831482\n          },\n          {\n            \"X\": 0.20947405695915222,\n            \"Y\": 0.6465696692466736\n          },\n          {\n            \"X\": 0.14175663888454437,\n            \"Y\": 0.64669269323349\n          }\n        ]\n      },\n      \"Id\": \"eab2bc90-a9fb-4683-b82d-24f17a6de0c6\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.9648666381836,\n      \"Text\": \"if\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027660392224788666,\n          \"Height\": 0.04168708994984627,\n          \"Left\": 0.22116434574127197,\n          \"Top\": 0.6051478385925293\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.22116434574127197,\n            \"Y\": 0.6051947474479675\n          },\n          {\n            \"X\": 0.24873733520507812,\n            \"Y\": 0.6051478385925293\n          },\n          {\n            \"X\": 0.24882474541664124,\n            \"Y\": 0.646784782409668\n          },\n          {\n            \"X\": 0.22125227749347687,\n            \"Y\": 0.6468349099159241\n          }\n        ]\n      },\n      \"Id\": \"14ed037f-59ca-4239-932c-6f801a3f97d3\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.97908782958984,\n      \"Text\": \"it\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.027097899466753006,\n          \"Height\": 0.03944561257958412,\n          \"Left\": 0.25958147644996643,\n          \"Top\": 0.6074137687683105\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.25958147644996643,\n            \"Y\": 0.6074599027633667\n          },\n          {\n            \"X\": 0.286597341299057,\n            \"Y\": 0.6074137687683105\n          },\n          {\n            \"X\": 0.28667938709259033,\n            \"Y\": 0.6468102335929871\n          },\n          {\n            \"X\": 0.25966399908065796,\n            \"Y\": 0.646859347820282\n          }\n        ]\n      },\n      \"Id\": \"e1983d52-e638-439d-a6b3-87ef3c7c9af5\"\n    },\n    {\n      \"BlockType\": \"WORD\",\n      \"Confidence\": 99.98125457763672,\n      \"Text\": \"works\",\n      \"TextType\": \"PRINTED\",\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.11969409137964249,\n          \"Height\": 0.04094703868031502,\n          \"Left\": 0.29679104685783386,\n          \"Top\": 0.6063406467437744\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.29679104685783386,\n            \"Y\": 0.6065446734428406\n          },\n          {\n            \"X\": 0.4164026975631714,\n            \"Y\": 0.6063406467437744\n          },\n          {\n            \"X\": 0.41648513078689575,\n            \"Y\": 0.6470701098442078\n          },\n          {\n            \"X\": 0.2968756854534149,\n            \"Y\": 0.6472877264022827\n          }\n        ]\n      },\n      \"Id\": \"48f57473-b362-4b88-bd39-9ef9dbd39bac\"\n    },\n    {\n      \"BlockType\": \"TABLE\",\n      \"Confidence\": 98.193359375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7570760846138,\n          \"Height\": 0.28750717639923096,\n          \"Left\": 0.0394335575401783,\n          \"Top\": 0.16680370271205902\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0394335575401783,\n            \"Y\": 0.16716735064983368\n          },\n          {\n            \"X\": 0.7959787249565125,\n            \"Y\": 0.16680370271205902\n          },\n          {\n            \"X\": 0.7965096235275269,\n            \"Y\": 0.4533423185348511\n          },\n          {\n            \"X\": 0.04006325826048851,\n            \"Y\": 0.45431089401245117\n          }\n        ]\n      },\n      \"Id\": \"5143dd04-4f9a-4060-acd1-210788ac6a73\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1576b9e-2d78-4af3-8b3e-d4ac41e593ea\",\n            \"122de041-5085-4678-861c-49f73507004f\",\n            \"385cc121-2240-43ab-8bfa-374092c72ee8\",\n            \"7fb79e82-026d-4639-a2f0-9ba3fc6b175c\",\n            \"f3d96bbe-3d58-4794-a4b6-89f0cbd592c4\",\n            \"19f34a49-d398-440d-95b1-2f702f898e80\",\n            \"8ed39f90-36d4-41e9-a859-7721a628d691\",\n            \"ff03e123-08c6-4918-9468-fa537a8b6adb\",\n            \"c627b94b-755d-4f99-bdc3-d3ef0b2456ab\",\n            \"017f4169-7f62-46cc-ad92-c2b105b3517b\",\n            \"a1fee4ea-b9d5-41e6-8fcb-8406ea019295\",\n            \"f6eddbf1-f071-4f39-8dbf-3a91c8a8628a\"\n          ]\n        },\n        {\n          \"Type\": \"MERGED_CELL\",\n          \"Ids\": [\n            \"52bf4b5a-0033-412d-805b-87a84df5abab\"\n          ]\n        },\n        {\n          \"Type\": \"TABLE_TITLE\",\n          \"Ids\": [\n            \"b4a392b0-783c-4910-81ad-ea871985ebb6\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"STRUCTURED_TABLE\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.572265625,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19172410666942596,\n          \"Height\": 0.07080826908349991,\n          \"Left\": 0.0394335575401783,\n          \"Top\": 0.1670752614736557\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.0394335575401783,\n            \"Y\": 0.16716735064983368\n          },\n          {\n            \"X\": 0.23100875318050385,\n            \"Y\": 0.1670752614736557\n          },\n          {\n            \"X\": 0.23115766048431396,\n            \"Y\": 0.2377537190914154\n          },\n          {\n            \"X\": 0.03958863765001297,\n            \"Y\": 0.2378835380077362\n          }\n        ]\n      },\n      \"Id\": \"a1576b9e-2d78-4af3-8b3e-d4ac41e593ea\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"acb088cc-ca9e-4f6f-b487-8bb353047122\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.892578125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37062695622444153,\n          \"Height\": 0.07085654139518738,\n          \"Left\": 0.23100875318050385,\n          \"Top\": 0.16689717769622803\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23100875318050385,\n            \"Y\": 0.1670752614736557\n          },\n          {\n            \"X\": 0.6014987230300903,\n            \"Y\": 0.16689717769622803\n          },\n          {\n            \"X\": 0.6016356945037842,\n            \"Y\": 0.23750267922878265\n          },\n          {\n            \"X\": 0.23115766048431396,\n            \"Y\": 0.2377537190914154\n          }\n        ]\n      },\n      \"Id\": \"122de041-5085-4678-861c-49f73507004f\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"c9b2fc97-7c31-4a0b-8fe7-369478c8180c\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.76953125,\n      \"RowIndex\": 1,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19461074471473694,\n          \"Height\": 0.07069897651672363,\n          \"Left\": 0.6014987230300903,\n          \"Top\": 0.16680370271205902\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6014987230300903,\n            \"Y\": 0.16689717769622803\n          },\n          {\n            \"X\": 0.7959787249565125,\n            \"Y\": 0.16680370271205902\n          },\n          {\n            \"X\": 0.7961094379425049,\n            \"Y\": 0.23737089335918427\n          },\n          {\n            \"X\": 0.6016356945037842,\n            \"Y\": 0.23750267922878265\n          }\n        ]\n      },\n      \"Id\": \"385cc121-2240-43ab-8bfa-374092c72ee8\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"52f07b3f-602a-4f45-b2a1-dabda37df101\"\n          ]\n        }\n      ],\n      \"EntityTypes\": [\n        \"COLUMN_HEADER\"\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 87.744140625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19172392785549164,\n          \"Height\": 0.0736919417977333,\n          \"Left\": 0.03958863765001297,\n          \"Top\": 0.2377537190914154\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03958863765001297,\n            \"Y\": 0.2378835380077362\n          },\n          {\n            \"X\": 0.23115766048431396,\n            \"Y\": 0.2377537190914154\n          },\n          {\n            \"X\": 0.231312558054924,\n            \"Y\": 0.3112766146659851\n          },\n          {\n            \"X\": 0.039749957621097565,\n            \"Y\": 0.3114456534385681\n          }\n        ]\n      },\n      \"Id\": \"7fb79e82-026d-4639-a2f0-9ba3fc6b175c\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"68234111-d3bb-421d-aad9-9e60b7300870\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.11328125,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.3706205487251282,\n          \"Height\": 0.07377392798662186,\n          \"Left\": 0.23115766048431396,\n          \"Top\": 0.23750267922878265\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.23115766048431396,\n            \"Y\": 0.2377537190914154\n          },\n          {\n            \"X\": 0.6016356945037842,\n            \"Y\": 0.23750267922878265\n          },\n          {\n            \"X\": 0.6017782092094421,\n            \"Y\": 0.3109496831893921\n          },\n          {\n            \"X\": 0.231312558054924,\n            \"Y\": 0.3112766146659851\n          }\n        ]\n      },\n      \"Id\": \"f3d96bbe-3d58-4794-a4b6-89f0cbd592c4\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8b87b402-29ec-4845-98f9-f1bba667a2bf\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 89.94140625,\n      \"RowIndex\": 2,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19460976123809814,\n          \"Height\": 0.07357876747846603,\n          \"Left\": 0.6016356945037842,\n          \"Top\": 0.23737089335918427\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6016356945037842,\n            \"Y\": 0.23750267922878265\n          },\n          {\n            \"X\": 0.7961094379425049,\n            \"Y\": 0.23737089335918427\n          },\n          {\n            \"X\": 0.7962454557418823,\n            \"Y\": 0.31077805161476135\n          },\n          {\n            \"X\": 0.6017782092094421,\n            \"Y\": 0.3109496831893921\n          }\n        ]\n      },\n      \"Id\": \"19f34a49-d398-440d-95b1-2f702f898e80\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"eae71fe4-96b6-4d02-8c73-826907d56ed6\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.083984375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19129467010498047,\n          \"Height\": 0.0712740421295166,\n          \"Left\": 0.04016762226819992,\n          \"Top\": 0.3112766146659851\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.04016762226819992,\n            \"Y\": 0.31144529581069946\n          },\n          {\n            \"X\": 0.231312558054924,\n            \"Y\": 0.3112766146659851\n          },\n          {\n            \"X\": 0.2314622849225998,\n            \"Y\": 0.382344126701355\n          },\n          {\n            \"X\": 0.040323540568351746,\n            \"Y\": 0.3825506567955017\n          }\n        ]\n      },\n      \"Id\": \"8ed39f90-36d4-41e9-a859-7721a628d691\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e281653d-b403-402a-9b32-82a77e829324\",\n            \"b288d92a-c287-44e0-b7c4-b0960abc33e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 86.083984375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37060341238975525,\n          \"Height\": 0.07139444351196289,\n          \"Left\": 0.231312558054924,\n          \"Top\": 0.3109496831893921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.231312558054924,\n            \"Y\": 0.3112766146659851\n          },\n          {\n            \"X\": 0.6017782092094421,\n            \"Y\": 0.3109496831893921\n          },\n          {\n            \"X\": 0.6019159555435181,\n            \"Y\": 0.38194382190704346\n          },\n          {\n            \"X\": 0.2314622849225998,\n            \"Y\": 0.382344126701355\n          }\n        ]\n      },\n      \"Id\": \"ff03e123-08c6-4918-9468-fa537a8b6adb\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"a1bf177c-6dd4-40bd-b580-245620d1ce52\",\n            \"8a27a9cb-ac15-4ec9-a592-2933b20bf1d3\",\n            \"e6451d81-e190-4c9f-a310-af46f26fda4d\",\n            \"83fac2f5-401d-45bf-ad4a-962ea7a5e3e8\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.96484375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1945987343788147,\n          \"Height\": 0.07116576284170151,\n          \"Left\": 0.6017782092094421,\n          \"Top\": 0.31077805161476135\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6017782092094421,\n            \"Y\": 0.3109496831893921\n          },\n          {\n            \"X\": 0.7962454557418823,\n            \"Y\": 0.31077805161476135\n          },\n          {\n            \"X\": 0.7963769435882568,\n            \"Y\": 0.3817336857318878\n          },\n          {\n            \"X\": 0.6019159555435181,\n            \"Y\": 0.38194382190704346\n          }\n        ]\n      },\n      \"Id\": \"c627b94b-755d-4f99-bdc3-d3ef0b2456ab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"764350f8-1103-4ccb-a38b-d9e52d7d6a35\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 88.37890625,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.19170750677585602,\n          \"Height\": 0.07196677476167679,\n          \"Left\": 0.039905890822410583,\n          \"Top\": 0.382344126701355\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.039905890822410583,\n            \"Y\": 0.3825511038303375\n          },\n          {\n            \"X\": 0.2314622849225998,\n            \"Y\": 0.382344126701355\n          },\n          {\n            \"X\": 0.2316133975982666,\n            \"Y\": 0.45406562089920044\n          },\n          {\n            \"X\": 0.04006325826048851,\n            \"Y\": 0.45431089401245117\n          }\n        ]\n      },\n      \"Id\": \"017f4169-7f62-46cc-ad92-c2b105b3517b\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"05f20f52-265d-41ce-afb1-18b5531eb3a1\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 91.748046875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 2,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.37059271335601807,\n          \"Height\": 0.07212180644273758,\n          \"Left\": 0.2314622849225998,\n          \"Top\": 0.38194382190704346\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.2314622849225998,\n            \"Y\": 0.382344126701355\n          },\n          {\n            \"X\": 0.6019159555435181,\n            \"Y\": 0.38194382190704346\n          },\n          {\n            \"X\": 0.602055013179779,\n            \"Y\": 0.4535912871360779\n          },\n          {\n            \"X\": 0.2316133975982666,\n            \"Y\": 0.45406562089920044\n          }\n        ]\n      },\n      \"Id\": \"a1fee4ea-b9d5-41e6-8fcb-8406ea019295\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"e08feb4d-b0c7-46aa-b85f-2f9affa541c0\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"CELL\",\n      \"Confidence\": 90.576171875,\n      \"RowIndex\": 4,\n      \"ColumnIndex\": 3,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 1,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.1945936679840088,\n          \"Height\": 0.07185760885477066,\n          \"Left\": 0.6019159555435181,\n          \"Top\": 0.3817336857318878\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.6019159555435181,\n            \"Y\": 0.38194382190704346\n          },\n          {\n            \"X\": 0.7963769435882568,\n            \"Y\": 0.3817336857318878\n          },\n          {\n            \"X\": 0.7965096235275269,\n            \"Y\": 0.4533423185348511\n          },\n          {\n            \"X\": 0.602055013179779,\n            \"Y\": 0.4535912871360779\n          }\n        ]\n      },\n      \"Id\": \"f6eddbf1-f071-4f39-8dbf-3a91c8a8628a\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"7c3f7737-4baa-4ee8-b4bf-fefe68ec23f4\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"MERGED_CELL\",\n      \"Confidence\": 86.083984375,\n      \"RowIndex\": 3,\n      \"ColumnIndex\": 1,\n      \"RowSpan\": 1,\n      \"ColumnSpan\": 2,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.5621660351753235,\n          \"Height\": 0.07160142809152603,\n          \"Left\": 0.039749957621097565,\n          \"Top\": 0.3109496831893921\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.039749957621097565,\n            \"Y\": 0.3114456534385681\n          },\n          {\n            \"X\": 0.6017782092094421,\n            \"Y\": 0.3109496831893921\n          },\n          {\n            \"X\": 0.6019159555435181,\n            \"Y\": 0.38194382190704346\n          },\n          {\n            \"X\": 0.039905890822410583,\n            \"Y\": 0.3825511038303375\n          }\n        ]\n      },\n      \"Id\": \"52bf4b5a-0033-412d-805b-87a84df5abab\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"8ed39f90-36d4-41e9-a859-7721a628d691\",\n            \"ff03e123-08c6-4918-9468-fa537a8b6adb\"\n          ]\n        }\n      ]\n    },\n    {\n      \"BlockType\": \"TABLE_TITLE\",\n      \"Confidence\": 99.755859375,\n      \"Geometry\": {\n        \"BoundingBox\": {\n          \"Width\": 0.7868390083312988,\n          \"Height\": 0.0510106086730957,\n          \"Left\": 0.03771836310625076,\n          \"Top\": 0.04247433319687843\n        },\n        \"Polygon\": [\n          {\n            \"X\": 0.03771836310625076,\n            \"Y\": 0.04257947951555252\n          },\n          {\n            \"X\": 0.8244639039039612,\n            \"Y\": 0.04247433319687843\n          },\n          {\n            \"X\": 0.824557363986969,\n            \"Y\": 0.0932682529091835\n          },\n          {\n            \"X\": 0.03783003240823746,\n            \"Y\": 0.09348493814468384\n          }\n        ]\n      },\n      \"Id\": \"b4a392b0-783c-4910-81ad-ea871985ebb6\",\n      \"Relationships\": [\n        {\n          \"Type\": \"CHILD\",\n          \"Ids\": [\n            \"1c733525-c8a2-424a-a1ea-82880b87a801\",\n            \"94a4af54-38ac-4d56-92c4-14c1199309fa\",\n            \"ca167c96-3ad6-488f-bc5b-d943ce51212e\",\n            \"8ebe71d8-2fcd-4b17-9e39-d4ff189a7e6e\",\n            \"3a74257d-acad-432b-a726-19d9232c7825\",\n            \"cc502cf2-cbd3-4d3a-af01-0f2abe5c68d3\",\n            \"bf5b5fe4-9ec9-4d1f-9e95-b13d7ca19407\",\n            \"7f6b2087-2d87-4f09-a5da-7355e0ae8ba7\"\n          ]\n        }\n      ]\n    }\n  ],\n  \"AnalyzeDocumentModelVersion\": \"1.0\"\n}"
  },
  {
    "path": "src-python/tests/data/test_trp2_expense_sample1.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"ExpenseDocuments\": [\n        {\n            \"ExpenseIndex\": 1,\n            \"SummaryFields\": [\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"TOTAL DUE:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10187064111232758,\n                                \"Height\": 0.020606426522135735,\n                                \"Left\": 0.04050878435373306,\n                                \"Top\": 0.7506563663482666\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.04050878435373306,\n                                    \"Y\": 0.7506563663482666\n                                },\n                                {\n                                    \"X\": 0.14237943291664124,\n                                    \"Y\": 0.7506563663482666\n                                },\n                                {\n                                    \"X\": 0.14237943291664124,\n                                    \"Y\": 0.7712628245353699\n                                },\n                                {\n                                    \"X\": 0.04050878435373306,\n                                    \"Y\": 0.7712628245353699\n                                }\n                            ]\n                        },\n                        \"Confidence\": 73.33968353271484\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$50.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.060245633125305176,\n                                \"Height\": 0.019479695707559586,\n                                \"Left\": 0.40704822540283203,\n                                \"Top\": 0.7518746256828308\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.40704822540283203,\n                                    \"Y\": 0.7518746256828308\n                                },\n                                {\n                                    \"X\": 0.4672938585281372,\n                                    \"Y\": 0.7518746256828308\n                                },\n                                {\n                                    \"X\": 0.4672938585281372,\n                                    \"Y\": 0.7713543176651001\n                                },\n                                {\n                                    \"X\": 0.40704822540283203,\n                                    \"Y\": 0.7713543176651001\n                                }\n                            ]\n                        },\n                        \"Confidence\": 73.85935974121094\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"This is your Balance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.14267705380916595,\n                                \"Height\": 0.02134462632238865,\n                                \"Left\": 0.539691686630249,\n                                \"Top\": 0.9158206582069397\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.539691686630249,\n                                    \"Y\": 0.9158206582069397\n                                },\n                                {\n                                    \"X\": 0.6823687553405762,\n                                    \"Y\": 0.9158206582069397\n                                },\n                                {\n                                    \"X\": 0.6823687553405762,\n                                    \"Y\": 0.9371653199195862\n                                },\n                                {\n                                    \"X\": 0.539691686630249,\n                                    \"Y\": 0.9371653199195862\n                                }\n                            ]\n                        },\n                        \"Confidence\": 38.98268508911133\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$50.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05975833535194397,\n                                \"Height\": 0.01949451118707657,\n                                \"Left\": 0.9102858304977417,\n                                \"Top\": 0.9157606363296509\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.9102858304977417,\n                                    \"Y\": 0.9157606363296509\n                                },\n                                {\n                                    \"X\": 0.9700441360473633,\n                                    \"Y\": 0.9157606363296509\n                                },\n                                {\n                                    \"X\": 0.9700441360473633,\n                                    \"Y\": 0.9352551102638245\n                                },\n                                {\n                                    \"X\": 0.9102858304977417,\n                                    \"Y\": 0.9352551102638245\n                                }\n                            ]\n                        },\n                        \"Confidence\": 38.94996643066406\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Insurance Name Name of Insured\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11674316227436066,\n                                \"Height\": 0.03494824469089508,\n                                \"Left\": 0.5306582450866699,\n                                \"Top\": 0.1499636471271515\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5306582450866699,\n                                    \"Y\": 0.1499636471271515\n                                },\n                                {\n                                    \"X\": 0.6474013924598694,\n                                    \"Y\": 0.1499636471271515\n                                },\n                                {\n                                    \"X\": 0.6474013924598694,\n                                    \"Y\": 0.18491189181804657\n                                },\n                                {\n                                    \"X\": 0.5306582450866699,\n                                    \"Y\": 0.18491189181804657\n                                }\n                            ]\n                        },\n                        \"Confidence\": 22.94961929321289\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"MVP HEALTH CARE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15530988574028015,\n                                \"Height\": 0.018872195854783058,\n                                \"Left\": 0.8149554133415222,\n                                \"Top\": 0.1470312774181366\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8149554133415222,\n                                    \"Y\": 0.1470312774181366\n                                },\n                                {\n                                    \"X\": 0.97026526927948,\n                                    \"Y\": 0.1470312774181366\n                                },\n                                {\n                                    \"X\": 0.97026526927948,\n                                    \"Y\": 0.1659034639596939\n                                },\n                                {\n                                    \"X\": 0.8149554133415222,\n                                    \"Y\": 0.1659034639596939\n                                }\n                            ]\n                        },\n                        \"Confidence\": 23.448503494262695\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"ACCOUNT SUMMARY\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.20366433262825012,\n                                \"Height\": 0.023925090208649635,\n                                \"Left\": 0.5233715772628784,\n                                \"Top\": 0.6212637424468994\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5233715772628784,\n                                    \"Y\": 0.6212637424468994\n                                },\n                                {\n                                    \"X\": 0.7270358800888062,\n                                    \"Y\": 0.6212637424468994\n                                },\n                                {\n                                    \"X\": 0.7270358800888062,\n                                    \"Y\": 0.6451888084411621\n                                },\n                                {\n                                    \"X\": 0.5233715772628784,\n                                    \"Y\": 0.6451888084411621\n                                }\n                            ]\n                        },\n                        \"Confidence\": 21.41339874267578\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Statement Date 09/30/10 Date(s) of Service) 07/31/10 - 08/02/10 Acsount-Number V00479485\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.44891777634620667,\n                                \"Height\": 0.06635869294404984,\n                                \"Left\": 0.5260832905769348,\n                                \"Top\": 0.6615790128707886\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5260832905769348,\n                                    \"Y\": 0.6615790128707886\n                                },\n                                {\n                                    \"X\": 0.9750010967254639,\n                                    \"Y\": 0.6615790128707886\n                                },\n                                {\n                                    \"X\": 0.9750010967254639,\n                                    \"Y\": 0.7279376983642578\n                                },\n                                {\n                                    \"X\": 0.5260832905769348,\n                                    \"Y\": 0.7279376983642578\n                                }\n                            ]\n                        },\n                        \"Confidence\": 19.516674041748047\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"SECONDARY NONE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12472288310527802,\n                                \"Height\": 0.0402744859457016,\n                                \"Left\": 0.5310845971107483,\n                                \"Top\": 0.25406548380851746\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5310845971107483,\n                                    \"Y\": 0.25406548380851746\n                                },\n                                {\n                                    \"X\": 0.6558074951171875,\n                                    \"Y\": 0.25406548380851746\n                                },\n                                {\n                                    \"X\": 0.6558074951171875,\n                                    \"Y\": 0.29433995485305786\n                                },\n                                {\n                                    \"X\": 0.5310845971107483,\n                                    \"Y\": 0.29433995485305786\n                                }\n                            ]\n                        },\n                        \"Confidence\": 15.2615966796875\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.16716742515563965,\n                                \"Height\": 0.04309350997209549,\n                                \"Left\": 0.6372056007385254,\n                                \"Top\": 0.2513543367385864\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6372056007385254,\n                                    \"Y\": 0.2513543367385864\n                                },\n                                {\n                                    \"X\": 0.804373025894165,\n                                    \"Y\": 0.2513543367385864\n                                },\n                                {\n                                    \"X\": 0.804373025894165,\n                                    \"Y\": 0.2944478392601013\n                                },\n                                {\n                                    \"X\": 0.6372056007385254,\n                                    \"Y\": 0.2944478392601013\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Insurance Adjustments Applied\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2220301330089569,\n                                \"Height\": 0.02153257094323635,\n                                \"Left\": 0.5297521352767944,\n                                \"Top\": 0.8380078673362732\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5297521352767944,\n                                    \"Y\": 0.8380078673362732\n                                },\n                                {\n                                    \"X\": 0.7517822980880737,\n                                    \"Y\": 0.8380078673362732\n                                },\n                                {\n                                    \"X\": 0.7517822980880737,\n                                    \"Y\": 0.8595404028892517\n                                },\n                                {\n                                    \"X\": 0.5297521352767944,\n                                    \"Y\": 0.8595404028892517\n                                }\n                            ]\n                        },\n                        \"Confidence\": 12.989358901977539\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$-19172.54\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1030738577246666,\n                                \"Height\": 0.01991266943514347,\n                                \"Left\": 0.8672584295272827,\n                                \"Top\": 0.8378024101257324\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8672584295272827,\n                                    \"Y\": 0.8378024101257324\n                                },\n                                {\n                                    \"X\": 0.9703323245048523,\n                                    \"Y\": 0.8378024101257324\n                                },\n                                {\n                                    \"X\": 0.9703323245048523,\n                                    \"Y\": 0.8577151298522949\n                                },\n                                {\n                                    \"X\": 0.8672584295272827,\n                                    \"Y\": 0.8577151298522949\n                                }\n                            ]\n                        },\n                        \"Confidence\": 12.894639015197754\n                    },\n                    \"PageNumber\": 1\n                }\n            ],\n            \"LineItemGroups\": [\n                {\n                    \"LineItemGroupIndex\": 1,\n                    \"LineItems\": [\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.81328582763672\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"COR CARE POST CCU\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.1750345677137375,\n                                                \"Height\": 0.01895451545715332,\n                                                \"Left\": 0.04346286132931709,\n                                                \"Top\": 0.18498924374580383\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04346286132931709,\n                                                    \"Y\": 0.18498924374580383\n                                                },\n                                                {\n                                                    \"X\": 0.21849742531776428,\n                                                    \"Y\": 0.18498924374580383\n                                                },\n                                                {\n                                                    \"X\": 0.21849742531776428,\n                                                    \"Y\": 0.20394375920295715\n                                                },\n                                                {\n                                                    \"X\": 0.04346286132931709,\n                                                    \"Y\": 0.20394375920295715\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.03194427490234\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.81328582763672\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"0.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.037220023572444916,\n                                                \"Height\": 0.016427259892225266,\n                                                \"Left\": 0.42672815918922424,\n                                                \"Top\": 0.1862528771162033\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.42672815918922424,\n                                                    \"Y\": 0.1862528771162033\n                                                },\n                                                {\n                                                    \"X\": 0.46394819021224976,\n                                                    \"Y\": 0.1862528771162033\n                                                },\n                                                {\n                                                    \"X\": 0.46394819021224976,\n                                                    \"Y\": 0.20268014073371887\n                                                },\n                                                {\n                                                    \"X\": 0.42672815918922424,\n                                                    \"Y\": 0.20268014073371887\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.61265563964844\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.81328582763672\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"COR CARE POST CCU 0.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.026334188878536224,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.18183016777038574\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.18183016777038574\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.18183016777038574\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.20816434919834137\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.20816434919834137\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.93055725097656\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.30967712402344\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"PHARMACY GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.1760879009962082,\n                                                \"Height\": 0.01912541128695011,\n                                                \"Left\": 0.04317716881632805,\n                                                \"Top\": 0.20816434919834137\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04317716881632805,\n                                                    \"Y\": 0.20816434919834137\n                                                },\n                                                {\n                                                    \"X\": 0.21926507353782654,\n                                                    \"Y\": 0.20816434919834137\n                                                },\n                                                {\n                                                    \"X\": 0.21926507353782654,\n                                                    \"Y\": 0.22728976607322693\n                                                },\n                                                {\n                                                    \"X\": 0.04317716881632805,\n                                                    \"Y\": 0.22728976607322693\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.04426574707031\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.30967712402344\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"379.50\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.05936678498983383,\n                                                \"Height\": 0.016575366258621216,\n                                                \"Left\": 0.407427579164505,\n                                                \"Top\": 0.2107143998146057\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.407427579164505,\n                                                    \"Y\": 0.2107143998146057\n                                                },\n                                                {\n                                                    \"X\": 0.46679437160491943,\n                                                    \"Y\": 0.2107143998146057\n                                                },\n                                                {\n                                                    \"X\": 0.46679437160491943,\n                                                    \"Y\": 0.22728976607322693\n                                                },\n                                                {\n                                                    \"X\": 0.407427579164505,\n                                                    \"Y\": 0.22728976607322693\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.31014251708984\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.30967712402344\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"PHARMACY GENERAL 379.50\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.026775607839226723,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.20497675240039825\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.20497675240039825\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.20497675240039825\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.23175236582756042\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.23175236582756042\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.79893493652344\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.48686981201172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"M/S SUPPLY GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.18221448361873627,\n                                                \"Height\": 0.019218815490603447,\n                                                \"Left\": 0.04429744929075241,\n                                                \"Top\": 0.23241740465164185\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04429744929075241,\n                                                    \"Y\": 0.23241740465164185\n                                                },\n                                                {\n                                                    \"X\": 0.22651194036006927,\n                                                    \"Y\": 0.23241740465164185\n                                                },\n                                                {\n                                                    \"X\": 0.22651194036006927,\n                                                    \"Y\": 0.25163620710372925\n                                                },\n                                                {\n                                                    \"X\": 0.04429744929075241,\n                                                    \"Y\": 0.25163620710372925\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 81.98705291748047\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.48686981201172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"78.47\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.05134221538901329,\n                                                \"Height\": 0.0166563019156456,\n                                                \"Left\": 0.4157733619213104,\n                                                \"Top\": 0.23369865119457245\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4157733619213104,\n                                                    \"Y\": 0.23369865119457245\n                                                },\n                                                {\n                                                    \"X\": 0.467115581035614,\n                                                    \"Y\": 0.23369865119457245\n                                                },\n                                                {\n                                                    \"X\": 0.467115581035614,\n                                                    \"Y\": 0.25035494565963745\n                                                },\n                                                {\n                                                    \"X\": 0.4157733619213104,\n                                                    \"Y\": 0.25035494565963745\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.41236877441406\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.48686981201172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"M/S SUPPLY GENERAL 78.47\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.028187550604343414,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.22793301939964294\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.22793301939964294\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.22793301939964294\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.25612056255340576\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.25612056255340576\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 85.37724304199219\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 98.08004760742188\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"M/S SUPPLY STERILE SUPPLY\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.2376410812139511,\n                                                \"Height\": 0.01919158175587654,\n                                                \"Left\": 0.04418531805276871,\n                                                \"Top\": 0.2560480535030365\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04418531805276871,\n                                                    \"Y\": 0.2560480535030365\n                                                },\n                                                {\n                                                    \"X\": 0.2818264067173004,\n                                                    \"Y\": 0.2560480535030365\n                                                },\n                                                {\n                                                    \"X\": 0.2818264067173004,\n                                                    \"Y\": 0.27523964643478394\n                                                },\n                                                {\n                                                    \"X\": 0.04418531805276871,\n                                                    \"Y\": 0.27523964643478394\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.35414123535156\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 98.08004760742188\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"127.20\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.061424169689416885,\n                                                \"Height\": 0.016632722690701485,\n                                                \"Left\": 0.40568169951438904,\n                                                \"Top\": 0.25732749700546265\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.40568169951438904,\n                                                    \"Y\": 0.25732749700546265\n                                                },\n                                                {\n                                                    \"X\": 0.4671058654785156,\n                                                    \"Y\": 0.25732749700546265\n                                                },\n                                                {\n                                                    \"X\": 0.4671058654785156,\n                                                    \"Y\": 0.2739602327346802\n                                                },\n                                                {\n                                                    \"X\": 0.40568169951438904,\n                                                    \"Y\": 0.2739602327346802\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.90572357177734\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 98.08004760742188\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"M/S SUPPLY STERILE SUPPLY 127.20\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.02686823345720768,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.2515700161457062\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.2515700161457062\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.2515700161457062\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.2784382700920105\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.2784382700920105\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.65447235107422\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 96.07054901123047\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LABORATORY GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.19740526378154755,\n                                                \"Height\": 0.019057216122746468,\n                                                \"Left\": 0.04270820692181587,\n                                                \"Top\": 0.27880343794822693\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04270820692181587,\n                                                    \"Y\": 0.27880343794822693\n                                                },\n                                                {\n                                                    \"X\": 0.24011348187923431,\n                                                    \"Y\": 0.27880343794822693\n                                                },\n                                                {\n                                                    \"X\": 0.24011348187923431,\n                                                    \"Y\": 0.29786065220832825\n                                                },\n                                                {\n                                                    \"X\": 0.04270820692181587,\n                                                    \"Y\": 0.29786065220832825\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 88.35423278808594\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 96.07054901123047\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"58.32\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.05136565864086151,\n                                                \"Height\": 0.01651628129184246,\n                                                \"Left\": 0.41636818647384644,\n                                                \"Top\": 0.280073881149292\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.41636818647384644,\n                                                    \"Y\": 0.280073881149292\n                                                },\n                                                {\n                                                    \"X\": 0.46773383021354675,\n                                                    \"Y\": 0.280073881149292\n                                                },\n                                                {\n                                                    \"X\": 0.46773383021354675,\n                                                    \"Y\": 0.2965901792049408\n                                                },\n                                                {\n                                                    \"X\": 0.41636818647384644,\n                                                    \"Y\": 0.2965901792049408\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.17019653320312\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 96.07054901123047\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LABORATORY GENERAL 58.32\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.02706768363714218,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.27523964643478394\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.27523964643478394\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.27523964643478394\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3023073375225067\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3023073375225067\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 90.57018280029297\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 93.11481475830078\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LABORATORY CHEMISTRY\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.2156766802072525,\n                                                \"Height\": 0.01961403712630272,\n                                                \"Left\": 0.04314204677939415,\n                                                \"Top\": 0.30247965455055237\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04314204677939415,\n                                                    \"Y\": 0.30247965455055237\n                                                },\n                                                {\n                                                    \"X\": 0.25881871581077576,\n                                                    \"Y\": 0.30247965455055237\n                                                },\n                                                {\n                                                    \"X\": 0.25881871581077576,\n                                                    \"Y\": 0.322093665599823\n                                                },\n                                                {\n                                                    \"X\": 0.04314204677939415,\n                                                    \"Y\": 0.322093665599823\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.4840316772461\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 93.11481475830078\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"1467.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06853276491165161,\n                                                \"Height\": 0.016998808830976486,\n                                                \"Left\": 0.39689216017723083,\n                                                \"Top\": 0.3037872612476349\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.39689216017723083,\n                                                    \"Y\": 0.3037872612476349\n                                                },\n                                                {\n                                                    \"X\": 0.46542489528656006,\n                                                    \"Y\": 0.3037872612476349\n                                                },\n                                                {\n                                                    \"X\": 0.46542489528656006,\n                                                    \"Y\": 0.3207860589027405\n                                                },\n                                                {\n                                                    \"X\": 0.39689216017723083,\n                                                    \"Y\": 0.3207860589027405\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.3441390991211\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 93.11481475830078\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LABORATORY CHEMISTRY 1467.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.026604242622852325,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.29921066761016846\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.29921066761016846\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.29921066761016846\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3258149027824402\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3258149027824402\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.4373779296875\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.50090026855469\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LAB HEMATOLOGY\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.1561163365840912,\n                                                \"Height\": 0.01945609226822853,\n                                                \"Left\": 0.04259507358074188,\n                                                \"Top\": 0.3258149027824402\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04259507358074188,\n                                                    \"Y\": 0.3258149027824402\n                                                },\n                                                {\n                                                    \"X\": 0.19871141016483307,\n                                                    \"Y\": 0.3258149027824402\n                                                },\n                                                {\n                                                    \"X\": 0.19871141016483307,\n                                                    \"Y\": 0.3452709913253784\n                                                },\n                                                {\n                                                    \"X\": 0.04259507358074188,\n                                                    \"Y\": 0.3452709913253784\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 88.26344299316406\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.50090026855469\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"585.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.061439335346221924,\n                                                \"Height\": 0.016861949115991592,\n                                                \"Left\": 0.40518781542778015,\n                                                \"Top\": 0.32711195945739746\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.40518781542778015,\n                                                    \"Y\": 0.32711195945739746\n                                                },\n                                                {\n                                                    \"X\": 0.4666271507740021,\n                                                    \"Y\": 0.32711195945739746\n                                                },\n                                                {\n                                                    \"X\": 0.4666271507740021,\n                                                    \"Y\": 0.34397390484809875\n                                                },\n                                                {\n                                                    \"X\": 0.40518781542778015,\n                                                    \"Y\": 0.34397390484809875\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.55272674560547\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.50090026855469\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LAB HEMATOLOGY 585.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.025941472500562668,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.3225722014904022\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3225722014904022\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3225722014904022\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3485136926174164\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3485136926174164\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 90.94429016113281\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 96.30986022949219\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LAB BACTERIOLOGY MICROBIO,\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.25383496284484863,\n                                                \"Height\": 0.019035758450627327,\n                                                \"Left\": 0.04516761004924774,\n                                                \"Top\": 0.35009387135505676\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04516761004924774,\n                                                    \"Y\": 0.35009387135505676\n                                                },\n                                                {\n                                                    \"X\": 0.2990025579929352,\n                                                    \"Y\": 0.35009387135505676\n                                                },\n                                                {\n                                                    \"X\": 0.2990025579929352,\n                                                    \"Y\": 0.36912962794303894\n                                                },\n                                                {\n                                                    \"X\": 0.04516761004924774,\n                                                    \"Y\": 0.36912962794303894\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 82.62173461914062\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 96.30986022949219\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"407.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.061444174498319626,\n                                                \"Height\": 0.016497639939188957,\n                                                \"Left\": 0.40577441453933716,\n                                                \"Top\": 0.351362943649292\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.40577441453933716,\n                                                    \"Y\": 0.351362943649292\n                                                },\n                                                {\n                                                    \"X\": 0.4672186076641083,\n                                                    \"Y\": 0.351362943649292\n                                                },\n                                                {\n                                                    \"X\": 0.4672186076641083,\n                                                    \"Y\": 0.3678605854511261\n                                                },\n                                                {\n                                                    \"X\": 0.40577441453933716,\n                                                    \"Y\": 0.3678605854511261\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.13155364990234\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 96.30986022949219\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LAB BACTERIOLOGY MICROBIO, 407.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.02752929925918579,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.3456522226333618\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3456522226333618\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3456522226333618\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3731815218925476\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3731815218925476\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 84.90296173095703\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 95.84117889404297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LAB ÜROLOGY\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.11871358007192612,\n                                                \"Height\": 0.019098004326224327,\n                                                \"Left\": 0.04207376763224602,\n                                                \"Top\": 0.3731815218925476\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04207376763224602,\n                                                    \"Y\": 0.3731815218925476\n                                                },\n                                                {\n                                                    \"X\": 0.16078734397888184,\n                                                    \"Y\": 0.3731815218925476\n                                                },\n                                                {\n                                                    \"X\": 0.16078734397888184,\n                                                    \"Y\": 0.3922795057296753\n                                                },\n                                                {\n                                                    \"X\": 0.04207376763224602,\n                                                    \"Y\": 0.3922795057296753\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 71.00647735595703\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 95.84117889404297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"187.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.062374942004680634,\n                                                \"Height\": 0.0178248081356287,\n                                                \"Left\": 0.40525683760643005,\n                                                \"Top\": 0.37445470690727234\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.40525683760643005,\n                                                    \"Y\": 0.37445470690727234\n                                                },\n                                                {\n                                                    \"X\": 0.4676317870616913,\n                                                    \"Y\": 0.37445470690727234\n                                                },\n                                                {\n                                                    \"X\": 0.4676317870616913,\n                                                    \"Y\": 0.3922795057296753\n                                                },\n                                                {\n                                                    \"X\": 0.40525683760643005,\n                                                    \"Y\": 0.3922795057296753\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.84938049316406\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 95.84117889404297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"LAB ÜROLOGY 187.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.027606086805462837,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.36912962794303894\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.36912962794303894\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.36912962794303894\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.3967357277870178\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.3967357277870178\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 78.20060729980469\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 95.25548553466797\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"RADIOLOGY DIAG GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.2304622083902359,\n                                                \"Height\": 0.019348736852407455,\n                                                \"Left\": 0.03498554974794388,\n                                                \"Top\": 0.39675483107566833\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.03498554974794388,\n                                                    \"Y\": 0.39675483107566833\n                                                },\n                                                {\n                                                    \"X\": 0.2654477655887604,\n                                                    \"Y\": 0.39675483107566833\n                                                },\n                                                {\n                                                    \"X\": 0.2654477655887604,\n                                                    \"Y\": 0.4161035716533661\n                                                },\n                                                {\n                                                    \"X\": 0.03498554974794388,\n                                                    \"Y\": 0.4161035716533661\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.00315856933594\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 95.25548553466797\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"415.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06340225040912628,\n                                                \"Height\": 0.016768915578722954,\n                                                \"Left\": 0.4033225476741791,\n                                                \"Top\": 0.39804473519325256\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4033225476741791,\n                                                    \"Y\": 0.39804473519325256\n                                                },\n                                                {\n                                                    \"X\": 0.46672478318214417,\n                                                    \"Y\": 0.39804473519325256\n                                                },\n                                                {\n                                                    \"X\": 0.46672478318214417,\n                                                    \"Y\": 0.4148136377334595\n                                                },\n                                                {\n                                                    \"X\": 0.4033225476741791,\n                                                    \"Y\": 0.4148136377334595\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 79.01803588867188\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 95.25548553466797\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"RADIOLOGY DIAG GENERAL 415.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.028422629460692406,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.39224010705947876\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.39224010705947876\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.39224010705947876\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.4206627309322357\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.4206627309322357\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 89.29041290283203\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 96.15190887451172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"CAT SCAN HEAD\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.15396419167518616,\n                                                \"Height\": 0.018937885761260986,\n                                                \"Left\": 0.030170230194926262,\n                                                \"Top\": 0.4206627309322357\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.030170230194926262,\n                                                    \"Y\": 0.4206627309322357\n                                                },\n                                                {\n                                                    \"X\": 0.18413442373275757,\n                                                    \"Y\": 0.4206627309322357\n                                                },\n                                                {\n                                                    \"X\": 0.18413442373275757,\n                                                    \"Y\": 0.4396006166934967\n                                                },\n                                                {\n                                                    \"X\": 0.030170230194926262,\n                                                    \"Y\": 0.4396006166934967\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.66995239257812\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 96.15190887451172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"2502.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06943482905626297,\n                                                \"Height\": 0.016412828117609024,\n                                                \"Left\": 0.39646413922309875,\n                                                \"Top\": 0.42192527651786804\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.39646413922309875,\n                                                    \"Y\": 0.42192527651786804\n                                                },\n                                                {\n                                                    \"X\": 0.46589896082878113,\n                                                    \"Y\": 0.42192527651786804\n                                                },\n                                                {\n                                                    \"X\": 0.46589896082878113,\n                                                    \"Y\": 0.43833810091018677\n                                                },\n                                                {\n                                                    \"X\": 0.39646413922309875,\n                                                    \"Y\": 0.43833810091018677\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.90504455566406\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 96.15190887451172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"CAT SCAN HEAD 2502.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.026513010263442993,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.41624391078948975\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.41624391078948975\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.41624391078948975\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.44275692105293274\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.44275692105293274\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.4781494140625\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.9683837890625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"CAT SCAN BODY\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.1369672417640686,\n                                                \"Height\": 0.01899092085659504,\n                                                \"Left\": 0.044754959642887115,\n                                                \"Top\": 0.4442528188228607\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.044754959642887115,\n                                                    \"Y\": 0.4442528188228607\n                                                },\n                                                {\n                                                    \"X\": 0.18172219395637512,\n                                                    \"Y\": 0.4442528188228607\n                                                },\n                                                {\n                                                    \"X\": 0.18172219395637512,\n                                                    \"Y\": 0.4632437527179718\n                                                },\n                                                {\n                                                    \"X\": 0.044754959642887115,\n                                                    \"Y\": 0.4632437527179718\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.41218566894531\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.9683837890625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"2886.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06949075311422348,\n                                                \"Height\": 0.017724886536598206,\n                                                \"Left\": 0.39623701572418213,\n                                                \"Top\": 0.4442528188228607\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.39623701572418213,\n                                                    \"Y\": 0.4442528188228607\n                                                },\n                                                {\n                                                    \"X\": 0.4657277762889862,\n                                                    \"Y\": 0.4442528188228607\n                                                },\n                                                {\n                                                    \"X\": 0.4657277762889862,\n                                                    \"Y\": 0.4619777202606201\n                                                },\n                                                {\n                                                    \"X\": 0.39623701572418213,\n                                                    \"Y\": 0.4619777202606201\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.17676544189453\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.9683837890625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"CAT SCAN BODY 2886.00 the\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.027853364124894142,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.43982160091400146\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.43982160091400146\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.43982160091400146\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.46767497062683105\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.46767497062683105\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.06610870361328\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 98.39903259277344\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"PHYSICALTHERAPY GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.24272015690803528,\n                                                \"Height\": 0.019117731600999832,\n                                                \"Left\": 0.04453252628445625,\n                                                \"Top\": 0.46772170066833496\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04453252628445625,\n                                                    \"Y\": 0.46772170066833496\n                                                },\n                                                {\n                                                    \"X\": 0.28725266456604004,\n                                                    \"Y\": 0.46772170066833496\n                                                },\n                                                {\n                                                    \"X\": 0.28725266456604004,\n                                                    \"Y\": 0.4868394136428833\n                                                },\n                                                {\n                                                    \"X\": 0.04453252628445625,\n                                                    \"Y\": 0.4868394136428833\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.20496368408203\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 98.39903259277344\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"80.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.053378306329250336,\n                                                \"Height\": 0.017843252047896385,\n                                                \"Left\": 0.4131448566913605,\n                                                \"Top\": 0.46772170066833496\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4131448566913605,\n                                                    \"Y\": 0.46772170066833496\n                                                },\n                                                {\n                                                    \"X\": 0.4665231704711914,\n                                                    \"Y\": 0.46772170066833496\n                                                },\n                                                {\n                                                    \"X\": 0.4665231704711914,\n                                                    \"Y\": 0.4855649471282959\n                                                },\n                                                {\n                                                    \"X\": 0.4131448566913605,\n                                                    \"Y\": 0.4855649471282959\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.94341278076172\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 98.39903259277344\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"PHYSICALTHERAPY GENERAL 80.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.026764804497361183,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.4632608890533447\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.4632608890533447\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.4632608890533447\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.49002569913864136\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.49002569913864136\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.45046997070312\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 99.00552368164062\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"PHYSICAL THERAPY EVALUATE\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.26088187098503113,\n                                                \"Height\": 0.019397130236029625,\n                                                \"Left\": 0.04209524020552635,\n                                                \"Top\": 0.4912254512310028\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04209524020552635,\n                                                    \"Y\": 0.4912254512310028\n                                                },\n                                                {\n                                                    \"X\": 0.3029771149158478,\n                                                    \"Y\": 0.4912254512310028\n                                                },\n                                                {\n                                                    \"X\": 0.3029771149158478,\n                                                    \"Y\": 0.5106225609779358\n                                                },\n                                                {\n                                                    \"X\": 0.04209524020552635,\n                                                    \"Y\": 0.5106225609779358\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.94207000732422\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 99.00552368164062\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"300-00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.05741415172815323,\n                                                \"Height\": 0.016810839995741844,\n                                                \"Left\": 0.4077328145503998,\n                                                \"Top\": 0.4925186038017273\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4077328145503998,\n                                                    \"Y\": 0.4925186038017273\n                                                },\n                                                {\n                                                    \"X\": 0.4651469588279724,\n                                                    \"Y\": 0.4925186038017273\n                                                },\n                                                {\n                                                    \"X\": 0.4651469588279724,\n                                                    \"Y\": 0.5093294382095337\n                                                },\n                                                {\n                                                    \"X\": 0.4077328145503998,\n                                                    \"Y\": 0.5093294382095337\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 83.31517791748047\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 99.00552368164062\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"PHYSICAL THERAPY EVALUATE 300-00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.027766700834035873,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.4866994619369507\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.4866994619369507\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.4866994619369507\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5144661664962769\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5144661664962769\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.33944702148438\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 99.12258911132812\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"EMERGENCY ROOM GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.2418351173400879,\n                                                \"Height\": 0.019237136468291283,\n                                                \"Left\": 0.041839007288217545,\n                                                \"Top\": 0.5144661664962769\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.041839007288217545,\n                                                    \"Y\": 0.5144661664962769\n                                                },\n                                                {\n                                                    \"X\": 0.28367412090301514,\n                                                    \"Y\": 0.5144661664962769\n                                                },\n                                                {\n                                                    \"X\": 0.28367412090301514,\n                                                    \"Y\": 0.5337033271789551\n                                                },\n                                                {\n                                                    \"X\": 0.041839007288217545,\n                                                    \"Y\": 0.5337033271789551\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.7547607421875\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 99.12258911132812\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"4421.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.07053523510694504,\n                                                \"Height\": 0.016672227531671524,\n                                                \"Left\": 0.3945152461528778,\n                                                \"Top\": 0.5157486200332642\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.3945152461528778,\n                                                    \"Y\": 0.5157486200332642\n                                                },\n                                                {\n                                                    \"X\": 0.46505048871040344,\n                                                    \"Y\": 0.5157486200332642\n                                                },\n                                                {\n                                                    \"X\": 0.46505048871040344,\n                                                    \"Y\": 0.532420814037323\n                                                },\n                                                {\n                                                    \"X\": 0.3945152461528778,\n                                                    \"Y\": 0.532420814037323\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 81.47093963623047\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 99.12258911132812\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"EMERGENCY ROOM GENERAL 4421.00 To\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.027093881741166115,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.5106225609779358\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5106225609779358\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5106225609779358\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5377164483070374\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5377164483070374\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.48332214355469\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.93656921386719\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"DRUG SPEC ID DETAIL CODING\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.25995397567749023,\n                                                \"Height\": 0.019159656018018723,\n                                                \"Left\": 0.03482655808329582,\n                                                \"Top\": 0.5377164483070374\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.03482655808329582,\n                                                    \"Y\": 0.5377164483070374\n                                                },\n                                                {\n                                                    \"X\": 0.29478052258491516,\n                                                    \"Y\": 0.5377164483070374\n                                                },\n                                                {\n                                                    \"X\": 0.29478052258491516,\n                                                    \"Y\": 0.5568761229515076\n                                                },\n                                                {\n                                                    \"X\": 0.03482655808329582,\n                                                    \"Y\": 0.5568761229515076\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.46920776367188\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.93656921386719\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"224.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06347716599702835,\n                                                \"Height\": 0.016605019569396973,\n                                                \"Left\": 0.40259087085723877,\n                                                \"Top\": 0.5389938354492188\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.40259087085723877,\n                                                    \"Y\": 0.5389938354492188\n                                                },\n                                                {\n                                                    \"X\": 0.4660680592060089,\n                                                    \"Y\": 0.5389938354492188\n                                                },\n                                                {\n                                                    \"X\": 0.4660680592060089,\n                                                    \"Y\": 0.5555988550186157\n                                                },\n                                                {\n                                                    \"X\": 0.40259087085723877,\n                                                    \"Y\": 0.5555988550186157\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.65133666992188\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.93656921386719\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"DRUG SPEC ID DETAIL CODING 224.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.027643444016575813,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.5337033271789551\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5337033271789551\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5337033271789551\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5613467693328857\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5613467693328857\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.49954223632812\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 97.63360595703125\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"EKG/ECG GENERAL\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.15611407160758972,\n                                                \"Height\": 0.01909388042986393,\n                                                \"Left\": 0.04117409884929657,\n                                                \"Top\": 0.5618049502372742\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04117409884929657,\n                                                    \"Y\": 0.5618049502372742\n                                                },\n                                                {\n                                                    \"X\": 0.1972881704568863,\n                                                    \"Y\": 0.5618049502372742\n                                                },\n                                                {\n                                                    \"X\": 0.1972881704568863,\n                                                    \"Y\": 0.5808988213539124\n                                                },\n                                                {\n                                                    \"X\": 0.04117409884929657,\n                                                    \"Y\": 0.5808988213539124\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.05945587158203\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 97.63360595703125\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"396.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.061438463628292084,\n                                                \"Height\": 0.01782098226249218,\n                                                \"Left\": 0.40476882457733154,\n                                                \"Top\": 0.5618049502372742\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.40476882457733154,\n                                                    \"Y\": 0.5618049502372742\n                                                },\n                                                {\n                                                    \"X\": 0.4662072956562042,\n                                                    \"Y\": 0.5618049502372742\n                                                },\n                                                {\n                                                    \"X\": 0.4662072956562042,\n                                                    \"Y\": 0.5796259641647339\n                                                },\n                                                {\n                                                    \"X\": 0.40476882457733154,\n                                                    \"Y\": 0.5796259641647339\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.06126403808594\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 97.63360595703125\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"EKG/ECG GENERAL 396.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.026731472462415695,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.557349681854248\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.557349681854248\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.557349681854248\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5840811729431152\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5840811729431152\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.3887710571289\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 95.61023712158203\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"TREAT/OBS RM OBSERVATION\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.2524793744087219,\n                                                \"Height\": 0.018247636035084724,\n                                                \"Left\": 0.040939658880233765,\n                                                \"Top\": 0.5852132439613342\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.040939658880233765,\n                                                    \"Y\": 0.5852132439613342\n                                                },\n                                                {\n                                                    \"X\": 0.2934190332889557,\n                                                    \"Y\": 0.5852132439613342\n                                                },\n                                                {\n                                                    \"X\": 0.2934190332889557,\n                                                    \"Y\": 0.6034608483314514\n                                                },\n                                                {\n                                                    \"X\": 0.040939658880233765,\n                                                    \"Y\": 0.6034608483314514\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.11009216308594\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 95.61023712158203\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"6762.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06940668821334839,\n                                                \"Height\": 0.018247636035084724,\n                                                \"Left\": 0.39602017402648926,\n                                                \"Top\": 0.5852132439613342\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.39602017402648926,\n                                                    \"Y\": 0.5852132439613342\n                                                },\n                                                {\n                                                    \"X\": 0.46542686223983765,\n                                                    \"Y\": 0.5852132439613342\n                                                },\n                                                {\n                                                    \"X\": 0.46542686223983765,\n                                                    \"Y\": 0.6034608483314514\n                                                },\n                                                {\n                                                    \"X\": 0.39602017402648926,\n                                                    \"Y\": 0.6034608483314514\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.27934265136719\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 95.61023712158203\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"TREAT/OBS RM OBSERVATION 6762.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.02712395414710045,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.5808988213539124\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.5808988213539124\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.5808988213539124\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6080228090286255\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6080228090286255\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.15237426757812\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 94.46946716308594\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"ADJUSTMENT MISCPPO\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.19536636769771576,\n                                                \"Height\": 0.018256623297929764,\n                                                \"Left\": 0.04093916714191437,\n                                                \"Top\": 0.6094257235527039\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04093916714191437,\n                                                    \"Y\": 0.6094257235527039\n                                                },\n                                                {\n                                                    \"X\": 0.23630553483963013,\n                                                    \"Y\": 0.6094257235527039\n                                                },\n                                                {\n                                                    \"X\": 0.23630553483963013,\n                                                    \"Y\": 0.6276823282241821\n                                                },\n                                                {\n                                                    \"X\": 0.04093916714191437,\n                                                    \"Y\": 0.6276823282241821\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 90.26170349121094\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 94.46946716308594\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"0.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.04028172791004181,\n                                                \"Height\": 0.01695261336863041,\n                                                \"Left\": 0.4256296157836914,\n                                                \"Top\": 0.6094257235527039\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4256296157836914,\n                                                    \"Y\": 0.6094257235527039\n                                                },\n                                                {\n                                                    \"X\": 0.465911328792572,\n                                                    \"Y\": 0.6094257235527039\n                                                },\n                                                {\n                                                    \"X\": 0.465911328792572,\n                                                    \"Y\": 0.6263783574104309\n                                                },\n                                                {\n                                                    \"X\": 0.4256296157836914,\n                                                    \"Y\": 0.6263783574104309\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.08946228027344\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 94.46946716308594\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"ADJUSTMENT MISCPPO 0.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.02685685083270073,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.6048614978790283\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6048614978790283\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6048614978790283\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6317183375358582\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6317183375358582\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 91.19461059570312\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 84.87977600097656\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"ADJUSTMENT MISCPPO,\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.19617724418640137,\n                                                \"Height\": 0.020248759537935257,\n                                                \"Left\": 0.04153169319033623,\n                                                \"Top\": 0.6317183375358582\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.04153169319033623,\n                                                    \"Y\": 0.6317183375358582\n                                                },\n                                                {\n                                                    \"X\": 0.2377089411020279,\n                                                    \"Y\": 0.6317183375358582\n                                                },\n                                                {\n                                                    \"X\": 0.2377089411020279,\n                                                    \"Y\": 0.6519671082496643\n                                                },\n                                                {\n                                                    \"X\": 0.04153169319033623,\n                                                    \"Y\": 0.6519671082496643\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 72.43941497802734\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 84.87977600097656\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"18930.54\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.08450714498758316,\n                                                \"Height\": 0.016452085226774216,\n                                                \"Left\": 0.38056623935699463,\n                                                \"Top\": 0.632983922958374\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.38056623935699463,\n                                                    \"Y\": 0.632983922958374\n                                                },\n                                                {\n                                                    \"X\": 0.4650733768939972,\n                                                    \"Y\": 0.632983922958374\n                                                },\n                                                {\n                                                    \"X\": 0.4650733768939972,\n                                                    \"Y\": 0.6494360566139221\n                                                },\n                                                {\n                                                    \"X\": 0.38056623935699463,\n                                                    \"Y\": 0.6494360566139221\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 84.60284423828125\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 84.87977600097656\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"ADJUSTMENT MISCPPO, 18930.54\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.028714226558804512,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.6276823282241821\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6276823282241821\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6276823282241821\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6563965678215027\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6563965678215027\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 76.28601837158203\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 95.4714126586914\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"ADJUSTMENT MISCPPO\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.1922483891248703,\n                                                \"Height\": 0.019172940403223038,\n                                                \"Left\": 0.0441288985311985,\n                                                \"Top\": 0.656273603439331\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.0441288985311985,\n                                                    \"Y\": 0.656273603439331\n                                                },\n                                                {\n                                                    \"X\": 0.2363772839307785,\n                                                    \"Y\": 0.656273603439331\n                                                },\n                                                {\n                                                    \"X\": 0.2363772839307785,\n                                                    \"Y\": 0.6754465699195862\n                                                },\n                                                {\n                                                    \"X\": 0.0441288985311985,\n                                                    \"Y\": 0.6754465699195862\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.5920181274414\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 95.4714126586914\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"-242.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06743790954351425,\n                                                \"Height\": 0.016616573557257652,\n                                                \"Left\": 0.3994361460208893,\n                                                \"Top\": 0.6575518250465393\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.3994361460208893,\n                                                    \"Y\": 0.6575518250465393\n                                                },\n                                                {\n                                                    \"X\": 0.46687406301498413,\n                                                    \"Y\": 0.6575518250465393\n                                                },\n                                                {\n                                                    \"X\": 0.46687406301498413,\n                                                    \"Y\": 0.6741684079170227\n                                                },\n                                                {\n                                                    \"X\": 0.3994361460208893,\n                                                    \"Y\": 0.6741684079170227\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 90.8145980834961\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 95.4714126586914\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"ADJUSTMENT MISCPPO -242.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5369576215744019,\n                                                \"Height\": 0.028120269998908043,\n                                                \"Left\": 0.018280694261193275,\n                                                \"Top\": 0.6517999768257141\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6517999768257141\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6517999768257141\n                                                },\n                                                {\n                                                    \"X\": 0.5552383065223694,\n                                                    \"Y\": 0.6799202561378479\n                                                },\n                                                {\n                                                    \"X\": 0.018280694261193275,\n                                                    \"Y\": 0.6799202561378479\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.31573486328125\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}\n"
  },
  {
    "path": "src-python/tests/data/test_trp2_expense_sample2.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"ExpenseDocuments\": [\n        {\n            \"ExpenseIndex\": 1,\n            \"SummaryFields\": [\n                {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_NAME\",\n                        \"Confidence\": 99.26473999023438\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"costco\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.4591922461986542,\n                                \"Height\": 0.09994619339704514,\n                                \"Left\": 0.2623853087425232,\n                                \"Top\": 0.12659528851509094\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.2623853087425232,\n                                    \"Y\": 0.12762722373008728\n                                },\n                                {\n                                    \"X\": 0.7167304754257202,\n                                    \"Y\": 0.12659528851509094\n                                },\n                                {\n                                    \"X\": 0.7215775847434998,\n                                    \"Y\": 0.2255011349916458\n                                },\n                                {\n                                    \"X\": 0.2632625997066498,\n                                    \"Y\": 0.22654147446155548\n                                }\n                            ]\n                        },\n                        \"Confidence\": 24.31348991394043\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"App#:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09178225696086884,\n                                \"Height\": 0.02613978274166584,\n                                \"Left\": 0.4287538528442383,\n                                \"Top\": 0.6926159858703613\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4287538528442383,\n                                    \"Y\": 0.6928219795227051\n                                },\n                                {\n                                    \"X\": 0.519755482673645,\n                                    \"Y\": 0.6926159858703613\n                                },\n                                {\n                                    \"X\": 0.5205361247062683,\n                                    \"Y\": 0.718549370765686\n                                },\n                                {\n                                    \"X\": 0.42933592200279236,\n                                    \"Y\": 0.7187557816505432\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.05807495117188\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"86123C\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11697922646999359,\n                                \"Height\": 0.026264101266860962,\n                                \"Left\": 0.5413225293159485,\n                                \"Top\": 0.6907945275306702\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5413225293159485,\n                                    \"Y\": 0.6910569071769714\n                                },\n                                {\n                                    \"X\": 0.6572182178497314,\n                                    \"Y\": 0.6907945275306702\n                                },\n                                {\n                                    \"X\": 0.6583017706871033,\n                                    \"Y\": 0.7167957425117493\n                                },\n                                {\n                                    \"X\": 0.5421525239944458,\n                                    \"Y\": 0.7170586585998535\n                                }\n                            ]\n                        },\n                        \"Confidence\": 94.34069061279297\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Tran ID#:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15842999517917633,\n                                \"Height\": 0.02836579643189907,\n                                \"Left\": 0.1378047615289688,\n                                \"Top\": 0.755608320236206\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13786129653453827,\n                                    \"Y\": 0.7559660077095032\n                                },\n                                {\n                                    \"X\": 0.29592081904411316,\n                                    \"Y\": 0.755608320236206\n                                },\n                                {\n                                    \"X\": 0.29623475670814514,\n                                    \"Y\": 0.7836157083511353\n                                },\n                                {\n                                    \"X\": 0.1378047615289688,\n                                    \"Y\": 0.7839741110801697\n                                }\n                            ]\n                        },\n                        \"Confidence\": 94.03610229492188\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"909000009927\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2336081862449646,\n                                \"Height\": 0.028315210714936256,\n                                \"Left\": 0.3157895803451538,\n                                \"Top\": 0.7543600797653198\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.3157895803451538,\n                                    \"Y\": 0.7548866868019104\n                                },\n                                {\n                                    \"X\": 0.548498809337616,\n                                    \"Y\": 0.7543600797653198\n                                },\n                                {\n                                    \"X\": 0.5493977665901184,\n                                    \"Y\": 0.7821475863456726\n                                },\n                                {\n                                    \"X\": 0.3161473274230957,\n                                    \"Y\": 0.7826753258705139\n                                }\n                            ]\n                        },\n                        \"Confidence\": 93.58706665039062\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Merchant ID:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2203986942768097,\n                                \"Height\": 0.028523452579975128,\n                                \"Left\": 0.13429316878318787,\n                                \"Top\": 0.7871821522712708\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.1343577802181244,\n                                    \"Y\": 0.7876796126365662\n                                },\n                                {\n                                    \"X\": 0.35424211621284485,\n                                    \"Y\": 0.7871821522712708\n                                },\n                                {\n                                    \"X\": 0.35469186305999756,\n                                    \"Y\": 0.8152070641517639\n                                },\n                                {\n                                    \"X\": 0.13429316878318787,\n                                    \"Y\": 0.8157055974006653\n                                }\n                            ]\n                        },\n                        \"Confidence\": 93.7918472290039\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"991005\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11490461230278015,\n                                \"Height\": 0.026042485609650612,\n                                \"Left\": 0.3751721680164337,\n                                \"Top\": 0.7866367697715759\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.3751721680164337,\n                                    \"Y\": 0.7868950963020325\n                                },\n                                {\n                                    \"X\": 0.4893721640110016,\n                                    \"Y\": 0.7866367697715759\n                                },\n                                {\n                                    \"X\": 0.49007678031921387,\n                                    \"Y\": 0.8124203681945801\n                                },\n                                {\n                                    \"X\": 0.3756310045719147,\n                                    \"Y\": 0.8126792311668396\n                                }\n                            ]\n                        },\n                        \"Confidence\": 93.5574951171875\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Resp:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09125052392482758,\n                                \"Height\": 0.027230963110923767,\n                                \"Left\": 0.42958518862724304,\n                                \"Top\": 0.7240843176841736\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.42958518862724304,\n                                    \"Y\": 0.7242890000343323\n                                },\n                                {\n                                    \"X\": 0.5200237035751343,\n                                    \"Y\": 0.7240843176841736\n                                },\n                                {\n                                    \"X\": 0.5208356976509094,\n                                    \"Y\": 0.7511101365089417\n                                },\n                                {\n                                    \"X\": 0.4301920533180237,\n                                    \"Y\": 0.7513152956962585\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.81080627441406\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"APPROVED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1546408087015152,\n                                \"Height\": 0.026189066469669342,\n                                \"Left\": 0.5414998531341553,\n                                \"Top\": 0.7221487760543823\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5414998531341553,\n                                    \"Y\": 0.7224961519241333\n                                },\n                                {\n                                    \"X\": 0.6949847340583801,\n                                    \"Y\": 0.7221487760543823\n                                },\n                                {\n                                    \"X\": 0.696140706539154,\n                                    \"Y\": 0.7479897737503052\n                                },\n                                {\n                                    \"X\": 0.5423229336738586,\n                                    \"Y\": 0.7483378648757935\n                                }\n                            ]\n                        },\n                        \"Confidence\": 93.70572662353516\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Seq#\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07279026508331299,\n                                \"Height\": 0.024919893592596054,\n                                \"Left\": 0.13931109011173248,\n                                \"Top\": 0.6933906078338623\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13935820758342743,\n                                    \"Y\": 0.6935550570487976\n                                },\n                                {\n                                    \"X\": 0.21199718117713928,\n                                    \"Y\": 0.6933906078338623\n                                },\n                                {\n                                    \"X\": 0.21210135519504547,\n                                    \"Y\": 0.7181457877159119\n                                },\n                                {\n                                    \"X\": 0.13931109011173248,\n                                    \"Y\": 0.718310534954071\n                                }\n                            ]\n                        },\n                        \"Confidence\": 54.09344482421875\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"9927\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07239709794521332,\n                                \"Height\": 0.025761043652892113,\n                                \"Left\": 0.2459721714258194,\n                                \"Top\": 0.6941752433776855\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.2459721714258194,\n                                    \"Y\": 0.6943383812904358\n                                },\n                                {\n                                    \"X\": 0.31803321838378906,\n                                    \"Y\": 0.6941752433776855\n                                },\n                                {\n                                    \"X\": 0.3183692693710327,\n                                    \"Y\": 0.7197728753089905\n                                },\n                                {\n                                    \"X\": 0.24615302681922913,\n                                    \"Y\": 0.7199363112449646\n                                }\n                            ]\n                        },\n                        \"Confidence\": 90.8711166381836\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"AMOUNT:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1273220330476761,\n                                \"Height\": 0.025507502257823944,\n                                \"Left\": 0.13638342916965485,\n                                \"Top\": 0.8808159828186035\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13643677532672882,\n                                    \"Y\": 0.8811032772064209\n                                },\n                                {\n                                    \"X\": 0.2634934186935425,\n                                    \"Y\": 0.8808159828186035\n                                },\n                                {\n                                    \"X\": 0.26370546221733093,\n                                    \"Y\": 0.9060356020927429\n                                },\n                                {\n                                    \"X\": 0.13638342916965485,\n                                    \"Y\": 0.9063234329223633\n                                }\n                            ]\n                        },\n                        \"Confidence\": 82.44548034667969\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$38.48\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11402355879545212,\n                                \"Height\": 0.027911365032196045,\n                                \"Left\": 0.2851109802722931,\n                                \"Top\": 0.8791360855102539\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.2851109802722931,\n                                    \"Y\": 0.879392683506012\n                                },\n                                {\n                                    \"X\": 0.3985925316810608,\n                                    \"Y\": 0.8791360855102539\n                                },\n                                {\n                                    \"X\": 0.3991345465183258,\n                                    \"Y\": 0.9067903161048889\n                                },\n                                {\n                                    \"X\": 0.28539302945137024,\n                                    \"Y\": 0.90704745054245\n                                }\n                            ]\n                        },\n                        \"Confidence\": 90.3795166015625\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"AID:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0683266744017601,\n                                \"Height\": 0.025358743965625763,\n                                \"Left\": 0.1390501707792282,\n                                \"Top\": 0.6623848676681519\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13909880816936493,\n                                    \"Y\": 0.6625392436981201\n                                },\n                                {\n                                    \"X\": 0.20728054642677307,\n                                    \"Y\": 0.6623848676681519\n                                },\n                                {\n                                    \"X\": 0.2073768526315689,\n                                    \"Y\": 0.6875889301300049\n                                },\n                                {\n                                    \"X\": 0.1390501707792282,\n                                    \"Y\": 0.687743604183197\n                                }\n                            ]\n                        },\n                        \"Confidence\": 84.87177276611328\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"A0000000031010\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2610578238964081,\n                                \"Height\": 0.027159644290804863,\n                                \"Left\": 0.24435606598854065,\n                                \"Top\": 0.6607711315155029\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.24435606598854065,\n                                    \"Y\": 0.6613604426383972\n                                },\n                                {\n                                    \"X\": 0.5046458840370178,\n                                    \"Y\": 0.6607711315155029\n                                },\n                                {\n                                    \"X\": 0.5054138898849487,\n                                    \"Y\": 0.6873401999473572\n                                },\n                                {\n                                    \"X\": 0.24454070627689362,\n                                    \"Y\": 0.6879307627677917\n                                }\n                            ]\n                        },\n                        \"Confidence\": 85.71145629882812\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"SUBTOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"SUBTOTAL\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1443646103143692,\n                                \"Height\": 0.027914807200431824,\n                                \"Left\": 0.28401562571525574,\n                                \"Top\": 0.5058955550193787\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.28401562571525574,\n                                    \"Y\": 0.5062212944030762\n                                },\n                                {\n                                    \"X\": 0.4277535080909729,\n                                    \"Y\": 0.5058955550193787\n                                },\n                                {\n                                    \"X\": 0.42838025093078613,\n                                    \"Y\": 0.5334838628768921\n                                },\n                                {\n                                    \"X\": 0.2843033969402313,\n                                    \"Y\": 0.5338103175163269\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.21229553222656\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"38.48\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0939033031463623,\n                                \"Height\": 0.026888243854045868,\n                                \"Left\": 0.6859961748123169,\n                                \"Top\": 0.5019148588180542\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6859961748123169,\n                                    \"Y\": 0.5021244883537292\n                                },\n                                {\n                                    \"X\": 0.7784931063652039,\n                                    \"Y\": 0.5019148588180542\n                                },\n                                {\n                                    \"X\": 0.7798994183540344,\n                                    \"Y\": 0.5285930037498474\n                                },\n                                {\n                                    \"X\": 0.6871914863586426,\n                                    \"Y\": 0.5288031101226807\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.04313659667969\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"**** TOTAL\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.18478527665138245,\n                                \"Height\": 0.0252562016248703,\n                                \"Left\": 0.18809205293655396,\n                                \"Top\": 0.5707207918167114\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.18809205293655396,\n                                    \"Y\": 0.5711383819580078\n                                },\n                                {\n                                    \"X\": 0.37243297696113586,\n                                    \"Y\": 0.5707207918167114\n                                },\n                                {\n                                    \"X\": 0.3728773295879364,\n                                    \"Y\": 0.5955585837364197\n                                },\n                                {\n                                    \"X\": 0.1881471872329712,\n                                    \"Y\": 0.5959770083427429\n                                }\n                            ]\n                        },\n                        \"Confidence\": 60.009090423583984\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"38.48\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1180315911769867,\n                                \"Height\": 0.023765359073877335,\n                                \"Left\": 0.6862922310829163,\n                                \"Top\": 0.5667722225189209\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6862922310829163,\n                                    \"Y\": 0.5670366883277893\n                                },\n                                {\n                                    \"X\": 0.8030427694320679,\n                                    \"Y\": 0.5667722225189209\n                                },\n                                {\n                                    \"X\": 0.8043238520622253,\n                                    \"Y\": 0.5902726054191589\n                                },\n                                {\n                                    \"X\": 0.6873400211334229,\n                                    \"Y\": 0.5905376076698303\n                                }\n                            ]\n                        },\n                        \"Confidence\": 59.54383087158203\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TAX\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"TAX\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.055202700197696686,\n                                \"Height\": 0.02489696443080902,\n                                \"Left\": 0.28275367617607117,\n                                \"Top\": 0.5392496585845947\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.28275367617607117,\n                                    \"Y\": 0.5393739342689514\n                                },\n                                {\n                                    \"X\": 0.33758559823036194,\n                                    \"Y\": 0.5392496585845947\n                                },\n                                {\n                                    \"X\": 0.33795636892318726,\n                                    \"Y\": 0.5640221238136292\n                                },\n                                {\n                                    \"X\": 0.2830086946487427,\n                                    \"Y\": 0.5641466379165649\n                                }\n                            ]\n                        },\n                        \"Confidence\": 56.46195983886719\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07574181258678436,\n                                \"Height\": 0.024667564779520035,\n                                \"Left\": 0.7051726579666138,\n                                \"Top\": 0.5344048142433167\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7051726579666138,\n                                    \"Y\": 0.534573495388031\n                                },\n                                {\n                                    \"X\": 0.7796242237091064,\n                                    \"Y\": 0.5344048142433167\n                                },\n                                {\n                                    \"X\": 0.7809144258499146,\n                                    \"Y\": 0.5589033365249634\n                                },\n                                {\n                                    \"X\": 0.7063073515892029,\n                                    \"Y\": 0.5590723752975464\n                                }\n                            ]\n                        },\n                        \"Confidence\": 56.42094421386719\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"APFROVED\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1680351346731186,\n                                \"Height\": 0.026050133630633354,\n                                \"Left\": 0.1377829760313034,\n                                \"Top\": 0.8502396941184998\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13783442974090576,\n                                    \"Y\": 0.8506188988685608\n                                },\n                                {\n                                    \"X\": 0.3055121600627899,\n                                    \"Y\": 0.8502396941184998\n                                },\n                                {\n                                    \"X\": 0.305818110704422,\n                                    \"Y\": 0.8759098649024963\n                                },\n                                {\n                                    \"X\": 0.1377829760313034,\n                                    \"Y\": 0.8762897849082947\n                                }\n                            ]\n                        },\n                        \"Confidence\": 20.64383316040039\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Purchase\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1510060876607895,\n                                \"Height\": 0.026493826881051064,\n                                \"Left\": 0.34033694863319397,\n                                \"Top\": 0.8499181866645813\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.34033694863319397,\n                                    \"Y\": 0.8502580523490906\n                                },\n                                {\n                                    \"X\": 0.4906293451786041,\n                                    \"Y\": 0.8499181866645813\n                                },\n                                {\n                                    \"X\": 0.49134305119514465,\n                                    \"Y\": 0.8760713934898376\n                                },\n                                {\n                                    \"X\": 0.34072428941726685,\n                                    \"Y\": 0.8764119744300842\n                                }\n                            ]\n                        },\n                        \"Confidence\": 30.297517776489258\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Costco\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12436926364898682,\n                                \"Height\": 0.02853197045624256,\n                                \"Left\": 0.1367771476507187,\n                                \"Top\": 0.7241107225418091\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13683675229549408,\n                                    \"Y\": 0.724391520023346\n                                },\n                                {\n                                    \"X\": 0.26091188192367554,\n                                    \"Y\": 0.7241107225418091\n                                },\n                                {\n                                    \"X\": 0.2611464262008667,\n                                    \"Y\": 0.7523612380027771\n                                },\n                                {\n                                    \"X\": 0.1367771476507187,\n                                    \"Y\": 0.7526426911354065\n                                }\n                            ]\n                        },\n                        \"Confidence\": 27.85537338256836\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Visa\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0771232321858406,\n                                \"Height\": 0.027023514732718468,\n                                \"Left\": 0.26092633605003357,\n                                \"Top\": 0.7256775498390198\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.26092633605003357,\n                                    \"Y\": 0.7258511781692505\n                                },\n                                {\n                                    \"X\": 0.3376538157463074,\n                                    \"Y\": 0.7256775498390198\n                                },\n                                {\n                                    \"X\": 0.3380495607852936,\n                                    \"Y\": 0.7525269985198975\n                                },\n                                {\n                                    \"X\": 0.26114922761917114,\n                                    \"Y\": 0.7527010440826416\n                                }\n                            ]\n                        },\n                        \"Confidence\": 28.23235321044922\n                    },\n                    \"PageNumber\": 1\n                }\n            ],\n            \"LineItemGroups\": [\n                {\n                    \"LineItemGroupIndex\": 1,\n                    \"LineItems\": [\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 98.88555145263672\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"BNLS/SL BRST\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.219096377491951,\n                                                \"Height\": 0.030130302533507347,\n                                                \"Left\": 0.37359362840652466,\n                                                \"Top\": 0.406584233045578\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.37359362840652466,\n                                                    \"Y\": 0.4070785343647003\n                                                },\n                                                {\n                                                    \"X\": 0.5915924310684204,\n                                                    \"Y\": 0.406584233045578\n                                                },\n                                                {\n                                                    \"X\": 0.5926899909973145,\n                                                    \"Y\": 0.4362190365791321\n                                                },\n                                                {\n                                                    \"X\": 0.37413424253463745,\n                                                    \"Y\": 0.4367145299911499\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 98.3415756225586\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 98.88555145263672\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"22.10\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.09538791328668594,\n                                                \"Height\": 0.02409239672124386,\n                                                \"Left\": 0.6831656694412231,\n                                                \"Top\": 0.40425628423690796\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.6831656694412231,\n                                                    \"Y\": 0.40446969866752625\n                                                },\n                                                {\n                                                    \"X\": 0.77728670835495,\n                                                    \"Y\": 0.40425628423690796\n                                                },\n                                                {\n                                                    \"X\": 0.7785536050796509,\n                                                    \"Y\": 0.42813485860824585\n                                                },\n                                                {\n                                                    \"X\": 0.6842387914657593,\n                                                    \"Y\": 0.42834869027137756\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.35411071777344\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 98.88555145263672\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"E 33841 BNLS/SL BRST 22.10 E\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.7337561249732971,\n                                                \"Height\": 0.03364807367324829,\n                                                \"Left\": 0.1099274754524231,\n                                                \"Top\": 0.40410998463630676\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.11007063090801239,\n                                                    \"Y\": 0.4057692289352417\n                                                },\n                                                {\n                                                    \"X\": 0.8418086767196655,\n                                                    \"Y\": 0.40410998463630676\n                                                },\n                                                {\n                                                    \"X\": 0.8436836004257202,\n                                                    \"Y\": 0.4360945522785187\n                                                },\n                                                {\n                                                    \"X\": 0.1099274754524231,\n                                                    \"Y\": 0.43775805830955505\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 98.26626586914062\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 99.50724029541016\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"GRAPE TOMATO\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.22334350645542145,\n                                                \"Height\": 0.029324814677238464,\n                                                \"Left\": 0.3713065981864929,\n                                                \"Top\": 0.4385779798030853\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.3713065981864929,\n                                                    \"Y\": 0.4390818774700165\n                                                },\n                                                {\n                                                    \"X\": 0.5935807228088379,\n                                                    \"Y\": 0.4385779798030853\n                                                },\n                                                {\n                                                    \"X\": 0.5946500897407532,\n                                                    \"Y\": 0.46739768981933594\n                                                },\n                                                {\n                                                    \"X\": 0.371825248003006,\n                                                    \"Y\": 0.4679027795791626\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.27669525146484\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 99.50724029541016\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"5.99\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.07576065510511398,\n                                                \"Height\": 0.024167057126760483,\n                                                \"Left\": 0.7015249729156494,\n                                                \"Top\": 0.43624794483184814\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.7015249729156494,\n                                                    \"Y\": 0.4364168345928192\n                                                },\n                                                {\n                                                    \"X\": 0.776018500328064,\n                                                    \"Y\": 0.43624794483184814\n                                                },\n                                                {\n                                                    \"X\": 0.7772855758666992,\n                                                    \"Y\": 0.4602457880973816\n                                                },\n                                                {\n                                                    \"X\": 0.7026383280754089,\n                                                    \"Y\": 0.4604150056838989\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.3388442993164\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 99.50724029541016\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"E 77053 GRAPE TOMATO 5.99 E\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.73582923412323,\n                                                \"Height\": 0.03496835008263588,\n                                                \"Left\": 0.10978041589260101,\n                                                \"Top\": 0.4356500506401062\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10992946475744247,\n                                                    \"Y\": 0.4373135268688202\n                                                },\n                                                {\n                                                    \"X\": 0.8436575531959534,\n                                                    \"Y\": 0.4356500506401062\n                                                },\n                                                {\n                                                    \"X\": 0.8456096053123474,\n                                                    \"Y\": 0.4689505398273468\n                                                },\n                                                {\n                                                    \"X\": 0.10978041589260101,\n                                                    \"Y\": 0.47061842679977417\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.26567840576172\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 98.08348083496094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"KS BUTTER\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.16788813471794128,\n                                                \"Height\": 0.02894934080541134,\n                                                \"Left\": 0.3722391128540039,\n                                                \"Top\": 0.47154486179351807\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.3722391128540039,\n                                                    \"Y\": 0.4719233214855194\n                                                },\n                                                {\n                                                    \"X\": 0.5392033457756042,\n                                                    \"Y\": 0.47154486179351807\n                                                },\n                                                {\n                                                    \"X\": 0.5401272773742676,\n                                                    \"Y\": 0.500114917755127\n                                                },\n                                                {\n                                                    \"X\": 0.3727540969848633,\n                                                    \"Y\": 0.5004941821098328\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.38513946533203\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 98.08348083496094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"10.39\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.09350009262561798,\n                                                \"Height\": 0.024952774867415428,\n                                                \"Left\": 0.68739253282547,\n                                                \"Top\": 0.4691001772880554\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.68739253282547,\n                                                    \"Y\": 0.46930915117263794\n                                                },\n                                                {\n                                                    \"X\": 0.7795823216438293,\n                                                    \"Y\": 0.4691001772880554\n                                                },\n                                                {\n                                                    \"X\": 0.7808926701545715,\n                                                    \"Y\": 0.49384358525276184\n                                                },\n                                                {\n                                                    \"X\": 0.6885073184967041,\n                                                    \"Y\": 0.4940529763698578\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.7669677734375\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 98.08348083496094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"E 384881 KS BUTTER 10.39 E\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.7378793358802795,\n                                                \"Height\": 0.03628548979759216,\n                                                \"Left\": 0.10963498800992966,\n                                                \"Top\": 0.4668291211128235\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10978991538286209,\n                                                    \"Y\": 0.46849673986434937\n                                                },\n                                                {\n                                                    \"X\": 0.845485270023346,\n                                                    \"Y\": 0.4668291211128235\n                                                },\n                                                {\n                                                    \"X\": 0.847514271736145,\n                                                    \"Y\": 0.5014424324035645\n                                                },\n                                                {\n                                                    \"X\": 0.10963498800992966,\n                                                    \"Y\": 0.503114640712738\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 97.59483337402344\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}\n"
  },
  {
    "path": "src-python/tests/data/test_trp2_expense_sample3.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"ExpenseDocuments\": [\n        {\n            \"ExpenseIndex\": 1,\n            \"SummaryFields\": [\n                {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_NAME\",\n                        \"Confidence\": 97.59117126464844\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Demo Clinic\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1426430642604828,\n                                \"Height\": 0.026882745325565338,\n                                \"Left\": 0.1225859746336937,\n                                \"Top\": 0.05060678720474243\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.1225859746336937,\n                                    \"Y\": 0.05060678720474243\n                                },\n                                {\n                                    \"X\": 0.2652290463447571,\n                                    \"Y\": 0.05060678720474243\n                                },\n                                {\n                                    \"X\": 0.2652290463447571,\n                                    \"Y\": 0.07748953253030777\n                                },\n                                {\n                                    \"X\": 0.1225859746336937,\n                                    \"Y\": 0.07748953253030777\n                                }\n                            ]\n                        },\n                        \"Confidence\": 96.99951171875\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Date of Birth\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08835320174694061,\n                                \"Height\": 0.016064118593931198,\n                                \"Left\": 0.2462235987186432,\n                                \"Top\": 0.4402981102466583\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.2462235987186432,\n                                    \"Y\": 0.4402981102466583\n                                },\n                                {\n                                    \"X\": 0.334576815366745,\n                                    \"Y\": 0.4402981102466583\n                                },\n                                {\n                                    \"X\": 0.334576815366745,\n                                    \"Y\": 0.45636221766471863\n                                },\n                                {\n                                    \"X\": 0.2462235987186432,\n                                    \"Y\": 0.45636221766471863\n                                }\n                            ]\n                        },\n                        \"Confidence\": 97.9295883178711\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"1953-12-02\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.073565773665905,\n                                \"Height\": 0.014316901564598083,\n                                \"Left\": 0.24607864022254944,\n                                \"Top\": 0.47612252831459045\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.24607864022254944,\n                                    \"Y\": 0.47612252831459045\n                                },\n                                {\n                                    \"X\": 0.31964442133903503,\n                                    \"Y\": 0.47612252831459045\n                                },\n                                {\n                                    \"X\": 0.31964442133903503,\n                                    \"Y\": 0.49043941497802734\n                                },\n                                {\n                                    \"X\": 0.24607864022254944,\n                                    \"Y\": 0.49043941497802734\n                                }\n                            ]\n                        },\n                        \"Confidence\": 97.36604309082031\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Total Paid\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07068558782339096,\n                                \"Height\": 0.015079798176884651,\n                                \"Left\": 0.7858889698982239,\n                                \"Top\": 0.9026156663894653\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7858889698982239,\n                                    \"Y\": 0.9026156663894653\n                                },\n                                {\n                                    \"X\": 0.8565745949745178,\n                                    \"Y\": 0.9026156663894653\n                                },\n                                {\n                                    \"X\": 0.8565745949745178,\n                                    \"Y\": 0.9176954627037048\n                                },\n                                {\n                                    \"X\": 0.7858889698982239,\n                                    \"Y\": 0.9176954627037048\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.1869888305664\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$60.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04981272295117378,\n                                \"Height\": 0.017077842727303505,\n                                \"Left\": 0.8903975486755371,\n                                \"Top\": 0.9024227261543274\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8903975486755371,\n                                    \"Y\": 0.9024227261543274\n                                },\n                                {\n                                    \"X\": 0.9402102828025818,\n                                    \"Y\": 0.9024227261543274\n                                },\n                                {\n                                    \"X\": 0.9402102828025818,\n                                    \"Y\": 0.9195005297660828\n                                },\n                                {\n                                    \"X\": 0.8903975486755371,\n                                    \"Y\": 0.9195005297660828\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.44630432128906\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Total Charges\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09714077413082123,\n                                \"Height\": 0.017991483211517334,\n                                \"Left\": 0.7587417960166931,\n                                \"Top\": 0.8675922155380249\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7587417960166931,\n                                    \"Y\": 0.8675922155380249\n                                },\n                                {\n                                    \"X\": 0.8558825254440308,\n                                    \"Y\": 0.8675922155380249\n                                },\n                                {\n                                    \"X\": 0.8558825254440308,\n                                    \"Y\": 0.8855836987495422\n                                },\n                                {\n                                    \"X\": 0.7587417960166931,\n                                    \"Y\": 0.8855836987495422\n                                }\n                            ]\n                        },\n                        \"Confidence\": 93.8913345336914\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$60.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.050344038754701614,\n                                \"Height\": 0.017424508929252625,\n                                \"Left\": 0.8904386758804321,\n                                \"Top\": 0.8668134212493896\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8904386758804321,\n                                    \"Y\": 0.8668134212493896\n                                },\n                                {\n                                    \"X\": 0.9407826662063599,\n                                    \"Y\": 0.8668134212493896\n                                },\n                                {\n                                    \"X\": 0.9407826662063599,\n                                    \"Y\": 0.8842378854751587\n                                },\n                                {\n                                    \"X\": 0.8904386758804321,\n                                    \"Y\": 0.8842378854751587\n                                }\n                            ]\n                        },\n                        \"Confidence\": 93.94261932373047\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DESCRIPTION\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Description\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07978886365890503,\n                                \"Height\": 0.01791197620332241,\n                                \"Left\": 0.41456496715545654,\n                                \"Top\": 0.5797557234764099\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.41456496715545654,\n                                    \"Y\": 0.5797557234764099\n                                },\n                                {\n                                    \"X\": 0.4943538308143616,\n                                    \"Y\": 0.5797557234764099\n                                },\n                                {\n                                    \"X\": 0.4943538308143616,\n                                    \"Y\": 0.5976676940917969\n                                },\n                                {\n                                    \"X\": 0.41456496715545654,\n                                    \"Y\": 0.5976676940917969\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.16806030273438\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Low back pain\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09599895030260086,\n                                \"Height\": 0.01737920381128788,\n                                \"Left\": 0.4151376485824585,\n                                \"Top\": 0.6154007911682129\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4151376485824585,\n                                    \"Y\": 0.6154007911682129\n                                },\n                                {\n                                    \"X\": 0.5111365914344788,\n                                    \"Y\": 0.6154007911682129\n                                },\n                                {\n                                    \"X\": 0.5111365914344788,\n                                    \"Y\": 0.6327800154685974\n                                },\n                                {\n                                    \"X\": 0.4151376485824585,\n                                    \"Y\": 0.6327800154685974\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.38763427734375\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Date of Visit\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08588714897632599,\n                                \"Height\": 0.015947449952363968,\n                                \"Left\": 0.04387836158275604,\n                                \"Top\": 0.23773330450057983\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.04387836158275604,\n                                    \"Y\": 0.23773330450057983\n                                },\n                                {\n                                    \"X\": 0.12976551055908203,\n                                    \"Y\": 0.23773330450057983\n                                },\n                                {\n                                    \"X\": 0.12976551055908203,\n                                    \"Y\": 0.2536807656288147\n                                },\n                                {\n                                    \"X\": 0.04387836158275604,\n                                    \"Y\": 0.2536807656288147\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.2738037109375\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"March 12, 2019\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0997300073504448,\n                                \"Height\": 0.01715833693742752,\n                                \"Left\": 0.043537285178899765,\n                                \"Top\": 0.2746948003768921\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.043537285178899765,\n                                    \"Y\": 0.2746948003768921\n                                },\n                                {\n                                    \"X\": 0.14326728880405426,\n                                    \"Y\": 0.2746948003768921\n                                },\n                                {\n                                    \"X\": 0.14326728880405426,\n                                    \"Y\": 0.291853129863739\n                                },\n                                {\n                                    \"X\": 0.043537285178899765,\n                                    \"Y\": 0.291853129863739\n                                }\n                            ]\n                        },\n                        \"Confidence\": 91.4477310180664\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Place of Service\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11036793887615204,\n                                \"Height\": 0.016201533377170563,\n                                \"Left\": 0.6509565711021423,\n                                \"Top\": 0.2379835695028305\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6509565711021423,\n                                    \"Y\": 0.2379835695028305\n                                },\n                                {\n                                    \"X\": 0.7613244652748108,\n                                    \"Y\": 0.2379835695028305\n                                },\n                                {\n                                    \"X\": 0.7613244652748108,\n                                    \"Y\": 0.25418511033058167\n                                },\n                                {\n                                    \"X\": 0.6509565711021423,\n                                    \"Y\": 0.25418511033058167\n                                }\n                            ]\n                        },\n                        \"Confidence\": 89.8572769165039\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Demo Clinic. by Jane Software Inc. Place of Service Code: 49 1000 Mountain Hwy. North Vancouver, AL, V7H 0A1\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.22953104972839355,\n                                \"Height\": 0.07900456339120865,\n                                \"Left\": 0.6495930552482605,\n                                \"Top\": 0.27595385909080505\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6495930552482605,\n                                    \"Y\": 0.27595385909080505\n                                },\n                                {\n                                    \"X\": 0.879124104976654,\n                                    \"Y\": 0.27595385909080505\n                                },\n                                {\n                                    \"X\": 0.879124104976654,\n                                    \"Y\": 0.3549584150314331\n                                },\n                                {\n                                    \"X\": 0.6495930552482605,\n                                    \"Y\": 0.3549584150314331\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.83570098876953\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Balance\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.056557029485702515,\n                                \"Height\": 0.014918895438313484,\n                                \"Left\": 0.7996828556060791,\n                                \"Top\": 0.9395171403884888\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7996828556060791,\n                                    \"Y\": 0.9395171403884888\n                                },\n                                {\n                                    \"X\": 0.8562398552894592,\n                                    \"Y\": 0.9395171403884888\n                                },\n                                {\n                                    \"X\": 0.8562398552894592,\n                                    \"Y\": 0.9544360637664795\n                                },\n                                {\n                                    \"X\": 0.7996828556060791,\n                                    \"Y\": 0.9544360637664795\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.81910705566406\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$0.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.041421934962272644,\n                                \"Height\": 0.017033180221915245,\n                                \"Left\": 0.899444043636322,\n                                \"Top\": 0.9384542107582092\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.899444043636322,\n                                    \"Y\": 0.9384542107582092\n                                },\n                                {\n                                    \"X\": 0.9408659934997559,\n                                    \"Y\": 0.9384542107582092\n                                },\n                                {\n                                    \"X\": 0.9408659934997559,\n                                    \"Y\": 0.9554873704910278\n                                },\n                                {\n                                    \"X\": 0.899444043636322,\n                                    \"Y\": 0.9554873704910278\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.94438171386719\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ITEM\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Name\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.042239829897880554,\n                                \"Height\": 0.01481358427554369,\n                                \"Left\": 0.043270695954561234,\n                                \"Top\": 0.441045343875885\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.043270695954561234,\n                                    \"Y\": 0.441045343875885\n                                },\n                                {\n                                    \"X\": 0.08551052212715149,\n                                    \"Y\": 0.441045343875885\n                                },\n                                {\n                                    \"X\": 0.08551052212715149,\n                                    \"Y\": 0.4558589458465576\n                                },\n                                {\n                                    \"X\": 0.043270695954561234,\n                                    \"Y\": 0.4558589458465576\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.98717498779297\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Olivia Gagné\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08666244149208069,\n                                \"Height\": 0.018343208357691765,\n                                \"Left\": 0.04379379004240036,\n                                \"Top\": 0.4756793677806854\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.04379379004240036,\n                                    \"Y\": 0.4756793677806854\n                                },\n                                {\n                                    \"X\": 0.13045623898506165,\n                                    \"Y\": 0.4756793677806854\n                                },\n                                {\n                                    \"X\": 0.13045623898506165,\n                                    \"Y\": 0.49402257800102234\n                                },\n                                {\n                                    \"X\": 0.04379379004240036,\n                                    \"Y\": 0.49402257800102234\n                                }\n                            ]\n                        },\n                        \"Confidence\": 86.71446228027344\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"ITEM\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Code\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.03786248341202736,\n                                \"Height\": 0.014812126755714417,\n                                \"Left\": 0.24586902558803558,\n                                \"Top\": 0.5799664855003357\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.24586902558803558,\n                                    \"Y\": 0.5799664855003357\n                                },\n                                {\n                                    \"X\": 0.28373149037361145,\n                                    \"Y\": 0.5799664855003357\n                                },\n                                {\n                                    \"X\": 0.28373149037361145,\n                                    \"Y\": 0.5947786569595337\n                                },\n                                {\n                                    \"X\": 0.24586902558803558,\n                                    \"Y\": 0.5947786569595337\n                                }\n                            ]\n                        },\n                        \"Confidence\": 86.77384185791016\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"M54.5\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04293831065297127,\n                                \"Height\": 0.01482622791081667,\n                                \"Left\": 0.24621053040027618,\n                                \"Top\": 0.6149700284004211\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.24621053040027618,\n                                    \"Y\": 0.6149700284004211\n                                },\n                                {\n                                    \"X\": 0.28914883732795715,\n                                    \"Y\": 0.6149700284004211\n                                },\n                                {\n                                    \"X\": 0.28914883732795715,\n                                    \"Y\": 0.6297962069511414\n                                },\n                                {\n                                    \"X\": 0.24621053040027618,\n                                    \"Y\": 0.6297962069511414\n                                }\n                            ]\n                        },\n                        \"Confidence\": 86.89154052734375\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Billing Code\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0840938538312912,\n                                \"Height\": 0.018561288714408875,\n                                \"Left\": 0.04347052425146103,\n                                \"Top\": 0.7169644832611084\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.04347052425146103,\n                                    \"Y\": 0.7169644832611084\n                                },\n                                {\n                                    \"X\": 0.12756437063217163,\n                                    \"Y\": 0.7169644832611084\n                                },\n                                {\n                                    \"X\": 0.12756437063217163,\n                                    \"Y\": 0.7355257272720337\n                                },\n                                {\n                                    \"X\": 0.04347052425146103,\n                                    \"Y\": 0.7355257272720337\n                                }\n                            ]\n                        },\n                        \"Confidence\": 85.73320770263672\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"98941\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04164981469511986,\n                                \"Height\": 0.01469755731523037,\n                                \"Left\": 0.043605461716651917,\n                                \"Top\": 0.7541083097457886\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.043605461716651917,\n                                    \"Y\": 0.7541083097457886\n                                },\n                                {\n                                    \"X\": 0.08525528013706207,\n                                    \"Y\": 0.7541083097457886\n                                },\n                                {\n                                    \"X\": 0.08525528013706207,\n                                    \"Y\": 0.7688058614730835\n                                },\n                                {\n                                    \"X\": 0.043605461716651917,\n                                    \"Y\": 0.7688058614730835\n                                }\n                            ]\n                        },\n                        \"Confidence\": 85.95819091796875\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_ADDRESS\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Provider\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06046714261174202,\n                                \"Height\": 0.015245716087520123,\n                                \"Left\": 0.41415512561798096,\n                                \"Top\": 0.23842856287956238\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.41415512561798096,\n                                    \"Y\": 0.23842856287956238\n                                },\n                                {\n                                    \"X\": 0.47462227940559387,\n                                    \"Y\": 0.23842856287956238\n                                },\n                                {\n                                    \"X\": 0.47462227940559387,\n                                    \"Y\": 0.2536742687225342\n                                },\n                                {\n                                    \"X\": 0.41415512561798096,\n                                    \"Y\": 0.2536742687225342\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.97065734863281\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Dr. Cam Coleman License #2229242925 NPI #7868830548 TIN #807203832\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.15583905577659607,\n                                \"Height\": 0.07871117442846298,\n                                \"Left\": 0.41348594427108765,\n                                \"Top\": 0.2748887538909912\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.41348594427108765,\n                                    \"Y\": 0.2748887538909912\n                                },\n                                {\n                                    \"X\": 0.5693250298500061,\n                                    \"Y\": 0.2748887538909912\n                                },\n                                {\n                                    \"X\": 0.5693250298500061,\n                                    \"Y\": 0.3535999357700348\n                                },\n                                {\n                                    \"X\": 0.41348594427108765,\n                                    \"Y\": 0.3535999357700348\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.66352081298828\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"RECEIVER_ADDRESS\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Address\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05793839320540428,\n                                \"Height\": 0.014852887950837612,\n                                \"Left\": 0.41427531838417053,\n                                \"Top\": 0.4409153461456299\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.41427531838417053,\n                                    \"Y\": 0.4409153461456299\n                                },\n                                {\n                                    \"X\": 0.4722137153148651,\n                                    \"Y\": 0.4409153461456299\n                                },\n                                {\n                                    \"X\": 0.4722137153148651,\n                                    \"Y\": 0.4557682275772095\n                                },\n                                {\n                                    \"X\": 0.41427531838417053,\n                                    \"Y\": 0.4557682275772095\n                                }\n                            ]\n                        },\n                        \"Confidence\": 70.96211242675781\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"1488 Dundas Rd, Trenton, Ontario, 46417\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.2689319849014282,\n                                \"Height\": 0.01749454438686371,\n                                \"Left\": 0.4172063171863556,\n                                \"Top\": 0.4756458103656769\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4172063171863556,\n                                    \"Y\": 0.4756458103656769\n                                },\n                                {\n                                    \"X\": 0.6861382722854614,\n                                    \"Y\": 0.4756458103656769\n                                },\n                                {\n                                    \"X\": 0.6861382722854614,\n                                    \"Y\": 0.4931403696537018\n                                },\n                                {\n                                    \"X\": 0.4172063171863556,\n                                    \"Y\": 0.4931403696537018\n                                }\n                            ]\n                        },\n                        \"Confidence\": 70.6076431274414\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Fee\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.027482740581035614,\n                                \"Height\": 0.014317844994366169,\n                                \"Left\": 0.7449488639831543,\n                                \"Top\": 0.7179413437843323\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7449488639831543,\n                                    \"Y\": 0.7179413437843323\n                                },\n                                {\n                                    \"X\": 0.7724315524101257,\n                                    \"Y\": 0.7179413437843323\n                                },\n                                {\n                                    \"X\": 0.7724315524101257,\n                                    \"Y\": 0.7322591543197632\n                                },\n                                {\n                                    \"X\": 0.7449488639831543,\n                                    \"Y\": 0.7322591543197632\n                                }\n                            ]\n                        },\n                        \"Confidence\": 67.9945068359375\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$60.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.050877127796411514,\n                                \"Height\": 0.017061641439795494,\n                                \"Left\": 0.7212234139442444,\n                                \"Top\": 0.7532088756561279\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7212234139442444,\n                                    \"Y\": 0.7532088756561279\n                                },\n                                {\n                                    \"X\": 0.7721005082130432,\n                                    \"Y\": 0.7532088756561279\n                                },\n                                {\n                                    \"X\": 0.7721005082130432,\n                                    \"Y\": 0.7702705264091492\n                                },\n                                {\n                                    \"X\": 0.7212234139442444,\n                                    \"Y\": 0.7702705264091492\n                                }\n                            ]\n                        },\n                        \"Confidence\": 67.9596939086914\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Diagnosis Pointer\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.12228798866271973,\n                                \"Height\": 0.01810789667069912,\n                                \"Left\": 0.5575083494186401,\n                                \"Top\": 0.7173933982849121\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5575083494186401,\n                                    \"Y\": 0.7173933982849121\n                                },\n                                {\n                                    \"X\": 0.6797963380813599,\n                                    \"Y\": 0.7173933982849121\n                                },\n                                {\n                                    \"X\": 0.6797963380813599,\n                                    \"Y\": 0.7355013489723206\n                                },\n                                {\n                                    \"X\": 0.5575083494186401,\n                                    \"Y\": 0.7355013489723206\n                                }\n                            ]\n                        },\n                        \"Confidence\": 64.25406646728516\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"1\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.007267124019563198,\n                                \"Height\": 0.01442735642194748,\n                                \"Left\": 0.6145917773246765,\n                                \"Top\": 0.7542591691017151\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6145917773246765,\n                                    \"Y\": 0.7542591691017151\n                                },\n                                {\n                                    \"X\": 0.6218589544296265,\n                                    \"Y\": 0.7542591691017151\n                                },\n                                {\n                                    \"X\": 0.6218589544296265,\n                                    \"Y\": 0.7686865329742432\n                                },\n                                {\n                                    \"X\": 0.6145917773246765,\n                                    \"Y\": 0.7686865329742432\n                                }\n                            ]\n                        },\n                        \"Confidence\": 64.27961730957031\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DESCRIPTION\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Description\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08054760098457336,\n                                \"Height\": 0.01838984154164791,\n                                \"Left\": 0.16099010407924652,\n                                \"Top\": 0.7169792652130127\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.16099010407924652,\n                                    \"Y\": 0.7169792652130127\n                                },\n                                {\n                                    \"X\": 0.24153770506381989,\n                                    \"Y\": 0.7169792652130127\n                                },\n                                {\n                                    \"X\": 0.24153770506381989,\n                                    \"Y\": 0.7353691458702087\n                                },\n                                {\n                                    \"X\": 0.16099010407924652,\n                                    \"Y\": 0.7353691458702087\n                                }\n                            ]\n                        },\n                        \"Confidence\": 61.785823822021484\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Chiropractic manipulative treatment (CMT); spinal, three to four regions\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.28293049335479736,\n                                \"Height\": 0.037939779460430145,\n                                \"Left\": 0.16225340962409973,\n                                \"Top\": 0.75365149974823\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.16225340962409973,\n                                    \"Y\": 0.75365149974823\n                                },\n                                {\n                                    \"X\": 0.4451839029788971,\n                                    \"Y\": 0.75365149974823\n                                },\n                                {\n                                    \"X\": 0.4451839029788971,\n                                    \"Y\": 0.7915912866592407\n                                },\n                                {\n                                    \"X\": 0.16225340962409973,\n                                    \"Y\": 0.7915912866592407\n                                }\n                            ]\n                        },\n                        \"Confidence\": 61.280242919921875\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"INVOICE_RECEIPT_ID\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Invoice #\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06450604647397995,\n                                \"Height\": 0.015317338518798351,\n                                \"Left\": 0.2453117072582245,\n                                \"Top\": 0.23839783668518066\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.2453117072582245,\n                                    \"Y\": 0.23839783668518066\n                                },\n                                {\n                                    \"X\": 0.30981776118278503,\n                                    \"Y\": 0.23839783668518066\n                                },\n                                {\n                                    \"X\": 0.30981776118278503,\n                                    \"Y\": 0.2537151575088501\n                                },\n                                {\n                                    \"X\": 0.2453117072582245,\n                                    \"Y\": 0.2537151575088501\n                                }\n                            ]\n                        },\n                        \"Confidence\": 56.8474006652832\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Invoice #1258\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09494367986917496,\n                                \"Height\": 0.016505809500813484,\n                                \"Left\": 0.2450580596923828,\n                                \"Top\": 0.27476346492767334\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.2450580596923828,\n                                    \"Y\": 0.27476346492767334\n                                },\n                                {\n                                    \"X\": 0.3400017321109772,\n                                    \"Y\": 0.27476346492767334\n                                },\n                                {\n                                    \"X\": 0.3400017321109772,\n                                    \"Y\": 0.2912692725658417\n                                },\n                                {\n                                    \"X\": 0.2450580596923828,\n                                    \"Y\": 0.2912692725658417\n                                }\n                            ]\n                        },\n                        \"Confidence\": 57.16108703613281\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"QUANTITY\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Quantity\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.061841823160648346,\n                                \"Height\": 0.018380453810095787,\n                                \"Left\": 0.7954010963439941,\n                                \"Top\": 0.7170880436897278\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7954010963439941,\n                                    \"Y\": 0.7170880436897278\n                                },\n                                {\n                                    \"X\": 0.8572429418563843,\n                                    \"Y\": 0.7170880436897278\n                                },\n                                {\n                                    \"X\": 0.8572429418563843,\n                                    \"Y\": 0.7354685068130493\n                                },\n                                {\n                                    \"X\": 0.7954010963439941,\n                                    \"Y\": 0.7354685068130493\n                                }\n                            ]\n                        },\n                        \"Confidence\": 50.971221923828125\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"1.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029052965342998505,\n                                \"Height\": 0.014866774901747704,\n                                \"Left\": 0.827817976474762,\n                                \"Top\": 0.7540122270584106\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.827817976474762,\n                                    \"Y\": 0.7540122270584106\n                                },\n                                {\n                                    \"X\": 0.8568709492683411,\n                                    \"Y\": 0.7540122270584106\n                                },\n                                {\n                                    \"X\": 0.8568709492683411,\n                                    \"Y\": 0.7688789963722229\n                                },\n                                {\n                                    \"X\": 0.827817976474762,\n                                    \"Y\": 0.7688789963722229\n                                }\n                            ]\n                        },\n                        \"Confidence\": 50.975399017333984\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Total\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.036438606679439545,\n                                \"Height\": 0.015109673142433167,\n                                \"Left\": 0.90422123670578,\n                                \"Top\": 0.7175135612487793\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.90422123670578,\n                                    \"Y\": 0.7175135612487793\n                                },\n                                {\n                                    \"X\": 0.9406598210334778,\n                                    \"Y\": 0.7175135612487793\n                                },\n                                {\n                                    \"X\": 0.9406598210334778,\n                                    \"Y\": 0.7326232194900513\n                                },\n                                {\n                                    \"X\": 0.90422123670578,\n                                    \"Y\": 0.7326232194900513\n                                }\n                            ]\n                        },\n                        \"Confidence\": 44.48210144042969\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$60.00\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05114297941327095,\n                                \"Height\": 0.016944628208875656,\n                                \"Left\": 0.8899788856506348,\n                                \"Top\": 0.7532236576080322\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8899788856506348,\n                                    \"Y\": 0.7532236576080322\n                                },\n                                {\n                                    \"X\": 0.9411218762397766,\n                                    \"Y\": 0.7532236576080322\n                                },\n                                {\n                                    \"X\": 0.9411218762397766,\n                                    \"Y\": 0.7701682448387146\n                                },\n                                {\n                                    \"X\": 0.8899788856506348,\n                                    \"Y\": 0.7701682448387146\n                                }\n                            ]\n                        },\n                        \"Confidence\": 44.47657012939453\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Modifier\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.059901755303144455,\n                                \"Height\": 0.01523748692125082,\n                                \"Left\": 0.470619261264801,\n                                \"Top\": 0.7173742055892944\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.470619261264801,\n                                    \"Y\": 0.7173742055892944\n                                },\n                                {\n                                    \"X\": 0.530521035194397,\n                                    \"Y\": 0.7173742055892944\n                                },\n                                {\n                                    \"X\": 0.530521035194397,\n                                    \"Y\": 0.7326116561889648\n                                },\n                                {\n                                    \"X\": 0.470619261264801,\n                                    \"Y\": 0.7326116561889648\n                                }\n                            ]\n                        },\n                        \"Confidence\": 39.401268005371094\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0741691142320633,\n                                \"Height\": 0.04079831764101982,\n                                \"Left\": 0.4647875130176544,\n                                \"Top\": 0.7424448132514954\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4647875130176544,\n                                    \"Y\": 0.7424448132514954\n                                },\n                                {\n                                    \"X\": 0.5389566421508789,\n                                    \"Y\": 0.7424448132514954\n                                },\n                                {\n                                    \"X\": 0.5389566421508789,\n                                    \"Y\": 0.7832431793212891\n                                },\n                                {\n                                    \"X\": 0.4647875130176544,\n                                    \"Y\": 0.7832431793212891\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Summary\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07715602219104767,\n                                \"Height\": 0.01968366652727127,\n                                \"Left\": 0.04391694441437721,\n                                \"Top\": 0.8291778564453125\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.04391694441437721,\n                                    \"Y\": 0.8291778564453125\n                                },\n                                {\n                                    \"X\": 0.12107297033071518,\n                                    \"Y\": 0.8291778564453125\n                                },\n                                {\n                                    \"X\": 0.12107297033071518,\n                                    \"Y\": 0.8488615155220032\n                                },\n                                {\n                                    \"X\": 0.04391694441437721,\n                                    \"Y\": 0.8488615155220032\n                                }\n                            ]\n                        },\n                        \"Confidence\": 33.40628433227539\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.712039053440094,\n                                \"Height\": 0.09149101376533508,\n                                \"Left\": 0.030229968950152397,\n                                \"Top\": 0.8673348426818848\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.030229968950152397,\n                                    \"Y\": 0.8673348426818848\n                                },\n                                {\n                                    \"X\": 0.742268979549408,\n                                    \"Y\": 0.8673348426818848\n                                },\n                                {\n                                    \"X\": 0.742268979549408,\n                                    \"Y\": 0.9588258862495422\n                                },\n                                {\n                                    \"X\": 0.030229968950152397,\n                                    \"Y\": 0.9588258862495422\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"VENDOR_PHONE\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Tel:\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.025798054412007332,\n                                \"Height\": 0.014922190457582474,\n                                \"Left\": 0.6208240985870361,\n                                \"Top\": 0.07156248390674591\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6208240985870361,\n                                    \"Y\": 0.07156248390674591\n                                },\n                                {\n                                    \"X\": 0.6466221213340759,\n                                    \"Y\": 0.07156248390674591\n                                },\n                                {\n                                    \"X\": 0.6466221213340759,\n                                    \"Y\": 0.08648467063903809\n                                },\n                                {\n                                    \"X\": 0.6208240985870361,\n                                    \"Y\": 0.08648467063903809\n                                }\n                            ]\n                        },\n                        \"Confidence\": 27.227983474731445\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"888-2VILLAGE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10100916773080826,\n                                \"Height\": 0.015166336670517921,\n                                \"Left\": 0.6484066247940063,\n                                \"Top\": 0.07151313126087189\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6484066247940063,\n                                    \"Y\": 0.07151313126087189\n                                },\n                                {\n                                    \"X\": 0.7494157552719116,\n                                    \"Y\": 0.07151313126087189\n                                },\n                                {\n                                    \"X\": 0.7494157552719116,\n                                    \"Y\": 0.08667946606874466\n                                },\n                                {\n                                    \"X\": 0.6484066247940063,\n                                    \"Y\": 0.08667946606874466\n                                }\n                            ]\n                        },\n                        \"Confidence\": 27.377151489257812\n                    },\n                    \"PageNumber\": 1\n                }\n            ],\n            \"LineItemGroups\": [\n                {\n                    \"LineItemGroupIndex\": 1,\n                    \"LineItems\": [\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"OTHER\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Billing Code\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.10721894353628159,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.03613133728504181,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.03613133728504181,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.03613133728504181,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.04456329345703\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"98941\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.10721894353628159,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.03613133728504181,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.03613133728504181,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.03613133728504181,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.91775512695312\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"DESCRIPTION\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Description\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.3216567933559418,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.1433502733707428,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.00956726074219\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Chiropractic manipulative treatment (CMT); spinal, three to four regions\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.3216567933559418,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.1433502733707428,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.1433502733707428,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 98.80585479736328\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"OTHER\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Modifier\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.07658497989177704,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.46500706672668457,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.10444641113281\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.07658497989177704,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.46500706672668457,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.46500706672668457,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 0.0\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"OTHER\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Diagnosis Pointer\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.16411055624485016,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.5415920615196228,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 98.97396087646484\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"1\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.16411055624485016,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.5415920615196228,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.5415920615196228,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.62479400634766\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"TOTAL\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Fee\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.0809612050652504,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.7057026028633118,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.3447494506836\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"$60.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.0809612050652504,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.7057026028633118,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.7057026028633118,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.90711212158203\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Quantity\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.08533750474452972,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.786663830280304,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.8720013499259949,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.8720013499259949,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.29672241210938\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"1.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.08533750474452972,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.786663830280304,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.8720013499259949,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.8720013499259949,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.786663830280304,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.91813659667969\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"TOTAL\",\n                                        \"Confidence\": 70.0\n                                    },\n                                    \"LabelDetection\": {\n                                        \"Text\": \"Total\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.07439690828323364,\n                                                \"Height\": 0.04438786208629608,\n                                                \"Left\": 0.8720012903213501,\n                                                \"Top\": 0.6972662806510925\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.8720012903213501,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.9463981986045837,\n                                                    \"Y\": 0.6972662806510925\n                                                },\n                                                {\n                                                    \"X\": 0.9463981986045837,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.8720012903213501,\n                                                    \"Y\": 0.7416541576385498\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.31282043457031\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"$60.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.07439690828323364,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.8720012903213501,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.8720012903213501,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.9463981986045837,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.9463981986045837,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.8720012903213501,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 99.9137191772461\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 99.96636199951172\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"98941 Chiropractic manipulative treatment (CMT); spinal, three to four regions  1 $60.00 1.00 $60.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.9102668762207031,\n                                                \"Height\": 0.05548481643199921,\n                                                \"Left\": 0.03613133728504181,\n                                                \"Top\": 0.7416541576385498\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.03613133728504181,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.9463981986045837,\n                                                    \"Y\": 0.7416541576385498\n                                                },\n                                                {\n                                                    \"X\": 0.9463981986045837,\n                                                    \"Y\": 0.7971389889717102\n                                                },\n                                                {\n                                                    \"X\": 0.03613133728504181,\n                                                    \"Y\": 0.7971389889717102\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 0.0\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}\n"
  },
  {
    "path": "src-python/tests/data/test_trp2_expense_sample4.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"ExpenseDocuments\": [\n        {\n            \"ExpenseIndex\": 1,\n            \"SummaryFields\": [\n                {\n                    \"Type\": {\n                        \"Text\": \"INVOICE_RECEIPT_DATE\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"STATEMENT DATE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10207398980855942,\n                                \"Height\": 0.010260418057441711,\n                                \"Left\": 0.32834354043006897,\n                                \"Top\": 0.17426162958145142\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.32834354043006897,\n                                    \"Y\": 0.17426162958145142\n                                },\n                                {\n                                    \"X\": 0.430417537689209,\n                                    \"Y\": 0.17426162958145142\n                                },\n                                {\n                                    \"X\": 0.430417537689209,\n                                    \"Y\": 0.18452203273773193\n                                },\n                                {\n                                    \"X\": 0.32834354043006897,\n                                    \"Y\": 0.18452203273773193\n                                }\n                            ]\n                        },\n                        \"Confidence\": 97.0362777709961\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/13/17\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05872824043035507,\n                                \"Height\": 0.010774116031825542,\n                                \"Left\": 0.3533432185649872,\n                                \"Top\": 0.18821841478347778\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.3533432185649872,\n                                    \"Y\": 0.18821841478347778\n                                },\n                                {\n                                    \"X\": 0.41207146644592285,\n                                    \"Y\": 0.18821841478347778\n                                },\n                                {\n                                    \"X\": 0.41207146644592285,\n                                    \"Y\": 0.1989925354719162\n                                },\n                                {\n                                    \"X\": 0.3533432185649872,\n                                    \"Y\": 0.1989925354719162\n                                }\n                            ]\n                        },\n                        \"Confidence\": 97.384521484375\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"AMOUNT DUE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06940563023090363,\n                                \"Height\": 0.008741441182792187,\n                                \"Left\": 0.8912475109100342,\n                                \"Top\": 0.6966070532798767\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8912475109100342,\n                                    \"Y\": 0.6966070532798767\n                                },\n                                {\n                                    \"X\": 0.9606531262397766,\n                                    \"Y\": 0.6966070532798767\n                                },\n                                {\n                                    \"X\": 0.9606531262397766,\n                                    \"Y\": 0.7053484916687012\n                                },\n                                {\n                                    \"X\": 0.8912475109100342,\n                                    \"Y\": 0.7053484916687012\n                                }\n                            ]\n                        },\n                        \"Confidence\": 96.32865142822266\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$4,544.65\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06052664294838905,\n                                \"Height\": 0.01093011163175106,\n                                \"Left\": 0.8912491798400879,\n                                \"Top\": 0.7096457481384277\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8912491798400879,\n                                    \"Y\": 0.7096457481384277\n                                },\n                                {\n                                    \"X\": 0.951775848865509,\n                                    \"Y\": 0.7096457481384277\n                                },\n                                {\n                                    \"X\": 0.951775848865509,\n                                    \"Y\": 0.7205758690834045\n                                },\n                                {\n                                    \"X\": 0.8912491798400879,\n                                    \"Y\": 0.7205758690834045\n                                }\n                            ]\n                        },\n                        \"Confidence\": 96.27286529541016\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DUE_DATE\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"DUE DATE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05947406589984894,\n                                \"Height\": 0.01005376223474741,\n                                \"Left\": 0.4584350883960724,\n                                \"Top\": 0.1736745983362198\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4584350883960724,\n                                    \"Y\": 0.1736745983362198\n                                },\n                                {\n                                    \"X\": 0.5179091691970825,\n                                    \"Y\": 0.1736745983362198\n                                },\n                                {\n                                    \"X\": 0.5179091691970825,\n                                    \"Y\": 0.18372836709022522\n                                },\n                                {\n                                    \"X\": 0.4584350883960724,\n                                    \"Y\": 0.18372836709022522\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.29515075683594\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/28/2017\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07426194101572037,\n                                \"Height\": 0.010735936462879181,\n                                \"Left\": 0.44197648763656616,\n                                \"Top\": 0.18831214308738708\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.44197648763656616,\n                                    \"Y\": 0.18831214308738708\n                                },\n                                {\n                                    \"X\": 0.5162384510040283,\n                                    \"Y\": 0.18831214308738708\n                                },\n                                {\n                                    \"X\": 0.5162384510040283,\n                                    \"Y\": 0.19904808700084686\n                                },\n                                {\n                                    \"X\": 0.44197648763656616,\n                                    \"Y\": 0.19904808700084686\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.70054626464844\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DUE_DATE\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"DUE DATE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05043347179889679,\n                                \"Height\": 0.008606434799730778,\n                                \"Left\": 0.7896007299423218,\n                                \"Top\": 0.6964406371116638\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7896007299423218,\n                                    \"Y\": 0.6964406371116638\n                                },\n                                {\n                                    \"X\": 0.8400342464447021,\n                                    \"Y\": 0.6964406371116638\n                                },\n                                {\n                                    \"X\": 0.8400342464447021,\n                                    \"Y\": 0.705047070980072\n                                },\n                                {\n                                    \"X\": 0.7896007299423218,\n                                    \"Y\": 0.705047070980072\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.75084686279297\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/28/2017\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06634055078029633,\n                                \"Height\": 0.010511069558560848,\n                                \"Left\": 0.7815629839897156,\n                                \"Top\": 0.709497332572937\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7815629839897156,\n                                    \"Y\": 0.709497332572937\n                                },\n                                {\n                                    \"X\": 0.8479035496711731,\n                                    \"Y\": 0.709497332572937\n                                },\n                                {\n                                    \"X\": 0.8479035496711731,\n                                    \"Y\": 0.7200084328651428\n                                },\n                                {\n                                    \"X\": 0.7815629839897156,\n                                    \"Y\": 0.7200084328651428\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.83518981933594\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"EXP. DATE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05137479677796364,\n                                \"Height\": 0.00814632698893547,\n                                \"Left\": 0.892608642578125,\n                                \"Top\": 0.8014534115791321\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.892608642578125,\n                                    \"Y\": 0.8014534115791321\n                                },\n                                {\n                                    \"X\": 0.9439834356307983,\n                                    \"Y\": 0.8014534115791321\n                                },\n                                {\n                                    \"X\": 0.9439834356307983,\n                                    \"Y\": 0.809599757194519\n                                },\n                                {\n                                    \"X\": 0.892608642578125,\n                                    \"Y\": 0.809599757194519\n                                }\n                            ]\n                        },\n                        \"Confidence\": 95.1173095703125\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08225926011800766,\n                                \"Height\": 0.014043816365301609,\n                                \"Left\": 0.8922174572944641,\n                                \"Top\": 0.812735378742218\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8922174572944641,\n                                    \"Y\": 0.812735378742218\n                                },\n                                {\n                                    \"X\": 0.9744767546653748,\n                                    \"Y\": 0.812735378742218\n                                },\n                                {\n                                    \"X\": 0.9744767546653748,\n                                    \"Y\": 0.8267791867256165\n                                },\n                                {\n                                    \"X\": 0.8922174572944641,\n                                    \"Y\": 0.8267791867256165\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"INVOICE_RECEIPT_DATE\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"STATEMENT DATE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08908215910196304,\n                                \"Height\": 0.008638428524136543,\n                                \"Left\": 0.5388226509094238,\n                                \"Top\": 0.6964380741119385\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5388226509094238,\n                                    \"Y\": 0.6964380741119385\n                                },\n                                {\n                                    \"X\": 0.6279047727584839,\n                                    \"Y\": 0.6964380741119385\n                                },\n                                {\n                                    \"X\": 0.6279047727584839,\n                                    \"Y\": 0.7050765156745911\n                                },\n                                {\n                                    \"X\": 0.5388226509094238,\n                                    \"Y\": 0.7050765156745911\n                                }\n                            ]\n                        },\n                        \"Confidence\": 94.19931030273438\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/13/17\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05317173898220062,\n                                \"Height\": 0.01021105982363224,\n                                \"Left\": 0.5438926219940186,\n                                \"Top\": 0.7097493410110474\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5438926219940186,\n                                    \"Y\": 0.7097493410110474\n                                },\n                                {\n                                    \"X\": 0.5970643758773804,\n                                    \"Y\": 0.7097493410110474\n                                },\n                                {\n                                    \"X\": 0.5970643758773804,\n                                    \"Y\": 0.7199603915214539\n                                },\n                                {\n                                    \"X\": 0.5438926219940186,\n                                    \"Y\": 0.7199603915214539\n                                }\n                            ]\n                        },\n                        \"Confidence\": 94.37503814697266\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Account#\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06254523992538452,\n                                \"Height\": 0.010650450363755226,\n                                \"Left\": 0.4678962528705597,\n                                \"Top\": 0.03603852912783623\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4678962528705597,\n                                    \"Y\": 0.03603852912783623\n                                },\n                                {\n                                    \"X\": 0.5304414629936218,\n                                    \"Y\": 0.03603852912783623\n                                },\n                                {\n                                    \"X\": 0.5304414629936218,\n                                    \"Y\": 0.0466889813542366\n                                },\n                                {\n                                    \"X\": 0.4678962528705597,\n                                    \"Y\": 0.0466889813542366\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.92008972167969\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"0011223334455\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09614655375480652,\n                                \"Height\": 0.010058165527880192,\n                                \"Left\": 0.571109414100647,\n                                \"Top\": 0.03345782682299614\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.571109414100647,\n                                    \"Y\": 0.03345782682299614\n                                },\n                                {\n                                    \"X\": 0.6672559380531311,\n                                    \"Y\": 0.03345782682299614\n                                },\n                                {\n                                    \"X\": 0.6672559380531311,\n                                    \"Y\": 0.04351599141955376\n                                },\n                                {\n                                    \"X\": 0.571109414100647,\n                                    \"Y\": 0.04351599141955376\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.58051300048828\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DISCOUNT\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Adjustments\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08324321359395981,\n                                \"Height\": 0.012802346609532833,\n                                \"Left\": 0.46718594431877136,\n                                \"Top\": 0.08217925578355789\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.46718594431877136,\n                                    \"Y\": 0.08217925578355789\n                                },\n                                {\n                                    \"X\": 0.5504291653633118,\n                                    \"Y\": 0.08217925578355789\n                                },\n                                {\n                                    \"X\": 0.5504291653633118,\n                                    \"Y\": 0.0949815958738327\n                                },\n                                {\n                                    \"X\": 0.46718594431877136,\n                                    \"Y\": 0.0949815958738327\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.58943176269531\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$-1,136.16\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07307380437850952,\n                                \"Height\": 0.013433090411126614,\n                                \"Left\": 0.604219377040863,\n                                \"Top\": 0.08150544762611389\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.604219377040863,\n                                    \"Y\": 0.08150544762611389\n                                },\n                                {\n                                    \"X\": 0.6772931814193726,\n                                    \"Y\": 0.08150544762611389\n                                },\n                                {\n                                    \"X\": 0.6772931814193726,\n                                    \"Y\": 0.09493853896856308\n                                },\n                                {\n                                    \"X\": 0.604219377040863,\n                                    \"Y\": 0.09493853896856308\n                                }\n                            ]\n                        },\n                        \"Confidence\": 92.5839614868164\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"SECURITY CODE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08249244093894958,\n                                \"Height\": 0.007729412522166967,\n                                \"Left\": 0.8926404118537903,\n                                \"Top\": 0.7765036821365356\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8926404118537903,\n                                    \"Y\": 0.7765036821365356\n                                },\n                                {\n                                    \"X\": 0.9751328229904175,\n                                    \"Y\": 0.7765036821365356\n                                },\n                                {\n                                    \"X\": 0.9751328229904175,\n                                    \"Y\": 0.7842330932617188\n                                },\n                                {\n                                    \"X\": 0.8926404118537903,\n                                    \"Y\": 0.7842330932617188\n                                }\n                            ]\n                        },\n                        \"Confidence\": 91.65489959716797\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08693940937519073,\n                                \"Height\": 0.014851599000394344,\n                                \"Left\": 0.8912389874458313,\n                                \"Top\": 0.7867371439933777\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8912389874458313,\n                                    \"Y\": 0.7867371439933777\n                                },\n                                {\n                                    \"X\": 0.9781784415245056,\n                                    \"Y\": 0.7867371439933777\n                                },\n                                {\n                                    \"X\": 0.9781784415245056,\n                                    \"Y\": 0.801588773727417\n                                },\n                                {\n                                    \"X\": 0.8912389874458313,\n                                    \"Y\": 0.801588773727417\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"ACCOUNT NUMBER\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10980183631181717,\n                                \"Height\": 0.009978716261684895,\n                                \"Left\": 0.19199053943157196,\n                                \"Top\": 0.17367778718471527\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.19199053943157196,\n                                    \"Y\": 0.17367778718471527\n                                },\n                                {\n                                    \"X\": 0.3017923831939697,\n                                    \"Y\": 0.17367778718471527\n                                },\n                                {\n                                    \"X\": 0.3017923831939697,\n                                    \"Y\": 0.1836564987897873\n                                },\n                                {\n                                    \"X\": 0.19199053943157196,\n                                    \"Y\": 0.1836564987897873\n                                }\n                            ]\n                        },\n                        \"Confidence\": 91.17942810058594\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"0011223334455\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09697706252336502,\n                                \"Height\": 0.010541305877268314,\n                                \"Left\": 0.19225022196769714,\n                                \"Top\": 0.18660546839237213\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.19225022196769714,\n                                    \"Y\": 0.18660546839237213\n                                },\n                                {\n                                    \"X\": 0.28922727704048157,\n                                    \"Y\": 0.18660546839237213\n                                },\n                                {\n                                    \"X\": 0.28922727704048157,\n                                    \"Y\": 0.19714677333831787\n                                },\n                                {\n                                    \"X\": 0.19225022196769714,\n                                    \"Y\": 0.19714677333831787\n                                }\n                            ]\n                        },\n                        \"Confidence\": 91.1617660522461\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"SIGNATURE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05789943411946297,\n                                \"Height\": 0.007952108047902584,\n                                \"Left\": 0.5384379029273987,\n                                \"Top\": 0.8016164898872375\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5384379029273987,\n                                    \"Y\": 0.8016164898872375\n                                },\n                                {\n                                    \"X\": 0.5963373780250549,\n                                    \"Y\": 0.8016164898872375\n                                },\n                                {\n                                    \"X\": 0.5963373780250549,\n                                    \"Y\": 0.8095685839653015\n                                },\n                                {\n                                    \"X\": 0.5384379029273987,\n                                    \"Y\": 0.8095685839653015\n                                }\n                            ]\n                        },\n                        \"Confidence\": 90.717041015625\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3515567183494568,\n                                \"Height\": 0.01325027272105217,\n                                \"Left\": 0.5367898941040039,\n                                \"Top\": 0.8127524852752686\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5367898941040039,\n                                    \"Y\": 0.8127524852752686\n                                },\n                                {\n                                    \"X\": 0.8883465528488159,\n                                    \"Y\": 0.8127524852752686\n                                },\n                                {\n                                    \"X\": 0.8883465528488159,\n                                    \"Y\": 0.8260027766227722\n                                },\n                                {\n                                    \"X\": 0.5367898941040039,\n                                    \"Y\": 0.8260027766227722\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Amount Due\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08822847902774811,\n                                \"Height\": 0.010628658346831799,\n                                \"Left\": 0.46821123361587524,\n                                \"Top\": 0.11290476471185684\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.46821123361587524,\n                                    \"Y\": 0.11290476471185684\n                                },\n                                {\n                                    \"X\": 0.5564396977424622,\n                                    \"Y\": 0.11290476471185684\n                                },\n                                {\n                                    \"X\": 0.5564396977424622,\n                                    \"Y\": 0.12353342026472092\n                                },\n                                {\n                                    \"X\": 0.46821123361587524,\n                                    \"Y\": 0.12353342026472092\n                                }\n                            ]\n                        },\n                        \"Confidence\": 90.35775756835938\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$4,544.65\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06777644902467728,\n                                \"Height\": 0.011858315207064152,\n                                \"Left\": 0.6089965105056763,\n                                \"Top\": 0.11283957958221436\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6089965105056763,\n                                    \"Y\": 0.11283957958221436\n                                },\n                                {\n                                    \"X\": 0.6767730116844177,\n                                    \"Y\": 0.11283957958221436\n                                },\n                                {\n                                    \"X\": 0.6767730116844177,\n                                    \"Y\": 0.12469789385795593\n                                },\n                                {\n                                    \"X\": 0.6089965105056763,\n                                    \"Y\": 0.12469789385795593\n                                }\n                            ]\n                        },\n                        \"Confidence\": 90.39053344726562\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"GUARANTOR\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07351028174161911,\n                                \"Height\": 0.009981928393244743,\n                                \"Left\": 0.05535166338086128,\n                                \"Top\": 0.17397859692573547\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.05535166338086128,\n                                    \"Y\": 0.17397859692573547\n                                },\n                                {\n                                    \"X\": 0.1288619488477707,\n                                    \"Y\": 0.17397859692573547\n                                },\n                                {\n                                    \"X\": 0.1288619488477707,\n                                    \"Y\": 0.18396052718162537\n                                },\n                                {\n                                    \"X\": 0.05535166338086128,\n                                    \"Y\": 0.18396052718162537\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.6393814086914\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"Client, Valued\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10414814203977585,\n                                \"Height\": 0.013458273373544216,\n                                \"Left\": 0.019509846344590187,\n                                \"Top\": 0.1881541907787323\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.019509846344590187,\n                                    \"Y\": 0.1881541907787323\n                                },\n                                {\n                                    \"X\": 0.12365798652172089,\n                                    \"Y\": 0.1881541907787323\n                                },\n                                {\n                                    \"X\": 0.12365798652172089,\n                                    \"Y\": 0.2016124725341797\n                                },\n                                {\n                                    \"X\": 0.019509846344590187,\n                                    \"Y\": 0.2016124725341797\n                                }\n                            ]\n                        },\n                        \"Confidence\": 88.37724304199219\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"ACCOUNT NUMBER\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09762230515480042,\n                                \"Height\": 0.008971559815108776,\n                                \"Left\": 0.6530146598815918,\n                                \"Top\": 0.6962540149688721\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6530146598815918,\n                                    \"Y\": 0.6962540149688721\n                                },\n                                {\n                                    \"X\": 0.7506369352340698,\n                                    \"Y\": 0.6962540149688721\n                                },\n                                {\n                                    \"X\": 0.7506369352340698,\n                                    \"Y\": 0.7052255272865295\n                                },\n                                {\n                                    \"X\": 0.6530146598815918,\n                                    \"Y\": 0.7052255272865295\n                                }\n                            ]\n                        },\n                        \"Confidence\": 87.82074737548828\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"0011223334455\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09757459163665771,\n                                \"Height\": 0.010606225579977036,\n                                \"Left\": 0.6557538509368896,\n                                \"Top\": 0.7078692317008972\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6557538509368896,\n                                    \"Y\": 0.7078692317008972\n                                },\n                                {\n                                    \"X\": 0.7533284425735474,\n                                    \"Y\": 0.7078692317008972\n                                },\n                                {\n                                    \"X\": 0.7533284425735474,\n                                    \"Y\": 0.7184754014015198\n                                },\n                                {\n                                    \"X\": 0.6557538509368896,\n                                    \"Y\": 0.7184754014015198\n                                }\n                            ]\n                        },\n                        \"Confidence\": 87.5299301147461\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"AMOUNT YOU OWE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.11020262539386749,\n                                \"Height\": 0.00901544839143753,\n                                \"Left\": 0.5697300434112549,\n                                \"Top\": 0.17156678438186646\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5697300434112549,\n                                    \"Y\": 0.17156678438186646\n                                },\n                                {\n                                    \"X\": 0.6799326539039612,\n                                    \"Y\": 0.17156678438186646\n                                },\n                                {\n                                    \"X\": 0.6799326539039612,\n                                    \"Y\": 0.18058224022388458\n                                },\n                                {\n                                    \"X\": 0.5697300434112549,\n                                    \"Y\": 0.18058224022388458\n                                }\n                            ]\n                        },\n                        \"Confidence\": 86.26779174804688\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$4,544.65\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.08838637918233871,\n                                \"Height\": 0.015675486996769905,\n                                \"Left\": 0.575047492980957,\n                                \"Top\": 0.1850115954875946\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.575047492980957,\n                                    \"Y\": 0.1850115954875946\n                                },\n                                {\n                                    \"X\": 0.6634339094161987,\n                                    \"Y\": 0.1850115954875946\n                                },\n                                {\n                                    \"X\": 0.6634339094161987,\n                                    \"Y\": 0.20068709552288055\n                                },\n                                {\n                                    \"X\": 0.575047492980957,\n                                    \"Y\": 0.20068709552288055\n                                }\n                            ]\n                        },\n                        \"Confidence\": 86.4188232421875\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"SHOW AMOUNT PAID HERE\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.09029746800661087,\n                                \"Height\": 0.01829526573419571,\n                                \"Left\": 0.5391684770584106,\n                                \"Top\": 0.8295632004737854\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5391684770584106,\n                                    \"Y\": 0.8295632004737854\n                                },\n                                {\n                                    \"X\": 0.6294659376144409,\n                                    \"Y\": 0.8295632004737854\n                                },\n                                {\n                                    \"X\": 0.6294659376144409,\n                                    \"Y\": 0.8478584289550781\n                                },\n                                {\n                                    \"X\": 0.5391684770584106,\n                                    \"Y\": 0.8478584289550781\n                                }\n                            ]\n                        },\n                        \"Confidence\": 83.82106018066406\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3343958258628845,\n                                \"Height\": 0.02196953073143959,\n                                \"Left\": 0.6405856013298035,\n                                \"Top\": 0.8280983567237854\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6405856013298035,\n                                    \"Y\": 0.8280983567237854\n                                },\n                                {\n                                    \"X\": 0.974981427192688,\n                                    \"Y\": 0.8280983567237854\n                                },\n                                {\n                                    \"X\": 0.974981427192688,\n                                    \"Y\": 0.8500678539276123\n                                },\n                                {\n                                    \"X\": 0.6405856013298035,\n                                    \"Y\": 0.8500678539276123\n                                }\n                            ]\n                        },\n                        \"Confidence\": 83.16191864013672\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"CARD NUMBER\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07671140879392624,\n                                \"Height\": 0.00813964195549488,\n                                \"Left\": 0.5382705330848694,\n                                \"Top\": 0.775503933429718\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5382705330848694,\n                                    \"Y\": 0.775503933429718\n                                },\n                                {\n                                    \"X\": 0.6149819493293762,\n                                    \"Y\": 0.775503933429718\n                                },\n                                {\n                                    \"X\": 0.6149819493293762,\n                                    \"Y\": 0.7836435437202454\n                                },\n                                {\n                                    \"X\": 0.5382705330848694,\n                                    \"Y\": 0.7836435437202454\n                                }\n                            ]\n                        },\n                        \"Confidence\": 80.32295227050781\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.3392082154750824,\n                                \"Height\": 0.013230216689407825,\n                                \"Left\": 0.543728232383728,\n                                \"Top\": 0.7874373197555542\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.543728232383728,\n                                    \"Y\": 0.7874373197555542\n                                },\n                                {\n                                    \"X\": 0.8829364776611328,\n                                    \"Y\": 0.7874373197555542\n                                },\n                                {\n                                    \"X\": 0.8829364776611328,\n                                    \"Y\": 0.8006675243377686\n                                },\n                                {\n                                    \"X\": 0.543728232383728,\n                                    \"Y\": 0.8006675243377686\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"TOTAL\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Charges\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05597550421953201,\n                                \"Height\": 0.013079940341413021,\n                                \"Left\": 0.46841147541999817,\n                                \"Top\": 0.05079282820224762\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.46841147541999817,\n                                    \"Y\": 0.05079282820224762\n                                },\n                                {\n                                    \"X\": 0.524387001991272,\n                                    \"Y\": 0.05079282820224762\n                                },\n                                {\n                                    \"X\": 0.524387001991272,\n                                    \"Y\": 0.06387276947498322\n                                },\n                                {\n                                    \"X\": 0.46841147541999817,\n                                    \"Y\": 0.06387276947498322\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.51268005371094\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$5,680.81\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0662771537899971,\n                                \"Height\": 0.012280856259167194,\n                                \"Left\": 0.609565794467926,\n                                \"Top\": 0.05074696242809296\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.609565794467926,\n                                    \"Y\": 0.05074696242809296\n                                },\n                                {\n                                    \"X\": 0.6758429408073425,\n                                    \"Y\": 0.05074696242809296\n                                },\n                                {\n                                    \"X\": 0.6758429408073425,\n                                    \"Y\": 0.06302781403064728\n                                },\n                                {\n                                    \"X\": 0.609565794467926,\n                                    \"Y\": 0.06302781403064728\n                                }\n                            ]\n                        },\n                        \"Confidence\": 77.43190002441406\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"DUE_DATE\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Due Date\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06419400870800018,\n                                \"Height\": 0.01080993004143238,\n                                \"Left\": 0.46827927231788635,\n                                \"Top\": 0.12860293686389923\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.46827927231788635,\n                                    \"Y\": 0.12860293686389923\n                                },\n                                {\n                                    \"X\": 0.5324732661247253,\n                                    \"Y\": 0.12860293686389923\n                                },\n                                {\n                                    \"X\": 0.5324732661247253,\n                                    \"Y\": 0.13941286504268646\n                                },\n                                {\n                                    \"X\": 0.46827927231788635,\n                                    \"Y\": 0.13941286504268646\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.29403686523438\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/28/2017\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07485208660364151,\n                                \"Height\": 0.011420498602092266,\n                                \"Left\": 0.601586639881134,\n                                \"Top\": 0.12829895317554474\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.601586639881134,\n                                    \"Y\": 0.12829895317554474\n                                },\n                                {\n                                    \"X\": 0.6764387488365173,\n                                    \"Y\": 0.12829895317554474\n                                },\n                                {\n                                    \"X\": 0.6764387488365173,\n                                    \"Y\": 0.13971945643424988\n                                },\n                                {\n                                    \"X\": 0.601586639881134,\n                                    \"Y\": 0.13971945643424988\n                                }\n                            ]\n                        },\n                        \"Confidence\": 76.32044982910156\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"or by email at: pfs@hancockregional.org\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1690237671136856,\n                                \"Height\": 0.024555668234825134,\n                                \"Left\": 0.8019169569015503,\n                                \"Top\": 0.5506529211997986\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8019169569015503,\n                                    \"Y\": 0.5506529211997986\n                                },\n                                {\n                                    \"X\": 0.9709407687187195,\n                                    \"Y\": 0.5506529211997986\n                                },\n                                {\n                                    \"X\": 0.9709407687187195,\n                                    \"Y\": 0.5752086043357849\n                                },\n                                {\n                                    \"X\": 0.8019169569015503,\n                                    \"Y\": 0.5752086043357849\n                                }\n                            ]\n                        },\n                        \"Confidence\": 69.02904510498047\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.020769769325852394,\n                                \"Height\": 0.01459712628275156,\n                                \"Left\": 0.7614569067955017,\n                                \"Top\": 0.557090699672699\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7614569067955017,\n                                    \"Y\": 0.557090699672699\n                                },\n                                {\n                                    \"X\": 0.7822266817092896,\n                                    \"Y\": 0.557090699672699\n                                },\n                                {\n                                    \"X\": 0.7822266817092896,\n                                    \"Y\": 0.5716878175735474\n                                },\n                                {\n                                    \"X\": 0.7614569067955017,\n                                    \"Y\": 0.5716878175735474\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Payments/\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.07068762183189392,\n                                \"Height\": 0.013034109957516193,\n                                \"Left\": 0.4682093560695648,\n                                \"Top\": 0.06652279943227768\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.4682093560695648,\n                                    \"Y\": 0.06652279943227768\n                                },\n                                {\n                                    \"X\": 0.5388969779014587,\n                                    \"Y\": 0.06652279943227768\n                                },\n                                {\n                                    \"X\": 0.5388969779014587,\n                                    \"Y\": 0.0795569121837616\n                                },\n                                {\n                                    \"X\": 0.4682093560695648,\n                                    \"Y\": 0.0795569121837616\n                                }\n                            ]\n                        },\n                        \"Confidence\": 63.33494186401367\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1362450271844864,\n                                \"Height\": 0.013895867392420769,\n                                \"Left\": 0.5449627041816711,\n                                \"Top\": 0.06524571031332016\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5449627041816711,\n                                    \"Y\": 0.06524571031332016\n                                },\n                                {\n                                    \"X\": 0.6812077760696411,\n                                    \"Y\": 0.06524571031332016\n                                },\n                                {\n                                    \"X\": 0.6812077760696411,\n                                    \"Y\": 0.07914157956838608\n                                },\n                                {\n                                    \"X\": 0.5449627041816711,\n                                    \"Y\": 0.07914157956838608\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"MasteyCan\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.038692131638526917,\n                                \"Height\": 0.015547729097306728,\n                                \"Left\": 0.5927694439888,\n                                \"Top\": 0.7497495412826538\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5927694439888,\n                                    \"Y\": 0.7497495412826538\n                                },\n                                {\n                                    \"X\": 0.6314615607261658,\n                                    \"Y\": 0.7497495412826538\n                                },\n                                {\n                                    \"X\": 0.6314615607261658,\n                                    \"Y\": 0.7652972340583801\n                                },\n                                {\n                                    \"X\": 0.5927694439888,\n                                    \"Y\": 0.7652972340583801\n                                }\n                            ]\n                        },\n                        \"Confidence\": 25.83743667602539\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.014826147817075253,\n                                \"Height\": 0.012369386851787567,\n                                \"Left\": 0.5738239884376526,\n                                \"Top\": 0.7519801259040833\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5738239884376526,\n                                    \"Y\": 0.7519801259040833\n                                },\n                                {\n                                    \"X\": 0.588650107383728,\n                                    \"Y\": 0.7519801259040833\n                                },\n                                {\n                                    \"X\": 0.588650107383728,\n                                    \"Y\": 0.7643495202064514\n                                },\n                                {\n                                    \"X\": 0.5738239884376526,\n                                    \"Y\": 0.7643495202064514\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"DISCOVER DISCOVER\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.04085753113031387,\n                                \"Height\": 0.02443872019648552,\n                                \"Left\": 0.6859131455421448,\n                                \"Top\": 0.7493387460708618\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6859131455421448,\n                                    \"Y\": 0.7493387460708618\n                                },\n                                {\n                                    \"X\": 0.7267706990242004,\n                                    \"Y\": 0.7493387460708618\n                                },\n                                {\n                                    \"X\": 0.7267706990242004,\n                                    \"Y\": 0.7737774848937988\n                                },\n                                {\n                                    \"X\": 0.6859131455421448,\n                                    \"Y\": 0.7737774848937988\n                                }\n                            ]\n                        },\n                        \"Confidence\": 47.521766662597656\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.015622133389115334,\n                                \"Height\": 0.012338478118181229,\n                                \"Left\": 0.6669020056724548,\n                                \"Top\": 0.7519277930259705\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.6669020056724548,\n                                    \"Y\": 0.7519277930259705\n                                },\n                                {\n                                    \"X\": 0.6825241446495056,\n                                    \"Y\": 0.7519277930259705\n                                },\n                                {\n                                    \"X\": 0.6825241446495056,\n                                    \"Y\": 0.7642662525177002\n                                },\n                                {\n                                    \"X\": 0.6669020056724548,\n                                    \"Y\": 0.7642662525177002\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Service Dates\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.10402282327413559,\n                                \"Height\": 0.012111961841583252,\n                                \"Left\": 0.021444594487547874,\n                                \"Top\": 0.21998825669288635\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.021444594487547874,\n                                    \"Y\": 0.21998825669288635\n                                },\n                                {\n                                    \"X\": 0.1254674196243286,\n                                    \"Y\": 0.21998825669288635\n                                },\n                                {\n                                    \"X\": 0.1254674196243286,\n                                    \"Y\": 0.2321002185344696\n                                },\n                                {\n                                    \"X\": 0.021444594487547874,\n                                    \"Y\": 0.2321002185344696\n                                }\n                            ]\n                        },\n                        \"Confidence\": 45.8330078125\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"01/05/17\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06412201374769211,\n                                \"Height\": 0.011685214936733246,\n                                \"Left\": 0.13811030983924866,\n                                \"Top\": 0.2201320230960846\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.13811030983924866,\n                                    \"Y\": 0.2201320230960846\n                                },\n                                {\n                                    \"X\": 0.20223231613636017,\n                                    \"Y\": 0.2201320230960846\n                                },\n                                {\n                                    \"X\": 0.20223231613636017,\n                                    \"Y\": 0.23181723058223724\n                                },\n                                {\n                                    \"X\": 0.13811030983924866,\n                                    \"Y\": 0.23181723058223724\n                                }\n                            ]\n                        },\n                        \"Confidence\": 45.847049713134766\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"Amount Due from you\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.1557881087064743,\n                                \"Height\": 0.01318350713700056,\n                                \"Left\": 0.1396198570728302,\n                                \"Top\": 0.3942561149597168\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.1396198570728302,\n                                    \"Y\": 0.3942561149597168\n                                },\n                                {\n                                    \"X\": 0.2954079508781433,\n                                    \"Y\": 0.3942561149597168\n                                },\n                                {\n                                    \"X\": 0.2954079508781433,\n                                    \"Y\": 0.40743961930274963\n                                },\n                                {\n                                    \"X\": 0.1396198570728302,\n                                    \"Y\": 0.40743961930274963\n                                }\n                            ]\n                        },\n                        \"Confidence\": 40.47395706176758\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"$4,544.65\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.06696461141109467,\n                                \"Height\": 0.01297539658844471,\n                                \"Left\": 0.5588158369064331,\n                                \"Top\": 0.39410099387168884\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.5588158369064331,\n                                    \"Y\": 0.39410099387168884\n                                },\n                                {\n                                    \"X\": 0.625780463218689,\n                                    \"Y\": 0.39410099387168884\n                                },\n                                {\n                                    \"X\": 0.625780463218689,\n                                    \"Y\": 0.4070764183998108\n                                },\n                                {\n                                    \"X\": 0.5588158369064331,\n                                    \"Y\": 0.4070764183998108\n                                }\n                            ]\n                        },\n                        \"Confidence\": 40.461666107177734\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"AMERICAN EXPRESS\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0795978233218193,\n                                \"Height\": 0.008131306618452072,\n                                \"Left\": 0.8622342348098755,\n                                \"Top\": 0.766691267490387\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8622342348098755,\n                                    \"Y\": 0.766691267490387\n                                },\n                                {\n                                    \"X\": 0.9418320059776306,\n                                    \"Y\": 0.766691267490387\n                                },\n                                {\n                                    \"X\": 0.9418320059776306,\n                                    \"Y\": 0.7748225331306458\n                                },\n                                {\n                                    \"X\": 0.8622342348098755,\n                                    \"Y\": 0.7748225331306458\n                                }\n                            ]\n                        },\n                        \"Confidence\": 36.65628433227539\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05234377086162567,\n                                \"Height\": 0.017791617661714554,\n                                \"Left\": 0.8514611124992371,\n                                \"Top\": 0.7469740509986877\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.8514611124992371,\n                                    \"Y\": 0.7469740509986877\n                                },\n                                {\n                                    \"X\": 0.9038048982620239,\n                                    \"Y\": 0.7469740509986877\n                                },\n                                {\n                                    \"X\": 0.9038048982620239,\n                                    \"Y\": 0.7647656202316284\n                                },\n                                {\n                                    \"X\": 0.8514611124992371,\n                                    \"Y\": 0.7647656202316284\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"OTHER\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"SNGLP\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.05490117892622948,\n                                \"Height\": 0.011942400597035885,\n                                \"Left\": 0.32135531306266785,\n                                \"Top\": 0.8702170252799988\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.32135531306266785,\n                                    \"Y\": 0.8702170252799988\n                                },\n                                {\n                                    \"X\": 0.3762564957141876,\n                                    \"Y\": 0.8702170252799988\n                                },\n                                {\n                                    \"X\": 0.3762564957141876,\n                                    \"Y\": 0.882159411907196\n                                },\n                                {\n                                    \"X\": 0.32135531306266785,\n                                    \"Y\": 0.882159411907196\n                                }\n                            ]\n                        },\n                        \"Confidence\": 28.35803985595703\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"460\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.029294796288013458,\n                                \"Height\": 0.011311559937894344,\n                                \"Left\": 0.3803885579109192,\n                                \"Top\": 0.8704518675804138\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.3803885579109192,\n                                    \"Y\": 0.8704518675804138\n                                },\n                                {\n                                    \"X\": 0.40968337655067444,\n                                    \"Y\": 0.8704518675804138\n                                },\n                                {\n                                    \"X\": 0.40968337655067444,\n                                    \"Y\": 0.8817634582519531\n                                },\n                                {\n                                    \"X\": 0.3803885579109192,\n                                    \"Y\": 0.8817634582519531\n                                }\n                            ]\n                        },\n                        \"Confidence\": 28.219295501708984\n                    },\n                    \"PageNumber\": 1\n                },\n                {\n                    \"Type\": {\n                        \"Text\": \"PAYMENT_TERMS\",\n                        \"Confidence\": 70.0\n                    },\n                    \"LabelDetection\": {\n                        \"Text\": \"VISA\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.0246934425085783,\n                                \"Height\": 0.008596841245889664,\n                                \"Left\": 0.7807561159133911,\n                                \"Top\": 0.7535290122032166\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7807561159133911,\n                                    \"Y\": 0.7535290122032166\n                                },\n                                {\n                                    \"X\": 0.8054495453834534,\n                                    \"Y\": 0.7535290122032166\n                                },\n                                {\n                                    \"X\": 0.8054495453834534,\n                                    \"Y\": 0.7621258497238159\n                                },\n                                {\n                                    \"X\": 0.7807561159133911,\n                                    \"Y\": 0.7621258497238159\n                                }\n                            ]\n                        },\n                        \"Confidence\": 19.923465728759766\n                    },\n                    \"ValueDetection\": {\n                        \"Text\": \"\",\n                        \"Geometry\": {\n                            \"BoundingBox\": {\n                                \"Width\": 0.01588493399322033,\n                                \"Height\": 0.012079925276339054,\n                                \"Left\": 0.7533751726150513,\n                                \"Top\": 0.7523042559623718\n                            },\n                            \"Polygon\": [\n                                {\n                                    \"X\": 0.7533751726150513,\n                                    \"Y\": 0.7523042559623718\n                                },\n                                {\n                                    \"X\": 0.769260048866272,\n                                    \"Y\": 0.7523042559623718\n                                },\n                                {\n                                    \"X\": 0.769260048866272,\n                                    \"Y\": 0.7643841505050659\n                                },\n                                {\n                                    \"X\": 0.7533751726150513,\n                                    \"Y\": 0.7643841505050659\n                                }\n                            ]\n                        },\n                        \"Confidence\": 0.0\n                    },\n                    \"PageNumber\": 1\n                }\n            ],\n            \"LineItemGroups\": [\n                {\n                    \"LineItemGroupIndex\": 1,\n                    \"LineItems\": [\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 96.21902465820312\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Pharmacy\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06644465029239655,\n                                                \"Height\": 0.012714825570583344,\n                                                \"Left\": 0.14065687358379364,\n                                                \"Top\": 0.25792381167411804\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.14065687358379364,\n                                                    \"Y\": 0.25792381167411804\n                                                },\n                                                {\n                                                    \"X\": 0.207101508975029,\n                                                    \"Y\": 0.25792381167411804\n                                                },\n                                                {\n                                                    \"X\": 0.207101508975029,\n                                                    \"Y\": 0.270638644695282\n                                                },\n                                                {\n                                                    \"X\": 0.14065687358379364,\n                                                    \"Y\": 0.270638644695282\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 96.10297393798828\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 96.21902465820312\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"264.50\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.04429646208882332,\n                                                \"Height\": 0.009780601598322392,\n                                                \"Left\": 0.5797127485275269,\n                                                \"Top\": 0.2589018940925598\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5797127485275269,\n                                                    \"Y\": 0.2589018940925598\n                                                },\n                                                {\n                                                    \"X\": 0.6240091919898987,\n                                                    \"Y\": 0.2589018940925598\n                                                },\n                                                {\n                                                    \"X\": 0.6240091919898987,\n                                                    \"Y\": 0.26868247985839844\n                                                },\n                                                {\n                                                    \"X\": 0.5797127485275269,\n                                                    \"Y\": 0.26868247985839844\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.91861724853516\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 96.21902465820312\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"3\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.015634020790457726,\n                                                \"Height\": 0.009780601598322392,\n                                                \"Left\": 0.44682344794273376,\n                                                \"Top\": 0.2589018940925598\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.44682344794273376,\n                                                    \"Y\": 0.2589018940925598\n                                                },\n                                                {\n                                                    \"X\": 0.46245747804641724,\n                                                    \"Y\": 0.2589018940925598\n                                                },\n                                                {\n                                                    \"X\": 0.46245747804641724,\n                                                    \"Y\": 0.26868247985839844\n                                                },\n                                                {\n                                                    \"X\": 0.44682344794273376,\n                                                    \"Y\": 0.26868247985839844\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.68257904052734\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 96.21902465820312\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Pharmacy 3 264.50\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5637550950050354,\n                                                \"Height\": 0.017451822757720947,\n                                                \"Left\": 0.10911048203706741,\n                                                \"Top\": 0.2554786503314972\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.2554786503314972\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.2554786503314972\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.27293047308921814\n                                                },\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.27293047308921814\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 95.90123748779297\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 93.28893280029297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Med/Surg Supplies and Devices\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.21106097102165222,\n                                                \"Height\": 0.012974398210644722,\n                                                \"Left\": 0.13972733914852142,\n                                                \"Top\": 0.27293047308921814\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.13972733914852142,\n                                                    \"Y\": 0.27293047308921814\n                                                },\n                                                {\n                                                    \"X\": 0.35078832507133484,\n                                                    \"Y\": 0.27293047308921814\n                                                },\n                                                {\n                                                    \"X\": 0.35078832507133484,\n                                                    \"Y\": 0.2859048545360565\n                                                },\n                                                {\n                                                    \"X\": 0.13972733914852142,\n                                                    \"Y\": 0.2859048545360565\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.96673583984375\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 93.28893280029297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"87.50\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.03778250515460968,\n                                                \"Height\": 0.010978318750858307,\n                                                \"Left\": 0.5879061222076416,\n                                                \"Top\": 0.27293047308921814\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5879061222076416,\n                                                    \"Y\": 0.27293047308921814\n                                                },\n                                                {\n                                                    \"X\": 0.6256886124610901,\n                                                    \"Y\": 0.27293047308921814\n                                                },\n                                                {\n                                                    \"X\": 0.6256886124610901,\n                                                    \"Y\": 0.28390878438949585\n                                                },\n                                                {\n                                                    \"X\": 0.5879061222076416,\n                                                    \"Y\": 0.28390878438949585\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.12752532958984\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 93.28893280029297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"2\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.013028448447585106,\n                                                \"Height\": 0.009980290196835995,\n                                                \"Left\": 0.44980454444885254,\n                                                \"Top\": 0.2739284932613373\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.44980454444885254,\n                                                    \"Y\": 0.2739284932613373\n                                                },\n                                                {\n                                                    \"X\": 0.4628329873085022,\n                                                    \"Y\": 0.2739284932613373\n                                                },\n                                                {\n                                                    \"X\": 0.4628329873085022,\n                                                    \"Y\": 0.28390878438949585\n                                                },\n                                                {\n                                                    \"X\": 0.44980454444885254,\n                                                    \"Y\": 0.28390878438949585\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.14085388183594\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 93.28893280029297\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Med/Surg Supplies and Devices 2 87.50\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5637550950050354,\n                                                \"Height\": 0.017099784687161446,\n                                                \"Left\": 0.10911048203706741,\n                                                \"Top\": 0.270638644695282\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.270638644695282\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.270638644695282\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.2877384126186371\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.02252197265625\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 93.1224594116211\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Laboratory\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.06394780427217484,\n                                                \"Height\": 0.01287852693349123,\n                                                \"Left\": 0.14662079513072968,\n                                                \"Top\": 0.2877384126186371\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.14662079513072968,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.2105685919523239,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.2105685919523239,\n                                                    \"Y\": 0.30061694979667664\n                                                },\n                                                {\n                                                    \"X\": 0.14662079513072968,\n                                                    \"Y\": 0.30061694979667664\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.8310317993164\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 93.1224594116211\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"1,316.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.05742250382900238,\n                                                \"Height\": 0.011887877248227596,\n                                                \"Left\": 0.5681542158126831,\n                                                \"Top\": 0.2877384126186371\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5681542158126831,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.6255767345428467,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.6255767345428467,\n                                                    \"Y\": 0.29962629079818726\n                                                },\n                                                {\n                                                    \"X\": 0.5681542158126831,\n                                                    \"Y\": 0.29962629079818726\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.97367858886719\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 93.1224594116211\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"12\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.020880907773971558,\n                                                \"Height\": 0.01089718472212553,\n                                                \"Left\": 0.440258651971817,\n                                                \"Top\": 0.2877384126186371\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.440258651971817,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.4611395597457886,\n                                                    \"Y\": 0.2877384126186371\n                                                },\n                                                {\n                                                    \"X\": 0.4611395597457886,\n                                                    \"Y\": 0.2986356019973755\n                                                },\n                                                {\n                                                    \"X\": 0.440258651971817,\n                                                    \"Y\": 0.2986356019973755\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 93.04634094238281\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 93.1224594116211\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Laboratory 12 1,316.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5637550950050354,\n                                                \"Height\": 0.01718871109187603,\n                                                \"Left\": 0.10911048203706741,\n                                                \"Top\": 0.2859048545360565\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.2859048545360565\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.2859048545360565\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.3030935823917389\n                                                },\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.3030935823917389\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.95030975341797\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 94.96726989746094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"CT Scan\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.056008439511060715,\n                                                \"Height\": 0.010640737600624561,\n                                                \"Left\": 0.14346261322498322,\n                                                \"Top\": 0.30347585678100586\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.14346261322498322,\n                                                    \"Y\": 0.30347585678100586\n                                                },\n                                                {\n                                                    \"X\": 0.19947105646133423,\n                                                    \"Y\": 0.30347585678100586\n                                                },\n                                                {\n                                                    \"X\": 0.19947105646133423,\n                                                    \"Y\": 0.31411659717559814\n                                                },\n                                                {\n                                                    \"X\": 0.14346261322498322,\n                                                    \"Y\": 0.31411659717559814\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.79074096679688\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 94.96726989746094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"1,700.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.056008465588092804,\n                                                \"Height\": 0.011608075350522995,\n                                                \"Left\": 0.5693871378898621,\n                                                \"Top\": 0.30347585678100586\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5693871378898621,\n                                                    \"Y\": 0.30347585678100586\n                                                },\n                                                {\n                                                    \"X\": 0.6253955960273743,\n                                                    \"Y\": 0.30347585678100586\n                                                },\n                                                {\n                                                    \"X\": 0.6253955960273743,\n                                                    \"Y\": 0.31508395075798035\n                                                },\n                                                {\n                                                    \"X\": 0.5693871378898621,\n                                                    \"Y\": 0.31508395075798035\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.815185546875\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 94.96726989746094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"1\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.013025245629251003,\n                                                \"Height\": 0.010640737600624561,\n                                                \"Left\": 0.4482526481151581,\n                                                \"Top\": 0.30347585678100586\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4482526481151581,\n                                                    \"Y\": 0.30347585678100586\n                                                },\n                                                {\n                                                    \"X\": 0.46127787232398987,\n                                                    \"Y\": 0.30347585678100586\n                                                },\n                                                {\n                                                    \"X\": 0.46127787232398987,\n                                                    \"Y\": 0.31411659717559814\n                                                },\n                                                {\n                                                    \"X\": 0.4482526481151581,\n                                                    \"Y\": 0.31411659717559814\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.68685150146484\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 94.96726989746094\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"CT Scan 1 1,700.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5637550950050354,\n                                                \"Height\": 0.01644478552043438,\n                                                \"Left\": 0.10911048203706741,\n                                                \"Top\": 0.30105751752853394\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.30105751752853394\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.30105751752853394\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.31750229001045227\n                                                },\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.31750229001045227\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 94.77086639404297\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 92.2754135131836\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Emergency Room\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.11732527613639832,\n                                                \"Height\": 0.012398493476212025,\n                                                \"Left\": 0.1407177895307541,\n                                                \"Top\": 0.31861352920532227\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.1407177895307541,\n                                                    \"Y\": 0.31861352920532227\n                                                },\n                                                {\n                                                    \"X\": 0.2580430805683136,\n                                                    \"Y\": 0.31861352920532227\n                                                },\n                                                {\n                                                    \"X\": 0.2580430805683136,\n                                                    \"Y\": 0.3310120105743408\n                                                },\n                                                {\n                                                    \"X\": 0.1407177895307541,\n                                                    \"Y\": 0.3310120105743408\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.23776245117188\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 92.2754135131836\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"2,147.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.058662597090005875,\n                                                \"Height\": 0.012398493476212025,\n                                                \"Left\": 0.5656960010528564,\n                                                \"Top\": 0.31861352920532227\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5656960010528564,\n                                                    \"Y\": 0.31861352920532227\n                                                },\n                                                {\n                                                    \"X\": 0.6243586540222168,\n                                                    \"Y\": 0.31861352920532227\n                                                },\n                                                {\n                                                    \"X\": 0.6243586540222168,\n                                                    \"Y\": 0.3310120105743408\n                                                },\n                                                {\n                                                    \"X\": 0.5656960010528564,\n                                                    \"Y\": 0.3310120105743408\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.0747299194336\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 92.2754135131836\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"4\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.01433974876999855,\n                                                \"Height\": 0.010491058230400085,\n                                                \"Left\": 0.4483707547187805,\n                                                \"Top\": 0.31861352920532227\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.4483707547187805,\n                                                    \"Y\": 0.31861352920532227\n                                                },\n                                                {\n                                                    \"X\": 0.46271049976348877,\n                                                    \"Y\": 0.31861352920532227\n                                                },\n                                                {\n                                                    \"X\": 0.46271049976348877,\n                                                    \"Y\": 0.32910457253456116\n                                                },\n                                                {\n                                                    \"X\": 0.4483707547187805,\n                                                    \"Y\": 0.32910457253456116\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.01582336425781\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 92.2754135131836\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Emergency Room 4 2,147.00\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5637550950050354,\n                                                \"Height\": 0.01716717891395092,\n                                                \"Left\": 0.10911048203706741,\n                                                \"Top\": 0.3162291646003723\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.3162291646003723\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.3162291646003723\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.3333963453769684\n                                                },\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.3333963453769684\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.14146423339844\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        },\n                        {\n                            \"LineItemExpenseFields\": [\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"ITEM\",\n                                        \"Confidence\": 93.00347900390625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Pharmacy (Extended)\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.14206638932228088,\n                                                \"Height\": 0.012781460769474506,\n                                                \"Left\": 0.14150726795196533,\n                                                \"Top\": 0.3342435657978058\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.14150726795196533,\n                                                    \"Y\": 0.3342435657978058\n                                                },\n                                                {\n                                                    \"X\": 0.2835736572742462,\n                                                    \"Y\": 0.3342435657978058\n                                                },\n                                                {\n                                                    \"X\": 0.2835736572742462,\n                                                    \"Y\": 0.3470250070095062\n                                                },\n                                                {\n                                                    \"X\": 0.14150726795196533,\n                                                    \"Y\": 0.3470250070095062\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.82923126220703\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"PRICE\",\n                                        \"Confidence\": 93.00347900390625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"165.81\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.04431427642703056,\n                                                \"Height\": 0.010815073736011982,\n                                                \"Left\": 0.5781333446502686,\n                                                \"Top\": 0.3342435657978058\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.5781333446502686,\n                                                    \"Y\": 0.3342435657978058\n                                                },\n                                                {\n                                                    \"X\": 0.622447669506073,\n                                                    \"Y\": 0.3342435657978058\n                                                },\n                                                {\n                                                    \"X\": 0.622447669506073,\n                                                    \"Y\": 0.3450586199760437\n                                                },\n                                                {\n                                                    \"X\": 0.5781333446502686,\n                                                    \"Y\": 0.3450586199760437\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.55858612060547\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"QUANTITY\",\n                                        \"Confidence\": 93.00347900390625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"2\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.015640342608094215,\n                                                \"Height\": 0.010815073736011982,\n                                                \"Left\": 0.44649386405944824,\n                                                \"Top\": 0.3342435657978058\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.44649386405944824,\n                                                    \"Y\": 0.3342435657978058\n                                                },\n                                                {\n                                                    \"X\": 0.4621342122554779,\n                                                    \"Y\": 0.3342435657978058\n                                                },\n                                                {\n                                                    \"X\": 0.4621342122554779,\n                                                    \"Y\": 0.3450586199760437\n                                                },\n                                                {\n                                                    \"X\": 0.44649386405944824,\n                                                    \"Y\": 0.3450586199760437\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.82378387451172\n                                    },\n                                    \"PageNumber\": 1\n                                },\n                                {\n                                    \"Type\": {\n                                        \"Text\": \"EXPENSE_ROW\",\n                                        \"Confidence\": 93.00347900390625\n                                    },\n                                    \"ValueDetection\": {\n                                        \"Text\": \"Pharmacy (Extended) 2 165.81\",\n                                        \"Geometry\": {\n                                            \"BoundingBox\": {\n                                                \"Width\": 0.5637550950050354,\n                                                \"Height\": 0.017697438597679138,\n                                                \"Left\": 0.10911048203706741,\n                                                \"Top\": 0.33178555965423584\n                                            },\n                                            \"Polygon\": [\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.33178555965423584\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.33178555965423584\n                                                },\n                                                {\n                                                    \"X\": 0.6728655695915222,\n                                                    \"Y\": 0.34948301315307617\n                                                },\n                                                {\n                                                    \"X\": 0.10911048203706741,\n                                                    \"Y\": 0.34948301315307617\n                                                }\n                                            ]\n                                        },\n                                        \"Confidence\": 92.76013946533203\n                                    },\n                                    \"PageNumber\": 1\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}\n"
  },
  {
    "path": "src-python/tests/data/textract-new-tables-api.json",
    "content": "    {\n        \"DocumentMetadata\": {\n            \"Pages\": 1\n        },\n        \"Blocks\": [\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 1.0,\n                        \"Height\": 1.0,\n                        \"Left\": 0.0,\n                        \"Top\": 0.0\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 9.33321120033382e-17,\n                            \"Y\": 0.0\n                        },\n                        {\n                            \"X\": 1.0,\n                            \"Y\": 1.6069064689339292e-16\n                        },\n                        {\n                            \"X\": 1.0,\n                            \"Y\": 1.0\n                        },\n                        {\n                            \"X\": 0.0,\n                            \"Y\": 1.0\n                        }\n                    ]\n                },\n                \"Id\": \"94a3bf76-98df-4e7d-bc31-374877a829e8\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"0015e0b5-5a99-4131-99fe-676de5cfc420\",\n                            \"0d37c8d7-d644-482d-8858-62ab20139d6c\",\n                            \"d9fe5c62-7c6d-4ef8-afbc-de3c94fe1ecd\",\n                            \"3e066a22-c152-491c-8e58-09ca78c8cc90\",\n                            \"da23955e-660d-4d19-a85d-727cb5b88248\",\n                            \"ba4d4bc8-f8de-4a7b-86ca-bb8fb6f71494\",\n                            \"f9d52134-19fa-4154-ac61-3a7e0fc47eb7\",\n                            \"683f0fbd-f535-471d-a9b1-90fc2f1569f9\",\n                            \"1698f2cc-49b7-4400-9f24-989be21ff006\",\n                            \"8e6f27ae-f5ef-4fb6-a66d-fcd10dfbe95c\",\n                            \"60558932-b41a-4681-91cd-7558ecdc8652\",\n                            \"c31f31d7-9557-4c71-8fde-74e8231028b8\",\n                            \"483f4737-ecd4-4ca5-8759-612acf9dc478\",\n                            \"b446055e-cc27-45a9-8221-9324bb820306\",\n                            \"95d69adc-78de-420c-9658-3cbe0224add5\",\n                            \"736430c5-aad3-42a8-9737-6ca7080e7781\",\n                            \"8f9c332b-ee44-4bf4-9d78-728c700a9292\",\n                            \"50dc96eb-9169-4e66-98a5-2022894d943f\",\n                            \"3e93a48a-25f7-40d6-ab15-928253b14938\",\n                            \"aa4338b9-d116-4338-8d26-0282dd56d49d\",\n                            \"4335a4ec-abf7-4bdf-a4a9-da791804eece\",\n                            \"b248df97-49f7-4489-b3bc-545a5b398c04\",\n                            \"715707de-6979-445a-bd9f-83cd61803a79\",\n                            \"bd1cd403-3e41-4914-bcc7-f21caef74b8f\",\n                            \"d7e1b738-71ce-4389-9c15-63e910c275df\",\n                            \"148cdebb-dbda-43b9-854e-40a559e0e4f3\",\n                            \"eb25e841-4f9c-4477-80df-01e60c503361\",\n                            \"0a75beda-5fa6-4ae1-876c-5f097cb6fbe4\",\n                            \"61038a14-87c2-44f5-9d30-ddd29363f5e4\",\n                            \"361509c9-0440-47d0-b61b-2c41111e930a\",\n                            \"d24f0f4f-52a3-4474-925d-6a76ad672cff\",\n                            \"e74953bf-c43c-4060-a6d0-802da5bc887c\",\n                            \"eeebadce-0d19-4129-8ca7-f0123d31fb11\",\n                            \"4262503e-6b5f-405f-b948-10e6d0b8afed\",\n                            \"d73b8c17-a534-4888-a7a8-25e6e1ad7771\",\n                            \"e857631b-ec7f-470b-8e2d-3f4cea41ffc6\",\n                            \"c8e91125-8ff6-4a1e-adc0-2670e0bbdec1\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.90126037597656,\n                \"Text\": \"Employment Application\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.3255040645599365,\n                        \"Height\": 0.03890947252511978,\n                        \"Left\": 0.28054946660995483,\n                        \"Top\": 0.16848231852054596\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.20739178359508514\n                        },\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.20739178359508514\n                        }\n                    ]\n                },\n                \"Id\": \"0015e0b5-5a99-4131-99fe-676de5cfc420\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"625a8858-e3fd-4e89-91ed-4aa10629a688\",\n                            \"3d252774-5016-4e1e-9a9b-f70fea309ea2\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.57406616210938,\n                \"Text\": \"Applicant Information\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.22908996045589447,\n                        \"Height\": 0.031159373000264168,\n                        \"Left\": 0.07345423102378845,\n                        \"Top\": 0.24377863109111786\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.27493801712989807\n                        },\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.27493801712989807\n                        }\n                    ]\n                },\n                \"Id\": \"0d37c8d7-d644-482d-8858-62ab20139d6c\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"755d2660-b558-43cf-af2a-acd3fdbd7f3a\",\n                            \"6a492ff8-43b3-4919-9ddd-97acac03149c\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.69449615478516,\n                \"Text\": \"Full Name: Jane Doe\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.18137097358703613,\n                        \"Height\": 0.022487515583634377,\n                        \"Left\": 0.07476355135440826,\n                        \"Top\": 0.3128688931465149\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.3353564143180847\n                        },\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.3353564143180847\n                        }\n                    ]\n                },\n                \"Id\": \"d9fe5c62-7c6d-4ef8-afbc-de3c94fe1ecd\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"912adc3c-cd1b-4cad-815a-327092d6b5ca\",\n                            \"d0df798f-8b24-4f55-8ba6-13935d4a626b\",\n                            \"589d5318-3606-48b8-83a6-7808680a0537\",\n                            \"621b76be-a3d1-4765-a837-6d3de5e0b841\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.44634246826172,\n                \"Text\": \"Phone Number: 555-0100\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.22759996354579926,\n                        \"Height\": 0.025317534804344177,\n                        \"Left\": 0.07484839111566544,\n                        \"Top\": 0.37515419721603394\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.4004717469215393\n                        },\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.4004717469215393\n                        }\n                    ]\n                },\n                \"Id\": \"3e066a22-c152-491c-8e58-09ca78c8cc90\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"358bbbfd-1f99-4570-90b3-925e8b5950bd\",\n                            \"215d7334-8611-4386-8c05-17fc1cb7dd4f\",\n                            \"0502bbc8-5c58-4345-9010-6ec8050aa3f8\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.79651641845703,\n                \"Text\": \"Home Address: 123 Any Street, Any Town, USA\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.42288628220558167,\n                        \"Height\": 0.026836976408958435,\n                        \"Left\": 0.07488469034433365,\n                        \"Top\": 0.43991395831108093\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.4667509198188782\n                        },\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.4667509198188782\n                        }\n                    ]\n                },\n                \"Id\": \"da23955e-660d-4d19-a85d-727cb5b88248\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"3aec9056-80c3-4901-95ae-d05ef68b3ff8\",\n                            \"092d6454-51c7-4d72-8e96-4480fcf95293\",\n                            \"f4d8289f-e2a6-41d4-86ca-adc96819f620\",\n                            \"6c8cecc9-940d-4597-b360-82c77a860908\",\n                            \"d3c9f764-8710-4386-95d3-cd66502aadac\",\n                            \"0d79211e-42bb-4a75-a374-1550b79e79b6\",\n                            \"3841793c-b23d-470b-9bc6-16496f6cf764\",\n                            \"ff5e0460-f02d-4eed-a3f3-74a56b64f63c\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.8390884399414,\n                \"Text\": \"Mailing Address: same as home address\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.3576335608959198,\n                        \"Height\": 0.027664214372634888,\n                        \"Left\": 0.07483324408531189,\n                        \"Top\": 0.5025233626365662\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5301876068115234\n                        },\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5301876068115234\n                        }\n                    ]\n                },\n                \"Id\": \"ba4d4bc8-f8de-4a7b-86ca-bb8fb6f71494\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1863c646-39ce-4ec4-8a28-a2e39c04585e\",\n                            \"521b9137-bd2a-49c8-b51c-2ef96a9189db\",\n                            \"3817a28f-b2dc-469c-98fb-bc666431d7dd\",\n                            \"8b5cc78a-bd34-4d53-84b1-82352758b2c2\",\n                            \"ada83f70-5d35-4e03-b711-cbba9b517c46\",\n                            \"7039d472-daa6-4726-a81e-8f667c5c8305\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.78767395019531,\n                \"Text\": \"Previous Employment History\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.3052908480167389,\n                        \"Height\": 0.031595394015312195,\n                        \"Left\": 0.3072309195995331,\n                        \"Top\": 0.598618745803833\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.6302141547203064\n                        },\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.6302141547203064\n                        }\n                    ]\n                },\n                \"Id\": \"f9d52134-19fa-4154-ac61-3a7e0fc47eb7\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"c52909ff-ca70-47c2-a834-71c21b9d3fa8\",\n                            \"d1de75c6-8a76-4eb1-85b9-01ca85dc3d92\",\n                            \"9dea32cc-0747-47df-a346-fe6eb6a472db\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.58184814453125,\n                \"Text\": \"Start Date\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09591718018054962,\n                        \"Height\": 0.022017227485775948,\n                        \"Left\": 0.07416463643312454,\n                        \"Top\": 0.6557980179786682\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6778151988983154\n                        },\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6778151988983154\n                        }\n                    ]\n                },\n                \"Id\": \"683f0fbd-f535-471d-a9b1-90fc2f1569f9\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"8ae19273-a00b-450d-a28b-ea11232b6584\",\n                            \"d1f64c0f-b2ec-4003-a73a-8cfd9f77737b\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.62313079833984,\n                \"Text\": \"End Date\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08422452956438065,\n                        \"Height\": 0.022735772654414177,\n                        \"Left\": 0.19170773029327393,\n                        \"Top\": 0.6550583243370056\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6777940988540649\n                        },\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6777940988540649\n                        }\n                    ]\n                },\n                \"Id\": \"1698f2cc-49b7-4400-9f24-989be21ff006\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"a2b5c525-cdac-4107-8bfa-f1b142af553d\",\n                            \"064fbed2-bf63-43f3-b3b9-76491d80f8e7\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.89241027832031,\n                \"Text\": \"Employer Name\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.15050503611564636,\n                        \"Height\": 0.027742065489292145,\n                        \"Left\": 0.3053176999092102,\n                        \"Top\": 0.6550468802452087\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6827889680862427\n                        },\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6827889680862427\n                        }\n                    ]\n                },\n                \"Id\": \"8e6f27ae-f5ef-4fb6-a66d-fcd10dfbe95c\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"400a67cb-5978-4666-91d8-c41974ecd190\",\n                            \"b1bcd269-956f-44ae-b4a4-caed03176e87\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.49966430664062,\n                \"Text\": \"Position Held\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12431544065475464,\n                        \"Height\": 0.02317001484334469,\n                        \"Left\": 0.49208903312683105,\n                        \"Top\": 0.6549334526062012\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6781034469604492\n                        },\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6781034469604492\n                        }\n                    ]\n                },\n                \"Id\": \"60558932-b41a-4681-91cd-7558ecdc8652\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"7a8affeb-8be5-4a22-a08b-758a88eb712f\",\n                            \"79a46309-4f7b-4f53-9162-fad8b2ca7fea\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.94905090332031,\n                \"Text\": \"Reason for leaving\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1734311282634735,\n                        \"Height\": 0.027783755213022232,\n                        \"Left\": 0.6555624604225159,\n                        \"Top\": 0.6545379757881165\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6823217272758484\n                        },\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6823217272758484\n                        }\n                    ]\n                },\n                \"Id\": \"c31f31d7-9557-4c71-8fde-74e8231028b8\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1333cd32-e8d0-46f8-81cc-9743a647bb77\",\n                            \"ab526a6c-5579-4e69-ad56-712f87393305\",\n                            \"23341403-933e-4184-be0e-e4e52b40e951\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.60453796386719,\n                \"Text\": \"1/15/2009\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09682866185903549,\n                        \"Height\": 0.026843825355172157,\n                        \"Left\": 0.07532798498868942,\n                        \"Top\": 0.7083258628845215\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7351697087287903\n                        },\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7351697087287903\n                        }\n                    ]\n                },\n                \"Id\": \"483f4737-ecd4-4ca5-8759-612acf9dc478\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"fe86ba64-577e-4a71-87b4-4dfdd02a5a90\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.56900024414062,\n                \"Text\": \"6/30/2011\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09772055596113205,\n                        \"Height\": 0.026978127658367157,\n                        \"Left\": 0.19010485708713531,\n                        \"Top\": 0.7083016633987427\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7352797389030457\n                        },\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7352797389030457\n                        }\n                    ]\n                },\n                \"Id\": \"b446055e-cc27-45a9-8221-9324bb820306\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1ff62eaa-6d4b-468b-8fb8-d8b4827c83ce\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.71903228759766,\n                \"Text\": \"Any Company\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12857750058174133,\n                        \"Height\": 0.026797549799084663,\n                        \"Left\": 0.30455324053764343,\n                        \"Top\": 0.7101057171821594\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7369032502174377\n                        },\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7369032502174377\n                        }\n                    ]\n                },\n                \"Id\": \"95d69adc-78de-420c-9658-3cbe0224add5\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"d426cb5e-1c8d-445b-ab2e-5cd30de3730f\",\n                            \"fce49b07-8b57-45b9-aa1e-3a86d4042324\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.40178680419922,\n                \"Text\": \"Assistant Baker\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.14129234850406647,\n                        \"Height\": 0.02259770780801773,\n                        \"Left\": 0.491060733795166,\n                        \"Top\": 0.709382951259613\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.7319806218147278\n                        },\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.7319806218147278\n                        }\n                    ]\n                },\n                \"Id\": \"736430c5-aad3-42a8-9737-6ca7080e7781\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"df40f134-e187-4370-912e-60d7c0d952c7\",\n                            \"4777c1ee-5d43-4f44-8cdc-9fd14c80e82f\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.95004272460938,\n                \"Text\": \"Family relocated\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.15156562626361847,\n                        \"Height\": 0.027614763006567955,\n                        \"Left\": 0.6555473208427429,\n                        \"Top\": 0.7087563872337341\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7363711595535278\n                        },\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7363711595535278\n                        }\n                    ]\n                },\n                \"Id\": \"8f9c332b-ee44-4bf4-9d78-728c700a9292\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"465dbbe8-79e7-4fbf-a631-7173002a67dd\",\n                            \"10353471-6497-400d-b910-e539d05440b4\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.79296875,\n                \"Text\": \"7/1/2011\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08606299757957458,\n                        \"Height\": 0.026600508019328117,\n                        \"Left\": 0.07446355372667313,\n                        \"Top\": 0.7624131441116333\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7890136241912842\n                        },\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7890136241912842\n                        }\n                    ]\n                },\n                \"Id\": \"50dc96eb-9169-4e66-98a5-2022894d943f\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"cbd8e316-8974-458c-8ea6-2aab273cb76b\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.67514038085938,\n                \"Text\": \"8/10/2013\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09801376610994339,\n                        \"Height\": 0.02662261761724949,\n                        \"Left\": 0.1903243064880371,\n                        \"Top\": 0.7625806331634521\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7892032861709595\n                        },\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7892032861709595\n                        }\n                    ]\n                },\n                \"Id\": \"3e93a48a-25f7-40d6-ab15-928253b14938\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"bfadf991-5934-4e7d-a247-56eccfff0f38\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.54069519042969,\n                \"Text\": \"Best Corp.\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09383980184793472,\n                        \"Height\": 0.026751743629574776,\n                        \"Left\": 0.3057495653629303,\n                        \"Top\": 0.7636430859565735\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7903947830200195\n                        },\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7903947830200195\n                        }\n                    ]\n                },\n                \"Id\": \"aa4338b9-d116-4338-8d26-0282dd56d49d\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1eeafbf3-55a2-4101-a7c6-8ba5fae2f903\",\n                            \"1d8435be-6a8a-4c2c-bc2d-a63f210ba9f2\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.607177734375,\n                \"Text\": \"Baker\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.052544187754392624,\n                        \"Height\": 0.02315184660255909,\n                        \"Left\": 0.4920831322669983,\n                        \"Top\": 0.7629870772361755\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7861389517784119\n                        },\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7861389517784119\n                        }\n                    ]\n                },\n                \"Id\": \"4335a4ec-abf7-4bdf-a4a9-da791804eece\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"ba9e10a9-a028-44d6-b449-37e199ee4e9a\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.95084381103516,\n                \"Text\": \"Better opportunity\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.17288310825824738,\n                        \"Height\": 0.026211483404040337,\n                        \"Left\": 0.6555969715118408,\n                        \"Top\": 0.7639016509056091\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7901131510734558\n                        },\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7901131510734558\n                        }\n                    ]\n                },\n                \"Id\": \"b248df97-49f7-4489-b3bc-545a5b398c04\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"6b2b8e6d-f03f-468c-8b90-5ae5fedebf70\",\n                            \"b499da3b-b7c0-4c3e-84c4-bd1e5b792100\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.74268341064453,\n                \"Text\": \"8/15/2013\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09693203121423721,\n                        \"Height\": 0.02708902582526207,\n                        \"Left\": 0.07475598156452179,\n                        \"Top\": 0.8139497637748718\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8410388231277466\n                        },\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8410388231277466\n                        }\n                    ]\n                },\n                \"Id\": \"715707de-6979-445a-bd9f-83cd61803a79\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"e80c5f3c-f3f8-4278-910b-edb401fbc628\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.9533462524414,\n                \"Text\": \"present\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07096851617097855,\n                        \"Height\": 0.024416884407401085,\n                        \"Left\": 0.19085319340229034,\n                        \"Top\": 0.8176923394203186\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.842109203338623\n                        },\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.842109203338623\n                        }\n                    ]\n                },\n                \"Id\": \"bd1cd403-3e41-4914-bcc7-f21caef74b8f\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"59565c8c-dd02-49f8-811b-6687d59de965\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.48316192626953,\n                \"Text\": \"Example Corp.\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1315254122018814,\n                        \"Height\": 0.027120307087898254,\n                        \"Left\": 0.3059176802635193,\n                        \"Top\": 0.8153413534164429\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8424617052078247\n                        },\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8424617052078247\n                        }\n                    ]\n                },\n                \"Id\": \"d7e1b738-71ce-4389-9c15-63e910c275df\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"c5c8e89a-4278-42b7-a394-0bebaf8f809e\",\n                            \"e31448db-c4e6-4f9e-b7dd-3bd0f12c74d3\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.70124816894531,\n                \"Text\": \"Head Baker\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1057649627327919,\n                        \"Height\": 0.022487984970211983,\n                        \"Left\": 0.4926374554634094,\n                        \"Top\": 0.8152825832366943\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8377705812454224\n                        },\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.8377705812454224\n                        }\n                    ]\n                },\n                \"Id\": \"148cdebb-dbda-43b9-854e-40a559e0e4f3\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5fd9986b-28e8-45a0-a344-6228624cfbd8\",\n                            \"612de987-2ad0-40f9-944a-fb7823c4e196\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.43244171142578,\n                \"Text\": \"N/A, current\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1153697520494461,\n                        \"Height\": 0.026958370581269264,\n                        \"Left\": 0.6552858352661133,\n                        \"Top\": 0.8146923184394836\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8416507244110107\n                        },\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8416507244110107\n                        }\n                    ]\n                },\n                \"Id\": \"eb25e841-4f9c-4477-80df-01e60c503361\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"4486207c-ca83-4495-b385-c262f38b9f73\",\n                            \"579d876d-22c5-4b27-9317-24e379ab561f\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"LINE\",\n                \"Confidence\": 99.95295715332031,\n                \"Text\": \"employer\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0887165293097496,\n                        \"Height\": 0.027792751789093018,\n                        \"Left\": 0.6545867919921875,\n                        \"Top\": 0.8517507314682007\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8795434832572937\n                        },\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8795434832572937\n                        }\n                    ]\n                },\n                \"Id\": \"0a75beda-5fa6-4ae1-876c-5f097cb6fbe4\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"e0088374-7896-4110-8bf6-a7849d4e4728\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.89954376220703,\n                \"Text\": \"Employment\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16838328540325165,\n                        \"Height\": 0.03837485611438751,\n                        \"Left\": 0.28054946660995483,\n                        \"Top\": 0.1688857227563858\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.1688857227563858\n                        },\n                        {\n                            \"X\": 0.4489327669143677,\n                            \"Y\": 0.1688857227563858\n                        },\n                        {\n                            \"X\": 0.4489327669143677,\n                            \"Y\": 0.20726057887077332\n                        },\n                        {\n                            \"X\": 0.28054946660995483,\n                            \"Y\": 0.20726057887077332\n                        }\n                    ]\n                },\n                \"Id\": \"625a8858-e3fd-4e89-91ed-4aa10629a688\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.9029769897461,\n                \"Text\": \"Application\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1501336693763733,\n                        \"Height\": 0.03890947252511978,\n                        \"Left\": 0.4559198319911957,\n                        \"Top\": 0.16848231852054596\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4559198319911957,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.16848231852054596\n                        },\n                        {\n                            \"X\": 0.6060535311698914,\n                            \"Y\": 0.20739178359508514\n                        },\n                        {\n                            \"X\": 0.4559198319911957,\n                            \"Y\": 0.20739178359508514\n                        }\n                    ]\n                },\n                \"Id\": \"3d252774-5016-4e1e-9a9b-f70fea309ea2\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.81241607666016,\n                \"Text\": \"Applicant\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.10103903710842133,\n                        \"Height\": 0.031159373000264168,\n                        \"Left\": 0.07345423102378845,\n                        \"Top\": 0.24377863109111786\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.17449326813220978,\n                            \"Y\": 0.24377863109111786\n                        },\n                        {\n                            \"X\": 0.17449326813220978,\n                            \"Y\": 0.27493801712989807\n                        },\n                        {\n                            \"X\": 0.07345423102378845,\n                            \"Y\": 0.27493801712989807\n                        }\n                    ]\n                },\n                \"Id\": \"755d2660-b558-43cf-af2a-acd3fdbd7f3a\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.33570861816406,\n                \"Text\": \"Information\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12425553798675537,\n                        \"Height\": 0.025857385247945786,\n                        \"Left\": 0.17828865349292755,\n                        \"Top\": 0.24393458664417267\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.17828865349292755,\n                            \"Y\": 0.24393458664417267\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.24393458664417267\n                        },\n                        {\n                            \"X\": 0.30254417657852173,\n                            \"Y\": 0.26979196071624756\n                        },\n                        {\n                            \"X\": 0.17828865349292755,\n                            \"Y\": 0.26979196071624756\n                        }\n                    ]\n                },\n                \"Id\": \"6a492ff8-43b3-4919-9ddd-97acac03149c\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.83560180664062,\n                \"Text\": \"Full\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03129151836037636,\n                        \"Height\": 0.02196977473795414,\n                        \"Left\": 0.07476355135440826,\n                        \"Top\": 0.31310969591140747\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.31310969591140747\n                        },\n                        {\n                            \"X\": 0.10605507344007492,\n                            \"Y\": 0.31310969591140747\n                        },\n                        {\n                            \"X\": 0.10605507344007492,\n                            \"Y\": 0.33507949113845825\n                        },\n                        {\n                            \"X\": 0.07476355135440826,\n                            \"Y\": 0.33507949113845825\n                        }\n                    ]\n                },\n                \"Id\": \"912adc3c-cd1b-4cad-815a-327092d6b5ca\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.53668212890625,\n                \"Text\": \"Name:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.057341206818819046,\n                        \"Height\": 0.02142651565372944,\n                        \"Left\": 0.10984015464782715,\n                        \"Top\": 0.31392988562583923\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.10984015464782715,\n                            \"Y\": 0.31392988562583923\n                        },\n                        {\n                            \"X\": 0.1671813577413559,\n                            \"Y\": 0.31392988562583923\n                        },\n                        {\n                            \"X\": 0.1671813577413559,\n                            \"Y\": 0.3353564143180847\n                        },\n                        {\n                            \"X\": 0.10984015464782715,\n                            \"Y\": 0.3353564143180847\n                        }\n                    ]\n                },\n                \"Id\": \"d0df798f-8b24-4f55-8ba6-13935d4a626b\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.52113342285156,\n                \"Text\": \"Jane\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04195956513285637,\n                        \"Height\": 0.02230699732899666,\n                        \"Left\": 0.17184381186962128,\n                        \"Top\": 0.3128688931465149\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.17184381186962128,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.21380338072776794,\n                            \"Y\": 0.3128688931465149\n                        },\n                        {\n                            \"X\": 0.21380338072776794,\n                            \"Y\": 0.33517587184906006\n                        },\n                        {\n                            \"X\": 0.17184381186962128,\n                            \"Y\": 0.33517587184906006\n                        }\n                    ]\n                },\n                \"Id\": \"589d5318-3606-48b8-83a6-7808680a0537\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.88456726074219,\n                \"Text\": \"Doe\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.037064023315906525,\n                        \"Height\": 0.021904800087213516,\n                        \"Left\": 0.21907050907611847,\n                        \"Top\": 0.31317970156669617\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21907050907611847,\n                            \"Y\": 0.31317970156669617\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.31317970156669617\n                        },\n                        {\n                            \"X\": 0.2561345398426056,\n                            \"Y\": 0.3350844979286194\n                        },\n                        {\n                            \"X\": 0.21907050907611847,\n                            \"Y\": 0.3350844979286194\n                        }\n                    ]\n                },\n                \"Id\": \"621b76be-a3d1-4765-a837-6d3de5e0b841\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.3232650756836,\n                \"Text\": \"Phone\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05477150157094002,\n                        \"Height\": 0.021995294839143753,\n                        \"Left\": 0.07484839111566544,\n                        \"Top\": 0.3768545985221863\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.3768545985221863\n                        },\n                        {\n                            \"X\": 0.12961989641189575,\n                            \"Y\": 0.3768545985221863\n                        },\n                        {\n                            \"X\": 0.12961989641189575,\n                            \"Y\": 0.3988499045372009\n                        },\n                        {\n                            \"X\": 0.07484839111566544,\n                            \"Y\": 0.3988499045372009\n                        }\n                    ]\n                },\n                \"Id\": \"358bbbfd-1f99-4570-90b3-925e8b5950bd\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.78343200683594,\n                \"Text\": \"Number:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07595471292734146,\n                        \"Height\": 0.021886629983782768,\n                        \"Left\": 0.13361184298992157,\n                        \"Top\": 0.3769722878932953\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.13361184298992157,\n                            \"Y\": 0.3769722878932953\n                        },\n                        {\n                            \"X\": 0.20956656336784363,\n                            \"Y\": 0.3769722878932953\n                        },\n                        {\n                            \"X\": 0.20956656336784363,\n                            \"Y\": 0.3988589346408844\n                        },\n                        {\n                            \"X\": 0.13361184298992157,\n                            \"Y\": 0.3988589346408844\n                        }\n                    ]\n                },\n                \"Id\": \"215d7334-8611-4386-8c05-17fc1cb7dd4f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.23233032226562,\n                \"Text\": \"555-0100\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0870467945933342,\n                        \"Height\": 0.025317534804344177,\n                        \"Left\": 0.2154015600681305,\n                        \"Top\": 0.37515419721603394\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2154015600681305,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.37515419721603394\n                        },\n                        {\n                            \"X\": 0.3024483621120453,\n                            \"Y\": 0.4004717469215393\n                        },\n                        {\n                            \"X\": 0.2154015600681305,\n                            \"Y\": 0.4004717469215393\n                        }\n                    ]\n                },\n                \"Id\": \"0502bbc8-5c58-4345-9010-6ec8050aa3f8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.57723999023438,\n                \"Text\": \"Home\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05140352249145508,\n                        \"Height\": 0.020814811810851097,\n                        \"Left\": 0.07488469034433365,\n                        \"Top\": 0.4414433538913727\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.4414433538913727\n                        },\n                        {\n                            \"X\": 0.12628822028636932,\n                            \"Y\": 0.4414433538913727\n                        },\n                        {\n                            \"X\": 0.12628822028636932,\n                            \"Y\": 0.46225816011428833\n                        },\n                        {\n                            \"X\": 0.07488469034433365,\n                            \"Y\": 0.46225816011428833\n                        }\n                    ]\n                },\n                \"Id\": \"3aec9056-80c3-4901-95ae-d05ef68b3ff8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.63672637939453,\n                \"Text\": \"Address:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07557927072048187,\n                        \"Height\": 0.021476319059729576,\n                        \"Left\": 0.12994901835918427,\n                        \"Top\": 0.44067901372909546\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.12994901835918427,\n                            \"Y\": 0.44067901372909546\n                        },\n                        {\n                            \"X\": 0.20552828907966614,\n                            \"Y\": 0.44067901372909546\n                        },\n                        {\n                            \"X\": 0.20552828907966614,\n                            \"Y\": 0.4621553122997284\n                        },\n                        {\n                            \"X\": 0.12994901835918427,\n                            \"Y\": 0.4621553122997284\n                        }\n                    ]\n                },\n                \"Id\": \"092d6454-51c7-4d72-8e96-4480fcf95293\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.86543273925781,\n                \"Text\": \"123\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03301164135336876,\n                        \"Height\": 0.021568577736616135,\n                        \"Left\": 0.21101944148540497,\n                        \"Top\": 0.43997859954833984\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21101944148540497,\n                            \"Y\": 0.43997859954833984\n                        },\n                        {\n                            \"X\": 0.24403108656406403,\n                            \"Y\": 0.43997859954833984\n                        },\n                        {\n                            \"X\": 0.24403108656406403,\n                            \"Y\": 0.4615471661090851\n                        },\n                        {\n                            \"X\": 0.21101944148540497,\n                            \"Y\": 0.4615471661090851\n                        }\n                    ]\n                },\n                \"Id\": \"f4d8289f-e2a6-41d4-86ca-adc96819f620\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.89830780029297,\n                \"Text\": \"Any\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03665609285235405,\n                        \"Height\": 0.026099350303411484,\n                        \"Left\": 0.24908901751041412,\n                        \"Top\": 0.44051048159599304\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.24908901751041412,\n                            \"Y\": 0.44051048159599304\n                        },\n                        {\n                            \"X\": 0.28574511408805847,\n                            \"Y\": 0.44051048159599304\n                        },\n                        {\n                            \"X\": 0.28574511408805847,\n                            \"Y\": 0.4666098356246948\n                        },\n                        {\n                            \"X\": 0.24908901751041412,\n                            \"Y\": 0.4666098356246948\n                        }\n                    ]\n                },\n                \"Id\": \"6c8cecc9-940d-4597-b360-82c77a860908\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.74813079833984,\n                \"Text\": \"Street,\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06156117096543312,\n                        \"Height\": 0.025534451007843018,\n                        \"Left\": 0.28976327180862427,\n                        \"Top\": 0.4407695531845093\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.28976327180862427,\n                            \"Y\": 0.4407695531845093\n                        },\n                        {\n                            \"X\": 0.3513244390487671,\n                            \"Y\": 0.4407695531845093\n                        },\n                        {\n                            \"X\": 0.3513244390487671,\n                            \"Y\": 0.4663040041923523\n                        },\n                        {\n                            \"X\": 0.28976327180862427,\n                            \"Y\": 0.4663040041923523\n                        }\n                    ]\n                },\n                \"Id\": \"d3c9f764-8710-4386-95d3-cd66502aadac\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.88127136230469,\n                \"Text\": \"Any\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03632398322224617,\n                        \"Height\": 0.026266932487487793,\n                        \"Left\": 0.35636916756629944,\n                        \"Top\": 0.4404839873313904\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.35636916756629944,\n                            \"Y\": 0.4404839873313904\n                        },\n                        {\n                            \"X\": 0.3926931619644165,\n                            \"Y\": 0.4404839873313904\n                        },\n                        {\n                            \"X\": 0.3926931619644165,\n                            \"Y\": 0.4667509198188782\n                        },\n                        {\n                            \"X\": 0.35636916756629944,\n                            \"Y\": 0.4667509198188782\n                        }\n                    ]\n                },\n                \"Id\": \"0d79211e-42bb-4a75-a374-1550b79e79b6\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.94439697265625,\n                \"Text\": \"Town,\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05762650817632675,\n                        \"Height\": 0.02581622451543808,\n                        \"Left\": 0.3966578543186188,\n                        \"Top\": 0.4405229389667511\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3966578543186188,\n                            \"Y\": 0.4405229389667511\n                        },\n                        {\n                            \"X\": 0.45428434014320374,\n                            \"Y\": 0.4405229389667511\n                        },\n                        {\n                            \"X\": 0.45428434014320374,\n                            \"Y\": 0.4663391709327698\n                        },\n                        {\n                            \"X\": 0.3966578543186188,\n                            \"Y\": 0.4663391709327698\n                        }\n                    ]\n                },\n                \"Id\": \"3841793c-b23d-470b-9bc6-16496f6cf764\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.82061767578125,\n                \"Text\": \"USA\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03830086067318916,\n                        \"Height\": 0.0220662672072649,\n                        \"Left\": 0.45947009325027466,\n                        \"Top\": 0.43991395831108093\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.45947009325027466,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.43991395831108093\n                        },\n                        {\n                            \"X\": 0.4977709650993347,\n                            \"Y\": 0.4619802236557007\n                        },\n                        {\n                            \"X\": 0.45947009325027466,\n                            \"Y\": 0.4619802236557007\n                        }\n                    ]\n                },\n                \"Id\": \"ff5e0460-f02d-4eed-a3f3-74a56b64f63c\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.86315155029297,\n                \"Text\": \"Mailing\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06527712196111679,\n                        \"Height\": 0.02558031678199768,\n                        \"Left\": 0.07483324408531189,\n                        \"Top\": 0.5046072602272034\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5046072602272034\n                        },\n                        {\n                            \"X\": 0.14011037349700928,\n                            \"Y\": 0.5046072602272034\n                        },\n                        {\n                            \"X\": 0.14011037349700928,\n                            \"Y\": 0.5301876068115234\n                        },\n                        {\n                            \"X\": 0.07483324408531189,\n                            \"Y\": 0.5301876068115234\n                        }\n                    ]\n                },\n                \"Id\": \"1863c646-39ce-4ec4-8a28-a2e39c04585e\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.5790023803711,\n                \"Text\": \"Address:\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0757967010140419,\n                        \"Height\": 0.022036630660295486,\n                        \"Left\": 0.1424836367368698,\n                        \"Top\": 0.5040034651756287\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1424836367368698,\n                            \"Y\": 0.5040034651756287\n                        },\n                        {\n                            \"X\": 0.2182803452014923,\n                            \"Y\": 0.5040034651756287\n                        },\n                        {\n                            \"X\": 0.2182803452014923,\n                            \"Y\": 0.5260400772094727\n                        },\n                        {\n                            \"X\": 0.1424836367368698,\n                            \"Y\": 0.5260400772094727\n                        }\n                    ]\n                },\n                \"Id\": \"521b9137-bd2a-49c8-b51c-2ef96a9189db\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95246887207031,\n                \"Text\": \"same\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04880683869123459,\n                        \"Height\": 0.017622461542487144,\n                        \"Left\": 0.22315485775470734,\n                        \"Top\": 0.5080132484436035\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.22315485775470734,\n                            \"Y\": 0.5080132484436035\n                        },\n                        {\n                            \"X\": 0.27196168899536133,\n                            \"Y\": 0.5080132484436035\n                        },\n                        {\n                            \"X\": 0.27196168899536133,\n                            \"Y\": 0.5256357192993164\n                        },\n                        {\n                            \"X\": 0.22315485775470734,\n                            \"Y\": 0.5256357192993164\n                        }\n                    ]\n                },\n                \"Id\": \"3817a28f-b2dc-469c-98fb-bc666431d7dd\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.71688079833984,\n                \"Text\": \"as\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.019262373447418213,\n                        \"Height\": 0.01676173508167267,\n                        \"Left\": 0.27775469422340393,\n                        \"Top\": 0.5088306069374084\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.27775469422340393,\n                            \"Y\": 0.5088306069374084\n                        },\n                        {\n                            \"X\": 0.29701706767082214,\n                            \"Y\": 0.5088306069374084\n                        },\n                        {\n                            \"X\": 0.29701706767082214,\n                            \"Y\": 0.5255923867225647\n                        },\n                        {\n                            \"X\": 0.27775469422340393,\n                            \"Y\": 0.5255923867225647\n                        }\n                    ]\n                },\n                \"Id\": \"8b5cc78a-bd34-4d53-84b1-82352758b2c2\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96449279785156,\n                \"Text\": \"home\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05231631547212601,\n                        \"Height\": 0.022475402802228928,\n                        \"Left\": 0.30285748839378357,\n                        \"Top\": 0.5028979778289795\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.30285748839378357,\n                            \"Y\": 0.5028979778289795\n                        },\n                        {\n                            \"X\": 0.35517382621765137,\n                            \"Y\": 0.5028979778289795\n                        },\n                        {\n                            \"X\": 0.35517382621765137,\n                            \"Y\": 0.5253733992576599\n                        },\n                        {\n                            \"X\": 0.30285748839378357,\n                            \"Y\": 0.5253733992576599\n                        }\n                    ]\n                },\n                \"Id\": \"ada83f70-5d35-4e03-b711-cbba9b517c46\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95855712890625,\n                \"Text\": \"address\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07197657972574234,\n                        \"Height\": 0.023286499083042145,\n                        \"Left\": 0.36049020290374756,\n                        \"Top\": 0.5025233626365662\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.36049020290374756,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5025233626365662\n                        },\n                        {\n                            \"X\": 0.4324668049812317,\n                            \"Y\": 0.5258098840713501\n                        },\n                        {\n                            \"X\": 0.36049020290374756,\n                            \"Y\": 0.5258098840713501\n                        }\n                    ]\n                },\n                \"Id\": \"7039d472-daa6-4726-a81e-8f667c5c8305\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.57333374023438,\n                \"Text\": \"Previous\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08931856602430344,\n                        \"Height\": 0.024376077577471733,\n                        \"Left\": 0.3072309195995331,\n                        \"Top\": 0.5995923280715942\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.5995923280715942\n                        },\n                        {\n                            \"X\": 0.3965494930744171,\n                            \"Y\": 0.5995923280715942\n                        },\n                        {\n                            \"X\": 0.3965494930744171,\n                            \"Y\": 0.6239684224128723\n                        },\n                        {\n                            \"X\": 0.3072309195995331,\n                            \"Y\": 0.6239684224128723\n                        }\n                    ]\n                },\n                \"Id\": \"c52909ff-ca70-47c2-a834-71c21b9d3fa8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.87650299072266,\n                \"Text\": \"Employment\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.13128876686096191,\n                        \"Height\": 0.031595394015312195,\n                        \"Left\": 0.4023631513118744,\n                        \"Top\": 0.598618745803833\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4023631513118744,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.5336519479751587,\n                            \"Y\": 0.598618745803833\n                        },\n                        {\n                            \"X\": 0.5336519479751587,\n                            \"Y\": 0.6302141547203064\n                        },\n                        {\n                            \"X\": 0.4023631513118744,\n                            \"Y\": 0.6302141547203064\n                        }\n                    ]\n                },\n                \"Id\": \"d1de75c6-8a76-4eb1-85b9-01ca85dc3d92\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.91316986083984,\n                \"Text\": \"History\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07424931228160858,\n                        \"Height\": 0.03070068359375,\n                        \"Left\": 0.5382724404335022,\n                        \"Top\": 0.5992337465286255\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5382724404335022,\n                            \"Y\": 0.5992337465286255\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.5992337465286255\n                        },\n                        {\n                            \"X\": 0.612521767616272,\n                            \"Y\": 0.6299344301223755\n                        },\n                        {\n                            \"X\": 0.5382724404335022,\n                            \"Y\": 0.6299344301223755\n                        }\n                    ]\n                },\n                \"Id\": \"9dea32cc-0747-47df-a346-fe6eb6a472db\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.68086242675781,\n                \"Text\": \"Start\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.046461764723062515,\n                        \"Height\": 0.022017227485775948,\n                        \"Left\": 0.07416463643312454,\n                        \"Top\": 0.6557980179786682\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.12062639743089676,\n                            \"Y\": 0.6557980179786682\n                        },\n                        {\n                            \"X\": 0.12062639743089676,\n                            \"Y\": 0.6778151988983154\n                        },\n                        {\n                            \"X\": 0.07416463643312454,\n                            \"Y\": 0.6778151988983154\n                        }\n                    ]\n                },\n                \"Id\": \"8ae19273-a00b-450d-a28b-ea11232b6584\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.48283386230469,\n                \"Text\": \"Date\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.044250085949897766,\n                        \"Height\": 0.021391822025179863,\n                        \"Left\": 0.1258317232131958,\n                        \"Top\": 0.6560804843902588\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1258317232131958,\n                            \"Y\": 0.6560804843902588\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6560804843902588\n                        },\n                        {\n                            \"X\": 0.17008180916309357,\n                            \"Y\": 0.6774722933769226\n                        },\n                        {\n                            \"X\": 0.1258317232131958,\n                            \"Y\": 0.6774722933769226\n                        }\n                    ]\n                },\n                \"Id\": \"d1f64c0f-b2ec-4003-a73a-8cfd9f77737b\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.68376922607422,\n                \"Text\": \"End\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0342257097363472,\n                        \"Height\": 0.022735772654414177,\n                        \"Left\": 0.19170773029327393,\n                        \"Top\": 0.6550583243370056\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.22593343257904053,\n                            \"Y\": 0.6550583243370056\n                        },\n                        {\n                            \"X\": 0.22593343257904053,\n                            \"Y\": 0.6777940988540649\n                        },\n                        {\n                            \"X\": 0.19170773029327393,\n                            \"Y\": 0.6777940988540649\n                        }\n                    ]\n                },\n                \"Id\": \"a2b5c525-cdac-4107-8bfa-f1b142af553d\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.5625,\n                \"Text\": \"Date\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04447553679347038,\n                        \"Height\": 0.02141851745545864,\n                        \"Left\": 0.2314567118883133,\n                        \"Top\": 0.6560686230659485\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2314567118883133,\n                            \"Y\": 0.6560686230659485\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6560686230659485\n                        },\n                        {\n                            \"X\": 0.275932252407074,\n                            \"Y\": 0.6774871349334717\n                        },\n                        {\n                            \"X\": 0.2314567118883133,\n                            \"Y\": 0.6774871349334717\n                        }\n                    ]\n                },\n                \"Id\": \"064fbed2-bf63-43f3-b3b9-76491d80f8e7\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96017456054688,\n                \"Text\": \"Employer\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09051616489887238,\n                        \"Height\": 0.027742065489292145,\n                        \"Left\": 0.3053176999092102,\n                        \"Top\": 0.6550468802452087\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.3958338797092438,\n                            \"Y\": 0.6550468802452087\n                        },\n                        {\n                            \"X\": 0.3958338797092438,\n                            \"Y\": 0.6827889680862427\n                        },\n                        {\n                            \"X\": 0.3053176999092102,\n                            \"Y\": 0.6827889680862427\n                        }\n                    ]\n                },\n                \"Id\": \"400a67cb-5978-4666-91d8-c41974ecd190\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.82466125488281,\n                \"Text\": \"Name\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05623318627476692,\n                        \"Height\": 0.022057799622416496,\n                        \"Left\": 0.39958953857421875,\n                        \"Top\": 0.6561035513877869\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.39958953857421875,\n                            \"Y\": 0.6561035513877869\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6561035513877869\n                        },\n                        {\n                            \"X\": 0.45582273602485657,\n                            \"Y\": 0.6781613230705261\n                        },\n                        {\n                            \"X\": 0.39958953857421875,\n                            \"Y\": 0.6781613230705261\n                        }\n                    ]\n                },\n                \"Id\": \"b1bcd269-956f-44ae-b4a4-caed03176e87\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.27780151367188,\n                \"Text\": \"Position\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07563994824886322,\n                        \"Height\": 0.022476695477962494,\n                        \"Left\": 0.49208903312683105,\n                        \"Top\": 0.6556267738342285\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6556267738342285\n                        },\n                        {\n                            \"X\": 0.5677289962768555,\n                            \"Y\": 0.6556267738342285\n                        },\n                        {\n                            \"X\": 0.5677289962768555,\n                            \"Y\": 0.6781034469604492\n                        },\n                        {\n                            \"X\": 0.49208903312683105,\n                            \"Y\": 0.6781034469604492\n                        }\n                    ]\n                },\n                \"Id\": \"7a8affeb-8be5-4a22-a08b-758a88eb712f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.72151184082031,\n                \"Text\": \"Held\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.042397476732730865,\n                        \"Height\": 0.022483987733721733,\n                        \"Left\": 0.5740070343017578,\n                        \"Top\": 0.6549334526062012\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5740070343017578,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6549334526062012\n                        },\n                        {\n                            \"X\": 0.6164044737815857,\n                            \"Y\": 0.6774174571037292\n                        },\n                        {\n                            \"X\": 0.5740070343017578,\n                            \"Y\": 0.6774174571037292\n                        }\n                    ]\n                },\n                \"Id\": \"79a46309-4f7b-4f53-9162-fad8b2ca7fea\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95236206054688,\n                \"Text\": \"Reason\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06763161718845367,\n                        \"Height\": 0.022222677245736122,\n                        \"Left\": 0.6555624604225159,\n                        \"Top\": 0.6559627056121826\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6559627056121826\n                        },\n                        {\n                            \"X\": 0.7231940627098083,\n                            \"Y\": 0.6559627056121826\n                        },\n                        {\n                            \"X\": 0.7231940627098083,\n                            \"Y\": 0.6781854033470154\n                        },\n                        {\n                            \"X\": 0.6555624604225159,\n                            \"Y\": 0.6781854033470154\n                        }\n                    ]\n                },\n                \"Id\": \"1333cd32-e8d0-46f8-81cc-9743a647bb77\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.93626403808594,\n                \"Text\": \"for\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.028742719441652298,\n                        \"Height\": 0.023298142477869987,\n                        \"Left\": 0.7279129028320312,\n                        \"Top\": 0.6545379757881165\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7279129028320312,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.7566556334495544,\n                            \"Y\": 0.6545379757881165\n                        },\n                        {\n                            \"X\": 0.7566556334495544,\n                            \"Y\": 0.6778361201286316\n                        },\n                        {\n                            \"X\": 0.7279129028320312,\n                            \"Y\": 0.6778361201286316\n                        }\n                    ]\n                },\n                \"Id\": \"ab526a6c-5579-4e69-ad56-712f87393305\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.9585189819336,\n                \"Text\": \"leaving\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0679607167840004,\n                        \"Height\": 0.02744124084711075,\n                        \"Left\": 0.7610328197479248,\n                        \"Top\": 0.6548804640769958\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7610328197479248,\n                            \"Y\": 0.6548804640769958\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6548804640769958\n                        },\n                        {\n                            \"X\": 0.828993558883667,\n                            \"Y\": 0.6823217272758484\n                        },\n                        {\n                            \"X\": 0.7610328197479248,\n                            \"Y\": 0.6823217272758484\n                        }\n                    ]\n                },\n                \"Id\": \"23341403-933e-4184-be0e-e4e52b40e951\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.60453796386719,\n                \"Text\": \"1/15/2009\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09682866185903549,\n                        \"Height\": 0.026843825355172157,\n                        \"Left\": 0.07532798498868942,\n                        \"Top\": 0.7083258628845215\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7083258628845215\n                        },\n                        {\n                            \"X\": 0.17215664684772491,\n                            \"Y\": 0.7351697087287903\n                        },\n                        {\n                            \"X\": 0.07532798498868942,\n                            \"Y\": 0.7351697087287903\n                        }\n                    ]\n                },\n                \"Id\": \"fe86ba64-577e-4a71-87b4-4dfdd02a5a90\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.56900024414062,\n                \"Text\": \"6/30/2011\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09772055596113205,\n                        \"Height\": 0.026978127658367157,\n                        \"Left\": 0.19010485708713531,\n                        \"Top\": 0.7083016633987427\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7083016633987427\n                        },\n                        {\n                            \"X\": 0.28782540559768677,\n                            \"Y\": 0.7352797389030457\n                        },\n                        {\n                            \"X\": 0.19010485708713531,\n                            \"Y\": 0.7352797389030457\n                        }\n                    ]\n                },\n                \"Id\": \"1ff62eaa-6d4b-468b-8fb8-d8b4827c83ce\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.8681411743164,\n                \"Text\": \"Any\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.03632913902401924,\n                        \"Height\": 0.02643704228103161,\n                        \"Left\": 0.30455324053764343,\n                        \"Top\": 0.7101057171821594\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.34088239073753357,\n                            \"Y\": 0.7101057171821594\n                        },\n                        {\n                            \"X\": 0.34088239073753357,\n                            \"Y\": 0.7365427613258362\n                        },\n                        {\n                            \"X\": 0.30455324053764343,\n                            \"Y\": 0.7365427613258362\n                        }\n                    ]\n                },\n                \"Id\": \"d426cb5e-1c8d-445b-ab2e-5cd30de3730f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.5699234008789,\n                \"Text\": \"Company\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08713550865650177,\n                        \"Height\": 0.02666436694562435,\n                        \"Left\": 0.3459952473640442,\n                        \"Top\": 0.7102388739585876\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3459952473640442,\n                            \"Y\": 0.7102388739585876\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7102388739585876\n                        },\n                        {\n                            \"X\": 0.43313074111938477,\n                            \"Y\": 0.7369032502174377\n                        },\n                        {\n                            \"X\": 0.3459952473640442,\n                            \"Y\": 0.7369032502174377\n                        }\n                    ]\n                },\n                \"Id\": \"fce49b07-8b57-45b9-aa1e-3a86d4042324\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.25328826904297,\n                \"Text\": \"Assistant\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08357953280210495,\n                        \"Height\": 0.02259770780801773,\n                        \"Left\": 0.491060733795166,\n                        \"Top\": 0.709382951259613\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.5746402740478516,\n                            \"Y\": 0.709382951259613\n                        },\n                        {\n                            \"X\": 0.5746402740478516,\n                            \"Y\": 0.7319806218147278\n                        },\n                        {\n                            \"X\": 0.491060733795166,\n                            \"Y\": 0.7319806218147278\n                        }\n                    ]\n                },\n                \"Id\": \"df40f134-e187-4370-912e-60d7c0d952c7\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.55028533935547,\n                \"Text\": \"Baker\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.051925502717494965,\n                        \"Height\": 0.02216622792184353,\n                        \"Left\": 0.5804275870323181,\n                        \"Top\": 0.709467887878418\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5804275870323181,\n                            \"Y\": 0.709467887878418\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.709467887878418\n                        },\n                        {\n                            \"X\": 0.6323530673980713,\n                            \"Y\": 0.7316341400146484\n                        },\n                        {\n                            \"X\": 0.5804275870323181,\n                            \"Y\": 0.7316341400146484\n                        }\n                    ]\n                },\n                \"Id\": \"4777c1ee-5d43-4f44-8cdc-9fd14c80e82f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.93041229248047,\n                \"Text\": \"Family\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05969471484422684,\n                        \"Height\": 0.026808075606822968,\n                        \"Left\": 0.6555473208427429,\n                        \"Top\": 0.7095630764961243\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7095630764961243\n                        },\n                        {\n                            \"X\": 0.7152420282363892,\n                            \"Y\": 0.7095630764961243\n                        },\n                        {\n                            \"X\": 0.7152420282363892,\n                            \"Y\": 0.7363711595535278\n                        },\n                        {\n                            \"X\": 0.6555473208427429,\n                            \"Y\": 0.7363711595535278\n                        }\n                    ]\n                },\n                \"Id\": \"465dbbe8-79e7-4fbf-a631-7173002a67dd\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96968078613281,\n                \"Text\": \"relocated\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0869346335530281,\n                        \"Height\": 0.023413274437189102,\n                        \"Left\": 0.7201783061027527,\n                        \"Top\": 0.7087563872337341\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7201783061027527,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7087563872337341\n                        },\n                        {\n                            \"X\": 0.8071129322052002,\n                            \"Y\": 0.7321696877479553\n                        },\n                        {\n                            \"X\": 0.7201783061027527,\n                            \"Y\": 0.7321696877479553\n                        }\n                    ]\n                },\n                \"Id\": \"10353471-6497-400d-b910-e539d05440b4\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.79296875,\n                \"Text\": \"7/1/2011\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08606299757957458,\n                        \"Height\": 0.026600508019328117,\n                        \"Left\": 0.07446355372667313,\n                        \"Top\": 0.7624131441116333\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7624131441116333\n                        },\n                        {\n                            \"X\": 0.16052654385566711,\n                            \"Y\": 0.7890136241912842\n                        },\n                        {\n                            \"X\": 0.07446355372667313,\n                            \"Y\": 0.7890136241912842\n                        }\n                    ]\n                },\n                \"Id\": \"cbd8e316-8974-458c-8ea6-2aab273cb76b\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.67514038085938,\n                \"Text\": \"8/10/2013\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09801376610994339,\n                        \"Height\": 0.02662261761724949,\n                        \"Left\": 0.1903243064880371,\n                        \"Top\": 0.7625806331634521\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7625806331634521\n                        },\n                        {\n                            \"X\": 0.2883380651473999,\n                            \"Y\": 0.7892032861709595\n                        },\n                        {\n                            \"X\": 0.1903243064880371,\n                            \"Y\": 0.7892032861709595\n                        }\n                    ]\n                },\n                \"Id\": \"bfadf991-5934-4e7d-a247-56eccfff0f38\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.87751770019531,\n                \"Text\": \"Best\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.040325284004211426,\n                        \"Height\": 0.022052036598324776,\n                        \"Left\": 0.3057495653629303,\n                        \"Top\": 0.7641252875328064\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7641252875328064\n                        },\n                        {\n                            \"X\": 0.3460748493671417,\n                            \"Y\": 0.7641252875328064\n                        },\n                        {\n                            \"X\": 0.3460748493671417,\n                            \"Y\": 0.7861773371696472\n                        },\n                        {\n                            \"X\": 0.3057495653629303,\n                            \"Y\": 0.7861773371696472\n                        }\n                    ]\n                },\n                \"Id\": \"1eeafbf3-55a2-4101-a7c6-8ba5fae2f903\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.20387268066406,\n                \"Text\": \"Corp.\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.049073588103055954,\n                        \"Height\": 0.026751743629574776,\n                        \"Left\": 0.35051578283309937,\n                        \"Top\": 0.7636430859565735\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.35051578283309937,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7636430859565735\n                        },\n                        {\n                            \"X\": 0.3995893597602844,\n                            \"Y\": 0.7903947830200195\n                        },\n                        {\n                            \"X\": 0.35051578283309937,\n                            \"Y\": 0.7903947830200195\n                        }\n                    ]\n                },\n                \"Id\": \"1d8435be-6a8a-4c2c-bc2d-a63f210ba9f2\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.607177734375,\n                \"Text\": \"Baker\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.052544187754392624,\n                        \"Height\": 0.02315184660255909,\n                        \"Left\": 0.4920831322669983,\n                        \"Top\": 0.7629870772361755\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7629870772361755\n                        },\n                        {\n                            \"X\": 0.54462730884552,\n                            \"Y\": 0.7861389517784119\n                        },\n                        {\n                            \"X\": 0.4920831322669983,\n                            \"Y\": 0.7861389517784119\n                        }\n                    ]\n                },\n                \"Id\": \"ba9e10a9-a028-44d6-b449-37e199ee4e9a\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.92717742919922,\n                \"Text\": \"Better\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.057003699243068695,\n                        \"Height\": 0.02131832204759121,\n                        \"Left\": 0.6555969715118408,\n                        \"Top\": 0.7641827464103699\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7641827464103699\n                        },\n                        {\n                            \"X\": 0.7126007080078125,\n                            \"Y\": 0.7641827464103699\n                        },\n                        {\n                            \"X\": 0.7126007080078125,\n                            \"Y\": 0.7855010628700256\n                        },\n                        {\n                            \"X\": 0.6555969715118408,\n                            \"Y\": 0.7855010628700256\n                        }\n                    ]\n                },\n                \"Id\": \"6b2b8e6d-f03f-468c-8b90-5ae5fedebf70\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.97451782226562,\n                \"Text\": \"opportunity\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11142957955598831,\n                        \"Height\": 0.026211483404040337,\n                        \"Left\": 0.7170504927635193,\n                        \"Top\": 0.7639016509056091\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7170504927635193,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7639016509056091\n                        },\n                        {\n                            \"X\": 0.8284801244735718,\n                            \"Y\": 0.7901131510734558\n                        },\n                        {\n                            \"X\": 0.7170504927635193,\n                            \"Y\": 0.7901131510734558\n                        }\n                    ]\n                },\n                \"Id\": \"b499da3b-b7c0-4c3e-84c4-bd1e5b792100\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.74268341064453,\n                \"Text\": \"8/15/2013\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09693203121423721,\n                        \"Height\": 0.02708902582526207,\n                        \"Left\": 0.07475598156452179,\n                        \"Top\": 0.8139497637748718\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8139497637748718\n                        },\n                        {\n                            \"X\": 0.1716880053281784,\n                            \"Y\": 0.8410388231277466\n                        },\n                        {\n                            \"X\": 0.07475598156452179,\n                            \"Y\": 0.8410388231277466\n                        }\n                    ]\n                },\n                \"Id\": \"e80c5f3c-f3f8-4278-910b-edb401fbc628\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.9533462524414,\n                \"Text\": \"present\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.07096851617097855,\n                        \"Height\": 0.024416884407401085,\n                        \"Left\": 0.19085319340229034,\n                        \"Top\": 0.8176923394203186\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.8176923394203186\n                        },\n                        {\n                            \"X\": 0.2618217170238495,\n                            \"Y\": 0.842109203338623\n                        },\n                        {\n                            \"X\": 0.19085319340229034,\n                            \"Y\": 0.842109203338623\n                        }\n                    ]\n                },\n                \"Id\": \"59565c8c-dd02-49f8-811b-6687d59de965\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.64788818359375,\n                \"Text\": \"Example\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0779692530632019,\n                        \"Height\": 0.027120307087898254,\n                        \"Left\": 0.3059176802635193,\n                        \"Top\": 0.8153413534164429\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.3838869333267212,\n                            \"Y\": 0.8153413534164429\n                        },\n                        {\n                            \"X\": 0.3838869333267212,\n                            \"Y\": 0.8424617052078247\n                        },\n                        {\n                            \"X\": 0.3059176802635193,\n                            \"Y\": 0.8424617052078247\n                        }\n                    ]\n                },\n                \"Id\": \"c5c8e89a-4278-42b7-a394-0bebaf8f809e\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.31843566894531,\n                \"Text\": \"Corp.\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04892214387655258,\n                        \"Height\": 0.02579682134091854,\n                        \"Left\": 0.3885209560394287,\n                        \"Top\": 0.8160580396652222\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.3885209560394287,\n                            \"Y\": 0.8160580396652222\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8160580396652222\n                        },\n                        {\n                            \"X\": 0.4374430775642395,\n                            \"Y\": 0.8418548703193665\n                        },\n                        {\n                            \"X\": 0.3885209560394287,\n                            \"Y\": 0.8418548703193665\n                        }\n                    ]\n                },\n                \"Id\": \"e31448db-c4e6-4f9e-b7dd-3bd0f12c74d3\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.90103912353516,\n                \"Text\": \"Head\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.04649946838617325,\n                        \"Height\": 0.022304410114884377,\n                        \"Left\": 0.4926374554634094,\n                        \"Top\": 0.8153996467590332\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.8153996467590332\n                        },\n                        {\n                            \"X\": 0.5391369462013245,\n                            \"Y\": 0.8153996467590332\n                        },\n                        {\n                            \"X\": 0.5391369462013245,\n                            \"Y\": 0.837704062461853\n                        },\n                        {\n                            \"X\": 0.4926374554634094,\n                            \"Y\": 0.837704062461853\n                        }\n                    ]\n                },\n                \"Id\": \"5fd9986b-28e8-45a0-a344-6228624cfbd8\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.50145721435547,\n                \"Text\": \"Baker\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.05258156359195709,\n                        \"Height\": 0.022487984970211983,\n                        \"Left\": 0.5458208918571472,\n                        \"Top\": 0.8152825832366943\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.5458208918571472,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8152825832366943\n                        },\n                        {\n                            \"X\": 0.5984024405479431,\n                            \"Y\": 0.8377705812454224\n                        },\n                        {\n                            \"X\": 0.5458208918571472,\n                            \"Y\": 0.8377705812454224\n                        }\n                    ]\n                },\n                \"Id\": \"612de987-2ad0-40f9-944a-fb7823c4e196\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 98.900634765625,\n                \"Text\": \"N/A,\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.040678899735212326,\n                        \"Height\": 0.026958370581269264,\n                        \"Left\": 0.6552858352661133,\n                        \"Top\": 0.8146923184394836\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.6959647536277771,\n                            \"Y\": 0.8146923184394836\n                        },\n                        {\n                            \"X\": 0.6959647536277771,\n                            \"Y\": 0.8416507244110107\n                        },\n                        {\n                            \"X\": 0.6552858352661133,\n                            \"Y\": 0.8416507244110107\n                        }\n                    ]\n                },\n                \"Id\": \"4486207c-ca83-4495-b385-c262f38b9f73\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.96424865722656,\n                \"Text\": \"current\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.06921391189098358,\n                        \"Height\": 0.02073560655117035,\n                        \"Left\": 0.7014417052268982,\n                        \"Top\": 0.8175691366195679\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.7014417052268982,\n                            \"Y\": 0.8175691366195679\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8175691366195679\n                        },\n                        {\n                            \"X\": 0.770655632019043,\n                            \"Y\": 0.8383047580718994\n                        },\n                        {\n                            \"X\": 0.7014417052268982,\n                            \"Y\": 0.8383047580718994\n                        }\n                    ]\n                },\n                \"Id\": \"579d876d-22c5-4b27-9317-24e379ab561f\"\n            },\n            {\n                \"BlockType\": \"WORD\",\n                \"Confidence\": 99.95295715332031,\n                \"Text\": \"employer\",\n                \"TextType\": \"PRINTED\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.0887165293097496,\n                        \"Height\": 0.027792751789093018,\n                        \"Left\": 0.6545867919921875,\n                        \"Top\": 0.8517507314682007\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8517507314682007\n                        },\n                        {\n                            \"X\": 0.7433033585548401,\n                            \"Y\": 0.8795434832572937\n                        },\n                        {\n                            \"X\": 0.6545867919921875,\n                            \"Y\": 0.8795434832572937\n                        }\n                    ]\n                },\n                \"Id\": \"e0088374-7896-4110-8bf6-a7849d4e4728\"\n            },\n            {\n                \"BlockType\": \"TABLE\",\n                \"Confidence\": 99.94215393066406,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.7870725989341736,\n                        \"Height\": 0.30381208658218384,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.5752350091934204\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"61038a14-87c2-44f5-9d30-ddd29363f5e4\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f86237f3-a9d0-4809-91d5-21f54aea838c\",\n                            \"1e321577-ae88-42bc-8154-c54a2ff1f13f\",\n                            \"0ad2db73-9eb0-4ee1-9a4f-41bcc2bbf61d\",\n                            \"273e6a9d-c800-4c07-a124-63da1e26f671\",\n                            \"2bee9312-cf30-4674-a0d0-de24b0bc3222\",\n                            \"1bd06ba5-3091-43b2-ab06-c2d27fb8e80f\",\n                            \"c098faed-84f3-4928-ae48-f295472092db\",\n                            \"bc8e223b-0bf6-44ef-8e5f-b48245ffb1c9\",\n                            \"fbfb9e18-1d5c-459a-8f2f-e23b8f2e56dd\",\n                            \"043c5285-bbfc-4743-ac0f-163498082d21\",\n                            \"5a36be57-7cd0-4346-ba3a-6ad3eb594e8c\",\n                            \"a53aa68e-622d-4bc7-af39-84a8754ac715\",\n                            \"4411ca23-788c-49de-8a55-4024f58619f0\",\n                            \"18cafb19-c37e-4f3a-a227-837ef1282a9f\",\n                            \"d53048db-902b-4735-92fd-a34c8c7309b6\",\n                            \"2eda5983-e595-4a05-ae35-7ce585b0ba6f\",\n                            \"893439f5-305d-47e1-99a5-4204777d63ec\",\n                            \"c487f59a-ecb0-4ec3-ae6e-fadb41028b38\",\n                            \"53d289a9-b7dd-433c-af9b-ecf9491f916d\",\n                            \"09252554-ac7f-44e0-b427-10466cb9e559\",\n                            \"918365cd-f3f7-4ce9-b3fa-695292fb4602\",\n                            \"8c4bc161-fc9f-43ee-b12d-edfcff0b2a04\",\n                            \"373841ad-00d6-48ae-86f2-cd245dbcd3a1\",\n                            \"8c4512ad-6775-40fb-aa8a-33431c0e426d\",\n                            \"080d0e4e-2d91-4e7f-84e4-b19c517a1874\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"MERGED_CELL\",\n                        \"Ids\": [\n                            \"0f9254fb-457e-445d-ba53-526edeadbe99\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11747430264949799,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.06534507870674133,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06534507870674133,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.06534507870674133,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"f86237f3-a9d0-4809-91d5-21f54aea838c\"\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"1e321577-ae88-42bc-8154-c54a2ff1f13f\"\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"0ad2db73-9eb0-4ee1-9a4f-41bcc2bbf61d\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"c52909ff-ca70-47c2-a834-71c21b9d3fa8\",\n                            \"d1de75c6-8a76-4eb1-85b9-01ca85dc3d92\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"273e6a9d-c800-4c07-a124-63da1e26f671\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"9dea32cc-0747-47df-a346-fe6eb6a472db\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20411160588264465,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.5751445293426514\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.8524228930473328,\n                            \"Y\": 0.5751445293426514\n                        },\n                        {\n                            \"X\": 0.8524228930473328,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"2bee9312-cf30-4674-a0d0-de24b0bc3222\"\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.50865936279297,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"1bd06ba5-3091-43b2-ab06-c2d27fb8e80f\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"8ae19273-a00b-450d-a28b-ea11232b6584\",\n                            \"d1f64c0f-b2ec-4003-a73a-8cfd9f77737b\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.63613891601562,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"c098faed-84f3-4928-ae48-f295472092db\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"a2b5c525-cdac-4107-8bfa-f1b142af553d\",\n                            \"064fbed2-bf63-43f3-b3b9-76491d80f8e7\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.42315673828125,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"bc8e223b-0bf6-44ef-8e5f-b48245ffb1c9\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"400a67cb-5978-4666-91d8-c41974ecd190\",\n                            \"b1bcd269-956f-44ae-b4a4-caed03176e87\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.1373062133789,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"fbfb9e18-1d5c-459a-8f2f-e23b8f2e56dd\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"7a8affeb-8be5-4a22-a08b-758a88eb712f\",\n                            \"79a46309-4f7b-4f53-9162-fad8b2ca7fea\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.32550811767578,\n                \"RowIndex\": 2,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.053949903696775436,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.6300578117370605\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        }\n                    ]\n                },\n                \"Id\": \"043c5285-bbfc-4743-ac0f-163498082d21\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1333cd32-e8d0-46f8-81cc-9743a647bb77\",\n                            \"ab526a6c-5579-4e69-ad56-712f87393305\",\n                            \"23341403-933e-4184-be0e-e4e52b40e951\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"COLUMN_HEADER\"\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.25383758544922,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"5a36be57-7cd0-4346-ba3a-6ad3eb594e8c\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"fe86ba64-577e-4a71-87b4-4dfdd02a5a90\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.37806701660156,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"a53aa68e-622d-4bc7-af39-84a8754ac715\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1ff62eaa-6d4b-468b-8fb8-d8b4827c83ce\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.1599349975586,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"4411ca23-788c-49de-8a55-4024f58619f0\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"d426cb5e-1c8d-445b-ab2e-5cd30de3730f\",\n                            \"fce49b07-8b57-45b9-aa1e-3a86d4042324\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.88066864013672,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"18cafb19-c37e-4f3a-a227-837ef1282a9f\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"df40f134-e187-4370-912e-60d7c0d952c7\",\n                            \"4777c1ee-5d43-4f44-8cdc-9fd14c80e82f\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.06544494628906,\n                \"RowIndex\": 3,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.054913293570280075,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.6840077042579651\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6840077042579651\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        }\n                    ]\n                },\n                \"Id\": \"d53048db-902b-4735-92fd-a34c8c7309b6\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"465dbbe8-79e7-4fbf-a631-7173002a67dd\",\n                            \"10353471-6497-400d-b910-e539d05440b4\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.13471984863281,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"2eda5983-e595-4a05-ae35-7ce585b0ba6f\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"cbd8e316-8974-458c-8ea6-2aab273cb76b\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.2574234008789,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"893439f5-305d-47e1-99a5-4204777d63ec\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"bfadf991-5934-4e7d-a247-56eccfff0f38\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.03689575195312,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"c487f59a-ecb0-4ec3-ae6e-fadb41028b38\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1eeafbf3-55a2-4101-a7c6-8ba5fae2f903\",\n                            \"1d8435be-6a8a-4c2c-bc2d-a63f210ba9f2\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 88.76070404052734,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"53d289a9-b7dd-433c-af9b-ecf9491f916d\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"ba9e10a9-a028-44d6-b449-37e199ee4e9a\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.94387817382812,\n                \"RowIndex\": 4,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.05202312022447586,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.7389209866523743\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7389209866523743\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        }\n                    ]\n                },\n                \"Id\": \"09252554-ac7f-44e0-b427-10466cb9e559\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"6b2b8e6d-f03f-468c-8b90-5ae5fedebf70\",\n                            \"b499da3b-b7c0-4c3e-84c4-bd1e5b792100\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 89.8504409790039,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.11751560121774673,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"918365cd-f3f7-4ce9-b3fa-695292fb4602\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"e80c5f3c-f3f8-4278-910b-edb401fbc628\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.99501037597656,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 2,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.115271657705307,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.18281938135623932,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.18281938135623932,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"8c4bc161-fc9f-43ee-b12d-edfcff0b2a04\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"59565c8c-dd02-49f8-811b-6687d59de965\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 92.80912017822266,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 3,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.1850220263004303,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.2980910539627075,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.2980910539627075,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"373841ad-00d6-48ae-86f2-cd245dbcd3a1\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"c5c8e89a-4278-42b7-a394-0bebaf8f809e\",\n                            \"e31448db-c4e6-4f9e-b7dd-3bd0f12c74d3\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 90.48860931396484,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 4,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.16519823670387268,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.4831130802631378,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.4831130802631378,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"8c4512ad-6775-40fb-aa8a-33431c0e426d\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"5fd9986b-28e8-45a0-a344-6228624cfbd8\",\n                            \"612de987-2ad0-40f9-944a-fb7823c4e196\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"CELL\",\n                \"Confidence\": 91.69482421875,\n                \"RowIndex\": 5,\n                \"ColumnIndex\": 5,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 1,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.20406508445739746,\n                        \"Height\": 0.08810295164585114,\n                        \"Left\": 0.6483113169670105,\n                        \"Top\": 0.7909440994262695\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.7909440994262695\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.8790470957756042\n                        },\n                        {\n                            \"X\": 0.6483113169670105,\n                            \"Y\": 0.8790470957756042\n                        }\n                    ]\n                },\n                \"Id\": \"080d0e4e-2d91-4e7f-84e4-b19c517a1874\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"4486207c-ca83-4495-b385-c262f38b9f73\",\n                            \"579d876d-22c5-4b27-9317-24e379ab561f\",\n                            \"e0088374-7896-4110-8bf6-a7849d4e4728\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"MERGED_CELL\",\n                \"Confidence\": 93.0533218383789,\n                \"RowIndex\": 1,\n                \"ColumnIndex\": 1,\n                \"RowSpan\": 1,\n                \"ColumnSpan\": 5,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.7870725989341736,\n                        \"Height\": 0.05482279881834984,\n                        \"Left\": 0.06530378013849258,\n                        \"Top\": 0.5752350091934204\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.5752350091934204\n                        },\n                        {\n                            \"X\": 0.852376401424408,\n                            \"Y\": 0.6300578117370605\n                        },\n                        {\n                            \"X\": 0.06530378013849258,\n                            \"Y\": 0.6300578117370605\n                        }\n                    ]\n                },\n                \"Id\": \"0f9254fb-457e-445d-ba53-526edeadbe99\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f86237f3-a9d0-4809-91d5-21f54aea838c\",\n                            \"1e321577-ae88-42bc-8154-c54a2ff1f13f\",\n                            \"0ad2db73-9eb0-4ee1-9a4f-41bcc2bbf61d\",\n                            \"273e6a9d-c800-4c07-a124-63da1e26f671\",\n                            \"2bee9312-cf30-4674-a0d0-de24b0bc3222\"\n                        ]\n                    }\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 95.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.12922188639640808,\n                        \"Height\": 0.020582959055900574,\n                        \"Left\": 0.07581180334091187,\n                        \"Top\": 0.4411558210849762\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07581180334091187,\n                            \"Y\": 0.4411558210849762\n                        },\n                        {\n                            \"X\": 0.20503368973731995,\n                            \"Y\": 0.4411558210849762\n                        },\n                        {\n                            \"X\": 0.20503368973731995,\n                            \"Y\": 0.4617387652397156\n                        },\n                        {\n                            \"X\": 0.07581180334091187,\n                            \"Y\": 0.4617387652397156\n                        }\n                    ]\n                },\n                \"Id\": \"361509c9-0440-47d0-b61b-2c41111e930a\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"d24f0f4f-52a3-4474-925d-6a76ad672cff\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"3aec9056-80c3-4901-95ae-d05ef68b3ff8\",\n                            \"092d6454-51c7-4d72-8e96-4480fcf95293\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 95.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.284419447183609,\n                        \"Height\": 0.02717478573322296,\n                        \"Left\": 0.2119755893945694,\n                        \"Top\": 0.4401225745677948\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.2119755893945694,\n                            \"Y\": 0.4401225745677948\n                        },\n                        {\n                            \"X\": 0.4963950216770172,\n                            \"Y\": 0.4401225745677948\n                        },\n                        {\n                            \"X\": 0.4963950216770172,\n                            \"Y\": 0.46729734539985657\n                        },\n                        {\n                            \"X\": 0.2119755893945694,\n                            \"Y\": 0.46729734539985657\n                        }\n                    ]\n                },\n                \"Id\": \"d24f0f4f-52a3-4474-925d-6a76ad672cff\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"f4d8289f-e2a6-41d4-86ca-adc96819f620\",\n                            \"6c8cecc9-940d-4597-b360-82c77a860908\",\n                            \"d3c9f764-8710-4386-95d3-cd66502aadac\",\n                            \"0d79211e-42bb-4a75-a374-1550b79e79b6\",\n                            \"3841793c-b23d-470b-9bc6-16496f6cf764\",\n                            \"ff5e0460-f02d-4eed-a3f3-74a56b64f63c\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 92.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.14188462495803833,\n                        \"Height\": 0.025821516290307045,\n                        \"Left\": 0.07508095353841782,\n                        \"Top\": 0.5045744776725769\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07508095353841782,\n                            \"Y\": 0.5045744776725769\n                        },\n                        {\n                            \"X\": 0.21696557104587555,\n                            \"Y\": 0.5045744776725769\n                        },\n                        {\n                            \"X\": 0.21696557104587555,\n                            \"Y\": 0.5303959846496582\n                        },\n                        {\n                            \"X\": 0.07508095353841782,\n                            \"Y\": 0.5303959846496582\n                        }\n                    ]\n                },\n                \"Id\": \"e74953bf-c43c-4060-a6d0-802da5bc887c\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"eeebadce-0d19-4129-8ca7-f0123d31fb11\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"1863c646-39ce-4ec4-8a28-a2e39c04585e\",\n                            \"521b9137-bd2a-49c8-b51c-2ef96a9189db\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 92.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.21606111526489258,\n                        \"Height\": 0.022998904809355736,\n                        \"Left\": 0.21648043394088745,\n                        \"Top\": 0.5032126903533936\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21648043394088745,\n                            \"Y\": 0.5032126903533936\n                        },\n                        {\n                            \"X\": 0.43254154920578003,\n                            \"Y\": 0.5032126903533936\n                        },\n                        {\n                            \"X\": 0.43254154920578003,\n                            \"Y\": 0.5262116193771362\n                        },\n                        {\n                            \"X\": 0.21648043394088745,\n                            \"Y\": 0.5262116193771362\n                        }\n                    ]\n                },\n                \"Id\": \"eeebadce-0d19-4129-8ca7-f0123d31fb11\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"3817a28f-b2dc-469c-98fb-bc666431d7dd\",\n                            \"8b5cc78a-bd34-4d53-84b1-82352758b2c2\",\n                            \"ada83f70-5d35-4e03-b711-cbba9b517c46\",\n                            \"7039d472-daa6-4726-a81e-8f667c5c8305\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 91.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.13339018821716309,\n                        \"Height\": 0.02033335156738758,\n                        \"Left\": 0.07588017731904984,\n                        \"Top\": 0.3779498338699341\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.07588017731904984,\n                            \"Y\": 0.3779498338699341\n                        },\n                        {\n                            \"X\": 0.20927037298679352,\n                            \"Y\": 0.3779498338699341\n                        },\n                        {\n                            \"X\": 0.20927037298679352,\n                            \"Y\": 0.3982831835746765\n                        },\n                        {\n                            \"X\": 0.07588017731904984,\n                            \"Y\": 0.3982831835746765\n                        }\n                    ]\n                },\n                \"Id\": \"4262503e-6b5f-405f-b948-10e6d0b8afed\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"d73b8c17-a534-4888-a7a8-25e6e1ad7771\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"358bbbfd-1f99-4570-90b3-925e8b5950bd\",\n                            \"215d7334-8611-4386-8c05-17fc1cb7dd4f\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 91.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08866763859987259,\n                        \"Height\": 0.0283527709543705,\n                        \"Left\": 0.21544329822063446,\n                        \"Top\": 0.3748914897441864\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.21544329822063446,\n                            \"Y\": 0.3748914897441864\n                        },\n                        {\n                            \"X\": 0.30411094427108765,\n                            \"Y\": 0.3748914897441864\n                        },\n                        {\n                            \"X\": 0.30411094427108765,\n                            \"Y\": 0.4032442569732666\n                        },\n                        {\n                            \"X\": 0.21544329822063446,\n                            \"Y\": 0.4032442569732666\n                        }\n                    ]\n                },\n                \"Id\": \"d73b8c17-a534-4888-a7a8-25e6e1ad7771\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"0502bbc8-5c58-4345-9010-6ec8050aa3f8\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 87.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.09123743325471878,\n                        \"Height\": 0.020755216479301453,\n                        \"Left\": 0.075957290828228,\n                        \"Top\": 0.31413623690605164\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.075957290828228,\n                            \"Y\": 0.31413623690605164\n                        },\n                        {\n                            \"X\": 0.16719472408294678,\n                            \"Y\": 0.31413623690605164\n                        },\n                        {\n                            \"X\": 0.16719472408294678,\n                            \"Y\": 0.3348914682865143\n                        },\n                        {\n                            \"X\": 0.075957290828228,\n                            \"Y\": 0.3348914682865143\n                        }\n                    ]\n                },\n                \"Id\": \"e857631b-ec7f-470b-8e2d-3f4cea41ffc6\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"VALUE\",\n                        \"Ids\": [\n                            \"c8e91125-8ff6-4a1e-adc0-2670e0bbdec1\"\n                        ]\n                    },\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"912adc3c-cd1b-4cad-815a-327092d6b5ca\",\n                            \"d0df798f-8b24-4f55-8ba6-13935d4a626b\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"KEY\"\n                ]\n            },\n            {\n                \"BlockType\": \"KEY_VALUE_SET\",\n                \"Confidence\": 87.0,\n                \"Geometry\": {\n                    \"BoundingBox\": {\n                        \"Width\": 0.08178497850894928,\n                        \"Height\": 0.02141937054693699,\n                        \"Left\": 0.17387504875659943,\n                        \"Top\": 0.3134089708328247\n                    },\n                    \"Polygon\": [\n                        {\n                            \"X\": 0.17387504875659943,\n                            \"Y\": 0.3134089708328247\n                        },\n                        {\n                            \"X\": 0.2556600272655487,\n                            \"Y\": 0.3134089708328247\n                        },\n                        {\n                            \"X\": 0.2556600272655487,\n                            \"Y\": 0.33482834696769714\n                        },\n                        {\n                            \"X\": 0.17387504875659943,\n                            \"Y\": 0.33482834696769714\n                        }\n                    ]\n                },\n                \"Id\": \"c8e91125-8ff6-4a1e-adc0-2670e0bbdec1\",\n                \"Relationships\": [\n                    {\n                        \"Type\": \"CHILD\",\n                        \"Ids\": [\n                            \"589d5318-3606-48b8-83a6-7808680a0537\",\n                            \"621b76be-a3d1-4765-a837-6d3de5e0b841\"\n                        ]\n                    }\n                ],\n                \"EntityTypes\": [\n                    \"VALUE\"\n                ]\n            }\n        ],\n        \"AnalyzeDocumentModelVersion\": \"1.0\"\n    }"
  },
  {
    "path": "src-python/tests/test-response.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1,\n                    \"Height\": 1,\n                    \"Left\": 0,\n                    \"Top\": 0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0,\n                        \"Y\": 0\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 0\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 1\n                    },\n                    {\n                        \"X\": 0,\n                        \"Y\": 1\n                    }\n                ]\n            },\n            \"Id\": \"d108aaae-e724-4450-aaef-523f4b65a501\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4748f698-085d-4659-87bd-9fc9eec8f81c\",\n                        \"e317b4e1-3eb2-492e-a3a9-2d337f6ba643\",\n                        \"ceb25100-ccb7-4885-8cf2-341582efd867\",\n                        \"6e644963-82d4-44c6-b3b7-225318743bbb\",\n                        \"83f3f545-fb95-4076-b1bd-6413a102d74f\",\n                        \"352669df-a583-424d-a906-763337cc7cc6\",\n                        \"6df8280e-65a7-463a-8bde-9153ebfb45d2\",\n                        \"73320c44-4bb6-4e15-92f8-e81a650602db\",\n                        \"08f0f640-08e2-40c3-88e9-bf5fd13a82af\",\n                        \"17c4c894-19e9-485b-b7b5-41ed78887e8f\",\n                        \"e1fd5caf-dd77-4183-a4f0-c6cc901c5020\",\n                        \"6f11ec80-b3c0-494a-ae5f-0c01bb8b9ab3\",\n                        \"1c4793e1-6a9e-4a86-8363-452e2411e7cb\",\n                        \"bf6728f6-0dfe-4a44-9da1-1c05897fe86f\",\n                        \"5a889905-9d78-488f-ac42-ef14aaa9f4b3\",\n                        \"6cd8eebf-0254-4410-bb34-1f8b671a3bd0\",\n                        \"7d83c491-1c1f-4474-b446-971fda9e2b3a\",\n                        \"b0b4f45c-e6c5-4cad-84e7-59221f3bce3c\",\n                        \"4a64a327-e0e9-49bf-abe3-ed4ca630d8f6\",\n                        \"2156df6b-ef89-4d47-bb5d-df5e7c401119\",\n                        \"77dd2f37-84ef-404a-98c3-972328acf52b\",\n                        \"e2335bee-96cc-4632-9cd0-5de1eb3b2576\",\n                        \"928bc481-132b-4e3e-afac-ff51b372e8b2\",\n                        \"dd8dbecf-73f1-49e2-bc9f-7169a133f6dd\",\n                        \"a8acd770-2d5a-4799-9e0d-17a96b6da85a\",\n                        \"03c0345c-f42d-4bea-864d-60a8d1e890fb\",\n                        \"1059d4c4-dd84-4995-be8f-24c0e8b12a6a\",\n                        \"100c9244-9c74-4166-82b5-1e9890cf455d\",\n                        \"3f728c36-56f2-487c-a3e2-3cafe49f7da9\",\n                        \"b7684bc3-cec7-4f4e-a2bc-ac0866094ac6\",\n                        \"c327f8af-fd9f-47d8-bf47-b8fe34719fd3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.33493041992188,\n            \"Text\": \"Applicant iInformation\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2504812479019165,\n                    \"Height\": 0.04153836891055107,\n                    \"Left\": 0.03002910688519478,\n                    \"Top\": 0.03067307360470295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.07221144437789917\n                    },\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.07221144437789917\n                    }\n                ]\n            },\n            \"Id\": \"4748f698-085d-4659-87bd-9fc9eec8f81c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"56167d2b-7edd-451c-9d21-5a4dd132847f\",\n                        \"7b175d1f-47b2-40bf-aa06-059cdc7a1f32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.2441635131836,\n            \"Text\": \"Full Name: Jane Doe\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21064715087413788,\n                    \"Height\": 0.033972203731536865,\n                    \"Left\": 0.028746025636792183,\n                    \"Top\": 0.11213930696249008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.14611151814460754\n                    },\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.14611151814460754\n                    }\n                ]\n            },\n            \"Id\": \"e317b4e1-3eb2-492e-a3a9-2d337f6ba643\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15c0cdb2-e75d-4003-b5d3-6a686001a701\",\n                        \"b1998385-b2df-4099-a2a1-1942b5db099e\",\n                        \"acc5b5fa-8e18-408f-ae6e-bf3336f9011e\",\n                        \"52821638-ea10-4309-9c9b-08007b95e63c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.64936828613281,\n            \"Text\": \"Phone Number: 555-0100\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2678629159927368,\n                    \"Height\": 0.036048345267772675,\n                    \"Left\": 0.029274573549628258,\n                    \"Top\": 0.19063594937324524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.22668428719043732\n                    },\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.22668428719043732\n                    }\n                ]\n            },\n            \"Id\": \"ceb25100-ccb7-4885-8cf2-341582efd867\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4dd773f-ddb7-407e-9dbc-cf623204e654\",\n                        \"63c1b36b-6b46-4391-b3a5-379247f448f8\",\n                        \"6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.06343078613281,\n            \"Text\": \"Home Address: 123 Any Street. Any Town. USA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.48566311597824097,\n                    \"Height\": 0.0393204428255558,\n                    \"Left\": 0.02940143272280693,\n                    \"Top\": 0.26757919788360596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.30689963698387146\n                    },\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.30689963698387146\n                    }\n                ]\n            },\n            \"Id\": \"6e644963-82d4-44c6-b3b7-225318743bbb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c86d0d6a-bb66-45ae-9f64-cce786a87f5e\",\n                        \"261d78c3-da83-48ff-ae0d-767d042e27cd\",\n                        \"60f9dba7-817a-4940-a1c4-e4f91ed9df83\",\n                        \"dd3d86a3-2b09-4532-8714-21a6634bf7c4\",\n                        \"c9d0f076-4489-4aa3-8790-fc2f5f011b75\",\n                        \"3b6b440c-172d-4fb0-9306-f5676934f1e0\",\n                        \"e1335e11-d8b5-4eac-a330-0e3ce583d598\",\n                        \"1263d49f-d745-463c-9cd6-e50cc4f041c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.68299102783203,\n            \"Text\": \"Mailing Address: same as home address\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.41890865564346313,\n                    \"Height\": 0.04078252613544464,\n                    \"Left\": 0.02931326813995838,\n                    \"Top\": 0.34663155674934387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.3874140977859497\n                    },\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.3874140977859497\n                    }\n                ]\n            },\n            \"Id\": \"83f3f545-fb95-4076-b1bd-6413a102d74f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a3bfe68d-d04e-4726-a617-a9133eaf4d4c\",\n                        \"633eab1f-bf59-4d65-b6d8-ea19063a79d2\",\n                        \"ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd\",\n                        \"13cfdb19-c9d2-42e2-8046-5f917f9d1818\",\n                        \"d47560af-a6b4-44ee-ab15-9ff70b0bf073\",\n                        \"68c73643-715a-425f-b82b-19cb66df9557\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4739990234375,\n            \"Text\": \"Previous Employment History\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.34120476245880127,\n                    \"Height\": 0.03676837682723999,\n                    \"Left\": 0.2908104658126831,\n                    \"Top\": 0.46816155314445496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.5049299597740173\n                    },\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.5049299597740173\n                    }\n                ]\n            },\n            \"Id\": \"352669df-a583-424d-a906-763337cc7cc6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dbdca83-945c-42e0-b156-1c716058279f\",\n                        \"e4cc6233-3e13-47a5-a7a9-414a9acec09f\",\n                        \"70eca258-f69f-47f4-8b95-1f461e7ecddf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.714111328125,\n            \"Text\": \"Start Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10530510544776917,\n                    \"Height\": 0.0411636047065258,\n                    \"Left\": 0.031593941152095795,\n                    \"Top\": 0.5343702435493469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5755338668823242\n                    },\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.5755338668823242\n                    }\n                ]\n            },\n            \"Id\": \"6df8280e-65a7-463a-8bde-9153ebfb45d2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4673d206-c4f6-45b8-8643-e44a230cbb24\",\n                        \"d6e19a98-b09d-4bae-9f9b-baa321351872\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55696868896484,\n            \"Text\": \"End Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09375394135713577,\n                    \"Height\": 0.033345453441143036,\n                    \"Left\": 0.15889933705329895,\n                    \"Top\": 0.537799596786499\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.5711450576782227\n                    },\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.5711450576782227\n                    }\n                ]\n            },\n            \"Id\": \"73320c44-4bb6-4e15-92f8-e81a650602db\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6c717f5a-e9b4-427d-a83a-b87d20b875fb\",\n                        \"7bf142ae-3c34-4074-a247-f139a07456af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83122253417969,\n            \"Text\": \"Employer Name\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16646261513233185,\n                    \"Height\": 0.03759261220693588,\n                    \"Left\": 0.2883279621601105,\n                    \"Top\": 0.5367630124092102\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5743556618690491\n                    },\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5743556618690491\n                    }\n                ]\n            },\n            \"Id\": \"08f0f640-08e2-40c3-88e9-bf5fd13a82af\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cdba0022-062e-4196-9d34-4d28b9598008\",\n                        \"8b2e9227-666b-49a1-9a9d-1bd75cfa0d9e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.25993347167969,\n            \"Text\": \"Position Held\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13803058862686157,\n                    \"Height\": 0.03316912800073624,\n                    \"Left\": 0.4962921440601349,\n                    \"Top\": 0.5378665328025818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5710356831550598\n                    },\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5710356831550598\n                    }\n                ]\n            },\n            \"Id\": \"17c4c894-19e9-485b-b7b5-41ed78887e8f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"98ac6ea3-bbf6-4812-a989-dddc60b67722\",\n                        \"77e3a8a0-3920-49a9-afba-eaec9b8c736f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8578872680664,\n            \"Text\": \"Reason for leaving\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19123753905296326,\n                    \"Height\": 0.03537239506840706,\n                    \"Left\": 0.6786987781524658,\n                    \"Top\": 0.5365371704101562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5719096064567566\n                    },\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5719096064567566\n                    }\n                ]\n            },\n            \"Id\": \"e1fd5caf-dd77-4183-a4f0-c6cc901c5020\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"63ed2051-21b4-49fa-af5e-cf8f886a749b\",\n                        \"b5c704e7-682f-4505-9d15-d7fe512f346c\",\n                        \"5724717c-5be1-42b5-8087-91fad61587a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80323028564453,\n            \"Text\": \"1/15/2009\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10994744300842285,\n                    \"Height\": 0.03377895802259445,\n                    \"Left\": 0.03066299483180046,\n                    \"Top\": 0.6011941432952881\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6349731087684631\n                    },\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6349731087684631\n                    }\n                ]\n            },\n            \"Id\": \"6f11ec80-b3c0-494a-ae5f-0c01bb8b9ab3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4e54163-997b-4826-95be-18f6437d112c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.44173431396484,\n            \"Text\": \"6/30/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10669334977865219,\n                    \"Height\": 0.03327876701951027,\n                    \"Left\": 0.1591043472290039,\n                    \"Top\": 0.6038529276847839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6371316909790039\n                    },\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6371316909790039\n                    }\n                ]\n            },\n            \"Id\": \"1c4793e1-6a9e-4a86-8363-452e2411e7cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8eab22d6-ee35-442d-902b-a94dcf6043c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.49974060058594,\n            \"Text\": \"Any Company\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14184918999671936,\n                    \"Height\": 0.036288268864154816,\n                    \"Left\": 0.28729841113090515,\n                    \"Top\": 0.603325605392456\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.6396138668060303\n                    },\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.6396138668060303\n                    }\n                ]\n            },\n            \"Id\": \"bf6728f6-0dfe-4a44-9da1-1c05897fe86f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15090e8f-f0eb-48c7-a1ae-477549dcdce9\",\n                        \"9b8383fc-288a-4de8-b63e-3501ae5ff6a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8732681274414,\n            \"Text\": \"Head Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11757069826126099,\n                    \"Height\": 0.03858752176165581,\n                    \"Left\": 0.4963566064834595,\n                    \"Top\": 0.6006042957305908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6391918063163757\n                    },\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6391918063163757\n                    }\n                ]\n            },\n            \"Id\": \"5a889905-9d78-488f-ac42-ef14aaa9f4b3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6113544-3027-4191-abe1-bc84a5626647\",\n                        \"c5658fa3-b21b-409a-b77e-d7f4e9483bd8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88957214355469,\n            \"Text\": \"Family relocated\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16806642711162567,\n                    \"Height\": 0.03929377347230911,\n                    \"Left\": 0.6792210340499878,\n                    \"Top\": 0.6023225784301758\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6416163444519043\n                    },\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6416163444519043\n                    }\n                ]\n            },\n            \"Id\": \"6cd8eebf-0254-4410-bb34-1f8b671a3bd0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"61617b50-93f2-45ae-9215-2e9f3a61fd7f\",\n                        \"fbd62a53-86bf-4104-9717-e4f19725c62a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.28593444824219,\n            \"Text\": \"8/15/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1083427295088768,\n                    \"Height\": 0.0370258204638958,\n                    \"Left\": 0.030907871201634407,\n                    \"Top\": 0.6694209575653076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.7064467668533325\n                    },\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.7064467668533325\n                    }\n                ]\n            },\n            \"Id\": \"7d83c491-1c1f-4474-b446-971fda9e2b3a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0f9a0d2b-0e66-4acb-94ba-3c78d92686d5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76187133789062,\n            \"Text\": \"present\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07843472808599472,\n                    \"Height\": 0.03881922736763954,\n                    \"Left\": 0.15847039222717285,\n                    \"Top\": 0.6697209477424622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.7085402011871338\n                    },\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.7085402011871338\n                    }\n                ]\n            },\n            \"Id\": \"b0b4f45c-e6c5-4cad-84e7-59221f3bce3c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4a4b18b-ec99-4427-9ab6-2eeecb1665f7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70067596435547,\n            \"Text\": \"Example Corp.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14618265628814697,\n                    \"Height\": 0.03816714510321617,\n                    \"Left\": 0.2888321280479431,\n                    \"Top\": 0.670017659664154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.7081848382949829\n                    },\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.7081848382949829\n                    }\n                ]\n            },\n            \"Id\": \"4a64a327-e0e9-49bf-abe3-ed4ca630d8f6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1a31a68e-ec1c-4317-b669-1b60dc40a789\",\n                        \"66e99c7d-d642-4d49-bb9f-b765d54cc182\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.56857299804688,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.058011386543512344,\n                    \"Height\": 0.03376809135079384,\n                    \"Left\": 0.49631235003471375,\n                    \"Top\": 0.6704307794570923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.7041988372802734\n                    },\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.7041988372802734\n                    }\n                ]\n            },\n            \"Id\": \"2156df6b-ef89-4d47-bb5d-df5e7c401119\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"253d6b96-bf27-4634-b731-d7bd49557eeb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72576141357422,\n            \"Text\": \"N/A, current\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12803903222084045,\n                    \"Height\": 0.035501159727573395,\n                    \"Left\": 0.6785282492637634,\n                    \"Top\": 0.6710510849952698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.7065522074699402\n                    },\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.7065522074699402\n                    }\n                ]\n            },\n            \"Id\": \"77dd2f37-84ef-404a-98c3-972328acf52b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"79bd79d5-4cbf-43ed-946d-c8b19a2b75a9\",\n                        \"f1173c78-986c-42f9-9e10-35d57d9bb51c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.31480407714844,\n            \"Text\": \"employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09695321321487427,\n                    \"Height\": 0.03765399754047394,\n                    \"Left\": 0.6785619854927063,\n                    \"Top\": 0.7140272259712219\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7516812682151794\n                    },\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7516812682151794\n                    }\n                ]\n            },\n            \"Id\": \"e2335bee-96cc-4632-9cd0-5de1eb3b2576\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"91e94ebe-a273-437e-a4d4-e06b2905c8d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70677185058594,\n            \"Text\": \"Applicant\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10716313868761063,\n                    \"Height\": 0.04153836891055107,\n                    \"Left\": 0.03002910688519478,\n                    \"Top\": 0.03067307360470295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.1371922492980957,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.1371922492980957,\n                        \"Y\": 0.07221144437789917\n                    },\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.07221144437789917\n                    }\n                ]\n            },\n            \"Id\": \"56167d2b-7edd-451c-9d21-5a4dd132847f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 92.96308898925781,\n            \"Text\": \"iInformation\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13362237811088562,\n                    \"Height\": 0.036215607076883316,\n                    \"Left\": 0.14688797295093536,\n                    \"Top\": 0.03133967146277428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14688797295093536,\n                        \"Y\": 0.03133967146277428\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.03133967146277428\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.06755527853965759\n                    },\n                    {\n                        \"X\": 0.14688797295093536,\n                        \"Y\": 0.06755527853965759\n                    }\n                ]\n            },\n            \"Id\": \"7b175d1f-47b2-40bf-aa06-059cdc7a1f32\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.35751342773438,\n            \"Text\": \"Full\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03760237246751785,\n                    \"Height\": 0.031485531479120255,\n                    \"Left\": 0.028746025636792183,\n                    \"Top\": 0.1136014312505722\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.1136014312505722\n                    },\n                    {\n                        \"X\": 0.06634839624166489,\n                        \"Y\": 0.1136014312505722\n                    },\n                    {\n                        \"X\": 0.06634839624166489,\n                        \"Y\": 0.14508697390556335\n                    },\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.14508697390556335\n                    }\n                ]\n            },\n            \"Id\": \"15c0cdb2-e75d-4003-b5d3-6a686001a701\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74662780761719,\n            \"Text\": \"Name:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06856495141983032,\n                    \"Height\": 0.03152376785874367,\n                    \"Left\": 0.07292687147855759,\n                    \"Top\": 0.11458774656057358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07292687147855759,\n                        \"Y\": 0.11458774656057358\n                    },\n                    {\n                        \"X\": 0.1414918154478073,\n                        \"Y\": 0.11458774656057358\n                    },\n                    {\n                        \"X\": 0.1414918154478073,\n                        \"Y\": 0.14611151814460754\n                    },\n                    {\n                        \"X\": 0.07292687147855759,\n                        \"Y\": 0.14611151814460754\n                    }\n                ]\n            },\n            \"Id\": \"52821638-ea10-4309-9c9b-08007b95e63c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.64032745361328,\n            \"Text\": \"Jane\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04376714304089546,\n                    \"Height\": 0.03144075721502304,\n                    \"Left\": 0.14814163744449615,\n                    \"Top\": 0.11421803385019302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14814163744449615,\n                        \"Y\": 0.11421803385019302\n                    },\n                    {\n                        \"X\": 0.19190877676010132,\n                        \"Y\": 0.11421803385019302\n                    },\n                    {\n                        \"X\": 0.19190877676010132,\n                        \"Y\": 0.14565879106521606\n                    },\n                    {\n                        \"X\": 0.14814163744449615,\n                        \"Y\": 0.14565879106521606\n                    }\n                ]\n            },\n            \"Id\": \"acc5b5fa-8e18-408f-ae6e-bf3336f9011e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2322006225586,\n            \"Text\": \"Doe\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04023061692714691,\n                    \"Height\": 0.03364269435405731,\n                    \"Left\": 0.199162557721138,\n                    \"Top\": 0.11213930696249008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.199162557721138,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.145782008767128\n                    },\n                    {\n                        \"X\": 0.199162557721138,\n                        \"Y\": 0.145782008767128\n                    }\n                ]\n            },\n            \"Id\": \"b1998385-b2df-4099-a2a1-1942b5db099e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.39933013916016,\n            \"Text\": \"Phone\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06604675948619843,\n                    \"Height\": 0.036048345267772675,\n                    \"Left\": 0.029274573549628258,\n                    \"Top\": 0.19063594937324524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.09532133489847183,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.09532133489847183,\n                        \"Y\": 0.22668428719043732\n                    },\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.22668428719043732\n                    }\n                ]\n            },\n            \"Id\": \"b4dd773f-ddb7-407e-9dbc-cf623204e654\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79454040527344,\n            \"Text\": \"Number:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09247590601444244,\n                    \"Height\": 0.034948017448186874,\n                    \"Left\": 0.1015779972076416,\n                    \"Top\": 0.19128166139125824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1015779972076416,\n                        \"Y\": 0.19128166139125824\n                    },\n                    {\n                        \"X\": 0.19405390322208405,\n                        \"Y\": 0.19128166139125824\n                    },\n                    {\n                        \"X\": 0.19405390322208405,\n                        \"Y\": 0.2262296825647354\n                    },\n                    {\n                        \"X\": 0.1015779972076416,\n                        \"Y\": 0.2262296825647354\n                    }\n                ]\n            },\n            \"Id\": \"63c1b36b-6b46-4391-b3a5-379247f448f8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.75424194335938,\n            \"Text\": \"555-0100\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09652186185121536,\n                    \"Height\": 0.03407157212495804,\n                    \"Left\": 0.20061562955379486,\n                    \"Top\": 0.1911606788635254\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20061562955379486,\n                        \"Y\": 0.1911606788635254\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.1911606788635254\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.22523224353790283\n                    },\n                    {\n                        \"X\": 0.20061562955379486,\n                        \"Y\": 0.22523224353790283\n                    }\n                ]\n            },\n            \"Id\": \"6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7176284790039,\n            \"Text\": \"Home\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06157437339425087,\n                    \"Height\": 0.03566235676407814,\n                    \"Left\": 0.02940143272280693,\n                    \"Top\": 0.2697528600692749\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.2697528600692749\n                    },\n                    {\n                        \"X\": 0.0909758061170578,\n                        \"Y\": 0.2697528600692749\n                    },\n                    {\n                        \"X\": 0.0909758061170578,\n                        \"Y\": 0.30541521310806274\n                    },\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.30541521310806274\n                    }\n                ]\n            },\n            \"Id\": \"c9d0f076-4489-4aa3-8790-fc2f5f011b75\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83595275878906,\n            \"Text\": \"Address:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09089267998933792,\n                    \"Height\": 0.034272804856300354,\n                    \"Left\": 0.09725941717624664,\n                    \"Top\": 0.26987001299858093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09725941717624664,\n                        \"Y\": 0.26987001299858093\n                    },\n                    {\n                        \"X\": 0.18815210461616516,\n                        \"Y\": 0.26987001299858093\n                    },\n                    {\n                        \"X\": 0.18815210461616516,\n                        \"Y\": 0.3041428029537201\n                    },\n                    {\n                        \"X\": 0.09725941717624664,\n                        \"Y\": 0.3041428029537201\n                    }\n                ]\n            },\n            \"Id\": \"1263d49f-d745-463c-9cd6-e50cc4f041c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76658630371094,\n            \"Text\": \"123\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03711886331439018,\n                    \"Height\": 0.03453168272972107,\n                    \"Left\": 0.19541588425636292,\n                    \"Top\": 0.2700358033180237\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19541588425636292,\n                        \"Y\": 0.2700358033180237\n                    },\n                    {\n                        \"X\": 0.2325347512960434,\n                        \"Y\": 0.2700358033180237\n                    },\n                    {\n                        \"X\": 0.2325347512960434,\n                        \"Y\": 0.30456748604774475\n                    },\n                    {\n                        \"X\": 0.19541588425636292,\n                        \"Y\": 0.30456748604774475\n                    }\n                ]\n            },\n            \"Id\": \"c86d0d6a-bb66-45ae-9f64-cce786a87f5e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.848876953125,\n            \"Text\": \"Any\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03809557482600212,\n                    \"Height\": 0.033582814037799835,\n                    \"Left\": 0.23934930562973022,\n                    \"Top\": 0.2701190710067749\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23934930562973022,\n                        \"Y\": 0.2701190710067749\n                    },\n                    {\n                        \"X\": 0.27744486927986145,\n                        \"Y\": 0.2701190710067749\n                    },\n                    {\n                        \"X\": 0.27744486927986145,\n                        \"Y\": 0.30370190739631653\n                    },\n                    {\n                        \"X\": 0.23934930562973022,\n                        \"Y\": 0.30370190739631653\n                    }\n                ]\n            },\n            \"Id\": \"261d78c3-da83-48ff-ae0d-767d042e27cd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.27799987792969,\n            \"Text\": \"Street.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06751600652933121,\n                    \"Height\": 0.037430375814437866,\n                    \"Left\": 0.28329533338546753,\n                    \"Top\": 0.2694692611694336\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28329533338546753,\n                        \"Y\": 0.2694692611694336\n                    },\n                    {\n                        \"X\": 0.35081133246421814,\n                        \"Y\": 0.2694692611694336\n                    },\n                    {\n                        \"X\": 0.35081133246421814,\n                        \"Y\": 0.30689963698387146\n                    },\n                    {\n                        \"X\": 0.28329533338546753,\n                        \"Y\": 0.30689963698387146\n                    }\n                ]\n            },\n            \"Id\": \"e1335e11-d8b5-4eac-a330-0e3ce583d598\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.77952575683594,\n            \"Text\": \"Any\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039666011929512024,\n                    \"Height\": 0.03783031925559044,\n                    \"Left\": 0.35845300555229187,\n                    \"Top\": 0.26757919788360596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35845300555229187,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.3981190323829651,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.3981190323829651,\n                        \"Y\": 0.3054095208644867\n                    },\n                    {\n                        \"X\": 0.35845300555229187,\n                        \"Y\": 0.3054095208644867\n                    }\n                ]\n            },\n            \"Id\": \"60f9dba7-817a-4940-a1c4-e4f91ed9df83\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.12906646728516,\n            \"Text\": \"Town.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06211653724312782,\n                    \"Height\": 0.03377317637205124,\n                    \"Left\": 0.4035578966140747,\n                    \"Top\": 0.2707397937774658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4035578966140747,\n                        \"Y\": 0.2707397937774658\n                    },\n                    {\n                        \"X\": 0.4656744599342346,\n                        \"Y\": 0.2707397937774658\n                    },\n                    {\n                        \"X\": 0.4656744599342346,\n                        \"Y\": 0.30451294779777527\n                    },\n                    {\n                        \"X\": 0.4035578966140747,\n                        \"Y\": 0.30451294779777527\n                    }\n                ]\n            },\n            \"Id\": \"3b6b440c-172d-4fb0-9306-f5676934f1e0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.15184020996094,\n            \"Text\": \"USA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0430777333676815,\n                    \"Height\": 0.036002177745103836,\n                    \"Left\": 0.4719868302345276,\n                    \"Top\": 0.2684972286224365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4719868302345276,\n                        \"Y\": 0.2684972286224365\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.2684972286224365\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.30449938774108887\n                    },\n                    {\n                        \"X\": 0.4719868302345276,\n                        \"Y\": 0.30449938774108887\n                    }\n                ]\n            },\n            \"Id\": \"dd3d86a3-2b09-4532-8714-21a6634bf7c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78374481201172,\n            \"Text\": \"Mailing\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0780109241604805,\n                    \"Height\": 0.0394306443631649,\n                    \"Left\": 0.02931326813995838,\n                    \"Top\": 0.3479834496974945\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.3479834496974945\n                    },\n                    {\n                        \"X\": 0.10732419788837433,\n                        \"Y\": 0.3479834496974945\n                    },\n                    {\n                        \"X\": 0.10732419788837433,\n                        \"Y\": 0.3874140977859497\n                    },\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.3874140977859497\n                    }\n                ]\n            },\n            \"Id\": \"13cfdb19-c9d2-42e2-8046-5f917f9d1818\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.70197296142578,\n            \"Text\": \"Address:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09546246379613876,\n                    \"Height\": 0.03629772365093231,\n                    \"Left\": 0.11462893337011337,\n                    \"Top\": 0.34784042835235596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11462893337011337,\n                        \"Y\": 0.34784042835235596\n                    },\n                    {\n                        \"X\": 0.21009139716625214,\n                        \"Y\": 0.34784042835235596\n                    },\n                    {\n                        \"X\": 0.21009139716625214,\n                        \"Y\": 0.3841381371021271\n                    },\n                    {\n                        \"X\": 0.11462893337011337,\n                        \"Y\": 0.3841381371021271\n                    }\n                ]\n            },\n            \"Id\": \"68c73643-715a-425f-b82b-19cb66df9557\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.15567779541016,\n            \"Text\": \"same\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05386832728981972,\n                    \"Height\": 0.037169020622968674,\n                    \"Left\": 0.21596916019916534,\n                    \"Top\": 0.34663155674934387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21596916019916534,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.26983749866485596,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.26983749866485596,\n                        \"Y\": 0.38380059599876404\n                    },\n                    {\n                        \"X\": 0.21596916019916534,\n                        \"Y\": 0.38380059599876404\n                    }\n                ]\n            },\n            \"Id\": \"633eab1f-bf59-4d65-b6d8-ea19063a79d2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70250701904297,\n            \"Text\": \"as\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021625958383083344,\n                    \"Height\": 0.03536900505423546,\n                    \"Left\": 0.2770702540874481,\n                    \"Top\": 0.3487294614315033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2770702540874481,\n                        \"Y\": 0.3487294614315033\n                    },\n                    {\n                        \"X\": 0.29869621992111206,\n                        \"Y\": 0.3487294614315033\n                    },\n                    {\n                        \"X\": 0.29869621992111206,\n                        \"Y\": 0.38409844040870667\n                    },\n                    {\n                        \"X\": 0.2770702540874481,\n                        \"Y\": 0.38409844040870667\n                    }\n                ]\n            },\n            \"Id\": \"a3bfe68d-d04e-4726-a617-a9133eaf4d4c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9146957397461,\n            \"Text\": \"home\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05847536772489548,\n                    \"Height\": 0.03493012860417366,\n                    \"Left\": 0.30445289611816406,\n                    \"Top\": 0.3482665717601776\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30445289611816406,\n                        \"Y\": 0.3482665717601776\n                    },\n                    {\n                        \"X\": 0.36292827129364014,\n                        \"Y\": 0.3482665717601776\n                    },\n                    {\n                        \"X\": 0.36292827129364014,\n                        \"Y\": 0.38319671154022217\n                    },\n                    {\n                        \"X\": 0.30445289611816406,\n                        \"Y\": 0.38319671154022217\n                    }\n                ]\n            },\n            \"Id\": \"ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8393783569336,\n            \"Text\": \"address\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07848889380693436,\n                    \"Height\": 0.03136633336544037,\n                    \"Left\": 0.3697330355644226,\n                    \"Top\": 0.35001784563064575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3697330355644226,\n                        \"Y\": 0.35001784563064575\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.35001784563064575\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.3813841640949249\n                    },\n                    {\n                        \"X\": 0.3697330355644226,\n                        \"Y\": 0.3813841640949249\n                    }\n                ]\n            },\n            \"Id\": \"d47560af-a6b4-44ee-ab15-9ff70b0bf073\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.37450408935547,\n            \"Text\": \"Previous\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09862715750932693,\n                    \"Height\": 0.031485967338085175,\n                    \"Left\": 0.2908104658126831,\n                    \"Top\": 0.4700919985771179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.4700919985771179\n                    },\n                    {\n                        \"X\": 0.38943764567375183,\n                        \"Y\": 0.4700919985771179\n                    },\n                    {\n                        \"X\": 0.38943764567375183,\n                        \"Y\": 0.5015779733657837\n                    },\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.5015779733657837\n                    }\n                ]\n            },\n            \"Id\": \"e4cc6233-3e13-47a5-a7a9-414a9acec09f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.41735076904297,\n            \"Text\": \"Employment\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14262399077415466,\n                    \"Height\": 0.03676837682723999,\n                    \"Left\": 0.3978722393512726,\n                    \"Top\": 0.46816155314445496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3978722393512726,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.5404962301254272,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.5404962301254272,\n                        \"Y\": 0.5049299597740173\n                    },\n                    {\n                        \"X\": 0.3978722393512726,\n                        \"Y\": 0.5049299597740173\n                    }\n                ]\n            },\n            \"Id\": \"70eca258-f69f-47f4-8b95-1f461e7ecddf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6301498413086,\n            \"Text\": \"History\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08229811489582062,\n                    \"Height\": 0.035257626324892044,\n                    \"Left\": 0.549717128276825,\n                    \"Top\": 0.4685477614402771\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.549717128276825,\n                        \"Y\": 0.4685477614402771\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.4685477614402771\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.50380539894104\n                    },\n                    {\n                        \"X\": 0.549717128276825,\n                        \"Y\": 0.50380539894104\n                    }\n                ]\n            },\n            \"Id\": \"9dbdca83-945c-42e0-b156-1c716058279f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.90143585205078,\n            \"Text\": \"Start\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05028469115495682,\n                    \"Height\": 0.03298593685030937,\n                    \"Left\": 0.031593941152095795,\n                    \"Top\": 0.5380741357803345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.5380741357803345\n                    },\n                    {\n                        \"X\": 0.08187863230705261,\n                        \"Y\": 0.5380741357803345\n                    },\n                    {\n                        \"X\": 0.08187863230705261,\n                        \"Y\": 0.571060061454773\n                    },\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.571060061454773\n                    }\n                ]\n            },\n            \"Id\": \"d6e19a98-b09d-4bae-9f9b-baa321351872\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52678680419922,\n            \"Text\": \"Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047863222658634186,\n                    \"Height\": 0.0411636047065258,\n                    \"Left\": 0.08903582394123077,\n                    \"Top\": 0.5343702435493469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08903582394123077,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5755338668823242\n                    },\n                    {\n                        \"X\": 0.08903582394123077,\n                        \"Y\": 0.5755338668823242\n                    }\n                ]\n            },\n            \"Id\": \"4673d206-c4f6-45b8-8643-e44a230cbb24\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48751831054688,\n            \"Text\": \"End\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03862469643354416,\n                    \"Height\": 0.033345453441143036,\n                    \"Left\": 0.15889933705329895,\n                    \"Top\": 0.537799596786499\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.1975240260362625,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.1975240260362625,\n                        \"Y\": 0.5711450576782227\n                    },\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.5711450576782227\n                    }\n                ]\n            },\n            \"Id\": \"6c717f5a-e9b4-427d-a83a-b87d20b875fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62641906738281,\n            \"Text\": \"Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048587359488010406,\n                    \"Height\": 0.030598783865571022,\n                    \"Left\": 0.20406591892242432,\n                    \"Top\": 0.5399602055549622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20406591892242432,\n                        \"Y\": 0.5399602055549622\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.5399602055549622\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.5705589652061462\n                    },\n                    {\n                        \"X\": 0.20406591892242432,\n                        \"Y\": 0.5705589652061462\n                    }\n                ]\n            },\n            \"Id\": \"7bf142ae-3c34-4074-a247-f139a07456af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87083435058594,\n            \"Text\": \"Employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09709158539772034,\n                    \"Height\": 0.03759261220693588,\n                    \"Left\": 0.2883279621601105,\n                    \"Top\": 0.5367630124092102\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.3854195475578308,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.3854195475578308,\n                        \"Y\": 0.5743556618690491\n                    },\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5743556618690491\n                    }\n                ]\n            },\n            \"Id\": \"8b2e9227-666b-49a1-9a9d-1bd75cfa0d9e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7916259765625,\n            \"Text\": \"Name\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06133158877491951,\n                    \"Height\": 0.0318920873105526,\n                    \"Left\": 0.3934589922428131,\n                    \"Top\": 0.5391314625740051\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3934589922428131,\n                        \"Y\": 0.5391314625740051\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5391314625740051\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5710235238075256\n                    },\n                    {\n                        \"X\": 0.3934589922428131,\n                        \"Y\": 0.5710235238075256\n                    }\n                ]\n            },\n            \"Id\": \"cdba0022-062e-4196-9d34-4d28b9598008\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5660400390625,\n            \"Text\": \"Position\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08406968414783478,\n                    \"Height\": 0.03316912800073624,\n                    \"Left\": 0.4962921440601349,\n                    \"Top\": 0.5378665328025818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.5803618431091309,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.5803618431091309,\n                        \"Y\": 0.5710356831550598\n                    },\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5710356831550598\n                    }\n                ]\n            },\n            \"Id\": \"77e3a8a0-3920-49a9-afba-eaec9b8c736f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.95382690429688,\n            \"Text\": \"Held\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047177914530038834,\n                    \"Height\": 0.03184661269187927,\n                    \"Left\": 0.5871447920799255,\n                    \"Top\": 0.5389699935913086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5871447920799255,\n                        \"Y\": 0.5389699935913086\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5389699935913086\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5708165764808655\n                    },\n                    {\n                        \"X\": 0.5871447920799255,\n                        \"Y\": 0.5708165764808655\n                    }\n                ]\n            },\n            \"Id\": \"98ac6ea3-bbf6-4812-a989-dddc60b67722\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8598861694336,\n            \"Text\": \"Reason\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07401339709758759,\n                    \"Height\": 0.03177262470126152,\n                    \"Left\": 0.6786987781524658,\n                    \"Top\": 0.5378985404968262\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5378985404968262\n                    },\n                    {\n                        \"X\": 0.7527121901512146,\n                        \"Y\": 0.5378985404968262\n                    },\n                    {\n                        \"X\": 0.7527121901512146,\n                        \"Y\": 0.5696711540222168\n                    },\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5696711540222168\n                    }\n                ]\n            },\n            \"Id\": \"5724717c-5be1-42b5-8087-91fad61587a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88066864013672,\n            \"Text\": \"for\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029880456626415253,\n                    \"Height\": 0.03472665697336197,\n                    \"Left\": 0.7602495551109314,\n                    \"Top\": 0.5371829271316528\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7602495551109314,\n                        \"Y\": 0.5371829271316528\n                    },\n                    {\n                        \"X\": 0.7901300191879272,\n                        \"Y\": 0.5371829271316528\n                    },\n                    {\n                        \"X\": 0.7901300191879272,\n                        \"Y\": 0.5719096064567566\n                    },\n                    {\n                        \"X\": 0.7602495551109314,\n                        \"Y\": 0.5719096064567566\n                    }\n                ]\n            },\n            \"Id\": \"63ed2051-21b4-49fa-af5e-cf8f886a749b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8331069946289,\n            \"Text\": \"leaving\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07356271147727966,\n                    \"Height\": 0.034270282834768295,\n                    \"Left\": 0.7963736057281494,\n                    \"Top\": 0.5365371704101562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7963736057281494,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5708074569702148\n                    },\n                    {\n                        \"X\": 0.7963736057281494,\n                        \"Y\": 0.5708074569702148\n                    }\n                ]\n            },\n            \"Id\": \"b5c704e7-682f-4505-9d15-d7fe512f346c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80323028564453,\n            \"Text\": \"1/15/2009\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10994744300842285,\n                    \"Height\": 0.03377895802259445,\n                    \"Left\": 0.03066299483180046,\n                    \"Top\": 0.6011941432952881\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6349731087684631\n                    },\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6349731087684631\n                    }\n                ]\n            },\n            \"Id\": \"b4e54163-997b-4826-95be-18f6437d112c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.44173431396484,\n            \"Text\": \"6/30/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10669334977865219,\n                    \"Height\": 0.03327876701951027,\n                    \"Left\": 0.1591043472290039,\n                    \"Top\": 0.6038529276847839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6371316909790039\n                    },\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6371316909790039\n                    }\n                ]\n            },\n            \"Id\": \"8eab22d6-ee35-442d-902b-a94dcf6043c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2585220336914,\n            \"Text\": \"Any\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03980664163827896,\n                    \"Height\": 0.036288268864154816,\n                    \"Left\": 0.28729841113090515,\n                    \"Top\": 0.603325605392456\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.3271050453186035,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.3271050453186035,\n                        \"Y\": 0.6396138668060303\n                    },\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.6396138668060303\n                    }\n                ]\n            },\n            \"Id\": \"15090e8f-f0eb-48c7-a1ae-477549dcdce9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74095153808594,\n            \"Text\": \"Company\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09595779329538345,\n                    \"Height\": 0.035034094005823135,\n                    \"Left\": 0.33318978548049927,\n                    \"Top\": 0.604002058506012\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33318978548049927,\n                        \"Y\": 0.604002058506012\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.604002058506012\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.6390361189842224\n                    },\n                    {\n                        \"X\": 0.33318978548049927,\n                        \"Y\": 0.6390361189842224\n                    }\n                ]\n            },\n            \"Id\": \"9b8383fc-288a-4de8-b63e-3501ae5ff6a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87207794189453,\n            \"Text\": \"Head\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05138467252254486,\n                    \"Height\": 0.03858752176165581,\n                    \"Left\": 0.4963566064834595,\n                    \"Top\": 0.6006042957305908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.5477412939071655,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.5477412939071655,\n                        \"Y\": 0.6391918063163757\n                    },\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6391918063163757\n                    }\n                ]\n            },\n            \"Id\": \"a6113544-3027-4191-abe1-bc84a5626647\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87446594238281,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.059024207293987274,\n                    \"Height\": 0.033399879932403564,\n                    \"Left\": 0.5549030900001526,\n                    \"Top\": 0.6017060279846191\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5549030900001526,\n                        \"Y\": 0.6017060279846191\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6017060279846191\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6351059079170227\n                    },\n                    {\n                        \"X\": 0.5549030900001526,\n                        \"Y\": 0.6351059079170227\n                    }\n                ]\n            },\n            \"Id\": \"c5658fa3-b21b-409a-b77e-d7f4e9483bd8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84358215332031,\n            \"Text\": \"Family\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06639006733894348,\n                    \"Height\": 0.03733699768781662,\n                    \"Left\": 0.6792210340499878,\n                    \"Top\": 0.6042793393135071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6042793393135071\n                    },\n                    {\n                        \"X\": 0.7456111311912537,\n                        \"Y\": 0.6042793393135071\n                    },\n                    {\n                        \"X\": 0.7456111311912537,\n                        \"Y\": 0.6416163444519043\n                    },\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6416163444519043\n                    }\n                ]\n            },\n            \"Id\": \"61617b50-93f2-45ae-9215-2e9f3a61fd7f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93555450439453,\n            \"Text\": \"relocated\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09577653557062149,\n                    \"Height\": 0.03395041450858116,\n                    \"Left\": 0.7515109181404114,\n                    \"Top\": 0.6023225784301758\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7515109181404114,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6362729668617249\n                    },\n                    {\n                        \"X\": 0.7515109181404114,\n                        \"Y\": 0.6362729668617249\n                    }\n                ]\n            },\n            \"Id\": \"fbd62a53-86bf-4104-9717-e4f19725c62a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.28593444824219,\n            \"Text\": \"8/15/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1083427220582962,\n                    \"Height\": 0.0370258204638958,\n                    \"Left\": 0.030907871201634407,\n                    \"Top\": 0.6694209575653076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.7064467668533325\n                    },\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.7064467668533325\n                    }\n                ]\n            },\n            \"Id\": \"0f9a0d2b-0e66-4acb-94ba-3c78d92686d5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76187133789062,\n            \"Text\": \"present\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07843472808599472,\n                    \"Height\": 0.03881922736763954,\n                    \"Left\": 0.15847039222717285,\n                    \"Top\": 0.6697209477424622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.7085402011871338\n                    },\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.7085402011871338\n                    }\n                ]\n            },\n            \"Id\": \"b4a4b18b-ec99-4427-9ab6-2eeecb1665f7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85023498535156,\n            \"Text\": \"Example\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0837976410984993,\n                    \"Height\": 0.0379762127995491,\n                    \"Left\": 0.2888321280479431,\n                    \"Top\": 0.6702086329460144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.6702086329460144\n                    },\n                    {\n                        \"X\": 0.3726297616958618,\n                        \"Y\": 0.6702086329460144\n                    },\n                    {\n                        \"X\": 0.3726297616958618,\n                        \"Y\": 0.7081848382949829\n                    },\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.7081848382949829\n                    }\n                ]\n            },\n            \"Id\": \"66e99c7d-d642-4d49-bb9f-b765d54cc182\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55113220214844,\n            \"Text\": \"Corp.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05414460971951485,\n                    \"Height\": 0.03702695295214653,\n                    \"Left\": 0.38087016344070435,\n                    \"Top\": 0.670017659664154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38087016344070435,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.7070446610450745\n                    },\n                    {\n                        \"X\": 0.38087016344070435,\n                        \"Y\": 0.7070446610450745\n                    }\n                ]\n            },\n            \"Id\": \"1a31a68e-ec1c-4317-b669-1b60dc40a789\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56857299804688,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.058011386543512344,\n                    \"Height\": 0.03376809135079384,\n                    \"Left\": 0.49631235003471375,\n                    \"Top\": 0.6704307794570923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.7041988372802734\n                    },\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.7041988372802734\n                    }\n                ]\n            },\n            \"Id\": \"253d6b96-bf27-4634-b731-d7bd49557eeb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63040924072266,\n            \"Text\": \"N/A,\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04625560715794563,\n                    \"Height\": 0.035501159727573395,\n                    \"Left\": 0.6785282492637634,\n                    \"Top\": 0.6710510849952698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.7247838377952576,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.7247838377952576,\n                        \"Y\": 0.7065522074699402\n                    },\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.7065522074699402\n                    }\n                ]\n            },\n            \"Id\": \"79bd79d5-4cbf-43ed-946d-c8b19a2b75a9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82111358642578,\n            \"Text\": \"current\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07549037784337997,\n                    \"Height\": 0.030172929167747498,\n                    \"Left\": 0.7310768961906433,\n                    \"Top\": 0.6727091670036316\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7310768961906433,\n                        \"Y\": 0.6727091670036316\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.6727091670036316\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.7028821110725403\n                    },\n                    {\n                        \"X\": 0.7310768961906433,\n                        \"Y\": 0.7028821110725403\n                    }\n                ]\n            },\n            \"Id\": \"f1173c78-986c-42f9-9e10-35d57d9bb51c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.31480407714844,\n            \"Text\": \"employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09695321321487427,\n                    \"Height\": 0.03765399754047394,\n                    \"Left\": 0.6785619854927063,\n                    \"Top\": 0.7140272259712219\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7516812682151794\n                    },\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7516812682151794\n                    }\n                ]\n            },\n            \"Id\": \"91e94ebe-a273-437e-a4d4-e06b2905c8d7\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.9999771118164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8767056465148926,\n                    \"Height\": 0.3819444477558136,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"928bc481-132b-4e3e-afac-ff51b372e8b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab7c09f6-20b2-4156-8b27-3d58fb724eff\",\n                        \"174e2b88-d9c6-426e-be06-028d043d32db\",\n                        \"06e64e29-2315-47de-87fd-f4cacb1fceea\",\n                        \"1c25f3ed-70cf-4f28-8699-5ba7511099dd\",\n                        \"6a75f309-6b30-4c50-83c9-1e354c2adec7\",\n                        \"def6e4bc-f7d3-455e-aa62-6a7dcaaed2b3\",\n                        \"1c78cef8-df7c-4bdc-aa80-525089251579\",\n                        \"d9bbb1e9-67ed-4684-9a7c-6a3d4259ca90\",\n                        \"50fdd5e2-9686-49e6-8def-eb9cebdf19b1\",\n                        \"cdeffc3c-c2a6-40a1-9ef2-7c6a9321c77f\",\n                        \"566433ed-dedc-4827-9f5c-5c1711973d74\",\n                        \"14d9127d-85eb-4761-a869-9877e07eada3\",\n                        \"3254cdb7-bfee-40f1-98f0-b4aad91d496a\",\n                        \"b70cba38-5d3c-449e-a070-d92858ce4802\",\n                        \"1a6a5434-3d85-4cd9-8a3a-efb3085a6aea\",\n                        \"09eb895a-9de8-4287-844c-a8da1a227bbb\",\n                        \"1a9775a6-756d-44a2-8021-a118b590cd92\",\n                        \"d3ef024b-4d4c-4adb-9c34-97db8e6e8bd9\",\n                        \"9f753a4c-219b-404c-88ca-8e52988bdcec\",\n                        \"ca33548b-4428-4ffa-8ca0-cba6367a6fe2\",\n                        \"dbce13aa-5689-4e31-939d-40d90dbcdec2\",\n                        \"f553b2a1-e937-4bd5-b26d-6da016c114fe\",\n                        \"ed2a4a7a-4e66-4201-b177-9ae79d7868bd\",\n                        \"66839b64-d9a6-4a72-a89a-529e0d0c8177\",\n                        \"0b69c665-0f31-4655-b5d8-24ac64fb881b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.54133987426758,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"ab7c09f6-20b2-4156-8b27-3d58fb724eff\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.54133987426758,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"174e2b88-d9c6-426e-be06-028d043d32db\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 54.73961639404297,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"06e64e29-2315-47de-87fd-f4cacb1fceea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e4cc6233-3e13-47a5-a7a9-414a9acec09f\",\n                        \"70eca258-f69f-47f4-8b95-1f461e7ecddf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 51.42206573486328,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"1c25f3ed-70cf-4f28-8699-5ba7511099dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dbdca83-945c-42e0-b156-1c716058279f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.54133987426758,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"6a75f309-6b30-4c50-83c9-1e354c2adec7\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.72053527832031,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"def6e4bc-f7d3-455e-aa62-6a7dcaaed2b3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d6e19a98-b09d-4bae-9f9b-baa321351872\",\n                        \"4673d206-c4f6-45b8-8643-e44a230cbb24\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.72053527832031,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"1c78cef8-df7c-4bdc-aa80-525089251579\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6c717f5a-e9b4-427d-a83a-b87d20b875fb\",\n                        \"7bf142ae-3c34-4074-a247-f139a07456af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.5656509399414,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"d9bbb1e9-67ed-4684-9a7c-6a3d4259ca90\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8b2e9227-666b-49a1-9a9d-1bd75cfa0d9e\",\n                        \"cdba0022-062e-4196-9d34-4d28b9598008\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.62228393554688,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"50fdd5e2-9686-49e6-8def-eb9cebdf19b1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"77e3a8a0-3920-49a9-afba-eaec9b8c736f\",\n                        \"98ac6ea3-bbf6-4812-a989-dddc60b67722\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.72053527832031,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"cdeffc3c-c2a6-40a1-9ef2-7c6a9321c77f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5724717c-5be1-42b5-8087-91fad61587a3\",\n                        \"63ed2051-21b4-49fa-af5e-cf8f886a749b\",\n                        \"b5c704e7-682f-4505-9d15-d7fe512f346c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"566433ed-dedc-4827-9f5c-5c1711973d74\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4e54163-997b-4826-95be-18f6437d112c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"14d9127d-85eb-4761-a869-9877e07eada3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8eab22d6-ee35-442d-902b-a94dcf6043c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.36363983154297,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"3254cdb7-bfee-40f1-98f0-b4aad91d496a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15090e8f-f0eb-48c7-a1ae-477549dcdce9\",\n                        \"9b8383fc-288a-4de8-b63e-3501ae5ff6a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.12947845458984,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"b70cba38-5d3c-449e-a070-d92858ce4802\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6113544-3027-4191-abe1-bc84a5626647\",\n                        \"c5658fa3-b21b-409a-b77e-d7f4e9483bd8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"1a6a5434-3d85-4cd9-8a3a-efb3085a6aea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"61617b50-93f2-45ae-9215-2e9f3a61fd7f\",\n                        \"fbd62a53-86bf-4104-9717-e4f19725c62a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"09eb895a-9de8-4287-844c-a8da1a227bbb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0f9a0d2b-0e66-4acb-94ba-3c78d92686d5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"1a9775a6-756d-44a2-8021-a118b590cd92\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4a4b18b-ec99-4427-9ab6-2eeecb1665f7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.36363983154297,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"d3ef024b-4d4c-4adb-9c34-97db8e6e8bd9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"66e99c7d-d642-4d49-bb9f-b765d54cc182\",\n                        \"1a31a68e-ec1c-4317-b669-1b60dc40a789\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.12947845458984,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"9f753a4c-219b-404c-88ca-8e52988bdcec\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"253d6b96-bf27-4634-b731-d7bd49557eeb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"ca33548b-4428-4ffa-8ca0-cba6367a6fe2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"79bd79d5-4cbf-43ed-946d-c8b19a2b75a9\",\n                        \"f1173c78-986c-42f9-9e10-35d57d9bb51c\",\n                        \"91e94ebe-a273-437e-a4d4-e06b2905c8d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.5016860961914,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"dbce13aa-5689-4e31-939d-40d90dbcdec2\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.5016860961914,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"f553b2a1-e937-4bd5-b26d-6da016c114fe\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.7676773071289,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"ed2a4a7a-4e66-4201-b177-9ae79d7868bd\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 72.11509704589844,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"66839b64-d9a6-4a72-a89a-529e0d0c8177\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.5016860961914,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"0b69c665-0f31-4655-b5d8-24ac64fb881b\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 63.59760284423828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16836532950401306,\n                    \"Height\": 0.03139100223779678,\n                    \"Left\": 0.02776719070971012,\n                    \"Top\": 0.1963476836681366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02776719070971012,\n                        \"Y\": 0.1963476836681366\n                    },\n                    {\n                        \"X\": 0.19613252580165863,\n                        \"Y\": 0.1963476836681366\n                    },\n                    {\n                        \"X\": 0.19613252580165863,\n                        \"Y\": 0.22773869335651398\n                    },\n                    {\n                        \"X\": 0.02776719070971012,\n                        \"Y\": 0.22773869335651398\n                    }\n                ]\n            },\n            \"Id\": \"dd8dbecf-73f1-49e2-bc9f-7169a133f6dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"a8acd770-2d5a-4799-9e0d-17a96b6da85a\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4dd773f-ddb7-407e-9dbc-cf623204e654\",\n                        \"63c1b36b-6b46-4391-b3a5-379247f448f8\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 63.59760284423828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09722070395946503,\n                    \"Height\": 0.02516728639602661,\n                    \"Left\": 0.20237421989440918,\n                    \"Top\": 0.19808898866176605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20237421989440918,\n                        \"Y\": 0.19808898866176605\n                    },\n                    {\n                        \"X\": 0.2995949387550354,\n                        \"Y\": 0.19808898866176605\n                    },\n                    {\n                        \"X\": 0.2995949387550354,\n                        \"Y\": 0.22325627505779266\n                    },\n                    {\n                        \"X\": 0.20237421989440918,\n                        \"Y\": 0.22325627505779266\n                    }\n                ]\n            },\n            \"Id\": \"a8acd770-2d5a-4799-9e0d-17a96b6da85a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 65.030029296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16203054785728455,\n                    \"Height\": 0.03180292621254921,\n                    \"Left\": 0.029164882376790047,\n                    \"Top\": 0.2747862935066223\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029164882376790047,\n                        \"Y\": 0.2747862935066223\n                    },\n                    {\n                        \"X\": 0.19119544327259064,\n                        \"Y\": 0.2747862935066223\n                    },\n                    {\n                        \"X\": 0.19119544327259064,\n                        \"Y\": 0.3065892159938812\n                    },\n                    {\n                        \"X\": 0.029164882376790047,\n                        \"Y\": 0.3065892159938812\n                    }\n                ]\n            },\n            \"Id\": \"03c0345c-f42d-4bea-864d-60a8d1e890fb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"1059d4c4-dd84-4995-be8f-24c0e8b12a6a\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c9d0f076-4489-4aa3-8790-fc2f5f011b75\",\n                        \"1263d49f-d745-463c-9cd6-e50cc4f041c4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 65.030029296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.32020026445388794,\n                    \"Height\": 0.026060447096824646,\n                    \"Left\": 0.1938924342393875,\n                    \"Top\": 0.2770303189754486\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1938924342393875,\n                        \"Y\": 0.2770303189754486\n                    },\n                    {\n                        \"X\": 0.5140926837921143,\n                        \"Y\": 0.2770303189754486\n                    },\n                    {\n                        \"X\": 0.5140926837921143,\n                        \"Y\": 0.30309075117111206\n                    },\n                    {\n                        \"X\": 0.1938924342393875,\n                        \"Y\": 0.30309075117111206\n                    }\n                ]\n            },\n            \"Id\": \"1059d4c4-dd84-4995-be8f-24c0e8b12a6a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c86d0d6a-bb66-45ae-9f64-cce786a87f5e\",\n                        \"261d78c3-da83-48ff-ae0d-767d042e27cd\",\n                        \"e1335e11-d8b5-4eac-a330-0e3ce583d598\",\n                        \"60f9dba7-817a-4940-a1c4-e4f91ed9df83\",\n                        \"3b6b440c-172d-4fb0-9306-f5676934f1e0\",\n                        \"dd3d86a3-2b09-4532-8714-21a6634bf7c4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 71.14427947998047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11259862035512924,\n                    \"Height\": 0.030633898451924324,\n                    \"Left\": 0.0298884566873312,\n                    \"Top\": 0.11796300113201141\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0298884566873312,\n                        \"Y\": 0.11796300113201141\n                    },\n                    {\n                        \"X\": 0.1424870789051056,\n                        \"Y\": 0.11796300113201141\n                    },\n                    {\n                        \"X\": 0.1424870789051056,\n                        \"Y\": 0.1485968977212906\n                    },\n                    {\n                        \"X\": 0.0298884566873312,\n                        \"Y\": 0.1485968977212906\n                    }\n                ]\n            },\n            \"Id\": \"100c9244-9c74-4166-82b5-1e9890cf455d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"3f728c36-56f2-487c-a3e2-3cafe49f7da9\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15c0cdb2-e75d-4003-b5d3-6a686001a701\",\n                        \"52821638-ea10-4309-9c9b-08007b95e63c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 71.14427947998047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08989597856998444,\n                    \"Height\": 0.021258536726236343,\n                    \"Left\": 0.15263603627681732,\n                    \"Top\": 0.12021855264902115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15263603627681732,\n                        \"Y\": 0.12021855264902115\n                    },\n                    {\n                        \"X\": 0.24253201484680176,\n                        \"Y\": 0.12021855264902115\n                    },\n                    {\n                        \"X\": 0.24253201484680176,\n                        \"Y\": 0.1414770931005478\n                    },\n                    {\n                        \"X\": 0.15263603627681732,\n                        \"Y\": 0.1414770931005478\n                    }\n                ]\n            },\n            \"Id\": \"3f728c36-56f2-487c-a3e2-3cafe49f7da9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"acc5b5fa-8e18-408f-ae6e-bf3336f9011e\",\n                        \"b1998385-b2df-4099-a2a1-1942b5db099e\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 61.29184341430664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17466463148593903,\n                    \"Height\": 0.03513805568218231,\n                    \"Left\": 0.03024386055767536,\n                    \"Top\": 0.35338595509529114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03024386055767536,\n                        \"Y\": 0.35338595509529114\n                    },\n                    {\n                        \"X\": 0.20490849018096924,\n                        \"Y\": 0.35338595509529114\n                    },\n                    {\n                        \"X\": 0.20490849018096924,\n                        \"Y\": 0.38852402567863464\n                    },\n                    {\n                        \"X\": 0.03024386055767536,\n                        \"Y\": 0.38852402567863464\n                    }\n                ]\n            },\n            \"Id\": \"b7684bc3-cec7-4f4e-a2bc-ac0866094ac6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c327f8af-fd9f-47d8-bf47-b8fe34719fd3\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13cfdb19-c9d2-42e2-8046-5f917f9d1818\",\n                        \"68c73643-715a-425f-b82b-19cb66df9557\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 61.29184341430664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2409568428993225,\n                    \"Height\": 0.025999346747994423,\n                    \"Left\": 0.21125726401805878,\n                    \"Top\": 0.3559841811656952\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21125726401805878,\n                        \"Y\": 0.3559841811656952\n                    },\n                    {\n                        \"X\": 0.4522141218185425,\n                        \"Y\": 0.3559841811656952\n                    },\n                    {\n                        \"X\": 0.4522141218185425,\n                        \"Y\": 0.38198351860046387\n                    },\n                    {\n                        \"X\": 0.21125726401805878,\n                        \"Y\": 0.38198351860046387\n                    }\n                ]\n            },\n            \"Id\": \"c327f8af-fd9f-47d8-bf47-b8fe34719fd3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"633eab1f-bf59-4d65-b6d8-ea19063a79d2\",\n                        \"a3bfe68d-d04e-4726-a617-a9133eaf4d4c\",\n                        \"ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd\",\n                        \"d47560af-a6b4-44ee-ab15-9ff70b0bf073\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        }\n    ],\n    \"ResponseMetadata\": {\n        \"RequestId\": \"24bf72b5-8670-409a-893e-f06f5c107e49\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"date\": \"Fri, 29 Mar 2019 23:44:17 GMT\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"59930\",\n            \"connection\": \"keep-alive\",\n            \"x-amzn-requestid\": \"24bf72b5-8670-409a-893e-f06f5c107e49\"\n        },\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/tests/test_base_trp2.py",
    "content": "import os\nfrom trp.t_pipeline import add_page_orientation, order_blocks_by_geo\nfrom typing import List\nfrom trp.t_pipeline import add_page_orientation, order_blocks_by_geo, pipeline_merge_tables, add_kv_ocr_confidence\nfrom trp.t_tables import MergeOptions, HeaderFooterType\nimport trp.trp2 as t2\nimport trp as t1\nimport json\nimport os\nimport pytest\nfrom trp import Document\nfrom uuid import uuid4\nimport logging\n\nlogger = logging.getLogger(__name__)\n\nfrom dataclasses import dataclass, field\nimport uuid\n\n\ndef test_relationship_recursive_with_lru_cache(caplog):\n    caplog.set_level(logging.DEBUG)\n    # caplog.set_level(logging.DEBUG, logger='textractgeofinder')\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/patient_intake_form_sample.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    relationships = t_document.relationships_recursive(block=t_document.pages[0])\n    assert relationships\n    assert len(relationships) == 253\n\n\ndef test_selection_elements(caplog):\n    caplog.set_level(logging.DEBUG)\n    # caplog.set_level(logging.DEBUG, logger='textractgeofinder')\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/patient_intake_form_sample.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    selection_elements_tblocks = t_document.get_blocks_by_type(block_type_enum=t2.TextractBlockTypes.SELECTION_ELEMENT)\n    assert selection_elements_tblocks\n    assert len(selection_elements_tblocks) == 12\n    selection_elements_tblocks = t_document.get_blocks_by_type(block_type_enum=t2.TextractBlockTypes.SELECTION_ELEMENT,\n                                                               page=t_document.pages[0])\n    logger.debug(f\"selection_elements_tblocks: {selection_elements_tblocks}\")\n    assert selection_elements_tblocks\n    assert len(selection_elements_tblocks) == 12\n"
  },
  {
    "path": "src-python/tests/test_merged.py",
    "content": "import json\nimport pytest\nimport os\nfrom trp import Document\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\n@pytest.mark.parametrize(\n    \"file_path, len_pages\",\n    [\n        (\n            \"data/test_table_merged_text.json\",  # noqa: E501\n            1\n        )\n    ])\ndef test_merged_cells(file_path, len_pages):\n    doc = Document(json.load(open(os.path.join(current_folder, file_path))))\n    assert len_pages == len(doc.pages)\n    table = doc.pages[0].tables[0]\n    assert [\"now this is the merged cell \"] == [m.text for m in table.merged_cells]\n    assert \"now this is the merged cell\" == table.rows[2].cells[0].mergedText\n    assert \"now this is the merged cell\" == table.rows[2].cells[1].mergedText\n    assert \"is the merged cell \" == table.rows[2].cells[1].text\n    assert \"now this \" == table.rows[2].cells[0].text\n"
  },
  {
    "path": "src-python/tests/test_t_tables.py",
    "content": "# Python Built-Ins:\nimport json\nimport os\n\n# Local Dependencies:\nfrom trp import Document\nfrom trp.t_tables import __compare_table_headers, ExecuteTableValidations, HeaderFooterType\nfrom trp.trp2 import TDocument, TDocumentSchema\n\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\ndef test_table_header_compare():\n    \"\"\"__compare_table_headers correctly matches between tables\n\n    https://github.com/aws-samples/amazon-textract-response-parser/issues/86\n    \"\"\"\n    with open(os.path.join(current_folder, \"data/gib_multi_tables_multi_page_sample.json\")) as f:\n        j = json.load(f)\n    doc = Document(j)\n    # Load 2 tables with same column count:\n    test_table_1_id = \"4894d2ba-0479-4196-9cbd-c0fea4d28762\"\n    test_table_1 = doc.pages[0].tables[0]\n    test_table_2_id = \"b5e061ec-05be-48d5-83fc-6719fdd4397a\"\n    test_table_2 = doc.pages[1].tables[1]\n    assert test_table_1.id == test_table_1_id\n    assert test_table_2.id == test_table_2_id\n\n    # compare_table_headers should return false (different text):\n    assert __compare_table_headers(test_table_1, test_table_2) is False\n\n    # Overwrite the header text to match between the two tables:\n    for ix, cell in enumerate(test_table_1.rows[0].cells):\n        cell.text = f\"DUMMY TEXT {ix}\"\n    for ix, cell in enumerate(test_table_2.rows[0].cells):\n        cell.text = f\"DUMMY TEXT {ix}\"\n\n    # compare_table_headers should return true because the text matches:\n    assert __compare_table_headers(test_table_1, test_table_2) is True\n\n\ndef test_execute_table_validations():\n    \"\"\"\n    GIVEN: The source document may include preceding empty pages\n    WHEN: When ExecuteTableValidations is called to propose table merge lists\n    THEN: The proposed merge list is still correct\n\n    https://github.com/aws-samples/amazon-textract-response-parser/issues/175\n    \"\"\"\n    with open(os.path.join(current_folder, \"data/gib_multi_tables_multi_page_sample.json\")) as f:\n        j = json.load(f)\n    j[\"Blocks\"].insert(\n        0,\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                \"Polygon\": [\n                    {\"X\": 0, \"Y\": 0.0},\n                    {\"X\": 1.0, \"Y\": 0},\n                    {\"X\": 1.0, \"Y\": 1.0},\n                    {\"X\": 0.0, \"Y\": 1.0},\n                ]\n            },\n            \"Id\": \"DUMMY-EMPTY-PAGE\",\n            \"Relationships\": [],\n            \"Page\": 0,\n        },\n    )\n\n    t_document: TDocument = TDocumentSchema().load(j)\n    expected_merged_tables = [\n        [\"4894d2ba-0479-4196-9cbd-c0fea4d28762\", \"b5e061ec-05be-48d5-83fc-6719fdd4397a\"],\n        [\"8bbc3f4f-0354-4999-a001-4585631bb7fe\", \"cf8e09a1-c317-40c1-9c45-e830e14167d5\"],\n    ]\n\n    # Initial validation checks for the test case itself:\n    for merge in expected_merged_tables:\n        for tbl_id in merge:\n            assert t_document.get_block_by_id(tbl_id).block_type == \"TABLE\"\n\n    merge_list = ExecuteTableValidations(t_document, HeaderFooterType.NONE, accuracy_percentage=98)\n    assert merge_list == expected_merged_tables\n"
  },
  {
    "path": "src-python/tests/test_trp.py",
    "content": "import json\nimport pytest\nimport os\nfrom trp import Document, Cell\nfrom typing import List\nimport logging\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\ndef return_json_for_file(filename):\n    with open(os.path.join(current_folder, filename)) as test_json:\n        return json.load(test_json)\n\n\n@pytest.fixture\ndef json_response():\n    return return_json_for_file(\"test-response.json\")\n\n\ndef test_words(json_response):\n    doc = Document(json_response)\n    assert 1 == len(doc.pages)\n    lines = [line for line in doc.pages[0].lines]\n    assert 22 == len(lines)\n    words = [word for line in lines for word in line.words]\n    assert 53 == len(words)\n\n\ndef test_tables(json_response):\n    doc = Document(json_response)\n    assert 1 == len(doc.pages[0].tables)\n\n\ndef test_forms(json_response):\n    doc = Document(json_response)\n    assert 4 == len(doc.pages[0].form.fields)\n\n\ndef test_table_with_headers_and_merged_cells(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"textract-new-tables-api.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    header: List[Cell] = list()\n    for page in doc.pages:\n        for table in page.tables:\n            header = table.header\n    assert header\n    # print([word.text for x in header for word in x.content])\n\n\ndef test_table_with_headers_and_merged_cells_out_of_order_cells(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"tables_with_headers_out_of_order_cells.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    cells_in_child_order: List[List[int]] = list()\n    for page in doc.pages:\n        for table in page.tables:\n            assert 30 == len(table.rows)\n            for row in table.rows:\n                for cell in row.cells:\n                    cells_in_child_order.append([int(cell.rowIndex), int(cell.columnIndex)])\n\n    sorted_cells = sorted(cells_in_child_order, key=lambda row: (row[0], row[1]))\n    assert sorted_cells == cells_in_child_order\n\n\ndef test_tables_after_sort_cells():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/multi-tables-multi-page-sample.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    for page in doc.pages:\n        for table in page.tables:\n            cells_in_child_order: List[List[int]] = list()\n            for row in table.rows:\n                for cell in row.cells:\n                    cells_in_child_order.append([int(cell.rowIndex), int(cell.columnIndex)])\n\n            sorted_cells = sorted(cells_in_child_order, key=lambda row: (row[0], row[1]))\n            assert sorted_cells == cells_in_child_order\n\n\ndef _test_table_with_merged_cells(datafile, expected_merged_cells):\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", datafile))\n    j = json.load(f)\n    doc = Document(j)\n    cells_in_child_order: List[List[int]] = list()\n    hitCount = 0\n\n    for page in doc.pages:\n        for table in page.tables:\n            for r, row in enumerate(table.rows):\n                for c, cell in enumerate(row.cells):\n                    cell_coord = '{}_{}'.format(r, c)\n                    if cell_coord in expected_merged_cells and cell.mergedText.strip(\n                    ) == expected_merged_cells[cell_coord]:\n                        hitCount = hitCount + 1\n                    print(\"Table[{}][{}] = {}-{}\".format(r, c, cell.mergedText, cell.confidence))\n\n    return hitCount\n\n\ndef test_table_with_merged_cells_1(caplog):\n    caplog.set_level(logging.DEBUG)\n    res = _test_table_with_merged_cells(\n        \"tables_with_merged_cells_sample1.json\", {\n            '2_0': 'Monday, February 28, 2022',\n            '3_0': 'Monday, February 28, 2022',\n            '4_0': 'Tuesday, March 01, 2022',\n            '5_0': 'Tuesday, March 01, 2022',\n            '6_0': 'Wednesday, March 02, 2022',\n            '7_0': 'Wednesday, March 02, 2022',\n        })\n    assert res == 6\n\n\ndef test_table_with_merged_cells_2(caplog):\n    caplog.set_level(logging.DEBUG)\n    res = _test_table_with_merged_cells(\"tables_with_merged_cells_sample2.json\", {'1_0': '02/02/22', '2_0': '02/02/22'})\n    assert res == 2\n\n\ndef test_table_with_header(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"tables_with_merged_cells_sample2.json\"))\n    j = json.load(f)\n    doc = Document(j)\n\n    page = doc.pages[0]\n    table = page.tables[1]\n    header = table.header\n    assert len(header) == 1\n    assert len(header[0]) == 6\n\n    rows = table.rows_without_header\n    assert len(rows) == 7\n\n\ndef test_signature(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"paystub_with_signature.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n\n\ndef test_2023_q1_table_model(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"in-table-title.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n    f = open(os.path.join(p, \"data\", \"in-table-footer.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n    f = open(os.path.join(p, \"data\", \"all_features_with_floating_title_header.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n\n\ndef test_2023_q2_table_model(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"in-table-title.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n    f = open(os.path.join(p, \"data\", \"in-table-footer.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n    f = open(os.path.join(p, \"data\", \"all_features_with_floating_title_header.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n    f = open(os.path.join(p, \"data\", \"2023-Q2-table-model-sample.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n\n\ndef test_issue_83(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"issue_83.json\"))\n    j = json.load(f)\n    doc = Document(j)\n    assert doc\n"
  },
  {
    "path": "src-python/tests/test_trp2.py",
    "content": "from typing import List\nfrom trp.t_pipeline import add_page_orientation, order_blocks_by_geo, order_blocks_by_geo_x_y, pipeline_merge_tables, add_kv_ocr_confidence, add_orientation_to_blocks\nfrom trp.t_tables import MergeOptions, HeaderFooterType\nimport trp.trp2 as t2\nimport time\nimport trp as t1\nimport json\nimport os\nimport pytest\nfrom trp import Document\nfrom uuid import uuid4\nimport logging\nimport re\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\ndef return_json_for_file(filename):\n    with open(os.path.join(current_folder, filename)) as test_json:\n        return json.load(test_json)\n\n\n@pytest.fixture\ndef json_response():\n    return return_json_for_file(\"test-response.json\")\n\n\ndef test_serialization():\n    \"\"\"\n    testing that None values are removed when serializing\n    \"\"\"\n    bb_1 = t2.TBoundingBox(0.4, 0.3, 0.1, top=None)    # type:ignore forcing some None/null values\n    bb_2 = t2.TBoundingBox(0.4, 0.3, 0.1, top=0.2)    # type: ignore\n    p1 = t2.TPoint(x=0.1, y=0.1)\n    p2 = t2.TPoint(x=0.3, y=None)    # type:ignore\n    geo = t2.TGeometry(bounding_box=bb_1, polygon=[p1, p2])\n    geo_s = t2.TGeometrySchema()\n    s: str = geo_s.dumps(geo)\n    assert not \"null\" in s\n    geo = t2.TGeometry(bounding_box=bb_2, polygon=[p1, p2])\n    s: str = geo_s.dumps(geo)\n    assert not \"null\" in s\n\n\ndef test_tblock_order_blocks_by_geo():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    new_order = order_blocks_by_geo(t_document)\n    doc = t1.Document(t2.TDocumentSchema().dump(new_order))\n    assert \"Value 1.1.1\" == doc.pages[0].tables[0].rows[0].cells[0].text.strip()\n    assert \"Value 2.1.1\" == doc.pages[0].tables[1].rows[0].cells[0].text.strip()\n    assert \"Value 3.1.1\" == doc.pages[0].tables[2].rows[0].cells[0].text.strip()\n\n\ndef test_tblock_order_block_by_geo_multi_page():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_multi_page_tables.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = order_blocks_by_geo(t_document)\n    doc = t1.Document(t2.TDocumentSchema().dump(t_document))\n    assert \"Page 1 - Value 1.1.1\" == doc.pages[0].tables[0].rows[0].cells[0].text.strip()\n    assert \"Page 1 - Value 2.1.1\" == doc.pages[0].tables[1].rows[0].cells[0].text.strip()\n\n\ndef test_tblock_order_blocks_by_geo_x_y():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    new_order = order_blocks_by_geo_x_y(t_document)\n    doc = t1.Document(t2.TDocumentSchema().dump(new_order))\n    assert \"Value 1.1.1\" == doc.pages[0].tables[0].rows[0].cells[0].text.strip()\n    assert \"Value 2.1.1\" == doc.pages[0].tables[1].rows[0].cells[0].text.strip()\n    assert \"Value 3.1.1\" == doc.pages[0].tables[2].rows[0].cells[0].text.strip()\n\n\ndef test_tblock():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    new_order = order_blocks_by_geo(t_document)\n    doc = t1.Document(t2.TDocumentSchema().dump(new_order))\n    assert \"Value 1.1.1\" == doc.pages[0].tables[0].rows[0].cells[0].text.strip()\n    assert \"Value 2.1.1\" == doc.pages[0].tables[1].rows[0].cells[0].text.strip()\n    assert \"Value 3.1.1\" == doc.pages[0].tables[2].rows[0].cells[0].text.strip()\n\n\ndef test_custom_tblock():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document.custom = {'testblock': {'here': 'is some fun stuff'}}\n    assert 'testblock' in t2.TDocumentSchema().dumps(t_document)\n\n\ndef test_custom_page_orientation(json_response):\n    doc = Document(json_response)\n    assert 1 == len(doc.pages)\n    lines = [line for line in doc.pages[0].lines]\n    assert 22 == len(lines)\n    words = [word for line in lines for word in line.words]\n    assert 53 == len(words)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(json_response)    #type: ignore\n    t_document.custom = {'orientation': 180}\n    new_t_doc_json = t2.TDocumentSchema().dump(t_document)\n    assert \"Custom\" in new_t_doc_json\n    assert \"orientation\" in new_t_doc_json[\"Custom\"]    #type: ignore\n    assert new_t_doc_json[\"Custom\"][\"orientation\"] == 180    #type: ignore\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert -1 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 2\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_10_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert 5 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 15\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__15_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert 10 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 20\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__25_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert 17 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 30\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__180_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert 170 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 190\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__270_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert -100 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < -80\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__90_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert 80 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 100\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__minus_10_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert -10 < t_document.pages[0].custom['PageOrientationBasedOnWords'] < 5\n\n    doc = t1.Document(t2.TDocumentSchema().dump(t_document))\n    for page in doc.pages:\n        assert page.custom['PageOrientationBasedOnWords']\n\n\ndef test_empty_page_orientation():\n    \"\"\"\n    GIVEN: an empty page\n    WHEN: orientation is calculated\n    THEN: the tagged orientation should be 0 degrees\n\n    https://github.com/aws-samples/amazon-textract-response-parser/issues/156\n    \"\"\"\n    j = {\n        \"DocumentMetadata\": {\"Pages\": 1},\n        \"Blocks\": [\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                    \"Polygon\": [\n                        {\"X\": 0, \"Y\": 0.0},\n                        {\"X\": 1.0, \"Y\": 0},\n                        {\"X\": 1.0, \"Y\": 1.0},\n                        {\"X\": 0.0, \"Y\": 1.0},\n                    ]\n                },\n                \"Id\": \"DUMMY-EMPTY-PAGE\",\n                \"Relationships\": [],\n                \"Page\": 0,\n            }\n        ],\n    }\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert t_document.pages[0].custom[\"PageOrientationBasedOnWords\"] == 0\n\n\ndef test_filter_blocks_by_type():\n    block_list = [t2.TBlock(id=\"1\", block_type=t2.TextractBlockTypes.WORD.name)]\n    assert t2.TDocument.filter_blocks_by_type(block_list=block_list,\n                                              textract_block_type=[t2.TextractBlockTypes.WORD]) == block_list\n\n\ndef test_empty_page_get_blocks_by_type():\n    \"\"\"\n    GIVEN: an empty page\n    WHEN: get_blocks_by_type is called with the page specified\n    THEN: it should return empty, even if other pages have matching blocks\n\n    https://github.com/aws-samples/amazon-textract-response-parser/issues/155\n    \"\"\"\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/gib.json\")) as f:\n        j = json.load(f)\n    j[\"Blocks\"].insert(\n        0,\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                \"Polygon\": [\n                    {\"X\": 0, \"Y\": 0.0},\n                    {\"X\": 1.0, \"Y\": 0},\n                    {\"X\": 1.0, \"Y\": 1.0},\n                    {\"X\": 0.0, \"Y\": 1.0},\n                ]\n            },\n            \"Id\": \"DUMMY-EMPTY-PAGE\",\n            \"Relationships\": [],\n            \"Page\": 0,\n        }\n    )\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert t_document.get_blocks_by_type(\n        t2.TextractBlockTypes.WORD,\n        page=t_document.pages[0]\n    ) == []\n\n\ndef test_next_token_response():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib.json\"))\n    j = json.load(f)\n    assert j['NextToken']\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    assert t_document.pages[0].custom\n\n\ndef test_rotate_point():\n    assert t2.TPoint(2, 2) == t2.TPoint(2, 2)\n\n    p = t2.TPoint(2, 2).rotate(degrees=180, origin_y=0, origin_x=0, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(-2, -2)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-30, origin_y=0, origin_x=0, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(5, 2)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-77, origin_y=0, origin_x=0, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(5, -2)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-90, origin_y=0, origin_x=0, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(4, -3)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-270, origin_y=0, origin_x=0, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(-4, 3)\n\n    p = t2.TPoint(2, 2).rotate(degrees=180, origin_x=1, origin_y=1)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(0, 0)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-30, origin_y=0, origin_x=0, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(5, 2)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-77, origin_x=4, origin_y=4, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(4, 5)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-90, origin_x=4, origin_y=6, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(2, 7)\n\n    p = t2.TPoint(3, 4).rotate(degrees=-270, origin_x=4, origin_y=6, force_limits=False)\n    assert t2.TPoint(x=round(p.x), y=round(p.y)) == t2.TPoint(6, 5)\n\n\ndef test_rotate():\n\n    points = []\n    width = 0.05415758863091469\n    height = 0.011691284365952015\n    left = 0.13994796574115753\n    top = 0.8997916579246521\n    origin: t2.TPoint = t2.TPoint(x=0.5, y=0.5)\n    degrees: float = 180\n    points.append(t2.TPoint(x=left, y=top).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n    points.append(t2.TPoint(x=left + width, y=top).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n    points.append(t2.TPoint(x=left, y=top + height).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n    points.append(\n        t2.TPoint(x=left + width, y=top + height).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n    assert not None in points\n\n\ndef test_adjust_bounding_boxes_and_polygons_to_orientation():\n    # p = os.path.dirname(os.path.realpath(__file__))\n    # f = open(os.path.join(p, \"data/gib.json\"))\n    # j = json.load(f)\n    # t_document: t2.TDocument = t2.TDocumentSchema().load(j)\n    # t_document = add_page_orientation(t_document)\n    # doc = t1.Document(t2.TDocumentSchema().dump(t_document))\n    # key = \"Date:\"\n    # fields = doc.pages[0].form.searchFieldsByKey(key)\n    # for field in fields:\n    #     print(f\"Field: Key: {field.key}, Value: {field.value}, Geo: {field.geometry} \")\n\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib__180_degrees.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    t_document = add_page_orientation(t_document)\n    new_order = order_blocks_by_geo(t_document)\n    assert t1.Document(t2.TDocumentSchema().dump(new_order))\n    # for line in doc.pages[0].lines:\n    #     print(\"Line: {}\".format(line.text))\n    # print(\"=========================== after rotation ========================\")\n    # doc = t1.Document(t2.TDocumentSchema().dump(t_document))\n    # key = \"Date:\"\n    # fields = doc.pages[0].form.searchFieldsByKey(key)\n    # rotate_point = t2.TPoint(x=0.5, y=0.5)\n    # for field in fields:\n    #     print(f\"Field: Key: {field.key}, Value: {field.value}, Geo: {field.geometry} \")\n    #     bbox = field.geometry.boundingBox\n    #     new_point = t_pipeline.__rotate(origin=rotate_point,\n    #                         point=t2.TPoint(x=bbox.left, y=bbox.top),\n    #                         angle_degrees=180)\n    #     print(f\"new point: {new_point}\")\n\n    # FIXME: remove duplicates in relationship_recursive!\n    # [b.rotate(origin=t2.TPoint(0.5, 0.5), degrees=180) for b in t_document.relationships_recursive(block=t_document.pages[0])]\n    # t_document.rotate(page=t_document.pages[0], degrees=180)\n    # new_order = order_blocks_by_geo(t_document)\n    # with open(\"/Users/schadem/temp/rotation/rotate_json2.jon\", \"w\") as out_file:\n    #     out_file.write(t2.TDocumentSchema().dumps(t_document))\n\n    # doc = t1.Document(t2.TDocumentSchema().dump(t_document))\n    # for line in doc.pages[0].lines:\n    #     print(\"Line: {}\".format(line.text))\n\n    # p = t2.TPoint(x=0.75, y=0.03)\n    # p.rotate(origin_x=0.5, origin_y=0.5, degrees=180)\n    # print(p)\n    # new_point = rotate(origin=t2.TPoint(x=0.5, y=0.5), point = )\n    # print(f\"new_point: {new_point.x:.2f}, {new_point.y:.2f}\")\n    # print(rotate(origin=t2.TPoint(x=0.5, y=0.5), point = t2.TPoint(x=.75, y=0.03)))\n\n\ndef test_scale(caplog):\n    p1: t2.TPoint = t2.TPoint(x=0.5, y=0.5)\n    p1.scale(doc_width=10, doc_height=10)\n    assert (p1 == t2.TPoint(x=5, y=5))\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=0.1, height=0.1, left=0.5, top=0.5)\n    b1.scale(doc_width=10, doc_height=10)\n    assert (b1 == t2.TBoundingBox(width=1, height=1, left=5, top=5))\n\n    p1: t2.TPoint = t2.TPoint(x=0.5, y=0.5)\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=0.1, height=0.1, left=0.5, top=0.5)\n    g1: t2.TGeometry = t2.TGeometry(bounding_box=b1, polygon=[p1])\n    g1.scale(doc_width=10, doc_height=10)\n    assert (g1 == t2.TGeometry(bounding_box=t2.TBoundingBox(width=1, height=1, left=5, top=5),\n                               polygon=[t2.TPoint(x=5, y=5)]))\n\n\ndef test_ratio(caplog):\n    p1: t2.TPoint = t2.TPoint(x=0.5, y=0.5)\n    p2: t2.TPoint = t2.TPoint(x=5, y=5)\n    p2.ratio(doc_width=10, doc_height=10)\n    assert (p1 == p2)\n\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=0.1, height=0.1, left=0.5, top=0.5)\n    b2: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=5, top=5)\n    b2.ratio(doc_width=10, doc_height=10)\n    assert (b1 == b2)\n\n    p1: t2.TPoint = t2.TPoint(x=0.5, y=0.5)\n    p2: t2.TPoint = t2.TPoint(x=5, y=5)\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=0.1, height=0.1, left=0.5, top=0.5)\n    b2: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=5, top=5)\n\n    g1: t2.TGeometry = t2.TGeometry(bounding_box=b1, polygon=[p1])\n    g2: t2.TGeometry = t2.TGeometry(bounding_box=b2, polygon=[p2])\n\n    g2.ratio(doc_width=10, doc_height=10)\n    assert (g1 == g2)\n\n\ndef test_tbbox_union():\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b2: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=1.5, top=0.5)\n    b_gt: t2.TBoundingBox = t2.TBoundingBox(width=2, height=1, left=0.5, top=0.5)\n    b_union: t2.TBoundingBox = b2.union(b1)\n    assert (b_union == b_gt)\n\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b2: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b_gt: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b_union: t2.TBoundingBox = b2.union(b1)\n    assert (b_union == b_gt)\n\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b2: t2.TBoundingBox = t2.TBoundingBox(width=0.1, height=0.1, left=0.6, top=0.6)\n    b_gt: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b_union: t2.TBoundingBox = b2.union(b1)\n    assert (b_union == b_gt)\n\n    b1: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=0.5, top=0.5)\n    b2: t2.TBoundingBox = t2.TBoundingBox(width=1, height=1, left=2, top=4)\n    b_gt: t2.TBoundingBox = t2.TBoundingBox(width=2.5, height=4.5, left=0.5, top=0.5)\n    b_union: t2.TBoundingBox = b2.union(b1)\n    assert (b_union == b_gt)\n\n\ndef test_get_blocks_for_relationship(caplog):\n    caplog.set_level(logging.DEBUG)\n\n    # existing relationships\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/gib.json\")) as f:\n        j = json.load(f)\n        t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        # page = t_document.pages[0]\n        block = t_document.get_block_by_id(\"458a9301-8a9d-4eb2-9469-70302c62622e\")\n        relationships = block.get_relationships_for_type()\n        relationships_value = block.get_relationships_for_type(relationship_type=\"VALUE\")\n        if relationships and relationships_value:\n            rel = t_document.get_blocks_for_relationships(relationship=relationships)\n            assert len(rel) == 1\n            rel_value = t_document.get_blocks_for_relationships(relationship=relationships_value)\n            assert len(rel_value) == 1\n\n            child_rel: List[t2.TBlock] = list()\n            for value_block in rel_value:\n                child_rel.extend(t_document.get_blocks_for_relationships(\n                    value_block.get_relationships_for_type()))    #type: ignore\n            assert len(child_rel) == 1\n        else:\n            assert False\n\n\ndef test_block_id_map():\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/employment-application.json\")) as f:\n        j = json.load(f)\n        tdoc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        assert len(tdoc.block_id_map(t2.TextractBlockTypes.PAGE)) == 1\n        assert len(tdoc.block_id_map(t2.TextractBlockTypes.TABLE)) == 1\n        assert len(tdoc.block_id_map(t2.TextractBlockTypes.CELL)) == 20\n        assert len(tdoc.block_id_map(t2.TextractBlockTypes.LINE)) == 28\n        assert len(tdoc.block_id_map(t2.TextractBlockTypes.WORD)) == 63\n        assert len(tdoc.block_id_map(t2.TextractBlockTypes.KEY_VALUE_SET)) == 8\n        # test some random blocks in the main hashmap (all blocks included)\n        assert tdoc.block_id_map()['31ce6ec7-2d33-4d48-8968-922bdf8b6c46'] == 0    #the page\n        assert tdoc.block_id_map()['7a2a9b0e-582b-4852-98bb-8e067e0b4703'] == 103    #a cell\n        assert tdoc.block_id_map()['5ff46696-e06e-4577-ac3f-32a1ffde3290'] == 21    #a line\n        # test some random blocks in the dedicted haspmaps\n        assert tdoc.block_id_map(t2.TextractBlockTypes.PAGE)['31ce6ec7-2d33-4d48-8968-922bdf8b6c46'] == 0    # the page\n        assert tdoc.block_id_map(t2.TextractBlockTypes.CELL)['7a2a9b0e-582b-4852-98bb-8e067e0b4703'] == 103    #a cell\n        assert tdoc.block_id_map(t2.TextractBlockTypes.LINE)['5ff46696-e06e-4577-ac3f-32a1ffde3290'] == 21    #a line\n\n\ndef test_block_id_map_no_content():\n    \"\"\"\n    GIVEN: a document that doesn't include any content of a particular block type\n    WHEN: TDocument is created\n    THEN: all BlockTypes' `block_id_map`s are still created\n    \"\"\"\n    j = {\n        \"DocumentMetadata\": {\"Pages\": 1},\n        \"Blocks\": [\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                    \"Polygon\": [\n                        {\"X\": 0, \"Y\": 0.0},\n                        {\"X\": 1.0, \"Y\": 0},\n                        {\"X\": 1.0, \"Y\": 1.0},\n                        {\"X\": 0.0, \"Y\": 1.0},\n                    ]\n                },\n                \"Id\": \"DUMMY-PAGE-1\",\n            }\n        ],\n    }\n    tdoc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.PAGE)) == 1\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.LINE)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.SELECTION_ELEMENT)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.WORD)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.SIGNATURE)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.TABLE)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.CELL)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.MERGED_CELL)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.KEY_VALUE_SET)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.QUERY)) == 0\n    assert len(tdoc.block_id_map(t2.TextractBlockTypes.QUERY_RESULT)) == 0\n\n\ndef test_block_map():\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/employment-application.json\")) as f:\n        j = json.load(f)\n        tdoc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        assert len(tdoc.block_map(t2.TextractBlockTypes.PAGE)) == 1\n        assert len(tdoc.block_map(t2.TextractBlockTypes.TABLE)) == 1\n        assert len(tdoc.block_map(t2.TextractBlockTypes.CELL)) == 20\n        assert len(tdoc.block_map(t2.TextractBlockTypes.LINE)) == 28\n        assert len(tdoc.block_map(t2.TextractBlockTypes.WORD)) == 63\n        assert len(tdoc.block_map(t2.TextractBlockTypes.KEY_VALUE_SET)) == 8\n        # test some random blocks in the main hashmap (all blocks included)\n        assert tdoc.block_map()['31ce6ec7-2d33-4d48-8968-922bdf8b6c46'] == tdoc.blocks[0]    #the page\n        assert tdoc.block_map()['7a2a9b0e-582b-4852-98bb-8e067e0b4703'] == tdoc.blocks[103]    #a cell\n        assert tdoc.block_map()['5ff46696-e06e-4577-ac3f-32a1ffde3290'] == tdoc.blocks[21]    #a line\n        # test some random blocks in the dedicted haspmaps\n        assert tdoc.block_map(\n            t2.TextractBlockTypes.PAGE)['31ce6ec7-2d33-4d48-8968-922bdf8b6c46'] == tdoc.blocks[0]    # the page\n        assert tdoc.block_map(\n            t2.TextractBlockTypes.CELL)['7a2a9b0e-582b-4852-98bb-8e067e0b4703'] == tdoc.blocks[103]    #a cell\n        assert tdoc.block_map(\n            t2.TextractBlockTypes.LINE)['5ff46696-e06e-4577-ac3f-32a1ffde3290'] == tdoc.blocks[21]    #a line\n\n\ndef test_find_block_by_id():\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/employment-application.json\")) as f:\n        j = json.load(f)\n        tdoc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        assert tdoc.find_block_by_id('7a2a9b0e-582b-4852-98bb-8e067e0b4703') == tdoc.blocks[103]\n        assert tdoc.find_block_by_id('caa21fc2-834c-463e-a668-bb94722f3fe3') == tdoc.blocks[41]\n        assert tdoc.find_block_by_id('foo-bar-baz') == None\n\n\ndef test_get_block_by_id():\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/employment-application.json\")) as f:\n        j = json.load(f)\n        tdoc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        assert tdoc.get_block_by_id('7a2a9b0e-582b-4852-98bb-8e067e0b4703') == tdoc.blocks[103]\n        assert tdoc.get_block_by_id('caa21fc2-834c-463e-a668-bb94722f3fe3') == tdoc.blocks[41]\n        with pytest.raises(ValueError):\n            tdoc.get_block_by_id('foo-bar-baz')\n\n\ndef test_pages():\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/gib_multi_page_tables.json\")) as f:\n        j = json.load(f)\n        tdoc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        pages_ids = [p.id for p in tdoc.pages]\n        assert pages_ids == [\"e8610e55-7a61-4bd0-a9ff-583a4dc69459\", \"5f146db3-4d4a-4add-8da1-e6828f1ce877\"]\n\n\ndef test_pages_no_pagenums():\n    \"\"\"\n    GIVEN: a Textract response where `Page` numbers were not set on `PAGE` blocks\n    WHEN: listing `TDocument.pages`\n    THEN: no error is thrown and the implicit page order is used\n    \"\"\"\n    j = {\n        \"DocumentMetadata\": {\"Pages\": 2},\n        \"Blocks\": [\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                    \"Polygon\": [\n                        {\"X\": 0, \"Y\": 0.0},\n                        {\"X\": 1.0, \"Y\": 0},\n                        {\"X\": 1.0, \"Y\": 1.0},\n                        {\"X\": 0.0, \"Y\": 1.0},\n                    ]\n                },\n                \"Id\": \"DUMMY-PAGE-1\",\n                \"Relationships\": [],\n            },\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                    \"Polygon\": [\n                        {\"X\": 0, \"Y\": 0.0},\n                        {\"X\": 1.0, \"Y\": 0},\n                        {\"X\": 1.0, \"Y\": 1.0},\n                        {\"X\": 0.0, \"Y\": 1.0},\n                    ]\n                },\n                \"Id\": \"DUMMY-PAGE-2\",\n                \"Relationships\": [],\n            }\n        ],\n    }\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)  #type: ignore\n    page_ids = [p.id for p in t_document.pages]\n    assert page_ids == [\"DUMMY-PAGE-1\", \"DUMMY-PAGE-2\"]\n\n\ndef test_pages_out_of_order():\n    \"\"\"\n    GIVEN: mismatch between the order of `PAGE` blocks and their annotated `Page` numbers\n    WHEN: listing `TDocument.pages`\n    THEN: pages are returned in their explicitly-annotated order\n    \"\"\"\n    j = {\n        \"DocumentMetadata\": {\"Pages\": 2},\n        \"Blocks\": [\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                    \"Polygon\": [\n                        {\"X\": 0, \"Y\": 0.0},\n                        {\"X\": 1.0, \"Y\": 0},\n                        {\"X\": 1.0, \"Y\": 1.0},\n                        {\"X\": 0.0, \"Y\": 1.0},\n                    ]\n                },\n                \"Id\": \"DUMMY-PAGE-2\",\n                \"Page\": 2,\n                \"Relationships\": [],\n            },\n            {\n                \"BlockType\": \"PAGE\",\n                \"Geometry\": {\n                    \"BoundingBox\": {\"Width\": 1.0, \"Height\": 1.0, \"Left\": 0.0, \"Top\": 0.0},\n                    \"Polygon\": [\n                        {\"X\": 0, \"Y\": 0.0},\n                        {\"X\": 1.0, \"Y\": 0},\n                        {\"X\": 1.0, \"Y\": 1.0},\n                        {\"X\": 0.0, \"Y\": 1.0},\n                    ]\n                },\n                \"Id\": \"DUMMY-PAGE-1\",\n                \"Page\": 1,\n                \"Relationships\": [],\n            }\n        ],\n    }\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)  #type: ignore\n    page_ids = [p.id for p in t_document.pages]\n    assert page_ids == [\"DUMMY-PAGE-1\", \"DUMMY-PAGE-2\"]\n\n\ndef test_add_ids_to_relationships(caplog):\n    tdocument = t2.TDocument()\n    page_block = t2.TBlock(\n        id=str(uuid4()),\n        block_type=\"PAGE\",\n        geometry=t2.TGeometry(bounding_box=t2.TBoundingBox(width=1, height=1, left=0, top=0),\n                              polygon=[t2.TPoint(x=0, y=0), t2.TPoint(x=1, y=1)]),\n    )\n    tblock = t2.TBlock(id=str(uuid4()),\n                       block_type=\"WORD\",\n                       text=\"sometest\",\n                       geometry=t2.TGeometry(bounding_box=t2.TBoundingBox(width=0, height=0, left=0, top=0),\n                                             polygon=[t2.TPoint(x=0, y=0), t2.TPoint(x=0, y=0)]),\n                       confidence=99,\n                       text_type=\"VIRTUAL\")\n    tdocument.add_block(page_block)\n    tdocument.add_block(tblock)\n    page_block.add_ids_to_relationships([tblock.id])\n    tblock.add_ids_to_relationships([\"1\", \"2\"])\n    assert page_block.relationships and len(page_block.relationships) > 0\n    assert tblock.relationships and len(tblock.relationships) > 0\n\n\ndef test_key_value_set_key_name(caplog):\n    caplog.set_level(logging.DEBUG)\n\n    # existing relationships\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/gib.json\")) as f:\n        j = json.load(f)\n        t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        page = t_document.pages[0]\n        keys = list(t_document.keys(page=page))\n        assert keys and len(keys) > 0\n        for key_value in keys:\n            child_relationship = key_value.get_relationships_for_type('CHILD')\n            if child_relationship:\n                for id in child_relationship.ids:\n                    k_b = t_document.get_block_by_id(id=id)\n            #         print(k_b.text)\n            # print(' '.join([x.text for x in t_document.value_for_key(key_value)]))\n\n\ndef test_get_relationships_for_type(caplog):\n    # existing relationships\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/gib.json\")) as f:\n        j = json.load(f)\n        t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n        page = t_document.pages[0]\n        new_block = t2.TBlock(id=str(uuid4()))\n        t_document.add_block(new_block)\n        page.add_ids_to_relationships([new_block.id])\n        assert t_document.get_block_by_id(new_block.id) == new_block\n\n    #empty relationships\n    t_document: t2.TDocument = t2.TDocument()\n    t_document.add_block(t2.TBlock(id=str(uuid4()), block_type=\"PAGE\"))\n    page = t_document.pages[0]\n    new_block = t2.TBlock(id=str(uuid4()))\n    t_document.add_block(new_block)\n    page.add_ids_to_relationships([new_block.id])\n    assert t_document.get_block_by_id(new_block.id) == new_block\n\n\ndef test_merge_tables():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_multi_page_tables.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    tbl_id1 = 'fed02fb4-1996-4a15-98dc-29da193cc476'\n    tbl_id2 = '47c6097f-02d5-4432-8423-13c05fbfacbd'\n    pre_merge_tbl1_cells_no = len(t_document.get_block_by_id(tbl_id1).relationships[0].ids)    # type: ignore\n    pre_merge_tbl2_cells_no = len(t_document.get_block_by_id(tbl_id2).relationships[0].ids)    # type: ignore\n    pre_merge_tbl1_lastcell = t_document.get_block_by_id(tbl_id1).relationships[0].ids[-1]    # type: ignore\n    pre_merge_tbl2_lastcell = t_document.get_block_by_id(tbl_id2).relationships[0].ids[-1]    # type: ignore\n    pre_merge_tbl1_last_row = t_document.get_block_by_id(pre_merge_tbl1_lastcell).row_index    # type: ignore\n    pre_merge_tbl2_last_row = t_document.get_block_by_id(pre_merge_tbl2_lastcell).row_index    # type: ignore\n    t_document.merge_tables([[tbl_id1, tbl_id2]])\n    post_merge_tbl1_cells_no = len(t_document.get_block_by_id(tbl_id1).relationships[0].ids)    # type: ignore\n    post_merge_tbl1_lastcell = t_document.get_block_by_id(tbl_id1).relationships[0].ids[-1]    # type: ignore\n    post_merge_tbl1_last_row = t_document.get_block_by_id(post_merge_tbl1_lastcell).row_index    # type: ignore\n    assert post_merge_tbl1_cells_no == pre_merge_tbl1_cells_no + pre_merge_tbl2_cells_no\n    assert pre_merge_tbl2_last_row\n    assert post_merge_tbl1_last_row == pre_merge_tbl1_last_row + pre_merge_tbl2_last_row    # type: ignore\n\n\ndef test_add_block():\n    # add a block WITHOUT type\n    p = os.path.dirname(os.path.realpath(__file__))\n    with open(os.path.join(p, \"data/gib.json\")) as f:\n        j = json.load(f)\n        t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n        new_block_id = str(uuid4())\n        new_block = t2.TBlock(id=new_block_id)\n        t_document.add_block(new_block)\n        assert t_document.block_id_map()[new_block_id] == len(t_document.blocks) - 1\n        # add a block WITH type\n        new_block_id = str(uuid4())\n        new_block = t2.TBlock(id=new_block_id, block_type=\"WORD\")\n        t_document.add_block(new_block)\n        assert t_document.block_id_map()[new_block_id] == len(t_document.blocks) - 1\n        assert t_document.block_id_map(t2.TextractBlockTypes.WORD)[new_block_id] == len(t_document.blocks) - 1\n\n\ndef test_delete_blocks():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_multi_page_tables.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    tbl_id1 = 'fed02fb4-1996-4a15-98dc-29da193cc476'\n    tbl_id2 = '47c6097f-02d5-4432-8423-13c05fbfacbd'\n    pre_delete_block_no = len(t_document.blocks)\n    t_document.delete_blocks([tbl_id1, tbl_id2])\n    post_delete_block_no = len(t_document.blocks)\n    assert post_delete_block_no == pre_delete_block_no - 2\n    assert tbl_id1 not in t_document.block_map()\n    assert tbl_id1 not in t_document.block_id_map()\n    assert tbl_id2 not in t_document.block_map()\n    assert tbl_id2 not in t_document.block_id_map()\n    assert tbl_id1 not in t_document.block_map(t2.TextractBlockTypes.TABLE)\n    assert tbl_id1 not in t_document.block_id_map(t2.TextractBlockTypes.TABLE)\n    assert tbl_id2 not in t_document.block_map(t2.TextractBlockTypes.TABLE)\n    assert tbl_id2 not in t_document.block_id_map(t2.TextractBlockTypes.TABLE)\n\n\ndef test_link_tables():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_multi_page_tables.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    tbl_id1 = 'fed02fb4-1996-4a15-98dc-29da193cc476'\n    tbl_id2 = '47c6097f-02d5-4432-8423-13c05fbfacbd'\n    t_document.link_tables([[tbl_id1, tbl_id2]])\n    assert t_document.get_block_by_id(tbl_id1).custom['next_table'] == tbl_id2    # type: ignore\n    assert t_document.get_block_by_id(tbl_id2).custom['previous_table'] == tbl_id1    # type: ignore\n\n\ndef test_pipeline_merge_tables():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_multi_tables_multi_page_sample.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    tbl_id1 = '4894d2ba-0479-4196-9cbd-c0fea4d28762'\n    tbl_id2 = 'b5e061ec-05be-48d5-83fc-6719fdd4397a'\n    tbl_id3 = '8bbc3f4f-0354-4999-a001-4585631bb7fe'\n    tbl_id4 = 'cf8e09a1-c317-40c1-9c45-e830e14167d5'\n    pre_merge_tbl1_cells_no = len(t_document.get_block_by_id(tbl_id1).relationships[0].ids)    # type: ignore\n    pre_merge_tbl2_cells_no = len(t_document.get_block_by_id(tbl_id2).relationships[0].ids)    # type: ignore\n    pre_merge_tbl3_cells_no = len(t_document.get_block_by_id(tbl_id3).relationships[0].ids)    # type: ignore\n    pre_merge_tbl4_cells_no = len(t_document.get_block_by_id(tbl_id4).relationships[0].ids)    # type: ignore\n    t_document = pipeline_merge_tables(t_document, MergeOptions.MERGE, None, HeaderFooterType.NONE)    #type: ignore\n    post_merge_tbl1_cells_no = len(t_document.get_block_by_id(tbl_id1).relationships[0].ids)    # type: ignore\n    post_merge_tbl2_cells_no = len(t_document.get_block_by_id(tbl_id3).relationships[0].ids)    # type: ignore\n    assert post_merge_tbl1_cells_no == pre_merge_tbl1_cells_no + pre_merge_tbl2_cells_no\n    assert post_merge_tbl2_cells_no == pre_merge_tbl3_cells_no + pre_merge_tbl4_cells_no\n\n\ndef test_pipeline_merge_multiple_tables():\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/gib_multi_tables_multi_page_sample.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    tbl_id1 = '4894d2ba-0479-4196-9cbd-c0fea4d28762'\n    tbl_id2 = 'b5e061ec-05be-48d5-83fc-6719fdd4397a'\n    tbl_id3 = '8bbc3f4f-0354-4999-a001-4585631bb7fe'\n    tbl_id4 = 'cf8e09a1-c317-40c1-9c45-e830e14167d5'\n    pre_merge_tbl1_cells_no = len(t_document.get_block_by_id(tbl_id1).relationships[0].ids)    # type: ignore\n    pre_merge_tbl2_cells_no = len(t_document.get_block_by_id(tbl_id2).relationships[0].ids)    # type: ignore\n    pre_merge_tbl3_cells_no = len(t_document.get_block_by_id(tbl_id3).relationships[0].ids)    # type: ignore\n    pre_merge_tbl4_cells_no = len(t_document.get_block_by_id(tbl_id4).relationships[0].ids)    # type: ignore\n    t_document = pipeline_merge_tables(t_document, MergeOptions.MERGE, None, HeaderFooterType.NONE)    #type: ignore\n    post_merge_tbl1_cells_no = len(t_document.get_block_by_id(tbl_id1).relationships[0].ids)    # type: ignore\n    post_merge_tbl2_cells_no = len(t_document.get_block_by_id(tbl_id3).relationships[0].ids)    # type: ignore\n    assert post_merge_tbl1_cells_no == pre_merge_tbl1_cells_no + pre_merge_tbl2_cells_no\n    assert post_merge_tbl2_cells_no == pre_merge_tbl3_cells_no + pre_merge_tbl4_cells_no\n\n\ndef test_kv_ocr_confidence(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/employment-application.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    t_document = add_kv_ocr_confidence(t_document)\n\n    doc = t1.Document(t2.TDocumentSchema().dump(t_document))\n    for page in doc.pages:\n        k1 = page.form.getFieldByKey(\"Home Address:\")\n        assert k1.key.custom['OCRConfidence'] == {'min': 95.0, 'mean': 99.26356930202908}\n        assert k1.value.custom['OCRConfidence'] == {'mean': 99.8596928914388, 'min': 99.74813079833984}\n        k1 = page.form.getFieldByKey(\"Phone Number:\")\n        assert k1.key.custom['OCRConfidence'] == {'mean': 97.33475685119629, 'min': 91.0}\n        assert k1.value.custom['OCRConfidence'] == {'mean': 99.23233032226562, 'min': 99.23233032226562}\n        # for field in page.form.fields:\n        #     print(\n        #         f\"{field.key.text} - {field.key.custom['OCRConfidence']}, {field.value.text} - {field.value.custom['OCRConfidence']}\"\n        #     )\n\n\ndef test_get_answers_for_query(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"queries_sample.json\"))\n    j = json.load(f)\n    t_doc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    page: t2.TBlock = t_doc.pages[0]\n    answers = list()\n    for query in t_doc.queries(page=page):\n        answers.append(t_doc.get_answers_for_query(block=query))\n    assert len(answers) == 9\n\n\ndef test_table_with_headers_and_merged_cells(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"tables_with_headers_and_merged_cells.json\"))\n    j = json.load(f)\n    t_doc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    page: t2.TBlock = t_doc.pages[0]\n    tables: t2.TBlock = t_doc.tables(page=page)[0]\n\n\ndef test_bla(caplog):\n    import trp as t\n    import json\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"tables_with_headers_and_merged_cells.json\"))\n    # f = open(\"data/employment-application.json\")\n    j = json.load(f)\n    d = Document(j)\n    for p in d.pages:\n        for t in p.tables:\n            table: List[List[str]] = list()\n            for r in t.rows:\n                row: List[str] = list()\n                for c in r.cells:\n                    row.append(c.text)\n                table.append(row)\n\n\ndef test_add_key_values_new_value_blocks(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/employment-application.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type:ignore\n    test_block = t_document.add_virtual_block(text=\"test\", page_block=t_document.pages[0], text_type=\"VIRTUAL\")\n    assert t_document.get_block_by_id(test_block.id)\n    t_document.add_key_values(key_name=\"new_key\", values=[test_block], page_block=t_document.pages[0])\n    assert t_document.get_key_by_name(key_name=\"new_key\")\n    assert len(t_document.get_key_by_name(key_name=\"new_key\")) == 1\n\n\ndef test_add_virtual_key_for_existing_key_multi_page(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/multi-page-forms-samples-2-page.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n\n    # page 1\n    key_page_1_t_block = t_document.find_block_by_id(\"450b87d0-8407-4e2c-8ca6-6f669f9acb67\")\n    assert key_page_1_t_block\n    test_block_1 = t_document.add_virtual_key_for_existing_key(key_name=\"TEST_PAGE_1\",\n                                                               existing_key=key_page_1_t_block,\n                                                               page_block=t_document.pages[0])\n    assert test_block_1\n    rels = t_document.pages[0].get_relationships_for_type()\n    assert rels\n    ids = rels.ids\n    assert ids\n    assert [id for id in ids if test_block_1.id == id]\n    assert test_block_1.page == 1\n\n    # page 2\n    key_page_1_t_block = t_document.find_block_by_id(\"f2749b18-d331-4097-bc52-95dfb3af959a\")\n    assert key_page_1_t_block\n    test_block_1 = t_document.add_virtual_key_for_existing_key(key_name=\"TEST_PAGE_2\",\n                                                               existing_key=key_page_1_t_block,\n                                                               page_block=t_document.pages[1])\n    assert test_block_1\n    rels = t_document.pages[1].get_relationships_for_type()\n    assert rels\n    ids = rels.ids\n    assert ids\n    assert [id for id in ids if test_block_1.id == id]\n    assert test_block_1.page == 2\n\n\ndef test_paystub_with_signature(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"paystub_with_signature.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n\n\ndef test_2023_q1_table_model(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"in-table-title.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n\n    f = open(os.path.join(p, \"data\", \"in-table-footer.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n\n    f = open(os.path.join(p, \"data\", \"all_features_with_floating_title_header.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n\n    f = open(os.path.join(p, \"data\", \"2023-Q2-table-model-sample.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n\n\ndef test_180_degree_orientation_page_and_based_on_words(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"180-degree-roation.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_document\n    t_document = add_page_orientation(t_document)\n    # Check orientation based on words\n    assert 180 == t_document.pages[0].custom['PageOrientationBasedOnWords']\n    t_document = add_orientation_to_blocks(t_document)\n    # Check PAGE rotation\n    assert 179.94186486482977 == t_document.pages[0].custom['Orientation']\n\n\ndef test_large_json(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"table-performance-pretty.json\"))\n    j = json.load(f)\n    t_doc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_doc\n\n\ndef test_process_tables_timing(caplog):\n    fields = list()\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data\", \"table-performance-pretty.json\"))\n    j = json.load(f)\n    t_doc: t2.TDocument = t2.TDocumentSchema().load(j)    #type: ignore\n    assert t_doc\n    ordered_doc = order_blocks_by_geo(t_doc)\n    trp_doc = Document(t2.TDocumentSchema().dump(ordered_doc))\n    page_num = 0\n    table_index = 0\n    for page in trp_doc.pages:\n        page_num += 1\n        for table in page.tables:\n            try:\n                table_data = []\n                headers = table.get_header_field_names()    # New Table method to retrieve header column names\n                if len(headers) > 0:    # Let's retain the only table with headers\n                    merged_header = headers[0]\n                    if len(headers) > 1:\n                        for header in headers:\n                            merged_header = [x if x == y else x + \" \" + y for x, y in zip(merged_header, header)]\n                    merged_header = [re.sub(r'[^\\w]+', '', x) for x in merged_header]\n                    final_header = [[{\n                        \"displayName\": \" \" if not x else x,\n                        \"key\": \" \" if not (\"\".join(x.title().split())) else \"\".join(x.title().split())\n                    } for x in merged_header]]\n                    for _, row in enumerate(\n                            table.rows_without_header):    # New Table attribute returning rows without headers\n                        table_row = {}\n                        for c, cell in enumerate(row.cells):\n                            table_row[final_header[0][c].get(\"key\")] = {\n                                \"name\": final_header[0][c].get(\"key\"),\n                            # normal buter fieldformat\n                                \"value\": [cell.mergedText],\n                                \"confidence\": cell.confidence,\n                                \"page\": page_num,\n                                \"coordinates\": {\n                                    \"height\": cell.geometry.boundingBox.height,\n                                    \"left\": cell.geometry.boundingBox.left,\n                                    \"top\": cell.geometry.boundingBox.top,\n                                    \"width\": cell.geometry.boundingBox.width\n                                } if cell.geometry else None\n                            }    # New Cell attribute returning merged cells common va\n                        table_data.append(table_row)\n                    if len(table_data) > 0:\n                        table_index += 1\n                        fields.append({\n                            \"key\": \"table_\" + str(table_index),\n                            \"value\": json.dumps({\n                                \"headers\": final_header,\n                                \"rows\": table_data\n                            }),\n                            \"confidence\": table.confidence,\n                            \"page\": page_num,\n                            \"coordinates\": {\n                                \"height\": table.geometry.boundingBox.height,\n                                \"left\": table.geometry.boundingBox.left,\n                                \"top\": table.geometry.boundingBox.top,\n                                \"width\": table.geometry.boundingBox.width\n                            } if table.geometry else None\n                        })\n            except:\n                logging.error(\"Error parsing tabular data\")\n\n\ndef test_tdoc_signature(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/request_for_verification_of_employment.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    page = t_document.pages[0]\n    assert len(t_document.signatures(page=page)) == 3\n\n\ndef test_lines_in_order(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/little_women_page_1.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    page = t_document.pages[0]\n    assert \"The Project Gutenberg EBook of Little Women, by Louisa M. Alcott\" == t_document.lines(page=page)[0].text\n    assert \"This eBook is for the use of anyone anywhere at no cost and with\" == t_document.lines(page=page)[1].text\n\n\n# >   all_points = [p.geometry.bounding_box.points for p in values]\n# E   AttributeError: 'NoneType' object has no attribute 'bounding_box'\ndef test_create_geometry_from_blocks(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/bounding_box_issue.json\"))\n    j = json.load(f)\n    t_document: t2.TDocument = t2.TDocumentSchema().load(j)    # type: ignore\n    no_geometry = t_document.find_block_by_id(id=\"5c860e58-deb4-4c24-8282-2394a2c535c0\")\n    assert no_geometry\n    assert not t_document.create_geometry_from_blocks([no_geometry])\n"
  },
  {
    "path": "src-python/tests/test_trp2_analyzeid.py",
    "content": "import trp.trp2_analyzeid as texa\nimport json\nimport os\nimport pytest\nimport logging\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\ndef return_json_for_file(filename):\n    with open(os.path.join(current_folder, filename)) as test_json:\n        return json.load(test_json)\n\n\n@pytest.fixture\ndef json_response_1():\n    return return_json_for_file(\"data/test-trp2_analyzeid_sample1.json\")\n\n\n@pytest.fixture\ndef json_response_3():\n    return return_json_for_file(\"data/test-trp2_analyzeid_sample1_with_OCR.json\")\n\n\n@pytest.fixture\ndef json_response_multi_page():\n    return return_json_for_file(\"data/test-trp2-analyzeid_sample_multi_page.json\")\n\n\n@pytest.fixture\ndef json_response_2():\n    return return_json_for_file(\"data/test-trp2_analyzeid_sample2.json\")\n\n\ndef test_analyzeid_serialization(caplog, json_response_1):\n    caplog.set_level(logging.DEBUG)\n    exp_doc: texa.TAnalyzeIdDocument = texa.TAnalyzeIdDocumentSchema().load(json_response_1)    #type: ignore\n    assert 1 == len(exp_doc.identity_documents)\n    identityDoc1 = exp_doc.identity_documents[0]\n    assert 21 == len(identityDoc1.identity_document_fields)\n    assert \"1.0\" == exp_doc.analyze_id_model_version\n    assert 1 == exp_doc.document_metadata.pages\n\n\ndef test_analyzeid_serialization_empty(caplog, json_response_2):\n    caplog.set_level(logging.DEBUG)\n    exp_doc: texa.TAnalyzeIdDocument = texa.TAnalyzeIdDocumentSchema().load(json_response_2)    #type: ignore\n    assert \"1.0\" == exp_doc.analyze_id_model_version\n    assert 1 == exp_doc.document_metadata.pages\n\n\ndef test_analyzeid_serialization_multi_page(caplog, json_response_multi_page):\n    caplog.set_level(logging.DEBUG)\n    exp_doc: texa.TAnalyzeIdDocument = texa.TAnalyzeIdDocumentSchema().load(json_response_multi_page)    #type: ignore\n    assert \"1.0\" == exp_doc.analyze_id_model_version\n    assert 2 == exp_doc.document_metadata.pages\n    identityDoc1 = exp_doc.identity_documents[0]\n    identityDoc2 = exp_doc.identity_documents[1]\n    assert 20 == len(identityDoc1.identity_document_fields)\n    assert 20 == len(identityDoc2.identity_document_fields)\n    result = exp_doc.get_values_as_list()\n    assert result\n    assert len(result) > 0\n\n\ndef test_analyzeid_serialization_with_OCR(caplog, json_response_3):\n    caplog.set_level(logging.DEBUG)\n    exp_doc: texa.TAnalyzeIdDocument = texa.TAnalyzeIdDocumentSchema().load(json_response_3)    #type: ignore\n    assert 1 == len(exp_doc.identity_documents)\n    identityDoc1 = exp_doc.identity_documents[0]\n    assert 21 == len(identityDoc1.identity_document_fields)\n    assert \"1.0\" == exp_doc.analyze_id_model_version\n    assert 1 == exp_doc.document_metadata.pages\n"
  },
  {
    "path": "src-python/tests/test_trp2_expense.py",
    "content": "import trp.trp2_expense as texp\nimport json\nimport os\nimport pytest\nimport logging\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\ndef return_json_for_file(filename):\n    with open(os.path.join(current_folder, filename)) as test_json:\n        return json.load(test_json)\n\n\n@pytest.fixture\ndef json_response_1():\n    return return_json_for_file(\"data/test_trp2_expense_sample1.json\")\n\n@pytest.fixture\ndef json_response_2():\n    return return_json_for_file(\"data/analyzeExpenseResponse-multipage.json\")\n\ndef test_serialization(caplog, json_response_1):\n    caplog.set_level(logging.DEBUG)\n    exp_docs: texp.TAnalyzeExpenseDocument = texp.TAnalyzeExpenseDocumentSchema().load(json_response_1)\n    assert 1 == len(exp_docs.expenses_documents)\n    exp_doc = exp_docs.expenses_documents[0]\n    assert 6 == len(exp_doc.summaryfields)\n    all_fields = exp_docs.get_all_summaryfields_by_expense_id(docid=exp_doc.expense_idx)\n    assert all_fields\n    assert 6 == len(all_fields)\n    normalized_fields = exp_docs.get_normalized_summaryfields_by_expense_id(docid=exp_doc.expense_idx)\n    assert normalized_fields\n    assert 1 == len(normalized_fields)\n\ndef test_multipage(caplog, json_response_2):\n    caplog.set_level(logging.DEBUG)\n    exp_docs: texp.TAnalyzeExpenseDocument = texp.TAnalyzeExpenseDocumentSchema().load(json_response_2)\n    assert 2 == len(exp_docs.expenses_documents)\n\ndef test_generate_multipage_text(caplog, json_response_2):\n    caplog.set_level(logging.DEBUG)\n    exp_docs: texp.TAnalyzeExpenseDocument = texp.TAnalyzeExpenseDocumentSchema().load(json_response_2) #type: ignore\n    assert 2 == len(exp_docs.expenses_documents)\n    for idx, page in enumerate(exp_docs.expenses_documents):\n        print(f\"page: {idx} \")\n        line_texts = \" \".join([block.text for block in page.blocks\n                               if block.block_type == 'LINE' and block.text ])\n        print(line_texts)\n\n\n\n\n\n"
  },
  {
    "path": "src-python/tests/test_trp2_lending.py",
    "content": "import json\nimport os\nimport logging\nimport trp.trp2_lending as tl\n\ncurrent_folder = os.path.dirname(os.path.realpath(__file__))\n\n\ndef test_tblock(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/lending-doc-output.json\"))\n    j = json.load(f)\n    t_lending: tl.TFullLendingDocument = tl.TFullLendingDocumentSchema().load(j)    #type: ignore\n    assert t_lending\n\n\ndef test_tblock_no_signature(caplog):\n    caplog.set_level(logging.DEBUG)\n    p = os.path.dirname(os.path.realpath(__file__))\n    f = open(os.path.join(p, \"data/lending-package-no-signature.json\"))\n    j = json.load(f)\n    t_lending: tl.TFullLendingDocument = tl.TFullLendingDocumentSchema().load(j)    #type: ignore\n    assert t_lending\n"
  },
  {
    "path": "src-python/textract-mapping/README.md",
    "content": "# Textract Response Parser to then leverage Comprehend CDK constructs \n\nYou can use Textract-Amazon Augmented AI (A2I) response parser library to easily parser JSON returned by A2I human review workflow . \nLibrary parses JSON and provides programming language specific constructs to work with different parts of the document. \n\n## Python Usage\n\n```\n# Call Amazon Textract with A2I HumanLoop Config and get JSON response\n#  client = boto3.client('textract')\n#  response = client.analyze_document(Document={...}, FeatureTypes=[...], HumanLoopConfig={...})\n\n# Parse JSON response from Textract\ndoc = Document(response)\n\n# Iterate over elements in the document\nfor page in doc.pages:\n        print(\"PAGE\\n====================\")\n        print(\"Form (key/values)\\n====================\")\n        for field in page.form.fields:\n            k = \"\"\n            v = \"\"\n            if(field.key):\n                k = field.key.text\n            if(field.value):\n                v = field.value.text\n            print(\"Field: Key: {}, Value: {}\".format(k,v))\n\n        #Get field by key\n        key = \"Policy Number:\"\n        print(\"\\nGet field by key ({}):\\n====================\".format(key))\n        f = page.form.getFieldByKey(key)\n        if(f):\n            print(\"Field: Key: {}, Value: {}\".format(f.key.text, f.value.text))\n\n        #Search field by key\n        key = \"Policy Number:\"\n        print(\"\\nSearch field by key ({}):\\n====================\".format(key))\n        fields = page.form.searchFieldsByKey(key)\n        for field in fields:\n            print(\"Field: Key: {}, Value: {}\".format(field.key, field.value))\n\n```\n\nExample Output\n```\n====================\nForm (key/values)\n====================\nField: Key: Phone Number:, \n Value: 555-0100\n\nGet field by page ({'key': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 63.59760284423828, 'Geometry': {'BoundingBox': {'Width': 0.16836532950401306, 'Height': 0.03139100223779678, 'Left': 0.02776719070971012, 'Top': 0.1963476836681366}, 'Polygon': [{'X': 0.02776719070971012, 'Y': 0.1963476836681366}, {'X': 0.19613252580165863, 'Y': 0.1963476836681366}, {'X': 0.19613252580165863, 'Y': 0.22773869335651398}, {'X': 0.02776719070971012, 'Y': 0.22773869335651398}]}, 'Id': 'dd8dbecf-73f1-49e2-bc9f-7169a133f6dd', 'Relationships': [{'Type': 'VALUE', 'Ids': ['a8acd770-2d5a-4799-9e0d-17a96b6da85a']}, {'Type': 'CHILD', 'Ids': ['b4dd773f-ddb7-407e-9dbc-cf623204e654', '63c1b36b-6b46-4391-b3a5-379247f448f8']}], 'EntityTypes': ['KEY']}, 'id': 'dd8dbecf-73f1-49e2-bc9f-7169a133f6dd', 'text': 'Phone Number:', 'content': [{'text': 'Phone', 'geometry': {'BoundingBox': {'Width': 0.06604675948619843, 'Height': 0.036048345267772675, 'Left': 0.029274573549628258, 'Top': 0.19063594937324524}, 'Polygon': [{'X': 0.029274573549628258, 'Y': 0.19063594937324524}, {'X': 0.09532133489847183, 'Y': 0.19063594937324524}, {'X': 0.09532133489847183, 'Y': 0.22668428719043732}, {'X': 0.029274573549628258, 'Y': 0.22668428719043732}]}, 'id': 'b4dd773f-ddb7-407e-9dbc-cf623204e654'}, {'text': 'Number:', 'geometry': {'BoundingBox': {'Width': 0.09247590601444244, 'Height': 0.034948017448186874, 'Left': 0.1015779972076416, 'Top': 0.19128166139125824}, 'Polygon': [{'X': 0.1015779972076416, 'Y': 0.19128166139125824}, {'X': 0.19405390322208405, 'Y': 0.19128166139125824}, {'X': 0.19405390322208405, 'Y': 0.2262296825647354}, {'X': 0.1015779972076416, 'Y': 0.2262296825647354}]}, 'id': '63c1b36b-6b46-4391-b3a5-379247f448f8'}]}, 'value': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 63.59760284423828, 'Geometry': {'BoundingBox': {'Width': 0.09722070395946503, 'Height': 0.02516728639602661, 'Left': 0.20237421989440918, 'Top': 0.19808898866176605}, 'Polygon': [{'X': 0.20237421989440918, 'Y': 0.19808898866176605}, {'X': 0.2995949387550354, 'Y': 0.19808898866176605}, {'X': 0.2995949387550354, 'Y': 0.22325627505779266}, {'X': 0.20237421989440918, 'Y': 0.22325627505779266}]}, 'Id': 'a8acd770-2d5a-4799-9e0d-17a96b6da85a', 'Relationships': [{'Type': 'CHILD', 'Ids': ['6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2']}], 'EntityTypes': ['VALUE']}, 'id': 'a8acd770-2d5a-4799-9e0d-17a96b6da85a', 'text': '555-0100', 'content': [{'text': '555-0100', 'geometry': {'BoundingBox': {'Width': 0.09652186185121536, 'Height': 0.03407157212495804, 'Left': 0.20061562955379486, 'Top': 0.1911606788635254}, 'Polygon': [{'X': 0.20061562955379486, 'Y': 0.1911606788635254}, {'X': 0.2971374988555908, 'Y': 0.1911606788635254}, {'X': 0.2971374988555908, 'Y': 0.22523224353790283}, {'X': 0.20061562955379486, 'Y': 0.22523224353790283}]}, 'id': '6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2'}]}}):\n====================\nField: Key: Home Address:, \n Value: 123 Any Street. Any Town. USA\n\nGet field by page ({'key': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 65.030029296875, 'Geometry': {'BoundingBox': {'Width': 0.16203054785728455, 'Height': 0.03180292621254921, 'Left': 0.029164882376790047, 'Top': 0.2747862935066223}, 'Polygon': [{'X': 0.029164882376790047, 'Y': 0.2747862935066223}, {'X': 0.19119544327259064, 'Y': 0.2747862935066223}, {'X': 0.19119544327259064, 'Y': 0.3065892159938812}, {'X': 0.029164882376790047, 'Y': 0.3065892159938812}]}, 'Id': '03c0345c-f42d-4bea-864d-60a8d1e890fb', 'Relationships': [{'Type': 'VALUE', 'Ids': ['1059d4c4-dd84-4995-be8f-24c0e8b12a6a']}, {'Type': 'CHILD', 'Ids': ['c9d0f076-4489-4aa3-8790-fc2f5f011b75', '1263d49f-d745-463c-9cd6-e50cc4f041c4']}], 'EntityTypes': ['KEY']}, 'id': '03c0345c-f42d-4bea-864d-60a8d1e890fb', 'text': 'Home Address:', 'content': [{'text': 'Home', 'geometry': {'BoundingBox': {'Width': 0.06157437339425087, 'Height': 0.03566235676407814, 'Left': 0.02940143272280693, 'Top': 0.2697528600692749}, 'Polygon': [{'X': 0.02940143272280693, 'Y': 0.2697528600692749}, {'X': 0.0909758061170578, 'Y': 0.2697528600692749}, {'X': 0.0909758061170578, 'Y': 0.30541521310806274}, {'X': 0.02940143272280693, 'Y': 0.30541521310806274}]}, 'id': 'c9d0f076-4489-4aa3-8790-fc2f5f011b75'}, {'text': 'Address:', 'geometry': {'BoundingBox': {'Width': 0.09089267998933792, 'Height': 0.034272804856300354, 'Left': 0.09725941717624664, 'Top': 0.26987001299858093}, 'Polygon': [{'X': 0.09725941717624664, 'Y': 0.26987001299858093}, {'X': 0.18815210461616516, 'Y': 0.26987001299858093}, {'X': 0.18815210461616516, 'Y': 0.3041428029537201}, {'X': 0.09725941717624664, 'Y': 0.3041428029537201}]}, 'id': '1263d49f-d745-463c-9cd6-e50cc4f041c4'}]}, 'value': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 65.030029296875, 'Geometry': {'BoundingBox': {'Width': 0.32020026445388794, 'Height': 0.026060447096824646, 'Left': 0.1938924342393875, 'Top': 0.2770303189754486}, 'Polygon': [{'X': 0.1938924342393875, 'Y': 0.2770303189754486}, {'X': 0.5140926837921143, 'Y': 0.2770303189754486}, {'X': 0.5140926837921143, 'Y': 0.30309075117111206}, {'X': 0.1938924342393875, 'Y': 0.30309075117111206}]}, 'Id': '1059d4c4-dd84-4995-be8f-24c0e8b12a6a', 'Relationships': [{'Type': 'CHILD', 'Ids': ['c86d0d6a-bb66-45ae-9f64-cce786a87f5e', '261d78c3-da83-48ff-ae0d-767d042e27cd', 'e1335e11-d8b5-4eac-a330-0e3ce583d598', '60f9dba7-817a-4940-a1c4-e4f91ed9df83', '3b6b440c-172d-4fb0-9306-f5676934f1e0', 'dd3d86a3-2b09-4532-8714-21a6634bf7c4']}], 'EntityTypes': ['VALUE']}, 'id': '1059d4c4-dd84-4995-be8f-24c0e8b12a6a', 'text': '123 Any Street. Any Town. USA', 'content': [{'text': '123', 'geometry': {'BoundingBox': {'Width': 0.03711886331439018, 'Height': 0.03453168272972107, 'Left': 0.19541588425636292, 'Top': 0.2700358033180237}, 'Polygon': [{'X': 0.19541588425636292, 'Y': 0.2700358033180237}, {'X': 0.2325347512960434, 'Y': 0.2700358033180237}, {'X': 0.2325347512960434, 'Y': 0.30456748604774475}, {'X': 0.19541588425636292, 'Y': 0.30456748604774475}]}, 'id': 'c86d0d6a-bb66-45ae-9f64-cce786a87f5e'}, {'text': 'Any', 'geometry': {'BoundingBox': {'Width': 0.03809557482600212, 'Height': 0.033582814037799835, 'Left': 0.23934930562973022, 'Top': 0.2701190710067749}, 'Polygon': [{'X': 0.23934930562973022, 'Y': 0.2701190710067749}, {'X': 0.27744486927986145, 'Y': 0.2701190710067749}, {'X': 0.27744486927986145, 'Y': 0.30370190739631653}, {'X': 0.23934930562973022, 'Y': 0.30370190739631653}]}, 'id': '261d78c3-da83-48ff-ae0d-767d042e27cd'}, {'text': 'Street.', 'geometry': {'BoundingBox': {'Width': 0.06751600652933121, 'Height': 0.037430375814437866, 'Left': 0.28329533338546753, 'Top': 0.2694692611694336}, 'Polygon': [{'X': 0.28329533338546753, 'Y': 0.2694692611694336}, {'X': 0.35081133246421814, 'Y': 0.2694692611694336}, {'X': 0.35081133246421814, 'Y': 0.30689963698387146}, {'X': 0.28329533338546753, 'Y': 0.30689963698387146}]}, 'id': 'e1335e11-d8b5-4eac-a330-0e3ce583d598'}, {'text': 'Any', 'geometry': {'BoundingBox': {'Width': 0.039666011929512024, 'Height': 0.03783031925559044, 'Left': 0.35845300555229187, 'Top': 0.26757919788360596}, 'Polygon': [{'X': 0.35845300555229187, 'Y': 0.26757919788360596}, {'X': 0.3981190323829651, 'Y': 0.26757919788360596}, {'X': 0.3981190323829651, 'Y': 0.3054095208644867}, {'X': 0.35845300555229187, 'Y': 0.3054095208644867}]}, 'id': '60f9dba7-817a-4940-a1c4-e4f91ed9df83'}, {'text': 'Town.', 'geometry': {'BoundingBox': {'Width': 0.06211653724312782, 'Height': 0.03377317637205124, 'Left': 0.4035578966140747, 'Top': 0.2707397937774658}, 'Polygon': [{'X': 0.4035578966140747, 'Y': 0.2707397937774658}, {'X': 0.4656744599342346, 'Y': 0.2707397937774658}, {'X': 0.4656744599342346, 'Y': 0.30451294779777527}, {'X': 0.4035578966140747, 'Y': 0.30451294779777527}]}, 'id': '3b6b440c-172d-4fb0-9306-f5676934f1e0'}, {'text': 'USA', 'geometry': {'BoundingBox': {'Width': 0.0430777333676815, 'Height': 0.036002177745103836, 'Left': 0.4719868302345276, 'Top': 0.2684972286224365}, 'Polygon': [{'X': 0.4719868302345276, 'Y': 0.2684972286224365}, {'X': 0.515064537525177, 'Y': 0.2684972286224365}, {'X': 0.515064537525177, 'Y': 0.30449938774108887}, {'X': 0.4719868302345276, 'Y': 0.30449938774108887}]}, 'id': 'dd3d86a3-2b09-4532-8714-21a6634bf7c4'}]}}):\n====================\nField: Key: Full Name:, \n Value: Jane Doe\n\nGet field by page ({'key': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 71.14427947998047, 'Geometry': {'BoundingBox': {'Width': 0.11259862035512924, 'Height': 0.030633898451924324, 'Left': 0.0298884566873312, 'Top': 0.11796300113201141}, 'Polygon': [{'X': 0.0298884566873312, 'Y': 0.11796300113201141}, {'X': 0.1424870789051056, 'Y': 0.11796300113201141}, {'X': 0.1424870789051056, 'Y': 0.1485968977212906}, {'X': 0.0298884566873312, 'Y': 0.1485968977212906}]}, 'Id': '100c9244-9c74-4166-82b5-1e9890cf455d', 'Relationships': [{'Type': 'VALUE', 'Ids': ['3f728c36-56f2-487c-a3e2-3cafe49f7da9']}, {'Type': 'CHILD', 'Ids': ['15c0cdb2-e75d-4003-b5d3-6a686001a701', '52821638-ea10-4309-9c9b-08007b95e63c']}], 'EntityTypes': ['KEY']}, 'id': '100c9244-9c74-4166-82b5-1e9890cf455d', 'text': 'Full Name:', 'content': [{'text': 'Full', 'geometry': {'BoundingBox': {'Width': 0.03760237246751785, 'Height': 0.031485531479120255, 'Left': 0.028746025636792183, 'Top': 0.1136014312505722}, 'Polygon': [{'X': 0.028746025636792183, 'Y': 0.1136014312505722}, {'X': 0.06634839624166489, 'Y': 0.1136014312505722}, {'X': 0.06634839624166489, 'Y': 0.14508697390556335}, {'X': 0.028746025636792183, 'Y': 0.14508697390556335}]}, 'id': '15c0cdb2-e75d-4003-b5d3-6a686001a701'}, {'text': 'Name:', 'geometry': {'BoundingBox': {'Width': 0.06856495141983032, 'Height': 0.03152376785874367, 'Left': 0.07292687147855759, 'Top': 0.11458774656057358}, 'Polygon': [{'X': 0.07292687147855759, 'Y': 0.11458774656057358}, {'X': 0.1414918154478073, 'Y': 0.11458774656057358}, {'X': 0.1414918154478073, 'Y': 0.14611151814460754}, {'X': 0.07292687147855759, 'Y': 0.14611151814460754}]}, 'id': '52821638-ea10-4309-9c9b-08007b95e63c'}]}, 'value': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 71.14427947998047, 'Geometry': {'BoundingBox': {'Width': 0.08989597856998444, 'Height': 0.021258536726236343, 'Left': 0.15263603627681732, 'Top': 0.12021855264902115}, 'Polygon': [{'X': 0.15263603627681732, 'Y': 0.12021855264902115}, {'X': 0.24253201484680176, 'Y': 0.12021855264902115}, {'X': 0.24253201484680176, 'Y': 0.1414770931005478}, {'X': 0.15263603627681732, 'Y': 0.1414770931005478}]}, 'Id': '3f728c36-56f2-487c-a3e2-3cafe49f7da9', 'Relationships': [{'Type': 'CHILD', 'Ids': ['acc5b5fa-8e18-408f-ae6e-bf3336f9011e', 'b1998385-b2df-4099-a2a1-1942b5db099e']}], 'EntityTypes': ['VALUE']}, 'id': '3f728c36-56f2-487c-a3e2-3cafe49f7da9', 'text': 'Jane Doe', 'content': [{'text': 'Jane', 'geometry': {'BoundingBox': {'Width': 0.04376714304089546, 'Height': 0.03144075721502304, 'Left': 0.14814163744449615, 'Top': 0.11421803385019302}, 'Polygon': [{'X': 0.14814163744449615, 'Y': 0.11421803385019302}, {'X': 0.19190877676010132, 'Y': 0.11421803385019302}, {'X': 0.19190877676010132, 'Y': 0.14565879106521606}, {'X': 0.14814163744449615, 'Y': 0.14565879106521606}]}, 'id': 'acc5b5fa-8e18-408f-ae6e-bf3336f9011e'}, {'text': 'Doe', 'geometry': {'BoundingBox': {'Width': 0.04023061692714691, 'Height': 0.03364269435405731, 'Left': 0.199162557721138, 'Top': 0.11213930696249008}, 'Polygon': [{'X': 0.199162557721138, 'Y': 0.11213930696249008}, {'X': 0.2393931746482849, 'Y': 0.11213930696249008}, {'X': 0.2393931746482849, 'Y': 0.145782008767128}, {'X': 0.199162557721138, 'Y': 0.145782008767128}]}, 'id': 'b1998385-b2df-4099-a2a1-1942b5db099e'}]}}):\n====================\nField: Key: Mailing Address:, \n Value: same as home address\n\nGet field by page ({'key': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 61.29184341430664, 'Geometry': {'BoundingBox': {'Width': 0.17466463148593903, 'Height': 0.03513805568218231, 'Left': 0.03024386055767536, 'Top': 0.35338595509529114}, 'Polygon': [{'X': 0.03024386055767536, 'Y': 0.35338595509529114}, {'X': 0.20490849018096924, 'Y': 0.35338595509529114}, {'X': 0.20490849018096924, 'Y': 0.38852402567863464}, {'X': 0.03024386055767536, 'Y': 0.38852402567863464}]}, 'Id': 'b7684bc3-cec7-4f4e-a2bc-ac0866094ac6', 'Relationships': [{'Type': 'VALUE', 'Ids': ['c327f8af-fd9f-47d8-bf47-b8fe34719fd3']}, {'Type': 'CHILD', 'Ids': ['13cfdb19-c9d2-42e2-8046-5f917f9d1818', '68c73643-715a-425f-b82b-19cb66df9557']}], 'EntityTypes': ['KEY']}, 'id': 'b7684bc3-cec7-4f4e-a2bc-ac0866094ac6', 'text': 'Mailing Address:', 'content': [{'text': 'Mailing', 'geometry': {'BoundingBox': {'Width': 0.0780109241604805, 'Height': 0.0394306443631649, 'Left': 0.02931326813995838, 'Top': 0.3479834496974945}, 'Polygon': [{'X': 0.02931326813995838, 'Y': 0.3479834496974945}, {'X': 0.10732419788837433, 'Y': 0.3479834496974945}, {'X': 0.10732419788837433, 'Y': 0.3874140977859497}, {'X': 0.02931326813995838, 'Y': 0.3874140977859497}]}, 'id': '13cfdb19-c9d2-42e2-8046-5f917f9d1818'}, {'text': 'Address:', 'geometry': {'BoundingBox': {'Width': 0.09546246379613876, 'Height': 0.03629772365093231, 'Left': 0.11462893337011337, 'Top': 0.34784042835235596}, 'Polygon': [{'X': 0.11462893337011337, 'Y': 0.34784042835235596}, {'X': 0.21009139716625214, 'Y': 0.34784042835235596}, {'X': 0.21009139716625214, 'Y': 0.3841381371021271}, {'X': 0.11462893337011337, 'Y': 0.3841381371021271}]}, 'id': '68c73643-715a-425f-b82b-19cb66df9557'}]}, 'value': {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 61.29184341430664, 'Geometry': {'BoundingBox': {'Width': 0.2409568428993225, 'Height': 0.025999346747994423, 'Left': 0.21125726401805878, 'Top': 0.3559841811656952}, 'Polygon': [{'X': 0.21125726401805878, 'Y': 0.3559841811656952}, {'X': 0.4522141218185425, 'Y': 0.3559841811656952}, {'X': 0.4522141218185425, 'Y': 0.38198351860046387}, {'X': 0.21125726401805878, 'Y': 0.38198351860046387}]}, 'Id': 'c327f8af-fd9f-47d8-bf47-b8fe34719fd3', 'Relationships': [{'Type': 'CHILD', 'Ids': ['633eab1f-bf59-4d65-b6d8-ea19063a79d2', 'a3bfe68d-d04e-4726-a617-a9133eaf4d4c', 'ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd', 'd47560af-a6b4-44ee-ab15-9ff70b0bf073']}], 'EntityTypes': ['VALUE']}, 'id': 'c327f8af-fd9f-47d8-bf47-b8fe34719fd3', 'text': 'same as home address', 'content': [{'text': 'same', 'geometry': {'BoundingBox': {'Width': 0.05386832728981972, 'Height': 0.037169020622968674, 'Left': 0.21596916019916534, 'Top': 0.34663155674934387}, 'Polygon': [{'X': 0.21596916019916534, 'Y': 0.34663155674934387}, {'X': 0.26983749866485596, 'Y': 0.34663155674934387}, {'X': 0.26983749866485596, 'Y': 0.38380059599876404}, {'X': 0.21596916019916534, 'Y': 0.38380059599876404}]}, 'id': '633eab1f-bf59-4d65-b6d8-ea19063a79d2'}, {'text': 'as', 'geometry': {'BoundingBox': {'Width': 0.021625958383083344, 'Height': 0.03536900505423546, 'Left': 0.2770702540874481, 'Top': 0.3487294614315033}, 'Polygon': [{'X': 0.2770702540874481, 'Y': 0.3487294614315033}, {'X': 0.29869621992111206, 'Y': 0.3487294614315033}, {'X': 0.29869621992111206, 'Y': 0.38409844040870667}, {'X': 0.2770702540874481, 'Y': 0.38409844040870667}]}, 'id': 'a3bfe68d-d04e-4726-a617-a9133eaf4d4c'}, {'text': 'home', 'geometry': {'BoundingBox': {'Width': 0.05847536772489548, 'Height': 0.03493012860417366, 'Left': 0.30445289611816406, 'Top': 0.3482665717601776}, 'Polygon': [{'X': 0.30445289611816406, 'Y': 0.3482665717601776}, {'X': 0.36292827129364014, 'Y': 0.3482665717601776}, {'X': 0.36292827129364014, 'Y': 0.38319671154022217}, {'X': 0.30445289611816406, 'Y': 0.38319671154022217}]}, 'id': 'ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd'}, {'text': 'address', 'geometry': {'BoundingBox': {'Width': 0.07848889380693436, 'Height': 0.03136633336544037, 'Left': 0.3697330355644226, 'Top': 0.35001784563064575}, 'Polygon': [{'X': 0.3697330355644226, 'Y': 0.35001784563064575}, {'X': 0.44822192192077637, 'Y': 0.35001784563064575}, {'X': 0.44822192192077637, 'Y': 0.3813841640949249}, {'X': 0.3697330355644226, 'Y': 0.3813841640949249}]}, 'id': 'd47560af-a6b4-44ee-ab15-9ff70b0bf073'}]}}):\n====================\n\nGet field by key (Home Address:):\n====================\nField: Key: Home Address:, Value: 123 Any Street. Any Town. USA\n\nSearch field by key (Home Address:):\n====================\nField:Value: {'block': {'BlockType': 'KEY_VALUE_SET', 'Confidence': 65.030029296875, 'Geometry': {'BoundingBox': {'Width': 0.32020026445388794, 'Height': 0.026060447096824646, 'Left': 0.1938924342393875, 'Top': 0.2770303189754486}, 'Polygon': [{'X': 0.1938924342393875, 'Y': 0.2770303189754486}, {'X': 0.5140926837921143, 'Y': 0.2770303189754486}, {'X': 0.5140926837921143, 'Y': 0.30309075117111206}, {'X': 0.1938924342393875, 'Y': 0.30309075117111206}]}, 'Id': '1059d4c4-dd84-4995-be8f-24c0e8b12a6a', 'Relationships': [{'Type': 'CHILD', 'Ids': ['c86d0d6a-bb66-45ae-9f64-cce786a87f5e', '261d78c3-da83-48ff-ae0d-767d042e27cd', 'e1335e11-d8b5-4eac-a330-0e3ce583d598', '60f9dba7-817a-4940-a1c4-e4f91ed9df83', '3b6b440c-172d-4fb0-9306-f5676934f1e0', 'dd3d86a3-2b09-4532-8714-21a6634bf7c4']}], 'EntityTypes': ['VALUE']}, 'id': '1059d4c4-dd84-4995-be8f-24c0e8b12a6a', 'text': '123 Any Street. Any Town. USA', 'content': [{'text': '123', 'geometry': {'BoundingBox': {'Width': 0.03711886331439018, 'Height': 0.03453168272972107, 'Left': 0.19541588425636292, 'Top': 0.2700358033180237}, 'Polygon': [{'X': 0.19541588425636292, 'Y': 0.2700358033180237}, {'X': 0.2325347512960434, 'Y': 0.2700358033180237}, {'X': 0.2325347512960434, 'Y': 0.30456748604774475}, {'X': 0.19541588425636292, 'Y': 0.30456748604774475}]}, 'id': 'c86d0d6a-bb66-45ae-9f64-cce786a87f5e'}, {'text': 'Any', 'geometry': {'BoundingBox': {'Width': 0.03809557482600212, 'Height': 0.033582814037799835, 'Left': 0.23934930562973022, 'Top': 0.2701190710067749}, 'Polygon': [{'X': 0.23934930562973022, 'Y': 0.2701190710067749}, {'X': 0.27744486927986145, 'Y': 0.2701190710067749}, {'X': 0.27744486927986145, 'Y': 0.30370190739631653}, {'X': 0.23934930562973022, 'Y': 0.30370190739631653}]}, 'id': '261d78c3-da83-48ff-ae0d-767d042e27cd'}, {'text': 'Street.', 'geometry': {'BoundingBox': {'Width': 0.06751600652933121, 'Height': 0.037430375814437866, 'Left': 0.28329533338546753, 'Top': 0.2694692611694336}, 'Polygon': [{'X': 0.28329533338546753, 'Y': 0.2694692611694336}, {'X': 0.35081133246421814, 'Y': 0.2694692611694336}, {'X': 0.35081133246421814, 'Y': 0.30689963698387146}, {'X': 0.28329533338546753, 'Y': 0.30689963698387146}]}, 'id': 'e1335e11-d8b5-4eac-a330-0e3ce583d598'}, {'text': 'Any', 'geometry': {'BoundingBox': {'Width': 0.039666011929512024, 'Height': 0.03783031925559044, 'Left': 0.35845300555229187, 'Top': 0.26757919788360596}, 'Polygon': [{'X': 0.35845300555229187, 'Y': 0.26757919788360596}, {'X': 0.3981190323829651, 'Y': 0.26757919788360596}, {'X': 0.3981190323829651, 'Y': 0.3054095208644867}, {'X': 0.35845300555229187, 'Y': 0.3054095208644867}]}, 'id': '60f9dba7-817a-4940-a1c4-e4f91ed9df83'}, {'text': 'Town.', 'geometry': {'BoundingBox': {'Width': 0.06211653724312782, 'Height': 0.03377317637205124, 'Left': 0.4035578966140747, 'Top': 0.2707397937774658}, 'Polygon': [{'X': 0.4035578966140747, 'Y': 0.2707397937774658}, {'X': 0.4656744599342346, 'Y': 0.2707397937774658}, {'X': 0.4656744599342346, 'Y': 0.30451294779777527}, {'X': 0.4035578966140747, 'Y': 0.30451294779777527}]}, 'id': '3b6b440c-172d-4fb0-9306-f5676934f1e0'}, {'text': 'USA', 'geometry': {'BoundingBox': {'Width': 0.0430777333676815, 'Height': 0.036002177745103836, 'Left': 0.4719868302345276, 'Top': 0.2684972286224365}, 'Polygon': [{'X': 0.4719868302345276, 'Y': 0.2684972286224365}, {'X': 0.515064537525177, 'Y': 0.2684972286224365}, {'X': 0.515064537525177, 'Y': 0.30449938774108887}, {'X': 0.4719868302345276, 'Y': 0.30449938774108887}]}, 'id': 'dd3d86a3-2b09-4532-8714-21a6634bf7c4'}]}, \n ----- \n Key: [{'text': 'Home', 'geometry': {'BoundingBox': {'Width': 0.06157437339425087, 'Height': 0.03566235676407814, 'Left': 0.02940143272280693, 'Top': 0.2697528600692749}, 'Polygon': [{'X': 0.02940143272280693, 'Y': 0.2697528600692749}, {'X': 0.0909758061170578, 'Y': 0.2697528600692749}, {'X': 0.0909758061170578, 'Y': 0.30541521310806274}, {'X': 0.02940143272280693, 'Y': 0.30541521310806274}]}, 'id': 'c9d0f076-4489-4aa3-8790-fc2f5f011b75'}, {'text': 'Address:', 'geometry': {'BoundingBox': {'Width': 0.09089267998933792, 'Height': 0.034272804856300354, 'Left': 0.09725941717624664, 'Top': 0.26987001299858093}, 'Polygon': [{'X': 0.09725941717624664, 'Y': 0.26987001299858093}, {'X': 0.18815210461616516, 'Y': 0.26987001299858093}, {'X': 0.18815210461616516, 'Y': 0.3041428029537201}, {'X': 0.09725941717624664, 'Y': 0.3041428029537201}]}, 'id': '1263d49f-d745-463c-9cd6-e50cc4f041c4'}] \n\nProcess finished with exit code 0\n\n```\n\n## Test\n\n- Download [code](.) on your local machine.\n- Run \"python3 mappingtest.py\"\n- You should see output using the sample JSON response file included in the source.\n\n## Other Resources\n\n## License Summary\n\nThis sample code is made available under the MIT-0 license. See the LICENSE file.\n"
  },
  {
    "path": "src-python/textract-mapping/__init__.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"Top-level package for amazon-textract-response-parser.\"\"\"\n\n__version__ = '0.1.44'\n"
  },
  {
    "path": "src-python/textract-mapping/loan-app-response.json",
    "content": "{\n    \"AnalyzeDocumentModelVersion\": \"1.0\",\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 1,\n                    \"Left\": 0,\n                    \"Top\": 0,\n                    \"Width\": 1\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 1.38544808958585e-9,\n                        \"Y\": 0\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 5.752434049099975e-7\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 1\n                    },\n                    {\n                        \"X\": 0,\n                        \"Y\": 1\n                    }\n                ]\n            },\n            \"Id\": \"4b4cf076-c242-4b06-b849-e3ef14d34e06\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0287d78a-5509-4aa7-9a2e-e6207d1bb314\",\n                        \"2634f95e-7a9e-4560-80c0-72b8d2ac3eed\",\n                        \"175692f9-ed74-4fe9-9485-5ca55f06eeb1\",\n                        \"38538b04-2774-43a9-b3c4-fe9e8662f4a7\",\n                        \"4914b653-e314-4c4a-a28e-85477065f3a9\",\n                        \"53899483-1c1e-44e3-b0de-4f22cd29cb0f\",\n                        \"8ee7a3b1-38d5-4f06-9b27-603bfe9d80da\",\n                        \"6d695acc-7ff6-4c1f-8b10-85c3dd5b762b\",\n                        \"27eebe43-55b8-4096-b175-ae7ece66f963\",\n                        \"8256d439-c13f-4a86-9ce7-667345c16655\",\n                        \"081536e7-c0d2-4758-95cf-01fdb71ea3af\",\n                        \"b69d01cd-f11c-48e7-b4e9-9ef0f189526f\",\n                        \"2d5a7f40-9dc3-452a-a71d-1a201c289ea8\",\n                        \"915b68d3-8308-4c6a-affa-3649b1223d3c\",\n                        \"d669789d-f22e-409a-bccf-129eca567166\",\n                        \"744706e0-36a5-4dd4-93cd-d044ccf63e84\",\n                        \"c1014628-06eb-4d56-ab0f-a787e165dc95\",\n                        \"95d99002-db37-4ce0-8d83-60dd183ab64b\",\n                        \"011345c9-48c5-41d7-9e96-fe2203017943\",\n                        \"0c1e118e-1d7a-4611-92b8-a338544ef612\",\n                        \"d10615bb-1073-40c8-a9ab-ef4ff2d4fcae\",\n                        \"17a1f8c9-a9d9-4204-9bae-48c45e2a2ba1\",\n                        \"8adfd911-407f-47c4-b16a-7e96de2301f7\",\n                        \"c78da270-a0d4-496f-bf6a-5e04ed3abad0\",\n                        \"1421b81e-48a6-46e4-bd76-a3bfa2505432\",\n                        \"d13fddda-417d-4301-a453-c052de9d1603\",\n                        \"2b70f45f-6be9-446e-82fa-b0bf660d0a42\",\n                        \"44af43d1-c661-4c4a-8ab4-5e95d79a0712\",\n                        \"600a2619-3b2c-454c-b8e6-8193e3713a63\",\n                        \"8c64f2e9-dc7b-4453-a5de-504dd4842b25\",\n                        \"bd9ab86e-2377-45ef-bc93-0975ec0bc698\",\n                        \"3bfa57a6-8fc3-4e52-9ac7-d689ac4df212\",\n                        \"6032a924-5c25-49a6-b862-02cc05f9f973\",\n                        \"8e7e965a-6745-4c7e-b9b4-f0fdddbd6991\",\n                        \"aa1b24fa-aa24-4ea6-a8f3-abea0532d3ab\",\n                        \"13de95b9-935d-4145-b730-d85eb181f08e\",\n                        \"9f03dbb3-05a4-46ef-946d-12099ff01860\",\n                        \"05eef4ff-3127-4a7b-8a46-c27c1c78eabd\",\n                        \"87d97784-5dc3-45d9-8b2e-2c008ed8683b\",\n                        \"44ad7262-84a9-4c6d-8475-a509a2d11fc8\",\n                        \"fe92ad18-314f-4dd6-a81f-672b561c219b\",\n                        \"629e228d-753d-4485-9e0a-3039cf9f61c7\",\n                        \"c6290bae-4ec6-4b0c-a735-489b33df7d89\",\n                        \"b39ed771-4ee8-4867-b2df-dfaec1c268d6\",\n                        \"6000c8d2-021c-4900-9917-710adec32a8a\",\n                        \"be5d9102-ab7d-4c97-bb0f-9346f01a8da8\",\n                        \"6ec0411c-a9a2-4fcc-a902-e917af62ddac\",\n                        \"afb4ec54-3bba-46a9-a023-120aa9bdc8b2\",\n                        \"e77fe036-b2d3-4ac7-b9f9-dca7c59a2fdb\",\n                        \"a1bb511d-9098-427b-9a50-719f7094e491\",\n                        \"1ac4e44a-1736-464a-9df9-93d9af8eb29e\",\n                        \"cc8baf67-52fc-4077-bbdf-1f3e3421d610\",\n                        \"600af123-af2d-44a4-b5cf-4ed8a35da959\",\n                        \"9c2d97a8-183d-42ef-a7db-5fb3f0bc233a\",\n                        \"8434cb97-f196-46c0-a39e-693b85f4e821\",\n                        \"2bf6921e-96f2-4ed7-969e-6b14bb81771c\",\n                        \"cded42eb-f2cd-45b0-9ddd-748c6e20f3ae\",\n                        \"a918983f-5246-4bb7-917a-315fc6f0ebb9\",\n                        \"c01a9751-bbb0-4720-9cf8-009d33ba91ab\",\n                        \"85566cfa-b311-4219-90f6-3bb1d4e9648a\",\n                        \"a8e6c711-b10a-470c-9bf7-82bb0dc3650c\",\n                        \"dcff1c27-de7a-4330-a8d0-538c6f736b1d\",\n                        \"928057cd-8caa-497c-8b6b-e35ea56a4fe6\",\n                        \"d2a4a8b8-03da-4bef-b67c-f3cf1f459545\",\n                        \"33a74ab9-60d6-4bdc-b025-470b09a7b730\",\n                        \"98c5855e-612f-45f1-934d-89570d91ec2f\",\n                        \"8801177a-dbc0-490f-b8c1-0432ee7b7317\",\n                        \"a6bd9a3f-0d72-40ee-9d2e-dc40f3d39400\",\n                        \"31c2697b-093a-42af-82df-873ec6a14201\",\n                        \"4f96f7a6-eb08-4570-917c-e25e489b8f4f\",\n                        \"eea26c93-ecdc-4214-a86d-7fb6bed9ad3a\",\n                        \"f56128d3-2a4b-4281-bf2a-14da20dc78cf\",\n                        \"138b26ba-d7f0-471b-a61b-b7678a6909e6\",\n                        \"4ca8def4-fdba-4625-b908-76e13140b406\",\n                        \"2a9b3b47-e452-4e17-abf5-29322da8cb0b\",\n                        \"4dead338-fc64-4b8d-a07c-0c277a932c02\",\n                        \"46360055-4fbf-4ba9-b2ba-5e0720128b58\",\n                        \"1464f2a0-35b1-4ee4-bab6-d189dac20d18\",\n                        \"58ee7932-e25b-4967-bc09-19aa17be9458\",\n                        \"4b50c013-b0fe-44a4-9441-5eac598441ca\",\n                        \"15b7b5dc-fa9f-49d6-b60b-e37f8181aeb2\",\n                        \"40359f83-5b16-46c8-887b-92b889863a00\",\n                        \"9ecf4c5c-c7e2-428a-8e39-ef80593eedda\",\n                        \"fe7e7975-6772-4e63-8b6f-bff78c4fdf96\",\n                        \"824dac46-5b4a-47b3-b52c-c7f785376698\",\n                        \"7d5c14d5-21f3-4846-9f96-3c422a8ac171\",\n                        \"7c0c9d5d-58d2-44c1-9b72-7cf12ce5dfe7\",\n                        \"312252ff-83b9-45c5-a7e3-1f8afbeb7fea\",\n                        \"2590f9f6-921f-4d3e-bb40-6545ed6d274c\",\n                        \"d97c354d-480a-4a84-ac96-80c0d5943ad0\",\n                        \"8a903663-fe62-4d7c-a892-a9002f8f0c0b\",\n                        \"4e33e0f8-643b-432c-8ba7-cfbbfdb9258a\",\n                        \"f34f5868-0a02-47e1-9a29-2cdc8be88fca\",\n                        \"3302d438-adfd-424b-9e84-52350a9129c2\",\n                        \"0b754a00-d7bc-4c15-84e3-141b450ce483\",\n                        \"92c1ba4d-2683-4dc5-95ea-1c27e104cf0d\",\n                        \"9dd7635e-a202-4000-b8e0-bad723819c77\",\n                        \"0eefa58c-a828-44db-b5f4-a5a64f064bb4\",\n                        \"f597be03-e0f0-449a-9e5c-0a811c4c0974\",\n                        \"3f8d0fe9-802e-40c3-a423-1fe36946601f\",\n                        \"7cfb9836-8218-463a-8932-e3ec24e57b15\",\n                        \"6827ad93-0c94-4a6b-8a0d-8e7ce2154119\",\n                        \"2f3521ec-1371-42de-b673-4bc57b04fdbb\",\n                        \"ead4449d-080e-466c-b2ea-9820ffe484f4\",\n                        \"e9a5dc2c-c679-492c-a6bb-c4e0e573e291\",\n                        \"bb517866-0ba0-4918-96cf-cf6e797b10a3\",\n                        \"fd2e50e3-60e4-4732-9f7f-3612d36fb699\",\n                        \"c2bd0caa-46c7-465c-8ae3-f3a051948442\",\n                        \"f07853d6-92a0-444a-8562-5ae9691c6df2\",\n                        \"41012507-b4df-4927-898c-a3af7bf11b22\",\n                        \"1b80ce42-1e4f-4017-bf01-9fdb1abb0c23\",\n                        \"622b2a2a-9e63-4df3-99f8-57b929b797ac\",\n                        \"738155e3-7b2f-4a55-8eec-40f59524a507\",\n                        \"9eb41dc4-f332-44ca-b297-35b61679abca\",\n                        \"c4ce355e-41ee-45b2-9b3d-b0f1ccbc47ea\",\n                        \"20cce759-fdad-49ab-879b-26d5a0b94e34\",\n                        \"c93e25ae-74b6-4417-9a0b-3f370ea15931\",\n                        \"0ae2b6a2-4d0c-4a7b-8226-9cd1fb5847fe\",\n                        \"5957712a-ab22-44bf-9fad-96029b709b8c\",\n                        \"53317e69-edef-4d52-98c0-d4d81bbd93ac\",\n                        \"ea5325e0-39bf-487f-a655-6f01475b1038\",\n                        \"710ebab4-dc89-4307-91bb-07291fc06697\",\n                        \"024def48-2b62-40a1-8ec9-4d3ad4aba04d\",\n                        \"81335d94-337a-4a55-8cdc-30040541a05e\",\n                        \"4936efd5-e281-4974-b8d0-05e25261bb7f\",\n                        \"835c42aa-b8c5-4545-83da-4e19de166fd2\",\n                        \"e061064e-43cc-4508-81e0-5ccfda4e735a\",\n                        \"9da86f86-8053-48b6-bd6e-a61791476a7b\",\n                        \"9a4abf25-2de0-4a83-b258-8a298c3a4e0c\",\n                        \"a210d489-274f-4313-abae-56aed9b2e041\",\n                        \"e92c4c4b-1f7b-4d89-86d9-72aa3a457ebc\",\n                        \"db50b721-79cb-4a70-b5a4-2518d3e8457e\",\n                        \"02cfec6d-52d3-4ba8-9d8a-b0b463f2cf24\",\n                        \"36c1d967-886e-4cb2-98d0-72869faca46c\",\n                        \"4f95fae4-4c3b-42e3-87c7-aa03d13fa4e6\",\n                        \"3a943360-fb86-4b2a-89be-4df1688135c2\",\n                        \"64804aa7-e52f-4bc3-8dd6-e0e3ba5517df\",\n                        \"3caa32df-1be1-4cef-8e91-b7c4df8a893a\",\n                        \"0c05bfa7-1e4e-4541-a005-1a8102b86952\",\n                        \"d738d5f2-a1e4-48d9-83ec-caa5bd25fc5f\",\n                        \"242ed0aa-9866-492b-8713-7f341d7244af\",\n                        \"bea5fdd7-1bde-4c67-857b-522f6d2763b4\",\n                        \"a7d9d779-3dd6-4e12-beac-7f3a9338f073\",\n                        \"acf2c727-6c79-4883-bc7e-ed0ebca93ed9\",\n                        \"239d111a-6c1d-4124-998e-5f65892cfa8c\",\n                        \"9f272ede-9b59-4f3d-9bf5-1996cb9887be\",\n                        \"12ba3400-5ba1-42a2-a6bb-69b56694c5e7\",\n                        \"b6009666-766a-4e30-a9ed-010a7562897e\",\n                        \"ef197e9d-2140-45f4-886e-8676e17d3427\",\n                        \"297c6a23-2d95-43ee-9925-685559cdd4b1\",\n                        \"f9bfc86f-01c8-4c6c-b5bc-2fdbf182d781\",\n                        \"bb63b299-8ddd-46fc-b91d-c9d738369f22\",\n                        \"adef25e7-ab02-4371-a14d-7b726bfba786\",\n                        \"051a865f-ac4f-4e18-a33b-f461dda786e7\",\n                        \"2f5b864e-3609-456c-a7c5-042ae9394603\",\n                        \"a89f7d91-5ad8-478e-9a0a-1e55fe1b1bd8\",\n                        \"e5160ba2-9b7f-4108-bc2a-57ea6c6ac905\",\n                        \"da386b46-f1ae-4613-b71b-4fba659a103c\",\n                        \"37b01626-3392-4534-b999-3fe96a023995\",\n                        \"e3155275-f28c-4ebe-8c8d-c2e8f8bf41c5\",\n                        \"e37ba0d3-6e45-48d7-92ba-89dfbf3cda4c\",\n                        \"3d3b1de1-bd1a-47e7-84c3-482229d4d3d8\",\n                        \"89b35c0a-10db-45bb-b8de-77686db68d74\",\n                        \"846e2902-f827-4baf-a6e9-3a687afa7636\",\n                        \"9ab91cbb-b07b-4810-ae3f-1feca5aba1b3\",\n                        \"cdf46f7f-530d-476b-a7ae-db5694338334\",\n                        \"3fbc9bcf-d2ed-41e7-96f9-1a1b966476a8\",\n                        \"61e2a8dc-9c8f-4f08-8bee-d6545960860f\",\n                        \"c47868d8-6ffe-4bfa-91c2-12c25f8401ef\",\n                        \"9594feb9-8520-4736-9f89-df185b6bb610\",\n                        \"2a05e334-a15e-4c5c-8c19-956d4d923aae\",\n                        \"0d9a48d7-0682-4095-ae6b-20596742bee5\",\n                        \"64f8a498-8395-48eb-8d49-8e798f0affb6\",\n                        \"a4e67bc0-1cf0-4cde-bb52-27a97b71abd4\",\n                        \"b39e55f9-de9f-41a0-97a3-2d98e270b545\",\n                        \"96690daa-5282-4d41-bc9a-7f33ec0a3b96\",\n                        \"d278fdde-5703-473f-b8f8-dbdd0a65ace6\",\n                        \"ded4add8-0a01-4b08-8940-a1475fbe3df3\",\n                        \"4cd5698b-a246-4cd4-a799-174abe30e44d\",\n                        \"8af8912d-ace4-4a80-9492-5ab978a9973a\",\n                        \"91fc3074-079e-4964-b5a7-d32a648ded70\",\n                        \"b6d7aa7b-783f-4b96-9809-bced990920be\",\n                        \"7e83d9f2-1b7d-460d-b939-4f0d71717463\",\n                        \"9cf9387f-493b-4bcc-aba0-c2bcef3ebdfa\",\n                        \"c772f137-d8ea-47a3-a965-64993de930a7\",\n                        \"1a0c5465-bc40-48c6-ab06-52c99891a464\",\n                        \"81c97e92-7c21-459f-9e30-b5f030d5d9b5\",\n                        \"9548bac5-6a94-4682-9294-fe882a3deee4\",\n                        \"c4c71719-fa0a-4992-b1e5-783b17ccf04b\",\n                        \"38673916-f514-4fca-bfab-a8ef0bffe842\",\n                        \"18a3dd2b-a224-4884-a14b-c03fd3bcdf45\",\n                        \"f5d1fef5-bfa6-40ae-83a3-9d2ad14b37f5\",\n                        \"4016e065-445d-41a5-81ee-cfe0d06a6b6d\",\n                        \"65a7c753-1d13-4db3-a221-9c6cb64d8c8c\",\n                        \"4afb7d63-78d2-48b5-b6c6-b64a2ca15c6f\",\n                        \"76eecc42-e29a-4e08-90ea-01c7e0132d52\",\n                        \"4d31ab4c-05cc-402d-a82b-7c2dd69bec7d\",\n                        \"3411ed99-99ae-4611-b24d-1d4577c35178\",\n                        \"882646bd-d53a-4763-a4d0-ef0b5ca58798\",\n                        \"ad21dc5b-ff62-401f-9fdd-a7e87e4d1a24\",\n                        \"1c211449-13da-4a45-b4e9-64a696d43514\",\n                        \"a3eab5c3-f033-42b8-a303-be3b2c234d0b\",\n                        \"8170dd35-94f2-4b18-aece-42ce73c52531\",\n                        \"b502646a-f615-4df4-ba96-5d89a802536f\",\n                        \"1d0391f7-3e17-4119-8b36-c0108f881e12\",\n                        \"7b509496-dc43-466a-84ea-f225e14e60e1\",\n                        \"78a6b99f-1864-4fbc-a69b-7dd9eb0ea374\",\n                        \"d1454c9e-e832-4f2c-b4a3-f1bf06fcce34\",\n                        \"f6bb84c5-5f45-4259-929e-e6429bf0b45b\",\n                        \"e1d5f6a8-bb15-40d8-97d0-ca2812ed2fad\",\n                        \"7cb95a92-3dcd-43ec-846c-7fa96fc3fcd2\",\n                        \"35f6cd23-1d57-44fa-b121-7f1f02738cb7\",\n                        \"654982f9-58f2-4e14-809b-4c8c65aa23bf\",\n                        \"bc70b686-6255-441e-8cbd-f2adc631108c\",\n                        \"37c4e2c9-853d-46ff-a0ed-82a6e53adc16\",\n                        \"92f8c8e3-6de9-4351-9e80-b664524332f4\",\n                        \"ec80c724-b7a4-4380-a663-3fd584422da1\",\n                        \"66fc90e8-7d40-4bbf-b74a-bcfd4b6af85f\",\n                        \"f548dc93-6b5f-457d-afb0-783f83796440\",\n                        \"daaf9ed9-044e-4156-81ab-30a3e11be477\",\n                        \"2b4009fb-b73a-49f6-af1e-3f4b5238a686\",\n                        \"f7f3bcf1-8bdc-430f-86b7-37851c07b826\",\n                        \"931f82d9-2f89-4a02-8786-d6c9eafee333\",\n                        \"f63ca252-6682-408d-824c-8cadf8d7fcc8\",\n                        \"cf43a56e-7c35-4978-9a1a-ced12bb35807\",\n                        \"c75a0c6d-3676-47df-a436-840664e31214\",\n                        \"238cbdc0-3720-4b45-aa3b-a265bb1a3861\",\n                        \"43b40ae3-327a-4146-b82c-516d8357a102\",\n                        \"e56f4c01-1d31-494c-9c98-8e0189160e93\",\n                        \"a1ff908f-96ee-4e84-ae22-c81c323672a4\",\n                        \"d29f9bfc-acc3-4925-a0ce-d76b56c457ef\",\n                        \"8898ca56-bcbc-456b-81a3-a44febee7c96\",\n                        \"becb2d24-a512-45c1-a896-273b443ff356\",\n                        \"613c8668-b357-47e7-ba7c-6194d3309d55\",\n                        \"83db29d2-030c-44f2-9228-b23b7c10fff7\",\n                        \"ea322641-3f3c-4499-af30-e4710ed604a4\",\n                        \"ed14e107-c85a-47d5-a78e-fbd3b73158c1\",\n                        \"7275ee2d-ae1b-4a85-a45d-d7427fd7c53e\",\n                        \"7f198b0c-d4a1-4b3d-ba0e-5087925b962e\",\n                        \"a37a59a7-7863-48bf-8fc0-192ac3bc42af\",\n                        \"9538b296-e1ca-4aa5-9784-c60c22ee75a9\",\n                        \"5d15751a-04cd-499a-b346-ef67061c188e\",\n                        \"274d2247-e4d6-4e25-a6b1-965bab2f1d8a\",\n                        \"9f383bf7-f12a-4306-911a-5e09e6e39556\",\n                        \"ddf374a8-58f4-49a6-8e75-2c51da944c73\",\n                        \"e517120d-ef34-4bd4-90af-5b65bf288c8b\",\n                        \"ca4cbd20-6fb5-4eaa-913f-08a1768a9109\",\n                        \"3b243039-6f07-44fc-bed3-490cf094770a\",\n                        \"84b211c7-8dea-4020-8e40-5a0d8100cd04\",\n                        \"7d0ce921-4ac3-4a64-98ba-44945a7876b4\",\n                        \"84a0a164-7a07-42a7-9130-f5e123960d8e\",\n                        \"7cb61c8c-2007-4f08-830f-0e4c1cb12288\",\n                        \"a7bb19f3-274e-443c-98eb-262c214c2442\",\n                        \"1d6941c1-e879-41c7-9b6b-b189eef95114\",\n                        \"8f64a1ab-71b0-4c31-974a-e49f48bcd6d0\",\n                        \"b4fe2105-0473-4860-9a7e-1848561a1326\",\n                        \"9d1d2f53-6105-48c0-b753-9008771d2955\",\n                        \"e472959e-31da-446c-8b20-5943dcf0b261\",\n                        \"f6fdde89-a3b7-4aa7-acad-fe5d1f6d892d\",\n                        \"0c218389-d5f2-4bc6-988d-612b7af3e01c\",\n                        \"809815ba-f28f-46dc-8523-a1f4f27527fa\",\n                        \"16e6b657-04b4-4605-a283-1830c92628ed\",\n                        \"b8af1d3b-5b3e-4897-957b-060b7dd28589\",\n                        \"717cd9a9-0b34-4d6a-9870-63a5e8769b09\",\n                        \"091e7c79-5c00-4fb9-8d44-bb0ca0df8e94\",\n                        \"d0d1fb6a-bba0-40b4-8b2a-49718abfa6d7\",\n                        \"0d0bce6f-32ab-4bde-9b91-bd0b99f03257\",\n                        \"e9b052fe-5777-418a-853d-da3854b1e3ab\",\n                        \"6df0a5fd-d89b-41f1-9dbf-3a7dac74af37\",\n                        \"1a5dba8d-97ee-4ec8-ae8e-f2254dd09084\",\n                        \"c433f0b9-016c-417b-a347-fa538d79b1dc\",\n                        \"74b9a81f-b142-4cc0-a62b-158afd6ec0d3\",\n                        \"a7def805-619f-47dd-97c9-e5d5af92aff0\",\n                        \"66143521-ffb1-4d03-ae0f-d52a47e38f2b\",\n                        \"57d3a5b2-d2d8-4696-a471-f1d628d47706\",\n                        \"ce0e3dcc-ffb3-4dfb-9d04-1db61f600199\",\n                        \"30c35fc8-f879-4edb-b8b1-c2bbed6c6212\",\n                        \"ab114484-a3c5-4e4e-921e-6fb1e25caabb\",\n                        \"19e360a0-ba37-4da8-9a3d-bee8118c2e76\",\n                        \"2b9ef5ab-8db0-48dc-bbc3-6507864ff7b9\",\n                        \"9efc52f7-d23c-4928-9cb3-1c6c53a796a4\",\n                        \"b3b30f22-b274-414e-a0b3-d57410510444\",\n                        \"a2b2961b-a1a1-4a34-ab4f-eee311b5de6c\",\n                        \"37370faf-fd2e-4271-8435-b60d1c475a72\",\n                        \"b950e96b-9cfc-4f3e-a395-aae2e66c09ea\",\n                        \"8d370892-0a47-466d-a6bb-dfe98b8677f0\",\n                        \"f9fd7efd-964e-4ea3-b2c5-db85fd86687a\",\n                        \"d1c48659-cf34-43dc-8eed-a06e3c947d10\",\n                        \"09def69b-508b-49d0-b6d9-2416d0e58fd0\",\n                        \"f9b39419-d085-4efb-8bea-2026ab694823\",\n                        \"14a0cf4f-27d3-49c6-b51c-e7c9d058b5ef\",\n                        \"da6b4455-66c7-4fab-91ba-79cea174b96e\",\n                        \"dc0758f3-87b1-4af2-8b26-f8a5d9a85e48\",\n                        \"d519cc99-9626-474a-9e82-b8643d3bcd23\",\n                        \"2d4a66b3-aa3d-4534-aa6c-8eedf5fc1d4e\",\n                        \"16137eb0-2a48-4192-abab-56e29ac48615\",\n                        \"b1d3945e-96fc-40d1-bd8a-9e3eabd48247\",\n                        \"63bcf31b-eee7-4193-bd40-ef595d45250f\",\n                        \"b25b78eb-83f0-4a52-bb17-acc9cd3f4100\",\n                        \"f6e9add8-f485-47ce-a64d-8965b1c2d9b5\",\n                        \"b44e94bd-59ca-4fae-ae52-0aaa6f858a0b\",\n                        \"11afd9e2-ea29-4183-8269-90ed8daca5a6\",\n                        \"45b41c89-1682-42d1-a2a5-b1519e7b1f10\",\n                        \"e400ea9e-f271-4bc8-b9d8-ccc03dd2aacc\",\n                        \"dfc04871-e8a4-4c25-a629-0b0829c3ed7b\",\n                        \"b83c4b5e-5270-4588-b484-5372b6088438\",\n                        \"9a5df94b-8b61-43ee-b808-b029f5fc3b73\",\n                        \"de5b6ff2-f9c5-4321-9371-a67926b6a6aa\",\n                        \"3c1a2f16-f3d4-4655-843c-146edae0383a\",\n                        \"d199e722-26a8-464d-a13b-1d08f5e1e9ba\",\n                        \"b67556ca-b202-4946-9c1e-7b8634a78e6f\",\n                        \"83d7aba2-c94e-4b7c-85dd-4a0fb4ccaeaf\",\n                        \"48598ecb-ead7-4dbc-bfd5-325807e79118\",\n                        \"4f3cbd60-dd5f-4672-a0f8-f6ac23c71887\",\n                        \"33cc5261-477b-41b2-a846-57c9ff2608d1\",\n                        \"5aca94b9-6adf-4098-83c9-57f1be8ebbea\",\n                        \"6e4f1a35-68a1-42dc-a0a8-562f54933bf3\",\n                        \"ef2498c2-94a5-4abb-bedb-b4de86700ef3\",\n                        \"11e98ca2-e3c9-43bb-81e8-f42b20cef89f\",\n                        \"8e1e979e-c619-4b82-be38-fda5b9dfd285\",\n                        \"8203f80d-56ad-4488-aa29-bafb61a85807\",\n                        \"cadc20be-b3d5-4193-8138-782ff99f9f5c\",\n                        \"8a0c3a2a-3d3f-4697-9b15-98adaeab51d6\",\n                        \"970b33d9-06f4-4395-9c20-4734da5bd0ee\",\n                        \"63e33856-4de9-4175-8a7f-b64e99cba8e6\",\n                        \"d3b91ffe-62fc-4393-b280-cbc37e05416f\",\n                        \"765c1541-b580-4ea2-89ac-ff85add1dca7\",\n                        \"f4d1e8b2-f034-4fc0-8b9e-0d3a314d2f2a\",\n                        \"189f830c-7317-4172-b854-588c89867bfd\",\n                        \"15740f3b-20f9-4cd8-b595-cf45f0eb642b\",\n                        \"33f958d2-4148-44f9-bb15-2ccc551e978d\",\n                        \"2d11b74f-94f2-4452-a69f-d037a945876e\",\n                        \"e7bf90c1-3c05-459f-922f-991749ad246e\",\n                        \"73841729-f963-445f-a325-c578284d70ee\",\n                        \"7d10d149-aa59-48d0-89de-483397fbca0d\",\n                        \"33a485c0-0555-443f-9c4f-ebfcab65a1ad\",\n                        \"4e1d7852-a6d2-4684-8399-43d46aac5ab6\",\n                        \"30d2ada4-8e4f-4cc1-a48a-96185ddf5c7d\",\n                        \"e75c3741-527b-4a83-bc9b-82d51475ac7f\",\n                        \"5af13a2f-782f-44be-803f-6a0c050f3c27\",\n                        \"c244a935-4bff-4e0e-a18b-d77269d97fa7\",\n                        \"7afd758b-e4c6-48dc-a6e8-134611910172\",\n                        \"f31a0e04-9d9e-403c-a257-43c5715e29f0\",\n                        \"e68843d1-8d20-4de8-9d68-9ae1ee473938\",\n                        \"d0bc12f1-fee8-4039-a9bb-0d9a0e78cc4c\",\n                        \"7a4416fc-b8c8-408e-9add-7b1dc5d2cc96\",\n                        \"f0240011-6166-4d7c-a807-230b36f1595f\",\n                        \"929b9fad-c3e1-43c1-8d44-88bcf956d905\",\n                        \"94afb31e-1907-4c31-bae2-90c16bfe91d7\",\n                        \"d866c72e-a31d-45ad-b150-c857d90c2b09\",\n                        \"52a8ae0f-f09a-426c-9e53-248a2aaf9b52\",\n                        \"e1b3af17-3745-49cc-8254-47cfb3bcb48c\",\n                        \"d883715c-00a0-4fb8-a52a-9ab56c2c1b61\",\n                        \"3b3a2f8e-5516-4935-be29-1706cd5f3dff\",\n                        \"b27adfda-dbe8-4e12-96e3-49b368c702ec\",\n                        \"78530f57-cb4e-4156-9071-b267ca4b0b98\",\n                        \"def75fb6-2b5a-4749-87b9-7fc55e993701\",\n                        \"15002ae4-99c7-40b4-9402-e2f8254b1fb7\",\n                        \"e52f656a-1c60-4be2-8b08-209d9edf9b18\",\n                        \"2149e64c-0d19-439a-b3b9-0f5d61ac8b0b\",\n                        \"68796509-b7e8-48c1-aa76-68a8bd22703c\",\n                        \"404291b8-1b7e-46af-8212-c0bc52b40784\",\n                        \"ed26262a-d0aa-4883-91af-a08cce1120f0\",\n                        \"c58c4fd4-992a-4878-8e07-420cbe17ab31\",\n                        \"e8b78529-ff16-486b-9f9b-02ea564dfc39\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94206237792969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02672695554792881,\n                    \"Left\": 0.21118178963661194,\n                    \"Top\": 0.012294681742787361,\n                    \"Width\": 0.5578915476799011\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21118178963661194,\n                        \"Y\": 0.012294681742787361\n                    },\n                    {\n                        \"X\": 0.7690613269805908,\n                        \"Y\": 0.012551249004900455\n                    },\n                    {\n                        \"X\": 0.7690733075141907,\n                        \"Y\": 0.03902163729071617\n                    },\n                    {\n                        \"X\": 0.2111850082874298,\n                        \"Y\": 0.03876115381717682\n                    }\n                ]\n            },\n            \"Id\": \"0287d78a-5509-4aa7-9a2e-e6207d1bb314\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"353ab6c6-3d7d-4a9f-8e52-481eac4e26ff\",\n                        \"f1ecb01d-c9d5-465c-b79b-c51559aef5a3\",\n                        \"674afd49-137c-4fa2-8249-b6d6f5e9a104\",\n                        \"edbadbb8-6c5f-40a3-ae6d-9d1e58ab2b3a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Uniform Residential Loan Application\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.53263854980469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01250508427619934,\n                    \"Left\": 0.022398926317691803,\n                    \"Top\": 0.046078622341156006,\n                    \"Width\": 0.9400045275688171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022398926317691803,\n                        \"Y\": 0.046078622341156006\n                    },\n                    {\n                        \"X\": 0.9623966217041016,\n                        \"Y\": 0.046519361436367035\n                    },\n                    {\n                        \"X\": 0.9624034762382507,\n                        \"Y\": 0.05858370661735535\n                    },\n                    {\n                        \"X\": 0.022399049252271652,\n                        \"Y\": 0.05813996493816376\n                    }\n                ]\n            },\n            \"Id\": \"2634f95e-7a9e-4560-80c0-72b8d2ac3eed\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9febe886-84be-40bc-abec-d14ce3037ff5\",\n                        \"730fae54-5ef5-44f3-ac33-cea717455ece\",\n                        \"9cc46400-753f-46a6-88f8-36024c726566\",\n                        \"dcffa18d-3fdc-4521-adda-c1fed473cede\",\n                        \"ed4d2ce5-9f2a-4401-b24c-5dee0581e1d8\",\n                        \"3a3a80d9-2a32-4f27-847b-551590533fa5\",\n                        \"5e82ebf1-f672-46d7-beee-8300b235f4bd\",\n                        \"f060996b-dc53-4fbf-b0dc-c3f2eccbac77\",\n                        \"dc011376-53ca-4de1-9521-39a891c0fc2f\",\n                        \"a5a782a5-6b98-4101-9980-1fe6373852cc\",\n                        \"5fad3cd0-4edb-4cda-b01d-83855b074d99\",\n                        \"76041b04-aaac-4747-8a4d-25605279fc5a\",\n                        \"d2fd3c0f-bcbc-43c0-882f-1ddd4491d145\",\n                        \"83a203f7-a29b-4c35-936b-b92cb4d55c87\",\n                        \"1ec1499c-d89f-432a-906f-c505e4640f81\",\n                        \"f134279a-7e2a-44a6-8cbd-6975980b8d13\",\n                        \"8d7a8574-0ed8-43de-ab5e-bc0337c099f5\",\n                        \"7bb2d90e-65fb-47b3-87f4-ebefbbbb012e\",\n                        \"57c42ffe-1b8f-461b-b801-1b06f7f710cb\",\n                        \"f390eea3-3bbc-4f8c-b69c-0f259b0380d0\",\n                        \"e36bd776-e389-415e-b990-cde6038dce1e\",\n                        \"b37b2826-74ae-4421-aad5-1e07f7b404a4\",\n                        \"fa2b4fec-8911-4076-8247-d1ddfb8cdcb7\",\n                        \"4c7f7250-6644-4666-8de2-f46814a25976\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"This application is designed to be completed by the applicant(s) with the Lender's assistance. Applicants should complete this form as \\\"Borrower\\\" or \\\"Co-Borrower\\\", as\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.68630981445312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011964673176407814,\n                    \"Left\": 0.022480664774775505,\n                    \"Top\": 0.05989115312695503,\n                    \"Width\": 0.5715773701667786\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022480664774775505,\n                        \"Y\": 0.05989115312695503\n                    },\n                    {\n                        \"X\": 0.5940539836883545,\n                        \"Y\": 0.06016124039888382\n                    },\n                    {\n                        \"X\": 0.5940580368041992,\n                        \"Y\": 0.071855828166008\n                    },\n                    {\n                        \"X\": 0.022480783984065056,\n                        \"Y\": 0.07158397138118744\n                    }\n                ]\n            },\n            \"Id\": \"175692f9-ed74-4fe9-9485-5ca55f06eeb1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"23c322ba-28d0-4fca-a68a-7dfde9c49b89\",\n                        \"f18b8204-be84-47b8-9815-8f9f0c21203b\",\n                        \"9d26b9f7-2104-49ae-8e1f-6c10a394cfc7\",\n                        \"eec3bc95-f0e9-4a69-b69e-e7c6a7c4035e\",\n                        \"c118863c-61cd-4b99-aba1-6a7bc45676dd\",\n                        \"f6b98f8a-4be6-4560-b17d-f407c27e09ef\",\n                        \"48c31be1-2d90-4271-a549-60ec339b287b\",\n                        \"2945e8ab-e356-4d18-b3af-301850bbfd05\",\n                        \"3210e9d5-4a7b-4b14-b4be-e7bb50c2d933\",\n                        \"d653c0e0-0013-4f34-b5eb-d224d58f60f0\",\n                        \"856fa64c-c3ee-479c-97aa-60fc5d6f4005\",\n                        \"d05aae44-76f0-4c92-b370-9eb7884116d7\",\n                        \"00c5751d-28e0-4160-bdaf-4420ea524726\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"applicable. Co-Borrower information must also be provided (and the appropriate box checked) when\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.12686920166016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012107091955840588,\n                    \"Left\": 0.6173967719078064,\n                    \"Top\": 0.05960001051425934,\n                    \"Width\": 0.34525787830352783\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6173967719078064,\n                        \"Y\": 0.05960001051425934\n                    },\n                    {\n                        \"X\": 0.9626478552818298,\n                        \"Y\": 0.0597630999982357\n                    },\n                    {\n                        \"X\": 0.9626546502113342,\n                        \"Y\": 0.0717071071267128\n                    },\n                    {\n                        \"X\": 0.6174010634422302,\n                        \"Y\": 0.07154291868209839\n                    }\n                ]\n            },\n            \"Id\": \"38538b04-2774-43a9-b3c4-fe9e8662f4a7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"57636e55-a563-4bf5-bc66-51f80b1111e9\",\n                        \"9b2fa191-def3-416b-b35b-b740fc237b65\",\n                        \"0bb2cf3f-ca1d-43f8-870d-dd446e7c1c4e\",\n                        \"6a380e10-b2dc-403c-83d9-a99cabcfb2a9\",\n                        \"9eee2b89-f5c2-4cfd-a0b2-1b82b6e00b81\",\n                        \"aecba7d6-798e-4e92-8fa4-9998c7a95385\",\n                        \"62687e50-a844-48ac-abf4-b975c57dcfaa\",\n                        \"790427a8-a884-4820-b06d-a7955a2144c1\",\n                        \"b187fc9d-73cc-486e-b713-fb6f11a794c6\",\n                        \"5cc3de36-6e91-4ad7-9174-3de14f979824\",\n                        \"ad4b0206-38ef-42de-9498-b80320dc4e25\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"the income or assets of a person other than the \\\"Borrower\\\"\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72550201416016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012302490882575512,\n                    \"Left\": 0.022686073556542397,\n                    \"Top\": 0.07430668920278549,\n                    \"Width\": 0.45010772347450256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022686073556542397,\n                        \"Y\": 0.07430668920278549\n                    },\n                    {\n                        \"X\": 0.4727904498577118,\n                        \"Y\": 0.07452109456062317\n                    },\n                    {\n                        \"X\": 0.4727937877178192,\n                        \"Y\": 0.08660917729139328\n                    },\n                    {\n                        \"X\": 0.022686198353767395,\n                        \"Y\": 0.0863933265209198\n                    }\n                ]\n            },\n            \"Id\": \"4914b653-e314-4c4a-a28e-85477065f3a9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dd3863f1-d8f0-42a3-8d9d-47ce74ad1519\",\n                        \"76a99cc0-ad06-4cd7-bdd6-1e33c88e4971\",\n                        \"8a0916ad-78d4-40e9-8a44-a9b34cce4945\",\n                        \"3814af86-88c9-428d-9cc0-ee852e81524f\",\n                        \"2a47ce87-4ed2-4019-ad0c-ce098607c4d0\",\n                        \"67ef0cec-66be-4f14-996c-1dd87d11ed69\",\n                        \"e635070f-1c08-452d-a693-dabc65ea1880\",\n                        \"e11324f1-6d02-48b6-9819-a36c25257a03\",\n                        \"a459ce74-e1c2-4f2d-a14c-35aabe90ec98\",\n                        \"bc0ef9ba-115d-482c-a05e-6e4e92d10f62\",\n                        \"3d7ec400-1d72-4159-84e0-57aaf2eec661\",\n                        \"86b7ce9e-257d-4bf2-be9e-ef5b9eb6d3c4\",\n                        \"24bf3d2e-20ff-4d13-bcd5-f693e1ae9871\",\n                        \"f4263397-29d4-4a23-af0a-a710bb72a41d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"(including the Borrower's spouse) will be used as a basis for loan qualification or\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55145263671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008945009671151638,\n                    \"Left\": 0.49378496408462524,\n                    \"Top\": 0.07496454566717148,\n                    \"Width\": 0.019041230902075768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49378496408462524,\n                        \"Y\": 0.07496454566717148\n                    },\n                    {\n                        \"X\": 0.5128235220909119,\n                        \"Y\": 0.07497361302375793\n                    },\n                    {\n                        \"X\": 0.5128262042999268,\n                        \"Y\": 0.08390955626964569\n                    },\n                    {\n                        \"X\": 0.4937875270843506,\n                        \"Y\": 0.08390043675899506\n                    }\n                ]\n            },\n            \"Id\": \"53899483-1c1e-44e3-b0de-4f22cd29cb0f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9b4b5495-4512-45c3-a9ae-445c29a065a7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"the\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92658996582031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011932778172194958,\n                    \"Left\": 0.5150542855262756,\n                    \"Top\": 0.07454294711351395,\n                    \"Width\": 0.4503018856048584\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5150542855262756,\n                        \"Y\": 0.07454294711351395\n                    },\n                    {\n                        \"X\": 0.965349555015564,\n                        \"Y\": 0.07475744187831879\n                    },\n                    {\n                        \"X\": 0.965356171131134,\n                        \"Y\": 0.08647572249174118\n                    },\n                    {\n                        \"X\": 0.5150578022003174,\n                        \"Y\": 0.08625982701778412\n                    }\n                ]\n            },\n            \"Id\": \"8ee7a3b1-38d5-4f06-9b27-603bfe9d80da\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d69068ee-befc-4b32-ac6c-5c29682aa369\",\n                        \"2e6c4bfa-19e9-48c3-aae6-c03fe0b8e90d\",\n                        \"da42aa69-9854-4461-908f-d952e43aa08b\",\n                        \"904a5788-769f-4cd3-818e-ef3bfd471526\",\n                        \"e61fa575-aeab-4ac2-8122-e88a6b17663a\",\n                        \"c99ebb73-a09b-460a-96ba-023456b9c9dd\",\n                        \"76caa53a-b3d1-4871-9384-ba6f7aec41a6\",\n                        \"23645fe6-148c-4e95-97b5-b85207929ffc\",\n                        \"89c4435f-a49e-4310-a3db-de7e50f47a80\",\n                        \"996096be-69e8-4d43-92d5-b6c6ecaee103\",\n                        \"a458d3a2-41e6-419b-b67e-78bcd478dbea\",\n                        \"1d559ac4-32f7-4177-a098-31e4b59b8281\",\n                        \"38474591-1ef5-4fbc-bfb5-de17351458c8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"income or assets of the Borrower's spouse or other person who has community\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.10376739501953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012847676873207092,\n                    \"Left\": 0.022473109886050224,\n                    \"Top\": 0.08764476329088211,\n                    \"Width\": 0.9399096965789795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022473109886050224,\n                        \"Y\": 0.08764476329088211\n                    },\n                    {\n                        \"X\": 0.9623757600784302,\n                        \"Y\": 0.08809580653905869\n                    },\n                    {\n                        \"X\": 0.9623827934265137,\n                        \"Y\": 0.1004924401640892\n                    },\n                    {\n                        \"X\": 0.022473236545920372,\n                        \"Y\": 0.1000383049249649\n                    }\n                ]\n            },\n            \"Id\": \"6d695acc-7ff6-4c1f-8b10-85c3dd5b762b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"595d3236-67eb-4461-8fc9-6e5c0b8dd6cf\",\n                        \"7bb3e59b-ce40-4e7d-aa02-8e966fbc997a\",\n                        \"1d356763-8a8d-4678-b87d-482d3e94f384\",\n                        \"6c5d7506-1ff6-439e-8241-a0eb7006ee27\",\n                        \"545f8ada-48e7-42c7-97d2-af6e444966ae\",\n                        \"b220cdb1-e089-439f-a5b2-50b72edb4166\",\n                        \"c1d85e1d-98f0-4e7c-a6b7-a98a9af6267b\",\n                        \"3340350f-dbd0-4160-b07b-306f7f223da1\",\n                        \"9bdf8200-ccda-490d-9909-a114706df9d7\",\n                        \"50478b6f-6747-488a-9a57-345039e9e220\",\n                        \"74497373-eb16-430f-948c-2a080a6982f1\",\n                        \"87188294-3716-423f-9cf2-fe1451aaf8a9\",\n                        \"f48aece3-8175-47b2-b150-dc75025a6b51\",\n                        \"5c83afa3-757e-4d25-8840-36298a44efaf\",\n                        \"f3570d10-4b79-4dbc-913a-b99b9d037d1d\",\n                        \"7046a30e-339c-41d3-b074-69de406693e2\",\n                        \"6ad6b606-6343-416e-98ab-f43c37406cbd\",\n                        \"a0580f21-7f37-401c-99b6-dac1d28aeb1e\",\n                        \"02769a34-9a5d-4d8e-9111-52f62bf2f8ee\",\n                        \"dc74ef64-4ee0-417a-bf2e-5f520b37ec28\",\n                        \"4a7b59a7-54b9-410f-8368-608ff364a362\",\n                        \"c0c98b5c-b3ce-4bd5-8a85-db2df155e954\",\n                        \"61004ed4-212b-480c-aba1-b806aa25972a\",\n                        \"ecc9444e-4684-4348-8f43-5b8aaa420a54\",\n                        \"262ef231-287d-4159-8e89-ea272eae3112\",\n                        \"39e1ef6a-25fc-41f5-a687-4c5b1af206df\",\n                        \"c9646168-a262-462c-b8bb-ee0a60504e76\",\n                        \"d9cfda16-417e-411a-8fc0-cfc394bd6f99\",\n                        \"bee0cb1e-3e6b-40c1-838d-64b06759c2cb\",\n                        \"c1331c83-aadd-4ab8-a4dd-034087ed6851\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"property rights pursuant to state law will not be used as a basis for loan qualification, but his or her liabilities must be considered because the spouse or other person\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.484619140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012603497132658958,\n                    \"Left\": 0.021734733134508133,\n                    \"Top\": 0.10119114071130753,\n                    \"Width\": 0.9406906366348267\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021734733134508133,\n                        \"Y\": 0.10119114071130753\n                    },\n                    {\n                        \"X\": 0.9624184966087341,\n                        \"Y\": 0.10164593905210495\n                    },\n                    {\n                        \"X\": 0.9624254107475281,\n                        \"Y\": 0.11379463970661163\n                    },\n                    {\n                        \"X\": 0.021734852343797684,\n                        \"Y\": 0.11333680897951126\n                    }\n                ]\n            },\n            \"Id\": \"27eebe43-55b8-4096-b175-ae7ece66f963\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"20320eec-1275-405f-9e13-c1f48d02ca47\",\n                        \"41fbaf19-89b6-4fcc-bf6c-cae033159c37\",\n                        \"801b0bdd-f645-4902-bddb-dea8d8ea1f52\",\n                        \"32efbe97-3c04-44f6-8be1-f62ea371f4ae\",\n                        \"e632e6a2-f139-407e-8423-3138b25eb247\",\n                        \"f9a340cd-4869-4d20-8f8a-bfc1bec37bf5\",\n                        \"8f97cc87-ad72-4d86-bcd3-8cf5e165448f\",\n                        \"c31b6793-f4d0-4ffc-963b-8576987d4f8f\",\n                        \"636bd983-e9de-4338-a0a6-fcdf71dc5f8c\",\n                        \"7200d04e-8db7-4a28-b85e-f6c7d93b30a2\",\n                        \"78a0b699-d5d6-4a21-b71a-9706a2f62cb4\",\n                        \"b94ba235-64f8-4954-8d29-1106e315b632\",\n                        \"27a9fb24-4d18-4618-adb7-0c7e6fbc4abc\",\n                        \"bf60f09d-db68-4bc3-9dd2-ee3de9dd8f30\",\n                        \"d4fa9307-e4b0-4962-a87b-4bd1dee90472\",\n                        \"a5c67e85-1b96-445a-b684-858115284b0a\",\n                        \"62823821-a5aa-4112-8776-13e4d4ee9332\",\n                        \"495e854f-9067-470f-8b26-79e918834c20\",\n                        \"09fe9fbd-36c8-4a4b-a985-0629bd6e7882\",\n                        \"463103be-f155-4aaa-84d6-706b061f3ef0\",\n                        \"4b80a4a9-190c-4202-ae17-7eef1a78535d\",\n                        \"bfd20911-7e5f-4d8a-95c7-458a7ea76066\",\n                        \"37c44510-3387-486d-a54d-db85533338cb\",\n                        \"a861b4a4-a7fc-4547-8c46-71f14c0b5fdd\",\n                        \"5473c8e2-5855-400d-ac70-f34d0bf8a282\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"has community property rights pursuant to applicable law and Borrower resides in a community property state, the security property is located in a community property\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.42237854003906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012809351086616516,\n                    \"Left\": 0.02225598134100437,\n                    \"Top\": 0.11563025414943695,\n                    \"Width\": 0.7227069139480591\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02225598134100437,\n                        \"Y\": 0.11563025414943695\n                    },\n                    {\n                        \"X\": 0.744957447052002,\n                        \"Y\": 0.11598242074251175\n                    },\n                    {\n                        \"X\": 0.7449628710746765,\n                        \"Y\": 0.12843960523605347\n                    },\n                    {\n                        \"X\": 0.02225610800087452,\n                        \"Y\": 0.12808504700660706\n                    }\n                ]\n            },\n            \"Id\": \"8256d439-c13f-4a86-9ce7-667345c16655\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fa83acec-738d-4fc0-a256-c78526b2d652\",\n                        \"6a9d1b06-f5d2-4428-8063-018796f1c369\",\n                        \"a5a4ae8a-0a71-4691-a8d9-04456e03b22c\",\n                        \"257bc9a8-2dc3-422a-9b2e-41f79afd720c\",\n                        \"e9b9171f-909a-4853-99c4-2d4817377f96\",\n                        \"a2295951-bae0-465e-91bd-c725277bbbd6\",\n                        \"aa34a34d-7228-4f8b-81b9-8213b3486132\",\n                        \"0b1ee954-714d-48e3-aa7e-d353a99a536e\",\n                        \"73c5f590-7959-4db1-a855-f944901e7405\",\n                        \"08d4e2af-a462-4d3c-a1f1-36c35c46a2db\",\n                        \"f57b7ffd-372f-4055-9c26-2cd55fd12d47\",\n                        \"541813f3-d831-4458-82a1-230f6f0dded8\",\n                        \"de3fa055-726b-45b4-99a1-177f350a12e8\",\n                        \"e121ba6f-8926-49cc-9832-6dc0a6516db4\",\n                        \"4979f019-f26e-4488-9335-28fe37b78fd5\",\n                        \"ed80bdac-caee-4048-9341-b26c09c7c0af\",\n                        \"0526a862-4e58-455c-a8e0-bb19bdec8806\",\n                        \"2bf36975-5863-4f31-a0d4-33df909eea19\",\n                        \"4c034684-cf8a-4678-9bcd-267a9ca1e385\",\n                        \"062be2c0-dee4-4f07-ad7c-cc02c81b6680\",\n                        \"c7b614f0-3326-4fc0-808e-45be7dbfbbcb\",\n                        \"a31e8906-477b-4344-bcac-cfb237845771\",\n                        \"c2d4d674-4c82-4737-8d5c-4f47de119a5b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"state, or the Borrower is relying on other property located in a community property state as a basis for repayment of the loan.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.33724975585938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012503880076110363,\n                    \"Left\": 0.02256237529218197,\n                    \"Top\": 0.13574562966823578,\n                    \"Width\": 0.7404957413673401\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02256237529218197,\n                        \"Y\": 0.13574562966823578\n                    },\n                    {\n                        \"X\": 0.7630527019500732,\n                        \"Y\": 0.13611041009426117\n                    },\n                    {\n                        \"X\": 0.7630581259727478,\n                        \"Y\": 0.14824950695037842\n                    },\n                    {\n                        \"X\": 0.022562501952052116,\n                        \"Y\": 0.14788232743740082\n                    }\n                ]\n            },\n            \"Id\": \"081536e7-c0d2-4758-95cf-01fdb71ea3af\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1053ada1-68df-43bb-8412-fb2941366b8f\",\n                        \"bb647af4-a23d-4953-b142-ed66ace54c59\",\n                        \"292d6ed3-d45b-427b-8406-a7b6cd4afde2\",\n                        \"b46387cd-a221-451e-863f-e668e8097ff3\",\n                        \"c7f2f129-294b-4df9-a4f4-e059e9ca754c\",\n                        \"fed657a9-734b-42bf-87ac-406b1819d894\",\n                        \"e200c4f1-0a55-42d5-9eb4-e6fa6971ae0d\",\n                        \"0608f359-7b96-4659-949f-fde69d3c0a96\",\n                        \"bc013ee8-343d-4d99-b64e-cdc5a5b7d4a2\",\n                        \"05b4082d-e29e-490e-a4ec-93cf8bb30406\",\n                        \"d2d2bd80-8bd7-4a67-911f-757b7c13ef8a\",\n                        \"c032ea28-bf08-42f6-88bd-ceacb1ef7ebc\",\n                        \"c078dd2a-07f0-42b9-b908-fe86eeb08363\",\n                        \"c4bc9e61-ca80-4c61-a3d1-286ac46c82a4\",\n                        \"ef636dc0-7897-4378-9c91-5a1e4b68a483\",\n                        \"4d77c5e9-f64b-437e-9adc-64bd0a1f4400\",\n                        \"a42fe9c1-75c2-4e98-9ebf-26bee3d37b3c\",\n                        \"dc9c096e-0f02-490e-a52e-a5a17e688f7c\",\n                        \"cf7ab86e-ae84-4d9e-a23f-29a8ac9cef78\",\n                        \"8cc2cd54-ce7b-400f-adcb-b22f5664ef2d\",\n                        \"93ee7b9f-768a-49cc-99e6-d08a3ee60c88\",\n                        \"cadb0064-9a1a-46ae-bb1f-7ea1d38984e5\",\n                        \"9eeaf41d-e99f-4a42-8c96-ff38b88c9929\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"If this is an application for joint credit, Borrower and Co-Borrower each agree that we intend to apply for joint credit (sign below):\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96760559082031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009577740915119648,\n                    \"Left\": 0.02245892398059368,\n                    \"Top\": 0.18659168481826782,\n                    \"Width\": 0.05381732061505318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02245892398059368,\n                        \"Y\": 0.18659168481826782\n                    },\n                    {\n                        \"X\": 0.07627584040164948,\n                        \"Y\": 0.18661890923976898\n                    },\n                    {\n                        \"X\": 0.07627624273300171,\n                        \"Y\": 0.1961694210767746\n                    },\n                    {\n                        \"X\": 0.02245902270078659,\n                        \"Y\": 0.1961420476436615\n                    }\n                ]\n            },\n            \"Id\": \"b69d01cd-f11c-48e7-b4e9-9ef0f189526f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"058eb8ac-3a11-4682-9771-e1fbeeee90e3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Borrower\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86902618408203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009892182424664497,\n                    \"Left\": 0.3364422023296356,\n                    \"Top\": 0.18647268414497375,\n                    \"Width\": 0.0740666314959526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3364422023296356,\n                        \"Y\": 0.18647268414497375\n                    },\n                    {\n                        \"X\": 0.4105064868927002,\n                        \"Y\": 0.18651016056537628\n                    },\n                    {\n                        \"X\": 0.4105088412761688,\n                        \"Y\": 0.1963648647069931\n                    },\n                    {\n                        \"X\": 0.3364441394805908,\n                        \"Y\": 0.19632719457149506\n                    }\n                ]\n            },\n            \"Id\": \"2d5a7f40-9dc3-452a-a71d-1a201c289ea8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"55464df2-5ee7-4d38-8ab3-2fcae8954b50\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Co-Borrower\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.47410583496094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010563528165221214,\n                    \"Left\": 0.3187042474746704,\n                    \"Top\": 0.2047092169523239,\n                    \"Width\": 0.32049044966697693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3187042474746704,\n                        \"Y\": 0.2047092169523239\n                    },\n                    {\n                        \"X\": 0.6391907930374146,\n                        \"Y\": 0.20487293601036072\n                    },\n                    {\n                        \"X\": 0.6391947269439697,\n                        \"Y\": 0.21527273952960968\n                    },\n                    {\n                        \"X\": 0.3187061846256256,\n                        \"Y\": 0.21510812640190125\n                    }\n                ]\n            },\n            \"Id\": \"915b68d3-8308-4c6a-affa-3649b1223d3c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"808875e1-5387-48d9-8703-9a57509a72da\",\n                        \"37c56a2e-e894-4f0a-8480-9e4ba3535de5\",\n                        \"fbf6eb72-e631-4c82-80a3-57550482d3b0\",\n                        \"6e4379b3-d114-4a60-bb56-429fe39442b6\",\n                        \"82f39907-b0af-4c4e-82ce-4aa50148edc4\",\n                        \"24d6968e-f3ba-4719-bcd7-7df97fa5c15a\",\n                        \"a6f04bbb-210c-45f5-a896-ee69fb5a7f63\",\n                        \"f7172635-e82d-413f-9d8f-6a94e1622e47\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"I. TYPE OF MORTGAGE AND TERMS OF LOAN\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73023223876953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01134650968015194,\n                    \"Left\": 0.028940971940755844,\n                    \"Top\": 0.22284400463104248,\n                    \"Width\": 0.05516770854592323\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028940971940755844,\n                        \"Y\": 0.22284400463104248\n                    },\n                    {\n                        \"X\": 0.0841081514954567,\n                        \"Y\": 0.22287245094776154\n                    },\n                    {\n                        \"X\": 0.08410868048667908,\n                        \"Y\": 0.23419050872325897\n                    },\n                    {\n                        \"X\": 0.028941132128238678,\n                        \"Y\": 0.23416189849376678\n                    }\n                ]\n            },\n            \"Id\": \"d669789d-f22e-409a-bccf-129eca567166\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"699edc34-edf0-4167-9a18-f86dd1cc96cb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Mortgage\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.67634582519531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009200909174978733,\n                    \"Left\": 0.12897132337093353,\n                    \"Top\": 0.22570808231830597,\n                    \"Width\": 0.01847834326326847\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12897132337093353,\n                        \"Y\": 0.22570808231830597\n                    },\n                    {\n                        \"X\": 0.14744889736175537,\n                        \"Y\": 0.22571763396263123\n                    },\n                    {\n                        \"X\": 0.14744967222213745,\n                        \"Y\": 0.23490899801254272\n                    },\n                    {\n                        \"X\": 0.12897199392318726,\n                        \"Y\": 0.2348994016647339\n                    }\n                ]\n            },\n            \"Id\": \"744706e0-36a5-4dd4-93cd-d044ccf63e84\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f2c3ace7-b223-4e5e-ab1c-95921b66aa74\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"VA\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.46109008789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009431150741875172,\n                    \"Left\": 0.21068575978279114,\n                    \"Top\": 0.22581090033054352,\n                    \"Width\": 0.0766059011220932\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21068575978279114,\n                        \"Y\": 0.22581090033054352\n                    },\n                    {\n                        \"X\": 0.287290096282959,\n                        \"Y\": 0.22585046291351318\n                    },\n                    {\n                        \"X\": 0.28729164600372314,\n                        \"Y\": 0.2352420538663864\n                    },\n                    {\n                        \"X\": 0.21068690717220306,\n                        \"Y\": 0.23520229756832123\n                    }\n                ]\n            },\n            \"Id\": \"c1014628-06eb-4d56-ab0f-a787e165dc95\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bde762ae-1886-4b2f-960e-b60785b81a44\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Conventional\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.7454605102539,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012025117874145508,\n                    \"Left\": 0.3341541290283203,\n                    \"Top\": 0.22575441002845764,\n                    \"Width\": 0.0890941470861435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3341541290283203,\n                        \"Y\": 0.22575441002845764\n                    },\n                    {\n                        \"X\": 0.4232453405857086,\n                        \"Y\": 0.22580040991306305\n                    },\n                    {\n                        \"X\": 0.423248291015625,\n                        \"Y\": 0.23777952790260315\n                    },\n                    {\n                        \"X\": 0.33415648341178894,\n                        \"Y\": 0.23773322999477386\n                    }\n                ]\n            },\n            \"Id\": \"95d99002-db37-4ce0-8d83-60dd183ab64b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d37314f4-bb88-4920-98d8-397704534871\",\n                        \"d0af3a6c-7567-4eea-a513-f19847b24608\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Other (explain):\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93585205078125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01176557969301939,\n                    \"Left\": 0.5315983295440674,\n                    \"Top\": 0.22035856544971466,\n                    \"Width\": 0.1293913722038269\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5315983295440674,\n                        \"Y\": 0.22035856544971466\n                    },\n                    {\n                        \"X\": 0.6609851717948914,\n                        \"Y\": 0.22042518854141235\n                    },\n                    {\n                        \"X\": 0.6609897017478943,\n                        \"Y\": 0.23212413489818573\n                    },\n                    {\n                        \"X\": 0.5316019654273987,\n                        \"Y\": 0.2320571094751358\n                    }\n                ]\n            },\n            \"Id\": \"011345c9-48c5-41d7-9e96-fe2203017943\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"990051e9-7c13-4cde-9116-94adfa7400c3\",\n                        \"2a3fda71-f3fe-4a13-bb0b-3b01b3905649\",\n                        \"a128b2cf-47b5-4698-a39b-212b4a24e3da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Agency Case Number\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94867706298828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009839705191552639,\n                    \"Left\": 0.7357912659645081,\n                    \"Top\": 0.2202107012271881,\n                    \"Width\": 0.1265498250722885\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7357912659645081,\n                        \"Y\": 0.2202107012271881\n                    },\n                    {\n                        \"X\": 0.8623361587524414,\n                        \"Y\": 0.2202758640050888\n                    },\n                    {\n                        \"X\": 0.8623411059379578,\n                        \"Y\": 0.23005039989948273\n                    },\n                    {\n                        \"X\": 0.7357954978942871,\n                        \"Y\": 0.22998492419719696\n                    }\n                ]\n            },\n            \"Id\": \"0c1e118e-1d7a-4611-92b8-a338544ef612\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0fb2ae41-2f40-4a1f-aeb2-e9cd07eda188\",\n                        \"98f8ef7e-dedd-4b67-9b4b-01edb56be489\",\n                        \"c1b7b9d7-200e-4837-949d-330a736afe22\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Lender Case Number\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.51602172851562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011869002133607864,\n                    \"Left\": 0.02813085727393627,\n                    \"Top\": 0.23490853607654572,\n                    \"Width\": 0.06853502243757248\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02813085727393627,\n                        \"Y\": 0.23490853607654572\n                    },\n                    {\n                        \"X\": 0.09666524082422256,\n                        \"Y\": 0.23494410514831543\n                    },\n                    {\n                        \"X\": 0.0966658815741539,\n                        \"Y\": 0.24677753448486328\n                    },\n                    {\n                        \"X\": 0.028131019324064255,\n                        \"Y\": 0.24674175679683685\n                    }\n                ]\n            },\n            \"Id\": \"d10615bb-1073-40c8-a9ab-ef4ff2d4fcae\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0e77a08a-7702-4dea-a37c-d5cdc6983e81\",\n                        \"2ff3ea43-8da2-4aa3-8098-6303bb06e5da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Applied for:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76577758789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009344758465886116,\n                    \"Left\": 0.12906387448310852,\n                    \"Top\": 0.23815485835075378,\n                    \"Width\": 0.026670267805457115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12906387448310852,\n                        \"Y\": 0.23815485835075378\n                    },\n                    {\n                        \"X\": 0.15573331713676453,\n                        \"Y\": 0.23816873133182526\n                    },\n                    {\n                        \"X\": 0.15573415160179138,\n                        \"Y\": 0.24749961495399475\n                    },\n                    {\n                        \"X\": 0.12906455993652344,\n                        \"Y\": 0.2474856972694397\n                    }\n                ]\n            },\n            \"Id\": \"17a1f8c9-a9d9-4204-9bae-48c45e2a2ba1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7e03f76f-5c06-4236-a293-e8139aa93e27\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"FHA\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4744873046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009644989855587482,\n                    \"Left\": 0.2107497602701187,\n                    \"Top\": 0.23806533217430115,\n                    \"Width\": 0.07127257436513901\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2107497602701187,\n                        \"Y\": 0.23806533217430115\n                    },\n                    {\n                        \"X\": 0.2820207476615906,\n                        \"Y\": 0.23810237646102905\n                    },\n                    {\n                        \"X\": 0.2820223271846771,\n                        \"Y\": 0.24771031737327576\n                    },\n                    {\n                        \"X\": 0.21075092256069183,\n                        \"Y\": 0.24767310917377472\n                    }\n                ]\n            },\n            \"Id\": \"8adfd911-407f-47c4-b16a-7e96de2301f7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b3f9158c-6ef4-4113-9f25-371f06e14598\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"USDA/Rural\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87584686279297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010913667269051075,\n                    \"Left\": 0.534145712852478,\n                    \"Top\": 0.2429029643535614,\n                    \"Width\": 0.060820844024419785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.534145712852478,\n                        \"Y\": 0.2429029643535614\n                    },\n                    {\n                        \"X\": 0.5949627757072449,\n                        \"Y\": 0.24293464422225952\n                    },\n                    {\n                        \"X\": 0.5949665904045105,\n                        \"Y\": 0.2538166344165802\n                    },\n                    {\n                        \"X\": 0.534149169921875,\n                        \"Y\": 0.25378477573394775\n                    }\n                ]\n            },\n            \"Id\": \"c78da270-a0d4-496f-bf6a-5e04ed3abad0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6b001f42-bfef-4a90-a5d4-5eddac57d39a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"ABC1234\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.31742095947266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010444562882184982,\n                    \"Left\": 0.7381706237792969,\n                    \"Top\": 0.24293400347232819,\n                    \"Width\": 0.05915917083621025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7381706237792969,\n                        \"Y\": 0.24293400347232819\n                    },\n                    {\n                        \"X\": 0.7973248958587646,\n                        \"Y\": 0.24296481907367706\n                    },\n                    {\n                        \"X\": 0.7973297834396362,\n                        \"Y\": 0.25337857007980347\n                    },\n                    {\n                        \"X\": 0.7381751537322998,\n                        \"Y\": 0.25334760546684265\n                    }\n                ]\n            },\n            \"Id\": \"1421b81e-48a6-46e4-bd76-a3bfa2505432\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0c603739-698c-46ee-8551-0bef5daa7a18\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"XYZ6543\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9464340209961,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011875743046402931,\n                    \"Left\": 0.21056975424289703,\n                    \"Top\": 0.25144198536872864,\n                    \"Width\": 0.09573066979646683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21056975424289703,\n                        \"Y\": 0.25144198536872864\n                    },\n                    {\n                        \"X\": 0.30629831552505493,\n                        \"Y\": 0.25149208307266235\n                    },\n                    {\n                        \"X\": 0.30630043148994446,\n                        \"Y\": 0.263317734003067\n                    },\n                    {\n                        \"X\": 0.21057118475437164,\n                        \"Y\": 0.2632673382759094\n                    }\n                ]\n            },\n            \"Id\": \"d13fddda-417d-4301-a453-c052de9d1603\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1da09c26-c2ae-475a-a211-38704778afbb\",\n                        \"ab0ee00f-368f-459d-b67b-1eb8bf85b5e8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Housing Service\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97771453857422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009742324240505695,\n                    \"Left\": 0.028249451890587807,\n                    \"Top\": 0.26724952459335327,\n                    \"Width\": 0.04654989019036293\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028249451890587807,\n                        \"Y\": 0.26724952459335327\n                    },\n                    {\n                        \"X\": 0.07479894161224365,\n                        \"Y\": 0.26727405190467834\n                    },\n                    {\n                        \"X\": 0.07479934394359589,\n                        \"Y\": 0.2769918441772461\n                    },\n                    {\n                        \"X\": 0.02824958600103855,\n                        \"Y\": 0.2769671678543091\n                    }\n                ]\n            },\n            \"Id\": \"2b70f45f-6be9-446e-82fa-b0bf660d0a42\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cf7a3735-8d85-4b77-8a36-712382047a66\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Amount\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.53451538085938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009792350232601166,\n                    \"Left\": 0.18798817694187164,\n                    \"Top\": 0.2672072947025299,\n                    \"Width\": 0.07563189417123795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18798817694187164,\n                        \"Y\": 0.2672072947025299\n                    },\n                    {\n                        \"X\": 0.2636185884475708,\n                        \"Y\": 0.26724717020988464\n                    },\n                    {\n                        \"X\": 0.2636200785636902,\n                        \"Y\": 0.27699965238571167\n                    },\n                    {\n                        \"X\": 0.1879892200231552,\n                        \"Y\": 0.2769595682621002\n                    }\n                ]\n            },\n            \"Id\": \"44af43d1-c661-4c4a-8ab4-5e95d79a0712\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7e449874-d5cf-4ba4-a5af-4e9456214394\",\n                        \"fbc31ea7-4d1e-442d-a70f-ec1216490568\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Interest Rate\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.54109191894531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009848765097558498,\n                    \"Left\": 0.3064826428890228,\n                    \"Top\": 0.26711660623550415,\n                    \"Width\": 0.08258417993783951\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3064826428890228,\n                        \"Y\": 0.26711660623550415\n                    },\n                    {\n                        \"X\": 0.38906461000442505,\n                        \"Y\": 0.26716017723083496\n                    },\n                    {\n                        \"X\": 0.38906681537628174,\n                        \"Y\": 0.2769653797149658\n                    },\n                    {\n                        \"X\": 0.3064844012260437,\n                        \"Y\": 0.2769216001033783\n                    }\n                ]\n            },\n            \"Id\": \"600a2619-3b2c-454c-b8e6-8193e3713a63\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dc23cf66-828c-4127-86b5-81bd396cbe7b\",\n                        \"ea988eb7-eeb7-478a-b196-07909a018af6\",\n                        \"d4d63007-3484-4635-99c1-c6ef9d7f6f40\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. of Months\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3692626953125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011164304800331593,\n                    \"Left\": 0.42507269978523254,\n                    \"Top\": 0.26773566007614136,\n                    \"Width\": 0.10989312082529068\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42507269978523254,\n                        \"Y\": 0.26773566007614136\n                    },\n                    {\n                        \"X\": 0.5349623560905457,\n                        \"Y\": 0.2677936255931854\n                    },\n                    {\n                        \"X\": 0.5349658131599426,\n                        \"Y\": 0.2788999676704407\n                    },\n                    {\n                        \"X\": 0.4250754714012146,\n                        \"Y\": 0.27884167432785034\n                    }\n                ]\n            },\n            \"Id\": \"8c64f2e9-dc7b-4453-a5de-504dd4842b25\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1576b851-628e-4583-8079-66bfdabd28f4\",\n                        \"90c7bf9a-44c7-499f-9224-3480694395cc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Amortization Type:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90194702148438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009747903794050217,\n                    \"Left\": 0.5865104794502258,\n                    \"Top\": 0.2694031298160553,\n                    \"Width\": 0.06327370554208755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5865104794502258,\n                        \"Y\": 0.2694031298160553\n                    },\n                    {\n                        \"X\": 0.6497805118560791,\n                        \"Y\": 0.2694365382194519\n                    },\n                    {\n                        \"X\": 0.6497842073440552,\n                        \"Y\": 0.2791510224342346\n                    },\n                    {\n                        \"X\": 0.5865138173103333,\n                        \"Y\": 0.2791174650192261\n                    }\n                ]\n            },\n            \"Id\": \"bd9ab86e-2377-45ef-bc93-0975ec0bc698\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"910d393c-53e8-4ae5-89a0-41f119cea9cd\",\n                        \"92ac9403-a2e7-4a80-9512-0436eff3cb63\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Fixed Rate\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70557403564453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012259683571755886,\n                    \"Left\": 0.7050657868385315,\n                    \"Top\": 0.26931867003440857,\n                    \"Width\": 0.09055021405220032\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7050657868385315,\n                        \"Y\": 0.26931867003440857\n                    },\n                    {\n                        \"X\": 0.7956103086471558,\n                        \"Y\": 0.26936647295951843\n                    },\n                    {\n                        \"X\": 0.7956160306930542,\n                        \"Y\": 0.2815783619880676\n                    },\n                    {\n                        \"X\": 0.7050708532333374,\n                        \"Y\": 0.2815302610397339\n                    }\n                ]\n            },\n            \"Id\": \"3bfa57a6-8fc3-4e52-9ac7-d689ac4df212\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"578172f9-cd1d-4864-a3ad-65cb2b1e5aae\",\n                        \"a3844493-b088-4dbf-9115-23d8b7880ea0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Other (explain):\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96131896972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010340152308344841,\n                    \"Left\": 0.02844291925430298,\n                    \"Top\": 0.2826695740222931,\n                    \"Width\": 0.008259090594947338\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02844291925430298,\n                        \"Y\": 0.2826695740222931\n                    },\n                    {\n                        \"X\": 0.03670181706547737,\n                        \"Y\": 0.2826739549636841\n                    },\n                    {\n                        \"X\": 0.03670201078057289,\n                        \"Y\": 0.2930097281932831\n                    },\n                    {\n                        \"X\": 0.02844306267797947,\n                        \"Y\": 0.2930053174495697\n                    }\n                ]\n            },\n            \"Id\": \"6032a924-5c25-49a6-b862-02cc05f9f973\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"af1867cd-15d1-4c54-9787-c9eb83a23624\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.67681884765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011208702810108662,\n                    \"Left\": 0.0825805589556694,\n                    \"Top\": 0.28238189220428467,\n                    \"Width\": 0.05021420493721962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0825805589556694,\n                        \"Y\": 0.28238189220428467\n                    },\n                    {\n                        \"X\": 0.13279391825199127,\n                        \"Y\": 0.28240859508514404\n                    },\n                    {\n                        \"X\": 0.13279476761817932,\n                        \"Y\": 0.29359060525894165\n                    },\n                    {\n                        \"X\": 0.08258106559515,\n                        \"Y\": 0.29356375336647034\n                    }\n                ]\n            },\n            \"Id\": \"8e7e965a-6745-4c7e-b9b4-f0fdddbd6991\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"67343f6b-e1fe-4c4a-9806-646a3183fd18\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"552,500\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.98638153076172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011756573803722858,\n                    \"Left\": 0.25538206100463867,\n                    \"Top\": 0.2827978730201721,\n                    \"Width\": 0.039610397070646286\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25538206100463867,\n                        \"Y\": 0.2827978730201721\n                    },\n                    {\n                        \"X\": 0.2949904501438141,\n                        \"Y\": 0.28281891345977783\n                    },\n                    {\n                        \"X\": 0.29499247670173645,\n                        \"Y\": 0.2945544421672821\n                    },\n                    {\n                        \"X\": 0.25538381934165955,\n                        \"Y\": 0.29453325271606445\n                    }\n                ]\n            },\n            \"Id\": \"aa1b24fa-aa24-4ea6-a8f3-abea0532d3ab\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb2bc981-841b-429b-8599-35d716f31506\",\n                        \"fc9dbc34-1baa-403c-b854-d1711d158913\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"3.5 %\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.98515319824219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009946503676474094,\n                    \"Left\": 0.34813785552978516,\n                    \"Top\": 0.28249362111091614,\n                    \"Width\": 0.023740382865071297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34813785552978516,\n                        \"Y\": 0.28249362111091614\n                    },\n                    {\n                        \"X\": 0.3718760907649994,\n                        \"Y\": 0.2825062572956085\n                    },\n                    {\n                        \"X\": 0.3718782663345337,\n                        \"Y\": 0.29244014620780945\n                    },\n                    {\n                        \"X\": 0.3481398820877075,\n                        \"Y\": 0.2924274504184723\n                    }\n                ]\n            },\n            \"Id\": \"13de95b9-935d-4145-b730-d85eb181f08e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3aa25c4f-88af-49de-83f7-5a55b02b7449\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"360\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93468475341797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00937715731561184,\n                    \"Left\": 0.5863925814628601,\n                    \"Top\": 0.2860885262489319,\n                    \"Width\": 0.029798204079270363\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5863925814628601,\n                        \"Y\": 0.2860885262489319\n                    },\n                    {\n                        \"X\": 0.6161873936653137,\n                        \"Y\": 0.28610438108444214\n                    },\n                    {\n                        \"X\": 0.6161907911300659,\n                        \"Y\": 0.2954656779766083\n                    },\n                    {\n                        \"X\": 0.586395800113678,\n                        \"Y\": 0.29544973373413086\n                    }\n                ]\n            },\n            \"Id\": \"9f03dbb3-05a4-46ef-946d-12099ff01860\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dff28b0c-7c3c-4e09-88d5-8564c492707e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"GPM\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36772918701172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012125951237976551,\n                    \"Left\": 0.7042392492294312,\n                    \"Top\": 0.28594842553138733,\n                    \"Width\": 0.07087921351194382\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7042392492294312,\n                        \"Y\": 0.28594842553138733\n                    },\n                    {\n                        \"X\": 0.7751129269599915,\n                        \"Y\": 0.28598615527153015\n                    },\n                    {\n                        \"X\": 0.7751184105873108,\n                        \"Y\": 0.2980743646621704\n                    },\n                    {\n                        \"X\": 0.7042441964149475,\n                        \"Y\": 0.2980364263057709\n                    }\n                ]\n            },\n            \"Id\": \"05eef4ff-3127-4a7b-8a46-c27c1c78eabd\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"54739729-9b72-40f4-9128-259b607b6a52\",\n                        \"5b175c9c-fac0-41be-b783-607b8f4044ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"ARM (type):\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.50086212158203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010863352566957474,\n                    \"Left\": 0.2938987612724304,\n                    \"Top\": 0.3008659780025482,\n                    \"Width\": 0.37828853726387024\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2938987612724304,\n                        \"Y\": 0.3008659780025482\n                    },\n                    {\n                        \"X\": 0.672183096408844,\n                        \"Y\": 0.30106887221336365\n                    },\n                    {\n                        \"X\": 0.6721872687339783,\n                        \"Y\": 0.3117293417453766\n                    },\n                    {\n                        \"X\": 0.29390057921409607,\n                        \"Y\": 0.3115253746509552\n                    }\n                ]\n            },\n            \"Id\": \"87d97784-5dc3-45d9-8b2e-2c008ed8683b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"96684920-e015-487e-927a-52cd4fac0774\",\n                        \"6d8e36f7-9db2-4f78-a254-d6997bc9325e\",\n                        \"bc34a21d-c5c8-4f10-91b6-c5e2ca0660ea\",\n                        \"86fe615a-4016-4b1e-8f09-88bcf62b31de\",\n                        \"bb101227-77a1-4fa0-b903-d220e73be268\",\n                        \"931636f9-6471-4ec8-b884-57db71b33bf1\",\n                        \"0f38bd78-77f2-49cc-965c-b35f601c9ddb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"II. PROPERTY INFORMATION AND PURPOSE OF LOAN\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 94.53328704833984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012436676770448685,\n                    \"Left\": 0.028831418603658676,\n                    \"Top\": 0.31622186303138733,\n                    \"Width\": 0.29701995849609375\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028831418603658676,\n                        \"Y\": 0.31622186303138733\n                    },\n                    {\n                        \"X\": 0.3258490562438965,\n                        \"Y\": 0.31638237833976746\n                    },\n                    {\n                        \"X\": 0.3258513808250427,\n                        \"Y\": 0.3286585509777069\n                    },\n                    {\n                        \"X\": 0.028831589967012405,\n                        \"Y\": 0.328497052192688\n                    }\n                ]\n            },\n            \"Id\": \"44ad7262-84a9-4c6d-8475-a509a2d11fc8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f092fba5-6733-4474-aebb-641cd7972d12\",\n                        \"ca93c100-0858-43dc-aa0f-d0e8fe22c5c2\",\n                        \"6e7e9c55-78ee-4682-92d2-5f17ed3d5439\",\n                        \"24df0b9b-0a6c-45cd-9909-9bee2b894e0c\",\n                        \"422c5f10-7daf-4a72-9c3b-09c3847e43ff\",\n                        \"f3771b4d-050c-486f-b908-8efd2589fc59\",\n                        \"f8ecaf5f-d683-41db-b071-ae9c21737931\",\n                        \"d7fcd40c-dc56-42fb-ac48-1ce6f4804bb3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Subject Property Address (street, city, state, & ZIP)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.3818130493164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009805569425225258,\n                    \"Left\": 0.8767372965812683,\n                    \"Top\": 0.31656432151794434,\n                    \"Width\": 0.06895039975643158\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8767372965812683,\n                        \"Y\": 0.31656432151794434\n                    },\n                    {\n                        \"X\": 0.9456822276115417,\n                        \"Y\": 0.31660157442092896\n                    },\n                    {\n                        \"X\": 0.9456876516342163,\n                        \"Y\": 0.32636988162994385\n                    },\n                    {\n                        \"X\": 0.8767423033714294,\n                        \"Y\": 0.3263324499130249\n                    }\n                ]\n            },\n            \"Id\": \"fe92ad18-314f-4dd6-a81f-672b561c219b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"59b225cc-bd98-480e-bd01-64b1204dffac\",\n                        \"d28f958f-41bd-4976-aff3-2f1016e0c2ef\",\n                        \"59dafa24-a806-428a-87a6-72ebc82508b5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. of Units\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.90218353271484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012787132523953915,\n                    \"Left\": 0.03172478452324867,\n                    \"Top\": 0.3324744403362274,\n                    \"Width\": 0.23578059673309326\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03172478452324867,\n                        \"Y\": 0.3324744403362274\n                    },\n                    {\n                        \"X\": 0.26750341057777405,\n                        \"Y\": 0.332602858543396\n                    },\n                    {\n                        \"X\": 0.26750537753105164,\n                        \"Y\": 0.3452615439891815\n                    },\n                    {\n                        \"X\": 0.03172498196363449,\n                        \"Y\": 0.34513232111930847\n                    }\n                ]\n            },\n            \"Id\": \"629e228d-753d-4485-9e0a-3039cf9f61c7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ba11c68c-f0cf-4487-90bc-c62706a429a6\",\n                        \"e8153ceb-3a2a-45d7-8a43-3b8a15eeebd9\",\n                        \"8a3f1263-1414-4470-ba51-20094e10823e\",\n                        \"efb433d1-2743-4a51-8311-60aee28b013b\",\n                        \"0912b97d-4e63-4d51-80d7-532607c9969b\",\n                        \"a92fef63-881b-4608-97e1-1814ea833022\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"123 Any Street, Anytown, USA, 12345\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73745727539062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009846141561865807,\n                    \"Left\": 0.907258152961731,\n                    \"Top\": 0.33288660645484924,\n                    \"Width\": 0.005895303096622229\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.907258152961731,\n                        \"Y\": 0.33288660645484924\n                    },\n                    {\n                        \"X\": 0.9131481647491455,\n                        \"Y\": 0.3328898251056671\n                    },\n                    {\n                        \"X\": 0.9131534695625305,\n                        \"Y\": 0.3427327573299408\n                    },\n                    {\n                        \"X\": 0.9072633981704712,\n                        \"Y\": 0.3427295386791229\n                    }\n                ]\n            },\n            \"Id\": \"c6290bae-4ec6-4b0c-a735-489b33df7d89\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"46105d2c-f863-436a-af1a-44d4b814edb9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.65750885009766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012536320835351944,\n                    \"Left\": 0.028811300173401833,\n                    \"Top\": 0.34860673546791077,\n                    \"Width\": 0.40610161423683167\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028811300173401833,\n                        \"Y\": 0.34860673546791077\n                    },\n                    {\n                        \"X\": 0.43490979075431824,\n                        \"Y\": 0.3488297164440155\n                    },\n                    {\n                        \"X\": 0.43491291999816895,\n                        \"Y\": 0.3611430823802948\n                    },\n                    {\n                        \"X\": 0.02881147339940071,\n                        \"Y\": 0.360918790102005\n                    }\n                ]\n            },\n            \"Id\": \"b39ed771-4ee8-4867-b2df-dfaec1c268d6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"71f65789-8a37-4b0b-b348-229262efe042\",\n                        \"bb8cb40f-298a-46aa-a0ec-f19d21e9b032\",\n                        \"16f50532-639c-40c9-9e77-48b1d60caab7\",\n                        \"b63c74f5-fbef-4491-b453-90bd6337db03\",\n                        \"ae2586e9-0893-4ef1-80e2-126b73b9b952\",\n                        \"8593db6e-6efb-4666-b21e-4a37b2ac1d2a\",\n                        \"08bdf8a0-782a-4061-8c5f-500842e184fe\",\n                        \"f162d413-5793-44b5-b1f0-6ee3a2d8bdc4\",\n                        \"a05590fd-4088-47a7-b00c-6172519b7969\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Legal Description of Subject Property (attach description if necessary)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.39899444580078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009759879671037197,\n                    \"Left\": 0.8764346837997437,\n                    \"Top\": 0.3489105701446533,\n                    \"Width\": 0.05766177177429199\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8764346837997437,\n                        \"Y\": 0.3489105701446533\n                    },\n                    {\n                        \"X\": 0.9340910911560059,\n                        \"Y\": 0.34894225001335144\n                    },\n                    {\n                        \"X\": 0.9340964555740356,\n                        \"Y\": 0.3586704730987549\n                    },\n                    {\n                        \"X\": 0.8764396905899048,\n                        \"Y\": 0.3586386740207672\n                    }\n                ]\n            },\n            \"Id\": \"6000c8d2-021c-4900-9917-710adec32a8a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f20c98f7-f788-427f-87f8-d7bb566d0733\",\n                        \"b7a1fb71-6bcb-4846-ad05-2384a5c6c049\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Year Built\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.93379974365234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012897493317723274,\n                    \"Left\": 0.032079245895147324,\n                    \"Top\": 0.3727038502693176,\n                    \"Width\": 0.12476380169391632\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.032079245895147324,\n                        \"Y\": 0.3727038502693176\n                    },\n                    {\n                        \"X\": 0.15684188902378082,\n                        \"Y\": 0.3727731704711914\n                    },\n                    {\n                        \"X\": 0.15684305131435394,\n                        \"Y\": 0.38560134172439575\n                    },\n                    {\n                        \"X\": 0.03207945078611374,\n                        \"Y\": 0.38553163409233093\n                    }\n                ]\n            },\n            \"Id\": \"be5d9102-ab7d-4c97-bb0f-9346f01a8da8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d372f018-096b-40f2-b1d6-db8acbcd061a\",\n                        \"927cf243-307f-4d5f-b815-eff3ec0f91f2\",\n                        \"53f962bd-0e36-4a9f-bae4-f08359c5beb4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Single Family Home\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9814682006836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010371335782110691,\n                    \"Left\": 0.8946444392204285,\n                    \"Top\": 0.37063726782798767,\n                    \"Width\": 0.03167574852705002\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8946444392204285,\n                        \"Y\": 0.37063726782798767\n                    },\n                    {\n                        \"X\": 0.9263145327568054,\n                        \"Y\": 0.3706548511981964\n                    },\n                    {\n                        \"X\": 0.9263201951980591,\n                        \"Y\": 0.3810086250305176\n                    },\n                    {\n                        \"X\": 0.894649863243103,\n                        \"Y\": 0.3809909522533417\n                    }\n                ]\n            },\n            \"Id\": \"6ec0411c-a9a2-4fcc-a902-e917af62ddac\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bea771c7-9e8b-4589-b3b3-e984f48dafa8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"2015\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84957885742188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011923272162675858,\n                    \"Left\": 0.028861351311206818,\n                    \"Top\": 0.39585843682289124,\n                    \"Width\": 0.09695617854595184\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028861351311206818,\n                        \"Y\": 0.39585843682289124\n                    },\n                    {\n                        \"X\": 0.1258166879415512,\n                        \"Y\": 0.39591288566589355\n                    },\n                    {\n                        \"X\": 0.12581752240657806,\n                        \"Y\": 0.407781720161438\n                    },\n                    {\n                        \"X\": 0.0288615170866251,\n                        \"Y\": 0.4077269434928894\n                    }\n                ]\n            },\n            \"Id\": \"afb4ec54-3bba-46a9-a023-120aa9bdc8b2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4af058ed-4867-4441-842a-fc2c41a80e23\",\n                        \"ea5ff6da-e3d6-49a6-be53-64f622bc8aa5\",\n                        \"13c3ae0a-2b75-4112-981f-38a707414fc3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Purpose of Loan\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83955383300781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009657969698309898,\n                    \"Left\": 0.15397429466247559,\n                    \"Top\": 0.39823439717292786,\n                    \"Width\": 0.05584115907549858\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15397429466247559,\n                        \"Y\": 0.39823439717292786\n                    },\n                    {\n                        \"X\": 0.20981428027153015,\n                        \"Y\": 0.3982657790184021\n                    },\n                    {\n                        \"X\": 0.20981544256210327,\n                        \"Y\": 0.4078923463821411\n                    },\n                    {\n                        \"X\": 0.15397512912750244,\n                        \"Y\": 0.40786081552505493\n                    }\n                ]\n            },\n            \"Id\": \"e77fe036-b2d3-4ac7-b9f9-dca7c59a2fdb\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d10c380e-912c-4272-8680-0d3fba458e05\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Purchase\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90818786621094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009783991612493992,\n                    \"Left\": 0.24190570414066315,\n                    \"Top\": 0.3981793522834778,\n                    \"Width\": 0.07405368983745575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24190570414066315,\n                        \"Y\": 0.3981793522834778\n                    },\n                    {\n                        \"X\": 0.31595760583877563,\n                        \"Y\": 0.3982209861278534\n                    },\n                    {\n                        \"X\": 0.3159593939781189,\n                        \"Y\": 0.4079633355140686\n                    },\n                    {\n                        \"X\": 0.2419070601463318,\n                        \"Y\": 0.40792152285575867\n                    }\n                ]\n            },\n            \"Id\": \"a1bb511d-9098-427b-9a50-719f7094e491\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5dd207b9-920a-4207-abd1-c6467492d060\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Construction\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72969055175781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012183589860796928,\n                    \"Left\": 0.41122668981552124,\n                    \"Top\": 0.398025780916214,\n                    \"Width\": 0.08961372077465057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41122668981552124,\n                        \"Y\": 0.398025780916214\n                    },\n                    {\n                        \"X\": 0.5008368492126465,\n                        \"Y\": 0.3980761468410492\n                    },\n                    {\n                        \"X\": 0.500840425491333,\n                        \"Y\": 0.4102093577384949\n                    },\n                    {\n                        \"X\": 0.41122961044311523,\n                        \"Y\": 0.4101586937904358\n                    }\n                ]\n            },\n            \"Id\": \"1ac4e44a-1736-464a-9df9-93d9af8eb29e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6f43955b-1815-4791-a5f9-ebfd1af22754\",\n                        \"a6b96378-8612-4694-abc7-1fc1e08e7aac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Other (explain):\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.27159881591797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011937204748392105,\n                    \"Left\": 0.6008524894714355,\n                    \"Top\": 0.39595121145248413,\n                    \"Width\": 0.09354433417320251\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6008524894714355,\n                        \"Y\": 0.39595121145248413\n                    },\n                    {\n                        \"X\": 0.6943919658660889,\n                        \"Y\": 0.39600375294685364\n                    },\n                    {\n                        \"X\": 0.6943967938423157,\n                        \"Y\": 0.40788841247558594\n                    },\n                    {\n                        \"X\": 0.6008566617965698,\n                        \"Y\": 0.40783560276031494\n                    }\n                ]\n            },\n            \"Id\": \"cc8baf67-52fc-4077-bbdf-1f3e3421d610\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1bd52d93-6329-4f1d-86c9-979b264c825a\",\n                        \"ffcbb4d4-2fb8-41fb-a2a8-9a7cb419dff3\",\n                        \"16e27a9f-0382-40c5-8f8e-445806a630f0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Property will be:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4878921508789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009990355931222439,\n                    \"Left\": 0.1542711853981018,\n                    \"Top\": 0.41140854358673096,\n                    \"Width\": 0.059466615319252014\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1542711853981018,\n                        \"Y\": 0.41140854358673096\n                    },\n                    {\n                        \"X\": 0.21373656392097473,\n                        \"Y\": 0.4114421606063843\n                    },\n                    {\n                        \"X\": 0.21373780071735382,\n                        \"Y\": 0.4213988780975342\n                    },\n                    {\n                        \"X\": 0.15427204966545105,\n                        \"Y\": 0.4213651120662689\n                    }\n                ]\n            },\n            \"Id\": \"600af123-af2d-44a4-b5cf-4ed8a35da959\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b5a909e0-559f-4751-b202-37bc622c3353\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Refinance\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 92.7122573852539,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01005953922867775,\n                    \"Left\": 0.24061501026153564,\n                    \"Top\": 0.41148653626441956,\n                    \"Width\": 0.1440616399049759\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24061501026153564,\n                        \"Y\": 0.41148653626441956\n                    },\n                    {\n                        \"X\": 0.38467442989349365,\n                        \"Y\": 0.4115680158138275\n                    },\n                    {\n                        \"X\": 0.38467666506767273,\n                        \"Y\": 0.421546071767807\n                    },\n                    {\n                        \"X\": 0.24061639606952667,\n                        \"Y\": 0.421464204788208\n                    }\n                ]\n            },\n            \"Id\": \"9c2d97a8-183d-42ef-a7db-5fb3f0bc233a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"777390f6-1285-4e08-b8ab-05909325e8fe\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Construction-Permanent\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.04019927978516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012466753832995892,\n                    \"Left\": 0.6187523007392883,\n                    \"Top\": 0.41133913397789,\n                    \"Width\": 0.11145012080669403\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6187523007392883,\n                        \"Y\": 0.41133913397789\n                    },\n                    {\n                        \"X\": 0.7301970720291138,\n                        \"Y\": 0.41140216588974\n                    },\n                    {\n                        \"X\": 0.7302024364471436,\n                        \"Y\": 0.4238058924674988\n                    },\n                    {\n                        \"X\": 0.6187567710876465,\n                        \"Y\": 0.42374250292778015\n                    }\n                ]\n            },\n            \"Id\": \"8434cb97-f196-46c0-a39e-693b85f4e821\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"eed12811-f301-472f-91c0-4203409bbb69\",\n                        \"28fb00c1-4148-47f5-b9ea-98a0af65e5a3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Primary Residence\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.92375946044922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012501051649451256,\n                    \"Left\": 0.7512795329093933,\n                    \"Top\": 0.4112926423549652,\n                    \"Width\": 0.12844233214855194\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7512795329093933,\n                        \"Y\": 0.4112926423549652\n                    },\n                    {\n                        \"X\": 0.8797154426574707,\n                        \"Y\": 0.411365270614624\n                    },\n                    {\n                        \"X\": 0.8797218799591064,\n                        \"Y\": 0.4237936735153198\n                    },\n                    {\n                        \"X\": 0.7512850165367126,\n                        \"Y\": 0.4237206280231476\n                    }\n                ]\n            },\n            \"Id\": \"2bf6921e-96f2-4ed7-969e-6b14bb81771c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"12e48f44-e5ab-4043-a1d0-1c20711f5cff\",\n                        \"809e8b1b-73ff-4f43-878d-be9e4e1a7e9c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Secondary Residence\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.60197448730469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009571114555001259,\n                    \"Left\": 0.9004822373390198,\n                    \"Top\": 0.4117416441440582,\n                    \"Width\": 0.06363065540790558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9004822373390198,\n                        \"Y\": 0.4117416441440582\n                    },\n                    {\n                        \"X\": 0.9641075134277344,\n                        \"Y\": 0.41177764534950256\n                    },\n                    {\n                        \"X\": 0.9641129374504089,\n                        \"Y\": 0.42131277918815613\n                    },\n                    {\n                        \"X\": 0.9004873037338257,\n                        \"Y\": 0.42127662897109985\n                    }\n                ]\n            },\n            \"Id\": \"cded42eb-f2cd-45b0-9ddd-748c6e20f3ae\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bd08bd33-2ce6-4bb3-8892-e4abba841256\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Investment\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.21121215820312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012270864099264145,\n                    \"Left\": 0.029761454090476036,\n                    \"Top\": 0.4292237460613251,\n                    \"Width\": 0.41105782985687256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029761454090476036,\n                        \"Y\": 0.4292237460613251\n                    },\n                    {\n                        \"X\": 0.44081616401672363,\n                        \"Y\": 0.4294582009315491\n                    },\n                    {\n                        \"X\": 0.44081926345825195,\n                        \"Y\": 0.4414946138858795\n                    },\n                    {\n                        \"X\": 0.029761629179120064,\n                        \"Y\": 0.44125884771347046\n                    }\n                ]\n            },\n            \"Id\": \"a918983f-5246-4bb7-917a-315fc6f0ebb9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e996c0be-dbb0-4700-bf5b-d1e0d99cadf4\",\n                        \"23e7e899-63d5-4fff-a489-a76ebfc01413\",\n                        \"3fefe643-b597-45f6-880f-8201d19224a2\",\n                        \"7ff23a7d-3a43-4227-ac95-947a2265941e\",\n                        \"61787690-998a-4e32-b1e4-220aa318c000\",\n                        \"f7097345-9cf8-436a-995c-42907464740c\",\n                        \"37c8734d-f790-4637-961f-1c33a6a45903\",\n                        \"935543b1-58a8-4111-a4ef-166cdccb7afc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Complete this line if construction or construction-permanent loan.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87380981445312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009331192821264267,\n                    \"Left\": 0.028795229271054268,\n                    \"Top\": 0.4419936239719391,\n                    \"Width\": 0.050582267343997955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028795229271054268,\n                        \"Y\": 0.4419936239719391\n                    },\n                    {\n                        \"X\": 0.07937708497047424,\n                        \"Y\": 0.4420226514339447\n                    },\n                    {\n                        \"X\": 0.07937749475240707,\n                        \"Y\": 0.45132482051849365\n                    },\n                    {\n                        \"X\": 0.028795359656214714,\n                        \"Y\": 0.4512956738471985\n                    }\n                ]\n            },\n            \"Id\": \"c01a9751-bbb0-4720-9cf8-009d33ba91ab\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1d883977-567f-4278-80e4-bf7def5b166b\",\n                        \"fb1cf6a7-0656-4a6e-bf23-11378009e040\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Year Lot\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83147430419922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01205084566026926,\n                    \"Left\": 0.1062546893954277,\n                    \"Top\": 0.44187161326408386,\n                    \"Width\": 0.07718143612146378\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1062546893954277,\n                        \"Y\": 0.44187161326408386\n                    },\n                    {\n                        \"X\": 0.18343485891819,\n                        \"Y\": 0.4419158697128296\n                    },\n                    {\n                        \"X\": 0.18343612551689148,\n                        \"Y\": 0.45392245054244995\n                    },\n                    {\n                        \"X\": 0.10625540465116501,\n                        \"Y\": 0.45387792587280273\n                    }\n                ]\n            },\n            \"Id\": \"85566cfa-b311-4219-90f6-3bb1d4e9648a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c04ce6eb-efd7-469b-9cc4-1487bcc75cb0\",\n                        \"20dbf06c-3c4c-4fe9-b48c-913e519a6230\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Original Cost\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85903930664062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011901034973561764,\n                    \"Left\": 0.2560214400291443,\n                    \"Top\": 0.44197878241539,\n                    \"Width\": 0.13060720264911652\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2560214400291443,\n                        \"Y\": 0.44197878241539\n                    },\n                    {\n                        \"X\": 0.3866259753704071,\n                        \"Y\": 0.4420537054538727\n                    },\n                    {\n                        \"X\": 0.3866286277770996,\n                        \"Y\": 0.45387980341911316\n                    },\n                    {\n                        \"X\": 0.25602319836616516,\n                        \"Y\": 0.45380446314811707\n                    }\n                ]\n            },\n            \"Id\": \"a8e6c711-b10a-470c-9bf7-82bb0dc3650c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7547a0bc-bb8d-4807-a656-fd33d2f38c00\",\n                        \"e212f0df-117e-4156-8aae-97c51dad844c\",\n                        \"9aea3614-04cd-4510-9b9e-dea2bbe58e68\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Amount Existing Liens\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.75322723388672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012273984961211681,\n                    \"Left\": 0.4171394109725952,\n                    \"Top\": 0.44168543815612793,\n                    \"Width\": 0.13979345560073853\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4171394109725952,\n                        \"Y\": 0.44168543815612793\n                    },\n                    {\n                        \"X\": 0.5569288730621338,\n                        \"Y\": 0.4417656362056732\n                    },\n                    {\n                        \"X\": 0.5569328665733337,\n                        \"Y\": 0.4539594352245331\n                    },\n                    {\n                        \"X\": 0.417142391204834,\n                        \"Y\": 0.453878790140152\n                    }\n                ]\n            },\n            \"Id\": \"dcff1c27-de7a-4330-a8d0-538c6f736b1d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1317b64c-1b0c-48ba-8c1b-866891b2a462\",\n                        \"759cbefa-3249-4cc3-bd3b-4d1f01321755\",\n                        \"a6f4cc00-15dd-4246-a206-0f6820fb9ff7\",\n                        \"0ddca5f9-bb05-447a-8426-21899f0a231c\",\n                        \"e684e6c6-2a20-4235-ab8d-f26edd5c6330\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"(a) Present Value of Lot\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.95275115966797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012223479337990284,\n                    \"Left\": 0.6008897423744202,\n                    \"Top\": 0.4415895342826843,\n                    \"Width\": 0.14855504035949707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6008897423744202,\n                        \"Y\": 0.4415895342826843\n                    },\n                    {\n                        \"X\": 0.7494394779205322,\n                        \"Y\": 0.44167473912239075\n                    },\n                    {\n                        \"X\": 0.7494447827339172,\n                        \"Y\": 0.45381301641464233\n                    },\n                    {\n                        \"X\": 0.600894033908844,\n                        \"Y\": 0.4537273347377777\n                    }\n                ]\n            },\n            \"Id\": \"928057cd-8caa-497c-8b6b-e35ea56a4fe6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"72ecd161-ebce-47cb-b04e-203e04eed0f3\",\n                        \"dabf8745-8216-4b7a-ae8e-25e51ce8959f\",\n                        \"44da5d9b-ca9c-46df-bea9-d5e005d5bf65\",\n                        \"dd10b91d-ec74-479f-b241-cb7fd54af2b9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"(b) Cost of Improvements\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72919464111328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011962253600358963,\n                    \"Left\": 0.775804877281189,\n                    \"Top\": 0.44172775745391846,\n                    \"Width\": 0.06527914106845856\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.775804877281189,\n                        \"Y\": 0.44172775745391846\n                    },\n                    {\n                        \"X\": 0.8410781025886536,\n                        \"Y\": 0.4417651891708374\n                    },\n                    {\n                        \"X\": 0.8410840034484863,\n                        \"Y\": 0.4536900222301483\n                    },\n                    {\n                        \"X\": 0.7758103013038635,\n                        \"Y\": 0.45365238189697266\n                    }\n                ]\n            },\n            \"Id\": \"d2a4a8b8-03da-4bef-b67c-f3cf1f459545\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"eeecfbef-7cbc-42a9-95e0-ae85115a48c6\",\n                        \"b0319acd-f2b4-4c35-815a-d9f04edfc874\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Total (a+b)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95269775390625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011024853214621544,\n                    \"Left\": 0.02767668478190899,\n                    \"Top\": 0.4525225758552551,\n                    \"Width\": 0.05384493246674538\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02767668478190899,\n                        \"Y\": 0.4525225758552551\n                    },\n                    {\n                        \"X\": 0.08152111619710922,\n                        \"Y\": 0.4525536000728607\n                    },\n                    {\n                        \"X\": 0.08152161538600922,\n                        \"Y\": 0.46354740858078003\n                    },\n                    {\n                        \"X\": 0.027676831930875778,\n                        \"Y\": 0.4635162055492401\n                    }\n                ]\n            },\n            \"Id\": \"33a74ab9-60d6-4bdc-b025-470b09a7b730\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e6d41258-0777-4d59-9d29-b498aaa3a399\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Acquired\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88186645507812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010699907317757607,\n                    \"Left\": 0.10614276677370071,\n                    \"Top\": 0.46737203001976013,\n                    \"Width\": 0.00785032007843256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10614276677370071,\n                        \"Y\": 0.46737203001976013\n                    },\n                    {\n                        \"X\": 0.11399240046739578,\n                        \"Y\": 0.46737658977508545\n                    },\n                    {\n                        \"X\": 0.1139930859208107,\n                        \"Y\": 0.478071928024292\n                    },\n                    {\n                        \"X\": 0.10614340752363205,\n                        \"Y\": 0.4780673384666443\n                    }\n                ]\n            },\n            \"Id\": \"98c5855e-612f-45f1-934d-89570d91ec2f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0dbdf5bc-058a-4b41-b053-1021f96eaa65\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.5809555053711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010751040652394295,\n                    \"Left\": 0.2563914358615875,\n                    \"Top\": 0.4673645794391632,\n                    \"Width\": 0.008344274945557117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2563914358615875,\n                        \"Y\": 0.4673645794391632\n                    },\n                    {\n                        \"X\": 0.26473405957221985,\n                        \"Y\": 0.4673694372177124\n                    },\n                    {\n                        \"X\": 0.26473572850227356,\n                        \"Y\": 0.47811564803123474\n                    },\n                    {\n                        \"X\": 0.25639304518699646,\n                        \"Y\": 0.47811076045036316\n                    }\n                ]\n            },\n            \"Id\": \"8801177a-dbc0-490f-b8c1-0432ee7b7317\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f802360d-d41f-4fdc-85ea-cd6082e483cf\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76797485351562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01066307257860899,\n                    \"Left\": 0.41682708263397217,\n                    \"Top\": 0.4673818349838257,\n                    \"Width\": 0.008335620164871216\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41682708263397217,\n                        \"Y\": 0.4673818349838257\n                    },\n                    {\n                        \"X\": 0.4251600503921509,\n                        \"Y\": 0.4673866629600525\n                    },\n                    {\n                        \"X\": 0.4251627027988434,\n                        \"Y\": 0.47804489731788635\n                    },\n                    {\n                        \"X\": 0.4168296754360199,\n                        \"Y\": 0.47804003953933716\n                    }\n                ]\n            },\n            \"Id\": \"a6bd9a3f-0d72-40ee-9d2e-dc40f3d39400\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1e7d727e-ced7-46b5-a1ef-0cde3dc1917d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.05095672607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01075601764023304,\n                    \"Left\": 0.6005673408508301,\n                    \"Top\": 0.46728771924972534,\n                    \"Width\": 0.008278717286884785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6005673408508301,\n                        \"Y\": 0.46728771924972534\n                    },\n                    {\n                        \"X\": 0.6088422536849976,\n                        \"Y\": 0.46729251742362976\n                    },\n                    {\n                        \"X\": 0.6088460683822632,\n                        \"Y\": 0.47804373502731323\n                    },\n                    {\n                        \"X\": 0.6005711555480957,\n                        \"Y\": 0.4780389070510864\n                    }\n                ]\n            },\n            \"Id\": \"31c2697b-093a-42af-82df-873ec6a14201\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e86dabaa-1017-4207-aaec-49a6e20c3e94\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96090698242188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010702764615416527,\n                    \"Left\": 0.776276171207428,\n                    \"Top\": 0.4673926532268524,\n                    \"Width\": 0.007917916402220726\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.776276171207428,\n                        \"Y\": 0.4673926532268524\n                    },\n                    {\n                        \"X\": 0.7841891646385193,\n                        \"Y\": 0.4673972427845001\n                    },\n                    {\n                        \"X\": 0.7841941118240356,\n                        \"Y\": 0.4780954420566559\n                    },\n                    {\n                        \"X\": 0.7762810587882996,\n                        \"Y\": 0.4780908226966858\n                    }\n                ]\n            },\n            \"Id\": \"4f96f7a6-eb08-4570-917c-e25e489b8f4f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cd0753be-2137-4f00-b3c5-361ea3723590\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.61564636230469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012594328261911869,\n                    \"Left\": 0.029327940195798874,\n                    \"Top\": 0.4861595630645752,\n                    \"Width\": 0.2727023661136627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029327940195798874,\n                        \"Y\": 0.4861595630645752\n                    },\n                    {\n                        \"X\": 0.3020281195640564,\n                        \"Y\": 0.4863192141056061\n                    },\n                    {\n                        \"X\": 0.3020302951335907,\n                        \"Y\": 0.4987538754940033\n                    },\n                    {\n                        \"X\": 0.0293281190097332,\n                        \"Y\": 0.4985933303833008\n                    }\n                ]\n            },\n            \"Id\": \"eea26c93-ecdc-4214-a86d-7fb6bed9ad3a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fe519c27-0cb5-45c2-8783-32e0a10e9a2e\",\n                        \"e4bfa8b8-d4e1-4751-999f-f60c25ae5c9c\",\n                        \"6aabc818-f87c-4555-8185-f9bdb9d39cfd\",\n                        \"ff79384f-01aa-4c56-9b16-455b41caae3b\",\n                        \"59c315cf-0e2d-4cba-b030-5f7fb59c983f\",\n                        \"014c252c-872f-4536-a14f-fa8803446bfe\",\n                        \"6184ed43-1f0c-41ad-853f-11168556e0d4\",\n                        \"2d7ffb4d-f519-4bc9-9a57-e74b4091ffbf\",\n                        \"afc811dc-0c49-4d6c-a652-b2a2c9eba651\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Complete this line if this is a refinance loan.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96000671386719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009127862751483917,\n                    \"Left\": 0.028668580576777458,\n                    \"Top\": 0.49816063046455383,\n                    \"Width\": 0.027981050312519073\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028668580576777458,\n                        \"Y\": 0.49816063046455383\n                    },\n                    {\n                        \"X\": 0.056649353355169296,\n                        \"Y\": 0.49817711114883423\n                    },\n                    {\n                        \"X\": 0.05664963275194168,\n                        \"Y\": 0.5072885155677795\n                    },\n                    {\n                        \"X\": 0.028668707236647606,\n                        \"Y\": 0.507271945476532\n                    }\n                ]\n            },\n            \"Id\": \"f56128d3-2a4b-4281-bf2a-14da20dc78cf\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6446a1f0-7a15-4f14-b351-701c3b2abeee\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Year\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81440734863281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012277886271476746,\n                    \"Left\": 0.10639187693595886,\n                    \"Top\": 0.4976131319999695,\n                    \"Width\": 0.07720021158456802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10639187693595886,\n                        \"Y\": 0.4976131319999695\n                    },\n                    {\n                        \"X\": 0.18359079957008362,\n                        \"Y\": 0.49765855073928833\n                    },\n                    {\n                        \"X\": 0.1835920810699463,\n                        \"Y\": 0.5098910331726074\n                    },\n                    {\n                        \"X\": 0.10639260709285736,\n                        \"Y\": 0.5098453164100647\n                    }\n                ]\n            },\n            \"Id\": \"138b26ba-d7f0-471b-a61b-b7678a6909e6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3f6b150f-af60-4896-a656-93761c6cbdfb\",\n                        \"5550ad46-7b09-4f72-82c6-d78d80b9c07d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Original Cost\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86990356445312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012360059656202793,\n                    \"Left\": 0.25610247254371643,\n                    \"Top\": 0.497661292552948,\n                    \"Width\": 0.13038517534732819\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25610247254371643,\n                        \"Y\": 0.497661292552948\n                    },\n                    {\n                        \"X\": 0.38648486137390137,\n                        \"Y\": 0.4977380037307739\n                    },\n                    {\n                        \"X\": 0.3864876329898834,\n                        \"Y\": 0.5100213289260864\n                    },\n                    {\n                        \"X\": 0.2561042904853821,\n                        \"Y\": 0.5099442005157471\n                    }\n                ]\n            },\n            \"Id\": \"4ca8def4-fdba-4625-b908-76e13140b406\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"91ce27ca-abdc-4b60-9656-9880349851cb\",\n                        \"9d110f48-3f14-401b-a903-583ddba37243\",\n                        \"ae9455fb-06bb-4657-8582-00789ccbaa8c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Amount Existing Liens\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6844482421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012318169698119164,\n                    \"Left\": 0.4170556664466858,\n                    \"Top\": 0.497430682182312,\n                    \"Width\": 0.1266535222530365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4170556664466858,\n                        \"Y\": 0.497430682182312\n                    },\n                    {\n                        \"X\": 0.5437052845954895,\n                        \"Y\": 0.49750518798828125\n                    },\n                    {\n                        \"X\": 0.5437091588973999,\n                        \"Y\": 0.5097488164901733\n                    },\n                    {\n                        \"X\": 0.41705864667892456,\n                        \"Y\": 0.5096738934516907\n                    }\n                ]\n            },\n            \"Id\": \"2a9b3b47-e452-4e17-abf5-29322da8cb0b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1d727035-560b-4dc4-9d5c-df0595efcb22\",\n                        \"a662ddc4-bb9f-494d-9d91-bfc24714dd91\",\n                        \"e6338039-9b56-4296-bec7-160cdfbe738d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Purpose of Refinance\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.18637084960938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011788876727223396,\n                    \"Left\": 0.6224035024642944,\n                    \"Top\": 0.4975954294204712,\n                    \"Width\": 0.13829053938388824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6224035024642944,\n                        \"Y\": 0.4975954294204712\n                    },\n                    {\n                        \"X\": 0.7606887817382812,\n                        \"Y\": 0.4976767897605896\n                    },\n                    {\n                        \"X\": 0.7606940269470215,\n                        \"Y\": 0.509384274482727\n                    },\n                    {\n                        \"X\": 0.6224077343940735,\n                        \"Y\": 0.5093024969100952\n                    }\n                ]\n            },\n            \"Id\": \"4dead338-fc64-4b8d-a07c-0c277a932c02\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b220e3bc-4601-4578-b1f3-5d55b1b1af62\",\n                        \"67ad1846-8e43-4012-b97a-a31b431e1954\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Describe Improvements\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97154235839844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009262130595743656,\n                    \"Left\": 0.8306662440299988,\n                    \"Top\": 0.5004291534423828,\n                    \"Width\": 0.03256909176707268\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8306662440299988,\n                        \"Y\": 0.5004291534423828\n                    },\n                    {\n                        \"X\": 0.8632306456565857,\n                        \"Y\": 0.5004483461380005\n                    },\n                    {\n                        \"X\": 0.863235354423523,\n                        \"Y\": 0.5096912980079651\n                    },\n                    {\n                        \"X\": 0.8306707739830017,\n                        \"Y\": 0.5096719861030579\n                    }\n                ]\n            },\n            \"Id\": \"46360055-4fbf-4ba9-b2ba-5e0720128b58\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"47ca9455-40d2-48cf-87ae-dd3937b390a9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"made\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9179458618164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009594537317752838,\n                    \"Left\": 0.892433226108551,\n                    \"Top\": 0.500300943851471,\n                    \"Width\": 0.0664633959531784\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.892433226108551,\n                        \"Y\": 0.500300943851471\n                    },\n                    {\n                        \"X\": 0.9588912725448608,\n                        \"Y\": 0.5003401041030884\n                    },\n                    {\n                        \"X\": 0.9588966369628906,\n                        \"Y\": 0.5098955035209656\n                    },\n                    {\n                        \"X\": 0.8924382328987122,\n                        \"Y\": 0.5098561644554138\n                    }\n                ]\n            },\n            \"Id\": \"1464f2a0-35b1-4ee4-bab6-d189dac20d18\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"effbc861-9822-4065-8f19-e3b80c9a1e70\",\n                        \"2d38ee50-549c-4cc1-b871-c9fb9a78e8ef\",\n                        \"2e4792d3-957b-437b-8c0d-0b1bf53c7527\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"to be made\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96675109863281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011450045742094517,\n                    \"Left\": 0.028355760499835014,\n                    \"Top\": 0.5082358717918396,\n                    \"Width\": 0.05248091742396355\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028355760499835014,\n                        \"Y\": 0.5082358717918396\n                    },\n                    {\n                        \"X\": 0.08083616942167282,\n                        \"Y\": 0.5082669258117676\n                    },\n                    {\n                        \"X\": 0.08083667606115341,\n                        \"Y\": 0.5196859240531921\n                    },\n                    {\n                        \"X\": 0.02835591696202755,\n                        \"Y\": 0.5196546912193298\n                    }\n                ]\n            },\n            \"Id\": \"58ee7932-e25b-4967-bc09-19aa17be9458\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"49b6bce4-3620-4c69-b84e-072552cf8f43\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Acquired\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.44673919677734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010415122844278812,\n                    \"Left\": 0.10593593120574951,\n                    \"Top\": 0.5268135070800781,\n                    \"Width\": 0.00841505452990532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10593593120574951,\n                        \"Y\": 0.5268135070800781\n                    },\n                    {\n                        \"X\": 0.11435031145811081,\n                        \"Y\": 0.5268185138702393\n                    },\n                    {\n                        \"X\": 0.11435098946094513,\n                        \"Y\": 0.5372285842895508\n                    },\n                    {\n                        \"X\": 0.10593654960393906,\n                        \"Y\": 0.5372235774993896\n                    }\n                ]\n            },\n            \"Id\": \"4b50c013-b0fe-44a4-9441-5eac598441ca\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"db583c43-d155-4d45-a9ea-913db0fb76dd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.2051010131836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010503621771931648,\n                    \"Left\": 0.25634142756462097,\n                    \"Top\": 0.5266968011856079,\n                    \"Width\": 0.008484494872391224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25634142756462097,\n                        \"Y\": 0.5266968011856079\n                    },\n                    {\n                        \"X\": 0.2648243308067322,\n                        \"Y\": 0.5267018675804138\n                    },\n                    {\n                        \"X\": 0.2648259401321411,\n                        \"Y\": 0.5372004508972168\n                    },\n                    {\n                        \"X\": 0.2563430070877075,\n                        \"Y\": 0.5371953845024109\n                    }\n                ]\n            },\n            \"Id\": \"15b7b5dc-fa9f-49d6-b60b-e37f8181aeb2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"86aa9e8f-dffd-48d6-a06c-b389aa547ae4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"$\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.3873291015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010065827518701553,\n                    \"Left\": 0.6221299767494202,\n                    \"Top\": 0.5278146266937256,\n                    \"Width\": 0.042038772255182266\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6221299767494202,\n                        \"Y\": 0.5278146266937256\n                    },\n                    {\n                        \"X\": 0.6641648411750793,\n                        \"Y\": 0.527839720249176\n                    },\n                    {\n                        \"X\": 0.6641687750816345,\n                        \"Y\": 0.5378804802894592\n                    },\n                    {\n                        \"X\": 0.6221336126327515,\n                        \"Y\": 0.537855327129364\n                    }\n                ]\n            },\n            \"Id\": \"40359f83-5b16-46c8-887b-92b889863a00\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"25b6007c-51ef-427b-8925-6a904d7fac64\",\n                        \"522b0acd-42aa-4213-b048-4881dc5657c6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Cost: $\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.77947235107422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011539285071194172,\n                    \"Left\": 0.028518835082650185,\n                    \"Top\": 0.5415672063827515,\n                    \"Width\": 0.19301258027553558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028518835082650185,\n                        \"Y\": 0.5415672063827515\n                    },\n                    {\n                        \"X\": 0.22152996063232422,\n                        \"Y\": 0.5416830778121948\n                    },\n                    {\n                        \"X\": 0.22153142094612122,\n                        \"Y\": 0.5531065464019775\n                    },\n                    {\n                        \"X\": 0.02851899340748787,\n                        \"Y\": 0.5529900789260864\n                    }\n                ]\n            },\n            \"Id\": \"9ecf4c5c-c7e2-428a-8e39-ef80593eedda\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e2ef7117-ab0f-4ce1-82b4-9a204f933f45\",\n                        \"bd1691bb-a5fb-4898-9790-7344fd5ea3ff\",\n                        \"e3878e03-17f6-49c8-8535-4e101380d192\",\n                        \"424c31e3-41e6-4901-b318-f63d5300ef57\",\n                        \"e08f0fc1-b0df-48a8-8386-3a4631f8b22b\",\n                        \"bed94834-903d-4dd3-88a0-6e3a135c9c04\",\n                        \"bb367b78-323e-4a6f-b3de-7a5de15053a1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Title will be held in what Name(s)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81098175048828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009987943805754185,\n                    \"Left\": 0.5654797554016113,\n                    \"Top\": 0.5413181185722351,\n                    \"Width\": 0.19380556046962738\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5654797554016113,\n                        \"Y\": 0.5413181185722351\n                    },\n                    {\n                        \"X\": 0.7592809200286865,\n                        \"Y\": 0.5414344072341919\n                    },\n                    {\n                        \"X\": 0.7592853307723999,\n                        \"Y\": 0.5513060688972473\n                    },\n                    {\n                        \"X\": 0.565483033657074,\n                        \"Y\": 0.5511892437934875\n                    }\n                ]\n            },\n            \"Id\": \"fe7e7975-6772-4e63-8b6f-bff78c4fdf96\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"eddf32e8-b038-4f9b-85d9-1df5e3512133\",\n                        \"aa213054-3af0-469c-90f0-9246a18e3d0e\",\n                        \"b4f106d9-72d7-4fc5-ae5b-64f3fa869655\",\n                        \"49d2fbd3-038b-46c5-8cba-169f9c49614c\",\n                        \"2625e666-bc15-4dee-8a79-bdadfef9f57f\",\n                        \"766e00a7-f9d5-43fa-a762-29c0d8fd750f\",\n                        \"df432aab-76af-486c-9dc6-83c4f39f4ec3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Manner in which Title will be held\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.68882751464844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009974389337003231,\n                    \"Left\": 0.8330783843994141,\n                    \"Top\": 0.5413691997528076,\n                    \"Width\": 0.12288762629032135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8330783843994141,\n                        \"Y\": 0.5413691997528076\n                    },\n                    {\n                        \"X\": 0.9559604525566101,\n                        \"Y\": 0.5414429306983948\n                    },\n                    {\n                        \"X\": 0.9559659957885742,\n                        \"Y\": 0.5513436198234558\n                    },\n                    {\n                        \"X\": 0.8330832123756409,\n                        \"Y\": 0.55126953125\n                    }\n                ]\n            },\n            \"Id\": \"824dac46-5b4a-47b3-b52c-c7f785376698\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e04676f1-5b16-4cb4-b1f5-21d8f9dbeb26\",\n                        \"bf82ad16-656d-4007-9e1b-4c90d5030bc6\",\n                        \"1c73ab34-13b9-4655-9a37-fa5caa86d26b\",\n                        \"ed15c1cc-84cd-415f-ba5c-5948275f047b\",\n                        \"734d5324-d9b1-4ce2-8c99-9c654a8f740f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Estate will be held in:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84894561767578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010630917735397816,\n                    \"Left\": 0.03021317720413208,\n                    \"Top\": 0.560949444770813,\n                    \"Width\": 0.09193149209022522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03021317720413208,\n                        \"Y\": 0.560949444770813\n                    },\n                    {\n                        \"X\": 0.1221439391374588,\n                        \"Y\": 0.5610050559043884\n                    },\n                    {\n                        \"X\": 0.1221446692943573,\n                        \"Y\": 0.5715803503990173\n                    },\n                    {\n                        \"X\": 0.030213333666324615,\n                        \"Y\": 0.571524441242218\n                    }\n                ]\n            },\n            \"Id\": \"7d5c14d5-21f3-4846-9f96-3c422a8ac171\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dfcba9b9-b2ce-4d96-8122-8391c809b3ca\",\n                        \"48117f97-32c1-457e-a9b4-b029df8ac663\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Carlos Salazar\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89295959472656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01191824022680521,\n                    \"Left\": 0.8517646193504333,\n                    \"Top\": 0.55796879529953,\n                    \"Width\": 0.06640610098838806\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8517646193504333,\n                        \"Y\": 0.55796879529953\n                    },\n                    {\n                        \"X\": 0.9181643128395081,\n                        \"Y\": 0.5580089092254639\n                    },\n                    {\n                        \"X\": 0.918170690536499,\n                        \"Y\": 0.5698869824409485\n                    },\n                    {\n                        \"X\": 0.8517705202102661,\n                        \"Y\": 0.5698466897010803\n                    }\n                ]\n            },\n            \"Id\": \"7c0c9d5d-58d2-44c1-9b72-7cf12ce5dfe7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"15c62bd5-3ac8-496f-8fce-5cdef8afd087\",\n                        \"14cb9679-c9c9-45fc-beb8-ff37999cc5d1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Fee Simple\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.31560516357422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010518518276512623,\n                    \"Left\": 0.8520355224609375,\n                    \"Top\": 0.5723206996917725,\n                    \"Width\": 0.09010174870491028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8520355224609375,\n                        \"Y\": 0.5723206996917725\n                    },\n                    {\n                        \"X\": 0.9421314597129822,\n                        \"Y\": 0.5723755359649658\n                    },\n                    {\n                        \"X\": 0.9421372413635254,\n                        \"Y\": 0.5828392505645752\n                    },\n                    {\n                        \"X\": 0.8520407676696777,\n                        \"Y\": 0.5827841758728027\n                    }\n                ]\n            },\n            \"Id\": \"312252ff-83b9-45c5-a7e3-1f8afbeb7fea\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5ab2a09c-e417-4c2f-a9f1-42ba449dc986\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Leasehold(show\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.07217407226562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012769004330039024,\n                    \"Left\": 0.028850708156824112,\n                    \"Top\": 0.5845931768417358,\n                    \"Width\": 0.5015644431114197\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028850708156824112,\n                        \"Y\": 0.5845931768417358\n                    },\n                    {\n                        \"X\": 0.5304112434387207,\n                        \"Y\": 0.58489990234375\n                    },\n                    {\n                        \"X\": 0.5304151177406311,\n                        \"Y\": 0.5973621606826782\n                    },\n                    {\n                        \"X\": 0.02885088138282299,\n                        \"Y\": 0.5970537662506104\n                    }\n                ]\n            },\n            \"Id\": \"2590f9f6-921f-4d3e-bb40-6545ed6d274c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"be004b45-7400-4386-b395-3bec18acb3b7\",\n                        \"0d15c540-60b1-461a-af16-ed2994881093\",\n                        \"767f2731-2b2a-434e-8dd0-f524531e866a\",\n                        \"99595545-0285-4892-816e-742761ccbda7\",\n                        \"aa0916bf-ed26-4472-b336-e987dad2195a\",\n                        \"94f48348-e369-4a6a-8e27-7fdf970a1a66\",\n                        \"1abc9ecc-953f-4108-bdf1-ae18550e7732\",\n                        \"1a817014-47f3-4321-bfd3-31808bed56e2\",\n                        \"dee704a1-6a0e-49d9-bbf0-9ec967c03180\",\n                        \"26dec191-2cb3-436b-89cc-16442833ea60\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Source of Down Payment Settlement Charges and/or Subordinate Financing (explain)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.37984466552734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010107801295816898,\n                    \"Left\": 0.8521527647972107,\n                    \"Top\": 0.5843507051467896,\n                    \"Width\": 0.07678525149822235\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8521527647972107,\n                        \"Y\": 0.5843507051467896\n                    },\n                    {\n                        \"X\": 0.9289324879646301,\n                        \"Y\": 0.5843976736068726\n                    },\n                    {\n                        \"X\": 0.9289379715919495,\n                        \"Y\": 0.5944585204124451\n                    },\n                    {\n                        \"X\": 0.8521577715873718,\n                        \"Y\": 0.5944113731384277\n                    }\n                ]\n            },\n            \"Id\": \"d97c354d-480a-4a84-ac96-80c0d5943ad0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5965f50a-bdf3-420a-bc41-39bd3e273f90\",\n                        \"70eca811-3d0f-4449-9e65-504eda237c7c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"expiration date)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.17723083496094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013312059454619884,\n                    \"Left\": 0.031580016016960144,\n                    \"Top\": 0.5999510288238525,\n                    \"Width\": 0.10489585995674133\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031580016016960144,\n                        \"Y\": 0.5999510288238525\n                    },\n                    {\n                        \"X\": 0.1364748477935791,\n                        \"Y\": 0.6000155806541443\n                    },\n                    {\n                        \"X\": 0.13647587597370148,\n                        \"Y\": 0.6132630705833435\n                    },\n                    {\n                        \"X\": 0.03158022090792656,\n                        \"Y\": 0.6131981611251831\n                    }\n                ]\n            },\n            \"Id\": \"8a903663-fe62-4d7c-a892-a9002f8f0c0b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"124ef363-f342-4e3c-b8c9-3fe4ceb75af7\",\n                        \"3d291506-f023-41bb-a892-a4f5056889db\",\n                        \"b94ebca0-c270-4507-9be9-8e845b97b99e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Salary + Savings\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96639251708984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010448138229548931,\n                    \"Left\": 0.1856619119644165,\n                    \"Top\": 0.631523072719574,\n                    \"Width\": 0.06552687287330627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1856619119644165,\n                        \"Y\": 0.631523072719574\n                    },\n                    {\n                        \"X\": 0.251187264919281,\n                        \"Y\": 0.6315639615058899\n                    },\n                    {\n                        \"X\": 0.2511887848377228,\n                        \"Y\": 0.641971230506897\n                    },\n                    {\n                        \"X\": 0.18566301465034485,\n                        \"Y\": 0.6419301629066467\n                    }\n                ]\n            },\n            \"Id\": \"4e33e0f8-643b-432c-8ba7-cfbbfdb9258a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"257b8c91-863c-4d04-90a5-fe4ceffd3f90\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Borrower\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80585479736328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01087050512433052,\n                    \"Left\": 0.3762921094894409,\n                    \"Top\": 0.6311225295066833,\n                    \"Width\": 0.2132253348827362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3762921094894409,\n                        \"Y\": 0.6311225295066833\n                    },\n                    {\n                        \"X\": 0.5895137190818787,\n                        \"Y\": 0.6312555074691772\n                    },\n                    {\n                        \"X\": 0.5895174741744995,\n                        \"Y\": 0.6419930458068848\n                    },\n                    {\n                        \"X\": 0.37629446387290955,\n                        \"Y\": 0.6418594121932983\n                    }\n                ]\n            },\n            \"Id\": \"f34f5868-0a02-47e1-9a29-2cdc8be88fca\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"91044934-2374-41b7-bada-695591c203f2\",\n                        \"4afa481e-3d1e-4baf-877c-9d4c7d28d16c\",\n                        \"802ce0fb-3236-4af7-9929-e3f9d08dc092\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"III. BORROWER INFORMATION\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.78992462158203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01099130418151617,\n                    \"Left\": 0.7012113928794861,\n                    \"Top\": 0.6311998963356018,\n                    \"Width\": 0.08968552201986313\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7012113928794861,\n                        \"Y\": 0.6311998963356018\n                    },\n                    {\n                        \"X\": 0.7908918857574463,\n                        \"Y\": 0.6312558650970459\n                    },\n                    {\n                        \"X\": 0.7908969521522522,\n                        \"Y\": 0.6421912312507629\n                    },\n                    {\n                        \"X\": 0.701215922832489,\n                        \"Y\": 0.6421350240707397\n                    }\n                ]\n            },\n            \"Id\": \"3302d438-adfd-424b-9e84-52350a9129c2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e97e3d8c-40b6-4c9c-bd24-1a24cb247d45\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Co-Borrower\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.36652374267578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012250376865267754,\n                    \"Left\": 0.028986094519495964,\n                    \"Top\": 0.6465937495231628,\n                    \"Width\": 0.28249239921569824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028986094519495964,\n                        \"Y\": 0.6465937495231628\n                    },\n                    {\n                        \"X\": 0.31147629022598267,\n                        \"Y\": 0.6467711329460144\n                    },\n                    {\n                        \"X\": 0.31147849559783936,\n                        \"Y\": 0.6588441133499146\n                    },\n                    {\n                        \"X\": 0.028986265882849693,\n                        \"Y\": 0.6586658358573914\n                    }\n                ]\n            },\n            \"Id\": \"0b754a00-d7bc-4c15-84e3-141b450ce483\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4eff9f87-c4e5-4f99-aefb-0cb43107336c\",\n                        \"013135ba-2878-4c65-8332-ba686a62cc87\",\n                        \"d0852e49-d7f7-4ce9-b7f6-4190e4b8f8df\",\n                        \"0548bcc3-efe1-4267-9b38-04acdab6b5a5\",\n                        \"394ea23a-0e7c-4305-9b06-7a0bc216a03d\",\n                        \"8c84dae1-cf6e-499d-9b52-b036d613bc6c\",\n                        \"ab0eeee4-c656-4c91-b11b-cff0c4595cbf\",\n                        \"cd6cd51e-8fa9-40a3-978c-f6d7cdc6f2e6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Borrower's Name (include Jr. or Sr. if applicable)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55423736572266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012371017597615719,\n                    \"Left\": 0.4980716407299042,\n                    \"Top\": 0.6463193893432617,\n                    \"Width\": 0.30381011962890625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4980716407299042,\n                        \"Y\": 0.6463193893432617\n                    },\n                    {\n                        \"X\": 0.8018760681152344,\n                        \"Y\": 0.646510124206543\n                    },\n                    {\n                        \"X\": 0.8018817901611328,\n                        \"Y\": 0.6586904525756836\n                    },\n                    {\n                        \"X\": 0.4980751872062683,\n                        \"Y\": 0.6584987044334412\n                    }\n                ]\n            },\n            \"Id\": \"92c1ba4d-2683-4dc5-95ea-1c27e104cf0d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5486c5c7-81a1-460b-8583-10c00f99b4bc\",\n                        \"e8c600f6-516c-48bc-bd6b-f29787fca137\",\n                        \"23071399-3347-4536-b90a-9a58565a3e48\",\n                        \"ac49d652-321c-49f8-aa07-f27bf0f3dbcf\",\n                        \"1dceb08e-874c-443e-84f9-3ec09b62806d\",\n                        \"e846d977-5379-45b4-b2d8-404531aa0cc6\",\n                        \"a80c2624-8373-4441-8ef8-184b9a109f70\",\n                        \"7f7dff4a-5334-4f7d-b7bb-3cb2773085d6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Co-Borrower's Name (include Jr. or Sr. if applicable)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85693359375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01095588132739067,\n                    \"Left\": 0.031201936304569244,\n                    \"Top\": 0.6637700200080872,\n                    \"Width\": 0.09198568761348724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031201936304569244,\n                        \"Y\": 0.6637700200080872\n                    },\n                    {\n                        \"X\": 0.1231868639588356,\n                        \"Y\": 0.6638281941413879\n                    },\n                    {\n                        \"X\": 0.12318762391805649,\n                        \"Y\": 0.6747258901596069\n                    },\n                    {\n                        \"X\": 0.031202103942632675,\n                        \"Y\": 0.6746674180030823\n                    }\n                ]\n            },\n            \"Id\": \"9dd7635e-a202-4000-b8e0-bad723819c77\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"412c0a72-1c20-4ed9-9fc7-4fd8e8a52d2e\",\n                        \"0f503fcd-c496-4123-b593-ccf646fba397\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Carlos Salazar\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91110229492188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010291974991559982,\n                    \"Left\": 0.5003993511199951,\n                    \"Top\": 0.6641669869422913,\n                    \"Width\": 0.024334821850061417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5003993511199951,\n                        \"Y\": 0.6641669869422913\n                    },\n                    {\n                        \"X\": 0.5247309803962708,\n                        \"Y\": 0.6641823649406433\n                    },\n                    {\n                        \"X\": 0.5247341394424438,\n                        \"Y\": 0.674458920955658\n                    },\n                    {\n                        \"X\": 0.5004023313522339,\n                        \"Y\": 0.6744434833526611\n                    }\n                ]\n            },\n            \"Id\": \"0eefa58c-a828-44db-b5f4-a5a64f064bb4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c1b1ea86-b20d-4615-bbd1-95eb5e1fb856\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8829116821289,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011539843864738941,\n                    \"Left\": 0.02886977232992649,\n                    \"Top\": 0.6862442493438721,\n                    \"Width\": 0.12401218712329865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02886977232992649,\n                        \"Y\": 0.6862442493438721\n                    },\n                    {\n                        \"X\": 0.1528809666633606,\n                        \"Y\": 0.6863234639167786\n                    },\n                    {\n                        \"X\": 0.15288196504116058,\n                        \"Y\": 0.6977841258049011\n                    },\n                    {\n                        \"X\": 0.028869932517409325,\n                        \"Y\": 0.697704553604126\n                    }\n                ]\n            },\n            \"Id\": \"f597be03-e0f0-449a-9e5c-0a811c4c0974\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"21967552-743a-48a1-b1d6-ef7a3f748dd1\",\n                        \"5f078e06-ce86-47d2-b32e-1486b5615076\",\n                        \"a30afe4d-e244-4744-bc00-da22f81a8146\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Social Security Number\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.7086181640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011145397089421749,\n                    \"Left\": 0.16013431549072266,\n                    \"Top\": 0.6863749027252197,\n                    \"Width\": 0.15805856883525848\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16013431549072266,\n                        \"Y\": 0.6863749027252197\n                    },\n                    {\n                        \"X\": 0.3181908428668976,\n                        \"Y\": 0.6864758133888245\n                    },\n                    {\n                        \"X\": 0.31819286942481995,\n                        \"Y\": 0.6975203156471252\n                    },\n                    {\n                        \"X\": 0.16013531386852264,\n                        \"Y\": 0.6974189281463623\n                    }\n                ]\n            },\n            \"Id\": \"3f8d0fe9-802e-40c3-a423-1fe36946601f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7fffa2c2-9061-43d8-950b-38a6cb1b76c5\",\n                        \"a670e9dc-5c3e-4e4e-b79c-0f02123c2444\",\n                        \"4d997719-3c22-4b3d-a89b-7a3f6016ad80\",\n                        \"fdcc3e16-4e41-4a69-a308-091532ff397d\",\n                        \"6fd77af1-9cd3-424d-8058-6193774a6ab5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Home Phone (incl. area code)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.81854248046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011575575917959213,\n                    \"Left\": 0.3243991732597351,\n                    \"Top\": 0.6861041784286499,\n                    \"Width\": 0.0997675210237503\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3243991732597351,\n                        \"Y\": 0.6861041784286499\n                    },\n                    {\n                        \"X\": 0.424163818359375,\n                        \"Y\": 0.6861678957939148\n                    },\n                    {\n                        \"X\": 0.4241666793823242,\n                        \"Y\": 0.6976797580718994\n                    },\n                    {\n                        \"X\": 0.324401319026947,\n                        \"Y\": 0.6976158022880554\n                    }\n                ]\n            },\n            \"Id\": \"7cfb9836-8218-463a-8932-e3ec24e57b15\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e747b370-af9d-4872-b348-8f1618cf4f4a\",\n                        \"bc9c3727-be46-4e34-bc24-4694352feed4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"DOB (mm/dd/yyyy)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.68751525878906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0096052261069417,\n                    \"Left\": 0.4284471571445465,\n                    \"Top\": 0.6862391233444214,\n                    \"Width\": 0.06081749498844147\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4284471571445465,\n                        \"Y\": 0.6862391233444214\n                    },\n                    {\n                        \"X\": 0.4892619252204895,\n                        \"Y\": 0.6862779259681702\n                    },\n                    {\n                        \"X\": 0.48926466703414917,\n                        \"Y\": 0.6958443522453308\n                    },\n                    {\n                        \"X\": 0.4284495413303375,\n                        \"Y\": 0.6958053708076477\n                    }\n                ]\n            },\n            \"Id\": \"6827ad93-0c94-4a6b-8a0d-8e7ce2154119\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7fc4a198-6e82-45a0-a9c9-6930f8e0c0b5\",\n                        \"184ec93a-965f-4369-9773-c1588f0923d3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Yrs. School\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.90541076660156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011413595639169216,\n                    \"Left\": 0.49826085567474365,\n                    \"Top\": 0.6863031387329102,\n                    \"Width\": 0.12431783229112625\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49826085567474365,\n                        \"Y\": 0.6863031387329102\n                    },\n                    {\n                        \"X\": 0.6225745677947998,\n                        \"Y\": 0.6863824725151062\n                    },\n                    {\n                        \"X\": 0.6225786805152893,\n                        \"Y\": 0.6977167129516602\n                    },\n                    {\n                        \"X\": 0.4982641637325287,\n                        \"Y\": 0.6976369619369507\n                    }\n                ]\n            },\n            \"Id\": \"2f3521ec-1371-42de-b673-4bc57b04fdbb\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"86d71ba5-bce6-4eac-8f4c-3cc23b36d8e2\",\n                        \"37ef699c-5c14-4467-a0a7-feb4d324487b\",\n                        \"7b5b2457-7e12-4ef7-8838-960ec10b23b3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Social Security Number\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.43263244628906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010949770919978619,\n                    \"Left\": 0.6309805512428284,\n                    \"Top\": 0.6864575147628784,\n                    \"Width\": 0.15460267663002014\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309805512428284,\n                        \"Y\": 0.6864575147628784\n                    },\n                    {\n                        \"X\": 0.785578191280365,\n                        \"Y\": 0.6865562200546265\n                    },\n                    {\n                        \"X\": 0.7855831980705261,\n                        \"Y\": 0.6974073052406311\n                    },\n                    {\n                        \"X\": 0.6309845447540283,\n                        \"Y\": 0.6973081231117249\n                    }\n                ]\n            },\n            \"Id\": \"ead4449d-080e-466c-b2ea-9820ffe484f4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4c87574e-15d4-4f70-b7a0-c4d390170f25\",\n                        \"91be6586-7695-4835-a4b6-b0f83f74fd0b\",\n                        \"9458017c-5c2b-438b-9c93-acd34e5efaa9\",\n                        \"71dc1374-b943-45a4-994f-87bc39e332ec\",\n                        \"2e6f8ed5-68d2-4457-b744-1826c60491a7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Home Phone (incl. area code)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86431884765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011631517671048641,\n                    \"Left\": 0.7928788065910339,\n                    \"Top\": 0.6863107681274414,\n                    \"Width\": 0.09976795315742493\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7928788065910339,\n                        \"Y\": 0.6863107681274414\n                    },\n                    {\n                        \"X\": 0.8926407098770142,\n                        \"Y\": 0.6863744258880615\n                    },\n                    {\n                        \"X\": 0.8926467895507812,\n                        \"Y\": 0.6979422569274902\n                    },\n                    {\n                        \"X\": 0.7928842306137085,\n                        \"Y\": 0.6978783011436462\n                    }\n                ]\n            },\n            \"Id\": \"e9a5dc2c-c679-492c-a6bb-c4e0e573e291\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d80dc99f-2a68-463d-ad64-04f84934cc16\",\n                        \"dbdf48d7-61c6-4537-866a-4df9ba228d7e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"DOB (mm/dd/yyyy)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.9542465209961,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009536225348711014,\n                    \"Left\": 0.8975831866264343,\n                    \"Top\": 0.6862182021141052,\n                    \"Width\": 0.06202482432126999\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8975831866264343,\n                        \"Y\": 0.6862182021141052\n                    },\n                    {\n                        \"X\": 0.9596026539802551,\n                        \"Y\": 0.6862578392028809\n                    },\n                    {\n                        \"X\": 0.9596080183982849,\n                        \"Y\": 0.6957544684410095\n                    },\n                    {\n                        \"X\": 0.8975881934165955,\n                        \"Y\": 0.6957147121429443\n                    }\n                ]\n            },\n            \"Id\": \"bb517866-0ba0-4918-96cf-cf6e797b10a3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5a9943c9-49cd-4df2-9a80-7e4adde28972\",\n                        \"876fc3f6-9aac-4dbd-bf52-5294efb0ac3d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Yrs. School\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82038879394531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010255850851535797,\n                    \"Left\": 0.029408155009150505,\n                    \"Top\": 0.7034928202629089,\n                    \"Width\": 0.07983744144439697\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029408155009150505,\n                        \"Y\": 0.7034928202629089\n                    },\n                    {\n                        \"X\": 0.10924496501684189,\n                        \"Y\": 0.7035441398620605\n                    },\n                    {\n                        \"X\": 0.10924559831619263,\n                        \"Y\": 0.7137486338615417\n                    },\n                    {\n                        \"X\": 0.029408302158117294,\n                        \"Y\": 0.713697075843811\n                    }\n                ]\n            },\n            \"Id\": \"fd2e50e3-60e4-4732-9f7f-3612d36fb699\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"957ea42a-0c89-4cb6-a8f7-902184f627ba\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"999-99-9999\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.1878433227539,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010488529689610004,\n                    \"Left\": 0.163484126329422,\n                    \"Top\": 0.7032921314239502,\n                    \"Width\": 0.10621122270822525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.163484126329422,\n                        \"Y\": 0.7032921314239502\n                    },\n                    {\n                        \"X\": 0.2696937024593353,\n                        \"Y\": 0.703360378742218\n                    },\n                    {\n                        \"X\": 0.26969534158706665,\n                        \"Y\": 0.7137806415557861\n                    },\n                    {\n                        \"X\": 0.1634850949048996,\n                        \"Y\": 0.7137120366096497\n                    }\n                ]\n            },\n            \"Id\": \"c2bd0caa-46c7-465c-8ae3-f3a051948442\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ecda1df9-6957-4f38-8677-4d91b6704edc\",\n                        \"55e35b5d-0d40-4660-917d-e5de345df8f3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"+1 123-456-7890\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87483978271484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009990944527089596,\n                    \"Left\": 0.3268856108188629,\n                    \"Top\": 0.703549861907959,\n                    \"Width\": 0.061593376100063324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3268856108188629,\n                        \"Y\": 0.703549861907959\n                    },\n                    {\n                        \"X\": 0.38847672939300537,\n                        \"Y\": 0.7035894989967346\n                    },\n                    {\n                        \"X\": 0.38847896456718445,\n                        \"Y\": 0.71354079246521\n                    },\n                    {\n                        \"X\": 0.32688748836517334,\n                        \"Y\": 0.7135010361671448\n                    }\n                ]\n            },\n            \"Id\": \"f07853d6-92a0-444a-8562-5ae9691c6df2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e52cfe5e-f7e6-4aa6-ae77-1931c7a5a38d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"1/18/1958\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94857025146484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009996534325182438,\n                    \"Left\": 0.43266916275024414,\n                    \"Top\": 0.703540027141571,\n                    \"Width\": 0.014878752641379833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43266916275024414,\n                        \"Y\": 0.703540027141571\n                    },\n                    {\n                        \"X\": 0.4475453197956085,\n                        \"Y\": 0.7035496234893799\n                    },\n                    {\n                        \"X\": 0.44754791259765625,\n                        \"Y\": 0.7135365605354309\n                    },\n                    {\n                        \"X\": 0.4326716959476471,\n                        \"Y\": 0.7135269641876221\n                    }\n                ]\n            },\n            \"Id\": \"41012507-b4df-4927-898c-a3af7bf11b22\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4f5ac4bc-0071-4200-a1d1-5747feefe542\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"12\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8843765258789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01007262896746397,\n                    \"Left\": 0.4987274706363678,\n                    \"Top\": 0.7033964395523071,\n                    \"Width\": 0.024281758815050125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4987274706363678,\n                        \"Y\": 0.7033964395523071\n                    },\n                    {\n                        \"X\": 0.5230061411857605,\n                        \"Y\": 0.7034120559692383\n                    },\n                    {\n                        \"X\": 0.5230092406272888,\n                        \"Y\": 0.7134690880775452\n                    },\n                    {\n                        \"X\": 0.4987303912639618,\n                        \"Y\": 0.7134534120559692\n                    }\n                ]\n            },\n            \"Id\": \"1b80ce42-1e4f-4017-bf01-9fdb1abb0c23\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e63d4318-3b48-45c7-b1b9-b5c20398a1c1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87014770507812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01026584580540657,\n                    \"Left\": 0.6326461434364319,\n                    \"Top\": 0.7033664584159851,\n                    \"Width\": 0.024186013266444206\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6326461434364319,\n                        \"Y\": 0.7033664584159851\n                    },\n                    {\n                        \"X\": 0.6568282246589661,\n                        \"Y\": 0.7033820152282715\n                    },\n                    {\n                        \"X\": 0.6568321585655212,\n                        \"Y\": 0.7136322855949402\n                    },\n                    {\n                        \"X\": 0.6326499581336975,\n                        \"Y\": 0.7136167287826538\n                    }\n                ]\n            },\n            \"Id\": \"622b2a2a-9e63-4df3-99f8-57b929b797ac\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"acb1b2cd-9848-4cb2-93f8-30d8d03f3ca3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85660552978516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010187970474362373,\n                    \"Left\": 0.7944298982620239,\n                    \"Top\": 0.7034378051757812,\n                    \"Width\": 0.023712897673249245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7944298982620239,\n                        \"Y\": 0.7034378051757812\n                    },\n                    {\n                        \"X\": 0.8181378841400146,\n                        \"Y\": 0.7034530639648438\n                    },\n                    {\n                        \"X\": 0.8181427717208862,\n                        \"Y\": 0.7136257886886597\n                    },\n                    {\n                        \"X\": 0.7944346070289612,\n                        \"Y\": 0.7136104702949524\n                    }\n                ]\n            },\n            \"Id\": \"738155e3-7b2f-4a55-8eec-40f59524a507\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"25138754-290c-42e7-9481-c14b2843767d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86756896972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010151931084692478,\n                    \"Left\": 0.8997962474822998,\n                    \"Top\": 0.7034041881561279,\n                    \"Width\": 0.023997481912374496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8997962474822998,\n                        \"Y\": 0.7034041881561279\n                    },\n                    {\n                        \"X\": 0.9237882494926453,\n                        \"Y\": 0.7034196257591248\n                    },\n                    {\n                        \"X\": 0.9237937331199646,\n                        \"Y\": 0.7135561108589172\n                    },\n                    {\n                        \"X\": 0.8998016119003296,\n                        \"Y\": 0.7135406136512756\n                    }\n                ]\n            },\n            \"Id\": \"9eb41dc4-f332-44ca-b297-35b61679abca\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3493e480-ce00-4d92-b437-40b64bf4354e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.34086608886719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012894111685454845,\n                    \"Left\": 0.34193891286849976,\n                    \"Top\": 0.7216005325317383,\n                    \"Width\": 0.14003512263298035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34193891286849976,\n                        \"Y\": 0.7216005325317383\n                    },\n                    {\n                        \"X\": 0.4819704294204712,\n                        \"Y\": 0.7216912508010864\n                    },\n                    {\n                        \"X\": 0.4819740355014801,\n                        \"Y\": 0.7344946265220642\n                    },\n                    {\n                        \"X\": 0.3419414758682251,\n                        \"Y\": 0.7344034314155579\n                    }\n                ]\n            },\n            \"Id\": \"c4ce355e-41ee-45b2-9b3d-b0f1ccbc47ea\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f642c6d2-fbc7-4395-ab16-7fe44dc51346\",\n                        \"ccf454e5-90b9-466d-977c-dfedb8e66177\",\n                        \"8ac7b8df-7a84-4899-a5a5-08359972d2b1\",\n                        \"24280106-60df-41a8-ae2d-2809c80b93e3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Dependents (not listed by\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.78483581542969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012933964841067791,\n                    \"Left\": 0.8115262389183044,\n                    \"Top\": 0.7216503024101257,\n                    \"Width\": 0.14001372456550598\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8115262389183044,\n                        \"Y\": 0.7216503024101257\n                    },\n                    {\n                        \"X\": 0.951532781124115,\n                        \"Y\": 0.7217409610748291\n                    },\n                    {\n                        \"X\": 0.951539933681488,\n                        \"Y\": 0.7345842719078064\n                    },\n                    {\n                        \"X\": 0.8115323185920715,\n                        \"Y\": 0.7344930768013\n                    }\n                ]\n            },\n            \"Id\": \"20cce759-fdad-49ab-879b-26d5a0b94e34\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f1b7f189-e0e4-4535-98a0-3548b75adbc2\",\n                        \"e8923551-06db-452a-be09-ef8087d7afc6\",\n                        \"f846cf48-d07b-4230-89c7-8034e763c53f\",\n                        \"06305869-4347-49eb-a6db-6bcef000de58\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Dependents (not listed by\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.728515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01232544519007206,\n                    \"Left\": 0.046292394399642944,\n                    \"Top\": 0.729302704334259,\n                    \"Width\": 0.27628013491630554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.046292394399642944,\n                        \"Y\": 0.729302704334259\n                    },\n                    {\n                        \"X\": 0.322570264339447,\n                        \"Y\": 0.7294822931289673\n                    },\n                    {\n                        \"X\": 0.3225725293159485,\n                        \"Y\": 0.7416281700134277\n                    },\n                    {\n                        \"X\": 0.04629268869757652,\n                        \"Y\": 0.7414477467536926\n                    }\n                ]\n            },\n            \"Id\": \"c93e25ae-74b6-4417-9a0b-3f370ea15931\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"564c8469-20dc-4ad7-aae3-deb11d6912ac\",\n                        \"f8c9db4d-29aa-468e-abeb-30e24eb5ac35\",\n                        \"96de72a9-61ce-4f86-9489-cee8b35d3e18\",\n                        \"6b3ec377-ccf7-4be3-b0d2-fa78010c3bf3\",\n                        \"d1fbf2b4-6629-433a-910f-59100abef55a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Married (includes registered domestic partners)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 88.23558044433594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01044823881238699,\n                    \"Left\": 0.4193476140499115,\n                    \"Top\": 0.7316555976867676,\n                    \"Width\": 0.06843683123588562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4193476140499115,\n                        \"Y\": 0.7316555976867676\n                    },\n                    {\n                        \"X\": 0.48778146505355835,\n                        \"Y\": 0.7317001223564148\n                    },\n                    {\n                        \"X\": 0.4877844452857971,\n                        \"Y\": 0.7421038150787354\n                    },\n                    {\n                        \"X\": 0.41935014724731445,\n                        \"Y\": 0.7420591115951538\n                    }\n                ]\n            },\n            \"Id\": \"0ae2b6a2-4d0c-4a7b-8226-9cd1fb5847fe\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"68619245-3e81-48a5-869b-a71de53f50b3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Co-Borrower)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.82075500488281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012053204700350761,\n                    \"Left\": 0.5156951546669006,\n                    \"Top\": 0.7294331192970276,\n                    \"Width\": 0.2761000096797943\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5156951546669006,\n                        \"Y\": 0.7294331192970276\n                    },\n                    {\n                        \"X\": 0.7917896509170532,\n                        \"Y\": 0.7296125292778015\n                    },\n                    {\n                        \"X\": 0.7917951941490173,\n                        \"Y\": 0.7414863705635071\n                    },\n                    {\n                        \"X\": 0.5156987905502319,\n                        \"Y\": 0.7413060665130615\n                    }\n                ]\n            },\n            \"Id\": \"5957712a-ab22-44bf-9fad-96029b709b8c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"63a06206-01b0-4168-a783-ecd9b5ada195\",\n                        \"c1f7591c-a3bd-43a9-8876-79ee82d024c9\",\n                        \"a721fa7c-50aa-4c7d-985b-08a42bcbadf7\",\n                        \"39b1ac54-eff2-453d-a159-2d0e1d6689d4\",\n                        \"b3a0dde6-0461-4eb5-81bd-6c9e62227548\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Married (includes registered domestic partners)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.07864379882812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00997901614755392,\n                    \"Left\": 0.8884282112121582,\n                    \"Top\": 0.7321670055389404,\n                    \"Width\": 0.050126250833272934\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8884282112121582,\n                        \"Y\": 0.7321670055389404\n                    },\n                    {\n                        \"X\": 0.9385489821434021,\n                        \"Y\": 0.7321996092796326\n                    },\n                    {\n                        \"X\": 0.9385544657707214,\n                        \"Y\": 0.7421460151672363\n                    },\n                    {\n                        \"X\": 0.8884333968162537,\n                        \"Y\": 0.7421132922172546\n                    }\n                ]\n            },\n            \"Id\": \"53317e69-edef-4d52-98c0-d4d81bbd93ac\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ddc462ab-ccd7-4442-b1ac-f3bbd70e7ba9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Borrower)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 92.63533020019531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012150155380368233,\n                    \"Left\": 0.044532228261232376,\n                    \"Top\": 0.7473484873771667,\n                    \"Width\": 0.27715447545051575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.044532228261232376,\n                        \"Y\": 0.7473484873771667\n                    },\n                    {\n                        \"X\": 0.32168447971343994,\n                        \"Y\": 0.747529923915863\n                    },\n                    {\n                        \"X\": 0.321686714887619,\n                        \"Y\": 0.7594985961914062\n                    },\n                    {\n                        \"X\": 0.04453250765800476,\n                        \"Y\": 0.7593162655830383\n                    }\n                ]\n            },\n            \"Id\": \"ea5325e0-39bf-487f-a655-6f01475b1038\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"64182418-17a8-46e4-9b80-625e8df8d842\",\n                        \"5be13eb5-2bc0-4149-afee-7b64db7ea03d\",\n                        \"6c43dfbb-e697-4cee-943d-341aa7f72b2e\",\n                        \"fa89a2de-52fc-4f89-bd52-5e50efe12fbd\",\n                        \"74005a8c-851c-4d08-a5d5-2b5e0aa30447\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Unmarried (includes single, divorced, widowed)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.79824829101562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009241163730621338,\n                    \"Left\": 0.3476564884185791,\n                    \"Top\": 0.7477311491966248,\n                    \"Width\": 0.020525366067886353\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3476564884185791,\n                        \"Y\": 0.7477311491966248\n                    },\n                    {\n                        \"X\": 0.36817988753318787,\n                        \"Y\": 0.7477445602416992\n                    },\n                    {\n                        \"X\": 0.36818188428878784,\n                        \"Y\": 0.7569723129272461\n                    },\n                    {\n                        \"X\": 0.3476583659648895,\n                        \"Y\": 0.7569587826728821\n                    }\n                ]\n            },\n            \"Id\": \"710ebab4-dc89-4307-91bb-07291fc06697\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d561dcb5-777f-46a1-bfc1-2eff9a76e9d2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.6950912475586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009715533815324306,\n                    \"Left\": 0.4256698489189148,\n                    \"Top\": 0.7472193241119385,\n                    \"Width\": 0.009057499468326569\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4256698489189148,\n                        \"Y\": 0.7472193241119385\n                    },\n                    {\n                        \"X\": 0.434724897146225,\n                        \"Y\": 0.747225284576416\n                    },\n                    {\n                        \"X\": 0.43472734093666077,\n                        \"Y\": 0.7569348812103271\n                    },\n                    {\n                        \"X\": 0.4256722629070282,\n                        \"Y\": 0.7569289207458496\n                    }\n                ]\n            },\n            \"Id\": \"024def48-2b62-40a1-8ec9-4d3ad4aba04d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"356839a2-de42-49b5-842d-75b4fa914a8c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"0\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.42875671386719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012064745649695396,\n                    \"Left\": 0.5159507989883423,\n                    \"Top\": 0.7473340630531311,\n                    \"Width\": 0.2755487561225891\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5159507989883423,\n                        \"Y\": 0.7473340630531311\n                    },\n                    {\n                        \"X\": 0.7914940714836121,\n                        \"Y\": 0.7475144267082214\n                    },\n                    {\n                        \"X\": 0.7914995551109314,\n                        \"Y\": 0.7593987584114075\n                    },\n                    {\n                        \"X\": 0.5159543752670288,\n                        \"Y\": 0.7592175602912903\n                    }\n                ]\n            },\n            \"Id\": \"81335d94-337a-4a55-8cdc-30040541a05e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"15488b78-163e-4897-ac9f-aa1150ddf9fb\",\n                        \"795e3578-d645-4505-8b4f-b6ec071edaef\",\n                        \"5d35fc4f-b021-4794-8ea8-1c56818b886f\",\n                        \"340eb2b8-4c07-44fd-ad8d-bd92fba22afe\",\n                        \"edabb44d-6806-4b64-8b91-996e76245623\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Unmarried (includes single, divorced, widowed)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.66866302490234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009566294960677624,\n                    \"Left\": 0.8175753355026245,\n                    \"Top\": 0.747663676738739,\n                    \"Width\": 0.020243216305971146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8175753355026245,\n                        \"Y\": 0.747663676738739\n                    },\n                    {\n                        \"X\": 0.8378138542175293,\n                        \"Y\": 0.7476769089698792\n                    },\n                    {\n                        \"X\": 0.8378185629844666,\n                        \"Y\": 0.7572299838066101\n                    },\n                    {\n                        \"X\": 0.8175799250602722,\n                        \"Y\": 0.7572166323661804\n                    }\n                ]\n            },\n            \"Id\": \"4936efd5-e281-4974-b8d0-05e25261bb7f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"893772a8-c001-4970-87d9-e65eea767a5e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.84195709228516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010082580149173737,\n                    \"Left\": 0.8923969268798828,\n                    \"Top\": 0.7458910346031189,\n                    \"Width\": 0.023726336658000946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8923969268798828,\n                        \"Y\": 0.7458910346031189\n                    },\n                    {\n                        \"X\": 0.9161178469657898,\n                        \"Y\": 0.7459065318107605\n                    },\n                    {\n                        \"X\": 0.9161232709884644,\n                        \"Y\": 0.7559735774993896\n                    },\n                    {\n                        \"X\": 0.8924022316932678,\n                        \"Y\": 0.7559580206871033\n                    }\n                ]\n            },\n            \"Id\": \"835c42aa-b8c5-4545-83da-4e19de166fd2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f73ff599-5571-4a82-a4b7-f95762565a42\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70414733886719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011946945451200008,\n                    \"Left\": 0.04629065468907356,\n                    \"Top\": 0.7663353085517883,\n                    \"Width\": 0.06095198541879654\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04629065468907356,\n                        \"Y\": 0.7663353085517883\n                    },\n                    {\n                        \"X\": 0.1072419211268425,\n                        \"Y\": 0.7663755416870117\n                    },\n                    {\n                        \"X\": 0.1072426363825798,\n                        \"Y\": 0.7782822847366333\n                    },\n                    {\n                        \"X\": 0.046290941536426544,\n                        \"Y\": 0.7782418727874756\n                    }\n                ]\n            },\n            \"Id\": \"e061064e-43cc-4508-81e0-5ccfda4e735a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"37f31bfe-a90b-444b-bc2f-1d051b5304e0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Separated\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85578918457031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011547194793820381,\n                    \"Left\": 0.347248375415802,\n                    \"Top\": 0.7665163278579712,\n                    \"Width\": 0.03141692653298378\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.347248375415802,\n                        \"Y\": 0.7665163278579712\n                    },\n                    {\n                        \"X\": 0.37866273522377014,\n                        \"Y\": 0.766537070274353\n                    },\n                    {\n                        \"X\": 0.3786652982234955,\n                        \"Y\": 0.7780635356903076\n                    },\n                    {\n                        \"X\": 0.34725069999694824,\n                        \"Y\": 0.778042733669281\n                    }\n                ]\n            },\n            \"Id\": \"9da86f86-8053-48b6-bd6e-a61791476a7b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f0bdd729-9581-4c9e-9b8c-57895922387a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Ages\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88825225830078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00999203696846962,\n                    \"Left\": 0.4210067391395569,\n                    \"Top\": 0.7662720084190369,\n                    \"Width\": 0.02422318607568741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4210067391395569,\n                        \"Y\": 0.7662720084190369\n                    },\n                    {\n                        \"X\": 0.44522732496261597,\n                        \"Y\": 0.7662879824638367\n                    },\n                    {\n                        \"X\": 0.4452299177646637,\n                        \"Y\": 0.7762640714645386\n                    },\n                    {\n                        \"X\": 0.4210091829299927,\n                        \"Y\": 0.7762479782104492\n                    }\n                ]\n            },\n            \"Id\": \"9a4abf25-2de0-4a83-b258-8a298c3a4e0c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"60a2405c-692e-4bec-a3d3-9ac1dacf179d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80829620361328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011756584979593754,\n                    \"Left\": 0.515315592288971,\n                    \"Top\": 0.7663522958755493,\n                    \"Width\": 0.06158244609832764\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.515315592288971,\n                        \"Y\": 0.7663522958755493\n                    },\n                    {\n                        \"X\": 0.5768941044807434,\n                        \"Y\": 0.7663928866386414\n                    },\n                    {\n                        \"X\": 0.5768980383872986,\n                        \"Y\": 0.7781088948249817\n                    },\n                    {\n                        \"X\": 0.5153191089630127,\n                        \"Y\": 0.7780680656433105\n                    }\n                ]\n            },\n            \"Id\": \"a210d489-274f-4313-abae-56aed9b2e041\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"afd7df55-cda7-4ee0-a1ce-aef9f53722f7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Separated\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89871978759766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011442936025559902,\n                    \"Left\": 0.8171243667602539,\n                    \"Top\": 0.7668346166610718,\n                    \"Width\": 0.030890265479683876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8171243667602539,\n                        \"Y\": 0.7668346166610718\n                    },\n                    {\n                        \"X\": 0.848008930683136,\n                        \"Y\": 0.7668549418449402\n                    },\n                    {\n                        \"X\": 0.8480146527290344,\n                        \"Y\": 0.7782775163650513\n                    },\n                    {\n                        \"X\": 0.8171298503875732,\n                        \"Y\": 0.7782570719718933\n                    }\n                ]\n            },\n            \"Id\": \"e92c4c4b-1f7b-4d89-86d9-72aa3a457ebc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cae6cf34-3839-4fbe-a30f-844d522182e5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Ages\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8935317993164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010265233926475048,\n                    \"Left\": 0.892227292060852,\n                    \"Top\": 0.7670956254005432,\n                    \"Width\": 0.02404056303203106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.892227292060852,\n                        \"Y\": 0.7670956254005432\n                    },\n                    {\n                        \"X\": 0.9162623286247253,\n                        \"Y\": 0.7671114802360535\n                    },\n                    {\n                        \"X\": 0.9162678718566895,\n                        \"Y\": 0.7773608565330505\n                    },\n                    {\n                        \"X\": 0.8922326564788818,\n                        \"Y\": 0.7773449420928955\n                    }\n                ]\n            },\n            \"Id\": \"db50b721-79cb-4a70-b5a4-2518d3e8457e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b73d981f-d76b-4439-9805-24b5744bdfa2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.45134735107422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012349450960755348,\n                    \"Left\": 0.028748171404004097,\n                    \"Top\": 0.7841468453407288,\n                    \"Width\": 0.28327763080596924\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028748171404004097,\n                        \"Y\": 0.7841468453407288\n                    },\n                    {\n                        \"X\": 0.3120235800743103,\n                        \"Y\": 0.7843350768089294\n                    },\n                    {\n                        \"X\": 0.312025785446167,\n                        \"Y\": 0.7964963316917419\n                    },\n                    {\n                        \"X\": 0.028748342767357826,\n                        \"Y\": 0.7963072061538696\n                    }\n                ]\n            },\n            \"Id\": \"02cfec6d-52d3-4ba8-9d8a-b0b463f2cf24\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a3624eae-de28-4fb4-9bad-82a88dc2f847\",\n                        \"a122cd94-c04b-4de2-a7ad-65939dc85eb3\",\n                        \"0f6a74a7-51b7-4690-97e6-395613249fa5\",\n                        \"58bd2bda-2d37-47b5-9fa3-58e566a42b01\",\n                        \"1b1f2452-d527-4365-abe5-111c64093132\",\n                        \"8baeae55-fd4c-45cb-b677-942d9f4aa202\",\n                        \"59d17e3e-8138-4dfd-a004-a7d444854931\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Present Address (street, city, state, ZIP/ country)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9271240234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009417249821126461,\n                    \"Left\": 0.3322114050388336,\n                    \"Top\": 0.784762978553772,\n                    \"Width\": 0.02656365931034088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3322114050388336,\n                        \"Y\": 0.784762978553772\n                    },\n                    {\n                        \"X\": 0.3587731122970581,\n                        \"Y\": 0.7847806215286255\n                    },\n                    {\n                        \"X\": 0.3587750792503357,\n                        \"Y\": 0.7941802144050598\n                    },\n                    {\n                        \"X\": 0.33221322298049927,\n                        \"Y\": 0.7941625118255615\n                    }\n                ]\n            },\n            \"Id\": \"36c1d967-886e-4cb2-98d0-72869faca46c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b91b4d39-daf6-4bee-aa4f-e4d17a9a556f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Own\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.29492950439453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010185014456510544,\n                    \"Left\": 0.3879086673259735,\n                    \"Top\": 0.7845406532287598,\n                    \"Width\": 0.04692183434963226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3879086673259735,\n                        \"Y\": 0.7845406532287598\n                    },\n                    {\n                        \"X\": 0.43482792377471924,\n                        \"Y\": 0.7845718264579773\n                    },\n                    {\n                        \"X\": 0.4348304867744446,\n                        \"Y\": 0.7947256565093994\n                    },\n                    {\n                        \"X\": 0.38791096210479736,\n                        \"Y\": 0.7946943640708923\n                    }\n                ]\n            },\n            \"Id\": \"4f95fae4-4c3b-42e3-87c7-aa03d13fa4e6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"72a2e13a-32f0-469a-81dd-ca21a4525d40\",\n                        \"7d27b15f-a3f0-4126-ae9f-d59e1de47a9e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Rent 5\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.49075317382812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009713239036500454,\n                    \"Left\": 0.4429260492324829,\n                    \"Top\": 0.7845714092254639,\n                    \"Width\": 0.0464605987071991\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4429260492324829,\n                        \"Y\": 0.7845714092254639\n                    },\n                    {\n                        \"X\": 0.48938387632369995,\n                        \"Y\": 0.7846022844314575\n                    },\n                    {\n                        \"X\": 0.489386647939682,\n                        \"Y\": 0.7942847013473511\n                    },\n                    {\n                        \"X\": 0.4429285526275635,\n                        \"Y\": 0.7942537069320679\n                    }\n                ]\n            },\n            \"Id\": \"3a943360-fb86-4b2a-89be-4df1688135c2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"97d62362-f96b-410d-927a-c823b8995a3b\",\n                        \"808b32fa-c8b2-480d-a8c3-c34203b61d7d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. Yrs.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 93.34949493408203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012234685011208057,\n                    \"Left\": 0.4981881082057953,\n                    \"Top\": 0.7842479944229126,\n                    \"Width\": 0.2829326093196869\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4981881082057953,\n                        \"Y\": 0.7842479944229126\n                    },\n                    {\n                        \"X\": 0.7811152338981628,\n                        \"Y\": 0.7844359278678894\n                    },\n                    {\n                        \"X\": 0.7811207175254822,\n                        \"Y\": 0.7964826822280884\n                    },\n                    {\n                        \"X\": 0.49819162487983704,\n                        \"Y\": 0.7962937951087952\n                    }\n                ]\n            },\n            \"Id\": \"64804aa7-e52f-4bc3-8dd6-e0e3ba5517df\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d7dbcdd1-3dae-4a0d-a62b-cbd2dcf78cd9\",\n                        \"5bd0d973-cdf1-4687-8e23-e52351bc3a01\",\n                        \"17df945b-5d58-49cd-b35e-815eed5e3013\",\n                        \"91191b2f-d6bc-4674-9d0a-95b226f5b443\",\n                        \"4b44fa05-d450-440a-b246-72d6abcc1ab6\",\n                        \"de5a5d82-2742-4cd3-9e83-fa261a017994\",\n                        \"cff511e0-e4d6-4237-92b0-951a3c37ea8e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Present Address (street, city, state, ZIP/ country)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.95574951171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009456906467676163,\n                    \"Left\": 0.8021049499511719,\n                    \"Top\": 0.7848161458969116,\n                    \"Width\": 0.02625088207423687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8021049499511719,\n                        \"Y\": 0.7848161458969116\n                    },\n                    {\n                        \"X\": 0.8283511996269226,\n                        \"Y\": 0.784833550453186\n                    },\n                    {\n                        \"X\": 0.8283557891845703,\n                        \"Y\": 0.7942730188369751\n                    },\n                    {\n                        \"X\": 0.8021093606948853,\n                        \"Y\": 0.7942554950714111\n                    }\n                ]\n            },\n            \"Id\": \"3caa32df-1be1-4cef-8e91-b7c4df8a893a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8d0e59d0-95a8-499d-98ef-6aee793b3a7e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Own\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94634246826172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009744303300976753,\n                    \"Left\": 0.8576629757881165,\n                    \"Top\": 0.7845334410667419,\n                    \"Width\": 0.028497260063886642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8576629757881165,\n                        \"Y\": 0.7845334410667419\n                    },\n                    {\n                        \"X\": 0.8861551284790039,\n                        \"Y\": 0.7845523953437805\n                    },\n                    {\n                        \"X\": 0.8861601948738098,\n                        \"Y\": 0.7942777276039124\n                    },\n                    {\n                        \"X\": 0.857667863368988,\n                        \"Y\": 0.794258713722229\n                    }\n                ]\n            },\n            \"Id\": \"0c05bfa7-1e4e-4541-a005-1a8102b86952\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e361a9ab-3344-4d20-ab43-9e03376a7ecc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Rent\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.23670959472656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009970097802579403,\n                    \"Left\": 0.9127384424209595,\n                    \"Top\": 0.784382164478302,\n                    \"Width\": 0.04774188622832298\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9127384424209595,\n                        \"Y\": 0.784382164478302\n                    },\n                    {\n                        \"X\": 0.9604746699333191,\n                        \"Y\": 0.7844138741493225\n                    },\n                    {\n                        \"X\": 0.9604803323745728,\n                        \"Y\": 0.7943522334098816\n                    },\n                    {\n                        \"X\": 0.9127437472343445,\n                        \"Y\": 0.7943204045295715\n                    }\n                ]\n            },\n            \"Id\": \"d738d5f2-a1e4-48d9-83ec-caa5bd25fc5f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9f648c31-b3e3-432b-a6e2-d54f8fcae4c5\",\n                        \"c75e7b45-31fb-469c-a8c9-2103eb720bfc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. Yrs.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 97.85523223876953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01297321543097496,\n                    \"Left\": 0.029721112921833992,\n                    \"Top\": 0.8036855459213257,\n                    \"Width\": 0.23688708245754242\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029721112921833992,\n                        \"Y\": 0.8036855459213257\n                    },\n                    {\n                        \"X\": 0.2666062116622925,\n                        \"Y\": 0.803844153881073\n                    },\n                    {\n                        \"X\": 0.26660820841789246,\n                        \"Y\": 0.8166587352752686\n                    },\n                    {\n                        \"X\": 0.029721299186348915,\n                        \"Y\": 0.8164992928504944\n                    }\n                ]\n            },\n            \"Id\": \"242ed0aa-9866-492b-8713-7f341d7244af\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d1abb320-cf68-4696-92cf-5a22806a54bc\",\n                        \"11654d8a-768c-4b4f-9188-4ba50acd2dfb\",\n                        \"6c944296-8ba6-4de5-a7f9-36f5b5b722a5\",\n                        \"2ac5251b-c40d-40d2-803a-a3c1bae86bec\",\n                        \"efbf136f-3a7b-4d66-96db-79d69fa81850\",\n                        \"ed430d68-ab90-43e0-849a-3558e516aca0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"456 Any Street, Anytown, USA, 12345\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9145736694336,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010184415616095066,\n                    \"Left\": 0.4992425739765167,\n                    \"Top\": 0.8040531277656555,\n                    \"Width\": 0.024300385266542435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4992425739765167,\n                        \"Y\": 0.8040531277656555\n                    },\n                    {\n                        \"X\": 0.5235398411750793,\n                        \"Y\": 0.8040693998336792\n                    },\n                    {\n                        \"X\": 0.5235429406166077,\n                        \"Y\": 0.8142375349998474\n                    },\n                    {\n                        \"X\": 0.4992455542087555,\n                        \"Y\": 0.814221203327179\n                    }\n                ]\n            },\n            \"Id\": \"bea5fdd7-1bde-4c67-857b-522f6d2763b4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8d07f392-0462-4e58-abc9-70bbdda23547\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.35233306884766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012250128202140331,\n                    \"Left\": 0.02893584594130516,\n                    \"Top\": 0.8402532935142517,\n                    \"Width\": 0.2892550826072693\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02893584594130516,\n                        \"Y\": 0.8402532935142517\n                    },\n                    {\n                        \"X\": 0.31818869709968567,\n                        \"Y\": 0.8404497504234314\n                    },\n                    {\n                        \"X\": 0.31819093227386475,\n                        \"Y\": 0.8525034189224243\n                    },\n                    {\n                        \"X\": 0.02893601730465889,\n                        \"Y\": 0.8523060083389282\n                    }\n                ]\n            },\n            \"Id\": \"a7d9d779-3dd6-4e12-beac-7f3a9338f073\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"715a4535-f684-446e-9320-f57c374c205f\",\n                        \"23dced2d-5bee-4987-a158-b5b40ca89505\",\n                        \"8dee01c0-35d0-4f90-a12c-fd1c9c372bd3\",\n                        \"3c3581f8-ec75-4424-a896-7d34a5592ce9\",\n                        \"6788320f-ee47-488f-9037-66d14505d5e6\",\n                        \"5475c58e-0305-43ad-adb6-f7d98e0dc028\",\n                        \"20e82e99-f51d-4f90-8253-1af4ce500bf1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Mailing Address, if different from Present Address\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.70233154296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012319809757173061,\n                    \"Left\": 0.4982842206954956,\n                    \"Top\": 0.8403112292289734,\n                    \"Width\": 0.2893286645412445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4982842206954956,\n                        \"Y\": 0.8403112292289734\n                    },\n                    {\n                        \"X\": 0.7876072525978088,\n                        \"Y\": 0.8405077457427979\n                    },\n                    {\n                        \"X\": 0.7876128554344177,\n                        \"Y\": 0.8526310324668884\n                    },\n                    {\n                        \"X\": 0.49828773736953735,\n                        \"Y\": 0.8524335622787476\n                    }\n                ]\n            },\n            \"Id\": \"acf2c727-6c79-4883-bc7e-ed0ebca93ed9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5c31b2df-bdff-4512-887d-0e5b83424505\",\n                        \"453e3b88-069f-4a12-9275-24cfe6c20934\",\n                        \"29fef3d1-15d5-48e3-a51a-fd2922d8f9e5\",\n                        \"b3427a41-67a8-4321-b9af-3096970a48cb\",\n                        \"81489e93-b636-4794-83d9-ca6be018d5b8\",\n                        \"df9f98b5-4e20-4953-a309-714d353dae73\",\n                        \"02ec58b7-3d58-4b1e-84b5-3a9b95273e91\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Mailing Address, if different from Present Address\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.86595153808594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010117524303495884,\n                    \"Left\": 0.49957114458084106,\n                    \"Top\": 0.8579391837120056,\n                    \"Width\": 0.024689432233572006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49957114458084106,\n                        \"Y\": 0.8579391837120056\n                    },\n                    {\n                        \"X\": 0.524257481098175,\n                        \"Y\": 0.857956051826477\n                    },\n                    {\n                        \"X\": 0.5242605805397034,\n                        \"Y\": 0.8680567145347595\n                    },\n                    {\n                        \"X\": 0.49957409501075745,\n                        \"Y\": 0.8680397868156433\n                    }\n                ]\n            },\n            \"Id\": \"239d111a-6c1d-4124-998e-5f65892cfa8c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"32e7cbfd-cd96-4b1c-952d-10be88f0b7dd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.73667907714844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01257571391761303,\n                    \"Left\": 0.028741711750626564,\n                    \"Top\": 0.8948706388473511,\n                    \"Width\": 0.4823538362979889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028741711750626564,\n                        \"Y\": 0.8948706388473511\n                    },\n                    {\n                        \"X\": 0.5110918879508972,\n                        \"Y\": 0.8952052593231201\n                    },\n                    {\n                        \"X\": 0.5110955238342285,\n                        \"Y\": 0.9074463844299316\n                    },\n                    {\n                        \"X\": 0.028741883113980293,\n                        \"Y\": 0.9071101546287537\n                    }\n                ]\n            },\n            \"Id\": \"9f272ede-9b59-4f3d-9bf5-1996cb9887be\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4105af1f-7cb5-48db-8b9a-514382bad364\",\n                        \"4aeb0b21-3af9-45e5-b736-e6ae7f921f75\",\n                        \"df45759b-7bbe-4fc2-be31-df903ff6bbcb\",\n                        \"cb8e6038-6bc4-4c57-aeed-206aa13135a4\",\n                        \"5828ccb1-cc04-4486-86b0-cd54c343778d\",\n                        \"8edf7b28-faf2-4d09-88ef-7f8bc9402424\",\n                        \"29a8b945-c5bc-476c-af02-8b24fd18ba44\",\n                        \"f4796e67-5bdc-461a-a169-9ff9eb68f80e\",\n                        \"cc1687b7-de41-4166-80b0-b4bdbbf00cc4\",\n                        \"102c24fb-6ccc-4731-b7af-eb886d5bf4db\",\n                        \"9bd4d3a3-8842-4ec9-89dc-98b064ebed3f\",\n                        \"0c2806bd-515e-4f51-92bc-6b2bed604753\",\n                        \"e4709efd-da97-4d41-b6d2-53b61c69868b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"If residing at present address for less than two years, complete the following:\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.56546020507812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012135527096688747,\n                    \"Left\": 0.02889779768884182,\n                    \"Top\": 0.9107235074043274,\n                    \"Width\": 0.22999359667301178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02889779768884182,\n                        \"Y\": 0.9107235074043274\n                    },\n                    {\n                        \"X\": 0.2588895857334137,\n                        \"Y\": 0.9108840227127075\n                    },\n                    {\n                        \"X\": 0.25889137387275696,\n                        \"Y\": 0.9228590726852417\n                    },\n                    {\n                        \"X\": 0.0288979671895504,\n                        \"Y\": 0.9226977825164795\n                    }\n                ]\n            },\n            \"Id\": \"12ba3400-5ba1-42a2-a6bb-69b56694c5e7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"99b568ec-2110-447c-ad05-b52ea042ab22\",\n                        \"8ac2a45e-69d8-4d59-9513-c2eabaf9e8e0\",\n                        \"428951fd-2275-4b9e-86b0-1afe1d0c108c\",\n                        \"55173c4e-c513-40aa-96e5-7be5952b1d4e\",\n                        \"a7ceac34-aa1f-423c-9361-7d1898ee2a20\",\n                        \"75ba1fc4-a812-4bcc-beb1-a1e2f22e7dd5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Former Address (street, city, state, ZIP)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94513702392578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00955896358937025,\n                    \"Left\": 0.33153554797172546,\n                    \"Top\": 0.9110748171806335,\n                    \"Width\": 0.027099648490548134\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33153554797172546,\n                        \"Y\": 0.9110748171806335\n                    },\n                    {\n                        \"X\": 0.35863322019577026,\n                        \"Y\": 0.9110937118530273\n                    },\n                    {\n                        \"X\": 0.35863521695137024,\n                        \"Y\": 0.9206337928771973\n                    },\n                    {\n                        \"X\": 0.3315373957157135,\n                        \"Y\": 0.9206147789955139\n                    }\n                ]\n            },\n            \"Id\": \"b6009666-766a-4e30-a9ed-010a7562897e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f7c79fc0-af5e-4cb6-809f-a1b6664f2c6d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Own\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9474868774414,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00942054484039545,\n                    \"Left\": 0.3880360424518585,\n                    \"Top\": 0.9112581014633179,\n                    \"Width\": 0.02877102419734001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3880360424518585,\n                        \"Y\": 0.9112581014633179\n                    },\n                    {\n                        \"X\": 0.41680479049682617,\n                        \"Y\": 0.9112781882286072\n                    },\n                    {\n                        \"X\": 0.41680708527565,\n                        \"Y\": 0.9206786751747131\n                    },\n                    {\n                        \"X\": 0.38803818821907043,\n                        \"Y\": 0.9206584692001343\n                    }\n                ]\n            },\n            \"Id\": \"ef197e9d-2140-45f4-886e-8676e17d3427\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bf584e26-59bd-4191-9604-e97850e08007\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Rent\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.1173095703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009575954638421535,\n                    \"Left\": 0.44322556257247925,\n                    \"Top\": 0.9112712144851685,\n                    \"Width\": 0.046254053711891174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44322556257247925,\n                        \"Y\": 0.9112712144851685\n                    },\n                    {\n                        \"X\": 0.48947688937187195,\n                        \"Y\": 0.9113035202026367\n                    },\n                    {\n                        \"X\": 0.4894796311855316,\n                        \"Y\": 0.9208471775054932\n                    },\n                    {\n                        \"X\": 0.4432280361652374,\n                        \"Y\": 0.9208147525787354\n                    }\n                ]\n            },\n            \"Id\": \"297c6a23-2d95-43ee-9925-685559cdd4b1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"42c81ab3-aabb-4bea-b9d8-919d5480d1b3\",\n                        \"d9b93050-31f7-433e-be80-105ea3bd9567\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. Yrs.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.4993667602539,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012275082059204578,\n                    \"Left\": 0.4977831542491913,\n                    \"Top\": 0.9107827544212341,\n                    \"Width\": 0.23045895993709564\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4977831542491913,\n                        \"Y\": 0.9107827544212341\n                    },\n                    {\n                        \"X\": 0.728236973285675,\n                        \"Y\": 0.9109435677528381\n                    },\n                    {\n                        \"X\": 0.7282421588897705,\n                        \"Y\": 0.9230578541755676\n                    },\n                    {\n                        \"X\": 0.4977867007255554,\n                        \"Y\": 0.9228962659835815\n                    }\n                ]\n            },\n            \"Id\": \"f9bfc86f-01c8-4c6c-b5bc-2fdbf182d781\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a2ba5ef2-e6d6-4146-9a10-0e4edc546441\",\n                        \"5f6125ab-69aa-46f0-b13c-4828cd1b6ef4\",\n                        \"36519308-af01-418c-b4bc-d07da38f2d2c\",\n                        \"e2736f86-3661-4522-8021-9480ed621ada\",\n                        \"2d9b2a9c-0d4b-4b46-8483-a563dc137850\",\n                        \"b9cdbfea-adff-4b7d-9233-29afccb381e7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Former Address (street, city, state, ZIP)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.94391632080078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009652268141508102,\n                    \"Left\": 0.8017768859863281,\n                    \"Top\": 0.9111219644546509,\n                    \"Width\": 0.02668119966983795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8017768859863281,\n                        \"Y\": 0.9111219644546509\n                    },\n                    {\n                        \"X\": 0.8284534215927124,\n                        \"Y\": 0.9111406207084656\n                    },\n                    {\n                        \"X\": 0.8284581303596497,\n                        \"Y\": 0.9207742214202881\n                    },\n                    {\n                        \"X\": 0.801781415939331,\n                        \"Y\": 0.9207555651664734\n                    }\n                ]\n            },\n            \"Id\": \"bb63b299-8ddd-46fc-b91d-c9d738369f22\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"592efa83-d41d-4792-bbca-249a12498a5b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Own\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.97393798828125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009769544005393982,\n                    \"Left\": 0.8579306602478027,\n                    \"Top\": 0.9109443426132202,\n                    \"Width\": 0.028330516070127487\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8579306602478027,\n                        \"Y\": 0.9109443426132202\n                    },\n                    {\n                        \"X\": 0.8862561583518982,\n                        \"Y\": 0.9109641313552856\n                    },\n                    {\n                        \"X\": 0.8862612247467041,\n                        \"Y\": 0.9207139015197754\n                    },\n                    {\n                        \"X\": 0.8579356074333191,\n                        \"Y\": 0.9206940531730652\n                    }\n                ]\n            },\n            \"Id\": \"adef25e7-ab02-4371-a14d-7b726bfba786\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"23480943-6636-4560-a541-4856d5930669\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Rent\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.96101379394531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009880145080387592,\n                    \"Left\": 0.9128906726837158,\n                    \"Top\": 0.911043107509613,\n                    \"Width\": 0.04753401130437851\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9128906726837158,\n                        \"Y\": 0.911043107509613\n                    },\n                    {\n                        \"X\": 0.9604191184043884,\n                        \"Y\": 0.9110763072967529\n                    },\n                    {\n                        \"X\": 0.9604246616363525,\n                        \"Y\": 0.9209232926368713\n                    },\n                    {\n                        \"X\": 0.912895917892456,\n                        \"Y\": 0.9208899736404419\n                    }\n                ]\n            },\n            \"Id\": \"051a865f-ac4f-4e18-a33b-f461dda786e7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d1855a31-ec03-4617-88b9-df0a828a9ad0\",\n                        \"37c697b1-067b-4f61-a6b7-3c673a3a90ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. Yrs.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.87519073486328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010175071656703949,\n                    \"Left\": 0.030998311936855316,\n                    \"Top\": 0.9294491410255432,\n                    \"Width\": 0.024118009954690933\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030998311936855316,\n                        \"Y\": 0.9294491410255432\n                    },\n                    {\n                        \"X\": 0.05511602386832237,\n                        \"Y\": 0.9294661283493042\n                    },\n                    {\n                        \"X\": 0.05511632189154625,\n                        \"Y\": 0.9396242499351501\n                    },\n                    {\n                        \"X\": 0.03099846839904785,\n                        \"Y\": 0.9396072030067444\n                    }\n                ]\n            },\n            \"Id\": \"2f5b864e-3609-456c-a7c5-042ae9394603\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9e354791-22a8-4ac8-aa38-0d016556fdcc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.9045181274414,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010169311426579952,\n                    \"Left\": 0.49454760551452637,\n                    \"Top\": 0.9272798895835876,\n                    \"Width\": 0.02434782311320305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49454760551452637,\n                        \"Y\": 0.9272798895835876\n                    },\n                    {\n                        \"X\": 0.5188923478126526,\n                        \"Y\": 0.9272969961166382\n                    },\n                    {\n                        \"X\": 0.5188953876495361,\n                        \"Y\": 0.9374492168426514\n                    },\n                    {\n                        \"X\": 0.49455052614212036,\n                        \"Y\": 0.937432050704956\n                    }\n                ]\n            },\n            \"Id\": \"a89f7d91-5ad8-478e-9a0a-1e55fe1b1bd8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0e8d85a4-e8e0-442a-aa97-cbc8c0168c86\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 94.84173583984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01203233189880848,\n                    \"Left\": 0.028554599732160568,\n                    \"Top\": 0.9668718576431274,\n                    \"Width\": 0.2304685115814209\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028554599732160568,\n                        \"Y\": 0.9668718576431274\n                    },\n                    {\n                        \"X\": 0.2590213418006897,\n                        \"Y\": 0.9670361280441284\n                    },\n                    {\n                        \"X\": 0.25902310013771057,\n                        \"Y\": 0.9789041876792908\n                    },\n                    {\n                        \"X\": 0.02855476550757885,\n                        \"Y\": 0.9787392020225525\n                    }\n                ]\n            },\n            \"Id\": \"e5160ba2-9b7f-4108-bc2a-57ea6c6ac905\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"967719f9-169f-4657-b188-c1f407f23907\",\n                        \"971b6f97-64da-44eb-bdf7-a4588f6be68d\",\n                        \"1a5ea90c-1468-419f-b915-d9f825bfa002\",\n                        \"b05e647e-7ea3-4d88-8804-63b184668da1\",\n                        \"3f577aff-e6da-4c13-8a93-b779657487c2\",\n                        \"bb96b806-0e7a-424c-961d-a5b740764c21\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Former Address (street, city, state, ZIP)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.91997528076172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0093311108648777,\n                    \"Left\": 0.3320038616657257,\n                    \"Top\": 0.9675143957138062,\n                    \"Width\": 0.0267669428139925\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3320038616657257,\n                        \"Y\": 0.9675143957138062\n                    },\n                    {\n                        \"X\": 0.35876885056495667,\n                        \"Y\": 0.9675334692001343\n                    },\n                    {\n                        \"X\": 0.35877078771591187,\n                        \"Y\": 0.9768455028533936\n                    },\n                    {\n                        \"X\": 0.33200564980506897,\n                        \"Y\": 0.9768263697624207\n                    }\n                ]\n            },\n            \"Id\": \"da386b46-f1ae-4613-b71b-4fba659a103c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"68a50f60-cb75-49be-96a9-ce849ca2befa\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Own\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89859008789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009623877704143524,\n                    \"Left\": 0.3880269229412079,\n                    \"Top\": 0.9669864177703857,\n                    \"Width\": 0.028964949771761894\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3880269229412079,\n                        \"Y\": 0.9669864177703857\n                    },\n                    {\n                        \"X\": 0.4169895350933075,\n                        \"Y\": 0.9670071005821228\n                    },\n                    {\n                        \"X\": 0.4169918894767761,\n                        \"Y\": 0.9766103029251099\n                    },\n                    {\n                        \"X\": 0.3880290985107422,\n                        \"Y\": 0.9765896201133728\n                    }\n                ]\n            },\n            \"Id\": \"37b01626-3392-4534-b999-3fe96a023995\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8c31db0b-4fe8-4c28-8451-f1fff5142ca7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Rent\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 90.07103729248047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009629442356526852,\n                    \"Left\": 0.44316574931144714,\n                    \"Top\": 0.9670019149780273,\n                    \"Width\": 0.046315982937812805\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44316574931144714,\n                        \"Y\": 0.9670019149780273\n                    },\n                    {\n                        \"X\": 0.4894789755344391,\n                        \"Y\": 0.9670349359512329\n                    },\n                    {\n                        \"X\": 0.48948171734809875,\n                        \"Y\": 0.9766313433647156\n                    },\n                    {\n                        \"X\": 0.4431682229042053,\n                        \"Y\": 0.9765982031822205\n                    }\n                ]\n            },\n            \"Id\": \"e3155275-f28c-4ebe-8c8d-c2e8f8bf41c5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0c7f88c9-b7e8-4c16-84a4-98ac9c045a6e\",\n                        \"ecbcecbb-c75f-473c-8430-1de2845e2ace\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. Yrs.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.88849639892578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012186040170490742,\n                    \"Left\": 0.4980298578739166,\n                    \"Top\": 0.9667080640792847,\n                    \"Width\": 0.23033875226974487\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4980298578739166,\n                        \"Y\": 0.9667080640792847\n                    },\n                    {\n                        \"X\": 0.7283634543418884,\n                        \"Y\": 0.9668722748756409\n                    },\n                    {\n                        \"X\": 0.7283685803413391,\n                        \"Y\": 0.9788941144943237\n                    },\n                    {\n                        \"X\": 0.498033344745636,\n                        \"Y\": 0.978729248046875\n                    }\n                ]\n            },\n            \"Id\": \"e37ba0d3-6e45-48d7-92ba-89dfbf3cda4c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb843082-d4bb-4f4e-9697-345ad473aee2\",\n                        \"dae87968-e58f-4b17-953e-d0c3ee871db3\",\n                        \"38a2e9e5-86ba-4a02-8c4b-acb356a08d39\",\n                        \"5385ca25-a024-4fe7-9c87-b3fa1bbd3f25\",\n                        \"0849d0d3-3653-43c3-b9df-8adb3783d0fb\",\n                        \"e3624bb0-137f-46ce-982b-f278225a666d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Former Address (street, city, state, ZIP)\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89568328857422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009535979479551315,\n                    \"Left\": 0.8014581203460693,\n                    \"Top\": 0.9670853614807129,\n                    \"Width\": 0.02692522667348385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8014581203460693,\n                        \"Y\": 0.9670853614807129\n                    },\n                    {\n                        \"X\": 0.8283787369728088,\n                        \"Y\": 0.9671045541763306\n                    },\n                    {\n                        \"X\": 0.8283833861351013,\n                        \"Y\": 0.9766213297843933\n                    },\n                    {\n                        \"X\": 0.8014625906944275,\n                        \"Y\": 0.9766020774841309\n                    }\n                ]\n            },\n            \"Id\": \"3d3b1de1-bd1a-47e7-84c3-482229d4d3d8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f223f153-5bea-4c2b-bde5-442e7f4f0d1c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Own\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.96233367919922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009709596633911133,\n                    \"Left\": 0.8580777645111084,\n                    \"Top\": 0.9669093489646912,\n                    \"Width\": 0.028757330030202866\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8580777645111084,\n                        \"Y\": 0.9669093489646912\n                    },\n                    {\n                        \"X\": 0.8868300914764404,\n                        \"Y\": 0.9669298529624939\n                    },\n                    {\n                        \"X\": 0.8868350982666016,\n                        \"Y\": 0.9766189455986023\n                    },\n                    {\n                        \"X\": 0.85808265209198,\n                        \"Y\": 0.9765983819961548\n                    }\n                ]\n            },\n            \"Id\": \"89b35c0a-10db-45bb-b8de-77686db68d74\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0fe7181d-e5f8-42ad-93e7-0d99875b70c1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"Rent\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.7059097290039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009892682544887066,\n                    \"Left\": 0.91281658411026,\n                    \"Top\": 0.9668774604797363,\n                    \"Width\": 0.04784547537565231\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.91281658411026,\n                        \"Y\": 0.9668774604797363\n                    },\n                    {\n                        \"X\": 0.9606565237045288,\n                        \"Y\": 0.9669115543365479\n                    },\n                    {\n                        \"X\": 0.9606620669364929,\n                        \"Y\": 0.9767701029777527\n                    },\n                    {\n                        \"X\": 0.912821888923645,\n                        \"Y\": 0.9767358899116516\n                    }\n                ]\n            },\n            \"Id\": \"846e2902-f827-4baf-a6e9-3a687afa7636\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"24ddf385-6209-4d9b-b626-4ce31d43147a\",\n                        \"665b7e4f-91da-4bc1-8964-0257ee4119c8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"No. Yrs.\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.85753631591797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010303590446710587,\n                    \"Left\": 0.021836547181010246,\n                    \"Top\": 0.9832869172096252,\n                    \"Width\": 0.024228686466813087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021836547181010246,\n                        \"Y\": 0.9832869172096252\n                    },\n                    {\n                        \"X\": 0.04606498405337334,\n                        \"Y\": 0.9833043217658997\n                    },\n                    {\n                        \"X\": 0.046065233647823334,\n                        \"Y\": 0.9935905337333679\n                    },\n                    {\n                        \"X\": 0.021836647763848305,\n                        \"Y\": 0.9935730695724487\n                    }\n                ]\n            },\n            \"Id\": \"9ab91cbb-b07b-4810-ae3f-1feca5aba1b3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6b094c95-7c93-440a-b2f7-3659d0a26bbd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.89918518066406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010498330928385258,\n                    \"Left\": 0.4955656826496124,\n                    \"Top\": 0.9832187294960022,\n                    \"Width\": 0.024511033669114113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4955656826496124,\n                        \"Y\": 0.9832187294960022\n                    },\n                    {\n                        \"X\": 0.5200735330581665,\n                        \"Y\": 0.9832363128662109\n                    },\n                    {\n                        \"X\": 0.5200767517089844,\n                        \"Y\": 0.9937170743942261\n                    },\n                    {\n                        \"X\": 0.49556872248649597,\n                        \"Y\": 0.9936994314193726\n                    }\n                ]\n            },\n            \"Id\": \"cdf46f7f-530d-476b-a7ae-db5694338334\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cd97c06b-731e-4165-a7b4-8361caa05037\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"Text\": \"N/A\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8852310180664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02133137919008732,\n                    \"Left\": 0.21118181943893433,\n                    \"Top\": 0.012520487420260906,\n                    \"Width\": 0.11899422854185104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21118181943893433,\n                        \"Y\": 0.012520487420260906\n                    },\n                    {\n                        \"X\": 0.33017194271087646,\n                        \"Y\": 0.01257521752268076\n                    },\n                    {\n                        \"X\": 0.3301760256290436,\n                        \"Y\": 0.03385186567902565\n                    },\n                    {\n                        \"X\": 0.21118441224098206,\n                        \"Y\": 0.033796463161706924\n                    }\n                ]\n            },\n            \"Id\": \"353ab6c6-3d7d-4a9f-8e52-481eac4e26ff\",\n            \"Text\": \"Uniform\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9324722290039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0217568501830101,\n                    \"Left\": 0.3401956260204315,\n                    \"Top\": 0.012358393520116806,\n                    \"Width\": 0.1646704226732254\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3401956260204315,\n                        \"Y\": 0.012358393520116806\n                    },\n                    {\n                        \"X\": 0.5048596262931824,\n                        \"Y\": 0.012434122152626514\n                    },\n                    {\n                        \"X\": 0.5048660039901733,\n                        \"Y\": 0.03411524370312691\n                    },\n                    {\n                        \"X\": 0.34019991755485535,\n                        \"Y\": 0.034038569778203964\n                    }\n                ]\n            },\n            \"Id\": \"f1ecb01d-c9d5-465c-b79b-c51559aef5a3\",\n            \"Text\": \"Residential\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97958374023438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02114880457520485,\n                    \"Left\": 0.5152865052223206,\n                    \"Top\": 0.012703586369752884,\n                    \"Width\": 0.07353472709655762\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5152865052223206,\n                        \"Y\": 0.012703586369752884\n                    },\n                    {\n                        \"X\": 0.5888139009475708,\n                        \"Y\": 0.01273740641772747\n                    },\n                    {\n                        \"X\": 0.5888212323188782,\n                        \"Y\": 0.03385239094495773\n                    },\n                    {\n                        \"X\": 0.5152928829193115,\n                        \"Y\": 0.03381815925240517\n                    }\n                ]\n            },\n            \"Id\": \"674afd49-137c-4fa2-8249-b6d6f5e9a104\",\n            \"Text\": \"Loan\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9709701538086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02654913440346718,\n                    \"Left\": 0.5978369116783142,\n                    \"Top\": 0.012472503818571568,\n                    \"Width\": 0.17123639583587646\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5978369116783142,\n                        \"Y\": 0.012472503818571568\n                    },\n                    {\n                        \"X\": 0.7690613269805908,\n                        \"Y\": 0.012551249004900455\n                    },\n                    {\n                        \"X\": 0.7690733075141907,\n                        \"Y\": 0.03902163729071617\n                    },\n                    {\n                        \"X\": 0.5978462100028992,\n                        \"Y\": 0.03894169256091118\n                    }\n                ]\n            },\n            \"Id\": \"edbadbb8-6c5f-40a3-ae6d-9d1e58ab2b3a\",\n            \"Text\": \"Application\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89822387695312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009725828655064106,\n                    \"Left\": 0.02239893190562725,\n                    \"Top\": 0.04660893976688385,\n                    \"Width\": 0.025060757994651794\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02239893190562725,\n                        \"Y\": 0.04660893976688385\n                    },\n                    {\n                        \"X\": 0.047459445893764496,\n                        \"Y\": 0.0466206930577755\n                    },\n                    {\n                        \"X\": 0.047459688037633896,\n                        \"Y\": 0.05633476749062538\n                    },\n                    {\n                        \"X\": 0.02239903062582016,\n                        \"Y\": 0.05632294714450836\n                    }\n                ]\n            },\n            \"Id\": \"9febe886-84be-40bc-abec-d14ce3037ff5\",\n            \"Text\": \"This\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8945083618164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011312632821500301,\n                    \"Left\": 0.04986271634697914,\n                    \"Top\": 0.046661797910928726,\n                    \"Width\": 0.06252560019493103\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04986271634697914,\n                        \"Y\": 0.046661797910928726\n                    },\n                    {\n                        \"X\": 0.11238760501146317,\n                        \"Y\": 0.04669112339615822\n                    },\n                    {\n                        \"X\": 0.11238832026720047,\n                        \"Y\": 0.0579744316637516\n                    },\n                    {\n                        \"X\": 0.04986301437020302,\n                        \"Y\": 0.05794491991400719\n                    }\n                ]\n            },\n            \"Id\": \"730fae54-5ef5-44f3-ac33-cea717455ece\",\n            \"Text\": \"application\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82587432861328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009673060849308968,\n                    \"Left\": 0.1148463562130928,\n                    \"Top\": 0.046608395874500275,\n                    \"Width\": 0.010056481696665287\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1148463562130928,\n                        \"Y\": 0.046608395874500275\n                    },\n                    {\n                        \"X\": 0.1249021515250206,\n                        \"Y\": 0.04661311209201813\n                    },\n                    {\n                        \"X\": 0.12490283697843552,\n                        \"Y\": 0.05628145858645439\n                    },\n                    {\n                        \"X\": 0.11484698206186295,\n                        \"Y\": 0.05627671629190445\n                    }\n                ]\n            },\n            \"Id\": \"9cc46400-753f-46a6-88f8-36024c726566\",\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94998168945312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011466116644442081,\n                    \"Left\": 0.12730839848518372,\n                    \"Top\": 0.04674866795539856,\n                    \"Width\": 0.05358877778053284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12730839848518372,\n                        \"Y\": 0.04674866795539856\n                    },\n                    {\n                        \"X\": 0.18089598417282104,\n                        \"Y\": 0.04677380248904228\n                    },\n                    {\n                        \"X\": 0.18089717626571655,\n                        \"Y\": 0.058214783668518066\n                    },\n                    {\n                        \"X\": 0.12730923295021057,\n                        \"Y\": 0.05818948894739151\n                    }\n                ]\n            },\n            \"Id\": \"dcffa18d-3fdc-4521-adda-c1fed473cede\",\n            \"Text\": \"designed\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87994384765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009105155244469643,\n                    \"Left\": 0.1826246827840805,\n                    \"Top\": 0.047332923859357834,\n                    \"Width\": 0.011236120015382767\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1826246827840805,\n                        \"Y\": 0.047332923859357834\n                    },\n                    {\n                        \"X\": 0.1938597857952118,\n                        \"Y\": 0.04733819514513016\n                    },\n                    {\n                        \"X\": 0.19386081397533417,\n                        \"Y\": 0.056438080966472626\n                    },\n                    {\n                        \"X\": 0.1826256364583969,\n                        \"Y\": 0.056432779878377914\n                    }\n                ]\n            },\n            \"Id\": \"ed4d2ce5-9f2a-4401-b24c-5dee0581e1d8\",\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92576599121094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009356069378554821,\n                    \"Left\": 0.19645793735980988,\n                    \"Top\": 0.046905431896448135,\n                    \"Width\": 0.014747971668839455\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19645793735980988,\n                        \"Y\": 0.046905431896448135\n                    },\n                    {\n                        \"X\": 0.21120476722717285,\n                        \"Y\": 0.04691234976053238\n                    },\n                    {\n                        \"X\": 0.21120589971542358,\n                        \"Y\": 0.05626150220632553\n                    },\n                    {\n                        \"X\": 0.19645899534225464,\n                        \"Y\": 0.0562545470893383\n                    }\n                ]\n            },\n            \"Id\": \"3a3a80d9-2a32-4f27-847b-551590533fa5\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94914245605469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01110719982534647,\n                    \"Left\": 0.21367640793323517,\n                    \"Top\": 0.04661146178841591,\n                    \"Width\": 0.0603841096162796\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21367640793323517,\n                        \"Y\": 0.04661146178841591\n                    },\n                    {\n                        \"X\": 0.2740587592124939,\n                        \"Y\": 0.046639781445264816\n                    },\n                    {\n                        \"X\": 0.27406051754951477,\n                        \"Y\": 0.057718660682439804\n                    },\n                    {\n                        \"X\": 0.2136777639389038,\n                        \"Y\": 0.05769016593694687\n                    }\n                ]\n            },\n            \"Id\": \"5e82ebf1-f672-46d7-beee-8300b235f4bd\",\n            \"Text\": \"completed\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92610168457031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01148919202387333,\n                    \"Left\": 0.2767387628555298,\n                    \"Top\": 0.04676493629813194,\n                    \"Width\": 0.014261496253311634\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2767387628555298,\n                        \"Y\": 0.04676493629813194\n                    },\n                    {\n                        \"X\": 0.29099833965301514,\n                        \"Y\": 0.04677162319421768\n                    },\n                    {\n                        \"X\": 0.29100027680397034,\n                        \"Y\": 0.05825412645936012\n                    },\n                    {\n                        \"X\": 0.2767406105995178,\n                        \"Y\": 0.0582473985850811\n                    }\n                ]\n            },\n            \"Id\": \"f060996b-dc53-4fbf-b0dc-c3f2eccbac77\",\n            \"Text\": \"by\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89080047607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009742116555571556,\n                    \"Left\": 0.29292160272598267,\n                    \"Top\": 0.046709392219781876,\n                    \"Width\": 0.018339460715651512\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29292160272598267,\n                        \"Y\": 0.046709392219781876\n                    },\n                    {\n                        \"X\": 0.31125929951667786,\n                        \"Y\": 0.046717993915081024\n                    },\n                    {\n                        \"X\": 0.31126105785369873,\n                        \"Y\": 0.05645150691270828\n                    },\n                    {\n                        \"X\": 0.2929232716560364,\n                        \"Y\": 0.05644286051392555\n                    }\n                ]\n            },\n            \"Id\": \"dc011376-53ca-4de1-9521-39a891c0fc2f\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65232849121094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011637280695140362,\n                    \"Left\": 0.313835084438324,\n                    \"Top\": 0.04665587842464447,\n                    \"Width\": 0.06778918951749802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.313835084438324,\n                        \"Y\": 0.04665587842464447\n                    },\n                    {\n                        \"X\": 0.38162168860435486,\n                        \"Y\": 0.046687666326761246\n                    },\n                    {\n                        \"X\": 0.3816242814064026,\n                        \"Y\": 0.05829315632581711\n                    },\n                    {\n                        \"X\": 0.3138372004032135,\n                        \"Y\": 0.05826115980744362\n                    }\n                ]\n            },\n            \"Id\": \"a5a782a5-6b98-4101-9980-1fe6373852cc\",\n            \"Text\": \"applicant(s)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9507827758789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009179063141345978,\n                    \"Left\": 0.38393864035606384,\n                    \"Top\": 0.04714092239737511,\n                    \"Width\": 0.02353370003402233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38393864035606384,\n                        \"Y\": 0.04714092239737511\n                    },\n                    {\n                        \"X\": 0.40747013688087463,\n                        \"Y\": 0.04715196043252945\n                    },\n                    {\n                        \"X\": 0.4074723422527313,\n                        \"Y\": 0.056319985538721085\n                    },\n                    {\n                        \"X\": 0.3839406967163086,\n                        \"Y\": 0.05630888789892197\n                    }\n                ]\n            },\n            \"Id\": \"5fad3cd0-4edb-4cda-b01d-83855b074d99\",\n            \"Text\": \"with\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94263458251953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00910139735788107,\n                    \"Left\": 0.4096483588218689,\n                    \"Top\": 0.047093722969293594,\n                    \"Width\": 0.018269477412104607\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4096483588218689,\n                        \"Y\": 0.047093722969293594\n                    },\n                    {\n                        \"X\": 0.4279155433177948,\n                        \"Y\": 0.047102294862270355\n                    },\n                    {\n                        \"X\": 0.42791783809661865,\n                        \"Y\": 0.05619512125849724\n                    },\n                    {\n                        \"X\": 0.4096505343914032,\n                        \"Y\": 0.056186508387327194\n                    }\n                ]\n            },\n            \"Id\": \"76041b04-aaac-4747-8a4d-25605279fc5a\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91213989257812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009432461112737656,\n                    \"Left\": 0.4302546977996826,\n                    \"Top\": 0.0469021275639534,\n                    \"Width\": 0.05073793977499008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4302546977996826,\n                        \"Y\": 0.0469021275639534\n                    },\n                    {\n                        \"X\": 0.4809899926185608,\n                        \"Y\": 0.046925924718379974\n                    },\n                    {\n                        \"X\": 0.4809926450252533,\n                        \"Y\": 0.056334588676691055\n                    },\n                    {\n                        \"X\": 0.43025705218315125,\n                        \"Y\": 0.05631066858768463\n                    }\n                ]\n            },\n            \"Id\": \"d2fd3c0f-bcbc-43c0-882f-1ddd4491d145\",\n            \"Text\": \"Lender's\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 64.47471618652344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009609122760593891,\n                    \"Left\": 0.4832794666290283,\n                    \"Top\": 0.04672938957810402,\n                    \"Width\": 0.0650353953242302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4832794666290283,\n                        \"Y\": 0.04672938957810402\n                    },\n                    {\n                        \"X\": 0.5483117699623108,\n                        \"Y\": 0.04675988852977753\n                    },\n                    {\n                        \"X\": 0.5483148694038391,\n                        \"Y\": 0.056338515132665634\n                    },\n                    {\n                        \"X\": 0.4832821786403656,\n                        \"Y\": 0.056307848542928696\n                    }\n                ]\n            },\n            \"Id\": \"83a203f7-a29b-4c35-936b-b92cb4d55c87\",\n            \"Text\": \"assistance.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88922882080078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011149381287395954,\n                    \"Left\": 0.5512633919715881,\n                    \"Top\": 0.0467136912047863,\n                    \"Width\": 0.06139148026704788\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5512633919715881,\n                        \"Y\": 0.0467136912047863\n                    },\n                    {\n                        \"X\": 0.6126508712768555,\n                        \"Y\": 0.046742480248212814\n                    },\n                    {\n                        \"X\": 0.6126548647880554,\n                        \"Y\": 0.05786307156085968\n                    },\n                    {\n                        \"X\": 0.5512669682502747,\n                        \"Y\": 0.05783409997820854\n                    }\n                ]\n            },\n            \"Id\": \"1ec1499c-d89f-432a-906f-c505e4640f81\",\n            \"Text\": \"Applicants\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96734619140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009365417994558811,\n                    \"Left\": 0.614719569683075,\n                    \"Top\": 0.046838536858558655,\n                    \"Width\": 0.0386190228164196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.614719569683075,\n                        \"Y\": 0.046838536858558655\n                    },\n                    {\n                        \"X\": 0.6533350348472595,\n                        \"Y\": 0.04685664921998978\n                    },\n                    {\n                        \"X\": 0.653338611125946,\n                        \"Y\": 0.05620395764708519\n                    },\n                    {\n                        \"X\": 0.6147229671478271,\n                        \"Y\": 0.05618574842810631\n                    }\n                ]\n            },\n            \"Id\": \"f134279a-7e2a-44a6-8cbd-6975980b8d13\",\n            \"Text\": \"should\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88578033447266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01079151127487421,\n                    \"Left\": 0.6555262804031372,\n                    \"Top\": 0.0470900684595108,\n                    \"Width\": 0.05354044958949089\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6555262804031372,\n                        \"Y\": 0.0470900684595108\n                    },\n                    {\n                        \"X\": 0.7090622782707214,\n                        \"Y\": 0.047115180641412735\n                    },\n                    {\n                        \"X\": 0.7090667486190796,\n                        \"Y\": 0.05788158252835274\n                    },\n                    {\n                        \"X\": 0.6555304527282715,\n                        \"Y\": 0.05785631760954857\n                    }\n                ]\n            },\n            \"Id\": \"8d7a8574-0ed8-43de-ab5e-bc0337c099f5\",\n            \"Text\": \"complete\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90888214111328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00936167873442173,\n                    \"Left\": 0.7113295793533325,\n                    \"Top\": 0.046817630529403687,\n                    \"Width\": 0.02086728811264038\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7113295793533325,\n                        \"Y\": 0.046817630529403687\n                    },\n                    {\n                        \"X\": 0.732192873954773,\n                        \"Y\": 0.046827416867017746\n                    },\n                    {\n                        \"X\": 0.7321968674659729,\n                        \"Y\": 0.056179311126470566\n                    },\n                    {\n                        \"X\": 0.7113335132598877,\n                        \"Y\": 0.05616947263479233\n                    }\n                ]\n            },\n            \"Id\": \"7bb2d90e-65fb-47b3-87f4-ebefbbbb012e\",\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95543670654297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009384328499436378,\n                    \"Left\": 0.7346037030220032,\n                    \"Top\": 0.0467403419315815,\n                    \"Width\": 0.02657783031463623\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7346037030220032,\n                        \"Y\": 0.0467403419315815\n                    },\n                    {\n                        \"X\": 0.7611773014068604,\n                        \"Y\": 0.04675280302762985\n                    },\n                    {\n                        \"X\": 0.7611815333366394,\n                        \"Y\": 0.056124668568372726\n                    },\n                    {\n                        \"X\": 0.7346076965332031,\n                        \"Y\": 0.056112140417099\n                    }\n                ]\n            },\n            \"Id\": \"57c42ffe-1b8f-461b-b801-1b06f7f710cb\",\n            \"Text\": \"form\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94068145751953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007424431387335062,\n                    \"Left\": 0.7635406851768494,\n                    \"Top\": 0.04876384884119034,\n                    \"Width\": 0.014339637942612171\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7635406851768494,\n                        \"Y\": 0.04876384884119034\n                    },\n                    {\n                        \"X\": 0.7778769135475159,\n                        \"Y\": 0.04877058044075966\n                    },\n                    {\n                        \"X\": 0.7778803110122681,\n                        \"Y\": 0.05618828162550926\n                    },\n                    {\n                        \"X\": 0.763543963432312,\n                        \"Y\": 0.05618152394890785\n                    }\n                ]\n            },\n            \"Id\": \"f390eea3-3bbc-4f8c-b69c-0f259b0380d0\",\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.91633605957031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009810542687773705,\n                    \"Left\": 0.7799540162086487,\n                    \"Top\": 0.046433817595243454,\n                    \"Width\": 0.06312232464551926\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7799540162086487,\n                        \"Y\": 0.046433817595243454\n                    },\n                    {\n                        \"X\": 0.8430715203285217,\n                        \"Y\": 0.046463411301374435\n                    },\n                    {\n                        \"X\": 0.8430763483047485,\n                        \"Y\": 0.05624436214566231\n                    },\n                    {\n                        \"X\": 0.7799584865570068,\n                        \"Y\": 0.056214604526758194\n                    }\n                ]\n            },\n            \"Id\": \"e36bd776-e389-415e-b990-cde6038dce1e\",\n            \"Text\": \"\\\"Borrower\\\"\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6390609741211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007616387214511633,\n                    \"Left\": 0.844169020652771,\n                    \"Top\": 0.048574142158031464,\n                    \"Width\": 0.012180402874946594\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.844169020652771,\n                        \"Y\": 0.048574142158031464\n                    },\n                    {\n                        \"X\": 0.8563455939292908,\n                        \"Y\": 0.048579856753349304\n                    },\n                    {\n                        \"X\": 0.8563494086265564,\n                        \"Y\": 0.056190527975559235\n                    },\n                    {\n                        \"X\": 0.8441727757453918,\n                        \"Y\": 0.056184787303209305\n                    }\n                ]\n            },\n            \"Id\": \"b37b2826-74ae-4421-aad5-1e07f7b404a4\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 83.92047119140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011209191754460335,\n                    \"Left\": 0.8585785031318665,\n                    \"Top\": 0.04651820287108421,\n                    \"Width\": 0.08699887990951538\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8585785031318665,\n                        \"Y\": 0.04651820287108421\n                    },\n                    {\n                        \"X\": 0.9455711841583252,\n                        \"Y\": 0.04655899107456207\n                    },\n                    {\n                        \"X\": 0.9455773830413818,\n                        \"Y\": 0.0577273964881897\n                    },\n                    {\n                        \"X\": 0.8585841059684753,\n                        \"Y\": 0.057686347514390945\n                    }\n                ]\n            },\n            \"Id\": \"fa2b4fec-8911-4076-8247-d1ddfb8cdcb7\",\n            \"Text\": \"\\\"Co-Borrower\\\",\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68712615966797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00768072297796607,\n                    \"Left\": 0.9477093815803528,\n                    \"Top\": 0.048717088997364044,\n                    \"Width\": 0.014692839235067368\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9477093815803528,\n                        \"Y\": 0.048717088997364044\n                    },\n                    {\n                        \"X\": 0.9623978734016418,\n                        \"Y\": 0.0487239845097065\n                    },\n                    {\n                        \"X\": 0.9624022245407104,\n                        \"Y\": 0.05639781430363655\n                    },\n                    {\n                        \"X\": 0.9477136731147766,\n                        \"Y\": 0.05639088898897171\n                    }\n                ]\n            },\n            \"Id\": \"4c7f7250-6644-4666-8de2-f46814a25976\",\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 84.73932647705078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011307647451758385,\n                    \"Left\": 0.022480664774775505,\n                    \"Top\": 0.05996796116232872,\n                    \"Width\": 0.06234660744667053\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022480664774775505,\n                        \"Y\": 0.05996796116232872\n                    },\n                    {\n                        \"X\": 0.08482673764228821,\n                        \"Y\": 0.05999742075800896\n                    },\n                    {\n                        \"X\": 0.08482727408409119,\n                        \"Y\": 0.07127560675144196\n                    },\n                    {\n                        \"X\": 0.022480780258774757,\n                        \"Y\": 0.0712459608912468\n                    }\n                ]\n            },\n            \"Id\": \"23c322ba-28d0-4fca-a68a-7dfde9c49b89\",\n            \"Text\": \"applicable.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67967987060547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009892365895211697,\n                    \"Left\": 0.08879154175519943,\n                    \"Top\": 0.059922486543655396,\n                    \"Width\": 0.07363975793123245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08879154175519943,\n                        \"Y\": 0.059922486543655396\n                    },\n                    {\n                        \"X\": 0.16243039071559906,\n                        \"Y\": 0.05995728448033333\n                    },\n                    {\n                        \"X\": 0.16243129968643188,\n                        \"Y\": 0.06981485337018967\n                    },\n                    {\n                        \"X\": 0.08879202604293823,\n                        \"Y\": 0.06977986544370651\n                    }\n                ]\n            },\n            \"Id\": \"f18b8204-be84-47b8-9815-8f9f0c21203b\",\n            \"Text\": \"Co-Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91461181640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009818444959819317,\n                    \"Left\": 0.165247842669487,\n                    \"Top\": 0.060058705508708954,\n                    \"Width\": 0.0652838796377182\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.165247842669487,\n                        \"Y\": 0.060058705508708954\n                    },\n                    {\n                        \"X\": 0.23053041100502014,\n                        \"Y\": 0.06008955463767052\n                    },\n                    {\n                        \"X\": 0.2305317223072052,\n                        \"Y\": 0.06987714767456055\n                    },\n                    {\n                        \"X\": 0.16524876654148102,\n                        \"Y\": 0.06984613090753555\n                    }\n                ]\n            },\n            \"Id\": \"9d26b9f7-2104-49ae-8e1f-6c10a394cfc7\",\n            \"Text\": \"information\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97724151611328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008985772728919983,\n                    \"Left\": 0.23331120610237122,\n                    \"Top\": 0.060593582689762115,\n                    \"Width\": 0.02915758639574051\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23331120610237122,\n                        \"Y\": 0.060593582689762115\n                    },\n                    {\n                        \"X\": 0.2624674439430237,\n                        \"Y\": 0.060607366263866425\n                    },\n                    {\n                        \"X\": 0.26246878504753113,\n                        \"Y\": 0.0695793554186821\n                    },\n                    {\n                        \"X\": 0.23331241309642792,\n                        \"Y\": 0.06956550478935242\n                    }\n                ]\n            },\n            \"Id\": \"eec3bc95-f0e9-4a69-b69e-e7c6a7c4035e\",\n            \"Text\": \"must\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9800796508789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009309250861406326,\n                    \"Left\": 0.264579713344574,\n                    \"Top\": 0.06031334400177002,\n                    \"Width\": 0.02452724613249302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.264579713344574,\n                        \"Y\": 0.06031334400177002\n                    },\n                    {\n                        \"X\": 0.2891053855419159,\n                        \"Y\": 0.060324933379888535\n                    },\n                    {\n                        \"X\": 0.28910693526268005,\n                        \"Y\": 0.06962259113788605\n                    },\n                    {\n                        \"X\": 0.2645811438560486,\n                        \"Y\": 0.06961094588041306\n                    }\n                ]\n            },\n            \"Id\": \"c118863c-61cd-4b99-aba1-6a7bc45676dd\",\n            \"Text\": \"also\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62396240234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009310529567301273,\n                    \"Left\": 0.2914479374885559,\n                    \"Top\": 0.06018328294157982,\n                    \"Width\": 0.015246002934873104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2914479374885559,\n                        \"Y\": 0.06018328294157982\n                    },\n                    {\n                        \"X\": 0.3066922724246979,\n                        \"Y\": 0.060190487653017044\n                    },\n                    {\n                        \"X\": 0.3066939413547516,\n                        \"Y\": 0.06949381530284882\n                    },\n                    {\n                        \"X\": 0.29144951701164246,\n                        \"Y\": 0.0694865733385086\n                    }\n                ]\n            },\n            \"Id\": \"f6b98f8a-4be6-4560-b17d-f407c27e09ef\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97685241699219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011574509553611279,\n                    \"Left\": 0.3091231882572174,\n                    \"Top\": 0.06016984581947327,\n                    \"Width\": 0.05056970939040184\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3091231882572174,\n                        \"Y\": 0.06016984581947327\n                    },\n                    {\n                        \"X\": 0.35969045758247375,\n                        \"Y\": 0.0601937435567379\n                    },\n                    {\n                        \"X\": 0.35969287157058716,\n                        \"Y\": 0.07174435257911682\n                    },\n                    {\n                        \"X\": 0.30912524461746216,\n                        \"Y\": 0.07172030210494995\n                    }\n                ]\n            },\n            \"Id\": \"48c31be1-2d90-4271-a549-60ec339b287b\",\n            \"Text\": \"provided\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8679428100586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011199657805263996,\n                    \"Left\": 0.3624574840068817,\n                    \"Top\": 0.06016400083899498,\n                    \"Width\": 0.026490958407521248\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3624574840068817,\n                        \"Y\": 0.06016400083899498\n                    },\n                    {\n                        \"X\": 0.38894590735435486,\n                        \"Y\": 0.06017651781439781\n                    },\n                    {\n                        \"X\": 0.3889484405517578,\n                        \"Y\": 0.0713636577129364\n                    },\n                    {\n                        \"X\": 0.36245986819267273,\n                        \"Y\": 0.0713510662317276\n                    }\n                ]\n            },\n            \"Id\": \"2945e8ab-e356-4d18-b3af-301850bbfd05\",\n            \"Text\": \"(and\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94310760498047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009057052433490753,\n                    \"Left\": 0.39119580388069153,\n                    \"Top\": 0.060530610382556915,\n                    \"Width\": 0.019121071323752403\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39119580388069153,\n                        \"Y\": 0.060530610382556915\n                    },\n                    {\n                        \"X\": 0.4103147089481354,\n                        \"Y\": 0.060539647936820984\n                    },\n                    {\n                        \"X\": 0.4103168547153473,\n                        \"Y\": 0.06958766281604767\n                    },\n                    {\n                        \"X\": 0.3911978602409363,\n                        \"Y\": 0.06957858055830002\n                    }\n                ]\n            },\n            \"Id\": \"3210e9d5-4a7b-4b14-b4be-e7bb50c2d933\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81591033935547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011155787855386734,\n                    \"Left\": 0.41287386417388916,\n                    \"Top\": 0.0601092167198658,\n                    \"Width\": 0.06683211773633957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41287386417388916,\n                        \"Y\": 0.0601092167198658\n                    },\n                    {\n                        \"X\": 0.4797028601169586,\n                        \"Y\": 0.06014079600572586\n                    },\n                    {\n                        \"X\": 0.4797059893608093,\n                        \"Y\": 0.07126500457525253\n                    },\n                    {\n                        \"X\": 0.41287654638290405,\n                        \"Y\": 0.07123322784900665\n                    }\n                ]\n            },\n            \"Id\": \"d653c0e0-0013-4f34-b5eb-d224d58f60f0\",\n            \"Text\": \"appropriate\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78961944580078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00909491814672947,\n                    \"Left\": 0.48141586780548096,\n                    \"Top\": 0.06043405085802078,\n                    \"Width\": 0.0227096788585186\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48141586780548096,\n                        \"Y\": 0.06043405085802078\n                    },\n                    {\n                        \"X\": 0.5041228532791138,\n                        \"Y\": 0.06044478341937065\n                    },\n                    {\n                        \"X\": 0.5041255354881287,\n                        \"Y\": 0.0695289671421051\n                    },\n                    {\n                        \"X\": 0.4814184308052063,\n                        \"Y\": 0.06951817870140076\n                    }\n                ]\n            },\n            \"Id\": \"856fa64c-c3ee-479c-97aa-60fc5d6f4005\",\n            \"Text\": \"box\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74210357666016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011030898429453373,\n                    \"Left\": 0.5059179067611694,\n                    \"Top\": 0.060228005051612854,\n                    \"Width\": 0.05420348048210144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5059179067611694,\n                        \"Y\": 0.060228005051612854\n                    },\n                    {\n                        \"X\": 0.560117781162262,\n                        \"Y\": 0.06025362014770508\n                    },\n                    {\n                        \"X\": 0.5601214170455933,\n                        \"Y\": 0.07125890254974365\n                    },\n                    {\n                        \"X\": 0.5059211850166321,\n                        \"Y\": 0.07123313099145889\n                    }\n                ]\n            },\n            \"Id\": \"d05aae44-76f0-4c92-b370-9eb7884116d7\",\n            \"Text\": \"checked)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87157440185547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008986398577690125,\n                    \"Left\": 0.5618700981140137,\n                    \"Top\": 0.06052993983030319,\n                    \"Width\": 0.03218714892864227\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5618700981140137,\n                        \"Y\": 0.06052993983030319\n                    },\n                    {\n                        \"X\": 0.594054102897644,\n                        \"Y\": 0.06054515391588211\n                    },\n                    {\n                        \"X\": 0.5940572619438171,\n                        \"Y\": 0.06951633840799332\n                    },\n                    {\n                        \"X\": 0.5618730187416077,\n                        \"Y\": 0.06950104981660843\n                    }\n                ]\n            },\n            \"Id\": \"00c5751d-28e0-4160-bdaf-4420ea524726\",\n            \"Text\": \"when\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9310302734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008661885745823383,\n                    \"Left\": 0.617397129535675,\n                    \"Top\": 0.06061027944087982,\n                    \"Width\": 0.018627921119332314\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.617397129535675,\n                        \"Y\": 0.06061027944087982\n                    },\n                    {\n                        \"X\": 0.6360217928886414,\n                        \"Y\": 0.06061908230185509\n                    },\n                    {\n                        \"X\": 0.636025071144104,\n                        \"Y\": 0.06927216798067093\n                    },\n                    {\n                        \"X\": 0.6174002289772034,\n                        \"Y\": 0.06926331669092178\n                    }\n                ]\n            },\n            \"Id\": \"57636e55-a563-4bf5-bc66-51f80b1111e9\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93281555175781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009078715927898884,\n                    \"Left\": 0.6391878128051758,\n                    \"Top\": 0.060386523604393005,\n                    \"Width\": 0.04308232292532921\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6391878128051758,\n                        \"Y\": 0.060386523604393005\n                    },\n                    {\n                        \"X\": 0.6822665333747864,\n                        \"Y\": 0.0604068823158741\n                    },\n                    {\n                        \"X\": 0.6822701692581177,\n                        \"Y\": 0.06946524232625961\n                    },\n                    {\n                        \"X\": 0.639191210269928,\n                        \"Y\": 0.06944477558135986\n                    }\n                ]\n            },\n            \"Id\": \"9b2fa191-def3-416b-b35b-b740fc237b65\",\n            \"Text\": \"income\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89224243164062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007383357733488083,\n                    \"Left\": 0.6854954361915588,\n                    \"Top\": 0.06216990947723389,\n                    \"Width\": 0.01301886048167944\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6854954361915588,\n                        \"Y\": 0.06216990947723389\n                    },\n                    {\n                        \"X\": 0.6985112428665161,\n                        \"Y\": 0.062176067382097244\n                    },\n                    {\n                        \"X\": 0.6985142827033997,\n                        \"Y\": 0.06955326348543167\n                    },\n                    {\n                        \"X\": 0.6854984164237976,\n                        \"Y\": 0.06954708695411682\n                    }\n                ]\n            },\n            \"Id\": \"0bb2cf3f-ca1d-43f8-870d-dd446e7c1c4e\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96611785888672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008798849768936634,\n                    \"Left\": 0.7010520100593567,\n                    \"Top\": 0.060808341950178146,\n                    \"Width\": 0.038894809782505035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7010520100593567,\n                        \"Y\": 0.060808341950178146\n                    },\n                    {\n                        \"X\": 0.7399429678916931,\n                        \"Y\": 0.060826726257801056\n                    },\n                    {\n                        \"X\": 0.7399467825889587,\n                        \"Y\": 0.0696071907877922\n                    },\n                    {\n                        \"X\": 0.7010555863380432,\n                        \"Y\": 0.06958871334791183\n                    }\n                ]\n            },\n            \"Id\": \"6a380e10-b2dc-403c-83d9-a99cabcfb2a9\",\n            \"Text\": \"assets\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96623229980469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00947731826454401,\n                    \"Left\": 0.7429999709129333,\n                    \"Top\": 0.060012657195329666,\n                    \"Width\": 0.013201965019106865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7429999709129333,\n                        \"Y\": 0.060012657195329666\n                    },\n                    {\n                        \"X\": 0.7561977505683899,\n                        \"Y\": 0.06001889333128929\n                    },\n                    {\n                        \"X\": 0.7562019228935242,\n                        \"Y\": 0.0694899782538414\n                    },\n                    {\n                        \"X\": 0.7430041432380676,\n                        \"Y\": 0.06948370486497879\n                    }\n                ]\n            },\n            \"Id\": \"9eee2b89-f5c2-4cfd-a0b2-1b82b6e00b81\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86959838867188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007170522585511208,\n                    \"Left\": 0.7583205103874207,\n                    \"Top\": 0.06239452213048935,\n                    \"Width\": 0.00810184795409441\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7583205103874207,\n                        \"Y\": 0.06239452213048935\n                    },\n                    {\n                        \"X\": 0.7664191126823425,\n                        \"Y\": 0.06239835172891617\n                    },\n                    {\n                        \"X\": 0.7664223313331604,\n                        \"Y\": 0.06956504285335541\n                    },\n                    {\n                        \"X\": 0.7583236694335938,\n                        \"Y\": 0.0695611983537674\n                    }\n                ]\n            },\n            \"Id\": \"aecba7d6-798e-4e92-8fa4-9998c7a95385\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93795776367188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009492702782154083,\n                    \"Left\": 0.7695419192314148,\n                    \"Top\": 0.06214187294244766,\n                    \"Width\": 0.04059910029172897\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7695419192314148,\n                        \"Y\": 0.06214187294244766\n                    },\n                    {\n                        \"X\": 0.8101364970207214,\n                        \"Y\": 0.062161076813936234\n                    },\n                    {\n                        \"X\": 0.8101410269737244,\n                        \"Y\": 0.07163457572460175\n                    },\n                    {\n                        \"X\": 0.7695462107658386,\n                        \"Y\": 0.07161527127027512\n                    }\n                ]\n            },\n            \"Id\": \"62687e50-a844-48ac-abf4-b975c57dcfaa\",\n            \"Text\": \"person\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96497344970703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009272109717130661,\n                    \"Left\": 0.81326824426651,\n                    \"Top\": 0.060359109193086624,\n                    \"Width\": 0.03126625716686249\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.81326824426651,\n                        \"Y\": 0.060359109193086624\n                    },\n                    {\n                        \"X\": 0.844529926776886,\n                        \"Y\": 0.060373883694410324\n                    },\n                    {\n                        \"X\": 0.8445345163345337,\n                        \"Y\": 0.06963121891021729\n                    },\n                    {\n                        \"X\": 0.8132727146148682,\n                        \"Y\": 0.06961636990308762\n                    }\n                ]\n            },\n            \"Id\": \"790427a8-a884-4820-b06d-a7955a2144c1\",\n            \"Text\": \"other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98423767089844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009404501877725124,\n                    \"Left\": 0.8469897508621216,\n                    \"Top\": 0.060306135565042496,\n                    \"Width\": 0.026702038943767548\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8469897508621216,\n                        \"Y\": 0.060306135565042496\n                    },\n                    {\n                        \"X\": 0.8736869692802429,\n                        \"Y\": 0.06031874939799309\n                    },\n                    {\n                        \"X\": 0.8736917972564697,\n                        \"Y\": 0.0697106346487999\n                    },\n                    {\n                        \"X\": 0.8469944596290588,\n                        \"Y\": 0.06969795376062393\n                    }\n                ]\n            },\n            \"Id\": \"b187fc9d-73cc-486e-b713-fb6f11a794c6\",\n            \"Text\": \"than\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98031616210938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009383385069668293,\n                    \"Left\": 0.8767287731170654,\n                    \"Top\": 0.06035971641540527,\n                    \"Width\": 0.01954973116517067\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8767287731170654,\n                        \"Y\": 0.06035971641540527\n                    },\n                    {\n                        \"X\": 0.8962736129760742,\n                        \"Y\": 0.06036895141005516\n                    },\n                    {\n                        \"X\": 0.8962785601615906,\n                        \"Y\": 0.0697430968284607\n                    },\n                    {\n                        \"X\": 0.876733660697937,\n                        \"Y\": 0.06973381340503693\n                    }\n                ]\n            },\n            \"Id\": \"5cc3de36-6e91-4ad7-9174-3de14f979824\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 90.97003936767578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010119845159351826,\n                    \"Left\": 0.8993383646011353,\n                    \"Top\": 0.05973319336771965,\n                    \"Width\": 0.06331522017717361\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8993383646011353,\n                        \"Y\": 0.05973319336771965\n                    },\n                    {\n                        \"X\": 0.9626478552818298,\n                        \"Y\": 0.0597630999982357\n                    },\n                    {\n                        \"X\": 0.9626535773277283,\n                        \"Y\": 0.0698530375957489\n                    },\n                    {\n                        \"X\": 0.8993436694145203,\n                        \"Y\": 0.06982296705245972\n                    }\n                ]\n            },\n            \"Id\": \"ad4b0206-38ef-42de-9498-b80320dc4e25\",\n            \"Text\": \"\\\"Borrower\\\"\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85963439941406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012019701302051544,\n                    \"Left\": 0.022686073556542397,\n                    \"Top\": 0.07440077513456345,\n                    \"Width\": 0.056614793837070465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022686073556542397,\n                        \"Y\": 0.07440077513456345\n                    },\n                    {\n                        \"X\": 0.07930034399032593,\n                        \"Y\": 0.07442774623632431\n                    },\n                    {\n                        \"X\": 0.07930086553096771,\n                        \"Y\": 0.08642047643661499\n                    },\n                    {\n                        \"X\": 0.022686198353767395,\n                        \"Y\": 0.0863933265209198\n                    }\n                ]\n            },\n            \"Id\": \"dd3863f1-d8f0-42a3-8d9d-47ce74ad1519\",\n            \"Text\": \"(including\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96385955810547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009213381446897984,\n                    \"Left\": 0.08157960325479507,\n                    \"Top\": 0.07470642775297165,\n                    \"Width\": 0.01751413382589817\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08157960325479507,\n                        \"Y\": 0.07470642775297165\n                    },\n                    {\n                        \"X\": 0.09909322112798691,\n                        \"Y\": 0.0747147724032402\n                    },\n                    {\n                        \"X\": 0.0990937352180481,\n                        \"Y\": 0.08391980826854706\n                    },\n                    {\n                        \"X\": 0.0815800204873085,\n                        \"Y\": 0.08391141891479492\n                    }\n                ]\n            },\n            \"Id\": \"76a99cc0-ad06-4cd7-bdd6-1e33c88e4971\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92943572998047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00997146312147379,\n                    \"Left\": 0.10235518217086792,\n                    \"Top\": 0.07458487898111343,\n                    \"Width\": 0.062090665102005005\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10235518217086792,\n                        \"Y\": 0.07458487898111343\n                    },\n                    {\n                        \"X\": 0.1644449084997177,\n                        \"Y\": 0.07461445778608322\n                    },\n                    {\n                        \"X\": 0.16444584727287292,\n                        \"Y\": 0.08455634117126465\n                    },\n                    {\n                        \"X\": 0.10235575586557388,\n                        \"Y\": 0.08452659845352173\n                    }\n                ]\n            },\n            \"Id\": \"8a0916ad-78d4-40e9-8a44-a9b34cce4945\",\n            \"Text\": \"Borrower's\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.27018737792969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01171639934182167,\n                    \"Left\": 0.16702142357826233,\n                    \"Top\": 0.07468926906585693,\n                    \"Width\": 0.04644070193171501\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16702142357826233,\n                        \"Y\": 0.07468926906585693\n                    },\n                    {\n                        \"X\": 0.21346068382263184,\n                        \"Y\": 0.0747113972902298\n                    },\n                    {\n                        \"X\": 0.21346212923526764,\n                        \"Y\": 0.0864056721329689\n                    },\n                    {\n                        \"X\": 0.16702254116535187,\n                        \"Y\": 0.0863834023475647\n                    }\n                ]\n            },\n            \"Id\": \"3814af86-88c9-428d-9cc0-ee852e81524f\",\n            \"Text\": \"spouse)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52820587158203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009348788298666477,\n                    \"Left\": 0.21546408534049988,\n                    \"Top\": 0.07458779960870743,\n                    \"Width\": 0.018478695303201675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21546408534049988,\n                        \"Y\": 0.07458779960870743\n                    },\n                    {\n                        \"X\": 0.23394151031970978,\n                        \"Y\": 0.0745965987443924\n                    },\n                    {\n                        \"X\": 0.23394277691841125,\n                        \"Y\": 0.08393658697605133\n                    },\n                    {\n                        \"X\": 0.215465247631073,\n                        \"Y\": 0.08392773568630219\n                    }\n                ]\n            },\n            \"Id\": \"2a47ce87-4ed2-4019-ad0c-ce098607c4d0\",\n            \"Text\": \"will\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79659271240234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00911618210375309,\n                    \"Left\": 0.2362675964832306,\n                    \"Top\": 0.07473821938037872,\n                    \"Width\": 0.015104752033948898\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2362675964832306,\n                        \"Y\": 0.07473821938037872\n                    },\n                    {\n                        \"X\": 0.25137102603912354,\n                        \"Y\": 0.07474541664123535\n                    },\n                    {\n                        \"X\": 0.251372367143631,\n                        \"Y\": 0.08385440707206726\n                    },\n                    {\n                        \"X\": 0.23626884818077087,\n                        \"Y\": 0.08384717255830765\n                    }\n                ]\n            },\n            \"Id\": \"67ef0cec-66be-4f14-996c-1dd87d11ed69\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8861083984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009340168908238411,\n                    \"Left\": 0.25348520278930664,\n                    \"Top\": 0.07475027441978455,\n                    \"Width\": 0.028675535693764687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25348520278930664,\n                        \"Y\": 0.07475027441978455\n                    },\n                    {\n                        \"X\": 0.2821592092514038,\n                        \"Y\": 0.0747639387845993\n                    },\n                    {\n                        \"X\": 0.2821607291698456,\n                        \"Y\": 0.08409044146537781\n                    },\n                    {\n                        \"X\": 0.2534865736961365,\n                        \"Y\": 0.08407671004533768\n                    }\n                ]\n            },\n            \"Id\": \"e635070f-1c08-452d-a693-dabc65ea1880\",\n            \"Text\": \"used\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93451690673828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0072760796174407005,\n                    \"Left\": 0.284456729888916,\n                    \"Top\": 0.07688505947589874,\n                    \"Width\": 0.013758555054664612\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.284456729888916,\n                        \"Y\": 0.07688505947589874\n                    },\n                    {\n                        \"X\": 0.29821401834487915,\n                        \"Y\": 0.07689161598682404\n                    },\n                    {\n                        \"X\": 0.29821527004241943,\n                        \"Y\": 0.08416114002466202\n                    },\n                    {\n                        \"X\": 0.2844579219818115,\n                        \"Y\": 0.08415454626083374\n                    }\n                ]\n            },\n            \"Id\": \"e11324f1-6d02-48b6-9819-a36c25257a03\",\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88590240478516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007104422431439161,\n                    \"Left\": 0.3003596067428589,\n                    \"Top\": 0.07675323635339737,\n                    \"Width\": 0.007792999967932701\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3003596067428589,\n                        \"Y\": 0.07675323635339737\n                    },\n                    {\n                        \"X\": 0.30815133452415466,\n                        \"Y\": 0.07675695419311523\n                    },\n                    {\n                        \"X\": 0.30815261602401733,\n                        \"Y\": 0.08385766297578812\n                    },\n                    {\n                        \"X\": 0.30036085844039917,\n                        \"Y\": 0.08385393023490906\n                    }\n                ]\n            },\n            \"Id\": \"a459ce74-e1c2-4f2d-a14c-35aabe90ec98\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83863830566406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009555162861943245,\n                    \"Left\": 0.3107609152793884,\n                    \"Top\": 0.07460487633943558,\n                    \"Width\": 0.03092271462082863\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3107609152793884,\n                        \"Y\": 0.07460487633943558\n                    },\n                    {\n                        \"X\": 0.34168174862861633,\n                        \"Y\": 0.0746196061372757\n                    },\n                    {\n                        \"X\": 0.34168362617492676,\n                        \"Y\": 0.08416003733873367\n                    },\n                    {\n                        \"X\": 0.3107626438140869,\n                        \"Y\": 0.08414523303508759\n                    }\n                ]\n            },\n            \"Id\": \"bc0ef9ba-115d-482c-a05e-6e4e92d10f62\",\n            \"Text\": \"basis\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88813781738281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009579007513821125,\n                    \"Left\": 0.34350982308387756,\n                    \"Top\": 0.074459508061409,\n                    \"Width\": 0.016084372997283936\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34350982308387756,\n                        \"Y\": 0.074459508061409\n                    },\n                    {\n                        \"X\": 0.3595921993255615,\n                        \"Y\": 0.07446717470884323\n                    },\n                    {\n                        \"X\": 0.3595941960811615,\n                        \"Y\": 0.08403851836919785\n                    },\n                    {\n                        \"X\": 0.3435117304325104,\n                        \"Y\": 0.08403081446886063\n                    }\n                ]\n            },\n            \"Id\": \"3d7ec400-1d72-4159-84e0-57aaf2eec661\",\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87167358398438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009239425882697105,\n                    \"Left\": 0.3614228367805481,\n                    \"Top\": 0.07465492188930511,\n                    \"Width\": 0.02527257800102234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3614228367805481,\n                        \"Y\": 0.07465492188930511\n                    },\n                    {\n                        \"X\": 0.3866933286190033,\n                        \"Y\": 0.07466696202754974\n                    },\n                    {\n                        \"X\": 0.38669541478157043,\n                        \"Y\": 0.08389434963464737\n                    },\n                    {\n                        \"X\": 0.3614247739315033,\n                        \"Y\": 0.08388224989175797\n                    }\n                ]\n            },\n            \"Id\": \"86b7ce9e-257d-4bf2-be9e-ef5b9eb6d3c4\",\n            \"Text\": \"loan\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.69764709472656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01110183447599411,\n                    \"Left\": 0.38884156942367554,\n                    \"Top\": 0.07467558979988098,\n                    \"Width\": 0.06920035183429718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38884156942367554,\n                        \"Y\": 0.07467558979988098\n                    },\n                    {\n                        \"X\": 0.45803895592689514,\n                        \"Y\": 0.07470855116844177\n                    },\n                    {\n                        \"X\": 0.4580419063568115,\n                        \"Y\": 0.08577742427587509\n                    },\n                    {\n                        \"X\": 0.3888440728187561,\n                        \"Y\": 0.08574425429105759\n                    }\n                ]\n            },\n            \"Id\": \"24bf3d2e-20ff-4d13-bcd5-f693e1ae9871\",\n            \"Text\": \"qualification\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80647277832031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.006990709342062473,\n                    \"Left\": 0.46049460768699646,\n                    \"Top\": 0.07674563676118851,\n                    \"Width\": 0.012298386543989182\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46049460768699646,\n                        \"Y\": 0.07674563676118851\n                    },\n                    {\n                        \"X\": 0.47279107570648193,\n                        \"Y\": 0.07675150036811829\n                    },\n                    {\n                        \"X\": 0.47279301285743713,\n                        \"Y\": 0.0837363451719284\n                    },\n                    {\n                        \"X\": 0.4604965150356293,\n                        \"Y\": 0.08373045921325684\n                    }\n                ]\n            },\n            \"Id\": \"f4263397-29d4-4a23-af0a-a710bb72a41d\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55145263671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008945009671151638,\n                    \"Left\": 0.49378496408462524,\n                    \"Top\": 0.07496454566717148,\n                    \"Width\": 0.019041230902075768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49378496408462524,\n                        \"Y\": 0.07496454566717148\n                    },\n                    {\n                        \"X\": 0.5128235220909119,\n                        \"Y\": 0.07497361302375793\n                    },\n                    {\n                        \"X\": 0.5128262042999268,\n                        \"Y\": 0.08390955626964569\n                    },\n                    {\n                        \"X\": 0.4937875270843506,\n                        \"Y\": 0.08390043675899506\n                    }\n                ]\n            },\n            \"Id\": \"9b4b5495-4512-45c3-a9ae-445c29a065a7\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9332275390625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009025314822793007,\n                    \"Left\": 0.5150543451309204,\n                    \"Top\": 0.07480644434690475,\n                    \"Width\": 0.04332616552710533\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5150543451309204,\n                        \"Y\": 0.07480644434690475\n                    },\n                    {\n                        \"X\": 0.5583776235580444,\n                        \"Y\": 0.07482708990573883\n                    },\n                    {\n                        \"X\": 0.5583805441856384,\n                        \"Y\": 0.08383176475763321\n                    },\n                    {\n                        \"X\": 0.5150570869445801,\n                        \"Y\": 0.08381102234125137\n                    }\n                ]\n            },\n            \"Id\": \"d69068ee-befc-4b32-ac6c-5c29682aa369\",\n            \"Text\": \"income\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74846649169922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007382465526461601,\n                    \"Left\": 0.5606067776679993,\n                    \"Top\": 0.07656335085630417,\n                    \"Width\": 0.012672957964241505\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5606067776679993,\n                        \"Y\": 0.07656335085630417\n                    },\n                    {\n                        \"X\": 0.5732772946357727,\n                        \"Y\": 0.07656939327716827\n                    },\n                    {\n                        \"X\": 0.5732797384262085,\n                        \"Y\": 0.08394581079483032\n                    },\n                    {\n                        \"X\": 0.5606092214584351,\n                        \"Y\": 0.08393974602222443\n                    }\n                ]\n            },\n            \"Id\": \"2e6c4bfa-19e9-48c3-aae6-c03fe0b8e90d\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95280456542969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00888032279908657,\n                    \"Left\": 0.5751747488975525,\n                    \"Top\": 0.07519491016864777,\n                    \"Width\": 0.038120172917842865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5751747488975525,\n                        \"Y\": 0.07519491016864777\n                    },\n                    {\n                        \"X\": 0.6132917404174805,\n                        \"Y\": 0.07521307468414307\n                    },\n                    {\n                        \"X\": 0.6132949590682983,\n                        \"Y\": 0.08407522737979889\n                    },\n                    {\n                        \"X\": 0.5751777291297913,\n                        \"Y\": 0.08405698090791702\n                    }\n                ]\n            },\n            \"Id\": \"da42aa69-9854-4461-908f-d952e43aa08b\",\n            \"Text\": \"assets\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93684387207031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009420640766620636,\n                    \"Left\": 0.6155962944030762,\n                    \"Top\": 0.07459083944559097,\n                    \"Width\": 0.012692870572209358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6155962944030762,\n                        \"Y\": 0.07459083944559097\n                    },\n                    {\n                        \"X\": 0.6282857060432434,\n                        \"Y\": 0.07459688186645508\n                    },\n                    {\n                        \"X\": 0.6282891631126404,\n                        \"Y\": 0.08401148021221161\n                    },\n                    {\n                        \"X\": 0.6155996918678284,\n                        \"Y\": 0.08400540053844452\n                    }\n                ]\n            },\n            \"Id\": \"904a5788-769f-4cd3-818e-ef3bfd471526\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91844940185547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009295942261815071,\n                    \"Left\": 0.629834771156311,\n                    \"Top\": 0.07483716309070587,\n                    \"Width\": 0.018161199986934662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.629834771156311,\n                        \"Y\": 0.07483716309070587\n                    },\n                    {\n                        \"X\": 0.6479924321174622,\n                        \"Y\": 0.0748458132147789\n                    },\n                    {\n                        \"X\": 0.6479959487915039,\n                        \"Y\": 0.0841331034898758\n                    },\n                    {\n                        \"X\": 0.629838228225708,\n                        \"Y\": 0.08412440866231918\n                    }\n                ]\n            },\n            \"Id\": \"e61fa575-aeab-4ac2-8122-e88a6b17663a\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95558166503906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009472697041928768,\n                    \"Left\": 0.650955855846405,\n                    \"Top\": 0.07471085339784622,\n                    \"Width\": 0.06201259791851044\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.650955855846405,\n                        \"Y\": 0.07471085339784622\n                    },\n                    {\n                        \"X\": 0.7129645347595215,\n                        \"Y\": 0.07474039494991302\n                    },\n                    {\n                        \"X\": 0.7129684686660767,\n                        \"Y\": 0.08418355137109756\n                    },\n                    {\n                        \"X\": 0.6509594917297363,\n                        \"Y\": 0.08415385335683823\n                    }\n                ]\n            },\n            \"Id\": \"c99ebb73-a09b-460a-96ba-023456b9c9dd\",\n            \"Text\": \"Borrower's\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92904663085938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009231936186552048,\n                    \"Left\": 0.7152307033538818,\n                    \"Top\": 0.07677339762449265,\n                    \"Width\": 0.042946163564920425\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7152307033538818,\n                        \"Y\": 0.07677339762449265\n                    },\n                    {\n                        \"X\": 0.7581727504730225,\n                        \"Y\": 0.07679387927055359\n                    },\n                    {\n                        \"X\": 0.758176863193512,\n                        \"Y\": 0.08600533753633499\n                    },\n                    {\n                        \"X\": 0.7152345776557922,\n                        \"Y\": 0.08598475158214569\n                    }\n                ]\n            },\n            \"Id\": \"76caa53a-b3d1-4871-9384-ba6f7aec41a6\",\n            \"Text\": \"spouse\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89960479736328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00725426385179162,\n                    \"Left\": 0.7606215476989746,\n                    \"Top\": 0.07675903290510178,\n                    \"Width\": 0.012402117252349854\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7606215476989746,\n                        \"Y\": 0.07675903290510178\n                    },\n                    {\n                        \"X\": 0.7730203866958618,\n                        \"Y\": 0.07676494866609573\n                    },\n                    {\n                        \"X\": 0.7730236649513245,\n                        \"Y\": 0.08401329815387726\n                    },\n                    {\n                        \"X\": 0.7606247663497925,\n                        \"Y\": 0.08400736004114151\n                    }\n                ]\n            },\n            \"Id\": \"23645fe6-148c-4e95-97b5-b85207929ffc\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97148132324219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009114520624279976,\n                    \"Left\": 0.7749019861221313,\n                    \"Top\": 0.07499678432941437,\n                    \"Width\": 0.030858274549245834\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7749019861221313,\n                        \"Y\": 0.07499678432941437\n                    },\n                    {\n                        \"X\": 0.8057559728622437,\n                        \"Y\": 0.0750114843249321\n                    },\n                    {\n                        \"X\": 0.8057602643966675,\n                        \"Y\": 0.0841113030910492\n                    },\n                    {\n                        \"X\": 0.7749060988426208,\n                        \"Y\": 0.0840965285897255\n                    }\n                ]\n            },\n            \"Id\": \"89c4435f-a49e-4310-a3db-de7e50f47a80\",\n            \"Text\": \"other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97256469726562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009306041523814201,\n                    \"Left\": 0.8076102137565613,\n                    \"Top\": 0.07681825011968613,\n                    \"Width\": 0.040520451962947845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8076102137565613,\n                        \"Y\": 0.07681825011968613\n                    },\n                    {\n                        \"X\": 0.8481260538101196,\n                        \"Y\": 0.07683757692575455\n                    },\n                    {\n                        \"X\": 0.8481307029724121,\n                        \"Y\": 0.08612429350614548\n                    },\n                    {\n                        \"X\": 0.8076146245002747,\n                        \"Y\": 0.0861048698425293\n                    }\n                ]\n            },\n            \"Id\": \"996096be-69e8-4d43-92d5-b6c6ecaee103\",\n            \"Text\": \"person\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94971466064453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009163319133222103,\n                    \"Left\": 0.8501542806625366,\n                    \"Top\": 0.07489924132823944,\n                    \"Width\": 0.024718310683965683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8501542806625366,\n                        \"Y\": 0.07489924132823944\n                    },\n                    {\n                        \"X\": 0.8748679161071777,\n                        \"Y\": 0.07491101324558258\n                    },\n                    {\n                        \"X\": 0.874872624874115,\n                        \"Y\": 0.08406256139278412\n                    },\n                    {\n                        \"X\": 0.8501588702201843,\n                        \"Y\": 0.0840507298707962\n                    }\n                ]\n            },\n            \"Id\": \"a458d3a2-41e6-419b-b67e-78bcd478dbea\",\n            \"Text\": \"who\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94012451171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009428923018276691,\n                    \"Left\": 0.8771710395812988,\n                    \"Top\": 0.07485020905733109,\n                    \"Width\": 0.021298015490174294\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8771710395812988,\n                        \"Y\": 0.07485020905733109\n                    },\n                    {\n                        \"X\": 0.8984640836715698,\n                        \"Y\": 0.0748603567481041\n                    },\n                    {\n                        \"X\": 0.8984690308570862,\n                        \"Y\": 0.0842791348695755\n                    },\n                    {\n                        \"X\": 0.8771758675575256,\n                        \"Y\": 0.08426893502473831\n                    }\n                ]\n            },\n            \"Id\": \"1d559ac4-32f7-4177-a098-31e4b59b8281\",\n            \"Text\": \"has\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93780517578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011573010124266148,\n                    \"Left\": 0.9005749821662903,\n                    \"Top\": 0.07490271329879761,\n                    \"Width\": 0.06478121876716614\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9005749821662903,\n                        \"Y\": 0.07490271329879761\n                    },\n                    {\n                        \"X\": 0.9653496146202087,\n                        \"Y\": 0.07493357360363007\n                    },\n                    {\n                        \"X\": 0.965356171131134,\n                        \"Y\": 0.08647572249174118\n                    },\n                    {\n                        \"X\": 0.9005810618400574,\n                        \"Y\": 0.0864446684718132\n                    }\n                ]\n            },\n            \"Id\": \"38474591-1ef5-4fbc-bfb5-de17351458c8\",\n            \"Text\": \"community\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95319366455078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011638122610747814,\n                    \"Left\": 0.02247311733663082,\n                    \"Top\": 0.08842387795448303,\n                    \"Width\": 0.049032244831323624\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02247311733663082,\n                        \"Y\": 0.08842387795448303\n                    },\n                    {\n                        \"X\": 0.07150490581989288,\n                        \"Y\": 0.08844741433858871\n                    },\n                    {\n                        \"X\": 0.0715053603053093,\n                        \"Y\": 0.10006199777126312\n                    },\n                    {\n                        \"X\": 0.022473236545920372,\n                        \"Y\": 0.1000383049249649\n                    }\n                ]\n            },\n            \"Id\": \"595d3236-67eb-4461-8fc9-6e5c0b8dd6cf\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90550231933594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011546158231794834,\n                    \"Left\": 0.07370375841856003,\n                    \"Top\": 0.08807507157325745,\n                    \"Width\": 0.03247300907969475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07370375841856003,\n                        \"Y\": 0.08807507157325745\n                    },\n                    {\n                        \"X\": 0.10617607831954956,\n                        \"Y\": 0.08809065818786621\n                    },\n                    {\n                        \"X\": 0.10617677122354507,\n                        \"Y\": 0.0996212288737297\n                    },\n                    {\n                        \"X\": 0.07370422780513763,\n                        \"Y\": 0.09960554540157318\n                    }\n                ]\n            },\n            \"Id\": \"7bb3e59b-ce40-4e7d-aa02-8e966fbc997a\",\n            \"Text\": \"rights\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7850570678711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011169356293976307,\n                    \"Left\": 0.10893179476261139,\n                    \"Top\": 0.08856024593114853,\n                    \"Width\": 0.05157557874917984\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10893179476261139,\n                        \"Y\": 0.08856024593114853\n                    },\n                    {\n                        \"X\": 0.16050635278224945,\n                        \"Y\": 0.0885850116610527\n                    },\n                    {\n                        \"X\": 0.16050738096237183,\n                        \"Y\": 0.09972960501909256\n                    },\n                    {\n                        \"X\": 0.1089324802160263,\n                        \"Y\": 0.09970469027757645\n                    }\n                ]\n            },\n            \"Id\": \"1d356763-8a8d-4678-b87d-482d3e94f384\",\n            \"Text\": \"pursuant\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84927368164062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009033757261931896,\n                    \"Left\": 0.16297440230846405,\n                    \"Top\": 0.08857934176921844,\n                    \"Width\": 0.011438459157943726\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16297440230846405,\n                        \"Y\": 0.08857934176921844\n                    },\n                    {\n                        \"X\": 0.17441195249557495,\n                        \"Y\": 0.08858483284711838\n                    },\n                    {\n                        \"X\": 0.17441286146640778,\n                        \"Y\": 0.09761309623718262\n                    },\n                    {\n                        \"X\": 0.1629752367734909,\n                        \"Y\": 0.0976075828075409\n                    }\n                ]\n            },\n            \"Id\": \"6c5d7506-1ff6-439e-8241-a0eb7006ee27\",\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93770599365234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009234894998371601,\n                    \"Left\": 0.17706440389156342,\n                    \"Top\": 0.08834803104400635,\n                    \"Width\": 0.029024511575698853\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17706440389156342,\n                        \"Y\": 0.08834803104400635\n                    },\n                    {\n                        \"X\": 0.20608782768249512,\n                        \"Y\": 0.08836197108030319\n                    },\n                    {\n                        \"X\": 0.20608891546726227,\n                        \"Y\": 0.09758292883634567\n                    },\n                    {\n                        \"X\": 0.17706534266471863,\n                        \"Y\": 0.09756892919540405\n                    }\n                ]\n            },\n            \"Id\": \"545f8ada-48e7-42c7-97d2-af6e444966ae\",\n            \"Text\": \"state\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89163208007812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009441250935196877,\n                    \"Left\": 0.20851683616638184,\n                    \"Top\": 0.08809191733598709,\n                    \"Width\": 0.02035282924771309\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20851683616638184,\n                        \"Y\": 0.08809191733598709\n                    },\n                    {\n                        \"X\": 0.22886842489242554,\n                        \"Y\": 0.08810168504714966\n                    },\n                    {\n                        \"X\": 0.22886966168880463,\n                        \"Y\": 0.09753316640853882\n                    },\n                    {\n                        \"X\": 0.20851796865463257,\n                        \"Y\": 0.09752334654331207\n                    }\n                ]\n            },\n            \"Id\": \"b220cdb1-e089-439f-a5b2-50b72edb4166\",\n            \"Text\": \"law\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7132797241211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009319636039435863,\n                    \"Left\": 0.2309882789850235,\n                    \"Top\": 0.0880981832742691,\n                    \"Width\": 0.018498139455914497\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2309882789850235,\n                        \"Y\": 0.0880981832742691\n                    },\n                    {\n                        \"X\": 0.2494850754737854,\n                        \"Y\": 0.08810706436634064\n                    },\n                    {\n                        \"X\": 0.24948641657829285,\n                        \"Y\": 0.09741782397031784\n                    },\n                    {\n                        \"X\": 0.23098953068256378,\n                        \"Y\": 0.09740889817476273\n                    }\n                ]\n            },\n            \"Id\": \"c1d85e1d-98f0-4e7c-a6b7-a98a9af6267b\",\n            \"Text\": \"will\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95848846435547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009078805334866047,\n                    \"Left\": 0.25237518548965454,\n                    \"Top\": 0.0884743258357048,\n                    \"Width\": 0.019057493656873703\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25237518548965454,\n                        \"Y\": 0.0884743258357048\n                    },\n                    {\n                        \"X\": 0.27143123745918274,\n                        \"Y\": 0.08848347514867783\n                    },\n                    {\n                        \"X\": 0.27143266797065735,\n                        \"Y\": 0.09755312651395798\n                    },\n                    {\n                        \"X\": 0.2523764967918396,\n                        \"Y\": 0.09754393249750137\n                    }\n                ]\n            },\n            \"Id\": \"3340350f-dbd0-4160-b07b-306f7f223da1\",\n            \"Text\": \"not\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84330749511719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009223785251379013,\n                    \"Left\": 0.2739584743976593,\n                    \"Top\": 0.08818858116865158,\n                    \"Width\": 0.014856547117233276\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2739584743976593,\n                        \"Y\": 0.08818858116865158\n                    },\n                    {\n                        \"X\": 0.2888134717941284,\n                        \"Y\": 0.08819571137428284\n                    },\n                    {\n                        \"X\": 0.2888150215148926,\n                        \"Y\": 0.0974123626947403\n                    },\n                    {\n                        \"X\": 0.2739599347114563,\n                        \"Y\": 0.09740520268678665\n                    }\n                ]\n            },\n            \"Id\": \"9bdf8200-ccda-490d-9909-a114706df9d7\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7899398803711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009350075386464596,\n                    \"Left\": 0.2913929224014282,\n                    \"Top\": 0.08820093423128128,\n                    \"Width\": 0.029385419562458992\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2913929224014282,\n                        \"Y\": 0.08820093423128128\n                    },\n                    {\n                        \"X\": 0.3207765817642212,\n                        \"Y\": 0.08821503818035126\n                    },\n                    {\n                        \"X\": 0.32077834010124207,\n                        \"Y\": 0.09755101054906845\n                    },\n                    {\n                        \"X\": 0.29139450192451477,\n                        \"Y\": 0.0975368320941925\n                    }\n                ]\n            },\n            \"Id\": \"50478b6f-6747-488a-9a57-345039e9e220\",\n            \"Text\": \"used\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93824768066406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007105840370059013,\n                    \"Left\": 0.3234747648239136,\n                    \"Top\": 0.09036406129598618,\n                    \"Width\": 0.013840175233781338\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3234747648239136,\n                        \"Y\": 0.09036406129598618\n                    },\n                    {\n                        \"X\": 0.33731353282928467,\n                        \"Y\": 0.09037071466445923\n                    },\n                    {\n                        \"X\": 0.3373149335384369,\n                        \"Y\": 0.09746990352869034\n                    },\n                    {\n                        \"X\": 0.323476105928421,\n                        \"Y\": 0.0974632278084755\n                    }\n                ]\n            },\n            \"Id\": \"74497373-eb16-430f-948c-2a080a6982f1\",\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8343734741211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007148646283894777,\n                    \"Left\": 0.34002068638801575,\n                    \"Top\": 0.09024249017238617,\n                    \"Width\": 0.008004709146916866\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34002068638801575,\n                        \"Y\": 0.09024249017238617\n                    },\n                    {\n                        \"X\": 0.3480239510536194,\n                        \"Y\": 0.09024634212255478\n                    },\n                    {\n                        \"X\": 0.3480254113674164,\n                        \"Y\": 0.09739114344120026\n                    },\n                    {\n                        \"X\": 0.34002211689949036,\n                        \"Y\": 0.09738727658987045\n                    }\n                ]\n            },\n            \"Id\": \"87188294-3716-423f-9cf2-fe1451aaf8a9\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85032653808594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009446131996810436,\n                    \"Left\": 0.35013869404792786,\n                    \"Top\": 0.08810984343290329,\n                    \"Width\": 0.03133353590965271\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35013869404792786,\n                        \"Y\": 0.08810984343290329\n                    },\n                    {\n                        \"X\": 0.3814701437950134,\n                        \"Y\": 0.08812487870454788\n                    },\n                    {\n                        \"X\": 0.38147222995758057,\n                        \"Y\": 0.097555972635746\n                    },\n                    {\n                        \"X\": 0.35014063119888306,\n                        \"Y\": 0.09754085540771484\n                    }\n                ]\n            },\n            \"Id\": \"f48aece3-8175-47b2-b150-dc75025a6b51\",\n            \"Text\": \"basis\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88318634033203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009518015198409557,\n                    \"Left\": 0.38383281230926514,\n                    \"Top\": 0.08791891485452652,\n                    \"Width\": 0.01630159094929695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38383281230926514,\n                        \"Y\": 0.08791891485452652\n                    },\n                    {\n                        \"X\": 0.4001322090625763,\n                        \"Y\": 0.08792673796415329\n                    },\n                    {\n                        \"X\": 0.400134414434433,\n                        \"Y\": 0.09743692725896835\n                    },\n                    {\n                        \"X\": 0.38383495807647705,\n                        \"Y\": 0.0974290668964386\n                    }\n                ]\n            },\n            \"Id\": \"5c83afa3-757e-4d25-8840-36298a44efaf\",\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8994140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009184783324599266,\n                    \"Left\": 0.40263935923576355,\n                    \"Top\": 0.08831620216369629,\n                    \"Width\": 0.025380518287420273\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40263935923576355,\n                        \"Y\": 0.08831620216369629\n                    },\n                    {\n                        \"X\": 0.42801758646965027,\n                        \"Y\": 0.08832838386297226\n                    },\n                    {\n                        \"X\": 0.4280198812484741,\n                        \"Y\": 0.0975009873509407\n                    },\n                    {\n                        \"X\": 0.40264150500297546,\n                        \"Y\": 0.09748873859643936\n                    }\n                ]\n            },\n            \"Id\": \"f3570d10-4b79-4dbc-913a-b99b9d037d1d\",\n            \"Text\": \"loan\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 76.82841491699219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011566255241632462,\n                    \"Left\": 0.430449903011322,\n                    \"Top\": 0.08818550407886505,\n                    \"Width\": 0.07283449172973633\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.430449903011322,\n                        \"Y\": 0.08818550407886505\n                    },\n                    {\n                        \"X\": 0.5032809972763062,\n                        \"Y\": 0.08822046220302582\n                    },\n                    {\n                        \"X\": 0.5032843947410583,\n                        \"Y\": 0.09975176304578781\n                    },\n                    {\n                        \"X\": 0.43045279383659363,\n                        \"Y\": 0.09971658140420914\n                    }\n                ]\n            },\n            \"Id\": \"7046a30e-339c-41d3-b074-69de406693e2\",\n            \"Text\": \"qualification,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91557312011719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00910175684839487,\n                    \"Left\": 0.5065433382987976,\n                    \"Top\": 0.08831612765789032,\n                    \"Width\": 0.019558269530534744\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5065433382987976,\n                        \"Y\": 0.08831612765789032\n                    },\n                    {\n                        \"X\": 0.5260987877845764,\n                        \"Y\": 0.08832551538944244\n                    },\n                    {\n                        \"X\": 0.5261015892028809,\n                        \"Y\": 0.09741789102554321\n                    },\n                    {\n                        \"X\": 0.5065460205078125,\n                        \"Y\": 0.09740845113992691\n                    }\n                ]\n            },\n            \"Id\": \"6ad6b606-6343-416e-98ab-f43c37406cbd\",\n            \"Text\": \"but\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83618927001953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009303425438702106,\n                    \"Left\": 0.5280911922454834,\n                    \"Top\": 0.08813455700874329,\n                    \"Width\": 0.017425373196601868\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5280911922454834,\n                        \"Y\": 0.08813455700874329\n                    },\n                    {\n                        \"X\": 0.5455135703086853,\n                        \"Y\": 0.08814291656017303\n                    },\n                    {\n                        \"X\": 0.5455165505409241,\n                        \"Y\": 0.09743797779083252\n                    },\n                    {\n                        \"X\": 0.5280940532684326,\n                        \"Y\": 0.09742957353591919\n                    }\n                ]\n            },\n            \"Id\": \"a0580f21-7f37-401c-99b6-dac1d28aeb1e\",\n            \"Text\": \"his\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75662231445312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007491544354707003,\n                    \"Left\": 0.5479393005371094,\n                    \"Top\": 0.08998288959264755,\n                    \"Width\": 0.012591433711349964\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5479393005371094,\n                        \"Y\": 0.08998288959264755\n                    },\n                    {\n                        \"X\": 0.5605282783508301,\n                        \"Y\": 0.08998893946409225\n                    },\n                    {\n                        \"X\": 0.5605307221412659,\n                        \"Y\": 0.09747443348169327\n                    },\n                    {\n                        \"X\": 0.5479416847229004,\n                        \"Y\": 0.09746836125850677\n                    }\n                ]\n            },\n            \"Id\": \"02769a34-9a5d-4d8e-9111-52f62bf2f8ee\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93624877929688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009035441093146801,\n                    \"Left\": 0.5624482035636902,\n                    \"Top\": 0.08838041871786118,\n                    \"Width\": 0.019999446347355843\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5624482035636902,\n                        \"Y\": 0.08838041871786118\n                    },\n                    {\n                        \"X\": 0.5824445486068726,\n                        \"Y\": 0.08839001506567001\n                    },\n                    {\n                        \"X\": 0.5824476480484009,\n                        \"Y\": 0.09741585701704025\n                    },\n                    {\n                        \"X\": 0.562451183795929,\n                        \"Y\": 0.09740620851516724\n                    }\n                ]\n            },\n            \"Id\": \"dc74ef64-4ee0-417a-bf2e-5f520b37ec28\",\n            \"Text\": \"her\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55323028564453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009690573439002037,\n                    \"Left\": 0.5844420194625854,\n                    \"Top\": 0.08791444450616837,\n                    \"Width\": 0.05095062777400017\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5844420194625854,\n                        \"Y\": 0.08791444450616837\n                    },\n                    {\n                        \"X\": 0.6353890299797058,\n                        \"Y\": 0.08793888986110687\n                    },\n                    {\n                        \"X\": 0.6353926062583923,\n                        \"Y\": 0.09760501980781555\n                    },\n                    {\n                        \"X\": 0.5844452977180481,\n                        \"Y\": 0.0975804403424263\n                    }\n                ]\n            },\n            \"Id\": \"4a7b59a7-54b9-410f-8368-608ff364a362\",\n            \"Text\": \"liabilities\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92830657958984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008812807500362396,\n                    \"Left\": 0.6374704837799072,\n                    \"Top\": 0.08871977776288986,\n                    \"Width\": 0.029256002977490425\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6374704837799072,\n                        \"Y\": 0.08871977776288986\n                    },\n                    {\n                        \"X\": 0.6667230725288391,\n                        \"Y\": 0.08873382210731506\n                    },\n                    {\n                        \"X\": 0.6667265295982361,\n                        \"Y\": 0.09753258526325226\n                    },\n                    {\n                        \"X\": 0.6374738216400146,\n                        \"Y\": 0.09751847386360168\n                    }\n                ]\n            },\n            \"Id\": \"c0c98b5c-b3ce-4bd5-8a85-db2df155e954\",\n            \"Text\": \"must\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.64192962646484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009151410311460495,\n                    \"Left\": 0.6692988872528076,\n                    \"Top\": 0.08841592818498611,\n                    \"Width\": 0.014904240146279335\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6692988872528076,\n                        \"Y\": 0.08841592818498611\n                    },\n                    {\n                        \"X\": 0.6841994524002075,\n                        \"Y\": 0.08842308074235916\n                    },\n                    {\n                        \"X\": 0.6842030882835388,\n                        \"Y\": 0.09756734222173691\n                    },\n                    {\n                        \"X\": 0.6693024635314941,\n                        \"Y\": 0.09756015241146088\n                    }\n                ]\n            },\n            \"Id\": \"61004ed4-212b-480c-aba1-b806aa25972a\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9658432006836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009336466901004314,\n                    \"Left\": 0.6865421533584595,\n                    \"Top\": 0.08822041749954224,\n                    \"Width\": 0.06464315205812454\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6865421533584595,\n                        \"Y\": 0.08822041749954224\n                    },\n                    {\n                        \"X\": 0.7511811852455139,\n                        \"Y\": 0.08825144171714783\n                    },\n                    {\n                        \"X\": 0.7511852979660034,\n                        \"Y\": 0.09755688160657883\n                    },\n                    {\n                        \"X\": 0.6865459084510803,\n                        \"Y\": 0.0975257009267807\n                    }\n                ]\n            },\n            \"Id\": \"ecc9444e-4684-4348-8f43-5b8aaa420a54\",\n            \"Text\": \"considered\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94345092773438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009303376078605652,\n                    \"Left\": 0.7539952993392944,\n                    \"Top\": 0.08824541419744492,\n                    \"Width\": 0.04986174777150154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7539952993392944,\n                        \"Y\": 0.08824541419744492\n                    },\n                    {\n                        \"X\": 0.8038526773452759,\n                        \"Y\": 0.08826934546232224\n                    },\n                    {\n                        \"X\": 0.8038570284843445,\n                        \"Y\": 0.09754879027605057\n                    },\n                    {\n                        \"X\": 0.7539994120597839,\n                        \"Y\": 0.0975247398018837\n                    }\n                ]\n            },\n            \"Id\": \"262ef231-287d-4159-8e89-ea272eae3112\",\n            \"Text\": \"because\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9803237915039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009167477488517761,\n                    \"Left\": 0.8065425753593445,\n                    \"Top\": 0.08833792805671692,\n                    \"Width\": 0.018779423087835312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8065425753593445,\n                        \"Y\": 0.08833792805671692\n                    },\n                    {\n                        \"X\": 0.8253175616264343,\n                        \"Y\": 0.0883469358086586\n                    },\n                    {\n                        \"X\": 0.8253219723701477,\n                        \"Y\": 0.09750540554523468\n                    },\n                    {\n                        \"X\": 0.8065469264984131,\n                        \"Y\": 0.09749634563922882\n                    }\n                ]\n            },\n            \"Id\": \"39e1ef6a-25fc-41f5-a687-4c5b1af206df\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94257354736328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00942233670502901,\n                    \"Left\": 0.8279983401298523,\n                    \"Top\": 0.09015081077814102,\n                    \"Width\": 0.04300493001937866\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8279983401298523,\n                        \"Y\": 0.09015081077814102\n                    },\n                    {\n                        \"X\": 0.8709985017776489,\n                        \"Y\": 0.09017147123813629\n                    },\n                    {\n                        \"X\": 0.871003270149231,\n                        \"Y\": 0.09957315027713776\n                    },\n                    {\n                        \"X\": 0.8280029296875,\n                        \"Y\": 0.09955238550901413\n                    }\n                ]\n            },\n            \"Id\": \"c9646168-a262-462c-b8bb-ee0a60504e76\",\n            \"Text\": \"spouse\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90381622314453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007165311835706234,\n                    \"Left\": 0.8733035326004028,\n                    \"Top\": 0.09038590639829636,\n                    \"Width\": 0.013169003650546074\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8733035326004028,\n                        \"Y\": 0.09038590639829636\n                    },\n                    {\n                        \"X\": 0.8864688277244568,\n                        \"Y\": 0.09039223194122314\n                    },\n                    {\n                        \"X\": 0.8864725232124329,\n                        \"Y\": 0.09755121916532516\n                    },\n                    {\n                        \"X\": 0.8733072280883789,\n                        \"Y\": 0.09754486382007599\n                    }\n                ]\n            },\n            \"Id\": \"d9cfda16-417e-411a-8fc0-cfc394bd6f99\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97787475585938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00941189844161272,\n                    \"Left\": 0.8885177969932556,\n                    \"Top\": 0.08837901800870895,\n                    \"Width\": 0.03076924942433834\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8885177969932556,\n                        \"Y\": 0.08837901800870895\n                    },\n                    {\n                        \"X\": 0.9192819595336914,\n                        \"Y\": 0.08839378505945206\n                    },\n                    {\n                        \"X\": 0.9192870855331421,\n                        \"Y\": 0.0977909117937088\n                    },\n                    {\n                        \"X\": 0.888522744178772,\n                        \"Y\": 0.09777607023715973\n                    }\n                ]\n            },\n            \"Id\": \"bee0cb1e-3e6b-40c1-838d-64b06759c2cb\",\n            \"Text\": \"other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96961975097656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009713098406791687,\n                    \"Left\": 0.9213449954986572,\n                    \"Top\": 0.09003118425607681,\n                    \"Width\": 0.04103735834360123\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9213449954986572,\n                        \"Y\": 0.09003118425607681\n                    },\n                    {\n                        \"X\": 0.9623768925666809,\n                        \"Y\": 0.09005089849233627\n                    },\n                    {\n                        \"X\": 0.9623823761940002,\n                        \"Y\": 0.0997442826628685\n                    },\n                    {\n                        \"X\": 0.9213502407073975,\n                        \"Y\": 0.09972446411848068\n                    }\n                ]\n            },\n            \"Id\": \"c1331c83-aadd-4ab8-a4dd-034087ed6851\",\n            \"Text\": \"person\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94044494628906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00919583160430193,\n                    \"Left\": 0.02173474244773388,\n                    \"Top\": 0.10198526084423065,\n                    \"Width\": 0.022098688408732414\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02173474244773388,\n                        \"Y\": 0.10198526084423065\n                    },\n                    {\n                        \"X\": 0.04383322224020958,\n                        \"Y\": 0.10199594497680664\n                    },\n                    {\n                        \"X\": 0.04383343085646629,\n                        \"Y\": 0.11118108779191971\n                    },\n                    {\n                        \"X\": 0.021734831854701042,\n                        \"Y\": 0.11117034405469894\n                    }\n                ]\n            },\n            \"Id\": \"20320eec-1275-405f-9e13-c1f48d02ca47\",\n            \"Text\": \"has\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83625030517578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0113671338185668,\n                    \"Left\": 0.046058669686317444,\n                    \"Top\": 0.10184925049543381,\n                    \"Width\": 0.06396158784627914\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.046058669686317444,\n                        \"Y\": 0.10184925049543381\n                    },\n                    {\n                        \"X\": 0.11001954972743988,\n                        \"Y\": 0.10188018530607224\n                    },\n                    {\n                        \"X\": 0.11002025753259659,\n                        \"Y\": 0.11321638524532318\n                    },\n                    {\n                        \"X\": 0.04605894535779953,\n                        \"Y\": 0.11318525671958923\n                    }\n                ]\n            },\n            \"Id\": \"41fbaf19-89b6-4fcc-bf6c-cae033159c37\",\n            \"Text\": \"community\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7602310180664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011152267456054688,\n                    \"Left\": 0.11253245919942856,\n                    \"Top\": 0.10225280374288559,\n                    \"Width\": 0.049447447061538696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11253245919942856,\n                        \"Y\": 0.10225280374288559\n                    },\n                    {\n                        \"X\": 0.16197887063026428,\n                        \"Y\": 0.10227672010660172\n                    },\n                    {\n                        \"X\": 0.16197989881038666,\n                        \"Y\": 0.11340507119894028\n                    },\n                    {\n                        \"X\": 0.11253316700458527,\n                        \"Y\": 0.11338100582361221\n                    }\n                ]\n            },\n            \"Id\": \"801b0bdd-f645-4902-bddb-dea8d8ea1f52\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3965072631836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011732172220945358,\n                    \"Left\": 0.16358841955661774,\n                    \"Top\": 0.10144636780023575,\n                    \"Width\": 0.031192809343338013\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16358841955661774,\n                        \"Y\": 0.10144636780023575\n                    },\n                    {\n                        \"X\": 0.1947799175977707,\n                        \"Y\": 0.10146144777536392\n                    },\n                    {\n                        \"X\": 0.19478122889995575,\n                        \"Y\": 0.11317853629589081\n                    },\n                    {\n                        \"X\": 0.1635895073413849,\n                        \"Y\": 0.11316335946321487\n                    }\n                ]\n            },\n            \"Id\": \"32efbe97-3c04-44f6-8be1-f62ea371f4ae\",\n            \"Text\": \"rights\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78191375732422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011131973005831242,\n                    \"Left\": 0.19730696082115173,\n                    \"Top\": 0.10200724005699158,\n                    \"Width\": 0.05162842944264412\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19730696082115173,\n                        \"Y\": 0.10200724005699158\n                    },\n                    {\n                        \"X\": 0.2489337921142578,\n                        \"Y\": 0.10203221440315247\n                    },\n                    {\n                        \"X\": 0.24893538653850555,\n                        \"Y\": 0.11313921958208084\n                    },\n                    {\n                        \"X\": 0.1973082274198532,\n                        \"Y\": 0.11311409622430801\n                    }\n                ]\n            },\n            \"Id\": \"e632e6a2-f139-407e-8423-3138b25eb247\",\n            \"Text\": \"pursuant\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94783020019531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008959856815636158,\n                    \"Left\": 0.25134730339050293,\n                    \"Top\": 0.10197457671165466,\n                    \"Width\": 0.011566358618438244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25134730339050293,\n                        \"Y\": 0.10197457671165466\n                    },\n                    {\n                        \"X\": 0.2629123032093048,\n                        \"Y\": 0.10198016464710236\n                    },\n                    {\n                        \"X\": 0.26291367411613464,\n                        \"Y\": 0.11093442887067795\n                    },\n                    {\n                        \"X\": 0.251348614692688,\n                        \"Y\": 0.11092881113290787\n                    }\n                ]\n            },\n            \"Id\": \"f9a340cd-4869-4d20-8f8a-bfc1bec37bf5\",\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90813446044922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0114615298807621,\n                    \"Left\": 0.26555395126342773,\n                    \"Top\": 0.1015826091170311,\n                    \"Width\": 0.05896404758095741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26555395126342773,\n                        \"Y\": 0.1015826091170311\n                    },\n                    {\n                        \"X\": 0.32451584935188293,\n                        \"Y\": 0.10161112248897552\n                    },\n                    {\n                        \"X\": 0.32451799511909485,\n                        \"Y\": 0.1130441352725029\n                    },\n                    {\n                        \"X\": 0.2655557096004486,\n                        \"Y\": 0.11301545053720474\n                    }\n                ]\n            },\n            \"Id\": \"8f97cc87-ad72-4d86-bcd3-8cf5e165448f\",\n            \"Text\": \"applicable\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91565704345703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009039929136633873,\n                    \"Left\": 0.3270266056060791,\n                    \"Top\": 0.10176874697208405,\n                    \"Width\": 0.020233578979969025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3270266056060791,\n                        \"Y\": 0.10176874697208405\n                    },\n                    {\n                        \"X\": 0.3472583591938019,\n                        \"Y\": 0.1017785295844078\n                    },\n                    {\n                        \"X\": 0.34726017713546753,\n                        \"Y\": 0.11080867797136307\n                    },\n                    {\n                        \"X\": 0.3270283043384552,\n                        \"Y\": 0.11079884320497513\n                    }\n                ]\n            },\n            \"Id\": \"c31b6793-f4d0-4ffc-963b-8576987d4f8f\",\n            \"Text\": \"law\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97816467285156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009125054813921452,\n                    \"Left\": 0.3495510518550873,\n                    \"Top\": 0.10177751630544662,\n                    \"Width\": 0.021611308678984642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3495510518550873,\n                        \"Y\": 0.10177751630544662\n                    },\n                    {\n                        \"X\": 0.3711603879928589,\n                        \"Y\": 0.10178796947002411\n                    },\n                    {\n                        \"X\": 0.37116238474845886,\n                        \"Y\": 0.1109025701880455\n                    },\n                    {\n                        \"X\": 0.3495529294013977,\n                        \"Y\": 0.11089207231998444\n                    }\n                ]\n            },\n            \"Id\": \"636bd983-e9de-4338-a0a6-fcdf71dc5f8c\",\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96294403076172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00942764338105917,\n                    \"Left\": 0.3738082945346832,\n                    \"Top\": 0.10168436914682388,\n                    \"Width\": 0.05350616201758385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3738082945346832,\n                        \"Y\": 0.10168436914682388\n                    },\n                    {\n                        \"X\": 0.42731210589408875,\n                        \"Y\": 0.101710245013237\n                    },\n                    {\n                        \"X\": 0.4273144602775574,\n                        \"Y\": 0.11111201345920563\n                    },\n                    {\n                        \"X\": 0.373810350894928,\n                        \"Y\": 0.11108601093292236\n                    }\n                ]\n            },\n            \"Id\": \"7200d04e-8db7-4a28-b85e-f6c7d93b30a2\",\n            \"Text\": \"Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87654113769531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009353330358862877,\n                    \"Left\": 0.4293098747730255,\n                    \"Top\": 0.1018117144703865,\n                    \"Width\": 0.042722150683403015\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4293098747730255,\n                        \"Y\": 0.1018117144703865\n                    },\n                    {\n                        \"X\": 0.472029447555542,\n                        \"Y\": 0.10183237493038177\n                    },\n                    {\n                        \"X\": 0.4720320403575897,\n                        \"Y\": 0.11116504669189453\n                    },\n                    {\n                        \"X\": 0.42931222915649414,\n                        \"Y\": 0.1111442819237709\n                    }\n                ]\n            },\n            \"Id\": \"78a0b699-d5d6-4a21-b71a-9706a2f62cb4\",\n            \"Text\": \"resides\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88360595703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009144810028374195,\n                    \"Left\": 0.4742998480796814,\n                    \"Top\": 0.10180941224098206,\n                    \"Width\": 0.010280709713697433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4742998480796814,\n                        \"Y\": 0.10180941224098206\n                    },\n                    {\n                        \"X\": 0.4845779538154602,\n                        \"Y\": 0.1018143817782402\n                    },\n                    {\n                        \"X\": 0.48458054661750793,\n                        \"Y\": 0.11095421761274338\n                    },\n                    {\n                        \"X\": 0.47430238127708435,\n                        \"Y\": 0.11094922572374344\n                    }\n                ]\n            },\n            \"Id\": \"b94ba235-64f8-4954-8d29-1106e315b632\",\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70896911621094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0074350880458951,\n                    \"Left\": 0.48726552724838257,\n                    \"Top\": 0.10338353365659714,\n                    \"Width\": 0.007506592199206352\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48726552724838257,\n                        \"Y\": 0.10338353365659714\n                    },\n                    {\n                        \"X\": 0.49476999044418335,\n                        \"Y\": 0.10338716208934784\n                    },\n                    {\n                        \"X\": 0.49477213621139526,\n                        \"Y\": 0.11081861704587936\n                    },\n                    {\n                        \"X\": 0.4872676432132721,\n                        \"Y\": 0.11081497371196747\n                    }\n                ]\n            },\n            \"Id\": \"27a9fb24-4d18-4618-adb7-0c7e6fbc4abc\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90132904052734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010846252553164959,\n                    \"Left\": 0.49721553921699524,\n                    \"Top\": 0.10206689685583115,\n                    \"Width\": 0.06415598094463348\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49721553921699524,\n                        \"Y\": 0.10206689685583115\n                    },\n                    {\n                        \"X\": 0.561367928981781,\n                        \"Y\": 0.10209792107343674\n                    },\n                    {\n                        \"X\": 0.5613715052604675,\n                        \"Y\": 0.11291314661502838\n                    },\n                    {\n                        \"X\": 0.49721866846084595,\n                        \"Y\": 0.11288193613290787\n                    }\n                ]\n            },\n            \"Id\": \"bf60f09d-db68-4bc3-9dd2-ee3de9dd8f30\",\n            \"Text\": \"community\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86644744873047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010993938893079758,\n                    \"Left\": 0.5631324052810669,\n                    \"Top\": 0.10205141454935074,\n                    \"Width\": 0.04956548660993576\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5631324052810669,\n                        \"Y\": 0.10205141454935074\n                    },\n                    {\n                        \"X\": 0.6126939654350281,\n                        \"Y\": 0.10207539051771164\n                    },\n                    {\n                        \"X\": 0.6126978993415833,\n                        \"Y\": 0.1130453571677208\n                    },\n                    {\n                        \"X\": 0.5631360411643982,\n                        \"Y\": 0.11302123963832855\n                    }\n                ]\n            },\n            \"Id\": \"d4fa9307-e4b0-4962-a87b-4bd1dee90472\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 90.3726577758789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010195526294410229,\n                    \"Left\": 0.6139888763427734,\n                    \"Top\": 0.10200545936822891,\n                    \"Width\": 0.03162028267979622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6139888763427734,\n                        \"Y\": 0.10200545936822891\n                    },\n                    {\n                        \"X\": 0.6456053256988525,\n                        \"Y\": 0.1020207479596138\n                    },\n                    {\n                        \"X\": 0.6456092000007629,\n                        \"Y\": 0.11220098286867142\n                    },\n                    {\n                        \"X\": 0.6139925718307495,\n                        \"Y\": 0.11218560487031937\n                    }\n                ]\n            },\n            \"Id\": \"a5c67e85-1b96-445a-b684-858115284b0a\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90512084960938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009209409356117249,\n                    \"Left\": 0.6481491923332214,\n                    \"Top\": 0.10184890031814575,\n                    \"Width\": 0.019156932830810547\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6481491923332214,\n                        \"Y\": 0.10184890031814575\n                    },\n                    {\n                        \"X\": 0.6673025488853455,\n                        \"Y\": 0.10185816884040833\n                    },\n                    {\n                        \"X\": 0.667306125164032,\n                        \"Y\": 0.111058309674263\n                    },\n                    {\n                        \"X\": 0.6481527090072632,\n                        \"Y\": 0.11104900389909744\n                    }\n                ]\n            },\n            \"Id\": \"62823821-a5aa-4112-8776-13e4d4ee9332\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97542572021484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01103292778134346,\n                    \"Left\": 0.6695360541343689,\n                    \"Top\": 0.10176122188568115,\n                    \"Width\": 0.04577542468905449\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6695360541343689,\n                        \"Y\": 0.10176122188568115\n                    },\n                    {\n                        \"X\": 0.7153068780899048,\n                        \"Y\": 0.10178335011005402\n                    },\n                    {\n                        \"X\": 0.7153115272521973,\n                        \"Y\": 0.11279414594173431\n                    },\n                    {\n                        \"X\": 0.6695404052734375,\n                        \"Y\": 0.1127718836069107\n                    }\n                ]\n            },\n            \"Id\": \"495e854f-9067-470f-8b26-79e918834c20\",\n            \"Text\": \"security\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96078491210938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010645599104464054,\n                    \"Left\": 0.7175131440162659,\n                    \"Top\": 0.10241329669952393,\n                    \"Width\": 0.04892149940133095\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7175131440162659,\n                        \"Y\": 0.10241329669952393\n                    },\n                    {\n                        \"X\": 0.7664299011230469,\n                        \"Y\": 0.10243695974349976\n                    },\n                    {\n                        \"X\": 0.7664346694946289,\n                        \"Y\": 0.1130588948726654\n                    },\n                    {\n                        \"X\": 0.717517614364624,\n                        \"Y\": 0.11303509771823883\n                    }\n                ]\n            },\n            \"Id\": \"09fe9fbd-36c8-4a4b-a985-0629bd6e7882\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9427719116211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009061877615749836,\n                    \"Left\": 0.768217921257019,\n                    \"Top\": 0.10170172154903412,\n                    \"Width\": 0.009595154784619808\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.768217921257019,\n                        \"Y\": 0.10170172154903412\n                    },\n                    {\n                        \"X\": 0.7778089642524719,\n                        \"Y\": 0.1017063558101654\n                    },\n                    {\n                        \"X\": 0.7778130769729614,\n                        \"Y\": 0.11076359450817108\n                    },\n                    {\n                        \"X\": 0.7682220339775085,\n                        \"Y\": 0.110758937895298\n                    }\n                ]\n            },\n            \"Id\": \"463103be-f155-4aaa-84d6-706b061f3ef0\",\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56214904785156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009507900103926659,\n                    \"Left\": 0.7802249789237976,\n                    \"Top\": 0.10155785083770752,\n                    \"Width\": 0.04241525009274483\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7802249789237976,\n                        \"Y\": 0.10155785083770752\n                    },\n                    {\n                        \"X\": 0.8226356506347656,\n                        \"Y\": 0.10157835483551025\n                    },\n                    {\n                        \"X\": 0.8226402401924133,\n                        \"Y\": 0.11106575280427933\n                    },\n                    {\n                        \"X\": 0.7802293300628662,\n                        \"Y\": 0.11104513704776764\n                    }\n                ]\n            },\n            \"Id\": \"4b80a4a9-190c-4202-ae17-7eef1a78535d\",\n            \"Text\": \"located\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96941375732422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009104478172957897,\n                    \"Left\": 0.8250701427459717,\n                    \"Top\": 0.10174988210201263,\n                    \"Width\": 0.010381129570305347\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8250701427459717,\n                        \"Y\": 0.10174988210201263\n                    },\n                    {\n                        \"X\": 0.8354467749595642,\n                        \"Y\": 0.10175490379333496\n                    },\n                    {\n                        \"X\": 0.8354512453079224,\n                        \"Y\": 0.1108543649315834\n                    },\n                    {\n                        \"X\": 0.8250745534896851,\n                        \"Y\": 0.11084932088851929\n                    }\n                ]\n            },\n            \"Id\": \"bfd20911-7e5f-4d8a-95c7-458a7ea76066\",\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.851318359375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007176926825195551,\n                    \"Left\": 0.838135302066803,\n                    \"Top\": 0.1038239523768425,\n                    \"Width\": 0.007723277434706688\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.838135302066803,\n                        \"Y\": 0.1038239523768425\n                    },\n                    {\n                        \"X\": 0.8458549976348877,\n                        \"Y\": 0.10382768511772156\n                    },\n                    {\n                        \"X\": 0.8458585739135742,\n                        \"Y\": 0.11100088059902191\n                    },\n                    {\n                        \"X\": 0.8381388187408447,\n                        \"Y\": 0.11099712550640106\n                    }\n                ]\n            },\n            \"Id\": \"37c44510-3387-486d-a54d-db85533338cb\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.951171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011361879296600819,\n                    \"Left\": 0.8479821085929871,\n                    \"Top\": 0.10190034657716751,\n                    \"Width\": 0.0635477676987648\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8479821085929871,\n                        \"Y\": 0.10190034657716751\n                    },\n                    {\n                        \"X\": 0.9115238189697266,\n                        \"Y\": 0.10193107277154922\n                    },\n                    {\n                        \"X\": 0.9115298390388489,\n                        \"Y\": 0.11326222866773605\n                    },\n                    {\n                        \"X\": 0.847987711429596,\n                        \"Y\": 0.11323130875825882\n                    }\n                ]\n            },\n            \"Id\": \"a861b4a4-a7fc-4547-8c46-71f14c0b5fdd\",\n            \"Text\": \"community\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95963287353516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011093207634985447,\n                    \"Left\": 0.9138701558113098,\n                    \"Top\": 0.1024124026298523,\n                    \"Width\": 0.048555053770542145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9138701558113098,\n                        \"Y\": 0.1024124026298523\n                    },\n                    {\n                        \"X\": 0.9624189734458923,\n                        \"Y\": 0.1024358868598938\n                    },\n                    {\n                        \"X\": 0.9624252319335938,\n                        \"Y\": 0.11350561678409576\n                    },\n                    {\n                        \"X\": 0.9138761162757874,\n                        \"Y\": 0.11348199099302292\n                    }\n                ]\n            },\n            \"Id\": \"5473c8e2-5855-400d-ac70-f34d0bf8a282\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.00090789794922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01045168749988079,\n                    \"Left\": 0.02225598879158497,\n                    \"Top\": 0.11644112318754196,\n                    \"Width\": 0.03226499632000923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02225598879158497,\n                        \"Y\": 0.11644112318754196\n                    },\n                    {\n                        \"X\": 0.054520681500434875,\n                        \"Y\": 0.11645685136318207\n                    },\n                    {\n                        \"X\": 0.05452098697423935,\n                        \"Y\": 0.1268928050994873\n                    },\n                    {\n                        \"X\": 0.022256094962358475,\n                        \"Y\": 0.12687699496746063\n                    }\n                ]\n            },\n            \"Id\": \"fa83acec-738d-4fc0-a256-c78526b2d652\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73573303222656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0075685447081923485,\n                    \"Left\": 0.05810202285647392,\n                    \"Top\": 0.11805280297994614,\n                    \"Width\": 0.012740549631416798\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05810202285647392,\n                        \"Y\": 0.11805280297994614\n                    },\n                    {\n                        \"X\": 0.07084228098392487,\n                        \"Y\": 0.11805902421474457\n                    },\n                    {\n                        \"X\": 0.07084257155656815,\n                        \"Y\": 0.12562134861946106\n                    },\n                    {\n                        \"X\": 0.058102261275053024,\n                        \"Y\": 0.12561510503292084\n                    }\n                ]\n            },\n            \"Id\": \"6a9d1b06-f5d2-4428-8063-018796f1c369\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93669128417969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009497223421931267,\n                    \"Left\": 0.07345519959926605,\n                    \"Top\": 0.11619873344898224,\n                    \"Width\": 0.01888345554471016\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07345519959926605,\n                        \"Y\": 0.11619873344898224\n                    },\n                    {\n                        \"X\": 0.09233815968036652,\n                        \"Y\": 0.11620793491601944\n                    },\n                    {\n                        \"X\": 0.09233865141868591,\n                        \"Y\": 0.12569595873355865\n                    },\n                    {\n                        \"X\": 0.0734555795788765,\n                        \"Y\": 0.12568670511245728\n                    }\n                ]\n            },\n            \"Id\": \"a5a4ae8a-0a71-4691-a8d9-04456e03b22c\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9780502319336,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009866905398666859,\n                    \"Left\": 0.09616759419441223,\n                    \"Top\": 0.11586856096982956,\n                    \"Width\": 0.053359903395175934\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09616759419441223,\n                        \"Y\": 0.11586856096982956\n                    },\n                    {\n                        \"X\": 0.1495266556739807,\n                        \"Y\": 0.11589456349611282\n                    },\n                    {\n                        \"X\": 0.14952749013900757,\n                        \"Y\": 0.12573546171188354\n                    },\n                    {\n                        \"X\": 0.09616812318563461,\n                        \"Y\": 0.12570932507514954\n                    }\n                ]\n            },\n            \"Id\": \"257bc9a8-2dc3-422a-9b2e-41f79afd720c\",\n            \"Text\": \"Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90824127197266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009374039247632027,\n                    \"Left\": 0.15211354196071625,\n                    \"Top\": 0.11627870798110962,\n                    \"Width\": 0.010527235455811024\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15211354196071625,\n                        \"Y\": 0.11627870798110962\n                    },\n                    {\n                        \"X\": 0.16263991594314575,\n                        \"Y\": 0.1162838414311409\n                    },\n                    {\n                        \"X\": 0.162640780210495,\n                        \"Y\": 0.1256527453660965\n                    },\n                    {\n                        \"X\": 0.1521143615245819,\n                        \"Y\": 0.12564758956432343\n                    }\n                ]\n            },\n            \"Id\": \"e9b9171f-909a-4853-99c4-2d4817377f96\",\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95626831054688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012145224027335644,\n                    \"Left\": 0.16531771421432495,\n                    \"Top\": 0.11602924019098282,\n                    \"Width\": 0.03921051695942879\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16531771421432495,\n                        \"Y\": 0.11602924019098282\n                    },\n                    {\n                        \"X\": 0.20452681183815002,\n                        \"Y\": 0.11604835093021393\n                    },\n                    {\n                        \"X\": 0.20452824234962463,\n                        \"Y\": 0.12817446887493134\n                    },\n                    {\n                        \"X\": 0.16531887650489807,\n                        \"Y\": 0.12815523147583008\n                    }\n                ]\n            },\n            \"Id\": \"a2295951-bae0-465e-91bd-c725277bbbd6\",\n            \"Text\": \"relying\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95622253417969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0075429873540997505,\n                    \"Left\": 0.2074868381023407,\n                    \"Top\": 0.11810732632875443,\n                    \"Width\": 0.015170005150139332\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2074868381023407,\n                        \"Y\": 0.11810732632875443\n                    },\n                    {\n                        \"X\": 0.22265587747097015,\n                        \"Y\": 0.11811473220586777\n                    },\n                    {\n                        \"X\": 0.22265684604644775,\n                        \"Y\": 0.1256503164768219\n                    },\n                    {\n                        \"X\": 0.20748774707317352,\n                        \"Y\": 0.12564288079738617\n                    }\n                ]\n            },\n            \"Id\": \"aa34a34d-7228-4f8b-81b9-8213b3486132\",\n            \"Text\": \"on\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96529388427734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00948291551321745,\n                    \"Left\": 0.2256476879119873,\n                    \"Top\": 0.1162772998213768,\n                    \"Width\": 0.030956707894802094\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2256476879119873,\n                        \"Y\": 0.1162772998213768\n                    },\n                    {\n                        \"X\": 0.2566030025482178,\n                        \"Y\": 0.11629238724708557\n                    },\n                    {\n                        \"X\": 0.25660440325737,\n                        \"Y\": 0.12576021254062653\n                    },\n                    {\n                        \"X\": 0.2256489247083664,\n                        \"Y\": 0.1257450431585312\n                    }\n                ]\n            },\n            \"Id\": \"0b1ee954-714d-48e3-aa7e-d353a99a536e\",\n            \"Text\": \"other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92083740234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011521019972860813,\n                    \"Left\": 0.25892123579978943,\n                    \"Top\": 0.11654344201087952,\n                    \"Width\": 0.049706023186445236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25892123579978943,\n                        \"Y\": 0.11654344201087952\n                    },\n                    {\n                        \"X\": 0.3086252212524414,\n                        \"Y\": 0.11656767129898071\n                    },\n                    {\n                        \"X\": 0.30862727761268616,\n                        \"Y\": 0.12806445360183716\n                    },\n                    {\n                        \"X\": 0.2589229643344879,\n                        \"Y\": 0.12804007530212402\n                    }\n                ]\n            },\n            \"Id\": \"73c5f590-7959-4db1-a855-f944901e7405\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74639129638672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00972243957221508,\n                    \"Left\": 0.31108519434928894,\n                    \"Top\": 0.11596037447452545,\n                    \"Width\": 0.043075088411569595\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31108519434928894,\n                        \"Y\": 0.11596037447452545\n                    },\n                    {\n                        \"X\": 0.35415828227996826,\n                        \"Y\": 0.11598136276006699\n                    },\n                    {\n                        \"X\": 0.35416027903556824,\n                        \"Y\": 0.12568281590938568\n                    },\n                    {\n                        \"X\": 0.3110869526863098,\n                        \"Y\": 0.1256617158651352\n                    }\n                ]\n            },\n            \"Id\": \"08d4e2af-a462-4d3c-a1f1-36c35c46a2db\",\n            \"Text\": \"located\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93377685546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009343232028186321,\n                    \"Left\": 0.3569977283477783,\n                    \"Top\": 0.11611561477184296,\n                    \"Width\": 0.011113863438367844\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3569977283477783,\n                        \"Y\": 0.11611561477184296\n                    },\n                    {\n                        \"X\": 0.3681095838546753,\n                        \"Y\": 0.11612103134393692\n                    },\n                    {\n                        \"X\": 0.36811161041259766,\n                        \"Y\": 0.12545885145664215\n                    },\n                    {\n                        \"X\": 0.3569996654987335,\n                        \"Y\": 0.1254534125328064\n                    }\n                ]\n            },\n            \"Id\": \"f57b7ffd-372f-4055-9c26-2cd55fd12d47\",\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8933334350586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007393003907054663,\n                    \"Left\": 0.3710806965827942,\n                    \"Top\": 0.11810801923274994,\n                    \"Width\": 0.007966193370521069\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3710806965827942,\n                        \"Y\": 0.11810801923274994\n                    },\n                    {\n                        \"X\": 0.3790452778339386,\n                        \"Y\": 0.11811190843582153\n                    },\n                    {\n                        \"X\": 0.37904688715934753,\n                        \"Y\": 0.12550102174282074\n                    },\n                    {\n                        \"X\": 0.3710823059082031,\n                        \"Y\": 0.12549711763858795\n                    }\n                ]\n            },\n            \"Id\": \"541813f3-d831-4458-82a1-230f6f0dded8\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87554168701172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01099187321960926,\n                    \"Left\": 0.3817170560359955,\n                    \"Top\": 0.11657518893480301,\n                    \"Width\": 0.06487312912940979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3817170560359955,\n                        \"Y\": 0.11657518893480301\n                    },\n                    {\n                        \"X\": 0.44658732414245605,\n                        \"Y\": 0.11660680919885635\n                    },\n                    {\n                        \"X\": 0.4465901851654053,\n                        \"Y\": 0.12756705284118652\n                    },\n                    {\n                        \"X\": 0.3817194998264313,\n                        \"Y\": 0.12753523886203766\n                    }\n                ]\n            },\n            \"Id\": \"de3fa055-726b-45b4-99a1-177f350a12e8\",\n            \"Text\": \"community\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90869140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01117976289242506,\n                    \"Left\": 0.44868695735931396,\n                    \"Top\": 0.11662787944078445,\n                    \"Width\": 0.04893600568175316\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44868695735931396,\n                        \"Y\": 0.11662787944078445\n                    },\n                    {\n                        \"X\": 0.49761971831321716,\n                        \"Y\": 0.11665172874927521\n                    },\n                    {\n                        \"X\": 0.4976229667663574,\n                        \"Y\": 0.1278076320886612\n                    },\n                    {\n                        \"X\": 0.44868987798690796,\n                        \"Y\": 0.1277836412191391\n                    }\n                ]\n            },\n            \"Id\": \"e121ba6f-8926-49cc-9832-6dc0a6516db4\",\n            \"Text\": \"property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92337799072266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009159318171441555,\n                    \"Left\": 0.49985024333000183,\n                    \"Top\": 0.11654867976903915,\n                    \"Width\": 0.029409492388367653\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49985024333000183,\n                        \"Y\": 0.11654867976903915\n                    },\n                    {\n                        \"X\": 0.5292568802833557,\n                        \"Y\": 0.11656301468610764\n                    },\n                    {\n                        \"X\": 0.5292597413063049,\n                        \"Y\": 0.12570799887180328\n                    },\n                    {\n                        \"X\": 0.4998529255390167,\n                        \"Y\": 0.12569358944892883\n                    }\n                ]\n            },\n            \"Id\": \"4979f019-f26e-4488-9335-28fe37b78fd5\",\n            \"Text\": \"state\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95840454101562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007449209224432707,\n                    \"Left\": 0.5323215126991272,\n                    \"Top\": 0.1181693747639656,\n                    \"Width\": 0.014016201719641685\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5323215126991272,\n                        \"Y\": 0.1181693747639656\n                    },\n                    {\n                        \"X\": 0.5463353395462036,\n                        \"Y\": 0.11817621439695358\n                    },\n                    {\n                        \"X\": 0.5463377237319946,\n                        \"Y\": 0.1256185919046402\n                    },\n                    {\n                        \"X\": 0.5323238372802734,\n                        \"Y\": 0.12561172246932983\n                    }\n                ]\n            },\n            \"Id\": \"ed80bdac-caee-4048-9341-b26c09c7c0af\",\n            \"Text\": \"as\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91268157958984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0073227896355092525,\n                    \"Left\": 0.5498965978622437,\n                    \"Top\": 0.1182267889380455,\n                    \"Width\": 0.00812696386128664\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5498965978622437,\n                        \"Y\": 0.1182267889380455\n                    },\n                    {\n                        \"X\": 0.5580211877822876,\n                        \"Y\": 0.11823075264692307\n                    },\n                    {\n                        \"X\": 0.5580235719680786,\n                        \"Y\": 0.1255495846271515\n                    },\n                    {\n                        \"X\": 0.5498989224433899,\n                        \"Y\": 0.12554559111595154\n                    }\n                ]\n            },\n            \"Id\": \"0526a862-4e58-455c-a8e0-bb19bdec8806\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88448333740234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009714746847748756,\n                    \"Left\": 0.5607660412788391,\n                    \"Top\": 0.11591411381959915,\n                    \"Width\": 0.03136124834418297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5607660412788391,\n                        \"Y\": 0.11591411381959915\n                    },\n                    {\n                        \"X\": 0.5921239256858826,\n                        \"Y\": 0.11592939496040344\n                    },\n                    {\n                        \"X\": 0.59212726354599,\n                        \"Y\": 0.12562885880470276\n                    },\n                    {\n                        \"X\": 0.5607692003250122,\n                        \"Y\": 0.1256134957075119\n                    }\n                ]\n            },\n            \"Id\": \"2bf36975-5863-4f31-a0d4-33df909eea19\",\n            \"Text\": \"basis\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93994903564453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009720643982291222,\n                    \"Left\": 0.5947707295417786,\n                    \"Top\": 0.11590924113988876,\n                    \"Width\": 0.016417184844613075\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5947707295417786,\n                        \"Y\": 0.11590924113988876\n                    },\n                    {\n                        \"X\": 0.6111844778060913,\n                        \"Y\": 0.11591723561286926\n                    },\n                    {\n                        \"X\": 0.6111879348754883,\n                        \"Y\": 0.12562988698482513\n                    },\n                    {\n                        \"X\": 0.5947741270065308,\n                        \"Y\": 0.12562184035778046\n                    }\n                ]\n            },\n            \"Id\": \"4c034684-cf8a-4678-9bcd-267a9ca1e385\",\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92514038085938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010636287741363049,\n                    \"Left\": 0.6140663027763367,\n                    \"Top\": 0.1169537678360939,\n                    \"Width\": 0.06340301036834717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6140663027763367,\n                        \"Y\": 0.1169537678360939\n                    },\n                    {\n                        \"X\": 0.6774650812149048,\n                        \"Y\": 0.11698468029499054\n                    },\n                    {\n                        \"X\": 0.6774693131446838,\n                        \"Y\": 0.12759006023406982\n                    },\n                    {\n                        \"X\": 0.6140701174736023,\n                        \"Y\": 0.12755896151065826\n                    }\n                ]\n            },\n            \"Id\": \"062be2c0-dee4-4f07-ad7c-cc02c81b6680\",\n            \"Text\": \"repayment\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89402770996094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009663322009146214,\n                    \"Left\": 0.6793997287750244,\n                    \"Top\": 0.11595853418111801,\n                    \"Width\": 0.012783121317625046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6793997287750244,\n                        \"Y\": 0.11595853418111801\n                    },\n                    {\n                        \"X\": 0.6921789050102234,\n                        \"Y\": 0.11596476286649704\n                    },\n                    {\n                        \"X\": 0.6921828389167786,\n                        \"Y\": 0.12562185525894165\n                    },\n                    {\n                        \"X\": 0.67940354347229,\n                        \"Y\": 0.12561559677124023\n                    }\n                ]\n            },\n            \"Id\": \"c7b614f0-3326-4fc0-808e-45be7dbfbbcb\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94795227050781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009421338327229023,\n                    \"Left\": 0.6941192150115967,\n                    \"Top\": 0.11628773808479309,\n                    \"Width\": 0.019086454063653946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6941192150115967,\n                        \"Y\": 0.11628773808479309\n                    },\n                    {\n                        \"X\": 0.7132017016410828,\n                        \"Y\": 0.11629703640937805\n                    },\n                    {\n                        \"X\": 0.7132056355476379,\n                        \"Y\": 0.12570907175540924\n                    },\n                    {\n                        \"X\": 0.6941230297088623,\n                        \"Y\": 0.1256997287273407\n                    }\n                ]\n            },\n            \"Id\": \"a31e8906-477b-4344-bcac-cfb237845771\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.61264038085938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009675404988229275,\n                    \"Left\": 0.7160735130310059,\n                    \"Top\": 0.11608729511499405,\n                    \"Width\": 0.02888820879161358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7160735130310059,\n                        \"Y\": 0.11608729511499405\n                    },\n                    {\n                        \"X\": 0.7449575066566467,\n                        \"Y\": 0.11610136926174164\n                    },\n                    {\n                        \"X\": 0.744961678981781,\n                        \"Y\": 0.1257627010345459\n                    },\n                    {\n                        \"X\": 0.7160775661468506,\n                        \"Y\": 0.12574854493141174\n                    }\n                ]\n            },\n            \"Id\": \"c2d4d674-4c82-4737-8d5c-4f47de119a5b\",\n            \"Text\": \"loan.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.11644744873047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00969057809561491,\n                    \"Left\": 0.022562377154827118,\n                    \"Top\": 0.13578970730304718,\n                    \"Width\": 0.008571549318730831\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022562377154827118,\n                        \"Y\": 0.13578970730304718\n                    },\n                    {\n                        \"X\": 0.031133776530623436,\n                        \"Y\": 0.13579392433166504\n                    },\n                    {\n                        \"X\": 0.031133925542235374,\n                        \"Y\": 0.14548029005527496\n                    },\n                    {\n                        \"X\": 0.022562475875020027,\n                        \"Y\": 0.14547604322433472\n                    }\n                ]\n            },\n            \"Id\": \"1053ada1-68df-43bb-8412-fb2941366b8f\",\n            \"Text\": \"If\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91571044921875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009506669826805592,\n                    \"Left\": 0.03314053267240524,\n                    \"Top\": 0.13621008396148682,\n                    \"Width\": 0.020890112966299057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03314053267240524,\n                        \"Y\": 0.13621008396148682\n                    },\n                    {\n                        \"X\": 0.054030369967222214,\n                        \"Y\": 0.13622038066387177\n                    },\n                    {\n                        \"X\": 0.0540306456387043,\n                        \"Y\": 0.14571675658226013\n                    },\n                    {\n                        \"X\": 0.03314068913459778,\n                        \"Y\": 0.1457064151763916\n                    }\n                ]\n            },\n            \"Id\": \"bb647af4-a23d-4953-b142-ed66ace54c59\",\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91385650634766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009560341015458107,\n                    \"Left\": 0.05737192928791046,\n                    \"Top\": 0.13617375493049622,\n                    \"Width\": 0.010210376232862473\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05737192928791046,\n                        \"Y\": 0.13617375493049622\n                    },\n                    {\n                        \"X\": 0.06758195161819458,\n                        \"Y\": 0.13617877662181854\n                    },\n                    {\n                        \"X\": 0.06758230924606323,\n                        \"Y\": 0.14573408663272858\n                    },\n                    {\n                        \"X\": 0.05737222358584404,\n                        \"Y\": 0.14572903513908386\n                    }\n                ]\n            },\n            \"Id\": \"292d6ed3-d45b-427b-8406-a7b6cd4afde2\",\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93883514404297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00760246766731143,\n                    \"Left\": 0.07066503912210464,\n                    \"Top\": 0.13823053240776062,\n                    \"Width\": 0.014914472587406635\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07066503912210464,\n                        \"Y\": 0.13823053240776062\n                    },\n                    {\n                        \"X\": 0.08557914942502975,\n                        \"Y\": 0.13823789358139038\n                    },\n                    {\n                        \"X\": 0.08557950705289841,\n                        \"Y\": 0.14583300054073334\n                    },\n                    {\n                        \"X\": 0.07066532969474792,\n                        \"Y\": 0.14582562446594238\n                    }\n                ]\n            },\n            \"Id\": \"b46387cd-a221-451e-863f-e668e8097ff3\",\n            \"Text\": \"an\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92670440673828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011801605112850666,\n                    \"Left\": 0.08894890546798706,\n                    \"Top\": 0.1361449807882309,\n                    \"Width\": 0.06320265680551529\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08894890546798706,\n                        \"Y\": 0.1361449807882309\n                    },\n                    {\n                        \"X\": 0.15215054154396057,\n                        \"Y\": 0.13617612421512604\n                    },\n                    {\n                        \"X\": 0.15215156972408295,\n                        \"Y\": 0.14794659614562988\n                    },\n                    {\n                        \"X\": 0.08894948661327362,\n                        \"Y\": 0.14791525900363922\n                    }\n                ]\n            },\n            \"Id\": \"c7f2f129-294b-4df9-a4f4-e059e9ca754c\",\n            \"Text\": \"application\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90003967285156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009623407386243343,\n                    \"Left\": 0.15510162711143494,\n                    \"Top\": 0.13608090579509735,\n                    \"Width\": 0.01608683541417122\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15510162711143494,\n                        \"Y\": 0.13608090579509735\n                    },\n                    {\n                        \"X\": 0.17118752002716064,\n                        \"Y\": 0.13608883321285248\n                    },\n                    {\n                        \"X\": 0.17118845880031586,\n                        \"Y\": 0.14570431411266327\n                    },\n                    {\n                        \"X\": 0.15510247647762299,\n                        \"Y\": 0.14569634199142456\n                    }\n                ]\n            },\n            \"Id\": \"fed657a9-734b-42bf-87ac-406b1819d894\",\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83851623535156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011982345953583717,\n                    \"Left\": 0.17373311519622803,\n                    \"Top\": 0.13595624268054962,\n                    \"Width\": 0.02573593147099018\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17373311519622803,\n                        \"Y\": 0.13595624268054962\n                    },\n                    {\n                        \"X\": 0.19946767389774323,\n                        \"Y\": 0.13596892356872559\n                    },\n                    {\n                        \"X\": 0.19946904480457306,\n                        \"Y\": 0.1479385942220688\n                    },\n                    {\n                        \"X\": 0.17373430728912354,\n                        \"Y\": 0.14792582392692566\n                    }\n                ]\n            },\n            \"Id\": \"e200c4f1-0a55-42d5-9eb4-e6fa6971ae0d\",\n            \"Text\": \"joint\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 87.88848114013672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010465838946402073,\n                    \"Left\": 0.2023235559463501,\n                    \"Top\": 0.1363193243741989,\n                    \"Width\": 0.03593926131725311\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2023235559463501,\n                        \"Y\": 0.1363193243741989\n                    },\n                    {\n                        \"X\": 0.2382613718509674,\n                        \"Y\": 0.1363370269536972\n                    },\n                    {\n                        \"X\": 0.2382628172636032,\n                        \"Y\": 0.14678515493869781\n                    },\n                    {\n                        \"X\": 0.202324777841568,\n                        \"Y\": 0.14676734805107117\n                    }\n                ]\n            },\n            \"Id\": \"0608f359-7b96-4659-949f-fde69d3c0a96\",\n            \"Text\": \"credit,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97402954101562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009604787454009056,\n                    \"Left\": 0.24142076075077057,\n                    \"Top\": 0.13615892827510834,\n                    \"Width\": 0.054059967398643494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24142076075077057,\n                        \"Y\": 0.13615892827510834\n                    },\n                    {\n                        \"X\": 0.29547908902168274,\n                        \"Y\": 0.13618555665016174\n                    },\n                    {\n                        \"X\": 0.29548072814941406,\n                        \"Y\": 0.14576371014118195\n                    },\n                    {\n                        \"X\": 0.24142208695411682,\n                        \"Y\": 0.1457369476556778\n                    }\n                ]\n            },\n            \"Id\": \"bc013ee8-343d-4d99-b64e-cdc5a5b7d4a2\",\n            \"Text\": \"Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9598159790039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009455863386392593,\n                    \"Left\": 0.29816561937332153,\n                    \"Top\": 0.13620319962501526,\n                    \"Width\": 0.022599272429943085\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29816561937332153,\n                        \"Y\": 0.13620319962501526\n                    },\n                    {\n                        \"X\": 0.32076311111450195,\n                        \"Y\": 0.13621433079242706\n                    },\n                    {\n                        \"X\": 0.3207648694515228,\n                        \"Y\": 0.14565905928611755\n                    },\n                    {\n                        \"X\": 0.29816725850105286,\n                        \"Y\": 0.14564786851406097\n                    }\n                ]\n            },\n            \"Id\": \"05b4082d-e29e-490e-a4ec-93cf8bb30406\",\n            \"Text\": \"and\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8189468383789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009971977211534977,\n                    \"Left\": 0.32378238439559937,\n                    \"Top\": 0.1358940154314041,\n                    \"Width\": 0.07499370723962784\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32378238439559937,\n                        \"Y\": 0.1358940154314041\n                    },\n                    {\n                        \"X\": 0.39877378940582275,\n                        \"Y\": 0.13593095541000366\n                    },\n                    {\n                        \"X\": 0.3987760841846466,\n                        \"Y\": 0.14586599171161652\n                    },\n                    {\n                        \"X\": 0.3237842619419098,\n                        \"Y\": 0.14582884311676025\n                    }\n                ]\n            },\n            \"Id\": \"d2d2bd80-8bd7-4a67-911f-757b7c13ef8a\",\n            \"Text\": \"Co-Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95852661132812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009375441819429398,\n                    \"Left\": 0.40118134021759033,\n                    \"Top\": 0.13638071715831757,\n                    \"Width\": 0.029448261484503746\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40118134021759033,\n                        \"Y\": 0.13638071715831757\n                    },\n                    {\n                        \"X\": 0.4306272566318512,\n                        \"Y\": 0.13639521598815918\n                    },\n                    {\n                        \"X\": 0.4306296110153198,\n                        \"Y\": 0.14575615525245667\n                    },\n                    {\n                        \"X\": 0.40118351578712463,\n                        \"Y\": 0.1457415670156479\n                    }\n                ]\n            },\n            \"Id\": \"c032ea28-bf08-42f6-88bd-ceacb1ef7ebc\",\n            \"Text\": \"each\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9800796508789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00968057569116354,\n                    \"Left\": 0.4335087537765503,\n                    \"Top\": 0.13818950951099396,\n                    \"Width\": 0.03455524891614914\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4335087537765503,\n                        \"Y\": 0.13818950951099396\n                    },\n                    {\n                        \"X\": 0.4680613577365875,\n                        \"Y\": 0.13820655643939972\n                    },\n                    {\n                        \"X\": 0.46806401014328003,\n                        \"Y\": 0.14787009358406067\n                    },\n                    {\n                        \"X\": 0.4335111975669861,\n                        \"Y\": 0.14785295724868774\n                    }\n                ]\n            },\n            \"Id\": \"c078dd2a-07f0-42b9-b908-fe86eeb08363\",\n            \"Text\": \"agree\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93521881103516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009369962848722935,\n                    \"Left\": 0.4706595540046692,\n                    \"Top\": 0.13645853102207184,\n                    \"Width\": 0.02330290526151657\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4706595540046692,\n                        \"Y\": 0.13645853102207184\n                    },\n                    {\n                        \"X\": 0.4939597547054291,\n                        \"Y\": 0.1364700198173523\n                    },\n                    {\n                        \"X\": 0.49396243691444397,\n                        \"Y\": 0.1458285003900528\n                    },\n                    {\n                        \"X\": 0.47066211700439453,\n                        \"Y\": 0.14581695199012756\n                    }\n                ]\n            },\n            \"Id\": \"c4bc9e61-ca80-4c61-a3d1-286ac46c82a4\",\n            \"Text\": \"that\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70406341552734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007463890593498945,\n                    \"Left\": 0.49644508957862854,\n                    \"Top\": 0.13824723660945892,\n                    \"Width\": 0.017178434878587723\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49644508957862854,\n                        \"Y\": 0.13824723660945892\n                    },\n                    {\n                        \"X\": 0.5136212706565857,\n                        \"Y\": 0.13825570046901703\n                    },\n                    {\n                        \"X\": 0.5136235356330872,\n                        \"Y\": 0.14571112394332886\n                    },\n                    {\n                        \"X\": 0.49644723534584045,\n                        \"Y\": 0.14570261538028717\n                    }\n                ]\n            },\n            \"Id\": \"ef636dc0-7897-4378-9c91-5a1e4b68a483\",\n            \"Text\": \"we\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86531829833984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009482301771640778,\n                    \"Left\": 0.5164318084716797,\n                    \"Top\": 0.13618029654026031,\n                    \"Width\": 0.0371287539601326\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5164318084716797,\n                        \"Y\": 0.13618029654026031\n                    },\n                    {\n                        \"X\": 0.5535575151443481,\n                        \"Y\": 0.13619859516620636\n                    },\n                    {\n                        \"X\": 0.5535605549812317,\n                        \"Y\": 0.1456626057624817\n                    },\n                    {\n                        \"X\": 0.5164346694946289,\n                        \"Y\": 0.14564421772956848\n                    }\n                ]\n            },\n            \"Id\": \"4d77c5e9-f64b-437e-9adc-64bd0a1f4400\",\n            \"Text\": \"intend\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93778228759766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008922569453716278,\n                    \"Left\": 0.5559825301170349,\n                    \"Top\": 0.13661089539527893,\n                    \"Width\": 0.011511988006532192\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5559825301170349,\n                        \"Y\": 0.13661089539527893\n                    },\n                    {\n                        \"X\": 0.5674915313720703,\n                        \"Y\": 0.1366165727376938\n                    },\n                    {\n                        \"X\": 0.5674945116043091,\n                        \"Y\": 0.1455334722995758\n                    },\n                    {\n                        \"X\": 0.5559853911399841,\n                        \"Y\": 0.14552776515483856\n                    }\n                ]\n            },\n            \"Id\": \"a42fe9c1-75c2-4e98-9ebf-26bee3d37b3c\",\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97151947021484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011389863677322865,\n                    \"Left\": 0.5704227089881897,\n                    \"Top\": 0.136489138007164,\n                    \"Width\": 0.03269185125827789\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5704227089881897,\n                        \"Y\": 0.136489138007164\n                    },\n                    {\n                        \"X\": 0.6031105518341064,\n                        \"Y\": 0.13650524616241455\n                    },\n                    {\n                        \"X\": 0.6031145453453064,\n                        \"Y\": 0.1478790044784546\n                    },\n                    {\n                        \"X\": 0.5704265236854553,\n                        \"Y\": 0.14786280691623688\n                    }\n                ]\n            },\n            \"Id\": \"dc9c096e-0f02-490e-a52e-a5a17e688f7c\",\n            \"Text\": \"apply\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93993377685547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009624151512980461,\n                    \"Left\": 0.6056274175643921,\n                    \"Top\": 0.1361599713563919,\n                    \"Width\": 0.01581275835633278\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6056274175643921,\n                        \"Y\": 0.1361599713563919\n                    },\n                    {\n                        \"X\": 0.6214366555213928,\n                        \"Y\": 0.1361677646636963\n                    },\n                    {\n                        \"X\": 0.6214401721954346,\n                        \"Y\": 0.14578412473201752\n                    },\n                    {\n                        \"X\": 0.6056308150291443,\n                        \"Y\": 0.14577630162239075\n                    }\n                ]\n            },\n            \"Id\": \"cf7ab86e-ae84-4d9e-a23f-29a8ac9cef78\",\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82256317138672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01167012844234705,\n                    \"Left\": 0.6236858367919922,\n                    \"Top\": 0.13614551723003387,\n                    \"Width\": 0.026214169338345528\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6236858367919922,\n                        \"Y\": 0.13614551723003387\n                    },\n                    {\n                        \"X\": 0.6498956084251404,\n                        \"Y\": 0.13615842163562775\n                    },\n                    {\n                        \"X\": 0.6499000191688538,\n                        \"Y\": 0.14781564474105835\n                    },\n                    {\n                        \"X\": 0.623690128326416,\n                        \"Y\": 0.14780265092849731\n                    }\n                ]\n            },\n            \"Id\": \"8cc2cd54-ce7b-400f-adcb-b22f5664ef2d\",\n            \"Text\": \"joint\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86587524414062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009457029402256012,\n                    \"Left\": 0.6522976160049438,\n                    \"Top\": 0.1363312005996704,\n                    \"Width\": 0.03334140032529831\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6522976160049438,\n                        \"Y\": 0.1363312005996704\n                    },\n                    {\n                        \"X\": 0.6856352686882019,\n                        \"Y\": 0.13634763658046722\n                    },\n                    {\n                        \"X\": 0.6856390237808228,\n                        \"Y\": 0.14578823745250702\n                    },\n                    {\n                        \"X\": 0.6523012518882751,\n                        \"Y\": 0.14577172696590424\n                    }\n                ]\n            },\n            \"Id\": \"93ee7b9f-768a-49cc-99e6-d08a3ee60c88\",\n            \"Text\": \"credit\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77354431152344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011996160261332989,\n                    \"Left\": 0.6884379386901855,\n                    \"Top\": 0.13619963824748993,\n                    \"Width\": 0.028650974854826927\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6884379386901855,\n                        \"Y\": 0.13619963824748993\n                    },\n                    {\n                        \"X\": 0.7170838713645935,\n                        \"Y\": 0.1362137496471405\n                    },\n                    {\n                        \"X\": 0.7170889377593994,\n                        \"Y\": 0.1481957882642746\n                    },\n                    {\n                        \"X\": 0.6884428262710571,\n                        \"Y\": 0.14818158745765686\n                    }\n                ]\n            },\n            \"Id\": \"cadb0064-9a1a-46ae-bb1f-7ea1d38984e5\",\n            \"Text\": \"(sign\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8109130859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011742408387362957,\n                    \"Left\": 0.7202819585800171,\n                    \"Top\": 0.13621842861175537,\n                    \"Width\": 0.04277607426047325\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7202819585800171,\n                        \"Y\": 0.13621842861175537\n                    },\n                    {\n                        \"X\": 0.763052761554718,\n                        \"Y\": 0.13623949885368347\n                    },\n                    {\n                        \"X\": 0.7630580067634583,\n                        \"Y\": 0.1479608416557312\n                    },\n                    {\n                        \"X\": 0.7202869057655334,\n                        \"Y\": 0.14793963730335236\n                    }\n                ]\n            },\n            \"Id\": \"9eeaf41d-e99f-4a42-8c96-ff38b88c9929\",\n            \"Text\": \"below):\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96760559082031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009577740915119648,\n                    \"Left\": 0.02245892398059368,\n                    \"Top\": 0.18659168481826782,\n                    \"Width\": 0.05381732061505318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02245892398059368,\n                        \"Y\": 0.18659168481826782\n                    },\n                    {\n                        \"X\": 0.07627584040164948,\n                        \"Y\": 0.18661890923976898\n                    },\n                    {\n                        \"X\": 0.07627624273300171,\n                        \"Y\": 0.1961694210767746\n                    },\n                    {\n                        \"X\": 0.02245902270078659,\n                        \"Y\": 0.1961420476436615\n                    }\n                ]\n            },\n            \"Id\": \"058eb8ac-3a11-4682-9771-e1fbeeee90e3\",\n            \"Text\": \"Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86902618408203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009892182424664497,\n                    \"Left\": 0.3364422023296356,\n                    \"Top\": 0.18647268414497375,\n                    \"Width\": 0.0740666314959526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3364422023296356,\n                        \"Y\": 0.18647268414497375\n                    },\n                    {\n                        \"X\": 0.4105064868927002,\n                        \"Y\": 0.18651016056537628\n                    },\n                    {\n                        \"X\": 0.4105088412761688,\n                        \"Y\": 0.1963648647069931\n                    },\n                    {\n                        \"X\": 0.3364441394805908,\n                        \"Y\": 0.19632719457149506\n                    }\n                ]\n            },\n            \"Id\": \"55464df2-5ee7-4d38-8ab3-2fcae8954b50\",\n            \"Text\": \"Co-Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.59111785888672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009738858789205551,\n                    \"Left\": 0.31870436668395996,\n                    \"Top\": 0.20522068440914154,\n                    \"Width\": 0.008681557141244411\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31870436668395996,\n                        \"Y\": 0.20522068440914154\n                    },\n                    {\n                        \"X\": 0.3273840546607971,\n                        \"Y\": 0.2052251249551773\n                    },\n                    {\n                        \"X\": 0.32738590240478516,\n                        \"Y\": 0.2149595469236374\n                    },\n                    {\n                        \"X\": 0.3187061548233032,\n                        \"Y\": 0.21495509147644043\n                    }\n                ]\n            },\n            \"Id\": \"808875e1-5387-48d9-8703-9a57509a72da\",\n            \"Text\": \"I.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83856201171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010186094790697098,\n                    \"Left\": 0.330354243516922,\n                    \"Top\": 0.20486150681972504,\n                    \"Width\": 0.03918588533997536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.330354243516922,\n                        \"Y\": 0.20486150681972504\n                    },\n                    {\n                        \"X\": 0.36953794956207275,\n                        \"Y\": 0.20488151907920837\n                    },\n                    {\n                        \"X\": 0.36954012513160706,\n                        \"Y\": 0.21504759788513184\n                    },\n                    {\n                        \"X\": 0.3303562104701996,\n                        \"Y\": 0.21502746641635895\n                    }\n                ]\n            },\n            \"Id\": \"37c56a2e-e894-4f0a-8480-9e4ba3535de5\",\n            \"Text\": \"TYPE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95800018310547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010060237720608711,\n                    \"Left\": 0.3726728856563568,\n                    \"Top\": 0.20493300259113312,\n                    \"Width\": 0.020615363493561745\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3726728856563568,\n                        \"Y\": 0.20493300259113312\n                    },\n                    {\n                        \"X\": 0.39328595995903015,\n                        \"Y\": 0.20494352281093597\n                    },\n                    {\n                        \"X\": 0.393288254737854,\n                        \"Y\": 0.21499323844909668\n                    },\n                    {\n                        \"X\": 0.3726750910282135,\n                        \"Y\": 0.21498264372348785\n                    }\n                ]\n            },\n            \"Id\": \"fbf6eb72-e631-4c82-80a3-57550482d3b0\",\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7783432006836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010368138551712036,\n                    \"Left\": 0.3964149057865143,\n                    \"Top\": 0.20482370257377625,\n                    \"Width\": 0.08526309579610825\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3964149057865143,\n                        \"Y\": 0.20482370257377625\n                    },\n                    {\n                        \"X\": 0.48167508840560913,\n                        \"Y\": 0.20486725866794586\n                    },\n                    {\n                        \"X\": 0.4816780090332031,\n                        \"Y\": 0.21519184112548828\n                    },\n                    {\n                        \"X\": 0.3964172899723053,\n                        \"Y\": 0.21514804661273956\n                    }\n                ]\n            },\n            \"Id\": \"6e4379b3-d114-4a60-bb56-429fe39442b6\",\n            \"Text\": \"MORTGAGE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93247985839844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010029727593064308,\n                    \"Left\": 0.4845362603664398,\n                    \"Top\": 0.2050192654132843,\n                    \"Width\": 0.0318235382437706\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4845362603664398,\n                        \"Y\": 0.2050192654132843\n                    },\n                    {\n                        \"X\": 0.5163567662239075,\n                        \"Y\": 0.2050355225801468\n                    },\n                    {\n                        \"X\": 0.516359806060791,\n                        \"Y\": 0.21504899859428406\n                    },\n                    {\n                        \"X\": 0.48453909158706665,\n                        \"Y\": 0.2150326520204544\n                    }\n                ]\n            },\n            \"Id\": \"82f39907-b0af-4c4e-82ce-4aa50148edc4\",\n            \"Text\": \"AND\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7758560180664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010247249156236649,\n                    \"Left\": 0.5192330479621887,\n                    \"Top\": 0.20481164753437042,\n                    \"Width\": 0.05129623785614967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5192330479621887,\n                        \"Y\": 0.20481164753437042\n                    },\n                    {\n                        \"X\": 0.5705258846282959,\n                        \"Y\": 0.2048378586769104\n                    },\n                    {\n                        \"X\": 0.5705292820930481,\n                        \"Y\": 0.21505890786647797\n                    },\n                    {\n                        \"X\": 0.519236147403717,\n                        \"Y\": 0.21503256261348724\n                    }\n                ]\n            },\n            \"Id\": \"24d6968e-f3ba-4719-bcd7-7df97fa5c15a\",\n            \"Text\": \"TERMS\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97006225585938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010124940425157547,\n                    \"Left\": 0.5739085674285889,\n                    \"Top\": 0.20486076176166534,\n                    \"Width\": 0.020289719104766846\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5739085674285889,\n                        \"Y\": 0.20486076176166534\n                    },\n                    {\n                        \"X\": 0.594194769859314,\n                        \"Y\": 0.20487113296985626\n                    },\n                    {\n                        \"X\": 0.5941982865333557,\n                        \"Y\": 0.2149857133626938\n                    },\n                    {\n                        \"X\": 0.5739119648933411,\n                        \"Y\": 0.2149752825498581\n                    }\n                ]\n            },\n            \"Id\": \"a6f04bbb-210c-45f5-a896-ee69fb5a7f63\",\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94845581054688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010246328078210354,\n                    \"Left\": 0.5978075861930847,\n                    \"Top\": 0.20494848489761353,\n                    \"Width\": 0.041387107223272324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5978075861930847,\n                        \"Y\": 0.20494848489761353\n                    },\n                    {\n                        \"X\": 0.6391908526420593,\n                        \"Y\": 0.2049696296453476\n                    },\n                    {\n                        \"X\": 0.639194667339325,\n                        \"Y\": 0.21519482135772705\n                    },\n                    {\n                        \"X\": 0.5978111624717712,\n                        \"Y\": 0.21517355740070343\n                    }\n                ]\n            },\n            \"Id\": \"f7172635-e82d-413f-9d8f-6a94e1622e47\",\n            \"Text\": \"LOAN\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73023223876953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01134650968015194,\n                    \"Left\": 0.028940971940755844,\n                    \"Top\": 0.22284400463104248,\n                    \"Width\": 0.05516770854592323\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028940971940755844,\n                        \"Y\": 0.22284400463104248\n                    },\n                    {\n                        \"X\": 0.0841081514954567,\n                        \"Y\": 0.22287245094776154\n                    },\n                    {\n                        \"X\": 0.08410868048667908,\n                        \"Y\": 0.23419050872325897\n                    },\n                    {\n                        \"X\": 0.028941132128238678,\n                        \"Y\": 0.23416189849376678\n                    }\n                ]\n            },\n            \"Id\": \"699edc34-edf0-4167-9a18-f86dd1cc96cb\",\n            \"Text\": \"Mortgage\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67634582519531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009200909174978733,\n                    \"Left\": 0.12897132337093353,\n                    \"Top\": 0.22570808231830597,\n                    \"Width\": 0.01847834326326847\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12897132337093353,\n                        \"Y\": 0.22570808231830597\n                    },\n                    {\n                        \"X\": 0.14744889736175537,\n                        \"Y\": 0.22571763396263123\n                    },\n                    {\n                        \"X\": 0.14744967222213745,\n                        \"Y\": 0.23490899801254272\n                    },\n                    {\n                        \"X\": 0.12897199392318726,\n                        \"Y\": 0.2348994016647339\n                    }\n                ]\n            },\n            \"Id\": \"f2c3ace7-b223-4e5e-ab1c-95921b66aa74\",\n            \"Text\": \"VA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.46109008789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009431150741875172,\n                    \"Left\": 0.21068575978279114,\n                    \"Top\": 0.22581090033054352,\n                    \"Width\": 0.0766059011220932\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21068575978279114,\n                        \"Y\": 0.22581090033054352\n                    },\n                    {\n                        \"X\": 0.287290096282959,\n                        \"Y\": 0.22585046291351318\n                    },\n                    {\n                        \"X\": 0.28729164600372314,\n                        \"Y\": 0.2352420538663864\n                    },\n                    {\n                        \"X\": 0.21068690717220306,\n                        \"Y\": 0.23520229756832123\n                    }\n                ]\n            },\n            \"Id\": \"bde762ae-1886-4b2f-960e-b60785b81a44\",\n            \"Text\": \"Conventional\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87772369384766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009639522060751915,\n                    \"Left\": 0.3341541588306427,\n                    \"Top\": 0.22582027316093445,\n                    \"Width\": 0.03229871764779091\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3341541588306427,\n                        \"Y\": 0.22582027316093445\n                    },\n                    {\n                        \"X\": 0.36645081639289856,\n                        \"Y\": 0.22583696246147156\n                    },\n                    {\n                        \"X\": 0.3664528727531433,\n                        \"Y\": 0.2354598045349121\n                    },\n                    {\n                        \"X\": 0.3341560363769531,\n                        \"Y\": 0.23544304072856903\n                    }\n                ]\n            },\n            \"Id\": \"d37314f4-bb88-4920-98d8-397704534871\",\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.61318969726562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012006940320134163,\n                    \"Left\": 0.36935168504714966,\n                    \"Top\": 0.22577258944511414,\n                    \"Width\": 0.053896620869636536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36935168504714966,\n                        \"Y\": 0.22577258944511414\n                    },\n                    {\n                        \"X\": 0.4232453405857086,\n                        \"Y\": 0.22580040991306305\n                    },\n                    {\n                        \"X\": 0.423248291015625,\n                        \"Y\": 0.23777952790260315\n                    },\n                    {\n                        \"X\": 0.369354248046875,\n                        \"Y\": 0.23775151371955872\n                    }\n                ]\n            },\n            \"Id\": \"d0af3a6c-7567-4eea-a513-f19847b24608\",\n            \"Text\": \"(explain):\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96255493164062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01152750849723816,\n                    \"Left\": 0.5315983891487122,\n                    \"Top\": 0.2205529361963272,\n                    \"Width\": 0.04505563899874687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5315983891487122,\n                        \"Y\": 0.2205529361963272\n                    },\n                    {\n                        \"X\": 0.5766501426696777,\n                        \"Y\": 0.22057613730430603\n                    },\n                    {\n                        \"X\": 0.5766540169715881,\n                        \"Y\": 0.23208044469356537\n                    },\n                    {\n                        \"X\": 0.5316019654273987,\n                        \"Y\": 0.2320571094751358\n                    }\n                ]\n            },\n            \"Id\": \"990051e9-7c13-4cde-9116-94adfa7400c3\",\n            \"Text\": \"Agency\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87675476074219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009484670124948025,\n                    \"Left\": 0.5792727470397949,\n                    \"Top\": 0.22038310766220093,\n                    \"Width\": 0.03131677210330963\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5792727470397949,\n                        \"Y\": 0.22038310766220093\n                    },\n                    {\n                        \"X\": 0.6105861067771912,\n                        \"Y\": 0.22039923071861267\n                    },\n                    {\n                        \"X\": 0.6105895042419434,\n                        \"Y\": 0.22986778616905212\n                    },\n                    {\n                        \"X\": 0.5792759656906128,\n                        \"Y\": 0.22985157370567322\n                    }\n                ]\n            },\n            \"Id\": \"2a3fda71-f3fe-4a13-bb0b-3b01b3905649\",\n            \"Text\": \"Case\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96824645996094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009353239089250565,\n                    \"Left\": 0.6131323575973511,\n                    \"Top\": 0.22044585645198822,\n                    \"Width\": 0.047856446355581284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6131323575973511,\n                        \"Y\": 0.22044585645198822\n                    },\n                    {\n                        \"X\": 0.6609851717948914,\n                        \"Y\": 0.22047050297260284\n                    },\n                    {\n                        \"X\": 0.6609888076782227,\n                        \"Y\": 0.2297990918159485\n                    },\n                    {\n                        \"X\": 0.6131356954574585,\n                        \"Y\": 0.2297743409872055\n                    }\n                ]\n            },\n            \"Id\": \"a128b2cf-47b5-4698-a39b-212b4a24e3da\",\n            \"Text\": \"Number\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94825744628906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009626336395740509,\n                    \"Left\": 0.7357913255691528,\n                    \"Top\": 0.22037118673324585,\n                    \"Width\": 0.041961055248975754\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7357913255691528,\n                        \"Y\": 0.22037118673324585\n                    },\n                    {\n                        \"X\": 0.7777479887008667,\n                        \"Y\": 0.22039279341697693\n                    },\n                    {\n                        \"X\": 0.7777523994445801,\n                        \"Y\": 0.22999753057956696\n                    },\n                    {\n                        \"X\": 0.7357954978942871,\n                        \"Y\": 0.22997581958770752\n                    }\n                ]\n            },\n            \"Id\": \"0fb2ae41-2f40-4a1f-aeb2-e9cd07eda188\",\n            \"Text\": \"Lender\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9379653930664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009765616618096828,\n                    \"Left\": 0.7805463671684265,\n                    \"Top\": 0.22025886178016663,\n                    \"Width\": 0.03170088306069374\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7805463671684265,\n                        \"Y\": 0.22025886178016663\n                    },\n                    {\n                        \"X\": 0.8122426271438599,\n                        \"Y\": 0.22027519345283508\n                    },\n                    {\n                        \"X\": 0.8122472763061523,\n                        \"Y\": 0.23002448678016663\n                    },\n                    {\n                        \"X\": 0.7805508375167847,\n                        \"Y\": 0.2300080806016922\n                    }\n                ]\n            },\n            \"Id\": \"98f8ef7e-dedd-4b67-9b4b-01edb56be489\",\n            \"Text\": \"Case\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95980072021484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009602127596735954,\n                    \"Left\": 0.8151963353157043,\n                    \"Top\": 0.22025159001350403,\n                    \"Width\": 0.04714464396238327\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8151963353157043,\n                        \"Y\": 0.22025159001350403\n                    },\n                    {\n                        \"X\": 0.8623361587524414,\n                        \"Y\": 0.2202758640050888\n                    },\n                    {\n                        \"X\": 0.8623409867286682,\n                        \"Y\": 0.22985371947288513\n                    },\n                    {\n                        \"X\": 0.815200924873352,\n                        \"Y\": 0.2298293262720108\n                    }\n                ]\n            },\n            \"Id\": \"c1b7b9d7-200e-4837-949d-330a736afe22\",\n            \"Text\": \"Number\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86924743652344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011856500059366226,\n                    \"Left\": 0.02813085727393627,\n                    \"Top\": 0.23490853607654572,\n                    \"Width\": 0.044586431235075\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02813085727393627,\n                        \"Y\": 0.23490853607654572\n                    },\n                    {\n                        \"X\": 0.07271681725978851,\n                        \"Y\": 0.23493167757987976\n                    },\n                    {\n                        \"X\": 0.07271729409694672,\n                        \"Y\": 0.24676503241062164\n                    },\n                    {\n                        \"X\": 0.028131019324064255,\n                        \"Y\": 0.24674175679683685\n                    }\n                ]\n            },\n            \"Id\": \"0e77a08a-7702-4dea-a37c-d5cdc6983e81\",\n            \"Text\": \"Applied\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.16279602050781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00925265159457922,\n                    \"Left\": 0.07575564831495285,\n                    \"Top\": 0.2351391315460205,\n                    \"Width\": 0.020910104736685753\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07575564831495285,\n                        \"Y\": 0.2351391315460205\n                    },\n                    {\n                        \"X\": 0.09666525572538376,\n                        \"Y\": 0.23514999449253082\n                    },\n                    {\n                        \"X\": 0.09666575491428375,\n                        \"Y\": 0.2443917840719223\n                    },\n                    {\n                        \"X\": 0.07575603574514389,\n                        \"Y\": 0.2443808913230896\n                    }\n                ]\n            },\n            \"Id\": \"2ff3ea43-8da2-4aa3-8098-6303bb06e5da\",\n            \"Text\": \"for:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76577758789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009344758465886116,\n                    \"Left\": 0.12906387448310852,\n                    \"Top\": 0.23815485835075378,\n                    \"Width\": 0.026670267805457115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12906387448310852,\n                        \"Y\": 0.23815485835075378\n                    },\n                    {\n                        \"X\": 0.15573331713676453,\n                        \"Y\": 0.23816873133182526\n                    },\n                    {\n                        \"X\": 0.15573415160179138,\n                        \"Y\": 0.24749961495399475\n                    },\n                    {\n                        \"X\": 0.12906455993652344,\n                        \"Y\": 0.2474856972694397\n                    }\n                ]\n            },\n            \"Id\": \"7e03f76f-5c06-4236-a293-e8139aa93e27\",\n            \"Text\": \"FHA\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4744873046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009644989855587482,\n                    \"Left\": 0.2107497602701187,\n                    \"Top\": 0.23806533217430115,\n                    \"Width\": 0.07127257436513901\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2107497602701187,\n                        \"Y\": 0.23806533217430115\n                    },\n                    {\n                        \"X\": 0.2820207476615906,\n                        \"Y\": 0.23810237646102905\n                    },\n                    {\n                        \"X\": 0.2820223271846771,\n                        \"Y\": 0.24771031737327576\n                    },\n                    {\n                        \"X\": 0.21075092256069183,\n                        \"Y\": 0.24767310917377472\n                    }\n                ]\n            },\n            \"Id\": \"b3f9158c-6ef4-4113-9f25-371f06e14598\",\n            \"Text\": \"USDA/Rural\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87584686279297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010913667269051075,\n                    \"Left\": 0.534145712852478,\n                    \"Top\": 0.2429029643535614,\n                    \"Width\": 0.060820844024419785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.534145712852478,\n                        \"Y\": 0.2429029643535614\n                    },\n                    {\n                        \"X\": 0.5949627757072449,\n                        \"Y\": 0.24293464422225952\n                    },\n                    {\n                        \"X\": 0.5949665904045105,\n                        \"Y\": 0.2538166344165802\n                    },\n                    {\n                        \"X\": 0.534149169921875,\n                        \"Y\": 0.25378477573394775\n                    }\n                ]\n            },\n            \"Id\": \"6b001f42-bfef-4a90-a5d4-5eddac57d39a\",\n            \"Text\": \"ABC1234\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.31742095947266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010444562882184982,\n                    \"Left\": 0.7381706237792969,\n                    \"Top\": 0.24293400347232819,\n                    \"Width\": 0.05915917083621025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7381706237792969,\n                        \"Y\": 0.24293400347232819\n                    },\n                    {\n                        \"X\": 0.7973248958587646,\n                        \"Y\": 0.24296481907367706\n                    },\n                    {\n                        \"X\": 0.7973297834396362,\n                        \"Y\": 0.25337857007980347\n                    },\n                    {\n                        \"X\": 0.7381751537322998,\n                        \"Y\": 0.25334760546684265\n                    }\n                ]\n            },\n            \"Id\": \"0c603739-698c-46ee-8551-0bef5daa7a18\",\n            \"Text\": \"XYZ6543\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95938873291016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011461293324828148,\n                    \"Left\": 0.21056979894638062,\n                    \"Top\": 0.2518315315246582,\n                    \"Width\": 0.048415657132864\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21056979894638062,\n                        \"Y\": 0.2518315315246582\n                    },\n                    {\n                        \"X\": 0.2589837312698364,\n                        \"Y\": 0.25185686349868774\n                    },\n                    {\n                        \"X\": 0.2589854598045349,\n                        \"Y\": 0.2632928192615509\n                    },\n                    {\n                        \"X\": 0.21057118475437164,\n                        \"Y\": 0.2632673382759094\n                    }\n                ]\n            },\n            \"Id\": \"1da09c26-c2ae-475a-a211-38704778afbb\",\n            \"Text\": \"Housing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93347930908203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00976599007844925,\n                    \"Left\": 0.2618616223335266,\n                    \"Top\": 0.25146883726119995,\n                    \"Width\": 0.044438429176807404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2618616223335266,\n                        \"Y\": 0.25146883726119995\n                    },\n                    {\n                        \"X\": 0.30629831552505493,\n                        \"Y\": 0.25149208307266235\n                    },\n                    {\n                        \"X\": 0.3063000440597534,\n                        \"Y\": 0.2612348198890686\n                    },\n                    {\n                        \"X\": 0.261863112449646,\n                        \"Y\": 0.26121145486831665\n                    }\n                ]\n            },\n            \"Id\": \"ab0ee00f-368f-459d-b67b-1eb8bf85b5e8\",\n            \"Text\": \"Service\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97771453857422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009742324240505695,\n                    \"Left\": 0.028249451890587807,\n                    \"Top\": 0.26724952459335327,\n                    \"Width\": 0.04654989019036293\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028249451890587807,\n                        \"Y\": 0.26724952459335327\n                    },\n                    {\n                        \"X\": 0.07479894161224365,\n                        \"Y\": 0.26727405190467834\n                    },\n                    {\n                        \"X\": 0.07479934394359589,\n                        \"Y\": 0.2769918441772461\n                    },\n                    {\n                        \"X\": 0.02824958600103855,\n                        \"Y\": 0.2769671678543091\n                    }\n                ]\n            },\n            \"Id\": \"cf7a3735-8d85-4b77-8a36-712382047a66\",\n            \"Text\": \"Amount\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.21585083007812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0095808831974864,\n                    \"Left\": 0.18798819184303284,\n                    \"Top\": 0.2674020528793335,\n                    \"Width\": 0.04412038251757622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18798819184303284,\n                        \"Y\": 0.2674020528793335\n                    },\n                    {\n                        \"X\": 0.23210729658603668,\n                        \"Y\": 0.2674253284931183\n                    },\n                    {\n                        \"X\": 0.23210857808589935,\n                        \"Y\": 0.2769829332828522\n                    },\n                    {\n                        \"X\": 0.1879892200231552,\n                        \"Y\": 0.2769595682621002\n                    }\n                ]\n            },\n            \"Id\": \"7e449874-d5cf-4ba4-a5af-4e9456214394\",\n            \"Text\": \"Interest\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85317993164062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009634454734623432,\n                    \"Left\": 0.23547744750976562,\n                    \"Top\": 0.26723232865333557,\n                    \"Width\": 0.028142599388957024\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23547744750976562,\n                        \"Y\": 0.26723232865333557\n                    },\n                    {\n                        \"X\": 0.2636185884475708,\n                        \"Y\": 0.26724717020988464\n                    },\n                    {\n                        \"X\": 0.2636200487613678,\n                        \"Y\": 0.2768667936325073\n                    },\n                    {\n                        \"X\": 0.23547875881195068,\n                        \"Y\": 0.2768518924713135\n                    }\n                ]\n            },\n            \"Id\": \"fbc31ea7-4d1e-442d-a70f-ec1216490568\",\n            \"Text\": \"Rate\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.87972259521484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00933772325515747,\n                    \"Left\": 0.3064827024936676,\n                    \"Top\": 0.26742619276046753,\n                    \"Width\": 0.020482053980231285\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3064827024936676,\n                        \"Y\": 0.26742619276046753\n                    },\n                    {\n                        \"X\": 0.32696297764778137,\n                        \"Y\": 0.2674369812011719\n                    },\n                    {\n                        \"X\": 0.32696473598480225,\n                        \"Y\": 0.276763916015625\n                    },\n                    {\n                        \"X\": 0.3064843714237213,\n                        \"Y\": 0.2767530381679535\n                    }\n                ]\n            },\n            \"Id\": \"dc23cf66-828c-4127-86b5-81bd396cbe7b\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7990951538086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009504242800176144,\n                    \"Left\": 0.33028894662857056,\n                    \"Top\": 0.26712915301322937,\n                    \"Width\": 0.012910362333059311\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33028894662857056,\n                        \"Y\": 0.26712915301322937\n                    },\n                    {\n                        \"X\": 0.34319743514060974,\n                        \"Y\": 0.26713597774505615\n                    },\n                    {\n                        \"X\": 0.34319931268692017,\n                        \"Y\": 0.2766334116458893\n                    },\n                    {\n                        \"X\": 0.3302907943725586,\n                        \"Y\": 0.2766265571117401\n                    }\n                ]\n            },\n            \"Id\": \"ea988eb7-eeb7-478a-b196-07909a018af6\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9444580078125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009697123430669308,\n                    \"Left\": 0.34565138816833496,\n                    \"Top\": 0.26726824045181274,\n                    \"Width\": 0.043415430933237076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34565138816833496,\n                        \"Y\": 0.26726824045181274\n                    },\n                    {\n                        \"X\": 0.38906463980674744,\n                        \"Y\": 0.2672911584377289\n                    },\n                    {\n                        \"X\": 0.38906681537628174,\n                        \"Y\": 0.2769653797149658\n                    },\n                    {\n                        \"X\": 0.34565332531929016,\n                        \"Y\": 0.2769423723220825\n                    }\n                ]\n            },\n            \"Id\": \"d4d63007-3484-4635-99c1-c6ef9d7f6f40\",\n            \"Text\": \"Months\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87419128417969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009451175108551979,\n                    \"Left\": 0.42507269978523254,\n                    \"Top\": 0.26773566007614136,\n                    \"Width\": 0.07597139477729797\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42507269978523254,\n                        \"Y\": 0.26773566007614136\n                    },\n                    {\n                        \"X\": 0.5010413527488708,\n                        \"Y\": 0.2677757441997528\n                    },\n                    {\n                        \"X\": 0.5010440945625305,\n                        \"Y\": 0.2771868407726288\n                    },\n                    {\n                        \"X\": 0.42507505416870117,\n                        \"Y\": 0.277146577835083\n                    }\n                ]\n            },\n            \"Id\": \"1576b851-628e-4583-8079-66bfdabd28f4\",\n            \"Text\": \"Amortization\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.86433410644531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011004306375980377,\n                    \"Left\": 0.5028321743011475,\n                    \"Top\": 0.2678956687450409,\n                    \"Width\": 0.03213362395763397\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5028321743011475,\n                        \"Y\": 0.2678956687450409\n                    },\n                    {\n                        \"X\": 0.5349623560905457,\n                        \"Y\": 0.2679126262664795\n                    },\n                    {\n                        \"X\": 0.5349658131599426,\n                        \"Y\": 0.2788999676704407\n                    },\n                    {\n                        \"X\": 0.5028354525566101,\n                        \"Y\": 0.2788829207420349\n                    }\n                ]\n            },\n            \"Id\": \"90c7bf9a-44c7-499f-9224-3480694395cc\",\n            \"Text\": \"Type:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90834045410156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009731288999319077,\n                    \"Left\": 0.5865104794502258,\n                    \"Top\": 0.2694031298160553,\n                    \"Width\": 0.0319565124809742\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5865104794502258,\n                        \"Y\": 0.2694031298160553\n                    },\n                    {\n                        \"X\": 0.6184634566307068,\n                        \"Y\": 0.26941999793052673\n                    },\n                    {\n                        \"X\": 0.6184669733047485,\n                        \"Y\": 0.2791344225406647\n                    },\n                    {\n                        \"X\": 0.5865138173103333,\n                        \"Y\": 0.2791174650192261\n                    }\n                ]\n            },\n            \"Id\": \"910d393c-53e8-4ae5-89a0-41f119cea9cd\",\n            \"Text\": \"Fixed\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89556121826172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009469608776271343,\n                    \"Left\": 0.6214768886566162,\n                    \"Top\": 0.26959502696990967,\n                    \"Width\": 0.028307273983955383\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6214768886566162,\n                        \"Y\": 0.26959502696990967\n                    },\n                    {\n                        \"X\": 0.6497805714607239,\n                        \"Y\": 0.2696099579334259\n                    },\n                    {\n                        \"X\": 0.6497841477394104,\n                        \"Y\": 0.2790646255016327\n                    },\n                    {\n                        \"X\": 0.6214803457260132,\n                        \"Y\": 0.2790496051311493\n                    }\n                ]\n            },\n            \"Id\": \"92ac9403-a2e7-4a80-9512-0436eff3cb63\",\n            \"Text\": \"Rate\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90672302246094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009947625920176506,\n                    \"Left\": 0.7050658464431763,\n                    \"Top\": 0.26939281821250916,\n                    \"Width\": 0.03327878564596176\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7050658464431763,\n                        \"Y\": 0.26939281821250916\n                    },\n                    {\n                        \"X\": 0.7383403182029724,\n                        \"Y\": 0.2694103717803955\n                    },\n                    {\n                        \"X\": 0.7383446097373962,\n                        \"Y\": 0.2793404459953308\n                    },\n                    {\n                        \"X\": 0.7050699591636658,\n                        \"Y\": 0.2793227732181549\n                    }\n                ]\n            },\n            \"Id\": \"578172f9-cd1d-4864-a3ad-65cb2b1e5aae\",\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.50442504882812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012240477837622166,\n                    \"Left\": 0.7414445281028748,\n                    \"Top\": 0.26933789253234863,\n                    \"Width\": 0.05417145416140556\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7414445281028748,\n                        \"Y\": 0.26933789253234863\n                    },\n                    {\n                        \"X\": 0.7956103086471558,\n                        \"Y\": 0.26936647295951843\n                    },\n                    {\n                        \"X\": 0.7956160306930542,\n                        \"Y\": 0.2815783619880676\n                    },\n                    {\n                        \"X\": 0.7414498925209045,\n                        \"Y\": 0.2815496027469635\n                    }\n                ]\n            },\n            \"Id\": \"a3844493-b088-4dbf-9115-23d8b7880ea0\",\n            \"Text\": \"(explain):\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96131896972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010340152308344841,\n                    \"Left\": 0.02844291925430298,\n                    \"Top\": 0.2826695740222931,\n                    \"Width\": 0.008259090594947338\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02844291925430298,\n                        \"Y\": 0.2826695740222931\n                    },\n                    {\n                        \"X\": 0.03670181706547737,\n                        \"Y\": 0.2826739549636841\n                    },\n                    {\n                        \"X\": 0.03670201078057289,\n                        \"Y\": 0.2930097281932831\n                    },\n                    {\n                        \"X\": 0.02844306267797947,\n                        \"Y\": 0.2930053174495697\n                    }\n                ]\n            },\n            \"Id\": \"af1867cd-15d1-4c54-9787-c9eb83a23624\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67681884765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011208702810108662,\n                    \"Left\": 0.0825805589556694,\n                    \"Top\": 0.28238189220428467,\n                    \"Width\": 0.05021420493721962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0825805589556694,\n                        \"Y\": 0.28238189220428467\n                    },\n                    {\n                        \"X\": 0.13279391825199127,\n                        \"Y\": 0.28240859508514404\n                    },\n                    {\n                        \"X\": 0.13279476761817932,\n                        \"Y\": 0.29359060525894165\n                    },\n                    {\n                        \"X\": 0.08258106559515,\n                        \"Y\": 0.29356375336647034\n                    }\n                ]\n            },\n            \"Id\": \"67343f6b-e1fe-4c4a-9806-646a3183fd18\",\n            \"Text\": \"552,500\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.3172378540039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01006725337356329,\n                    \"Left\": 0.25538232922554016,\n                    \"Top\": 0.2844765782356262,\n                    \"Width\": 0.019769517704844475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25538232922554016,\n                        \"Y\": 0.2844765782356262\n                    },\n                    {\n                        \"X\": 0.27515023946762085,\n                        \"Y\": 0.2844870984554291\n                    },\n                    {\n                        \"X\": 0.2751518487930298,\n                        \"Y\": 0.2945438325405121\n                    },\n                    {\n                        \"X\": 0.25538381934165955,\n                        \"Y\": 0.29453325271606445\n                    }\n                ]\n            },\n            \"Id\": \"bb2bc981-841b-429b-8599-35d716f31506\",\n            \"Text\": \"3.5\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.65553283691406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01033865474164486,\n                    \"Left\": 0.28206008672714233,\n                    \"Top\": 0.28281205892562866,\n                    \"Width\": 0.012932157143950462\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28206008672714233,\n                        \"Y\": 0.28281205892562866\n                    },\n                    {\n                        \"X\": 0.2949904501438141,\n                        \"Y\": 0.28281891345977783\n                    },\n                    {\n                        \"X\": 0.29499223828315735,\n                        \"Y\": 0.2931506931781769\n                    },\n                    {\n                        \"X\": 0.28206175565719604,\n                        \"Y\": 0.29314377903938293\n                    }\n                ]\n            },\n            \"Id\": \"fc9dbc34-1baa-403c-b854-d1711d158913\",\n            \"Text\": \"%\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.98515319824219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009946503676474094,\n                    \"Left\": 0.34813785552978516,\n                    \"Top\": 0.28249362111091614,\n                    \"Width\": 0.023740382865071297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34813785552978516,\n                        \"Y\": 0.28249362111091614\n                    },\n                    {\n                        \"X\": 0.3718760907649994,\n                        \"Y\": 0.2825062572956085\n                    },\n                    {\n                        \"X\": 0.3718782663345337,\n                        \"Y\": 0.29244014620780945\n                    },\n                    {\n                        \"X\": 0.3481398820877075,\n                        \"Y\": 0.2924274504184723\n                    }\n                ]\n            },\n            \"Id\": \"3aa25c4f-88af-49de-83f7-5a55b02b7449\",\n            \"Text\": \"360\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93468475341797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00937715731561184,\n                    \"Left\": 0.5863925814628601,\n                    \"Top\": 0.2860885262489319,\n                    \"Width\": 0.029798204079270363\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5863925814628601,\n                        \"Y\": 0.2860885262489319\n                    },\n                    {\n                        \"X\": 0.6161873936653137,\n                        \"Y\": 0.28610438108444214\n                    },\n                    {\n                        \"X\": 0.6161907911300659,\n                        \"Y\": 0.2954656779766083\n                    },\n                    {\n                        \"X\": 0.586395800113678,\n                        \"Y\": 0.29544973373413086\n                    }\n                ]\n            },\n            \"Id\": \"dff28b0c-7c3c-4e09-88d5-8564c492707e\",\n            \"Text\": \"GPM\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66742706298828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00959785096347332,\n                    \"Left\": 0.7042392492294312,\n                    \"Top\": 0.28594842553138733,\n                    \"Width\": 0.030188249424099922\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7042392492294312,\n                        \"Y\": 0.28594842553138733\n                    },\n                    {\n                        \"X\": 0.7344233393669128,\n                        \"Y\": 0.2859644889831543\n                    },\n                    {\n                        \"X\": 0.7344274520874023,\n                        \"Y\": 0.2955462634563446\n                    },\n                    {\n                        \"X\": 0.7042431831359863,\n                        \"Y\": 0.29553014039993286\n                    }\n                ]\n            },\n            \"Id\": \"54739729-9b72-40f4-9128-259b607b6a52\",\n            \"Text\": \"ARM\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.06803131103516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011878452263772488,\n                    \"Left\": 0.7379480004310608,\n                    \"Top\": 0.28619593381881714,\n                    \"Width\": 0.0371704138815403\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7379480004310608,\n                        \"Y\": 0.28619593381881714\n                    },\n                    {\n                        \"X\": 0.775113046169281,\n                        \"Y\": 0.2862156927585602\n                    },\n                    {\n                        \"X\": 0.7751184105873108,\n                        \"Y\": 0.2980743646621704\n                    },\n                    {\n                        \"X\": 0.7379531860351562,\n                        \"Y\": 0.29805445671081543\n                    }\n                ]\n            },\n            \"Id\": \"5b175c9c-fac0-41be-b783-607b8f4044ac\",\n            \"Text\": \"(type):\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.98299407958984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010033915750682354,\n                    \"Left\": 0.2938988208770752,\n                    \"Top\": 0.3012367784976959,\n                    \"Width\": 0.012595600448548794\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2938988208770752,\n                        \"Y\": 0.3012367784976959\n                    },\n                    {\n                        \"X\": 0.3064926266670227,\n                        \"Y\": 0.30124354362487793\n                    },\n                    {\n                        \"X\": 0.30649441480636597,\n                        \"Y\": 0.31127068400382996\n                    },\n                    {\n                        \"X\": 0.2939005196094513,\n                        \"Y\": 0.31126391887664795\n                    }\n                ]\n            },\n            \"Id\": \"96684920-e015-487e-927a-52cd4fac0774\",\n            \"Text\": \"II.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87538146972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010511880740523338,\n                    \"Left\": 0.3100498914718628,\n                    \"Top\": 0.3010651469230652,\n                    \"Width\": 0.07967832684516907\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3100498914718628,\n                        \"Y\": 0.3010651469230652\n                    },\n                    {\n                        \"X\": 0.38972583413124084,\n                        \"Y\": 0.30110788345336914\n                    },\n                    {\n                        \"X\": 0.38972821831703186,\n                        \"Y\": 0.31157705187797546\n                    },\n                    {\n                        \"X\": 0.3100517690181732,\n                        \"Y\": 0.3115340769290924\n                    }\n                ]\n            },\n            \"Id\": \"6d8e36f7-9db2-4f78-a254-d6997bc9325e\",\n            \"Text\": \"PROPERTY\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90554809570312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010538541711866856,\n                    \"Left\": 0.39286258816719055,\n                    \"Top\": 0.301064670085907,\n                    \"Width\": 0.10172766447067261\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39286258816719055,\n                        \"Y\": 0.301064670085907\n                    },\n                    {\n                        \"X\": 0.4945872128009796,\n                        \"Y\": 0.30111923813819885\n                    },\n                    {\n                        \"X\": 0.49459025263786316,\n                        \"Y\": 0.31160321831703186\n                    },\n                    {\n                        \"X\": 0.39286500215530396,\n                        \"Y\": 0.3115483820438385\n                    }\n                ]\n            },\n            \"Id\": \"bc34a21d-c5c8-4f10-91b6-c5e2ca0660ea\",\n            \"Text\": \"INFORMATION\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94242095947266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010181190446019173,\n                    \"Left\": 0.49796542525291443,\n                    \"Top\": 0.30121365189552307,\n                    \"Width\": 0.031853675842285156\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49796542525291443,\n                        \"Y\": 0.30121365189552307\n                    },\n                    {\n                        \"X\": 0.5298159122467041,\n                        \"Y\": 0.3012307584285736\n                    },\n                    {\n                        \"X\": 0.5298190712928772,\n                        \"Y\": 0.3113948404788971\n                    },\n                    {\n                        \"X\": 0.4979683756828308,\n                        \"Y\": 0.3113776743412018\n                    }\n                ]\n            },\n            \"Id\": \"86fe615a-4016-4b1e-8f09-88bcf62b31de\",\n            \"Text\": \"AND\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9271240234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010541166178882122,\n                    \"Left\": 0.533460259437561,\n                    \"Top\": 0.3009944558143616,\n                    \"Width\": 0.07064729928970337\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.533460259437561,\n                        \"Y\": 0.3009944558143616\n                    },\n                    {\n                        \"X\": 0.6041038632392883,\n                        \"Y\": 0.3010323643684387\n                    },\n                    {\n                        \"X\": 0.6041075587272644,\n                        \"Y\": 0.31153562664985657\n                    },\n                    {\n                        \"X\": 0.5334635376930237,\n                        \"Y\": 0.3114975392818451\n                    }\n                ]\n            },\n            \"Id\": \"bb101227-77a1-4fa0-b903-d220e73be268\",\n            \"Text\": \"PURPOSE\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96928405761719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010254763066768646,\n                    \"Left\": 0.6075027585029602,\n                    \"Top\": 0.301053911447525,\n                    \"Width\": 0.020557919517159462\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6075027585029602,\n                        \"Y\": 0.301053911447525\n                    },\n                    {\n                        \"X\": 0.6280569434165955,\n                        \"Y\": 0.30106493830680847\n                    },\n                    {\n                        \"X\": 0.6280606985092163,\n                        \"Y\": 0.31130868196487427\n                    },\n                    {\n                        \"X\": 0.6075064539909363,\n                        \"Y\": 0.31129759550094604\n                    }\n                ]\n            },\n            \"Id\": \"931636f9-6471-4ec8-b884-57db71b33bf1\",\n            \"Text\": \"OF\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90328979492188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010410860180854797,\n                    \"Left\": 0.6314522624015808,\n                    \"Top\": 0.3011130094528198,\n                    \"Width\": 0.04073491320014\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6314522624015808,\n                        \"Y\": 0.3011130094528198\n                    },\n                    {\n                        \"X\": 0.672183096408844,\n                        \"Y\": 0.30113485455513\n                    },\n                    {\n                        \"X\": 0.6721872091293335,\n                        \"Y\": 0.3115238547325134\n                    },\n                    {\n                        \"X\": 0.6314561367034912,\n                        \"Y\": 0.3115019202232361\n                    }\n                ]\n            },\n            \"Id\": \"0f38bd78-77f2-49cc-965c-b35f601c9ddb\",\n            \"Text\": \"LOAN\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9432373046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012096712365746498,\n                    \"Left\": 0.028831420466303825,\n                    \"Top\": 0.31642451882362366,\n                    \"Width\": 0.04447542503476143\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028831420466303825,\n                        \"Y\": 0.31642451882362366\n                    },\n                    {\n                        \"X\": 0.0733063593506813,\n                        \"Y\": 0.3164485692977905\n                    },\n                    {\n                        \"X\": 0.0733068436384201,\n                        \"Y\": 0.3285212516784668\n                    },\n                    {\n                        \"X\": 0.028831589967012405,\n                        \"Y\": 0.328497052192688\n                    }\n                ]\n            },\n            \"Id\": \"f092fba5-6733-4474-aebb-641cd7972d12\",\n            \"Text\": \"Subject\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97154235839844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011570078320801258,\n                    \"Left\": 0.07671521604061127,\n                    \"Top\": 0.3168644905090332,\n                    \"Width\": 0.050051987171173096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07671521604061127,\n                        \"Y\": 0.3168644905090332\n                    },\n                    {\n                        \"X\": 0.1267663687467575,\n                        \"Y\": 0.31689155101776123\n                    },\n                    {\n                        \"X\": 0.12676720321178436,\n                        \"Y\": 0.328434556722641\n                    },\n                    {\n                        \"X\": 0.07671570032835007,\n                        \"Y\": 0.328407347202301\n                    }\n                ]\n            },\n            \"Id\": \"ca93c100-0858-43dc-aa0f-d0e8fe22c5c2\",\n            \"Text\": \"Property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95344543457031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009536327794194221,\n                    \"Left\": 0.12925195693969727,\n                    \"Top\": 0.3167720437049866,\n                    \"Width\": 0.048137299716472626\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12925195693969727,\n                        \"Y\": 0.3167720437049866\n                    },\n                    {\n                        \"X\": 0.1773882955312729,\n                        \"Y\": 0.31679806113243103\n                    },\n                    {\n                        \"X\": 0.1773892641067505,\n                        \"Y\": 0.32630836963653564\n                    },\n                    {\n                        \"X\": 0.12925265729427338,\n                        \"Y\": 0.32628223299980164\n                    }\n                ]\n            },\n            \"Id\": \"6e7e9c55-78ee-4682-92d2-5f17ed3d5439\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.05368041992188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011554723605513573,\n                    \"Left\": 0.18110179901123047,\n                    \"Top\": 0.3167780041694641,\n                    \"Width\": 0.040930796414613724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18110179901123047,\n                        \"Y\": 0.3167780041694641\n                    },\n                    {\n                        \"X\": 0.2220311164855957,\n                        \"Y\": 0.3168001174926758\n                    },\n                    {\n                        \"X\": 0.2220325917005539,\n                        \"Y\": 0.32833272218704224\n                    },\n                    {\n                        \"X\": 0.18110299110412598,\n                        \"Y\": 0.328310489654541\n                    }\n                ]\n            },\n            \"Id\": \"24df0b9b-0a6c-45cd-9909-9bee2b894e0c\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.74160766601562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011252952739596367,\n                    \"Left\": 0.2250649631023407,\n                    \"Top\": 0.31704407930374146,\n                    \"Width\": 0.02369997836649418\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2250649631023407,\n                        \"Y\": 0.31704407930374146\n                    },\n                    {\n                        \"X\": 0.2487633228302002,\n                        \"Y\": 0.31705689430236816\n                    },\n                    {\n                        \"X\": 0.24876493215560913,\n                        \"Y\": 0.3282970190048218\n                    },\n                    {\n                        \"X\": 0.2250664234161377,\n                        \"Y\": 0.3282841444015503\n                    }\n                ]\n            },\n            \"Id\": \"422c5f10-7daf-4a72-9c3b-09c3847e43ff\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 71.19004821777344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010266570374369621,\n                    \"Left\": 0.25220170617103577,\n                    \"Top\": 0.3170321583747864,\n                    \"Width\": 0.03233005106449127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25220170617103577,\n                        \"Y\": 0.3170321583747864\n                    },\n                    {\n                        \"X\": 0.28453004360198975,\n                        \"Y\": 0.31704962253570557\n                    },\n                    {\n                        \"X\": 0.28453174233436584,\n                        \"Y\": 0.32729873061180115\n                    },\n                    {\n                        \"X\": 0.25220319628715515,\n                        \"Y\": 0.3272811472415924\n                    }\n                ]\n            },\n            \"Id\": \"f3771b4d-050c-486f-b908-8efd2589fc59\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74275970458984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00951263029128313,\n                    \"Left\": 0.2877424955368042,\n                    \"Top\": 0.31671634316444397,\n                    \"Width\": 0.009442562237381935\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2877424955368042,\n                        \"Y\": 0.31671634316444397\n                    },\n                    {\n                        \"X\": 0.29718339443206787,\n                        \"Y\": 0.31672146916389465\n                    },\n                    {\n                        \"X\": 0.2971850633621216,\n                        \"Y\": 0.3262289762496948\n                    },\n                    {\n                        \"X\": 0.28774407505989075,\n                        \"Y\": 0.32622385025024414\n                    }\n                ]\n            },\n            \"Id\": \"f8ecaf5f-d683-41db-b071-ae9c21737931\",\n            \"Text\": \"&\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66999053955078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011539669707417488,\n                    \"Left\": 0.299852192401886,\n                    \"Top\": 0.31636834144592285,\n                    \"Width\": 0.0259990356862545\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.299852192401886,\n                        \"Y\": 0.31636834144592285\n                    },\n                    {\n                        \"X\": 0.3258490562438965,\n                        \"Y\": 0.31638237833976746\n                    },\n                    {\n                        \"X\": 0.3258512318134308,\n                        \"Y\": 0.3279080092906952\n                    },\n                    {\n                        \"X\": 0.29985421895980835,\n                        \"Y\": 0.3278938829898834\n                    }\n                ]\n            },\n            \"Id\": \"d7fcd40c-dc56-42fb-ac48-1ce6f4804bb3\",\n            \"Text\": \"ZIP)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.55948638916016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009675917215645313,\n                    \"Left\": 0.8767372965812683,\n                    \"Top\": 0.31666725873947144,\n                    \"Width\": 0.019731003791093826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8767372965812683,\n                        \"Y\": 0.31666725873947144\n                    },\n                    {\n                        \"X\": 0.8964632153511047,\n                        \"Y\": 0.31667789816856384\n                    },\n                    {\n                        \"X\": 0.8964683413505554,\n                        \"Y\": 0.3263431489467621\n                    },\n                    {\n                        \"X\": 0.8767423033714294,\n                        \"Y\": 0.3263324499130249\n                    }\n                ]\n            },\n            \"Id\": \"59b225cc-bd98-480e-bd01-64b1204dffac\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76979064941406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009662763215601444,\n                    \"Left\": 0.9001333713531494,\n                    \"Top\": 0.3165769577026367,\n                    \"Width\": 0.012797114439308643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9001333713531494,\n                        \"Y\": 0.3165769577026367\n                    },\n                    {\n                        \"X\": 0.9129253029823303,\n                        \"Y\": 0.31658387184143066\n                    },\n                    {\n                        \"X\": 0.9129304885864258,\n                        \"Y\": 0.3262397348880768\n                    },\n                    {\n                        \"X\": 0.9001384973526001,\n                        \"Y\": 0.32623279094696045\n                    }\n                ]\n            },\n            \"Id\": \"d28f958f-41bd-4976-aff3-2f1016e0c2ef\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81617736816406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009660213254392147,\n                    \"Left\": 0.9152158498764038,\n                    \"Top\": 0.3165909945964813,\n                    \"Width\": 0.030471760779619217\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9152158498764038,\n                        \"Y\": 0.3165909945964813\n                    },\n                    {\n                        \"X\": 0.9456822276115417,\n                        \"Y\": 0.3166074752807617\n                    },\n                    {\n                        \"X\": 0.9456875920295715,\n                        \"Y\": 0.32625120878219604\n                    },\n                    {\n                        \"X\": 0.9152210354804993,\n                        \"Y\": 0.3262346684932709\n                    }\n                ]\n            },\n            \"Id\": \"59dafa24-a806-428a-87a6-72ebc82508b5\",\n            \"Text\": \"Units\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94656372070312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009989327751100063,\n                    \"Left\": 0.03172478452324867,\n                    \"Top\": 0.33256539702415466,\n                    \"Width\": 0.02250433899462223\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03172478452324867,\n                        \"Y\": 0.33256539702415466\n                    },\n                    {\n                        \"X\": 0.05422883480787277,\n                        \"Y\": 0.332577645778656\n                    },\n                    {\n                        \"X\": 0.05422912538051605,\n                        \"Y\": 0.3425547182559967\n                    },\n                    {\n                        \"X\": 0.03172494098544121,\n                        \"Y\": 0.3425424098968506\n                    }\n                ]\n            },\n            \"Id\": \"ba11c68c-f0cf-4487-90bc-c62706a429a6\",\n            \"Text\": \"123\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93338012695312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012291274964809418,\n                    \"Left\": 0.05772502347826958,\n                    \"Top\": 0.3328690826892853,\n                    \"Width\": 0.02511630766093731\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05772502347826958,\n                        \"Y\": 0.3328690826892853\n                    },\n                    {\n                        \"X\": 0.08284077048301697,\n                        \"Y\": 0.33288276195526123\n                    },\n                    {\n                        \"X\": 0.08284132927656174,\n                        \"Y\": 0.3451603353023529\n                    },\n                    {\n                        \"X\": 0.05772540718317032,\n                        \"Y\": 0.3451465666294098\n                    }\n                ]\n            },\n            \"Id\": \"e8153ceb-3a2a-45d7-8a43-3b8a15eeebd9\",\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68541717529297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011807615868747234,\n                    \"Left\": 0.08617334812879562,\n                    \"Top\": 0.33265337347984314,\n                    \"Width\": 0.04097016528248787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08617334812879562,\n                        \"Y\": 0.33265337347984314\n                    },\n                    {\n                        \"X\": 0.12714266777038574,\n                        \"Y\": 0.3326756954193115\n                    },\n                    {\n                        \"X\": 0.1271435171365738,\n                        \"Y\": 0.34446099400520325\n                    },\n                    {\n                        \"X\": 0.0861739069223404,\n                        \"Y\": 0.3444385230541229\n                    }\n                ]\n            },\n            \"Id\": \"8a3f1263-1414-4470-ba51-20094e10823e\",\n            \"Text\": \"Street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.49638366699219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012356760911643505,\n                    \"Left\": 0.13040564954280853,\n                    \"Top\": 0.3328135311603546,\n                    \"Width\": 0.05756339430809021\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13040564954280853,\n                        \"Y\": 0.3328135311603546\n                    },\n                    {\n                        \"X\": 0.1879677176475525,\n                        \"Y\": 0.33284488320350647\n                    },\n                    {\n                        \"X\": 0.18796904385089874,\n                        \"Y\": 0.3451702892780304\n                    },\n                    {\n                        \"X\": 0.13040655851364136,\n                        \"Y\": 0.3451387286186218\n                    }\n                ]\n            },\n            \"Id\": \"efb433d1-2743-4a51-8311-60aee28b013b\",\n            \"Text\": \"Anytown,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.39454650878906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011466322466731071,\n                    \"Left\": 0.19236966967582703,\n                    \"Top\": 0.33273497223854065,\n                    \"Width\": 0.03247078135609627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19236966967582703,\n                        \"Y\": 0.33273497223854065\n                    },\n                    {\n                        \"X\": 0.2248389571905136,\n                        \"Y\": 0.33275264501571655\n                    },\n                    {\n                        \"X\": 0.224840447306633,\n                        \"Y\": 0.34420129656791687\n                    },\n                    {\n                        \"X\": 0.1923709362745285,\n                        \"Y\": 0.3441835045814514\n                    }\n                ]\n            },\n            \"Id\": \"0912b97d-4e63-4d51-80d7-532607c9969b\",\n            \"Text\": \"USA,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95679473876953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010196425020694733,\n                    \"Left\": 0.22899533808231354,\n                    \"Top\": 0.33258187770843506,\n                    \"Width\": 0.03850965201854706\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22899533808231354,\n                        \"Y\": 0.33258187770843506\n                    },\n                    {\n                        \"X\": 0.26750341057777405,\n                        \"Y\": 0.332602858543396\n                    },\n                    {\n                        \"X\": 0.2675049901008606,\n                        \"Y\": 0.3427783250808716\n                    },\n                    {\n                        \"X\": 0.22899669408798218,\n                        \"Y\": 0.3427572250366211\n                    }\n                ]\n            },\n            \"Id\": \"a92fef63-881b-4608-97e1-1814ea833022\",\n            \"Text\": \"12345\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73745727539062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009846141561865807,\n                    \"Left\": 0.907258152961731,\n                    \"Top\": 0.33288660645484924,\n                    \"Width\": 0.005895303096622229\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.907258152961731,\n                        \"Y\": 0.33288660645484924\n                    },\n                    {\n                        \"X\": 0.9131481647491455,\n                        \"Y\": 0.3328898251056671\n                    },\n                    {\n                        \"X\": 0.9131534695625305,\n                        \"Y\": 0.3427327573299408\n                    },\n                    {\n                        \"X\": 0.9072633981704712,\n                        \"Y\": 0.3427295386791229\n                    }\n                ]\n            },\n            \"Id\": \"46105d2c-f863-436a-af1a-44d4b814edb9\",\n            \"Text\": \"1\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82414245605469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01166579406708479,\n                    \"Left\": 0.02881130948662758,\n                    \"Top\": 0.34918054938316345,\n                    \"Width\": 0.03267953172326088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02881130948662758,\n                        \"Y\": 0.34918054938316345\n                    },\n                    {\n                        \"X\": 0.06149045377969742,\n                        \"Y\": 0.34919849038124084\n                    },\n                    {\n                        \"X\": 0.06149084120988846,\n                        \"Y\": 0.3608463406562805\n                    },\n                    {\n                        \"X\": 0.028811471536755562,\n                        \"Y\": 0.36082831025123596\n                    }\n                ]\n            },\n            \"Id\": \"71f65789-8a37-4b0b-b348-229262efe042\",\n            \"Text\": \"Legal\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89393615722656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011800559237599373,\n                    \"Left\": 0.06449032574892044,\n                    \"Top\": 0.3489275276660919,\n                    \"Width\": 0.06594584882259369\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06449032574892044,\n                        \"Y\": 0.3489275276660919\n                    },\n                    {\n                        \"X\": 0.1304353028535843,\n                        \"Y\": 0.34896373748779297\n                    },\n                    {\n                        \"X\": 0.13043618202209473,\n                        \"Y\": 0.36072808504104614\n                    },\n                    {\n                        \"X\": 0.06449074298143387,\n                        \"Y\": 0.3606916666030884\n                    }\n                ]\n            },\n            \"Id\": \"bb8cb40f-298a-46aa-a0ec-f19d21e9b032\",\n            \"Text\": \"Description\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83489227294922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009585294872522354,\n                    \"Left\": 0.13332805037498474,\n                    \"Top\": 0.3488330543041229,\n                    \"Width\": 0.012771287932991982\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13332805037498474,\n                        \"Y\": 0.3488330543041229\n                    },\n                    {\n                        \"X\": 0.1460985392332077,\n                        \"Y\": 0.34884005784988403\n                    },\n                    {\n                        \"X\": 0.14609932899475098,\n                        \"Y\": 0.358418345451355\n                    },\n                    {\n                        \"X\": 0.13332876563072205,\n                        \"Y\": 0.3584113121032715\n                    }\n                ]\n            },\n            \"Id\": \"16f50532-639c-40c9-9e77-48b1d60caab7\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87737274169922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012147018685936928,\n                    \"Left\": 0.14843496680259705,\n                    \"Top\": 0.34886249899864197,\n                    \"Width\": 0.04466584697365761\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14843496680259705,\n                        \"Y\": 0.34886249899864197\n                    },\n                    {\n                        \"X\": 0.1930994689464569,\n                        \"Y\": 0.34888702630996704\n                    },\n                    {\n                        \"X\": 0.19310081005096436,\n                        \"Y\": 0.36100950837135315\n                    },\n                    {\n                        \"X\": 0.14843599498271942,\n                        \"Y\": 0.3609848618507385\n                    }\n                ]\n            },\n            \"Id\": \"b63c74f5-fbef-4491-b453-90bd6337db03\",\n            \"Text\": \"Subject\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87034606933594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012129711918532848,\n                    \"Left\": 0.19605503976345062,\n                    \"Top\": 0.3488537073135376,\n                    \"Width\": 0.05017363280057907\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19605503976345062,\n                        \"Y\": 0.3488537073135376\n                    },\n                    {\n                        \"X\": 0.2462269514799118,\n                        \"Y\": 0.34888124465942383\n                    },\n                    {\n                        \"X\": 0.2462286800146103,\n                        \"Y\": 0.3609834313392639\n                    },\n                    {\n                        \"X\": 0.19605641067028046,\n                        \"Y\": 0.36095571517944336\n                    }\n                ]\n            },\n            \"Id\": \"ae2586e9-0893-4ef1-80e2-126b73b9b952\",\n            \"Text\": \"Property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79887390136719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011535702273249626,\n                    \"Left\": 0.2490481287240982,\n                    \"Top\": 0.34899893403053284,\n                    \"Width\": 0.04032116010785103\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2490481287240982,\n                        \"Y\": 0.34899893403053284\n                    },\n                    {\n                        \"X\": 0.28936734795570374,\n                        \"Y\": 0.3490210771560669\n                    },\n                    {\n                        \"X\": 0.28936928510665894,\n                        \"Y\": 0.3605346381664276\n                    },\n                    {\n                        \"X\": 0.24904979765415192,\n                        \"Y\": 0.360512375831604\n                    }\n                ]\n            },\n            \"Id\": \"8593db6e-6efb-4666-b21e-4a37b2ac1d2a\",\n            \"Text\": \"(attach\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7897720336914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011462859809398651,\n                    \"Left\": 0.29221922159194946,\n                    \"Top\": 0.3490179777145386,\n                    \"Width\": 0.06442521512508392\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29221922159194946,\n                        \"Y\": 0.3490179777145386\n                    },\n                    {\n                        \"X\": 0.35664206743240356,\n                        \"Y\": 0.34905335307121277\n                    },\n                    {\n                        \"X\": 0.3566444516181946,\n                        \"Y\": 0.3604808449745178\n                    },\n                    {\n                        \"X\": 0.29222115874290466,\n                        \"Y\": 0.3604452610015869\n                    }\n                ]\n            },\n            \"Id\": \"08bdf8a0-782a-4061-8c5f-500842e184fe\",\n            \"Text\": \"description\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.17444610595703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00949721410870552,\n                    \"Left\": 0.3592861592769623,\n                    \"Top\": 0.34878820180892944,\n                    \"Width\": 0.008477495051920414\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3592861592769623,\n                        \"Y\": 0.34878820180892944\n                    },\n                    {\n                        \"X\": 0.36776161193847656,\n                        \"Y\": 0.3487928509712219\n                    },\n                    {\n                        \"X\": 0.3677636682987213,\n                        \"Y\": 0.35828539729118347\n                    },\n                    {\n                        \"X\": 0.35928815603256226,\n                        \"Y\": 0.3582807183265686\n                    }\n                ]\n            },\n            \"Id\": \"f162d413-5793-44b5-b1f0-6ee3a2d8bdc4\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.85376739501953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01170829776674509,\n                    \"Left\": 0.3702446520328522,\n                    \"Top\": 0.34924522042274475,\n                    \"Width\": 0.0646682158112526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3702446520328522,\n                        \"Y\": 0.34924522042274475\n                    },\n                    {\n                        \"X\": 0.4349099099636078,\n                        \"Y\": 0.3492807447910309\n                    },\n                    {\n                        \"X\": 0.43491289019584656,\n                        \"Y\": 0.36095350980758667\n                    },\n                    {\n                        \"X\": 0.3702471852302551,\n                        \"Y\": 0.3609178066253662\n                    }\n                ]\n            },\n            \"Id\": \"a05590fd-4088-47a7-b00c-6172519b7969\",\n            \"Text\": \"necessary)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93852233886719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009498587809503078,\n                    \"Left\": 0.8764347434043884,\n                    \"Top\": 0.34904944896698,\n                    \"Width\": 0.028595414012670517\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8764347434043884,\n                        \"Y\": 0.34904944896698\n                    },\n                    {\n                        \"X\": 0.9050251245498657,\n                        \"Y\": 0.3490651547908783\n                    },\n                    {\n                        \"X\": 0.9050301909446716,\n                        \"Y\": 0.35854804515838623\n                    },\n                    {\n                        \"X\": 0.87643963098526,\n                        \"Y\": 0.35853227972984314\n                    }\n                ]\n            },\n            \"Id\": \"f20c98f7-f788-427f-87f8-d7bb566d0733\",\n            \"Text\": \"Year\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.85945892333984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009742706082761288,\n                    \"Left\": 0.9077167510986328,\n                    \"Top\": 0.348927766084671,\n                    \"Width\": 0.026379704475402832\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9077167510986328,\n                        \"Y\": 0.348927766084671\n                    },\n                    {\n                        \"X\": 0.9340910911560059,\n                        \"Y\": 0.34894225001335144\n                    },\n                    {\n                        \"X\": 0.9340964555740356,\n                        \"Y\": 0.3586704730987549\n                    },\n                    {\n                        \"X\": 0.9077219367027283,\n                        \"Y\": 0.3586559295654297\n                    }\n                ]\n            },\n            \"Id\": \"b7a1fb71-6bcb-4846-ad05-2384a5c6c049\",\n            \"Text\": \"Built\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9252700805664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012567317113280296,\n                    \"Left\": 0.03207924962043762,\n                    \"Top\": 0.37297046184539795,\n                    \"Width\": 0.038552701473236084\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03207924962043762,\n                        \"Y\": 0.37297046184539795\n                    },\n                    {\n                        \"X\": 0.0706314668059349,\n                        \"Y\": 0.3729918897151947\n                    },\n                    {\n                        \"X\": 0.0706319510936737,\n                        \"Y\": 0.3855377733707428\n                    },\n                    {\n                        \"X\": 0.03207944706082344,\n                        \"Y\": 0.3855162262916565\n                    }\n                ]\n            },\n            \"Id\": \"d372f018-096b-40f2-b1d6-db8acbcd061a\",\n            \"Text\": \"Single\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90660858154297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012851342558860779,\n                    \"Left\": 0.07385025173425674,\n                    \"Top\": 0.37272706627845764,\n                    \"Width\": 0.04192178696393967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07385025173425674,\n                        \"Y\": 0.37272706627845764\n                    },\n                    {\n                        \"X\": 0.11577120423316956,\n                        \"Y\": 0.37275034189224243\n                    },\n                    {\n                        \"X\": 0.11577203869819641,\n                        \"Y\": 0.3855783939361572\n                    },\n                    {\n                        \"X\": 0.07385077327489853,\n                        \"Y\": 0.3855549693107605\n                    }\n                ]\n            },\n            \"Id\": \"927cf243-307f-4d5f-b815-eff3ec0f91f2\",\n            \"Text\": \"Family\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9695053100586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01020357571542263,\n                    \"Left\": 0.11917990446090698,\n                    \"Top\": 0.37313002347946167,\n                    \"Width\": 0.03766293823719025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11917990446090698,\n                        \"Y\": 0.37313002347946167\n                    },\n                    {\n                        \"X\": 0.1568419337272644,\n                        \"Y\": 0.37315094470977783\n                    },\n                    {\n                        \"X\": 0.15684284269809723,\n                        \"Y\": 0.38333362340927124\n                    },\n                    {\n                        \"X\": 0.1191805899143219,\n                        \"Y\": 0.3833125829696655\n                    }\n                ]\n            },\n            \"Id\": \"53f962bd-0e36-4a9f-bae4-f08359c5beb4\",\n            \"Text\": \"Home\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9814682006836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010371335782110691,\n                    \"Left\": 0.8946444392204285,\n                    \"Top\": 0.37063726782798767,\n                    \"Width\": 0.03167574852705002\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8946444392204285,\n                        \"Y\": 0.37063726782798767\n                    },\n                    {\n                        \"X\": 0.9263145327568054,\n                        \"Y\": 0.3706548511981964\n                    },\n                    {\n                        \"X\": 0.9263201951980591,\n                        \"Y\": 0.3810086250305176\n                    },\n                    {\n                        \"X\": 0.894649863243103,\n                        \"Y\": 0.3809909522533417\n                    }\n                ]\n            },\n            \"Id\": \"bea771c7-9e8b-4589-b3b3-e984f48dafa8\",\n            \"Text\": \"2015\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9300765991211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011659950017929077,\n                    \"Left\": 0.028861353173851967,\n                    \"Top\": 0.3960946202278137,\n                    \"Width\": 0.048892177641391754\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028861353173851967,\n                        \"Y\": 0.3960946202278137\n                    },\n                    {\n                        \"X\": 0.07775302976369858,\n                        \"Y\": 0.3961220681667328\n                    },\n                    {\n                        \"X\": 0.07775352895259857,\n                        \"Y\": 0.4077545702457428\n                    },\n                    {\n                        \"X\": 0.0288615170866251,\n                        \"Y\": 0.4077269434928894\n                    }\n                ]\n            },\n            \"Id\": \"4af058ed-4867-4441-842a-fc2c41a80e23\",\n            \"Text\": \"Purpose\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65971374511719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009687062352895737,\n                    \"Left\": 0.08103357255458832,\n                    \"Top\": 0.39588773250579834,\n                    \"Width\": 0.012293392792344093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08103357255458832,\n                        \"Y\": 0.39588773250579834\n                    },\n                    {\n                        \"X\": 0.09332646429538727,\n                        \"Y\": 0.3958946466445923\n                    },\n                    {\n                        \"X\": 0.09332697093486786,\n                        \"Y\": 0.4055747985839844\n                    },\n                    {\n                        \"X\": 0.08103401213884354,\n                        \"Y\": 0.40556785464286804\n                    }\n                ]\n            },\n            \"Id\": \"ea5ff6da-e3d6-49a6-be53-64f622bc8aa5\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95894622802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009402074851095676,\n                    \"Left\": 0.09581220895051956,\n                    \"Top\": 0.39623919129371643,\n                    \"Width\": 0.030005166307091713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09581220895051956,\n                        \"Y\": 0.39623919129371643\n                    },\n                    {\n                        \"X\": 0.1258167028427124,\n                        \"Y\": 0.39625605940818787\n                    },\n                    {\n                        \"X\": 0.12581737339496613,\n                        \"Y\": 0.4056412875652313\n                    },\n                    {\n                        \"X\": 0.09581270813941956,\n                        \"Y\": 0.4056243598461151\n                    }\n                ]\n            },\n            \"Id\": \"13c3ae0a-2b75-4112-981f-38a707414fc3\",\n            \"Text\": \"Loan\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83955383300781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009657969698309898,\n                    \"Left\": 0.15397429466247559,\n                    \"Top\": 0.39823439717292786,\n                    \"Width\": 0.05584115907549858\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15397429466247559,\n                        \"Y\": 0.39823439717292786\n                    },\n                    {\n                        \"X\": 0.20981428027153015,\n                        \"Y\": 0.3982657790184021\n                    },\n                    {\n                        \"X\": 0.20981544256210327,\n                        \"Y\": 0.4078923463821411\n                    },\n                    {\n                        \"X\": 0.15397512912750244,\n                        \"Y\": 0.40786081552505493\n                    }\n                ]\n            },\n            \"Id\": \"d10c380e-912c-4272-8680-0d3fba458e05\",\n            \"Text\": \"Purchase\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90818786621094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009783991612493992,\n                    \"Left\": 0.24190570414066315,\n                    \"Top\": 0.3981793522834778,\n                    \"Width\": 0.07405368983745575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24190570414066315,\n                        \"Y\": 0.3981793522834778\n                    },\n                    {\n                        \"X\": 0.31595760583877563,\n                        \"Y\": 0.3982209861278534\n                    },\n                    {\n                        \"X\": 0.3159593939781189,\n                        \"Y\": 0.4079633355140686\n                    },\n                    {\n                        \"X\": 0.2419070601463318,\n                        \"Y\": 0.40792152285575867\n                    }\n                ]\n            },\n            \"Id\": \"5dd207b9-920a-4207-abd1-c6467492d060\",\n            \"Text\": \"Construction\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88352966308594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009903755970299244,\n                    \"Left\": 0.41122671961784363,\n                    \"Top\": 0.3981980085372925,\n                    \"Width\": 0.0326094925403595\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41122671961784363,\n                        \"Y\": 0.3981980085372925\n                    },\n                    {\n                        \"X\": 0.4438336491584778,\n                        \"Y\": 0.3982163369655609\n                    },\n                    {\n                        \"X\": 0.4438362121582031,\n                        \"Y\": 0.40810176730155945\n                    },\n                    {\n                        \"X\": 0.41122910380363464,\n                        \"Y\": 0.40808334946632385\n                    }\n                ]\n            },\n            \"Id\": \"6f43955b-1815-4791-a5f9-ebfd1af22754\",\n            \"Text\": \"Other\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.57585906982422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01216345839202404,\n                    \"Left\": 0.4470440447330475,\n                    \"Top\": 0.3980458974838257,\n                    \"Width\": 0.05379636958241463\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4470440447330475,\n                        \"Y\": 0.3980458974838257\n                    },\n                    {\n                        \"X\": 0.5008368492126465,\n                        \"Y\": 0.3980761468410492\n                    },\n                    {\n                        \"X\": 0.500840425491333,\n                        \"Y\": 0.4102093577384949\n                    },\n                    {\n                        \"X\": 0.4470472037792206,\n                        \"Y\": 0.4101789593696594\n                    }\n                ]\n            },\n            \"Id\": \"a6b96378-8612-4694-abc7-1fc1e08e7aac\",\n            \"Text\": \"(explain):\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9397201538086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011912924237549305,\n                    \"Left\": 0.6008524894714355,\n                    \"Top\": 0.39595121145248413,\n                    \"Width\": 0.05054271221160889\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6008524894714355,\n                        \"Y\": 0.39595121145248413\n                    },\n                    {\n                        \"X\": 0.6513906717300415,\n                        \"Y\": 0.3959795832633972\n                    },\n                    {\n                        \"X\": 0.6513952016830444,\n                        \"Y\": 0.40786415338516235\n                    },\n                    {\n                        \"X\": 0.6008566617965698,\n                        \"Y\": 0.40783560276031494\n                    }\n                ]\n            },\n            \"Id\": \"1bd52d93-6329-4f1d-86c9-979b264c825a\",\n            \"Text\": \"Property\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.58367156982422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009384671226143837,\n                    \"Left\": 0.653094470500946,\n                    \"Top\": 0.39637336134910583,\n                    \"Width\": 0.01976100355386734\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.653094470500946,\n                        \"Y\": 0.39637336134910583\n                    },\n                    {\n                        \"X\": 0.6728518009185791,\n                        \"Y\": 0.39638447761535645\n                    },\n                    {\n                        \"X\": 0.6728554964065552,\n                        \"Y\": 0.4057580530643463\n                    },\n                    {\n                        \"X\": 0.6530980467796326,\n                        \"Y\": 0.4057469069957733\n                    }\n                ]\n            },\n            \"Id\": \"ffcbb4d4-2fb8-41fb-a2a8-9a7cb419dff3\",\n            \"Text\": \"will\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.2914047241211,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009102246724069118,\n                    \"Left\": 0.6755096316337585,\n                    \"Top\": 0.3967037498950958,\n                    \"Width\": 0.01888633891940117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6755096316337585,\n                        \"Y\": 0.3967037498950958\n                    },\n                    {\n                        \"X\": 0.6943922638893127,\n                        \"Y\": 0.39671435952186584\n                    },\n                    {\n                        \"X\": 0.6943959593772888,\n                        \"Y\": 0.4058060050010681\n                    },\n                    {\n                        \"X\": 0.6755132079124451,\n                        \"Y\": 0.4057953357696533\n                    }\n                ]\n            },\n            \"Id\": \"16e27a9f-0382-40c5-8f8e-445806a630f0\",\n            \"Text\": \"be:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4878921508789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009990355931222439,\n                    \"Left\": 0.1542711853981018,\n                    \"Top\": 0.41140854358673096,\n                    \"Width\": 0.059466615319252014\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1542711853981018,\n                        \"Y\": 0.41140854358673096\n                    },\n                    {\n                        \"X\": 0.21373656392097473,\n                        \"Y\": 0.4114421606063843\n                    },\n                    {\n                        \"X\": 0.21373780071735382,\n                        \"Y\": 0.4213988780975342\n                    },\n                    {\n                        \"X\": 0.15427204966545105,\n                        \"Y\": 0.4213651120662689\n                    }\n                ]\n            },\n            \"Id\": \"b5a909e0-559f-4751-b202-37bc622c3353\",\n            \"Text\": \"Refinance\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 92.7122573852539,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01005953922867775,\n                    \"Left\": 0.24061501026153564,\n                    \"Top\": 0.41148653626441956,\n                    \"Width\": 0.1440616399049759\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24061501026153564,\n                        \"Y\": 0.41148653626441956\n                    },\n                    {\n                        \"X\": 0.38467442989349365,\n                        \"Y\": 0.4115680158138275\n                    },\n                    {\n                        \"X\": 0.38467666506767273,\n                        \"Y\": 0.421546071767807\n                    },\n                    {\n                        \"X\": 0.24061639606952667,\n                        \"Y\": 0.421464204788208\n                    }\n                ]\n            },\n            \"Id\": \"777390f6-1285-4e08-b8ab-05909325e8fe\",\n            \"Text\": \"Construction-Permanent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.16094970703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012430009432137012,\n                    \"Left\": 0.6187523007392883,\n                    \"Top\": 0.41133913397789,\n                    \"Width\": 0.046855442225933075\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6187523007392883,\n                        \"Y\": 0.41133913397789\n                    },\n                    {\n                        \"X\": 0.6656028628349304,\n                        \"Y\": 0.4113656282424927\n                    },\n                    {\n                        \"X\": 0.665607750415802,\n                        \"Y\": 0.42376914620399475\n                    },\n                    {\n                        \"X\": 0.6187567710876465,\n                        \"Y\": 0.42374250292778015\n                    }\n                ]\n            },\n            \"Id\": \"eed12811-f301-472f-91c0-4203409bbb69\",\n            \"Text\": \"Primary\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91944885253906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010165683925151825,\n                    \"Left\": 0.6685400605201721,\n                    \"Top\": 0.41138672828674316,\n                    \"Width\": 0.06166139245033264\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6685400605201721,\n                        \"Y\": 0.41138672828674316\n                    },\n                    {\n                        \"X\": 0.7301971316337585,\n                        \"Y\": 0.41142159700393677\n                    },\n                    {\n                        \"X\": 0.7302014231681824,\n                        \"Y\": 0.4215524196624756\n                    },\n                    {\n                        \"X\": 0.6685440540313721,\n                        \"Y\": 0.42151737213134766\n                    }\n                ]\n            },\n            \"Id\": \"28fb00c1-4148-47f5-b9ea-98a0af65e5a3\",\n            \"Text\": \"Residence\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.906982421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012464071623980999,\n                    \"Left\": 0.7512795329093933,\n                    \"Top\": 0.4112926423549652,\n                    \"Width\": 0.06343046575784683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7512795329093933,\n                        \"Y\": 0.4112926423549652\n                    },\n                    {\n                        \"X\": 0.8147040605545044,\n                        \"Y\": 0.4113284945487976\n                    },\n                    {\n                        \"X\": 0.8147099614143372,\n                        \"Y\": 0.4237566888332367\n                    },\n                    {\n                        \"X\": 0.7512850165367126,\n                        \"Y\": 0.4237206280231476\n                    }\n                ]\n            },\n            \"Id\": \"12e48f44-e5ab-4043-a1d0-1c20711f5cff\",\n            \"Text\": \"Secondary\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94053649902344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010230714455246925,\n                    \"Left\": 0.8180001378059387,\n                    \"Top\": 0.4114078879356384,\n                    \"Width\": 0.06172061339020729\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8180001378059387,\n                        \"Y\": 0.4114078879356384\n                    },\n                    {\n                        \"X\": 0.8797154426574707,\n                        \"Y\": 0.4114427864551544\n                    },\n                    {\n                        \"X\": 0.8797207474708557,\n                        \"Y\": 0.4216386079788208\n                    },\n                    {\n                        \"X\": 0.8180050253868103,\n                        \"Y\": 0.4216035306453705\n                    }\n                ]\n            },\n            \"Id\": \"809e8b1b-73ff-4f43-878d-be9e4e1a7e9c\",\n            \"Text\": \"Residence\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60197448730469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009571114555001259,\n                    \"Left\": 0.9004822373390198,\n                    \"Top\": 0.4117416441440582,\n                    \"Width\": 0.06363065540790558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9004822373390198,\n                        \"Y\": 0.4117416441440582\n                    },\n                    {\n                        \"X\": 0.9641075134277344,\n                        \"Y\": 0.41177764534950256\n                    },\n                    {\n                        \"X\": 0.9641129374504089,\n                        \"Y\": 0.42131277918815613\n                    },\n                    {\n                        \"X\": 0.9004873037338257,\n                        \"Y\": 0.42127662897109985\n                    }\n                ]\n            },\n            \"Id\": \"bd08bd33-2ce6-4bb3-8892-e4abba841256\",\n            \"Text\": \"Investment\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74923706054688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011831487528979778,\n                    \"Left\": 0.029761457815766335,\n                    \"Top\": 0.429461270570755,\n                    \"Width\": 0.05913982540369034\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029761457815766335,\n                        \"Y\": 0.429461270570755\n                    },\n                    {\n                        \"X\": 0.08890070021152496,\n                        \"Y\": 0.4294950067996979\n                    },\n                    {\n                        \"X\": 0.08890128135681152,\n                        \"Y\": 0.44129276275634766\n                    },\n                    {\n                        \"X\": 0.029761629179120064,\n                        \"Y\": 0.44125884771347046\n                    }\n                ]\n            },\n            \"Id\": \"e996c0be-dbb0-4700-bf5b-d1e0d99cadf4\",\n            \"Text\": \"Complete\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87359619140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009808354079723358,\n                    \"Left\": 0.09248795360326767,\n                    \"Top\": 0.4295283257961273,\n                    \"Width\": 0.023670228198170662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09248795360326767,\n                        \"Y\": 0.4295283257961273\n                    },\n                    {\n                        \"X\": 0.11615753918886185,\n                        \"Y\": 0.42954185605049133\n                    },\n                    {\n                        \"X\": 0.11615817993879318,\n                        \"Y\": 0.4393366873264313\n                    },\n                    {\n                        \"X\": 0.09248846024274826,\n                        \"Y\": 0.4393231272697449\n                    }\n                ]\n            },\n            \"Id\": \"23e7e899-63d5-4fff-a489-a76ebfc01413\",\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93714904785156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009643195196986198,\n                    \"Left\": 0.1189417913556099,\n                    \"Top\": 0.4294731616973877,\n                    \"Width\": 0.023110227659344673\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1189417913556099,\n                        \"Y\": 0.4294731616973877\n                    },\n                    {\n                        \"X\": 0.14205123484134674,\n                        \"Y\": 0.42948633432388306\n                    },\n                    {\n                        \"X\": 0.14205202460289001,\n                        \"Y\": 0.43911635875701904\n                    },\n                    {\n                        \"X\": 0.11894243955612183,\n                        \"Y\": 0.4391031265258789\n                    }\n                ]\n            },\n            \"Id\": \"3fefe643-b597-45f6-880f-8201d19224a2\",\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.574462890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009645511396229267,\n                    \"Left\": 0.1451258659362793,\n                    \"Top\": 0.4292895495891571,\n                    \"Width\": 0.010315530002117157\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1451258659362793,\n                        \"Y\": 0.4292895495891571\n                    },\n                    {\n                        \"X\": 0.1554405391216278,\n                        \"Y\": 0.4292954206466675\n                    },\n                    {\n                        \"X\": 0.15544138848781586,\n                        \"Y\": 0.4389350712299347\n                    },\n                    {\n                        \"X\": 0.14512665569782257,\n                        \"Y\": 0.43892914056777954\n                    }\n                ]\n            },\n            \"Id\": \"7ff23a7d-3a43-4227-ac95-947a2265941e\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68089294433594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010118722915649414,\n                    \"Left\": 0.1566171795129776,\n                    \"Top\": 0.42974653840065,\n                    \"Width\": 0.07949872314929962\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1566171795129776,\n                        \"Y\": 0.42974653840065\n                    },\n                    {\n                        \"X\": 0.2361145168542862,\n                        \"Y\": 0.4297918975353241\n                    },\n                    {\n                        \"X\": 0.23611590266227722,\n                        \"Y\": 0.43986526131629944\n                    },\n                    {\n                        \"X\": 0.15661807358264923,\n                        \"Y\": 0.43981969356536865\n                    }\n                ]\n            },\n            \"Id\": \"61787690-998a-4e32-b1e4-220aa318c000\",\n            \"Text\": \"construction\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63348388671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007781326770782471,\n                    \"Left\": 0.23982004821300507,\n                    \"Top\": 0.43133971095085144,\n                    \"Width\": 0.014398938044905663\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23982004821300507,\n                        \"Y\": 0.43133971095085144\n                    },\n                    {\n                        \"X\": 0.25421783328056335,\n                        \"Y\": 0.43134793639183044\n                    },\n                    {\n                        \"X\": 0.2542189955711365,\n                        \"Y\": 0.4391210377216339\n                    },\n                    {\n                        \"X\": 0.23982112109661102,\n                        \"Y\": 0.4391127824783325\n                    }\n                ]\n            },\n            \"Id\": \"f7097345-9cf8-436a-995c-42907464740c\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.8163833618164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011206530965864658,\n                    \"Left\": 0.25533607602119446,\n                    \"Top\": 0.4299643635749817,\n                    \"Width\": 0.1518751084804535\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25533607602119446,\n                        \"Y\": 0.4299643635749817\n                    },\n                    {\n                        \"X\": 0.40720853209495544,\n                        \"Y\": 0.4300510287284851\n                    },\n                    {\n                        \"X\": 0.40721118450164795,\n                        \"Y\": 0.44117090106010437\n                    },\n                    {\n                        \"X\": 0.2553377151489258,\n                        \"Y\": 0.44108378887176514\n                    }\n                ]\n            },\n            \"Id\": \"37c8734d-f790-4637-961f-1c33a6a45903\",\n            \"Text\": \"construction-permanent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.42449951171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009829538874328136,\n                    \"Left\": 0.41034603118896484,\n                    \"Top\": 0.42955681681632996,\n                    \"Width\": 0.03047269955277443\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41034603118896484,\n                        \"Y\": 0.42955681681632996\n                    },\n                    {\n                        \"X\": 0.440816193819046,\n                        \"Y\": 0.42957422137260437\n                    },\n                    {\n                        \"X\": 0.440818727016449,\n                        \"Y\": 0.43938636779785156\n                    },\n                    {\n                        \"X\": 0.41034838557243347,\n                        \"Y\": 0.4393689036369324\n                    }\n                ]\n            },\n            \"Id\": \"935543b1-58a8-4111-a4ef-166cdccb7afc\",\n            \"Text\": \"loan.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94983673095703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009318076074123383,\n                    \"Left\": 0.028795229271054268,\n                    \"Top\": 0.4419936239719391,\n                    \"Width\": 0.027819599956274033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028795229271054268,\n                        \"Y\": 0.4419936239719391\n                    },\n                    {\n                        \"X\": 0.05661454424262047,\n                        \"Y\": 0.4420095980167389\n                    },\n                    {\n                        \"X\": 0.05661482736468315,\n                        \"Y\": 0.45131170749664307\n                    },\n                    {\n                        \"X\": 0.028795359656214714,\n                        \"Y\": 0.4512956738471985\n                    }\n                ]\n            },\n            \"Id\": \"1d883977-567f-4278-80e4-bf7def5b166b\",\n            \"Text\": \"Year\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79778289794922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009020651690661907,\n                    \"Left\": 0.0597601942718029,\n                    \"Top\": 0.4421769082546234,\n                    \"Width\": 0.019617296755313873\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0597601942718029,\n                        \"Y\": 0.4421769082546234\n                    },\n                    {\n                        \"X\": 0.07937709242105484,\n                        \"Y\": 0.44218817353248596\n                    },\n                    {\n                        \"X\": 0.07937749475240707,\n                        \"Y\": 0.4511975646018982\n                    },\n                    {\n                        \"X\": 0.05976048484444618,\n                        \"Y\": 0.45118626952171326\n                    }\n                ]\n            },\n            \"Id\": \"fb1cf6a7-0656-4a6e-bf23-11378009e040\",\n            \"Text\": \"Lot\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74535369873047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012032762169837952,\n                    \"Left\": 0.1062546893954277,\n                    \"Top\": 0.44187161326408386,\n                    \"Width\": 0.04583468660712242\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1062546893954277,\n                        \"Y\": 0.44187161326408386\n                    },\n                    {\n                        \"X\": 0.15208832919597626,\n                        \"Y\": 0.4418978989124298\n                    },\n                    {\n                        \"X\": 0.15208937227725983,\n                        \"Y\": 0.4539043605327606\n                    },\n                    {\n                        \"X\": 0.10625540465116501,\n                        \"Y\": 0.45387792587280273\n                    }\n                ]\n            },\n            \"Id\": \"c04ce6eb-efd7-469b-9cc4-1487bcc75cb0\",\n            \"Text\": \"Original\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91758728027344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009760475717484951,\n                    \"Left\": 0.15537336468696594,\n                    \"Top\": 0.44195663928985596,\n                    \"Width\": 0.028062527999281883\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15537336468696594,\n                        \"Y\": 0.44195663928985596\n                    },\n                    {\n                        \"X\": 0.1834348738193512,\n                        \"Y\": 0.4419727325439453\n                    },\n                    {\n                        \"X\": 0.18343590199947357,\n                        \"Y\": 0.4517171084880829\n                    },\n                    {\n                        \"X\": 0.15537422895431519,\n                        \"Y\": 0.45170092582702637\n                    }\n                ]\n            },\n            \"Id\": \"20dbf06c-3c4c-4fe9-b48c-913e519a6230\",\n            \"Text\": \"Cost\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95281219482422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009481139481067657,\n                    \"Left\": 0.2560214400291443,\n                    \"Top\": 0.4421117603778839,\n                    \"Width\": 0.04608796536922455\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2560214400291443,\n                        \"Y\": 0.4421117603778839\n                    },\n                    {\n                        \"X\": 0.3021077513694763,\n                        \"Y\": 0.4421381950378418\n                    },\n                    {\n                        \"X\": 0.30210942029953003,\n                        \"Y\": 0.45159289240837097\n                    },\n                    {\n                        \"X\": 0.2560228407382965,\n                        \"Y\": 0.45156633853912354\n                    }\n                ]\n            },\n            \"Id\": \"7547a0bc-bb8d-4807-a656-fd33d2f38c00\",\n            \"Text\": \"Amount\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80946350097656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011668583378195763,\n                    \"Left\": 0.3055858314037323,\n                    \"Top\": 0.44219082593917847,\n                    \"Width\": 0.0456552654504776\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3055858314037323,\n                        \"Y\": 0.44219082593917847\n                    },\n                    {\n                        \"X\": 0.3512386977672577,\n                        \"Y\": 0.44221702218055725\n                    },\n                    {\n                        \"X\": 0.3512410819530487,\n                        \"Y\": 0.4538593888282776\n                    },\n                    {\n                        \"X\": 0.30558788776397705,\n                        \"Y\": 0.45383307337760925\n                    }\n                ]\n            },\n            \"Id\": \"e212f0df-117e-4156-8aae-97c51dad844c\",\n            \"Text\": \"Existing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81485748291016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009767094627022743,\n                    \"Left\": 0.35456541180610657,\n                    \"Top\": 0.4420353174209595,\n                    \"Width\": 0.03206275403499603\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35456541180610657,\n                        \"Y\": 0.4420353174209595\n                    },\n                    {\n                        \"X\": 0.3866259753704071,\n                        \"Y\": 0.4420537054538727\n                    },\n                    {\n                        \"X\": 0.3866281807422638,\n                        \"Y\": 0.45180240273475647\n                    },\n                    {\n                        \"X\": 0.35456743836402893,\n                        \"Y\": 0.4517839252948761\n                    }\n                ]\n            },\n            \"Id\": \"9aea3614-04cd-4510-9b9e-dea2bbe58e68\",\n            \"Text\": \"Liens\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.37797546386719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011777836829423904,\n                    \"Left\": 0.4171395003795624,\n                    \"Top\": 0.44211071729660034,\n                    \"Width\": 0.01692148484289646\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4171395003795624,\n                        \"Y\": 0.44211071729660034\n                    },\n                    {\n                        \"X\": 0.4340580105781555,\n                        \"Y\": 0.44212043285369873\n                    },\n                    {\n                        \"X\": 0.4340609908103943,\n                        \"Y\": 0.45388856530189514\n                    },\n                    {\n                        \"X\": 0.417142391204834,\n                        \"Y\": 0.453878790140152\n                    }\n                ]\n            },\n            \"Id\": \"1317b64c-1b0c-48ba-8c1b-866891b2a462\",\n            \"Text\": \"(a)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85710144042969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009946499019861221,\n                    \"Left\": 0.4367261230945587,\n                    \"Top\": 0.44195589423179626,\n                    \"Width\": 0.04595848172903061\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4367261230945587,\n                        \"Y\": 0.44195589423179626\n                    },\n                    {\n                        \"X\": 0.4826818108558655,\n                        \"Y\": 0.4419822692871094\n                    },\n                    {\n                        \"X\": 0.48268458247184753,\n                        \"Y\": 0.4519024193286896\n                    },\n                    {\n                        \"X\": 0.43672865629196167,\n                        \"Y\": 0.4518759250640869\n                    }\n                ]\n            },\n            \"Id\": \"759cbefa-3249-4cc3-bd3b-4d1f01321755\",\n            \"Text\": \"Present\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82861328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009868623688817024,\n                    \"Left\": 0.4850109815597534,\n                    \"Top\": 0.44172438979148865,\n                    \"Width\": 0.03464065119624138\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4850109815597534,\n                        \"Y\": 0.44172438979148865\n                    },\n                    {\n                        \"X\": 0.5196486115455627,\n                        \"Y\": 0.44174423813819885\n                    },\n                    {\n                        \"X\": 0.5196515917778015,\n                        \"Y\": 0.4515930116176605\n                    },\n                    {\n                        \"X\": 0.4850137531757355,\n                        \"Y\": 0.45157304406166077\n                    }\n                ]\n            },\n            \"Id\": \"a6f4cc00-15dd-4246-a206-0f6820fb9ff7\",\n            \"Text\": \"Value\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85595703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009742137975990772,\n                    \"Left\": 0.522331953048706,\n                    \"Top\": 0.44179198145866394,\n                    \"Width\": 0.012784363701939583\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.522331953048706,\n                        \"Y\": 0.44179198145866394\n                    },\n                    {\n                        \"X\": 0.5351132154464722,\n                        \"Y\": 0.4417993128299713\n                    },\n                    {\n                        \"X\": 0.5351163148880005,\n                        \"Y\": 0.45153409242630005\n                    },\n                    {\n                        \"X\": 0.5223349332809448,\n                        \"Y\": 0.4515267312526703\n                    }\n                ]\n            },\n            \"Id\": \"0ddca5f9-bb05-447a-8426-21899f0a231c\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84649658203125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0094680180773139,\n                    \"Left\": 0.5373277068138123,\n                    \"Top\": 0.4421640932559967,\n                    \"Width\": 0.019604409113526344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5373277068138123,\n                        \"Y\": 0.4421640932559967\n                    },\n                    {\n                        \"X\": 0.5569290518760681,\n                        \"Y\": 0.44217535853385925\n                    },\n                    {\n                        \"X\": 0.5569320917129517,\n                        \"Y\": 0.4516321122646332\n                    },\n                    {\n                        \"X\": 0.537330687046051,\n                        \"Y\": 0.45162081718444824\n                    }\n                ]\n            },\n            \"Id\": \"e684e6c6-2a20-4235-ab8d-f26edd5c6330\",\n            \"Text\": \"Lot\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94422912597656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011944605968892574,\n                    \"Left\": 0.6008898019790649,\n                    \"Top\": 0.4417922794818878,\n                    \"Width\": 0.016579177230596542\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6008898019790649,\n                        \"Y\": 0.4417922794818878\n                    },\n                    {\n                        \"X\": 0.6174646615982056,\n                        \"Y\": 0.4418017864227295\n                    },\n                    {\n                        \"X\": 0.6174690127372742,\n                        \"Y\": 0.45373690128326416\n                    },\n                    {\n                        \"X\": 0.600894033908844,\n                        \"Y\": 0.4537273347377777\n                    }\n                ]\n            },\n            \"Id\": \"72ecd161-ebce-47cb-b04e-203e04eed0f3\",\n            \"Text\": \"(b)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9094467163086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010160182602703571,\n                    \"Left\": 0.6208981275558472,\n                    \"Top\": 0.4416010081768036,\n                    \"Width\": 0.027741964906454086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6208981275558472,\n                        \"Y\": 0.4416010081768036\n                    },\n                    {\n                        \"X\": 0.6486362218856812,\n                        \"Y\": 0.4416169226169586\n                    },\n                    {\n                        \"X\": 0.6486400961875916,\n                        \"Y\": 0.4517611861228943\n                    },\n                    {\n                        \"X\": 0.6209018230438232,\n                        \"Y\": 0.4517452120780945\n                    }\n                ]\n            },\n            \"Id\": \"dabf8745-8216-4b7a-ae8e-25e51ce8959f\",\n            \"Text\": \"Cost\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88424682617188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009895915165543556,\n                    \"Left\": 0.6512041091918945,\n                    \"Top\": 0.4416584372520447,\n                    \"Width\": 0.012283792719244957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6512041091918945,\n                        \"Y\": 0.4416584372520447\n                    },\n                    {\n                        \"X\": 0.6634840965270996,\n                        \"Y\": 0.44166550040245056\n                    },\n                    {\n                        \"X\": 0.6634879112243652,\n                        \"Y\": 0.4515543580055237\n                    },\n                    {\n                        \"X\": 0.6512079238891602,\n                        \"Y\": 0.4515472948551178\n                    }\n                ]\n            },\n            \"Id\": \"44da5d9b-ca9c-46df-bea9-d5e005d5bf65\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.07308197021484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011946618556976318,\n                    \"Left\": 0.6655698418617249,\n                    \"Top\": 0.4418081045150757,\n                    \"Width\": 0.08387491106987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6655698418617249,\n                        \"Y\": 0.4418081045150757\n                    },\n                    {\n                        \"X\": 0.749439537525177,\n                        \"Y\": 0.4418562054634094\n                    },\n                    {\n                        \"X\": 0.7494447827339172,\n                        \"Y\": 0.453754723072052\n                    },\n                    {\n                        \"X\": 0.6655744910240173,\n                        \"Y\": 0.4537063539028168\n                    }\n                ]\n            },\n            \"Id\": \"dd10b91d-ec74-479f-b241-cb7fd54af2b9\",\n            \"Text\": \"Improvements\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89043426513672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009859521873295307,\n                    \"Left\": 0.775804877281189,\n                    \"Top\": 0.44176530838012695,\n                    \"Width\": 0.029949413612484932\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.775804877281189,\n                        \"Y\": 0.44176530838012695\n                    },\n                    {\n                        \"X\": 0.8057496547698975,\n                        \"Y\": 0.44178250432014465\n                    },\n                    {\n                        \"X\": 0.8057543039321899,\n                        \"Y\": 0.4516248404979706\n                    },\n                    {\n                        \"X\": 0.7758093476295471,\n                        \"Y\": 0.4516075849533081\n                    }\n                ]\n            },\n            \"Id\": \"eeecfbef-7cbc-42a9-95e0-ae85115a48c6\",\n            \"Text\": \"Total\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56794738769531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011943195015192032,\n                    \"Left\": 0.8090327382087708,\n                    \"Top\": 0.4417468309402466,\n                    \"Width\": 0.03205128014087677\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8090327382087708,\n                        \"Y\": 0.4417468309402466\n                    },\n                    {\n                        \"X\": 0.8410781025886536,\n                        \"Y\": 0.4417651891708374\n                    },\n                    {\n                        \"X\": 0.8410840034484863,\n                        \"Y\": 0.4536900222301483\n                    },\n                    {\n                        \"X\": 0.8090384006500244,\n                        \"Y\": 0.45367154479026794\n                    }\n                ]\n            },\n            \"Id\": \"b0319acd-f2b4-4c35-815a-d9f04edfc874\",\n            \"Text\": \"(a+b)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95269775390625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011024853214621544,\n                    \"Left\": 0.02767668478190899,\n                    \"Top\": 0.4525225758552551,\n                    \"Width\": 0.05384493246674538\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02767668478190899,\n                        \"Y\": 0.4525225758552551\n                    },\n                    {\n                        \"X\": 0.08152111619710922,\n                        \"Y\": 0.4525536000728607\n                    },\n                    {\n                        \"X\": 0.08152161538600922,\n                        \"Y\": 0.46354740858078003\n                    },\n                    {\n                        \"X\": 0.027676831930875778,\n                        \"Y\": 0.4635162055492401\n                    }\n                ]\n            },\n            \"Id\": \"e6d41258-0777-4d59-9d29-b498aaa3a399\",\n            \"Text\": \"Acquired\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88186645507812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010699907317757607,\n                    \"Left\": 0.10614276677370071,\n                    \"Top\": 0.46737203001976013,\n                    \"Width\": 0.00785032007843256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10614276677370071,\n                        \"Y\": 0.46737203001976013\n                    },\n                    {\n                        \"X\": 0.11399240046739578,\n                        \"Y\": 0.46737658977508545\n                    },\n                    {\n                        \"X\": 0.1139930859208107,\n                        \"Y\": 0.478071928024292\n                    },\n                    {\n                        \"X\": 0.10614340752363205,\n                        \"Y\": 0.4780673384666443\n                    }\n                ]\n            },\n            \"Id\": \"0dbdf5bc-058a-4b41-b053-1021f96eaa65\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5809555053711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010751040652394295,\n                    \"Left\": 0.2563914358615875,\n                    \"Top\": 0.4673645794391632,\n                    \"Width\": 0.008344274945557117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2563914358615875,\n                        \"Y\": 0.4673645794391632\n                    },\n                    {\n                        \"X\": 0.26473405957221985,\n                        \"Y\": 0.4673694372177124\n                    },\n                    {\n                        \"X\": 0.26473572850227356,\n                        \"Y\": 0.47811564803123474\n                    },\n                    {\n                        \"X\": 0.25639304518699646,\n                        \"Y\": 0.47811076045036316\n                    }\n                ]\n            },\n            \"Id\": \"f802360d-d41f-4fdc-85ea-cd6082e483cf\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76797485351562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01066307257860899,\n                    \"Left\": 0.41682708263397217,\n                    \"Top\": 0.4673818349838257,\n                    \"Width\": 0.008335620164871216\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41682708263397217,\n                        \"Y\": 0.4673818349838257\n                    },\n                    {\n                        \"X\": 0.4251600503921509,\n                        \"Y\": 0.4673866629600525\n                    },\n                    {\n                        \"X\": 0.4251627027988434,\n                        \"Y\": 0.47804489731788635\n                    },\n                    {\n                        \"X\": 0.4168296754360199,\n                        \"Y\": 0.47804003953933716\n                    }\n                ]\n            },\n            \"Id\": \"1e7d727e-ced7-46b5-a1ef-0cde3dc1917d\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.05095672607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01075601764023304,\n                    \"Left\": 0.6005673408508301,\n                    \"Top\": 0.46728771924972534,\n                    \"Width\": 0.008278717286884785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6005673408508301,\n                        \"Y\": 0.46728771924972534\n                    },\n                    {\n                        \"X\": 0.6088422536849976,\n                        \"Y\": 0.46729251742362976\n                    },\n                    {\n                        \"X\": 0.6088460683822632,\n                        \"Y\": 0.47804373502731323\n                    },\n                    {\n                        \"X\": 0.6005711555480957,\n                        \"Y\": 0.4780389070510864\n                    }\n                ]\n            },\n            \"Id\": \"e86dabaa-1017-4207-aaec-49a6e20c3e94\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96090698242188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010702764615416527,\n                    \"Left\": 0.776276171207428,\n                    \"Top\": 0.4673926532268524,\n                    \"Width\": 0.007917916402220726\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.776276171207428,\n                        \"Y\": 0.4673926532268524\n                    },\n                    {\n                        \"X\": 0.7841891646385193,\n                        \"Y\": 0.4673972427845001\n                    },\n                    {\n                        \"X\": 0.7841941118240356,\n                        \"Y\": 0.4780954420566559\n                    },\n                    {\n                        \"X\": 0.7762810587882996,\n                        \"Y\": 0.4780908226966858\n                    }\n                ]\n            },\n            \"Id\": \"cd0753be-2137-4f00-b3c5-361ea3723590\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74433135986328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012437757104635239,\n                    \"Left\": 0.029327942058444023,\n                    \"Top\": 0.4861910045146942,\n                    \"Width\": 0.06019633263349533\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029327942058444023,\n                        \"Y\": 0.4861910045146942\n                    },\n                    {\n                        \"X\": 0.08952365815639496,\n                        \"Y\": 0.48622626066207886\n                    },\n                    {\n                        \"X\": 0.0895242765545845,\n                        \"Y\": 0.49862876534461975\n                    },\n                    {\n                        \"X\": 0.0293281190097332,\n                        \"Y\": 0.4985933303833008\n                    }\n                ]\n            },\n            \"Id\": \"fe519c27-0cb5-45c2-8783-32e0a10e9a2e\",\n            \"Text\": \"Complete\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84825897216797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009731227532029152,\n                    \"Left\": 0.09234216809272766,\n                    \"Top\": 0.4866443872451782,\n                    \"Width\": 0.024017252027988434\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09234216809272766,\n                        \"Y\": 0.4866443872451782\n                    },\n                    {\n                        \"X\": 0.11635878682136536,\n                        \"Y\": 0.4866584539413452\n                    },\n                    {\n                        \"X\": 0.1163594201207161,\n                        \"Y\": 0.4963756203651428\n                    },\n                    {\n                        \"X\": 0.09234267473220825,\n                        \"Y\": 0.49636149406433105\n                    }\n                ]\n            },\n            \"Id\": \"e4bfa8b8-d4e1-4751-999f-f60c25ae5c9c\",\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90938568115234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009623754769563675,\n                    \"Left\": 0.11889836192131042,\n                    \"Top\": 0.4866240322589874,\n                    \"Width\": 0.02339117042720318\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11889836192131042,\n                        \"Y\": 0.4866240322589874\n                    },\n                    {\n                        \"X\": 0.14228875935077667,\n                        \"Y\": 0.48663774132728577\n                    },\n                    {\n                        \"X\": 0.14228953421115875,\n                        \"Y\": 0.496247798204422\n                    },\n                    {\n                        \"X\": 0.11889901012182236,\n                        \"Y\": 0.4962340295314789\n                    }\n                ]\n            },\n            \"Id\": \"6aabc818-f87c-4555-8185-f9bdb9d39cfd\",\n            \"Text\": \"line\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.21439361572266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009842059575021267,\n                    \"Left\": 0.1451922357082367,\n                    \"Top\": 0.48643577098846436,\n                    \"Width\": 0.010285644792020321\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1451922357082367,\n                        \"Y\": 0.48643577098846436\n                    },\n                    {\n                        \"X\": 0.15547700226306915,\n                        \"Y\": 0.48644179105758667\n                    },\n                    {\n                        \"X\": 0.1554778814315796,\n                        \"Y\": 0.4962778389453888\n                    },\n                    {\n                        \"X\": 0.14519305527210236,\n                        \"Y\": 0.4962717890739441\n                    }\n                ]\n            },\n            \"Id\": \"ff79384f-01aa-4c56-9b16-455b41caae3b\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87892150878906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009815861470997334,\n                    \"Left\": 0.15730048716068268,\n                    \"Top\": 0.48656925559043884,\n                    \"Width\": 0.023360854014754295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15730048716068268,\n                        \"Y\": 0.48656925559043884\n                    },\n                    {\n                        \"X\": 0.18066032230854034,\n                        \"Y\": 0.4865829348564148\n                    },\n                    {\n                        \"X\": 0.18066135048866272,\n                        \"Y\": 0.4963850975036621\n                    },\n                    {\n                        \"X\": 0.15730136632919312,\n                        \"Y\": 0.4963713586330414\n                    }\n                ]\n            },\n            \"Id\": \"59c315cf-0e2d-4cba-b030-5f7fb59c983f\",\n            \"Text\": \"this\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8853988647461,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009595958516001701,\n                    \"Left\": 0.18379893898963928,\n                    \"Top\": 0.48658305406570435,\n                    \"Width\": 0.01170226838439703\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18379893898963928,\n                        \"Y\": 0.48658305406570435\n                    },\n                    {\n                        \"X\": 0.19550012052059174,\n                        \"Y\": 0.4865899085998535\n                    },\n                    {\n                        \"X\": 0.1955011934041977,\n                        \"Y\": 0.4961790144443512\n                    },\n                    {\n                        \"X\": 0.18379993736743927,\n                        \"Y\": 0.49617213010787964\n                    }\n                ]\n            },\n            \"Id\": \"014c252c-872f-4536-a14f-fa8803446bfe\",\n            \"Text\": \"is\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7679443359375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007295683491975069,\n                    \"Left\": 0.19831997156143188,\n                    \"Top\": 0.4886593222618103,\n                    \"Width\": 0.007997462525963783\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19831997156143188,\n                        \"Y\": 0.4886593222618103\n                    },\n                    {\n                        \"X\": 0.20631656050682068,\n                        \"Y\": 0.48866400122642517\n                    },\n                    {\n                        \"X\": 0.20631742477416992,\n                        \"Y\": 0.4959549903869629\n                    },\n                    {\n                        \"X\": 0.19832080602645874,\n                        \"Y\": 0.495950311422348\n                    }\n                ]\n            },\n            \"Id\": \"6184ed43-1f0c-41ad-853f-11168556e0d4\",\n            \"Text\": \"a\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.40708923339844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010112106800079346,\n                    \"Left\": 0.20924285054206848,\n                    \"Top\": 0.4862648844718933,\n                    \"Width\": 0.05913997069001198\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20924285054206848,\n                        \"Y\": 0.4862648844718933\n                    },\n                    {\n                        \"X\": 0.2683812379837036,\n                        \"Y\": 0.4862995147705078\n                    },\n                    {\n                        \"X\": 0.26838281750679016,\n                        \"Y\": 0.49637699127197266\n                    },\n                    {\n                        \"X\": 0.20924405753612518,\n                        \"Y\": 0.4963422119617462\n                    }\n                ]\n            },\n            \"Id\": \"2d7ffb4d-f519-4bc9-9a57-e74b4091ffbf\",\n            \"Text\": \"refinance\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.88505554199219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009914827533066273,\n                    \"Left\": 0.2712461054325104,\n                    \"Top\": 0.4865604639053345,\n                    \"Width\": 0.030783813446760178\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2712461054325104,\n                        \"Y\": 0.4865604639053345\n                    },\n                    {\n                        \"X\": 0.30202817916870117,\n                        \"Y\": 0.48657846450805664\n                    },\n                    {\n                        \"X\": 0.30202990770339966,\n                        \"Y\": 0.4964752793312073\n                    },\n                    {\n                        \"X\": 0.27124765515327454,\n                        \"Y\": 0.49645718932151794\n                    }\n                ]\n            },\n            \"Id\": \"afc811dc-0c49-4d6c-a652-b2a2c9eba651\",\n            \"Text\": \"loan.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96000671386719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009127862751483917,\n                    \"Left\": 0.028668580576777458,\n                    \"Top\": 0.49816063046455383,\n                    \"Width\": 0.027981050312519073\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028668580576777458,\n                        \"Y\": 0.49816063046455383\n                    },\n                    {\n                        \"X\": 0.056649353355169296,\n                        \"Y\": 0.49817711114883423\n                    },\n                    {\n                        \"X\": 0.05664963275194168,\n                        \"Y\": 0.5072885155677795\n                    },\n                    {\n                        \"X\": 0.028668707236647606,\n                        \"Y\": 0.507271945476532\n                    }\n                ]\n            },\n            \"Id\": \"6446a1f0-7a15-4f14-b351-701c3b2abeee\",\n            \"Text\": \"Year\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.77000427246094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01225920207798481,\n                    \"Left\": 0.10639187693595886,\n                    \"Top\": 0.4976131319999695,\n                    \"Width\": 0.045624326914548874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10639187693595886,\n                        \"Y\": 0.4976131319999695\n                    },\n                    {\n                        \"X\": 0.15201513469219208,\n                        \"Y\": 0.4976399838924408\n                    },\n                    {\n                        \"X\": 0.15201620757579803,\n                        \"Y\": 0.509872317314148\n                    },\n                    {\n                        \"X\": 0.10639260709285736,\n                        \"Y\": 0.5098453164100647\n                    }\n                ]\n            },\n            \"Id\": \"3f6b150f-af60-4896-a656-93761c6cbdfb\",\n            \"Text\": \"Original\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85881805419922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009635770693421364,\n                    \"Left\": 0.15536685287952423,\n                    \"Top\": 0.4980067312717438,\n                    \"Width\": 0.028224987909197807\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15536685287952423,\n                        \"Y\": 0.4980067312717438\n                    },\n                    {\n                        \"X\": 0.183590829372406,\n                        \"Y\": 0.4980233609676361\n                    },\n                    {\n                        \"X\": 0.1835918426513672,\n                        \"Y\": 0.5076425075531006\n                    },\n                    {\n                        \"X\": 0.15536771714687347,\n                        \"Y\": 0.5076258182525635\n                    }\n                ]\n            },\n            \"Id\": \"5550ad46-7b09-4f72-82c6-d78d80b9c07d\",\n            \"Text\": \"Cost\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9635238647461,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009648652747273445,\n                    \"Left\": 0.2561025321483612,\n                    \"Top\": 0.4981469511985779,\n                    \"Width\": 0.04639456048607826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2561025321483612,\n                        \"Y\": 0.4981469511985779\n                    },\n                    {\n                        \"X\": 0.30249541997909546,\n                        \"Y\": 0.498174250125885\n                    },\n                    {\n                        \"X\": 0.30249708890914917,\n                        \"Y\": 0.5077956318855286\n                    },\n                    {\n                        \"X\": 0.2561039626598358,\n                        \"Y\": 0.5077681541442871\n                    }\n                ]\n            },\n            \"Id\": \"91ce27ca-abdc-4b60-9656-9880349851cb\",\n            \"Text\": \"Amount\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86334228515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012310429476201534,\n                    \"Left\": 0.30525198578834534,\n                    \"Top\": 0.49769020080566406,\n                    \"Width\": 0.04624367877840996\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30525198578834534,\n                        \"Y\": 0.49769020080566406\n                    },\n                    {\n                        \"X\": 0.35149314999580383,\n                        \"Y\": 0.49771741032600403\n                    },\n                    {\n                        \"X\": 0.3514956533908844,\n                        \"Y\": 0.5100006461143494\n                    },\n                    {\n                        \"X\": 0.30525416135787964,\n                        \"Y\": 0.5099732875823975\n                    }\n                ]\n            },\n            \"Id\": \"9d110f48-3f14-401b-a903-583ddba37243\",\n            \"Text\": \"Existing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7828369140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009838263504207134,\n                    \"Left\": 0.3542831242084503,\n                    \"Top\": 0.4977976679801941,\n                    \"Width\": 0.03220397233963013\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3542831242084503,\n                        \"Y\": 0.4977976679801941\n                    },\n                    {\n                        \"X\": 0.38648489117622375,\n                        \"Y\": 0.49781662225723267\n                    },\n                    {\n                        \"X\": 0.38648709654808044,\n                        \"Y\": 0.5076359510421753\n                    },\n                    {\n                        \"X\": 0.3542851507663727,\n                        \"Y\": 0.5076168775558472\n                    }\n                ]\n            },\n            \"Id\": \"ae9455fb-06bb-4657-8582-00789ccbaa8c\",\n            \"Text\": \"Liens\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67566680908203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012076098471879959,\n                    \"Left\": 0.41705572605133057,\n                    \"Top\": 0.49762678146362305,\n                    \"Width\": 0.04897656664252281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41705572605133057,\n                        \"Y\": 0.49762678146362305\n                    },\n                    {\n                        \"X\": 0.46602901816368103,\n                        \"Y\": 0.49765560030937195\n                    },\n                    {\n                        \"X\": 0.4660322964191437,\n                        \"Y\": 0.5097028613090515\n                    },\n                    {\n                        \"X\": 0.41705864667892456,\n                        \"Y\": 0.5096738934516907\n                    }\n                ]\n            },\n            \"Id\": \"1d727035-560b-4dc4-9d5c-df0595efcb22\",\n            \"Text\": \"Purpose\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82826232910156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009876235388219357,\n                    \"Left\": 0.46890658140182495,\n                    \"Top\": 0.4976259171962738,\n                    \"Width\": 0.012723061256110668\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46890658140182495,\n                        \"Y\": 0.4976259171962738\n                    },\n                    {\n                        \"X\": 0.48162686824798584,\n                        \"Y\": 0.4976333975791931\n                    },\n                    {\n                        \"X\": 0.4816296398639679,\n                        \"Y\": 0.5075021386146545\n                    },\n                    {\n                        \"X\": 0.46890926361083984,\n                        \"Y\": 0.5074946284294128\n                    }\n                ]\n            },\n            \"Id\": \"a662ddc4-bb9f-494d-9d91-bfc24714dd91\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.54940795898438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010358174331486225,\n                    \"Left\": 0.4841858744621277,\n                    \"Top\": 0.4974701702594757,\n                    \"Width\": 0.05952269956469536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4841858744621277,\n                        \"Y\": 0.4974701702594757\n                    },\n                    {\n                        \"X\": 0.5437052845954895,\n                        \"Y\": 0.49750518798828125\n                    },\n                    {\n                        \"X\": 0.5437085628509521,\n                        \"Y\": 0.5078283548355103\n                    },\n                    {\n                        \"X\": 0.4841887950897217,\n                        \"Y\": 0.507793128490448\n                    }\n                ]\n            },\n            \"Id\": \"e6338039-9b56-4296-bec7-160cdfbe738d\",\n            \"Text\": \"Refinance\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92295837402344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010066819377243519,\n                    \"Left\": 0.6224035024642944,\n                    \"Top\": 0.4975954294204712,\n                    \"Width\": 0.05224715173244476\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6224035024642944,\n                        \"Y\": 0.4975954294204712\n                    },\n                    {\n                        \"X\": 0.6746466755867004,\n                        \"Y\": 0.4976261556148529\n                    },\n                    {\n                        \"X\": 0.6746506094932556,\n                        \"Y\": 0.5076622366905212\n                    },\n                    {\n                        \"X\": 0.6224071383476257,\n                        \"Y\": 0.5076313614845276\n                    }\n                ]\n            },\n            \"Id\": \"b220e3bc-4601-4578-b1f3-5d55b1b1af62\",\n            \"Text\": \"Describe\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.44978332519531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011470720171928406,\n                    \"Left\": 0.6772404909133911,\n                    \"Top\": 0.49791356921195984,\n                    \"Width\": 0.08345352113246918\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6772404909133911,\n                        \"Y\": 0.49791356921195984\n                    },\n                    {\n                        \"X\": 0.7606889009475708,\n                        \"Y\": 0.49796268343925476\n                    },\n                    {\n                        \"X\": 0.7606940269470215,\n                        \"Y\": 0.509384274482727\n                    },\n                    {\n                        \"X\": 0.677245020866394,\n                        \"Y\": 0.509334921836853\n                    }\n                ]\n            },\n            \"Id\": \"67ad1846-8e43-4012-b97a-a31b431e1954\",\n            \"Text\": \"Improvements\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97154235839844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009262130595743656,\n                    \"Left\": 0.8306662440299988,\n                    \"Top\": 0.5004291534423828,\n                    \"Width\": 0.03256909176707268\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8306662440299988,\n                        \"Y\": 0.5004291534423828\n                    },\n                    {\n                        \"X\": 0.8632306456565857,\n                        \"Y\": 0.5004483461380005\n                    },\n                    {\n                        \"X\": 0.863235354423523,\n                        \"Y\": 0.5096912980079651\n                    },\n                    {\n                        \"X\": 0.8306707739830017,\n                        \"Y\": 0.5096719861030579\n                    }\n                ]\n            },\n            \"Id\": \"47ca9455-40d2-48cf-87ae-dd3937b390a9\",\n            \"Text\": \"made\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86404418945312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009415701031684875,\n                    \"Left\": 0.8924333453178406,\n                    \"Top\": 0.5004473328590393,\n                    \"Width\": 0.011569689027965069\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8924333453178406,\n                        \"Y\": 0.5004473328590393\n                    },\n                    {\n                        \"X\": 0.9039980173110962,\n                        \"Y\": 0.5004541277885437\n                    },\n                    {\n                        \"X\": 0.9040030241012573,\n                        \"Y\": 0.509863018989563\n                    },\n                    {\n                        \"X\": 0.8924382328987122,\n                        \"Y\": 0.5098561644554138\n                    }\n                ]\n            },\n            \"Id\": \"effbc861-9822-4065-8f19-e3b80c9a1e70\",\n            \"Text\": \"to\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91839599609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009469115175306797,\n                    \"Left\": 0.9077193140983582,\n                    \"Top\": 0.500309944152832,\n                    \"Width\": 0.0145839499309659\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9077193140983582,\n                        \"Y\": 0.500309944152832\n                    },\n                    {\n                        \"X\": 0.9222981333732605,\n                        \"Y\": 0.5003185272216797\n                    },\n                    {\n                        \"X\": 0.9223032593727112,\n                        \"Y\": 0.5097790956497192\n                    },\n                    {\n                        \"X\": 0.9077243804931641,\n                        \"Y\": 0.5097704529762268\n                    }\n                ]\n            },\n            \"Id\": \"2d38ee50-549c-4cc1-b871-c9fb9a78e8ef\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97140502929688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009466788731515408,\n                    \"Left\": 0.9254034161567688,\n                    \"Top\": 0.5003603100776672,\n                    \"Width\": 0.033493202179670334\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9254034161567688,\n                        \"Y\": 0.5003603100776672\n                    },\n                    {\n                        \"X\": 0.9588912725448608,\n                        \"Y\": 0.5003800392150879\n                    },\n                    {\n                        \"X\": 0.9588965773582458,\n                        \"Y\": 0.5098271369934082\n                    },\n                    {\n                        \"X\": 0.9254085421562195,\n                        \"Y\": 0.509807288646698\n                    }\n                ]\n            },\n            \"Id\": \"2e4792d3-957b-437b-8c0d-0b1bf53c7527\",\n            \"Text\": \"made\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96675109863281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011450045742094517,\n                    \"Left\": 0.028355760499835014,\n                    \"Top\": 0.5082358717918396,\n                    \"Width\": 0.05248091742396355\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028355760499835014,\n                        \"Y\": 0.5082358717918396\n                    },\n                    {\n                        \"X\": 0.08083616942167282,\n                        \"Y\": 0.5082669258117676\n                    },\n                    {\n                        \"X\": 0.08083667606115341,\n                        \"Y\": 0.5196859240531921\n                    },\n                    {\n                        \"X\": 0.02835591696202755,\n                        \"Y\": 0.5196546912193298\n                    }\n                ]\n            },\n            \"Id\": \"49b6bce4-3620-4c69-b84e-072552cf8f43\",\n            \"Text\": \"Acquired\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.44673919677734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010415122844278812,\n                    \"Left\": 0.10593593120574951,\n                    \"Top\": 0.5268135070800781,\n                    \"Width\": 0.00841505452990532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10593593120574951,\n                        \"Y\": 0.5268135070800781\n                    },\n                    {\n                        \"X\": 0.11435031145811081,\n                        \"Y\": 0.5268185138702393\n                    },\n                    {\n                        \"X\": 0.11435098946094513,\n                        \"Y\": 0.5372285842895508\n                    },\n                    {\n                        \"X\": 0.10593654960393906,\n                        \"Y\": 0.5372235774993896\n                    }\n                ]\n            },\n            \"Id\": \"db583c43-d155-4d45-a9ea-913db0fb76dd\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.2051010131836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010503621771931648,\n                    \"Left\": 0.25634142756462097,\n                    \"Top\": 0.5266968011856079,\n                    \"Width\": 0.008484494872391224\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25634142756462097,\n                        \"Y\": 0.5266968011856079\n                    },\n                    {\n                        \"X\": 0.2648243308067322,\n                        \"Y\": 0.5267018675804138\n                    },\n                    {\n                        \"X\": 0.2648259401321411,\n                        \"Y\": 0.5372004508972168\n                    },\n                    {\n                        \"X\": 0.2563430070877075,\n                        \"Y\": 0.5371953845024109\n                    }\n                ]\n            },\n            \"Id\": \"86aa9e8f-dffd-48d6-a06c-b389aa547ae4\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.1709976196289,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009704613126814365,\n                    \"Left\": 0.6221300363540649,\n                    \"Top\": 0.5280073881149292,\n                    \"Width\": 0.030153725296258926\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6221300363540649,\n                        \"Y\": 0.5280073881149292\n                    },\n                    {\n                        \"X\": 0.6522800922393799,\n                        \"Y\": 0.5280253887176514\n                    },\n                    {\n                        \"X\": 0.652283787727356,\n                        \"Y\": 0.537712037563324\n                    },\n                    {\n                        \"X\": 0.6221335530281067,\n                        \"Y\": 0.537693977355957\n                    }\n                ]\n            },\n            \"Id\": \"25b6007c-51ef-427b-8925-6a904d7fac64\",\n            \"Text\": \"Cost:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6036605834961,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010045616887509823,\n                    \"Left\": 0.6560170650482178,\n                    \"Top\": 0.5278348922729492,\n                    \"Width\": 0.008151671849191189\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6560170650482178,\n                        \"Y\": 0.5278348922729492\n                    },\n                    {\n                        \"X\": 0.6641648411750793,\n                        \"Y\": 0.527839720249176\n                    },\n                    {\n                        \"X\": 0.6641687750816345,\n                        \"Y\": 0.5378804802894592\n                    },\n                    {\n                        \"X\": 0.6560209393501282,\n                        \"Y\": 0.5378755927085876\n                    }\n                ]\n            },\n            \"Id\": \"522b0acd-42aa-4213-b048-4881dc5657c6\",\n            \"Text\": \"$\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8423843383789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009702193550765514,\n                    \"Left\": 0.028518835082650185,\n                    \"Top\": 0.5415672063827515,\n                    \"Width\": 0.025321466848254204\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028518835082650185,\n                        \"Y\": 0.5415672063827515\n                    },\n                    {\n                        \"X\": 0.053840022534132004,\n                        \"Y\": 0.5415824055671692\n                    },\n                    {\n                        \"X\": 0.05384030193090439,\n                        \"Y\": 0.5512694120407104\n                    },\n                    {\n                        \"X\": 0.02851896919310093,\n                        \"Y\": 0.551254153251648\n                    }\n                ]\n            },\n            \"Id\": \"e2ef7117-ab0f-4ce1-82b4-9a204f933f45\",\n            \"Text\": \"Title\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65312194824219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009625214152038097,\n                    \"Left\": 0.05661401525139809,\n                    \"Top\": 0.5416080355644226,\n                    \"Width\": 0.019077809527516365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.05661401525139809,\n                        \"Y\": 0.5416080355644226\n                    },\n                    {\n                        \"X\": 0.07569142431020737,\n                        \"Y\": 0.5416194796562195\n                    },\n                    {\n                        \"X\": 0.0756918266415596,\n                        \"Y\": 0.5512332320213318\n                    },\n                    {\n                        \"X\": 0.056614309549331665,\n                        \"Y\": 0.5512217283248901\n                    }\n                ]\n            },\n            \"Id\": \"bd1691bb-a5fb-4898-9790-7344fd5ea3ff\",\n            \"Text\": \"will\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8513412475586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00943878386169672,\n                    \"Left\": 0.07856657356023788,\n                    \"Top\": 0.5417914390563965,\n                    \"Width\": 0.015388495288789272\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07856657356023788,\n                        \"Y\": 0.5417914390563965\n                    },\n                    {\n                        \"X\": 0.09395457804203033,\n                        \"Y\": 0.5418006777763367\n                    },\n                    {\n                        \"X\": 0.09395506978034973,\n                        \"Y\": 0.5512301921844482\n                    },\n                    {\n                        \"X\": 0.07856698334217072,\n                        \"Y\": 0.5512209534645081\n                    }\n                ]\n            },\n            \"Id\": \"e3878e03-17f6-49c8-8535-4e101380d192\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9000244140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009497322142124176,\n                    \"Left\": 0.09692155569791794,\n                    \"Top\": 0.5416887998580933,\n                    \"Width\": 0.025429757311940193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09692155569791794,\n                        \"Y\": 0.5416887998580933\n                    },\n                    {\n                        \"X\": 0.12235065549612045,\n                        \"Y\": 0.5417040586471558\n                    },\n                    {\n                        \"X\": 0.12235131114721298,\n                        \"Y\": 0.5511861443519592\n                    },\n                    {\n                        \"X\": 0.09692206978797913,\n                        \"Y\": 0.5511707663536072\n                    }\n                ]\n            },\n            \"Id\": \"424c31e3-41e6-4901-b318-f63d5300ef57\",\n            \"Text\": \"held\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.73737335205078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009292932227253914,\n                    \"Left\": 0.12540756165981293,\n                    \"Top\": 0.5417503118515015,\n                    \"Width\": 0.0104961097240448\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12540756165981293,\n                        \"Y\": 0.5417503118515015\n                    },\n                    {\n                        \"X\": 0.13590295612812042,\n                        \"Y\": 0.5417566299438477\n                    },\n                    {\n                        \"X\": 0.13590367138385773,\n                        \"Y\": 0.5510432720184326\n                    },\n                    {\n                        \"X\": 0.12540823221206665,\n                        \"Y\": 0.5510369539260864\n                    }\n                ]\n            },\n            \"Id\": \"e08f0fc1-b0df-48a8-8386-3a4631f8b22b\",\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80751037597656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009614059701561928,\n                    \"Left\": 0.13857604563236237,\n                    \"Top\": 0.541709303855896,\n                    \"Width\": 0.029358334839344025\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13857604563236237,\n                        \"Y\": 0.541709303855896\n                    },\n                    {\n                        \"X\": 0.16793344914913177,\n                        \"Y\": 0.5417268872261047\n                    },\n                    {\n                        \"X\": 0.1679343730211258,\n                        \"Y\": 0.5513233542442322\n                    },\n                    {\n                        \"X\": 0.13857680559158325,\n                        \"Y\": 0.5513056516647339\n                    }\n                ]\n            },\n            \"Id\": \"bed94834-903d-4dd3-88a0-6e3a135c9c04\",\n            \"Text\": \"what\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66453552246094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011439651250839233,\n                    \"Left\": 0.17046374082565308,\n                    \"Top\": 0.5416668653488159,\n                    \"Width\": 0.05106767266988754\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17046374082565308,\n                        \"Y\": 0.5416668653488159\n                    },\n                    {\n                        \"X\": 0.22152996063232422,\n                        \"Y\": 0.5416975021362305\n                    },\n                    {\n                        \"X\": 0.22153142094612122,\n                        \"Y\": 0.5531065464019775\n                    },\n                    {\n                        \"X\": 0.17046485841274261,\n                        \"Y\": 0.5530757308006287\n                    }\n                ]\n            },\n            \"Id\": \"bb367b78-323e-4a6f-b3de-7a5de15053a1\",\n            \"Text\": \"Name(s)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94967651367188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009555744007229805,\n                    \"Left\": 0.5654798746109009,\n                    \"Top\": 0.5416609644889832,\n                    \"Width\": 0.04555569961667061\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5654798746109009,\n                        \"Y\": 0.5416609644889832\n                    },\n                    {\n                        \"X\": 0.6110321879386902,\n                        \"Y\": 0.5416883230209351\n                    },\n                    {\n                        \"X\": 0.6110355854034424,\n                        \"Y\": 0.551216721534729\n                    },\n                    {\n                        \"X\": 0.565483033657074,\n                        \"Y\": 0.5511892437934875\n                    }\n                ]\n            },\n            \"Id\": \"eddf32e8-b038-4f9b-85d9-1df5e3512133\",\n            \"Text\": \"Manner\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85564422607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009022492915391922,\n                    \"Left\": 0.6136928796768188,\n                    \"Top\": 0.5419268608093262,\n                    \"Width\": 0.01115940511226654\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6136928796768188,\n                        \"Y\": 0.5419268608093262\n                    },\n                    {\n                        \"X\": 0.6248490214347839,\n                        \"Y\": 0.5419335961341858\n                    },\n                    {\n                        \"X\": 0.6248522996902466,\n                        \"Y\": 0.5509493947029114\n                    },\n                    {\n                        \"X\": 0.6136961579322815,\n                        \"Y\": 0.5509426593780518\n                    }\n                ]\n            },\n            \"Id\": \"aa213054-3af0-469c-90f0-9246a18e3d0e\",\n            \"Text\": \"in\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9158935546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009199691005051136,\n                    \"Left\": 0.6273741722106934,\n                    \"Top\": 0.5419056415557861,\n                    \"Width\": 0.03467222675681114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6273741722106934,\n                        \"Y\": 0.5419056415557861\n                    },\n                    {\n                        \"X\": 0.6620428562164307,\n                        \"Y\": 0.5419264435768127\n                    },\n                    {\n                        \"X\": 0.6620463728904724,\n                        \"Y\": 0.5511053204536438\n                    },\n                    {\n                        \"X\": 0.6273775696754456,\n                        \"Y\": 0.5510844588279724\n                    }\n                ]\n            },\n            \"Id\": \"b4f106d9-72d7-4fc5-ae5b-64f3fa869655\",\n            \"Text\": \"which\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91748809814453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009630500338971615,\n                    \"Left\": 0.6647850275039673,\n                    \"Top\": 0.5416024327278137,\n                    \"Width\": 0.025288136675953865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6647850275039673,\n                        \"Y\": 0.5416024327278137\n                    },\n                    {\n                        \"X\": 0.6900692582130432,\n                        \"Y\": 0.5416176319122314\n                    },\n                    {\n                        \"X\": 0.6900731325149536,\n                        \"Y\": 0.5512329339981079\n                    },\n                    {\n                        \"X\": 0.6647887825965881,\n                        \"Y\": 0.5512177348136902\n                    }\n                ]\n            },\n            \"Id\": \"49d2fbd3-038b-46c5-8cba-169f9c49614c\",\n            \"Text\": \"Title\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.20797729492188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009363806806504726,\n                    \"Left\": 0.6926485300064087,\n                    \"Top\": 0.5417728424072266,\n                    \"Width\": 0.019616208970546722\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6926485300064087,\n                        \"Y\": 0.5417728424072266\n                    },\n                    {\n                        \"X\": 0.7122608423233032,\n                        \"Y\": 0.5417845845222473\n                    },\n                    {\n                        \"X\": 0.7122647762298584,\n                        \"Y\": 0.5511366128921509\n                    },\n                    {\n                        \"X\": 0.6926523447036743,\n                        \"Y\": 0.5511248111724854\n                    }\n                ]\n            },\n            \"Id\": \"2625e666-bc15-4dee-8a79-bdadfef9f57f\",\n            \"Text\": \"will\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92552185058594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009389737620949745,\n                    \"Left\": 0.7150920033454895,\n                    \"Top\": 0.5417687892913818,\n                    \"Width\": 0.015171288512647152\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7150920033454895,\n                        \"Y\": 0.5417687892913818\n                    },\n                    {\n                        \"X\": 0.7302592992782593,\n                        \"Y\": 0.5417779088020325\n                    },\n                    {\n                        \"X\": 0.7302632927894592,\n                        \"Y\": 0.5511585474014282\n                    },\n                    {\n                        \"X\": 0.7150959372520447,\n                        \"Y\": 0.5511493682861328\n                    }\n                ]\n            },\n            \"Id\": \"766e00a7-f9d5-43fa-a762-29c0d8fd750f\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90469360351562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009717031382024288,\n                    \"Left\": 0.7329481840133667,\n                    \"Top\": 0.5414186120033264,\n                    \"Width\": 0.026337075978517532\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7329481840133667,\n                        \"Y\": 0.5414186120033264\n                    },\n                    {\n                        \"X\": 0.7592809200286865,\n                        \"Y\": 0.5414344072341919\n                    },\n                    {\n                        \"X\": 0.7592852115631104,\n                        \"Y\": 0.5511355996131897\n                    },\n                    {\n                        \"X\": 0.732952356338501,\n                        \"Y\": 0.5511197447776794\n                    }\n                ]\n            },\n            \"Id\": \"df432aab-76af-486c-9dc6-83c4f39f4ec3\",\n            \"Text\": \"held\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88533020019531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0097578139975667,\n                    \"Left\": 0.8330784440040588,\n                    \"Top\": 0.5415339469909668,\n                    \"Width\": 0.0368824228644371\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8330784440040588,\n                        \"Y\": 0.5415339469909668\n                    },\n                    {\n                        \"X\": 0.8699558973312378,\n                        \"Y\": 0.5415560603141785\n                    },\n                    {\n                        \"X\": 0.8699609041213989,\n                        \"Y\": 0.5512917637825012\n                    },\n                    {\n                        \"X\": 0.8330832123756409,\n                        \"Y\": 0.55126953125\n                    }\n                ]\n            },\n            \"Id\": \"e04676f1-5b16-4cb4-b1f5-21d8f9dbeb26\",\n            \"Text\": \"Estate\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.31255340576172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009393652901053429,\n                    \"Left\": 0.8722168207168579,\n                    \"Top\": 0.541718602180481,\n                    \"Width\": 0.019604332745075226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8722168207168579,\n                        \"Y\": 0.541718602180481\n                    },\n                    {\n                        \"X\": 0.891816258430481,\n                        \"Y\": 0.5417303442955017\n                    },\n                    {\n                        \"X\": 0.8918211460113525,\n                        \"Y\": 0.5511122345924377\n                    },\n                    {\n                        \"X\": 0.8722216486930847,\n                        \"Y\": 0.5511004328727722\n                    }\n                ]\n            },\n            \"Id\": \"bf82ad16-656d-4007-9e1b-4c90d5030bc6\",\n            \"Text\": \"will\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8495101928711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009354880079627037,\n                    \"Left\": 0.8949562311172485,\n                    \"Top\": 0.5418469905853271,\n                    \"Width\": 0.015050538815557957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8949562311172485,\n                        \"Y\": 0.5418469905853271\n                    },\n                    {\n                        \"X\": 0.910001814365387,\n                        \"Y\": 0.5418559908866882\n                    },\n                    {\n                        \"X\": 0.9100067615509033,\n                        \"Y\": 0.5512018799781799\n                    },\n                    {\n                        \"X\": 0.8949611783027649,\n                        \"Y\": 0.5511928200721741\n                    }\n                ]\n            },\n            \"Id\": \"1c73ab34-13b9-4655-9a37-fa5caa86d26b\",\n            \"Text\": \"be\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93511199951172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009700865484774113,\n                    \"Left\": 0.9130182862281799,\n                    \"Top\": 0.5414171814918518,\n                    \"Width\": 0.02584870718419552\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9130182862281799,\n                        \"Y\": 0.5414171814918518\n                    },\n                    {\n                        \"X\": 0.9388616681098938,\n                        \"Y\": 0.5414326786994934\n                    },\n                    {\n                        \"X\": 0.9388669729232788,\n                        \"Y\": 0.551118016242981\n                    },\n                    {\n                        \"X\": 0.9130234718322754,\n                        \"Y\": 0.5511024594306946\n                    }\n                ]\n            },\n            \"Id\": \"ed15c1cc-84cd-415f-ba5c-5948275f047b\",\n            \"Text\": \"held\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.4616470336914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009337984025478363,\n                    \"Left\": 0.9418120980262756,\n                    \"Top\": 0.541713297367096,\n                    \"Width\": 0.014153769239783287\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9418120980262756,\n                        \"Y\": 0.541713297367096\n                    },\n                    {\n                        \"X\": 0.9559606313705444,\n                        \"Y\": 0.5417218208312988\n                    },\n                    {\n                        \"X\": 0.9559658765792847,\n                        \"Y\": 0.5510513186454773\n                    },\n                    {\n                        \"X\": 0.9418172240257263,\n                        \"Y\": 0.5510427951812744\n                    }\n                ]\n            },\n            \"Id\": \"734d5324-d9b1-4ce2-8c99-9c654a8f740f\",\n            \"Text\": \"in:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81237030029297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010488958097994328,\n                    \"Left\": 0.03021317906677723,\n                    \"Top\": 0.5610601305961609,\n                    \"Width\": 0.04052995890378952\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03021317906677723,\n                        \"Y\": 0.5610601305961609\n                    },\n                    {\n                        \"X\": 0.07074273377656937,\n                        \"Y\": 0.5610846877098083\n                    },\n                    {\n                        \"X\": 0.0707431361079216,\n                        \"Y\": 0.5715490579605103\n                    },\n                    {\n                        \"X\": 0.030213333666324615,\n                        \"Y\": 0.571524441242218\n                    }\n                ]\n            },\n            \"Id\": \"dfcba9b9-b2ce-4d96-8122-8391c809b3ca\",\n            \"Text\": \"Carlos\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88551330566406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010462041944265366,\n                    \"Left\": 0.07422742247581482,\n                    \"Top\": 0.5609760880470276,\n                    \"Width\": 0.04791723191738129\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07422742247581482,\n                        \"Y\": 0.5609760880470276\n                    },\n                    {\n                        \"X\": 0.1221439391374588,\n                        \"Y\": 0.5610050559043884\n                    },\n                    {\n                        \"X\": 0.1221446618437767,\n                        \"Y\": 0.5714381337165833\n                    },\n                    {\n                        \"X\": 0.07422785460948944,\n                        \"Y\": 0.5714089870452881\n                    }\n                ]\n            },\n            \"Id\": \"48117f97-32c1-457e-a9b4-b029df8ac663\",\n            \"Text\": \"Salazar\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87256622314453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00968114659190178,\n                    \"Left\": 0.8517647981643677,\n                    \"Top\": 0.5583177208900452,\n                    \"Width\": 0.022836390882730484\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8517647981643677,\n                        \"Y\": 0.5583177208900452\n                    },\n                    {\n                        \"X\": 0.8745961785316467,\n                        \"Y\": 0.5583314895629883\n                    },\n                    {\n                        \"X\": 0.8746011853218079,\n                        \"Y\": 0.5679988265037537\n                    },\n                    {\n                        \"X\": 0.8517696261405945,\n                        \"Y\": 0.5679849982261658\n                    }\n                ]\n            },\n            \"Id\": \"15c62bd5-3ac8-496f-8fce-5cdef8afd087\",\n            \"Text\": \"Fee\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9133529663086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011902540922164917,\n                    \"Left\": 0.8777403831481934,\n                    \"Top\": 0.557984471321106,\n                    \"Width\": 0.04043034464120865\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8777403831481934,\n                        \"Y\": 0.557984471321106\n                    },\n                    {\n                        \"X\": 0.9181643128395081,\n                        \"Y\": 0.5580089092254639\n                    },\n                    {\n                        \"X\": 0.918170690536499,\n                        \"Y\": 0.5698869824409485\n                    },\n                    {\n                        \"X\": 0.8777464628219604,\n                        \"Y\": 0.569862425327301\n                    }\n                ]\n            },\n            \"Id\": \"14cb9679-c9c9-45fc-beb8-ff37999cc5d1\",\n            \"Text\": \"Simple\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.31560516357422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010518518276512623,\n                    \"Left\": 0.8520355224609375,\n                    \"Top\": 0.5723206996917725,\n                    \"Width\": 0.09010174870491028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8520355224609375,\n                        \"Y\": 0.5723206996917725\n                    },\n                    {\n                        \"X\": 0.9421314597129822,\n                        \"Y\": 0.5723755359649658\n                    },\n                    {\n                        \"X\": 0.9421372413635254,\n                        \"Y\": 0.5828392505645752\n                    },\n                    {\n                        \"X\": 0.8520407676696777,\n                        \"Y\": 0.5827841758728027\n                    }\n                ]\n            },\n            \"Id\": \"5ab2a09c-e417-4c2f-a9f1-42ba449dc986\",\n            \"Text\": \"Leasehold(show\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76505279541016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009915200062096119,\n                    \"Left\": 0.02885071560740471,\n                    \"Top\": 0.5852029323577881,\n                    \"Width\": 0.04160298407077789\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02885071560740471,\n                        \"Y\": 0.5852029323577881\n                    },\n                    {\n                        \"X\": 0.07045331597328186,\n                        \"Y\": 0.5852283835411072\n                    },\n                    {\n                        \"X\": 0.0704536959528923,\n                        \"Y\": 0.5951181650161743\n                    },\n                    {\n                        \"X\": 0.0288508553057909,\n                        \"Y\": 0.5950925946235657\n                    }\n                ]\n            },\n            \"Id\": \"be004b45-7400-4386-b395-3bec18acb3b7\",\n            \"Text\": \"Source\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89888000488281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009899728931486607,\n                    \"Left\": 0.07376237958669662,\n                    \"Top\": 0.584983766078949,\n                    \"Width\": 0.012666894122958183\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07376237958669662,\n                        \"Y\": 0.584983766078949\n                    },\n                    {\n                        \"X\": 0.08642879873514175,\n                        \"Y\": 0.5849915146827698\n                    },\n                    {\n                        \"X\": 0.08642927557229996,\n                        \"Y\": 0.5948835015296936\n                    },\n                    {\n                        \"X\": 0.07376278191804886,\n                        \"Y\": 0.594875693321228\n                    }\n                ]\n            },\n            \"Id\": \"0d15c540-60b1-461a-af16-ed2994881093\",\n            \"Text\": \"of\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65483856201172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00987178273499012,\n                    \"Left\": 0.08876869827508926,\n                    \"Top\": 0.5851278901100159,\n                    \"Width\": 0.03308809921145439\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08876869827508926,\n                        \"Y\": 0.5851278901100159\n                    },\n                    {\n                        \"X\": 0.12185611575841904,\n                        \"Y\": 0.5851480960845947\n                    },\n                    {\n                        \"X\": 0.12185679376125336,\n                        \"Y\": 0.5949996709823608\n                    },\n                    {\n                        \"X\": 0.08876918256282806,\n                        \"Y\": 0.5949793457984924\n                    }\n                ]\n            },\n            \"Id\": \"767f2731-2b2a-434e-8dd0-f524531e866a\",\n            \"Text\": \"Down\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 62.54059600830078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012006961740553379,\n                    \"Left\": 0.12524808943271637,\n                    \"Top\": 0.5851097106933594,\n                    \"Width\": 0.055488668382167816\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12524808943271637,\n                        \"Y\": 0.5851097106933594\n                    },\n                    {\n                        \"X\": 0.1807355284690857,\n                        \"Y\": 0.5851436853408813\n                    },\n                    {\n                        \"X\": 0.18073676526546478,\n                        \"Y\": 0.5971167087554932\n                    },\n                    {\n                        \"X\": 0.1252489537000656,\n                        \"Y\": 0.5970825552940369\n                    }\n                ]\n            },\n            \"Id\": \"99595545-0285-4892-816e-742761ccbda7\",\n            \"Text\": \"Payment\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79887390136719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010304787196218967,\n                    \"Left\": 0.1837978959083557,\n                    \"Top\": 0.5850890874862671,\n                    \"Width\": 0.06413580477237701\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1837978959083557,\n                        \"Y\": 0.5850890874862671\n                    },\n                    {\n                        \"X\": 0.24793222546577454,\n                        \"Y\": 0.5851283073425293\n                    },\n                    {\n                        \"X\": 0.24793370068073273,\n                        \"Y\": 0.5953938364982605\n                    },\n                    {\n                        \"X\": 0.18379898369312286,\n                        \"Y\": 0.595354437828064\n                    }\n                ]\n            },\n            \"Id\": \"aa0916bf-ed26-4472-b336-e987dad2195a\",\n            \"Text\": \"Settlement\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7918930053711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012218595482409,\n                    \"Left\": 0.2504664361476898,\n                    \"Top\": 0.5850021839141846,\n                    \"Width\": 0.05005283281207085\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2504664361476898,\n                        \"Y\": 0.5850021839141846\n                    },\n                    {\n                        \"X\": 0.30051714181900024,\n                        \"Y\": 0.5850328207015991\n                    },\n                    {\n                        \"X\": 0.30051925778388977,\n                        \"Y\": 0.597220778465271\n                    },\n                    {\n                        \"X\": 0.2504681944847107,\n                        \"Y\": 0.5971900224685669\n                    }\n                ]\n            },\n            \"Id\": \"94f48348-e369-4a6a-8e27-7fdf970a1a66\",\n            \"Text\": \"Charges\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80825805664062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009701170027256012,\n                    \"Left\": 0.30341270565986633,\n                    \"Top\": 0.5853053331375122,\n                    \"Width\": 0.03877522423863411\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30341270565986633,\n                        \"Y\": 0.5853053331375122\n                    },\n                    {\n                        \"X\": 0.34218600392341614,\n                        \"Y\": 0.5853290557861328\n                    },\n                    {\n                        \"X\": 0.34218794107437134,\n                        \"Y\": 0.5950064659118652\n                    },\n                    {\n                        \"X\": 0.30341440439224243,\n                        \"Y\": 0.5949826836585999\n                    }\n                ]\n            },\n            \"Id\": \"1abc9ecc-953f-4108-bdf1-ae18550e7732\",\n            \"Text\": \"and/or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85809326171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010409255512058735,\n                    \"Left\": 0.34444791078567505,\n                    \"Top\": 0.5847861766815186,\n                    \"Width\": 0.07143767923116684\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34444791078567505,\n                        \"Y\": 0.5847861766815186\n                    },\n                    {\n                        \"X\": 0.41588306427001953,\n                        \"Y\": 0.5848298668861389\n                    },\n                    {\n                        \"X\": 0.4158855676651001,\n                        \"Y\": 0.5951954126358032\n                    },\n                    {\n                        \"X\": 0.3444499671459198,\n                        \"Y\": 0.5951515436172485\n                    }\n                ]\n            },\n            \"Id\": \"1a817014-47f3-4321-bfd3-31808bed56e2\",\n            \"Text\": \"Subordinate\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93333435058594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01238946057856083,\n                    \"Left\": 0.4189324676990509,\n                    \"Top\": 0.5848829746246338,\n                    \"Width\": 0.05746093764901161\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4189324676990509,\n                        \"Y\": 0.5848829746246338\n                    },\n                    {\n                        \"X\": 0.47638997435569763,\n                        \"Y\": 0.5849181413650513\n                    },\n                    {\n                        \"X\": 0.4763934314250946,\n                        \"Y\": 0.5972724556922913\n                    },\n                    {\n                        \"X\": 0.41893550753593445,\n                        \"Y\": 0.5972371101379395\n                    }\n                ]\n            },\n            \"Id\": \"dee704a1-6a0e-49d9-bbf0-9ec967c03180\",\n            \"Text\": \"Financing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.67193603515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01225483138114214,\n                    \"Left\": 0.479756236076355,\n                    \"Top\": 0.5850059390068054,\n                    \"Width\": 0.050658874213695526\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.479756236076355,\n                        \"Y\": 0.5850059390068054\n                    },\n                    {\n                        \"X\": 0.5304113030433655,\n                        \"Y\": 0.5850368738174438\n                    },\n                    {\n                        \"X\": 0.5304151177406311,\n                        \"Y\": 0.5972607731819153\n                    },\n                    {\n                        \"X\": 0.47975966334342957,\n                        \"Y\": 0.5972295999526978\n                    }\n                ]\n            },\n            \"Id\": \"26dec191-2cb3-436b-89cc-16442833ea60\",\n            \"Text\": \"(explain)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71849060058594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009458544664084911,\n                    \"Left\": 0.8521528244018555,\n                    \"Top\": 0.5845149755477905,\n                    \"Width\": 0.0479004792869091\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8521528244018555,\n                        \"Y\": 0.5845149755477905\n                    },\n                    {\n                        \"X\": 0.9000483155250549,\n                        \"Y\": 0.5845442414283752\n                    },\n                    {\n                        \"X\": 0.9000533223152161,\n                        \"Y\": 0.5939735174179077\n                    },\n                    {\n                        \"X\": 0.8521575331687927,\n                        \"Y\": 0.5939441323280334\n                    }\n                ]\n            },\n            \"Id\": \"5965f50a-bdf3-420a-bc41-39bd3e273f90\",\n            \"Text\": \"expiration\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.04119873046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010076942853629589,\n                    \"Left\": 0.9026292562484741,\n                    \"Top\": 0.5843815803527832,\n                    \"Width\": 0.026308750733733177\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9026292562484741,\n                        \"Y\": 0.5843815803527832\n                    },\n                    {\n                        \"X\": 0.9289324879646301,\n                        \"Y\": 0.5843976736068726\n                    },\n                    {\n                        \"X\": 0.9289379715919495,\n                        \"Y\": 0.5944585204124451\n                    },\n                    {\n                        \"X\": 0.9026345610618591,\n                        \"Y\": 0.5944423675537109\n                    }\n                ]\n            },\n            \"Id\": \"70eca811-3d0f-4449-9e65-504eda237c7c\",\n            \"Text\": \"date)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78131103515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01327180489897728,\n                    \"Left\": 0.031580016016960144,\n                    \"Top\": 0.5999510288238525,\n                    \"Width\": 0.03987640142440796\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031580016016960144,\n                        \"Y\": 0.5999510288238525\n                    },\n                    {\n                        \"X\": 0.07145589590072632,\n                        \"Y\": 0.5999755859375\n                    },\n                    {\n                        \"X\": 0.0714564174413681,\n                        \"Y\": 0.6132228374481201\n                    },\n                    {\n                        \"X\": 0.03158022090792656,\n                        \"Y\": 0.6131981611251831\n                    }\n                ]\n            },\n            \"Id\": \"124ef363-f342-4e3c-b8c9-3fe4ceb75af7\",\n            \"Text\": \"Salary\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.87522888183594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007075930014252663,\n                    \"Left\": 0.0747351124882698,\n                    \"Top\": 0.6020550727844238,\n                    \"Width\": 0.008335133083164692\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0747351124882698,\n                        \"Y\": 0.6020550727844238\n                    },\n                    {\n                        \"X\": 0.08306992053985596,\n                        \"Y\": 0.6020601987838745\n                    },\n                    {\n                        \"X\": 0.08307024091482162,\n                        \"Y\": 0.6091309785842896\n                    },\n                    {\n                        \"X\": 0.07473540306091309,\n                        \"Y\": 0.6091258525848389\n                    }\n                ]\n            },\n            \"Id\": \"3d291506-f023-41bb-a892-a4f5056889db\",\n            \"Text\": \"+\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87513732910156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012999128550291061,\n                    \"Left\": 0.08680776506662369,\n                    \"Top\": 0.6001887321472168,\n                    \"Width\": 0.04966810718178749\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08680776506662369,\n                        \"Y\": 0.6001887321472168\n                    },\n                    {\n                        \"X\": 0.1364748626947403,\n                        \"Y\": 0.6002193093299866\n                    },\n                    {\n                        \"X\": 0.13647587597370148,\n                        \"Y\": 0.613187849521637\n                    },\n                    {\n                        \"X\": 0.08680839091539383,\n                        \"Y\": 0.6131570935249329\n                    }\n                ]\n            },\n            \"Id\": \"b94ebca0-c270-4507-9be9-8e845b97b99e\",\n            \"Text\": \"Savings\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96639251708984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010448138229548931,\n                    \"Left\": 0.1856619119644165,\n                    \"Top\": 0.631523072719574,\n                    \"Width\": 0.06552687287330627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1856619119644165,\n                        \"Y\": 0.631523072719574\n                    },\n                    {\n                        \"X\": 0.251187264919281,\n                        \"Y\": 0.6315639615058899\n                    },\n                    {\n                        \"X\": 0.2511887848377228,\n                        \"Y\": 0.641971230506897\n                    },\n                    {\n                        \"X\": 0.18566301465034485,\n                        \"Y\": 0.6419301629066467\n                    }\n                ]\n            },\n            \"Id\": \"257b8c91-863c-4d04-90a5-fe4ceffd3f90\",\n            \"Text\": \"Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52969360351562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010614062659442425,\n                    \"Left\": 0.3762921392917633,\n                    \"Top\": 0.6312556266784668,\n                    \"Width\": 0.01642194576561451\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3762921392917633,\n                        \"Y\": 0.6312556266784668\n                    },\n                    {\n                        \"X\": 0.39271166920661926,\n                        \"Y\": 0.6312658786773682\n                    },\n                    {\n                        \"X\": 0.39271408319473267,\n                        \"Y\": 0.6418697237968445\n                    },\n                    {\n                        \"X\": 0.37629446387290955,\n                        \"Y\": 0.6418594121932983\n                    }\n                ]\n            },\n            \"Id\": \"91044934-2374-41b7-bada-695591c203f2\",\n            \"Text\": \"III.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96343231201172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010693615302443504,\n                    \"Left\": 0.39679425954818726,\n                    \"Top\": 0.6312301754951477,\n                    \"Width\": 0.08776873350143433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.39679425954818726,\n                        \"Y\": 0.6312301754951477\n                    },\n                    {\n                        \"X\": 0.4845599830150604,\n                        \"Y\": 0.6312848925590515\n                    },\n                    {\n                        \"X\": 0.4845629930496216,\n                        \"Y\": 0.6419237852096558\n                    },\n                    {\n                        \"X\": 0.39679673314094543,\n                        \"Y\": 0.6418687701225281\n                    }\n                ]\n            },\n            \"Id\": \"4afa481e-3d1e-4baf-877c-9d4c7d28d16c\",\n            \"Text\": \"BORROWER\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92444610595703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010710490867495537,\n                    \"Left\": 0.4880102872848511,\n                    \"Top\": 0.6311922073364258,\n                    \"Width\": 0.10150712728500366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4880102872848511,\n                        \"Y\": 0.6311922073364258\n                    },\n                    {\n                        \"X\": 0.5895137190818787,\n                        \"Y\": 0.6312555074691772\n                    },\n                    {\n                        \"X\": 0.5895174145698547,\n                        \"Y\": 0.6419026851654053\n                    },\n                    {\n                        \"X\": 0.4880133271217346,\n                        \"Y\": 0.6418390870094299\n                    }\n                ]\n            },\n            \"Id\": \"802ce0fb-3236-4af7-9929-e3f9d08dc092\",\n            \"Text\": \"INFORMATION\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78992462158203,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01099130418151617,\n                    \"Left\": 0.7012113928794861,\n                    \"Top\": 0.6311998963356018,\n                    \"Width\": 0.08968552201986313\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7012113928794861,\n                        \"Y\": 0.6311998963356018\n                    },\n                    {\n                        \"X\": 0.7908918857574463,\n                        \"Y\": 0.6312558650970459\n                    },\n                    {\n                        \"X\": 0.7908969521522522,\n                        \"Y\": 0.6421912312507629\n                    },\n                    {\n                        \"X\": 0.701215922832489,\n                        \"Y\": 0.6421350240707397\n                    }\n                ]\n            },\n            \"Id\": \"e97e3d8c-40b6-4c9c-bd24-1a24cb247d45\",\n            \"Text\": \"Co-Borrower\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92263793945312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009856321848928928,\n                    \"Left\": 0.028986096382141113,\n                    \"Top\": 0.6467561721801758,\n                    \"Width\": 0.06263014674186707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028986096382141113,\n                        \"Y\": 0.6467561721801758\n                    },\n                    {\n                        \"X\": 0.09161573648452759,\n                        \"Y\": 0.6467955112457275\n                    },\n                    {\n                        \"X\": 0.09161624312400818,\n                        \"Y\": 0.6566124558448792\n                    },\n                    {\n                        \"X\": 0.028986236080527306,\n                        \"Y\": 0.6565729975700378\n                    }\n                ]\n            },\n            \"Id\": \"4eff9f87-c4e5-4f99-aefb-0cb43107336c\",\n            \"Text\": \"Borrower's\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9363021850586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009624862112104893,\n                    \"Left\": 0.09436856210231781,\n                    \"Top\": 0.6469061374664307,\n                    \"Width\": 0.035495031625032425\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09436856210231781,\n                        \"Y\": 0.6469061374664307\n                    },\n                    {\n                        \"X\": 0.12986288964748383,\n                        \"Y\": 0.6469284296035767\n                    },\n                    {\n                        \"X\": 0.12986359000205994,\n                        \"Y\": 0.656531035900116\n                    },\n                    {\n                        \"X\": 0.0943690687417984,\n                        \"Y\": 0.6565086245536804\n                    }\n                ]\n            },\n            \"Id\": \"013135ba-2878-4c65-8332-ba686a62cc87\",\n            \"Text\": \"Name\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70277404785156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011740082874894142,\n                    \"Left\": 0.13287074863910675,\n                    \"Top\": 0.64667809009552,\n                    \"Width\": 0.04692845791578293\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13287074863910675,\n                        \"Y\": 0.64667809009552\n                    },\n                    {\n                        \"X\": 0.17979799211025238,\n                        \"Y\": 0.6467075347900391\n                    },\n                    {\n                        \"X\": 0.17979919910430908,\n                        \"Y\": 0.6584181785583496\n                    },\n                    {\n                        \"X\": 0.1328716278076172,\n                        \"Y\": 0.6583885550498962\n                    }\n                ]\n            },\n            \"Id\": \"d0852e49-d7f7-4ce9-b7f6-4190e4b8f8df\",\n            \"Text\": \"(include\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.79397583007812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009372342377901077,\n                    \"Left\": 0.18261560797691345,\n                    \"Top\": 0.6471977829933167,\n                    \"Width\": 0.0148392952978611\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18261560797691345,\n                        \"Y\": 0.6471977829933167\n                    },\n                    {\n                        \"X\": 0.1974538415670395,\n                        \"Y\": 0.6472071409225464\n                    },\n                    {\n                        \"X\": 0.19745489954948425,\n                        \"Y\": 0.6565701365470886\n                    },\n                    {\n                        \"X\": 0.18261659145355225,\n                        \"Y\": 0.6565607786178589\n                    }\n                ]\n            },\n            \"Id\": \"0548bcc3-efe1-4267-9b38-04acdab6b5a5\",\n            \"Text\": \"Jr.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.41648864746094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007278934586793184,\n                    \"Left\": 0.2008265107870102,\n                    \"Top\": 0.6490183472633362,\n                    \"Width\": 0.012794730253517628\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2008265107870102,\n                        \"Y\": 0.6490183472633362\n                    },\n                    {\n                        \"X\": 0.2136203497648239,\n                        \"Y\": 0.6490263938903809\n                    },\n                    {\n                        \"X\": 0.21362124383449554,\n                        \"Y\": 0.6562972664833069\n                    },\n                    {\n                        \"X\": 0.20082736015319824,\n                        \"Y\": 0.6562892198562622\n                    }\n                ]\n            },\n            \"Id\": \"394ea23a-0e7c-4305-9b06-7a0bc216a03d\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.055908203125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009632961824536324,\n                    \"Left\": 0.2164013534784317,\n                    \"Top\": 0.6468369960784912,\n                    \"Width\": 0.016470162197947502\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2164013534784317,\n                        \"Y\": 0.6468369960784912\n                    },\n                    {\n                        \"X\": 0.2328702211380005,\n                        \"Y\": 0.6468473672866821\n                    },\n                    {\n                        \"X\": 0.23287151753902435,\n                        \"Y\": 0.656470000743866\n                    },\n                    {\n                        \"X\": 0.2164025455713272,\n                        \"Y\": 0.6564595699310303\n                    }\n                ]\n            },\n            \"Id\": \"8c84dae1-cf6e-499d-9b52-b036d613bc6c\",\n            \"Text\": \"Sr.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.38743591308594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009455219842493534,\n                    \"Left\": 0.23641926050186157,\n                    \"Top\": 0.6467239856719971,\n                    \"Width\": 0.008271396160125732\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23641926050186157,\n                        \"Y\": 0.6467239856719971\n                    },\n                    {\n                        \"X\": 0.24468931555747986,\n                        \"Y\": 0.6467292308807373\n                    },\n                    {\n                        \"X\": 0.2446906566619873,\n                        \"Y\": 0.6561792492866516\n                    },\n                    {\n                        \"X\": 0.23642055690288544,\n                        \"Y\": 0.6561740040779114\n                    }\n                ]\n            },\n            \"Id\": \"ab0eeee4-c656-4c91-b11b-cff0c4595cbf\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71664428710938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011987367644906044,\n                    \"Left\": 0.24717843532562256,\n                    \"Top\": 0.6468567848205566,\n                    \"Width\": 0.0643000528216362\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24717843532562256,\n                        \"Y\": 0.6468567848205566\n                    },\n                    {\n                        \"X\": 0.31147632002830505,\n                        \"Y\": 0.6468971371650696\n                    },\n                    {\n                        \"X\": 0.31147849559783936,\n                        \"Y\": 0.6588441133499146\n                    },\n                    {\n                        \"X\": 0.24718014895915985,\n                        \"Y\": 0.6588035225868225\n                    }\n                ]\n            },\n            \"Id\": \"cd6cd51e-8fa9-40a3-978c-f6d7cdc6f2e6\",\n            \"Text\": \"applicable)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.71468353271484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010113316588103771,\n                    \"Left\": 0.49807173013687134,\n                    \"Top\": 0.6465837955474854,\n                    \"Width\": 0.08405298739671707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49807173013687134,\n                        \"Y\": 0.6465837955474854\n                    },\n                    {\n                        \"X\": 0.5821212530136108,\n                        \"Y\": 0.6466366052627563\n                    },\n                    {\n                        \"X\": 0.5821247100830078,\n                        \"Y\": 0.6566970944404602\n                    },\n                    {\n                        \"X\": 0.49807465076446533,\n                        \"Y\": 0.6566441059112549\n                    }\n                ]\n            },\n            \"Id\": \"5486c5c7-81a1-460b-8583-10c00f99b4bc\",\n            \"Text\": \"Co-Borrower's\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90483856201172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009633402340114117,\n                    \"Left\": 0.5852910876274109,\n                    \"Top\": 0.6468268036842346,\n                    \"Width\": 0.035016950219869614\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5852910876274109,\n                        \"Y\": 0.6468268036842346\n                    },\n                    {\n                        \"X\": 0.620304524898529,\n                        \"Y\": 0.6468487977981567\n                    },\n                    {\n                        \"X\": 0.6203080415725708,\n                        \"Y\": 0.6564602255821228\n                    },\n                    {\n                        \"X\": 0.5852943658828735,\n                        \"Y\": 0.6564381718635559\n                    }\n                ]\n            },\n            \"Id\": \"e8c600f6-516c-48bc-bd6b-f29787fca137\",\n            \"Text\": \"Name\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89535522460938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012050270102918148,\n                    \"Left\": 0.6234831809997559,\n                    \"Top\": 0.6465244293212891,\n                    \"Width\": 0.0465446338057518\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6234831809997559,\n                        \"Y\": 0.6465244293212891\n                    },\n                    {\n                        \"X\": 0.6700230836868286,\n                        \"Y\": 0.646553635597229\n                    },\n                    {\n                        \"X\": 0.6700278520584106,\n                        \"Y\": 0.6585747003555298\n                    },\n                    {\n                        \"X\": 0.6234875917434692,\n                        \"Y\": 0.6585453152656555\n                    }\n                ]\n            },\n            \"Id\": \"23071399-3347-4536-b90a-9a58565a3e48\",\n            \"Text\": \"(include\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.78988647460938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009442306123673916,\n                    \"Left\": 0.6729931235313416,\n                    \"Top\": 0.6470304727554321,\n                    \"Width\": 0.01527316402643919\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6729931235313416,\n                        \"Y\": 0.6470304727554321\n                    },\n                    {\n                        \"X\": 0.6882624626159668,\n                        \"Y\": 0.647040069103241\n                    },\n                    {\n                        \"X\": 0.6882662773132324,\n                        \"Y\": 0.6564728021621704\n                    },\n                    {\n                        \"X\": 0.6729968190193176,\n                        \"Y\": 0.6564631462097168\n                    }\n                ]\n            },\n            \"Id\": \"ac49d652-321c-49f8-aa07-f27bf0f3dbcf\",\n            \"Text\": \"Jr.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81600189208984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007466047070920467,\n                    \"Left\": 0.6916037797927856,\n                    \"Top\": 0.6489203572273254,\n                    \"Width\": 0.012530169449746609\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6916037797927856,\n                        \"Y\": 0.6489203572273254\n                    },\n                    {\n                        \"X\": 0.7041308879852295,\n                        \"Y\": 0.6489282250404358\n                    },\n                    {\n                        \"X\": 0.704133927822113,\n                        \"Y\": 0.6563863754272461\n                    },\n                    {\n                        \"X\": 0.6916068196296692,\n                        \"Y\": 0.6563785076141357\n                    }\n                ]\n            },\n            \"Id\": \"1dceb08e-874c-443e-84f9-3ec09b62806d\",\n            \"Text\": \"or\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.11603546142578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009736152365803719,\n                    \"Left\": 0.7071784734725952,\n                    \"Top\": 0.6466525793075562,\n                    \"Width\": 0.016760701313614845\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7071784734725952,\n                        \"Y\": 0.6466525793075562\n                    },\n                    {\n                        \"X\": 0.723935067653656,\n                        \"Y\": 0.6466631293296814\n                    },\n                    {\n                        \"X\": 0.7239391803741455,\n                        \"Y\": 0.6563887596130371\n                    },\n                    {\n                        \"X\": 0.7071825265884399,\n                        \"Y\": 0.6563781499862671\n                    }\n                ]\n            },\n            \"Id\": \"e846d977-5379-45b4-b2d8-404531aa0cc6\",\n            \"Text\": \"Sr.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65882110595703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00952544342726469,\n                    \"Left\": 0.7278558611869812,\n                    \"Top\": 0.6464636921882629,\n                    \"Width\": 0.007355223409831524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7278558611869812,\n                        \"Y\": 0.6464636921882629\n                    },\n                    {\n                        \"X\": 0.7352069616317749,\n                        \"Y\": 0.6464682817459106\n                    },\n                    {\n                        \"X\": 0.7352110743522644,\n                        \"Y\": 0.6559891104698181\n                    },\n                    {\n                        \"X\": 0.7278599143028259,\n                        \"Y\": 0.6559844613075256\n                    }\n                ]\n            },\n            \"Id\": \"a80c2624-8373-4441-8ef8-184b9a109f70\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.53824615478516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012139638885855675,\n                    \"Left\": 0.7374638915061951,\n                    \"Top\": 0.6465507745742798,\n                    \"Width\": 0.06441789120435715\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7374638915061951,\n                        \"Y\": 0.6465507745742798\n                    },\n                    {\n                        \"X\": 0.8018760681152344,\n                        \"Y\": 0.6465912461280823\n                    },\n                    {\n                        \"X\": 0.8018817901611328,\n                        \"Y\": 0.6586904525756836\n                    },\n                    {\n                        \"X\": 0.7374691367149353,\n                        \"Y\": 0.6586498022079468\n                    }\n                ]\n            },\n            \"Id\": \"7f7dff4a-5334-4f7d-b7bb-3cb2773085d6\",\n            \"Text\": \"applicable)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86854553222656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010586441494524479,\n                    \"Left\": 0.031201940029859543,\n                    \"Top\": 0.6640040874481201,\n                    \"Width\": 0.040197473019361496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031201940029859543,\n                        \"Y\": 0.6640040874481201\n                    },\n                    {\n                        \"X\": 0.07139900326728821,\n                        \"Y\": 0.6640295386314392\n                    },\n                    {\n                        \"X\": 0.07139941304922104,\n                        \"Y\": 0.674590528011322\n                    },\n                    {\n                        \"X\": 0.031202102079987526,\n                        \"Y\": 0.6745650172233582\n                    }\n                ]\n            },\n            \"Id\": \"412c0a72-1c20-4ed9-9fc7-4fd8e8a52d2e\",\n            \"Text\": \"Carlos\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84532928466797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01092812791466713,\n                    \"Left\": 0.07507990300655365,\n                    \"Top\": 0.6637977957725525,\n                    \"Width\": 0.04810772091150284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07507990300655365,\n                        \"Y\": 0.6637977957725525\n                    },\n                    {\n                        \"X\": 0.1231868639588356,\n                        \"Y\": 0.6638281941413879\n                    },\n                    {\n                        \"X\": 0.12318762391805649,\n                        \"Y\": 0.6747258901596069\n                    },\n                    {\n                        \"X\": 0.07508035749197006,\n                        \"Y\": 0.6746953129768372\n                    }\n                ]\n            },\n            \"Id\": \"0f503fcd-c496-4123-b593-ccf646fba397\",\n            \"Text\": \"Salazar\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91110229492188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010291974991559982,\n                    \"Left\": 0.5003993511199951,\n                    \"Top\": 0.6641669869422913,\n                    \"Width\": 0.024334821850061417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5003993511199951,\n                        \"Y\": 0.6641669869422913\n                    },\n                    {\n                        \"X\": 0.5247309803962708,\n                        \"Y\": 0.6641823649406433\n                    },\n                    {\n                        \"X\": 0.5247341394424438,\n                        \"Y\": 0.674458920955658\n                    },\n                    {\n                        \"X\": 0.5004023313522339,\n                        \"Y\": 0.6744434833526611\n                    }\n                ]\n            },\n            \"Id\": \"c1b1ea86-b20d-4615-bbd1-95eb5e1fb856\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8282241821289,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009602406993508339,\n                    \"Left\": 0.02886977232992649,\n                    \"Top\": 0.6862442493438721,\n                    \"Width\": 0.03288492187857628\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02886977232992649,\n                        \"Y\": 0.6862442493438721\n                    },\n                    {\n                        \"X\": 0.06175437197089195,\n                        \"Y\": 0.6862652897834778\n                    },\n                    {\n                        \"X\": 0.06175469234585762,\n                        \"Y\": 0.695846676826477\n                    },\n                    {\n                        \"X\": 0.028869906440377235,\n                        \"Y\": 0.6958255767822266\n                    }\n                ]\n            },\n            \"Id\": \"21967552-743a-48a1-b1d6-ef7a3f748dd1\",\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95570373535156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01143602468073368,\n                    \"Left\": 0.06416454911231995,\n                    \"Top\": 0.6863194704055786,\n                    \"Width\": 0.04409001022577286\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.06416454911231995,\n                        \"Y\": 0.6863194704055786\n                    },\n                    {\n                        \"X\": 0.10825386643409729,\n                        \"Y\": 0.6863476037979126\n                    },\n                    {\n                        \"X\": 0.1082545593380928,\n                        \"Y\": 0.6977555155754089\n                    },\n                    {\n                        \"X\": 0.06416494399309158,\n                        \"Y\": 0.6977272033691406\n                    }\n                ]\n            },\n            \"Id\": \"5f078e06-ce86-47d2-b32e-1486b5615076\",\n            \"Text\": \"Security\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86481475830078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009312013164162636,\n                    \"Left\": 0.11080804467201233,\n                    \"Top\": 0.6864842772483826,\n                    \"Width\": 0.04207374155521393\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11080804467201233,\n                        \"Y\": 0.6864842772483826\n                    },\n                    {\n                        \"X\": 0.1528809815645218,\n                        \"Y\": 0.6865111589431763\n                    },\n                    {\n                        \"X\": 0.15288178622722626,\n                        \"Y\": 0.6957963109016418\n                    },\n                    {\n                        \"X\": 0.11080862581729889,\n                        \"Y\": 0.6957693099975586\n                    }\n                ]\n            },\n            \"Id\": \"a30afe4d-e244-4744-bc00-da22f81a8146\",\n            \"Text\": \"Number\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9516830444336,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009139690548181534,\n                    \"Left\": 0.16013433039188385,\n                    \"Top\": 0.6865547895431519,\n                    \"Width\": 0.03242294117808342\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16013433039188385,\n                        \"Y\": 0.6865547895431519\n                    },\n                    {\n                        \"X\": 0.1925562620162964,\n                        \"Y\": 0.6865755319595337\n                    },\n                    {\n                        \"X\": 0.19255726039409637,\n                        \"Y\": 0.6956945061683655\n                    },\n                    {\n                        \"X\": 0.1601351648569107,\n                        \"Y\": 0.6956737041473389\n                    }\n                ]\n            },\n            \"Id\": \"7fffa2c2-9061-43d8-950b-38a6cb1b76c5\",\n            \"Text\": \"Home\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88336181640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009389950893819332,\n                    \"Left\": 0.19533967971801758,\n                    \"Top\": 0.6863973736763,\n                    \"Width\": 0.034720927476882935\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19533967971801758,\n                        \"Y\": 0.6863973736763\n                    },\n                    {\n                        \"X\": 0.23005935549736023,\n                        \"Y\": 0.6864195466041565\n                    },\n                    {\n                        \"X\": 0.2300606071949005,\n                        \"Y\": 0.6957873702049255\n                    },\n                    {\n                        \"X\": 0.19534072279930115,\n                        \"Y\": 0.6957650780677795\n                    }\n                ]\n            },\n            \"Id\": \"a670e9dc-5c3e-4e4e-b79c-0f02123c2444\",\n            \"Text\": \"Phone\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 79.07246398925781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011048023588955402,\n                    \"Left\": 0.23270133137702942,\n                    \"Top\": 0.6864337921142578,\n                    \"Width\": 0.025454390794038773\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23270133137702942,\n                        \"Y\": 0.6864337921142578\n                    },\n                    {\n                        \"X\": 0.2581540644168854,\n                        \"Y\": 0.6864500641822815\n                    },\n                    {\n                        \"X\": 0.2581557333469391,\n                        \"Y\": 0.6974818110466003\n                    },\n                    {\n                        \"X\": 0.2327028214931488,\n                        \"Y\": 0.6974654793739319\n                    }\n                ]\n            },\n            \"Id\": \"4d997719-3c22-4b3d-a89b-7a3f6016ad80\",\n            \"Text\": \"(incl.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86625671386719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007280096411705017,\n                    \"Left\": 0.26099535822868347,\n                    \"Top\": 0.6885048151016235,\n                    \"Width\": 0.024906713515520096\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26099535822868347,\n                        \"Y\": 0.6885048151016235\n                    },\n                    {\n                        \"X\": 0.28590086102485657,\n                        \"Y\": 0.6885207295417786\n                    },\n                    {\n                        \"X\": 0.2859020531177521,\n                        \"Y\": 0.6957849264144897\n                    },\n                    {\n                        \"X\": 0.26099643111228943,\n                        \"Y\": 0.6957689523696899\n                    }\n                ]\n            },\n            \"Id\": \"fdcc3e16-4e41-4a69-a308-091532ff397d\",\n            \"Text\": \"area\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7693099975586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0107795475050807,\n                    \"Left\": 0.28847312927246094,\n                    \"Top\": 0.6866186261177063,\n                    \"Width\": 0.02971974015235901\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28847312927246094,\n                        \"Y\": 0.6866186261177063\n                    },\n                    {\n                        \"X\": 0.31819087266921997,\n                        \"Y\": 0.6866375803947449\n                    },\n                    {\n                        \"X\": 0.31819286942481995,\n                        \"Y\": 0.6973981261253357\n                    },\n                    {\n                        \"X\": 0.2884749174118042,\n                        \"Y\": 0.6973791122436523\n                    }\n                ]\n            },\n            \"Id\": \"6fd77af1-9cd3-424d-8058-6193774a6ab5\",\n            \"Text\": \"code)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84495544433594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009271452203392982,\n                    \"Left\": 0.3243992030620575,\n                    \"Top\": 0.6863877773284912,\n                    \"Width\": 0.026484237983822823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3243992030620575,\n                        \"Y\": 0.6863877773284912\n                    },\n                    {\n                        \"X\": 0.35088154673576355,\n                        \"Y\": 0.6864047050476074\n                    },\n                    {\n                        \"X\": 0.35088345408439636,\n                        \"Y\": 0.6956592202186584\n                    },\n                    {\n                        \"X\": 0.32440096139907837,\n                        \"Y\": 0.6956422328948975\n                    }\n                ]\n            },\n            \"Id\": \"e747b370-af9d-4872-b348-8f1618cf4f4a\",\n            \"Text\": \"DOB\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79212188720703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011556997895240784,\n                    \"Left\": 0.3535007834434509,\n                    \"Top\": 0.6861227750778198,\n                    \"Width\": 0.07066590338945389\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3535007834434509,\n                        \"Y\": 0.6861227750778198\n                    },\n                    {\n                        \"X\": 0.424163818359375,\n                        \"Y\": 0.6861678957939148\n                    },\n                    {\n                        \"X\": 0.4241666793823242,\n                        \"Y\": 0.6976797580718994\n                    },\n                    {\n                        \"X\": 0.35350313782691956,\n                        \"Y\": 0.6976344585418701\n                    }\n                ]\n            },\n            \"Id\": \"bc9c3727-be46-4e34-bc24-4694352feed4\",\n            \"Text\": \"(mm/dd/yyyy)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 81.44076538085938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009243205189704895,\n                    \"Left\": 0.42844724655151367,\n                    \"Top\": 0.6865755915641785,\n                    \"Width\": 0.021008793264627457\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42844724655151367,\n                        \"Y\": 0.6865755915641785\n                    },\n                    {\n                        \"X\": 0.4494536221027374,\n                        \"Y\": 0.6865890026092529\n                    },\n                    {\n                        \"X\": 0.44945603609085083,\n                        \"Y\": 0.6958188414573669\n                    },\n                    {\n                        \"X\": 0.4284495413303375,\n                        \"Y\": 0.6958053708076477\n                    }\n                ]\n            },\n            \"Id\": \"7fc4a198-6e82-45a0-a9c9-6930f8e0c0b5\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93426513671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009439847432076931,\n                    \"Left\": 0.45257776975631714,\n                    \"Top\": 0.6862545013427734,\n                    \"Width\": 0.03668682649731636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.45257776975631714,\n                        \"Y\": 0.6862545013427734\n                    },\n                    {\n                        \"X\": 0.4892619252204895,\n                        \"Y\": 0.6862779259681702\n                    },\n                    {\n                        \"X\": 0.4892646074295044,\n                        \"Y\": 0.6956943869590759\n                    },\n                    {\n                        \"X\": 0.4525802731513977,\n                        \"Y\": 0.6956708431243896\n                    }\n                ]\n            },\n            \"Id\": \"184ec93a-965f-4369-9773-c1588f0923d3\",\n            \"Text\": \"School\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88108825683594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009286804124712944,\n                    \"Left\": 0.49826085567474365,\n                    \"Top\": 0.6863031387329102,\n                    \"Width\": 0.033216673880815506\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49826085567474365,\n                        \"Y\": 0.6863031387329102\n                    },\n                    {\n                        \"X\": 0.5314746499061584,\n                        \"Y\": 0.6863243579864502\n                    },\n                    {\n                        \"X\": 0.5314775109291077,\n                        \"Y\": 0.6955899596214294\n                    },\n                    {\n                        \"X\": 0.49826356768608093,\n                        \"Y\": 0.6955686211585999\n                    }\n                ]\n            },\n            \"Id\": \"86d71ba5-bce6-4eac-8f4c-3cc23b36d8e2\",\n            \"Text\": \"Social\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95358276367188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011205346323549747,\n                    \"Left\": 0.5341734886169434,\n                    \"Top\": 0.6864824891090393,\n                    \"Width\": 0.04333242401480675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5341734886169434,\n                        \"Y\": 0.6864824891090393\n                    },\n                    {\n                        \"X\": 0.5775021314620972,\n                        \"Y\": 0.6865101456642151\n                    },\n                    {\n                        \"X\": 0.5775059461593628,\n                        \"Y\": 0.6976878046989441\n                    },\n                    {\n                        \"X\": 0.5341770052909851,\n                        \"Y\": 0.6976600289344788\n                    }\n                ]\n            },\n            \"Id\": \"37ef699c-5c14-4467-a0a7-feb4d324487b\",\n            \"Text\": \"Security\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88155364990234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009031672030687332,\n                    \"Left\": 0.579684853553772,\n                    \"Top\": 0.6865745782852173,\n                    \"Width\": 0.042893052101135254\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.579684853553772,\n                        \"Y\": 0.6865745782852173\n                    },\n                    {\n                        \"X\": 0.6225746273994446,\n                        \"Y\": 0.686601996421814\n                    },\n                    {\n                        \"X\": 0.6225779056549072,\n                        \"Y\": 0.6956062912940979\n                    },\n                    {\n                        \"X\": 0.5796879529953003,\n                        \"Y\": 0.6955787539482117\n                    }\n                ]\n            },\n            \"Id\": \"7b5b2457-7e12-4ef7-8838-960ec10b23b3\",\n            \"Text\": \"Number\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93594360351562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008911260403692722,\n                    \"Left\": 0.6309806108474731,\n                    \"Top\": 0.6866726875305176,\n                    \"Width\": 0.03220133110880852\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6309806108474731,\n                        \"Y\": 0.6866726875305176\n                    },\n                    {\n                        \"X\": 0.6631785035133362,\n                        \"Y\": 0.6866932511329651\n                    },\n                    {\n                        \"X\": 0.6631819605827332,\n                        \"Y\": 0.6955839395523071\n                    },\n                    {\n                        \"X\": 0.6309838891029358,\n                        \"Y\": 0.6955633163452148\n                    }\n                ]\n            },\n            \"Id\": \"4c87574e-15d4-4f70-b7a0-c4d390170f25\",\n            \"Text\": \"Home\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68941497802734,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009189557284116745,\n                    \"Left\": 0.6655685305595398,\n                    \"Top\": 0.6864795684814453,\n                    \"Width\": 0.03417842835187912\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6655685305595398,\n                        \"Y\": 0.6864795684814453\n                    },\n                    {\n                        \"X\": 0.6997432112693787,\n                        \"Y\": 0.6865013837814331\n                    },\n                    {\n                        \"X\": 0.6997469663619995,\n                        \"Y\": 0.6956691741943359\n                    },\n                    {\n                        \"X\": 0.6655721068382263,\n                        \"Y\": 0.6956472396850586\n                    }\n                ]\n            },\n            \"Id\": \"91be6586-7695-4835-a4b6-b0f83f74fd0b\",\n            \"Text\": \"Phone\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.85850524902344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010685829445719719,\n                    \"Left\": 0.7020668983459473,\n                    \"Top\": 0.6866100430488586,\n                    \"Width\": 0.024639848619699478\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7020668983459473,\n                        \"Y\": 0.6866100430488586\n                    },\n                    {\n                        \"X\": 0.7267022132873535,\n                        \"Y\": 0.6866257786750793\n                    },\n                    {\n                        \"X\": 0.7267067432403564,\n                        \"Y\": 0.6972959041595459\n                    },\n                    {\n                        \"X\": 0.7020713090896606,\n                        \"Y\": 0.6972801089286804\n                    }\n                ]\n            },\n            \"Id\": \"9458017c-5c2b-438b-9c93-acd34e5efaa9\",\n            \"Text\": \"(incl.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85270690917969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.007042020093649626,\n                    \"Left\": 0.7291058897972107,\n                    \"Top\": 0.6886877417564392,\n                    \"Width\": 0.024327946826815605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7291058897972107,\n                        \"Y\": 0.6886877417564392\n                    },\n                    {\n                        \"X\": 0.7534307241439819,\n                        \"Y\": 0.6887032985687256\n                    },\n                    {\n                        \"X\": 0.753433883190155,\n                        \"Y\": 0.6957297921180725\n                    },\n                    {\n                        \"X\": 0.7291089296340942,\n                        \"Y\": 0.6957141757011414\n                    }\n                ]\n            },\n            \"Id\": \"71dc1374-b943-45a4-994f-87bc39e332ec\",\n            \"Text\": \"area\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82658386230469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010784088633954525,\n                    \"Left\": 0.7557628750801086,\n                    \"Top\": 0.686623215675354,\n                    \"Width\": 0.029820356518030167\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7557628750801086,\n                        \"Y\": 0.686623215675354\n                    },\n                    {\n                        \"X\": 0.7855782508850098,\n                        \"Y\": 0.6866422295570374\n                    },\n                    {\n                        \"X\": 0.7855831980705261,\n                        \"Y\": 0.6974073052406311\n                    },\n                    {\n                        \"X\": 0.7557676434516907,\n                        \"Y\": 0.6973881721496582\n                    }\n                ]\n            },\n            \"Id\": \"2e6f8ed5-68d2-4457-b744-1826c60491a7\",\n            \"Text\": \"code)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87065124511719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009262081235647202,\n                    \"Left\": 0.7928788661956787,\n                    \"Top\": 0.6863957643508911,\n                    \"Width\": 0.026214562356472015\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7928788661956787,\n                        \"Y\": 0.6863957643508911\n                    },\n                    {\n                        \"X\": 0.8190889954566956,\n                        \"Y\": 0.6864124536514282\n                    },\n                    {\n                        \"X\": 0.8190934062004089,\n                        \"Y\": 0.6956578493118286\n                    },\n                    {\n                        \"X\": 0.7928831577301025,\n                        \"Y\": 0.695641040802002\n                    }\n                ]\n            },\n            \"Id\": \"d80dc99f-2a68-463d-ad64-04f84934cc16\",\n            \"Text\": \"DOB\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85800170898438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0116129694506526,\n                    \"Left\": 0.8219347596168518,\n                    \"Top\": 0.6863293051719666,\n                    \"Width\": 0.07071200758218765\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8219347596168518,\n                        \"Y\": 0.6863293051719666\n                    },\n                    {\n                        \"X\": 0.8926407098770142,\n                        \"Y\": 0.6863744258880615\n                    },\n                    {\n                        \"X\": 0.8926467895507812,\n                        \"Y\": 0.6979422569274902\n                    },\n                    {\n                        \"X\": 0.8219403624534607,\n                        \"Y\": 0.6978968977928162\n                    }\n                ]\n            },\n            \"Id\": \"dbdf48d7-61c6-4537-866a-4df9ba228d7e\",\n            \"Text\": \"(mm/dd/yyyy)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.97144317626953,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009159841574728489,\n                    \"Left\": 0.8975833058357239,\n                    \"Top\": 0.6864533424377441,\n                    \"Width\": 0.021026531234383583\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8975833058357239,\n                        \"Y\": 0.6864533424377441\n                    },\n                    {\n                        \"X\": 0.9186049103736877,\n                        \"Y\": 0.6864667534828186\n                    },\n                    {\n                        \"X\": 0.9186098575592041,\n                        \"Y\": 0.6956132054328918\n                    },\n                    {\n                        \"X\": 0.8975881338119507,\n                        \"Y\": 0.6955997347831726\n                    }\n                ]\n            },\n            \"Id\": \"5a9943c9-49cd-4df2-9a80-7e4adde28972\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93705749511719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009520728141069412,\n                    \"Left\": 0.92186039686203,\n                    \"Top\": 0.6862336993217468,\n                    \"Width\": 0.03774759918451309\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.92186039686203,\n                        \"Y\": 0.6862336993217468\n                    },\n                    {\n                        \"X\": 0.9596026539802551,\n                        \"Y\": 0.6862578392028809\n                    },\n                    {\n                        \"X\": 0.9596080183982849,\n                        \"Y\": 0.6957544684410095\n                    },\n                    {\n                        \"X\": 0.9218655824661255,\n                        \"Y\": 0.6957302689552307\n                    }\n                ]\n            },\n            \"Id\": \"876fc3f6-9aac-4dbd-bf52-5294efb0ac3d\",\n            \"Text\": \"School\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82038879394531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010255850851535797,\n                    \"Left\": 0.029408155009150505,\n                    \"Top\": 0.7034928202629089,\n                    \"Width\": 0.07983744144439697\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029408155009150505,\n                        \"Y\": 0.7034928202629089\n                    },\n                    {\n                        \"X\": 0.10924496501684189,\n                        \"Y\": 0.7035441398620605\n                    },\n                    {\n                        \"X\": 0.10924559831619263,\n                        \"Y\": 0.7137486338615417\n                    },\n                    {\n                        \"X\": 0.029408302158117294,\n                        \"Y\": 0.713697075843811\n                    }\n                ]\n            },\n            \"Id\": \"957ea42a-0c89-4cb6-a8f7-902184f627ba\",\n            \"Text\": \"999-99-9999\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 92.53797912597656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00904286839067936,\n                    \"Left\": 0.16348418593406677,\n                    \"Top\": 0.7040287256240845,\n                    \"Width\": 0.013861579820513725\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16348418593406677,\n                        \"Y\": 0.7040287256240845\n                    },\n                    {\n                        \"X\": 0.17734485864639282,\n                        \"Y\": 0.704037606716156\n                    },\n                    {\n                        \"X\": 0.17734576761722565,\n                        \"Y\": 0.7130715847015381\n                    },\n                    {\n                        \"X\": 0.16348503530025482,\n                        \"Y\": 0.7130626440048218\n                    }\n                ]\n            },\n            \"Id\": \"ecda1df9-6957-4f38-8677-4d91b6704edc\",\n            \"Text\": \"+1\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83770751953125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010476258583366871,\n                    \"Left\": 0.18256840109825134,\n                    \"Top\": 0.7033043503761292,\n                    \"Width\": 0.0871269479393959\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18256840109825134,\n                        \"Y\": 0.7033043503761292\n                    },\n                    {\n                        \"X\": 0.2696937024593353,\n                        \"Y\": 0.703360378742218\n                    },\n                    {\n                        \"X\": 0.26969534158706665,\n                        \"Y\": 0.7137806415557861\n                    },\n                    {\n                        \"X\": 0.1825694888830185,\n                        \"Y\": 0.7137243747711182\n                    }\n                ]\n            },\n            \"Id\": \"55e35b5d-0d40-4660-917d-e5de345df8f3\",\n            \"Text\": \"123-456-7890\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87483978271484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009990944527089596,\n                    \"Left\": 0.3268856108188629,\n                    \"Top\": 0.703549861907959,\n                    \"Width\": 0.061593376100063324\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3268856108188629,\n                        \"Y\": 0.703549861907959\n                    },\n                    {\n                        \"X\": 0.38847672939300537,\n                        \"Y\": 0.7035894989967346\n                    },\n                    {\n                        \"X\": 0.38847896456718445,\n                        \"Y\": 0.71354079246521\n                    },\n                    {\n                        \"X\": 0.32688748836517334,\n                        \"Y\": 0.7135010361671448\n                    }\n                ]\n            },\n            \"Id\": \"e52cfe5e-f7e6-4aa6-ae77-1931c7a5a38d\",\n            \"Text\": \"1/18/1958\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94857025146484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009996534325182438,\n                    \"Left\": 0.43266916275024414,\n                    \"Top\": 0.703540027141571,\n                    \"Width\": 0.014878752641379833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43266916275024414,\n                        \"Y\": 0.703540027141571\n                    },\n                    {\n                        \"X\": 0.4475453197956085,\n                        \"Y\": 0.7035496234893799\n                    },\n                    {\n                        \"X\": 0.44754791259765625,\n                        \"Y\": 0.7135365605354309\n                    },\n                    {\n                        \"X\": 0.4326716959476471,\n                        \"Y\": 0.7135269641876221\n                    }\n                ]\n            },\n            \"Id\": \"4f5ac4bc-0071-4200-a1d1-5747feefe542\",\n            \"Text\": \"12\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8843765258789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01007262896746397,\n                    \"Left\": 0.4987274706363678,\n                    \"Top\": 0.7033964395523071,\n                    \"Width\": 0.024281758815050125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4987274706363678,\n                        \"Y\": 0.7033964395523071\n                    },\n                    {\n                        \"X\": 0.5230061411857605,\n                        \"Y\": 0.7034120559692383\n                    },\n                    {\n                        \"X\": 0.5230092406272888,\n                        \"Y\": 0.7134690880775452\n                    },\n                    {\n                        \"X\": 0.4987303912639618,\n                        \"Y\": 0.7134534120559692\n                    }\n                ]\n            },\n            \"Id\": \"e63d4318-3b48-45c7-b1b9-b5c20398a1c1\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87014770507812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01026584580540657,\n                    \"Left\": 0.6326461434364319,\n                    \"Top\": 0.7033664584159851,\n                    \"Width\": 0.024186013266444206\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6326461434364319,\n                        \"Y\": 0.7033664584159851\n                    },\n                    {\n                        \"X\": 0.6568282246589661,\n                        \"Y\": 0.7033820152282715\n                    },\n                    {\n                        \"X\": 0.6568321585655212,\n                        \"Y\": 0.7136322855949402\n                    },\n                    {\n                        \"X\": 0.6326499581336975,\n                        \"Y\": 0.7136167287826538\n                    }\n                ]\n            },\n            \"Id\": \"acb1b2cd-9848-4cb2-93f8-30d8d03f3ca3\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85660552978516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010187970474362373,\n                    \"Left\": 0.7944298982620239,\n                    \"Top\": 0.7034378051757812,\n                    \"Width\": 0.023712897673249245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7944298982620239,\n                        \"Y\": 0.7034378051757812\n                    },\n                    {\n                        \"X\": 0.8181378841400146,\n                        \"Y\": 0.7034530639648438\n                    },\n                    {\n                        \"X\": 0.8181427717208862,\n                        \"Y\": 0.7136257886886597\n                    },\n                    {\n                        \"X\": 0.7944346070289612,\n                        \"Y\": 0.7136104702949524\n                    }\n                ]\n            },\n            \"Id\": \"25138754-290c-42e7-9481-c14b2843767d\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86756896972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010151931084692478,\n                    \"Left\": 0.8997962474822998,\n                    \"Top\": 0.7034041881561279,\n                    \"Width\": 0.023997481912374496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8997962474822998,\n                        \"Y\": 0.7034041881561279\n                    },\n                    {\n                        \"X\": 0.9237882494926453,\n                        \"Y\": 0.7034196257591248\n                    },\n                    {\n                        \"X\": 0.9237937331199646,\n                        \"Y\": 0.7135561108589172\n                    },\n                    {\n                        \"X\": 0.8998016119003296,\n                        \"Y\": 0.7135406136512756\n                    }\n                ]\n            },\n            \"Id\": \"3493e480-ce00-4d92-b437-40b64bf4354e\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75011444091797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01162043772637844,\n                    \"Left\": 0.34193915128707886,\n                    \"Top\": 0.722829282283783,\n                    \"Width\": 0.0710391104221344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34193915128707886,\n                        \"Y\": 0.722829282283783\n                    },\n                    {\n                        \"X\": 0.4129754900932312,\n                        \"Y\": 0.7228752970695496\n                    },\n                    {\n                        \"X\": 0.41297826170921326,\n                        \"Y\": 0.7344497442245483\n                    },\n                    {\n                        \"X\": 0.3419414758682251,\n                        \"Y\": 0.7344034314155579\n                    }\n                ]\n            },\n            \"Id\": \"f642c6d2-fbc7-4395-ab16-7fe44dc51346\",\n            \"Text\": \"Dependents\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.94157409667969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009204285219311714,\n                    \"Left\": 0.41663965582847595,\n                    \"Top\": 0.7218090891838074,\n                    \"Width\": 0.02065366879105568\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41663965582847595,\n                        \"Y\": 0.7218090891838074\n                    },\n                    {\n                        \"X\": 0.4372909665107727,\n                        \"Y\": 0.7218225002288818\n                    },\n                    {\n                        \"X\": 0.43729332089424133,\n                        \"Y\": 0.7310133576393127\n                    },\n                    {\n                        \"X\": 0.41664189100265503,\n                        \"Y\": 0.7309999465942383\n                    }\n                ]\n            },\n            \"Id\": \"ccf454e5-90b9-466d-977c-dfedb8e66177\",\n            \"Text\": \"(not\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.42475128173828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00880003534257412,\n                    \"Left\": 0.4393012821674347,\n                    \"Top\": 0.7216635942459106,\n                    \"Width\": 0.027220703661441803\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4393012821674347,\n                        \"Y\": 0.7216635942459106\n                    },\n                    {\n                        \"X\": 0.4665195941925049,\n                        \"Y\": 0.7216812372207642\n                    },\n                    {\n                        \"X\": 0.4665220081806183,\n                        \"Y\": 0.7304636240005493\n                    },\n                    {\n                        \"X\": 0.43930354714393616,\n                        \"Y\": 0.730445921421051\n                    }\n                ]\n            },\n            \"Id\": \"8ac7b8df-7a84-4899-a5a5-08359972d2b1\",\n            \"Text\": \"listed\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.2470474243164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01037902943789959,\n                    \"Left\": 0.468505859375,\n                    \"Top\": 0.7218873500823975,\n                    \"Width\": 0.013467539101839066\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.468505859375,\n                        \"Y\": 0.7218873500823975\n                    },\n                    {\n                        \"X\": 0.48197048902511597,\n                        \"Y\": 0.7218960523605347\n                    },\n                    {\n                        \"X\": 0.48197340965270996,\n                        \"Y\": 0.732266366481781\n                    },\n                    {\n                        \"X\": 0.4685087203979492,\n                        \"Y\": 0.732257604598999\n                    }\n                ]\n            },\n            \"Id\": \"24280106-60df-41a8-ae2d-2809c80b93e3\",\n            \"Text\": \"by\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85643005371094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011717310175299644,\n                    \"Left\": 0.8115267753601074,\n                    \"Top\": 0.7228221893310547,\n                    \"Width\": 0.07130218297243118\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8115267753601074,\n                        \"Y\": 0.7228221893310547\n                    },\n                    {\n                        \"X\": 0.8828229308128357,\n                        \"Y\": 0.7228683829307556\n                    },\n                    {\n                        \"X\": 0.882828950881958,\n                        \"Y\": 0.7345395088195801\n                    },\n                    {\n                        \"X\": 0.8115323185920715,\n                        \"Y\": 0.7344930768013\n                    }\n                ]\n            },\n            \"Id\": \"f1b7f189-e0e4-4535-98a0-3548b75adbc2\",\n            \"Text\": \"Dependents\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.69173431396484,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008970957249403,\n                    \"Left\": 0.8863264322280884,\n                    \"Top\": 0.7221002578735352,\n                    \"Width\": 0.02061479166150093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8863264322280884,\n                        \"Y\": 0.7221002578735352\n                    },\n                    {\n                        \"X\": 0.9069364666938782,\n                        \"Y\": 0.7221136093139648\n                    },\n                    {\n                        \"X\": 0.9069412350654602,\n                        \"Y\": 0.7310711741447449\n                    },\n                    {\n                        \"X\": 0.8863310813903809,\n                        \"Y\": 0.7310577630996704\n                    }\n                ]\n            },\n            \"Id\": \"e8923551-06db-452a-be09-ef8087d7afc6\",\n            \"Text\": \"(not\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.68022918701172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009009835310280323,\n                    \"Left\": 0.9093438982963562,\n                    \"Top\": 0.721713662147522,\n                    \"Width\": 0.027139656245708466\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9093438982963562,\n                        \"Y\": 0.721713662147522\n                    },\n                    {\n                        \"X\": 0.9364786148071289,\n                        \"Y\": 0.7217312455177307\n                    },\n                    {\n                        \"X\": 0.9364835619926453,\n                        \"Y\": 0.73072350025177\n                    },\n                    {\n                        \"X\": 0.9093486666679382,\n                        \"Y\": 0.7307058572769165\n                    }\n                ]\n            },\n            \"Id\": \"f846cf48-d07b-4230-89c7-8034e763c53f\",\n            \"Text\": \"listed\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91094970703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010088047944009304,\n                    \"Left\": 0.93861985206604,\n                    \"Top\": 0.7221013903617859,\n                    \"Width\": 0.012918743304908276\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.93861985206604,\n                        \"Y\": 0.7221013903617859\n                    },\n                    {\n                        \"X\": 0.9515329599380493,\n                        \"Y\": 0.7221097350120544\n                    },\n                    {\n                        \"X\": 0.951538622379303,\n                        \"Y\": 0.732189416885376\n                    },\n                    {\n                        \"X\": 0.9386253952980042,\n                        \"Y\": 0.7321810126304626\n                    }\n                ]\n            },\n            \"Id\": \"06305869-4347-49eb-a6db-6bcef000de58\",\n            \"Text\": \"by\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97197723388672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009861470200121403,\n                    \"Left\": 0.04629239812493324,\n                    \"Top\": 0.7295895218849182,\n                    \"Width\": 0.04494067281484604\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04629239812493324,\n                        \"Y\": 0.7295895218849182\n                    },\n                    {\n                        \"X\": 0.09123257547616959,\n                        \"Y\": 0.7296187281608582\n                    },\n                    {\n                        \"X\": 0.09123307466506958,\n                        \"Y\": 0.739450991153717\n                    },\n                    {\n                        \"X\": 0.04629264026880264,\n                        \"Y\": 0.7394216656684875\n                    }\n                ]\n            },\n            \"Id\": \"564c8469-20dc-4ad7-aae3-deb11d6912ac\",\n            \"Text\": \"Married\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55065155029297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012155735865235329,\n                    \"Left\": 0.09460384398698807,\n                    \"Top\": 0.7293580770492554,\n                    \"Width\": 0.05288860946893692\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09460384398698807,\n                        \"Y\": 0.7293580770492554\n                    },\n                    {\n                        \"X\": 0.1474914401769638,\n                        \"Y\": 0.7293924689292908\n                    },\n                    {\n                        \"X\": 0.147492453455925,\n                        \"Y\": 0.7415137887001038\n                    },\n                    {\n                        \"X\": 0.0946044847369194,\n                        \"Y\": 0.7414792776107788\n                    }\n                ]\n            },\n            \"Id\": \"f8c9db4d-29aa-468e-abeb-30e24eb5ac35\",\n            \"Text\": \"(includes\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93658447265625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011836214922368526,\n                    \"Left\": 0.1502169668674469,\n                    \"Top\": 0.7296301126480103,\n                    \"Width\": 0.05953231826424599\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1502169668674469,\n                        \"Y\": 0.7296301126480103\n                    },\n                    {\n                        \"X\": 0.20974785089492798,\n                        \"Y\": 0.7296687960624695\n                    },\n                    {\n                        \"X\": 0.2097492814064026,\n                        \"Y\": 0.7414663434028625\n                    },\n                    {\n                        \"X\": 0.15021798014640808,\n                        \"Y\": 0.741427481174469\n                    }\n                ]\n            },\n            \"Id\": \"96de72a9-61ce-4f86-9489-cee8b35d3e18\",\n            \"Text\": \"registered\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92990112304688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00960473157465458,\n                    \"Left\": 0.21272189915180206,\n                    \"Top\": 0.7296555638313293,\n                    \"Width\": 0.052979011088609695\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21272189915180206,\n                        \"Y\": 0.7296555638313293\n                    },\n                    {\n                        \"X\": 0.26569944620132446,\n                        \"Y\": 0.7296900153160095\n                    },\n                    {\n                        \"X\": 0.26570090651512146,\n                        \"Y\": 0.7392602562904358\n                    },\n                    {\n                        \"X\": 0.21272307634353638,\n                        \"Y\": 0.7392257452011108\n                    }\n                ]\n            },\n            \"Id\": \"6b3ec377-ccf7-4be3-b0d2-fa78010c3bf3\",\n            \"Text\": \"domestic\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.25344848632812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011964904144406319,\n                    \"Left\": 0.26839956641197205,\n                    \"Top\": 0.729447066783905,\n                    \"Width\": 0.05417293310165405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26839956641197205,\n                        \"Y\": 0.729447066783905\n                    },\n                    {\n                        \"X\": 0.322570264339447,\n                        \"Y\": 0.7294822931289673\n                    },\n                    {\n                        \"X\": 0.3225724995136261,\n                        \"Y\": 0.7414119839668274\n                    },\n                    {\n                        \"X\": 0.2684014141559601,\n                        \"Y\": 0.7413765788078308\n                    }\n                ]\n            },\n            \"Id\": \"d1fbf2b4-6629-433a-910f-59100abef55a\",\n            \"Text\": \"partners)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 88.23558044433594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01044823881238699,\n                    \"Left\": 0.4193476140499115,\n                    \"Top\": 0.7316555976867676,\n                    \"Width\": 0.06843683123588562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4193476140499115,\n                        \"Y\": 0.7316555976867676\n                    },\n                    {\n                        \"X\": 0.48778146505355835,\n                        \"Y\": 0.7317001223564148\n                    },\n                    {\n                        \"X\": 0.4877844452857971,\n                        \"Y\": 0.7421038150787354\n                    },\n                    {\n                        \"X\": 0.41935014724731445,\n                        \"Y\": 0.7420591115951538\n                    }\n                ]\n            },\n            \"Id\": \"68619245-3e81-48a5-869b-a71de53f50b3\",\n            \"Text\": \"Co-Borrower)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91143798828125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009883888997137547,\n                    \"Left\": 0.5156952142715454,\n                    \"Top\": 0.7295443415641785,\n                    \"Width\": 0.04521436244249344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5156952142715454,\n                        \"Y\": 0.7295443415641785\n                    },\n                    {\n                        \"X\": 0.5609063506126404,\n                        \"Y\": 0.7295737266540527\n                    },\n                    {\n                        \"X\": 0.5609095692634583,\n                        \"Y\": 0.7394282221794128\n                    },\n                    {\n                        \"X\": 0.5156981945037842,\n                        \"Y\": 0.7393987774848938\n                    }\n                ]\n            },\n            \"Id\": \"63a06206-01b0-4168-a783-ecd9b5ada195\",\n            \"Text\": \"Married\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79298400878906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011907830834388733,\n                    \"Left\": 0.5641058087348938,\n                    \"Top\": 0.729464590549469,\n                    \"Width\": 0.05323755741119385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5641058087348938,\n                        \"Y\": 0.729464590549469\n                    },\n                    {\n                        \"X\": 0.6173390746116638,\n                        \"Y\": 0.7294992208480835\n                    },\n                    {\n                        \"X\": 0.6173433661460876,\n                        \"Y\": 0.7413724064826965\n                    },\n                    {\n                        \"X\": 0.564109742641449,\n                        \"Y\": 0.7413376569747925\n                    }\n                ]\n            },\n            \"Id\": \"c1f7591c-a3bd-43a9-8876-79ee82d024c9\",\n            \"Text\": \"(includes\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95372009277344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01167561300098896,\n                    \"Left\": 0.619870126247406,\n                    \"Top\": 0.7297025322914124,\n                    \"Width\": 0.05950145795941353\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.619870126247406,\n                        \"Y\": 0.7297025322914124\n                    },\n                    {\n                        \"X\": 0.679366946220398,\n                        \"Y\": 0.7297412157058716\n                    },\n                    {\n                        \"X\": 0.6793715953826904,\n                        \"Y\": 0.741378128528595\n                    },\n                    {\n                        \"X\": 0.6198743581771851,\n                        \"Y\": 0.7413392663002014\n                    }\n                ]\n            },\n            \"Id\": \"a721fa7c-50aa-4c7d-985b-08a42bcbadf7\",\n            \"Text\": \"registered\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97252655029297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009582850150763988,\n                    \"Left\": 0.6820889711380005,\n                    \"Top\": 0.7297264337539673,\n                    \"Width\": 0.05331765115261078\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6820889711380005,\n                        \"Y\": 0.7297264337539673\n                    },\n                    {\n                        \"X\": 0.735402524471283,\n                        \"Y\": 0.7297611236572266\n                    },\n                    {\n                        \"X\": 0.7354066371917725,\n                        \"Y\": 0.7393093109130859\n                    },\n                    {\n                        \"X\": 0.6820927858352661,\n                        \"Y\": 0.7392745018005371\n                    }\n                ]\n            },\n            \"Id\": \"39b1ac54-eff2-453d-a159-2d0e1d6689d4\",\n            \"Text\": \"domestic\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.47311401367188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011851624585688114,\n                    \"Left\": 0.7382062077522278,\n                    \"Top\": 0.729600191116333,\n                    \"Width\": 0.05358896404504776\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7382062077522278,\n                        \"Y\": 0.729600191116333\n                    },\n                    {\n                        \"X\": 0.7917896509170532,\n                        \"Y\": 0.7296350002288818\n                    },\n                    {\n                        \"X\": 0.7917951345443726,\n                        \"Y\": 0.7414517998695374\n                    },\n                    {\n                        \"X\": 0.7382113337516785,\n                        \"Y\": 0.7414168119430542\n                    }\n                ]\n            },\n            \"Id\": \"b3a0dde6-0461-4eb5-81bd-6c9e62227548\",\n            \"Text\": \"partners)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.07864379882812,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00997901614755392,\n                    \"Left\": 0.8884282112121582,\n                    \"Top\": 0.7321670055389404,\n                    \"Width\": 0.050126250833272934\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8884282112121582,\n                        \"Y\": 0.7321670055389404\n                    },\n                    {\n                        \"X\": 0.9385489821434021,\n                        \"Y\": 0.7321996092796326\n                    },\n                    {\n                        \"X\": 0.9385544657707214,\n                        \"Y\": 0.7421460151672363\n                    },\n                    {\n                        \"X\": 0.8884333968162537,\n                        \"Y\": 0.7421132922172546\n                    }\n                ]\n            },\n            \"Id\": \"ddc462ab-ccd7-4442-b1ac-f3bbd70e7ba9\",\n            \"Text\": \"Borrower)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89628601074219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010202252306044102,\n                    \"Left\": 0.044532228261232376,\n                    \"Top\": 0.7473484873771667,\n                    \"Width\": 0.06352782994508743\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.044532228261232376,\n                        \"Y\": 0.7473484873771667\n                    },\n                    {\n                        \"X\": 0.10805944353342056,\n                        \"Y\": 0.7473900318145752\n                    },\n                    {\n                        \"X\": 0.10806006193161011,\n                        \"Y\": 0.7575507164001465\n                    },\n                    {\n                        \"X\": 0.04453246667981148,\n                        \"Y\": 0.7575089335441589\n                    }\n                ]\n            },\n            \"Id\": \"64182418-17a8-46e4-9b80-625e8df8d842\",\n            \"Text\": \"Unmarried\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7663345336914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011884886771440506,\n                    \"Left\": 0.1111844852566719,\n                    \"Top\": 0.7474379539489746,\n                    \"Width\": 0.053159475326538086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1111844852566719,\n                        \"Y\": 0.7474379539489746\n                    },\n                    {\n                        \"X\": 0.16434285044670105,\n                        \"Y\": 0.7474727630615234\n                    },\n                    {\n                        \"X\": 0.1643439531326294,\n                        \"Y\": 0.7593228816986084\n                    },\n                    {\n                        \"X\": 0.1111852303147316,\n                        \"Y\": 0.7592878937721252\n                    }\n                ]\n            },\n            \"Id\": \"5be13eb5-2bc0-4149-afee-7b64db7ea03d\",\n            \"Text\": \"(includes\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 70.72050476074219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011893701739609241,\n                    \"Left\": 0.1671963334083557,\n                    \"Top\": 0.7475283741950989,\n                    \"Width\": 0.0381820946931839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1671963334083557,\n                        \"Y\": 0.7475283741950989\n                    },\n                    {\n                        \"X\": 0.2053770273923874,\n                        \"Y\": 0.7475534081459045\n                    },\n                    {\n                        \"X\": 0.2053784281015396,\n                        \"Y\": 0.7594221234321594\n                    },\n                    {\n                        \"X\": 0.16719746589660645,\n                        \"Y\": 0.7593969702720642\n                    }\n                ]\n            },\n            \"Id\": \"6c43dfbb-e697-4cee-943d-341aa7f72b2e\",\n            \"Text\": \"single,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 95.96807098388672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011111198924481869,\n                    \"Left\": 0.2084828019142151,\n                    \"Top\": 0.7474801540374756,\n                    \"Width\": 0.053769659250974655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2084828019142151,\n                        \"Y\": 0.7474801540374756\n                    },\n                    {\n                        \"X\": 0.26225078105926514,\n                        \"Y\": 0.7475153803825378\n                    },\n                    {\n                        \"X\": 0.26225247979164124,\n                        \"Y\": 0.75859135389328\n                    },\n                    {\n                        \"X\": 0.20848414301872253,\n                        \"Y\": 0.7585560083389282\n                    }\n                ]\n            },\n            \"Id\": \"fa89a2de-52fc-4f89-bd52-5e50efe12fbd\",\n            \"Text\": \"divorced,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.82546997070312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011903738602995872,\n                    \"Left\": 0.26559045910835266,\n                    \"Top\": 0.7475090026855469,\n                    \"Width\": 0.05609622970223427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26559045910835266,\n                        \"Y\": 0.7475090026855469\n                    },\n                    {\n                        \"X\": 0.32168447971343994,\n                        \"Y\": 0.7475457191467285\n                    },\n                    {\n                        \"X\": 0.32168668508529663,\n                        \"Y\": 0.7594127655029297\n                    },\n                    {\n                        \"X\": 0.2655923068523407,\n                        \"Y\": 0.759375810623169\n                    }\n                ]\n            },\n            \"Id\": \"74005a8c-851c-4d08-a5d5-2b5e0aa30447\",\n            \"Text\": \"widowed)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.79824829101562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009241163730621338,\n                    \"Left\": 0.3476564884185791,\n                    \"Top\": 0.7477311491966248,\n                    \"Width\": 0.020525366067886353\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3476564884185791,\n                        \"Y\": 0.7477311491966248\n                    },\n                    {\n                        \"X\": 0.36817988753318787,\n                        \"Y\": 0.7477445602416992\n                    },\n                    {\n                        \"X\": 0.36818188428878784,\n                        \"Y\": 0.7569723129272461\n                    },\n                    {\n                        \"X\": 0.3476583659648895,\n                        \"Y\": 0.7569587826728821\n                    }\n                ]\n            },\n            \"Id\": \"d561dcb5-777f-46a1-bfc1-2eff9a76e9d2\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6950912475586,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009715533815324306,\n                    \"Left\": 0.4256698489189148,\n                    \"Top\": 0.7472193241119385,\n                    \"Width\": 0.009057499468326569\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4256698489189148,\n                        \"Y\": 0.7472193241119385\n                    },\n                    {\n                        \"X\": 0.434724897146225,\n                        \"Y\": 0.747225284576416\n                    },\n                    {\n                        \"X\": 0.43472734093666077,\n                        \"Y\": 0.7569348812103271\n                    },\n                    {\n                        \"X\": 0.4256722629070282,\n                        \"Y\": 0.7569289207458496\n                    }\n                ]\n            },\n            \"Id\": \"356839a2-de42-49b5-842d-75b4fa914a8c\",\n            \"Text\": \"0\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94015502929688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009983915835618973,\n                    \"Left\": 0.5159507989883423,\n                    \"Top\": 0.7473340630531311,\n                    \"Width\": 0.06182285025715828\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5159507989883423,\n                        \"Y\": 0.7473340630531311\n                    },\n                    {\n                        \"X\": 0.5777702927589417,\n                        \"Y\": 0.7473744750022888\n                    },\n                    {\n                        \"X\": 0.5777736902236938,\n                        \"Y\": 0.7573179602622986\n                    },\n                    {\n                        \"X\": 0.5159538388252258,\n                        \"Y\": 0.7572773098945618\n                    }\n                ]\n            },\n            \"Id\": \"15488b78-163e-4897-ac9f-aa1150ddf9fb\",\n            \"Text\": \"Unmarried\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83655548095703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011730819009244442,\n                    \"Left\": 0.5808568000793457,\n                    \"Top\": 0.7475183010101318,\n                    \"Width\": 0.05316271632909775\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5808568000793457,\n                        \"Y\": 0.7475183010101318\n                    },\n                    {\n                        \"X\": 0.6340152025222778,\n                        \"Y\": 0.7475531101226807\n                    },\n                    {\n                        \"X\": 0.6340195536613464,\n                        \"Y\": 0.7592490911483765\n                    },\n                    {\n                        \"X\": 0.5808607935905457,\n                        \"Y\": 0.7592141628265381\n                    }\n                ]\n            },\n            \"Id\": \"795e3578-d645-4505-8b4f-b6ec071edaef\",\n            \"Text\": \"(includes\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.8160171508789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01154166366904974,\n                    \"Left\": 0.6367676854133606,\n                    \"Top\": 0.7477409243583679,\n                    \"Width\": 0.03812403231859207\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6367676854133606,\n                        \"Y\": 0.7477409243583679\n                    },\n                    {\n                        \"X\": 0.6748871803283691,\n                        \"Y\": 0.747765839099884\n                    },\n                    {\n                        \"X\": 0.6748917102813721,\n                        \"Y\": 0.7592825889587402\n                    },\n                    {\n                        \"X\": 0.6367719769477844,\n                        \"Y\": 0.7592574954032898\n                    }\n                ]\n            },\n            \"Id\": \"5d35fc4f-b021-4794-8ea8-1c56818b886f\",\n            \"Text\": \"single,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.24853515625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011019743047654629,\n                    \"Left\": 0.6779336333274841,\n                    \"Top\": 0.7475780844688416,\n                    \"Width\": 0.053838662803173065\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6779336333274841,\n                        \"Y\": 0.7475780844688416\n                    },\n                    {\n                        \"X\": 0.7317675352096558,\n                        \"Y\": 0.7476133108139038\n                    },\n                    {\n                        \"X\": 0.731772243976593,\n                        \"Y\": 0.7585977911949158\n                    },\n                    {\n                        \"X\": 0.6779379844665527,\n                        \"Y\": 0.758562445640564\n                    }\n                ]\n            },\n            \"Id\": \"340eb2b8-4c07-44fd-ad8d-bd92fba22afe\",\n            \"Text\": \"divorced,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.30252075195312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011815321631729603,\n                    \"Left\": 0.7351299524307251,\n                    \"Top\": 0.7475834488868713,\n                    \"Width\": 0.05636961758136749\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7351299524307251,\n                        \"Y\": 0.7475834488868713\n                    },\n                    {\n                        \"X\": 0.7914941310882568,\n                        \"Y\": 0.7476203441619873\n                    },\n                    {\n                        \"X\": 0.7914995551109314,\n                        \"Y\": 0.7593987584114075\n                    },\n                    {\n                        \"X\": 0.735135018825531,\n                        \"Y\": 0.7593616843223572\n                    }\n                ]\n            },\n            \"Id\": \"edabb44d-6806-4b64-8b91-996e76245623\",\n            \"Text\": \"widowed)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.66866302490234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009566294960677624,\n                    \"Left\": 0.8175753355026245,\n                    \"Top\": 0.747663676738739,\n                    \"Width\": 0.020243216305971146\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8175753355026245,\n                        \"Y\": 0.747663676738739\n                    },\n                    {\n                        \"X\": 0.8378138542175293,\n                        \"Y\": 0.7476769089698792\n                    },\n                    {\n                        \"X\": 0.8378185629844666,\n                        \"Y\": 0.7572299838066101\n                    },\n                    {\n                        \"X\": 0.8175799250602722,\n                        \"Y\": 0.7572166323661804\n                    }\n                ]\n            },\n            \"Id\": \"893772a8-c001-4970-87d9-e65eea767a5e\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84195709228516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010082580149173737,\n                    \"Left\": 0.8923969268798828,\n                    \"Top\": 0.7458910346031189,\n                    \"Width\": 0.023726336658000946\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8923969268798828,\n                        \"Y\": 0.7458910346031189\n                    },\n                    {\n                        \"X\": 0.9161178469657898,\n                        \"Y\": 0.7459065318107605\n                    },\n                    {\n                        \"X\": 0.9161232709884644,\n                        \"Y\": 0.7559735774993896\n                    },\n                    {\n                        \"X\": 0.8924022316932678,\n                        \"Y\": 0.7559580206871033\n                    }\n                ]\n            },\n            \"Id\": \"f73ff599-5571-4a82-a4b7-f95762565a42\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70414733886719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011946945451200008,\n                    \"Left\": 0.04629065468907356,\n                    \"Top\": 0.7663353085517883,\n                    \"Width\": 0.06095198541879654\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04629065468907356,\n                        \"Y\": 0.7663353085517883\n                    },\n                    {\n                        \"X\": 0.1072419211268425,\n                        \"Y\": 0.7663755416870117\n                    },\n                    {\n                        \"X\": 0.1072426363825798,\n                        \"Y\": 0.7782822847366333\n                    },\n                    {\n                        \"X\": 0.046290941536426544,\n                        \"Y\": 0.7782418727874756\n                    }\n                ]\n            },\n            \"Id\": \"37f31bfe-a90b-444b-bc2f-1d051b5304e0\",\n            \"Text\": \"Separated\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85578918457031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011547194793820381,\n                    \"Left\": 0.347248375415802,\n                    \"Top\": 0.7665163278579712,\n                    \"Width\": 0.03141692653298378\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.347248375415802,\n                        \"Y\": 0.7665163278579712\n                    },\n                    {\n                        \"X\": 0.37866273522377014,\n                        \"Y\": 0.766537070274353\n                    },\n                    {\n                        \"X\": 0.3786652982234955,\n                        \"Y\": 0.7780635356903076\n                    },\n                    {\n                        \"X\": 0.34725069999694824,\n                        \"Y\": 0.778042733669281\n                    }\n                ]\n            },\n            \"Id\": \"f0bdd729-9581-4c9e-9b8c-57895922387a\",\n            \"Text\": \"Ages\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88825225830078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00999203696846962,\n                    \"Left\": 0.4210067391395569,\n                    \"Top\": 0.7662720084190369,\n                    \"Width\": 0.02422318607568741\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4210067391395569,\n                        \"Y\": 0.7662720084190369\n                    },\n                    {\n                        \"X\": 0.44522732496261597,\n                        \"Y\": 0.7662879824638367\n                    },\n                    {\n                        \"X\": 0.4452299177646637,\n                        \"Y\": 0.7762640714645386\n                    },\n                    {\n                        \"X\": 0.4210091829299927,\n                        \"Y\": 0.7762479782104492\n                    }\n                ]\n            },\n            \"Id\": \"60a2405c-692e-4bec-a3d3-9ac1dacf179d\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80829620361328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011756584979593754,\n                    \"Left\": 0.515315592288971,\n                    \"Top\": 0.7663522958755493,\n                    \"Width\": 0.06158244609832764\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.515315592288971,\n                        \"Y\": 0.7663522958755493\n                    },\n                    {\n                        \"X\": 0.5768941044807434,\n                        \"Y\": 0.7663928866386414\n                    },\n                    {\n                        \"X\": 0.5768980383872986,\n                        \"Y\": 0.7781088948249817\n                    },\n                    {\n                        \"X\": 0.5153191089630127,\n                        \"Y\": 0.7780680656433105\n                    }\n                ]\n            },\n            \"Id\": \"afd7df55-cda7-4ee0-a1ce-aef9f53722f7\",\n            \"Text\": \"Separated\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89871978759766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011442936025559902,\n                    \"Left\": 0.8171243667602539,\n                    \"Top\": 0.7668346166610718,\n                    \"Width\": 0.030890265479683876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8171243667602539,\n                        \"Y\": 0.7668346166610718\n                    },\n                    {\n                        \"X\": 0.848008930683136,\n                        \"Y\": 0.7668549418449402\n                    },\n                    {\n                        \"X\": 0.8480146527290344,\n                        \"Y\": 0.7782775163650513\n                    },\n                    {\n                        \"X\": 0.8171298503875732,\n                        \"Y\": 0.7782570719718933\n                    }\n                ]\n            },\n            \"Id\": \"cae6cf34-3839-4fbe-a30f-844d522182e5\",\n            \"Text\": \"Ages\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8935317993164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010265233926475048,\n                    \"Left\": 0.892227292060852,\n                    \"Top\": 0.7670956254005432,\n                    \"Width\": 0.02404056303203106\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.892227292060852,\n                        \"Y\": 0.7670956254005432\n                    },\n                    {\n                        \"X\": 0.9162623286247253,\n                        \"Y\": 0.7671114802360535\n                    },\n                    {\n                        \"X\": 0.9162678718566895,\n                        \"Y\": 0.7773608565330505\n                    },\n                    {\n                        \"X\": 0.8922326564788818,\n                        \"Y\": 0.7773449420928955\n                    }\n                ]\n            },\n            \"Id\": \"b73d981f-d76b-4439-9805-24b5744bdfa2\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94197845458984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009992733597755432,\n                    \"Left\": 0.028748175129294395,\n                    \"Top\": 0.7843682169914246,\n                    \"Width\": 0.04603007808327675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028748175129294395,\n                        \"Y\": 0.7843682169914246\n                    },\n                    {\n                        \"X\": 0.07477784156799316,\n                        \"Y\": 0.7843987941741943\n                    },\n                    {\n                        \"X\": 0.074778251349926,\n                        \"Y\": 0.7943609356880188\n                    },\n                    {\n                        \"X\": 0.028748314827680588,\n                        \"Y\": 0.7943302392959595\n                    }\n                ]\n            },\n            \"Id\": \"a3624eae-de28-4fb4-9bad-82a88dc2f847\",\n            \"Text\": \"Present\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92056274414062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010022752918303013,\n                    \"Left\": 0.07697238028049469,\n                    \"Top\": 0.7844372391700745,\n                    \"Width\": 0.04905552417039871\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07697238028049469,\n                        \"Y\": 0.7844372391700745\n                    },\n                    {\n                        \"X\": 0.1260271966457367,\n                        \"Y\": 0.7844698429107666\n                    },\n                    {\n                        \"X\": 0.126027911901474,\n                        \"Y\": 0.7944599986076355\n                    },\n                    {\n                        \"X\": 0.07697280496358871,\n                        \"Y\": 0.7944272756576538\n                    }\n                ]\n            },\n            \"Id\": \"a122cd94-c04b-4de2-a7ad-65939dc85eb3\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.39216613769531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012188289314508438,\n                    \"Left\": 0.12932243943214417,\n                    \"Top\": 0.7842137217521667,\n                    \"Width\": 0.04140254482626915\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12932243943214417,\n                        \"Y\": 0.7842137217521667\n                    },\n                    {\n                        \"X\": 0.1707237958908081,\n                        \"Y\": 0.7842411994934082\n                    },\n                    {\n                        \"X\": 0.1707249879837036,\n                        \"Y\": 0.7964019775390625\n                    },\n                    {\n                        \"X\": 0.1293233335018158,\n                        \"Y\": 0.7963743209838867\n                    }\n                ]\n            },\n            \"Id\": \"0f6a74a7-51b7-4690-97e6-395613249fa5\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.0848159790039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0115894740447402,\n                    \"Left\": 0.17395499348640442,\n                    \"Top\": 0.78464275598526,\n                    \"Width\": 0.023133741691708565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17395499348640442,\n                        \"Y\": 0.78464275598526\n                    },\n                    {\n                        \"X\": 0.19708742201328278,\n                        \"Y\": 0.7846581339836121\n                    },\n                    {\n                        \"X\": 0.19708873331546783,\n                        \"Y\": 0.7962322235107422\n                    },\n                    {\n                        \"X\": 0.17395614087581635,\n                        \"Y\": 0.7962167859077454\n                    }\n                ]\n            },\n            \"Id\": \"58bd2bda-2d37-47b5-9fa3-58e566a42b01\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 92.09716033935547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010575763881206512,\n                    \"Left\": 0.20044614374637604,\n                    \"Top\": 0.7849251627922058,\n                    \"Width\": 0.032538753002882004\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20044614374637604,\n                        \"Y\": 0.7849251627922058\n                    },\n                    {\n                        \"X\": 0.23298346996307373,\n                        \"Y\": 0.7849467992782593\n                    },\n                    {\n                        \"X\": 0.23298490047454834,\n                        \"Y\": 0.7955009341239929\n                    },\n                    {\n                        \"X\": 0.20044736564159393,\n                        \"Y\": 0.7954792380332947\n                    }\n                ]\n            },\n            \"Id\": \"1b1f2452-d527-4365-abe5-111c64093132\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.05594635009766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009778880514204502,\n                    \"Left\": 0.23624780774116516,\n                    \"Top\": 0.7843712568283081,\n                    \"Width\": 0.025128701701760292\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23624780774116516,\n                        \"Y\": 0.7843712568283081\n                    },\n                    {\n                        \"X\": 0.2613750100135803,\n                        \"Y\": 0.7843879461288452\n                    },\n                    {\n                        \"X\": 0.2613765001296997,\n                        \"Y\": 0.7941501140594482\n                    },\n                    {\n                        \"X\": 0.2362491339445114,\n                        \"Y\": 0.7941333651542664\n                    }\n                ]\n            },\n            \"Id\": \"8baeae55-fd4c-45cb-b677-942d9f4aa202\",\n            \"Text\": \"ZIP/\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.66678619384766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01198272593319416,\n                    \"Left\": 0.26384609937667847,\n                    \"Top\": 0.7844778299331665,\n                    \"Width\": 0.04817967861890793\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26384609937667847,\n                        \"Y\": 0.7844778299331665\n                    },\n                    {\n                        \"X\": 0.3120236098766327,\n                        \"Y\": 0.7845098376274109\n                    },\n                    {\n                        \"X\": 0.312025785446167,\n                        \"Y\": 0.7964605689048767\n                    },\n                    {\n                        \"X\": 0.2638479173183441,\n                        \"Y\": 0.796428382396698\n                    }\n                ]\n            },\n            \"Id\": \"59d17e3e-8138-4dfd-a004-a7d444854931\",\n            \"Text\": \"country)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9271240234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009417249821126461,\n                    \"Left\": 0.3322114050388336,\n                    \"Top\": 0.784762978553772,\n                    \"Width\": 0.02656365931034088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3322114050388336,\n                        \"Y\": 0.784762978553772\n                    },\n                    {\n                        \"X\": 0.3587731122970581,\n                        \"Y\": 0.7847806215286255\n                    },\n                    {\n                        \"X\": 0.3587750792503357,\n                        \"Y\": 0.7941802144050598\n                    },\n                    {\n                        \"X\": 0.33221322298049927,\n                        \"Y\": 0.7941625118255615\n                    }\n                ]\n            },\n            \"Id\": \"b91b4d39-daf6-4bee-aa4f-e4d17a9a556f\",\n            \"Text\": \"Own\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90693664550781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009610368870198727,\n                    \"Left\": 0.3879086673259735,\n                    \"Top\": 0.7845406532287598,\n                    \"Width\": 0.029111245647072792\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3879086673259735,\n                        \"Y\": 0.7845406532287598\n                    },\n                    {\n                        \"X\": 0.4170175790786743,\n                        \"Y\": 0.784559965133667\n                    },\n                    {\n                        \"X\": 0.41701990365982056,\n                        \"Y\": 0.7941510081291199\n                    },\n                    {\n                        \"X\": 0.3879108130931854,\n                        \"Y\": 0.7941315770149231\n                    }\n                ]\n            },\n            \"Id\": \"72a2e13a-32f0-469a-81dd-ca21a4525d40\",\n            \"Text\": \"Rent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.68292236328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009542271494865417,\n                    \"Left\": 0.4263419806957245,\n                    \"Top\": 0.7851833701133728,\n                    \"Width\": 0.008488500490784645\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4263419806957245,\n                        \"Y\": 0.7851833701133728\n                    },\n                    {\n                        \"X\": 0.4348280727863312,\n                        \"Y\": 0.7851890325546265\n                    },\n                    {\n                        \"X\": 0.4348304867744446,\n                        \"Y\": 0.7947256565093994\n                    },\n                    {\n                        \"X\": 0.4263443648815155,\n                        \"Y\": 0.7947199940681458\n                    }\n                ]\n            },\n            \"Id\": \"7d27b15f-a3f0-4126-ae9f-d59e1de47a9e\",\n            \"Text\": \"5\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.94987487792969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009516890160739422,\n                    \"Left\": 0.4429261088371277,\n                    \"Top\": 0.7847508788108826,\n                    \"Width\": 0.02110646478831768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4429261088371277,\n                        \"Y\": 0.7847508788108826\n                    },\n                    {\n                        \"X\": 0.4640299677848816,\n                        \"Y\": 0.7847648859024048\n                    },\n                    {\n                        \"X\": 0.4640325605869293,\n                        \"Y\": 0.7942677736282349\n                    },\n                    {\n                        \"X\": 0.4429285526275635,\n                        \"Y\": 0.7942537069320679\n                    }\n                ]\n            },\n            \"Id\": \"97d62362-f96b-410d-927a-c823b8995a3b\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.03163146972656,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009559763595461845,\n                    \"Left\": 0.46672436594963074,\n                    \"Top\": 0.7845872640609741,\n                    \"Width\": 0.022662237286567688\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.46672436594963074,\n                        \"Y\": 0.7845872640609741\n                    },\n                    {\n                        \"X\": 0.48938387632369995,\n                        \"Y\": 0.7846022844314575\n                    },\n                    {\n                        \"X\": 0.4893866181373596,\n                        \"Y\": 0.7941470146179199\n                    },\n                    {\n                        \"X\": 0.46672695875167847,\n                        \"Y\": 0.794131875038147\n                    }\n                ]\n            },\n            \"Id\": \"808b32fa-c8b2-480d-a8c3-c34203b61d7d\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90254974365234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009705058299005032,\n                    \"Left\": 0.49818822741508484,\n                    \"Top\": 0.7845677733421326,\n                    \"Width\": 0.046408459544181824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49818822741508484,\n                        \"Y\": 0.7845677733421326\n                    },\n                    {\n                        \"X\": 0.5445935726165771,\n                        \"Y\": 0.7845985889434814\n                    },\n                    {\n                        \"X\": 0.5445966720581055,\n                        \"Y\": 0.794272780418396\n                    },\n                    {\n                        \"X\": 0.4981910288333893,\n                        \"Y\": 0.7942418456077576\n                    }\n                ]\n            },\n            \"Id\": \"d7dbcdd1-3dae-4a0d-a62b-cbd2dcf78cd9\",\n            \"Text\": \"Present\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96123504638672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009295131079852581,\n                    \"Left\": 0.5466036796569824,\n                    \"Top\": 0.7848129868507385,\n                    \"Width\": 0.04917960241436958\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5466036796569824,\n                        \"Y\": 0.7848129868507385\n                    },\n                    {\n                        \"X\": 0.5957800149917603,\n                        \"Y\": 0.7848456501960754\n                    },\n                    {\n                        \"X\": 0.5957832336425781,\n                        \"Y\": 0.7941080927848816\n                    },\n                    {\n                        \"X\": 0.5466066002845764,\n                        \"Y\": 0.7940753102302551\n                    }\n                ]\n            },\n            \"Id\": \"5bd0d973-cdf1-4687-8e23-e52351bc3a01\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.01263427734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011959378607571125,\n                    \"Left\": 0.5989187955856323,\n                    \"Top\": 0.7844032049179077,\n                    \"Width\": 0.04117617383599281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5989187955856323,\n                        \"Y\": 0.7844032049179077\n                    },\n                    {\n                        \"X\": 0.6400905251502991,\n                        \"Y\": 0.7844305038452148\n                    },\n                    {\n                        \"X\": 0.6400949954986572,\n                        \"Y\": 0.796362578868866\n                    },\n                    {\n                        \"X\": 0.5989230275154114,\n                        \"Y\": 0.7963351011276245\n                    }\n                ]\n            },\n            \"Id\": \"17df945b-5d58-49cd-b35e-815eed5e3013\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.58076477050781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011613517999649048,\n                    \"Left\": 0.6432724595069885,\n                    \"Top\": 0.7846623659133911,\n                    \"Width\": 0.0233505517244339\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6432724595069885,\n                        \"Y\": 0.7846623659133911\n                    },\n                    {\n                        \"X\": 0.6666184663772583,\n                        \"Y\": 0.7846778631210327\n                    },\n                    {\n                        \"X\": 0.6666229963302612,\n                        \"Y\": 0.7962758541107178\n                    },\n                    {\n                        \"X\": 0.6432768106460571,\n                        \"Y\": 0.7962602972984314\n                    }\n                ]\n            },\n            \"Id\": \"91191b2f-d6bc-4674-9d0a-95b226f5b443\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 64.88445281982422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010340724140405655,\n                    \"Left\": 0.6699215173721313,\n                    \"Top\": 0.7851130962371826,\n                    \"Width\": 0.03267062082886696\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6699215173721313,\n                        \"Y\": 0.7851130962371826\n                    },\n                    {\n                        \"X\": 0.702587902545929,\n                        \"Y\": 0.7851347923278809\n                    },\n                    {\n                        \"X\": 0.702592134475708,\n                        \"Y\": 0.7954537868499756\n                    },\n                    {\n                        \"X\": 0.6699255704879761,\n                        \"Y\": 0.7954319715499878\n                    }\n                ]\n            },\n            \"Id\": \"4b44fa05-d450-440a-b246-72d6abcc1ab6\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.18194580078125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00985258724540472,\n                    \"Left\": 0.7058267593383789,\n                    \"Top\": 0.7843859195709229,\n                    \"Width\": 0.02517707459628582\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7058267593383789,\n                        \"Y\": 0.7843859195709229\n                    },\n                    {\n                        \"X\": 0.7309996485710144,\n                        \"Y\": 0.7844026684761047\n                    },\n                    {\n                        \"X\": 0.7310038805007935,\n                        \"Y\": 0.7942385077476501\n                    },\n                    {\n                        \"X\": 0.7058308720588684,\n                        \"Y\": 0.7942216992378235\n                    }\n                ]\n            },\n            \"Id\": \"de5a5d82-2742-4cd3-9e83-fa261a017994\",\n            \"Text\": \"ZIP/\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.92289733886719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01170841883867979,\n                    \"Left\": 0.7335067987442017,\n                    \"Top\": 0.7847742438316345,\n                    \"Width\": 0.04761392995715141\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7335067987442017,\n                        \"Y\": 0.7847742438316345\n                    },\n                    {\n                        \"X\": 0.7811154127120972,\n                        \"Y\": 0.7848058938980103\n                    },\n                    {\n                        \"X\": 0.7811207175254822,\n                        \"Y\": 0.7964826822280884\n                    },\n                    {\n                        \"X\": 0.7335118651390076,\n                        \"Y\": 0.7964508533477783\n                    }\n                ]\n            },\n            \"Id\": \"cff511e0-e4d6-4237-92b0-951a3c37ea8e\",\n            \"Text\": \"country)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95574951171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009456906467676163,\n                    \"Left\": 0.8021049499511719,\n                    \"Top\": 0.7848161458969116,\n                    \"Width\": 0.02625088207423687\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8021049499511719,\n                        \"Y\": 0.7848161458969116\n                    },\n                    {\n                        \"X\": 0.8283511996269226,\n                        \"Y\": 0.784833550453186\n                    },\n                    {\n                        \"X\": 0.8283557891845703,\n                        \"Y\": 0.7942730188369751\n                    },\n                    {\n                        \"X\": 0.8021093606948853,\n                        \"Y\": 0.7942554950714111\n                    }\n                ]\n            },\n            \"Id\": \"8d0e59d0-95a8-499d-98ef-6aee793b3a7e\",\n            \"Text\": \"Own\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94634246826172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009744303300976753,\n                    \"Left\": 0.8576629757881165,\n                    \"Top\": 0.7845334410667419,\n                    \"Width\": 0.028497260063886642\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8576629757881165,\n                        \"Y\": 0.7845334410667419\n                    },\n                    {\n                        \"X\": 0.8861551284790039,\n                        \"Y\": 0.7845523953437805\n                    },\n                    {\n                        \"X\": 0.8861601948738098,\n                        \"Y\": 0.7942777276039124\n                    },\n                    {\n                        \"X\": 0.857667863368988,\n                        \"Y\": 0.794258713722229\n                    }\n                ]\n            },\n            \"Id\": \"e361a9ab-3344-4d20-ab43-9e03376a7ecc\",\n            \"Text\": \"Rent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.81279754638672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00974221806973219,\n                    \"Left\": 0.912738561630249,\n                    \"Top\": 0.78459233045578,\n                    \"Width\": 0.021255167201161385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.912738561630249,\n                        \"Y\": 0.78459233045578\n                    },\n                    {\n                        \"X\": 0.9339883923530579,\n                        \"Y\": 0.7846064567565918\n                    },\n                    {\n                        \"X\": 0.9339936971664429,\n                        \"Y\": 0.7943345904350281\n                    },\n                    {\n                        \"X\": 0.9127437472343445,\n                        \"Y\": 0.7943204045295715\n                    }\n                ]\n            },\n            \"Id\": \"9f648c31-b3e3-432b-a6e2-d54f8fcae4c5\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.6606216430664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009805290028452873,\n                    \"Left\": 0.9363531470298767,\n                    \"Top\": 0.7843978404998779,\n                    \"Width\": 0.024127095937728882\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9363531470298767,\n                        \"Y\": 0.7843978404998779\n                    },\n                    {\n                        \"X\": 0.9604746699333191,\n                        \"Y\": 0.7844138741493225\n                    },\n                    {\n                        \"X\": 0.9604802131652832,\n                        \"Y\": 0.7942031025886536\n                    },\n                    {\n                        \"X\": 0.9363585114479065,\n                        \"Y\": 0.7941870093345642\n                    }\n                ]\n            },\n            \"Id\": \"c75e7b45-31fb-469c-a8c9-2103eb720bfc\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90031433105469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010310092940926552,\n                    \"Left\": 0.02972111664712429,\n                    \"Top\": 0.8039500117301941,\n                    \"Width\": 0.02395300380885601\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02972111664712429,\n                        \"Y\": 0.8039500117301941\n                    },\n                    {\n                        \"X\": 0.05367382615804672,\n                        \"Y\": 0.8039660453796387\n                    },\n                    {\n                        \"X\": 0.0536741204559803,\n                        \"Y\": 0.8142600655555725\n                    },\n                    {\n                        \"X\": 0.029721267521381378,\n                        \"Y\": 0.8142439723014832\n                    }\n                ]\n            },\n            \"Id\": \"d1abb320-cf68-4696-92cf-5a22806a54bc\",\n            \"Text\": \"456\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9075927734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012304224073886871,\n                    \"Left\": 0.056997958570718765,\n                    \"Top\": 0.8041443228721619,\n                    \"Width\": 0.024906283244490623\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.056997958570718765,\n                        \"Y\": 0.8041443228721619\n                    },\n                    {\n                        \"X\": 0.08190368115901947,\n                        \"Y\": 0.804161012172699\n                    },\n                    {\n                        \"X\": 0.08190423995256424,\n                        \"Y\": 0.8164485692977905\n                    },\n                    {\n                        \"X\": 0.05699833482503891,\n                        \"Y\": 0.8164318203926086\n                    }\n                ]\n            },\n            \"Id\": \"11654d8a-768c-4b4f-9188-4ba50acd2dfb\",\n            \"Text\": \"Any\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.60189819335938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011779158376157284,\n                    \"Left\": 0.0851951390504837,\n                    \"Top\": 0.803952693939209,\n                    \"Width\": 0.040858905762434006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0851951390504837,\n                        \"Y\": 0.803952693939209\n                    },\n                    {\n                        \"X\": 0.12605319917201996,\n                        \"Y\": 0.8039800524711609\n                    },\n                    {\n                        \"X\": 0.126054048538208,\n                        \"Y\": 0.8157318830490112\n                    },\n                    {\n                        \"X\": 0.08519569784402847,\n                        \"Y\": 0.815704345703125\n                    }\n                ]\n            },\n            \"Id\": \"6c944296-8ba6-4de5-a7f9-36f5b5b722a5\",\n            \"Text\": \"Street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.4735336303711,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012476476840674877,\n                    \"Left\": 0.12966987490653992,\n                    \"Top\": 0.8041289448738098,\n                    \"Width\": 0.057750266045331955\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12966987490653992,\n                        \"Y\": 0.8041289448738098\n                    },\n                    {\n                        \"X\": 0.18741878867149353,\n                        \"Y\": 0.804167628288269\n                    },\n                    {\n                        \"X\": 0.18742012977600098,\n                        \"Y\": 0.8166054487228394\n                    },\n                    {\n                        \"X\": 0.12967078387737274,\n                        \"Y\": 0.8165665864944458\n                    }\n                ]\n            },\n            \"Id\": \"2ac5251b-c40d-40d2-803a-a3c1bae86bec\",\n            \"Text\": \"Anytown,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.28810119628906,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01173730380833149,\n                    \"Left\": 0.19123148918151855,\n                    \"Top\": 0.8037936687469482,\n                    \"Width\": 0.032523587346076965\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19123148918151855,\n                        \"Y\": 0.8037936687469482\n                    },\n                    {\n                        \"X\": 0.22375355660915375,\n                        \"Y\": 0.8038154244422913\n                    },\n                    {\n                        \"X\": 0.22375507652759552,\n                        \"Y\": 0.8155309557914734\n                    },\n                    {\n                        \"X\": 0.19123277068138123,\n                        \"Y\": 0.8155090808868408\n                    }\n                ]\n            },\n            \"Id\": \"efbf136f-3a7b-4d66-96db-79d69fa81850\",\n            \"Text\": \"USA,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9599609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010419773869216442,\n                    \"Left\": 0.2279238998889923,\n                    \"Top\": 0.8039771914482117,\n                    \"Width\": 0.038683950901031494\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2279238998889923,\n                        \"Y\": 0.8039771914482117\n                    },\n                    {\n                        \"X\": 0.26660624146461487,\n                        \"Y\": 0.804003119468689\n                    },\n                    {\n                        \"X\": 0.2666078507900238,\n                        \"Y\": 0.8143969774246216\n                    },\n                    {\n                        \"X\": 0.22792527079582214,\n                        \"Y\": 0.8143709301948547\n                    }\n                ]\n            },\n            \"Id\": \"ed430d68-ab90-43e0-849a-3558e516aca0\",\n            \"Text\": \"12345\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9145736694336,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010184415616095066,\n                    \"Left\": 0.4992425739765167,\n                    \"Top\": 0.8040531277656555,\n                    \"Width\": 0.024300385266542435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4992425739765167,\n                        \"Y\": 0.8040531277656555\n                    },\n                    {\n                        \"X\": 0.5235398411750793,\n                        \"Y\": 0.8040693998336792\n                    },\n                    {\n                        \"X\": 0.5235429406166077,\n                        \"Y\": 0.8142375349998474\n                    },\n                    {\n                        \"X\": 0.4992455542087555,\n                        \"Y\": 0.814221203327179\n                    }\n                ]\n            },\n            \"Id\": \"8d07f392-0462-4e58-abc9-70bbdda23547\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6910171508789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012020472437143326,\n                    \"Left\": 0.02893584780395031,\n                    \"Top\": 0.8403143882751465,\n                    \"Width\": 0.04226209595799446\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02893584780395031,\n                        \"Y\": 0.8403143882751465\n                    },\n                    {\n                        \"X\": 0.07119747251272202,\n                        \"Y\": 0.8403430581092834\n                    },\n                    {\n                        \"X\": 0.07119794189929962,\n                        \"Y\": 0.8523348569869995\n                    },\n                    {\n                        \"X\": 0.02893601730465889,\n                        \"Y\": 0.8523060083389282\n                    }\n                ]\n            },\n            \"Id\": \"715a4535-f684-446e-9320-f57c374c205f\",\n            \"Text\": \"Mailing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 89.53226470947266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011042428202927113,\n                    \"Left\": 0.07363816350698471,\n                    \"Top\": 0.8405265808105469,\n                    \"Width\": 0.05180855467915535\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07363816350698471,\n                        \"Y\": 0.8405265808105469\n                    },\n                    {\n                        \"X\": 0.12544593214988708,\n                        \"Y\": 0.8405617475509644\n                    },\n                    {\n                        \"X\": 0.12544672191143036,\n                        \"Y\": 0.8515689969062805\n                    },\n                    {\n                        \"X\": 0.07363861054182053,\n                        \"Y\": 0.8515336513519287\n                    }\n                ]\n            },\n            \"Id\": \"23dced2d-5bee-4987-a158-b5b40ca89505\",\n            \"Text\": \"Address,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.49481201171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009660911746323109,\n                    \"Left\": 0.1290174424648285,\n                    \"Top\": 0.8403212428092957,\n                    \"Width\": 0.008422568440437317\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1290174424648285,\n                        \"Y\": 0.8403212428092957\n                    },\n                    {\n                        \"X\": 0.13743925094604492,\n                        \"Y\": 0.8403269648551941\n                    },\n                    {\n                        \"X\": 0.1374400109052658,\n                        \"Y\": 0.8499822020530701\n                    },\n                    {\n                        \"X\": 0.1290181428194046,\n                        \"Y\": 0.8499764204025269\n                    }\n                ]\n            },\n            \"Id\": \"8dee01c0-35d0-4f90-a12c-fd1c9c372bd3\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91764068603516,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009905470535159111,\n                    \"Left\": 0.13967646658420563,\n                    \"Top\": 0.8403800129890442,\n                    \"Width\": 0.04813969135284424\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13967646658420563,\n                        \"Y\": 0.8403800129890442\n                    },\n                    {\n                        \"X\": 0.1878150999546051,\n                        \"Y\": 0.8404127359390259\n                    },\n                    {\n                        \"X\": 0.18781615793704987,\n                        \"Y\": 0.8502854704856873\n                    },\n                    {\n                        \"X\": 0.1396772563457489,\n                        \"Y\": 0.850252628326416\n                    }\n                ]\n            },\n            \"Id\": \"3c3581f8-ec75-4424-a896-7d34a5592ce9\",\n            \"Text\": \"different\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9380874633789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009542849846184254,\n                    \"Left\": 0.19050633907318115,\n                    \"Top\": 0.8404383659362793,\n                    \"Width\": 0.026891402900218964\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19050633907318115,\n                        \"Y\": 0.8404383659362793\n                    },\n                    {\n                        \"X\": 0.217396542429924,\n                        \"Y\": 0.8404566645622253\n                    },\n                    {\n                        \"X\": 0.2173977494239807,\n                        \"Y\": 0.8499812483787537\n                    },\n                    {\n                        \"X\": 0.19050738215446472,\n                        \"Y\": 0.8499628901481628\n                    }\n                ]\n            },\n            \"Id\": \"6788320f-ee47-488f-9037-66d14505d5e6\",\n            \"Text\": \"from\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95214080810547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00971443671733141,\n                    \"Left\": 0.22042858600616455,\n                    \"Top\": 0.8404569625854492,\n                    \"Width\": 0.04660008102655411\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22042858600616455,\n                        \"Y\": 0.8404569625854492\n                    },\n                    {\n                        \"X\": 0.2670271694660187,\n                        \"Y\": 0.840488612651825\n                    },\n                    {\n                        \"X\": 0.26702865958213806,\n                        \"Y\": 0.8501714468002319\n                    },\n                    {\n                        \"X\": 0.22042982280254364,\n                        \"Y\": 0.8501396775245667\n                    }\n                ]\n            },\n            \"Id\": \"5475c58e-0305-43ad-adb6-f7d98e0dc028\",\n            \"Text\": \"Present\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94033813476562,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009190630167722702,\n                    \"Left\": 0.2690626084804535,\n                    \"Top\": 0.8408642411231995,\n                    \"Width\": 0.049127865582704544\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2690626084804535,\n                        \"Y\": 0.8408642411231995\n                    },\n                    {\n                        \"X\": 0.31818878650665283,\n                        \"Y\": 0.8408976197242737\n                    },\n                    {\n                        \"X\": 0.31819048523902893,\n                        \"Y\": 0.8500548601150513\n                    },\n                    {\n                        \"X\": 0.2690640389919281,\n                        \"Y\": 0.8500213623046875\n                    }\n                ]\n            },\n            \"Id\": \"20e82e99-f51d-4f90-8253-1af4ce500bf1\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75788879394531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011975540779531002,\n                    \"Left\": 0.4982842803001404,\n                    \"Top\": 0.8404870629310608,\n                    \"Width\": 0.04249228909611702\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4982842803001404,\n                        \"Y\": 0.8404870629310608\n                    },\n                    {\n                        \"X\": 0.5407727956771851,\n                        \"Y\": 0.8405159115791321\n                    },\n                    {\n                        \"X\": 0.5407765507698059,\n                        \"Y\": 0.8524625897407532\n                    },\n                    {\n                        \"X\": 0.49828773736953735,\n                        \"Y\": 0.8524335622787476\n                    }\n                ]\n            },\n            \"Id\": \"5c31b2df-bdff-4512-887d-0e5b83424505\",\n            \"Text\": \"Mailing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.80899810791016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010980827733874321,\n                    \"Left\": 0.5431336164474487,\n                    \"Top\": 0.8405097723007202,\n                    \"Width\": 0.05209095776081085\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5431336164474487,\n                        \"Y\": 0.8405097723007202\n                    },\n                    {\n                        \"X\": 0.5952207446098328,\n                        \"Y\": 0.840545117855072\n                    },\n                    {\n                        \"X\": 0.5952245593070984,\n                        \"Y\": 0.8514906167984009\n                    },\n                    {\n                        \"X\": 0.5431370735168457,\n                        \"Y\": 0.85145503282547\n                    }\n                ]\n            },\n            \"Id\": \"453e3b88-069f-4a12-9275-24cfe6c20934\",\n            \"Text\": \"Address,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62727355957031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009518234059214592,\n                    \"Left\": 0.5986232161521912,\n                    \"Top\": 0.840380847454071,\n                    \"Width\": 0.00837279949337244\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5986232161521912,\n                        \"Y\": 0.840380847454071\n                    },\n                    {\n                        \"X\": 0.6069926023483276,\n                        \"Y\": 0.8403865694999695\n                    },\n                    {\n                        \"X\": 0.6069959998130798,\n                        \"Y\": 0.8498991131782532\n                    },\n                    {\n                        \"X\": 0.5986265540122986,\n                        \"Y\": 0.8498933911323547\n                    }\n                ]\n            },\n            \"Id\": \"29fef3d1-15d5-48e3-a51a-fd2922d8f9e5\",\n            \"Text\": \"if\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92166137695312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009789807721972466,\n                    \"Left\": 0.609192967414856,\n                    \"Top\": 0.8404111862182617,\n                    \"Width\": 0.04839906468987465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.609192967414856,\n                        \"Y\": 0.8404111862182617\n                    },\n                    {\n                        \"X\": 0.6575883030891418,\n                        \"Y\": 0.8404440879821777\n                    },\n                    {\n                        \"X\": 0.6575920581817627,\n                        \"Y\": 0.8502010107040405\n                    },\n                    {\n                        \"X\": 0.6091964840888977,\n                        \"Y\": 0.850167989730835\n                    }\n                ]\n            },\n            \"Id\": \"b3427a41-67a8-4321-b9af-3096970a48cb\",\n            \"Text\": \"different\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.90414428710938,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009605390019714832,\n                    \"Left\": 0.659954309463501,\n                    \"Top\": 0.840485155582428,\n                    \"Width\": 0.02737559750676155\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.659954309463501,\n                        \"Y\": 0.840485155582428\n                    },\n                    {\n                        \"X\": 0.6873260140419006,\n                        \"Y\": 0.8405037522315979\n                    },\n                    {\n                        \"X\": 0.687329888343811,\n                        \"Y\": 0.850090503692627\n                    },\n                    {\n                        \"X\": 0.659958004951477,\n                        \"Y\": 0.8500718474388123\n                    }\n                ]\n            },\n            \"Id\": \"81489e93-b636-4794-83d9-ca6be018d5b8\",\n            \"Text\": \"from\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93772888183594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009751930832862854,\n                    \"Left\": 0.6901788115501404,\n                    \"Top\": 0.8405665755271912,\n                    \"Width\": 0.04628383740782738\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6901788115501404,\n                        \"Y\": 0.8405665755271912\n                    },\n                    {\n                        \"X\": 0.736458420753479,\n                        \"Y\": 0.8405979871749878\n                    },\n                    {\n                        \"X\": 0.7364626526832581,\n                        \"Y\": 0.8503184914588928\n                    },\n                    {\n                        \"X\": 0.6901827454566956,\n                        \"Y\": 0.8502869606018066\n                    }\n                ]\n            },\n            \"Id\": \"df9f98b5-4e20-4953-a309-714d353dae73\",\n            \"Text\": \"Present\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95861053466797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00983455404639244,\n                    \"Left\": 0.7386741042137146,\n                    \"Top\": 0.8404744863510132,\n                    \"Width\": 0.04893771931529045\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7386741042137146,\n                        \"Y\": 0.8404744863510132\n                    },\n                    {\n                        \"X\": 0.7876072525978088,\n                        \"Y\": 0.8405077457427979\n                    },\n                    {\n                        \"X\": 0.7876117825508118,\n                        \"Y\": 0.8503090739250183\n                    },\n                    {\n                        \"X\": 0.7386783361434937,\n                        \"Y\": 0.8502756953239441\n                    }\n                ]\n            },\n            \"Id\": \"02ec58b7-3d58-4b1e-84b5-3a9b95273e91\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.86595153808594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010117524303495884,\n                    \"Left\": 0.49957114458084106,\n                    \"Top\": 0.8579391837120056,\n                    \"Width\": 0.024689432233572006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49957114458084106,\n                        \"Y\": 0.8579391837120056\n                    },\n                    {\n                        \"X\": 0.524257481098175,\n                        \"Y\": 0.857956051826477\n                    },\n                    {\n                        \"X\": 0.5242605805397034,\n                        \"Y\": 0.8680567145347595\n                    },\n                    {\n                        \"X\": 0.49957409501075745,\n                        \"Y\": 0.8680397868156433\n                    }\n                ]\n            },\n            \"Id\": \"32e7cbfd-cd96-4b1c-952d-10be88f0b7dd\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.23432922363281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00985080935060978,\n                    \"Left\": 0.028741713613271713,\n                    \"Top\": 0.8949871063232422,\n                    \"Width\": 0.010733049362897873\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028741713613271713,\n                        \"Y\": 0.8949871063232422\n                    },\n                    {\n                        \"X\": 0.03947456553578377,\n                        \"Y\": 0.8949944972991943\n                    },\n                    {\n                        \"X\": 0.039474762976169586,\n                        \"Y\": 0.9048379063606262\n                    },\n                    {\n                        \"X\": 0.028741851449012756,\n                        \"Y\": 0.9048303961753845\n                    }\n                ]\n            },\n            \"Id\": \"4105af1f-7cb5-48db-8b9a-514382bad364\",\n            \"Text\": \"If\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94287872314453,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011883841827511787,\n                    \"Left\": 0.041466377675533295,\n                    \"Top\": 0.8952707052230835,\n                    \"Width\": 0.050927236676216125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.041466377675533295,\n                        \"Y\": 0.8952707052230835\n                    },\n                    {\n                        \"X\": 0.09239300340414047,\n                        \"Y\": 0.8953059911727905\n                    },\n                    {\n                        \"X\": 0.09239361435174942,\n                        \"Y\": 0.9071545004844666\n                    },\n                    {\n                        \"X\": 0.04146663099527359,\n                        \"Y\": 0.9071190357208252\n                    }\n                ]\n            },\n            \"Id\": \"4aeb0b21-3af9-45e5-b736-e6ae7f921f75\",\n            \"Text\": \"residing\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9263687133789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009062008932232857,\n                    \"Left\": 0.09524095803499222,\n                    \"Top\": 0.89581298828125,\n                    \"Width\": 0.013039825484156609\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09524095803499222,\n                        \"Y\": 0.89581298828125\n                    },\n                    {\n                        \"X\": 0.1082802265882492,\n                        \"Y\": 0.8958220481872559\n                    },\n                    {\n                        \"X\": 0.10828078538179398,\n                        \"Y\": 0.9048749804496765\n                    },\n                    {\n                        \"X\": 0.09524143487215042,\n                        \"Y\": 0.9048659205436707\n                    }\n                ]\n            },\n            \"Id\": \"df45759b-7bbe-4fc2-be31-df903ff6bbcb\",\n            \"Text\": \"at\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.800537109375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010585748590528965,\n                    \"Left\": 0.11056516319513321,\n                    \"Top\": 0.8961610794067383,\n                    \"Width\": 0.048575934022665024\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11056516319513321,\n                        \"Y\": 0.8961610794067383\n                    },\n                    {\n                        \"X\": 0.15914013981819153,\n                        \"Y\": 0.8961947560310364\n                    },\n                    {\n                        \"X\": 0.15914109349250793,\n                        \"Y\": 0.9067468047142029\n                    },\n                    {\n                        \"X\": 0.11056582629680634,\n                        \"Y\": 0.9067129492759705\n                    }\n                ]\n            },\n            \"Id\": \"cb8e6038-6bc4-4c57-aeed-206aa13135a4\",\n            \"Text\": \"present\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96592712402344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00956349354237318,\n                    \"Left\": 0.16140487790107727,\n                    \"Top\": 0.8954340815544128,\n                    \"Width\": 0.05076257511973381\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16140487790107727,\n                        \"Y\": 0.8954340815544128\n                    },\n                    {\n                        \"X\": 0.21216629445552826,\n                        \"Y\": 0.8954693078994751\n                    },\n                    {\n                        \"X\": 0.21216745674610138,\n                        \"Y\": 0.9049975872039795\n                    },\n                    {\n                        \"X\": 0.1614057570695877,\n                        \"Y\": 0.9049622416496277\n                    }\n                ]\n            },\n            \"Id\": \"5828ccb1-cc04-4486-86b0-cd54c343778d\",\n            \"Text\": \"address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84324645996094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009897913783788681,\n                    \"Left\": 0.2149941325187683,\n                    \"Top\": 0.8951240181922913,\n                    \"Width\": 0.018466303125023842\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2149941325187683,\n                        \"Y\": 0.8951240181922913\n                    },\n                    {\n                        \"X\": 0.23345910012722015,\n                        \"Y\": 0.895136833190918\n                    },\n                    {\n                        \"X\": 0.2334604412317276,\n                        \"Y\": 0.9050219655036926\n                    },\n                    {\n                        \"X\": 0.2149953544139862,\n                        \"Y\": 0.9050090909004211\n                    }\n                ]\n            },\n            \"Id\": \"8edf7b28-faf2-4d09-88ef-7f8bc9402424\",\n            \"Text\": \"for\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89726257324219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009611920453608036,\n                    \"Left\": 0.23598217964172363,\n                    \"Top\": 0.8953713178634644,\n                    \"Width\": 0.02630249783396721\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23598217964172363,\n                        \"Y\": 0.8953713178634644\n                    },\n                    {\n                        \"X\": 0.26228320598602295,\n                        \"Y\": 0.8953895568847656\n                    },\n                    {\n                        \"X\": 0.26228466629981995,\n                        \"Y\": 0.9049832820892334\n                    },\n                    {\n                        \"X\": 0.2359834909439087,\n                        \"Y\": 0.9049649238586426\n                    }\n                ]\n            },\n            \"Id\": \"29a8b945-c5bc-476c-af02-8b24fd18ba44\",\n            \"Text\": \"less\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89334869384766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00953438226133585,\n                    \"Left\": 0.26561105251312256,\n                    \"Top\": 0.8954992294311523,\n                    \"Width\": 0.027958491817116737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.26561105251312256,\n                        \"Y\": 0.8954992294311523\n                    },\n                    {\n                        \"X\": 0.2935679256916046,\n                        \"Y\": 0.8955186009407043\n                    },\n                    {\n                        \"X\": 0.29356953501701355,\n                        \"Y\": 0.9050335884094238\n                    },\n                    {\n                        \"X\": 0.26561251282691956,\n                        \"Y\": 0.905014157295227\n                    }\n                ]\n            },\n            \"Id\": \"f4796e67-5bdc-461a-a169-9ff9eb68f80e\",\n            \"Text\": \"than\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7862548828125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009240111336112022,\n                    \"Left\": 0.2968183755874634,\n                    \"Top\": 0.8958788514137268,\n                    \"Width\": 0.022893957793712616\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2968183755874634,\n                        \"Y\": 0.8958788514137268\n                    },\n                    {\n                        \"X\": 0.3197106122970581,\n                        \"Y\": 0.8958947062492371\n                    },\n                    {\n                        \"X\": 0.3197123110294342,\n                        \"Y\": 0.9051189422607422\n                    },\n                    {\n                        \"X\": 0.2968199551105499,\n                        \"Y\": 0.9051029682159424\n                    }\n                ]\n            },\n            \"Id\": \"cc1687b7-de41-4166-80b0-b4bdbbf00cc4\",\n            \"Text\": \"two\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.75463104248047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009865067899227142,\n                    \"Left\": 0.32244187593460083,\n                    \"Top\": 0.8972445726394653,\n                    \"Width\": 0.03859995678067207\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32244187593460083,\n                        \"Y\": 0.8972445726394653\n                    },\n                    {\n                        \"X\": 0.36103975772857666,\n                        \"Y\": 0.8972713947296143\n                    },\n                    {\n                        \"X\": 0.3610418438911438,\n                        \"Y\": 0.9071096181869507\n                    },\n                    {\n                        \"X\": 0.32244372367858887,\n                        \"Y\": 0.907082736492157\n                    }\n                ]\n            },\n            \"Id\": \"102c24fb-6ccc-4731-b7af-eb886d5bf4db\",\n            \"Text\": \"years,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9372329711914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011532648466527462,\n                    \"Left\": 0.3643971383571625,\n                    \"Top\": 0.8954669833183289,\n                    \"Width\": 0.058403607457876205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3643971383571625,\n                        \"Y\": 0.8954669833183289\n                    },\n                    {\n                        \"X\": 0.42279788851737976,\n                        \"Y\": 0.8955075144767761\n                    },\n                    {\n                        \"X\": 0.422800749540329,\n                        \"Y\": 0.9069996476173401\n                    },\n                    {\n                        \"X\": 0.36439958214759827,\n                        \"Y\": 0.9069589376449585\n                    }\n                ]\n            },\n            \"Id\": \"9bd4d3a3-8842-4ec9-89dc-98b064ebed3f\",\n            \"Text\": \"complete\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94188690185547,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009473087266087532,\n                    \"Left\": 0.4254606366157532,\n                    \"Top\": 0.8954619765281677,\n                    \"Width\": 0.020315155386924744\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4254606366157532,\n                        \"Y\": 0.8954619765281677\n                    },\n                    {\n                        \"X\": 0.44577333331108093,\n                        \"Y\": 0.8954761028289795\n                    },\n                    {\n                        \"X\": 0.4457757771015167,\n                        \"Y\": 0.9049350619316101\n                    },\n                    {\n                        \"X\": 0.4254629909992218,\n                        \"Y\": 0.9049209356307983\n                    }\n                ]\n            },\n            \"Id\": \"0c2806bd-515e-4f51-92bc-6b2bed604753\",\n            \"Text\": \"the\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.65294647216797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012155537493526936,\n                    \"Left\": 0.44877293705940247,\n                    \"Top\": 0.895162045955658,\n                    \"Width\": 0.06232258304953575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44877293705940247,\n                        \"Y\": 0.895162045955658\n                    },\n                    {\n                        \"X\": 0.5110918879508972,\n                        \"Y\": 0.8952052593231201\n                    },\n                    {\n                        \"X\": 0.5110955238342285,\n                        \"Y\": 0.907317578792572\n                    },\n                    {\n                        \"X\": 0.44877609610557556,\n                        \"Y\": 0.9072741270065308\n                    }\n                ]\n            },\n            \"Id\": \"e4709efd-da97-4d41-b6d2-53b61c69868b\",\n            \"Text\": \"following:\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94673156738281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009767066687345505,\n                    \"Left\": 0.028897801414132118,\n                    \"Top\": 0.9109739065170288,\n                    \"Width\": 0.04259574040770531\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028897801414132118,\n                        \"Y\": 0.9109739065170288\n                    },\n                    {\n                        \"X\": 0.07149315625429153,\n                        \"Y\": 0.9110036492347717\n                    },\n                    {\n                        \"X\": 0.07149354368448257,\n                        \"Y\": 0.9207409620285034\n                    },\n                    {\n                        \"X\": 0.02889793924987316,\n                        \"Y\": 0.9207111597061157\n                    }\n                ]\n            },\n            \"Id\": \"99b568ec-2110-447c-ad05-b52ea042ab22\",\n            \"Text\": \"Former\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9549331665039,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010042578913271427,\n                    \"Left\": 0.07388567179441452,\n                    \"Top\": 0.9109538793563843,\n                    \"Width\": 0.0493260882794857\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07388567179441452,\n                        \"Y\": 0.9109538793563843\n                    },\n                    {\n                        \"X\": 0.12321106344461441,\n                        \"Y\": 0.9109883308410645\n                    },\n                    {\n                        \"X\": 0.12321176379919052,\n                        \"Y\": 0.9209964871406555\n                    },\n                    {\n                        \"X\": 0.07388608157634735,\n                        \"Y\": 0.9209619164466858\n                    }\n                ]\n            },\n            \"Id\": \"8ac2a45e-69d8-4d59-9513-c2eabaf9e8e0\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.9970932006836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011521324515342712,\n                    \"Left\": 0.1265360563993454,\n                    \"Top\": 0.9110495448112488,\n                    \"Width\": 0.04087274149060249\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1265360563993454,\n                        \"Y\": 0.9110495448112488\n                    },\n                    {\n                        \"X\": 0.16740770637989044,\n                        \"Y\": 0.9110780954360962\n                    },\n                    {\n                        \"X\": 0.1674088090658188,\n                        \"Y\": 0.9225708842277527\n                    },\n                    {\n                        \"X\": 0.12653689086437225,\n                        \"Y\": 0.9225422143936157\n                    }\n                ]\n            },\n            \"Id\": \"428951fd-2275-4b9e-86b0-1afe1d0c108c\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.43533325195312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011656392365694046,\n                    \"Left\": 0.1704690009355545,\n                    \"Top\": 0.9111573696136475,\n                    \"Width\": 0.023872239515185356\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1704690009355545,\n                        \"Y\": 0.9111573696136475\n                    },\n                    {\n                        \"X\": 0.19433994591236115,\n                        \"Y\": 0.9111740589141846\n                    },\n                    {\n                        \"X\": 0.194341242313385,\n                        \"Y\": 0.9228137731552124\n                    },\n                    {\n                        \"X\": 0.17047014832496643,\n                        \"Y\": 0.9227970838546753\n                    }\n                ]\n            },\n            \"Id\": \"55173c4e-c513-40aa-96e5-7be5952b1d4e\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 86.43854522705078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010390904732048512,\n                    \"Left\": 0.19751349091529846,\n                    \"Top\": 0.9115145206451416,\n                    \"Width\": 0.03236784040927887\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19751349091529846,\n                        \"Y\": 0.9115145206451416\n                    },\n                    {\n                        \"X\": 0.2298799604177475,\n                        \"Y\": 0.9115371108055115\n                    },\n                    {\n                        \"X\": 0.22988133132457733,\n                        \"Y\": 0.9219053983688354\n                    },\n                    {\n                        \"X\": 0.19751466810703278,\n                        \"Y\": 0.921882688999176\n                    }\n                ]\n            },\n            \"Id\": \"a7ceac34-aa1f-423c-9361-7d1898ee2a20\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6201171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011745475232601166,\n                    \"Left\": 0.2331783026456833,\n                    \"Top\": 0.9108660817146301,\n                    \"Width\": 0.02571304328739643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2331783026456833,\n                        \"Y\": 0.9108660817146301\n                    },\n                    {\n                        \"X\": 0.2588895857334137,\n                        \"Y\": 0.9108840227127075\n                    },\n                    {\n                        \"X\": 0.25889134407043457,\n                        \"Y\": 0.9226115942001343\n                    },\n                    {\n                        \"X\": 0.23317988216876984,\n                        \"Y\": 0.9225935339927673\n                    }\n                ]\n            },\n            \"Id\": \"75ba1fc4-a812-4bcc-beb1-a1e2f22e7dd5\",\n            \"Text\": \"ZIP)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94513702392578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00955896358937025,\n                    \"Left\": 0.33153554797172546,\n                    \"Top\": 0.9110748171806335,\n                    \"Width\": 0.027099648490548134\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33153554797172546,\n                        \"Y\": 0.9110748171806335\n                    },\n                    {\n                        \"X\": 0.35863322019577026,\n                        \"Y\": 0.9110937118530273\n                    },\n                    {\n                        \"X\": 0.35863521695137024,\n                        \"Y\": 0.9206337928771973\n                    },\n                    {\n                        \"X\": 0.3315373957157135,\n                        \"Y\": 0.9206147789955139\n                    }\n                ]\n            },\n            \"Id\": \"f7c79fc0-af5e-4cb6-809f-a1b6664f2c6d\",\n            \"Text\": \"Own\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9474868774414,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00942054484039545,\n                    \"Left\": 0.3880360424518585,\n                    \"Top\": 0.9112581014633179,\n                    \"Width\": 0.02877102419734001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3880360424518585,\n                        \"Y\": 0.9112581014633179\n                    },\n                    {\n                        \"X\": 0.41680479049682617,\n                        \"Y\": 0.9112781882286072\n                    },\n                    {\n                        \"X\": 0.41680708527565,\n                        \"Y\": 0.9206786751747131\n                    },\n                    {\n                        \"X\": 0.38803818821907043,\n                        \"Y\": 0.9206584692001343\n                    }\n                ]\n            },\n            \"Id\": \"bf584e26-59bd-4191-9604-e97850e08007\",\n            \"Text\": \"Rent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.87846374511719,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00946702342480421,\n                    \"Left\": 0.44322556257247925,\n                    \"Top\": 0.9112712144851685,\n                    \"Width\": 0.020413851365447044\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44322556257247925,\n                        \"Y\": 0.9112712144851685\n                    },\n                    {\n                        \"X\": 0.4636368751525879,\n                        \"Y\": 0.9112854599952698\n                    },\n                    {\n                        \"X\": 0.46363943815231323,\n                        \"Y\": 0.9207382202148438\n                    },\n                    {\n                        \"X\": 0.4432280361652374,\n                        \"Y\": 0.9207239151000977\n                    }\n                ]\n            },\n            \"Id\": \"42c81ab3-aabb-4bea-b9d8-919d5480d1b3\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.35614776611328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009516291320323944,\n                    \"Left\": 0.4668775796890259,\n                    \"Top\": 0.9113308787345886,\n                    \"Width\": 0.022602058947086334\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4668775796890259,\n                        \"Y\": 0.9113308787345886\n                    },\n                    {\n                        \"X\": 0.48947691917419434,\n                        \"Y\": 0.9113466739654541\n                    },\n                    {\n                        \"X\": 0.4894796311855316,\n                        \"Y\": 0.9208471775054932\n                    },\n                    {\n                        \"X\": 0.4668801724910736,\n                        \"Y\": 0.9208313226699829\n                    }\n                ]\n            },\n            \"Id\": \"d9b93050-31f7-433e-be80-105ea3bd9567\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91082000732422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009666224010288715,\n                    \"Left\": 0.49778324365615845,\n                    \"Top\": 0.9110652208328247,\n                    \"Width\": 0.04320865124464035\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49778324365615845,\n                        \"Y\": 0.9110652208328247\n                    },\n                    {\n                        \"X\": 0.5409888625144958,\n                        \"Y\": 0.911095380783081\n                    },\n                    {\n                        \"X\": 0.5409919023513794,\n                        \"Y\": 0.9207314848899841\n                    },\n                    {\n                        \"X\": 0.4977860450744629,\n                        \"Y\": 0.9207012057304382\n                    }\n                ]\n            },\n            \"Id\": \"a2ba5ef2-e6d6-4146-9a10-0e4edc546441\",\n            \"Text\": \"Former\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95389556884766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009290092624723911,\n                    \"Left\": 0.5436096787452698,\n                    \"Top\": 0.9113772511482239,\n                    \"Width\": 0.04930281266570091\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5436096787452698,\n                        \"Y\": 0.9113772511482239\n                    },\n                    {\n                        \"X\": 0.5929092764854431,\n                        \"Y\": 0.9114116430282593\n                    },\n                    {\n                        \"X\": 0.592912495136261,\n                        \"Y\": 0.9206673502922058\n                    },\n                    {\n                        \"X\": 0.5436125993728638,\n                        \"Y\": 0.9206327795982361\n                    }\n                ]\n            },\n            \"Id\": \"5f6125ab-69aa-46f0-b13c-4828cd1b6ef4\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.50177001953125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011754271574318409,\n                    \"Left\": 0.5958303213119507,\n                    \"Top\": 0.9109947085380554,\n                    \"Width\": 0.04115293547511101\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5958303213119507,\n                        \"Y\": 0.9109947085380554\n                    },\n                    {\n                        \"X\": 0.6369788646697998,\n                        \"Y\": 0.9110233783721924\n                    },\n                    {\n                        \"X\": 0.6369832754135132,\n                        \"Y\": 0.9227489829063416\n                    },\n                    {\n                        \"X\": 0.5958344340324402,\n                        \"Y\": 0.9227201342582703\n                    }\n                ]\n            },\n            \"Id\": \"36519308-af01-418c-b4bc-d07da38f2d2c\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.87965393066406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011790492571890354,\n                    \"Left\": 0.6403583288192749,\n                    \"Top\": 0.9112223386764526,\n                    \"Width\": 0.023727642372250557\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6403583288192749,\n                        \"Y\": 0.9112223386764526\n                    },\n                    {\n                        \"X\": 0.6640813946723938,\n                        \"Y\": 0.9112389087677002\n                    },\n                    {\n                        \"X\": 0.6640859842300415,\n                        \"Y\": 0.9230128526687622\n                    },\n                    {\n                        \"X\": 0.6403627991676331,\n                        \"Y\": 0.9229962229728699\n                    }\n                ]\n            },\n            \"Id\": \"e2736f86-3661-4522-8021-9480ed621ada\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.91220092773438,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010425076819956303,\n                    \"Left\": 0.6671563982963562,\n                    \"Top\": 0.9115747809410095,\n                    \"Width\": 0.03217976912856102\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6671563982963562,\n                        \"Y\": 0.9115747809410095\n                    },\n                    {\n                        \"X\": 0.6993318796157837,\n                        \"Y\": 0.9115972518920898\n                    },\n                    {\n                        \"X\": 0.6993361711502075,\n                        \"Y\": 0.9219998717308044\n                    },\n                    {\n                        \"X\": 0.6671604514122009,\n                        \"Y\": 0.9219773411750793\n                    }\n                ]\n            },\n            \"Id\": \"2d9b2a9c-0d4b-4b46-8483-a563dc137850\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83784484863281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011683980002999306,\n                    \"Left\": 0.7029115557670593,\n                    \"Top\": 0.9109259247779846,\n                    \"Width\": 0.025330379605293274\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7029115557670593,\n                        \"Y\": 0.9109259247779846\n                    },\n                    {\n                        \"X\": 0.728236973285675,\n                        \"Y\": 0.9109435677528381\n                    },\n                    {\n                        \"X\": 0.7282419204711914,\n                        \"Y\": 0.9226098656654358\n                    },\n                    {\n                        \"X\": 0.7029163837432861,\n                        \"Y\": 0.9225921034812927\n                    }\n                ]\n            },\n            \"Id\": \"b9cdbfea-adff-4b7d-9233-29afccb381e7\",\n            \"Text\": \"ZIP)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.94391632080078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009652268141508102,\n                    \"Left\": 0.8017768859863281,\n                    \"Top\": 0.9111219644546509,\n                    \"Width\": 0.02668119966983795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8017768859863281,\n                        \"Y\": 0.9111219644546509\n                    },\n                    {\n                        \"X\": 0.8284534215927124,\n                        \"Y\": 0.9111406207084656\n                    },\n                    {\n                        \"X\": 0.8284581303596497,\n                        \"Y\": 0.9207742214202881\n                    },\n                    {\n                        \"X\": 0.801781415939331,\n                        \"Y\": 0.9207555651664734\n                    }\n                ]\n            },\n            \"Id\": \"592efa83-d41d-4792-bbca-249a12498a5b\",\n            \"Text\": \"Own\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.97393798828125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009769544005393982,\n                    \"Left\": 0.8579306602478027,\n                    \"Top\": 0.9109443426132202,\n                    \"Width\": 0.028330516070127487\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8579306602478027,\n                        \"Y\": 0.9109443426132202\n                    },\n                    {\n                        \"X\": 0.8862561583518982,\n                        \"Y\": 0.9109641313552856\n                    },\n                    {\n                        \"X\": 0.8862612247467041,\n                        \"Y\": 0.9207139015197754\n                    },\n                    {\n                        \"X\": 0.8579356074333191,\n                        \"Y\": 0.9206940531730652\n                    }\n                ]\n            },\n            \"Id\": \"23480943-6636-4560-a541-4856d5930669\",\n            \"Text\": \"Rent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.5462417602539,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009772961027920246,\n                    \"Left\": 0.9128906726837158,\n                    \"Top\": 0.9111315011978149,\n                    \"Width\": 0.020678965374827385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9128906726837158,\n                        \"Y\": 0.9111315011978149\n                    },\n                    {\n                        \"X\": 0.933564305305481,\n                        \"Y\": 0.9111459255218506\n                    },\n                    {\n                        \"X\": 0.9335696697235107,\n                        \"Y\": 0.9209044575691223\n                    },\n                    {\n                        \"X\": 0.912895917892456,\n                        \"Y\": 0.9208899736404419\n                    }\n                ]\n            },\n            \"Id\": \"d1855a31-ec03-4617-88b9-df0a828a9ad0\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.37577819824219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009813961572945118,\n                    \"Left\": 0.9363593459129333,\n                    \"Top\": 0.9110594987869263,\n                    \"Width\": 0.02406526915729046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9363593459129333,\n                        \"Y\": 0.9110594987869263\n                    },\n                    {\n                        \"X\": 0.9604191184043884,\n                        \"Y\": 0.9110763072967529\n                    },\n                    {\n                        \"X\": 0.9604246020317078,\n                        \"Y\": 0.9208734631538391\n                    },\n                    {\n                        \"X\": 0.9363647699356079,\n                        \"Y\": 0.9208565950393677\n                    }\n                ]\n            },\n            \"Id\": \"37c697b1-067b-4f61-a6b7-3c673a3a90ac\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87519073486328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010175071656703949,\n                    \"Left\": 0.030998311936855316,\n                    \"Top\": 0.9294491410255432,\n                    \"Width\": 0.024118009954690933\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030998311936855316,\n                        \"Y\": 0.9294491410255432\n                    },\n                    {\n                        \"X\": 0.05511602386832237,\n                        \"Y\": 0.9294661283493042\n                    },\n                    {\n                        \"X\": 0.05511632189154625,\n                        \"Y\": 0.9396242499351501\n                    },\n                    {\n                        \"X\": 0.03099846839904785,\n                        \"Y\": 0.9396072030067444\n                    }\n                ]\n            },\n            \"Id\": \"9e354791-22a8-4ac8-aa38-0d016556fdcc\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9045181274414,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010169311426579952,\n                    \"Left\": 0.49454760551452637,\n                    \"Top\": 0.9272798895835876,\n                    \"Width\": 0.02434782311320305\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49454760551452637,\n                        \"Y\": 0.9272798895835876\n                    },\n                    {\n                        \"X\": 0.5188923478126526,\n                        \"Y\": 0.9272969961166382\n                    },\n                    {\n                        \"X\": 0.5188953876495361,\n                        \"Y\": 0.9374492168426514\n                    },\n                    {\n                        \"X\": 0.49455052614212036,\n                        \"Y\": 0.937432050704956\n                    }\n                ]\n            },\n            \"Id\": \"0e8d85a4-e8e0-442a-aa97-cbc8c0168c86\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.95330047607422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009597339667379856,\n                    \"Left\": 0.028554605320096016,\n                    \"Top\": 0.9672084450721741,\n                    \"Width\": 0.04339972510933876\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028554605320096016,\n                        \"Y\": 0.9672084450721741\n                    },\n                    {\n                        \"X\": 0.07195395231246948,\n                        \"Y\": 0.9672393798828125\n                    },\n                    {\n                        \"X\": 0.07195433229207993,\n                        \"Y\": 0.9768058061599731\n                    },\n                    {\n                        \"X\": 0.02855473756790161,\n                        \"Y\": 0.9767747521400452\n                    }\n                ]\n            },\n            \"Id\": \"967719f9-169f-4657-b188-c1f407f23907\",\n            \"Text\": \"Former\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9482650756836,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009541693143546581,\n                    \"Left\": 0.0739554837346077,\n                    \"Top\": 0.9671719670295715,\n                    \"Width\": 0.04942692071199417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0739554837346077,\n                        \"Y\": 0.9671719670295715\n                    },\n                    {\n                        \"X\": 0.12338174134492874,\n                        \"Y\": 0.9672071933746338\n                    },\n                    {\n                        \"X\": 0.12338240444660187,\n                        \"Y\": 0.9767136573791504\n                    },\n                    {\n                        \"X\": 0.07395587116479874,\n                        \"Y\": 0.9766783118247986\n                    }\n                ]\n            },\n            \"Id\": \"971b6f97-64da-44eb-bdf7-a4588f6be68d\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.42352294921875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011372058652341366,\n                    \"Left\": 0.12639939785003662,\n                    \"Top\": 0.9671591520309448,\n                    \"Width\": 0.04124448075890541\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.12639939785003662,\n                        \"Y\": 0.9671591520309448\n                    },\n                    {\n                        \"X\": 0.16764278709888458,\n                        \"Y\": 0.9671885371208191\n                    },\n                    {\n                        \"X\": 0.16764387488365173,\n                        \"Y\": 0.9785311818122864\n                    },\n                    {\n                        \"X\": 0.12640021741390228,\n                        \"Y\": 0.9785016775131226\n                    }\n                ]\n            },\n            \"Id\": \"1a5ea90c-1468-419f-b915-d9f825bfa002\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 86.77054595947266,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011427794583141804,\n                    \"Left\": 0.17062842845916748,\n                    \"Top\": 0.9674301743507385,\n                    \"Width\": 0.02379845827817917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17062842845916748,\n                        \"Y\": 0.9674301743507385\n                    },\n                    {\n                        \"X\": 0.19442561268806458,\n                        \"Y\": 0.9674471020698547\n                    },\n                    {\n                        \"X\": 0.19442687928676605,\n                        \"Y\": 0.9788579344749451\n                    },\n                    {\n                        \"X\": 0.17062954604625702,\n                        \"Y\": 0.9788408875465393\n                    }\n                ]\n            },\n            \"Id\": \"b05e647e-7ea3-4d88-8804-63b184668da1\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 84.24738311767578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010243040509521961,\n                    \"Left\": 0.1973939687013626,\n                    \"Top\": 0.9675889015197754,\n                    \"Width\": 0.03258995711803436\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1973939687013626,\n                        \"Y\": 0.9675889015197754\n                    },\n                    {\n                        \"X\": 0.22998256981372833,\n                        \"Y\": 0.9676121473312378\n                    },\n                    {\n                        \"X\": 0.22998392581939697,\n                        \"Y\": 0.9778319597244263\n                    },\n                    {\n                        \"X\": 0.19739513099193573,\n                        \"Y\": 0.9778085947036743\n                    }\n                ]\n            },\n            \"Id\": \"3f577aff-e6da-4c13-8a93-b779657487c2\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7073974609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011739172041416168,\n                    \"Left\": 0.2331143170595169,\n                    \"Top\": 0.967017650604248,\n                    \"Width\": 0.025908779352903366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2331143170595169,\n                        \"Y\": 0.967017650604248\n                    },\n                    {\n                        \"X\": 0.2590213418006897,\n                        \"Y\": 0.9670361280441284\n                    },\n                    {\n                        \"X\": 0.25902310013771057,\n                        \"Y\": 0.978756844997406\n                    },\n                    {\n                        \"X\": 0.23311589658260345,\n                        \"Y\": 0.9787383079528809\n                    }\n                ]\n            },\n            \"Id\": \"bb96b806-0e7a-424c-961d-a5b740764c21\",\n            \"Text\": \"ZIP)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.91997528076172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0093311108648777,\n                    \"Left\": 0.3320038616657257,\n                    \"Top\": 0.9675143957138062,\n                    \"Width\": 0.0267669428139925\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3320038616657257,\n                        \"Y\": 0.9675143957138062\n                    },\n                    {\n                        \"X\": 0.35876885056495667,\n                        \"Y\": 0.9675334692001343\n                    },\n                    {\n                        \"X\": 0.35877078771591187,\n                        \"Y\": 0.9768455028533936\n                    },\n                    {\n                        \"X\": 0.33200564980506897,\n                        \"Y\": 0.9768263697624207\n                    }\n                ]\n            },\n            \"Id\": \"68a50f60-cb75-49be-96a9-ce849ca2befa\",\n            \"Text\": \"Own\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89859008789062,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009623877704143524,\n                    \"Left\": 0.3880269229412079,\n                    \"Top\": 0.9669864177703857,\n                    \"Width\": 0.028964949771761894\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3880269229412079,\n                        \"Y\": 0.9669864177703857\n                    },\n                    {\n                        \"X\": 0.4169895350933075,\n                        \"Y\": 0.9670071005821228\n                    },\n                    {\n                        \"X\": 0.4169918894767761,\n                        \"Y\": 0.9766103029251099\n                    },\n                    {\n                        \"X\": 0.3880290985107422,\n                        \"Y\": 0.9765896201133728\n                    }\n                ]\n            },\n            \"Id\": \"8c31db0b-4fe8-4c28-8451-f1fff5142ca7\",\n            \"Text\": \"Rent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.91511535644531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009484912268817425,\n                    \"Left\": 0.44316574931144714,\n                    \"Top\": 0.9670019149780273,\n                    \"Width\": 0.02124251052737236\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44316574931144714,\n                        \"Y\": 0.9670019149780273\n                    },\n                    {\n                        \"X\": 0.46440568566322327,\n                        \"Y\": 0.9670170545578003\n                    },\n                    {\n                        \"X\": 0.4644082486629486,\n                        \"Y\": 0.9764868021011353\n                    },\n                    {\n                        \"X\": 0.44316819310188293,\n                        \"Y\": 0.9764716029167175\n                    }\n                ]\n            },\n            \"Id\": \"0c7f88c9-b7e8-4c16-84a4-98ac9c045a6e\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 83.22697448730469,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00953623466193676,\n                    \"Left\": 0.4665807783603668,\n                    \"Top\": 0.967095136642456,\n                    \"Width\": 0.022900938987731934\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4665807783603668,\n                        \"Y\": 0.967095136642456\n                    },\n                    {\n                        \"X\": 0.4894790053367615,\n                        \"Y\": 0.9671114087104797\n                    },\n                    {\n                        \"X\": 0.48948171734809875,\n                        \"Y\": 0.9766313433647156\n                    },\n                    {\n                        \"X\": 0.46658337116241455,\n                        \"Y\": 0.9766149520874023\n                    }\n                ]\n            },\n            \"Id\": \"ecbcecbb-c75f-473c-8430-1de2845e2ace\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.92293548583984,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009699041955173016,\n                    \"Left\": 0.4980299174785614,\n                    \"Top\": 0.9669619798660278,\n                    \"Width\": 0.04353697970509529\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4980299174785614,\n                        \"Y\": 0.9669619798660278\n                    },\n                    {\n                        \"X\": 0.541563868522644,\n                        \"Y\": 0.966992974281311\n                    },\n                    {\n                        \"X\": 0.5415669083595276,\n                        \"Y\": 0.9766610264778137\n                    },\n                    {\n                        \"X\": 0.49803274869918823,\n                        \"Y\": 0.9766298532485962\n                    }\n                ]\n            },\n            \"Id\": \"bb843082-d4bb-4f4e-9697-345ad473aee2\",\n            \"Text\": \"Former\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88581848144531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009721877053380013,\n                    \"Left\": 0.5435506105422974,\n                    \"Top\": 0.9671289920806885,\n                    \"Width\": 0.04953042045235634\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5435506105422974,\n                        \"Y\": 0.9671289920806885\n                    },\n                    {\n                        \"X\": 0.5930776596069336,\n                        \"Y\": 0.9671643376350403\n                    },\n                    {\n                        \"X\": 0.593080997467041,\n                        \"Y\": 0.9768508672714233\n                    },\n                    {\n                        \"X\": 0.5435536503791809,\n                        \"Y\": 0.9768154621124268\n                    }\n                ]\n            },\n            \"Id\": \"dae87968-e58f-4b17-953e-d0c3ee871db3\",\n            \"Text\": \"Address\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.97282409667969,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01158434059470892,\n                    \"Left\": 0.5956819653511047,\n                    \"Top\": 0.9670603275299072,\n                    \"Width\": 0.04155735671520233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5956819653511047,\n                        \"Y\": 0.9670603275299072\n                    },\n                    {\n                        \"X\": 0.6372350454330444,\n                        \"Y\": 0.9670899510383606\n                    },\n                    {\n                        \"X\": 0.6372393369674683,\n                        \"Y\": 0.9786446690559387\n                    },\n                    {\n                        \"X\": 0.5956860184669495,\n                        \"Y\": 0.9786149263381958\n                    }\n                ]\n            },\n            \"Id\": \"38a2e9e5-86ba-4a02-8c4b-acb356a08d39\",\n            \"Text\": \"(street,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 80.38606262207031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011506905779242516,\n                    \"Left\": 0.640319287776947,\n                    \"Top\": 0.9673413038253784,\n                    \"Width\": 0.02391170524060726\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.640319287776947,\n                        \"Y\": 0.9673413038253784\n                    },\n                    {\n                        \"X\": 0.6642265319824219,\n                        \"Y\": 0.9673583507537842\n                    },\n                    {\n                        \"X\": 0.66423100233078,\n                        \"Y\": 0.9788482189178467\n                    },\n                    {\n                        \"X\": 0.6403236389160156,\n                        \"Y\": 0.9788311123847961\n                    }\n                ]\n            },\n            \"Id\": \"5385ca25-a024-4fe7-9c87-b3fa1bbd3f25\",\n            \"Text\": \"city,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.35089111328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010458665899932384,\n                    \"Left\": 0.6671713590621948,\n                    \"Top\": 0.9675317406654358,\n                    \"Width\": 0.03211243450641632\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6671713590621948,\n                        \"Y\": 0.9675317406654358\n                    },\n                    {\n                        \"X\": 0.6992794871330261,\n                        \"Y\": 0.9675546288490295\n                    },\n                    {\n                        \"X\": 0.69928377866745,\n                        \"Y\": 0.9779903888702393\n                    },\n                    {\n                        \"X\": 0.6671754121780396,\n                        \"Y\": 0.977967381477356\n                    }\n                ]\n            },\n            \"Id\": \"0849d0d3-3653-43c3-b9df-8adb3783d0fb\",\n            \"Text\": \"state,\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.81245422363281,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011951872147619724,\n                    \"Left\": 0.702785849571228,\n                    \"Top\": 0.9668540358543396,\n                    \"Width\": 0.02558273635804653\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.702785849571228,\n                        \"Y\": 0.9668540358543396\n                    },\n                    {\n                        \"X\": 0.7283634543418884,\n                        \"Y\": 0.9668722748756409\n                    },\n                    {\n                        \"X\": 0.7283685803413391,\n                        \"Y\": 0.9788058996200562\n                    },\n                    {\n                        \"X\": 0.7027907371520996,\n                        \"Y\": 0.9787876009941101\n                    }\n                ]\n            },\n            \"Id\": \"e3624bb0-137f-46ce-982b-f278225a666d\",\n            \"Text\": \"ZIP)\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89568328857422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009535979479551315,\n                    \"Left\": 0.8014581203460693,\n                    \"Top\": 0.9670853614807129,\n                    \"Width\": 0.02692522667348385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8014581203460693,\n                        \"Y\": 0.9670853614807129\n                    },\n                    {\n                        \"X\": 0.8283787369728088,\n                        \"Y\": 0.9671045541763306\n                    },\n                    {\n                        \"X\": 0.8283833861351013,\n                        \"Y\": 0.9766213297843933\n                    },\n                    {\n                        \"X\": 0.8014625906944275,\n                        \"Y\": 0.9766020774841309\n                    }\n                ]\n            },\n            \"Id\": \"f223f153-5bea-4c2b-bde5-442e7f4f0d1c\",\n            \"Text\": \"Own\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.96233367919922,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009709596633911133,\n                    \"Left\": 0.8580777645111084,\n                    \"Top\": 0.9669093489646912,\n                    \"Width\": 0.028757330030202866\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8580777645111084,\n                        \"Y\": 0.9669093489646912\n                    },\n                    {\n                        \"X\": 0.8868300914764404,\n                        \"Y\": 0.9669298529624939\n                    },\n                    {\n                        \"X\": 0.8868350982666016,\n                        \"Y\": 0.9766189455986023\n                    },\n                    {\n                        \"X\": 0.85808265209198,\n                        \"Y\": 0.9765983819961548\n                    }\n                ]\n            },\n            \"Id\": \"0fe7181d-e5f8-42ad-93e7-0d99875b70c1\",\n            \"Text\": \"Rent\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.73388671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009442087262868881,\n                    \"Left\": 0.9128168225288391,\n                    \"Top\": 0.9672926664352417,\n                    \"Width\": 0.02064310386776924\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9128168225288391,\n                        \"Y\": 0.9672926664352417\n                    },\n                    {\n                        \"X\": 0.9334547519683838,\n                        \"Y\": 0.9673073887825012\n                    },\n                    {\n                        \"X\": 0.9334599375724792,\n                        \"Y\": 0.9767347574234009\n                    },\n                    {\n                        \"X\": 0.912821888923645,\n                        \"Y\": 0.9767200350761414\n                    }\n                ]\n            },\n            \"Id\": \"24ddf385-6209-4d9b-b626-4ce31d43147a\",\n            \"Text\": \"No.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.67792510986328,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009876017458736897,\n                    \"Left\": 0.9362003207206726,\n                    \"Top\": 0.9668940901756287,\n                    \"Width\": 0.024461794644594193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9362003207206726,\n                        \"Y\": 0.9668940901756287\n                    },\n                    {\n                        \"X\": 0.9606565237045288,\n                        \"Y\": 0.9669115543365479\n                    },\n                    {\n                        \"X\": 0.9606620669364929,\n                        \"Y\": 0.9767701029777527\n                    },\n                    {\n                        \"X\": 0.9362057447433472,\n                        \"Y\": 0.9767526388168335\n                    }\n                ]\n            },\n            \"Id\": \"665b7e4f-91da-4bc1-8964-0257ee4119c8\",\n            \"Text\": \"Yrs.\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85753631591797,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010303590446710587,\n                    \"Left\": 0.021836547181010246,\n                    \"Top\": 0.9832869172096252,\n                    \"Width\": 0.024228686466813087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021836547181010246,\n                        \"Y\": 0.9832869172096252\n                    },\n                    {\n                        \"X\": 0.04606498405337334,\n                        \"Y\": 0.9833043217658997\n                    },\n                    {\n                        \"X\": 0.046065233647823334,\n                        \"Y\": 0.9935905337333679\n                    },\n                    {\n                        \"X\": 0.021836647763848305,\n                        \"Y\": 0.9935730695724487\n                    }\n                ]\n            },\n            \"Id\": \"6b094c95-7c93-440a-b2f7-3659d0a26bbd\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.89918518066406,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010498330928385258,\n                    \"Left\": 0.4955656826496124,\n                    \"Top\": 0.9832187294960022,\n                    \"Width\": 0.024511033669114113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4955656826496124,\n                        \"Y\": 0.9832187294960022\n                    },\n                    {\n                        \"X\": 0.5200735330581665,\n                        \"Y\": 0.9832363128662109\n                    },\n                    {\n                        \"X\": 0.5200767517089844,\n                        \"Y\": 0.9937170743942261\n                    },\n                    {\n                        \"X\": 0.49556872248649597,\n                        \"Y\": 0.9936994314193726\n                    }\n                ]\n            },\n            \"Id\": \"cd97c06b-731e-4165-a7b4-8361caa05037\",\n            \"Text\": \"N/A\",\n            \"TextType\": \"PRINTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.95783233642578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012951179407536983,\n                    \"Left\": 0.22272659838199615,\n                    \"Top\": 0.3966123163700104,\n                    \"Width\": 0.01774851605296135\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22272659838199615,\n                        \"Y\": 0.3966123163700104\n                    },\n                    {\n                        \"X\": 0.24047331511974335,\n                        \"Y\": 0.39662230014801025\n                    },\n                    {\n                        \"X\": 0.2404751181602478,\n                        \"Y\": 0.40956351161003113\n                    },\n                    {\n                        \"X\": 0.22272826731204987,\n                        \"Y\": 0.4095534682273865\n                    }\n                ]\n            },\n            \"Id\": \"5af37f91-5a92-4a0a-8b7d-b9044040abcd\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.9478988647461,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012808293104171753,\n                    \"Left\": 0.22265927493572235,\n                    \"Top\": 0.41083016991615295,\n                    \"Width\": 0.017932964488863945\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22265927493572235,\n                        \"Y\": 0.41083016991615295\n                    },\n                    {\n                        \"X\": 0.24059045314788818,\n                        \"Y\": 0.41084033250808716\n                    },\n                    {\n                        \"X\": 0.24059224128723145,\n                        \"Y\": 0.4236384630203247\n                    },\n                    {\n                        \"X\": 0.22266091406345367,\n                        \"Y\": 0.4236282706260681\n                    }\n                ]\n            },\n            \"Id\": \"e825538d-ca8e-47d3-8f6a-a0d76a021a1f\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.94607543945312,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012840905226767063,\n                    \"Left\": 0.11030604690313339,\n                    \"Top\": 0.223516583442688,\n                    \"Width\": 0.017666932195425034\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11030604690313339,\n                        \"Y\": 0.223516583442688\n                    },\n                    {\n                        \"X\": 0.1279720515012741,\n                        \"Y\": 0.22352570295333862\n                    },\n                    {\n                        \"X\": 0.12797297537326813,\n                        \"Y\": 0.23635749518871307\n                    },\n                    {\n                        \"X\": 0.11030684411525726,\n                        \"Y\": 0.23634831607341766\n                    }\n                ]\n            },\n            \"Id\": \"8c72b7fb-c0cc-4a0c-b785-293292cbefb0\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.93672943115234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013278862461447716,\n                    \"Left\": 0.7834601998329163,\n                    \"Top\": 0.9104156494140625,\n                    \"Width\": 0.017586739733815193\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7834601998329163,\n                        \"Y\": 0.9104156494140625\n                    },\n                    {\n                        \"X\": 0.8010407090187073,\n                        \"Y\": 0.9104279279708862\n                    },\n                    {\n                        \"X\": 0.8010469079017639,\n                        \"Y\": 0.9236945509910583\n                    },\n                    {\n                        \"X\": 0.7834662795066833,\n                        \"Y\": 0.9236822128295898\n                    }\n                ]\n            },\n            \"Id\": \"27166460-8966-41a7-8b3a-e69daf82a455\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.93087005615234,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013011901639401913,\n                    \"Left\": 0.49831876158714294,\n                    \"Top\": 0.7652037739753723,\n                    \"Width\": 0.017563363537192345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49831876158714294,\n                        \"Y\": 0.7652037739753723\n                    },\n                    {\n                        \"X\": 0.5158782005310059,\n                        \"Y\": 0.7652153968811035\n                    },\n                    {\n                        \"X\": 0.515882134437561,\n                        \"Y\": 0.7782157063484192\n                    },\n                    {\n                        \"X\": 0.4983225464820862,\n                        \"Y\": 0.778204083442688\n                    }\n                ]\n            },\n            \"Id\": \"3edf4821-93bf-46c0-b3b8-1718af7bda22\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.92927551269531,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01298949308693409,\n                    \"Left\": 0.3693443536758423,\n                    \"Top\": 0.9104446172714233,\n                    \"Width\": 0.017453858628869057\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3693443536758423,\n                        \"Y\": 0.9104446172714233\n                    },\n                    {\n                        \"X\": 0.3867952823638916,\n                        \"Y\": 0.9104567766189575\n                    },\n                    {\n                        \"X\": 0.3867982029914856,\n                        \"Y\": 0.9234340786933899\n                    },\n                    {\n                        \"X\": 0.36934715509414673,\n                        \"Y\": 0.9234218597412109\n                    }\n                ]\n            },\n            \"Id\": \"d6533676-99c9-4757-85f4-fccf2c79339a\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.92892456054688,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012997528538107872,\n                    \"Left\": 0.8386133313179016,\n                    \"Top\": 0.9105446934700012,\n                    \"Width\": 0.017729002982378006\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8386133313179016,\n                        \"Y\": 0.9105446934700012\n                    },\n                    {\n                        \"X\": 0.8563358187675476,\n                        \"Y\": 0.9105570912361145\n                    },\n                    {\n                        \"X\": 0.8563423156738281,\n                        \"Y\": 0.9235422611236572\n                    },\n                    {\n                        \"X\": 0.8386197090148926,\n                        \"Y\": 0.9235298037528992\n                    }\n                ]\n            },\n            \"Id\": \"ac011333-2403-43c4-86cc-49aa6271e9b8\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.92395782470703,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01278658490628004,\n                    \"Left\": 0.6859152317047119,\n                    \"Top\": 0.28391334414482117,\n                    \"Width\": 0.01817023567855358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6859152317047119,\n                        \"Y\": 0.28391334414482117\n                    },\n                    {\n                        \"X\": 0.7040801644325256,\n                        \"Y\": 0.2839230000972748\n                    },\n                    {\n                        \"X\": 0.7040854692459106,\n                        \"Y\": 0.2966999411582947\n                    },\n                    {\n                        \"X\": 0.6859203577041626,\n                        \"Y\": 0.2966902256011963\n                    }\n                ]\n            },\n            \"Id\": \"147f2310-3a8a-45ea-9cb2-5051f8b6d624\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.92028045654297,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013135151006281376,\n                    \"Left\": 0.6857056021690369,\n                    \"Top\": 0.2675882577896118,\n                    \"Width\": 0.018516745418310165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6857056021690369,\n                        \"Y\": 0.2675882577896118\n                    },\n                    {\n                        \"X\": 0.7042168974876404,\n                        \"Y\": 0.267598032951355\n                    },\n                    {\n                        \"X\": 0.7042223215103149,\n                        \"Y\": 0.2807233929634094\n                    },\n                    {\n                        \"X\": 0.6857108473777771,\n                        \"Y\": 0.28071358799934387\n                    }\n                ]\n            },\n            \"Id\": \"4a0207ff-b4ec-4860-8a86-260bda082594\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.91754913330078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01285563874989748,\n                    \"Left\": 0.31420817971229553,\n                    \"Top\": 0.22354890406131744,\n                    \"Width\": 0.01818355731666088\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31420817971229553,\n                        \"Y\": 0.22354890406131744\n                    },\n                    {\n                        \"X\": 0.3323892652988434,\n                        \"Y\": 0.22355827689170837\n                    },\n                    {\n                        \"X\": 0.33239173889160156,\n                        \"Y\": 0.23640453815460205\n                    },\n                    {\n                        \"X\": 0.31421053409576416,\n                        \"Y\": 0.23639510571956635\n                    }\n                ]\n            },\n            \"Id\": \"5c0d74cd-6ef3-4e09-8232-b4a72c70208a\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.91661071777344,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01281881332397461,\n                    \"Left\": 0.8383772373199463,\n                    \"Top\": 0.7837444543838501,\n                    \"Width\": 0.018238350749015808\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8383772373199463,\n                        \"Y\": 0.7837444543838501\n                    },\n                    {\n                        \"X\": 0.8566091656684875,\n                        \"Y\": 0.7837565541267395\n                    },\n                    {\n                        \"X\": 0.8566156029701233,\n                        \"Y\": 0.7965632677078247\n                    },\n                    {\n                        \"X\": 0.8383835554122925,\n                        \"Y\": 0.7965511083602905\n                    }\n                ]\n            },\n            \"Id\": \"bd1022b4-a998-4228-846d-cea3a6cbd3da\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.91558837890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012909210287034512,\n                    \"Left\": 0.4984841048717499,\n                    \"Top\": 0.7287638187408447,\n                    \"Width\": 0.017371797934174538\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4984841048717499,\n                        \"Y\": 0.7287638187408447\n                    },\n                    {\n                        \"X\": 0.5158520340919495,\n                        \"Y\": 0.7287750840187073\n                    },\n                    {\n                        \"X\": 0.5158559083938599,\n                        \"Y\": 0.7416730523109436\n                    },\n                    {\n                        \"X\": 0.4984878897666931,\n                        \"Y\": 0.7416616678237915\n                    }\n                ]\n            },\n            \"Id\": \"8b50882a-38c0-46db-9784-a67fbe2c68df\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.90840148925781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013221736997365952,\n                    \"Left\": 0.4985716938972473,\n                    \"Top\": 0.7468839883804321,\n                    \"Width\": 0.017379015684127808\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4985716938972473,\n                        \"Y\": 0.7468839883804321\n                    },\n                    {\n                        \"X\": 0.5159467458724976,\n                        \"Y\": 0.7468953728675842\n                    },\n                    {\n                        \"X\": 0.5159507393836975,\n                        \"Y\": 0.7601057291030884\n                    },\n                    {\n                        \"X\": 0.4985755681991577,\n                        \"Y\": 0.7600943446159363\n                    }\n                ]\n            },\n            \"Id\": \"7c4eaa62-fe5b-4ef6-ba71-2f7730732ab2\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.90751647949219,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013134048320353031,\n                    \"Left\": 0.7346826791763306,\n                    \"Top\": 0.4104900360107422,\n                    \"Width\": 0.017439164221286774\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7346826791763306,\n                        \"Y\": 0.4104900360107422\n                    },\n                    {\n                        \"X\": 0.7521160244941711,\n                        \"Y\": 0.4104999005794525\n                    },\n                    {\n                        \"X\": 0.7521218657493591,\n                        \"Y\": 0.42362409830093384\n                    },\n                    {\n                        \"X\": 0.7346883416175842,\n                        \"Y\": 0.42361417412757874\n                    }\n                ]\n            },\n            \"Id\": \"7cfa4209-082c-49e6-be61-185b8ec6596a\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.90567779541016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012879027985036373,\n                    \"Left\": 0.5982612371444702,\n                    \"Top\": 0.059018172323703766,\n                    \"Width\": 0.017533941194415092\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5982612371444702,\n                        \"Y\": 0.059018172323703766\n                    },\n                    {\n                        \"X\": 0.6157905459403992,\n                        \"Y\": 0.05902644991874695\n                    },\n                    {\n                        \"X\": 0.6157951951026917,\n                        \"Y\": 0.07189720124006271\n                    },\n                    {\n                        \"X\": 0.5982657670974731,\n                        \"Y\": 0.07188886404037476\n                    }\n                ]\n            },\n            \"Id\": \"784a10c6-aca4-4967-a66f-53663c6235b0\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.90364074707031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013078796677291393,\n                    \"Left\": 0.11030399799346924,\n                    \"Top\": 0.23843297362327576,\n                    \"Width\": 0.017622994258999825\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11030399799346924,\n                        \"Y\": 0.23843297362327576\n                    },\n                    {\n                        \"X\": 0.1279260367155075,\n                        \"Y\": 0.23844213783740997\n                    },\n                    {\n                        \"X\": 0.1279269903898239,\n                        \"Y\": 0.2515117824077606\n                    },\n                    {\n                        \"X\": 0.1103048101067543,\n                        \"Y\": 0.25150254368782043\n                    }\n                ]\n            },\n            \"Id\": \"fc17235f-a050-4a71-a1b2-9b43db7bb5ef\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.90116119384766,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013211195357143879,\n                    \"Left\": 0.13528959453105927,\n                    \"Top\": 0.3963673710823059,\n                    \"Width\": 0.01798691600561142\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13528959453105927,\n                        \"Y\": 0.3963673710823059\n                    },\n                    {\n                        \"X\": 0.15327535569667816,\n                        \"Y\": 0.39637747406959534\n                    },\n                    {\n                        \"X\": 0.15327651798725128,\n                        \"Y\": 0.4095785617828369\n                    },\n                    {\n                        \"X\": 0.13529062271118164,\n                        \"Y\": 0.4095683991909027\n                    }\n                ]\n            },\n            \"Id\": \"bb7e5ce6-4b7d-484c-b6b2-caf31360a544\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.89683532714844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012945172376930714,\n                    \"Left\": 0.8738355040550232,\n                    \"Top\": 0.49858933687210083,\n                    \"Width\": 0.01792050153017044\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8738355040550232,\n                        \"Y\": 0.49858933687210083\n                    },\n                    {\n                        \"X\": 0.8917492032051086,\n                        \"Y\": 0.4985998868942261\n                    },\n                    {\n                        \"X\": 0.891755998134613,\n                        \"Y\": 0.5115345120429993\n                    },\n                    {\n                        \"X\": 0.873842179775238,\n                        \"Y\": 0.5115239024162292\n                    }\n                ]\n            },\n            \"Id\": \"c7c071ed-b840-4faa-997d-1355c3bc2df0\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.89556121826172,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012913255952298641,\n                    \"Left\": 0.3918105661869049,\n                    \"Top\": 0.39668285846710205,\n                    \"Width\": 0.017573408782482147\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3918105661869049,\n                        \"Y\": 0.39668285846710205\n                    },\n                    {\n                        \"X\": 0.4093809127807617,\n                        \"Y\": 0.3966927230358124\n                    },\n                    {\n                        \"X\": 0.40938398241996765,\n                        \"Y\": 0.40959611535072327\n                    },\n                    {\n                        \"X\": 0.3918135166168213,\n                        \"Y\": 0.40958619117736816\n                    }\n                ]\n            },\n            \"Id\": \"4cc78360-5457-41ff-ad54-d2869d7594bd\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.88800811767578,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013173557817935944,\n                    \"Left\": 0.5667423009872437,\n                    \"Top\": 0.28370052576065063,\n                    \"Width\": 0.017884355038404465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5667423009872437,\n                        \"Y\": 0.28370052576065063\n                    },\n                    {\n                        \"X\": 0.5846221446990967,\n                        \"Y\": 0.2837100327014923\n                    },\n                    {\n                        \"X\": 0.5846266746520996,\n                        \"Y\": 0.296874076128006\n                    },\n                    {\n                        \"X\": 0.5667466521263123,\n                        \"Y\": 0.29686450958251953\n                    }\n                ]\n            },\n            \"Id\": \"d53f6509-e65b-46ad-b95a-e8b179ad1398\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.8844985961914,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01312908623367548,\n                    \"Left\": 0.8823035955429077,\n                    \"Top\": 0.410512238740921,\n                    \"Width\": 0.017324086278676987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8823035955429077,\n                        \"Y\": 0.410512238740921\n                    },\n                    {\n                        \"X\": 0.899620771408081,\n                        \"Y\": 0.4105220437049866\n                    },\n                    {\n                        \"X\": 0.899627685546875,\n                        \"Y\": 0.4236413240432739\n                    },\n                    {\n                        \"X\": 0.8823103904724121,\n                        \"Y\": 0.423631489276886\n                    }\n                ]\n            },\n            \"Id\": \"d1212686-2a56-4884-b45e-3798a751ff32\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.87757873535156,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012915188446640968,\n                    \"Left\": 0.783393144607544,\n                    \"Top\": 0.7837496995925903,\n                    \"Width\": 0.017494121566414833\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.783393144607544,\n                        \"Y\": 0.7837496995925903\n                    },\n                    {\n                        \"X\": 0.8008812069892883,\n                        \"Y\": 0.7837613224983215\n                    },\n                    {\n                        \"X\": 0.8008872866630554,\n                        \"Y\": 0.7966648936271667\n                    },\n                    {\n                        \"X\": 0.7833991050720215,\n                        \"Y\": 0.7966532111167908\n                    }\n                ]\n            },\n            \"Id\": \"f507f4cb-4727-4cdf-9fff-6f4a4bf379e9\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.87442779541016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01310005597770214,\n                    \"Left\": 0.19166986644268036,\n                    \"Top\": 0.22333082556724548,\n                    \"Width\": 0.018079545348882675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19166986644268036,\n                        \"Y\": 0.22333082556724548\n                    },\n                    {\n                        \"X\": 0.2097478210926056,\n                        \"Y\": 0.22334015369415283\n                    },\n                    {\n                        \"X\": 0.20974940061569214,\n                        \"Y\": 0.23643088340759277\n                    },\n                    {\n                        \"X\": 0.19167131185531616,\n                        \"Y\": 0.23642149567604065\n                    }\n                ]\n            },\n            \"Id\": \"c57c3a0b-2d80-4229-a632-e66f218e41be\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.87181091308594,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013256755657494068,\n                    \"Left\": 0.3143649697303772,\n                    \"Top\": 0.910388708114624,\n                    \"Width\": 0.017903020605444908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3143649697303772,\n                        \"Y\": 0.910388708114624\n                    },\n                    {\n                        \"X\": 0.3322654366493225,\n                        \"Y\": 0.9104012250900269\n                    },\n                    {\n                        \"X\": 0.33226799964904785,\n                        \"Y\": 0.9236454367637634\n                    },\n                    {\n                        \"X\": 0.3143673837184906,\n                        \"Y\": 0.9236329197883606\n                    }\n                ]\n            },\n            \"Id\": \"0d1a354a-9537-4e2a-9719-c4c1c7a005ff\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.86797332763672,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012927819974720478,\n                    \"Left\": 0.36937838792800903,\n                    \"Top\": 0.9665345549583435,\n                    \"Width\": 0.017582496628165245\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36937838792800903,\n                        \"Y\": 0.9665345549583435\n                    },\n                    {\n                        \"X\": 0.38695797324180603,\n                        \"Y\": 0.9665470719337463\n                    },\n                    {\n                        \"X\": 0.3869608938694,\n                        \"Y\": 0.9794623851776123\n                    },\n                    {\n                        \"X\": 0.3693811595439911,\n                        \"Y\": 0.9794497489929199\n                    }\n                ]\n            },\n            \"Id\": \"6f5df22a-0d8e-424d-aed8-a055b3ae301b\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.8668441772461,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012654710561037064,\n                    \"Left\": 0.4769420325756073,\n                    \"Top\": 0.07414629310369492,\n                    \"Width\": 0.01717451959848404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4769420325756073,\n                        \"Y\": 0.07414629310369492\n                    },\n                    {\n                        \"X\": 0.49411287903785706,\n                        \"Y\": 0.07415447384119034\n                    },\n                    {\n                        \"X\": 0.49411654472351074,\n                        \"Y\": 0.08680099993944168\n                    },\n                    {\n                        \"X\": 0.47694554924964905,\n                        \"Y\": 0.08679276704788208\n                    }\n                ]\n            },\n            \"Id\": \"35797add-3add-41dc-beed-0886e18abd98\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.85375213623047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012715321034193039,\n                    \"Left\": 0.8385744690895081,\n                    \"Top\": 0.9665365219116211,\n                    \"Width\": 0.017771469429135323\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8385744690895081,\n                        \"Y\": 0.9665365219116211\n                    },\n                    {\n                        \"X\": 0.8563395738601685,\n                        \"Y\": 0.9665491580963135\n                    },\n                    {\n                        \"X\": 0.8563459515571594,\n                        \"Y\": 0.9792518615722656\n                    },\n                    {\n                        \"X\": 0.8385807275772095,\n                        \"Y\": 0.9792391061782837\n                    }\n                ]\n            },\n            \"Id\": \"70a070f8-ece5-431b-9d77-ef71320e7f20\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.84567260742188,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013351554051041603,\n                    \"Left\": 0.8319281339645386,\n                    \"Top\": 0.5562840700149536,\n                    \"Width\": 0.01845768466591835\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8319281339645386,\n                        \"Y\": 0.5562840700149536\n                    },\n                    {\n                        \"X\": 0.8503791689872742,\n                        \"Y\": 0.5562952160835266\n                    },\n                    {\n                        \"X\": 0.850385844707489,\n                        \"Y\": 0.5696356296539307\n                    },\n                    {\n                        \"X\": 0.8319346904754639,\n                        \"Y\": 0.5696244239807129\n                    }\n                ]\n            },\n            \"Id\": \"f13beb51-28f3-4aa2-9539-05e22c0c5892\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.84114074707031,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013092199340462685,\n                    \"Left\": 0.7836816906929016,\n                    \"Top\": 0.9663370251655579,\n                    \"Width\": 0.017181603237986565\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7836816906929016,\n                        \"Y\": 0.9663370251655579\n                    },\n                    {\n                        \"X\": 0.8008571267127991,\n                        \"Y\": 0.9663492441177368\n                    },\n                    {\n                        \"X\": 0.8008632659912109,\n                        \"Y\": 0.9794292449951172\n                    },\n                    {\n                        \"X\": 0.7836877107620239,\n                        \"Y\": 0.9794169068336487\n                    }\n                ]\n            },\n            \"Id\": \"0f69a018-971b-4260-af05-5cf0b8267dcb\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.8381118774414,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013349717482924461,\n                    \"Left\": 0.028709327802062035,\n                    \"Top\": 0.7650507092475891,\n                    \"Width\": 0.017941027879714966\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028709327802062035,\n                        \"Y\": 0.7650507092475891\n                    },\n                    {\n                        \"X\": 0.04665002599358559,\n                        \"Y\": 0.7650625705718994\n                    },\n                    {\n                        \"X\": 0.04665035381913185,\n                        \"Y\": 0.7784004211425781\n                    },\n                    {\n                        \"X\": 0.028709514066576958,\n                        \"Y\": 0.7783885598182678\n                    }\n                ]\n            },\n            \"Id\": \"c1a72ca9-d81b-48e7-8781-9e48eb072680\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.80699157714844,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013234744779765606,\n                    \"Left\": 0.314281165599823,\n                    \"Top\": 0.96638023853302,\n                    \"Width\": 0.017903827130794525\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.314281165599823,\n                        \"Y\": 0.96638023853302\n                    },\n                    {\n                        \"X\": 0.3321824073791504,\n                        \"Y\": 0.966392993927002\n                    },\n                    {\n                        \"X\": 0.33218497037887573,\n                        \"Y\": 0.9796150326728821\n                    },\n                    {\n                        \"X\": 0.3142835795879364,\n                        \"Y\": 0.9796022176742554\n                    }\n                ]\n            },\n            \"Id\": \"36d01d28-c03a-45b1-a2a4-64b1f82ce196\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.80369567871094,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013167492114007473,\n                    \"Left\": 0.8110244870185852,\n                    \"Top\": 0.4985712170600891,\n                    \"Width\": 0.017804579809308052\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8110244870185852,\n                        \"Y\": 0.4985712170600891\n                    },\n                    {\n                        \"X\": 0.828822672367096,\n                        \"Y\": 0.4985817074775696\n                    },\n                    {\n                        \"X\": 0.8288291096687317,\n                        \"Y\": 0.5117387175559998\n                    },\n                    {\n                        \"X\": 0.8110308051109314,\n                        \"Y\": 0.5117281675338745\n                    }\n                ]\n            },\n            \"Id\": \"e0451d88-15d6-47d8-8d05-af05824fbc2d\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.7883529663086,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013381503522396088,\n                    \"Left\": 0.1913433074951172,\n                    \"Top\": 0.23828460276126862,\n                    \"Width\": 0.01833084411919117\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1913433074951172,\n                        \"Y\": 0.23828460276126862\n                    },\n                    {\n                        \"X\": 0.20967254042625427,\n                        \"Y\": 0.23829412460327148\n                    },\n                    {\n                        \"X\": 0.2096741646528244,\n                        \"Y\": 0.2516660988330841\n                    },\n                    {\n                        \"X\": 0.19134478271007538,\n                        \"Y\": 0.25165650248527527\n                    }\n                ]\n            },\n            \"Id\": \"c0572b8a-4f8a-4f46-99e9-b636d893362f\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.7774429321289,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01299680583178997,\n                    \"Left\": 0.029019033536314964,\n                    \"Top\": 0.7288930416107178,\n                    \"Width\": 0.01763457991182804\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029019033536314964,\n                        \"Y\": 0.7288930416107178\n                    },\n                    {\n                        \"X\": 0.04665329307317734,\n                        \"Y\": 0.7289044857025146\n                    },\n                    {\n                        \"X\": 0.046653613448143005,\n                        \"Y\": 0.7418898344039917\n                    },\n                    {\n                        \"X\": 0.02901921607553959,\n                        \"Y\": 0.74187833070755\n                    }\n                ]\n            },\n            \"Id\": \"cb78270f-0a93-4bfa-8a2b-b2ceec79f3d2\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.77362060546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013409612700343132,\n                    \"Left\": 0.02879238873720169,\n                    \"Top\": 0.7467250823974609,\n                    \"Width\": 0.018061013892292976\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02879238873720169,\n                        \"Y\": 0.7467250823974609\n                    },\n                    {\n                        \"X\": 0.04685307294130325,\n                        \"Y\": 0.7467368841171265\n                    },\n                    {\n                        \"X\": 0.046853404492139816,\n                        \"Y\": 0.7601346969604492\n                    },\n                    {\n                        \"X\": 0.028792576864361763,\n                        \"Y\": 0.7601228356361389\n                    }\n                ]\n            },\n            \"Id\": \"1a3df70d-325d-4fff-8d09-ea073fc81b5d\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.7554702758789,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013108303770422935,\n                    \"Left\": 0.3143838346004486,\n                    \"Top\": 0.7835001945495605,\n                    \"Width\": 0.01740846037864685\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3143838346004486,\n                        \"Y\": 0.7835001945495605\n                    },\n                    {\n                        \"X\": 0.3317897617816925,\n                        \"Y\": 0.783511757850647\n                    },\n                    {\n                        \"X\": 0.33179229497909546,\n                        \"Y\": 0.7966085076332092\n                    },\n                    {\n                        \"X\": 0.3143862187862396,\n                        \"Y\": 0.796596884727478\n                    }\n                ]\n            },\n            \"Id\": \"c83711c2-b76e-4307-991d-60ad1fbcdb8b\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.66279602050781,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012863386422395706,\n                    \"Left\": 0.6020903587341309,\n                    \"Top\": 0.41062912344932556,\n                    \"Width\": 0.017760299146175385\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6020903587341309,\n                        \"Y\": 0.41062912344932556\n                    },\n                    {\n                        \"X\": 0.619845986366272,\n                        \"Y\": 0.4106391668319702\n                    },\n                    {\n                        \"X\": 0.6198506355285645,\n                        \"Y\": 0.42349252104759216\n                    },\n                    {\n                        \"X\": 0.6020948886871338,\n                        \"Y\": 0.42348241806030273\n                    }\n                ]\n            },\n            \"Id\": \"b44ece17-787b-4701-97a7-d4592ca6ec96\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.6557388305664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013006285764276981,\n                    \"Left\": 0.1353333443403244,\n                    \"Top\": 0.4104697108268738,\n                    \"Width\": 0.017789259552955627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1353333443403244,\n                        \"Y\": 0.4104697108268738\n                    },\n                    {\n                        \"X\": 0.1531214714050293,\n                        \"Y\": 0.4104797840118408\n                    },\n                    {\n                        \"X\": 0.15312260389328003,\n                        \"Y\": 0.4234760105609894\n                    },\n                    {\n                        \"X\": 0.1353343427181244,\n                        \"Y\": 0.42346587777137756\n                    }\n                ]\n            },\n            \"Id\": \"0412f623-10f8-4627-a739-57eea97dae7f\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.50626373291016,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013451733626425266,\n                    \"Left\": 0.5666469931602478,\n                    \"Top\": 0.2673097848892212,\n                    \"Width\": 0.017897864803671837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5666469931602478,\n                        \"Y\": 0.2673097848892212\n                    },\n                    {\n                        \"X\": 0.5845402479171753,\n                        \"Y\": 0.2673192322254181\n                    },\n                    {\n                        \"X\": 0.584544837474823,\n                        \"Y\": 0.2807615399360657\n                    },\n                    {\n                        \"X\": 0.5666514039039612,\n                        \"Y\": 0.280752032995224\n                    }\n                ]\n            },\n            \"Id\": \"653b3122-d847-4dff-9639-5c243bc6c61d\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 99.49079132080078,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013087727129459381,\n                    \"Left\": 0.8322082161903381,\n                    \"Top\": 0.5706511735916138,\n                    \"Width\": 0.018339326605200768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8322082161903381,\n                        \"Y\": 0.5706511735916138\n                    },\n                    {\n                        \"X\": 0.8505409955978394,\n                        \"Y\": 0.5706623196601868\n                    },\n                    {\n                        \"X\": 0.8505475521087646,\n                        \"Y\": 0.5837389230728149\n                    },\n                    {\n                        \"X\": 0.8322145938873291,\n                        \"Y\": 0.5837277173995972\n                    }\n                ]\n            },\n            \"Id\": \"d3079a75-36f3-4eec-92db-77f95f27a187\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 96.64910125732422,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013582903891801834,\n                    \"Left\": 0.3691684603691101,\n                    \"Top\": 0.7833543419837952,\n                    \"Width\": 0.018026413396000862\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3691684603691101,\n                        \"Y\": 0.7833543419837952\n                    },\n                    {\n                        \"X\": 0.3871918022632599,\n                        \"Y\": 0.783366322517395\n                    },\n                    {\n                        \"X\": 0.3871948719024658,\n                        \"Y\": 0.7969372272491455\n                    },\n                    {\n                        \"X\": 0.3691713809967041,\n                        \"Y\": 0.7969251871109009\n                    }\n                ]\n            },\n            \"Id\": \"35f7dece-3249-430f-8b83-b2f0df45f702\",\n            \"SelectionStatus\": \"SELECTED\"\n        },\n        {\n            \"BlockType\": \"SELECTION_ELEMENT\",\n            \"Confidence\": 15.27453327178955,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014511077664792538,\n                    \"Left\": 0.418089896440506,\n                    \"Top\": 0.9097947478294373,\n                    \"Width\": 0.023328568786382675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.418089896440506,\n                        \"Y\": 0.9097947478294373\n                    },\n                    {\n                        \"X\": 0.4414147436618805,\n                        \"Y\": 0.9098110198974609\n                    },\n                    {\n                        \"X\": 0.44141846895217896,\n                        \"Y\": 0.9243058562278748\n                    },\n                    {\n                        \"X\": 0.4180934429168701,\n                        \"Y\": 0.9242894649505615\n                    }\n                ]\n            },\n            \"Id\": \"082c43e6-e36c-4c07-9ddd-7c793aa0430d\",\n            \"SelectionStatus\": \"NOT_SELECTED\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 78.271484375,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.04835532605648041,\n                    \"Left\": 0.022212909534573555,\n                    \"Top\": 0.21730534732341766,\n                    \"Width\": 0.9416848421096802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022212909534573555,\n                        \"Y\": 0.21730534732341766\n                    },\n                    {\n                        \"X\": 0.963870644569397,\n                        \"Y\": 0.21778959035873413\n                    },\n                    {\n                        \"X\": 0.9638977646827698,\n                        \"Y\": 0.26566067337989807\n                    },\n                    {\n                        \"X\": 0.022213393822312355,\n                        \"Y\": 0.26516449451446533\n                    }\n                ]\n            },\n            \"Id\": \"3fbc9bcf-d2ed-41e7-96f9-1a1b966476a8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b47e6624-8738-4734-83d8-346989d75223\",\n                        \"58f5f6d7-d15d-42f4-94e6-353fd42e08bc\",\n                        \"2ceea2ab-9ca2-4bf7-a0fa-ba431329f165\",\n                        \"335ba824-196a-4945-b2d3-4e5605c7e5e7\",\n                        \"c25f220b-59dd-435b-8efc-eb8e5746778d\",\n                        \"1c3f166e-63f6-42ef-a840-72125bb9e35f\",\n                        \"1992b5d1-8607-4b09-97d3-3e49a5bddcb5\",\n                        \"58f8ad36-6197-4000-9752-5229a1d12900\",\n                        \"de7966f7-0432-418d-80d2-7861b25b72bf\",\n                        \"4361aa95-4378-48d7-9a3d-9e525beb8531\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 40.6982421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01884048990905285,\n                    \"Left\": 0.022212909534573555,\n                    \"Top\": 0.21730534732341766,\n                    \"Width\": 0.0822148397564888\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022212909534573555,\n                        \"Y\": 0.21730534732341766\n                    },\n                    {\n                        \"X\": 0.10442664474248886,\n                        \"Y\": 0.2173476219177246\n                    },\n                    {\n                        \"X\": 0.1044277474284172,\n                        \"Y\": 0.23614583909511566\n                    },\n                    {\n                        \"X\": 0.022213099524378777,\n                        \"Y\": 0.2361031472682953\n                    }\n                ]\n            },\n            \"Id\": \"b47e6624-8738-4734-83d8-346989d75223\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"699edc34-edf0-4167-9a18-f86dd1cc96cb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 41.30859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018836846575140953,\n                    \"Left\": 0.10442664474248886,\n                    \"Top\": 0.2173476219177246,\n                    \"Width\": 0.07440990954637527\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10442664474248886,\n                        \"Y\": 0.2173476219177246\n                    },\n                    {\n                        \"X\": 0.17883461713790894,\n                        \"Y\": 0.2173858880996704\n                    },\n                    {\n                        \"X\": 0.17883655428886414,\n                        \"Y\": 0.2361844778060913\n                    },\n                    {\n                        \"X\": 0.1044277474284172,\n                        \"Y\": 0.23614583909511566\n                    }\n                ]\n            },\n            \"Id\": \"58f5f6d7-d15d-42f4-94e6-353fd42e08bc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8c72b7fb-c0cc-4a0c-b785-293292cbefb0\",\n                        \"f2c3ace7-b223-4e5e-ab1c-95921b66aa74\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 45.60546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018979575484991074,\n                    \"Left\": 0.17883461713790894,\n                    \"Top\": 0.2173858880996704,\n                    \"Width\": 0.3485875129699707\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17883461713790894,\n                        \"Y\": 0.2173858880996704\n                    },\n                    {\n                        \"X\": 0.5274163484573364,\n                        \"Y\": 0.2175651490688324\n                    },\n                    {\n                        \"X\": 0.5274221301078796,\n                        \"Y\": 0.23636546730995178\n                    },\n                    {\n                        \"X\": 0.17883655428886414,\n                        \"Y\": 0.2361844778060913\n                    }\n                ]\n            },\n            \"Id\": \"2ceea2ab-9ca2-4bf7-a0fa-ba431329f165\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5c0d74cd-6ef3-4e09-8232-b4a72c70208a\",\n                        \"c57c3a0b-2d80-4229-a632-e66f218e41be\",\n                        \"bde762ae-1886-4b2f-960e-b60785b81a44\",\n                        \"d37314f4-bb88-4920-98d8-397704534871\",\n                        \"d0af3a6c-7567-4eea-a513-f19847b24608\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 81.15234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018904728814959526,\n                    \"Left\": 0.5274163484573364,\n                    \"Top\": 0.2175651490688324,\n                    \"Width\": 0.201091930270195\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5274163484573364,\n                        \"Y\": 0.2175651490688324\n                    },\n                    {\n                        \"X\": 0.7285001873970032,\n                        \"Y\": 0.2176685482263565\n                    },\n                    {\n                        \"X\": 0.7285082340240479,\n                        \"Y\": 0.23646986484527588\n                    },\n                    {\n                        \"X\": 0.5274221301078796,\n                        \"Y\": 0.23636546730995178\n                    }\n                ]\n            },\n            \"Id\": \"335ba824-196a-4945-b2d3-4e5605c7e5e7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"990051e9-7c13-4cde-9116-94adfa7400c3\",\n                        \"2a3fda71-f3fe-4a13-bb0b-3b01b3905649\",\n                        \"a128b2cf-47b5-4698-a39b-212b4a24e3da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.833984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018923534080386162,\n                    \"Left\": 0.7285001873970032,\n                    \"Top\": 0.2176685482263565,\n                    \"Width\": 0.235381081700325\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7285001873970032,\n                        \"Y\": 0.2176685482263565\n                    },\n                    {\n                        \"X\": 0.963870644569397,\n                        \"Y\": 0.21778959035873413\n                    },\n                    {\n                        \"X\": 0.9638813138008118,\n                        \"Y\": 0.23659208416938782\n                    },\n                    {\n                        \"X\": 0.7285082340240479,\n                        \"Y\": 0.23646986484527588\n                    }\n                ]\n            },\n            \"Id\": \"c25f220b-59dd-435b-8efc-eb8e5746778d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0fb2ae41-2f40-4a1f-aeb2-e9cd07eda188\",\n                        \"98f8ef7e-dedd-4b67-9b4b-01edb56be489\",\n                        \"c1b7b9d7-200e-4837-949d-330a736afe22\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 42.724609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029104653745889664,\n                    \"Left\": 0.022213099524378777,\n                    \"Top\": 0.2361031472682953,\n                    \"Width\": 0.08221635222434998\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022213099524378777,\n                        \"Y\": 0.2361031472682953\n                    },\n                    {\n                        \"X\": 0.1044277474284172,\n                        \"Y\": 0.23614583909511566\n                    },\n                    {\n                        \"X\": 0.1044294536113739,\n                        \"Y\": 0.26520779728889465\n                    },\n                    {\n                        \"X\": 0.022213393822312355,\n                        \"Y\": 0.26516449451446533\n                    }\n                ]\n            },\n            \"Id\": \"1c3f166e-63f6-42ef-a840-72125bb9e35f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0e77a08a-7702-4dea-a37c-d5cdc6983e81\",\n                        \"2ff3ea43-8da2-4aa3-8098-6303bb06e5da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 43.359375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0291011743247509,\n                    \"Left\": 0.1044277474284172,\n                    \"Top\": 0.23614583909511566,\n                    \"Width\": 0.0744117870926857\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1044277474284172,\n                        \"Y\": 0.23614583909511566\n                    },\n                    {\n                        \"X\": 0.17883655428886414,\n                        \"Y\": 0.2361844778060913\n                    },\n                    {\n                        \"X\": 0.1788395345211029,\n                        \"Y\": 0.26524701714515686\n                    },\n                    {\n                        \"X\": 0.1044294536113739,\n                        \"Y\": 0.26520779728889465\n                    }\n                ]\n            },\n            \"Id\": \"1992b5d1-8607-4b09-97d3-3e49a5bddcb5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fc17235f-a050-4a71-a1b2-9b43db7bb5ef\",\n                        \"7e03f76f-5c06-4236-a293-e8139aa93e27\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.31640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029246218502521515,\n                    \"Left\": 0.17883655428886414,\n                    \"Top\": 0.2361844778060913,\n                    \"Width\": 0.3485945463180542\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17883655428886414,\n                        \"Y\": 0.2361844778060913\n                    },\n                    {\n                        \"X\": 0.5274221301078796,\n                        \"Y\": 0.23636546730995178\n                    },\n                    {\n                        \"X\": 0.5274311304092407,\n                        \"Y\": 0.2654306888580322\n                    },\n                    {\n                        \"X\": 0.1788395345211029,\n                        \"Y\": 0.26524701714515686\n                    }\n                ]\n            },\n            \"Id\": \"58f8ad36-6197-4000-9752-5229a1d12900\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c0572b8a-4f8a-4f46-99e9-b636d893362f\",\n                        \"b3f9158c-6ef4-4113-9f25-371f06e14598\",\n                        \"1da09c26-c2ae-475a-a211-38704778afbb\",\n                        \"ab0ee00f-368f-459d-b67b-1eb8bf85b5e8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 85.009765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029171185567975044,\n                    \"Left\": 0.5274221301078796,\n                    \"Top\": 0.23636546730995178,\n                    \"Width\": 0.20109856128692627\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5274221301078796,\n                        \"Y\": 0.23636546730995178\n                    },\n                    {\n                        \"X\": 0.7285082340240479,\n                        \"Y\": 0.23646986484527588\n                    },\n                    {\n                        \"X\": 0.7285206913948059,\n                        \"Y\": 0.2655366361141205\n                    },\n                    {\n                        \"X\": 0.5274311304092407,\n                        \"Y\": 0.2654306888580322\n                    }\n                ]\n            },\n            \"Id\": \"de7966f7-0432-418d-80d2-7861b25b72bf\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6b001f42-bfef-4a90-a5d4-5eddac57d39a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 83.7890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029190801084041595,\n                    \"Left\": 0.7285082340240479,\n                    \"Top\": 0.23646986484527588,\n                    \"Width\": 0.23538951575756073\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7285082340240479,\n                        \"Y\": 0.23646986484527588\n                    },\n                    {\n                        \"X\": 0.9638813138008118,\n                        \"Y\": 0.23659208416938782\n                    },\n                    {\n                        \"X\": 0.9638977646827698,\n                        \"Y\": 0.26566067337989807\n                    },\n                    {\n                        \"X\": 0.7285206913948059,\n                        \"Y\": 0.2655366361141205\n                    }\n                ]\n            },\n            \"Id\": \"4361aa95-4378-48d7-9a3d-9e525beb8531\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0c603739-698c-46ee-8551-0bef5daa7a18\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 91.015625,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.032367877662181854,\n                    \"Left\": 0.021274764090776443,\n                    \"Top\": 0.2655673027038574,\n                    \"Width\": 0.9432674050331116\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021274764090776443,\n                        \"Y\": 0.2655673027038574\n                    },\n                    {\n                        \"X\": 0.9645240902900696,\n                        \"Y\": 0.26606443524360657\n                    },\n                    {\n                        \"X\": 0.9645421504974365,\n                        \"Y\": 0.2979351878166199\n                    },\n                    {\n                        \"X\": 0.021275067701935768,\n                        \"Y\": 0.2974300980567932\n                    }\n                ]\n            },\n            \"Id\": \"61e2a8dc-9c8f-4f08-8bee-d6545960860f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"23c810ba-6c7e-4014-9e73-c0d42bbd2f87\",\n                        \"7f53f759-142d-4a37-914d-01084544027a\",\n                        \"1273cf31-4800-48e6-813a-a27e190eb848\",\n                        \"91170b01-144c-4a6f-aaa3-9a86ddf1ffbc\",\n                        \"afdd7fa4-fd0b-4d12-a7f6-7d415b0d06ea\",\n                        \"c9fdf8e5-750c-4472-b7c5-47918637667d\",\n                        \"c8a292a8-b416-49be-aa2c-11008200ab3d\",\n                        \"2583c115-e3f4-4c63-9453-5d45af524b5d\",\n                        \"e1335800-0735-45e4-bfec-cd241ad0d08e\",\n                        \"0dbbd6a3-7ffe-4502-8e44-f49f7eb58793\",\n                        \"0d96bc77-19f1-4bdb-8db8-08126019e480\",\n                        \"06418f15-5478-4f58-a6c2-327963c84a10\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 71.142578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015470009297132492,\n                    \"Left\": 0.021274764090776443,\n                    \"Top\": 0.2655673027038574,\n                    \"Width\": 0.1575663983821869\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021274764090776443,\n                        \"Y\": 0.2655673027038574\n                    },\n                    {\n                        \"X\": 0.1788395792245865,\n                        \"Y\": 0.26565036177635193\n                    },\n                    {\n                        \"X\": 0.17884115874767303,\n                        \"Y\": 0.2810373306274414\n                    },\n                    {\n                        \"X\": 0.021274911239743233,\n                        \"Y\": 0.28095364570617676\n                    }\n                ]\n            },\n            \"Id\": \"23c810ba-6c7e-4014-9e73-c0d42bbd2f87\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cf7a3735-8d85-4b77-8a36-712382047a66\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 62.59765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015450064092874527,\n                    \"Left\": 0.1788395792245865,\n                    \"Top\": 0.26565036177635193,\n                    \"Width\": 0.11880381405353546\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1788395792245865,\n                        \"Y\": 0.26565036177635193\n                    },\n                    {\n                        \"X\": 0.29764074087142944,\n                        \"Y\": 0.2657129466533661\n                    },\n                    {\n                        \"X\": 0.29764339327812195,\n                        \"Y\": 0.28110042214393616\n                    },\n                    {\n                        \"X\": 0.17884115874767303,\n                        \"Y\": 0.2810373306274414\n                    }\n                ]\n            },\n            \"Id\": \"7f53f759-142d-4a37-914d-01084544027a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7e449874-d5cf-4ba4-a5af-4e9456214394\",\n                        \"fbc31ea7-4d1e-442d-a70f-ec1216490568\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 70.361328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0154505530372262,\n                    \"Left\": 0.29764074087142944,\n                    \"Top\": 0.2657129466533661,\n                    \"Width\": 0.11881237477064133\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29764074087142944,\n                        \"Y\": 0.2657129466533661\n                    },\n                    {\n                        \"X\": 0.4164493680000305,\n                        \"Y\": 0.265775591135025\n                    },\n                    {\n                        \"X\": 0.41645312309265137,\n                        \"Y\": 0.2811635136604309\n                    },\n                    {\n                        \"X\": 0.29764339327812195,\n                        \"Y\": 0.28110042214393616\n                    }\n                ]\n            },\n            \"Id\": \"1273cf31-4800-48e6-813a-a27e190eb848\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dc23cf66-828c-4127-86b5-81bd396cbe7b\",\n                        \"ea988eb7-eeb7-478a-b196-07909a018af6\",\n                        \"d4d63007-3484-4635-99c1-c6ef9d7f6f40\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 48.193359375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015459363348782063,\n                    \"Left\": 0.4164493680000305,\n                    \"Top\": 0.265775591135025,\n                    \"Width\": 0.13448970019817352\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4164493680000305,\n                        \"Y\": 0.265775591135025\n                    },\n                    {\n                        \"X\": 0.5509340763092041,\n                        \"Y\": 0.26584646105766296\n                    },\n                    {\n                        \"X\": 0.5509390830993652,\n                        \"Y\": 0.2812349498271942\n                    },\n                    {\n                        \"X\": 0.41645312309265137,\n                        \"Y\": 0.2811635136604309\n                    }\n                ]\n            },\n            \"Id\": \"91170b01-144c-4a6f-aaa3-9a86ddf1ffbc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1576b851-628e-4583-8079-66bfdabd28f4\",\n                        \"90c7bf9a-44c7-499f-9224-3480694395cc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 46.826171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015456450171768665,\n                    \"Left\": 0.5509340763092041,\n                    \"Top\": 0.26584646105766296,\n                    \"Width\": 0.1279713660478592\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5509340763092041,\n                        \"Y\": 0.26584646105766296\n                    },\n                    {\n                        \"X\": 0.678899347782135,\n                        \"Y\": 0.2659139037132263\n                    },\n                    {\n                        \"X\": 0.6789054870605469,\n                        \"Y\": 0.28130289912223816\n                    },\n                    {\n                        \"X\": 0.5509390830993652,\n                        \"Y\": 0.2812349498271942\n                    }\n                ]\n            },\n            \"Id\": \"afdd7fa4-fd0b-4d12-a7f6-7d415b0d06ea\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"653b3122-d847-4dff-9639-5c243bc6c61d\",\n                        \"910d393c-53e8-4ae5-89a0-41f119cea9cd\",\n                        \"92ac9403-a2e7-4a80-9512-0436eff3cb63\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 48.6083984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015540705993771553,\n                    \"Left\": 0.678899347782135,\n                    \"Top\": 0.2659139037132263,\n                    \"Width\": 0.2856334447860718\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.678899347782135,\n                        \"Y\": 0.2659139037132263\n                    },\n                    {\n                        \"X\": 0.9645240902900696,\n                        \"Y\": 0.26606443524360657\n                    },\n                    {\n                        \"X\": 0.9645327925682068,\n                        \"Y\": 0.28145459294319153\n                    },\n                    {\n                        \"X\": 0.6789054870605469,\n                        \"Y\": 0.28130289912223816\n                    }\n                ]\n            },\n            \"Id\": \"c9fdf8e5-750c-4472-b7c5-47918637667d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4a0207ff-b4ec-4860-8a86-260bda082594\",\n                        \"578172f9-cd1d-4864-a3ad-65cb2b1e5aae\",\n                        \"a3844493-b088-4dbf-9115-23d8b7880ea0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 77.587890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016560837626457214,\n                    \"Left\": 0.021274911239743233,\n                    \"Top\": 0.28095364570617676,\n                    \"Width\": 0.15756794810295105\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021274911239743233,\n                        \"Y\": 0.28095364570617676\n                    },\n                    {\n                        \"X\": 0.17884115874767303,\n                        \"Y\": 0.2810373306274414\n                    },\n                    {\n                        \"X\": 0.17884285748004913,\n                        \"Y\": 0.2975144684314728\n                    },\n                    {\n                        \"X\": 0.021275067701935768,\n                        \"Y\": 0.2974300980567932\n                    }\n                ]\n            },\n            \"Id\": \"c8a292a8-b416-49be-aa2c-11008200ab3d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"af1867cd-15d1-4c54-9787-c9eb83a23624\",\n                        \"67343f6b-e1fe-4c4a-9806-646a3183fd18\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 68.26171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0165407694876194,\n                    \"Left\": 0.17884115874767303,\n                    \"Top\": 0.2810373306274414,\n                    \"Width\": 0.11880508810281754\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.17884115874767303,\n                        \"Y\": 0.2810373306274414\n                    },\n                    {\n                        \"X\": 0.29764339327812195,\n                        \"Y\": 0.28110042214393616\n                    },\n                    {\n                        \"X\": 0.29764625430107117,\n                        \"Y\": 0.2975780963897705\n                    },\n                    {\n                        \"X\": 0.17884285748004913,\n                        \"Y\": 0.2975144684314728\n                    }\n                ]\n            },\n            \"Id\": \"2583c115-e3f4-4c63-9453-5d45af524b5d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb2bc981-841b-429b-8599-35d716f31506\",\n                        \"fc9dbc34-1baa-403c-b854-d1711d158913\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 76.7578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016541292890906334,\n                    \"Left\": 0.29764339327812195,\n                    \"Top\": 0.28110042214393616,\n                    \"Width\": 0.11881372332572937\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29764339327812195,\n                        \"Y\": 0.28110042214393616\n                    },\n                    {\n                        \"X\": 0.41645312309265137,\n                        \"Y\": 0.2811635136604309\n                    },\n                    {\n                        \"X\": 0.4164571166038513,\n                        \"Y\": 0.29764169454574585\n                    },\n                    {\n                        \"X\": 0.29764625430107117,\n                        \"Y\": 0.2975780963897705\n                    }\n                ]\n            },\n            \"Id\": \"e1335800-0735-45e4-bfec-cd241ad0d08e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3aa25c4f-88af-49de-83f7-5a55b02b7449\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.587890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016550205647945404,\n                    \"Left\": 0.41645312309265137,\n                    \"Top\": 0.2811635136604309,\n                    \"Width\": 0.13449127972126007\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41645312309265137,\n                        \"Y\": 0.2811635136604309\n                    },\n                    {\n                        \"X\": 0.5509390830993652,\n                        \"Y\": 0.2812349498271942\n                    },\n                    {\n                        \"X\": 0.5509443879127502,\n                        \"Y\": 0.2977137267589569\n                    },\n                    {\n                        \"X\": 0.4164571166038513,\n                        \"Y\": 0.29764169454574585\n                    }\n                ]\n            },\n            \"Id\": \"0dbbd6a3-7ffe-4502-8e44-f49f7eb58793\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 51.07421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016547301784157753,\n                    \"Left\": 0.5509390830993652,\n                    \"Top\": 0.2812349498271942,\n                    \"Width\": 0.12797297537326813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5509390830993652,\n                        \"Y\": 0.2812349498271942\n                    },\n                    {\n                        \"X\": 0.6789054870605469,\n                        \"Y\": 0.28130289912223816\n                    },\n                    {\n                        \"X\": 0.6789120435714722,\n                        \"Y\": 0.2977822422981262\n                    },\n                    {\n                        \"X\": 0.5509443879127502,\n                        \"Y\": 0.2977137267589569\n                    }\n                ]\n            },\n            \"Id\": \"0d96bc77-19f1-4bdb-8db8-08126019e480\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d53f6509-e65b-46ad-b95a-e8b179ad1398\",\n                        \"dff28b0c-7c3c-4e09-88d5-8564c492707e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016632284969091415,\n                    \"Left\": 0.6789054870605469,\n                    \"Top\": 0.28130289912223816,\n                    \"Width\": 0.28563666343688965\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6789054870605469,\n                        \"Y\": 0.28130289912223816\n                    },\n                    {\n                        \"X\": 0.9645327925682068,\n                        \"Y\": 0.28145459294319153\n                    },\n                    {\n                        \"X\": 0.9645421504974365,\n                        \"Y\": 0.2979351878166199\n                    },\n                    {\n                        \"X\": 0.6789120435714722,\n                        \"Y\": 0.2977822422981262\n                    }\n                ]\n            },\n            \"Id\": \"06418f15-5478-4f58-a6c2-327963c84a10\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"147f2310-3a8a-45ea-9cb2-5051f8b6d624\",\n                        \"54739729-9b72-40f4-9128-259b607b6a52\",\n                        \"5b175c9c-fac0-41be-b783-607b8f4044ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 79.638671875,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0962594673037529,\n                    \"Left\": 0.020962199196219444,\n                    \"Top\": 0.2990432679653168,\n                    \"Width\": 0.943009078502655\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020962199196219444,\n                        \"Y\": 0.2990432679653168\n                    },\n                    {\n                        \"X\": 0.9639169573783875,\n                        \"Y\": 0.29954859614372253\n                    },\n                    {\n                        \"X\": 0.9639712572097778,\n                        \"Y\": 0.39530274271965027\n                    },\n                    {\n                        \"X\": 0.020963095128536224,\n                        \"Y\": 0.3947734832763672\n                    }\n                ]\n            },\n            \"Id\": \"c47868d8-6ffe-4bfa-91c2-12c25f8401ef\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c1dd309d-7c98-4011-970e-740931a8f92b\",\n                        \"2151b638-e129-44d3-a3f7-053d36904d1f\",\n                        \"2ca3abd4-622d-4719-9c12-a94267f41245\",\n                        \"4349265a-9b8a-4e62-bb8e-9e6de00216f6\",\n                        \"39c7d286-59e2-4fc7-a5e9-7fd38bbe61ac\",\n                        \"13d96728-03c3-4c88-ba10-0f88a196b7a9\",\n                        \"1d2b4a17-b895-4bd5-8472-d34b88fc32da\",\n                        \"9dc54ce9-0ce1-4a44-bcf4-9475ea8cea57\",\n                        \"7ae5581b-d333-40d9-a995-cd08578b0a82\",\n                        \"b193b051-0ffc-4dcd-bf1b-d033a62610ed\",\n                        \"63ee4254-abb1-41cc-9da9-450503d106d7\",\n                        \"328956de-5a1b-4c30-89e6-d99960cdf599\",\n                        \"54ba6d24-70e1-4a89-935e-4ed7ffabe648\",\n                        \"52fff899-5a62-4de5-a6ee-be6e311560bc\",\n                        \"b47e4e5a-3cd7-42b4-93c5-e927ed234239\",\n                        \"7cb7d8d6-96bf-460c-a96e-f19f3486f37a\",\n                        \"0e04d011-4213-42ef-bbd0-2f3757e8f622\",\n                        \"bb7cb6a1-f06b-4dd0-af20-19fabbc9482a\",\n                        \"f7908589-8038-404f-bd6c-ecd53bddae1d\",\n                        \"3d601d06-7698-409a-9bbb-9f2a9a91c086\",\n                        \"bc57847c-ae65-42f8-80bd-7a4f2178942f\",\n                        \"b3e4be27-015a-4821-a200-e4f43e1706b0\",\n                        \"90ad9a22-16fa-49df-9b16-af143243f7d0\",\n                        \"e5f0b9e9-8567-4a8a-aacc-c7e623d6aada\",\n                        \"8b0b1649-a5de-4c7a-af12-cc7fa07d05a0\",\n                        \"3c8276e8-39a7-4f37-91de-a7704575af7e\",\n                        \"5cc220ee-7ff7-4c8d-86d0-2788ad55fa79\",\n                        \"447af65b-98e2-481a-9ad8-0104d7cbd9ca\"\n                    ],\n                    \"Type\": \"CHILD\"\n                },\n                {\n                    \"Ids\": [\n                        \"979f2f22-4222-4047-b492-5d2c43b5b929\",\n                        \"5651e225-6ee8-41bf-bae2-4b3cadd3a653\",\n                        \"0bd72001-8127-4dc0-9196-f838faf698d5\"\n                    ],\n                    \"Type\": \"MERGED_CELL\"\n                },\n                {\n                    \"Ids\": [\n                        \"0495ca70-705e-4a48-a424-f51c23c99a68\"\n                    ],\n                    \"Type\": \"TABLE_TITLE\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015784738585352898,\n                    \"Left\": 0.020885098725557327,\n                    \"Top\": 0.2988944947719574,\n                    \"Width\": 0.15926502645015717\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020885098725557327,\n                        \"Y\": 0.2988944947719574\n                    },\n                    {\n                        \"X\": 0.18014849722385406,\n                        \"Y\": 0.29897981882095337\n                    },\n                    {\n                        \"X\": 0.1801501214504242,\n                        \"Y\": 0.31467920541763306\n                    },\n                    {\n                        \"X\": 0.020885245874524117,\n                        \"Y\": 0.31459322571754456\n                    }\n                ]\n            },\n            \"Id\": \"c1dd309d-7c98-4011-970e-740931a8f92b\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015718432143330574,\n                    \"Left\": 0.18014849722385406,\n                    \"Top\": 0.29897981882095337,\n                    \"Width\": 0.03525058552622795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18014849722385406,\n                        \"Y\": 0.29897981882095337\n                    },\n                    {\n                        \"X\": 0.21539713442325592,\n                        \"Y\": 0.29899871349334717\n                    },\n                    {\n                        \"X\": 0.21539907157421112,\n                        \"Y\": 0.3146982491016388\n                    },\n                    {\n                        \"X\": 0.1801501214504242,\n                        \"Y\": 0.31467920541763306\n                    }\n                ]\n            },\n            \"Id\": \"2151b638-e129-44d3-a3f7-053d36904d1f\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015744663774967194,\n                    \"Left\": 0.21539713442325592,\n                    \"Top\": 0.29899871349334717,\n                    \"Width\": 0.08355767279863358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21539713442325592,\n                        \"Y\": 0.29899871349334717\n                    },\n                    {\n                        \"X\": 0.2989520728588104,\n                        \"Y\": 0.2990434765815735\n                    },\n                    {\n                        \"X\": 0.2989548146724701,\n                        \"Y\": 0.31474336981773376\n                    },\n                    {\n                        \"X\": 0.21539907157421112,\n                        \"Y\": 0.3146982491016388\n                    }\n                ]\n            },\n            \"Id\": \"2ca3abd4-622d-4719-9c12-a94267f41245\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01576405204832554,\n                    \"Left\": 0.2989520728588104,\n                    \"Top\": 0.2990434765815735,\n                    \"Width\": 0.11881488561630249\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2989520728588104,\n                        \"Y\": 0.2990434765815735\n                    },\n                    {\n                        \"X\": 0.4177631437778473,\n                        \"Y\": 0.299107164144516\n                    },\n                    {\n                        \"X\": 0.4177669584751129,\n                        \"Y\": 0.3148075342178345\n                    },\n                    {\n                        \"X\": 0.2989548146724701,\n                        \"Y\": 0.31474336981773376\n                    }\n                ]\n            },\n            \"Id\": \"4349265a-9b8a-4e62-bb8e-9e6de00216f6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"96684920-e015-487e-927a-52cd4fac0774\",\n                        \"6d8e36f7-9db2-4f78-a254-d6997bc9325e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015794871374964714,\n                    \"Left\": 0.4177631437778473,\n                    \"Top\": 0.299107164144516,\n                    \"Width\": 0.17497162520885468\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4177631437778473,\n                        \"Y\": 0.299107164144516\n                    },\n                    {\n                        \"X\": 0.5927292704582214,\n                        \"Y\": 0.2992008924484253\n                    },\n                    {\n                        \"X\": 0.5927347540855408,\n                        \"Y\": 0.31490200757980347\n                    },\n                    {\n                        \"X\": 0.4177669584751129,\n                        \"Y\": 0.3148075342178345\n                    }\n                ]\n            },\n            \"Id\": \"39c7d286-59e2-4fc7-a5e9-7fd38bbe61ac\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bc34a21d-c5c8-4f10-91b6-c5e2ca0660ea\",\n                        \"86fe615a-4016-4b1e-8f09-88bcf62b31de\",\n                        \"bb101227-77a1-4fa0-b903-d220e73be268\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01584991067647934,\n                    \"Left\": 0.5927292704582214,\n                    \"Top\": 0.2992008924484253,\n                    \"Width\": 0.2755473256111145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927292704582214,\n                        \"Y\": 0.2992008924484253\n                    },\n                    {\n                        \"X\": 0.868268609046936,\n                        \"Y\": 0.2993485629558563\n                    },\n                    {\n                        \"X\": 0.8682765960693359,\n                        \"Y\": 0.31505081057548523\n                    },\n                    {\n                        \"X\": 0.5927347540855408,\n                        \"Y\": 0.31490200757980347\n                    }\n                ]\n            },\n            \"Id\": \"13d96728-03c3-4c88-ba10-0f88a196b7a9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"931636f9-6471-4ec8-b884-57db71b33bf1\",\n                        \"0f38bd78-77f2-49cc-965c-b35f601c9ddb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015753746032714844,\n                    \"Left\": 0.868268609046936,\n                    \"Top\": 0.2993485629558563,\n                    \"Width\": 0.09534702450037003\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.868268609046936,\n                        \"Y\": 0.2993485629558563\n                    },\n                    {\n                        \"X\": 0.9636067152023315,\n                        \"Y\": 0.29939964413642883\n                    },\n                    {\n                        \"X\": 0.9636156558990479,\n                        \"Y\": 0.31510230898857117\n                    },\n                    {\n                        \"X\": 0.8682765960693359,\n                        \"Y\": 0.31505081057548523\n                    }\n                ]\n            },\n            \"Id\": \"1d2b4a17-b895-4bd5-8472-d34b88fc32da\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 20.73974609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0326070673763752,\n                    \"Left\": 0.020962346345186234,\n                    \"Top\": 0.31459325551986694,\n                    \"Width\": 0.15919113159179688\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020962346345186234,\n                        \"Y\": 0.31459325551986694\n                    },\n                    {\n                        \"X\": 0.1801501214504242,\n                        \"Y\": 0.31467920541763306\n                    },\n                    {\n                        \"X\": 0.180153489112854,\n                        \"Y\": 0.34720033407211304\n                    },\n                    {\n                        \"X\": 0.020962649956345558,\n                        \"Y\": 0.3471129834651947\n                    }\n                ]\n            },\n            \"Id\": \"9dc54ce9-0ce1-4a44-bcf4-9475ea8cea57\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f092fba5-6733-4474-aebb-641cd7972d12\",\n                        \"ca93c100-0858-43dc-aa0f-d0e8fe22c5c2\",\n                        \"6e7e9c55-78ee-4682-92d2-5f17ed3d5439\",\n                        \"ba11c68c-f0cf-4487-90bc-c62706a429a6\",\n                        \"e8153ceb-3a2a-45d7-8a43-3b8a15eeebd9\",\n                        \"8a3f1263-1414-4470-ba51-20094e10823e\",\n                        \"efb433d1-2743-4a51-8311-60aee28b013b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 14.24560546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.032540444284677505,\n                    \"Left\": 0.1801501214504242,\n                    \"Top\": 0.31467920541763306,\n                    \"Width\": 0.03525300323963165\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1801501214504242,\n                        \"Y\": 0.31467920541763306\n                    },\n                    {\n                        \"X\": 0.21539907157421112,\n                        \"Y\": 0.3146982491016388\n                    },\n                    {\n                        \"X\": 0.21540312469005585,\n                        \"Y\": 0.34721967577934265\n                    },\n                    {\n                        \"X\": 0.180153489112854,\n                        \"Y\": 0.34720033407211304\n                    }\n                ]\n            },\n            \"Id\": \"7ae5581b-d333-40d9-a995-cd08578b0a82\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"24df0b9b-0a6c-45cd-9909-9bee2b894e0c\",\n                        \"0912b97d-4e63-4d51-80d7-532607c9969b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 21.78955078125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03256725147366524,\n                    \"Left\": 0.21539907157421112,\n                    \"Top\": 0.3146982491016388,\n                    \"Width\": 0.08356136828660965\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21539907157421112,\n                        \"Y\": 0.3146982491016388\n                    },\n                    {\n                        \"X\": 0.2989548146724701,\n                        \"Y\": 0.31474336981773376\n                    },\n                    {\n                        \"X\": 0.29896044731140137,\n                        \"Y\": 0.3472655117511749\n                    },\n                    {\n                        \"X\": 0.21540312469005585,\n                        \"Y\": 0.34721967577934265\n                    }\n                ]\n            },\n            \"Id\": \"b193b051-0ffc-4dcd-bf1b-d033a62610ed\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"422c5f10-7daf-4a72-9c3b-09c3847e43ff\",\n                        \"f3771b4d-050c-486f-b908-8efd2589fc59\",\n                        \"f8ecaf5f-d683-41db-b071-ae9c21737931\",\n                        \"a92fef63-881b-4608-97e1-1814ea833022\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 21.08154296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03258731588721275,\n                    \"Left\": 0.2989548146724701,\n                    \"Top\": 0.31474336981773376,\n                    \"Width\": 0.11882009357213974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2989548146724701,\n                        \"Y\": 0.31474336981773376\n                    },\n                    {\n                        \"X\": 0.4177669584751129,\n                        \"Y\": 0.3148075342178345\n                    },\n                    {\n                        \"X\": 0.41777488589286804,\n                        \"Y\": 0.3473306894302368\n                    },\n                    {\n                        \"X\": 0.29896044731140137,\n                        \"Y\": 0.3472655117511749\n                    }\n                ]\n            },\n            \"Id\": \"63ee4254-abb1-41cc-9da9-450503d106d7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d7fcd40c-dc56-42fb-ac48-1ce6f4804bb3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 25.244140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03261914849281311,\n                    \"Left\": 0.4177669584751129,\n                    \"Top\": 0.3148075342178345,\n                    \"Width\": 0.1749790906906128\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4177669584751129,\n                        \"Y\": 0.3148075342178345\n                    },\n                    {\n                        \"X\": 0.5927347540855408,\n                        \"Y\": 0.31490200757980347\n                    },\n                    {\n                        \"X\": 0.5927460193634033,\n                        \"Y\": 0.3474266827106476\n                    },\n                    {\n                        \"X\": 0.41777488589286804,\n                        \"Y\": 0.3473306894302368\n                    }\n                ]\n            },\n            \"Id\": \"328956de-5a1b-4c30-89e6-d99960cdf599\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 19.20166015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.032675836235284805,\n                    \"Left\": 0.5927347540855408,\n                    \"Top\": 0.31490200757980347,\n                    \"Width\": 0.2755584716796875\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927347540855408,\n                        \"Y\": 0.31490200757980347\n                    },\n                    {\n                        \"X\": 0.8682765960693359,\n                        \"Y\": 0.31505081057548523\n                    },\n                    {\n                        \"X\": 0.8682932257652283,\n                        \"Y\": 0.34757786989212036\n                    },\n                    {\n                        \"X\": 0.5927460193634033,\n                        \"Y\": 0.3474266827106476\n                    }\n                ]\n            },\n            \"Id\": \"54ba6d24-70e1-4a89-935e-4ed7ffabe648\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.2333984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03257951885461807,\n                    \"Left\": 0.8682765960693359,\n                    \"Top\": 0.31505081057548523,\n                    \"Width\": 0.09566762298345566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8682765960693359,\n                        \"Y\": 0.31505081057548523\n                    },\n                    {\n                        \"X\": 0.9639257788658142,\n                        \"Y\": 0.3151024580001831\n                    },\n                    {\n                        \"X\": 0.9639442563056946,\n                        \"Y\": 0.3476303219795227\n                    },\n                    {\n                        \"X\": 0.8682932257652283,\n                        \"Y\": 0.34757786989212036\n                    }\n                ]\n            },\n            \"Id\": \"52fff899-5a62-4de5-a6ee-be6e311560bc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"59b225cc-bd98-480e-bd01-64b1204dffac\",\n                        \"d28f958f-41bd-4976-aff3-2f1016e0c2ef\",\n                        \"59dafa24-a806-428a-87a6-72ebc82508b5\",\n                        \"46105d2c-f863-436a-af1a-44d4b814edb9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018030593171715736,\n                    \"Left\": 0.020885547623038292,\n                    \"Top\": 0.3471129536628723,\n                    \"Width\": 0.1592697948217392\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020885547623038292,\n                        \"Y\": 0.3471129536628723\n                    },\n                    {\n                        \"X\": 0.180153489112854,\n                        \"Y\": 0.34720033407211304\n                    },\n                    {\n                        \"X\": 0.18015533685684204,\n                        \"Y\": 0.3651435375213623\n                    },\n                    {\n                        \"X\": 0.020885715261101723,\n                        \"Y\": 0.3650554120540619\n                    }\n                ]\n            },\n            \"Id\": \"b47e4e5a-3cd7-42b4-93c5-e927ed234239\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"71f65789-8a37-4b0b-b348-229262efe042\",\n                        \"bb8cb40f-298a-46aa-a0ec-f19d21e9b032\",\n                        \"16f50532-639c-40c9-9e77-48b1d60caab7\",\n                        \"b63c74f5-fbef-4491-b453-90bd6337db03\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01796272024512291,\n                    \"Left\": 0.180153489112854,\n                    \"Top\": 0.34720033407211304,\n                    \"Width\": 0.03525186702609062\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.180153489112854,\n                        \"Y\": 0.34720033407211304\n                    },\n                    {\n                        \"X\": 0.21540312469005585,\n                        \"Y\": 0.34721967577934265\n                    },\n                    {\n                        \"X\": 0.21540534496307373,\n                        \"Y\": 0.36516305804252625\n                    },\n                    {\n                        \"X\": 0.18015533685684204,\n                        \"Y\": 0.3651435375213623\n                    }\n                ]\n            },\n            \"Id\": \"7cb7d8d6-96bf-460c-a96e-f19f3486f37a\",\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017989620566368103,\n                    \"Left\": 0.21540312469005585,\n                    \"Top\": 0.34721967577934265,\n                    \"Width\": 0.08356044441461563\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21540312469005585,\n                        \"Y\": 0.34721967577934265\n                    },\n                    {\n                        \"X\": 0.29896044731140137,\n                        \"Y\": 0.3472655117511749\n                    },\n                    {\n                        \"X\": 0.2989635765552521,\n                        \"Y\": 0.36520928144454956\n                    },\n                    {\n                        \"X\": 0.21540534496307373,\n                        \"Y\": 0.36516305804252625\n                    }\n                ]\n            },\n            \"Id\": \"0e04d011-4213-42ef-bbd0-2f3757e8f622\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ae2586e9-0893-4ef1-80e2-126b73b9b952\",\n                        \"8593db6e-6efb-4666-b21e-4a37b2ac1d2a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018009530380368233,\n                    \"Left\": 0.29896044731140137,\n                    \"Top\": 0.3472655117511749,\n                    \"Width\": 0.11881881952285767\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29896044731140137,\n                        \"Y\": 0.3472655117511749\n                    },\n                    {\n                        \"X\": 0.41777488589286804,\n                        \"Y\": 0.3473306894302368\n                    },\n                    {\n                        \"X\": 0.41777926683425903,\n                        \"Y\": 0.3652750253677368\n                    },\n                    {\n                        \"X\": 0.2989635765552521,\n                        \"Y\": 0.36520928144454956\n                    }\n                ]\n            },\n            \"Id\": \"bb7cb6a1-f06b-4dd0-af20-19fabbc9482a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"08bdf8a0-782a-4061-8c5f-500842e184fe\",\n                        \"f162d413-5793-44b5-b1f0-6ee3a2d8bdc4\",\n                        \"a05590fd-4088-47a7-b00c-6172519b7969\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018041172996163368,\n                    \"Left\": 0.41777488589286804,\n                    \"Top\": 0.3473306894302368,\n                    \"Width\": 0.1749773919582367\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41777488589286804,\n                        \"Y\": 0.3473306894302368\n                    },\n                    {\n                        \"X\": 0.5927460193634033,\n                        \"Y\": 0.3474266827106476\n                    },\n                    {\n                        \"X\": 0.5927522778511047,\n                        \"Y\": 0.36537185311317444\n                    },\n                    {\n                        \"X\": 0.41777926683425903,\n                        \"Y\": 0.3652750253677368\n                    }\n                ]\n            },\n            \"Id\": \"f7908589-8038-404f-bd6c-ecd53bddae1d\",\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018097663298249245,\n                    \"Left\": 0.5927460193634033,\n                    \"Top\": 0.3474266827106476,\n                    \"Width\": 0.2755563259124756\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927460193634033,\n                        \"Y\": 0.3474266827106476\n                    },\n                    {\n                        \"X\": 0.8682932257652283,\n                        \"Y\": 0.34757786989212036\n                    },\n                    {\n                        \"X\": 0.8683023452758789,\n                        \"Y\": 0.3655243515968323\n                    },\n                    {\n                        \"X\": 0.5927522778511047,\n                        \"Y\": 0.36537185311317444\n                    }\n                ]\n            },\n            \"Id\": \"3d601d06-7698-409a-9bbb-9f2a9a91c086\",\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 48.7060546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017999421805143356,\n                    \"Left\": 0.8682932257652283,\n                    \"Top\": 0.34757786989212036,\n                    \"Width\": 0.09566119313240051\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8682932257652283,\n                        \"Y\": 0.34757786989212036\n                    },\n                    {\n                        \"X\": 0.9639442563056946,\n                        \"Y\": 0.3476303219795227\n                    },\n                    {\n                        \"X\": 0.9639543890953064,\n                        \"Y\": 0.3655772805213928\n                    },\n                    {\n                        \"X\": 0.8683023452758789,\n                        \"Y\": 0.3655243515968323\n                    }\n                ]\n            },\n            \"Id\": \"bc57847c-ae65-42f8-80bd-7a4f2178942f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f20c98f7-f788-427f-87f8-d7bb566d0733\",\n                        \"b7a1fb71-6bcb-4846-ad05-2384a5c6c049\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029246671125292778,\n                    \"Left\": 0.020885715261101723,\n                    \"Top\": 0.3650554120540619,\n                    \"Width\": 0.15927264094352722\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020885715261101723,\n                        \"Y\": 0.3650554120540619\n                    },\n                    {\n                        \"X\": 0.18015533685684204,\n                        \"Y\": 0.3651435375213623\n                    },\n                    {\n                        \"X\": 0.1801583617925644,\n                        \"Y\": 0.3943020701408386\n                    },\n                    {\n                        \"X\": 0.02088598720729351,\n                        \"Y\": 0.3942126929759979\n                    }\n                ]\n            },\n            \"Id\": \"b3e4be27-015a-4821-a200-e4f43e1706b0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d372f018-096b-40f2-b1d6-db8acbcd061a\",\n                        \"927cf243-307f-4d5f-b815-eff3ec0f91f2\",\n                        \"53f962bd-0e36-4a9f-bae4-f08359c5beb4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02917831391096115,\n                    \"Left\": 0.18015533685684204,\n                    \"Top\": 0.3651435375213623,\n                    \"Width\": 0.03525363653898239\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18015533685684204,\n                        \"Y\": 0.3651435375213623\n                    },\n                    {\n                        \"X\": 0.21540534496307373,\n                        \"Y\": 0.36516305804252625\n                    },\n                    {\n                        \"X\": 0.21540898084640503,\n                        \"Y\": 0.39432185888290405\n                    },\n                    {\n                        \"X\": 0.1801583617925644,\n                        \"Y\": 0.3943020701408386\n                    }\n                ]\n            },\n            \"Id\": \"90ad9a22-16fa-49df-9b16-af143243f7d0\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029205692932009697,\n                    \"Left\": 0.21540534496307373,\n                    \"Top\": 0.36516305804252625,\n                    \"Width\": 0.08356327563524246\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21540534496307373,\n                        \"Y\": 0.36516305804252625\n                    },\n                    {\n                        \"X\": 0.2989635765552521,\n                        \"Y\": 0.36520928144454956\n                    },\n                    {\n                        \"X\": 0.298968642950058,\n                        \"Y\": 0.3943687379360199\n                    },\n                    {\n                        \"X\": 0.21540898084640503,\n                        \"Y\": 0.39432185888290405\n                    }\n                ]\n            },\n            \"Id\": \"e5f0b9e9-8567-4a8a-aacc-c7e623d6aada\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029226122424006462,\n                    \"Left\": 0.2989635765552521,\n                    \"Top\": 0.36520928144454956,\n                    \"Width\": 0.11882282048463821\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2989635765552521,\n                        \"Y\": 0.36520928144454956\n                    },\n                    {\n                        \"X\": 0.41777926683425903,\n                        \"Y\": 0.3652750253677368\n                    },\n                    {\n                        \"X\": 0.4177863895893097,\n                        \"Y\": 0.39443540573120117\n                    },\n                    {\n                        \"X\": 0.298968642950058,\n                        \"Y\": 0.3943687379360199\n                    }\n                ]\n            },\n            \"Id\": \"8b0b1649-a5de-4c7a-af12-cc7fa07d05a0\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029258552938699722,\n                    \"Left\": 0.41777926683425903,\n                    \"Top\": 0.3652750253677368,\n                    \"Width\": 0.17498314380645752\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41777926683425903,\n                        \"Y\": 0.3652750253677368\n                    },\n                    {\n                        \"X\": 0.5927522778511047,\n                        \"Y\": 0.36537185311317444\n                    },\n                    {\n                        \"X\": 0.5927624106407166,\n                        \"Y\": 0.39453357458114624\n                    },\n                    {\n                        \"X\": 0.4177863895893097,\n                        \"Y\": 0.39443540573120117\n                    }\n                ]\n            },\n            \"Id\": \"3c8276e8-39a7-4f37-91de-a7704575af7e\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029316341504454613,\n                    \"Left\": 0.5927522778511047,\n                    \"Top\": 0.36537185311317444,\n                    \"Width\": 0.275564968585968\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927522778511047,\n                        \"Y\": 0.36537185311317444\n                    },\n                    {\n                        \"X\": 0.8683023452758789,\n                        \"Y\": 0.3655243515968323\n                    },\n                    {\n                        \"X\": 0.8683172464370728,\n                        \"Y\": 0.394688218832016\n                    },\n                    {\n                        \"X\": 0.5927624106407166,\n                        \"Y\": 0.39453357458114624\n                    }\n                ]\n            },\n            \"Id\": \"5cc220ee-7ff7-4c8d-86d0-2788ad55fa79\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 44.7021484375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02977839671075344,\n                    \"Left\": 0.8683023452758789,\n                    \"Top\": 0.3655243515968323,\n                    \"Width\": 0.09566888958215714\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8683023452758789,\n                        \"Y\": 0.3655243515968323\n                    },\n                    {\n                        \"X\": 0.9639543890953064,\n                        \"Y\": 0.3655772805213928\n                    },\n                    {\n                        \"X\": 0.9639712572097778,\n                        \"Y\": 0.39530274271965027\n                    },\n                    {\n                        \"X\": 0.8683175444602966,\n                        \"Y\": 0.39524906873703003\n                    }\n                ]\n            },\n            \"Id\": \"447af65b-98e2-481a-9ad8-0104d7cbd9ca\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bea771c7-9e8b-4589-b3b3-e984f48dafa8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 7,\n            \"Confidence\": 79.4921875,\n            \"EntityTypes\": [\n                \"TABLE_TITLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016059191897511482,\n                    \"Left\": 0.020962199196219444,\n                    \"Top\": 0.2990432679653168,\n                    \"Width\": 0.9429636001586914\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020962199196219444,\n                        \"Y\": 0.2990432679653168\n                    },\n                    {\n                        \"X\": 0.9639169573783875,\n                        \"Y\": 0.29954859614372253\n                    },\n                    {\n                        \"X\": 0.9639257788658142,\n                        \"Y\": 0.3151024580001831\n                    },\n                    {\n                        \"X\": 0.020962346345186234,\n                        \"Y\": 0.31459325551986694\n                    }\n                ]\n            },\n            \"Id\": \"979f2f22-4222-4047-b492-5d2c43b5b929\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c1dd309d-7c98-4011-970e-740931a8f92b\",\n                        \"2151b638-e129-44d3-a3f7-053d36904d1f\",\n                        \"2ca3abd4-622d-4719-9c12-a94267f41245\",\n                        \"4349265a-9b8a-4e62-bb8e-9e6de00216f6\",\n                        \"39c7d286-59e2-4fc7-a5e9-7fd38bbe61ac\",\n                        \"13d96728-03c3-4c88-ba10-0f88a196b7a9\",\n                        \"1d2b4a17-b895-4bd5-8472-d34b88fc32da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 6,\n            \"Confidence\": 53.02734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.018411360681056976,\n                    \"Left\": 0.020962649956345558,\n                    \"Top\": 0.3471129834651947,\n                    \"Width\": 0.8473396897315979\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.020962649956345558,\n                        \"Y\": 0.3471129834651947\n                    },\n                    {\n                        \"X\": 0.8682932257652283,\n                        \"Y\": 0.34757786989212036\n                    },\n                    {\n                        \"X\": 0.8683023452758789,\n                        \"Y\": 0.3655243515968323\n                    },\n                    {\n                        \"X\": 0.02096281759440899,\n                        \"Y\": 0.3650554418563843\n                    }\n                ]\n            },\n            \"Id\": \"5651e225-6ee8-41bf-bae2-4b3cadd3a653\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b47e4e5a-3cd7-42b4-93c5-e927ed234239\",\n                        \"7cb7d8d6-96bf-460c-a96e-f19f3486f37a\",\n                        \"0e04d011-4213-42ef-bbd0-2f3757e8f622\",\n                        \"bb7cb6a1-f06b-4dd0-af20-19fabbc9482a\",\n                        \"f7908589-8038-404f-bd6c-ecd53bddae1d\",\n                        \"3d601d06-7698-409a-9bbb-9f2a9a91c086\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 6,\n            \"Confidence\": 52.24609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.030193613842129707,\n                    \"Left\": 0.02096281759440899,\n                    \"Top\": 0.3650554418563843,\n                    \"Width\": 0.8473547101020813\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02096281759440899,\n                        \"Y\": 0.3650554418563843\n                    },\n                    {\n                        \"X\": 0.8683023452758789,\n                        \"Y\": 0.3655243515968323\n                    },\n                    {\n                        \"X\": 0.8683175444602966,\n                        \"Y\": 0.39524906873703003\n                    },\n                    {\n                        \"X\": 0.020963095128536224,\n                        \"Y\": 0.3947734832763672\n                    }\n                ]\n            },\n            \"Id\": \"0bd72001-8127-4dc0-9196-f838faf698d5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b3e4be27-015a-4821-a200-e4f43e1706b0\",\n                        \"90ad9a22-16fa-49df-9b16-af143243f7d0\",\n                        \"e5f0b9e9-8567-4a8a-aacc-c7e623d6aada\",\n                        \"8b0b1649-a5de-4c7a-af12-cc7fa07d05a0\",\n                        \"3c8276e8-39a7-4f37-91de-a7704575af7e\",\n                        \"5cc220ee-7ff7-4c8d-86d0-2788ad55fa79\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 77.685546875,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.030679170042276382,\n                    \"Left\": 0.022214695811271667,\n                    \"Top\": 0.3942134380340576,\n                    \"Width\": 0.9430255889892578\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022214695811271667,\n                        \"Y\": 0.3942134380340576\n                    },\n                    {\n                        \"X\": 0.9652231335639954,\n                        \"Y\": 0.39474257826805115\n                    },\n                    {\n                        \"X\": 0.9652402400970459,\n                        \"Y\": 0.4248926341533661\n                    },\n                    {\n                        \"X\": 0.02221500128507614,\n                        \"Y\": 0.42435595393180847\n                    }\n                ]\n            },\n            \"Id\": \"9594feb9-8520-4736-9f89-df185b6bb610\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5d466164-9af8-4fb8-9130-f94857619cb9\",\n                        \"30c147f3-d866-40a0-8221-a76d7dce4726\",\n                        \"dfe03c88-8312-4e9d-8423-a60922ad4487\",\n                        \"4e7b8e98-f4e7-4fb1-bcc1-1389532ed0cf\",\n                        \"3efa2ae9-978d-4de8-adad-ad62d6879eab\",\n                        \"9674e56a-c883-4e2d-afc3-5081f98b02bd\",\n                        \"5e01e595-359f-4c74-aa3f-5afe83628b60\",\n                        \"335597b3-75bb-4376-96d5-7352c89c763a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 25.2197265625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014689658768475056,\n                    \"Left\": 0.022214695811271667,\n                    \"Top\": 0.3942134380340576,\n                    \"Width\": 0.1958072930574417\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022214695811271667,\n                        \"Y\": 0.3942134380340576\n                    },\n                    {\n                        \"X\": 0.21802015602588654,\n                        \"Y\": 0.39432331919670105\n                    },\n                    {\n                        \"X\": 0.21802198886871338,\n                        \"Y\": 0.4089031219482422\n                    },\n                    {\n                        \"X\": 0.022214844822883606,\n                        \"Y\": 0.40879249572753906\n                    }\n                ]\n            },\n            \"Id\": \"5d466164-9af8-4fb8-9130-f94857619cb9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb7e5ce6-4b7d-484c-b6b2-caf31360a544\",\n                        \"4af058ed-4867-4441-842a-fc2c41a80e23\",\n                        \"ea5ff6da-e3d6-49a6-be53-64f622bc8aa5\",\n                        \"13c3ae0a-2b75-4112-981f-38a707414fc3\",\n                        \"d10c380e-912c-4272-8680-0d3fba458e05\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 27.490234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01467642467468977,\n                    \"Left\": 0.21802015602588654,\n                    \"Top\": 0.39432331919670105,\n                    \"Width\": 0.17104367911815643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21802015602588654,\n                        \"Y\": 0.39432331919670105\n                    },\n                    {\n                        \"X\": 0.38906052708625793,\n                        \"Y\": 0.39441928267478943\n                    },\n                    {\n                        \"X\": 0.38906383514404297,\n                        \"Y\": 0.4089997410774231\n                    },\n                    {\n                        \"X\": 0.21802198886871338,\n                        \"Y\": 0.4089031219482422\n                    }\n                ]\n            },\n            \"Id\": \"30c147f3-d866-40a0-8221-a76d7dce4726\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5af37f91-5a92-4a0a-8b7d-b9044040abcd\",\n                        \"5dd207b9-920a-4207-abd1-c6467492d060\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 25.3662109375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014695539139211178,\n                    \"Left\": 0.38906052708625793,\n                    \"Top\": 0.39441928267478943,\n                    \"Width\": 0.20370694994926453\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38906052708625793,\n                        \"Y\": 0.39441928267478943\n                    },\n                    {\n                        \"X\": 0.5927624106407166,\n                        \"Y\": 0.39453357458114624\n                    },\n                    {\n                        \"X\": 0.5927674770355225,\n                        \"Y\": 0.4091148376464844\n                    },\n                    {\n                        \"X\": 0.38906383514404297,\n                        \"Y\": 0.4089997410774231\n                    }\n                ]\n            },\n            \"Id\": \"dfe03c88-8312-4e9d-8423-a60922ad4487\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4cc78360-5457-41ff-ad54-d2869d7594bd\",\n                        \"6f43955b-1815-4791-a5f9-ebfd1af22754\",\n                        \"a6b96378-8612-4694-abc7-1fc1e08e7aac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 28.125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014791671186685562,\n                    \"Left\": 0.5927624106407166,\n                    \"Top\": 0.39453357458114624,\n                    \"Width\": 0.3724690079689026\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927624106407166,\n                        \"Y\": 0.39453357458114624\n                    },\n                    {\n                        \"X\": 0.9652231335639954,\n                        \"Y\": 0.39474257826805115\n                    },\n                    {\n                        \"X\": 0.9652314186096191,\n                        \"Y\": 0.4093252718448639\n                    },\n                    {\n                        \"X\": 0.5927674770355225,\n                        \"Y\": 0.4091148376464844\n                    }\n                ]\n            },\n            \"Id\": \"4e7b8e98-f4e7-4fb1-bcc1-1389532ed0cf\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1bd52d93-6329-4f1d-86c9-979b264c825a\",\n                        \"ffcbb4d4-2fb8-41fb-a2a8-9a7cb419dff3\",\n                        \"16e27a9f-0382-40c5-8f8e-445806a630f0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 26.0498046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015674900263547897,\n                    \"Left\": 0.022214844822883606,\n                    \"Top\": 0.40879249572753906,\n                    \"Width\": 0.19580911099910736\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022214844822883606,\n                        \"Y\": 0.40879249572753906\n                    },\n                    {\n                        \"X\": 0.21802198886871338,\n                        \"Y\": 0.4089031219482422\n                    },\n                    {\n                        \"X\": 0.21802395582199097,\n                        \"Y\": 0.42446738481521606\n                    },\n                    {\n                        \"X\": 0.02221500128507614,\n                        \"Y\": 0.42435595393180847\n                    }\n                ]\n            },\n            \"Id\": \"3efa2ae9-978d-4de8-adad-ad62d6879eab\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0412f623-10f8-4627-a739-57eea97dae7f\",\n                        \"b5a909e0-559f-4751-b202-37bc622c3353\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 28.369140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015661614015698433,\n                    \"Left\": 0.21802198886871338,\n                    \"Top\": 0.4089031219482422,\n                    \"Width\": 0.17104537785053253\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21802198886871338,\n                        \"Y\": 0.4089031219482422\n                    },\n                    {\n                        \"X\": 0.38906383514404297,\n                        \"Y\": 0.4089997410774231\n                    },\n                    {\n                        \"X\": 0.3890673816204071,\n                        \"Y\": 0.4245647192001343\n                    },\n                    {\n                        \"X\": 0.21802395582199097,\n                        \"Y\": 0.42446738481521606\n                    }\n                ]\n            },\n            \"Id\": \"9674e56a-c883-4e2d-afc3-5081f98b02bd\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e825538d-ca8e-47d3-8f6a-a0d76a021a1f\",\n                        \"777390f6-1285-4e08-b8ab-05909325e8fe\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 26.171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015680909156799316,\n                    \"Left\": 0.38906383514404297,\n                    \"Top\": 0.4089997410774231,\n                    \"Width\": 0.20370905101299286\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38906383514404297,\n                        \"Y\": 0.4089997410774231\n                    },\n                    {\n                        \"X\": 0.5927674770355225,\n                        \"Y\": 0.4091148376464844\n                    },\n                    {\n                        \"X\": 0.592772901058197,\n                        \"Y\": 0.4246806502342224\n                    },\n                    {\n                        \"X\": 0.3890673816204071,\n                        \"Y\": 0.4245647192001343\n                    }\n                ]\n            },\n            \"Id\": \"5e01e595-359f-4c74-aa3f-5afe83628b60\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 29.0283203125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015777790918946266,\n                    \"Left\": 0.5927674770355225,\n                    \"Top\": 0.4091148376464844,\n                    \"Width\": 0.3724727928638458\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927674770355225,\n                        \"Y\": 0.4091148376464844\n                    },\n                    {\n                        \"X\": 0.9652314186096191,\n                        \"Y\": 0.4093252718448639\n                    },\n                    {\n                        \"X\": 0.9652402400970459,\n                        \"Y\": 0.4248926341533661\n                    },\n                    {\n                        \"X\": 0.592772901058197,\n                        \"Y\": 0.4246806502342224\n                    }\n                ]\n            },\n            \"Id\": \"335597b3-75bb-4376-96d5-7352c89c763a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7cfa4209-082c-49e6-be61-185b8ec6596a\",\n                        \"d1212686-2a56-4884-b45e-3798a751ff32\",\n                        \"b44ece17-787b-4701-97a7-d4592ca6ec96\",\n                        \"eed12811-f301-472f-91c0-4203409bbb69\",\n                        \"28fb00c1-4148-47f5-b9ea-98a0af65e5a3\",\n                        \"12e48f44-e5ab-4043-a1d0-1c20711f5cff\",\n                        \"809e8b1b-73ff-4f43-878d-be9e4e1a7e9c\",\n                        \"bd08bd33-2ce6-4bb3-8892-e4abba841256\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 76.171875,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.042503368109464645,\n                    \"Left\": 0.023153895512223244,\n                    \"Top\": 0.4404924213886261,\n                    \"Width\": 0.9383624792098999\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.023153895512223244,\n                        \"Y\": 0.4404924213886261\n                    },\n                    {\n                        \"X\": 0.961492657661438,\n                        \"Y\": 0.44103044271469116\n                    },\n                    {\n                        \"X\": 0.9615163803100586,\n                        \"Y\": 0.48299580812454224\n                    },\n                    {\n                        \"X\": 0.02315434254705906,\n                        \"Y\": 0.4824473261833191\n                    }\n                ]\n            },\n            \"Id\": \"2a05e334-a15e-4c5c-8c19-956d4d923aae\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"2f7d0a07-1f2e-4e1f-ad54-0f9d7023cd55\",\n                        \"e8a9be14-dc6a-4fa2-8b1d-986734005840\",\n                        \"734f7b7e-7601-4546-820c-6eb4889a1f7c\",\n                        \"2b6173b1-2701-47b1-ab1a-024cc57dd315\",\n                        \"dc661930-ea9b-4508-a662-762a3494c1dc\",\n                        \"0d617786-f17c-4770-b5b2-f8b4f6cd126b\",\n                        \"97f38b7c-1b5f-4aa7-8c89-e6cf536aee45\",\n                        \"6e3db75c-f220-415f-a2fc-a7fb6b76e458\",\n                        \"39fbf1d5-ef4c-466a-a221-f4ed0a7cd7f6\",\n                        \"c1cd07e8-5eb7-48b8-8502-a150a4a08f0f\",\n                        \"edbf86c0-7da4-494f-9543-27123bf55c25\",\n                        \"d7096e01-0b61-4f29-8a34-0e9f0f081139\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 36.7431640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021054787561297417,\n                    \"Left\": 0.023153895512223244,\n                    \"Top\": 0.4404924213886261,\n                    \"Width\": 0.07475926727056503\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.023153895512223244,\n                        \"Y\": 0.4404924213886261\n                    },\n                    {\n                        \"X\": 0.0979120060801506,\n                        \"Y\": 0.440535306930542\n                    },\n                    {\n                        \"X\": 0.09791316092014313,\n                        \"Y\": 0.46154722571372986\n                    },\n                    {\n                        \"X\": 0.02315411902964115,\n                        \"Y\": 0.46150392293930054\n                    }\n                ]\n            },\n            \"Id\": \"2f7d0a07-1f2e-4e1f-ad54-0f9d7023cd55\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1d883977-567f-4278-80e4-bf7def5b166b\",\n                        \"fb1cf6a7-0656-4a6e-bf23-11378009e040\",\n                        \"e6d41258-0777-4d59-9d29-b498aaa3a399\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 40.91796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021098846569657326,\n                    \"Left\": 0.0979120060801506,\n                    \"Top\": 0.440535306930542,\n                    \"Width\": 0.15014667809009552\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0979120060801506,\n                        \"Y\": 0.440535306930542\n                    },\n                    {\n                        \"X\": 0.24805566668510437,\n                        \"Y\": 0.44062137603759766\n                    },\n                    {\n                        \"X\": 0.24805869162082672,\n                        \"Y\": 0.4616341292858124\n                    },\n                    {\n                        \"X\": 0.09791316092014313,\n                        \"Y\": 0.46154722571372986\n                    }\n                ]\n            },\n            \"Id\": \"e8a9be14-dc6a-4fa2-8b1d-986734005840\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c04ce6eb-efd7-469b-9cc4-1487bcc75cb0\",\n                        \"20dbf06c-3c4c-4fe9-b48c-913e519a6230\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 35.7177734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02110573835670948,\n                    \"Left\": 0.24805566668510437,\n                    \"Top\": 0.44062137603759766,\n                    \"Width\": 0.16060666739940643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24805566668510437,\n                        \"Y\": 0.44062137603759766\n                    },\n                    {\n                        \"X\": 0.40865734219551086,\n                        \"Y\": 0.44071346521377563\n                    },\n                    {\n                        \"X\": 0.408662348985672,\n                        \"Y\": 0.461727112531662\n                    },\n                    {\n                        \"X\": 0.24805869162082672,\n                        \"Y\": 0.4616341292858124\n                    }\n                ]\n            },\n            \"Id\": \"734f7b7e-7601-4546-820c-6eb4889a1f7c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7547a0bc-bb8d-4807-a656-fd33d2f38c00\",\n                        \"e212f0df-117e-4156-8aae-97c51dad844c\",\n                        \"9aea3614-04cd-4510-9b9e-dea2bbe58e68\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 35.009765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02112025022506714,\n                    \"Left\": 0.40865734219551086,\n                    \"Top\": 0.44071346521377563,\n                    \"Width\": 0.18412844836711884\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.40865734219551086,\n                        \"Y\": 0.44071346521377563\n                    },\n                    {\n                        \"X\": 0.5927785038948059,\n                        \"Y\": 0.44081902503967285\n                    },\n                    {\n                        \"X\": 0.5927857756614685,\n                        \"Y\": 0.4618337154388428\n                    },\n                    {\n                        \"X\": 0.408662348985672,\n                        \"Y\": 0.461727112531662\n                    }\n                ]\n            },\n            \"Id\": \"2b6173b1-2701-47b1-ab1a-024cc57dd315\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1317b64c-1b0c-48ba-8c1b-866891b2a462\",\n                        \"759cbefa-3249-4cc3-bd3b-4d1f01321755\",\n                        \"a6f4cc00-15dd-4246-a206-0f6820fb9ff7\",\n                        \"0ddca5f9-bb05-447a-8426-21899f0a231c\",\n                        \"e684e6c6-2a20-4235-ab8d-f26edd5c6330\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 40.91796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02111826278269291,\n                    \"Left\": 0.5927785038948059,\n                    \"Top\": 0.44081902503967285,\n                    \"Width\": 0.1789245903491974\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927785038948059,\n                        \"Y\": 0.44081902503967285\n                    },\n                    {\n                        \"X\": 0.7716935276985168,\n                        \"Y\": 0.4409216344356537\n                    },\n                    {\n                        \"X\": 0.7717030644416809,\n                        \"Y\": 0.4619373083114624\n                    },\n                    {\n                        \"X\": 0.5927857756614685,\n                        \"Y\": 0.4618337154388428\n                    }\n                ]\n            },\n            \"Id\": \"dc661930-ea9b-4508-a662-762a3494c1dc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"72ecd161-ebce-47cb-b04e-203e04eed0f3\",\n                        \"dabf8745-8216-4b7a-ae8e-25e51ce8959f\",\n                        \"44da5d9b-ca9c-46df-bea9-d5e005d5bf65\",\n                        \"dd10b91d-ec74-479f-b241-cb7fd54af2b9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 42.08984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021125560626387596,\n                    \"Left\": 0.7716935276985168,\n                    \"Top\": 0.4409216344356537,\n                    \"Width\": 0.18981099128723145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7716935276985168,\n                        \"Y\": 0.4409216344356537\n                    },\n                    {\n                        \"X\": 0.961492657661438,\n                        \"Y\": 0.44103044271469116\n                    },\n                    {\n                        \"X\": 0.9615045189857483,\n                        \"Y\": 0.46204718947410583\n                    },\n                    {\n                        \"X\": 0.7717030644416809,\n                        \"Y\": 0.4619373083114624\n                    }\n                ]\n            },\n            \"Id\": \"0d617786-f17c-4770-b5b2-f8b4f6cd126b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"eeecfbef-7cbc-42a9-95e0-ae85115a48c6\",\n                        \"b0319acd-f2b4-4c35-815a-d9f04edfc874\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 75.244140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020987097173929214,\n                    \"Left\": 0.02315411902964115,\n                    \"Top\": 0.46150392293930054,\n                    \"Width\": 0.07476019114255905\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02315411902964115,\n                        \"Y\": 0.46150392293930054\n                    },\n                    {\n                        \"X\": 0.09791316092014313,\n                        \"Y\": 0.46154722571372986\n                    },\n                    {\n                        \"X\": 0.09791430830955505,\n                        \"Y\": 0.48249104619026184\n                    },\n                    {\n                        \"X\": 0.02315434254705906,\n                        \"Y\": 0.4824473261833191\n                    }\n                ]\n            },\n            \"Id\": \"97f38b7c-1b5f-4aa7-8c89-e6cf536aee45\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 83.7890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0210315752774477,\n                    \"Left\": 0.09791316092014313,\n                    \"Top\": 0.46154722571372986,\n                    \"Width\": 0.15014854073524475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09791316092014313,\n                        \"Y\": 0.46154722571372986\n                    },\n                    {\n                        \"X\": 0.24805869162082672,\n                        \"Y\": 0.4616341292858124\n                    },\n                    {\n                        \"X\": 0.24806170165538788,\n                        \"Y\": 0.4825787842273712\n                    },\n                    {\n                        \"X\": 0.09791430830955505,\n                        \"Y\": 0.48249104619026184\n                    }\n                ]\n            },\n            \"Id\": \"6e3db75c-f220-415f-a2fc-a7fb6b76e458\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0dbdf5bc-058a-4b41-b053-1021f96eaa65\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 73.14453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021038522943854332,\n                    \"Left\": 0.24805869162082672,\n                    \"Top\": 0.4616341292858124,\n                    \"Width\": 0.16060864925384521\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24805869162082672,\n                        \"Y\": 0.4616341292858124\n                    },\n                    {\n                        \"X\": 0.408662348985672,\n                        \"Y\": 0.461727112531662\n                    },\n                    {\n                        \"X\": 0.40866732597351074,\n                        \"Y\": 0.48267266154289246\n                    },\n                    {\n                        \"X\": 0.24806170165538788,\n                        \"Y\": 0.4825787842273712\n                    }\n                ]\n            },\n            \"Id\": \"39fbf1d5-ef4c-466a-a221-f4ed0a7cd7f6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f802360d-d41f-4fdc-85ea-cd6082e483cf\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 71.6796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021053161472082138,\n                    \"Left\": 0.408662348985672,\n                    \"Top\": 0.461727112531662,\n                    \"Width\": 0.1841307133436203\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.408662348985672,\n                        \"Y\": 0.461727112531662\n                    },\n                    {\n                        \"X\": 0.5927857756614685,\n                        \"Y\": 0.4618337154388428\n                    },\n                    {\n                        \"X\": 0.5927930474281311,\n                        \"Y\": 0.4827802777290344\n                    },\n                    {\n                        \"X\": 0.40866732597351074,\n                        \"Y\": 0.48267266154289246\n                    }\n                ]\n            },\n            \"Id\": \"c1cd07e8-5eb7-48b8-8502-a150a4a08f0f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1e7d727e-ced7-46b5-a1ef-0cde3dc1917d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 83.7890625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02105114236474037,\n                    \"Left\": 0.5927857756614685,\n                    \"Top\": 0.4618337154388428,\n                    \"Width\": 0.17892678081989288\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5927857756614685,\n                        \"Y\": 0.4618337154388428\n                    },\n                    {\n                        \"X\": 0.7717030644416809,\n                        \"Y\": 0.4619373083114624\n                    },\n                    {\n                        \"X\": 0.7717125415802002,\n                        \"Y\": 0.48288485407829285\n                    },\n                    {\n                        \"X\": 0.5927930474281311,\n                        \"Y\": 0.4827802777290344\n                    }\n                ]\n            },\n            \"Id\": \"edbf86c0-7da4-494f-9543-27123bf55c25\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e86dabaa-1017-4207-aaec-49a6e20c3e94\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 86.181640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021058497950434685,\n                    \"Left\": 0.7717030644416809,\n                    \"Top\": 0.4619373083114624,\n                    \"Width\": 0.18981331586837769\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7717030644416809,\n                        \"Y\": 0.4619373083114624\n                    },\n                    {\n                        \"X\": 0.9615045189857483,\n                        \"Y\": 0.46204718947410583\n                    },\n                    {\n                        \"X\": 0.9615163803100586,\n                        \"Y\": 0.48299580812454224\n                    },\n                    {\n                        \"X\": 0.7717125415802002,\n                        \"Y\": 0.48288485407829285\n                    }\n                ]\n            },\n            \"Id\": \"d7096e01-0b61-4f29-8a34-0e9f0f081139\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cd0753be-2137-4f00-b3c5-361ea3723590\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 79.541015625,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.042520761489868164,\n                    \"Left\": 0.023467417806386948,\n                    \"Top\": 0.49697086215019226,\n                    \"Width\": 0.9393332600593567\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.023467417806386948,\n                        \"Y\": 0.49697086215019226\n                    },\n                    {\n                        \"X\": 0.9627768993377686,\n                        \"Y\": 0.4975234866142273\n                    },\n                    {\n                        \"X\": 0.9628006219863892,\n                        \"Y\": 0.539491593837738\n                    },\n                    {\n                        \"X\": 0.02346787229180336,\n                        \"Y\": 0.5389285087585449\n                    }\n                ]\n            },\n            \"Id\": \"0d9a48d7-0682-4095-ae6b-20596742bee5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8f60c9a3-68be-4843-b5d8-ad96b362ef0d\",\n                        \"1e59b5b8-c869-4122-a2e1-7a6631a819ae\",\n                        \"0fb34e43-7ec7-4abb-8990-35a8071a269b\",\n                        \"a7ea89b8-84ab-4f85-b0cb-1b6de593dccc\",\n                        \"6e288348-4a53-4f26-8241-68e2a3708631\",\n                        \"c4a1afe9-9fc8-49f0-8f53-99eadc2e6dba\",\n                        \"29139034-4ca6-429a-9ed6-7fc071a2e1d9\",\n                        \"47cc1fc8-1660-4a48-b0a6-30ca812c656b\",\n                        \"cbb16c2b-7deb-4bc5-a88e-b78587fd86b0\",\n                        \"ef28488a-e4cf-480e-9cc3-4bd01fdaa063\",\n                        \"c1ebc65d-8790-4095-ac1a-f7eda0b89332\",\n                        \"09dd75c2-30d9-4f44-a9bd-6fd7adcf25db\"\n                    ],\n                    \"Type\": \"CHILD\"\n                },\n                {\n                    \"Ids\": [\n                        \"83f476c3-bb7e-4773-b6ee-ba235951d86a\"\n                    ],\n                    \"Type\": \"MERGED_CELL\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 36.0595703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020656535401940346,\n                    \"Left\": 0.023467417806386948,\n                    \"Top\": 0.49697086215019226,\n                    \"Width\": 0.07444881647825241\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.023467417806386948,\n                        \"Y\": 0.49697086215019226\n                    },\n                    {\n                        \"X\": 0.09791510552167892,\n                        \"Y\": 0.4970146417617798\n                    },\n                    {\n                        \"X\": 0.09791623800992966,\n                        \"Y\": 0.5176273584365845\n                    },\n                    {\n                        \"X\": 0.023467641323804855,\n                        \"Y\": 0.5175831913948059\n                    }\n                ]\n            },\n            \"Id\": \"8f60c9a3-68be-4843-b5d8-ad96b362ef0d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6446a1f0-7a15-4f14-b351-701c3b2abeee\",\n                        \"49b6bce4-3620-4c69-b84e-072552cf8f43\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.3798828125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02070189267396927,\n                    \"Left\": 0.09791510552167892,\n                    \"Top\": 0.4970146417617798,\n                    \"Width\": 0.15015164017677307\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09791510552167892,\n                        \"Y\": 0.4970146417617798\n                    },\n                    {\n                        \"X\": 0.24806378781795502,\n                        \"Y\": 0.4971029758453369\n                    },\n                    {\n                        \"X\": 0.2480667382478714,\n                        \"Y\": 0.5177165269851685\n                    },\n                    {\n                        \"X\": 0.09791623800992966,\n                        \"Y\": 0.5176273584365845\n                    }\n                ]\n            },\n            \"Id\": \"1e59b5b8-c869-4122-a2e1-7a6631a819ae\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3f6b150f-af60-4896-a656-93761c6cbdfb\",\n                        \"5550ad46-7b09-4f72-82c6-d78d80b9c07d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 36.42578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020708924159407616,\n                    \"Left\": 0.24806378781795502,\n                    \"Top\": 0.4971029758453369,\n                    \"Width\": 0.16061194241046906\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24806378781795502,\n                        \"Y\": 0.4971029758453369\n                    },\n                    {\n                        \"X\": 0.4086708128452301,\n                        \"Y\": 0.4971974790096283\n                    },\n                    {\n                        \"X\": 0.4086757302284241,\n                        \"Y\": 0.5178118944168091\n                    },\n                    {\n                        \"X\": 0.2480667382478714,\n                        \"Y\": 0.5177165269851685\n                    }\n                ]\n            },\n            \"Id\": \"0fb34e43-7ec7-4abb-8990-35a8071a269b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"91ce27ca-abdc-4b60-9656-9880349851cb\",\n                        \"9d110f48-3f14-401b-a903-583ddba37243\",\n                        \"ae9455fb-06bb-4657-8582-00789ccbaa8c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 63.232421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020736951380968094,\n                    \"Left\": 0.4086708128452301,\n                    \"Top\": 0.4971974790096283,\n                    \"Width\": 0.20633569359779358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4086708128452301,\n                        \"Y\": 0.4971974790096283\n                    },\n                    {\n                        \"X\": 0.6149990558624268,\n                        \"Y\": 0.4973188638687134\n                    },\n                    {\n                        \"X\": 0.6150065064430237,\n                        \"Y\": 0.5179344415664673\n                    },\n                    {\n                        \"X\": 0.4086757302284241,\n                        \"Y\": 0.5178118944168091\n                    }\n                ]\n            },\n            \"Id\": \"a7ea89b8-84ab-4f85-b0cb-1b6de593dccc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1d727035-560b-4dc4-9d5c-df0595efcb22\",\n                        \"a662ddc4-bb9f-494d-9d91-bfc24714dd91\",\n                        \"e6338039-9b56-4296-bec7-160cdfbe738d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 38.28125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020731888711452484,\n                    \"Left\": 0.6149990558624268,\n                    \"Top\": 0.4973188638687134,\n                    \"Width\": 0.1959119588136673\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6149990558624268,\n                        \"Y\": 0.4973188638687134\n                    },\n                    {\n                        \"X\": 0.8109012246131897,\n                        \"Y\": 0.4974341094493866\n                    },\n                    {\n                        \"X\": 0.8109109997749329,\n                        \"Y\": 0.5180507302284241\n                    },\n                    {\n                        \"X\": 0.6150065064430237,\n                        \"Y\": 0.5179344415664673\n                    }\n                ]\n            },\n            \"Id\": \"6e288348-4a53-4f26-8241-68e2a3708631\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b220e3bc-4601-4578-b1f3-5d55b1b1af62\",\n                        \"67ad1846-8e43-4012-b97a-a31b431e1954\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 31.5185546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020706817507743835,\n                    \"Left\": 0.8109012246131897,\n                    \"Top\": 0.4974341094493866,\n                    \"Width\": 0.15188735723495483\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8109012246131897,\n                        \"Y\": 0.4974341094493866\n                    },\n                    {\n                        \"X\": 0.9627768993377686,\n                        \"Y\": 0.4975234866142273\n                    },\n                    {\n                        \"X\": 0.9627885818481445,\n                        \"Y\": 0.5181409120559692\n                    },\n                    {\n                        \"X\": 0.8109109997749329,\n                        \"Y\": 0.5180507302284241\n                    }\n                ]\n            },\n            \"Id\": \"c4a1afe9-9fc8-49f0-8f53-99eadc2e6dba\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c7c071ed-b840-4faa-997d-1355c3bc2df0\",\n                        \"e0451d88-15d6-47d8-8d05-af05824fbc2d\",\n                        \"47ca9455-40d2-48cf-87ae-dd3937b390a9\",\n                        \"effbc861-9822-4065-8f19-e3b80c9a1e70\",\n                        \"2d38ee50-549c-4cc1-b871-c9fb9a78e8ef\",\n                        \"2e4792d3-957b-437b-8c0d-0b1bf53c7527\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 56.884765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021389979869127274,\n                    \"Left\": 0.023467641323804855,\n                    \"Top\": 0.5175831913948059,\n                    \"Width\": 0.07444976270198822\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.023467641323804855,\n                        \"Y\": 0.5175831913948059\n                    },\n                    {\n                        \"X\": 0.09791623800992966,\n                        \"Y\": 0.5176273584365845\n                    },\n                    {\n                        \"X\": 0.09791740775108337,\n                        \"Y\": 0.5389731526374817\n                    },\n                    {\n                        \"X\": 0.02346787229180336,\n                        \"Y\": 0.5389285087585449\n                    }\n                ]\n            },\n            \"Id\": \"29139034-4ca6-429a-9ed6-7fc071a2e1d9\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 62.109375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021435780450701714,\n                    \"Left\": 0.09791623800992966,\n                    \"Top\": 0.5176273584365845,\n                    \"Width\": 0.15015357732772827\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09791623800992966,\n                        \"Y\": 0.5176273584365845\n                    },\n                    {\n                        \"X\": 0.2480667382478714,\n                        \"Y\": 0.5177165269851685\n                    },\n                    {\n                        \"X\": 0.24806980788707733,\n                        \"Y\": 0.5390631556510925\n                    },\n                    {\n                        \"X\": 0.09791740775108337,\n                        \"Y\": 0.5389731526374817\n                    }\n                ]\n            },\n            \"Id\": \"47cc1fc8-1660-4a48-b0a6-30ca812c656b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"db583c43-d155-4d45-a9ea-913db0fb76dd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 57.470703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021442901343107224,\n                    \"Left\": 0.2480667382478714,\n                    \"Top\": 0.5177165269851685,\n                    \"Width\": 0.16061407327651978\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2480667382478714,\n                        \"Y\": 0.5177165269851685\n                    },\n                    {\n                        \"X\": 0.4086757302284241,\n                        \"Y\": 0.5178118944168091\n                    },\n                    {\n                        \"X\": 0.40868082642555237,\n                        \"Y\": 0.5391594171524048\n                    },\n                    {\n                        \"X\": 0.24806980788707733,\n                        \"Y\": 0.5390631556510925\n                    }\n                ]\n            },\n            \"Id\": \"cbb16c2b-7deb-4bc5-a88e-b78587fd86b0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"86aa9e8f-dffd-48d6-a06c-b389aa547ae4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 81.0546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021471219137310982,\n                    \"Left\": 0.4086757302284241,\n                    \"Top\": 0.5178118944168091,\n                    \"Width\": 0.20633848011493683\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4086757302284241,\n                        \"Y\": 0.5178118944168091\n                    },\n                    {\n                        \"X\": 0.6150065064430237,\n                        \"Y\": 0.5179344415664673\n                    },\n                    {\n                        \"X\": 0.6150141954421997,\n                        \"Y\": 0.5392831563949585\n                    },\n                    {\n                        \"X\": 0.40868082642555237,\n                        \"Y\": 0.5391594171524048\n                    }\n                ]\n            },\n            \"Id\": \"ef28488a-e4cf-480e-9cc3-4bd01fdaa063\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 61.865234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02143179625272751,\n                    \"Left\": 0.6150065064430237,\n                    \"Top\": 0.5179344415664673,\n                    \"Width\": 0.19591467082500458\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6150065064430237,\n                        \"Y\": 0.5179344415664673\n                    },\n                    {\n                        \"X\": 0.8109109997749329,\n                        \"Y\": 0.5180507302284241\n                    },\n                    {\n                        \"X\": 0.8109211921691895,\n                        \"Y\": 0.5393662452697754\n                    },\n                    {\n                        \"X\": 0.6150141954421997,\n                        \"Y\": 0.5392487645149231\n                    }\n                ]\n            },\n            \"Id\": \"c1ebc65d-8790-4095-ac1a-f7eda0b89332\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"25b6007c-51ef-427b-8925-6a904d7fac64\",\n                        \"522b0acd-42aa-4213-b048-4881dc5657c6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 61.865234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021406294777989388,\n                    \"Left\": 0.8109109997749329,\n                    \"Top\": 0.5180507302284241,\n                    \"Width\": 0.15152549743652344\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8109109997749329,\n                        \"Y\": 0.5180507302284241\n                    },\n                    {\n                        \"X\": 0.9624244570732117,\n                        \"Y\": 0.5181407332420349\n                    },\n                    {\n                        \"X\": 0.9624364972114563,\n                        \"Y\": 0.5394570231437683\n                    },\n                    {\n                        \"X\": 0.8109211921691895,\n                        \"Y\": 0.5393662452697754\n                    }\n                ]\n            },\n            \"Id\": \"09dd75c2-30d9-4f44-a9bd-6fd7adcf25db\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 61.865234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02155718021094799,\n                    \"Left\": 0.6150065064430237,\n                    \"Top\": 0.5179344415664673,\n                    \"Width\": 0.34779414534568787\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6150065064430237,\n                        \"Y\": 0.5179344415664673\n                    },\n                    {\n                        \"X\": 0.9627885818481445,\n                        \"Y\": 0.5181409120559692\n                    },\n                    {\n                        \"X\": 0.9628006219863892,\n                        \"Y\": 0.539491593837738\n                    },\n                    {\n                        \"X\": 0.6150141954421997,\n                        \"Y\": 0.5392831563949585\n                    }\n                ]\n            },\n            \"Id\": \"83f476c3-bb7e-4773-b6ee-ba235951d86a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c1ebc65d-8790-4095-ac1a-f7eda0b89332\",\n                        \"09dd75c2-30d9-4f44-a9bd-6fd7adcf25db\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 90.478515625,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.043610211461782455,\n                    \"Left\": 0.021277377381920815,\n                    \"Top\": 0.5394651889801025,\n                    \"Width\": 0.9402955770492554\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021277377381920815,\n                        \"Y\": 0.5394651889801025\n                    },\n                    {\n                        \"X\": 0.9615486264228821,\n                        \"Y\": 0.5400289297103882\n                    },\n                    {\n                        \"X\": 0.9615729451179504,\n                        \"Y\": 0.5830754041671753\n                    },\n                    {\n                        \"X\": 0.021277787163853645,\n                        \"Y\": 0.5825008749961853\n                    }\n                ]\n            },\n            \"Id\": \"64f8a498-8395-48eb-8d49-8e798f0affb6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b1297ef9-6df4-4520-a62e-0e0682512e67\",\n                        \"cb318465-7918-4d47-a2d0-9a4a57c0dc17\",\n                        \"d30bfd13-5420-4863-b32a-ea8316e5a62c\",\n                        \"0fb546e3-9fe7-452f-b04f-298a3d7dd26b\",\n                        \"87b68cd1-df67-474d-a1b7-9bab48bcc2c1\",\n                        \"91a04a90-237a-4931-841e-960ea4f463ab\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 80.17578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014335136860609055,\n                    \"Left\": 0.021277377381920815,\n                    \"Top\": 0.5394651889801025,\n                    \"Width\": 0.5401972532272339\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021277377381920815,\n                        \"Y\": 0.5394651889801025\n                    },\n                    {\n                        \"X\": 0.5614699721336365,\n                        \"Y\": 0.539789080619812\n                    },\n                    {\n                        \"X\": 0.561474621295929,\n                        \"Y\": 0.5538002848625183\n                    },\n                    {\n                        \"X\": 0.02127751149237156,\n                        \"Y\": 0.5534744262695312\n                    }\n                ]\n            },\n            \"Id\": \"b1297ef9-6df4-4520-a62e-0e0682512e67\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e2ef7117-ab0f-4ce1-82b4-9a204f933f45\",\n                        \"bd1691bb-a5fb-4898-9790-7344fd5ea3ff\",\n                        \"e3878e03-17f6-49c8-8535-4e101380d192\",\n                        \"424c31e3-41e6-4901-b318-f63d5300ef57\",\n                        \"e08f0fc1-b0df-48a8-8386-3a4631f8b22b\",\n                        \"bed94834-903d-4dd3-88a0-6e3a135c9c04\",\n                        \"bb367b78-323e-4a6f-b3de-7a5de15053a1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 84.5703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014169617556035519,\n                    \"Left\": 0.5614699721336365,\n                    \"Top\": 0.539789080619812,\n                    \"Width\": 0.2625194191932678\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5614699721336365,\n                        \"Y\": 0.539789080619812\n                    },\n                    {\n                        \"X\": 0.8239826560020447,\n                        \"Y\": 0.5399464964866638\n                    },\n                    {\n                        \"X\": 0.8239894509315491,\n                        \"Y\": 0.5539587140083313\n                    },\n                    {\n                        \"X\": 0.561474621295929,\n                        \"Y\": 0.5538002848625183\n                    }\n                ]\n            },\n            \"Id\": \"cb318465-7918-4d47-a2d0-9a4a57c0dc17\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"eddf32e8-b038-4f9b-85d9-1df5e3512133\",\n                        \"aa213054-3af0-469c-90f0-9246a18e3d0e\",\n                        \"b4f106d9-72d7-4fc5-ae5b-64f3fa869655\",\n                        \"49d2fbd3-038b-46c5-8cba-169f9c49614c\",\n                        \"2625e666-bc15-4dee-8a79-bdadfef9f57f\",\n                        \"766e00a7-f9d5-43fa-a762-29c0d8fd750f\",\n                        \"df432aab-76af-486c-9dc6-83c4f39f4ec3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 66.89453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014095211401581764,\n                    \"Left\": 0.8239826560020447,\n                    \"Top\": 0.5399464964866638,\n                    \"Width\": 0.13757391273975372\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8239826560020447,\n                        \"Y\": 0.5399464964866638\n                    },\n                    {\n                        \"X\": 0.9615486264228821,\n                        \"Y\": 0.5400289297103882\n                    },\n                    {\n                        \"X\": 0.9615565538406372,\n                        \"Y\": 0.5540416836738586\n                    },\n                    {\n                        \"X\": 0.8239894509315491,\n                        \"Y\": 0.5539587140083313\n                    }\n                ]\n            },\n            \"Id\": \"d30bfd13-5420-4863-b32a-ea8316e5a62c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e04676f1-5b16-4cb4-b1f5-21d8f9dbeb26\",\n                        \"bf82ad16-656d-4007-9e1b-4c90d5030bc6\",\n                        \"1c73ab34-13b9-4655-9a37-fa5caa86d26b\",\n                        \"ed15c1cc-84cd-415f-ba5c-5948275f047b\",\n                        \"734d5324-d9b1-4ce2-8c99-9c654a8f740f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 94.677734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02935652621090412,\n                    \"Left\": 0.02127751149237156,\n                    \"Top\": 0.5534744262695312,\n                    \"Width\": 0.5402066111564636\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02127751149237156,\n                        \"Y\": 0.5534744262695312\n                    },\n                    {\n                        \"X\": 0.561474621295929,\n                        \"Y\": 0.5538002848625183\n                    },\n                    {\n                        \"X\": 0.561484158039093,\n                        \"Y\": 0.5828309059143066\n                    },\n                    {\n                        \"X\": 0.021277787163853645,\n                        \"Y\": 0.5825008749961853\n                    }\n                ]\n            },\n            \"Id\": \"0fb546e3-9fe7-452f-b04f-298a3d7dd26b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dfcba9b9-b2ce-4d96-8122-8391c809b3ca\",\n                        \"48117f97-32c1-457e-a9b4-b029df8ac663\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 83.88671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.029191020876169205,\n                    \"Left\": 0.561474621295929,\n                    \"Top\": 0.5538002848625183,\n                    \"Width\": 0.2625288665294647\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.561474621295929,\n                        \"Y\": 0.5538002848625183\n                    },\n                    {\n                        \"X\": 0.8239894509315491,\n                        \"Y\": 0.5539587140083313\n                    },\n                    {\n                        \"X\": 0.8240034580230713,\n                        \"Y\": 0.5829913020133972\n                    },\n                    {\n                        \"X\": 0.561484158039093,\n                        \"Y\": 0.5828309059143066\n                    }\n                ]\n            },\n            \"Id\": \"87b68cd1-df67-474d-a1b7-9bab48bcc2c1\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 51.85546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02911669947206974,\n                    \"Left\": 0.8239894509315491,\n                    \"Top\": 0.5539587140083313,\n                    \"Width\": 0.13758353888988495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8239894509315491,\n                        \"Y\": 0.5539587140083313\n                    },\n                    {\n                        \"X\": 0.9615565538406372,\n                        \"Y\": 0.5540416836738586\n                    },\n                    {\n                        \"X\": 0.9615729451179504,\n                        \"Y\": 0.5830754041671753\n                    },\n                    {\n                        \"X\": 0.8240034580230713,\n                        \"Y\": 0.5829913020133972\n                    }\n                ]\n            },\n            \"Id\": \"91a04a90-237a-4931-841e-960ea4f463ab\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f13beb51-28f3-4aa2-9539-05e22c0c5892\",\n                        \"d3079a75-36f3-4eec-92db-77f95f27a187\",\n                        \"15c62bd5-3ac8-496f-8fce-5cdef8afd087\",\n                        \"14cb9679-c9c9-45fc-beb8-ff37999cc5d1\",\n                        \"5ab2a09c-e417-4c2f-a9f1-42ba449dc986\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 70.166015625,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.09099745005369186,\n                    \"Left\": 0.02159118466079235,\n                    \"Top\": 0.6298428773880005,\n                    \"Width\": 0.9425645470619202\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02159118466079235,\n                        \"Y\": 0.6298428773880005\n                    },\n                    {\n                        \"X\": 0.9641045331954956,\n                        \"Y\": 0.6304305791854858\n                    },\n                    {\n                        \"X\": 0.9641557335853577,\n                        \"Y\": 0.720840334892273\n                    },\n                    {\n                        \"X\": 0.021592063829302788,\n                        \"Y\": 0.7202300429344177\n                    }\n                ]\n            },\n            \"Id\": \"a4e67bc0-1cf0-4cde-bb52-27a97b71abd4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"812fc3f5-1845-446f-ae9e-5d2e0b65bac6\",\n                        \"04173d2e-ddb7-489a-a495-5bdc512bc3be\",\n                        \"32b8fbca-57ac-4b17-a98d-ec9c4861c2ce\",\n                        \"57cef9d6-d921-4f92-8c00-5e084e971362\",\n                        \"29665384-48e4-46e6-ac90-85e677c375fc\",\n                        \"2e4d6565-d37d-4b7e-b471-775cc08530e7\",\n                        \"dd087541-3e07-4086-b15c-d0da5d814d3b\",\n                        \"390dbe65-2894-42ca-bd97-60d851525ebc\",\n                        \"a683bdbf-0363-4961-84c9-3f28e42a621e\",\n                        \"0dbcc858-3af0-4ffb-9964-2026fcf985b6\",\n                        \"88d5fb23-4611-4114-a223-3a7cab0b8b0a\",\n                        \"ec329f55-d030-4970-9a8c-94f3c18770af\",\n                        \"51f129b6-3bcb-4309-ba2e-5e4de2c06407\",\n                        \"7f1bcdcb-c8e9-499e-b442-b3733c464920\",\n                        \"2ce8b133-b09d-438e-b738-c8a950495c7c\",\n                        \"d01d807f-8ed4-420c-a86b-663a3bd63239\",\n                        \"352d6600-2423-4447-98e7-2da008a37cc2\",\n                        \"bc21d232-bae6-48f0-82c1-785445317527\",\n                        \"03e2e44e-65ea-4672-b3a9-b10218c08091\",\n                        \"fa110784-b2bb-4c69-a3cd-6c491bba03d6\",\n                        \"b91ee8c4-7dcc-41b3-9c17-94a6a835c91b\",\n                        \"585e154c-1e6a-48ce-9f70-9f83da7faefb\",\n                        \"b37ba154-757a-472c-a1b8-1797901b51b5\",\n                        \"160160ce-ff8f-4cec-b291-5d9dcdc9d13d\",\n                        \"8bd59e14-3ab6-41b2-9b31-c9bfeab1c2b5\",\n                        \"dc474583-720f-4d22-8acc-63ccb42f6be6\",\n                        \"76a9d62a-042a-4023-a1ae-5371e395fb07\",\n                        \"e30d31d7-9f7a-42d0-ab84-5b92bc2429bb\",\n                        \"69d85b82-dda3-4e32-882d-12443a53b990\",\n                        \"6ed41ec9-d660-4739-8dff-ef273252687a\",\n                        \"fd499574-a8f1-493b-8d67-6358d2a6d52e\",\n                        \"3257d406-5a52-449e-9a14-1c05464252c5\",\n                        \"7adc3af7-29b4-4370-acf2-c44679224029\",\n                        \"3abda5e6-0d39-4d70-9186-0d36d2d64a3f\",\n                        \"724ad0f6-0df9-451f-ba3f-1f745f83b0fa\",\n                        \"9a3a7de7-b0b5-4026-ae38-1acc35af2999\"\n                    ],\n                    \"Type\": \"CHILD\"\n                },\n                {\n                    \"Ids\": [\n                        \"d7d2f3de-f57b-45db-be8a-2c841639006a\",\n                        \"67d7a08e-ba6e-4589-b523-b2f17b5c91fc\"\n                    ],\n                    \"Type\": \"MERGED_CELL\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.0234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014576233923435211,\n                    \"Left\": 0.02159118466079235,\n                    \"Top\": 0.6298428773880005,\n                    \"Width\": 0.13508953154087067\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02159118466079235,\n                        \"Y\": 0.6298428773880005\n                    },\n                    {\n                        \"X\": 0.1566794067621231,\n                        \"Y\": 0.6299270987510681\n                    },\n                    {\n                        \"X\": 0.15668071806430817,\n                        \"Y\": 0.6444191336631775\n                    },\n                    {\n                        \"X\": 0.021591324359178543,\n                        \"Y\": 0.6443343758583069\n                    }\n                ]\n            },\n            \"Id\": \"812fc3f5-1845-446f-ae9e-5d2e0b65bac6\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 48.9990234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014594404958188534,\n                    \"Left\": 0.1566794067621231,\n                    \"Top\": 0.6299270987510681,\n                    \"Width\": 0.16322624683380127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1566794067621231,\n                        \"Y\": 0.6299270987510681\n                    },\n                    {\n                        \"X\": 0.3199029564857483,\n                        \"Y\": 0.6300289034843445\n                    },\n                    {\n                        \"X\": 0.31990566849708557,\n                        \"Y\": 0.6445215344429016\n                    },\n                    {\n                        \"X\": 0.15668071806430817,\n                        \"Y\": 0.6444191336631775\n                    }\n                ]\n            },\n            \"Id\": \"04173d2e-ddb7-489a-a495-5bdc512bc3be\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"257b8c91-863c-4d04-90a5-fe4ceffd3f90\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 32.6171875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01450246013700962,\n                    \"Left\": 0.3199029564857483,\n                    \"Top\": 0.6300289034843445,\n                    \"Width\": 0.015673033893108368\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3199029564857483,\n                        \"Y\": 0.6300289034843445\n                    },\n                    {\n                        \"X\": 0.3355731666088104,\n                        \"Y\": 0.6300386786460876\n                    },\n                    {\n                        \"X\": 0.33557599782943726,\n                        \"Y\": 0.6445313692092896\n                    },\n                    {\n                        \"X\": 0.31990566849708557,\n                        \"Y\": 0.6445215344429016\n                    }\n                ]\n            },\n            \"Id\": \"32b8fbca-57ac-4b17-a98d-ec9c4861c2ce\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.755859375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014549219980835915,\n                    \"Left\": 0.3355731666088104,\n                    \"Top\": 0.6300386786460876,\n                    \"Width\": 0.09010979533195496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3355731666088104,\n                        \"Y\": 0.6300386786460876\n                    },\n                    {\n                        \"X\": 0.42567935585975647,\n                        \"Y\": 0.6300948262214661\n                    },\n                    {\n                        \"X\": 0.4256829619407654,\n                        \"Y\": 0.6445878744125366\n                    },\n                    {\n                        \"X\": 0.33557599782943726,\n                        \"Y\": 0.6445313692092896\n                    }\n                ]\n            },\n            \"Id\": \"57cef9d6-d921-4f92-8c00-5e084e971362\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"91044934-2374-41b7-bada-695591c203f2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 42.041015625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014534820802509785,\n                    \"Left\": 0.42567935585975647,\n                    \"Top\": 0.6300948262214661,\n                    \"Width\": 0.06660716980695724\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42567935585975647,\n                        \"Y\": 0.6300948262214661\n                    },\n                    {\n                        \"X\": 0.49228236079216003,\n                        \"Y\": 0.6301363706588745\n                    },\n                    {\n                        \"X\": 0.4922865331172943,\n                        \"Y\": 0.6446296572685242\n                    },\n                    {\n                        \"X\": 0.4256829619407654,\n                        \"Y\": 0.6445878744125366\n                    }\n                ]\n            },\n            \"Id\": \"29665384-48e4-46e6-ac90-85e677c375fc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4afa481e-3d1e-4baf-877c-9d4c7d28d16c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 47.802734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014577686786651611,\n                    \"Left\": 0.49228236079216003,\n                    \"Top\": 0.6301363706588745,\n                    \"Width\": 0.1345244199037552\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49228236079216003,\n                        \"Y\": 0.6301363706588745\n                    },\n                    {\n                        \"X\": 0.6268014311790466,\n                        \"Y\": 0.6302202343940735\n                    },\n                    {\n                        \"X\": 0.6268067955970764,\n                        \"Y\": 0.6447140574455261\n                    },\n                    {\n                        \"X\": 0.4922865331172943,\n                        \"Y\": 0.6446296572685242\n                    }\n                ]\n            },\n            \"Id\": \"2e4d6565-d37d-4b7e-b471-775cc08530e7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"802ce0fb-3236-4af7-9929-e3f9d08dc092\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.8046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014595418237149715,\n                    \"Left\": 0.6268014311790466,\n                    \"Top\": 0.6302202343940735,\n                    \"Width\": 0.1619647592306137\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6268014311790466,\n                        \"Y\": 0.6302202343940735\n                    },\n                    {\n                        \"X\": 0.7887594699859619,\n                        \"Y\": 0.6303212642669678\n                    },\n                    {\n                        \"X\": 0.7887662053108215,\n                        \"Y\": 0.6448156833648682\n                    },\n                    {\n                        \"X\": 0.6268067955970764,\n                        \"Y\": 0.6447140574455261\n                    }\n                ]\n            },\n            \"Id\": \"dd087541-3e07-4086-b15c-d0da5d814d3b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e97e3d8c-40b6-4c9c-bd24-1a24cb247d45\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 8,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 34.1552734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014560810290277004,\n                    \"Left\": 0.7887594699859619,\n                    \"Top\": 0.6303212642669678,\n                    \"Width\": 0.10581029206514359\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7887594699859619,\n                        \"Y\": 0.6303212642669678\n                    },\n                    {\n                        \"X\": 0.8945621848106384,\n                        \"Y\": 0.6303872466087341\n                    },\n                    {\n                        \"X\": 0.8945698142051697,\n                        \"Y\": 0.644882082939148\n                    },\n                    {\n                        \"X\": 0.7887662053108215,\n                        \"Y\": 0.6448156833648682\n                    }\n                ]\n            },\n            \"Id\": \"390dbe65-2894-42ca-bd97-60d851525ebc\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 9,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 37.2314453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014538467861711979,\n                    \"Left\": 0.8945621848106384,\n                    \"Top\": 0.6303872466087341,\n                    \"Width\": 0.06955056637525558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8945621848106384,\n                        \"Y\": 0.6303872466087341\n                    },\n                    {\n                        \"X\": 0.9641045331954956,\n                        \"Y\": 0.6304305791854858\n                    },\n                    {\n                        \"X\": 0.9641127586364746,\n                        \"Y\": 0.6449257135391235\n                    },\n                    {\n                        \"X\": 0.8945698142051697,\n                        \"Y\": 0.644882082939148\n                    }\n                ]\n            },\n            \"Id\": \"a683bdbf-0363-4961-84c9-3f28e42a621e\",\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.2578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03822769969701767,\n                    \"Left\": 0.021591324359178543,\n                    \"Top\": 0.6443343758583069,\n                    \"Width\": 0.1350928097963333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021591324359178543,\n                        \"Y\": 0.6443343758583069\n                    },\n                    {\n                        \"X\": 0.15668071806430817,\n                        \"Y\": 0.6444191336631775\n                    },\n                    {\n                        \"X\": 0.15668413043022156,\n                        \"Y\": 0.6825620532035828\n                    },\n                    {\n                        \"X\": 0.02159169688820839,\n                        \"Y\": 0.6824759244918823\n                    }\n                ]\n            },\n            \"Id\": \"0dbcc858-3af0-4ffb-9964-2026fcf985b6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4eff9f87-c4e5-4f99-aefb-0cb43107336c\",\n                        \"013135ba-2878-4c65-8332-ba686a62cc87\",\n                        \"d0852e49-d7f7-4ce9-b7f6-4190e4b8f8df\",\n                        \"412c0a72-1c20-4ed9-9fc7-4fd8e8a52d2e\",\n                        \"0f503fcd-c496-4123-b593-ccf646fba397\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.2333984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0382470041513443,\n                    \"Left\": 0.15668071806430817,\n                    \"Top\": 0.6444191336631775,\n                    \"Width\": 0.16323204338550568\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15668071806430817,\n                        \"Y\": 0.6444191336631775\n                    },\n                    {\n                        \"X\": 0.31990566849708557,\n                        \"Y\": 0.6445215344429016\n                    },\n                    {\n                        \"X\": 0.31991276144981384,\n                        \"Y\": 0.6826661229133606\n                    },\n                    {\n                        \"X\": 0.15668413043022156,\n                        \"Y\": 0.6825620532035828\n                    }\n                ]\n            },\n            \"Id\": \"88d5fb23-4611-4114-a223-3a7cab0b8b0a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0548bcc3-efe1-4267-9b38-04acdab6b5a5\",\n                        \"394ea23a-0e7c-4305-9b06-7a0bc216a03d\",\n                        \"8c84dae1-cf6e-499d-9b52-b036d613bc6c\",\n                        \"ab0eeee4-c656-4c91-b11b-cff0c4595cbf\",\n                        \"cd6cd51e-8fa9-40a3-978c-f6d7cdc6f2e6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 26.123046875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.038154587149620056,\n                    \"Left\": 0.31990566849708557,\n                    \"Top\": 0.6445215344429016,\n                    \"Width\": 0.015677787363529205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31990566849708557,\n                        \"Y\": 0.6445215344429016\n                    },\n                    {\n                        \"X\": 0.33557599782943726,\n                        \"Y\": 0.6445313692092896\n                    },\n                    {\n                        \"X\": 0.3355834484100342,\n                        \"Y\": 0.6826761364936829\n                    },\n                    {\n                        \"X\": 0.31991276144981384,\n                        \"Y\": 0.6826661229133606\n                    }\n                ]\n            },\n            \"Id\": \"ec329f55-d030-4970-9a8c-94f3c18770af\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.84375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0382022000849247,\n                    \"Left\": 0.33557599782943726,\n                    \"Top\": 0.6445313692092896,\n                    \"Width\": 0.09011644870042801\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33557599782943726,\n                        \"Y\": 0.6445313692092896\n                    },\n                    {\n                        \"X\": 0.4256829619407654,\n                        \"Y\": 0.6445878744125366\n                    },\n                    {\n                        \"X\": 0.42569243907928467,\n                        \"Y\": 0.6827335357666016\n                    },\n                    {\n                        \"X\": 0.3355834484100342,\n                        \"Y\": 0.6826761364936829\n                    }\n                ]\n            },\n            \"Id\": \"51f129b6-3bcb-4309-ba2e-5e4de2c06407\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 33.6669921875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03818812966346741,\n                    \"Left\": 0.4256829619407654,\n                    \"Top\": 0.6445878744125366,\n                    \"Width\": 0.0666145458817482\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4256829619407654,\n                        \"Y\": 0.6445878744125366\n                    },\n                    {\n                        \"X\": 0.4922865331172943,\n                        \"Y\": 0.6446296572685242\n                    },\n                    {\n                        \"X\": 0.492297500371933,\n                        \"Y\": 0.6827760338783264\n                    },\n                    {\n                        \"X\": 0.42569243907928467,\n                        \"Y\": 0.6827335357666016\n                    }\n                ]\n            },\n            \"Id\": \"7f1bcdcb-c8e9-499e-b442-b3733c464920\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 38.28125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03823209926486015,\n                    \"Left\": 0.4922865331172943,\n                    \"Top\": 0.6446296572685242,\n                    \"Width\": 0.13453426957130432\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4922865331172943,\n                        \"Y\": 0.6446296572685242\n                    },\n                    {\n                        \"X\": 0.6268067955970764,\n                        \"Y\": 0.6447140574455261\n                    },\n                    {\n                        \"X\": 0.6268208026885986,\n                        \"Y\": 0.6828617453575134\n                    },\n                    {\n                        \"X\": 0.492297500371933,\n                        \"Y\": 0.6827760338783264\n                    }\n                ]\n            },\n            \"Id\": \"2ce8b133-b09d-438e-b738-c8a950495c7c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5486c5c7-81a1-460b-8583-10c00f99b4bc\",\n                        \"e8c600f6-516c-48bc-bd6b-f29787fca137\",\n                        \"c1b1ea86-b20d-4615-bbd1-95eb5e1fb856\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.8681640625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03825095295906067,\n                    \"Left\": 0.6268067955970764,\n                    \"Top\": 0.6447140574455261,\n                    \"Width\": 0.16197709739208221\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6268067955970764,\n                        \"Y\": 0.6447140574455261\n                    },\n                    {\n                        \"X\": 0.7887662053108215,\n                        \"Y\": 0.6448156833648682\n                    },\n                    {\n                        \"X\": 0.788783848285675,\n                        \"Y\": 0.6829650402069092\n                    },\n                    {\n                        \"X\": 0.6268208026885986,\n                        \"Y\": 0.6828617453575134\n                    }\n                ]\n            },\n            \"Id\": \"d01d807f-8ed4-420c-a86b-663a3bd63239\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"23071399-3347-4536-b90a-9a58565a3e48\",\n                        \"ac49d652-321c-49f8-aa07-f27bf0f3dbcf\",\n                        \"1dceb08e-874c-443e-84f9-3ec09b62806d\",\n                        \"e846d977-5379-45b4-b2d8-404531aa0cc6\",\n                        \"a80c2624-8373-4441-8ef8-184b9a109f70\",\n                        \"7f7dff4a-5334-4f7d-b7bb-3cb2773085d6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 8,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 27.34375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03821679204702377,\n                    \"Left\": 0.7887662053108215,\n                    \"Top\": 0.6448156833648682,\n                    \"Width\": 0.10582363605499268\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7887662053108215,\n                        \"Y\": 0.6448156833648682\n                    },\n                    {\n                        \"X\": 0.8945698142051697,\n                        \"Y\": 0.644882082939148\n                    },\n                    {\n                        \"X\": 0.8945898413658142,\n                        \"Y\": 0.6830324530601501\n                    },\n                    {\n                        \"X\": 0.788783848285675,\n                        \"Y\": 0.6829650402069092\n                    }\n                ]\n            },\n            \"Id\": \"352d6600-2423-4447-98e7-2da008a37cc2\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 9,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 29.8095703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.038194749504327774,\n                    \"Left\": 0.8945698142051697,\n                    \"Top\": 0.644882082939148,\n                    \"Width\": 0.0695645660161972\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8945698142051697,\n                        \"Y\": 0.644882082939148\n                    },\n                    {\n                        \"X\": 0.9641127586364746,\n                        \"Y\": 0.6449257135391235\n                    },\n                    {\n                        \"X\": 0.9641343355178833,\n                        \"Y\": 0.683076798915863\n                    },\n                    {\n                        \"X\": 0.8945898413658142,\n                        \"Y\": 0.6830324530601501\n                    }\n                ]\n            },\n            \"Id\": \"bc21d232-bae6-48f0-82c1-785445317527\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 46.240234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01691443659365177,\n                    \"Left\": 0.02159169688820839,\n                    \"Top\": 0.6824759244918823,\n                    \"Width\": 0.13509394228458405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02159169688820839,\n                        \"Y\": 0.6824759244918823\n                    },\n                    {\n                        \"X\": 0.15668413043022156,\n                        \"Y\": 0.6825620532035828\n                    },\n                    {\n                        \"X\": 0.15668563544750214,\n                        \"Y\": 0.6993904113769531\n                    },\n                    {\n                        \"X\": 0.02159186080098152,\n                        \"Y\": 0.6993036866188049\n                    }\n                ]\n            },\n            \"Id\": \"03e2e44e-65ea-4672-b3a9-b10218c08091\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"21967552-743a-48a1-b1d6-ef7a3f748dd1\",\n                        \"5f078e06-ce86-47d2-b32e-1486b5615076\",\n                        \"a30afe4d-e244-4744-bc00-da22f81a8146\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 46.2158203125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016933102160692215,\n                    \"Left\": 0.15668413043022156,\n                    \"Top\": 0.6825620532035828,\n                    \"Width\": 0.163231760263443\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15668413043022156,\n                        \"Y\": 0.6825620532035828\n                    },\n                    {\n                        \"X\": 0.31991276144981384,\n                        \"Y\": 0.6826661229133606\n                    },\n                    {\n                        \"X\": 0.31991589069366455,\n                        \"Y\": 0.6994951963424683\n                    },\n                    {\n                        \"X\": 0.15668563544750214,\n                        \"Y\": 0.6993904113769531\n                    }\n                ]\n            },\n            \"Id\": \"fa110784-b2bb-4c69-a3cd-6c491bba03d6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7fffa2c2-9061-43d8-950b-38a6cb1b76c5\",\n                        \"a670e9dc-5c3e-4e4e-b79c-0f02123c2444\",\n                        \"4d997719-3c22-4b3d-a89b-7a3f6016ad80\",\n                        \"fdcc3e16-4e41-4a69-a308-091532ff397d\",\n                        \"6fd77af1-9cd3-424d-8058-6193774a6ab5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.34375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016839105635881424,\n                    \"Left\": 0.31991276144981384,\n                    \"Top\": 0.6826661229133606,\n                    \"Width\": 0.015673978254199028\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31991276144981384,\n                        \"Y\": 0.6826661229133606\n                    },\n                    {\n                        \"X\": 0.3355834484100342,\n                        \"Y\": 0.6826761364936829\n                    },\n                    {\n                        \"X\": 0.3355867266654968,\n                        \"Y\": 0.6995052099227905\n                    },\n                    {\n                        \"X\": 0.31991589069366455,\n                        \"Y\": 0.6994951963424683\n                    }\n                ]\n            },\n            \"Id\": \"b91ee8c4-7dcc-41b3-9c17-94a6a835c91b\",\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 52.34375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016886960715055466,\n                    \"Left\": 0.3355834484100342,\n                    \"Top\": 0.6826761364936829,\n                    \"Width\": 0.09011317789554596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3355834484100342,\n                        \"Y\": 0.6826761364936829\n                    },\n                    {\n                        \"X\": 0.42569243907928467,\n                        \"Y\": 0.6827335357666016\n                    },\n                    {\n                        \"X\": 0.42569661140441895,\n                        \"Y\": 0.6995630860328674\n                    },\n                    {\n                        \"X\": 0.3355867266654968,\n                        \"Y\": 0.6995052099227905\n                    }\n                ]\n            },\n            \"Id\": \"585e154c-1e6a-48ce-9f70-9f83da7faefb\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e747b370-af9d-4872-b348-8f1618cf4f4a\",\n                        \"bc9c3727-be46-4e34-bc24-4694352feed4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 39.6484375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01687227562069893,\n                    \"Left\": 0.42569243907928467,\n                    \"Top\": 0.6827335357666016,\n                    \"Width\": 0.06660991162061691\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42569243907928467,\n                        \"Y\": 0.6827335357666016\n                    },\n                    {\n                        \"X\": 0.492297500371933,\n                        \"Y\": 0.6827760338783264\n                    },\n                    {\n                        \"X\": 0.4923023581504822,\n                        \"Y\": 0.6996058225631714\n                    },\n                    {\n                        \"X\": 0.42569661140441895,\n                        \"Y\": 0.6995630860328674\n                    }\n                ]\n            },\n            \"Id\": \"b37ba154-757a-472c-a1b8-1797901b51b5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7fc4a198-6e82-45a0-a9c9-6930f8e0c0b5\",\n                        \"184ec93a-965f-4369-9773-c1588f0923d3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 45.0927734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016916172578930855,\n                    \"Left\": 0.492297500371933,\n                    \"Top\": 0.6827760338783264,\n                    \"Width\": 0.1345294713973999\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.492297500371933,\n                        \"Y\": 0.6827760338783264\n                    },\n                    {\n                        \"X\": 0.6268208026885986,\n                        \"Y\": 0.6828617453575134\n                    },\n                    {\n                        \"X\": 0.6268270015716553,\n                        \"Y\": 0.6996921896934509\n                    },\n                    {\n                        \"X\": 0.4923023581504822,\n                        \"Y\": 0.6996058225631714\n                    }\n                ]\n            },\n            \"Id\": \"160160ce-ff8f-4cec-b291-5d9dcdc9d13d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"86d71ba5-bce6-4eac-8f4c-3cc23b36d8e2\",\n                        \"37ef699c-5c14-4467-a0a7-feb4d324487b\",\n                        \"7b5b2457-7e12-4ef7-8838-960ec10b23b3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 46.9482421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016934389248490334,\n                    \"Left\": 0.6268208026885986,\n                    \"Top\": 0.6828617453575134,\n                    \"Width\": 0.16197086870670319\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6268208026885986,\n                        \"Y\": 0.6828617453575134\n                    },\n                    {\n                        \"X\": 0.788783848285675,\n                        \"Y\": 0.6829650402069092\n                    },\n                    {\n                        \"X\": 0.7887916564941406,\n                        \"Y\": 0.6997961401939392\n                    },\n                    {\n                        \"X\": 0.6268270015716553,\n                        \"Y\": 0.6996921896934509\n                    }\n                ]\n            },\n            \"Id\": \"8bd59e14-3ab6-41b2-9b31-c9bfeab1c2b5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4c87574e-15d4-4f70-b7a0-c4d390170f25\",\n                        \"91be6586-7695-4835-a4b6-b0f83f74fd0b\",\n                        \"9458017c-5c2b-438b-9c93-acd34e5efaa9\",\n                        \"71dc1374-b943-45a4-994f-87bc39e332ec\",\n                        \"2e6f8ed5-68d2-4457-b744-1826c60491a7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 8,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 32.2021484375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01689906232059002,\n                    \"Left\": 0.788783848285675,\n                    \"Top\": 0.6829650402069092,\n                    \"Width\": 0.10581481456756592\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.788783848285675,\n                        \"Y\": 0.6829650402069092\n                    },\n                    {\n                        \"X\": 0.8945898413658142,\n                        \"Y\": 0.6830324530601501\n                    },\n                    {\n                        \"X\": 0.894598662853241,\n                        \"Y\": 0.6998640894889832\n                    },\n                    {\n                        \"X\": 0.7887916564941406,\n                        \"Y\": 0.6997961401939392\n                    }\n                ]\n            },\n            \"Id\": \"dc474583-720f-4d22-8acc-63ccb42f6be6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d80dc99f-2a68-463d-ad64-04f84934cc16\",\n                        \"dbdf48d7-61c6-4537-866a-4df9ba228d7e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 9,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 35.107421875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016876256093382835,\n                    \"Left\": 0.8945898413658142,\n                    \"Top\": 0.6830324530601501,\n                    \"Width\": 0.06955405324697495\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8945898413658142,\n                        \"Y\": 0.6830324530601501\n                    },\n                    {\n                        \"X\": 0.9641343355178833,\n                        \"Y\": 0.683076798915863\n                    },\n                    {\n                        \"X\": 0.9641438722610474,\n                        \"Y\": 0.6999087333679199\n                    },\n                    {\n                        \"X\": 0.894598662853241,\n                        \"Y\": 0.6998640894889832\n                    }\n                ]\n            },\n            \"Id\": \"76a9d62a-042a-4023-a1ae-5371e395fb07\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5a9943c9-49cd-4df2-9a80-7e4adde28972\",\n                        \"876fc3f6-9aac-4dbd-bf52-5294efb0ac3d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 48.6572265625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02101384848356247,\n                    \"Left\": 0.02159186080098152,\n                    \"Top\": 0.6993036866188049,\n                    \"Width\": 0.13509565591812134\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02159186080098152,\n                        \"Y\": 0.6993036866188049\n                    },\n                    {\n                        \"X\": 0.15668563544750214,\n                        \"Y\": 0.6993904113769531\n                    },\n                    {\n                        \"X\": 0.15668751299381256,\n                        \"Y\": 0.720317542552948\n                    },\n                    {\n                        \"X\": 0.021592063829302788,\n                        \"Y\": 0.7202300429344177\n                    }\n                ]\n            },\n            \"Id\": \"e30d31d7-9f7a-42d0-ab84-5b92bc2429bb\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"957ea42a-0c89-4cb6-a8f7-902184f627ba\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 48.6083984375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02103281579911709,\n                    \"Left\": 0.15668563544750214,\n                    \"Top\": 0.6993904113769531,\n                    \"Width\": 0.163234144449234\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15668563544750214,\n                        \"Y\": 0.6993904113769531\n                    },\n                    {\n                        \"X\": 0.31991589069366455,\n                        \"Y\": 0.6994951963424683\n                    },\n                    {\n                        \"X\": 0.31991976499557495,\n                        \"Y\": 0.7204232215881348\n                    },\n                    {\n                        \"X\": 0.15668751299381256,\n                        \"Y\": 0.720317542552948\n                    }\n                ]\n            },\n            \"Id\": \"69d85b82-dda3-4e32-882d-12443a53b990\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ecda1df9-6957-4f38-8677-4d91b6704edc\",\n                        \"55e35b5d-0d40-4660-917d-e5de345df8f3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021327421069145203,\n                    \"Left\": 0.31991589069366455,\n                    \"Top\": 0.6994951963424683,\n                    \"Width\": 0.015675010159611702\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31991589069366455,\n                        \"Y\": 0.6994951963424683\n                    },\n                    {\n                        \"X\": 0.3355867266654968,\n                        \"Y\": 0.6995052099227905\n                    },\n                    {\n                        \"X\": 0.3355908989906311,\n                        \"Y\": 0.7208225727081299\n                    },\n                    {\n                        \"X\": 0.3199198544025421,\n                        \"Y\": 0.7208124399185181\n                    }\n                ]\n            },\n            \"Id\": \"6ed41ec9-d660-4739-8dff-ef273252687a\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 53.125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021375715732574463,\n                    \"Left\": 0.3355867266654968,\n                    \"Top\": 0.6995052099227905,\n                    \"Width\": 0.09011518955230713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3355867266654968,\n                        \"Y\": 0.6995052099227905\n                    },\n                    {\n                        \"X\": 0.42569661140441895,\n                        \"Y\": 0.6995630860328674\n                    },\n                    {\n                        \"X\": 0.42570191621780396,\n                        \"Y\": 0.720880925655365\n                    },\n                    {\n                        \"X\": 0.3355908989906311,\n                        \"Y\": 0.7208225727081299\n                    }\n                ]\n            },\n            \"Id\": \"fd499574-a8f1-493b-8d67-6358d2a6d52e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e52cfe5e-f7e6-4aa6-ae77-1931c7a5a38d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 5,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 41.7236328125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020971747115254402,\n                    \"Left\": 0.42569661140441895,\n                    \"Top\": 0.6995630860328674,\n                    \"Width\": 0.06661175191402435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42569661140441895,\n                        \"Y\": 0.6995630860328674\n                    },\n                    {\n                        \"X\": 0.4923023581504822,\n                        \"Y\": 0.6996058225631714\n                    },\n                    {\n                        \"X\": 0.4923083782196045,\n                        \"Y\": 0.7205348014831543\n                    },\n                    {\n                        \"X\": 0.4257018268108368,\n                        \"Y\": 0.7204917073249817\n                    }\n                ]\n            },\n            \"Id\": \"3257d406-5a52-449e-9a14-1c05464252c5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4f5ac4bc-0071-4200-a1d1-5747feefe542\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 6,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 47.4365234375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.021016092970967293,\n                    \"Left\": 0.4923023581504822,\n                    \"Top\": 0.6996058225631714,\n                    \"Width\": 0.13453231751918793\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4923023581504822,\n                        \"Y\": 0.6996058225631714\n                    },\n                    {\n                        \"X\": 0.6268270015716553,\n                        \"Y\": 0.6996921896934509\n                    },\n                    {\n                        \"X\": 0.6268346905708313,\n                        \"Y\": 0.7206219434738159\n                    },\n                    {\n                        \"X\": 0.4923083782196045,\n                        \"Y\": 0.7205348014831543\n                    }\n                ]\n            },\n            \"Id\": \"7adc3af7-29b4-4370-acf2-c44679224029\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e63d4318-3b48-45c7-b1b9-b5c20398a1c1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 7,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.4140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02103460766375065,\n                    \"Left\": 0.6268270015716553,\n                    \"Top\": 0.6996921896934509,\n                    \"Width\": 0.16197438538074493\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6268270015716553,\n                        \"Y\": 0.6996921896934509\n                    },\n                    {\n                        \"X\": 0.7887916564941406,\n                        \"Y\": 0.6997961401939392\n                    },\n                    {\n                        \"X\": 0.788801372051239,\n                        \"Y\": 0.7207267880439758\n                    },\n                    {\n                        \"X\": 0.6268346905708313,\n                        \"Y\": 0.7206219434738159\n                    }\n                ]\n            },\n            \"Id\": \"3abda5e6-0d39-4d70-9186-0d36d2d64a3f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"acb1b2cd-9848-4cb2-93f8-30d8d03f3ca3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 8,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 33.88671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02099914476275444,\n                    \"Left\": 0.7887916564941406,\n                    \"Top\": 0.6997961401939392,\n                    \"Width\": 0.10581802576780319\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7887916564941406,\n                        \"Y\": 0.6997961401939392\n                    },\n                    {\n                        \"X\": 0.894598662853241,\n                        \"Y\": 0.6998640894889832\n                    },\n                    {\n                        \"X\": 0.8946096897125244,\n                        \"Y\": 0.7207953333854675\n                    },\n                    {\n                        \"X\": 0.788801372051239,\n                        \"Y\": 0.7207267880439758\n                    }\n                ]\n            },\n            \"Id\": \"724ad0f6-0df9-451f-ba3f-1f745f83b0fa\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"25138754-290c-42e7-9481-c14b2843767d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 9,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 36.9384765625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020976252853870392,\n                    \"Left\": 0.894598662853241,\n                    \"Top\": 0.6998640894889832,\n                    \"Width\": 0.0695570707321167\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.894598662853241,\n                        \"Y\": 0.6998640894889832\n                    },\n                    {\n                        \"X\": 0.9641438722610474,\n                        \"Y\": 0.6999087333679199\n                    },\n                    {\n                        \"X\": 0.9641557335853577,\n                        \"Y\": 0.720840334892273\n                    },\n                    {\n                        \"X\": 0.8946096897125244,\n                        \"Y\": 0.7207953333854675\n                    }\n                ]\n            },\n            \"Id\": \"9a3a7de7-b0b5-4026-ae38-1acc35af2999\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3493e480-ce00-4d92-b437-40b64bf4354e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 52.34375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01689695194363594,\n                    \"Left\": 0.31991276144981384,\n                    \"Top\": 0.6826661229133606,\n                    \"Width\": 0.1057838723063469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31991276144981384,\n                        \"Y\": 0.6826661229133606\n                    },\n                    {\n                        \"X\": 0.42569243907928467,\n                        \"Y\": 0.6827335357666016\n                    },\n                    {\n                        \"X\": 0.42569661140441895,\n                        \"Y\": 0.6995630860328674\n                    },\n                    {\n                        \"X\": 0.31991589069366455,\n                        \"Y\": 0.6994951963424683\n                    }\n                ]\n            },\n            \"Id\": \"d7d2f3de-f57b-45db-be8a-2c841639006a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b91ee8c4-7dcc-41b3-9c17-94a6a835c91b\",\n                        \"585e154c-1e6a-48ce-9f70-9f83da7faefb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 53.125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.020996524021029472,\n                    \"Left\": 0.31991589069366455,\n                    \"Top\": 0.6994951963424683,\n                    \"Width\": 0.10578594356775284\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31991589069366455,\n                        \"Y\": 0.6994951963424683\n                    },\n                    {\n                        \"X\": 0.42569661140441895,\n                        \"Y\": 0.6995630860328674\n                    },\n                    {\n                        \"X\": 0.4257018268108368,\n                        \"Y\": 0.7204917073249817\n                    },\n                    {\n                        \"X\": 0.31991976499557495,\n                        \"Y\": 0.7204232215881348\n                    }\n                ]\n            },\n            \"Id\": \"67d7a08e-ba6e-4589-b523-b2f17b5c91fc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6ed41ec9-d660-4739-8dff-ef273252687a\",\n                        \"fd499574-a8f1-493b-8d67-6358d2a6d52e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 83.0078125,\n            \"EntityTypes\": [\n                \"SEMI_STRUCTURED_TABLE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.09217438846826553,\n                    \"Left\": 0.018150927498936653,\n                    \"Top\": 0.9074889421463013,\n                    \"Width\": 0.9442838430404663\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018150927498936653,\n                        \"Y\": 0.9074889421463013\n                    },\n                    {\n                        \"X\": 0.9623830318450928,\n                        \"Y\": 0.9081471562385559\n                    },\n                    {\n                        \"X\": 0.9624347686767578,\n                        \"Y\": 0.9996632933616638\n                    },\n                    {\n                        \"X\": 0.018151631578803062,\n                        \"Y\": 0.9989821314811707\n                    }\n                ]\n            },\n            \"Id\": \"b39e55f9-de9f-41a0-97a3-2d98e270b545\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fed6b0f7-a3e7-4ec7-9d35-5db91e58adca\",\n                        \"583476ee-80ce-4a11-a312-488346ff24a7\",\n                        \"d7e771b0-8e1c-4deb-96d3-34c8b4de1415\",\n                        \"866ef1ac-ef9b-4142-8364-2d72bf9da557\",\n                        \"ef7584e8-3e5b-4ad5-98d0-721f2a253cad\",\n                        \"181dcbfa-e259-433e-bd90-26e0ba103989\",\n                        \"0b0daaa8-8688-44f8-833a-690c369b98a8\",\n                        \"aa837895-e345-4ff1-aec5-ad8619a1b117\",\n                        \"7d89adc0-8bcf-4a45-abdd-c738200baa67\",\n                        \"151d3603-0865-4d37-839f-84796616e82b\",\n                        \"0cc364aa-48a6-4c10-b596-d8821d8e7835\",\n                        \"59f162bb-cebc-4ad9-8d06-e76e7e04da7f\",\n                        \"39db84a5-8020-4c7a-b6f7-56e915ff31ad\",\n                        \"98bacbd7-5003-44a2-8130-987d0ed286a1\",\n                        \"98131698-02a7-4841-b2ec-31d335d17e5d\",\n                        \"02246d01-6d95-4b85-9617-b867b82a50df\"\n                    ],\n                    \"Type\": \"CHILD\"\n                },\n                {\n                    \"Ids\": [\n                        \"66b83955-9d6b-4e36-8735-16a435b5cef1\",\n                        \"3ebbbf69-6136-42fa-bca6-7a1c05cb6b49\",\n                        \"bc157734-7e78-4c8d-9229-9759cca6bef3\",\n                        \"dc5f255f-d219-44bc-b52d-d8be28630eec\"\n                    ],\n                    \"Type\": \"MERGED_CELL\"\n                },\n                {\n                    \"Ids\": [\n                        \"a780148b-b176-48f1-99b1-5680c6933c86\"\n                    ],\n                    \"Type\": \"TABLE_TITLE\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 35.44921875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017533106729388237,\n                    \"Left\": 0.018150927498936653,\n                    \"Top\": 0.9074889421463013,\n                    \"Width\": 0.28090986609458923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018150927498936653,\n                        \"Y\": 0.9074889421463013\n                    },\n                    {\n                        \"X\": 0.2990577816963196,\n                        \"Y\": 0.9076847434043884\n                    },\n                    {\n                        \"X\": 0.29906079173088074,\n                        \"Y\": 0.9250220060348511\n                    },\n                    {\n                        \"X\": 0.018151061609387398,\n                        \"Y\": 0.9248248934745789\n                    }\n                ]\n            },\n            \"Id\": \"fed6b0f7-a3e7-4ec7-9d35-5db91e58adca\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"99b568ec-2110-447c-ad05-b52ea042ab22\",\n                        \"8ac2a45e-69d8-4d59-9513-c2eabaf9e8e0\",\n                        \"428951fd-2275-4b9e-86b0-1afe1d0c108c\",\n                        \"55173c4e-c513-40aa-96e5-7be5952b1d4e\",\n                        \"a7ceac34-aa1f-423c-9361-7d1898ee2a20\",\n                        \"75ba1fc4-a812-4bcc-beb1-a1e2f22e7dd5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 29.052734375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017472928389906883,\n                    \"Left\": 0.2990577816963196,\n                    \"Top\": 0.9076847434043884,\n                    \"Width\": 0.1933095008134842\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990577816963196,\n                        \"Y\": 0.9076847434043884\n                    },\n                    {\n                        \"X\": 0.49236229062080383,\n                        \"Y\": 0.9078195095062256\n                    },\n                    {\n                        \"X\": 0.49236729741096497,\n                        \"Y\": 0.9251576662063599\n                    },\n                    {\n                        \"X\": 0.29906079173088074,\n                        \"Y\": 0.9250220060348511\n                    }\n                ]\n            },\n            \"Id\": \"583476ee-80ce-4a11-a312-488346ff24a7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d6533676-99c9-4757-85f4-fccf2c79339a\",\n                        \"0d1a354a-9537-4e2a-9719-c4c1c7a005ff\",\n                        \"082c43e6-e36c-4c07-9ddd-7c793aa0430d\",\n                        \"f7c79fc0-af5e-4cb6-809f-a1b6664f2c6d\",\n                        \"bf584e26-59bd-4191-9604-e97850e08007\",\n                        \"42c81ab3-aabb-4bea-b9d8-919d5480d1b3\",\n                        \"d9b93050-31f7-433e-be80-105ea3bd9567\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 44.1162109375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01753249764442444,\n                    \"Left\": 0.49236229062080383,\n                    \"Top\": 0.9078195095062256,\n                    \"Width\": 0.27693799138069153\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49236229062080383,\n                        \"Y\": 0.9078195095062256\n                    },\n                    {\n                        \"X\": 0.7692924737930298,\n                        \"Y\": 0.9080125689506531\n                    },\n                    {\n                        \"X\": 0.7693002820014954,\n                        \"Y\": 0.9253519773483276\n                    },\n                    {\n                        \"X\": 0.49236729741096497,\n                        \"Y\": 0.9251576662063599\n                    }\n                ]\n            },\n            \"Id\": \"d7e771b0-8e1c-4deb-96d3-34c8b4de1415\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a2ba5ef2-e6d6-4146-9a10-0e4edc546441\",\n                        \"5f6125ab-69aa-46f0-b13c-4828cd1b6ef4\",\n                        \"36519308-af01-418c-b4bc-d07da38f2d2c\",\n                        \"e2736f86-3661-4522-8021-9480ed621ada\",\n                        \"2d9b2a9c-0d4b-4b46-8483-a563dc137850\",\n                        \"b9cdbfea-adff-4b7d-9233-29afccb381e7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 29.6142578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017474941909313202,\n                    \"Left\": 0.7692924737930298,\n                    \"Top\": 0.9080125689506531,\n                    \"Width\": 0.19310037791728973\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7692924737930298,\n                        \"Y\": 0.9080125689506531\n                    },\n                    {\n                        \"X\": 0.9623830318450928,\n                        \"Y\": 0.9081471562385559\n                    },\n                    {\n                        \"X\": 0.9623928070068359,\n                        \"Y\": 0.9254874587059021\n                    },\n                    {\n                        \"X\": 0.7693002820014954,\n                        \"Y\": 0.9253519773483276\n                    }\n                ]\n            },\n            \"Id\": \"866ef1ac-ef9b-4142-8364-2d72bf9da557\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"27166460-8966-41a7-8b3a-e69daf82a455\",\n                        \"ac011333-2403-43c4-86cc-49aa6271e9b8\",\n                        \"592efa83-d41d-4792-bbca-249a12498a5b\",\n                        \"23480943-6636-4560-a541-4856d5930669\",\n                        \"d1855a31-ec03-4617-88b9-df0a828a9ad0\",\n                        \"37c697b1-067b-4f61-a6b7-3c673a3a90ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 1,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 46.19140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0383540578186512,\n                    \"Left\": 0.018279198557138443,\n                    \"Top\": 0.9248250126838684,\n                    \"Width\": 0.28078821301460266\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018279198557138443,\n                        \"Y\": 0.9248250126838684\n                    },\n                    {\n                        \"X\": 0.29906079173088074,\n                        \"Y\": 0.9250220060348511\n                    },\n                    {\n                        \"X\": 0.2990674376487732,\n                        \"Y\": 0.9631790518760681\n                    },\n                    {\n                        \"X\": 0.01827949471771717,\n                        \"Y\": 0.9629791975021362\n                    }\n                ]\n            },\n            \"Id\": \"ef7584e8-3e5b-4ad5-98d0-721f2a253cad\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9e354791-22a8-4ac8-aa38-0d016556fdcc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 46.19140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03829463571310043,\n                    \"Left\": 0.29906079173088074,\n                    \"Top\": 0.9250220060348511,\n                    \"Width\": 0.1933174878358841\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.29906079173088074,\n                        \"Y\": 0.9250220060348511\n                    },\n                    {\n                        \"X\": 0.49236729741096497,\n                        \"Y\": 0.9251576662063599\n                    },\n                    {\n                        \"X\": 0.49237826466560364,\n                        \"Y\": 0.9633166790008545\n                    },\n                    {\n                        \"X\": 0.2990674376487732,\n                        \"Y\": 0.9631790518760681\n                    }\n                ]\n            },\n            \"Id\": \"181dcbfa-e259-433e-bd90-26e0ba103989\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.70703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03835611790418625,\n                    \"Left\": 0.49236729741096497,\n                    \"Top\": 0.9251576662063599,\n                    \"Width\": 0.2769502103328705\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49236729741096497,\n                        \"Y\": 0.9251576662063599\n                    },\n                    {\n                        \"X\": 0.7693002820014954,\n                        \"Y\": 0.9253519773483276\n                    },\n                    {\n                        \"X\": 0.7693175077438354,\n                        \"Y\": 0.9635137915611267\n                    },\n                    {\n                        \"X\": 0.49237826466560364,\n                        \"Y\": 0.9633166790008545\n                    }\n                ]\n            },\n            \"Id\": \"0b0daaa8-8688-44f8-833a-690c369b98a8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0e8d85a4-e8e0-442a-aa97-cbc8c0168c86\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 49.70703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.038299430161714554,\n                    \"Left\": 0.7693002820014954,\n                    \"Top\": 0.9253519773483276,\n                    \"Width\": 0.19337625801563263\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7693002820014954,\n                        \"Y\": 0.9253519773483276\n                    },\n                    {\n                        \"X\": 0.9626549482345581,\n                        \"Y\": 0.9254876971244812\n                    },\n                    {\n                        \"X\": 0.9626765251159668,\n                        \"Y\": 0.9636514186859131\n                    },\n                    {\n                        \"X\": 0.7693175077438354,\n                        \"Y\": 0.9635137915611267\n                    }\n                ]\n            },\n            \"Id\": \"aa837895-e345-4ff1-aec5-ad8619a1b117\",\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 23.81591796875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017034489661455154,\n                    \"Left\": 0.018151354044675827,\n                    \"Top\": 0.9629791378974915,\n                    \"Width\": 0.28091898560523987\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018151354044675827,\n                        \"Y\": 0.9629791378974915\n                    },\n                    {\n                        \"X\": 0.2990674376487732,\n                        \"Y\": 0.9631790518760681\n                    },\n                    {\n                        \"X\": 0.2990703582763672,\n                        \"Y\": 0.9800136089324951\n                    },\n                    {\n                        \"X\": 0.018151484429836273,\n                        \"Y\": 0.9798123836517334\n                    }\n                ]\n            },\n            \"Id\": \"7d89adc0-8bcf-4a45-abdd-c738200baa67\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"967719f9-169f-4657-b188-c1f407f23907\",\n                        \"971b6f97-64da-44eb-bdf7-a4588f6be68d\",\n                        \"1a5ea90c-1468-419f-b915-d9f825bfa002\",\n                        \"b05e647e-7ea3-4d88-8804-63b184668da1\",\n                        \"3f577aff-e6da-4c13-8a93-b779657487c2\",\n                        \"bb96b806-0e7a-424c-961d-a5b740764c21\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 19.51904296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.016972996294498444,\n                    \"Left\": 0.2990674376487732,\n                    \"Top\": 0.9631790518760681,\n                    \"Width\": 0.19331569969654083\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990674376487732,\n                        \"Y\": 0.9631790518760681\n                    },\n                    {\n                        \"X\": 0.49237826466560364,\n                        \"Y\": 0.9633166790008545\n                    },\n                    {\n                        \"X\": 0.49238312244415283,\n                        \"Y\": 0.9801520705223083\n                    },\n                    {\n                        \"X\": 0.2990703582763672,\n                        \"Y\": 0.9800136089324951\n                    }\n                ]\n            },\n            \"Id\": \"151d3603-0865-4d37-839f-84796616e82b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6f5df22a-0d8e-424d-aed8-a055b3ae301b\",\n                        \"36d01d28-c03a-45b1-a2a4-64b1f82ce196\",\n                        \"68a50f60-cb75-49be-96a9-ce849ca2befa\",\n                        \"8c31db0b-4fe8-4c28-8451-f1fff5142ca7\",\n                        \"0c7f88c9-b7e8-4c16-84a4-98ac9c045a6e\",\n                        \"ecbcecbb-c75f-473c-8430-1de2845e2ace\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 29.638671875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017033761367201805,\n                    \"Left\": 0.49237826466560364,\n                    \"Top\": 0.9633166790008545,\n                    \"Width\": 0.2769468426704407\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49237826466560364,\n                        \"Y\": 0.9633166790008545\n                    },\n                    {\n                        \"X\": 0.7693175077438354,\n                        \"Y\": 0.9635137915611267\n                    },\n                    {\n                        \"X\": 0.7693251371383667,\n                        \"Y\": 0.9803504347801208\n                    },\n                    {\n                        \"X\": 0.49238312244415283,\n                        \"Y\": 0.9801520705223083\n                    }\n                ]\n            },\n            \"Id\": \"0cc364aa-48a6-4c10-b596-d8821d8e7835\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb843082-d4bb-4f4e-9697-345ad473aee2\",\n                        \"dae87968-e58f-4b17-953e-d0c3ee871db3\",\n                        \"38a2e9e5-86ba-4a02-8c4b-acb356a08d39\",\n                        \"5385ca25-a024-4fe7-9c87-b3fa1bbd3f25\",\n                        \"0849d0d3-3653-43c3-b9df-8adb3783d0fb\",\n                        \"e3624bb0-137f-46ce-982b-f278225a666d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 19.8974609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01697494462132454,\n                    \"Left\": 0.7693175077438354,\n                    \"Top\": 0.9635137915611267,\n                    \"Width\": 0.19310642778873444\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7693175077438354,\n                        \"Y\": 0.9635137915611267\n                    },\n                    {\n                        \"X\": 0.9624144434928894,\n                        \"Y\": 0.9636512398719788\n                    },\n                    {\n                        \"X\": 0.9624239206314087,\n                        \"Y\": 0.9804887175559998\n                    },\n                    {\n                        \"X\": 0.7693251371383667,\n                        \"Y\": 0.9803504347801208\n                    }\n                ]\n            },\n            \"Id\": \"59f162bb-cebc-4ad9-8d06-e76e7e04da7f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"70a070f8-ece5-431b-9d77-ef71320e7f20\",\n                        \"0f69a018-971b-4260-af05-5cf0b8267dcb\",\n                        \"f223f153-5bea-4c2b-bde5-442e7f4f0d1c\",\n                        \"0fe7181d-e5f8-42ad-93e7-0d99875b70c1\",\n                        \"24ddf385-6209-4d9b-b626-4ce31d43147a\",\n                        \"665b7e4f-91da-4bc1-8964-0257ee4119c8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 3,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 34.1064453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01928066276013851,\n                    \"Left\": 0.018279625102877617,\n                    \"Top\": 0.979812502861023,\n                    \"Width\": 0.28079402446746826\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018279625102877617,\n                        \"Y\": 0.979812502861023\n                    },\n                    {\n                        \"X\": 0.2990703582763672,\n                        \"Y\": 0.9800136089324951\n                    },\n                    {\n                        \"X\": 0.2990736663341522,\n                        \"Y\": 0.9990931153297424\n                    },\n                    {\n                        \"X\": 0.018279774114489555,\n                        \"Y\": 0.9988905787467957\n                    }\n                ]\n            },\n            \"Id\": \"39db84a5-8020-4c7a-b6f7-56e915ff31ad\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6b094c95-7c93-440a-b2f7-3659d0a26bbd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 2,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 34.1064453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.019218984991312027,\n                    \"Left\": 0.2990703582763672,\n                    \"Top\": 0.9800136089324951,\n                    \"Width\": 0.19331827759742737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2990703582763672,\n                        \"Y\": 0.9800136089324951\n                    },\n                    {\n                        \"X\": 0.49238312244415283,\n                        \"Y\": 0.9801520705223083\n                    },\n                    {\n                        \"X\": 0.49238860607147217,\n                        \"Y\": 0.9992325901985168\n                    },\n                    {\n                        \"X\": 0.2990736663341522,\n                        \"Y\": 0.9990931153297424\n                    }\n                ]\n            },\n            \"Id\": \"98bacbd7-5003-44a2-8130-987d0ed286a1\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 33.935546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.019280286505818367,\n                    \"Left\": 0.49238312244415283,\n                    \"Top\": 0.9801520705223083,\n                    \"Width\": 0.2769505977630615\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49238312244415283,\n                        \"Y\": 0.9801520705223083\n                    },\n                    {\n                        \"X\": 0.7693251371383667,\n                        \"Y\": 0.9803504347801208\n                    },\n                    {\n                        \"X\": 0.7693337202072144,\n                        \"Y\": 0.9994323253631592\n                    },\n                    {\n                        \"X\": 0.49238860607147217,\n                        \"Y\": 0.9992325901985168\n                    }\n                ]\n            },\n            \"Id\": \"98131698-02a7-4841-b2ec-31d335d17e5d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cd97c06b-731e-4165-a7b4-8361caa05037\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"ColumnIndex\": 4,\n            \"ColumnSpan\": 1,\n            \"Confidence\": 33.935546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01922140084207058,\n                    \"Left\": 0.7693251371383667,\n                    \"Top\": 0.9803504347801208,\n                    \"Width\": 0.1933717429637909\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7693251371383667,\n                        \"Y\": 0.9803504347801208\n                    },\n                    {\n                        \"X\": 0.9626860618591309,\n                        \"Y\": 0.9804888963699341\n                    },\n                    {\n                        \"X\": 0.9626968502998352,\n                        \"Y\": 0.9995718002319336\n                    },\n                    {\n                        \"X\": 0.7693337202072144,\n                        \"Y\": 0.9994323253631592\n                    }\n                ]\n            },\n            \"Id\": \"02246d01-6d95-4b85-9617-b867b82a50df\",\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 46.19140625,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03849174827337265,\n                    \"Left\": 0.018151061609387398,\n                    \"Top\": 0.9248248934745789,\n                    \"Width\": 0.4742272198200226\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018151061609387398,\n                        \"Y\": 0.9248248934745789\n                    },\n                    {\n                        \"X\": 0.49236729741096497,\n                        \"Y\": 0.9251576662063599\n                    },\n                    {\n                        \"X\": 0.49237826466560364,\n                        \"Y\": 0.9633166790008545\n                    },\n                    {\n                        \"X\": 0.018151354044675827,\n                        \"Y\": 0.9629791378974915\n                    }\n                ]\n            },\n            \"Id\": \"66b83955-9d6b-4e36-8735-16a435b5cef1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ef7584e8-3e5b-4ad5-98d0-721f2a253cad\",\n                        \"181dcbfa-e259-433e-bd90-26e0ba103989\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 49.70703125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0384935662150383,\n                    \"Left\": 0.49236729741096497,\n                    \"Top\": 0.9251576662063599,\n                    \"Width\": 0.47004711627960205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49236729741096497,\n                        \"Y\": 0.9251576662063599\n                    },\n                    {\n                        \"X\": 0.9623928070068359,\n                        \"Y\": 0.9254874587059021\n                    },\n                    {\n                        \"X\": 0.9624144434928894,\n                        \"Y\": 0.9636512398719788\n                    },\n                    {\n                        \"X\": 0.49237826466560364,\n                        \"Y\": 0.9633166790008545\n                    }\n                ]\n            },\n            \"Id\": \"3ebbbf69-6136-42fa-bca6-7a1c05cb6b49\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0b0daaa8-8688-44f8-833a-690c369b98a8\",\n                        \"aa837895-e345-4ff1-aec5-ad8619a1b117\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 2,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 1,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 34.1064453125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.019511856138706207,\n                    \"Left\": 0.018151484429836273,\n                    \"Top\": 0.9798123836517334,\n                    \"Width\": 0.4742371737957001\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.018151484429836273,\n                        \"Y\": 0.9798123836517334\n                    },\n                    {\n                        \"X\": 0.49238312244415283,\n                        \"Y\": 0.9801520705223083\n                    },\n                    {\n                        \"X\": 0.49238863587379456,\n                        \"Y\": 0.9993242621421814\n                    },\n                    {\n                        \"X\": 0.018151631578803062,\n                        \"Y\": 0.9989821314811707\n                    }\n                ]\n            },\n            \"Id\": \"bc157734-7e78-4c8d-9229-9759cca6bef3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"39db84a5-8020-4c7a-b6f7-56e915ff31ad\",\n                        \"98bacbd7-5003-44a2-8130-987d0ed286a1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"MERGED_CELL\",\n            \"ColumnIndex\": 3,\n            \"ColumnSpan\": 2,\n            \"Confidence\": 33.935546875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01951124705374241,\n                    \"Left\": 0.49238312244415283,\n                    \"Top\": 0.9801520705223083,\n                    \"Width\": 0.470051646232605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49238312244415283,\n                        \"Y\": 0.9801520705223083\n                    },\n                    {\n                        \"X\": 0.9624239206314087,\n                        \"Y\": 0.9804887175559998\n                    },\n                    {\n                        \"X\": 0.9624347686767578,\n                        \"Y\": 0.9996632933616638\n                    },\n                    {\n                        \"X\": 0.49238863587379456,\n                        \"Y\": 0.9993242621421814\n                    }\n                ]\n            },\n            \"Id\": \"dc5f255f-d219-44bc-b52d-d8be28630eec\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"98131698-02a7-4841-b2ec-31d335d17e5d\",\n                        \"02246d01-6d95-4b85-9617-b867b82a50df\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ],\n            \"RowIndex\": 4,\n            \"RowSpan\": 1\n        },\n        {\n            \"BlockType\": \"TABLE_TITLE\",\n            \"Confidence\": 67.724609375,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017717892304062843,\n                    \"Left\": 0.021587947383522987,\n                    \"Top\": 0.29716140031814575,\n                    \"Width\": 0.9423377513885498\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021587947383522987,\n                        \"Y\": 0.29716140031814575\n                    },\n                    {\n                        \"X\": 0.9639159440994263,\n                        \"Y\": 0.29766592383384705\n                    },\n                    {\n                        \"X\": 0.9639256596565247,\n                        \"Y\": 0.31487929821014404\n                    },\n                    {\n                        \"X\": 0.021588115021586418,\n                        \"Y\": 0.3143704831600189\n                    }\n                ]\n            },\n            \"Id\": \"0495ca70-705e-4a48-a424-f51c23c99a68\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"96684920-e015-487e-927a-52cd4fac0774\",\n                        \"6d8e36f7-9db2-4f78-a254-d6997bc9325e\",\n                        \"bc34a21d-c5c8-4f10-91b6-c5e2ca0660ea\",\n                        \"86fe615a-4016-4b1e-8f09-88bcf62b31de\",\n                        \"bb101227-77a1-4fa0-b903-d220e73be268\",\n                        \"931636f9-6471-4ec8-b884-57db71b33bf1\",\n                        \"0f38bd78-77f2-49cc-965c-b35f601c9ddb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"TABLE_TITLE\",\n            \"Confidence\": 67.578125,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013254966586828232,\n                    \"Left\": 0.024880189448595047,\n                    \"Top\": 0.8935014009475708,\n                    \"Width\": 0.4866165816783905\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.024880189448595047,\n                        \"Y\": 0.8935014009475708\n                    },\n                    {\n                        \"X\": 0.511492908000946,\n                        \"Y\": 0.8938388228416443\n                    },\n                    {\n                        \"X\": 0.5114967823028564,\n                        \"Y\": 0.9067564010620117\n                    },\n                    {\n                        \"X\": 0.024880340322852135,\n                        \"Y\": 0.9064173102378845\n                    }\n                ]\n            },\n            \"Id\": \"a780148b-b176-48f1-99b1-5680c6933c86\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4105af1f-7cb5-48db-8b9a-514382bad364\",\n                        \"4aeb0b21-3af9-45e5-b736-e6ae7f921f75\",\n                        \"df45759b-7bbe-4fc2-be31-df903ff6bbcb\",\n                        \"cb8e6038-6bc4-4c57-aeed-206aa13135a4\",\n                        \"5828ccb1-cc04-4486-86b0-cd54c343778d\",\n                        \"8edf7b28-faf2-4d09-88ef-7f8bc9402424\",\n                        \"29a8b945-c5bc-476c-af02-8b24fd18ba44\",\n                        \"f4796e67-5bdc-461a-a169-9ff9eb68f80e\",\n                        \"cc1687b7-de41-4166-80b0-b4bdbbf00cc4\",\n                        \"102c24fb-6ccc-4731-b7af-eb886d5bf4db\",\n                        \"9bd4d3a3-8842-4ec9-89dc-98b064ebed3f\",\n                        \"0c2806bd-515e-4f51-92bc-6b2bed604753\",\n                        \"e4709efd-da97-4d41-b6d2-53b61c69868b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.7712173461914,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009331658482551575,\n                    \"Left\": 0.24271677434444427,\n                    \"Top\": 0.3988209664821625,\n                    \"Width\": 0.07288957387208939\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24271677434444427,\n                        \"Y\": 0.3988209664821625\n                    },\n                    {\n                        \"X\": 0.31560465693473816,\n                        \"Y\": 0.39886194467544556\n                    },\n                    {\n                        \"X\": 0.31560635566711426,\n                        \"Y\": 0.40815263986587524\n                    },\n                    {\n                        \"X\": 0.24271808564662933,\n                        \"Y\": 0.40811148285865784\n                    }\n                ]\n            },\n            \"Id\": \"96690daa-5282-4d41-bc9a-7f33ec0a3b96\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d278fdde-5703-473f-b8f8-dbdd0a65ace6\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"5dd207b9-920a-4207-abd1-c6467492d060\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.7712173461914,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01240085531026125,\n                    \"Left\": 0.2229108214378357,\n                    \"Top\": 0.3963417708873749,\n                    \"Width\": 0.016010530292987823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2229108214378357,\n                        \"Y\": 0.3963417708873749\n                    },\n                    {\n                        \"X\": 0.23891963064670563,\n                        \"Y\": 0.3963507413864136\n                    },\n                    {\n                        \"X\": 0.23892134428024292,\n                        \"Y\": 0.40874260663986206\n                    },\n                    {\n                        \"X\": 0.22291241586208344,\n                        \"Y\": 0.4087335765361786\n                    }\n                ]\n            },\n            \"Id\": \"d278fdde-5703-473f-b8f8-dbdd0a65ace6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"5af37f91-5a92-4a0a-8b7d-b9044040abcd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.34361267089844,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011065096594393253,\n                    \"Left\": 0.25690868496894836,\n                    \"Top\": 0.4986865520477295,\n                    \"Width\": 0.1301843374967575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25690868496894836,\n                        \"Y\": 0.4986865520477295\n                    },\n                    {\n                        \"X\": 0.3870905339717865,\n                        \"Y\": 0.49876320362091064\n                    },\n                    {\n                        \"X\": 0.3870930075645447,\n                        \"Y\": 0.5097516775131226\n                    },\n                    {\n                        \"X\": 0.2569103240966797,\n                        \"Y\": 0.509674608707428\n                    }\n                ]\n            },\n            \"Id\": \"ded4add8-0a01-4b08-8940-a1475fbe3df3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4cd5698b-a246-4cd4-a799-174abe30e44d\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"91ce27ca-abdc-4b60-9656-9880349851cb\",\n                        \"9d110f48-3f14-401b-a903-583ddba37243\",\n                        \"ae9455fb-06bb-4657-8582-00789ccbaa8c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.34361267089844,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014295371249318123,\n                    \"Left\": 0.2567073702812195,\n                    \"Top\": 0.5242161750793457,\n                    \"Width\": 0.14815737307071686\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2567073702812195,\n                        \"Y\": 0.5242161750793457\n                    },\n                    {\n                        \"X\": 0.4048613905906677,\n                        \"Y\": 0.5243043899536133\n                    },\n                    {\n                        \"X\": 0.40486472845077515,\n                        \"Y\": 0.5385115742683411\n                    },\n                    {\n                        \"X\": 0.256709486246109,\n                        \"Y\": 0.5384227633476257\n                    }\n                ]\n            },\n            \"Id\": \"4cd5698b-a246-4cd4-a799-174abe30e44d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"86aa9e8f-dffd-48d6-a06c-b389aa547ae4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.25813293457031,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009195594117045403,\n                    \"Left\": 0.1552058905363083,\n                    \"Top\": 0.4123085141181946,\n                    \"Width\": 0.058372218161821365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1552058905363083,\n                        \"Y\": 0.4123085141181946\n                    },\n                    {\n                        \"X\": 0.21357698738574982,\n                        \"Y\": 0.41234156489372253\n                    },\n                    {\n                        \"X\": 0.21357810497283936,\n                        \"Y\": 0.42150411009788513\n                    },\n                    {\n                        \"X\": 0.15520671010017395,\n                        \"Y\": 0.4214709401130676\n                    }\n                ]\n            },\n            \"Id\": \"8af8912d-ace4-4a80-9492-5ab978a9973a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"91fc3074-079e-4964-b5a7-d32a648ded70\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"b5a909e0-559f-4751-b202-37bc622c3353\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 94.25813293457031,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012394548393785954,\n                    \"Left\": 0.1349109560251236,\n                    \"Top\": 0.4103624224662781,\n                    \"Width\": 0.016216294839978218\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1349109560251236,\n                        \"Y\": 0.4103624224662781\n                    },\n                    {\n                        \"X\": 0.1511261910200119,\n                        \"Y\": 0.4103716015815735\n                    },\n                    {\n                        \"X\": 0.15112724900245667,\n                        \"Y\": 0.42275696992874146\n                    },\n                    {\n                        \"X\": 0.13491190969944,\n                        \"Y\": 0.42274776101112366\n                    }\n                ]\n            },\n            \"Id\": \"91fc3074-079e-4964-b5a7-d32a648ded70\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0412f623-10f8-4627-a739-57eea97dae7f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.91536712646484,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009121363051235676,\n                    \"Left\": 0.38946548104286194,\n                    \"Top\": 0.9118856191635132,\n                    \"Width\": 0.02672102488577366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38946548104286194,\n                        \"Y\": 0.9118856191635132\n                    },\n                    {\n                        \"X\": 0.41618427634239197,\n                        \"Y\": 0.9119042754173279\n                    },\n                    {\n                        \"X\": 0.41618648171424866,\n                        \"Y\": 0.921006977558136\n                    },\n                    {\n                        \"X\": 0.3894675374031067,\n                        \"Y\": 0.9209882616996765\n                    }\n                ]\n            },\n            \"Id\": \"b6d7aa7b-783f-4b96-9809-bced990920be\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7e83d9f2-1b7d-460d-b939-4f0d71717463\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"bf584e26-59bd-4191-9604-e97850e08007\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.91536712646484,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012474115937948227,\n                    \"Left\": 0.3691597580909729,\n                    \"Top\": 0.9102669954299927,\n                    \"Width\": 0.015893397852778435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3691597580909729,\n                        \"Y\": 0.9102669954299927\n                    },\n                    {\n                        \"X\": 0.38505038619041443,\n                        \"Y\": 0.9102780818939209\n                    },\n                    {\n                        \"X\": 0.3850531578063965,\n                        \"Y\": 0.9227411150932312\n                    },\n                    {\n                        \"X\": 0.3691624402999878,\n                        \"Y\": 0.9227299690246582\n                    }\n                ]\n            },\n            \"Id\": \"7e83d9f2-1b7d-460d-b939-4f0d71717463\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d6533676-99c9-4757-85f4-fccf2c79339a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.82386016845703,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009403466247022152,\n                    \"Left\": 0.15502722561359406,\n                    \"Top\": 0.39881792664527893,\n                    \"Width\": 0.05496900901198387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15502722561359406,\n                        \"Y\": 0.39881792664527893\n                    },\n                    {\n                        \"X\": 0.2099951058626175,\n                        \"Y\": 0.39884886145591736\n                    },\n                    {\n                        \"X\": 0.20999623835086823,\n                        \"Y\": 0.40822139382362366\n                    },\n                    {\n                        \"X\": 0.1550280600786209,\n                        \"Y\": 0.40819036960601807\n                    }\n                ]\n            },\n            \"Id\": \"9cf9387f-493b-4bcc-aba0-c2bcef3ebdfa\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c772f137-d8ea-47a3-a965-64993de930a7\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"d10c380e-912c-4272-8680-0d3fba458e05\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.82386016845703,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012587415985763073,\n                    \"Left\": 0.13519640266895294,\n                    \"Top\": 0.39621278643608093,\n                    \"Width\": 0.0163345318287611\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.13519640266895294,\n                        \"Y\": 0.39621278643608093\n                    },\n                    {\n                        \"X\": 0.15152984857559204,\n                        \"Y\": 0.39622196555137634\n                    },\n                    {\n                        \"X\": 0.1515309363603592,\n                        \"Y\": 0.4088002145290375\n                    },\n                    {\n                        \"X\": 0.13519737124443054,\n                        \"Y\": 0.4087909758090973\n                    }\n                ]\n            },\n            \"Id\": \"c772f137-d8ea-47a3-a965-64993de930a7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb7e5ce6-4b7d-484c-b6b2-caf31360a544\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.69317626953125,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011404930613934994,\n                    \"Left\": 0.5160213112831116,\n                    \"Top\": 0.7672725319862366,\n                    \"Width\": 0.0608728788793087\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5160213112831116,\n                        \"Y\": 0.7672725319862366\n                    },\n                    {\n                        \"X\": 0.5768903493881226,\n                        \"Y\": 0.7673127055168152\n                    },\n                    {\n                        \"X\": 0.5768941640853882,\n                        \"Y\": 0.7786774635314941\n                    },\n                    {\n                        \"X\": 0.5160247087478638,\n                        \"Y\": 0.7786371111869812\n                    }\n                ]\n            },\n            \"Id\": \"1a0c5465-bc40-48c6-ab06-52c99891a464\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"81c97e92-7c21-459f-9e30-b5f030d5d9b5\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"afd7df55-cda7-4ee0-a1ce-aef9f53722f7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.69317626953125,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012286942452192307,\n                    \"Left\": 0.4983043372631073,\n                    \"Top\": 0.7652459144592285,\n                    \"Width\": 0.015787115320563316\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4983043372631073,\n                        \"Y\": 0.7652459144592285\n                    },\n                    {\n                        \"X\": 0.5140877962112427,\n                        \"Y\": 0.7652562856674194\n                    },\n                    {\n                        \"X\": 0.5140914916992188,\n                        \"Y\": 0.7775328755378723\n                    },\n                    {\n                        \"X\": 0.4983079433441162,\n                        \"Y\": 0.7775223851203918\n                    }\n                ]\n            },\n            \"Id\": \"81c97e92-7c21-459f-9e30-b5f030d5d9b5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3edf4821-93bf-46c0-b3b8-1718af7bda22\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.59717559814453,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012379339896142483,\n                    \"Left\": 0.03026731312274933,\n                    \"Top\": 0.31682485342025757,\n                    \"Width\": 0.29525163769721985\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03026731312274933,\n                        \"Y\": 0.31682485342025757\n                    },\n                    {\n                        \"X\": 0.32551661133766174,\n                        \"Y\": 0.31698447465896606\n                    },\n                    {\n                        \"X\": 0.325518935918808,\n                        \"Y\": 0.3292042016983032\n                    },\n                    {\n                        \"X\": 0.030267493799328804,\n                        \"Y\": 0.3290436267852783\n                    }\n                ]\n            },\n            \"Id\": \"9548bac5-6a94-4682-9294-fe882a3deee4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c4c71719-fa0a-4992-b1e5-783b17ccf04b\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"f092fba5-6733-4474-aebb-641cd7972d12\",\n                        \"ca93c100-0858-43dc-aa0f-d0e8fe22c5c2\",\n                        \"6e7e9c55-78ee-4682-92d2-5f17ed3d5439\",\n                        \"24df0b9b-0a6c-45cd-9909-9bee2b894e0c\",\n                        \"422c5f10-7daf-4a72-9c3b-09c3847e43ff\",\n                        \"f3771b4d-050c-486f-b908-8efd2589fc59\",\n                        \"f8ecaf5f-d683-41db-b071-ae9c21737931\",\n                        \"d7fcd40c-dc56-42fb-ac48-1ce6f4804bb3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.59717559814453,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013011200353503227,\n                    \"Left\": 0.0321655198931694,\n                    \"Top\": 0.33291691541671753,\n                    \"Width\": 0.23534342646598816\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0321655198931694,\n                        \"Y\": 0.33291691541671753\n                    },\n                    {\n                        \"X\": 0.2675069570541382,\n                        \"Y\": 0.3330451548099518\n                    },\n                    {\n                        \"X\": 0.26750895380973816,\n                        \"Y\": 0.3459281027317047\n                    },\n                    {\n                        \"X\": 0.03216572478413582,\n                        \"Y\": 0.3457990884780884\n                    }\n                ]\n            },\n            \"Id\": \"c4c71719-fa0a-4992-b1e5-783b17ccf04b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ba11c68c-f0cf-4487-90bc-c62706a429a6\",\n                        \"e8153ceb-3a2a-45d7-8a43-3b8a15eeebd9\",\n                        \"8a3f1263-1414-4470-ba51-20094e10823e\",\n                        \"efb433d1-2743-4a51-8311-60aee28b013b\",\n                        \"0912b97d-4e63-4d51-80d7-532607c9969b\",\n                        \"a92fef63-881b-4608-97e1-1814ea833022\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.58056640625,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011950145475566387,\n                    \"Left\": 0.7524757385253906,\n                    \"Top\": 0.41186830401420593,\n                    \"Width\": 0.1270124763250351\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7524757385253906,\n                        \"Y\": 0.41186830401420593\n                    },\n                    {\n                        \"X\": 0.879482090473175,\n                        \"Y\": 0.4119401276111603\n                    },\n                    {\n                        \"X\": 0.8794882297515869,\n                        \"Y\": 0.423818439245224\n                    },\n                    {\n                        \"X\": 0.7524809837341309,\n                        \"Y\": 0.4237461984157562\n                    }\n                ]\n            },\n            \"Id\": \"38673916-f514-4fca-bfab-a8ef0bffe842\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"18a3dd2b-a224-4884-a14b-c03fd3bcdf45\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"12e48f44-e5ab-4043-a1d0-1c20711f5cff\",\n                        \"809e8b1b-73ff-4f43-878d-be9e4e1a7e9c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.58056640625,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012001657858490944,\n                    \"Left\": 0.7352455854415894,\n                    \"Top\": 0.410545289516449,\n                    \"Width\": 0.014783105812966824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7352455854415894,\n                        \"Y\": 0.410545289516449\n                    },\n                    {\n                        \"X\": 0.7500234246253967,\n                        \"Y\": 0.4105536639690399\n                    },\n                    {\n                        \"X\": 0.7500287294387817,\n                        \"Y\": 0.42254695296287537\n                    },\n                    {\n                        \"X\": 0.7352507710456848,\n                        \"Y\": 0.42253854870796204\n                    }\n                ]\n            },\n            \"Id\": \"18a3dd2b-a224-4884-a14b-c03fd3bcdf45\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7cfa4209-082c-49e6-be61-185b8ec6596a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.53331756591797,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009268378838896751,\n                    \"Left\": 0.8023292422294617,\n                    \"Top\": 0.9120069146156311,\n                    \"Width\": 0.02599330060184002\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8023292422294617,\n                        \"Y\": 0.9120069146156311\n                    },\n                    {\n                        \"X\": 0.8283180594444275,\n                        \"Y\": 0.9120250344276428\n                    },\n                    {\n                        \"X\": 0.8283225297927856,\n                        \"Y\": 0.92127525806427\n                    },\n                    {\n                        \"X\": 0.8023335933685303,\n                        \"Y\": 0.9212570786476135\n                    }\n                ]\n            },\n            \"Id\": \"f5d1fef5-bfa6-40ae-83a3-9d2ad14b37f5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4016e065-445d-41a5-81ee-cfe0d06a6b6d\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"592efa83-d41d-4792-bbca-249a12498a5b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.53331756591797,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012917814776301384,\n                    \"Left\": 0.7839818000793457,\n                    \"Top\": 0.9098997712135315,\n                    \"Width\": 0.015217363834381104\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7839818000793457,\n                        \"Y\": 0.9098997712135315\n                    },\n                    {\n                        \"X\": 0.7991931438446045,\n                        \"Y\": 0.9099103808403015\n                    },\n                    {\n                        \"X\": 0.7991991639137268,\n                        \"Y\": 0.922817587852478\n                    },\n                    {\n                        \"X\": 0.7839877605438232,\n                        \"Y\": 0.9228069186210632\n                    }\n                ]\n            },\n            \"Id\": \"4016e065-445d-41a5-81ee-cfe0d06a6b6d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"27166460-8966-41a7-8b3a-e69daf82a455\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.51060485839844,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00946646649390459,\n                    \"Left\": 0.24240241944789886,\n                    \"Top\": 0.41235992312431335,\n                    \"Width\": 0.142660990357399\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.24240241944789886,\n                        \"Y\": 0.41235992312431335\n                    },\n                    {\n                        \"X\": 0.3850612938404083,\n                        \"Y\": 0.4124406576156616\n                    },\n                    {\n                        \"X\": 0.38506340980529785,\n                        \"Y\": 0.42182639241218567\n                    },\n                    {\n                        \"X\": 0.24240373075008392,\n                        \"Y\": 0.42174530029296875\n                    }\n                ]\n            },\n            \"Id\": \"65a7c753-1d13-4db3-a221-9c6cb64d8c8c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4afb7d63-78d2-48b5-b6c6-b64a2ca15c6f\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"777390f6-1285-4e08-b8ab-05909325e8fe\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.51060485839844,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011909900233149529,\n                    \"Left\": 0.22300967574119568,\n                    \"Top\": 0.4106602966785431,\n                    \"Width\": 0.01553357858210802\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.22300967574119568,\n                        \"Y\": 0.4106602966785431\n                    },\n                    {\n                        \"X\": 0.2385416179895401,\n                        \"Y\": 0.41066908836364746\n                    },\n                    {\n                        \"X\": 0.23854325711727142,\n                        \"Y\": 0.42257019877433777\n                    },\n                    {\n                        \"X\": 0.22301121056079865,\n                        \"Y\": 0.422561377286911\n                    }\n                ]\n            },\n            \"Id\": \"4afb7d63-78d2-48b5-b6c6-b64a2ca15c6f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e825538d-ca8e-47d3-8f6a-a0d76a021a1f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.39020538330078,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011227750219404697,\n                    \"Left\": 0.25699126720428467,\n                    \"Top\": 0.4427488446235657,\n                    \"Width\": 0.12967313826084137\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.25699126720428467,\n                        \"Y\": 0.4427488446235657\n                    },\n                    {\n                        \"X\": 0.3866618871688843,\n                        \"Y\": 0.44282326102256775\n                    },\n                    {\n                        \"X\": 0.38666439056396484,\n                        \"Y\": 0.4539766013622284\n                    },\n                    {\n                        \"X\": 0.2569929361343384,\n                        \"Y\": 0.4539017975330353\n                    }\n                ]\n            },\n            \"Id\": \"76eecc42-e29a-4e08-90ea-01c7e0132d52\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4d31ab4c-05cc-402d-a82b-7c2dd69bec7d\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"7547a0bc-bb8d-4807-a656-fd33d2f38c00\",\n                        \"e212f0df-117e-4156-8aae-97c51dad844c\",\n                        \"9aea3614-04cd-4510-9b9e-dea2bbe58e68\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.39020538330078,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01502137165516615,\n                    \"Left\": 0.2566525638103485,\n                    \"Top\": 0.4668518304824829,\n                    \"Width\": 0.14796710014343262\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2566525638103485,\n                        \"Y\": 0.4668518304824829\n                    },\n                    {\n                        \"X\": 0.4046161472797394,\n                        \"Y\": 0.46693769097328186\n                    },\n                    {\n                        \"X\": 0.40461966395378113,\n                        \"Y\": 0.48187318444252014\n                    },\n                    {\n                        \"X\": 0.2566547989845276,\n                        \"Y\": 0.48178672790527344\n                    }\n                ]\n            },\n            \"Id\": \"4d31ab4c-05cc-402d-a82b-7c2dd69bec7d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f802360d-d41f-4fdc-85ea-cd6082e483cf\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.20975494384766,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009158613160252571,\n                    \"Left\": 0.33272823691368103,\n                    \"Top\": 0.9680955410003662,\n                    \"Width\": 0.026447191834449768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33272823691368103,\n                        \"Y\": 0.9680955410003662\n                    },\n                    {\n                        \"X\": 0.3591735064983368,\n                        \"Y\": 0.96811443567276\n                    },\n                    {\n                        \"X\": 0.3591754138469696,\n                        \"Y\": 0.9772542119026184\n                    },\n                    {\n                        \"X\": 0.3327299952507019,\n                        \"Y\": 0.9772352576255798\n                    }\n                ]\n            },\n            \"Id\": \"3411ed99-99ae-4611-b24d-1d4577c35178\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"882646bd-d53a-4763-a4d0-ef0b5ca58798\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"68a50f60-cb75-49be-96a9-ce849ca2befa\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.20975494384766,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01211092621088028,\n                    \"Left\": 0.31435900926589966,\n                    \"Top\": 0.9666542410850525,\n                    \"Width\": 0.014945329166948795\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.31435900926589966,\n                        \"Y\": 0.9666542410850525\n                    },\n                    {\n                        \"X\": 0.32930201292037964,\n                        \"Y\": 0.9666649103164673\n                    },\n                    {\n                        \"X\": 0.3293043375015259,\n                        \"Y\": 0.9787651896476746\n                    },\n                    {\n                        \"X\": 0.31436121463775635,\n                        \"Y\": 0.978754460811615\n                    }\n                ]\n            },\n            \"Id\": \"882646bd-d53a-4763-a4d0-ef0b5ca58798\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"36d01d28-c03a-45b1-a2a4-64b1f82ce196\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.209716796875,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011759279295802116,\n                    \"Left\": 0.41767168045043945,\n                    \"Top\": 0.4423529803752899,\n                    \"Width\": 0.13913260400295258\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41767168045043945,\n                        \"Y\": 0.4423529803752899\n                    },\n                    {\n                        \"X\": 0.5568004846572876,\n                        \"Y\": 0.44243282079696655\n                    },\n                    {\n                        \"X\": 0.5568042993545532,\n                        \"Y\": 0.4541122615337372\n                    },\n                    {\n                        \"X\": 0.4176745116710663,\n                        \"Y\": 0.4540320038795471\n                    }\n                ]\n            },\n            \"Id\": \"ad21dc5b-ff62-401f-9fdd-a7e87e4d1a24\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1c211449-13da-4a45-b4e9-64a696d43514\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"1317b64c-1b0c-48ba-8c1b-866891b2a462\",\n                        \"759cbefa-3249-4cc3-bd3b-4d1f01321755\",\n                        \"a6f4cc00-15dd-4246-a206-0f6820fb9ff7\",\n                        \"0ddca5f9-bb05-447a-8426-21899f0a231c\",\n                        \"e684e6c6-2a20-4235-ab8d-f26edd5c6330\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.209716796875,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014969808049499989,\n                    \"Left\": 0.4168502688407898,\n                    \"Top\": 0.46690335869789124,\n                    \"Width\": 0.1724751591682434\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4168502688407898,\n                        \"Y\": 0.46690335869789124\n                    },\n                    {\n                        \"X\": 0.5893203020095825,\n                        \"Y\": 0.4670034646987915\n                    },\n                    {\n                        \"X\": 0.5893254280090332,\n                        \"Y\": 0.48187318444252014\n                    },\n                    {\n                        \"X\": 0.4168538749217987,\n                        \"Y\": 0.48177242279052734\n                    }\n                ]\n            },\n            \"Id\": \"1c211449-13da-4a45-b4e9-64a696d43514\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1e7d727e-ced7-46b5-a1ef-0cde3dc1917d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.04582214355469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011739060282707214,\n                    \"Left\": 0.029291296377778053,\n                    \"Top\": 0.5420116782188416,\n                    \"Width\": 0.19272686541080475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029291296377778053,\n                        \"Y\": 0.5420116782188416\n                    },\n                    {\n                        \"X\": 0.22201666235923767,\n                        \"Y\": 0.5421273708343506\n                    },\n                    {\n                        \"X\": 0.22201815247535706,\n                        \"Y\": 0.55375075340271\n                    },\n                    {\n                        \"X\": 0.029291462153196335,\n                        \"Y\": 0.5536344647407532\n                    }\n                ]\n            },\n            \"Id\": \"a3eab5c3-f033-42b8-a303-be3b2c234d0b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8170dd35-94f2-4b18-aece-42ce73c52531\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"e2ef7117-ab0f-4ce1-82b4-9a204f933f45\",\n                        \"bd1691bb-a5fb-4898-9790-7344fd5ea3ff\",\n                        \"e3878e03-17f6-49c8-8535-4e101380d192\",\n                        \"424c31e3-41e6-4901-b318-f63d5300ef57\",\n                        \"e08f0fc1-b0df-48a8-8386-3a4631f8b22b\",\n                        \"bed94834-903d-4dd3-88a0-6e3a135c9c04\",\n                        \"bb367b78-323e-4a6f-b3de-7a5de15053a1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.04582214355469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010253178887069225,\n                    \"Left\": 0.031094258651137352,\n                    \"Top\": 0.5614644289016724,\n                    \"Width\": 0.09090466797351837\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031094258651137352,\n                        \"Y\": 0.5614644289016724\n                    },\n                    {\n                        \"X\": 0.12199822068214417,\n                        \"Y\": 0.5615195035934448\n                    },\n                    {\n                        \"X\": 0.12199892103672028,\n                        \"Y\": 0.5717176198959351\n                    },\n                    {\n                        \"X\": 0.031094415113329887,\n                        \"Y\": 0.5716623663902283\n                    }\n                ]\n            },\n            \"Id\": \"8170dd35-94f2-4b18-aece-42ce73c52531\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dfcba9b9-b2ce-4d96-8122-8391c809b3ca\",\n                        \"48117f97-32c1-457e-a9b4-b029df8ac663\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.02493286132812,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01206198986619711,\n                    \"Left\": 0.5168401002883911,\n                    \"Top\": 0.7479845285415649,\n                    \"Width\": 0.2741847634315491\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5168401002883911,\n                        \"Y\": 0.7479845285415649\n                    },\n                    {\n                        \"X\": 0.7910193204879761,\n                        \"Y\": 0.7481640577316284\n                    },\n                    {\n                        \"X\": 0.7910248637199402,\n                        \"Y\": 0.7600465416908264\n                    },\n                    {\n                        \"X\": 0.5168436765670776,\n                        \"Y\": 0.7598661780357361\n                    }\n                ]\n            },\n            \"Id\": \"b502646a-f615-4df4-ba96-5d89a802536f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1d0391f7-3e17-4119-8b36-c0108f881e12\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"15488b78-163e-4897-ac9f-aa1150ddf9fb\",\n                        \"795e3578-d645-4505-8b4f-b6ec071edaef\",\n                        \"5d35fc4f-b021-4794-8ea8-1c56818b886f\",\n                        \"340eb2b8-4c07-44fd-ad8d-bd92fba22afe\",\n                        \"edabb44d-6806-4b64-8b91-996e76245623\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.02493286132812,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012308184988796711,\n                    \"Left\": 0.49885082244873047,\n                    \"Top\": 0.7469456195831299,\n                    \"Width\": 0.01611304096877575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49885082244873047,\n                        \"Y\": 0.7469456195831299\n                    },\n                    {\n                        \"X\": 0.5149601697921753,\n                        \"Y\": 0.7469561696052551\n                    },\n                    {\n                        \"X\": 0.5149638652801514,\n                        \"Y\": 0.7592537999153137\n                    },\n                    {\n                        \"X\": 0.498854398727417,\n                        \"Y\": 0.7592431902885437\n                    }\n                ]\n            },\n            \"Id\": \"1d0391f7-3e17-4119-8b36-c0108f881e12\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7c4eaa62-fe5b-4ef6-ba71-2f7730732ab2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.01593780517578,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00896443147212267,\n                    \"Left\": 0.8310878276824951,\n                    \"Top\": 0.5012762546539307,\n                    \"Width\": 0.03199649974703789\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8310878276824951,\n                        \"Y\": 0.5012762546539307\n                    },\n                    {\n                        \"X\": 0.8630797863006592,\n                        \"Y\": 0.5012950897216797\n                    },\n                    {\n                        \"X\": 0.8630843162536621,\n                        \"Y\": 0.5102406740188599\n                    },\n                    {\n                        \"X\": 0.8310921788215637,\n                        \"Y\": 0.5102217793464661\n                    }\n                ]\n            },\n            \"Id\": \"7b509496-dc43-466a-84ea-f225e14e60e1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"78a6b99f-1864-4fbc-a69b-7dd9eb0ea374\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"47ca9455-40d2-48cf-87ae-dd3937b390a9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 93.01593780517578,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012732080183923244,\n                    \"Left\": 0.8111957907676697,\n                    \"Top\": 0.4981757700443268,\n                    \"Width\": 0.01626022532582283\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8111957907676697,\n                        \"Y\": 0.4981757700443268\n                    },\n                    {\n                        \"X\": 0.8274498581886292,\n                        \"Y\": 0.49818533658981323\n                    },\n                    {\n                        \"X\": 0.827455997467041,\n                        \"Y\": 0.5109078288078308\n                    },\n                    {\n                        \"X\": 0.8112018704414368,\n                        \"Y\": 0.510898232460022\n                    }\n                ]\n            },\n            \"Id\": \"78a6b99f-1864-4fbc-a69b-7dd9eb0ea374\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e0451d88-15d6-47d8-8d05-af05824fbc2d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.98854064941406,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009551198221743107,\n                    \"Left\": 0.8931083083152771,\n                    \"Top\": 0.5007794499397278,\n                    \"Width\": 0.06592655926942825\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8931083083152771,\n                        \"Y\": 0.5007794499397278\n                    },\n                    {\n                        \"X\": 0.9590295553207397,\n                        \"Y\": 0.5008182525634766\n                    },\n                    {\n                        \"X\": 0.9590349197387695,\n                        \"Y\": 0.5103306174278259\n                    },\n                    {\n                        \"X\": 0.8931133151054382,\n                        \"Y\": 0.5102916359901428\n                    }\n                ]\n            },\n            \"Id\": \"d1454c9e-e832-4f2c-b4a3-f1bf06fcce34\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f6bb84c5-5f45-4259-929e-e6429bf0b45b\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"effbc861-9822-4065-8f19-e3b80c9a1e70\",\n                        \"2d38ee50-549c-4cc1-b871-c9fb9a78e8ef\",\n                        \"2e4792d3-957b-437b-8c0d-0b1bf53c7527\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.98854064941406,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012649535201489925,\n                    \"Left\": 0.8740909695625305,\n                    \"Top\": 0.4980156719684601,\n                    \"Width\": 0.015329336747527122\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8740909695625305,\n                        \"Y\": 0.4980156719684601\n                    },\n                    {\n                        \"X\": 0.8894137144088745,\n                        \"Y\": 0.49802470207214355\n                    },\n                    {\n                        \"X\": 0.8894202709197998,\n                        \"Y\": 0.510665237903595\n                    },\n                    {\n                        \"X\": 0.874097466468811,\n                        \"Y\": 0.5106561779975891\n                    }\n                ]\n            },\n            \"Id\": \"f6bb84c5-5f45-4259-929e-e6429bf0b45b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c7c071ed-b840-4faa-997d-1355c3bc2df0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.94137573242188,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009274369105696678,\n                    \"Left\": 0.18841305375099182,\n                    \"Top\": 0.2677132189273834,\n                    \"Width\": 0.07520395517349243\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.18841305375099182,\n                        \"Y\": 0.2677132189273834\n                    },\n                    {\n                        \"X\": 0.26361560821533203,\n                        \"Y\": 0.26775288581848145\n                    },\n                    {\n                        \"X\": 0.26361700892448425,\n                        \"Y\": 0.27698758244514465\n                    },\n                    {\n                        \"X\": 0.1884140521287918,\n                        \"Y\": 0.2769477367401123\n                    }\n                ]\n            },\n            \"Id\": \"e1d5f6a8-bb15-40d8-97d0-ca2812ed2fad\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7cb95a92-3dcd-43ec-846c-7fa96fc3fcd2\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"7e449874-d5cf-4ba4-a5af-4e9456214394\",\n                        \"fbc31ea7-4d1e-442d-a70f-ec1216490568\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.94137573242188,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010187629610300064,\n                    \"Left\": 0.2555680572986603,\n                    \"Top\": 0.28438618779182434,\n                    \"Width\": 0.03913148120045662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2555680572986603,\n                        \"Y\": 0.28438618779182434\n                    },\n                    {\n                        \"X\": 0.2946977913379669,\n                        \"Y\": 0.28440701961517334\n                    },\n                    {\n                        \"X\": 0.2946995198726654,\n                        \"Y\": 0.2945738136768341\n                    },\n                    {\n                        \"X\": 0.25556954741477966,\n                        \"Y\": 0.29455289244651794\n                    }\n                ]\n            },\n            \"Id\": \"7cb95a92-3dcd-43ec-846c-7fa96fc3fcd2\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bb2bc981-841b-429b-8599-35d716f31506\",\n                        \"fc9dbc34-1baa-403c-b854-d1711d158913\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.93505859375,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011553894728422165,\n                    \"Left\": 0.8526493906974792,\n                    \"Top\": 0.5586252212524414,\n                    \"Width\": 0.0651201605796814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8526493906974792,\n                        \"Y\": 0.5586252212524414\n                    },\n                    {\n                        \"X\": 0.9177632927894592,\n                        \"Y\": 0.5586646199226379\n                    },\n                    {\n                        \"X\": 0.9177695512771606,\n                        \"Y\": 0.5701791644096375\n                    },\n                    {\n                        \"X\": 0.8526551127433777,\n                        \"Y\": 0.5701395869255066\n                    }\n                ]\n            },\n            \"Id\": \"35f6cd23-1d57-44fa-b121-7f1f02738cb7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"654982f9-58f2-4e14-809b-4c8c65aa23bf\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"15c62bd5-3ac8-496f-8fce-5cdef8afd087\",\n                        \"14cb9679-c9c9-45fc-beb8-ff37999cc5d1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.93505859375,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013197020627558231,\n                    \"Left\": 0.832706093788147,\n                    \"Top\": 0.5556566119194031,\n                    \"Width\": 0.015857165679335594\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.832706093788147,\n                        \"Y\": 0.5556566119194031\n                    },\n                    {\n                        \"X\": 0.848556637763977,\n                        \"Y\": 0.5556662082672119\n                    },\n                    {\n                        \"X\": 0.8485632538795471,\n                        \"Y\": 0.5688536763191223\n                    },\n                    {\n                        \"X\": 0.8327125310897827,\n                        \"Y\": 0.5688440203666687\n                    }\n                ]\n            },\n            \"Id\": \"654982f9-58f2-4e14-809b-4c8c65aa23bf\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f13beb51-28f3-4aa2-9539-05e22c0c5892\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.92245483398438,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011576300486922264,\n                    \"Left\": 0.10627148300409317,\n                    \"Top\": 0.44275763630867004,\n                    \"Width\": 0.0769350677728653\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10627148300409317,\n                        \"Y\": 0.44275763630867004\n                    },\n                    {\n                        \"X\": 0.18320533633232117,\n                        \"Y\": 0.4428018033504486\n                    },\n                    {\n                        \"X\": 0.18320654332637787,\n                        \"Y\": 0.45433393120765686\n                    },\n                    {\n                        \"X\": 0.10627217590808868,\n                        \"Y\": 0.4542895555496216\n                    }\n                ]\n            },\n            \"Id\": \"bc70b686-6255-441e-8cbd-f2adc631108c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"37c4e2c9-853d-46ff-a0ed-82a6e53adc16\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"c04ce6eb-efd7-469b-9cc4-1487bcc75cb0\",\n                        \"20dbf06c-3c4c-4fe9-b48c-913e519a6230\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.92245483398438,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01501196064054966,\n                    \"Left\": 0.10620122402906418,\n                    \"Top\": 0.46677446365356445,\n                    \"Width\": 0.13768163323402405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10620122402906418,\n                        \"Y\": 0.46677446365356445\n                    },\n                    {\n                        \"X\": 0.2438807487487793,\n                        \"Y\": 0.46685436367988586\n                    },\n                    {\n                        \"X\": 0.24388284981250763,\n                        \"Y\": 0.48178642988204956\n                    },\n                    {\n                        \"X\": 0.10620211809873581,\n                        \"Y\": 0.48170599341392517\n                    }\n                ]\n            },\n            \"Id\": \"37c4e2c9-853d-46ff-a0ed-82a6e53adc16\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0dbdf5bc-058a-4b41-b053-1021f96eaa65\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.87715148925781,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009524543769657612,\n                    \"Left\": 0.2120862454175949,\n                    \"Top\": 0.22625240683555603,\n                    \"Width\": 0.07572759687900543\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2120862454175949,\n                        \"Y\": 0.22625240683555603\n                    },\n                    {\n                        \"X\": 0.2878122627735138,\n                        \"Y\": 0.22629152238368988\n                    },\n                    {\n                        \"X\": 0.28781384229660034,\n                        \"Y\": 0.23577694594860077\n                    },\n                    {\n                        \"X\": 0.21208740770816803,\n                        \"Y\": 0.2357376366853714\n                    }\n                ]\n            },\n            \"Id\": \"92f8c8e3-6de9-4351-9e80-b664524332f4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ec80c724-b7a4-4380-a663-3fd584422da1\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"bde762ae-1886-4b2f-960e-b60785b81a44\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.87715148925781,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012013204395771027,\n                    \"Left\": 0.19154080748558044,\n                    \"Top\": 0.2233559489250183,\n                    \"Width\": 0.016016259789466858\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19154080748558044,\n                        \"Y\": 0.2233559489250183\n                    },\n                    {\n                        \"X\": 0.2075556218624115,\n                        \"Y\": 0.2233642190694809\n                    },\n                    {\n                        \"X\": 0.2075570672750473,\n                        \"Y\": 0.23536916077136993\n                    },\n                    {\n                        \"X\": 0.1915421336889267,\n                        \"Y\": 0.23536084592342377\n                    }\n                ]\n            },\n            \"Id\": \"ec80c724-b7a4-4380-a663-3fd584422da1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c57c3a0b-2d80-4229-a632-e66f218e41be\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.8553695678711,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01166622620075941,\n                    \"Left\": 0.10696271061897278,\n                    \"Top\": 0.4984095096588135,\n                    \"Width\": 0.07587768882513046\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10696271061897278,\n                        \"Y\": 0.4984095096588135\n                    },\n                    {\n                        \"X\": 0.18283918499946594,\n                        \"Y\": 0.49845415353775024\n                    },\n                    {\n                        \"X\": 0.18284039199352264,\n                        \"Y\": 0.5100757479667664\n                    },\n                    {\n                        \"X\": 0.10696341097354889,\n                        \"Y\": 0.5100308060646057\n                    }\n                ]\n            },\n            \"Id\": \"66fc90e8-7d40-4bbf-b74a-bcfd4b6af85f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f548dc93-6b5f-457d-afb0-783f83796440\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"3f6b150f-af60-4896-a656-93761c6cbdfb\",\n                        \"5550ad46-7b09-4f72-82c6-d78d80b9c07d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.8553695678711,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013735497370362282,\n                    \"Left\": 0.10622523725032806,\n                    \"Top\": 0.5248104333877563,\n                    \"Width\": 0.13839948177337646\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10622523725032806,\n                        \"Y\": 0.5248104333877563\n                    },\n                    {\n                        \"X\": 0.24462278187274933,\n                        \"Y\": 0.5248928666114807\n                    },\n                    {\n                        \"X\": 0.24462471902370453,\n                        \"Y\": 0.5385459065437317\n                    },\n                    {\n                        \"X\": 0.10622605681419373,\n                        \"Y\": 0.5384629368782043\n                    }\n                ]\n            },\n            \"Id\": \"f548dc93-6b5f-457d-afb0-783f83796440\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"db583c43-d155-4d45-a9ea-913db0fb76dd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.82344818115234,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011335526593029499,\n                    \"Left\": 0.7938079237937927,\n                    \"Top\": 0.6868153810501099,\n                    \"Width\": 0.09740803390741348\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7938079237937927,\n                        \"Y\": 0.6868153810501099\n                    },\n                    {\n                        \"X\": 0.8912100791931152,\n                        \"Y\": 0.6868776082992554\n                    },\n                    {\n                        \"X\": 0.891215980052948,\n                        \"Y\": 0.6981509327888489\n                    },\n                    {\n                        \"X\": 0.793813169002533,\n                        \"Y\": 0.6980884671211243\n                    }\n                ]\n            },\n            \"Id\": \"daaf9ed9-044e-4156-81ab-30a3e11be477\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"2b4009fb-b73a-49f6-af1e-3f4b5238a686\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"d80dc99f-2a68-463d-ad64-04f84934cc16\",\n                        \"dbdf48d7-61c6-4537-866a-4df9ba228d7e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.82344818115234,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009442918933928013,\n                    \"Left\": 0.7945649027824402,\n                    \"Top\": 0.7041675448417664,\n                    \"Width\": 0.02353212796151638\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7945649027824402,\n                        \"Y\": 0.7041675448417664\n                    },\n                    {\n                        \"X\": 0.8180924654006958,\n                        \"Y\": 0.7041826844215393\n                    },\n                    {\n                        \"X\": 0.8180969953536987,\n                        \"Y\": 0.7136104702949524\n                    },\n                    {\n                        \"X\": 0.7945692539215088,\n                        \"Y\": 0.7135952711105347\n                    }\n                ]\n            },\n            \"Id\": \"2b4009fb-b73a-49f6-af1e-3f4b5238a686\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"25138754-290c-42e7-9481-c14b2843767d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.73983764648438,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012071451172232628,\n                    \"Left\": 0.49916818737983704,\n                    \"Top\": 0.6471601724624634,\n                    \"Width\": 0.30169543623924255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49916818737983704,\n                        \"Y\": 0.6471601724624634\n                    },\n                    {\n                        \"X\": 0.8008580207824707,\n                        \"Y\": 0.6473496556282043\n                    },\n                    {\n                        \"X\": 0.8008636236190796,\n                        \"Y\": 0.6592316031455994\n                    },\n                    {\n                        \"X\": 0.4991716742515564,\n                        \"Y\": 0.6590412259101868\n                    }\n                ]\n            },\n            \"Id\": \"f7f3bcf1-8bdc-430f-86b7-37851c07b826\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"931f82d9-2f89-4a02-8786-d6c9eafee333\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"5486c5c7-81a1-460b-8583-10c00f99b4bc\",\n                        \"e8c600f6-516c-48bc-bd6b-f29787fca137\",\n                        \"23071399-3347-4536-b90a-9a58565a3e48\",\n                        \"ac49d652-321c-49f8-aa07-f27bf0f3dbcf\",\n                        \"1dceb08e-874c-443e-84f9-3ec09b62806d\",\n                        \"e846d977-5379-45b4-b2d8-404531aa0cc6\",\n                        \"a80c2624-8373-4441-8ef8-184b9a109f70\",\n                        \"7f7dff4a-5334-4f7d-b7bb-3cb2773085d6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.73983764648438,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010284225456416607,\n                    \"Left\": 0.5008418560028076,\n                    \"Top\": 0.6646519899368286,\n                    \"Width\": 0.023438578471541405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5008418560028076,\n                        \"Y\": 0.6646519899368286\n                    },\n                    {\n                        \"X\": 0.5242772698402405,\n                        \"Y\": 0.6646668314933777\n                    },\n                    {\n                        \"X\": 0.5242804288864136,\n                        \"Y\": 0.6749362349510193\n                    },\n                    {\n                        \"X\": 0.5008448958396912,\n                        \"Y\": 0.6749213337898254\n                    }\n                ]\n            },\n            \"Id\": \"931f82d9-2f89-4a02-8786-d6c9eafee333\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c1b1ea86-b20d-4615-bbd1-95eb5e1fb856\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.66720581054688,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02518886886537075,\n                    \"Left\": 0.21037115156650543,\n                    \"Top\": 0.23895138502120972,\n                    \"Width\": 0.09640894085168839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21037115156650543,\n                        \"Y\": 0.23895138502120972\n                    },\n                    {\n                        \"X\": 0.30677559971809387,\n                        \"Y\": 0.23900151252746582\n                    },\n                    {\n                        \"X\": 0.3067800998687744,\n                        \"Y\": 0.264140248298645\n                    },\n                    {\n                        \"X\": 0.21037420630455017,\n                        \"Y\": 0.2640894949436188\n                    }\n                ]\n            },\n            \"Id\": \"f63ca252-6682-408d-824c-8cadf8d7fcc8\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cf43a56e-7c35-4978-9a1a-ced12bb35807\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"b3f9158c-6ef4-4113-9f25-371f06e14598\",\n                        \"1da09c26-c2ae-475a-a211-38704778afbb\",\n                        \"ab0ee00f-368f-459d-b67b-1eb8bf85b5e8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.66720581054688,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011997553519904613,\n                    \"Left\": 0.19155366718769073,\n                    \"Top\": 0.2386203557252884,\n                    \"Width\": 0.016011083498597145\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19155366718769073,\n                        \"Y\": 0.2386203557252884\n                    },\n                    {\n                        \"X\": 0.20756331086158752,\n                        \"Y\": 0.23862867057323456\n                    },\n                    {\n                        \"X\": 0.20756474137306213,\n                        \"Y\": 0.2506179213523865\n                    },\n                    {\n                        \"X\": 0.1915549784898758,\n                        \"Y\": 0.25060954689979553\n                    }\n                ]\n            },\n            \"Id\": \"cf43a56e-7c35-4978-9a1a-ced12bb35807\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c0572b8a-4f8a-4f46-99e9-b636d893362f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.53021240234375,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01216832920908928,\n                    \"Left\": 0.030374128371477127,\n                    \"Top\": 0.6471068859100342,\n                    \"Width\": 0.2811957895755768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030374128371477127,\n                        \"Y\": 0.6471068859100342\n                    },\n                    {\n                        \"X\": 0.3115677237510681,\n                        \"Y\": 0.6472835540771484\n                    },\n                    {\n                        \"X\": 0.3115698993206024,\n                        \"Y\": 0.659275233745575\n                    },\n                    {\n                        \"X\": 0.030374307185411453,\n                        \"Y\": 0.6590977311134338\n                    }\n                ]\n            },\n            \"Id\": \"c75a0c6d-3676-47df-a436-840664e31214\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"238cbdc0-3720-4b45-aa3b-a265bb1a3861\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"4eff9f87-c4e5-4f99-aefb-0cb43107336c\",\n                        \"013135ba-2878-4c65-8332-ba686a62cc87\",\n                        \"d0852e49-d7f7-4ce9-b7f6-4190e4b8f8df\",\n                        \"0548bcc3-efe1-4267-9b38-04acdab6b5a5\",\n                        \"394ea23a-0e7c-4305-9b06-7a0bc216a03d\",\n                        \"8c84dae1-cf6e-499d-9b52-b036d613bc6c\",\n                        \"ab0eeee4-c656-4c91-b11b-cff0c4595cbf\",\n                        \"cd6cd51e-8fa9-40a3-978c-f6d7cdc6f2e6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.53021240234375,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010487454943358898,\n                    \"Left\": 0.031726401299238205,\n                    \"Top\": 0.6646645069122314,\n                    \"Width\": 0.09116960316896439\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031726401299238205,\n                        \"Y\": 0.6646645069122314\n                    },\n                    {\n                        \"X\": 0.12289527803659439,\n                        \"Y\": 0.664722204208374\n                    },\n                    {\n                        \"X\": 0.12289600819349289,\n                        \"Y\": 0.6751519441604614\n                    },\n                    {\n                        \"X\": 0.03172656521201134,\n                        \"Y\": 0.6750940084457397\n                    }\n                ]\n            },\n            \"Id\": \"238cbdc0-3720-4b45-aa3b-a265bb1a3861\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"412c0a72-1c20-4ed9-9fc7-4fd8e8a52d2e\",\n                        \"0f503fcd-c496-4123-b593-ccf646fba397\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.48794555664062,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00989059079438448,\n                    \"Left\": 0.5866717100143433,\n                    \"Top\": 0.28674593567848206,\n                    \"Width\": 0.029484432190656662\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5866717100143433,\n                        \"Y\": 0.28674593567848206\n                    },\n                    {\n                        \"X\": 0.6161525845527649,\n                        \"Y\": 0.286761611700058\n                    },\n                    {\n                        \"X\": 0.6161561012268066,\n                        \"Y\": 0.29663652181625366\n                    },\n                    {\n                        \"X\": 0.5866751074790955,\n                        \"Y\": 0.2966207265853882\n                    }\n                ]\n            },\n            \"Id\": \"43b40ae3-327a-4146-b82c-516d8357a102\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e56f4c01-1d31-494c-9c98-8e0189160e93\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"dff28b0c-7c3c-4e09-88d5-8564c492707e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.48794555664062,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012163241393864155,\n                    \"Left\": 0.566777229309082,\n                    \"Top\": 0.28372922539711,\n                    \"Width\": 0.016305474564433098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.566777229309082,\n                        \"Y\": 0.28372922539711\n                    },\n                    {\n                        \"X\": 0.5830785632133484,\n                        \"Y\": 0.2837378680706024\n                    },\n                    {\n                        \"X\": 0.5830826759338379,\n                        \"Y\": 0.2958924472332001\n                    },\n                    {\n                        \"X\": 0.5667812824249268,\n                        \"Y\": 0.29588374495506287\n                    }\n                ]\n            },\n            \"Id\": \"e56f4c01-1d31-494c-9c98-8e0189160e93\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d53f6509-e65b-46ad-b95a-e8b179ad1398\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.41527557373047,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012200971134006977,\n                    \"Left\": 0.6204330921173096,\n                    \"Top\": 0.4119068682193756,\n                    \"Width\": 0.10988010466098785\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6204330921173096,\n                        \"Y\": 0.4119068682193756\n                    },\n                    {\n                        \"X\": 0.7303079962730408,\n                        \"Y\": 0.41196903586387634\n                    },\n                    {\n                        \"X\": 0.7303131818771362,\n                        \"Y\": 0.4241078495979309\n                    },\n                    {\n                        \"X\": 0.620437502861023,\n                        \"Y\": 0.4240453243255615\n                    }\n                ]\n            },\n            \"Id\": \"a1ff908f-96ee-4e84-ae22-c81c323672a4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d29f9bfc-acc3-4925-a0ce-d76b56c457ef\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"eed12811-f301-472f-91c0-4203409bbb69\",\n                        \"28fb00c1-4148-47f5-b9ea-98a0af65e5a3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.41527557373047,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012539204210042953,\n                    \"Left\": 0.6025670766830444,\n                    \"Top\": 0.4102381765842438,\n                    \"Width\": 0.014909205958247185\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6025670766830444,\n                        \"Y\": 0.4102381765842438\n                    },\n                    {\n                        \"X\": 0.6174717545509338,\n                        \"Y\": 0.4102466106414795\n                    },\n                    {\n                        \"X\": 0.6174762845039368,\n                        \"Y\": 0.422777384519577\n                    },\n                    {\n                        \"X\": 0.6025714874267578,\n                        \"Y\": 0.4227689206600189\n                    }\n                ]\n            },\n            \"Id\": \"d29f9bfc-acc3-4925-a0ce-d76b56c457ef\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b44ece17-787b-4701-97a7-d4592ca6ec96\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.36402893066406,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01183493621647358,\n                    \"Left\": 0.5317665338516235,\n                    \"Top\": 0.22066393494606018,\n                    \"Width\": 0.12930141389369965\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5317665338516235,\n                        \"Y\": 0.22066393494606018\n                    },\n                    {\n                        \"X\": 0.6610634326934814,\n                        \"Y\": 0.22073052823543549\n                    },\n                    {\n                        \"X\": 0.6610679626464844,\n                        \"Y\": 0.2324988692998886\n                    },\n                    {\n                        \"X\": 0.5317702293395996,\n                        \"Y\": 0.23243187367916107\n                    }\n                ]\n            },\n            \"Id\": \"8898ca56-bcbc-456b-81a3-a44febee7c96\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"becb2d24-a512-45c1-a896-273b443ff356\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"990051e9-7c13-4cde-9116-94adfa7400c3\",\n                        \"2a3fda71-f3fe-4a13-bb0b-3b01b3905649\",\n                        \"a128b2cf-47b5-4698-a39b-212b4a24e3da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.36402893066406,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010142670944333076,\n                    \"Left\": 0.5345553159713745,\n                    \"Top\": 0.24336978793144226,\n                    \"Width\": 0.059863295406103134\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5345553159713745,\n                        \"Y\": 0.24336978793144226\n                    },\n                    {\n                        \"X\": 0.5944150686264038,\n                        \"Y\": 0.24340097606182098\n                    },\n                    {\n                        \"X\": 0.5944185853004456,\n                        \"Y\": 0.253512442111969\n                    },\n                    {\n                        \"X\": 0.5345584750175476,\n                        \"Y\": 0.25348109006881714\n                    }\n                ]\n            },\n            \"Id\": \"becb2d24-a512-45c1-a896-273b443ff356\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6b001f42-bfef-4a90-a5d4-5eddac57d39a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.307373046875,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009242772124707699,\n                    \"Left\": 0.33289018273353577,\n                    \"Top\": 0.9120053648948669,\n                    \"Width\": 0.026470011100172997\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33289018273353577,\n                        \"Y\": 0.9120053648948669\n                    },\n                    {\n                        \"X\": 0.3593582808971405,\n                        \"Y\": 0.9120239019393921\n                    },\n                    {\n                        \"X\": 0.3593602180480957,\n                        \"Y\": 0.9212481379508972\n                    },\n                    {\n                        \"X\": 0.33289197087287903,\n                        \"Y\": 0.9212296009063721\n                    }\n                ]\n            },\n            \"Id\": \"613c8668-b357-47e7-ba7c-6194d3309d55\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"83db29d2-030c-44f2-9228-b23b7c10fff7\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"f7c79fc0-af5e-4cb6-809f-a1b6664f2c6d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.307373046875,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01254690159112215,\n                    \"Left\": 0.3143506348133087,\n                    \"Top\": 0.9103454947471619,\n                    \"Width\": 0.015330106019973755\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3143506348133087,\n                        \"Y\": 0.9103454947471619\n                    },\n                    {\n                        \"X\": 0.32967832684516907,\n                        \"Y\": 0.9103561639785767\n                    },\n                    {\n                        \"X\": 0.32968074083328247,\n                        \"Y\": 0.9228923916816711\n                    },\n                    {\n                        \"X\": 0.31435292959213257,\n                        \"Y\": 0.9228816628456116\n                    }\n                ]\n            },\n            \"Id\": \"83db29d2-030c-44f2-9228-b23b7c10fff7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0d1a354a-9537-4e2a-9719-c4c1c7a005ff\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.28361511230469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009818177670240402,\n                    \"Left\": 0.7359334230422974,\n                    \"Top\": 0.22072023153305054,\n                    \"Width\": 0.1259092539548874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7359334230422974,\n                        \"Y\": 0.22072023153305054\n                    },\n                    {\n                        \"X\": 0.8618377447128296,\n                        \"Y\": 0.22078506648540497\n                    },\n                    {\n                        \"X\": 0.861842691898346,\n                        \"Y\": 0.23053839802742004\n                    },\n                    {\n                        \"X\": 0.7359376549720764,\n                        \"Y\": 0.23047323524951935\n                    }\n                ]\n            },\n            \"Id\": \"ea322641-3f3c-4499-af30-e4710ed604a4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ed14e107-c85a-47d5-a78e-fbd3b73158c1\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"0fb2ae41-2f40-4a1f-aeb2-e9cd07eda188\",\n                        \"98f8ef7e-dedd-4b67-9b4b-01edb56be489\",\n                        \"c1b7b9d7-200e-4837-949d-330a736afe22\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.28361511230469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00998326763510704,\n                    \"Left\": 0.7389388084411621,\n                    \"Top\": 0.24367086589336395,\n                    \"Width\": 0.057961683720350266\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7389388084411621,\n                        \"Y\": 0.24367086589336395\n                    },\n                    {\n                        \"X\": 0.7968958020210266,\n                        \"Y\": 0.24370107054710388\n                    },\n                    {\n                        \"X\": 0.7969004511833191,\n                        \"Y\": 0.2536541223526001\n                    },\n                    {\n                        \"X\": 0.7389430999755859,\n                        \"Y\": 0.2536237835884094\n                    }\n                ]\n            },\n            \"Id\": \"ed14e107-c85a-47d5-a78e-fbd3b73158c1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0c603739-698c-46ee-8551-0bef5daa7a18\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.28105163574219,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011320540681481361,\n                    \"Left\": 0.4178929924964905,\n                    \"Top\": 0.4985629618167877,\n                    \"Width\": 0.12552234530448914\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4178929924964905,\n                        \"Y\": 0.4985629618167877\n                    },\n                    {\n                        \"X\": 0.5434117913246155,\n                        \"Y\": 0.4986368715763092\n                    },\n                    {\n                        \"X\": 0.543415367603302,\n                        \"Y\": 0.5098835229873657\n                    },\n                    {\n                        \"X\": 0.41789573431015015,\n                        \"Y\": 0.5098092555999756\n                    }\n                ]\n            },\n            \"Id\": \"7275ee2d-ae1b-4a85-a45d-d7427fd7c53e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7f198b0c-d4a1-4b3d-ba0e-5087925b962e\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"1d727035-560b-4dc4-9d5c-df0595efcb22\",\n                        \"a662ddc4-bb9f-494d-9d91-bfc24714dd91\",\n                        \"e6338039-9b56-4296-bec7-160cdfbe738d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.28105163574219,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.024881068617105484,\n                    \"Left\": 0.4118725657463074,\n                    \"Top\": 0.5137069821357727,\n                    \"Width\": 0.2013482004404068\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4118725657463074,\n                        \"Y\": 0.5137069821357727\n                    },\n                    {\n                        \"X\": 0.6132118701934814,\n                        \"Y\": 0.513826310634613\n                    },\n                    {\n                        \"X\": 0.613220751285553,\n                        \"Y\": 0.5385880470275879\n                    },\n                    {\n                        \"X\": 0.4118785262107849,\n                        \"Y\": 0.5384674072265625\n                    }\n                ]\n            },\n            \"Id\": \"7f198b0c-d4a1-4b3d-ba0e-5087925b962e\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.25765991210938,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009486780501902103,\n                    \"Left\": 0.1294274479150772,\n                    \"Top\": 0.22587482631206512,\n                    \"Width\": 0.01832183077931404\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1294274479150772,\n                        \"Y\": 0.22587482631206512\n                    },\n                    {\n                        \"X\": 0.14774848520755768,\n                        \"Y\": 0.22588428854942322\n                    },\n                    {\n                        \"X\": 0.14774927496910095,\n                        \"Y\": 0.23536160588264465\n                    },\n                    {\n                        \"X\": 0.12942814826965332,\n                        \"Y\": 0.23535209894180298\n                    }\n                ]\n            },\n            \"Id\": \"a37a59a7-7863-48bf-8fc0-192ac3bc42af\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9538b296-e1ca-4aa5-9784-c60c22ee75a9\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"f2c3ace7-b223-4e5e-ab1c-95921b66aa74\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.25765991210938,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012531861662864685,\n                    \"Left\": 0.11006436496973038,\n                    \"Top\": 0.22290201485157013,\n                    \"Width\": 0.01598224602639675\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11006436496973038,\n                        \"Y\": 0.22290201485157013\n                    },\n                    {\n                        \"X\": 0.12604571878910065,\n                        \"Y\": 0.22291025519371033\n                    },\n                    {\n                        \"X\": 0.12604661285877228,\n                        \"Y\": 0.23543387651443481\n                    },\n                    {\n                        \"X\": 0.11006513983011246,\n                        \"Y\": 0.23542557656764984\n                    }\n                ]\n            },\n            \"Id\": \"9538b296-e1ca-4aa5-9784-c60c22ee75a9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8c72b7fb-c0cc-4a0c-b785-293292cbefb0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.09040832519531,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011297564953565598,\n                    \"Left\": 0.3256336450576782,\n                    \"Top\": 0.6865085959434509,\n                    \"Width\": 0.09709538519382477\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3256336450576782,\n                        \"Y\": 0.6865085959434509\n                    },\n                    {\n                        \"X\": 0.42272624373435974,\n                        \"Y\": 0.6865705847740173\n                    },\n                    {\n                        \"X\": 0.4227290153503418,\n                        \"Y\": 0.697806179523468\n                    },\n                    {\n                        \"X\": 0.32563576102256775,\n                        \"Y\": 0.6977438926696777\n                    }\n                ]\n            },\n            \"Id\": \"5d15751a-04cd-499a-b346-ef67061c188e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"274d2247-e4d6-4e25-a6b1-965bab2f1d8a\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"e747b370-af9d-4872-b348-8f1618cf4f4a\",\n                        \"bc9c3727-be46-4e34-bc24-4694352feed4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.09040832519531,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009699731133878231,\n                    \"Left\": 0.32718366384506226,\n                    \"Top\": 0.7038590908050537,\n                    \"Width\": 0.06067783385515213\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.32718366384506226,\n                        \"Y\": 0.7038590908050537\n                    },\n                    {\n                        \"X\": 0.3878593146800995,\n                        \"Y\": 0.7038981318473816\n                    },\n                    {\n                        \"X\": 0.3878615200519562,\n                        \"Y\": 0.7135588526725769\n                    },\n                    {\n                        \"X\": 0.3271855115890503,\n                        \"Y\": 0.7135196924209595\n                    }\n                ]\n            },\n            \"Id\": \"274d2247-e4d6-4e25-a6b1-965bab2f1d8a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e52cfe5e-f7e6-4aa6-ae77-1931c7a5a38d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.06119537353516,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012516490183770657,\n                    \"Left\": 0.4993078410625458,\n                    \"Top\": 0.840774416923523,\n                    \"Width\": 0.28658056259155273\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4993078410625458,\n                        \"Y\": 0.840774416923523\n                    },\n                    {\n                        \"X\": 0.7858827114105225,\n                        \"Y\": 0.8409691452980042\n                    },\n                    {\n                        \"X\": 0.7858884334564209,\n                        \"Y\": 0.8532909154891968\n                    },\n                    {\n                        \"X\": 0.4993114471435547,\n                        \"Y\": 0.853095293045044\n                    }\n                ]\n            },\n            \"Id\": \"9f383bf7-f12a-4306-911a-5e09e6e39556\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ddf374a8-58f4-49a6-8e75-2c51da944c73\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"5c31b2df-bdff-4512-887d-0e5b83424505\",\n                        \"453e3b88-069f-4a12-9275-24cfe6c20934\",\n                        \"29fef3d1-15d5-48e3-a51a-fd2922d8f9e5\",\n                        \"b3427a41-67a8-4321-b9af-3096970a48cb\",\n                        \"81489e93-b636-4794-83d9-ca6be018d5b8\",\n                        \"df9f98b5-4e20-4953-a309-714d353dae73\",\n                        \"02ec58b7-3d58-4b1e-84b5-3a9b95273e91\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.06119537353516,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009925279766321182,\n                    \"Left\": 0.49962982535362244,\n                    \"Top\": 0.8585311770439148,\n                    \"Width\": 0.02440585009753704\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49962982535362244,\n                        \"Y\": 0.8585311770439148\n                    },\n                    {\n                        \"X\": 0.5240326523780823,\n                        \"Y\": 0.8585478663444519\n                    },\n                    {\n                        \"X\": 0.5240356922149658,\n                        \"Y\": 0.8684564232826233\n                    },\n                    {\n                        \"X\": 0.49963271617889404,\n                        \"Y\": 0.8684396743774414\n                    }\n                ]\n            },\n            \"Id\": \"ddf374a8-58f4-49a6-8e75-2c51da944c73\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"32e7cbfd-cd96-4b1c-952d-10be88f0b7dd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.05146026611328,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01276109553873539,\n                    \"Left\": 0.03029753640294075,\n                    \"Top\": 0.585303008556366,\n                    \"Width\": 0.5023334622383118\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03029753640294075,\n                        \"Y\": 0.585303008556366\n                    },\n                    {\n                        \"X\": 0.5326271057128906,\n                        \"Y\": 0.5856102705001831\n                    },\n                    {\n                        \"X\": 0.532630980014801,\n                        \"Y\": 0.5980640649795532\n                    },\n                    {\n                        \"X\": 0.030297722667455673,\n                        \"Y\": 0.5977551341056824\n                    }\n                ]\n            },\n            \"Id\": \"e517120d-ef34-4bd4-90af-5b65bf288c8b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ca4cbd20-6fb5-4eaa-913f-08a1768a9109\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"be004b45-7400-4386-b395-3bec18acb3b7\",\n                        \"0d15c540-60b1-461a-af16-ed2994881093\",\n                        \"767f2731-2b2a-434e-8dd0-f524531e866a\",\n                        \"99595545-0285-4892-816e-742761ccbda7\",\n                        \"aa0916bf-ed26-4472-b336-e987dad2195a\",\n                        \"94f48348-e369-4a6a-8e27-7fdf970a1a66\",\n                        \"1abc9ecc-953f-4108-bdf1-ae18550e7732\",\n                        \"1a817014-47f3-4321-bfd3-31808bed56e2\",\n                        \"dee704a1-6a0e-49d9-bbf0-9ec967c03180\",\n                        \"26dec191-2cb3-436b-89cc-16442833ea60\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.05146026611328,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012746003456413746,\n                    \"Left\": 0.03246334567666054,\n                    \"Top\": 0.6008517742156982,\n                    \"Width\": 0.10521930456161499\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03246334567666054,\n                        \"Y\": 0.6008517742156982\n                    },\n                    {\n                        \"X\": 0.13768164813518524,\n                        \"Y\": 0.6009165644645691\n                    },\n                    {\n                        \"X\": 0.13768264651298523,\n                        \"Y\": 0.6135977506637573\n                    },\n                    {\n                        \"X\": 0.03246355056762695,\n                        \"Y\": 0.6135326027870178\n                    }\n                ]\n            },\n            \"Id\": \"ca4cbd20-6fb5-4eaa-913f-08a1768a9109\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"124ef363-f342-4e3c-b8c9-3fe4ceb75af7\",\n                        \"3d291506-f023-41bb-a892-a4f5056889db\",\n                        \"b94ebca0-c270-4507-9be9-8e845b97b99e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.04852294921875,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009303804486989975,\n                    \"Left\": 0.8983761668205261,\n                    \"Top\": 0.6867866516113281,\n                    \"Width\": 0.06204826384782791\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8983761668205261,\n                        \"Y\": 0.6867866516113281\n                    },\n                    {\n                        \"X\": 0.9604191780090332,\n                        \"Y\": 0.686826229095459\n                    },\n                    {\n                        \"X\": 0.9604244232177734,\n                        \"Y\": 0.6960904598236084\n                    },\n                    {\n                        \"X\": 0.8983810544013977,\n                        \"Y\": 0.6960506439208984\n                    }\n                ]\n            },\n            \"Id\": \"3b243039-6f07-44fc-bed3-490cf094770a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"84b211c7-8dea-4020-8e40-5a0d8100cd04\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"5a9943c9-49cd-4df2-9a80-7e4adde28972\",\n                        \"876fc3f6-9aac-4dbd-bf52-5294efb0ac3d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.04852294921875,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009823904372751713,\n                    \"Left\": 0.8996986746788025,\n                    \"Top\": 0.7040596604347229,\n                    \"Width\": 0.023407455533742905\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8996986746788025,\n                        \"Y\": 0.7040596604347229\n                    },\n                    {\n                        \"X\": 0.9231008291244507,\n                        \"Y\": 0.7040746808052063\n                    },\n                    {\n                        \"X\": 0.9231061339378357,\n                        \"Y\": 0.7138835191726685\n                    },\n                    {\n                        \"X\": 0.899703860282898,\n                        \"Y\": 0.7138684391975403\n                    }\n                ]\n            },\n            \"Id\": \"84b211c7-8dea-4020-8e40-5a0d8100cd04\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3493e480-ce00-4d92-b437-40b64bf4354e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.0124282836914,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012381212785840034,\n                    \"Left\": 0.047556322067976,\n                    \"Top\": 0.7297475934028625,\n                    \"Width\": 0.27562108635902405\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.047556322067976,\n                        \"Y\": 0.7297475934028625\n                    },\n                    {\n                        \"X\": 0.3231751024723053,\n                        \"Y\": 0.7299267649650574\n                    },\n                    {\n                        \"X\": 0.32317739725112915,\n                        \"Y\": 0.7421287894248962\n                    },\n                    {\n                        \"X\": 0.04755662754178047,\n                        \"Y\": 0.7419487833976746\n                    }\n                ]\n            },\n            \"Id\": \"7d0ce921-4ac3-4a64-98ba-44945a7876b4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"84a0a164-7a07-42a7-9130-f5e123960d8e\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"564c8469-20dc-4ad7-aae3-deb11d6912ac\",\n                        \"f8c9db4d-29aa-468e-abeb-30e24eb5ac35\",\n                        \"96de72a9-61ce-4f86-9489-cee8b35d3e18\",\n                        \"6b3ec377-ccf7-4be3-b0d2-fa78010c3bf3\",\n                        \"d1fbf2b4-6629-433a-910f-59100abef55a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 92.0124282836914,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012473375536501408,\n                    \"Left\": 0.029526781290769577,\n                    \"Top\": 0.7285854816436768,\n                    \"Width\": 0.015657080337405205\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029526781290769577,\n                        \"Y\": 0.7285854816436768\n                    },\n                    {\n                        \"X\": 0.045183565467596054,\n                        \"Y\": 0.7285956740379333\n                    },\n                    {\n                        \"X\": 0.04518386349081993,\n                        \"Y\": 0.741058886051178\n                    },\n                    {\n                        \"X\": 0.029526961967349052,\n                        \"Y\": 0.7410486340522766\n                    }\n                ]\n            },\n            \"Id\": \"84a0a164-7a07-42a7-9130-f5e123960d8e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cb78270f-0a93-4bfa-8a2b-b2ceec79f3d2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.9319839477539,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009515047073364258,\n                    \"Left\": 0.3362801671028137,\n                    \"Top\": 0.18703600764274597,\n                    \"Width\": 0.07460268586874008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3362801671028137,\n                        \"Y\": 0.18703600764274597\n                    },\n                    {\n                        \"X\": 0.41088056564331055,\n                        \"Y\": 0.18707376718521118\n                    },\n                    {\n                        \"X\": 0.4108828604221344,\n                        \"Y\": 0.19655105471611023\n                    },\n                    {\n                        \"X\": 0.33628201484680176,\n                        \"Y\": 0.1965131014585495\n                    }\n                ]\n            },\n            \"Id\": \"7cb61c8c-2007-4f08-830f-0e4c1cb12288\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a7bb19f3-274e-443c-98eb-262c214c2442\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"55464df2-5ee7-4d38-8ab3-2fcae8954b50\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.9319839477539,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017789481207728386,\n                    \"Left\": 0.33400237560272217,\n                    \"Top\": 0.16603945195674896,\n                    \"Width\": 0.2843126654624939\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33400237560272217,\n                        \"Y\": 0.16603945195674896\n                    },\n                    {\n                        \"X\": 0.6183086633682251,\n                        \"Y\": 0.1661817878484726\n                    },\n                    {\n                        \"X\": 0.6183150410652161,\n                        \"Y\": 0.1838289350271225\n                    },\n                    {\n                        \"X\": 0.33400583267211914,\n                        \"Y\": 0.1836852729320526\n                    }\n                ]\n            },\n            \"Id\": \"a7bb19f3-274e-443c-98eb-262c214c2442\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.92710876464844,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.008998478762805462,\n                    \"Left\": 0.023501310497522354,\n                    \"Top\": 0.18720415234565735,\n                    \"Width\": 0.05261949077248573\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.023501310497522354,\n                        \"Y\": 0.18720415234565735\n                    },\n                    {\n                        \"X\": 0.07612042129039764,\n                        \"Y\": 0.18723079562187195\n                    },\n                    {\n                        \"X\": 0.07612080127000809,\n                        \"Y\": 0.19620263576507568\n                    },\n                    {\n                        \"X\": 0.023501407355070114,\n                        \"Y\": 0.19617587327957153\n                    }\n                ]\n            },\n            \"Id\": \"1d6941c1-e879-41c7-9b6b-b189eef95114\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8f64a1ab-71b0-4c31-974a-e49f48bcd6d0\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"058eb8ac-3a11-4682-9771-e1fbeeee90e3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.92710876464844,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.017777441069483757,\n                    \"Left\": 0.021561596542596817,\n                    \"Top\": 0.16603274643421173,\n                    \"Width\": 0.28315469622612\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.021561596542596817,\n                        \"Y\": 0.16603274643421173\n                    },\n                    {\n                        \"X\": 0.3047131597995758,\n                        \"Y\": 0.16617451608181\n                    },\n                    {\n                        \"X\": 0.3047162890434265,\n                        \"Y\": 0.18381018936634064\n                    },\n                    {\n                        \"X\": 0.021561767905950546,\n                        \"Y\": 0.1836671084165573\n                    }\n                ]\n            },\n            \"Id\": \"8f64a1ab-71b0-4c31-974a-e49f48bcd6d0\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.9229965209961,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011031079106032848,\n                    \"Left\": 0.49868908524513245,\n                    \"Top\": 0.6867969632148743,\n                    \"Width\": 0.12347828596830368\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49868908524513245,\n                        \"Y\": 0.6867969632148743\n                    },\n                    {\n                        \"X\": 0.6221634149551392,\n                        \"Y\": 0.6868757605552673\n                    },\n                    {\n                        \"X\": 0.6221674084663391,\n                        \"Y\": 0.6978279948234558\n                    },\n                    {\n                        \"X\": 0.4986923038959503,\n                        \"Y\": 0.6977488398551941\n                    }\n                ]\n            },\n            \"Id\": \"b4fe2105-0473-4860-9a7e-1848561a1326\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9d1d2f53-6105-48c0-b753-9008771d2955\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"86d71ba5-bce6-4eac-8f4c-3cc23b36d8e2\",\n                        \"37ef699c-5c14-4467-a0a7-feb4d324487b\",\n                        \"7b5b2457-7e12-4ef7-8838-960ec10b23b3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.9229965209961,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009912111796438694,\n                    \"Left\": 0.4996982216835022,\n                    \"Top\": 0.7038962841033936,\n                    \"Width\": 0.023107333108782768\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4996982216835022,\n                        \"Y\": 0.7038962841033936\n                    },\n                    {\n                        \"X\": 0.5228025317192078,\n                        \"Y\": 0.7039111852645874\n                    },\n                    {\n                        \"X\": 0.5228055715560913,\n                        \"Y\": 0.7138084173202515\n                    },\n                    {\n                        \"X\": 0.4997011423110962,\n                        \"Y\": 0.7137935161590576\n                    }\n                ]\n            },\n            \"Id\": \"9d1d2f53-6105-48c0-b753-9008771d2955\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e63d4318-3b48-45c7-b1b9-b5c20398a1c1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.86199951171875,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01237418781965971,\n                    \"Left\": 0.030012259259819984,\n                    \"Top\": 0.3491278886795044,\n                    \"Width\": 0.4052310883998871\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030012259259819984,\n                        \"Y\": 0.3491278886795044\n                    },\n                    {\n                        \"X\": 0.4352402687072754,\n                        \"Y\": 0.3493504226207733\n                    },\n                    {\n                        \"X\": 0.4352433681488037,\n                        \"Y\": 0.361502081155777\n                    },\n                    {\n                        \"X\": 0.03001243807375431,\n                        \"Y\": 0.361278235912323\n                    }\n                ]\n            },\n            \"Id\": \"e472959e-31da-446c-8b20-5943dcf0b261\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f6fdde89-a3b7-4aa7-acad-fe5d1f6d892d\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"71f65789-8a37-4b0b-b348-229262efe042\",\n                        \"bb8cb40f-298a-46aa-a0ec-f19d21e9b032\",\n                        \"16f50532-639c-40c9-9e77-48b1d60caab7\",\n                        \"b63c74f5-fbef-4491-b453-90bd6337db03\",\n                        \"ae2586e9-0893-4ef1-80e2-126b73b9b952\",\n                        \"8593db6e-6efb-4666-b21e-4a37b2ac1d2a\",\n                        \"08bdf8a0-782a-4061-8c5f-500842e184fe\",\n                        \"f162d413-5793-44b5-b1f0-6ee3a2d8bdc4\",\n                        \"a05590fd-4088-47a7-b00c-6172519b7969\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.86199951171875,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013089209794998169,\n                    \"Left\": 0.03238411992788315,\n                    \"Top\": 0.3733740448951721,\n                    \"Width\": 0.12498987466096878\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03238411992788315,\n                        \"Y\": 0.3733740448951721\n                    },\n                    {\n                        \"X\": 0.1573728322982788,\n                        \"Y\": 0.37344348430633545\n                    },\n                    {\n                        \"X\": 0.15737399458885193,\n                        \"Y\": 0.3864632546901703\n                    },\n                    {\n                        \"X\": 0.03238432854413986,\n                        \"Y\": 0.38639339804649353\n                    }\n                ]\n            },\n            \"Id\": \"f6fdde89-a3b7-4aa7-acad-fe5d1f6d892d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d372f018-096b-40f2-b1d6-db8acbcd061a\",\n                        \"927cf243-307f-4d5f-b815-eff3ec0f91f2\",\n                        \"53f962bd-0e36-4a9f-bae4-f08359c5beb4\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.7998046875,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011899668723344803,\n                    \"Left\": 0.601976752281189,\n                    \"Top\": 0.4424586892127991,\n                    \"Width\": 0.14728234708309174\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.601976752281189,\n                        \"Y\": 0.4424586892127991\n                    },\n                    {\n                        \"X\": 0.7492538690567017,\n                        \"Y\": 0.4425431787967682\n                    },\n                    {\n                        \"X\": 0.7492590546607971,\n                        \"Y\": 0.4543583393096924\n                    },\n                    {\n                        \"X\": 0.6019809246063232,\n                        \"Y\": 0.45427337288856506\n                    }\n                ]\n            },\n            \"Id\": \"0c218389-d5f2-4bc6-988d-612b7af3e01c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"809815ba-f28f-46dc-8523-a1f4f27527fa\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"72ecd161-ebce-47cb-b04e-203e04eed0f3\",\n                        \"dabf8745-8216-4b7a-ae8e-25e51ce8959f\",\n                        \"44da5d9b-ca9c-46df-bea9-d5e005d5bf65\",\n                        \"dd10b91d-ec74-479f-b241-cb7fd54af2b9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.7998046875,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014250053092837334,\n                    \"Left\": 0.6013349890708923,\n                    \"Top\": 0.46712085604667664,\n                    \"Width\": 0.16516326367855072\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6013349890708923,\n                        \"Y\": 0.46712085604667664\n                    },\n                    {\n                        \"X\": 0.7664918899536133,\n                        \"Y\": 0.46721670031547546\n                    },\n                    {\n                        \"X\": 0.7664982676506042,\n                        \"Y\": 0.4813709259033203\n                    },\n                    {\n                        \"X\": 0.6013399958610535,\n                        \"Y\": 0.48127445578575134\n                    }\n                ]\n            },\n            \"Id\": \"809815ba-f28f-46dc-8523-a1f4f27527fa\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e86dabaa-1017-4207-aaec-49a6e20c3e94\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.78884887695312,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011066250503063202,\n                    \"Left\": 0.6320961713790894,\n                    \"Top\": 0.6868039965629578,\n                    \"Width\": 0.1533697098493576\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6320961713790894,\n                        \"Y\": 0.6868039965629578\n                    },\n                    {\n                        \"X\": 0.7854608297348022,\n                        \"Y\": 0.6869019269943237\n                    },\n                    {\n                        \"X\": 0.7854658961296082,\n                        \"Y\": 0.6978702545166016\n                    },\n                    {\n                        \"X\": 0.6321002840995789,\n                        \"Y\": 0.6977718472480774\n                    }\n                ]\n            },\n            \"Id\": \"16e6b657-04b4-4605-a283-1830c92628ed\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b8af1d3b-5b3e-4897-957b-060b7dd28589\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"4c87574e-15d4-4f70-b7a0-c4d390170f25\",\n                        \"91be6586-7695-4835-a4b6-b0f83f74fd0b\",\n                        \"9458017c-5c2b-438b-9c93-acd34e5efaa9\",\n                        \"71dc1374-b943-45a4-994f-87bc39e332ec\",\n                        \"2e6f8ed5-68d2-4457-b744-1826c60491a7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.78884887695312,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009806687012314796,\n                    \"Left\": 0.6330440640449524,\n                    \"Top\": 0.7039269208908081,\n                    \"Width\": 0.023800762370228767\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6330440640449524,\n                        \"Y\": 0.7039269208908081\n                    },\n                    {\n                        \"X\": 0.6568410396575928,\n                        \"Y\": 0.7039422392845154\n                    },\n                    {\n                        \"X\": 0.6568447947502136,\n                        \"Y\": 0.7137336134910583\n                    },\n                    {\n                        \"X\": 0.6330476999282837,\n                        \"Y\": 0.7137182354927063\n                    }\n                ]\n            },\n            \"Id\": \"b8af1d3b-5b3e-4897-957b-060b7dd28589\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"acb1b2cd-9848-4cb2-93f8-30d8d03f3ca3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.78784942626953,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011931437999010086,\n                    \"Left\": 0.7762572765350342,\n                    \"Top\": 0.4422032833099365,\n                    \"Width\": 0.06429235637187958\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7762572765350342,\n                        \"Y\": 0.4422032833099365\n                    },\n                    {\n                        \"X\": 0.8405437469482422,\n                        \"Y\": 0.4422401487827301\n                    },\n                    {\n                        \"X\": 0.840549647808075,\n                        \"Y\": 0.4541347026824951\n                    },\n                    {\n                        \"X\": 0.7762627005577087,\n                        \"Y\": 0.4540976285934448\n                    }\n                ]\n            },\n            \"Id\": \"717cd9a9-0b34-4d6a-9870-63a5e8769b09\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"091e7c79-5c00-4fb9-8d44-bb0ca0df8e94\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"eeecfbef-7cbc-42a9-95e0-ae85115a48c6\",\n                        \"b0319acd-f2b4-4c35-815a-d9f04edfc874\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.78784942626953,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01492991205304861,\n                    \"Left\": 0.777456521987915,\n                    \"Top\": 0.46706175804138184,\n                    \"Width\": 0.18362481892108917\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.777456521987915,\n                        \"Y\": 0.46706175804138184\n                    },\n                    {\n                        \"X\": 0.9610729813575745,\n                        \"Y\": 0.46716830134391785\n                    },\n                    {\n                        \"X\": 0.961081326007843,\n                        \"Y\": 0.4819916784763336\n                    },\n                    {\n                        \"X\": 0.7774632573127747,\n                        \"Y\": 0.4818843901157379\n                    }\n                ]\n            },\n            \"Id\": \"091e7c79-5c00-4fb9-8d44-bb0ca0df8e94\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cd0753be-2137-4f00-b3c5-361ea3723590\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.74455261230469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009580090641975403,\n                    \"Left\": 0.8585100173950195,\n                    \"Top\": 0.9116309285163879,\n                    \"Width\": 0.028263458982110023\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8585100173950195,\n                        \"Y\": 0.9116309285163879\n                    },\n                    {\n                        \"X\": 0.8867685198783875,\n                        \"Y\": 0.9116505980491638\n                    },\n                    {\n                        \"X\": 0.8867734670639038,\n                        \"Y\": 0.9212110042572021\n                    },\n                    {\n                        \"X\": 0.8585148453712463,\n                        \"Y\": 0.9211912155151367\n                    }\n                ]\n            },\n            \"Id\": \"d0d1fb6a-bba0-40b4-8b2a-49718abfa6d7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0d0bce6f-32ab-4bde-9b91-bd0b99f03257\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"23480943-6636-4560-a541-4856d5930669\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.74455261230469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012823562137782574,\n                    \"Left\": 0.8390704989433289,\n                    \"Top\": 0.9098194241523743,\n                    \"Width\": 0.016140596941113472\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8390704989433289,\n                        \"Y\": 0.9098194241523743\n                    },\n                    {\n                        \"X\": 0.855204701423645,\n                        \"Y\": 0.9098306894302368\n                    },\n                    {\n                        \"X\": 0.8552111387252808,\n                        \"Y\": 0.9226430058479309\n                    },\n                    {\n                        \"X\": 0.839076817035675,\n                        \"Y\": 0.9226316809654236\n                    }\n                ]\n            },\n            \"Id\": \"0d0bce6f-32ab-4bde-9b91-bd0b99f03257\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ac011333-2403-43c4-86cc-49aa6271e9b8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.73729705810547,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009547267109155655,\n                    \"Left\": 0.02915404736995697,\n                    \"Top\": 0.26775428652763367,\n                    \"Width\": 0.045579444617033005\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02915404736995697,\n                        \"Y\": 0.26775428652763367\n                    },\n                    {\n                        \"X\": 0.07473310083150864,\n                        \"Y\": 0.26777830719947815\n                    },\n                    {\n                        \"X\": 0.07473349571228027,\n                        \"Y\": 0.277301549911499\n                    },\n                    {\n                        \"X\": 0.029154183343052864,\n                        \"Y\": 0.2772773802280426\n                    }\n                ]\n            },\n            \"Id\": \"e9b052fe-5777-418a-853d-da3854b1e3ab\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6df0a5fd-d89b-41f1-9dbf-3a7dac74af37\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"cf7a3735-8d85-4b77-8a36-712382047a66\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.73729705810547,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012021028436720371,\n                    \"Left\": 0.029986359179019928,\n                    \"Top\": 0.28227129578590393,\n                    \"Width\": 0.10363456606864929\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029986359179019928,\n                        \"Y\": 0.28227129578590393\n                    },\n                    {\n                        \"X\": 0.1336200088262558,\n                        \"Y\": 0.2823263704776764\n                    },\n                    {\n                        \"X\": 0.13362091779708862,\n                        \"Y\": 0.2942923307418823\n                    },\n                    {\n                        \"X\": 0.029986536130309105,\n                        \"Y\": 0.2942369282245636\n                    }\n                ]\n            },\n            \"Id\": \"6df0a5fd-d89b-41f1-9dbf-3a7dac74af37\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"af1867cd-15d1-4c54-9787-c9eb83a23624\",\n                        \"67343f6b-e1fe-4c4a-9806-646a3183fd18\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.59361267089844,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011770576238632202,\n                    \"Left\": 0.04694978892803192,\n                    \"Top\": 0.7668861150741577,\n                    \"Width\": 0.06056671217083931\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04694978892803192,\n                        \"Y\": 0.7668861150741577\n                    },\n                    {\n                        \"X\": 0.10751578956842422,\n                        \"Y\": 0.766926109790802\n                    },\n                    {\n                        \"X\": 0.10751650482416153,\n                        \"Y\": 0.7786567211151123\n                    },\n                    {\n                        \"X\": 0.0469500795006752,\n                        \"Y\": 0.7786165475845337\n                    }\n                ]\n            },\n            \"Id\": \"1a5dba8d-97ee-4ec8-ae8e-f2254dd09084\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c433f0b9-016c-417b-a347-fa538d79b1dc\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"37f31bfe-a90b-444b-bc2f-1d051b5304e0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.59361267089844,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012355096638202667,\n                    \"Left\": 0.029285605996847153,\n                    \"Top\": 0.7652297616004944,\n                    \"Width\": 0.015315459109842777\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029285605996847153,\n                        \"Y\": 0.7652297616004944\n                    },\n                    {\n                        \"X\": 0.044600777328014374,\n                        \"Y\": 0.7652398347854614\n                    },\n                    {\n                        \"X\": 0.044601064175367355,\n                        \"Y\": 0.7775848507881165\n                    },\n                    {\n                        \"X\": 0.02928578108549118,\n                        \"Y\": 0.7775747179985046\n                    }\n                ]\n            },\n            \"Id\": \"c433f0b9-016c-417b-a347-fa538d79b1dc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c1a72ca9-d81b-48e7-8781-9e48eb072680\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.56062316894531,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012466484680771828,\n                    \"Left\": 0.04803701490163803,\n                    \"Top\": 0.747657835483551,\n                    \"Width\": 0.27596017718315125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.04803701490163803,\n                        \"Y\": 0.747657835483551\n                    },\n                    {\n                        \"X\": 0.32399487495422363,\n                        \"Y\": 0.7478384971618652\n                    },\n                    {\n                        \"X\": 0.3239971995353699,\n                        \"Y\": 0.7601242661476135\n                    },\n                    {\n                        \"X\": 0.0480373278260231,\n                        \"Y\": 0.7599427103996277\n                    }\n                ]\n            },\n            \"Id\": \"74b9a81f-b142-4cc0-a62b-158afd6ec0d3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a7def805-619f-47dd-97c9-e5d5af92aff0\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"64182418-17a8-46e4-9b80-625e8df8d842\",\n                        \"5be13eb5-2bc0-4149-afee-7b64db7ea03d\",\n                        \"6c43dfbb-e697-4cee-943d-341aa7f72b2e\",\n                        \"fa89a2de-52fc-4f89-bd52-5e50efe12fbd\",\n                        \"74005a8c-851c-4d08-a5d5-2b5e0aa30447\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.56062316894531,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012249920517206192,\n                    \"Left\": 0.029673999175429344,\n                    \"Top\": 0.747217059135437,\n                    \"Width\": 0.015313082374632359\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029673999175429344,\n                        \"Y\": 0.747217059135437\n                    },\n                    {\n                        \"X\": 0.044986795634031296,\n                        \"Y\": 0.7472270727157593\n                    },\n                    {\n                        \"X\": 0.04498708248138428,\n                        \"Y\": 0.7594669461250305\n                    },\n                    {\n                        \"X\": 0.02967417798936367,\n                        \"Y\": 0.7594568729400635\n                    }\n                ]\n            },\n            \"Id\": \"a7def805-619f-47dd-97c9-e5d5af92aff0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"1a3df70d-325d-4fff-8d09-ea073fc81b5d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.54304504394531,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009335524402558804,\n                    \"Left\": 0.1300567239522934,\n                    \"Top\": 0.23875847458839417,\n                    \"Width\": 0.026163088157773018\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1300567239522934,\n                        \"Y\": 0.23875847458839417\n                    },\n                    {\n                        \"X\": 0.1562189757823944,\n                        \"Y\": 0.23877206444740295\n                    },\n                    {\n                        \"X\": 0.15621981024742126,\n                        \"Y\": 0.24809399247169495\n                    },\n                    {\n                        \"X\": 0.1300574094057083,\n                        \"Y\": 0.2480803281068802\n                    }\n                ]\n            },\n            \"Id\": \"66143521-ffb1-4d03-ae0f-d52a47e38f2b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"57d3a5b2-d2d8-4696-a471-f1d628d47706\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"7e03f76f-5c06-4236-a293-e8139aa93e27\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.54304504394531,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012658604420721531,\n                    \"Left\": 0.10995087027549744,\n                    \"Top\": 0.23800641298294067,\n                    \"Width\": 0.015978978946805\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.10995087027549744,\n                        \"Y\": 0.23800641298294067\n                    },\n                    {\n                        \"X\": 0.12592893838882446,\n                        \"Y\": 0.23801471292972565\n                    },\n                    {\n                        \"X\": 0.1259298473596573,\n                        \"Y\": 0.25066500902175903\n                    },\n                    {\n                        \"X\": 0.10995165258646011,\n                        \"Y\": 0.2506566643714905\n                    }\n                ]\n            },\n            \"Id\": \"57d3a5b2-d2d8-4696-a471-f1d628d47706\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"fc17235f-a050-4a71-a1b2-9b43db7bb5ef\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.52315521240234,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011424407362937927,\n                    \"Left\": 0.1611924022436142,\n                    \"Top\": 0.6865177750587463,\n                    \"Width\": 0.15680775046348572\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1611924022436142,\n                        \"Y\": 0.6865177750587463\n                    },\n                    {\n                        \"X\": 0.3179980516433716,\n                        \"Y\": 0.6866178512573242\n                    },\n                    {\n                        \"X\": 0.3180001378059387,\n                        \"Y\": 0.6979421377182007\n                    },\n                    {\n                        \"X\": 0.16119344532489777,\n                        \"Y\": 0.6978415846824646\n                    }\n                ]\n            },\n            \"Id\": \"ce0e3dcc-ffb3-4dfb-9d04-1db61f600199\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"30c35fc8-f879-4edb-b8b1-c2bbed6c6212\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"7fffa2c2-9061-43d8-950b-38a6cb1b76c5\",\n                        \"a670e9dc-5c3e-4e4e-b79c-0f02123c2444\",\n                        \"4d997719-3c22-4b3d-a89b-7a3f6016ad80\",\n                        \"fdcc3e16-4e41-4a69-a308-091532ff397d\",\n                        \"6fd77af1-9cd3-424d-8058-6193774a6ab5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.52315521240234,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010149738751351833,\n                    \"Left\": 0.16375967860221863,\n                    \"Top\": 0.7038282155990601,\n                    \"Width\": 0.10549814254045486\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.16375967860221863,\n                        \"Y\": 0.7038282155990601\n                    },\n                    {\n                        \"X\": 0.26925623416900635,\n                        \"Y\": 0.7038961052894592\n                    },\n                    {\n                        \"X\": 0.2692578136920929,\n                        \"Y\": 0.7139779925346375\n                    },\n                    {\n                        \"X\": 0.16376061737537384,\n                        \"Y\": 0.7139098644256592\n                    }\n                ]\n            },\n            \"Id\": \"30c35fc8-f879-4edb-b8b1-c2bbed6c6212\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ecda1df9-6957-4f38-8677-4d91b6704edc\",\n                        \"55e35b5d-0d40-4660-917d-e5de345df8f3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.18484497070312,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009356043301522732,\n                    \"Left\": 0.3890622556209564,\n                    \"Top\": 0.7854276299476624,\n                    \"Width\": 0.028009571135044098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3890622556209564,\n                        \"Y\": 0.7854276299476624\n                    },\n                    {\n                        \"X\": 0.41706955432891846,\n                        \"Y\": 0.7854462265968323\n                    },\n                    {\n                        \"X\": 0.4170718193054199,\n                        \"Y\": 0.7947836518287659\n                    },\n                    {\n                        \"X\": 0.38906437158584595,\n                        \"Y\": 0.7947649955749512\n                    }\n                ]\n            },\n            \"Id\": \"ab114484-a3c5-4e4e-921e-6fb1e25caabb\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"19e360a0-ba37-4da8-9a3d-bee8118c2e76\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"72a2e13a-32f0-469a-81dd-ca21a4525d40\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.18484497070312,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011755715124309063,\n                    \"Left\": 0.3696996569633484,\n                    \"Top\": 0.7835684418678284,\n                    \"Width\": 0.016144784167408943\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3696996569633484,\n                        \"Y\": 0.7835684418678284\n                    },\n                    {\n                        \"X\": 0.38584181666374207,\n                        \"Y\": 0.7835791707038879\n                    },\n                    {\n                        \"X\": 0.3858444392681122,\n                        \"Y\": 0.7953241467475891\n                    },\n                    {\n                        \"X\": 0.36970219016075134,\n                        \"Y\": 0.7953133583068848\n                    }\n                ]\n            },\n            \"Id\": \"19e360a0-ba37-4da8-9a3d-bee8118c2e76\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"35f7dece-3249-430f-8b83-b2f0df45f702\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.06620788574219,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009410002268850803,\n                    \"Left\": 0.44422560930252075,\n                    \"Top\": 0.9117938876152039,\n                    \"Width\": 0.045383431017398834\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44422560930252075,\n                        \"Y\": 0.9117938876152039\n                    },\n                    {\n                        \"X\": 0.4896063506603241,\n                        \"Y\": 0.9118255376815796\n                    },\n                    {\n                        \"X\": 0.489609032869339,\n                        \"Y\": 0.9212038516998291\n                    },\n                    {\n                        \"X\": 0.44422805309295654,\n                        \"Y\": 0.9211720824241638\n                    }\n                ]\n            },\n            \"Id\": \"2b9ef5ab-8db0-48dc-bbc3-6507864ff7b9\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9efc52f7-d23c-4928-9cb3-1c6c53a796a4\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"42c81ab3-aabb-4bea-b9d8-919d5480d1b3\",\n                        \"d9b93050-31f7-433e-be80-105ea3bd9567\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 91.06620788574219,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011809999123215675,\n                    \"Left\": 0.41802307963371277,\n                    \"Top\": 0.910747230052948,\n                    \"Width\": 0.022553829476237297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41802307963371277,\n                        \"Y\": 0.910747230052948\n                    },\n                    {\n                        \"X\": 0.44057390093803406,\n                        \"Y\": 0.9107629656791687\n                    },\n                    {\n                        \"X\": 0.4405769109725952,\n                        \"Y\": 0.9225572347640991\n                    },\n                    {\n                        \"X\": 0.4180259704589844,\n                        \"Y\": 0.9225414395332336\n                    }\n                ]\n            },\n            \"Id\": \"9efc52f7-d23c-4928-9cb3-1c6c53a796a4\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"082c43e6-e36c-4c07-9ddd-7c793aa0430d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.90906524658203,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009573203511536121,\n                    \"Left\": 0.8029372096061707,\n                    \"Top\": 0.7855893969535828,\n                    \"Width\": 0.02642039768397808\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8029372096061707,\n                        \"Y\": 0.7855893969535828\n                    },\n                    {\n                        \"X\": 0.8293529748916626,\n                        \"Y\": 0.7856069803237915\n                    },\n                    {\n                        \"X\": 0.8293576240539551,\n                        \"Y\": 0.7951626181602478\n                    },\n                    {\n                        \"X\": 0.8029416799545288,\n                        \"Y\": 0.7951449751853943\n                    }\n                ]\n            },\n            \"Id\": \"b3b30f22-b274-414e-a0b3-d57410510444\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"a2b2961b-a1a1-4a34-ab4f-eee311b5de6c\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"8d0e59d0-95a8-499d-98ef-6aee793b3a7e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.90906524658203,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011865414679050446,\n                    \"Left\": 0.7840280532836914,\n                    \"Top\": 0.7835533618927002,\n                    \"Width\": 0.015409959480166435\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7840280532836914,\n                        \"Y\": 0.7835533618927002\n                    },\n                    {\n                        \"X\": 0.7994324564933777,\n                        \"Y\": 0.7835635542869568\n                    },\n                    {\n                        \"X\": 0.7994379997253418,\n                        \"Y\": 0.7954187393188477\n                    },\n                    {\n                        \"X\": 0.784033477306366,\n                        \"Y\": 0.7954084873199463\n                    }\n                ]\n            },\n            \"Id\": \"a2b2961b-a1a1-4a34-ab4f-eee311b5de6c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f507f4cb-4727-4cdf-9fff-6f4a4bf379e9\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.77210235595703,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00967428833246231,\n                    \"Left\": 0.3063039183616638,\n                    \"Top\": 0.26792454719543457,\n                    \"Width\": 0.08345140516757965\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3063039183616638,\n                        \"Y\": 0.26792454719543457\n                    },\n                    {\n                        \"X\": 0.389753133058548,\n                        \"Y\": 0.2679685950279236\n                    },\n                    {\n                        \"X\": 0.3897553086280823,\n                        \"Y\": 0.27759885787963867\n                    },\n                    {\n                        \"X\": 0.3063056170940399,\n                        \"Y\": 0.27755460143089294\n                    }\n                ]\n            },\n            \"Id\": \"37370faf-fd2e-4271-8435-b60d1c475a72\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b950e96b-9cfc-4f3e-a395-aae2e66c09ea\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"dc23cf66-828c-4127-86b5-81bd396cbe7b\",\n                        \"ea988eb7-eeb7-478a-b196-07909a018af6\",\n                        \"d4d63007-3484-4635-99c1-c6ef9d7f6f40\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.77210235595703,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009983538649976254,\n                    \"Left\": 0.34803348779678345,\n                    \"Top\": 0.28287258744239807,\n                    \"Width\": 0.023451123386621475\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34803348779678345,\n                        \"Y\": 0.28287258744239807\n                    },\n                    {\n                        \"X\": 0.3714824318885803,\n                        \"Y\": 0.28288504481315613\n                    },\n                    {\n                        \"X\": 0.3714846074581146,\n                        \"Y\": 0.2928561270236969\n                    },\n                    {\n                        \"X\": 0.3480354845523834,\n                        \"Y\": 0.2928435802459717\n                    }\n                ]\n            },\n            \"Id\": \"b950e96b-9cfc-4f3e-a395-aae2e66c09ea\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3aa25c4f-88af-49de-83f7-5a55b02b7449\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.57080078125,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009927595034241676,\n                    \"Left\": 0.8774564266204834,\n                    \"Top\": 0.3495030105113983,\n                    \"Width\": 0.05679222568869591\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8774564266204834,\n                        \"Y\": 0.3495030105113983\n                    },\n                    {\n                        \"X\": 0.9342432022094727,\n                        \"Y\": 0.34953421354293823\n                    },\n                    {\n                        \"X\": 0.934248685836792,\n                        \"Y\": 0.35943061113357544\n                    },\n                    {\n                        \"X\": 0.8774615526199341,\n                        \"Y\": 0.35939928889274597\n                    }\n                ]\n            },\n            \"Id\": \"8d370892-0a47-466d-a6bb-dfe98b8677f0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f9fd7efd-964e-4ea3-b2c5-db85fd86687a\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"f20c98f7-f788-427f-87f8-d7bb566d0733\",\n                        \"b7a1fb71-6bcb-4846-ad05-2384a5c6c049\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.57080078125,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010184279642999172,\n                    \"Left\": 0.8952784538269043,\n                    \"Top\": 0.37136155366897583,\n                    \"Width\": 0.030822312459349632\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8952784538269043,\n                        \"Y\": 0.37136155366897583\n                    },\n                    {\n                        \"X\": 0.9260952472686768,\n                        \"Y\": 0.37137866020202637\n                    },\n                    {\n                        \"X\": 0.9261007905006409,\n                        \"Y\": 0.3815458118915558\n                    },\n                    {\n                        \"X\": 0.8952838182449341,\n                        \"Y\": 0.3815286457538605\n                    }\n                ]\n            },\n            \"Id\": \"f9fd7efd-964e-4ea3-b2c5-db85fd86687a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bea771c7-9e8b-4589-b3b3-e984f48dafa8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.39868927001953,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012075233273208141,\n                    \"Left\": 0.5166357159614563,\n                    \"Top\": 0.7299612164497375,\n                    \"Width\": 0.2752518653869629\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5166357159614563,\n                        \"Y\": 0.7299612164497375\n                    },\n                    {\n                        \"X\": 0.7918820381164551,\n                        \"Y\": 0.7301401495933533\n                    },\n                    {\n                        \"X\": 0.7918875813484192,\n                        \"Y\": 0.7420364618301392\n                    },\n                    {\n                        \"X\": 0.5166393518447876,\n                        \"Y\": 0.7418566942214966\n                    }\n                ]\n            },\n            \"Id\": \"d1c48659-cf34-43dc-8eed-a06e3c947d10\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"09def69b-508b-49d0-b6d9-2416d0e58fd0\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"63a06206-01b0-4168-a783-ecd9b5ada195\",\n                        \"c1f7591c-a3bd-43a9-8876-79ee82d024c9\",\n                        \"a721fa7c-50aa-4c7d-985b-08a42bcbadf7\",\n                        \"39b1ac54-eff2-453d-a159-2d0e1d6689d4\",\n                        \"b3a0dde6-0461-4eb5-81bd-6c9e62227548\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.39868927001953,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01224530953913927,\n                    \"Left\": 0.4984997808933258,\n                    \"Top\": 0.7287169694900513,\n                    \"Width\": 0.016211053356528282\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4984997808933258,\n                        \"Y\": 0.7287169694900513\n                    },\n                    {\n                        \"X\": 0.5147071480751038,\n                        \"Y\": 0.7287275195121765\n                    },\n                    {\n                        \"X\": 0.5147108435630798,\n                        \"Y\": 0.7409623265266418\n                    },\n                    {\n                        \"X\": 0.49850332736968994,\n                        \"Y\": 0.7409517168998718\n                    }\n                ]\n            },\n            \"Id\": \"09def69b-508b-49d0-b6d9-2416d0e58fd0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8b50882a-38c0-46db-9784-a67fbe2c68df\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.18688201904297,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01149229146540165,\n                    \"Left\": 0.03021814115345478,\n                    \"Top\": 0.6866747140884399,\n                    \"Width\": 0.12392661720514297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03021814115345478,\n                        \"Y\": 0.6866747140884399\n                    },\n                    {\n                        \"X\": 0.15414375066757202,\n                        \"Y\": 0.6867538690567017\n                    },\n                    {\n                        \"X\": 0.1541447639465332,\n                        \"Y\": 0.6981670260429382\n                    },\n                    {\n                        \"X\": 0.03021831065416336,\n                        \"Y\": 0.6980875134468079\n                    }\n                ]\n            },\n            \"Id\": \"f9b39419-d085-4efb-8bea-2026ab694823\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"14a0cf4f-27d3-49c6-b51c-e7c9d058b5ef\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"21967552-743a-48a1-b1d6-ef7a3f748dd1\",\n                        \"5f078e06-ce86-47d2-b32e-1486b5615076\",\n                        \"a30afe4d-e244-4744-bc00-da22f81a8146\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.18688201904297,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01027700211852789,\n                    \"Left\": 0.03023524582386017,\n                    \"Top\": 0.7038211226463318,\n                    \"Width\": 0.07821439206600189\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03023524582386017,\n                        \"Y\": 0.7038211226463318\n                    },\n                    {\n                        \"X\": 0.10844901204109192,\n                        \"Y\": 0.7038714289665222\n                    },\n                    {\n                        \"X\": 0.10844963788986206,\n                        \"Y\": 0.7140980958938599\n                    },\n                    {\n                        \"X\": 0.030235396698117256,\n                        \"Y\": 0.7140476107597351\n                    }\n                ]\n            },\n            \"Id\": \"14a0cf4f-27d3-49c6-b51c-e7c9d058b5ef\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"957ea42a-0c89-4cb6-a8f7-902184f627ba\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.13526916503906,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011676325462758541,\n                    \"Left\": 0.4976818561553955,\n                    \"Top\": 0.9115177392959595,\n                    \"Width\": 0.22896438837051392\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4976818561553955,\n                        \"Y\": 0.9115177392959595\n                    },\n                    {\n                        \"X\": 0.7266413569450378,\n                        \"Y\": 0.9116775393486023\n                    },\n                    {\n                        \"X\": 0.7266462445259094,\n                        \"Y\": 0.9231940507888794\n                    },\n                    {\n                        \"X\": 0.49768519401550293,\n                        \"Y\": 0.9230335354804993\n                    }\n                ]\n            },\n            \"Id\": \"da6b4455-66c7-4fab-91ba-79cea174b96e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dc0758f3-87b1-4af2-8b26-f8a5d9a85e48\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"a2ba5ef2-e6d6-4146-9a10-0e4edc546441\",\n                        \"5f6125ab-69aa-46f0-b13c-4828cd1b6ef4\",\n                        \"36519308-af01-418c-b4bc-d07da38f2d2c\",\n                        \"e2736f86-3661-4522-8021-9480ed621ada\",\n                        \"2d9b2a9c-0d4b-4b46-8483-a563dc137850\",\n                        \"b9cdbfea-adff-4b7d-9233-29afccb381e7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 90.13526916503906,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009542201645672321,\n                    \"Left\": 0.49404826760292053,\n                    \"Top\": 0.9280534386634827,\n                    \"Width\": 0.024452632293105125\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49404826760292053,\n                        \"Y\": 0.9280534386634827\n                    },\n                    {\n                        \"X\": 0.5184980034828186,\n                        \"Y\": 0.928070604801178\n                    },\n                    {\n                        \"X\": 0.5185009241104126,\n                        \"Y\": 0.9375956654548645\n                    },\n                    {\n                        \"X\": 0.4940510094165802,\n                        \"Y\": 0.9375784397125244\n                    }\n                ]\n            },\n            \"Id\": \"dc0758f3-87b1-4af2-8b26-f8a5d9a85e48\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0e8d85a4-e8e0-442a-aa97-cbc8c0168c86\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.6977767944336,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00935810524970293,\n                    \"Left\": 0.9011482000350952,\n                    \"Top\": 0.4124971032142639,\n                    \"Width\": 0.062252238392829895\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9011482000350952,\n                        \"Y\": 0.4124971032142639\n                    },\n                    {\n                        \"X\": 0.9633951783180237,\n                        \"Y\": 0.41253232955932617\n                    },\n                    {\n                        \"X\": 0.9634004235267639,\n                        \"Y\": 0.42185521125793457\n                    },\n                    {\n                        \"X\": 0.9011531472206116,\n                        \"Y\": 0.4218198359012604\n                    }\n                ]\n            },\n            \"Id\": \"d519cc99-9626-474a-9e82-b8643d3bcd23\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"2d4a66b3-aa3d-4534-aa6c-8eedf5fc1d4e\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"bd08bd33-2ce6-4bb3-8892-e4abba841256\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.6977767944336,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01233168039470911,\n                    \"Left\": 0.8829134106636047,\n                    \"Top\": 0.4101543128490448,\n                    \"Width\": 0.015203435905277729\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8829134106636047,\n                        \"Y\": 0.4101543128490448\n                    },\n                    {\n                        \"X\": 0.8981103301048279,\n                        \"Y\": 0.41016289591789246\n                    },\n                    {\n                        \"X\": 0.8981168270111084,\n                        \"Y\": 0.42248600721359253\n                    },\n                    {\n                        \"X\": 0.8829197883605957,\n                        \"Y\": 0.4224773645401001\n                    }\n                ]\n            },\n            \"Id\": \"2d4a66b3-aa3d-4534-aa6c-8eedf5fc1d4e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d1212686-2a56-4884-b45e-3798a751ff32\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.6102523803711,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009152869693934917,\n                    \"Left\": 0.4289017915725708,\n                    \"Top\": 0.6869240999221802,\n                    \"Width\": 0.06061820313334465\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4289017915725708,\n                        \"Y\": 0.6869240999221802\n                    },\n                    {\n                        \"X\": 0.4895173907279968,\n                        \"Y\": 0.6869628429412842\n                    },\n                    {\n                        \"X\": 0.48952001333236694,\n                        \"Y\": 0.6960769891738892\n                    },\n                    {\n                        \"X\": 0.42890408635139465,\n                        \"Y\": 0.6960381269454956\n                    }\n                ]\n            },\n            \"Id\": \"16137eb0-2a48-4192-abab-56e29ac48615\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b1d3945e-96fc-40d1-bd8a-9e3eabd48247\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"7fc4a198-6e82-45a0-a9c9-6930f8e0c0b5\",\n                        \"184ec93a-965f-4369-9773-c1588f0923d3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.6102523803711,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00957465823739767,\n                    \"Left\": 0.43273815512657166,\n                    \"Top\": 0.703980565071106,\n                    \"Width\": 0.014929702505469322\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.43273815512657166,\n                        \"Y\": 0.703980565071106\n                    },\n                    {\n                        \"X\": 0.44766536355018616,\n                        \"Y\": 0.7039901614189148\n                    },\n                    {\n                        \"X\": 0.4476678669452667,\n                        \"Y\": 0.7135552167892456\n                    },\n                    {\n                        \"X\": 0.43274056911468506,\n                        \"Y\": 0.713545560836792\n                    }\n                ]\n            },\n            \"Id\": \"b1d3945e-96fc-40d1-bd8a-9e3eabd48247\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4f5ac4bc-0071-4200-a1d1-5747feefe542\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.48762512207031,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011495789512991905,\n                    \"Left\": 0.34808531403541565,\n                    \"Top\": 0.767508864402771,\n                    \"Width\": 0.030699346214532852\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34808531403541565,\n                        \"Y\": 0.767508864402771\n                    },\n                    {\n                        \"X\": 0.37878212332725525,\n                        \"Y\": 0.7675291299819946\n                    },\n                    {\n                        \"X\": 0.3787846565246582,\n                        \"Y\": 0.779004693031311\n                    },\n                    {\n                        \"X\": 0.3480876386165619,\n                        \"Y\": 0.7789843082427979\n                    }\n                ]\n            },\n            \"Id\": \"63bcf31b-eee7-4193-bd40-ef595d45250f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b25b78eb-83f0-4a52-bb17-acc9cd3f4100\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"f0bdd729-9581-4c9e-9b8c-57895922387a\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.48762512207031,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00985303521156311,\n                    \"Left\": 0.4216562807559967,\n                    \"Top\": 0.7664962410926819,\n                    \"Width\": 0.023634152486920357\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4216562807559967,\n                        \"Y\": 0.7664962410926819\n                    },\n                    {\n                        \"X\": 0.44528788328170776,\n                        \"Y\": 0.766511857509613\n                    },\n                    {\n                        \"X\": 0.4452904462814331,\n                        \"Y\": 0.7763493061065674\n                    },\n                    {\n                        \"X\": 0.4216587245464325,\n                        \"Y\": 0.7763336300849915\n                    }\n                ]\n            },\n            \"Id\": \"b25b78eb-83f0-4a52-bb17-acc9cd3f4100\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"60a2405c-692e-4bec-a3d3-9ac1dacf179d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.42279815673828,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012148740701377392,\n                    \"Left\": 0.031096361577510834,\n                    \"Top\": 0.9113048911094666,\n                    \"Width\": 0.22786247730255127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031096361577510834,\n                        \"Y\": 0.9113048911094666\n                    },\n                    {\n                        \"X\": 0.25895702838897705,\n                        \"Y\": 0.9114639759063721\n                    },\n                    {\n                        \"X\": 0.2589588463306427,\n                        \"Y\": 0.9234536290168762\n                    },\n                    {\n                        \"X\": 0.031096545979380608,\n                        \"Y\": 0.9232938289642334\n                    }\n                ]\n            },\n            \"Id\": \"f6e9add8-f485-47ce-a64d-8965b1c2d9b5\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b44e94bd-59ca-4fae-ae52-0aaa6f858a0b\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"99b568ec-2110-447c-ad05-b52ea042ab22\",\n                        \"8ac2a45e-69d8-4d59-9513-c2eabaf9e8e0\",\n                        \"428951fd-2275-4b9e-86b0-1afe1d0c108c\",\n                        \"55173c4e-c513-40aa-96e5-7be5952b1d4e\",\n                        \"a7ceac34-aa1f-423c-9361-7d1898ee2a20\",\n                        \"75ba1fc4-a812-4bcc-beb1-a1e2f22e7dd5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.42279815673828,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009931077249348164,\n                    \"Left\": 0.03151794150471687,\n                    \"Top\": 0.9302182793617249,\n                    \"Width\": 0.023094037547707558\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03151794150471687,\n                        \"Y\": 0.9302182793617249\n                    },\n                    {\n                        \"X\": 0.0546116903424263,\n                        \"Y\": 0.9302344918251038\n                    },\n                    {\n                        \"X\": 0.05461198091506958,\n                        \"Y\": 0.9401493668556213\n                    },\n                    {\n                        \"X\": 0.03151809796690941,\n                        \"Y\": 0.9401330351829529\n                    }\n                ]\n            },\n            \"Id\": \"b44e94bd-59ca-4fae-ae52-0aaa6f858a0b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9e354791-22a8-4ac8-aa38-0d016556fdcc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.28691101074219,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00985482707619667,\n                    \"Left\": 0.8585894703865051,\n                    \"Top\": 0.9671950936317444,\n                    \"Width\": 0.027963103726506233\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8585894703865051,\n                        \"Y\": 0.9671950936317444\n                    },\n                    {\n                        \"X\": 0.8865474462509155,\n                        \"Y\": 0.9672150611877441\n                    },\n                    {\n                        \"X\": 0.8865525722503662,\n                        \"Y\": 0.9770499467849731\n                    },\n                    {\n                        \"X\": 0.8585944175720215,\n                        \"Y\": 0.9770299196243286\n                    }\n                ]\n            },\n            \"Id\": \"11afd9e2-ea29-4183-8269-90ed8daca5a6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"45b41c89-1682-42d1-a2a5-b1519e7b1f10\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"0fe7181d-e5f8-42ad-93e7-0d99875b70c1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 89.28691101074219,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012401021085679531,\n                    \"Left\": 0.8385400176048279,\n                    \"Top\": 0.9661029577255249,\n                    \"Width\": 0.016000887379050255\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8385400176048279,\n                        \"Y\": 0.9661029577255249\n                    },\n                    {\n                        \"X\": 0.8545346856117249,\n                        \"Y\": 0.966114342212677\n                    },\n                    {\n                        \"X\": 0.8545408844947815,\n                        \"Y\": 0.9785040020942688\n                    },\n                    {\n                        \"X\": 0.838546097278595,\n                        \"Y\": 0.9784925580024719\n                    }\n                ]\n            },\n            \"Id\": \"45b41c89-1682-42d1-a2a5-b1519e7b1f10\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"70a070f8-ece5-431b-9d77-ef71320e7f20\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.9621810913086,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009369676932692528,\n                    \"Left\": 0.3336944580078125,\n                    \"Top\": 0.7854933738708496,\n                    \"Width\": 0.0257558710873127\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3336944580078125,\n                        \"Y\": 0.7854933738708496\n                    },\n                    {\n                        \"X\": 0.3594483733177185,\n                        \"Y\": 0.7855105400085449\n                    },\n                    {\n                        \"X\": 0.3594503402709961,\n                        \"Y\": 0.7948631048202515\n                    },\n                    {\n                        \"X\": 0.33369627594947815,\n                        \"Y\": 0.7948458790779114\n                    }\n                ]\n            },\n            \"Id\": \"e400ea9e-f271-4bc8-b9d8-ccc03dd2aacc\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"dfc04871-e8a4-4c25-a629-0b0829c3ed7b\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"b91b4d39-daf6-4bee-aa4f-e4d17a9a556f\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.9621810913086,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012092655524611473,\n                    \"Left\": 0.3143206536769867,\n                    \"Top\": 0.7831915020942688,\n                    \"Width\": 0.015881920233368874\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3143206536769867,\n                        \"Y\": 0.7831915020942688\n                    },\n                    {\n                        \"X\": 0.3302002251148224,\n                        \"Y\": 0.783202052116394\n                    },\n                    {\n                        \"X\": 0.33020254969596863,\n                        \"Y\": 0.7952841520309448\n                    },\n                    {\n                        \"X\": 0.3143228590488434,\n                        \"Y\": 0.7952735424041748\n                    }\n                ]\n            },\n            \"Id\": \"dfc04871-e8a4-4c25-a629-0b0829c3ed7b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c83711c2-b76e-4307-991d-60ad1fbcdb8b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.92777252197266,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02198612317442894,\n                    \"Left\": 0.8519938588142395,\n                    \"Top\": 0.573017418384552,\n                    \"Width\": 0.08942383527755737\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8519938588142395,\n                        \"Y\": 0.573017418384552\n                    },\n                    {\n                        \"X\": 0.9414055347442627,\n                        \"Y\": 0.5730718374252319\n                    },\n                    {\n                        \"X\": 0.9414176940917969,\n                        \"Y\": 0.5950035452842712\n                    },\n                    {\n                        \"X\": 0.8520048260688782,\n                        \"Y\": 0.5949486494064331\n                    }\n                ]\n            },\n            \"Id\": \"b83c4b5e-5270-4588-b484-5372b6088438\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"9a5df94b-8b61-43ee-b808-b029f5fc3b73\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"5ab2a09c-e417-4c2f-a9f1-42ba449dc986\",\n                        \"5965f50a-bdf3-420a-bc41-39bd3e273f90\",\n                        \"70eca811-3d0f-4449-9e65-504eda237c7c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.92777252197266,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012651602737605572,\n                    \"Left\": 0.8324081301689148,\n                    \"Top\": 0.5701007843017578,\n                    \"Width\": 0.016252048313617706\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8324081301689148,\n                        \"Y\": 0.5701007843017578\n                    },\n                    {\n                        \"X\": 0.8486538529396057,\n                        \"Y\": 0.5701106786727905\n                    },\n                    {\n                        \"X\": 0.8486601710319519,\n                        \"Y\": 0.5827524065971375\n                    },\n                    {\n                        \"X\": 0.8324143290519714,\n                        \"Y\": 0.5827425122261047\n                    }\n                ]\n            },\n            \"Id\": \"9a5df94b-8b61-43ee-b808-b029f5fc3b73\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d3079a75-36f3-4eec-92db-77f95f27a187\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.69776916503906,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009845215827226639,\n                    \"Left\": 0.4437559247016907,\n                    \"Top\": 0.967711865901947,\n                    \"Width\": 0.045411113649606705\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4437559247016907,\n                        \"Y\": 0.967711865901947\n                    },\n                    {\n                        \"X\": 0.48916423320770264,\n                        \"Y\": 0.9677442312240601\n                    },\n                    {\n                        \"X\": 0.4891670346260071,\n                        \"Y\": 0.9775570631027222\n                    },\n                    {\n                        \"X\": 0.44375845789909363,\n                        \"Y\": 0.9775245785713196\n                    }\n                ]\n            },\n            \"Id\": \"de5b6ff2-f9c5-4321-9371-a67926b6a6aa\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"3c1a2f16-f3d4-4655-843c-146edae0383a\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"0c7f88c9-b7e8-4c16-84a4-98ac9c045a6e\",\n                        \"ecbcecbb-c75f-473c-8430-1de2845e2ace\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.69776916503906,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01085598673671484,\n                    \"Left\": 0.41802915930747986,\n                    \"Top\": 0.9676525592803955,\n                    \"Width\": 0.022543221712112427\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.41802915930747986,\n                        \"Y\": 0.9676525592803955\n                    },\n                    {\n                        \"X\": 0.44056960940361023,\n                        \"Y\": 0.9676686525344849\n                    },\n                    {\n                        \"X\": 0.4405723810195923,\n                        \"Y\": 0.9785085320472717\n                    },\n                    {\n                        \"X\": 0.41803181171417236,\n                        \"Y\": 0.9784924387931824\n                    }\n                ]\n            },\n            \"Id\": \"3c1a2f16-f3d4-4655-843c-146edae0383a\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.271240234375,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009732550010085106,\n                    \"Left\": 0.9139787554740906,\n                    \"Top\": 0.9117431044578552,\n                    \"Width\": 0.04619254171848297\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9139787554740906,\n                        \"Y\": 0.9117431044578552\n                    },\n                    {\n                        \"X\": 0.9601658582687378,\n                        \"Y\": 0.9117753505706787\n                    },\n                    {\n                        \"X\": 0.9601712822914124,\n                        \"Y\": 0.9214756488800049\n                    },\n                    {\n                        \"X\": 0.9139840006828308,\n                        \"Y\": 0.9214433431625366\n                    }\n                ]\n            },\n            \"Id\": \"d199e722-26a8-464d-a13b-1d08f5e1e9ba\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b67556ca-b202-4946-9c1e-7b8634a78e6f\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"d1855a31-ec03-4617-88b9-df0a828a9ad0\",\n                        \"37c697b1-067b-4f61-a6b7-3c673a3a90ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 88.271240234375,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012489205226302147,\n                    \"Left\": 0.8888891935348511,\n                    \"Top\": 0.9102957844734192,\n                    \"Width\": 0.02266683429479599\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8888891935348511,\n                        \"Y\": 0.9102957844734192\n                    },\n                    {\n                        \"X\": 0.9115493297576904,\n                        \"Y\": 0.9103115797042847\n                    },\n                    {\n                        \"X\": 0.9115560054779053,\n                        \"Y\": 0.9227849841117859\n                    },\n                    {\n                        \"X\": 0.8888956904411316,\n                        \"Y\": 0.9227690696716309\n                    }\n                ]\n            },\n            \"Id\": \"b67556ca-b202-4946-9c1e-7b8634a78e6f\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.47161865234375,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009352501481771469,\n                    \"Left\": 0.8587055802345276,\n                    \"Top\": 0.7856134176254272,\n                    \"Width\": 0.027123356238007545\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8587055802345276,\n                        \"Y\": 0.7856134176254272\n                    },\n                    {\n                        \"X\": 0.8858240842819214,\n                        \"Y\": 0.7856314182281494\n                    },\n                    {\n                        \"X\": 0.885828971862793,\n                        \"Y\": 0.794965922832489\n                    },\n                    {\n                        \"X\": 0.8587102890014648,\n                        \"Y\": 0.7949478030204773\n                    }\n                ]\n            },\n            \"Id\": \"83d7aba2-c94e-4b7c-85dd-4a0fb4ccaeaf\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"48598ecb-ead7-4dbc-bfd5-325807e79118\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"e361a9ab-3344-4d20-ab43-9e03376a7ecc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.47161865234375,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012585030868649483,\n                    \"Left\": 0.838091254234314,\n                    \"Top\": 0.7830131649971008,\n                    \"Width\": 0.016403967514634132\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.838091254234314,\n                        \"Y\": 0.7830131649971008\n                    },\n                    {\n                        \"X\": 0.8544889092445374,\n                        \"Y\": 0.78302401304245\n                    },\n                    {\n                        \"X\": 0.8544952273368835,\n                        \"Y\": 0.7955981492996216\n                    },\n                    {\n                        \"X\": 0.8380974531173706,\n                        \"Y\": 0.7955872416496277\n                    }\n                ]\n            },\n            \"Id\": \"48598ecb-ead7-4dbc-bfd5-325807e79118\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"bd1022b4-a998-4228-846d-cea3a6cbd3da\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.40545654296875,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009384306147694588,\n                    \"Left\": 0.34788838028907776,\n                    \"Top\": 0.7481790781021118,\n                    \"Width\": 0.019905060529708862\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.34788838028907776,\n                        \"Y\": 0.7481790781021118\n                    },\n                    {\n                        \"X\": 0.36779144406318665,\n                        \"Y\": 0.7481921315193176\n                    },\n                    {\n                        \"X\": 0.3677934408187866,\n                        \"Y\": 0.7575634121894836\n                    },\n                    {\n                        \"X\": 0.34789028763771057,\n                        \"Y\": 0.7575502991676331\n                    }\n                ]\n            },\n            \"Id\": \"4f3cbd60-dd5f-4672-a0f8-f6ac23c71887\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"33cc5261-477b-41b2-a846-57c9ff2608d1\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"d561dcb5-777f-46a1-bfc1-2eff9a76e9d2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.40545654296875,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.00949681643396616,\n                    \"Left\": 0.42572060227394104,\n                    \"Top\": 0.7477406859397888,\n                    \"Width\": 0.008143893443048\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42572060227394104,\n                        \"Y\": 0.7477406859397888\n                    },\n                    {\n                        \"X\": 0.4338620901107788,\n                        \"Y\": 0.7477459907531738\n                    },\n                    {\n                        \"X\": 0.4338644742965698,\n                        \"Y\": 0.7572374939918518\n                    },\n                    {\n                        \"X\": 0.42572295665740967,\n                        \"Y\": 0.757232129573822\n                    }\n                ]\n            },\n            \"Id\": \"33cc5261-477b-41b2-a846-57c9ff2608d1\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"356839a2-de42-49b5-842d-75b4fa914a8c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.3832778930664,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012467678636312485,\n                    \"Left\": 0.49938294291496277,\n                    \"Top\": 0.7847066521644592,\n                    \"Width\": 0.28241807222366333\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49938294291496277,\n                        \"Y\": 0.7847066521644592\n                    },\n                    {\n                        \"X\": 0.7817953824996948,\n                        \"Y\": 0.7848943471908569\n                    },\n                    {\n                        \"X\": 0.7818009853363037,\n                        \"Y\": 0.797174334526062\n                    },\n                    {\n                        \"X\": 0.4993865191936493,\n                        \"Y\": 0.7969858050346375\n                    }\n                ]\n            },\n            \"Id\": \"5aca94b9-6adf-4098-83c9-57f1be8ebbea\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6e4f1a35-68a1-42dc-a0a8-562f54933bf3\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"d7dbcdd1-3dae-4a0d-a62b-cbd2dcf78cd9\",\n                        \"5bd0d973-cdf1-4687-8e23-e52351bc3a01\",\n                        \"17df945b-5d58-49cd-b35e-815eed5e3013\",\n                        \"91191b2f-d6bc-4674-9d0a-95b226f5b443\",\n                        \"4b44fa05-d450-440a-b246-72d6abcc1ab6\",\n                        \"de5a5d82-2742-4cd3-9e83-fa261a017994\",\n                        \"cff511e0-e4d6-4237-92b0-951a3c37ea8e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.3832778930664,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009773298166692257,\n                    \"Left\": 0.49906256794929504,\n                    \"Top\": 0.8040469884872437,\n                    \"Width\": 0.024456387385725975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49906256794929504,\n                        \"Y\": 0.8040469884872437\n                    },\n                    {\n                        \"X\": 0.5235159993171692,\n                        \"Y\": 0.8040633797645569\n                    },\n                    {\n                        \"X\": 0.523518979549408,\n                        \"Y\": 0.8138203024864197\n                    },\n                    {\n                        \"X\": 0.49906542897224426,\n                        \"Y\": 0.8138038516044617\n                    }\n                ]\n            },\n            \"Id\": \"6e4f1a35-68a1-42dc-a0a8-562f54933bf3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8d07f392-0462-4e58-abc9-70bbdda23547\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.11747741699219,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009299238212406635,\n                    \"Left\": 0.38932502269744873,\n                    \"Top\": 0.967793881893158,\n                    \"Width\": 0.026441363617777824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38932502269744873,\n                        \"Y\": 0.967793881893158\n                    },\n                    {\n                        \"X\": 0.41576412320137024,\n                        \"Y\": 0.9678127765655518\n                    },\n                    {\n                        \"X\": 0.4157663881778717,\n                        \"Y\": 0.9770931601524353\n                    },\n                    {\n                        \"X\": 0.38932713866233826,\n                        \"Y\": 0.9770742058753967\n                    }\n                ]\n            },\n            \"Id\": \"ef2498c2-94a5-4abb-bedb-b4de86700ef3\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"11e98ca2-e3c9-43bb-81e8-f42b20cef89f\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"8c31db0b-4fe8-4c28-8451-f1fff5142ca7\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 87.11747741699219,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01195449847728014,\n                    \"Left\": 0.36888161301612854,\n                    \"Top\": 0.9667321443557739,\n                    \"Width\": 0.01589101552963257\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.36888161301612854,\n                        \"Y\": 0.9667321443557739\n                    },\n                    {\n                        \"X\": 0.3847699463367462,\n                        \"Y\": 0.9667434692382812\n                    },\n                    {\n                        \"X\": 0.3847726285457611,\n                        \"Y\": 0.9786866307258606\n                    },\n                    {\n                        \"X\": 0.3688841760158539,\n                        \"Y\": 0.9786753058433533\n                    }\n                ]\n            },\n            \"Id\": \"11e98ca2-e3c9-43bb-81e8-f42b20cef89f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6f5df22a-0d8e-424d-aed8-a055b3ae301b\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.94226837158203,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009818303398787975,\n                    \"Left\": 0.44362521171569824,\n                    \"Top\": 0.7853298187255859,\n                    \"Width\": 0.04571495205163956\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.44362521171569824,\n                        \"Y\": 0.7853298187255859\n                    },\n                    {\n                        \"X\": 0.48933738470077515,\n                        \"Y\": 0.7853602170944214\n                    },\n                    {\n                        \"X\": 0.4893401861190796,\n                        \"Y\": 0.7951481342315674\n                    },\n                    {\n                        \"X\": 0.4436277747154236,\n                        \"Y\": 0.7951176762580872\n                    }\n                ]\n            },\n            \"Id\": \"8e1e979e-c619-4b82-be38-fda5b9dfd285\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8203f80d-56ad-4488-aa29-bafb61a85807\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"97d62362-f96b-410d-927a-c823b8995a3b\",\n                        \"808b32fa-c8b2-480d-a8c3-c34203b61d7d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.94226837158203,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009596996940672398,\n                    \"Left\": 0.42604511976242065,\n                    \"Top\": 0.7855975031852722,\n                    \"Width\": 0.009616481140255928\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42604511976242065,\n                        \"Y\": 0.7855975031852722\n                    },\n                    {\n                        \"X\": 0.43565917015075684,\n                        \"Y\": 0.785603940486908\n                    },\n                    {\n                        \"X\": 0.43566158413887024,\n                        \"Y\": 0.7951945066452026\n                    },\n                    {\n                        \"X\": 0.42604750394821167,\n                        \"Y\": 0.7951881289482117\n                    }\n                ]\n            },\n            \"Id\": \"8203f80d-56ad-4488-aa29-bafb61a85807\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7d27b15f-a3f0-4126-ae9f-d59e1de47a9e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.74117279052734,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012771978043019772,\n                    \"Left\": 0.03037906065583229,\n                    \"Top\": 0.840659499168396,\n                    \"Width\": 0.287617564201355\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03037906065583229,\n                        \"Y\": 0.840659499168396\n                    },\n                    {\n                        \"X\": 0.31799429655075073,\n                        \"Y\": 0.8408548831939697\n                    },\n                    {\n                        \"X\": 0.317996621131897,\n                        \"Y\": 0.8534314632415771\n                    },\n                    {\n                        \"X\": 0.030379246920347214,\n                        \"Y\": 0.853235125541687\n                    }\n                ]\n            },\n            \"Id\": \"cadc20be-b3d5-4193-8138-782ff99f9f5c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"8a0c3a2a-3d3f-4697-9b15-98adaeab51d6\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"715a4535-f684-446e-9320-f57c374c205f\",\n                        \"23dced2d-5bee-4987-a158-b5b40ca89505\",\n                        \"8dee01c0-35d0-4f90-a12c-fd1c9c372bd3\",\n                        \"3c3581f8-ec75-4424-a896-7d34a5592ce9\",\n                        \"6788320f-ee47-488f-9037-66d14505d5e6\",\n                        \"5475c58e-0305-43ad-adb6-f7d98e0dc028\",\n                        \"20e82e99-f51d-4f90-8253-1af4ce500bf1\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.74117279052734,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03427218645811081,\n                    \"Left\": 0.027064133435487747,\n                    \"Top\": 0.8569123148918152,\n                    \"Width\": 0.46355220675468445\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.027064133435487747,\n                        \"Y\": 0.8569123148918152\n                    },\n                    {\n                        \"X\": 0.4906066060066223,\n                        \"Y\": 0.8572292327880859\n                    },\n                    {\n                        \"X\": 0.4906163513660431,\n                        \"Y\": 0.8911845088005066\n                    },\n                    {\n                        \"X\": 0.027064573019742966,\n                        \"Y\": 0.8908633589744568\n                    }\n                ]\n            },\n            \"Id\": \"8a0c3a2a-3d3f-4697-9b15-98adaeab51d6\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.44621276855469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011328274384140968,\n                    \"Left\": 0.8173274397850037,\n                    \"Top\": 0.7677069306373596,\n                    \"Width\": 0.0307537280023098\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8173274397850037,\n                        \"Y\": 0.7677069306373596\n                    },\n                    {\n                        \"X\": 0.8480755686759949,\n                        \"Y\": 0.7677271962165833\n                    },\n                    {\n                        \"X\": 0.8480811715126038,\n                        \"Y\": 0.779035210609436\n                    },\n                    {\n                        \"X\": 0.8173328638076782,\n                        \"Y\": 0.7790148258209229\n                    }\n                ]\n            },\n            \"Id\": \"970b33d9-06f4-4395-9c20-4734da5bd0ee\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"63e33856-4de9-4175-8a7f-b64e99cba8e6\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"cae6cf34-3839-4fbe-a30f-844d522182e5\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 86.44621276855469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010044115595519543,\n                    \"Left\": 0.8921938538551331,\n                    \"Top\": 0.7676227688789368,\n                    \"Width\": 0.024002179503440857\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8921938538551331,\n                        \"Y\": 0.7676227688789368\n                    },\n                    {\n                        \"X\": 0.9161906242370605,\n                        \"Y\": 0.7676385641098022\n                    },\n                    {\n                        \"X\": 0.9161959886550903,\n                        \"Y\": 0.7776668667793274\n                    },\n                    {\n                        \"X\": 0.8921990990638733,\n                        \"Y\": 0.7776509523391724\n                    }\n                ]\n            },\n            \"Id\": \"63e33856-4de9-4175-8a7f-b64e99cba8e6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b73d981f-d76b-4439-9805-24b5744bdfa2\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 85.86027526855469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009454951621592045,\n                    \"Left\": 0.818367063999176,\n                    \"Top\": 0.7483530640602112,\n                    \"Width\": 0.020052626729011536\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.818367063999176,\n                        \"Y\": 0.7483530640602112\n                    },\n                    {\n                        \"X\": 0.8384150862693787,\n                        \"Y\": 0.7483661770820618\n                    },\n                    {\n                        \"X\": 0.8384197354316711,\n                        \"Y\": 0.7578080296516418\n                    },\n                    {\n                        \"X\": 0.818371593952179,\n                        \"Y\": 0.7577948570251465\n                    }\n                ]\n            },\n            \"Id\": \"d3b91ffe-62fc-4393-b280-cbc37e05416f\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"765c1541-b580-4ea2-89ac-ff85add1dca7\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"893772a8-c001-4970-87d9-e65eea767a5e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 85.86027526855469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010501899756491184,\n                    \"Left\": 0.8930943012237549,\n                    \"Top\": 0.7465224266052246,\n                    \"Width\": 0.023394573479890823\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8930943012237549,\n                        \"Y\": 0.7465224266052246\n                    },\n                    {\n                        \"X\": 0.9164832234382629,\n                        \"Y\": 0.7465377449989319\n                    },\n                    {\n                        \"X\": 0.9164888262748718,\n                        \"Y\": 0.757024347782135\n                    },\n                    {\n                        \"X\": 0.8930997848510742,\n                        \"Y\": 0.757008969783783\n                    }\n                ]\n            },\n            \"Id\": \"765c1541-b580-4ea2-89ac-ff85add1dca7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f73ff599-5571-4a82-a4b7-f95762565a42\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 84.83373260498047,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012207567691802979,\n                    \"Left\": 0.03215281292796135,\n                    \"Top\": 0.7844213843345642,\n                    \"Width\": 0.2790486216545105\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03215281292796135,\n                        \"Y\": 0.7844213843345642\n                    },\n                    {\n                        \"X\": 0.31119924783706665,\n                        \"Y\": 0.7846068143844604\n                    },\n                    {\n                        \"X\": 0.31120142340660095,\n                        \"Y\": 0.7966289520263672\n                    },\n                    {\n                        \"X\": 0.03215300664305687,\n                        \"Y\": 0.7964426875114441\n                    }\n                ]\n            },\n            \"Id\": \"f4d1e8b2-f034-4fc0-8b9e-0d3a314d2f2a\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"189f830c-7317-4172-b854-588c89867bfd\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"a3624eae-de28-4fb4-9bad-82a88dc2f847\",\n                        \"a122cd94-c04b-4de2-a7ad-65939dc85eb3\",\n                        \"0f6a74a7-51b7-4690-97e6-395613249fa5\",\n                        \"58bd2bda-2d37-47b5-9fa3-58e566a42b01\",\n                        \"1b1f2452-d527-4365-abe5-111c64093132\",\n                        \"8baeae55-fd4c-45cb-b677-942d9f4aa202\",\n                        \"59d17e3e-8138-4dfd-a004-a7d444854931\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 84.83373260498047,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.013344577513635159,\n                    \"Left\": 0.031722236424684525,\n                    \"Top\": 0.8039479851722717,\n                    \"Width\": 0.2319013774394989\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031722236424684525,\n                        \"Y\": 0.8039479851722717\n                    },\n                    {\n                        \"X\": 0.26362159848213196,\n                        \"Y\": 0.8041032552719116\n                    },\n                    {\n                        \"X\": 0.2636236250400543,\n                        \"Y\": 0.8172925710678101\n                    },\n                    {\n                        \"X\": 0.03172244504094124,\n                        \"Y\": 0.8171364665031433\n                    }\n                ]\n            },\n            \"Id\": \"189f830c-7317-4172-b854-588c89867bfd\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d1abb320-cf68-4696-92cf-5a22806a54bc\",\n                        \"11654d8a-768c-4b4f-9188-4ba50acd2dfb\",\n                        \"6c944296-8ba6-4de5-a7f9-36f5b5b722a5\",\n                        \"2ac5251b-c40d-40d2-803a-a3c1bae86bec\",\n                        \"efbf136f-3a7b-4d66-96db-79d69fa81850\",\n                        \"ed430d68-ab90-43e0-849a-3558e516aca0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 84.52631378173828,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010013715364038944,\n                    \"Left\": 0.5666277408599854,\n                    \"Top\": 0.5418571829795837,\n                    \"Width\": 0.18912723660469055\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5666277408599854,\n                        \"Y\": 0.5418571829795837\n                    },\n                    {\n                        \"X\": 0.7557505965232849,\n                        \"Y\": 0.5419707298278809\n                    },\n                    {\n                        \"X\": 0.7557549476623535,\n                        \"Y\": 0.5518709421157837\n                    },\n                    {\n                        \"X\": 0.566631019115448,\n                        \"Y\": 0.5517569184303284\n                    }\n                ]\n            },\n            \"Id\": \"15740f3b-20f9-4cd8-b595-cf45f0eb642b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"33f958d2-4148-44f9-bb15-2ccc551e978d\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"eddf32e8-b038-4f9b-85d9-1df5e3512133\",\n                        \"aa213054-3af0-469c-90f0-9246a18e3d0e\",\n                        \"b4f106d9-72d7-4fc5-ae5b-64f3fa869655\",\n                        \"49d2fbd3-038b-46c5-8cba-169f9c49614c\",\n                        \"2625e666-bc15-4dee-8a79-bdadfef9f57f\",\n                        \"766e00a7-f9d5-43fa-a762-29c0d8fd750f\",\n                        \"df432aab-76af-486c-9dc6-83c4f39f4ec3\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 84.52631378173828,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.0071184756234288216,\n                    \"Left\": 0.5665013194084167,\n                    \"Top\": 0.5639618039131165,\n                    \"Width\": 0.006963573861867189\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5665013194084167,\n                        \"Y\": 0.5639618039131165\n                    },\n                    {\n                        \"X\": 0.5734624862670898,\n                        \"Y\": 0.5639660358428955\n                    },\n                    {\n                        \"X\": 0.5734648704528809,\n                        \"Y\": 0.5710802674293518\n                    },\n                    {\n                        \"X\": 0.5665037035942078,\n                        \"Y\": 0.5710760354995728\n                    }\n                ]\n            },\n            \"Id\": \"33f958d2-4148-44f9-bb15-2ccc551e978d\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.6973648071289,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009115456603467464,\n                    \"Left\": 0.6228712797164917,\n                    \"Top\": 0.5288394093513489,\n                    \"Width\": 0.02950156480073929\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6228712797164917,\n                        \"Y\": 0.5288394093513489\n                    },\n                    {\n                        \"X\": 0.6523693203926086,\n                        \"Y\": 0.5288570523262024\n                    },\n                    {\n                        \"X\": 0.6523728370666504,\n                        \"Y\": 0.5379548668861389\n                    },\n                    {\n                        \"X\": 0.6228745579719543,\n                        \"Y\": 0.5379372239112854\n                    }\n                ]\n            },\n            \"Id\": \"2d11b74f-94f2-4452-a69f-d037a945876e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e7bf90c1-3c05-459f-922f-991749ad246e\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"25b6007c-51ef-427b-8925-6a904d7fac64\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.6973648071289,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012060501612722874,\n                    \"Left\": 0.6565605401992798,\n                    \"Top\": 0.5271881818771362,\n                    \"Width\": 0.30285221338272095\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6565605401992798,\n                        \"Y\": 0.5271881818771362\n                    },\n                    {\n                        \"X\": 0.9594060778617859,\n                        \"Y\": 0.5273687243461609\n                    },\n                    {\n                        \"X\": 0.9594127535820007,\n                        \"Y\": 0.5392487049102783\n                    },\n                    {\n                        \"X\": 0.6565651297569275,\n                        \"Y\": 0.5390671491622925\n                    }\n                ]\n            },\n            \"Id\": \"e7bf90c1-3c05-459f-922f-991749ad246e\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"522b0acd-42aa-4213-b048-4881dc5657c6\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.30709838867188,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.025219345465302467,\n                    \"Left\": 0.028569381684064865,\n                    \"Top\": 0.4947083294391632,\n                    \"Width\": 0.053743958473205566\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028569381684064865,\n                        \"Y\": 0.4947083294391632\n                    },\n                    {\n                        \"X\": 0.0823121890425682,\n                        \"Y\": 0.4947398900985718\n                    },\n                    {\n                        \"X\": 0.08231333643198013,\n                        \"Y\": 0.5199276804924011\n                    },\n                    {\n                        \"X\": 0.02856972999870777,\n                        \"Y\": 0.5198957324028015\n                    }\n                ]\n            },\n            \"Id\": \"73841729-f963-445f-a325-c578284d70ee\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"7d10d149-aa59-48d0-89de-483397fbca0d\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"6446a1f0-7a15-4f14-b351-701c3b2abeee\",\n                        \"49b6bce4-3620-4c69-b84e-072552cf8f43\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 83.30709838867188,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015112829394638538,\n                    \"Left\": 0.025073356926441193,\n                    \"Top\": 0.5233346819877625,\n                    \"Width\": 0.07059936970472336\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.025073356926441193,\n                        \"Y\": 0.5233346819877625\n                    },\n                    {\n                        \"X\": 0.09567192196846008,\n                        \"Y\": 0.5233767032623291\n                    },\n                    {\n                        \"X\": 0.09567272663116455,\n                        \"Y\": 0.5384474992752075\n                    },\n                    {\n                        \"X\": 0.02507353387773037,\n                        \"Y\": 0.538405179977417\n                    }\n                ]\n            },\n            \"Id\": \"7d10d149-aa59-48d0-89de-483397fbca0d\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 82.31693267822266,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009661909192800522,\n                    \"Left\": 0.5864875912666321,\n                    \"Top\": 0.2699818015098572,\n                    \"Width\": 0.06326752156019211\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5864875912666321,\n                        \"Y\": 0.2699818015098572\n                    },\n                    {\n                        \"X\": 0.6497514843940735,\n                        \"Y\": 0.2700152099132538\n                    },\n                    {\n                        \"X\": 0.6497551202774048,\n                        \"Y\": 0.279643714427948\n                    },\n                    {\n                        \"X\": 0.5864909291267395,\n                        \"Y\": 0.27961012721061707\n                    }\n                ]\n            },\n            \"Id\": \"33a485c0-0555-443f-9c4f-ebfcab65a1ad\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"4e1d7852-a6d2-4684-8399-43d46aac5ab6\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"910d393c-53e8-4ae5-89a0-41f119cea9cd\",\n                        \"92ac9403-a2e7-4a80-9512-0436eff3cb63\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 82.31693267822266,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01237685326486826,\n                    \"Left\": 0.5672370195388794,\n                    \"Top\": 0.267208069562912,\n                    \"Width\": 0.015787962824106216\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5672370195388794,\n                        \"Y\": 0.267208069562912\n                    },\n                    {\n                        \"X\": 0.583020806312561,\n                        \"Y\": 0.26721638441085815\n                    },\n                    {\n                        \"X\": 0.5830249786376953,\n                        \"Y\": 0.2795849144458771\n                    },\n                    {\n                        \"X\": 0.5672411322593689,\n                        \"Y\": 0.27957653999328613\n                    }\n                ]\n            },\n            \"Id\": \"4e1d7852-a6d2-4684-8399-43d46aac5ab6\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"653b3122-d847-4dff-9639-5c243bc6c61d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 80.52391052246094,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.02173597551882267,\n                    \"Left\": 0.02859487198293209,\n                    \"Top\": 0.44169458746910095,\n                    \"Width\": 0.05303775891661644\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02859487198293209,\n                        \"Y\": 0.44169458746910095\n                    },\n                    {\n                        \"X\": 0.08163165301084518,\n                        \"Y\": 0.4417250156402588\n                    },\n                    {\n                        \"X\": 0.08163262903690338,\n                        \"Y\": 0.4634305536746979\n                    },\n                    {\n                        \"X\": 0.028595173731446266,\n                        \"Y\": 0.46339982748031616\n                    }\n                ]\n            },\n            \"Id\": \"30d2ada4-8e4f-4cc1-a48a-96185ddf5c7d\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e75c3741-527b-4a83-bc9b-82d51475ac7f\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"1d883977-567f-4278-80e4-bf7def5b166b\",\n                        \"fb1cf6a7-0656-4a6e-bf23-11378009e040\",\n                        \"e6d41258-0777-4d59-9d29-b498aaa3a399\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 80.52391052246094,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.015652382746338844,\n                    \"Left\": 0.024494023993611336,\n                    \"Top\": 0.4675695598125458,\n                    \"Width\": 0.07124057412147522\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.024494023993611336,\n                        \"Y\": 0.4675695598125458\n                    },\n                    {\n                        \"X\": 0.09573376178741455,\n                        \"Y\": 0.4676109254360199\n                    },\n                    {\n                        \"X\": 0.0957345962524414,\n                        \"Y\": 0.48322194814682007\n                    },\n                    {\n                        \"X\": 0.024494202807545662,\n                        \"Y\": 0.48318028450012207\n                    }\n                ]\n            },\n            \"Id\": \"e75c3741-527b-4a83-bc9b-82d51475ac7f\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.87367248535156,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011732826009392738,\n                    \"Left\": 0.703893780708313,\n                    \"Top\": 0.28643590211868286,\n                    \"Width\": 0.069423608481884\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.703893780708313,\n                        \"Y\": 0.28643590211868286\n                    },\n                    {\n                        \"X\": 0.7733120322227478,\n                        \"Y\": 0.2864728569984436\n                    },\n                    {\n                        \"X\": 0.7733173370361328,\n                        \"Y\": 0.29816871881484985\n                    },\n                    {\n                        \"X\": 0.7038986086845398,\n                        \"Y\": 0.2981315553188324\n                    }\n                ]\n            },\n            \"Id\": \"5af13a2f-782f-44be-803f-6a0c050f3c27\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"c244a935-4bff-4e0e-a18b-d77269d97fa7\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"54739729-9b72-40f4-9128-259b607b6a52\",\n                        \"5b175c9c-fac0-41be-b783-607b8f4044ac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.87367248535156,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011530427262187004,\n                    \"Left\": 0.7773443460464478,\n                    \"Top\": 0.28576210141181946,\n                    \"Width\": 0.184180349111557\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7773443460464478,\n                        \"Y\": 0.28576210141181946\n                    },\n                    {\n                        \"X\": 0.9615182280540466,\n                        \"Y\": 0.285860151052475\n                    },\n                    {\n                        \"X\": 0.9615246653556824,\n                        \"Y\": 0.2972925305366516\n                    },\n                    {\n                        \"X\": 0.777349591255188,\n                        \"Y\": 0.2971939444541931\n                    }\n                ]\n            },\n            \"Id\": \"c244a935-4bff-4e0e-a18b-d77269d97fa7\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.7601089477539,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012463786639273167,\n                    \"Left\": 0.49757686257362366,\n                    \"Top\": 0.9674814343452454,\n                    \"Width\": 0.22788675129413605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49757686257362366,\n                        \"Y\": 0.9674814343452454\n                    },\n                    {\n                        \"X\": 0.7254583835601807,\n                        \"Y\": 0.9676439166069031\n                    },\n                    {\n                        \"X\": 0.7254636287689209,\n                        \"Y\": 0.9799452424049377\n                    },\n                    {\n                        \"X\": 0.49758046865463257,\n                        \"Y\": 0.9797820448875427\n                    }\n                ]\n            },\n            \"Id\": \"7afd758b-e4c6-48dc-a6e8-134611910172\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f31a0e04-9d9e-403c-a257-43c5715e29f0\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"bb843082-d4bb-4f4e-9697-345ad473aee2\",\n                        \"dae87968-e58f-4b17-953e-d0c3ee871db3\",\n                        \"38a2e9e5-86ba-4a02-8c4b-acb356a08d39\",\n                        \"5385ca25-a024-4fe7-9c87-b3fa1bbd3f25\",\n                        \"0849d0d3-3653-43c3-b9df-8adb3783d0fb\",\n                        \"e3624bb0-137f-46ce-982b-f278225a666d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.7601089477539,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009944658726453781,\n                    \"Left\": 0.49475017189979553,\n                    \"Top\": 0.9835461378097534,\n                    \"Width\": 0.02439672313630581\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49475017189979553,\n                        \"Y\": 0.9835461378097534\n                    },\n                    {\n                        \"X\": 0.5191438794136047,\n                        \"Y\": 0.9835636615753174\n                    },\n                    {\n                        \"X\": 0.5191469192504883,\n                        \"Y\": 0.9934908151626587\n                    },\n                    {\n                        \"X\": 0.49475306272506714,\n                        \"Y\": 0.99347323179245\n                    }\n                ]\n            },\n            \"Id\": \"f31a0e04-9d9e-403c-a257-43c5715e29f0\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"cd97c06b-731e-4165-a7b4-8361caa05037\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.59535217285156,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011749760247766972,\n                    \"Left\": 0.02990259788930416,\n                    \"Top\": 0.9674622416496277,\n                    \"Width\": 0.22656035423278809\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02990259788930416,\n                        \"Y\": 0.9674622416496277\n                    },\n                    {\n                        \"X\": 0.2564612329006195,\n                        \"Y\": 0.967623770236969\n                    },\n                    {\n                        \"X\": 0.256462961435318,\n                        \"Y\": 0.9792119860649109\n                    },\n                    {\n                        \"X\": 0.02990276739001274,\n                        \"Y\": 0.9790497422218323\n                    }\n                ]\n            },\n            \"Id\": \"e68843d1-8d20-4de8-9d68-9ae1ee473938\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d0bc12f1-fee8-4039-a9bb-0d9a0e78cc4c\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"967719f9-169f-4657-b188-c1f407f23907\",\n                        \"971b6f97-64da-44eb-bdf7-a4588f6be68d\",\n                        \"1a5ea90c-1468-419f-b915-d9f825bfa002\",\n                        \"b05e647e-7ea3-4d88-8804-63b184668da1\",\n                        \"3f577aff-e6da-4c13-8a93-b779657487c2\",\n                        \"bb96b806-0e7a-424c-961d-a5b740764c21\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 79.59535217285156,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010488606058061123,\n                    \"Left\": 0.022824158892035484,\n                    \"Top\": 0.9832426309585571,\n                    \"Width\": 0.024043207988142967\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.022824158892035484,\n                        \"Y\": 0.9832426309585571\n                    },\n                    {\n                        \"X\": 0.04686710983514786,\n                        \"Y\": 0.9832598567008972\n                    },\n                    {\n                        \"X\": 0.04686736688017845,\n                        \"Y\": 0.9937312602996826\n                    },\n                    {\n                        \"X\": 0.02282426878809929,\n                        \"Y\": 0.993713915348053\n                    }\n                ]\n            },\n            \"Id\": \"d0bc12f1-fee8-4039-a9bb-0d9a0e78cc4c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"6b094c95-7c93-440a-b2f7-3659d0a26bbd\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 73.98096466064453,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012002399191260338,\n                    \"Left\": 0.33456045389175415,\n                    \"Top\": 0.22564829885959625,\n                    \"Width\": 0.08838320523500443\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33456045389175415,\n                        \"Y\": 0.22564829885959625\n                    },\n                    {\n                        \"X\": 0.4229407012462616,\n                        \"Y\": 0.22569392621517181\n                    },\n                    {\n                        \"X\": 0.422943651676178,\n                        \"Y\": 0.23765069246292114\n                    },\n                    {\n                        \"X\": 0.3345627784729004,\n                        \"Y\": 0.2376047670841217\n                    }\n                ]\n            },\n            \"Id\": \"7a4416fc-b8c8-408e-9add-7b1dc5d2cc96\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"f0240011-6166-4d7c-a807-230b36f1595f\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"d37314f4-bb88-4920-98d8-397704534871\",\n                        \"d0af3a6c-7567-4eea-a513-f19847b24608\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 73.98096466064453,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014705965295433998,\n                    \"Left\": 0.42647722363471985,\n                    \"Top\": 0.22326220571994781,\n                    \"Width\": 0.09573592245578766\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.42647722363471985,\n                        \"Y\": 0.22326220571994781\n                    },\n                    {\n                        \"X\": 0.5222086906433105,\n                        \"Y\": 0.22331158816814423\n                    },\n                    {\n                        \"X\": 0.5222131609916687,\n                        \"Y\": 0.23796817660331726\n                    },\n                    {\n                        \"X\": 0.42648088932037354,\n                        \"Y\": 0.2379184365272522\n                    }\n                ]\n            },\n            \"Id\": \"f0240011-6166-4d7c-a807-230b36f1595f\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 70.36027526855469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011936796829104424,\n                    \"Left\": 0.705058217048645,\n                    \"Top\": 0.26956331729888916,\n                    \"Width\": 0.08915840834379196\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.705058217048645,\n                        \"Y\": 0.26956331729888916\n                    },\n                    {\n                        \"X\": 0.7942110896110535,\n                        \"Y\": 0.26961037516593933\n                    },\n                    {\n                        \"X\": 0.7942166328430176,\n                        \"Y\": 0.28150010108947754\n                    },\n                    {\n                        \"X\": 0.7050631642341614,\n                        \"Y\": 0.2814527451992035\n                    }\n                ]\n            },\n            \"Id\": \"929b9fad-c3e1-43c1-8d44-88bcf956d905\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"94afb31e-1907-4c31-bae2-90c16bfe91d7\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"578172f9-cd1d-4864-a3ad-65cb2b1e5aae\",\n                        \"a3844493-b088-4dbf-9115-23d8b7880ea0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 70.36027526855469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01318695954978466,\n                    \"Left\": 0.7990320324897766,\n                    \"Top\": 0.2689361572265625,\n                    \"Width\": 0.16269126534461975\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7990320324897766,\n                        \"Y\": 0.2689361572265625\n                    },\n                    {\n                        \"X\": 0.9617158770561218,\n                        \"Y\": 0.26902201771736145\n                    },\n                    {\n                        \"X\": 0.961723268032074,\n                        \"Y\": 0.2821231186389923\n                    },\n                    {\n                        \"X\": 0.7990381717681885,\n                        \"Y\": 0.2820366621017456\n                    }\n                ]\n            },\n            \"Id\": \"94afb31e-1907-4c31-bae2-90c16bfe91d7\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 66.0375747680664,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.011944669298827648,\n                    \"Left\": 0.4114559590816498,\n                    \"Top\": 0.39852890372276306,\n                    \"Width\": 0.08945473283529282\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4114559590816498,\n                        \"Y\": 0.39852890372276306\n                    },\n                    {\n                        \"X\": 0.5009072422981262,\n                        \"Y\": 0.3985792100429535\n                    },\n                    {\n                        \"X\": 0.5009106993675232,\n                        \"Y\": 0.4104735851287842\n                    },\n                    {\n                        \"X\": 0.411458820104599,\n                        \"Y\": 0.41042301058769226\n                    }\n                ]\n            },\n            \"Id\": \"d866c72e-a31d-45ad-b150-c857d90c2b09\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"52a8ae0f-f09a-426c-9e53-248a2aaf9b52\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"6f43955b-1815-4791-a5f9-ebfd1af22754\",\n                        \"a6b96378-8612-4694-abc7-1fc1e08e7aac\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 66.0375747680664,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.014116364531219006,\n                    \"Left\": 0.5037398338317871,\n                    \"Top\": 0.396801620721817,\n                    \"Width\": 0.0866042748093605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5037398338317871,\n                        \"Y\": 0.396801620721817\n                    },\n                    {\n                        \"X\": 0.5903392434120178,\n                        \"Y\": 0.39685025811195374\n                    },\n                    {\n                        \"X\": 0.5903441309928894,\n                        \"Y\": 0.4109179973602295\n                    },\n                    {\n                        \"X\": 0.5037440061569214,\n                        \"Y\": 0.4108690321445465\n                    }\n                ]\n            },\n            \"Id\": \"52a8ae0f-f09a-426c-9e53-248a2aaf9b52\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 65.91168975830078,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010034961625933647,\n                    \"Left\": 0.9120674729347229,\n                    \"Top\": 0.7848293781280518,\n                    \"Width\": 0.046901803463697433\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9120674729347229,\n                        \"Y\": 0.7848293781280518\n                    },\n                    {\n                        \"X\": 0.9589636325836182,\n                        \"Y\": 0.7848605513572693\n                    },\n                    {\n                        \"X\": 0.958969235420227,\n                        \"Y\": 0.7948643565177917\n                    },\n                    {\n                        \"X\": 0.9120728373527527,\n                        \"Y\": 0.7948330640792847\n                    }\n                ]\n            },\n            \"Id\": \"e1b3af17-3745-49cc-8254-47cfb3bcb48c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"d883715c-00a0-4fb8-a52a-9ab56c2c1b61\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"9f648c31-b3e3-432b-a6e2-d54f8fcae4c5\",\n                        \"c75e7b45-31fb-469c-a8c9-2103eb720bfc\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 65.91168975830078,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01213626004755497,\n                    \"Left\": 0.8884205222129822,\n                    \"Top\": 0.783793032169342,\n                    \"Width\": 0.02365286275744438\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8884205222129822,\n                        \"Y\": 0.783793032169342\n                    },\n                    {\n                        \"X\": 0.9120669364929199,\n                        \"Y\": 0.783808708190918\n                    },\n                    {\n                        \"X\": 0.9120734333992004,\n                        \"Y\": 0.7959293127059937\n                    },\n                    {\n                        \"X\": 0.8884268403053284,\n                        \"Y\": 0.7959135174751282\n                    }\n                ]\n            },\n            \"Id\": \"d883715c-00a0-4fb8-a52a-9ab56c2c1b61\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 64.32658386230469,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.009488178417086601,\n                    \"Left\": 0.8045833706855774,\n                    \"Top\": 0.9680278301239014,\n                    \"Width\": 0.022989777848124504\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8045833706855774,\n                        \"Y\": 0.9680278301239014\n                    },\n                    {\n                        \"X\": 0.8275685906410217,\n                        \"Y\": 0.9680442214012146\n                    },\n                    {\n                        \"X\": 0.8275731801986694,\n                        \"Y\": 0.9775160551071167\n                    },\n                    {\n                        \"X\": 0.8045878410339355,\n                        \"Y\": 0.9774996042251587\n                    }\n                ]\n            },\n            \"Id\": \"3b3a2f8e-5516-4935-be29-1706cd5f3dff\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"b27adfda-dbe8-4e12-96e3-49b368c702ec\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"f223f153-5bea-4c2b-bde5-442e7f4f0d1c\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 64.32658386230469,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012139789760112762,\n                    \"Left\": 0.7836871147155762,\n                    \"Top\": 0.9662651419639587,\n                    \"Width\": 0.01576259732246399\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7836871147155762,\n                        \"Y\": 0.9662651419639587\n                    },\n                    {\n                        \"X\": 0.7994440197944641,\n                        \"Y\": 0.9662764072418213\n                    },\n                    {\n                        \"X\": 0.7994497418403625,\n                        \"Y\": 0.9784049391746521\n                    },\n                    {\n                        \"X\": 0.7836927175521851,\n                        \"Y\": 0.9783936738967896\n                    }\n                ]\n            },\n            \"Id\": \"b27adfda-dbe8-4e12-96e3-49b368c702ec\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"0f69a018-971b-4260-af05-5cf0b8267dcb\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 51.09245681762695,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.03543712943792343,\n                    \"Left\": 0.9187803268432617,\n                    \"Top\": 0.9503581523895264,\n                    \"Width\": 0.03634467348456383\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.9187803268432617,\n                        \"Y\": 0.9503581523895264\n                    },\n                    {\n                        \"X\": 0.9551051259040833,\n                        \"Y\": 0.9503839015960693\n                    },\n                    {\n                        \"X\": 0.9551249742507935,\n                        \"Y\": 0.9857953190803528\n                    },\n                    {\n                        \"X\": 0.9187994599342346,\n                        \"Y\": 0.9857692122459412\n                    }\n                ]\n            },\n            \"Id\": \"78530f57-cb4e-4156-9071-b267ca4b0b98\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"def75fb6-2b5a-4749-87b9-7fc55e993701\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"24ddf385-6209-4d9b-b626-4ce31d43147a\",\n                        \"665b7e4f-91da-4bc1-8964-0257ee4119c8\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 51.09245681762695,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.019468944519758224,\n                    \"Left\": 0.8902413845062256,\n                    \"Top\": 0.9632819294929504,\n                    \"Width\": 0.02855643443763256\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.8902413845062256,\n                        \"Y\": 0.9632819294929504\n                    },\n                    {\n                        \"X\": 0.9187873005867004,\n                        \"Y\": 0.9633022546768188\n                    },\n                    {\n                        \"X\": 0.9187977910041809,\n                        \"Y\": 0.9827508330345154\n                    },\n                    {\n                        \"X\": 0.8902515172958374,\n                        \"Y\": 0.9827303886413574\n                    }\n                ]\n            },\n            \"Id\": \"def75fb6-2b5a-4749-87b9-7fc55e993701\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 23.65814208984375,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010571523569524288,\n                    \"Left\": 0.4907653331756592,\n                    \"Top\": 0.07409941405057907,\n                    \"Width\": 0.0852261483669281\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4907653331756592,\n                        \"Y\": 0.07409941405057907\n                    },\n                    {\n                        \"X\": 0.5759879350662231,\n                        \"Y\": 0.07413999736309052\n                    },\n                    {\n                        \"X\": 0.5759915113449097,\n                        \"Y\": 0.08467093855142593\n                    },\n                    {\n                        \"X\": 0.49076834321022034,\n                        \"Y\": 0.08463011682033539\n                    }\n                ]\n            },\n            \"Id\": \"15002ae4-99c7-40b4-9402-e2f8254b1fb7\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e52f656a-1c60-4be2-8b08-209d9edf9b18\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"9b4b5495-4512-45c3-a9ae-445c29a065a7\",\n                        \"d69068ee-befc-4b32-ac6c-5c29682aa369\",\n                        \"2e6c4bfa-19e9-48c3-aae6-c03fe0b8e90d\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 23.65814208984375,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012896557338535786,\n                    \"Left\": 0.47706928849220276,\n                    \"Top\": 0.07329284399747849,\n                    \"Width\": 0.016155263409018517\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.47706928849220276,\n                        \"Y\": 0.07329284399747849\n                    },\n                    {\n                        \"X\": 0.49322083592414856,\n                        \"Y\": 0.07330053299665451\n                    },\n                    {\n                        \"X\": 0.493224561214447,\n                        \"Y\": 0.086189404129982\n                    },\n                    {\n                        \"X\": 0.4770728647708893,\n                        \"Y\": 0.08618166297674179\n                    }\n                ]\n            },\n            \"Id\": \"e52f656a-1c60-4be2-8b08-209d9edf9b18\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"35797add-3add-41dc-beed-0886e18abd98\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 22.693639755249023,\n            \"EntityTypes\": [\n                \"KEY\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010046972893178463,\n                    \"Left\": 0.6180144548416138,\n                    \"Top\": 0.060423627495765686,\n                    \"Width\": 0.10032013058662415\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6180144548416138,\n                        \"Y\": 0.060423627495765686\n                    },\n                    {\n                        \"X\": 0.7183303833007812,\n                        \"Y\": 0.06047103926539421\n                    },\n                    {\n                        \"X\": 0.7183345556259155,\n                        \"Y\": 0.07047060132026672\n                    },\n                    {\n                        \"X\": 0.6180180907249451,\n                        \"Y\": 0.07042292505502701\n                    }\n                ]\n            },\n            \"Id\": \"2149e64c-0d19-439a-b3b9-0f5d61ac8b0b\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"68796509-b7e8-48c1-aa76-68a8bd22703c\"\n                    ],\n                    \"Type\": \"VALUE\"\n                },\n                {\n                    \"Ids\": [\n                        \"57636e55-a563-4bf5-bc66-51f80b1111e9\",\n                        \"9b2fa191-def3-416b-b35b-b740fc237b65\",\n                        \"0bb2cf3f-ca1d-43f8-870d-dd446e7c1c4e\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 22.693639755249023,\n            \"EntityTypes\": [\n                \"VALUE\"\n            ],\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.012126972898840904,\n                    \"Left\": 0.5970095992088318,\n                    \"Top\": 0.058696404099464417,\n                    \"Width\": 0.016600213944911957\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5970095992088318,\n                        \"Y\": 0.058696404099464417\n                    },\n                    {\n                        \"X\": 0.6136054992675781,\n                        \"Y\": 0.05870424211025238\n                    },\n                    {\n                        \"X\": 0.6136098504066467,\n                        \"Y\": 0.07082337886095047\n                    },\n                    {\n                        \"X\": 0.5970138907432556,\n                        \"Y\": 0.07081548869609833\n                    }\n                ]\n            },\n            \"Id\": \"68796509-b7e8-48c1-aa76-68a8bd22703c\",\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"784a10c6-aca4-4967-a66f-53663c6235b0\"\n                    ],\n                    \"Type\": \"CHILD\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"404291b8-1b7e-46af-8212-c0bc52b40784\",\n            \"Query\": {\n                \"Alias\": \"borrower name\",\n                \"Text\": \"What is the borrower's name?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"ed26262a-d0aa-4883-91af-a08cce1120f0\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 99,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.01127711683511734,\n                    \"Left\": 0.03002816252410412,\n                    \"Top\": 0.6634103059768677,\n                    \"Width\": 0.092705637216568\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03002816252410412,\n                        \"Y\": 0.6634103059768677\n                    },\n                    {\n                        \"X\": 0.12273301929235458,\n                        \"Y\": 0.6634688973426819\n                    },\n                    {\n                        \"X\": 0.12273380160331726,\n                        \"Y\": 0.674687385559082\n                    },\n                    {\n                        \"X\": 0.03002832643687725,\n                        \"Y\": 0.674628496170044\n                    }\n                ]\n            },\n            \"Id\": \"ed26262a-d0aa-4883-91af-a08cce1120f0\",\n            \"Text\": \"Carlos Salazar\"\n        },\n        {\n            \"BlockType\": \"QUERY\",\n            \"Id\": \"c58c4fd4-992a-4878-8e07-420cbe17ab31\",\n            \"Query\": {\n                \"Alias\": \"co-borrower name\",\n                \"Text\": \"What is the co-borrower's name?\"\n            },\n            \"Relationships\": [\n                {\n                    \"Ids\": [\n                        \"e8b78529-ff16-486b-9f9b-02ea564dfc39\"\n                    ],\n                    \"Type\": \"ANSWER\"\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"QUERY_RESULT\",\n            \"Confidence\": 99,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Height\": 0.010112572461366653,\n                    \"Left\": 0.5001279711723328,\n                    \"Top\": 0.6637076139450073,\n                    \"Width\": 0.023511158302426338\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5001279711723328,\n                        \"Y\": 0.6637076139450073\n                    },\n                    {\n                        \"X\": 0.5236360430717468,\n                        \"Y\": 0.6637224555015564\n                    },\n                    {\n                        \"X\": 0.5236391425132751,\n                        \"Y\": 0.6738201379776001\n                    },\n                    {\n                        \"X\": 0.5001309514045715,\n                        \"Y\": 0.6738052368164062\n                    }\n                ]\n            },\n            \"Id\": \"e8b78529-ff16-486b-9f9b-02ea564dfc39\",\n            \"Text\": \"N/A\"\n        }\n    ],\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    }\n}"
  },
  {
    "path": "src-python/textract-mapping/mapping-response.json",
    "content": "{\n    \"DocumentMetadata\": {\n        \"Pages\": 1\n    },\n    \"Blocks\": [\n        {\n            \"BlockType\": \"PAGE\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 1,\n                    \"Height\": 1,\n                    \"Left\": 0,\n                    \"Top\": 0\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0,\n                        \"Y\": 0\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 0\n                    },\n                    {\n                        \"X\": 1,\n                        \"Y\": 1\n                    },\n                    {\n                        \"X\": 0,\n                        \"Y\": 1\n                    }\n                ]\n            },\n            \"Id\": \"d108aaae-e724-4450-aaef-523f4b65a501\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4748f698-085d-4659-87bd-9fc9eec8f81c\",\n                        \"e317b4e1-3eb2-492e-a3a9-2d337f6ba643\",\n                        \"ceb25100-ccb7-4885-8cf2-341582efd867\",\n                        \"6e644963-82d4-44c6-b3b7-225318743bbb\",\n                        \"83f3f545-fb95-4076-b1bd-6413a102d74f\",\n                        \"352669df-a583-424d-a906-763337cc7cc6\",\n                        \"6df8280e-65a7-463a-8bde-9153ebfb45d2\",\n                        \"73320c44-4bb6-4e15-92f8-e81a650602db\",\n                        \"08f0f640-08e2-40c3-88e9-bf5fd13a82af\",\n                        \"17c4c894-19e9-485b-b7b5-41ed78887e8f\",\n                        \"e1fd5caf-dd77-4183-a4f0-c6cc901c5020\",\n                        \"6f11ec80-b3c0-494a-ae5f-0c01bb8b9ab3\",\n                        \"1c4793e1-6a9e-4a86-8363-452e2411e7cb\",\n                        \"bf6728f6-0dfe-4a44-9da1-1c05897fe86f\",\n                        \"5a889905-9d78-488f-ac42-ef14aaa9f4b3\",\n                        \"6cd8eebf-0254-4410-bb34-1f8b671a3bd0\",\n                        \"7d83c491-1c1f-4474-b446-971fda9e2b3a\",\n                        \"b0b4f45c-e6c5-4cad-84e7-59221f3bce3c\",\n                        \"4a64a327-e0e9-49bf-abe3-ed4ca630d8f6\",\n                        \"2156df6b-ef89-4d47-bb5d-df5e7c401119\",\n                        \"77dd2f37-84ef-404a-98c3-972328acf52b\",\n                        \"e2335bee-96cc-4632-9cd0-5de1eb3b2576\",\n                        \"928bc481-132b-4e3e-afac-ff51b372e8b2\",\n                        \"dd8dbecf-73f1-49e2-bc9f-7169a133f6dd\",\n                        \"a8acd770-2d5a-4799-9e0d-17a96b6da85a\",\n                        \"03c0345c-f42d-4bea-864d-60a8d1e890fb\",\n                        \"1059d4c4-dd84-4995-be8f-24c0e8b12a6a\",\n                        \"100c9244-9c74-4166-82b5-1e9890cf455d\",\n                        \"3f728c36-56f2-487c-a3e2-3cafe49f7da9\",\n                        \"b7684bc3-cec7-4f4e-a2bc-ac0866094ac6\",\n                        \"c327f8af-fd9f-47d8-bf47-b8fe34719fd3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 96.33493041992188,\n            \"Text\": \"Applicant iInformation\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2504812479019165,\n                    \"Height\": 0.04153836891055107,\n                    \"Left\": 0.03002910688519478,\n                    \"Top\": 0.03067307360470295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.07221144437789917\n                    },\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.07221144437789917\n                    }\n                ]\n            },\n            \"Id\": \"4748f698-085d-4659-87bd-9fc9eec8f81c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"56167d2b-7edd-451c-9d21-5a4dd132847f\",\n                        \"7b175d1f-47b2-40bf-aa06-059cdc7a1f32\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.2441635131836,\n            \"Text\": \"Full Name: Jane Doe\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21064715087413788,\n                    \"Height\": 0.033972203731536865,\n                    \"Left\": 0.028746025636792183,\n                    \"Top\": 0.11213930696249008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.14611151814460754\n                    },\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.14611151814460754\n                    }\n                ]\n            },\n            \"Id\": \"e317b4e1-3eb2-492e-a3a9-2d337f6ba643\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15c0cdb2-e75d-4003-b5d3-6a686001a701\",\n                        \"b1998385-b2df-4099-a2a1-1942b5db099e\",\n                        \"acc5b5fa-8e18-408f-ae6e-bf3336f9011e\",\n                        \"52821638-ea10-4309-9c9b-08007b95e63c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.64936828613281,\n            \"Text\": \"Phone Number: 555-0100\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2678629159927368,\n                    \"Height\": 0.036048345267772675,\n                    \"Left\": 0.029274573549628258,\n                    \"Top\": 0.19063594937324524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.22668428719043732\n                    },\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.22668428719043732\n                    }\n                ]\n            },\n            \"Id\": \"ceb25100-ccb7-4885-8cf2-341582efd867\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4dd773f-ddb7-407e-9dbc-cf623204e654\",\n                        \"63c1b36b-6b46-4391-b3a5-379247f448f8\",\n                        \"6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.06343078613281,\n            \"Text\": \"Home Address: 123 Any Street. Any Town. USA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.48566311597824097,\n                    \"Height\": 0.0393204428255558,\n                    \"Left\": 0.02940143272280693,\n                    \"Top\": 0.26757919788360596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.30689963698387146\n                    },\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.30689963698387146\n                    }\n                ]\n            },\n            \"Id\": \"6e644963-82d4-44c6-b3b7-225318743bbb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c86d0d6a-bb66-45ae-9f64-cce786a87f5e\",\n                        \"261d78c3-da83-48ff-ae0d-767d042e27cd\",\n                        \"60f9dba7-817a-4940-a1c4-e4f91ed9df83\",\n                        \"dd3d86a3-2b09-4532-8714-21a6634bf7c4\",\n                        \"c9d0f076-4489-4aa3-8790-fc2f5f011b75\",\n                        \"3b6b440c-172d-4fb0-9306-f5676934f1e0\",\n                        \"e1335e11-d8b5-4eac-a330-0e3ce583d598\",\n                        \"1263d49f-d745-463c-9cd6-e50cc4f041c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.68299102783203,\n            \"Text\": \"Mailing Address: same as home address\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.41890865564346313,\n                    \"Height\": 0.04078252613544464,\n                    \"Left\": 0.02931326813995838,\n                    \"Top\": 0.34663155674934387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.3874140977859497\n                    },\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.3874140977859497\n                    }\n                ]\n            },\n            \"Id\": \"83f3f545-fb95-4076-b1bd-6413a102d74f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a3bfe68d-d04e-4726-a617-a9133eaf4d4c\",\n                        \"633eab1f-bf59-4d65-b6d8-ea19063a79d2\",\n                        \"ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd\",\n                        \"13cfdb19-c9d2-42e2-8046-5f917f9d1818\",\n                        \"d47560af-a6b4-44ee-ab15-9ff70b0bf073\",\n                        \"68c73643-715a-425f-b82b-19cb66df9557\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.4739990234375,\n            \"Text\": \"Previous Employment History\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.34120476245880127,\n                    \"Height\": 0.03676837682723999,\n                    \"Left\": 0.2908104658126831,\n                    \"Top\": 0.46816155314445496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.5049299597740173\n                    },\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.5049299597740173\n                    }\n                ]\n            },\n            \"Id\": \"352669df-a583-424d-a906-763337cc7cc6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dbdca83-945c-42e0-b156-1c716058279f\",\n                        \"e4cc6233-3e13-47a5-a7a9-414a9acec09f\",\n                        \"70eca258-f69f-47f4-8b95-1f461e7ecddf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 95.714111328125,\n            \"Text\": \"Start Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10530510544776917,\n                    \"Height\": 0.0411636047065258,\n                    \"Left\": 0.031593941152095795,\n                    \"Top\": 0.5343702435493469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5755338668823242\n                    },\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.5755338668823242\n                    }\n                ]\n            },\n            \"Id\": \"6df8280e-65a7-463a-8bde-9153ebfb45d2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"4673d206-c4f6-45b8-8643-e44a230cbb24\",\n                        \"d6e19a98-b09d-4bae-9f9b-baa321351872\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.55696868896484,\n            \"Text\": \"End Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09375394135713577,\n                    \"Height\": 0.033345453441143036,\n                    \"Left\": 0.15889933705329895,\n                    \"Top\": 0.537799596786499\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.5711450576782227\n                    },\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.5711450576782227\n                    }\n                ]\n            },\n            \"Id\": \"73320c44-4bb6-4e15-92f8-e81a650602db\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6c717f5a-e9b4-427d-a83a-b87d20b875fb\",\n                        \"7bf142ae-3c34-4074-a247-f139a07456af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.83122253417969,\n            \"Text\": \"Employer Name\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16646261513233185,\n                    \"Height\": 0.03759261220693588,\n                    \"Left\": 0.2883279621601105,\n                    \"Top\": 0.5367630124092102\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5743556618690491\n                    },\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5743556618690491\n                    }\n                ]\n            },\n            \"Id\": \"08f0f640-08e2-40c3-88e9-bf5fd13a82af\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"cdba0022-062e-4196-9d34-4d28b9598008\",\n                        \"8b2e9227-666b-49a1-9a9d-1bd75cfa0d9e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.25993347167969,\n            \"Text\": \"Position Held\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13803058862686157,\n                    \"Height\": 0.03316912800073624,\n                    \"Left\": 0.4962921440601349,\n                    \"Top\": 0.5378665328025818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5710356831550598\n                    },\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5710356831550598\n                    }\n                ]\n            },\n            \"Id\": \"17c4c894-19e9-485b-b7b5-41ed78887e8f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"98ac6ea3-bbf6-4812-a989-dddc60b67722\",\n                        \"77e3a8a0-3920-49a9-afba-eaec9b8c736f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8578872680664,\n            \"Text\": \"Reason for leaving\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.19123753905296326,\n                    \"Height\": 0.03537239506840706,\n                    \"Left\": 0.6786987781524658,\n                    \"Top\": 0.5365371704101562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5719096064567566\n                    },\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5719096064567566\n                    }\n                ]\n            },\n            \"Id\": \"e1fd5caf-dd77-4183-a4f0-c6cc901c5020\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"63ed2051-21b4-49fa-af5e-cf8f886a749b\",\n                        \"b5c704e7-682f-4505-9d15-d7fe512f346c\",\n                        \"5724717c-5be1-42b5-8087-91fad61587a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.80323028564453,\n            \"Text\": \"1/15/2009\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10994744300842285,\n                    \"Height\": 0.03377895802259445,\n                    \"Left\": 0.03066299483180046,\n                    \"Top\": 0.6011941432952881\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6349731087684631\n                    },\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6349731087684631\n                    }\n                ]\n            },\n            \"Id\": \"6f11ec80-b3c0-494a-ae5f-0c01bb8b9ab3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4e54163-997b-4826-95be-18f6437d112c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 98.44173431396484,\n            \"Text\": \"6/30/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10669334977865219,\n                    \"Height\": 0.03327876701951027,\n                    \"Left\": 0.1591043472290039,\n                    \"Top\": 0.6038529276847839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6371316909790039\n                    },\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6371316909790039\n                    }\n                ]\n            },\n            \"Id\": \"1c4793e1-6a9e-4a86-8363-452e2411e7cb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8eab22d6-ee35-442d-902b-a94dcf6043c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.49974060058594,\n            \"Text\": \"Any Company\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14184918999671936,\n                    \"Height\": 0.036288268864154816,\n                    \"Left\": 0.28729841113090515,\n                    \"Top\": 0.603325605392456\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.6396138668060303\n                    },\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.6396138668060303\n                    }\n                ]\n            },\n            \"Id\": \"bf6728f6-0dfe-4a44-9da1-1c05897fe86f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15090e8f-f0eb-48c7-a1ae-477549dcdce9\",\n                        \"9b8383fc-288a-4de8-b63e-3501ae5ff6a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.8732681274414,\n            \"Text\": \"Head Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11757069826126099,\n                    \"Height\": 0.03858752176165581,\n                    \"Left\": 0.4963566064834595,\n                    \"Top\": 0.6006042957305908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6391918063163757\n                    },\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6391918063163757\n                    }\n                ]\n            },\n            \"Id\": \"5a889905-9d78-488f-ac42-ef14aaa9f4b3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6113544-3027-4191-abe1-bc84a5626647\",\n                        \"c5658fa3-b21b-409a-b77e-d7f4e9483bd8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.88957214355469,\n            \"Text\": \"Family relocated\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16806642711162567,\n                    \"Height\": 0.03929377347230911,\n                    \"Left\": 0.6792210340499878,\n                    \"Top\": 0.6023225784301758\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6416163444519043\n                    },\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6416163444519043\n                    }\n                ]\n            },\n            \"Id\": \"6cd8eebf-0254-4410-bb34-1f8b671a3bd0\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"61617b50-93f2-45ae-9215-2e9f3a61fd7f\",\n                        \"fbd62a53-86bf-4104-9717-e4f19725c62a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.28593444824219,\n            \"Text\": \"8/15/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1083427295088768,\n                    \"Height\": 0.0370258204638958,\n                    \"Left\": 0.030907871201634407,\n                    \"Top\": 0.6694209575653076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.7064467668533325\n                    },\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.7064467668533325\n                    }\n                ]\n            },\n            \"Id\": \"7d83c491-1c1f-4474-b446-971fda9e2b3a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0f9a0d2b-0e66-4acb-94ba-3c78d92686d5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.76187133789062,\n            \"Text\": \"present\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07843472808599472,\n                    \"Height\": 0.03881922736763954,\n                    \"Left\": 0.15847039222717285,\n                    \"Top\": 0.6697209477424622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.7085402011871338\n                    },\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.7085402011871338\n                    }\n                ]\n            },\n            \"Id\": \"b0b4f45c-e6c5-4cad-84e7-59221f3bce3c\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4a4b18b-ec99-4427-9ab6-2eeecb1665f7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.70067596435547,\n            \"Text\": \"Example Corp.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14618265628814697,\n                    \"Height\": 0.03816714510321617,\n                    \"Left\": 0.2888321280479431,\n                    \"Top\": 0.670017659664154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.7081848382949829\n                    },\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.7081848382949829\n                    }\n                ]\n            },\n            \"Id\": \"4a64a327-e0e9-49bf-abe3-ed4ca630d8f6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"1a31a68e-ec1c-4317-b669-1b60dc40a789\",\n                        \"66e99c7d-d642-4d49-bb9f-b765d54cc182\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.56857299804688,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.058011386543512344,\n                    \"Height\": 0.03376809135079384,\n                    \"Left\": 0.49631235003471375,\n                    \"Top\": 0.6704307794570923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.7041988372802734\n                    },\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.7041988372802734\n                    }\n                ]\n            },\n            \"Id\": \"2156df6b-ef89-4d47-bb5d-df5e7c401119\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"253d6b96-bf27-4634-b731-d7bd49557eeb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.72576141357422,\n            \"Text\": \"N/A, current\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12803903222084045,\n                    \"Height\": 0.035501159727573395,\n                    \"Left\": 0.6785282492637634,\n                    \"Top\": 0.6710510849952698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.7065522074699402\n                    },\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.7065522074699402\n                    }\n                ]\n            },\n            \"Id\": \"77dd2f37-84ef-404a-98c3-972328acf52b\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"79bd79d5-4cbf-43ed-946d-c8b19a2b75a9\",\n                        \"f1173c78-986c-42f9-9e10-35d57d9bb51c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"LINE\",\n            \"Confidence\": 99.31480407714844,\n            \"Text\": \"employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09695321321487427,\n                    \"Height\": 0.03765399754047394,\n                    \"Left\": 0.6785619854927063,\n                    \"Top\": 0.7140272259712219\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7516812682151794\n                    },\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7516812682151794\n                    }\n                ]\n            },\n            \"Id\": \"e2335bee-96cc-4632-9cd0-5de1eb3b2576\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"91e94ebe-a273-437e-a4d4-e06b2905c8d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70677185058594,\n            \"Text\": \"Applicant\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10716313868761063,\n                    \"Height\": 0.04153836891055107,\n                    \"Left\": 0.03002910688519478,\n                    \"Top\": 0.03067307360470295\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.1371922492980957,\n                        \"Y\": 0.03067307360470295\n                    },\n                    {\n                        \"X\": 0.1371922492980957,\n                        \"Y\": 0.07221144437789917\n                    },\n                    {\n                        \"X\": 0.03002910688519478,\n                        \"Y\": 0.07221144437789917\n                    }\n                ]\n            },\n            \"Id\": \"56167d2b-7edd-451c-9d21-5a4dd132847f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 92.96308898925781,\n            \"Text\": \"iInformation\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.13362237811088562,\n                    \"Height\": 0.036215607076883316,\n                    \"Left\": 0.14688797295093536,\n                    \"Top\": 0.03133967146277428\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14688797295093536,\n                        \"Y\": 0.03133967146277428\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.03133967146277428\n                    },\n                    {\n                        \"X\": 0.2805103361606598,\n                        \"Y\": 0.06755527853965759\n                    },\n                    {\n                        \"X\": 0.14688797295093536,\n                        \"Y\": 0.06755527853965759\n                    }\n                ]\n            },\n            \"Id\": \"7b175d1f-47b2-40bf-aa06-059cdc7a1f32\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.35751342773438,\n            \"Text\": \"Full\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03760237246751785,\n                    \"Height\": 0.031485531479120255,\n                    \"Left\": 0.028746025636792183,\n                    \"Top\": 0.1136014312505722\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.1136014312505722\n                    },\n                    {\n                        \"X\": 0.06634839624166489,\n                        \"Y\": 0.1136014312505722\n                    },\n                    {\n                        \"X\": 0.06634839624166489,\n                        \"Y\": 0.14508697390556335\n                    },\n                    {\n                        \"X\": 0.028746025636792183,\n                        \"Y\": 0.14508697390556335\n                    }\n                ]\n            },\n            \"Id\": \"15c0cdb2-e75d-4003-b5d3-6a686001a701\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74662780761719,\n            \"Text\": \"Name:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06856495141983032,\n                    \"Height\": 0.03152376785874367,\n                    \"Left\": 0.07292687147855759,\n                    \"Top\": 0.11458774656057358\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.07292687147855759,\n                        \"Y\": 0.11458774656057358\n                    },\n                    {\n                        \"X\": 0.1414918154478073,\n                        \"Y\": 0.11458774656057358\n                    },\n                    {\n                        \"X\": 0.1414918154478073,\n                        \"Y\": 0.14611151814460754\n                    },\n                    {\n                        \"X\": 0.07292687147855759,\n                        \"Y\": 0.14611151814460754\n                    }\n                ]\n            },\n            \"Id\": \"52821638-ea10-4309-9c9b-08007b95e63c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.64032745361328,\n            \"Text\": \"Jane\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04376714304089546,\n                    \"Height\": 0.03144075721502304,\n                    \"Left\": 0.14814163744449615,\n                    \"Top\": 0.11421803385019302\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14814163744449615,\n                        \"Y\": 0.11421803385019302\n                    },\n                    {\n                        \"X\": 0.19190877676010132,\n                        \"Y\": 0.11421803385019302\n                    },\n                    {\n                        \"X\": 0.19190877676010132,\n                        \"Y\": 0.14565879106521606\n                    },\n                    {\n                        \"X\": 0.14814163744449615,\n                        \"Y\": 0.14565879106521606\n                    }\n                ]\n            },\n            \"Id\": \"acc5b5fa-8e18-408f-ae6e-bf3336f9011e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2322006225586,\n            \"Text\": \"Doe\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04023061692714691,\n                    \"Height\": 0.03364269435405731,\n                    \"Left\": 0.199162557721138,\n                    \"Top\": 0.11213930696249008\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.199162557721138,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.11213930696249008\n                    },\n                    {\n                        \"X\": 0.2393931746482849,\n                        \"Y\": 0.145782008767128\n                    },\n                    {\n                        \"X\": 0.199162557721138,\n                        \"Y\": 0.145782008767128\n                    }\n                ]\n            },\n            \"Id\": \"b1998385-b2df-4099-a2a1-1942b5db099e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.39933013916016,\n            \"Text\": \"Phone\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06604675948619843,\n                    \"Height\": 0.036048345267772675,\n                    \"Left\": 0.029274573549628258,\n                    \"Top\": 0.19063594937324524\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.09532133489847183,\n                        \"Y\": 0.19063594937324524\n                    },\n                    {\n                        \"X\": 0.09532133489847183,\n                        \"Y\": 0.22668428719043732\n                    },\n                    {\n                        \"X\": 0.029274573549628258,\n                        \"Y\": 0.22668428719043732\n                    }\n                ]\n            },\n            \"Id\": \"b4dd773f-ddb7-407e-9dbc-cf623204e654\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.79454040527344,\n            \"Text\": \"Number:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09247590601444244,\n                    \"Height\": 0.034948017448186874,\n                    \"Left\": 0.1015779972076416,\n                    \"Top\": 0.19128166139125824\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1015779972076416,\n                        \"Y\": 0.19128166139125824\n                    },\n                    {\n                        \"X\": 0.19405390322208405,\n                        \"Y\": 0.19128166139125824\n                    },\n                    {\n                        \"X\": 0.19405390322208405,\n                        \"Y\": 0.2262296825647354\n                    },\n                    {\n                        \"X\": 0.1015779972076416,\n                        \"Y\": 0.2262296825647354\n                    }\n                ]\n            },\n            \"Id\": \"63c1b36b-6b46-4391-b3a5-379247f448f8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.75424194335938,\n            \"Text\": \"555-0100\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09652186185121536,\n                    \"Height\": 0.03407157212495804,\n                    \"Left\": 0.20061562955379486,\n                    \"Top\": 0.1911606788635254\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20061562955379486,\n                        \"Y\": 0.1911606788635254\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.1911606788635254\n                    },\n                    {\n                        \"X\": 0.2971374988555908,\n                        \"Y\": 0.22523224353790283\n                    },\n                    {\n                        \"X\": 0.20061562955379486,\n                        \"Y\": 0.22523224353790283\n                    }\n                ]\n            },\n            \"Id\": \"6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7176284790039,\n            \"Text\": \"Home\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06157437339425087,\n                    \"Height\": 0.03566235676407814,\n                    \"Left\": 0.02940143272280693,\n                    \"Top\": 0.2697528600692749\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.2697528600692749\n                    },\n                    {\n                        \"X\": 0.0909758061170578,\n                        \"Y\": 0.2697528600692749\n                    },\n                    {\n                        \"X\": 0.0909758061170578,\n                        \"Y\": 0.30541521310806274\n                    },\n                    {\n                        \"X\": 0.02940143272280693,\n                        \"Y\": 0.30541521310806274\n                    }\n                ]\n            },\n            \"Id\": \"c9d0f076-4489-4aa3-8790-fc2f5f011b75\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.83595275878906,\n            \"Text\": \"Address:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09089267998933792,\n                    \"Height\": 0.034272804856300354,\n                    \"Left\": 0.09725941717624664,\n                    \"Top\": 0.26987001299858093\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.09725941717624664,\n                        \"Y\": 0.26987001299858093\n                    },\n                    {\n                        \"X\": 0.18815210461616516,\n                        \"Y\": 0.26987001299858093\n                    },\n                    {\n                        \"X\": 0.18815210461616516,\n                        \"Y\": 0.3041428029537201\n                    },\n                    {\n                        \"X\": 0.09725941717624664,\n                        \"Y\": 0.3041428029537201\n                    }\n                ]\n            },\n            \"Id\": \"1263d49f-d745-463c-9cd6-e50cc4f041c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76658630371094,\n            \"Text\": \"123\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03711886331439018,\n                    \"Height\": 0.03453168272972107,\n                    \"Left\": 0.19541588425636292,\n                    \"Top\": 0.2700358033180237\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.19541588425636292,\n                        \"Y\": 0.2700358033180237\n                    },\n                    {\n                        \"X\": 0.2325347512960434,\n                        \"Y\": 0.2700358033180237\n                    },\n                    {\n                        \"X\": 0.2325347512960434,\n                        \"Y\": 0.30456748604774475\n                    },\n                    {\n                        \"X\": 0.19541588425636292,\n                        \"Y\": 0.30456748604774475\n                    }\n                ]\n            },\n            \"Id\": \"c86d0d6a-bb66-45ae-9f64-cce786a87f5e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 94.848876953125,\n            \"Text\": \"Any\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03809557482600212,\n                    \"Height\": 0.033582814037799835,\n                    \"Left\": 0.23934930562973022,\n                    \"Top\": 0.2701190710067749\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.23934930562973022,\n                        \"Y\": 0.2701190710067749\n                    },\n                    {\n                        \"X\": 0.27744486927986145,\n                        \"Y\": 0.2701190710067749\n                    },\n                    {\n                        \"X\": 0.27744486927986145,\n                        \"Y\": 0.30370190739631653\n                    },\n                    {\n                        \"X\": 0.23934930562973022,\n                        \"Y\": 0.30370190739631653\n                    }\n                ]\n            },\n            \"Id\": \"261d78c3-da83-48ff-ae0d-767d042e27cd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.27799987792969,\n            \"Text\": \"Street.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06751600652933121,\n                    \"Height\": 0.037430375814437866,\n                    \"Left\": 0.28329533338546753,\n                    \"Top\": 0.2694692611694336\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28329533338546753,\n                        \"Y\": 0.2694692611694336\n                    },\n                    {\n                        \"X\": 0.35081133246421814,\n                        \"Y\": 0.2694692611694336\n                    },\n                    {\n                        \"X\": 0.35081133246421814,\n                        \"Y\": 0.30689963698387146\n                    },\n                    {\n                        \"X\": 0.28329533338546753,\n                        \"Y\": 0.30689963698387146\n                    }\n                ]\n            },\n            \"Id\": \"e1335e11-d8b5-4eac-a330-0e3ce583d598\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 97.77952575683594,\n            \"Text\": \"Any\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.039666011929512024,\n                    \"Height\": 0.03783031925559044,\n                    \"Left\": 0.35845300555229187,\n                    \"Top\": 0.26757919788360596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.35845300555229187,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.3981190323829651,\n                        \"Y\": 0.26757919788360596\n                    },\n                    {\n                        \"X\": 0.3981190323829651,\n                        \"Y\": 0.3054095208644867\n                    },\n                    {\n                        \"X\": 0.35845300555229187,\n                        \"Y\": 0.3054095208644867\n                    }\n                ]\n            },\n            \"Id\": \"60f9dba7-817a-4940-a1c4-e4f91ed9df83\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 96.12906646728516,\n            \"Text\": \"Town.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06211653724312782,\n                    \"Height\": 0.03377317637205124,\n                    \"Left\": 0.4035578966140747,\n                    \"Top\": 0.2707397937774658\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4035578966140747,\n                        \"Y\": 0.2707397937774658\n                    },\n                    {\n                        \"X\": 0.4656744599342346,\n                        \"Y\": 0.2707397937774658\n                    },\n                    {\n                        \"X\": 0.4656744599342346,\n                        \"Y\": 0.30451294779777527\n                    },\n                    {\n                        \"X\": 0.4035578966140747,\n                        \"Y\": 0.30451294779777527\n                    }\n                ]\n            },\n            \"Id\": \"3b6b440c-172d-4fb0-9306-f5676934f1e0\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.15184020996094,\n            \"Text\": \"USA\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0430777333676815,\n                    \"Height\": 0.036002177745103836,\n                    \"Left\": 0.4719868302345276,\n                    \"Top\": 0.2684972286224365\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4719868302345276,\n                        \"Y\": 0.2684972286224365\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.2684972286224365\n                    },\n                    {\n                        \"X\": 0.515064537525177,\n                        \"Y\": 0.30449938774108887\n                    },\n                    {\n                        \"X\": 0.4719868302345276,\n                        \"Y\": 0.30449938774108887\n                    }\n                ]\n            },\n            \"Id\": \"dd3d86a3-2b09-4532-8714-21a6634bf7c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.78374481201172,\n            \"Text\": \"Mailing\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0780109241604805,\n                    \"Height\": 0.0394306443631649,\n                    \"Left\": 0.02931326813995838,\n                    \"Top\": 0.3479834496974945\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.3479834496974945\n                    },\n                    {\n                        \"X\": 0.10732419788837433,\n                        \"Y\": 0.3479834496974945\n                    },\n                    {\n                        \"X\": 0.10732419788837433,\n                        \"Y\": 0.3874140977859497\n                    },\n                    {\n                        \"X\": 0.02931326813995838,\n                        \"Y\": 0.3874140977859497\n                    }\n                ]\n            },\n            \"Id\": \"13cfdb19-c9d2-42e2-8046-5f917f9d1818\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 93.70197296142578,\n            \"Text\": \"Address:\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09546246379613876,\n                    \"Height\": 0.03629772365093231,\n                    \"Left\": 0.11462893337011337,\n                    \"Top\": 0.34784042835235596\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.11462893337011337,\n                        \"Y\": 0.34784042835235596\n                    },\n                    {\n                        \"X\": 0.21009139716625214,\n                        \"Y\": 0.34784042835235596\n                    },\n                    {\n                        \"X\": 0.21009139716625214,\n                        \"Y\": 0.3841381371021271\n                    },\n                    {\n                        \"X\": 0.11462893337011337,\n                        \"Y\": 0.3841381371021271\n                    }\n                ]\n            },\n            \"Id\": \"68c73643-715a-425f-b82b-19cb66df9557\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.15567779541016,\n            \"Text\": \"same\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05386832728981972,\n                    \"Height\": 0.037169020622968674,\n                    \"Left\": 0.21596916019916534,\n                    \"Top\": 0.34663155674934387\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21596916019916534,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.26983749866485596,\n                        \"Y\": 0.34663155674934387\n                    },\n                    {\n                        \"X\": 0.26983749866485596,\n                        \"Y\": 0.38380059599876404\n                    },\n                    {\n                        \"X\": 0.21596916019916534,\n                        \"Y\": 0.38380059599876404\n                    }\n                ]\n            },\n            \"Id\": \"633eab1f-bf59-4d65-b6d8-ea19063a79d2\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.70250701904297,\n            \"Text\": \"as\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.021625958383083344,\n                    \"Height\": 0.03536900505423546,\n                    \"Left\": 0.2770702540874481,\n                    \"Top\": 0.3487294614315033\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2770702540874481,\n                        \"Y\": 0.3487294614315033\n                    },\n                    {\n                        \"X\": 0.29869621992111206,\n                        \"Y\": 0.3487294614315033\n                    },\n                    {\n                        \"X\": 0.29869621992111206,\n                        \"Y\": 0.38409844040870667\n                    },\n                    {\n                        \"X\": 0.2770702540874481,\n                        \"Y\": 0.38409844040870667\n                    }\n                ]\n            },\n            \"Id\": \"a3bfe68d-d04e-4726-a617-a9133eaf4d4c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.9146957397461,\n            \"Text\": \"home\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05847536772489548,\n                    \"Height\": 0.03493012860417366,\n                    \"Left\": 0.30445289611816406,\n                    \"Top\": 0.3482665717601776\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.30445289611816406,\n                        \"Y\": 0.3482665717601776\n                    },\n                    {\n                        \"X\": 0.36292827129364014,\n                        \"Y\": 0.3482665717601776\n                    },\n                    {\n                        \"X\": 0.36292827129364014,\n                        \"Y\": 0.38319671154022217\n                    },\n                    {\n                        \"X\": 0.30445289611816406,\n                        \"Y\": 0.38319671154022217\n                    }\n                ]\n            },\n            \"Id\": \"ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8393783569336,\n            \"Text\": \"address\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07848889380693436,\n                    \"Height\": 0.03136633336544037,\n                    \"Left\": 0.3697330355644226,\n                    \"Top\": 0.35001784563064575\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3697330355644226,\n                        \"Y\": 0.35001784563064575\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.35001784563064575\n                    },\n                    {\n                        \"X\": 0.44822192192077637,\n                        \"Y\": 0.3813841640949249\n                    },\n                    {\n                        \"X\": 0.3697330355644226,\n                        \"Y\": 0.3813841640949249\n                    }\n                ]\n            },\n            \"Id\": \"d47560af-a6b4-44ee-ab15-9ff70b0bf073\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.37450408935547,\n            \"Text\": \"Previous\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09862715750932693,\n                    \"Height\": 0.031485967338085175,\n                    \"Left\": 0.2908104658126831,\n                    \"Top\": 0.4700919985771179\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.4700919985771179\n                    },\n                    {\n                        \"X\": 0.38943764567375183,\n                        \"Y\": 0.4700919985771179\n                    },\n                    {\n                        \"X\": 0.38943764567375183,\n                        \"Y\": 0.5015779733657837\n                    },\n                    {\n                        \"X\": 0.2908104658126831,\n                        \"Y\": 0.5015779733657837\n                    }\n                ]\n            },\n            \"Id\": \"e4cc6233-3e13-47a5-a7a9-414a9acec09f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.41735076904297,\n            \"Text\": \"Employment\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.14262399077415466,\n                    \"Height\": 0.03676837682723999,\n                    \"Left\": 0.3978722393512726,\n                    \"Top\": 0.46816155314445496\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3978722393512726,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.5404962301254272,\n                        \"Y\": 0.46816155314445496\n                    },\n                    {\n                        \"X\": 0.5404962301254272,\n                        \"Y\": 0.5049299597740173\n                    },\n                    {\n                        \"X\": 0.3978722393512726,\n                        \"Y\": 0.5049299597740173\n                    }\n                ]\n            },\n            \"Id\": \"70eca258-f69f-47f4-8b95-1f461e7ecddf\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.6301498413086,\n            \"Text\": \"History\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08229811489582062,\n                    \"Height\": 0.035257626324892044,\n                    \"Left\": 0.549717128276825,\n                    \"Top\": 0.4685477614402771\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.549717128276825,\n                        \"Y\": 0.4685477614402771\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.4685477614402771\n                    },\n                    {\n                        \"X\": 0.6320152282714844,\n                        \"Y\": 0.50380539894104\n                    },\n                    {\n                        \"X\": 0.549717128276825,\n                        \"Y\": 0.50380539894104\n                    }\n                ]\n            },\n            \"Id\": \"9dbdca83-945c-42e0-b156-1c716058279f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 91.90143585205078,\n            \"Text\": \"Start\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05028469115495682,\n                    \"Height\": 0.03298593685030937,\n                    \"Left\": 0.031593941152095795,\n                    \"Top\": 0.5380741357803345\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.5380741357803345\n                    },\n                    {\n                        \"X\": 0.08187863230705261,\n                        \"Y\": 0.5380741357803345\n                    },\n                    {\n                        \"X\": 0.08187863230705261,\n                        \"Y\": 0.571060061454773\n                    },\n                    {\n                        \"X\": 0.031593941152095795,\n                        \"Y\": 0.571060061454773\n                    }\n                ]\n            },\n            \"Id\": \"d6e19a98-b09d-4bae-9f9b-baa321351872\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.52678680419922,\n            \"Text\": \"Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047863222658634186,\n                    \"Height\": 0.0411636047065258,\n                    \"Left\": 0.08903582394123077,\n                    \"Top\": 0.5343702435493469\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.08903582394123077,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5343702435493469\n                    },\n                    {\n                        \"X\": 0.13689903914928436,\n                        \"Y\": 0.5755338668823242\n                    },\n                    {\n                        \"X\": 0.08903582394123077,\n                        \"Y\": 0.5755338668823242\n                    }\n                ]\n            },\n            \"Id\": \"4673d206-c4f6-45b8-8643-e44a230cbb24\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.48751831054688,\n            \"Text\": \"End\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03862469643354416,\n                    \"Height\": 0.033345453441143036,\n                    \"Left\": 0.15889933705329895,\n                    \"Top\": 0.537799596786499\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.1975240260362625,\n                        \"Y\": 0.537799596786499\n                    },\n                    {\n                        \"X\": 0.1975240260362625,\n                        \"Y\": 0.5711450576782227\n                    },\n                    {\n                        \"X\": 0.15889933705329895,\n                        \"Y\": 0.5711450576782227\n                    }\n                ]\n            },\n            \"Id\": \"6c717f5a-e9b4-427d-a83a-b87d20b875fb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.62641906738281,\n            \"Text\": \"Date\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.048587359488010406,\n                    \"Height\": 0.030598783865571022,\n                    \"Left\": 0.20406591892242432,\n                    \"Top\": 0.5399602055549622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20406591892242432,\n                        \"Y\": 0.5399602055549622\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.5399602055549622\n                    },\n                    {\n                        \"X\": 0.2526532709598541,\n                        \"Y\": 0.5705589652061462\n                    },\n                    {\n                        \"X\": 0.20406591892242432,\n                        \"Y\": 0.5705589652061462\n                    }\n                ]\n            },\n            \"Id\": \"7bf142ae-3c34-4074-a247-f139a07456af\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87083435058594,\n            \"Text\": \"Employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09709158539772034,\n                    \"Height\": 0.03759261220693588,\n                    \"Left\": 0.2883279621601105,\n                    \"Top\": 0.5367630124092102\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.3854195475578308,\n                        \"Y\": 0.5367630124092102\n                    },\n                    {\n                        \"X\": 0.3854195475578308,\n                        \"Y\": 0.5743556618690491\n                    },\n                    {\n                        \"X\": 0.2883279621601105,\n                        \"Y\": 0.5743556618690491\n                    }\n                ]\n            },\n            \"Id\": \"8b2e9227-666b-49a1-9a9d-1bd75cfa0d9e\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.7916259765625,\n            \"Text\": \"Name\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06133158877491951,\n                    \"Height\": 0.0318920873105526,\n                    \"Left\": 0.3934589922428131,\n                    \"Top\": 0.5391314625740051\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.3934589922428131,\n                        \"Y\": 0.5391314625740051\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5391314625740051\n                    },\n                    {\n                        \"X\": 0.4547905921936035,\n                        \"Y\": 0.5710235238075256\n                    },\n                    {\n                        \"X\": 0.3934589922428131,\n                        \"Y\": 0.5710235238075256\n                    }\n                ]\n            },\n            \"Id\": \"cdba0022-062e-4196-9d34-4d28b9598008\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.5660400390625,\n            \"Text\": \"Position\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08406968414783478,\n                    \"Height\": 0.03316912800073624,\n                    \"Left\": 0.4962921440601349,\n                    \"Top\": 0.5378665328025818\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.5803618431091309,\n                        \"Y\": 0.5378665328025818\n                    },\n                    {\n                        \"X\": 0.5803618431091309,\n                        \"Y\": 0.5710356831550598\n                    },\n                    {\n                        \"X\": 0.4962921440601349,\n                        \"Y\": 0.5710356831550598\n                    }\n                ]\n            },\n            \"Id\": \"77e3a8a0-3920-49a9-afba-eaec9b8c736f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.95382690429688,\n            \"Text\": \"Held\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.047177914530038834,\n                    \"Height\": 0.03184661269187927,\n                    \"Left\": 0.5871447920799255,\n                    \"Top\": 0.5389699935913086\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5871447920799255,\n                        \"Y\": 0.5389699935913086\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5389699935913086\n                    },\n                    {\n                        \"X\": 0.6343227624893188,\n                        \"Y\": 0.5708165764808655\n                    },\n                    {\n                        \"X\": 0.5871447920799255,\n                        \"Y\": 0.5708165764808655\n                    }\n                ]\n            },\n            \"Id\": \"98ac6ea3-bbf6-4812-a989-dddc60b67722\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8598861694336,\n            \"Text\": \"Reason\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07401339709758759,\n                    \"Height\": 0.03177262470126152,\n                    \"Left\": 0.6786987781524658,\n                    \"Top\": 0.5378985404968262\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5378985404968262\n                    },\n                    {\n                        \"X\": 0.7527121901512146,\n                        \"Y\": 0.5378985404968262\n                    },\n                    {\n                        \"X\": 0.7527121901512146,\n                        \"Y\": 0.5696711540222168\n                    },\n                    {\n                        \"X\": 0.6786987781524658,\n                        \"Y\": 0.5696711540222168\n                    }\n                ]\n            },\n            \"Id\": \"5724717c-5be1-42b5-8087-91fad61587a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.88066864013672,\n            \"Text\": \"for\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.029880456626415253,\n                    \"Height\": 0.03472665697336197,\n                    \"Left\": 0.7602495551109314,\n                    \"Top\": 0.5371829271316528\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7602495551109314,\n                        \"Y\": 0.5371829271316528\n                    },\n                    {\n                        \"X\": 0.7901300191879272,\n                        \"Y\": 0.5371829271316528\n                    },\n                    {\n                        \"X\": 0.7901300191879272,\n                        \"Y\": 0.5719096064567566\n                    },\n                    {\n                        \"X\": 0.7602495551109314,\n                        \"Y\": 0.5719096064567566\n                    }\n                ]\n            },\n            \"Id\": \"63ed2051-21b4-49fa-af5e-cf8f886a749b\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.8331069946289,\n            \"Text\": \"leaving\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07356271147727966,\n                    \"Height\": 0.034270282834768295,\n                    \"Left\": 0.7963736057281494,\n                    \"Top\": 0.5365371704101562\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7963736057281494,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5365371704101562\n                    },\n                    {\n                        \"X\": 0.8699363470077515,\n                        \"Y\": 0.5708074569702148\n                    },\n                    {\n                        \"X\": 0.7963736057281494,\n                        \"Y\": 0.5708074569702148\n                    }\n                ]\n            },\n            \"Id\": \"b5c704e7-682f-4505-9d15-d7fe512f346c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.80323028564453,\n            \"Text\": \"1/15/2009\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10994744300842285,\n                    \"Height\": 0.03377895802259445,\n                    \"Left\": 0.03066299483180046,\n                    \"Top\": 0.6011941432952881\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6011941432952881\n                    },\n                    {\n                        \"X\": 0.1406104415655136,\n                        \"Y\": 0.6349731087684631\n                    },\n                    {\n                        \"X\": 0.03066299483180046,\n                        \"Y\": 0.6349731087684631\n                    }\n                ]\n            },\n            \"Id\": \"b4e54163-997b-4826-95be-18f6437d112c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 98.44173431396484,\n            \"Text\": \"6/30/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.10669334977865219,\n                    \"Height\": 0.03327876701951027,\n                    \"Left\": 0.1591043472290039,\n                    \"Top\": 0.6038529276847839\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6038529276847839\n                    },\n                    {\n                        \"X\": 0.2657977044582367,\n                        \"Y\": 0.6371316909790039\n                    },\n                    {\n                        \"X\": 0.1591043472290039,\n                        \"Y\": 0.6371316909790039\n                    }\n                ]\n            },\n            \"Id\": \"8eab22d6-ee35-442d-902b-a94dcf6043c4\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.2585220336914,\n            \"Text\": \"Any\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.03980664163827896,\n                    \"Height\": 0.036288268864154816,\n                    \"Left\": 0.28729841113090515,\n                    \"Top\": 0.603325605392456\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.3271050453186035,\n                        \"Y\": 0.603325605392456\n                    },\n                    {\n                        \"X\": 0.3271050453186035,\n                        \"Y\": 0.6396138668060303\n                    },\n                    {\n                        \"X\": 0.28729841113090515,\n                        \"Y\": 0.6396138668060303\n                    }\n                ]\n            },\n            \"Id\": \"15090e8f-f0eb-48c7-a1ae-477549dcdce9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.74095153808594,\n            \"Text\": \"Company\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09595779329538345,\n                    \"Height\": 0.035034094005823135,\n                    \"Left\": 0.33318978548049927,\n                    \"Top\": 0.604002058506012\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.33318978548049927,\n                        \"Y\": 0.604002058506012\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.604002058506012\n                    },\n                    {\n                        \"X\": 0.4291475713253021,\n                        \"Y\": 0.6390361189842224\n                    },\n                    {\n                        \"X\": 0.33318978548049927,\n                        \"Y\": 0.6390361189842224\n                    }\n                ]\n            },\n            \"Id\": \"9b8383fc-288a-4de8-b63e-3501ae5ff6a3\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87207794189453,\n            \"Text\": \"Head\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05138467252254486,\n                    \"Height\": 0.03858752176165581,\n                    \"Left\": 0.4963566064834595,\n                    \"Top\": 0.6006042957305908\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.5477412939071655,\n                        \"Y\": 0.6006042957305908\n                    },\n                    {\n                        \"X\": 0.5477412939071655,\n                        \"Y\": 0.6391918063163757\n                    },\n                    {\n                        \"X\": 0.4963566064834595,\n                        \"Y\": 0.6391918063163757\n                    }\n                ]\n            },\n            \"Id\": \"a6113544-3027-4191-abe1-bc84a5626647\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.87446594238281,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.059024207293987274,\n                    \"Height\": 0.033399879932403564,\n                    \"Left\": 0.5549030900001526,\n                    \"Top\": 0.6017060279846191\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.5549030900001526,\n                        \"Y\": 0.6017060279846191\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6017060279846191\n                    },\n                    {\n                        \"X\": 0.6139273047447205,\n                        \"Y\": 0.6351059079170227\n                    },\n                    {\n                        \"X\": 0.5549030900001526,\n                        \"Y\": 0.6351059079170227\n                    }\n                ]\n            },\n            \"Id\": \"c5658fa3-b21b-409a-b77e-d7f4e9483bd8\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.84358215332031,\n            \"Text\": \"Family\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.06639006733894348,\n                    \"Height\": 0.03733699768781662,\n                    \"Left\": 0.6792210340499878,\n                    \"Top\": 0.6042793393135071\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6042793393135071\n                    },\n                    {\n                        \"X\": 0.7456111311912537,\n                        \"Y\": 0.6042793393135071\n                    },\n                    {\n                        \"X\": 0.7456111311912537,\n                        \"Y\": 0.6416163444519043\n                    },\n                    {\n                        \"X\": 0.6792210340499878,\n                        \"Y\": 0.6416163444519043\n                    }\n                ]\n            },\n            \"Id\": \"61617b50-93f2-45ae-9215-2e9f3a61fd7f\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.93555450439453,\n            \"Text\": \"relocated\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09577653557062149,\n                    \"Height\": 0.03395041450858116,\n                    \"Left\": 0.7515109181404114,\n                    \"Top\": 0.6023225784301758\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7515109181404114,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6023225784301758\n                    },\n                    {\n                        \"X\": 0.8472874760627747,\n                        \"Y\": 0.6362729668617249\n                    },\n                    {\n                        \"X\": 0.7515109181404114,\n                        \"Y\": 0.6362729668617249\n                    }\n                ]\n            },\n            \"Id\": \"fbd62a53-86bf-4104-9717-e4f19725c62a\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.28593444824219,\n            \"Text\": \"8/15/2013\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.1083427220582962,\n                    \"Height\": 0.0370258204638958,\n                    \"Left\": 0.030907871201634407,\n                    \"Top\": 0.6694209575653076\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.6694209575653076\n                    },\n                    {\n                        \"X\": 0.13925059139728546,\n                        \"Y\": 0.7064467668533325\n                    },\n                    {\n                        \"X\": 0.030907871201634407,\n                        \"Y\": 0.7064467668533325\n                    }\n                ]\n            },\n            \"Id\": \"0f9a0d2b-0e66-4acb-94ba-3c78d92686d5\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.76187133789062,\n            \"Text\": \"present\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07843472808599472,\n                    \"Height\": 0.03881922736763954,\n                    \"Left\": 0.15847039222717285,\n                    \"Top\": 0.6697209477424622\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.6697209477424622\n                    },\n                    {\n                        \"X\": 0.23690511286258698,\n                        \"Y\": 0.7085402011871338\n                    },\n                    {\n                        \"X\": 0.15847039222717285,\n                        \"Y\": 0.7085402011871338\n                    }\n                ]\n            },\n            \"Id\": \"b4a4b18b-ec99-4427-9ab6-2eeecb1665f7\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.85023498535156,\n            \"Text\": \"Example\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.0837976410984993,\n                    \"Height\": 0.0379762127995491,\n                    \"Left\": 0.2888321280479431,\n                    \"Top\": 0.6702086329460144\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.6702086329460144\n                    },\n                    {\n                        \"X\": 0.3726297616958618,\n                        \"Y\": 0.6702086329460144\n                    },\n                    {\n                        \"X\": 0.3726297616958618,\n                        \"Y\": 0.7081848382949829\n                    },\n                    {\n                        \"X\": 0.2888321280479431,\n                        \"Y\": 0.7081848382949829\n                    }\n                ]\n            },\n            \"Id\": \"66e99c7d-d642-4d49-bb9f-b765d54cc182\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.55113220214844,\n            \"Text\": \"Corp.\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.05414460971951485,\n                    \"Height\": 0.03702695295214653,\n                    \"Left\": 0.38087016344070435,\n                    \"Top\": 0.670017659664154\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.38087016344070435,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.670017659664154\n                    },\n                    {\n                        \"X\": 0.4350147843360901,\n                        \"Y\": 0.7070446610450745\n                    },\n                    {\n                        \"X\": 0.38087016344070435,\n                        \"Y\": 0.7070446610450745\n                    }\n                ]\n            },\n            \"Id\": \"1a31a68e-ec1c-4317-b669-1b60dc40a789\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.56857299804688,\n            \"Text\": \"Baker\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.058011386543512344,\n                    \"Height\": 0.03376809135079384,\n                    \"Left\": 0.49631235003471375,\n                    \"Top\": 0.6704307794570923\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.6704307794570923\n                    },\n                    {\n                        \"X\": 0.5543237328529358,\n                        \"Y\": 0.7041988372802734\n                    },\n                    {\n                        \"X\": 0.49631235003471375,\n                        \"Y\": 0.7041988372802734\n                    }\n                ]\n            },\n            \"Id\": \"253d6b96-bf27-4634-b731-d7bd49557eeb\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.63040924072266,\n            \"Text\": \"N/A,\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.04625560715794563,\n                    \"Height\": 0.035501159727573395,\n                    \"Left\": 0.6785282492637634,\n                    \"Top\": 0.6710510849952698\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.7247838377952576,\n                        \"Y\": 0.6710510849952698\n                    },\n                    {\n                        \"X\": 0.7247838377952576,\n                        \"Y\": 0.7065522074699402\n                    },\n                    {\n                        \"X\": 0.6785282492637634,\n                        \"Y\": 0.7065522074699402\n                    }\n                ]\n            },\n            \"Id\": \"79bd79d5-4cbf-43ed-946d-c8b19a2b75a9\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.82111358642578,\n            \"Text\": \"current\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.07549037784337997,\n                    \"Height\": 0.030172929167747498,\n                    \"Left\": 0.7310768961906433,\n                    \"Top\": 0.6727091670036316\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.7310768961906433,\n                        \"Y\": 0.6727091670036316\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.6727091670036316\n                    },\n                    {\n                        \"X\": 0.8065672516822815,\n                        \"Y\": 0.7028821110725403\n                    },\n                    {\n                        \"X\": 0.7310768961906433,\n                        \"Y\": 0.7028821110725403\n                    }\n                ]\n            },\n            \"Id\": \"f1173c78-986c-42f9-9e10-35d57d9bb51c\"\n        },\n        {\n            \"BlockType\": \"WORD\",\n            \"Confidence\": 99.31480407714844,\n            \"Text\": \"employer\",\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09695321321487427,\n                    \"Height\": 0.03765399754047394,\n                    \"Left\": 0.6785619854927063,\n                    \"Top\": 0.7140272259712219\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7140272259712219\n                    },\n                    {\n                        \"X\": 0.7755151987075806,\n                        \"Y\": 0.7516812682151794\n                    },\n                    {\n                        \"X\": 0.6785619854927063,\n                        \"Y\": 0.7516812682151794\n                    }\n                ]\n            },\n            \"Id\": \"91e94ebe-a273-437e-a4d4-e06b2905c8d7\"\n        },\n        {\n            \"BlockType\": \"TABLE\",\n            \"Confidence\": 99.9999771118164,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.8767056465148926,\n                    \"Height\": 0.3819444477558136,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"928bc481-132b-4e3e-afac-ff51b372e8b2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"ab7c09f6-20b2-4156-8b27-3d58fb724eff\",\n                        \"174e2b88-d9c6-426e-be06-028d043d32db\",\n                        \"06e64e29-2315-47de-87fd-f4cacb1fceea\",\n                        \"1c25f3ed-70cf-4f28-8699-5ba7511099dd\",\n                        \"6a75f309-6b30-4c50-83c9-1e354c2adec7\",\n                        \"def6e4bc-f7d3-455e-aa62-6a7dcaaed2b3\",\n                        \"1c78cef8-df7c-4bdc-aa80-525089251579\",\n                        \"d9bbb1e9-67ed-4684-9a7c-6a3d4259ca90\",\n                        \"50fdd5e2-9686-49e6-8def-eb9cebdf19b1\",\n                        \"cdeffc3c-c2a6-40a1-9ef2-7c6a9321c77f\",\n                        \"566433ed-dedc-4827-9f5c-5c1711973d74\",\n                        \"14d9127d-85eb-4761-a869-9877e07eada3\",\n                        \"3254cdb7-bfee-40f1-98f0-b4aad91d496a\",\n                        \"b70cba38-5d3c-449e-a070-d92858ce4802\",\n                        \"1a6a5434-3d85-4cd9-8a3a-efb3085a6aea\",\n                        \"09eb895a-9de8-4287-844c-a8da1a227bbb\",\n                        \"1a9775a6-756d-44a2-8021-a118b590cd92\",\n                        \"d3ef024b-4d4c-4adb-9c34-97db8e6e8bd9\",\n                        \"9f753a4c-219b-404c-88ca-8e52988bdcec\",\n                        \"ca33548b-4428-4ffa-8ca0-cba6367a6fe2\",\n                        \"dbce13aa-5689-4e31-939d-40d90dbcdec2\",\n                        \"f553b2a1-e937-4bd5-b26d-6da016c114fe\",\n                        \"ed2a4a7a-4e66-4201-b177-9ae79d7868bd\",\n                        \"66839b64-d9a6-4a72-a89a-529e0d0c8177\",\n                        \"0b69c665-0f31-4655-b5d8-24ac64fb881b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.54133987426758,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"ab7c09f6-20b2-4156-8b27-3d58fb724eff\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.54133987426758,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"174e2b88-d9c6-426e-be06-028d043d32db\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 54.73961639404297,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"06e64e29-2315-47de-87fd-f4cacb1fceea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"e4cc6233-3e13-47a5-a7a9-414a9acec09f\",\n                        \"70eca258-f69f-47f4-8b95-1f461e7ecddf\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 51.42206573486328,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"1c25f3ed-70cf-4f28-8699-5ba7511099dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"9dbdca83-945c-42e0-b156-1c716058279f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 59.54133987426758,\n            \"RowIndex\": 1,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.0724715068936348,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.44515669345855713\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.44515669345855713\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    }\n                ]\n            },\n            \"Id\": \"6a75f309-6b30-4c50-83c9-1e354c2adec7\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.72053527832031,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"def6e4bc-f7d3-455e-aa62-6a7dcaaed2b3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"d6e19a98-b09d-4bae-9f9b-baa321351872\",\n                        \"4673d206-c4f6-45b8-8643-e44a230cbb24\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.72053527832031,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"1c78cef8-df7c-4bdc-aa80-525089251579\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6c717f5a-e9b4-427d-a83a-b87d20b875fb\",\n                        \"7bf142ae-3c34-4074-a247-f139a07456af\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.5656509399414,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"d9bbb1e9-67ed-4684-9a7c-6a3d4259ca90\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8b2e9227-666b-49a1-9a9d-1bd75cfa0d9e\",\n                        \"cdba0022-062e-4196-9d34-4d28b9598008\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.62228393554688,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"50fdd5e2-9686-49e6-8def-eb9cebdf19b1\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"77e3a8a0-3920-49a9-afba-eaec9b8c736f\",\n                        \"98ac6ea3-bbf6-4812-a989-dddc60b67722\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 88.72053527832031,\n            \"RowIndex\": 2,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.06463675200939178,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.5176281929016113\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5176281929016113\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    }\n                ]\n            },\n            \"Id\": \"cdeffc3c-c2a6-40a1-9ef2-7c6a9321c77f\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"5724717c-5be1-42b5-8087-91fad61587a3\",\n                        \"63ed2051-21b4-49fa-af5e-cf8f886a749b\",\n                        \"b5c704e7-682f-4505-9d15-d7fe512f346c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"566433ed-dedc-4827-9f5c-5c1711973d74\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4e54163-997b-4826-95be-18f6437d112c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"14d9127d-85eb-4761-a869-9877e07eada3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"8eab22d6-ee35-442d-902b-a94dcf6043c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.36363983154297,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"3254cdb7-bfee-40f1-98f0-b4aad91d496a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15090e8f-f0eb-48c7-a1ae-477549dcdce9\",\n                        \"9b8383fc-288a-4de8-b63e-3501ae5ff6a3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.12947845458984,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"b70cba38-5d3c-449e-a070-d92858ce4802\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"a6113544-3027-4191-abe1-bc84a5626647\",\n                        \"c5658fa3-b21b-409a-b77e-d7f4e9483bd8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 3,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.5822649598121643\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.5822649598121643\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    }\n                ]\n            },\n            \"Id\": \"1a6a5434-3d85-4cd9-8a3a-efb3085a6aea\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"61617b50-93f2-45ae-9215-2e9f3a61fd7f\",\n                        \"fbd62a53-86bf-4104-9717-e4f19725c62a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"09eb895a-9de8-4287-844c-a8da1a227bbb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"0f9a0d2b-0e66-4acb-94ba-3c78d92686d5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"1a9775a6-756d-44a2-8021-a118b590cd92\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4a4b18b-ec99-4427-9ab6-2eeecb1665f7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 86.36363983154297,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"d3ef024b-4d4c-4adb-9c34-97db8e6e8bd9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"66e99c7d-d642-4d49-bb9f-b765d54cc182\",\n                        \"1a31a68e-ec1c-4317-b669-1b60dc40a789\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 81.12947845458984,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"9f753a4c-219b-404c-88ca-8e52988bdcec\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"253d6b96-bf27-4634-b731-d7bd49557eeb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 93.93939208984375,\n            \"RowIndex\": 4,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.11164529621601105,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.6488603949546814\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.6488603949546814\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    }\n                ]\n            },\n            \"Id\": \"ca33548b-4428-4ffa-8ca0-cba6367a6fe2\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"79bd79d5-4cbf-43ed-946d-c8b19a2b75a9\",\n                        \"f1173c78-986c-42f9-9e10-35d57d9bb51c\",\n                        \"91e94ebe-a273-437e-a4d4-e06b2905c8d7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.5016860961914,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 1,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.02250852808356285,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.02250852808356285,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"dbce13aa-5689-4e31-939d-40d90dbcdec2\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.5016860961914,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 2,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.12720060348510742,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.14970912039279938,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.14970912039279938,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"f553b2a1-e937-4bd5-b26d-6da016c114fe\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 76.7676773071289,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 3,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.21134868264198303,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.2769097089767456,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.2769097089767456,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"ed2a4a7a-4e66-4201-b177-9ae79d7868bd\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 72.11509704589844,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 4,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17808084189891815,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.48825839161872864,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.48825839161872864,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"66839b64-d9a6-4a72-a89a-529e0d0c8177\"\n        },\n        {\n            \"BlockType\": \"CELL\",\n            \"Confidence\": 83.5016860961914,\n            \"RowIndex\": 5,\n            \"ColumnIndex\": 5,\n            \"RowSpan\": 1,\n            \"ColumnSpan\": 1,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.23287494480609894,\n                    \"Height\": 0.06659544259309769,\n                    \"Left\": 0.6663392186164856,\n                    \"Top\": 0.7605056762695312\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.7605056762695312\n                    },\n                    {\n                        \"X\": 0.8992142081260681,\n                        \"Y\": 0.8271011114120483\n                    },\n                    {\n                        \"X\": 0.6663392186164856,\n                        \"Y\": 0.8271011114120483\n                    }\n                ]\n            },\n            \"Id\": \"0b69c665-0f31-4655-b5d8-24ac64fb881b\"\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 63.59760284423828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16836532950401306,\n                    \"Height\": 0.03139100223779678,\n                    \"Left\": 0.02776719070971012,\n                    \"Top\": 0.1963476836681366\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.02776719070971012,\n                        \"Y\": 0.1963476836681366\n                    },\n                    {\n                        \"X\": 0.19613252580165863,\n                        \"Y\": 0.1963476836681366\n                    },\n                    {\n                        \"X\": 0.19613252580165863,\n                        \"Y\": 0.22773869335651398\n                    },\n                    {\n                        \"X\": 0.02776719070971012,\n                        \"Y\": 0.22773869335651398\n                    }\n                ]\n            },\n            \"Id\": \"dd8dbecf-73f1-49e2-bc9f-7169a133f6dd\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"a8acd770-2d5a-4799-9e0d-17a96b6da85a\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"b4dd773f-ddb7-407e-9dbc-cf623204e654\",\n                        \"63c1b36b-6b46-4391-b3a5-379247f448f8\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 63.59760284423828,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.09722070395946503,\n                    \"Height\": 0.02516728639602661,\n                    \"Left\": 0.20237421989440918,\n                    \"Top\": 0.19808898866176605\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.20237421989440918,\n                        \"Y\": 0.19808898866176605\n                    },\n                    {\n                        \"X\": 0.2995949387550354,\n                        \"Y\": 0.19808898866176605\n                    },\n                    {\n                        \"X\": 0.2995949387550354,\n                        \"Y\": 0.22325627505779266\n                    },\n                    {\n                        \"X\": 0.20237421989440918,\n                        \"Y\": 0.22325627505779266\n                    }\n                ]\n            },\n            \"Id\": \"a8acd770-2d5a-4799-9e0d-17a96b6da85a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"6d3a0b8d-ce64-47d0-a8e8-3a4befb6d1e2\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 65.030029296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.16203054785728455,\n                    \"Height\": 0.03180292621254921,\n                    \"Left\": 0.029164882376790047,\n                    \"Top\": 0.2747862935066223\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.029164882376790047,\n                        \"Y\": 0.2747862935066223\n                    },\n                    {\n                        \"X\": 0.19119544327259064,\n                        \"Y\": 0.2747862935066223\n                    },\n                    {\n                        \"X\": 0.19119544327259064,\n                        \"Y\": 0.3065892159938812\n                    },\n                    {\n                        \"X\": 0.029164882376790047,\n                        \"Y\": 0.3065892159938812\n                    }\n                ]\n            },\n            \"Id\": \"03c0345c-f42d-4bea-864d-60a8d1e890fb\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"1059d4c4-dd84-4995-be8f-24c0e8b12a6a\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c9d0f076-4489-4aa3-8790-fc2f5f011b75\",\n                        \"1263d49f-d745-463c-9cd6-e50cc4f041c4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 65.030029296875,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.32020026445388794,\n                    \"Height\": 0.026060447096824646,\n                    \"Left\": 0.1938924342393875,\n                    \"Top\": 0.2770303189754486\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.1938924342393875,\n                        \"Y\": 0.2770303189754486\n                    },\n                    {\n                        \"X\": 0.5140926837921143,\n                        \"Y\": 0.2770303189754486\n                    },\n                    {\n                        \"X\": 0.5140926837921143,\n                        \"Y\": 0.30309075117111206\n                    },\n                    {\n                        \"X\": 0.1938924342393875,\n                        \"Y\": 0.30309075117111206\n                    }\n                ]\n            },\n            \"Id\": \"1059d4c4-dd84-4995-be8f-24c0e8b12a6a\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"c86d0d6a-bb66-45ae-9f64-cce786a87f5e\",\n                        \"261d78c3-da83-48ff-ae0d-767d042e27cd\",\n                        \"e1335e11-d8b5-4eac-a330-0e3ce583d598\",\n                        \"60f9dba7-817a-4940-a1c4-e4f91ed9df83\",\n                        \"3b6b440c-172d-4fb0-9306-f5676934f1e0\",\n                        \"dd3d86a3-2b09-4532-8714-21a6634bf7c4\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 71.14427947998047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.11259862035512924,\n                    \"Height\": 0.030633898451924324,\n                    \"Left\": 0.0298884566873312,\n                    \"Top\": 0.11796300113201141\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.0298884566873312,\n                        \"Y\": 0.11796300113201141\n                    },\n                    {\n                        \"X\": 0.1424870789051056,\n                        \"Y\": 0.11796300113201141\n                    },\n                    {\n                        \"X\": 0.1424870789051056,\n                        \"Y\": 0.1485968977212906\n                    },\n                    {\n                        \"X\": 0.0298884566873312,\n                        \"Y\": 0.1485968977212906\n                    }\n                ]\n            },\n            \"Id\": \"100c9244-9c74-4166-82b5-1e9890cf455d\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"3f728c36-56f2-487c-a3e2-3cafe49f7da9\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"15c0cdb2-e75d-4003-b5d3-6a686001a701\",\n                        \"52821638-ea10-4309-9c9b-08007b95e63c\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 71.14427947998047,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.08989597856998444,\n                    \"Height\": 0.021258536726236343,\n                    \"Left\": 0.15263603627681732,\n                    \"Top\": 0.12021855264902115\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.15263603627681732,\n                        \"Y\": 0.12021855264902115\n                    },\n                    {\n                        \"X\": 0.24253201484680176,\n                        \"Y\": 0.12021855264902115\n                    },\n                    {\n                        \"X\": 0.24253201484680176,\n                        \"Y\": 0.1414770931005478\n                    },\n                    {\n                        \"X\": 0.15263603627681732,\n                        \"Y\": 0.1414770931005478\n                    }\n                ]\n            },\n            \"Id\": \"3f728c36-56f2-487c-a3e2-3cafe49f7da9\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"acc5b5fa-8e18-408f-ae6e-bf3336f9011e\",\n                        \"b1998385-b2df-4099-a2a1-1942b5db099e\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 61.29184341430664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.17466463148593903,\n                    \"Height\": 0.03513805568218231,\n                    \"Left\": 0.03024386055767536,\n                    \"Top\": 0.35338595509529114\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.03024386055767536,\n                        \"Y\": 0.35338595509529114\n                    },\n                    {\n                        \"X\": 0.20490849018096924,\n                        \"Y\": 0.35338595509529114\n                    },\n                    {\n                        \"X\": 0.20490849018096924,\n                        \"Y\": 0.38852402567863464\n                    },\n                    {\n                        \"X\": 0.03024386055767536,\n                        \"Y\": 0.38852402567863464\n                    }\n                ]\n            },\n            \"Id\": \"b7684bc3-cec7-4f4e-a2bc-ac0866094ac6\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"VALUE\",\n                    \"Ids\": [\n                        \"c327f8af-fd9f-47d8-bf47-b8fe34719fd3\"\n                    ]\n                },\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"13cfdb19-c9d2-42e2-8046-5f917f9d1818\",\n                        \"68c73643-715a-425f-b82b-19cb66df9557\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"KEY\"\n            ]\n        },\n        {\n            \"BlockType\": \"KEY_VALUE_SET\",\n            \"Confidence\": 61.29184341430664,\n            \"Geometry\": {\n                \"BoundingBox\": {\n                    \"Width\": 0.2409568428993225,\n                    \"Height\": 0.025999346747994423,\n                    \"Left\": 0.21125726401805878,\n                    \"Top\": 0.3559841811656952\n                },\n                \"Polygon\": [\n                    {\n                        \"X\": 0.21125726401805878,\n                        \"Y\": 0.3559841811656952\n                    },\n                    {\n                        \"X\": 0.4522141218185425,\n                        \"Y\": 0.3559841811656952\n                    },\n                    {\n                        \"X\": 0.4522141218185425,\n                        \"Y\": 0.38198351860046387\n                    },\n                    {\n                        \"X\": 0.21125726401805878,\n                        \"Y\": 0.38198351860046387\n                    }\n                ]\n            },\n            \"Id\": \"c327f8af-fd9f-47d8-bf47-b8fe34719fd3\",\n            \"Relationships\": [\n                {\n                    \"Type\": \"CHILD\",\n                    \"Ids\": [\n                        \"633eab1f-bf59-4d65-b6d8-ea19063a79d2\",\n                        \"a3bfe68d-d04e-4726-a617-a9133eaf4d4c\",\n                        \"ae9d2ee5-3c49-4e22-b5f1-e0026d2a89bd\",\n                        \"d47560af-a6b4-44ee-ab15-9ff70b0bf073\"\n                    ]\n                }\n            ],\n            \"EntityTypes\": [\n                \"VALUE\"\n            ]\n        }\n    ],\n    \"ResponseMetadata\": {\n        \"RequestId\": \"24bf72b5-8670-409a-893e-f06f5c107e49\",\n        \"HTTPStatusCode\": 200,\n        \"HTTPHeaders\": {\n            \"date\": \"Fri, 29 Mar 2019 23:44:17 GMT\",\n            \"content-type\": \"application/x-amz-json-1.1\",\n            \"content-length\": \"59930\",\n            \"connection\": \"keep-alive\",\n            \"x-amzn-requestid\": \"24bf72b5-8670-409a-893e-f06f5c107e49\"\n        },\n        \"RetryAttempts\": 0\n    }\n}"
  },
  {
    "path": "src-python/textract-mapping/mapping.py",
    "content": "def Document(response_pages):\n    if not isinstance(response_pages, list):\n        rps = [response_pages]\n        response_pages = rps\n    _wordsObjects = []\n    _words = []\n\n    for page in response_pages:\n        for block in page['Blocks']:\n            if 'BlockType' in block and block['BlockType'] == 'WORD':\n                _wordsObjects.append(block)\n                _words.append(block['Text'])\n\n    return {'wordsObjects': _wordsObjects, 'words': _words}\n"
  },
  {
    "path": "src-python/textract-mapping/mappingtest.py",
    "content": "import json\nfrom mapping import Document\n\n\ndef run():\n    file_path = \"loan-app-response.json\"\n    with open(file_path, 'r') as document:\n        data = json.loads(document.read())\n        document = Document(data)\n        raw_text = ' '.join(document['words'])\n        # print(raw_text)\n        # \"Text\": \"Uniform Residential Loan Application This application is designed to be completed by the\n        # applicant(s) with the Lender's assistance. Applicants should complete this form as \\\"Borrower\\\" or\n        # \\\"Co-Borrower\\\", as applicable. Co-Borrower information must also be provided (and the appropriate box\n        # checked) when the income or assets of a person other than the \\\"Borrower\\\" (including the Borrower's\n        # spouse) will be used as a basis for loan qualification or the income or assets of the Borrower's spouse or\n        # other person who has community property rights pursuant to state law will not be used as a basis for loan\n        # qualification, but his or her liabilities must be considered because the spouse or other person has\n        # community property rights pursuant to applicable law and Borrower resides in a community property state,\n        # the security property is located in a community property state, or the Borrower is relying on other\n        # property located in a community property state as a basis for repayment of the loan. If this is an\n        # application for joint credit, Borrower and Co-Borrower each agree that we intend to apply for joint credit\n        # (sign below): Borrower Co-Borrower I. TYPE OF MORTGAGE AND TERMS OF LOAN Mortgage VA Conventional Other (\n        # explain): Agency Case Number Lender Case Number Applied for: FHA USDA/Rural ABC1234 XYZ6543 Housing Service\n        # Amount Interest Rate No. of Months Amortization Type: Fixed Rate Other (explain): $ 552,500 3.5 % 360 GPM\n        # ARM (type): II. PROPERTY INFORMATION AND PURPOSE OF LOAN Subject Property Address (street, city, state,\n        # & ZIP) No. of Units 123 Any Street, Anytown, USA, 12345 1 Legal Description of Subject Property (attach\n        # description if necessary) Year Built Single Family Home 2015 Purpose of Loan Purchase Construction Other (\n        # explain): Property will be: Refinance Construction-Permanent Primary Residence Secondary Residence\n        # Investment Complete this line if construction or construction-permanent loan. Year Lot Original Cost Amount\n        # Existing Liens (a) Present Value of Lot (b) Cost of Improvements Total (a+b) Acquired $ $ $ $ $ Complete\n        # this line if this is a refinance loan. Year Original Cost Amount Existing Liens Purpose of Refinance\n        # Describe Improvements made to be made Acquired $ $ Cost: $ Title will be held in what Name(s) Manner in\n        # which Title will be held Estate will be held in: Carlos Salazar Fee Simple Leasehold(show Source of Down\n        # Payment Settlement Charges and/or Subordinate Financing (explain) expiration date) Salary + Savings\n        # Borrower III. BORROWER INFORMATION Co-Borrower Borrower's Name (include Jr. or Sr. if applicable)\n        # Co-Borrower's Name (include Jr. or Sr. if applicable) Carlos Salazar N/A Social Security Number Home Phone\n        # (incl. area code) DOB (mm/dd/yyyy) Yrs. School Social Security Number Home Phone (incl. area code) DOB (\n        # mm/dd/yyyy) Yrs. School 999-99-9999 +1 123-456-7890 1/18/1958 12 N/A N/A N/A N/A Dependents (not listed by\n        # Dependents (not listed by Married (includes registered domestic partners) Co-Borrower) Married (includes\n        # registered domestic partners) Borrower) Unmarried (includes single, divorced, widowed) No. 0 Unmarried (\n        # includes single, divorced, widowed) No. N/A Separated Ages N/A Separated Ages N/A Present Address (street,\n        # city, state, ZIP/ country) Own Rent 5 No. Yrs. Present Address (street, city, state, ZIP/ country) Own Rent\n        # No. Yrs. 456 Any Street, Anytown, USA, 12345 N/A Mailing Address, if different from Present Address Mailing\n        # Address, if different from Present Address N/A If residing at present address for less than two years,\n        # complete the following: Former Address (street, city, state, ZIP) Own Rent No. Yrs. Former Address (street,\n        # city, state, ZIP) Own Rent No. Yrs. N/A N/A Former Address (street, city, state, ZIP) Own Rent No. Yrs.\n        # Former Address (street, city, state, ZIP) Own Rent No. Yrs. N/A N/A\\n\", After running comprehend\n        comprehend_response = {\n            \"Entities\": [\n                {\n                    \"Score\": 0.9366451501846313,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"each\",\n                    \"BeginOffset\": 1058,\n                    \"EndOffset\": 1062\n                },\n                {\n                    \"Score\": 0.7331190705299377,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"FHA USDA\",\n                    \"BeginOffset\": 1276,\n                    \"EndOffset\": 1284\n                },\n                {\n                    \"Score\": 0.6855641603469849,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"ABC1234 XYZ6543\",\n                    \"BeginOffset\": 1291,\n                    \"EndOffset\": 1306\n                },\n                {\n                    \"Score\": 0.9977587461471558,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"$ 552,500\",\n                    \"BeginOffset\": 1405,\n                    \"EndOffset\": 1414\n                },\n                {\n                    \"Score\": 0.9303759932518005,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"3.5 %\",\n                    \"BeginOffset\": 1415,\n                    \"EndOffset\": 1420\n                },\n                {\n                    \"Score\": 0.708534300327301,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"360 GPM\",\n                    \"BeginOffset\": 1421,\n                    \"EndOffset\": 1428\n                },\n                {\n                    \"Score\": 0.8506087064743042,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"Units 123\",\n                    \"BeginOffset\": 1547,\n                    \"EndOffset\": 1556\n                },\n                {\n                    \"Score\": 0.7548143267631531,\n                    \"Type\": \"LOCATION\",\n                    \"Text\": \"Any Street, Anytown, USA, 12345\",\n                    \"BeginOffset\": 1557,\n                    \"EndOffset\": 1588\n                },\n                {\n                    \"Score\": 0.9971926808357239,\n                    \"Type\": \"DATE\",\n                    \"Text\": \"2015\",\n                    \"BeginOffset\": 1693,\n                    \"EndOffset\": 1697\n                },\n                {\n                    \"Score\": 0.9903680086135864,\n                    \"Type\": \"PERSON\",\n                    \"Text\": \"Carlos Salazar\",\n                    \"BeginOffset\": 2309,\n                    \"EndOffset\": 2323\n                },\n                {\n                    \"Score\": 0.9962449669837952,\n                    \"Type\": \"PERSON\",\n                    \"Text\": \"Carlos Salazar\",\n                    \"BeginOffset\": 2617,\n                    \"EndOffset\": 2631\n                },\n                {\n                    \"Score\": 0.5208863019943237,\n                    \"Type\": \"ORGANIZATION\",\n                    \"Text\": \"N/A\",\n                    \"BeginOffset\": 2632,\n                    \"EndOffset\": 2635\n                },\n                {\n                    \"Score\": 0.5437430143356323,\n                    \"Type\": \"ORGANIZATION\",\n                    \"Text\": \"Yrs.\",\n                    \"BeginOffset\": 2786,\n                    \"EndOffset\": 2790\n                },\n                {\n                    \"Score\": 0.9814861416816711,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"999-99-9999\",\n                    \"BeginOffset\": 2798,\n                    \"EndOffset\": 2809\n                },\n                {\n                    \"Score\": 0.9224309921264648,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"+1 123-456-7890 1/18/1958\",\n                    \"BeginOffset\": 2810,\n                    \"EndOffset\": 2835\n                },\n                {\n                    \"Score\": 0.6254334449768066,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"12\",\n                    \"BeginOffset\": 2836,\n                    \"EndOffset\": 2838\n                },\n                {\n                    \"Score\": 0.589428186416626,\n                    \"Type\": \"TITLE\",\n                    \"Text\": \"N/A\",\n                    \"BeginOffset\": 2839,\n                    \"EndOffset\": 2842\n                },\n                {\n                    \"Score\": 0.49809491634368896,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"No. 0\",\n                    \"BeginOffset\": 3073,\n                    \"EndOffset\": 3078\n                },\n                {\n                    \"Score\": 0.6882924437522888,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"Rent\",\n                    \"BeginOffset\": 3228,\n                    \"EndOffset\": 3232\n                },\n                {\n                    \"Score\": 0.7337660789489746,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"5 No.\",\n                    \"BeginOffset\": 3233,\n                    \"EndOffset\": 3238\n                },\n                {\n                    \"Score\": 0.7708538770675659,\n                    \"Type\": \"OTHER\",\n                    \"Text\": \"456\",\n                    \"BeginOffset\": 3314,\n                    \"EndOffset\": 3317\n                },\n                {\n                    \"Score\": 0.8818538188934326,\n                    \"Type\": \"LOCATION\",\n                    \"Text\": \"Anytown, USA, 12345 N/A\",\n                    \"BeginOffset\": 3330,\n                    \"EndOffset\": 3353\n                },\n                {\n                    \"Score\": 0.9935828447341919,\n                    \"Type\": \"QUANTITY\",\n                    \"Text\": \"less than two years\",\n                    \"BeginOffset\": 3495,\n                    \"EndOffset\": 3514\n                }\n            ]\n        }\n        # Merge the two objects (comprehend_response and document['wordsObjects])\n\n        for entity in comprehend_response['Entities']:\n            begin_offset = entity['BeginOffset']\n            end_offset = entity['EndOffset']\n            begin_word = raw_text[begin_offset:end_offset]\n            whole_sentence_split = begin_word.split(\" \")\n            begin_word_index = document['words'].index(whole_sentence_split[0])\n            end_word_index = begin_word_index + len(whole_sentence_split) + 1\n            for i in range(begin_word_index, end_word_index):\n                print(document['wordsObjects'][i], \"wordsObjects - before\")\n                # {'BlockType': 'WORD', 'Confidence': 99.9372329711914, 'Geometry': {'BoundingBox': {'Height':\n                # 0.011532648466527462, 'Left': 0.3643971383571625, 'Top': 0.8954669833183289,\n                # 'Width': 0.058403607457876205}, 'Polygon': [{'X': 0.3643971383571625, 'Y': 0.8954669833183289},\n                # {'X': 0.42279788851737976, 'Y': 0.8955075144767761}, {'X': 0.422800749540329,\n                # 'Y': 0.9069996476173401}, {'X': 0.36439958214759827, 'Y': 0.9069589376449585}]},\n                # 'Id': '9bd4d3a3-8842-4ec9-89dc-98b064ebed3f', 'Text': 'complete', 'TextType': 'PRINTED'}\n                document['wordsObjects'][i]['Entities'] = entity\n                print(document['wordsObjects'][i], \"wordsObjects - after\")\n                # {'BlockType': 'WORD', 'Confidence': 99.9372329711914, 'Geometry': {'BoundingBox': {'Height':\n                # 0.011532648466527462, 'Left': 0.3643971383571625, 'Top': 0.8954669833183289,\n                # 'Width': 0.058403607457876205}, 'Polygon': [{'X': 0.3643971383571625, 'Y': 0.8954669833183289},\n                # {'X': 0.42279788851737976, 'Y': 0.8955075144767761}, {'X': 0.422800749540329,\n                # 'Y': 0.9069996476173401}, {'X': 0.36439958214759827, 'Y': 0.9069589376449585}]},\n                # 'Id': '9bd4d3a3-8842-4ec9-89dc-98b064ebed3f', 'Text': 'complete', 'TextType': 'PRINTED',\n                # 'Entities': {'Score': 0.9935828447341919, 'Type': 'QUANTITY', 'Text': 'less than two years',\n                # 'BeginOffset': 3495, 'EndOffset': 3514}}\n\n\nrun()\n"
  },
  {
    "path": "src-python/trp/__init__.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"Top-level package for amazon-textract-response-parser.\"\"\"\nimport logging\nfrom typing import List\nfrom logging import NullHandler\n\nlogging.getLogger(__name__).addHandler(NullHandler())\n\nlogger = logging.getLogger(__name__)\n\n__version__ = '1.0.2'\n\nENTITY_TYPE_COLUMN_HEADER = \"COLUMN_HEADER\"\nENTITY_TYPE_MERGED_CELL = \"MERGED_CELL\"\n\n\nclass BaseBlock():\n\n    def __init__(self, block, blockMap):\n        self._block = block\n        self._confidence = block['Confidence']\n        self._geometry = Geometry(block['Geometry'])\n        self._id = block['Id']\n        self._text = \"\"\n        self._text_type = \"\"\n        if 'Text' in block and block['Text']:\n            self._text = block['Text']\n        if \"Custom\" in block and block['Custom']:\n            self._custom = block[\"Custom\"]\n        if 'TextType' in block and block['TextType']:\n            self._text_type = block['TextType']\n\n    def __str__(self):\n        return self._text\n\n    @property\n    def custom(self):\n        return self._custom\n\n    @property\n    def confidence(self):\n        return self._confidence\n\n    @property\n    def geometry(self):\n        return self._geometry\n\n    @property\n    def id(self):\n        return self._id\n\n    @property\n    def text(self):\n        return self._text\n\n    @text.setter\n    def text(self, text):\n        self._text = text\n\n    @property\n    def block(self):\n        return self._block\n\n    @property\n    def textType(self):\n        return self._text_type\n\n\nclass BoundingBox:\n\n    def __init__(self, width, height, left, top):\n        self._width = width\n        self._height = height\n        self._left = left\n        self._top = top\n\n    def __str__(self):\n        return \"width: {}, height: {}, left: {}, top: {}\".format(self._width, self._height, self._left, self._top)\n\n    @property\n    def width(self):\n        return self._width\n\n    @property\n    def height(self):\n        return self._height\n\n    @property\n    def left(self):\n        return self._left\n\n    @property\n    def top(self):\n        return self._top\n\n\nclass Polygon:\n\n    def __init__(self, x, y):\n        self._x = x\n        self._y = y\n\n    def __str__(self):\n        return \"x: {}, y: {}\".format(self._x, self._y)\n\n    @property\n    def x(self):\n        return self._x\n\n    @property\n    def y(self):\n        return self._y\n\n\nclass Geometry:\n\n    def __init__(self, geometry):\n        boundingBox = geometry[\"BoundingBox\"]\n        polygon = geometry[\"Polygon\"]\n        bb = BoundingBox(boundingBox[\"Width\"], boundingBox[\"Height\"], boundingBox[\"Left\"], boundingBox[\"Top\"])\n        pgs = []\n        for pg in polygon:\n            pgs.append(Polygon(pg[\"X\"], pg[\"Y\"]))\n\n        self._boundingBox = bb\n        self._polygon = pgs\n\n    def __str__(self):\n        s = \"BoundingBox: {}\\n\".format(str(self._boundingBox))\n        return s\n\n    @property\n    def boundingBox(self):\n        return self._boundingBox\n\n    @property\n    def polygon(self):\n        return self._polygon\n\n\nclass Word(BaseBlock):\n\n    def __init__(self, block, blockMap):\n        super().__init__(block, blockMap)\n\n\nclass Line(BaseBlock):\n\n    def __init__(self, block, blockMap):\n        super().__init__(block, blockMap)\n\n        self._words = []\n        if ('Relationships' in block and block['Relationships']):\n            for rs in block['Relationships']:\n                if (rs['Type'] == 'CHILD'):\n                    for cid in rs['Ids']:\n                        if (blockMap[cid][\"BlockType\"] == \"WORD\"):\n                            self._words.append(Word(blockMap[cid], blockMap))\n\n    def __str__(self):\n        s = \"Line\\n==========\\n\"\n        s = s + self._text + \"\\n\"\n        s = s + \"Words\\n----------\\n\"\n        for word in self._words:\n            s = s + \"[{}]\".format(str(word))\n        return s\n\n    @property\n    def words(self):\n        return self._words\n\n\nclass SelectionElement:\n\n    def __init__(self, block, blockMap):\n        self._confidence = block['Confidence']\n        self._geometry = Geometry(block['Geometry'])\n        self._id = block['Id']\n        self._selectionStatus = block['SelectionStatus']\n\n    @property\n    def confidence(self):\n        return self._confidence\n\n    @property\n    def geometry(self):\n        return self._geometry\n\n    @property\n    def id(self):\n        return self._id\n\n    @property\n    def selectionStatus(self):\n        return self._selectionStatus\n\n\nclass FieldKey(BaseBlock):\n\n    def __init__(self, block, children, blockMap):\n        super().__init__(block, blockMap)\n        self._content = []\n\n        t = []\n\n        for eid in children:\n            wb = blockMap[eid]\n            if (wb['BlockType'] == \"WORD\"):\n                w = Word(wb, blockMap)\n                self._content.append(w)\n                t.append(w.text)\n\n        if (t):\n            self._text = ' '.join(t)\n\n    @property\n    def content(self):\n        return self._content\n\n\nclass FieldValue(BaseBlock):\n\n    def __init__(self, block, children, blockMap):\n        super().__init__(block, blockMap)\n        self._content = []\n\n        t = []\n\n        for eid in children:\n            wb = blockMap[eid]\n            if (wb['BlockType'] == \"WORD\"):\n                w = Word(wb, blockMap)\n                self._content.append(w)\n                t.append(w.text)\n            elif (wb['BlockType'] == \"SELECTION_ELEMENT\"):\n                se = SelectionElement(wb, blockMap)\n                self._content.append(se)\n                self._text = se.selectionStatus\n\n        if (t):\n            self._text = ' '.join(t)\n\n    @property\n    def content(self):\n        return self._content\n\n\nclass Field(BaseBlock):\n\n    def __init__(self, block, blockMap):\n        super().__init__(block, blockMap)\n        self._key = None\n        self._value = None\n\n        if 'Relationships' in block:\n            for item in block['Relationships']:\n                if (item[\"Type\"] == \"CHILD\"):\n                    self._key = FieldKey(block, item['Ids'], blockMap)\n                elif (item[\"Type\"] == \"VALUE\"):\n                    for eid in item['Ids']:\n                        vkvs = blockMap[eid]\n                        if 'VALUE' in vkvs['EntityTypes']:\n                            if ('Relationships' in vkvs):\n                                for vitem in vkvs['Relationships']:\n                                    if (vitem[\"Type\"] == \"CHILD\"):\n                                        self._value = FieldValue(vkvs, vitem['Ids'], blockMap)\n        else:\n            logger.warning(f\"no 'Relationships' in block: {block}\")\n\n    def __str__(self):\n        s = \"\\nField\\n==========\\n\"\n        k = \"\"\n        v = \"\"\n        if (self._key):\n            k = str(self._key)\n        if (self._value):\n            v = str(self._value)\n        s = s + \"Key: {}\\nValue: {}\".format(k, v)\n        return s\n\n    @property\n    def key(self):\n        return self._key\n\n    @property\n    def value(self):\n        return self._value\n\n\nclass Form:\n\n    def __init__(self):\n        self._fields = []\n        self._fieldsMap = {}\n\n    def addField(self, field):\n        self._fields.append(field)\n        self._fieldsMap[field.key.text] = field\n\n    def __str__(self):\n        s = \"\"\n        for field in self._fields:\n            s = s + str(field) + \"\\n\"\n        return s\n\n    @property\n    def fields(self):\n        return self._fields\n\n    def getFieldByKey(self, key):\n        field = None\n        if (key in self._fieldsMap):\n            field = self._fieldsMap[key]\n        return field\n\n    def searchFieldsByKey(self, key):\n        searchKey = key.lower()\n        results = []\n        for field in self._fields:\n            if (field.key and searchKey in field.key.text.lower()):\n                results.append(field)\n        return results\n\n\nclass BaseCell(BaseBlock):\n\n    def __init__(self, block, blockMap):\n        super().__init__(block, blockMap)\n        self._rowIndex = block['RowIndex']\n        self._columnIndex = block['ColumnIndex']\n        self._rowSpan = block['RowSpan']\n        self._columnSpan = block['ColumnSpan']\n        self._content = []\n        self._entityTypes: List[str] = list()\n        self._isChildOfMergedCell = False\n\n    @property\n    def rowIndex(self):\n        return self._rowIndex\n\n    @property\n    def columnIndex(self):\n        return self._columnIndex\n\n    @property\n    def rowSpan(self):\n        return self._rowSpan\n\n    @property\n    def columnSpan(self):\n        return self._columnSpan\n\n    @property\n    def content(self):\n        return self._content\n\n    @property\n    def entityTypes(self):\n        \"\"\"at the moment for COLUMN_HEADER\"\"\"\n        return self._entityTypes\n\n\nclass Cell(BaseCell):\n\n    def __init__(self, block, blockMap):\n        super().__init__(block, blockMap)\n        self._mergedText = None\n        self._mergedCellParent: MergedCell\n\n        if 'Relationships' in block and block['Relationships']:\n            for rs in block['Relationships']:\n                if rs['Type'] == 'CHILD':\n                    for cid in rs['Ids']:\n                        blockType = blockMap[cid][\"BlockType\"]\n                        if (blockType == \"WORD\"):\n                            w = Word(blockMap[cid], blockMap)\n                            self._content.append(w)\n                            self._text = self._text + w.text + ' '\n                        elif (blockType == \"SELECTION_ELEMENT\"):\n                            se = SelectionElement(blockMap[cid], blockMap)\n                            self._content.append(se)\n                            self._text = self._text + se.selectionStatus + ', '\n        if ('EntityTypes' in block and block['EntityTypes']):\n            self._entityTypes = block['EntityTypes']\n\n    @property\n    def mergedText(self):\n        if self._isChildOfMergedCell and self._mergedCellParent != None:\n            return self._mergedCellParent._text.strip()\n        else:\n            return self._text.strip()\n\n\nclass MergedCell(BaseCell):\n\n    def __init__(self, block, blockMap, rows):\n        super().__init__(block, blockMap)\n        self._rowIndex = block['RowIndex']\n        self._columnIndex = block['ColumnIndex']\n        self._rowSpan = block['RowSpan']\n        self._columnSpan = block['ColumnSpan']\n        self._entityTypes: List[str] = list()\n        if 'Relationships' in block and block['Relationships']:\n            for rs in block['Relationships']:\n                if rs['Type'] == 'CHILD':\n                    # generate the merged cell text\n                    for cid in rs['Ids']:\n                        self.text += Cell(blockMap[cid], blockMap).text\n                    # now find the cell-ids in the current rows and set the _isChildOfMergedCell and _mergedCellParent\n                    for row in rows:\n                        for cell in row.cells:\n                            if cell.id in rs['Ids']:\n                                cell._mergedCellParent = self\n                                cell._isChildOfMergedCell = True\n\n        if ('EntityTypes' in block and block['EntityTypes']):\n            self._entityTypes = block['EntityTypes']\n\n\nclass Row:\n\n    def __init__(self):\n        self._cells: List[Cell] = []\n\n    def __str__(self):\n        s = \"\"\n        for cell in self._cells:\n            s = s + \"[{}]\".format(str(cell))\n        return s\n\n    @property\n    def cells(self):\n        return self._cells\n\n    @cells.setter\n    def cells(self, cells: List[Cell]):\n        self._cells = cells\n\n    @property\n    def merged_cells(self):\n        return self._cells\n\n\nclass Table(BaseBlock):\n\n    def __init__(self, block, blockMap):\n        super().__init__(block, blockMap)\n        self._rows: List[Row] = []\n        self._merged_cells: List[MergedCell] = []\n        self._merged_cells_ids = []\n        if ('Relationships' in block and block['Relationships']):\n            for rs in block['Relationships']:\n                if (rs['Type'] == 'CHILD'):\n                    cells: List[Cell] = list()\n                    for cid in rs['Ids']:\n                        cell = Cell(blockMap[cid], blockMap)\n                        cells.append(cell)\n                    cells.sort(key=lambda cell: (cell.rowIndex, cell.columnIndex))\n                    for row_index in range(1, max([x.rowIndex for x in cells]) + 1):\n                        new_row: Row = Row()\n                        new_row.cells = [x for x in cells if x.rowIndex == row_index]\n                        self._rows.append(new_row)\n                elif (rs['Type'] == 'MERGED_CELL'):\n                    self._merged_cells_ids = rs['Ids']\n\n            if len(self._merged_cells_ids) > 0:\n                self._resolve_merged_cells(blockMap)\n\n    def __str__(self):\n        s = \"Table\\n==========\\n\"\n        for row in self._rows:\n            s = s + \"Row\\n==========\\n\"\n            s = s + str(row) + \"\\n\"\n        return s\n\n    def _resolve_merged_cells(self, blockMap):\n        for cid in self._merged_cells_ids:\n            merged_cell = MergedCell(blockMap[cid], blockMap, self._rows)\n            self._merged_cells.append(merged_cell)\n\n    def get_header_field_names(self):\n        header_cells = self.header\n        header_names = []\n        for header in header_cells:\n            s = []\n            for cell in header:\n                if cell._isChildOfMergedCell:\n                    s.append(cell.mergedText.strip())\n                else:\n                    s.append(cell.text.strip())\n            header_names.append(s)\n        return header_names\n\n    @property\n    def rows(self) -> List[Row]:\n        return self._rows\n\n    @property\n    def header(self) -> List[List[Cell]]:\n        header_rows = []\n        for row in self._rows:\n            header_cells: List[Cell] = list()\n            for cell in row.cells:\n                for entity_type in cell.entityTypes:\n                    if entity_type == ENTITY_TYPE_COLUMN_HEADER:\n                        header_cells.append(cell)\n            if (len(header_cells) > 0):\n                header_rows.append(header_cells)\n\n        return header_rows\n\n    @property\n    def rows_without_header(self) -> List[Row]:\n        non_header_rows: List[Row] = list()\n        for row in self.rows:\n            header = False\n            for cell in row.cells:\n                for entity_type in cell.entityTypes:\n                    if entity_type == ENTITY_TYPE_COLUMN_HEADER:\n                        header = True\n            if not header:\n                non_header_rows.append(row)\n        return non_header_rows\n\n    @property\n    def merged_cells(self) -> List[MergedCell]:\n        return self._merged_cells\n\n\nclass Page:\n\n    def __init__(self, blocks, blockMap):\n        self._blocks = blocks\n        self._text = \"\"\n        self._lines = []\n        self._form = Form()\n        self._tables = []\n        self._content = []\n        self._custom = dict()\n\n        self._parse(blockMap)\n\n    def __str__(self):\n        s = \"Page\\n==========\\n\"\n        for item in self._content:\n            s = s + str(item) + \"\\n\"\n        return s\n\n    def _parse(self, blockMap):\n        for item in self._blocks:\n            if item[\"BlockType\"] == \"PAGE\":\n                self._geometry = Geometry(item['Geometry'])\n                self._id = item['Id']\n                if \"Custom\" in item:\n                    self._custom = item[\"Custom\"]\n            elif item[\"BlockType\"] == \"LINE\":\n                l = Line(item, blockMap)\n                self._lines.append(l)\n                self._content.append(l)\n                self._text = self._text + l.text + '\\n'\n            elif item[\"BlockType\"] == \"TABLE\":\n                t = Table(item, blockMap)\n                self._tables.append(t)\n                self._content.append(t)\n            elif item[\"BlockType\"] == \"KEY_VALUE_SET\":\n                if 'KEY' in item['EntityTypes']:\n                    f = Field(item, blockMap)\n                    if (f.key):\n                        self._form.addField(f)\n                        self._content.append(f)\n                    else:\n                        logger.info(\n                            f\"INFO: Detected K/V where key does not have content. Excluding key from output. {f} - {item}\"\n                        )\n\n    def getLinesInReadingOrder(self):\n        columns = []\n        lines = []\n        for item in self._lines:\n            column_found = False\n            for index, column in enumerate(columns):\n                bbox_left = item.geometry.boundingBox.left\n                bbox_right = item.geometry.boundingBox.left + item.geometry.boundingBox.width\n                bbox_centre = item.geometry.boundingBox.left + item.geometry.boundingBox.width / 2\n                column_centre = column['left'] + column['right'] / 2\n                if (bbox_centre > column['left'] and bbox_centre < column['right']) or (column_centre > bbox_left\n                                                                                        and column_centre < bbox_right):\n                    #Bbox appears inside the column\n                    lines.append([index, item.text])\n                    column_found = True\n                    break\n            if not column_found:\n                columns.append({\n                    'left': item.geometry.boundingBox.left,\n                    'right': item.geometry.boundingBox.left + item.geometry.boundingBox.width\n                })\n                lines.append([len(columns) - 1, item.text])\n\n        lines.sort(key=lambda x: x[0])\n        return lines\n\n    def getTextInReadingOrder(self):\n        lines = self.getLinesInReadingOrder()\n        text = \"\"\n        for line in lines:\n            text = text + line[1] + '\\n'\n        return text\n\n    @property\n    def blocks(self):\n        return self._blocks\n\n    @property\n    def text(self):\n        return self._text\n\n    @property\n    def lines(self):\n        return self._lines\n\n    @property\n    def form(self):\n        return self._form\n\n    @property\n    def tables(self):\n        return self._tables\n\n    @property\n    def content(self):\n        return self._content\n\n    @property\n    def geometry(self):\n        return self._geometry\n\n    @property\n    def id(self):\n        return self._id\n\n    @property\n    def custom(self):\n        return self._custom\n\n\nclass Document:\n\n    def __init__(self, responsePages):\n\n        if (not isinstance(responsePages, list)):\n            rps = []\n            rps.append(responsePages)\n            responsePages = rps\n\n        self._responsePages = responsePages\n        self._pages = []\n\n        self._parse()\n\n    def __str__(self):\n        s = \"\\nDocument\\n==========\\n\"\n        for p in self._pages:\n            s = s + str(p) + \"\\n\\n\"\n        return s\n\n    def _parseDocumentPagesAndBlockMap(self):\n\n        blockMap = {}\n\n        documentPages = []\n        documentPage = None\n        for page in self._responsePages:\n            for block in page['Blocks']:\n                if ('BlockType' in block and 'Id' in block):\n                    blockMap[block['Id']] = block\n\n                if (block['BlockType'] == 'PAGE'):\n                    if (documentPage):\n                        documentPages.append({\"Blocks\": documentPage})\n                    documentPage = []\n                    documentPage.append(block)\n                else:\n                    if documentPage:\n                        documentPage.append(block)\n                    else:\n                        logger.error(\"assumed documentPage not None, but was None\")\n        if (documentPage):\n            documentPages.append({\"Blocks\": documentPage})\n        return documentPages, blockMap\n\n    def _parse(self):\n\n        self._responseDocumentPages, self._blockMap = self._parseDocumentPagesAndBlockMap()\n        for documentPage in self._responseDocumentPages:\n            page = Page(documentPage[\"Blocks\"], self._blockMap)\n            self._pages.append(page)\n\n    @property\n    def blocks(self):\n        return self._responsePages\n\n    @property\n    def pageBlocks(self):\n        return self._responseDocumentPages\n\n    @property\n    def pages(self):\n        return self._pages\n\n    def getBlockById(self, blockId):\n        block = None\n        if (self._blockMap and blockId in self._blockMap):\n            block = self._blockMap[blockId]\n        return block\n"
  },
  {
    "path": "src-python/trp/t_pipeline.py",
    "content": "import logging\nfrom trp.t_tables import ExecuteTableValidations, MergeOptions, HeaderFooterType\nimport trp.trp2 as t2\nfrom typing import List, Callable\nimport math\nimport statistics\n\nlogger = logging.getLogger(__name__)\n\ndef order_blocks_by_geo(t_document: t2.TDocument) -> t2.TDocument:\n    # TODO: add ordering of pages by pagenumber\n    \"\"\"\n    takes in a Textract JSON response and outputs a Textract JSON response schema which has the elements sorted by geometry (top coordinate of bounding box)\n    \"\"\"\n    new_order: List[t2.TBlock] = list()\n    for page in t_document.pages:\n        new_order.append(page)\n        r = t_document.relationships_recursive(page)\n        page_relationships = list(r) if r else list()\n        page_blocks = sorted(page_relationships,\n                             key=lambda b: b.geometry.bounding_box.top\n                             if not b.text_type == \"PAGE\" and b.geometry and b.geometry.bounding_box else 1)\n        new_order.extend(page_blocks)\n    t_document.blocks = new_order\n    t_document.__post_init__()\n    return t_document\n\ndef order_blocks_by_geo_x_y(t_document: t2.TDocument) -> t2.TDocument:\n    \"\"\"\n    Takes in a Textract JSON response and outputs a Textract JSON response schema which has the elements sorted by geometry x (left coordinate) and y-axis (top coordinate)\n    \"\"\"\n    new_order: List[t2.TBlock] = list()\n    for page in t_document.pages:\n        new_order.append(page)\n        r = t_document.relationships_recursive(page)\n        rows = list()\n        page_relationships = list(r) if r else list()\n        # Sort all blocks by y-axis\n        page_blocks_top = sorted(page_relationships,\n                             key=lambda b: round(b.geometry.bounding_box.top, 3)\n                             if not b.block_type == \"PAGE\" and b.geometry and b.geometry.bounding_box else 1)\n        for b in page_blocks_top:\n            # Check to see if current block is in existing virtual row\n            row_found = False\n            bbox_top = b.geometry.bounding_box.top\n            bbox_bottom = b.geometry.bounding_box.top + b.geometry.bounding_box.height\n            bbox_centre = b.geometry.bounding_box.top + b.geometry.bounding_box.height/2\n            for row_list in rows:\n                row = row_list[1]\n                if row.block_type != b.block_type:\n                    continue\n                if row.entity_types is not None and row.entity_types != b.entity_types:\n                    continue\n                row_top = row.geometry.bounding_box.top\n                row_bottom = row.geometry.bounding_box.top + row.geometry.bounding_box.height\n                row_centre = row.geometry.bounding_box.top + row.geometry.bounding_box.height/2\n                if((bbox_centre > row_top and bbox_centre < row_bottom) or (row_centre > bbox_top and row_centre < bbox_bottom)):\n                    row_list.append(b)\n                    row_found = True\n                    break\n            # Create a new virtual row if block was not placed in existing virtual rows\n            if(row_found is False):\n                rows.append([bbox_top, b])\n        # sort rows by y-axis\n        rows_ordered_top = sorted(rows,\n                     key=lambda b: float(b[0]))\n        # Order each row by x-axis and flatten\n        page_blocks_ordered = list()\n        for row_list in rows_ordered_top:\n            row_list.pop(0)\n            row_list_left = sorted(row_list,\n                                 key=lambda b: b.geometry.bounding_box.left\n                                 if not b.block_type == \"PAGE\" and b.geometry and b.geometry.bounding_box else 1)\n            page_blocks_ordered.extend(row_list_left)\n        new_order.extend(page_blocks_ordered)\n    t_document.blocks = new_order\n    t_document.__post_init__()\n    return t_document\n\ndef add_kv_ocr_confidence(t_document: t2.TDocument) -> t2.TDocument:\n    \"\"\"\n    adds custom attribute to each KEY_VALUE_SET in the form of \"Custom\":{\"OCRConfidence\": {'mean': 98.2, 'min': 95.1}}\n    If no CHILD relationships exist for a KEY or VALUE, no confidence score will be added.\n    \"\"\"\n    for idx, page_block in enumerate(t_document.pages):\n        logger.debug(f\"page: {idx}\")\n        key_value_blocks = t_document.forms(page=page_block)\n        logger.debug(f\"len(key_value_blocks): {len(key_value_blocks)}\")\n        for key_value_block in key_value_blocks:\n            logger.debug(f\"key_value_block.id: {key_value_block.id}\")\n            ocr_blocks = t_document.get_child_relations(key_value_block)\n            if ocr_blocks:\n                logger.debug(f\"len(child-relations: {len(ocr_blocks)}\")\n                confidence_list: List[float] = [float(x.confidence) for x in ocr_blocks if x.confidence]\n                if confidence_list:\n                    kv_block_ocr_confidence_mean = statistics.mean(confidence_list)\n                    kv_block_ocr_confidence_min = min(confidence_list)\n                    if key_value_block.custom:\n                        key_value_block.custom['OCRConfidence'] = {\n                            'mean': kv_block_ocr_confidence_mean,\n                            'min': kv_block_ocr_confidence_min\n                        }\n                    else:\n                        key_value_block.custom = {\n                            'OCRConfidence': {\n                                'mean': kv_block_ocr_confidence_mean,\n                                'min': kv_block_ocr_confidence_min\n                            }\n                        }\n    return t_document\n\n\ndef __get_degree_from_polygon(poly: List[t2.TPoint] = None) -> float:\n    \"\"\"\n    returns degrees as float -180.0 < x < 180.0\n    \"\"\"\n    if not poly:\n        raise ValueError(\"no polygon given\")\n    point_0 = poly[0]\n    point_1 = poly[1]\n    orientation = math.degrees(math.atan2(point_1.y - point_0.y, point_1.x - point_0.x))\n    return orientation\n\ndef add_orientation_to_blocks(t_document: t2.TDocument) -> t2.TDocument:\n    \"\"\"adds orientation as Custom attribute to all blocks \"\"\"\n    logger.debug(\"add_orientation\")\n    for block in t_document.blocks:\n        if block and block.geometry and block.geometry.polygon:\n            orientation = __get_degree_from_polygon(block.geometry.polygon)\n            if block.custom:\n                block.custom['Orientation'] = orientation\n            else:\n                block.custom = {'Orientation': orientation}\n    return t_document\n\ndef add_page_orientation(t_document: t2.TDocument) -> t2.TDocument:\n    \"\"\"adds orientation as Custom attribute to Textract Schema\n       is available in trp as \"\"\"\n    logger.debug(\"add_page_orientation\")\n    for page in t_document.pages:\n        words = t2.TDocument.filter_blocks_by_type(\n            block_list=t_document.get_child_relations(page=page),\n            textract_block_type=[t2.TextractBlockTypes.WORD, t2.TextractBlockTypes.LINE])\n        word_orientations = [\n            round(__get_degree_from_polygon(w.geometry.polygon))\n            for w in words if w.geometry and w.geometry.polygon\n        ]\n        # (statistics.mode throws StatisticsError for empty lists)\n        orientation = statistics.mode(word_orientations) if word_orientations else 0\n        if page.custom:\n            page.custom['PageOrientationBasedOnWords'] = orientation\n        else:\n            page.custom = {'PageOrientationBasedOnWords': orientation}\n    return t_document\n\ndef add_image_size(t_document: t2.TDocument) -> t2.TDocument:\n    raise Exception(\"not implemented yet\")\n\ndef rotate_points_to_page_orientation(t_document:t2.TDocument)->t2.TDocument:\n    # TODO add rotation information to document (degree and center)\n    logger.debug(\"rotate_points_to_page_orientation\")\n    for page in t_document.pages:\n        logger.debug(page)\n        if page.custom:\n            logger.debug(\"page.custom\")\n            page_rotation = - page.custom['Orientation'] \n            logger.debug(f\"page_rotation: {page_rotation}\")\n            t_document.rotate(page=page, origin=t2.TPoint(0.5,0.5), degrees=float(page_rotation))\n            page.custom['Rotation'] = {'Degrees': page_rotation,\n                                       'RotationPointX': 0.5,\n                                       'RotationPointY': 0.5}\n    return t_document\n\n\ndef pipeline_merge_tables(t_document: t2.TDocument,\n                          merge_options: MergeOptions = MergeOptions.MERGE,\n                          customer_function: Callable = None,\n                          header_footer_type: HeaderFooterType = HeaderFooterType.NONE,\n                          accuracy_percentage: float = 98) -> t2.TDocument:\n    \"\"\"\n    Checks if tables require to be merged using a customer function or built function \n    and merges tables\n    \"\"\"\n    if customer_function:\n        tables_merge_ids: List[List[str]] = customer_function(t_document)\n    else:\n        tables_merge_ids: List[List[str]] = ExecuteTableValidations(t_document, header_footer_type, accuracy_percentage)\n    if merge_options == MergeOptions.MERGE:\n        t_document.merge_tables(tables_merge_ids)\n    if merge_options == MergeOptions.LINK:\n        t_document.link_tables(tables_merge_ids)\n    return t_document\n"
  },
  {
    "path": "src-python/trp/t_tables.py",
    "content": "import logging\nimport trp.trp2 as t2\nfrom typing import List\nfrom enum import Enum, auto\nfrom trp.trp2 import TDocument, TDocumentSchema\nimport trp\n\n\nclass MergeOptions(Enum):\n    MERGE = auto()\n    LINK = auto()\n\n\nclass HeaderFooterType(Enum):\n    NONE = 0\n    NARROW = 0.5\n    NORMAL = 1\n\n\nlogger = logging.getLogger(__name__)\n\n\ndef __validate_objects_between_tables(page1, page1_table, page2, page2_table, header_footer_type: HeaderFooterType):\n    \"\"\"\n    Step 1: Check if there is any lines between the first and second table except in the Footer and Header area\n    \"\"\"\n    header_footer_height = header_footer_type.value / 11\n    # Validate table 1 with first page footer\n    table1_end_y = page1_table.geometry.polygon[2].y\n    if any(1 - header_footer_height > line.geometry.polygon[2].y > table1_end_y for line in page1.lines):\n        return False\n    # Validate table 2 with second page header\n    table2_start_y = page2_table.geometry.boundingBox.top\n    if any(header_footer_height < line.geometry.boundingBox.top < table2_start_y for line in page2.lines):\n        return False\n    return True\n\n\ndef __compare_table_column_numbers(table_1, table_2):\n    \"\"\"\n    Step 2_1: Comparing number of columns on each table\n    \"\"\"\n    table1_col_num = len(table_1.rows[0].cells)\n    table2_col_num = len(table_2.rows[0].cells)\n    if table1_col_num == table2_col_num:\n        return True\n    else:\n        return False\n\n\ndef __compare_table_headers(table_1, table_2):\n    \"\"\"\n    Step 2_2: Comparing table header (first row) text on each table\n    \"\"\"\n    headers_1 = [cell.text.strip() if cell.text else \"\" for cell in table_1.rows[0].cells]\n    headers_2 = [cell.text.strip() if cell.text else \"\" for cell in table_2.rows[0].cells]\n    return headers_1 == headers_2\n\n\ndef __calculate_percentage_difference(measure_1, measure_2):\n    \"\"\"\n    Percentage difference calculation\n    \"\"\"\n    try:\n        return round(abs(100 * (measure_1 - measure_2) / ((measure_1 + measure_2) / 2)), 3)\n    except ZeroDivisionError:\n        return 0\n\n\ndef __compare_table_dimensions(table_1, table_2, accuracy_percentage):\n    \"\"\"\n    Step 3: Validate table bounding boxes to check left and right margin positions\n    \"\"\"\n    width_difference = __calculate_percentage_difference(table_1.geometry.boundingBox.width,\n                                                         table_2.geometry.boundingBox.width)\n    left_difference = __calculate_percentage_difference(table_1.geometry.boundingBox.left,\n                                                        table_2.geometry.boundingBox.left)\n    if width_difference < (100 - float(accuracy_percentage)) and left_difference < (100 - float(accuracy_percentage)):\n        return True\n    return False\n\n\ndef ExecuteTableValidations(t_doc: t2.TDocument, header_footer_type: HeaderFooterType, accuracy_percentage: float):\n    \"\"\"\n    Invoke validations for first and last tables on all pages recursively\n    \"\"\"\n    table_ids_to_merge = {}\n    table_ids_merge_list = []\n    from trp.t_pipeline import order_blocks_by_geo\n    ordered_doc = order_blocks_by_geo(t_doc)\n    trp_doc = trp.Document(TDocumentSchema().dump(ordered_doc))\n\n    for ix_page, current_page in enumerate(trp_doc.pages[:-1]):\n        next_page = trp_doc.pages[ix_page + 1]\n        if not (current_page.tables and next_page.tables):  # Note in Python, bool([]) = False\n            continue\n        current_page_table = current_page.tables[len(current_page.tables) - 1]\n        next_page_table = next_page.tables[0]\n        result_1 = __validate_objects_between_tables(current_page, current_page_table, next_page, next_page_table,\n                                                     header_footer_type)\n        if (result_1):\n            result_2_1 = __compare_table_column_numbers(current_page_table, next_page_table)\n            result_2_2 = __compare_table_headers(current_page_table, next_page_table)\n            if (result_2_1 or result_2_2):\n                result3 = __compare_table_dimensions(current_page_table, next_page_table, accuracy_percentage)\n                if (result3):\n                    table_ids_to_merge[next_page_table.id] = current_page_table.id\n                    if (table_ids_merge_list):\n                        if (any(merge_pairs[1] == current_page_table.id for merge_pairs in table_ids_merge_list)):\n                            table_ids_merge_list[len(table_ids_merge_list) - 1].append(next_page_table.id)\n                        else:\n                            table_ids_merge_list.append([current_page_table.id, next_page_table.id])\n                    else:\n                        table_ids_merge_list.append([current_page_table.id, next_page_table.id])\n    return table_ids_merge_list\n"
  },
  {
    "path": "src-python/trp/trp2.py",
    "content": "from __future__ import annotations\nfrom functools import lru_cache\nimport typing\nfrom typing import List, Set, Dict, Optional, Iterator\nfrom dataclasses import dataclass, field\nimport marshmallow as m\nfrom marshmallow import post_load\nfrom enum import Enum, auto\nfrom dataclasses import dataclass, field\nfrom uuid import uuid4, UUID\nimport math\nimport statistics\nfrom uuid import uuid4, UUID\nimport math\nimport statistics\nfrom dataclasses import dataclass, field\nimport logging\n\nlogger = logging.getLogger(__name__)\n\n\nclass BaseSchema(m.Schema):\n    \"\"\"\n    skip null values when generating JSON\n    https://github.com/marshmallow-code/marshmallow/issues/229#issuecomment-134387999\n    \"\"\"\n    SKIP_VALUES = set([None])\n\n    @m.post_dump\n    def remove_skip_values(self, data, many, pass_many=False):\n        return {\n            key: value\n            for key, value in data.items()\n            if isinstance(value, (dict, list, set, tuple, range, frozenset)) or value not in self.SKIP_VALUES\n        }\n\n\nclass TextractBlockTypes(Enum):\n    WORD = auto()\n    LINE = auto()\n    TABLE = auto()\n    CELL = auto()\n    KEY_VALUE_SET = auto()\n    PAGE = auto()\n    SELECTION_ELEMENT = auto()\n    QUERY = auto()\n    QUERY_RESULT = auto()\n    MERGED_CELL = auto()\n    SIGNATURE = auto()\n    TABLE_TITLE = auto()\n    TABLE_FOOTER = auto()\n    LAYOUT_FIGURE = auto()\n    LAYOUT_FOOTER = auto()\n    LAYOUT_HEADER = auto()\n    LAYOUT_KEY_VALUE = auto()\n    LAYOUT_LIST = auto()\n    LAYOUT_PAGE_NUMBER = auto()\n    LAYOUT_SECTION_HEADER = auto()\n    LAYOUT_TABLE = auto()\n    LAYOUT_TEXT = auto()\n    LAYOUT_TITLE = auto()\n\n\n@dataclass\nclass TextractEntityTypes(Enum):\n    KEY = auto()\n    VALUE = auto()\n\n\n@dataclass(eq=True, repr=True)\nclass TPoint():\n    x: float\n    y: float\n\n    def __init__(self, x: float, y: float) -> None:\n        self.x = x\n        self.y = y\n\n    def scale(self, doc_width, doc_height):\n        self.x: float = self.x * doc_width\n        self.y: float = self.y * doc_height\n\n    def ratio(self, doc_width, doc_height):\n        self.x: float = self.x / doc_width\n        self.y: float = self.y / doc_height\n\n    def to_list(self) -> List[float]:\n        '''\n        Convert the point to a list of floats, i.e only standard \n        Python types. The list definition is [x_coor, y_coor].\n        '''\n        return [self.x, self.y]\n\n    # TODO: add optimization for rotation of 90, 270, 180, -90, -180, -270 degrees\n    def rotate(self,\n               origin_x: float = 0.5,\n               origin_y: float = 0.5,\n               degrees: float = 180,\n               force_limits: bool = True) -> TPoint:\n        \"\"\"\n        rotating this point around an origin point\n        force_limits enforces max 1 and min 0 values for the x and y coordinates (similar to min/max for Textract Schema Geometry)\n        \"\"\"\n        angle = math.radians(degrees)\n        ox = origin_x\n        oy = origin_y\n        px = self.x\n        py = self.y\n        cos_result = math.cos(angle)\n        sin_result = math.sin(angle)\n        new_x = ox + cos_result * (px - ox) - sin_result * (py - oy)\n        new_y = oy + sin_result * (px - ox) + cos_result * (py - oy)\n        if force_limits:\n            new_x = max(min(new_x, 1), 0)\n            new_y = max(min(new_y, 1), 0)\n        self.x = new_x\n        self.y = new_y\n        return self\n\n\n@dataclass(eq=True, repr=True, order=True, unsafe_hash=True)\nclass TBoundingBox():\n    width: float\n    height: float\n    left: float\n    top: float\n\n    def __init__(self, height: float, width: float, left: float, top: float) -> None:\n        self.width = width\n        self.height = height\n        self.left = left\n        self.top = top\n\n    def scale(self, doc_width, doc_height):\n        self.top: float = self.top * doc_height\n        self.height: float = self.height * doc_height\n        self.left: float = self.left * doc_width\n        self.width: float = self.width * doc_width\n\n    def ratio(self, doc_width, doc_height):\n        self.top: float = self.top / doc_height\n        self.height: float = self.height / doc_height\n        self.left: float = self.left / doc_width\n        self.width: float = self.width / doc_width\n\n    @property\n    def points(self) -> List[TPoint]:\n        points: List[TPoint] = list()\n        points.append(TPoint(x=self.left, y=self.top))\n        points.append(TPoint(x=self.left + self.width, y=self.top))\n        points.append(TPoint(x=self.left, y=self.top + self.height))\n        points.append(TPoint(x=self.left + self.width, y=self.top + self.height))\n        return points\n\n    @property\n    def bottom(self) -> float:\n        return self.top + self.height\n\n    @property\n    def right(self) -> float:\n        return self.left + self.width\n\n    @property\n    def centre(self) -> TPoint:\n        '''\n        Return the centre of mass of the bounding box.\n        '''\n        return TPoint(x=self.left + self.width / 2.0, y=self.top + self.height / 2.0)\n\n    def to_list(self) -> List[float]:\n        '''\n        Convert the bounding box definition to a list of floats, i.e only standard \n        Python types. The bounding box definition is [width, height, left, top].\n        '''\n        #TODO: cannot we use some overloading on the dump method of marshmallow?\n        bbox_list: List[float] = [self.width, self.height, self.left, self.top]\n        return bbox_list\n\n    def union(self, bbox: TBoundingBox) -> TBoundingBox:\n        '''\n        Compute the union between two TBoundingBox objects. The union bounding box \n        is the smallest bounding box which contains the N source bounding boxes. In  \n        case of this method, N equals 2 (self and bbox)\n\n        Usage\n        -----\n        union_bbox = self.union(bbox)\n\n        Arguments\n        ---------\n        bbox:\n            A TBoundingBox object\n        \n        Returns\n        -------\n        union_bbox\n            A TBoundingBox object representing the union between self and bbox\n        '''\n        new_top = min(self.top, bbox.top)\n        new_bottom = max(self.bottom, bbox.bottom)\n        new_left = min(self.left, bbox.left)\n        new_right = max(self.right, bbox.right)\n        new_bbox = TBoundingBox(\n            width=new_right - new_left,\n            height=new_bottom - new_top,\n            left=new_left,\n            top=new_top,\n        )\n        return new_bbox\n\n    def rotate(self, origin: TPoint = TPoint(0, 0), degrees: float = 180) -> TBoundingBox:\n        \"\"\"\n        rotate bounding box\n        a bounding box sides are always parallel to x and y axis\n        \"\"\"\n        points = []\n        points.append(TPoint(x=self.left, y=self.top).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n        points.append(\n            TPoint(x=self.left + self.width, y=self.top).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n        points.append(\n            TPoint(x=self.left, y=self.top + self.height).rotate(origin_x=origin.x, origin_y=origin.y, degrees=degrees))\n        points.append(\n            TPoint(x=self.left + self.width, y=self.top + self.height).rotate(origin_x=origin.x,\n                                                                              origin_y=origin.y,\n                                                                              degrees=degrees))\n        xmin = min([p.x for p in points])\n        ymin = min([p.y for p in points])\n        xmax = max([p.x for p in points])\n        ymax = max([p.y for p in points])\n\n        new_width = xmax - xmin\n        new_height = ymax - ymin\n        new_left = xmin\n        new_top = ymin\n        self.width = new_width\n        self.height = new_height\n        self.left = new_left\n        self.top = new_top\n        return self\n\n\nclass TBoundingBoxSchema(BaseSchema):\n    width = m.fields.Float(data_key=\"Width\", required=False, allow_none=False)\n    height = m.fields.Float(data_key=\"Height\", required=False, allow_none=False)\n    left = m.fields.Float(data_key=\"Left\", required=False, allow_none=False)\n    top = m.fields.Float(data_key=\"Top\", required=False, allow_none=False)\n\n    @post_load\n    def make_tbounding_box(self, data, **kwargs):\n        return TBoundingBox(**data)\n\n\nclass TPointSchema(BaseSchema):\n    x = m.fields.Float(data_key=\"X\", required=False, allow_none=False)\n    y = m.fields.Float(data_key=\"Y\", required=False, allow_none=False)\n\n    @post_load\n    def make_tpoint(self, data, **kwargs):\n        return TPoint(**data)\n\n\n@dataclass(eq=True, init=True, repr=True, order=True, unsafe_hash=True)\nclass TGeometry():\n    bounding_box: TBoundingBox\n    polygon: List[TPoint]\n\n    def ratio(self, doc_width=None, doc_height=None):\n        self.bounding_box.ratio(doc_width=doc_width, doc_height=doc_height)\n        [x.ratio(doc_width=doc_width, doc_height=doc_height) for x in self.polygon]\n\n    def rotate(self, origin: TPoint = TPoint(0, 0), degrees: float = 180.0):\n        self.bounding_box.rotate(origin=origin, degrees=degrees)\n        [p.rotate(origin_x=origin.x, origin_y=origin.y) for p in self.polygon]\n\n    def scale(self, doc_width=None, doc_height=None):\n        self.bounding_box.scale(doc_width=doc_width, doc_height=doc_height)\n        [x.scale(doc_width=doc_width, doc_height=doc_height) for x in self.polygon]\n\n\nclass TGeometrySchema(BaseSchema):\n    bounding_box = m.fields.Nested(TBoundingBoxSchema, data_key=\"BoundingBox\", required=False, allow_none=False)\n    polygon = m.fields.List(m.fields.Nested(TPointSchema), data_key=\"Polygon\", required=False, allow_none=False)\n\n    @post_load\n    def make_tgeometry(self, data, **kwargs):\n        return TGeometry(**data)\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TQuery:\n    text: str = field(default=None)    # type: ignore\n    alias: str = field(default=None)    # type: ignore\n\n\nclass TQuerySchema(BaseSchema):\n    text = m.fields.String(data_key=\"Text\", required=False)\n    alias = m.fields.String(data_key=\"Alias\", required=False)\n\n    @post_load\n    def make_tquery(self, data, **kwargs):\n        return TQuery(**data)\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TRelationship():\n    type: str = field(default=None)    #type: ignore\n    ids: List[str] = field(default=None)    #type: ignore\n\n\nclass TRelationshipSchema(BaseSchema):\n    type = m.fields.String(data_key=\"Type\", required=False, allow_none=False)\n    ids = m.fields.List(m.fields.String, data_key=\"Ids\", required=False, allow_none=False)\n\n    @post_load\n    def make_trelationship(self, data, **kwargs):\n        return TRelationship(**data)\n\n\n@dataclass(eq=True, init=True, repr=True, order=True)\nclass TBlock():\n    \"\"\"\n    https://docs.aws.amazon.com/textract/latest/dg/API_Block.html\n    as per this documentation none of the values is actually required\n    \"\"\"\n    geometry: TGeometry = field(default=None)    #type: ignore\n    id: str = field(default=None)    #type: ignore\n    block_type: str = field(default=\"\")    #type: ignore\n    relationships: List[TRelationship] = field(default=None)    #type: ignore\n    confidence: float = field(default=None)    #type: ignore\n    text: str = field(default=None)    #type: ignore\n    column_index: int = field(default=None)    #type: ignore\n    column_span: int = field(default=None)    #type: ignore\n    entity_types: List[str] = field(default=None)    #type: ignore\n    page: int = field(default=None)    #type: ignore\n    row_index: int = field(default=None)    #type: ignore\n    row_span: int = field(default=None)    #type: ignore\n    selection_status: str = field(default=None)    #type: ignore\n    text_type: str = field(default=None)    #type: ignore\n    custom: dict = field(default=None)    #type: ignore\n    query: TQuery = field(default=None)    #type: ignore\n\n    def __eq__(self, o: object) -> bool:\n        if isinstance(o, TBlock):\n            return o.id == self.id\n        return False\n\n    def __hash__(self) -> int:\n        return hash(self.id)\n\n    def get_relationships_for_type(self, relationship_type=\"CHILD\") -> Optional[TRelationship]:\n        \"\"\"assuming only one relationship type entry in the list\"\"\"\n        if self.relationships:\n            for r in self.relationships:\n                if r.type == relationship_type:\n                    return r\n        return None\n\n    def add_ids_to_relationships(self, ids: List[str], relationships_type: str = \"CHILD\"):\n        \"\"\"Only adds id if not already existing\"\"\"\n        relationship = self.get_relationships_for_type(relationship_type=relationships_type)\n        if relationship:\n            if not relationship.ids:\n                relationship.ids = list()\n                relationship.ids.extend(ids)\n            else:\n                relationship.ids.extend(x for x in ids if x not in relationship.ids)\n        else:\n            # empty, set base\n            if not self.relationships:\n                self.relationships = list()\n            self.relationships.append(TRelationship(type=relationships_type, ids=ids))\n\n    def rotate(self, origin=TPoint(0.5, 0.5), degrees: float = 180):\n        self.geometry.rotate(origin=origin, degrees=degrees)\n\n\nclass TBlockSchema(BaseSchema):\n    block_type = m.fields.String(data_key=\"BlockType\", allow_none=False)\n    geometry = m.fields.Nested(TGeometrySchema, data_key=\"Geometry\", allow_none=False)\n    id = m.fields.String(data_key=\"Id\", allow_none=False)\n    relationships = m.fields.List(m.fields.Nested(TRelationshipSchema), data_key=\"Relationships\", allow_none=False)\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False, allow_none=False)\n    text = m.fields.String(data_key=\"Text\", required=False, allow_none=False)\n    column_index = m.fields.Int(data_key=\"ColumnIndex\", required=False, allow_none=False)\n    column_span = m.fields.Int(data_key=\"ColumnSpan\", required=False, allow_none=False)\n    entity_types = m.fields.List(m.fields.String, data_key=\"EntityTypes\", required=False, allow_none=False)\n    page = m.fields.Int(data_key=\"Page\", required=False, allow_none=False)\n    row_index = m.fields.Int(data_key=\"RowIndex\", required=False, allow_none=False)\n    row_span = m.fields.Int(data_key=\"RowSpan\", required=False, allow_none=False)\n    selection_status = m.fields.String(data_key=\"SelectionStatus\", required=False, allow_none=False)\n    text_type = m.fields.String(data_key=\"TextType\", required=False, allow_none=False)\n    custom = m.fields.Dict(data_key=\"Custom\", required=False, allow_none=False)\n    query = m.fields.Nested(TQuerySchema, data_key=\"Query\")\n\n    @post_load\n    def make_tblock(self, data, **kwargs):\n        return TBlock(**data)\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TDocumentMetadata():\n    pages: int = field(default=None)    #type: ignore\n\n\nclass TDocumentMetadataSchema(BaseSchema):\n    pages = m.fields.Int(data_key=\"Pages\", required=False)\n\n    @post_load\n    def make_tdocument_metadat(self, data, **kwargs):\n        return TDocumentMetadata(**data)\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TWarnings():\n    error_code: str = field(default=None)    #type: ignore\n    pages: List[int] = field(default=None)    #type: ignore\n\n\nclass TWarningsSchema(BaseSchema):\n    pages = m.fields.List(m.fields.Int, data_key=\"Pages\", required=False, allow_none=False)\n    error_code = m.fields.String(data_key=\"ErrorCode\", required=False, allow_none=False)\n\n    @post_load\n    def make_twarnings(self, data, **kwargs):\n        return TWarnings(**data)\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass THttpHeaders():\n    x_amzn_request_id: str = field(default=None)    #type: ignore\n    content_type: str = field(default=None)    #type: ignore\n    content_length: int = field(default=None)    #type: ignore\n    connection: str = field(default=None)    #type: ignore\n    date: str = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TResponseMetadata():\n    request_id: str = field(default=None)    #type: ignore\n    http_status_code: int = field(default=None)    #type: ignore\n    retry_attempts: int = field(default=None)    #type: ignore\n    http_headers: THttpHeaders = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TDocument():\n    document_metadata: TDocumentMetadata = field(default=None)    #type: ignore\n    # if blocks are changed, call __post_init__() to update the index\n    blocks: List[TBlock] = field(default=None)    #type: ignore\n    analyze_document_model_version: str = field(default=None)    #type: ignore\n    detect_document_text_model_version: str = field(default=None)    #type: ignore\n    status_message: str = field(default=None)    #type: ignore\n    warnings: TWarnings = field(default=None)    #type: ignore\n    job_status: str = field(default=None)    #type: ignore\n    response_metadata: TResponseMetadata = field(default=None)    #type: ignore\n    custom: dict = field(default=None)    #type: ignore\n    next_token: str = field(default=None)    #type: ignore\n    id: UUID = field(default_factory=uuid4)\n\n    def __post_init__(self):    #this is a dataclass method\n        '''\n        Build several hashmaps (signature: Dict[str, int]) with \n        the block ID as key and the block index in self.blocks as value. As Textract \n        identifies blocks by their ID, the goal of this data structure is to access\n        blocks by their ID and type at O(1) time complexity.The new hashmaps are \n        stored self._block_id_maps.\n\n        Notes\n        -----\n        * don't use this data structure directly (it might chang in the future) \n          prefer the method self.block_map and self.block_id_map with the 'block_type' \n          specifier.\n        * Method __post_init__ called by @dataclass after  __init__ call\n        '''\n        self._block_id_maps: Dict[str, typing.Dict[str, int]] = dict()\n        self._block_id_maps['ALL'] = dict()\n        # Initialise maps for all expected block types:\n        for block_type in TextractBlockTypes:\n            self._block_id_maps[block_type.name] = dict()\n        if self.blocks != None:\n            for blk_i, blk in enumerate(self.blocks):\n                try:\n                    self._block_id_maps[blk.block_type][blk.id] = blk_i\n                except KeyError:\n                    # ...but catch any unexpected block types we observe also:\n                    self._block_id_maps[blk.block_type] = dict()\n                    self._block_id_maps[blk.block_type][blk.id] = blk_i\n\n                self._block_id_maps['ALL'][blk.id] = blk_i\n\n    def __hash__(self):\n        return int(self.id)\n\n    def block_id_map(self, block_type: Optional[TextractBlockTypes] = None) -> Dict[str, int]:\n        '''\n        Return a hashmap  with the block ID as key and the block index in self.blocks \n        as value.\n        '''\n        if block_type:\n            return self._block_id_maps[block_type.name]\n        else:\n            return self._block_id_maps['ALL']\n\n    def block_map(self, block_type: Optional[TextractBlockTypes] = None) -> Dict[str, TBlock]:\n        '''\n        Return a hashmap  with the block ID as key and the block as value.\n        '''\n        if block_type:\n            return {k: self.blocks[v] for k, v in self._block_id_maps[block_type.name].items()}\n        else:\n            return {k: self.blocks[v] for k, v in self._block_id_maps['ALL'].items()}\n\n    def add_block(self, block: TBlock, page: TBlock = None):    #type: ignore\n        '''\n        Add a block to the document at a give page. If the page is None, the block is \n        added to the first page\n        '''\n        if not block.id:\n            block.id = str(uuid4())\n        if not self.blocks:\n            self.blocks = list()\n        if not self.find_block_by_id(block.id):\n            self.blocks.append(block)\n            self._block_id_maps['ALL'][block.id] = len(self.blocks) - 1\n            if block.block_type != '':\n                try:\n                    self._block_id_maps[block.block_type][block.id] = len(self.blocks) - 1\n                except KeyError:\n                    self._block_id_maps[block.block_type] = dict()\n                    self._block_id_maps[block.block_type][block.id] = len(self.blocks) - 1\n        if not page:\n            page = self.pages[0]\n        page.add_ids_to_relationships(ids=[block.id])\n        self.__post_init__()\n        self.relationships_recursive.cache_clear()\n\n    @staticmethod\n    def create_geometry_from_blocks(values: List[TBlock]) -> Optional[TGeometry]:\n        all_points = [p.geometry.bounding_box.points for p in values if p.geometry and p.geometry.bounding_box]\n        all_points = [i for sublist in all_points for i in sublist]\n        if not all_points:\n            return None\n        ymin = min([p.y for p in all_points])\n        xmin = min([p.x for p in all_points])\n        ymax = max([p.y for p in all_points])\n        xmax = max([p.x for p in all_points])\n        new_bb = TBoundingBox(width=ymax - ymin, height=xmax - xmin, top=ymin, left=xmin)\n        new_poly = [TPoint(x=xmin, y=ymin), TPoint(x=xmax, y=ymin), TPoint(x=xmax, y=ymax), TPoint(x=xmin, y=ymax)]\n        return TGeometry(bounding_box=new_bb, polygon=new_poly)\n\n    @staticmethod\n    def create_value_block(values: List[TBlock]) -> TBlock:\n        value_block = TBlock(id=str(uuid4()), block_type=\"KEY_VALUE_SET\", entity_types=[\"VALUE\"])\n        value_block.add_ids_to_relationships([b.id for b in values])\n        geo = TDocument.create_geometry_from_blocks(values=values)\n        if geo:\n            value_block.geometry = geo\n        value_block.confidence = statistics.mean([b.confidence for b in values])\n        return value_block\n\n    def add_virtual_block(self, text: str, page_block: TBlock, text_type=\"VIRTUAL\") -> TBlock:\n        tblock = TBlock(id=str(uuid4()),\n                        block_type=\"WORD\",\n                        text=text,\n                        geometry=TGeometry(bounding_box=TBoundingBox(width=0, height=0, left=0, top=0),\n                                           polygon=[TPoint(x=0, y=0), TPoint(x=0, y=0)]),\n                        confidence=99,\n                        text_type=text_type)\n        self.add_block(tblock, page=page_block)\n        return tblock\n\n    def add_virtual_key_for_existing_key(self, key_name: str, existing_key: TBlock,\n                                         page_block: TBlock) -> Optional[TBlock]:\n        if existing_key and existing_key.block_type == \"KEY_VALUE_SET\" and \"KEY\" in existing_key.entity_types:\n            value_blocks: List[TBlock] = self.value_for_key(existing_key)\n            return self.add_key_values(key_name=key_name, values=value_blocks, page_block=page_block)\n        else:\n            logger.warning(\n                f\"no existing_key or not block_type='KEY_VALUE_SET' or 'KEY' not in entity_type: {existing_key}\")\n\n    def add_key_values(self, key_name: str, values: List[TBlock], page_block: TBlock) -> TBlock:\n        if not key_name:\n            raise ValueError(\"need values and key_name\")\n        if not values:\n            logger.debug(f\"add_key_values: empty values for key: {key_name}, will create virtual empty block\")\n            values = [self.add_virtual_block(text=\"\", page_block=page_block)]\n        for value_block in values:\n            if not value_block.id or not self.get_block_by_id(value_block.id):\n                raise ValueError(\"value blocks to add have to already exist. Use add_word_block for new ones.\")\n\n        if values[0].page:\n            page_block = self.pages[values[0].page - 1]\n        else:\n            page_block = self.pages[0]\n\n        value_block = TDocument.create_value_block(values=values)\n        self.add_block(value_block, page=page_block)\n\n        virtual_block = self.add_virtual_block(text=key_name, page_block=page_block)\n        id = str(uuid4())\n        key_block = TBlock(id=id,\n                           block_type=\"KEY_VALUE_SET\",\n                           entity_types=[\"KEY\"],\n                           confidence=99,\n                           geometry=TGeometry(bounding_box=TBoundingBox(width=0, height=0, left=0, top=0),\n                                              polygon=[TPoint(x=0, y=0), TPoint(x=0, y=0)]),\n                           page=page_block.page)\n        key_block.add_ids_to_relationships(relationships_type=\"VALUE\", ids=[value_block.id])\n        key_block.add_ids_to_relationships(relationships_type=\"CHILD\", ids=[virtual_block.id])\n        logger.debug(f\"add key with id: {id} and key_name: {key_name}\")\n        self.add_block(key_block, page=page_block)\n        return key_block\n\n    def rotate(self, page: TBlock, degrees: float, origin: TPoint = TPoint(x=0.5, y=0.5)) -> None:\n        # FIXME: add dimension. the relative scale messes up the new coordinates, have to use the actual image scale\n        \"\"\"atm no way to get back from Block to list of other blocks, hence get_block_by_id is only available on document level and quite some processing has to be here\"\"\"\n        if not page:\n            raise ValueError(\"need a page to rotate\")\n        if not degrees:\n            raise ValueError(\"need degrees to rotate\")\n        [b.rotate(origin=origin, degrees=float(degrees)) for b in self.relationships_recursive(block=page)]\n        self.relationships_recursive.cache_clear()\n\n    def find_block_by_id(self, id: str) -> Optional[TBlock]:\n        '''Find a block by its ID. Returns None if not found'''\n        idx = self.block_id_map().get(id, None)\n        if idx:\n            return self.blocks[idx]\n        return None\n\n    def get_block_by_id(self, id: str) -> TBlock:\n        block = self.find_block_by_id(id=id)\n        if block:\n            return block\n        else:\n            raise ValueError(f\"no block for id: {id}\")\n\n    def __relationships_recursive(self, block: TBlock) -> Iterator[TBlock]:\n        import itertools\n        if block and block.relationships:\n            all_relations = list(itertools.chain(*[r.ids for r in block.relationships if r and r.ids]))\n            all_block = [self.get_block_by_id(id) for id in all_relations if id]\n            for b in all_block:\n                if b:\n                    yield b\n                    for child in self.__relationships_recursive(block=b):\n                        yield child\n\n    @lru_cache()\n    def relationships_recursive(self, block: TBlock) -> Set[TBlock]:\n        return set(self.__relationships_recursive(block=block))\n\n    @property\n    def pages(self) -> List[TBlock]:\n        page_blocks = self.filter_blocks_by_type(\n            self.blocks,\n            textract_block_type=[TextractBlockTypes.PAGE],\n        )\n        # We'd like to return pages in explicitly-specified order where appropriate, but some\n        # (e.g. older) Textract API responses may not tag every PAGE block with a `Page` number,\n        # and `sorted()` will fail if we try to compare numbers vs `None`:\n        if all(block.page is not None for block in page_blocks):\n            page_blocks = sorted(page_blocks, key=lambda item: item.page)\n        return page_blocks\n\n    @staticmethod\n    def filter_blocks_by_type(block_list: List[TBlock],\n                              textract_block_type: list[TextractBlockTypes] = None) -> List[TBlock]:    #type: ignore\n        if textract_block_type:\n            block_type_names = [x.name for x in textract_block_type]\n            return [b for b in block_list if b.block_type in block_type_names]\n        else:\n            return list()\n\n    # TODO: this is more generic and not limited to page, should change the parameter from \"page\" to \"block\"\n    def get_child_relations(self, page: TBlock):\n        return self.get_blocks_by_type(page=page)\n\n    # TODO: not ideal imho. customers want pages.tables or pages.forms like the current trp\n    def tables(self, page: TBlock) -> List[TBlock]:\n        return self.get_blocks_by_type(page=page, block_type_enum=TextractBlockTypes.TABLE)\n\n    def get_blocks_by_type(\n            self,\n            block_type_enum: TextractBlockTypes = None,    #type: ignore\n            page: TBlock = None) -> List[TBlock]:    #type: ignore\n        if page:\n            if not page.relationships:\n                return list()\n            block_list = list(self.relationships_recursive(page))\n            if block_type_enum:\n                return self.filter_blocks_by_type(block_list=block_list, textract_block_type=[block_type_enum])\n            else:\n                return block_list\n        else:\n            if self.blocks:\n                block_list: List[TBlock] = list()\n                for b in self.blocks:\n                    if block_type_enum and b.block_type == block_type_enum.name:\n                        block_list.append(b)\n                    if not block_type_enum:\n                        block_list.append(b)\n                return block_list\n            else:\n                return list()\n\n    def forms(self, page: TBlock = None) -> List[TBlock]:    #type: ignore\n        return self.get_blocks_by_type(page=page, block_type_enum=TextractBlockTypes.KEY_VALUE_SET)\n\n    def keys(self, page: TBlock = None) -> List[TBlock]:    #type: ignore\n        return [x for x in self.forms(page=page) if TextractEntityTypes.KEY.name in x.entity_types]\n\n    def signatures(self, page: TBlock) -> List[TBlock]:\n        return self.get_blocks_by_type(page=page, block_type_enum=TextractBlockTypes.SIGNATURE)\n\n    def queries(self, page: TBlock) -> List[TBlock]:\n        return self.get_blocks_by_type(page=page, block_type_enum=TextractBlockTypes.QUERY)\n\n    def get_answers_for_query(self, block: TBlock) -> List[TBlock]:\n        result_list: List[TBlock] = list()\n        rels = block.get_relationships_for_type(relationship_type=\"ANSWER\")\n        if rels:\n            for r in rels.ids:\n                result_list.append(self.get_block_by_id(r))\n        return result_list\n\n    def get_query_answers(self, page: TBlock) -> List[List[str]]:\n        result_list: List[List[str]] = list()\n        for query in self.queries(page=page):\n            answers = [x for x in self.get_answers_for_query(block=query)]\n            if answers:\n                for answer in answers:\n                    result_list.append([query.query.text, query.query.alias, answer.text])\n            else:\n                result_list.append([query.query.text, query.query.alias, \"\"])\n        return result_list\n\n    def get_key_by_name(self, key_name: str) -> List[TBlock]:\n        result_blocks: List[TBlock] = list()\n        for key in self.keys():\n            keys_text_blocks = key.get_relationships_for_type()\n            if keys_text_blocks:\n                key_name_text: str = TDocument.get_text_for_tblocks(\n                    [self.get_block_by_id(x) for x in keys_text_blocks.ids])\n                if key_name == key_name_text:\n                    result_blocks.append(key)\n        return result_blocks\n\n    def get_blocks_for_relationships(self, relationship: TRelationship = None) -> List[TBlock]:    #type: ignore\n        all_blocks: List[TBlock] = list()\n        if relationship and relationship.ids:\n            for id in relationship.ids:\n                all_blocks.append(self.get_block_by_id(id))\n        return all_blocks\n\n    def value_for_key(self, key: TBlock) -> List[TBlock]:\n        return_value_for_key: List[TBlock] = list()\n        if TextractEntityTypes.KEY.name in key.entity_types:\n            if key and key.relationships:\n                value_blocks = self.get_blocks_for_relationships(\n                    relationship=key.get_relationships_for_type(\"VALUE\"))    #type: ignore\n                for block in value_blocks:\n                    return_value_for_key.extend(self.get_blocks_for_relationships(\n                        block.get_relationships_for_type()))    #type: ignore\n\n        return return_value_for_key\n\n    @staticmethod\n    def get_text_for_tblocks(tblocks: List[TBlock]) -> str:\n        return_value = ' '.join([x.text for x in tblocks if x and x.text])\n        return_value += ' '.join([x.selection_status for x in tblocks if x and x.selection_status])\n        return return_value\n\n    def lines(self, page: TBlock) -> List[TBlock]:\n        relationships = page.get_relationships_for_type()\n        if relationships:\n            blocks = self.get_blocks_for_relationships(relationships)\n            blocks = [x for x in blocks if x.block_type == 'LINE']\n            return blocks\n        return list()\n\n    def delete_blocks(self, block_id: List[str]):\n        # delete from high index number to low index number to avoid deleting the wrong index after removing a lower valued one\n        indexes = [self.block_id_map()[id] for id in block_id]\n        indexes.sort(reverse=True)\n        for index in indexes:\n            del self.blocks[index]\n        self.__post_init__()\n        self.relationships_recursive.cache_clear()\n\n    def merge_tables(self, table_array_ids: List[List[str]]):\n        for table_ids in table_array_ids:\n            if len(table_ids) < 2:\n                raise ValueError(\"no parent and child tables given\")\n            parent_table = self.get_block_by_id(table_ids[0])\n            if type(parent_table) is not TBlock:\n                raise ValueError(\"parent table is invalid\")\n            table_ids.pop(0)\n            parent_relationships: TRelationship = TRelationship()\n            if parent_table.relationships:\n                for r in parent_table.relationships:\n                    if r.type == \"CHILD\":\n                        parent_relationships = r\n            for table_id in table_ids:\n                if parent_relationships and parent_relationships.ids:\n                    parent_last_row = None\n                    parent_last_row_block = self.get_block_by_id(parent_relationships.ids[-1])\n                    if parent_last_row_block:\n                        parent_last_row = parent_last_row_block.row_index\n                    child_table = self.get_block_by_id(table_id)\n                    if child_table and child_table.relationships:\n                        for r in child_table.relationships:\n                            if r.type == \"CHILD\" and r.ids:\n                                for cell_id in r.ids:\n                                    cell_block = self.get_block_by_id(cell_id)\n                                    if cell_block and cell_block.row_index and parent_last_row:\n                                        cell_block.row_index = parent_last_row + cell_block.row_index\n                                        if parent_relationships.ids and cell_id not in parent_relationships.ids:\n                                            parent_relationships.ids.append(cell_id)\n                    self.delete_blocks([table_id])\n\n    def link_tables(self, table_array_ids: List[List[str]]):\n        for table_ids in table_array_ids:\n            if len(table_ids) < 2:\n                raise ValueError(\"no parent and child tables given\")\n            for i in range(0, len(table_ids)):\n                table = self.get_block_by_id(table_ids[i])\n                if i > 0 and table:\n                    if table.custom:\n                        table.custom['previous_table'] = table_ids[i - 1]\n                    else:\n                        table.custom = {'previous_table': table_ids[i - 1]}\n                if i < len(table_ids) - 1 and table:\n                    if table.custom:\n                        table.custom['next_table'] = table_ids[i + 1]\n                    else:\n                        table.custom = {'next_table': table_ids[i + 1]}\n        self.relationships_recursive.cache_clear()\n\n\nclass THttpHeadersSchema(BaseSchema):\n\n    class Meta:\n        unknown = m.EXCLUDE\n\n    date = m.fields.String(data_key=\"date\", required=False)\n    x_amzn_request_id = m.fields.String(data_key=\"x-amzn-requestid\", required=False, allow_none=False)\n    content_type = m.fields.String(data_key=\"content-type\", required=False, allow_none=False)\n    content_length = m.fields.Int(data_key=\"content-length\", required=False, allow_none=False)\n    connection = m.fields.String(data_key=\"connection\", required=False, allow_none=False)\n\n    @post_load\n    def make_thttp_headers(self, data, **kwargs):\n        return THttpHeaders(**data)\n\n\nclass TResponseMetadataSchema(BaseSchema):\n\n    class Meta:\n        unknown = m.EXCLUDE\n\n    request_id = m.fields.String(data_key=\"RequestId\", required=False, allow_none=False)\n    http_status_code = m.fields.Int(data_key=\"HTTPStatusCode\", required=False, allow_none=False)\n    retry_attempts = m.fields.Int(data_key=\"RetryAttempts\", required=False, allow_none=False)\n    http_headers = m.fields.Nested(THttpHeadersSchema, data_key=\"HTTPHeaders\", required=False, allow_none=False)\n\n    @post_load\n    def make_tresponse_metadata(self, data, **kwargs):\n        return TResponseMetadata(**data)\n\n\nclass TDocumentSchema(BaseSchema):\n\n    class Meta:\n        unknown = m.EXCLUDE\n\n    document_metadata = m.fields.Nested(TDocumentMetadataSchema,\n                                        data_key=\"DocumentMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    blocks = m.fields.List(m.fields.Nested(TBlockSchema), data_key=\"Blocks\", required=False, allow_none=False)\n    analyze_document_model_version = m.fields.String(data_key=\"AnalyzeDocumentModelVersion\",\n                                                     required=False,\n                                                     allow_none=False)\n    detect_document_text_model_version = m.fields.String(data_key=\"DetectDocumentTextModelVersion\",\n                                                         required=False,\n                                                         allow_none=False)\n    status_message = m.fields.String(data_key=\"StatusMessage\", required=False, allow_none=False)\n    warnings = m.fields.Nested(TWarningsSchema, data_key=\"Warnings\", required=False, allow_none=False)\n    job_status = m.fields.String(data_key=\"JobStatus\", required=False, allow_none=False)\n    next_token = m.fields.String(data_key=\"NextToken\", required=False, allow_none=False)\n    response_metadata = m.fields.Nested(TResponseMetadataSchema,\n                                        data_key=\"ResponseMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    custom = m.fields.Dict(data_key=\"Custom\", required=False, allow_none=False)\n\n    @post_load\n    def make_tdocument(self, data, **kwargs):\n        return TDocument(**data)\n"
  },
  {
    "path": "src-python/trp/trp2_analyzeid.py",
    "content": "\"\"\"\nAuthor: lanaz@amazon.com\n(De)Serializer for Textract AnalyzeID Response JSON\n\"\"\"\nfrom typing import List\nimport marshmallow as m\nfrom marshmallow import post_load\nfrom trp.trp2 import (BaseSchema, TDocumentMetadata, TDocumentMetadataSchema, TWarnings, TWarningsSchema,\n                      TResponseMetadata, TResponseMetadataSchema, TBlock, TBlockSchema)\nfrom dataclasses import dataclass, field\n\n\n@dataclass\nclass TType():\n    \"\"\"\n    Class for Type in AnalyzeId API Response\n    \"\"\"\n    text: str = field(default=None)    #type: ignore\n\n\nclass TTypeSchema(BaseSchema):\n    \"\"\"\n    Class for Type Schema\n    \"\"\"\n    text = m.fields.String(data_key=\"Text\", required=False, allow_none=False)\n\n    @post_load\n    def make_ttype(self, data, **kwargs):\n        return TType(**data)\n\n\n@dataclass\nclass TNormalizedValue():\n    \"\"\"\n    Class for Normalized Value in AnalyzeId API Response\n    \"\"\"\n    value: str = field(default=None)    #type: ignore\n    value_type: str = field(default=None)    #type: ignore\n\n\nclass TNormalizedValueSchema(BaseSchema):\n    \"\"\"\n    Class for NormalizedValue Schema\n    \"\"\"\n    value = m.fields.String(data_key=\"Value\", required=False, allow_none=False)\n    value_type = m.fields.String(data_key=\"ValueType\", required=False, allow_none=False)\n\n    @post_load\n    def make_tnormalizedtype(self, data, **kwargs):\n        return TNormalizedValue(**data)\n\n\n@dataclass\nclass TValueDetection():\n    \"\"\"\n    Class for ValueDetection in AnalyzeId API Response\n    \"\"\"\n    text: str = field(default=None)    #type: ignore\n    confidence: float = field(default=None)    #type: ignore\n    normalized_value: TNormalizedValue = field(default=None)    #type: ignore\n\n\nclass TValueDetectionSchema(BaseSchema):\n    \"\"\"\n    Class for ValueDetection Schema\n    \"\"\"\n    text = m.fields.String(data_key=\"Text\", required=False, allow_none=False)\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False, allow_none=False)\n    normalized_value = m.fields.Nested(TNormalizedValueSchema,\n                                       data_key=\"NormalizedValue\",\n                                       required=False,\n                                       allow_none=False)\n\n    @post_load\n    def make_tvaluedetection(self, data, **kwargs):\n        return TValueDetection(**data)\n\n\n@dataclass\nclass TIdentityDocumentField():\n    \"\"\"\n    Class for Analyze ID Response\n    \"\"\"\n    type: TType = field(default=None)    #type: ignore\n    value_detection: TValueDetection = field(default=None)    #type: ignore\n\n\nclass TIdentityDocumentFieldSchema(BaseSchema):\n    \"\"\"\n    Class for IdentityDocumentField Schema\n    \"\"\"\n\n    type = m.fields.Nested(TTypeSchema, data_key=\"Type\", required=False, allow_none=False)\n\n    value_detection = m.fields.Nested(TValueDetectionSchema,\n                                      data_key=\"ValueDetection\",\n                                      required=False,\n                                      allow_none=False)\n\n    @post_load\n    def make_tidentitydocumentfield(self, data, **kwargs):\n        return TIdentityDocumentField(**data)\n\n\n@dataclass\nclass TIdentityDocument():\n    \"\"\"\n    Class for Analyze ID Response\n    \"\"\"\n    document_index: int = 1\n    identity_document_fields: List[TIdentityDocumentField] = field(default=None)    #type: ignore fs\n    blocks: List[TBlock] = field(default=None)    #type: ignore\n\n\nclass TIdentityDocumentSchema(BaseSchema):\n    \"\"\"\n    Class for IdentityDocument Schema\n    \"\"\"\n\n    document_index = m.fields.Int(data_key=\"DocumentIndex\", required=False, allow_none=True)\n\n    identity_document_fields = m.fields.List(m.fields.Nested(TIdentityDocumentFieldSchema),\n                                             data_key=\"IdentityDocumentFields\",\n                                             required=False,\n                                             allow_none=True)\n    blocks = m.fields.List(m.fields.Nested(TBlockSchema), data_key=\"Blocks\", required=False, allow_none=False)\n\n    @post_load\n    def make_tidentitydocumentfield(self, data, **kwargs):\n        return TIdentityDocument(**data)\n\n\n@dataclass\nclass TAnalyzeIdDocument():\n    \"\"\"\n    Class for AnalyzeIdDocument in AnalyzeId Response\n    \"\"\"\n    document_metadata: TDocumentMetadata = field(default=None)    #type: ignore\n    identity_documents: List[TIdentityDocument] = field(default=None)    #type: ignore\n    analyze_id_model_version: str = field(default=None)    #type: ignore\n    status_message: str = field(default=None)    #type: ignore\n    warnings: TWarnings = field(default=None)    #type: ignore\n    job_status: str = field(default=None)    #type: ignore\n    response_metadata: TResponseMetadata = field(default=None)    #type: ignore\n    custom: dict = field(default=None)    #type: ignore\n    next_token: str = field(default=None)    #type: ignore\n\n    def get_values_as_list(self) -> List[List[str]]:\n        \"\"\"\n        return a List of List of str in the following format\n        [[\"doc_number\", \"type\", \"value\", \"confidence\", \"normalized_value\", \"normalized_value_type\"]]\n        \"\"\"\n        result_list: List[List[str]] = list()\n        for identity_document in self.identity_documents:\n            doc_number = identity_document.document_index\n            for identity_document_field in identity_document.identity_document_fields:\n                normalized_value = \"\"\n                normalized_value_type = \"\"\n                if identity_document_field.value_detection.normalized_value:\n                    normalized_value = identity_document_field.value_detection.normalized_value.value\n                    normalized_value_type = identity_document_field.value_detection.normalized_value.value_type\n                result_list.append([\n                    str(doc_number),\n                    str(identity_document_field.type.text),\n                    str(identity_document_field.value_detection.text),\n                    str(identity_document_field.value_detection.confidence),\n                    str(normalized_value),\n                    str(normalized_value_type)\n                ])\n        return result_list\n\n\nclass TAnalyzeIdDocumentSchema(BaseSchema):\n    \"\"\"\n    Class for AnalyzeIdDocument Schema\n    \"\"\"\n    document_metadata = m.fields.Nested(TDocumentMetadataSchema,\n                                        data_key=\"DocumentMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    identity_documents = m.fields.List(m.fields.Nested(TIdentityDocumentSchema),\n                                       data_key=\"IdentityDocuments\",\n                                       required=False,\n                                       allow_none=False)\n\n    analyze_id_model_version = m.fields.String(data_key=\"AnalyzeIDModelVersion\", required=False, allow_none=False)\n    status_message = m.fields.String(data_key=\"StatusMessage\", required=False, allow_none=False)\n    warnings = m.fields.Nested(TWarningsSchema, data_key=\"Warnings\", required=False, allow_none=False)\n    job_status = m.fields.String(data_key=\"JobStatus\", required=False, allow_none=False)\n    response_metadata = m.fields.Nested(TResponseMetadataSchema,\n                                        data_key=\"ResponseMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    custom = m.fields.Dict(data_key=\"Custom\", required=False, allow_none=False)\n    next_token = m.fields.String(data_key=\"NextToken\", required=False, allow_none=False)\n\n    @post_load\n    def make_tanalyzeiddocument(self, data, **kwargs):\n        return TAnalyzeIdDocument(**data)\n"
  },
  {
    "path": "src-python/trp/trp2_expense.py",
    "content": "\"\"\"\nAuthor: dhawalkp@amazon.com\n(De)Serializer for Textract AnalyzeExpense Response JSON\n\nAnalyzeExpense’s JSON contains “ExpenseDocuments”, and each ExpenseDocument contains a\n“SummaryFields” and “LineItemGroups”.\nAnything detected in the document that is not a line item will be placed under\n“SummaryFields”.\nThe lowest piece of data in the AnalyzeExpense response consists of “Type”,\n“ValueDetection” and “LabelDetection”(Optional).\n“LabelDetection” is optional. For the case where a piece of text is detected\non a receipt/invoice that does not explicitly have a “key” to label what the\nvalue is, LabelDetection is omitted.\n\n“LabelDetection” - the “key” of the key-value pair\n“Type” - the normalized type of the key-value pair\n“ValueDetection” - the “value” of the key-value pair.\n\nSome other examples of AnalyzeExpense Elements that may not have “LabelDetection”\nare line items in receipts.\nLine items in receipts usually do not have explicit column headers to tell\nwhat the columns are.\n\nSummaryFields that are not normalized will have a Type of “OTHER”\n\nBelow are some (not exhaustive listing) of the normalized summary fields\nAnalyzeExpense may detect per Expense Document -\n\nVENDOR_NAME\nVENDOR_ADDRESS\nVENDOR_URL\nVENDOR_PHONE\nCURRENCY\nPAYMENT_TERMS\nINVOICE_RECEIPT_ID\nINVOICE_RECEIPT_DATE\nRECEIVER_NAME\nRECEIVER_ADDRESS\nDUE_DATE\nTAX\nDISCOUNT\nSUBTOTAL\nTOTAL\nBANK_WIRING_INSTRUCTIONS\nVENDOR_VAT_REG_NO\nBILL_TO_VAT_REG_NO\nLOCAL_VAT_AMOUNT\nVAT_TOTAL\nVAT_RATE\nGST_NUMBER\nHST_NUMBER\nQST_NUMBER\nTAX_PAYER_ID\n\nBelow are the normalized field types returned in the Line item -\nITEM\nPRICE\nQUANTITY\nDESCRIPTION\nCATEGORY\n\"\"\"\n\nfrom typing import List, Optional\nfrom enum import Enum, auto\nimport marshmallow as m\nfrom marshmallow import post_load\nfrom trp.trp2 import (BaseSchema, TGeometry, TGeometrySchema, TDocumentMetadata, TDocumentMetadataSchema, TWarnings,\n                      TWarningsSchema, TResponseMetadata, TResponseMetadataSchema, TBlock, TBlockSchema)\nfrom dataclasses import dataclass, field\n\n\nclass TextractAnalyzeExpenseSummaryFieldType(Enum):\n    \"\"\"\n    Class for FieldType Enum for AnalyzeExpense\n    \"\"\"\n    OTHER = auto()\n\n\n@dataclass\nclass TLabelDetection():\n    \"\"\"\n    Class for LabelDetection in AnalyzeExpense API Response\n    \"\"\"\n    text: str\n    geometry: TGeometry\n    confidence: float\n\n\nclass TLabelDetectionSchema(BaseSchema):\n    \"\"\"\n    Class for LabelDetection Schema\n    \"\"\"\n    text = m.fields.String(data_key=\"Text\", required=False, allow_none=False)\n    geometry = m.fields.Nested(TGeometrySchema, data_key=\"Geometry\", required=False, allow_none=False)\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False, allow_none=False)\n\n    @post_load\n    def make_tlabeldetection(self, data, **kwargs):\n        return TLabelDetection(**data)\n\n\n@dataclass\nclass TValueDetection():\n    \"\"\"\n    Class for ValueDetection in AnalyzeExpense API Response\n    \"\"\"\n    text: str = field(default=\"\")\n    geometry: TGeometry = field(default=None)    #type: ignore\n    confidence: float = 0\n\n\nclass TValueDetectionSchema(BaseSchema):\n    \"\"\"\n    Class for ValueDetection Schema\n    \"\"\"\n    text = m.fields.String(data_key=\"Text\", required=False, allow_none=False)\n    geometry = m.fields.Nested(TGeometrySchema, data_key=\"Geometry\", required=False, allow_none=False)\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False, allow_none=False)\n\n    @post_load\n    def make_tvaluedetection(self, data, **kwargs):\n        return TValueDetection(**data)\n\n\n@dataclass\nclass TFieldType():\n    \"\"\"\n    Class for FieldType in AnalyzeExpense API Response\n    \"\"\"\n    text: str = None\n    confidence: float = None\n\n\nclass TFieldTypeSchema(BaseSchema):\n    \"\"\"\n    Class for FieldType Schema\n    \"\"\"\n    text = m.fields.String(data_key=\"Text\", required=False, allow_none=False)\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False, allow_none=False)\n\n    @post_load\n    def make_tfieldtype(self, data, **kwargs):\n        return TFieldType(**data)\n\n\n@dataclass(repr=True)\nclass TGroupProperty():\n    types: List[str]\n    id: str\n\n\nclass GroupProperty(BaseSchema):\n    types = m.fields.List(m.fields.String, data_key=\"Types\", required=False, allow_none=True)\n    id = m.fields.String(data_key=\"Id\", required=False, allow_none=True)\n\n    @post_load\n    def make(self, data, **kwargs):\n        return TGroupProperty(**data)\n\n\n@dataclass(repr=True)\nclass TSummaryField():\n    \"\"\"\n    Class for SummaryField in AnalyzeExpense API Response\n    \"\"\"\n    ftype: TFieldType = None\n    labeldetection: TLabelDetection = None\n    valuedetection: TValueDetection = None\n    pagenumber: int = None\n    group_properties: List[TGroupProperty] = field(default=None)\n\n\nclass TSummaryFieldSchema(BaseSchema):\n    \"\"\"\n    Class for SummaryField Schema\n    \"\"\"\n    class Meta:\n        unknown = m.EXCLUDE\n\n    ftype = m.fields.Nested(TFieldTypeSchema, data_key=\"Type\", required=False, allow_none=False)\n    labeldetection = m.fields.Nested(TLabelDetectionSchema, data_key=\"LabelDetection\", required=False, allow_none=False)\n    valuedetection = m.fields.Nested(TValueDetectionSchema, data_key=\"ValueDetection\", required=False, allow_none=False)\n    pagenumber = m.fields.Int(data_key=\"PageNumber\", required=False, allow_none=False)\n    group_properties = m.fields.List(m.fields.Nested(GroupProperty),\n                                     data_key=\"GroupProperties\",\n                                     required=False,\n                                     allow_none=True)\n\n    @post_load\n    def make_tsummaryfield(self, data, **kwargs):\n        return TSummaryField(**data)\n\n\n@dataclass\nclass TExpenseField():\n    \"\"\"\n    Class for ExpenseField in AnalyzeExpense Response\n    \"\"\"\n    ftype: TFieldType = None\n    pagenumber: int = None\n    labeldetection: Optional[TLabelDetection] = None\n    valuedetection: Optional[TValueDetection] = None\n\n\nclass TExpenseFieldSchema(BaseSchema):\n    \"\"\"\n    Class for ExpenseField Schema\n    \"\"\"\n    ftype = m.fields.Nested(TFieldTypeSchema, data_key=\"Type\", required=False, allow_none=False)\n\n    labeldetection = m.fields.Nested(TLabelDetectionSchema, data_key=\"LabelDetection\", required=False, allow_none=True)\n\n    valuedetection = m.fields.Nested(TValueDetectionSchema, data_key=\"ValueDetection\", required=False, allow_none=False)\n    pagenumber = m.fields.Int(data_key=\"PageNumber\", required=False, allow_none=False)\n\n    @post_load\n    def make_texpensefield(self, data, **kwargs):\n        return TExpenseField(**data)\n\n\n@dataclass\nclass TLineItem():\n    \"\"\"\n    Class for LineItem in AnalyzeExpense Response\n    \"\"\"\n    lineitem_expensefields: List[TExpenseField] = None\n\n\nclass TLineItemSchema(BaseSchema):\n    \"\"\"\n    Class for LineItem Schema\n    \"\"\"\n\n    lineitem_expensefields = m.fields.List(m.fields.Nested(TExpenseFieldSchema),\n                                           data_key=\"LineItemExpenseFields\",\n                                           required=False,\n                                           allow_none=False)\n\n    @post_load\n    def make_tlineitem(self, data, **kwargs):\n        return TLineItem(**data)\n\n\n@dataclass\nclass TLineItemGroup():\n    \"\"\"\n    Class for LineItemGroup in AnalyzeExpense Response\n    \"\"\"\n    lineitemgroupindex: int = None\n    lineitems: List[TLineItem] = None\n\n\nclass TLineItemGroupSchema(BaseSchema):\n    \"\"\"\n    Class for LineItemGroup Schema\n    \"\"\"\n\n    lineitemgroupindex = m.fields.Int(data_key=\"LineItemGroupIndex\", required=False, allow_none=False)\n\n    lineitems = m.fields.List(m.fields.Nested(TLineItemSchema), data_key=\"LineItems\", required=False, allow_none=False)\n\n    @post_load\n    def make_tlineitemgroup(self, data, **kwargs):\n        return TLineItemGroup(**data)\n\n\n@dataclass\nclass TExpense():\n    \"\"\"\n    Class for Expense Document in AnalyzeExpense Response\n    \"\"\"\n    expense_idx: int = None\n    summaryfields: List[TSummaryField] = None\n    lineitemgroups: List[TLineItemGroup] = None\n    blocks: List[TBlock] = None\n\n\n    def lines(self, page: TBlock) -> List[TBlock]:\n        relationships = page.get_relationships_for_type()\n        if relationships:\n            blocks = self.get_blocks_for_relationships(relationships)\n            blocks = [x for x in blocks if x.block_type == 'LINE']\n            return blocks\n        return list()\n\n\nclass TExpenseSchema(BaseSchema):\n    \"\"\"\n    Class for ExpenseDocument Schema\n    \"\"\"\n    class Meta:\n        unknown = m.EXCLUDE\n\n    expense_idx = m.fields.Int(data_key=\"ExpenseIndex\", required=False, allow_none=False)\n\n    summaryfields = m.fields.List(m.fields.Nested(TSummaryFieldSchema),\n                                  data_key=\"SummaryFields\",\n                                  required=False,\n                                  allow_none=False)\n\n    lineitemgroups = m.fields.List(m.fields.Nested(TLineItemGroupSchema),\n                                   data_key=\"LineItemGroups\",\n                                   required=False,\n                                   allow_none=False)\n\n    blocks = m.fields.List(m.fields.Nested(TBlockSchema),\n                                   data_key=\"Blocks\",\n                                   required=False,\n                                   allow_none=False)\n\n    @post_load\n    def make_texpense(self, data, **kwargs):\n        return TExpense(**data)\n\n\nclass TAnalyzeExpenseDocument():\n    \"\"\"\n    Class for AnalyzeExpenseDocument in AnalyzeExpense Response\n    \"\"\"\n\n    def __init__(self,\n                 document_metadata: TDocumentMetadata = None,\n                 expenses_documents: List[TExpense] = None,\n                 analyze_expense_model_version: str = None,\n                 status_message: str = None,\n                 warnings: TWarnings = None,\n                 job_status: str = None,\n                 response_metadata: TResponseMetadata = None,\n                 custom: dict = None,\n                 next_token: str = None):\n        self.__document_metadata = document_metadata\n        self.__expenses_documents = expenses_documents\n        self.__analyze_expense_model_version = analyze_expense_model_version\n        self.__status_message = status_message\n        self.__next_token = next_token\n        self.__warnings = warnings\n        self.__job_status = job_status\n        self.__response_metadata = response_metadata\n        self.__custom = custom\n\n    @property\n    def document_metadata(self):\n        return self.__document_metadata\n\n    @property\n    def expenses_documents(self):\n        return self.__expenses_documents\n\n    @expenses_documents.setter\n    def expenses_documents(self, value: List[TExpense]):\n        self.__expenses_documents = value\n\n    @property\n    def analyze_expense_model_version(self):\n        return self.__analyze_expense_model_version\n\n    @property\n    def status_message(self):\n        return self.__status_message\n\n    @property\n    def warnings(self):\n        return self.__warnings\n\n    @property\n    def job_status(self):\n        return self.__job_status\n\n    @property\n    def response_metadata(self):\n        return self.__response_metadata\n\n    @property\n    def next_token(self):\n        return self.__next_token\n\n    @property\n    def custom(self):\n        return self.__custom\n\n    @custom.setter\n    def custom(self, value: dict):\n        self.__custom = value\n\n    def get_expensedocument_by_id(self, docid: int) -> Optional[TExpense]:\n        \"\"\"\n        Returns an ExpenseDocument Object based on the ID.\n            Parameters:\n                docid (int): A Document Identifier\n            Returns:\n                ExpenseDocument (ExpenseDocument): ExpenseDocument Object\n        \"\"\"\n        if self.__expenses_documents:\n            for doc in self.__expenses_documents:\n                if doc.expense_idx == docid:\n                    return doc\n\n    def get_all_summaryfields_by_expense_id(self, docid: int) -> Optional[List[TSummaryField]]:\n        \"\"\"\n        Returns all the summaryfields by Expense Document ID.\n            Parameters:\n                docid (int): A Document Identifier\n            Returns:\n                summaryFieldList (List): List of Summary Fields in Expense Document Object\n        \"\"\"\n        summaryfields_list: List[TSummaryField] = list()\n        doc = self.get_expensedocument_by_id(docid)\n        if doc:\n            if doc.summaryfields:\n                for field in doc.summaryfields:\n                    summaryfields_list.append(field)\n                return summaryfields_list\n\n    def get_normalized_summaryfields_by_expense_id(self, docid: int) -> Optional[List[TSummaryField]]:\n        \"\"\"\n        Returns only Normalized Summary Fields  based on the Expense Document ID.\n            Parameters:\n                docid (int): A Document Identifier\n            Returns:\n                implicitsummaryfields (List): Normalized Summary Fields List in the Expense Document Object\n        \"\"\"\n        implicit_summaryfields_list: List[TSummaryField] = list()\n        doc = self.get_expensedocument_by_id(docid)\n        if doc:\n            if doc.summaryfields:\n                for field in doc.summaryfields:\n                    if field.ftype and field.ftype.text != 'OTHER':\n                        implicit_summaryfields_list.append(field)\n                return implicit_summaryfields_list\n\n\nclass TAnalyzeExpenseDocumentSchema(BaseSchema):\n    \"\"\"\n    Class for AnalyzeExpenseDocument Schema\n    \"\"\"\n    class Meta:\n        unknown = m.EXCLUDE\n\n    document_metadata = m.fields.Nested(TDocumentMetadataSchema,\n                                        data_key=\"DocumentMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    expenses_documents = m.fields.List(m.fields.Nested(TExpenseSchema),\n                                       data_key=\"ExpenseDocuments\",\n                                       required=False,\n                                       allow_none=False)\n\n    status_message = m.fields.String(data_key=\"StatusMessage\", required=False, allow_none=False)\n    warnings = m.fields.Nested(TWarningsSchema, data_key=\"Warnings\", required=False, allow_none=False)\n    job_status = m.fields.String(data_key=\"JobStatus\", required=False, allow_none=False)\n    next_token = m.fields.String(data_key=\"NextToken\", required=False, allow_none=False)\n    response_metadata = m.fields.Nested(TResponseMetadataSchema,\n                                        data_key=\"ResponseMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    custom = m.fields.Dict(data_key=\"Custom\", required=False, allow_none=False)\n\n    @post_load\n    def make_tdocument(self, data, **kwargs):\n        return TAnalyzeExpenseDocument(**data)\n"
  },
  {
    "path": "src-python/trp/trp2_lending.py",
    "content": "from dataclasses import dataclass, field\nfrom typing import List\nfrom uuid import uuid4, UUID\n\nfrom trp.trp2 import TGeometry, TDocumentMetadata, TDocumentMetadataSchema, BaseSchema, TGeometrySchema, TWarnings, TWarningsSchema, TResponseMetadata, TResponseMetadataSchema\nfrom trp.trp2_expense import TExpenseSchema, TExpense\nfrom trp.trp2_analyzeid import TIdentityDocument, TIdentityDocumentSchema\nimport marshmallow as m\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TLendingDetection():\n    confidence: float\n    geometry: TGeometry = field(default=None)    #type: ignore\n    selection_status: str = field(default=None)    #type: ignore\n    text: str = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TSignatureDetection():\n    confidence: float = field(default=None)    #type: ignore\n    geometry: TGeometry = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TLendingField():\n    field_type: str = field(default=None)    #type: ignore\n    value_detections: List[TLendingDetection] = field(default=None)    #type: ignore\n    key_detection: TLendingDetection = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TLendingDocument():\n    lending_fields: List[TLendingField] = field(default=None)    #type: ignore\n    signature_detections: List[TSignatureDetection] = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TExtraction():\n    expense_document: TExpense = field(default=None)    #type: ignore\n    identity_document: TIdentityDocument = field(default=None)    #type: ignore\n    lending_document: TLendingDocument = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TPrediction():\n    confidence: float = field(default=None)    #type: ignore\n    value: str = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TPageClassification():\n    page_number: List[TPrediction]\n    page_type: List[TPrediction]\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TLendingResult():\n    extractions: List[TExtraction] = field(default=None)    #type: ignore\n    page: int = field(default=None)    #type: ignore\n    page_classification: TPageClassification = field(default=None)    #type: ignore\n\n\n@dataclass(eq=True, init=True, repr=True)\nclass TFullLendingDocument():\n    analyze_lending_model_version: str\n    lending_results: List[TLendingResult] = field(default=None)    #type: ignore\n    document_metadata: TDocumentMetadata = field(default=None)    #type: ignore\n    job_status: str = field(default=None)    #type: ignore\n    status_message: str = field(default=None)    #type: ignore\n    warnings: TWarnings = field(default=None)    #type: ignore\n    response_metadata: TResponseMetadata = field(default=None)    #type: ignore\n    next_token: str = field(default=None)    #type: ignore\n    id: UUID = field(default_factory=uuid4)\n\n\n################\n# SCHEMA\n###############\n\n\nclass TLendingDetectionSchema(BaseSchema):\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False)\n    geometry = m.fields.Nested(TGeometrySchema, data_key=\"Geometry\", required=False)\n    selection_status = m.fields.String(data_key=\"SelectionStatus\", required=False)\n    text = m.fields.String(data_key=\"Text\", required=False)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TLendingDetection(**data)\n\n\nclass TSignatureDetectionSchema(BaseSchema):\n    confidence = m.fields.Float(data_key=\"Confidence\", required=False)\n    geometry = m.fields.Nested(TGeometrySchema, data_key=\"Geometry\", required=False)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TSignatureDetection(**data)\n\n\nclass TLendingFieldSchema(BaseSchema):\n    key_detection = m.fields.Nested(TLendingDetectionSchema, data_key=\"KeyDetection\", required=False)\n    field_type = m.fields.String(data_key=\"Type\", required=False)\n    value_detections = m.fields.List(m.fields.Nested(TLendingDetectionSchema),\n                                     data_key=\"ValueDetections\",\n                                     required=False)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TLendingField(**data)\n\n\nclass TLendingDocumentSchema(BaseSchema):\n    lending_fields = m.fields.List(m.fields.Nested(TLendingFieldSchema), data_key=\"LendingFields\", required=False)\n    signature_detections = m.fields.List(m.fields.Nested(TSignatureDetectionSchema),\n                                         data_key=\"SignatureDetections\",\n                                         required=False)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TLendingDocument(**data)\n\n\nclass TExtractionSchema(BaseSchema):\n    expense_document = m.fields.Nested(TExpenseSchema, data_key=\"ExpenseDocument\", required=False, allow_none=True)\n    identity_document = m.fields.Nested(TIdentityDocumentSchema,\n                                        data_key=\"IdentityDocument\",\n                                        required=False,\n                                        allow_none=True)\n    lending_document = m.fields.Nested(TLendingDocumentSchema,\n                                       data_key=\"LendingDocument\",\n                                       required=False,\n                                       allow_none=True)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TExtraction(**data)\n\n\nclass TPredictionSchema(BaseSchema):\n    confidence = m.fields.Float(data_key=\"Confidence\")\n    value = m.fields.String(data_key=\"Value\")\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TPrediction(**data)\n\n\nclass TPageClassificationSchema(BaseSchema):\n    page_number = m.fields.List(m.fields.Nested(TPredictionSchema), data_key=\"PageNumber\", required=False)\n    page_type = m.fields.List(m.fields.Nested(TPredictionSchema), data_key=\"PageType\", required=False)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TPageClassification(**data)\n\n\nclass TLendingResultSchema(BaseSchema):\n    extractions = m.fields.List(m.fields.Nested(TExtractionSchema),\n                                data_key=\"Extractions\",\n                                required=False,\n                                allow_none=True)\n    page = m.fields.Int(data_key=\"Page\", required=False)\n    page_classification = m.fields.Nested(TPageClassificationSchema, data_key=\"PageClassification\", required=False)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TLendingResult(**data)\n\n\nclass TFullLendingDocumentSchema(BaseSchema):\n    document_metadata = m.fields.Nested(TDocumentMetadataSchema,\n                                        data_key=\"DocumentMetadata\",\n                                        required=False,\n                                        allow_none=False)\n    analyze_lending_model_version = m.fields.String(data_key=\"AnalyzeLendingModelVersion\",\n                                                    required=False,\n                                                    allow_none=False)\n    status_message = m.fields.String(data_key=\"StatusMessage\", required=False, allow_none=True)\n    warnings = m.fields.Nested(TWarningsSchema, data_key=\"Warnings\", required=False, allow_none=True)\n    job_status = m.fields.String(data_key=\"JobStatus\", required=False, allow_none=True)\n    next_token = m.fields.String(data_key=\"NextToken\", required=False, allow_none=True)\n    response_metadata = m.fields.Nested(TResponseMetadataSchema,\n                                        data_key=\"ResponseMetadata\",\n                                        required=False,\n                                        allow_none=True)\n    lending_results = m.fields.List(m.fields.Nested(TLendingResultSchema),\n                                    data_key=\"Results\",\n                                    required=False,\n                                    allow_none=True)\n    custom = m.fields.Dict(data_key=\"Custom\", required=False, allow_none=True)\n\n    @m.post_load\n    def make(self, data, **kwargs):\n        return TFullLendingDocument(**data)\n"
  }
]